diff --git a/.eslintignore b/.eslintignore index c660781ed..246c8839e 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,3 @@ +test/build test/input test/output diff --git a/.eslintrc.json b/.eslintrc.json index 85dc74f88..29366eadb 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -27,6 +27,7 @@ "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-this-alias": 0, "@typescript-eslint/no-unused-vars": ["error", {"ignoreRestSiblings": true}], + "import/consistent-type-specifier-style": "warn", "import/first": "warn", "import/newline-after-import": "warn", "import/no-duplicates": "off", diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..17579fb9c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Ask git to not change line endings (to preserve content hashes). +* -text diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 686e1e232..e6710135c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,8 @@ on: workflow_dispatch: {} push: branches: [main] + schedule: + - cron: "15 10 * * *" jobs: deploy: @@ -19,57 +21,16 @@ jobs: with: node-version: 20 cache: 'yarn' - cache-dependency-path: | - yarn.lock - 'examples/*/yarn.lock' - run: yarn --frozen-lockfile + - id: date + run: echo "date=$(TZ=America/Los_Angeles date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + - id: cache-data + uses: actions/cache@v4 + with: + path: docs/.observablehq/cache + key: data-${{ hashFiles('docs/data/*') }}-${{ steps.date.outputs.date }} - run: yarn build - - name: Build example "api" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/api - - name: Build example "chess" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/chess - - name: Build example "eia" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/eia - env: - EIA_KEY: ${{ secrets.EIA_KEY }} - - name: Build example "google-analytics" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/google-analytics + - run: yarn docs:build + - run: yarn docs:deploy env: - GA_PROPERTY_ID: ${{ vars.GA_PROPERTY_ID }} - GA_CLIENT_EMAIL: ${{ secrets.GA_CLIENT_EMAIL }} - GA_PRIVATE_KEY: ${{ secrets.GA_PRIVATE_KEY }} - - name: Build example "hello-world" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/hello-world - - name: Build example "mortgage-rates" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/mortgage-rates - - name: Build example "penguin-classification" - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - yarn --frozen-lockfile && yarn build - working-directory: examples/penguin-classification - - name: Build example "plot" - run: yarn --frozen-lockfile && yarn build - working-directory: examples/plot - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: mkdir dist/examples && for i in examples/*; do if [ -d $i/dist ]; then mv -v $i/dist dist/examples/$(basename $i); fi; done - - uses: cloudflare/pages-action@1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - projectName: framework-pages - directory: dist - gitHubToken: ${{ secrets.GITHUB_TOKEN }} - # TODO: This doesn't include the examples. How can we fix that? - # TODO: Re-enable deploy to Observable - # - name: Deploy to Observable - # run: yarn deploy -m "$(git log -1 --pretty=%s)" - # env: - # OBSERVABLE_TOKEN: ${{ secrets.OBSERVABLE_API_TOKEN }} + OBSERVABLE_TOKEN: ${{ secrets.OBSERVABLE_API_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0c61d608b..a8ca29c08 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,7 @@ name: Publish on: + workflow_dispatch: {} release: types: [published] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 807451e9e..cde590bdf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,9 @@ jobs: strategy: matrix: version: [20, 21] - runs-on: ubuntu-latest + os: [ubuntu-latest, windows-latest] + fail-fast: false + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -19,16 +21,16 @@ jobs: node-version: ${{ matrix.version }} cache: yarn - run: yarn --frozen-lockfile - - run: yarn c8 --check-coverage -x src/**/*.d.ts -x src/preview.ts -x src/observableApiConfig.ts -x src/client --lines 80 --per-file yarn test:mocha + - run: yarn test:coverage - run: yarn test:tsc - run: | echo ::add-matcher::.github/eslint.json - yarn run eslint src test --format=compact + yarn run eslint src test --format=compact --max-warnings=0 - run: yarn test:prettier - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: - name: test-output-changes + name: test-output-changes-${{ matrix.os }}-${{ matrix.version }} path: | test/output/*-changed.* test/output/build/*-changed/ diff --git a/.gitignore b/.gitignore index df0a89d28..d54c8bae1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,11 @@ -.DS_Store **/.observablehq/cache/ -coverage/ -docs/themes.md -docs/theme/*.md -dist/ +.DS_Store +.env +/coverage/ +/dist/ +/docs/.observablehq/dist/ +/test/build/ +/test/output/**/*-changed.* +/test/output/build/**/*-changed/ node_modules/ -test/output/*-changed.* -test/output/build/*-changed/ yarn-error.log diff --git a/README.md b/README.md index 1094a9471..53f0b31ee 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,32 @@ # Observable Framework -- [Documentation](https://observablehq.com/framework/) -- [Changelog](https://github.com/observablehq/framework/releases) -- [Issues](https://github.com/observablehq/framework/issues) +[**Observable Framework**](https://observablehq.com/framework/) is a free, [open-source](./LICENSE), static site generator for data apps, dashboards, reports, and more. Framework combines JavaScript on the front-end for interactive graphics with any language on the back-end for data analysis. Framework features [data loaders](https://observablehq.com/framework/loaders) that precompute static snapshots of data at build time for dashboards that load instantly. + + + + + Daily downloads of Observable Framework + + + +Daily downloads of Observable Framework · [oss-analytics](https://observablehq.observablehq.cloud/oss-analytics/) + +## Documentation 📚 + +https://observablehq.com/framework/ + +## Examples 🖼️ + +https://github.com/observablehq/framework/tree/main/examples + +## Releases (changelog) 🚀 + +https://github.com/observablehq/framework/releases + +## Getting help 🏠 + +Please [open a discussion](https://github.com/observablehq/framework/discussions) if you’d like help. We also recommend [searching issues](https://github.com/observablehq/framework/issues). + +## Contributing 🙏 + +See [Contributing](https://observablehq.com/framework/contributing). diff --git a/bin/observable-init.js b/bin/observable-init.js deleted file mode 100755 index 5e0ae9194..000000000 --- a/bin/observable-init.js +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env -S node --no-warnings=ExperimentalWarning - -await import("tsx/esm"); -await import("./observable.ts"); diff --git a/bin/observable.ts b/bin/observable.ts deleted file mode 100644 index bc7bde3ee..000000000 --- a/bin/observable.ts +++ /dev/null @@ -1,202 +0,0 @@ -import {type ParseArgsConfig, parseArgs} from "node:util"; -import * as clack from "@clack/prompts"; -import {readConfig} from "../src/config.js"; -import {CliError} from "../src/error.js"; -import {enableNpmVersionResolution, enableRemoteModulePreload} from "../src/javascript/imports.js"; -import {red} from "../src/tty.js"; - -const args = process.argv.slice(2); - -const CONFIG_OPTION = { - root: { - type: "string" - }, - config: { - type: "string", - short: "c" - } -} as const; - -// Convert --version or -v as first argument into version. -if (args[0] === "--version" || args[0] === "-v") args[0] = "version"; - -// Parse the initial options loosely. -const {values, positionals, tokens} = parseArgs({ - options: { - help: { - type: "boolean", - short: "h" - } - }, - strict: false, - tokens: true, - args -}); - -let command: string | undefined; - -// Extract the command. -if (positionals.length > 0) { - const t = tokens.find((t) => t.kind === "positional")!; - args.splice(t.index, 1); - command = positionals[0]; - - // Convert help into --help. - if (command === "help" && positionals.length > 1) { - const p = tokens.find((p) => p.kind === "positional" && p !== t)!; - args.splice(p.index, 1, "--help"); - command = positionals[1]; - } -} - -// Convert --help or -h (with no command) into help. -else if (values.help) { - const t = tokens.find((t) => t.kind === "option" && t.name === "help")!; - args.splice(t.index, 1); - command = "help"; -} - -const CLACKIFIED_COMMANDS = ["login"]; - -try { - switch (command) { - case undefined: - case "help": { - helpArgs(command, {allowPositionals: true}); - console.log( - `usage: observable - create create a new project from a template - preview start the preview server - build generate a static site - login sign-in to Observable - logout sign-out of Observable - deploy deploy a project to Observable - whoami check authentication status - help print usage information - version print the version` - ); - if (command === undefined) process.exit(1); - break; - } - case "version": { - helpArgs(command, {}); - await import("../package.json").then(({version}: any) => console.log(version)); - break; - } - case "build": { - const { - values: {config, root} - } = helpArgs(command, { - options: {...CONFIG_OPTION} - }); - await import("../src/build.js").then(async (build) => build.build({config: await readConfig(config, root)})); - break; - } - case "create": { - helpArgs(command, {}); - await import("../src/create.js").then(async (create) => create.create()); - break; - } - case "deploy": { - const { - values: {config, root, message} - } = helpArgs(command, { - options: { - ...CONFIG_OPTION, - message: { - type: "string", - short: "m" - } - } - }); - await import("../src/deploy.js").then(async (deploy) => - deploy.deploy({config: await readConfig(config, root), message}) - ); - break; - } - case "preview": { - const { - values: {config, root, host, port} - } = helpArgs(command, { - options: { - ...CONFIG_OPTION, - host: { - type: "string", - default: process.env.HOSTNAME ?? "127.0.0.1" - }, - port: { - type: "string", - default: process.env.PORT - } - } - }); - enableNpmVersionResolution(false); - enableRemoteModulePreload(false); - await import("../src/preview.js").then(async (preview) => - preview.preview({ - config: await readConfig(config, root), - hostname: host!, - port: port === undefined ? undefined : +port - }) - ); - break; - } - case "login": { - helpArgs(command, {}); - await import("../src/observableApiAuth.js").then((auth) => auth.login()); - break; - } - case "logout": { - helpArgs(command, {}); - await import("../src/observableApiAuth.js").then((auth) => auth.logout()); - break; - } - case "whoami": { - helpArgs(command, {}); - await import("../src/observableApiAuth.js").then((auth) => auth.whoami()); - break; - } - default: { - console.error(`observable: unknown command '${command}'. See 'observable help'.`); - process.exit(1); - break; - } - } -} catch (error) { - if (error instanceof CliError) { - if (error.print) { - if (command && CLACKIFIED_COMMANDS.includes(command)) { - clack.outro(red(`Error: ${error.message}`)); - } else { - console.error(red(error.message)); - } - } - process.exit(error.exitCode); - } - throw error; -} - -// A wrapper for parseArgs that adds --help functionality with automatic usage. -// TODO It’d be nicer nice if we could change the return type to denote -// arguments with default values, and to enforce required arguments, if any. -function helpArgs(command: string | undefined, config: T): ReturnType> { - let result: ReturnType>; - try { - result = parseArgs({...config, options: {...config.options, help: {type: "boolean", short: "h"}}, args}); - } catch (error: any) { - if (!error.code?.startsWith("ERR_PARSE_ARGS_")) throw error; - console.error(`observable: ${error.message}. See 'observable help${command ? ` ${command}` : ""}'.`); - process.exit(1); - } - if ((result.values as any).help) { - console.log( - `Usage: observable ${command}${command === undefined || command === "help" ? " " : ""}${Object.entries( - config.options ?? {} - ) - .map(([name, {default: def}]) => ` [--${name}${def === undefined ? "" : `=${def}`}]`) - .join("")}` - ); - process.exit(0); - } - return result; -} diff --git a/build.js b/build.js new file mode 100644 index 000000000..fa8b76f76 --- /dev/null +++ b/build.js @@ -0,0 +1,24 @@ +import {parseArgs} from "node:util"; +import {build} from "esbuild"; +import {glob} from "glob"; + +const {values, positionals} = parseArgs({ + allowPositionals: true, + options: { + outdir: {type: "string", default: "build"}, + outbase: {type: "string"}, + ignore: {type: "string", multiple: true}, + sourcemap: {type: "boolean"} + } +}); + +await build({ + entryPoints: await glob(positionals, {ignore: values.ignore}), + define: {"process.env.npm_package_version": `"${process.env.npm_package_version}"`}, + outdir: values.outdir, + outbase: values.outbase, + platform: "node", + sourcemap: values.sourcemap ? "linked" : false, + format: "esm", + logLevel: "info" +}); diff --git a/docs/.eslintrc.json b/docs/.eslintrc.json index e5a34aec6..e2cc698fb 100644 --- a/docs/.eslintrc.json +++ b/docs/.eslintrc.json @@ -1,4 +1,7 @@ { + "resolve": { + "extensions": [".js", ".jsx"] + }, "env": { "browser": true } diff --git a/docs/.observablehq/deploy.json b/docs/.observablehq/deploy.json index 874e5c129..40b221dfd 100644 --- a/docs/.observablehq/deploy.json +++ b/docs/.observablehq/deploy.json @@ -1,5 +1,5 @@ { - "projectId": "497663d656fa5557", - "workspaceLogin": "observablehq", - "projectSlug": "cli" + "projectId": "b385d10b723e37b6", + "projectSlug": "framework", + "workspaceLogin": "observablehq" } diff --git a/docs/analytics.js b/docs/analytics.js deleted file mode 100644 index f4d092b9f..000000000 --- a/docs/analytics.js +++ /dev/null @@ -1,39 +0,0 @@ -let queue = []; -let user; - -if (location.origin === "https://observablehq.com") { - emit({ - type: "pageLoad", - event_version: 1, - data: {referrer: document.referrer.replace(/\?.*/, "")}, - tags: {} - }); - - fetch("https://api.observablehq.com/user", {credentials: "include"}) - .then((response) => (response.ok ? response.json() : null)) - .then((u) => (user = u), () => (user = null)) - .then(() => (sendEvents(queue), (queue = null))); // prettier-ignore -} - -function emit(event) { - event.time = new Date().toISOString(); - event.location = `${location.origin}${location.pathname}${location.search}`; // drop hash - if (queue) queue.push(event); - else sendEvents([event]); -} - -function sendEvents(events) { - if (!events.length) return; - navigator.sendBeacon( - "https://events.observablehq.com/beacon-events", - JSON.stringify({ - events: events.map((event) => ({ - ...event, - release: null, - user_id: user?.id ?? null, - user_agent: navigator.userAgent - })), - send_time: new Date().toISOString() - }) - ); -} diff --git a/docs/assets/api-dark.webp b/docs/assets/api-dark.webp new file mode 100644 index 000000000..831a7118d Binary files /dev/null and b/docs/assets/api-dark.webp differ diff --git a/docs/assets/api.webp b/docs/assets/api.webp new file mode 100644 index 000000000..74abc1f5a Binary files /dev/null and b/docs/assets/api.webp differ diff --git a/docs/assets/chess-dark.webp b/docs/assets/chess-dark.webp new file mode 100644 index 000000000..4a6e7c41e Binary files /dev/null and b/docs/assets/chess-dark.webp differ diff --git a/docs/assets/chess.webp b/docs/assets/chess.webp new file mode 100644 index 000000000..208c30271 Binary files /dev/null and b/docs/assets/chess.webp differ diff --git a/docs/assets/eia-dark.webp b/docs/assets/eia-dark.webp new file mode 100644 index 000000000..4346e7fed Binary files /dev/null and b/docs/assets/eia-dark.webp differ diff --git a/docs/assets/eia.webp b/docs/assets/eia.webp new file mode 100644 index 000000000..f1489c7a5 Binary files /dev/null and b/docs/assets/eia.webp differ diff --git a/docs/assets/hotel-bookings-dark.webp b/docs/assets/hotel-bookings-dark.webp new file mode 100644 index 000000000..360c9b883 Binary files /dev/null and b/docs/assets/hotel-bookings-dark.webp differ diff --git a/docs/assets/hotel-bookings.webp b/docs/assets/hotel-bookings.webp new file mode 100644 index 000000000..c07027408 Binary files /dev/null and b/docs/assets/hotel-bookings.webp differ diff --git a/docs/assets/mortgage-rates-dark.webp b/docs/assets/mortgage-rates-dark.webp new file mode 100644 index 000000000..e22a3960d Binary files /dev/null and b/docs/assets/mortgage-rates-dark.webp differ diff --git a/docs/assets/mortgage-rates.webp b/docs/assets/mortgage-rates.webp new file mode 100644 index 000000000..6cb53eaf7 Binary files /dev/null and b/docs/assets/mortgage-rates.webp differ diff --git a/docs/assets/mosaic.webp b/docs/assets/mosaic.webp new file mode 100644 index 000000000..f0a0d6b7c Binary files /dev/null and b/docs/assets/mosaic.webp differ diff --git a/docs/assets/plot-dark.webp b/docs/assets/plot-dark.webp new file mode 100644 index 000000000..304760375 Binary files /dev/null and b/docs/assets/plot-dark.webp differ diff --git a/docs/assets/plot.webp b/docs/assets/plot.webp new file mode 100644 index 000000000..30814391a Binary files /dev/null and b/docs/assets/plot.webp differ diff --git a/docs/assets/us-dams-dark.webp b/docs/assets/us-dams-dark.webp new file mode 100644 index 000000000..a71129f78 Binary files /dev/null and b/docs/assets/us-dams-dark.webp differ diff --git a/docs/assets/us-dams.webp b/docs/assets/us-dams.webp new file mode 100644 index 000000000..ccfe0efd3 Binary files /dev/null and b/docs/assets/us-dams.webp differ diff --git a/docs/bar.js b/docs/bar.js new file mode 100644 index 000000000..c399d5689 --- /dev/null +++ b/docs/bar.js @@ -0,0 +1 @@ +export const bar = "bar"; diff --git a/docs/chart.js b/docs/chart.js new file mode 100644 index 000000000..a1f4c69d1 --- /dev/null +++ b/docs/chart.js @@ -0,0 +1,14 @@ +import * as Plot from "npm:@observablehq/plot"; +import {FileAttachment, resize} from "observablehq:stdlib"; + +export async function Chart() { + const gistemp = await FileAttachment("./lib/gistemp.csv").csv({typed: true}); + return resize((width) => + Plot.plot({ + width, + y: {grid: true}, + color: {scheme: "burd"}, + marks: [Plot.dot(gistemp, {x: "Date", y: "Anomaly", stroke: "Anomaly"}), Plot.ruleY([0])] + }) + ); +} diff --git a/docs/components/Card.jsx b/docs/components/Card.jsx new file mode 100644 index 000000000..03e0fb8e3 --- /dev/null +++ b/docs/components/Card.jsx @@ -0,0 +1,8 @@ +export function Card({title, children} = {}) { + return ( +
+ {title ?

{title}

: null} + {children} +
+ ); +} diff --git a/docs/config.md b/docs/config.md index 64c9a331b..cc2538be5 100644 --- a/docs/config.md +++ b/docs/config.md @@ -1,10 +1,10 @@ # Configuration -A `observablehq.config.js` (or `observablehq.config.ts`) file located in the project root allows configuration of your project. For example, a site might use a config file to set the project’s title and the sidebar contents: +A `observablehq.config.js` (or `observablehq.config.ts`) file located in the project root allows configuration of your app. For example, you might use a config file to set the app’s title and sidebar contents: ```js run=false export default { - title: "My awesome project", + title: "My awesome app", pages: [ {name: "Getting ever more awesome", path: "/getting-awesome"}, {name: "Being totally awesome", path: "/being-awesome"}, @@ -21,7 +21,7 @@ The following options are supported. ## root -The path to the source root; defaults to `docs`. +The path to the source root; defaults to `src`. (Prior to , the default was `docs`.) ## output @@ -67,9 +67,9 @@ See the [list of available themes](./themes) for more. ## style -The path to a custom stylesheet, relative to the source root. This option takes precedence over the [theme option](#theme) (if any), providing more control by allowing you to remove or alter the default stylesheet and define a custom theme. +The path to a custom stylesheet, relative to the source root (typically `src`). This option takes precedence over the [theme option](#theme) (if any), providing more control by allowing you to remove or alter the default stylesheet and define a custom theme. -The custom stylesheet should typically import `observablehq:default.css` to build on the default styles. You can also import any of the built-in themes. For example, to create a stylesheet that builds up on the `air` theme, create a `custom-style.css` file in the `docs` folder, then set the style option to `custom-style.css`: +The custom stylesheet should typically import `observablehq:default.css` to build on the default styles. You can also import any of the built-in themes. For example, to create a stylesheet that builds up on the `air` theme, create a `custom-style.css` file in the source root, then set the style option to `custom-style.css`: ```css @import url("observablehq:default.css"); @@ -104,58 +104,107 @@ In this case, the path to the stylesheet is resolved relative to the page’s Ma ## title -The project’s title. If specified, this text is used for the link to the home page in the sidebar, and to complement the titles of the webpages. For instance, a page titled “Sales” in a project titled “ACME, Inc.” will display “Sales | ACME, Inc.” in the browser’s title bar. If not specified, the home page link will appear as “Home” in the sidebar, and page titles will be shown as-is. +The app’s title. If specified, this text is appended to page titles with a separating pipe symbol (“|”). For instance, a page titled “Sales” in an app titled “ACME, Inc.” will display “Sales | ACME, Inc.” in the browser’s title bar. See also the [**home** option](#home). ## sidebar Whether to show the sidebar. Defaults to true if **pages** is not empty. +## home + +An HTML fragment to render the link to the home page in the top of the sidebar. Defaults to the [app’s title](#title), if any, and otherwise the word “Home”. If specified as a function, receives an object with the page’s `title`, (front-matter) `data`, and `path`, and must return a string. + ## pages -An array containing pages and/or sections. If not specified, it defaults to all Markdown files found in the source root in directory listing order. +An array containing pages and sections. If not specified, it defaults to all Markdown files found in the source root in directory listing order. -The following TypeScript interfaces describe pages and sections: +Both pages and sections have a **name**, which typically corresponds to the page’s title. The name gets displayed in the sidebar. Sections are used to group related pages; each section must specify an array of **pages**. (Sections can only contain pages; nested sections are not currently supported.) -```ts run=false -export interface Page { - name: string; - path: string; -} -``` -```ts run=false -export interface Section { - name: string; - pages: Page[]; - open?: boolean; +Clicking on a page in the sidebar navigates to the corresponding **path**, which should start with a leading slash and be relative to the root; the path can also be specified as a full URL to navigate to an external site. A section may specify a **path** to navigate to when the section header is clicked; if a section does not specify a **path**, then clicking the section header toggles the section (if **collapsible**; see below). + +For example, here **pages** specifies two sections and a total of five pages: + +```js run=false +export default { + pages: [ + { + name: "Section 1", + path: "/s01/", + pages: [ + {name: "Page 1", path: "/s01/page1"}, + {name: "Page 2", path: "/s01/page2"} + ] + }, + { + name: "Section 2", + open: false, + pages: [ + {name: "Page 3", path: "/s02/page3"}, + {name: "Page 4", path: "/s02/page4"} + ] + } + ] } ``` -If a section’s **open** option is not set, it defaults to true. +Sections may be **collapsible**. If the **open** option is set, the **collapsible** option defaults to true; otherwise it defaults to false. If the section is not collapsible, the **open** option is ignored and the section is always open; otherwise, the **open** option defaults to true. A section will open automatically if the current page belongs to that section. + +Pages and sections may also have a **pager** field which specifies the name of the page group; this determines which pages are linked to via the previous and next pager buttons. If the **pager** field is not specified, it defaults the current section’s **pager** field, or to `main` for top-level pages and sections. (The home page is always in the `main` pager group.) The **pager** field can be also set to `null` to disable the pager on a specific page or section, causing adjacent pages to skip the page. -Projects can have “unlisted” pages that are not included in the pages list. These pages will still be accessible if linked from other pages or visited directly, but they won’t be listed in the sidebar or linked to via the previous & next footer. +Apps can have “unlisted” pages that are not referenced in **pages**. These pages can still be linked from other pages or visited directly, but they won’t be listed in the sidebar or linked to via the previous & next pager links. -The pages list should _not_ include the root page, `index.md`. Also, we don’t recommend using query strings or anchor fragments, as these will prevent the previous & next footer links from navigating. +The pages list should _not_ include the home page (`/`) as this is automatically linked at the top of the sidebar. We also do not recommend listing the same page multiple times (say with different query parameters or anchor fragments), as this causes the previous & next pager links to cycle. ## pager -Whether to show the previous & next footer links; defaults to true. +Whether to show the previous & next links in the footer; defaults to true. The pages are linked in the same order as they appear in the sidebar. + +## dynamicPaths + +The list of [parameterized pages](./params), [dynamic pages](./page-loaders), and [exported modules and files](./embeds) to generate, either as a (synchronous) iterable of strings, or a function that returns an async iterable of strings if you wish to load the list of dynamic pages asynchronously. ## head -An HTML fragment to add to the head. Defaults to the empty string. +An HTML fragment to add to the head. Defaults to the empty string. If specified as a function, receives an object with the page’s `title`, (front-matter) `data`, and `path`, and must return a string. ## header -An HTML fragment to add to the header. Defaults to the empty string. +An HTML fragment to add to the header. Defaults to the empty string. If specified as a function, receives an object with the page’s `title`, (front-matter) `data`, and `path`, and must return a string. + +
+ +By default, the header is fixed to the top of the window. To instead have the header scroll with the content, add the following to a custom stylesheet: + +```css run=false +#observablehq-header { + position: absolute; +} +``` + +
## footer -An HTML fragment to add to the footer. Defaults to “Built with Observable.” +An HTML fragment to add to the footer. Defaults to “Built with Observable.” If specified as a function, receives an object with the page’s `title`, (front-matter) `data`, and `path`, and must return a string. + +For example, the following adds a link to the bottom of each page: + +```js run=false +footer: ({path}) => `view source`, +``` ## base The base path when serving the site. Currently this only affects the custom 404 page, if any. +## preserveIndex + +Whether page links should preserve `/index` for directories. Defaults to false. If true, a link to `/` will be formatted as `/index` if the **preserveExtension** option is false or `/index.html` if the **preserveExtension** option is true. + +## preserveExtension + +Whether page links should preserve the `.html` extension. Defaults to false. If true, a link to `/foo` will be formatted as `/foo.html`. + ## toc The table of contents configuration. @@ -173,10 +222,148 @@ If **show** is not set, it defaults to true. If **label** is not set, it default If shown, the table of contents enumerates the second-level headings (H2 elements, such as `## Section name`) on the right-hand side of the page. The currently-shown section is highlighted in the table of contents. -The table of contents configuration can also be set in the page’s YAML front matter. The page-level configuration takes precedence over the project-level configuration. For example, to disable the table of contents on a particular page: +The table of contents configuration can also be set in the page’s YAML front matter. The page-level configuration takes precedence over the app-level configuration. For example, to disable the table of contents on a particular page: ```yaml --- toc: false --- ``` + +## search + +If true, enable [search](./search); defaults to false. The **search** option may also be specified as an object with an **index** method , in which case additional results can be added to the search index. Each result is specified as: + +```ts run=false +interface SearchResult { + path: string; + title: string | null; + text: string; + keywords?: string; +} +``` + +These additional results may also point to external links if the **path** is specified as an absolute URL. For example: + +```js run=false +export default { + search: { + async *index() { + yield { + path: "https://example.com", + title: "Example", + text: "This is an example of an external link." + }; + } + } +}; +``` + +## interpreters + +The **interpreters** option specifies additional interpreted languages for data loaders, indicating the file extension and associated interpreter. (See [loader routing](./data-loaders#routing) for more.) The default list of interpreters is: + +```js run=false +{ + ".js": ["node", "--no-warnings=ExperimentalWarning"], + ".ts": ["tsx"], + ".py": ["python3"], + ".r": ["Rscript"], + ".R": ["Rscript"], + ".rs": ["rust-script"] + ".go": ["go", "run"], + ".java": ["java"], + ".jl": ["julia"], + ".php": ["php"], + ".sh": ["sh"], + ".exe": [] +} +``` + +Keys specify the file extension and values the associated command and arguments. For example, to add Perl (extension `.pl`) and AppleScript (`.scpt`) to the list above: + +```js run=false +export default { + interpreters: { + ".pl": ["perl"], + ".scpt": ["osascript"] + } +}; +``` + +To disable an interpreter, set its value to null. For example, to disable Rust: + +```js run=false +export default { + interpreters: { + ".rs": null + } +}; +``` + +## duckdb + +The **duckdb** option configures [self-hosting](./lib/duckdb#self-hosting-of-extensions) and loading of [DuckDB extensions](./lib/duckdb#extensions) for use in [SQL code blocks](./sql) and the `sql` and `DuckDBClient` built-ins. For example, a geospatial data app might enable the [`spatial`](https://duckdb.org/docs/extensions/spatial/overview.html) and [`h3`](https://duckdb.org/community_extensions/extensions/h3.html) extensions like so: + +```js run=false +export default { + duckdb: { + extensions: ["spatial", "h3"] + } +}; +``` + +The **extensions** option can either be an array of extension names, or an object whose keys are extension names and whose values are configuration options for the given extension, including its **source** repository (defaulting to the keyword _core_ for core extensions, and otherwise _community_; can also be a custom repository URL), whether to **load** it immediately (defaulting to true, except for known extensions that support autoloading), and whether to **install** it (_i.e._ to self-host, defaulting to true). As additional shorthand, you can specify `[name]: true` to install and load the named extension from the default (_core_ or _community_) source repository, or `[name]: string` to install and load the named extension from the given source repository. + +The configuration above is equivalent to: + +```js run=false +export default { + duckdb: { + extensions: { + spatial: { + source: "https://extensions.duckdb.org/", + install: true, + load: true + }, + h3: { + source: "https://community-extensions.duckdb.org/", + install: true, + load: true + } + } + } +}; +``` + +The `json` and `parquet` are configured (and therefore self-hosted) by default. To expressly disable self-hosting of extension, you can set its **install** property to false, or equivalently pass null as the extension configuration object. + +For more, see [DuckDB extensions](./lib/duckdb#extensions). + +## markdownIt + +A hook for registering additional [markdown-it](https://github.com/markdown-it/markdown-it) plugins. For example, to use [markdown-it-footnote](https://github.com/markdown-it/markdown-it-footnote), first install the plugin with either `npm add markdown-it-footnote` or `yarn add markdown-it-footnote`, then register it like so: + +```js run=false +import MarkdownItFootnote from "markdown-it-footnote"; + +export default { + markdownIt: (md) => md.use(MarkdownItFootnote) +}; +``` + +## typographer + +If true, enables simple typographic replacements in Markdown, such as replacing `(c)` with `©` and converting straight quotes to curly quotes. See also the [quotes](#quotes) option, which should be set for non-English languages if the **typographer** option is enabled. For the full list of replacements, see [markdown-it](https://github.com/markdown-it/markdown-it/blob/master/lib/rules_core/replacements.mjs). Defaults to false. + +## quotes + +The set of replacements for straight double and single quotes used when the [**typographer** option](#typographer) is enabled. Defaults to `["“", "”", "‘", "’"]` which is suitable for English. For example, you can use `["«", "»", "„", "“"]` for Russian, `["„", "“", "‚", "‘"]` for German, and `["«\xa0", "\xa0»", "‹\xa0", "\xa0›"]` for French. + +## linkify + +If true (the default), automatically convert URL-like text to links in Markdown. + +## globalStylesheets + +An array of links to global stylesheets to add to every page’s head, in addition to the [page stylesheet](#style). Defaults to loading [Source Serif 4](https://fonts.google.com/specimen/Source+Serif+4) from Google Fonts. diff --git a/docs/contributing.md b/docs/contributing.md index 4a592f45a..1db4e3b91 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -16,18 +16,18 @@ yarn dev Lastly visit . -The local preview server restarts automatically if you edit any of the TypeScript files, though you may need to reload. The default page is [docs/index.md](https://github.com/observablehq/framework/blob/main/docs/index.md?plain=1); if you edit that file and save changes, the live preview in the browser will automatically update. +The local preview server restarts automatically if you edit any of the TypeScript files, though you may need to reload. The default page is [`docs/index.md`](https://github.com/observablehq/framework/blob/main/docs/index.md?plain=1); if you edit that file and save changes, the live preview in the browser will automatically update. To generate the static site: ```sh -yarn build +yarn docs:build ``` -This creates the `dist` folder. View the site using your preferred web server, such as: +This creates the `docs/.observablehq/dist` folder. View the site using your preferred web server, such as: ```sh -http-server dist +http-server docs/.observablehq/dist ``` This documentation site is built on GitHub using Observable Framework; see the [deploy workflow](https://github.com/observablehq/framework/blob/main/.github/workflows/deploy.yml). Please open a pull request if you’d like to contribute. Contributors are expected to follow our [code of conduct](https://github.com/observablehq/.github/blob/master/CODE_OF_CONDUCT.md). 🙏 diff --git a/docs/convert.md b/docs/convert.md new file mode 100644 index 000000000..354a52647 --- /dev/null +++ b/docs/convert.md @@ -0,0 +1,391 @@ +# Converting notebooks + +Framework’s built-in `convert` command helps you convert an [Observable notebook](https://observablehq.com/documentation/notebooks/) to standard [Markdown](./markdown) for use with Observable Framework. To convert a notebook, you need its URL; pass it to the `convert` command like so: + +```sh echo +npm run observable convert +``` + +
+ +The above command assumes you’re running `convert` within an existing project. Outside of a project, you can use npx: + +
npx "@observablehq/framework@latest" convert <notebook-url>
+ +
+ +
+ +You can convert multiple notebooks by passing multiple URLs: + +
npm run observable convert <url1> <url2> <url3>
+ +
+ +
+ +The `convert` command currently only supports public notebooks. To convert a private notebook, you can (temporarily) make the notebook public unlisted by clicking **Share…** on the notebook and choosing **Can view (unlisted)** under **Public** access. Please upvote [#1578](https://github.com/observablehq/framework/issues/1578) if you are interested in support for converting private notebooks. + +
+ +For example, to convert D3’s [_Zoomable sunburst_](https://observablehq.com/@d3/zoomable-sunburst): + +
npm run observable convert "https://observablehq.com/@d3/zoomable-sunburst
+ +This will output something like: + + + +
   observable convert 
+
+  Downloaded zoomable-sunburst.md in 443ms
+
+  Downloaded flare-2.json in 288ms
+
+  1 notebook converted; 2 files written
+ +The `convert` command generates files in the source root of the current project by default (typically `src`); you can change the output directory using the `--output` command-line flag. The command above generates two files: `zoomable-sunburst.md`, a Markdown file representing the converted notebook; and `flare-2.json`, an attached JSON file. + +Due to differences between Observable Framework and Observable notebooks, the `convert` command typically won’t produce a working Markdown page out of the box; you’ll often need to make further edits to the generated Markdown. We describe these differences below, along with examples of manual conversion. + +
+ +The `convert` command has minimal “magic” so that its behavior is easier to understand and because converting notebook code into standard Markdown and JavaScript requires human interpretation. Still, we’re considering making `convert` smarter; let us know if you’re interested. + +
+ +## JavaScript syntax + +Framework uses vanilla [JavaScript syntax](./javascript) while notebooks use a nonstandard dialect called [Observable JavaScript](https://observablehq.com/documentation/cells/observable-javascript). A JavaScript cell in a notebook is technically not a JavaScript program (_i.e._, a sequence of statements) but rather a _cell declaration_; it can be either an _expression cell_ consisting of a single JavaScript expression (such as `1 + 2`) or a _block cell_ consisting of any number of JavaScript statements (such as `console.log("hello");`) surrounded by curly braces. These two forms of cell require slightly different treatment. The `convert` command converts both into JavaScript [fenced code blocks](./javascript#fenced-code-blocks). + +### Expression cells + +Named expression cells in notebooks can be converted into standard variable declarations, typically using `const`. So this: + +```js run=false +foo = 42 +``` + +Becomes this: + +```js run=false +const foo = 42; +``` + +
+ +Variable declarations in Framework don’t implicitly display. To inspect the value of a variable (such as `foo` above), call `display` explicitly. + +
+ +
+ +Framework allows multiple variable declarations in the same code block, so you can coalesce multiple JavaScript cells from a notebook into a single JavaScript code block in Framework. Though note that there’s no [implicit `await`](./reactivity#promises) when referring to a variable declared in the same code block, so beware of promises. + +
+ +Anonymous expression cells become expression code blocks in Framework, which work the same, so you shouldn’t have to make any changes. + +```js echo +1 + 2 +``` + +
+ +While a notebook is limited to a linear sequence of cells, Framework allows you to interpolate dynamic values anywhere on the page: consider using an [inline expression](./javascript#inline-expressions) instead of a fenced code block. + +
+ +### Block cells + +Block cells are used in notebooks for more elaborate definitions. They are characterized by curly braces (`{…}`) and a return statement to indicate the cell’s value. Here is an abridged typical example adapted from D3’s [_Bar chart_](https://observablehq.com/@d3/bar-chart/2): + +```js run=false +chart = { + const width = 960; + const height = 500; + + const svg = d3.create("svg") + .attr("width", width) + .attr("height", height); + + return svg.node(); +} +``` + + +To convert a named block cell to vanilla JavaScript: delete the cell name (`chart`), assignment operator (`=`), and surrounding curly braces (`{` and `}`); then replace the return statement with a variable declaration and a call to [`display`](./javascript#explicit-display) as desired. + +```js run=false +const width = 960; +const height = 500; + +const svg = d3.create("svg") + .attr("width", width) + .attr("height", height); + +const chart = display(svg.node()); +``` + +For an anonymous block cell, omit the variable declaration. To hide the display, omit the call to `display`; you can use an [inline expression](./javascript#inline-expressions) (_e.g._, `${chart}`) to display the chart elsewhere. + +
+ +If you prefer, you can instead convert a block cell into a function such as: + +
function chart() {
+  const width = 960;
+  const height = 500;
+
+  const svg = d3.create("svg")
+      .attr("width", width)
+      .attr("height", height);
+
+  return svg.node();
+}
+ +Then call the function from an inline expression (_e.g._, `${chart()}`) to display its output anywhere on the page. This technique is also useful for importing a chart definition into multiple pages. + +
+ +## Imports + +Notebooks often import other notebooks from Observable or open-source libraries from npm. Imports require additional manual conversion. + +If the converted notebook [imports other notebooks](https://observablehq.com/documentation/notebooks/imports), you should convert the imported notebooks, too. Extract the desired JavaScript code from the imported notebooks into standard [JavaScript modules](./imports#local-imports) which you can then import in Framework. + +
+ +In Framework, reactivity only applies to [top-level variables](./reactivity#top-level-variables) declared in fenced code blocks. If the imported code depends on reactivity or uses [`import-with`](https://observablehq.com/documentation/notebooks/imports#import-with), you will likely need to do some additional refactoring, say converting JavaScript cells into functions that take options. + +
+ +Some notebooks use [`require`](https://observablehq.com/documentation/cells/require) to load libraries from npm. Framework discourages the use of `require` and does not include built-in support for it because the asynchronous module definition (AMD) convention has been superseded by standard [JavaScript modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules). Also, Framework preloads transitive dependencies using static analysis to improve performance, and self-hosts imports to eliminate a runtime dependency on external servers to improve security and give you control over library versioning. So this: + +```js run=false +regl = require("regl") +``` + +Should be converted to a static [npm import](./imports#npm-imports): + +```js run=false +import regl from "npm:regl"; +``` + +
+ +The code above imports the default export from [regl](https://github.com/regl-project/regl). For other libraries, such as D3, you should use a namespace import instead: + +
import * as d3 from "npm:d3";
+ +
+ +
+ +You can import [d3-require](https://github.com/d3/d3-require) if you really want to a `require` implementation; we just don’t recommend it. + +
+ +Likewise, instead of `resolve` or `require.resolve`, use [`import.meta.resolve`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve). So this: + +```js run=false +require.resolve("regl") +``` + +Should be converted to: + +```js run=false +import.meta.resolve("npm:regl") +``` + +Some notebooks use [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) to load libraries from npm-backed CDNs such as [jsDelivr](https://www.jsdelivr.com/esm) and [esm.sh](https://esm.sh/). While you can use dynamic imports in Framework, for security and performance, we recommend converting these into static imports. So this: + +```js run=false +isoformat = import("https://esm.sh/isoformat") +``` + +Should be converted to: + +```js run=false +import * as isoformat from "npm:isoformat"; +``` + +
+ +If you do not want to self-host an import, say because you want the latest version of the library to update without having to rebuild your app, you can load it from an external server by providing an absolute URL: + +
import * as isoformat from "https://esm.sh/isoformat";
+ +
+ +## Generators + +In notebooks, the `yield` operator turns any cell [into a generator](https://observablehq.com/documentation/cells/observable-javascript#cells-implicitly-iterate-over-generators). In vanilla JavaScript, the `yield` operator is only allowed within generator functions. Therefore in Framework you’ll need to wrap a generator cell declaration with an immediately-invoked generator function expression (IIGFE). So this: + +```js run=false +foo = { + for (let i = 0; i < 10; ++i) { + yield i; + } +} +``` + +Can be converted to: + +```js run=false +const foo = (function* () { + for (let i = 0; i < 10; ++i) { + yield i; + } +})(); +``` + +
+ +Since variables are evaluated lazily, the generator `foo` above will only run if it is referenced by another code block. If you want to perform asynchronous side effects, consider using an animation loop and the [invalidation promise](./reactivity#invalidation) instead of a generator. + +
+ +If you need to use `await` with the generator, too, then use `async function*` to declare an async generator function instead. + +## Views + +In notebooks, the nonstandard [`viewof` operator](https://observablehq.com/@observablehq/views) is used to declare a reactive value that is controlled by a user interface element such as a range input. In Framework, the [`view` function](./reactivity#inputs) performs the equivalent task with vanilla syntax. So this: + +```js run=false +viewof gain = Inputs.range([0, 11], {value: 5, step: 0.1, label: "Gain"}) +``` + +Can be converted to: + +```js run=false +const gain = view(Inputs.range([0, 11], {value: 5, step: 0.1, label: "Gain"})); +``` + +In other words: replace `viewof` with `const`, and then wrap the input declaration with a call to `view`. The `view` function both displays the given input and returns the corresponding value generator so you can define a top-level reactive value. + +## Mutables + +In notebooks, the nonstandard [`mutable` operator](https://observablehq.com/@observablehq/mutable) is used to declare a reactive value that can be assigned from another cell. In Framework, the [`Mutable` function](./reactivity#mutables) performs the equivalent task with vanilla syntax. So this: + +```js run=false +mutable foo = 42 +``` + +Can be converted to: + +```js run=false +const foo = Mutable(42); +const setFoo = (x) => (foo.value = x); +``` + +Then replace any assignments to `mutable foo` with calls to `setFoo`. Note that `setFoo` must be declared in the same code block as `foo`, and that outside of that block, `foo` represents the value; any code that depends on `foo` will update reactively after `setFoo` is invoked. + +## Standard library + +As part of our modernization efforts with Framework, we’ve pruned deprecated methods from the standard library used in notebooks. The following notebook built-ins are not available in Framework: + +- [`DOM`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/dom/index.js) +- [`Files`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/files/index.js) +- [`Generators.disposable`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/disposable.js) +- [`Generators.filter`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/filter.js) +- [`Generators.map`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/map.js) +- [`Generators.range`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/range.js) +- [`Generators.valueAt`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/valueAt.js) +- [`Generators.worker`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/generators/worker.js) +- [`Promises`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/promises/index.js) +- [`md`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/md.js) +- [`require`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/require.js) +- [`resolve`](https://github.com/observablehq/stdlib/blob/493bf210f5fcd9360cf87a961403aa963ba08c96/src/require.js) + +For convenience, we’ve linked to the implementations above so that you can see how they work, and if desired, copy the code into your own Framework app as vanilla JavaScript. For example, for a [2D canvas](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D), you can replace `DOM.context2d` with: + +```js run=false +function context2d(width, height, dpi = devicePixelRatio) { + const canvas = document.createElement("canvas"); + canvas.width = width * dpi; + canvas.height = height * dpi; + canvas.style = `width: ${width}px;`; + const context = canvas.getContext("2d"); + context.scale(dpi, dpi); + return context; +} +``` + +For `md`, we recommend writing literal Markdown. To parse dynamic Markdown, you can also import your preferred parser such as [markdown-it](https://github.com/markdown-it/markdown-it) from npm. + +In addition to the above removals, a few of the built-in methods have changed: + +- `FileAttachment` (see [below](#file-attachments)) +- `Generators.input` is now an async generator +- `Generators.observe` is now an async generator +- `Generators.queue` is now an async generator +- `Mutable` (see [above](#mutables)) +- `width` uses [`ResizeObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) instead of window _resize_ events + +The Framework standard library also includes several new methods that are not available in notebooks. These are covered elsewhere: [`Generators.dark`](./lib/generators#dark) and [`dark`](./lib/generators#dark); [`Generators.now`](./lib/generators#now); [`Generators.width`](./lib/generators#width-element) and [`resize`](./javascript#resize-render); [`display`](./javascript#display-value); and [`sql`](./sql#sql-literals). + +## File attachments + +Framework’s [`FileAttachment`](./files) includes a few new features: + +- `file.href` +- `file.size` +- `file.lastModified` +- `file.mimeType` is always defined +- `file.text` now supports an `encoding` option +- [`file.arquero`](./lib/arquero) +- [`file.parquet`](./lib/arrow#apache-parquet) + +And two removals: + +- `file.csv` _etc._ treats the `typed: "auto"` option as `typed: true` +- `file.arrow` doesn’t take a `version` option + +For the latter, `file.arrow` now imports `npm:apache-arrow` internally, and thus uses the same version of Arrow as if you imported Arrow directly. + +## Recommended libraries + +In Framework, implicit imports of recommended libraries are normal [npm imports](./imports#npm-imports), and thus are self-hosted, giving you control over versioning. If a requested library is not in your [npm cache](./imports#self-hosting-of-npm-imports), then by default the latest version will be downloaded. You can request a more specific version either by seeding the npm cache or by including a semver range in the import specifier (_e.g._, `import * as d3 from "npm:d3@6"`). + +Because Framework defaults to the latest version of recommended libraries, you will typically get a more recent version than what is available in notebooks. As of August 2024, here is a comparison of recommended library versions between notebooks and Framework: +- [`@duckdb/duckdb-wasm`](./lib/duckdb) from 1.24.0 to 1.28.0 +- [`apache-arrow`](./lib/arrow) from 4.0.1 to 17.0.0 +- [`arquero`](./lib/arquero) from 4.8.8 to 6.0.1 +- [`dot`](./lib/dot) from `viz.js` 2.0.0 to `@viz-js/viz` at 3.7.0 +- [`exceljs`](./lib/xlsx) from 4.3.0 to 4.4.0 +- [`katex`](./lib/tex) from 0.11.0 to 0.16.11 +- [`leaflet`](./lib/leaflet) from 1.9.3 to 1.9.4 +- [`mermaid`](./lib/mermaid) from 9.2.2 to 10.9.1 +- [`vega`](./lib/vega-lite) from 5.22.1 to 5.30.0 +- [`vega-lite`](./lib/vega-lite) from 5.6.0 to 5.20.1 +- [`vega-lite-api`](./lib/vega-lite) from 5.0.0 to 5.6.0 + +In Framework, the [`html`](./lib/htl) and [`svg`](./lib/htl) built-in template literals are implemented with [Hypertext Literal](./lib/htl) which automatically escapes interpolated values. The [`dot`](./lib/dot) template literal implements responsive dark mode & better styling. And Framework has several additional recommended libraries that are not available in notebooks: [`ReactDOM`](./jsx), [`React`](./jsx), [`duckdb`](./lib/duckdb), [`echarts`](./lib/echarts), [`mapboxgl`](./lib/mapbox-gl), and [`vg`](./lib/mosaic). + +## Sample datasets + +Like recommended libraries, Framework’s built-in sample datasets (_e.g._, `aapl` and `penguins`) are backed by npm imports that are self-hosted. + +## Cell modes + +The `convert` command only supports code cell modes: Markdown, JavaScript, HTML, TeX, and SQL. It does not support non-code cell modes: data table and chart. You can use the “Convert to SQL” or “Convert to JavaScript” feature to convert data table cells and chart cells to their code equivalents prior to conversion. Alternatively, you can manually replace data table cells with `Inputs.table` (see [#23](https://github.com/observablehq/framework/issues/23) for future enhancements), and chart cells with Observable Plot’s [auto mark](https://observablehq.com/plot/marks/auto). + +## Databases + +Database connectors can be replaced by [data loaders](./data-loaders). + +## Secrets + +We recommend using a `.env` file with [dotenv](https://github.com/motdotla/dotenv) to store your secrets (such as database passwords and API keys) in a central place outside of your checked-in code; see our [Google Analytics dashboard](https://github.com/observablehq/framework/tree/main/examples/google-analytics/) example. diff --git a/docs/css/card.md b/docs/css/card.md deleted file mode 100644 index d5abe5885..000000000 --- a/docs/css/card.md +++ /dev/null @@ -1,54 +0,0 @@ -# CSS: Card - -The `card` class is used to group and delineate content. The `card` classes applies a background and border (with colors determined by the current [theme](../themes)). A card can have a title and subtitle using h2 and h3 elements, respectively. - -```html echo -
-

It gets hotter during summer

-

And months have 28–31 days

- ${Plot.cell(weather.slice(-365), {x: (d) => d.date.getUTCDate(), y: (d) => d.date.getUTCMonth(), fill: "temp_max", tip: true, inset: 0.5}).plot({marginTop: 0, height: 240, padding: 0})} -
-``` - -
Observable Plot’s title and subtitle options generate h2 and h3 elements, respectively, and so will inherit these card styles. - -Cards can be used on their own, but they most often exist in a [grid](./grid). Cards can contain whatever you like, including text, images, charts, tables, inputs, and more. - -```html echo -
-
-

Lorem ipsum

-

Id ornare arcu odio ut sem nulla pharetra. Aliquet lectus proin nibh nisl condimentum id venenatis a. Feugiat sed lectus vestibulum mattis ullamcorper velit. Aliquet nec ullamcorper sit amet. Sit amet tellus cras adipiscing. Condimentum id venenatis a condimentum vitae. Semper eget duis at tellus. Ut faucibus pulvinar elementum integer enim.

-

Et malesuada fames ac turpis. Integer vitae justo eget magna fermentum iaculis eu non diam. Aliquet risus feugiat in ante metus dictum at. Consectetur purus ut faucibus pulvinar.

-
-
- ${Inputs.table(industries)} -
-
-``` - -
Remove the padding from a card if it contains only a table.
- -To place an input inside a card, first declare a detached input as a [top-level variable](../javascript/reactivity#top-level-variables) and use [`Generators.input`](../lib/generators#inputelement) to expose its reactive value: - -```js echo -const industryInput = Inputs.select(industries.map((d) => d.industry), {unique: true, sort: true, label: "Industry:"}); -const industry = Generators.input(industryInput); -``` - -Then, insert the input into the card: - -```html echo -
- ${industryInput} - ${resize((width) => Plot.plot({ - width, - y: {grid: true, label: "Unemployed (thousands)"}, - marks: [ - Plot.areaY(industries.filter((d) => d.industry === industry), {x: "date", y: "unemployed", fill: "var(--theme-foreground-muted)", curve: "step"}), - Plot.lineY(industries.filter((d) => d.industry === industry), {x: "date", y: "unemployed", curve: "step"}), - Plot.ruleY([0]) - ] - }))} -
-``` diff --git a/docs/css/color.md b/docs/css/color.md deleted file mode 100644 index 1e350f3b1..000000000 --- a/docs/css/color.md +++ /dev/null @@ -1,88 +0,0 @@ -# CSS: Color - -The following custom properties are defined by the current [theme](../themes): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameColorDescription
--theme-foreground
page foreground color
--theme-background
page background color
--theme-background-alt
block background color
--theme-foreground-alt
heading foreground color
--theme-foreground-muted
secondary text foreground color
--theme-foreground-faint
faint border color
--theme-foreground-fainter
fainter border color
--theme-foreground-faintest
faintest border color
--theme-foreground-focus
emphasis foreground color
- -You can use these properties anywhere you like. For example, to style a line chart to match the focus color: - -```js echo -Plot.lineY(aapl, {x: "Date", y: "Close", stroke: "var(--theme-foreground-focus)"}).plot() -``` - -A handful of color classes are also provided: - -```html echo -
I am red text.
-``` - -```html echo -
I am yellow text.
-``` - -```html echo -
I am green text.
-``` - -```html echo -
I am blue text.
-``` - -```html echo -
I am muted text.
-``` diff --git a/docs/css/grid.md b/docs/css/grid.md deleted file mode 100644 index 3a77a2462..000000000 --- a/docs/css/grid.md +++ /dev/null @@ -1,82 +0,0 @@ -# CSS: Grid - -The `grid` class declares a [CSS grid](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout) container. The `grid` class is designed to pair with the [`card` class](./card) and the [`dashboard` theme](../themes) for dashboard layout. - -```html echo -
-

A

-

B

-

C

-

D

-
-``` - -Grids have a single column by default, but you can declare two, three, or four columns using the `grid-cols-2`, `grid-cols-3`, or `grid-cols-4` class. - -The built-in `grid` class is automatically responsive: in narrow windows, the number of columns is automatically reduced. The four-column grid can be reduced to two or one columns, while the three- and two-column grid can be reduced to one column. (If you want more columns or more control over the grid layout, you can always write custom styles.) - -
To see the responsive grid layout, resize the window or collapse the sidebar on the left. You can also zoom to change the effective window size.
- -With multi-column and multi-row grids, you can use the `grid-colspan-*` and `grid-rowspan-*` classes to have cells that span columns and rows, respectively. - -```html echo -
-

A

1 × 1
-

B

1 × 2
-

C

1 × 1
-

D

2 × 1
-
-``` - -By default, the `grid` uses `grid-auto-rows: 1fr`, which means that every row of the grid has the same height. The “rhythm” of equal-height rows is often desirable. - -```html echo -
-
Call me Ishmael.
-
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
-
It is a way I have of driving off the spleen and regulating the circulation.
-
-``` - -On the other hand, forcing all rows to the same height can waste space, since the height of all rows is based on the tallest content across rows. To have variable-height rows instead, you can either set [`grid-auto-rows`](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows) on the grid container: - -```html echo -
-
Call me Ishmael.
-
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
-
It is a way I have of driving off the spleen and regulating the circulation.
-
-``` - -Or break your grid into multiple grids: - -```html echo -
-
Call me Ishmael.
-
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
-
-
-
It is a way I have of driving off the spleen and regulating the circulation.
-
-``` - -The `card` class is not required to use `grid`. If you use `grid` by itself, you’ll get the same layout but without the card aesthetics. - -```html echo -
-
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
-
Call me Ishmael.
-
-``` - -Use the `resize` helper to re-render content when the container resizes. - -```html echo -
-
- ${resize((width) => `This card is ${width}px wide.`)} -
-
-``` - -See [Responsive display](../javascript/display#responsive-display) for more. diff --git a/docs/css/note.md b/docs/css/note.md deleted file mode 100644 index 77451ea78..000000000 --- a/docs/css/note.md +++ /dev/null @@ -1,55 +0,0 @@ -# CSS: Note - -The `note`, `tip`, `warning`, and `caution` classes can be used to insert labeled notes (also known as callouts) into prose. These are intended to emphasize important information that could otherwise be overlooked. - -
This is a note.
- -```html run=false -
This is a note.
-``` - -
This is a tip.
- -```html run=false -
This is a tip.
-``` - -
This is a warning.
- -```html run=false -
This is a warning.
-``` - -
This is a caution.
- -```html run=false -
This is a caution.
-``` - -Markdown is not supported within HTML, so if you want rich formatting or links within a note, you must write it as HTML. (In the future, we may add support for notes within Markdown.) - -
-

This is a styled tip using HTML.

-
- -```html run=false -
-

This is a styled tip using HTML.

-
-``` - -You can override the note’s label using the `label` attribute. - -
No lifeguard on duty. Swim at your own risk!
- -```html run=false -
No lifeguard on duty. Swim at your own risk!
-``` - -You can disable the label entirely with an empty `label` attribute. - -
This note has no label.
- -```html run=false -
This note has no label.
-``` diff --git a/docs/data-loaders.md b/docs/data-loaders.md new file mode 100644 index 000000000..0c3d0c08c --- /dev/null +++ b/docs/data-loaders.md @@ -0,0 +1,324 @@ +--- +keywords: server-side rendering, ssr, polyglot +--- + +# Data loaders + +**Data loaders** generate static snapshots of data during build. For example, a data loader might query a database and output CSV data, or server-side render a chart and output a PNG image. + +Why static snapshots? Performance is critical for dashboards: users don’t like to wait, and dashboards only create value if users look at them. Data loaders practically force your app to be fast because data is precomputed and thus can be served instantly — you don’t need to run queries separately for each user on load. Furthermore, data can be highly optimized (and aggregated and anonymized), minimizing what you send to the client. And since data loaders run only during build, your users don’t need direct access to your data warehouse, making your dashboards more secure and robust. + +
Data loaders are optional. You can use fetch or WebSocket if you prefer to load data at runtime, or you can store data in static files.
+
You can use continuous deployment to rebuild data as often as you like, ensuring that data is always up-to-date.
+ +Data loaders are polyglot: they can be written in any programming language. They can even invoke binary executables such as ffmpeg or DuckDB. For convenience, Framework has built-in support for common languages: JavaScript, TypeScript, Python, and R. Naturally you can use any third-party library or SDK for these languages, too. + +A data loader can be as simple as a shell script that invokes [curl](https://curl.se/) to fetch recent earthquakes from the [USGS](https://earthquake.usgs.gov/earthquakes/feed/v1.0/geojson.php): + +```sh +curl -f https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson +``` + +Data loaders use [file-based routing](#routing), so assuming this shell script is named `quakes.json.sh`, a `quakes.json` file is then generated at build time. You can access this file from the client using [`FileAttachment`](./files): + +```js echo +FileAttachment("quakes.json").json() +``` + +A data loader can transform data to perfectly suit the needs of a dashboard. The JavaScript data loader below uses [D3](./lib/d3) to output [CSV](./lib/csv) with three columns representing the _magnitude_, _longitude_, and _latitude_ of each earthquake. + +```js run=false echo +import {csvFormat} from "d3-dsv"; + +// Fetch GeoJSON from the USGS. +const response = await fetch("https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson"); +if (!response.ok) throw new Error(`fetch failed: ${response.status}`); +const collection = await response.json(); + +// Convert to an array of objects. +const features = collection.features.map((f) => ({ + magnitude: f.properties.mag, + longitude: f.geometry.coordinates[0], + latitude: f.geometry.coordinates[1] +})); + +// Output CSV. +process.stdout.write(csvFormat(features)); +``` + +Assuming the loader above is named `quakes.csv.js`, you can access its output from the client as `quakes.csv`: + +```js echo +const quakes = FileAttachment("quakes.csv").csv({typed: true}); +``` + +Now you can display the earthquakes in a map using [Observable Plot](./lib/plot): + +```js +const world = await fetch(import.meta.resolve("npm:world-atlas/land-110m.json")).then((response) => response.json()); +const land = topojson.feature(world, world.objects.land); +``` + +```js echo +Plot.plot({ + projection: { + type: "orthographic", + rotate: [110, -30] + }, + marks: [ + Plot.graticule(), + Plot.sphere(), + Plot.geo(land, {stroke: "var(--theme-foreground-faint)"}), + Plot.dot(quakes, {x: "longitude", y: "latitude", r: "magnitude", stroke: "#f43f5e"}) + ] +}) +``` + +During preview, the preview server automatically runs the data loader the first time its output is needed and [caches](#caching) the result; if you edit the data loader, the preview server will automatically run it again and push the new result to the client. + +## Archives + +Data loaders can generate multi-file archives such as ZIP files; individual files can then be pulled from archives using `FileAttachment`. This allows a data loader to output multiple (often related) files from the same source data in one go. Framework also supports _implicit_ data loaders, _extractors_, that extract referenced files from static archives. So whether an archive is static or generated dynamically by a data loader, you can use `FileAttachment` to pull files from it. + +The following archive extensions are supported: + +- `.zip` - for the [ZIP]() archive format +- `.tar` - for [tarballs]() +- `.tar.gz` and `.tgz` - for [compressed tarballs](https://en.wikipedia.org/wiki/Gzip) + +Here’s an example of loading an image from `lib/muybridge.zip`: + +```js echo +FileAttachment("lib/muybridge/deer.jpeg").image({width: 320, alt: "A deer"}) +``` + +You can do the same with static HTML: + +A deer + +```html run=false +A deer +``` + +Below is a TypeScript data loader `quakes.zip.ts` that uses [JSZip](https://stuk.github.io/jszip/) to generate a ZIP archive of two files, `metadata.json` and `features.csv`. Note that the data loader is responsible for serializing the `metadata` and `features` objects to appropriate format corresponding to the file extension (`.json` and `.csv`); data loaders are responsible for doing their own serialization. + +```js run=false +import {csvFormat} from "d3-dsv"; +import JSZip from "jszip"; + +// Fetch GeoJSON from the USGS. +const response = await fetch("https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson"); +if (!response.ok) throw new Error(`fetch failed: ${response.status}`); +const collection = await response.json(); + +// Convert to an array of objects. +const features = collection.features.map((f) => ({ + magnitude: f.properties.mag, + longitude: f.geometry.coordinates[0], + latitude: f.geometry.coordinates[1] +})); + +// Output a ZIP archive to stdout. +const zip = new JSZip(); +zip.file("metadata.json", JSON.stringify(collection.metadata, null, 2)); +zip.file("features.csv", csvFormat(features)); +zip.generateNodeStream().pipe(process.stdout); +``` + +To load data in the browser, use `FileAttachment`: + +```js run=false +const metadata = FileAttachment("quakes/metadata.json").json(); +const features = FileAttachment("quakes/features.csv").csv({typed: true}); +``` + +The ZIP file itself can be also referenced as a whole — for example if the names of the files are not known in advance — with [`file.zip`](./lib/zip): + +```js echo +const zip = FileAttachment("quakes.zip").zip(); +const metadata = zip.then((zip) => zip.file("metadata.json").json()); +``` + +Like with any other file, files from generated archives are live in preview (refreshing automatically if the corresponding data loader is edited), and are added to the build only if [statically referenced](./files#static-analysis) by `FileAttachment`. + +## Routing + +Data loaders live in the source root (typically `src`) alongside your other source files. When a file is referenced from JavaScript via `FileAttachment`, if the file does not exist, Framework will look for a file of the same name with a double extension to see if there is a corresponding data loader. By default, the following second extensions are checked, in order, with the corresponding language and interpreter: + +- `.js` - JavaScript (`node`) +- `.ts` - TypeScript (`tsx`) +- `.py` - Python (`python3`) +- `.R` - R (`Rscript`) +- `.rs` - Rust (`rust-script`) +- `.go` - Go (`go run`) +- `.java` — Java (`java`; requires Java 11+ and [single-file programs](https://openjdk.org/jeps/330)) +- `.jl` - Julia (`julia`) +- `.php` - PHP (`php`) +- `.sh` - shell script (`sh`) +- `.exe` - arbitrary executable + +
The interpreters configuration option can be used to extend the list of supported extensions.
+ +For example, for the file `quakes.csv`, the following data loaders are considered: `quakes.csv.js`, `quakes.csv.ts`, `quakes.csv.py`, _etc._ The first match is used. + +## Execution + +To use an interpreted data loader (anything other than `.exe`), the corresponding interpreter must be installed and available on your `$PATH`. Any additional modules, packages, libraries, _etc._, must also be installed. Some interpreters are not available on all platforms; for example `sh` is only available on Unix-like systems. + +
+ +You can use a virtual environment in Python, such as [venv](https://docs.python.org/3/tutorial/venv.html) or [uv](https://github.com/astral-sh/uv), to install libraries locally to the project. This is useful when working in multiple projects, and when collaborating; you can also track dependencies in a `requirements.txt` file. + +To create a virtual environment with venv: + +```sh +python3 -m venv .venv +``` + +Or with uv: + +```sh +uv venv +``` + +To activate the virtual environment on macOS or Linux: + +```sh +source .venv/bin/activate +``` + +Or on Windows: + +```sh +.venv\Scripts\activate +``` + +To install required packages: + +```sh +pip install -r requirements.txt +``` + +You can then run the `observable preview` or `observable build` (or `npm run dev` or `npm run build`) commands as usual; data loaders will run within the virtual environment. Run the `deactivate` command or use Control-D to exit the virtual environment. + +
+ +Data loaders are run in the same working directory in which you run the `observable build` or `observable preview` command, which is typically the project root. In Node, you can access the current working directory by calling `process.cwd()`, and the data loader’s source location with [`import.meta.url`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta). To compute the path of a file relative to the data loader source (rather than relative to the current working directory), use [`import.meta.resolve`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve). For example, a data loader in `src/summary.txt.js` could read the file `src/table.txt` as: + +```js run=false +import {readFile} from "node:fs/promises"; +import {fileURLToPath} from "node:url"; + +const table = await readFile(fileURLToPath(import.meta.resolve("./table.txt")), "utf-8"); +``` + +Executable (`.exe`) data loaders are run directly and must have the executable bit set. This is typically done via [`chmod`](https://en.wikipedia.org/wiki/Chmod). For example: + +```sh +chmod +x src/quakes.csv.exe +``` + +While a `.exe` data loader may be any binary executable (_e.g.,_ compiled from C), it is often convenient to specify another interpreter using a [shebang](). For example, to write a data loader in Perl: + +```perl +#!/usr/bin/env perl + +print("Hello World\n"); +``` + +If multiple requests are made concurrently for the same data loader, the data loader will only run once; each concurrent request will receive the same response. + +## Output + +Data loaders must output to [standard output](). The first extension (such as `.csv`) does not affect the generated snapshot; the data loader is solely responsible for producing the expected output (such as CSV). If you wish to log additional information from within a data loader, be sure to log to standard error, say by using [`console.warn`](https://developer.mozilla.org/en-US/docs/Web/API/console/warn) or `process.stderr`; otherwise the logs will be included in the output file and sent to the client. If you use `curl` as above, we recommend the `-f` flag (equivalently, the `--fail` option) to make the data loader return an error when the download fails. + +## Building + +Data loaders generate files at build time that live alongside other [static files](./files) in the `_file` directory of the output root. For example, to generate a `quakes.json` file at build time by fetching and caching data from the USGS, you could write a data loader in a shell script like so: + +```ini +. +├─ src +│ ├─ index.md +│ └─ quakes.json.sh +└─ … +``` + +Where `quakes.json.sh` is: + +```sh +curl -f https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson +``` + +This will produce the following output root: + +```ini +. +├─ dist +│ ├─ _file +│ │ └─ quakes.99da78d9.json +│ ├─ _observablehq +│ │ └─ … # additional assets +│ └─ index.html +└─ … +``` + +As another example, say you have a `quakes.zip` archive that includes yearly files for observed earthquakes. If you reference `FileAttachment("quakes/2021.csv")`, Framework will pull the `2021.csv` from `quakes.zip`. So this source root: + +```ini +. +├─ src +│ ├─ index.md +│ └─ quakes.zip +└─ … +``` + +Becomes this output: + +```ini +. +├─ dist +│ ├─ _file +│ │ └─ quakes +│ │ └─ 2021.e5f2eb94.csv +│ ├─ _observablehq +│ │ └─ … # additional assets +│ └─ index.html +└─ … +``` + +A data loader is only run during build if its corresponding output file is referenced in at least one page. Framework does not scour the source root (typically `src`) for data loaders. + +## Caching + +When a data loader runs successfully, its output is saved to a cache which lives in `.observablehq/cache` within the source root (typically `src`). + +During preview, Framework considers the cache “fresh” if the modification time of the cached output is newer than the modification time of the corresponding data loader source. If you edit a data loader or update its modification time with `touch`, the cache is invalidated; when previewing a page that uses the data loader, the preview server will detect that the data loader was modified and automatically run it, pushing the new data down to the client and re-evaluating any referencing code — no reload required! + +During build, Framework ignores modification times and only runs a data loader if its output is not cached. Continuous integration caches typically don’t preserve modification times, so this design makes it easier to control which data loaders to run by selectively populating the cache. + +To purge the data loader cache and force all data loaders to run on the next build, delete the entire cache. For example: + +```sh +rm -rf src/.observablehq/cache +``` + +To force a specific data loader to run on the next build instead, delete its corresponding output from the cache. For example, to rebuild `src/quakes.csv`: + +```sh +rm -f src/.observablehq/cache/quakes.csv +``` + +See [Automated deploys: Caching](./deploying#caching) for more on caching during CI. + +## Errors + +When a data loader fails, it _must_ return a non-zero [exit code](https://en.wikipedia.org/wiki/Exit_status). If a data loader produces a zero exit code, Framework will assume that it was successful and will cache and serve the output to the client. Empty output is not by itself considered an error; however, a warning is displayed in the preview server and build logs. + +During preview, data loader errors will be shown in the preview server log, and a 500 HTTP status code will be returned to the client that attempted to load the corresponding file. This typically results in an error such as: + +``` +RuntimeError: Unable to load file: quakes.csv +``` + +When any data loader fails, the entire build fails. diff --git a/docs/data/dft-road-collisions.csv b/docs/data/dft-road-collisions.csv new file mode 100644 index 000000000..99064595e --- /dev/null +++ b/docs/data/dft-road-collisions.csv @@ -0,0 +1,106005 @@ +longitude,latitude +-0.198224,51.486454 +0.105042,51.49883 +0.173482,51.451924 +-0.139873,51.614153 +0.016495,51.595151 +0.061626,51.512146 +-0.0544,51.401567 +0.116442,51.58251 +0.007763,51.486112 +-0.05806,51.599313 +-0.088278,51.534038 +-0.068434,51.525943 +0.106283,51.498574 +-0.435995,51.454815 +-0.422338,51.531533 +-0.147037,51.58648 +-0.081305,51.490688 +-0.137725,51.48514 +-0.012675,51.476523 +-0.202486,51.545789 +-0.042585,51.442225 +-0.108959,51.523834 +-0.13362,51.427622 +-0.068221,51.605874 +0.020797,51.430681 +-0.011712,51.523493 +-0.023283,51.467674 +-0.162933,51.467517 +-0.040765,51.489091 +-0.005556,51.472364 +-0.026169,51.681709 +-0.07993,51.47027 +-0.014119,51.529802 +-0.059434,51.527071 +-0.266502,51.517042 +-0.179047,51.611575 +-0.332344,51.584781 +-0.182253,51.516432 +0.035959,51.592261 +-0.228878,51.534284 +-0.418468,51.493021 +-0.13041,51.527343 +0.027264,51.54645 +-0.128888,51.513461 +-0.365268,51.4443 +-0.43423,51.480734 +-0.151589,51.523038 +0.076384,51.5473 +-0.200058,51.492552 +-0.395109,51.53138 +-0.000439,51.539291 +0.119944,51.393282 +0.152743,51.458701 +-0.213049,51.358744 +-0.065523,51.509268 +-0.067779,51.509071 +-0.041189,51.628294 +-0.439238,51.614882 +-0.139707,51.612217 +0.132511,51.478927 +-0.086519,51.631613 +-0.266907,51.492714 +-0.400132,51.485138 +-0.379361,51.436852 +0.010777,51.567992 +-0.118,51.362058 +-0.211801,51.425064 +-0.093116,51.379461 +-0.050701,51.532061 +-0.204804,51.476232 +-0.136083,51.509502 +-0.003036,51.538265 +-0.113523,51.368236 +-0.047363,51.442196 +-0.01164,51.523492 +-0.06524,51.492114 +-0.225224,51.541855 +-0.342075,51.405244 +-0.140851,51.499992 +-0.163552,51.464289 +-0.28505,51.585359 +-0.25801,51.562435 +-0.039704,51.530961 +-0.209165,51.442451 +-0.140351,51.537402 +0.075928,51.564223 +-0.285195,51.50095 +-0.266125,51.505715 +-0.114112,51.336069 +-0.050905,51.549555 +-0.121009,51.518965 +-0.061245,51.531957 +-0.12042,51.405738 +0.054479,51.532991 +-0.076772,51.539515 +-0.06325,51.618157 +0.247313,51.552819 +-0.170833,51.572673 +-0.218157,51.504222 +0.021183,51.489937 +-0.11899,51.374358 +-0.12442,51.445028 +0.025015,51.512685 +-0.13046,51.516265 +-0.116554,51.398005 +-0.172291,51.511817 +-0.283165,51.468692 +-0.146909,51.498037 +-0.014544,51.507103 +-0.400892,51.55027 +-0.012464,51.50723 +-0.076828,51.516612 +-0.380416,51.561068 +-0.415555,51.449451 +0.072507,51.529275 +-0.184457,51.440668 +-0.217343,51.553848 +0.081585,51.527909 +-0.121536,51.604536 +-0.076098,51.584547 +-0.126765,51.506197 +-0.03877,51.52921 +-0.095903,51.59487 +0.160085,51.541876 +-0.348312,51.581114 +-0.183919,51.345356 +-0.239189,51.595129 +-0.181388,51.528378 +-0.085533,51.44752 +0.030289,51.595605 +-0.334878,51.611812 +0.000882,51.4839 +-0.331172,51.502477 +-0.047877,51.659969 +-0.288761,51.41106 +0.117621,51.582416 +-0.066814,51.411979 +-0.120638,51.538481 +-0.262439,51.519661 +-0.033526,51.356596 +-0.420855,51.503134 +-0.061884,51.515206 +-0.37035,51.414327 +0.120142,51.43425 +-0.261273,51.541189 +-0.096943,51.490133 +0.002651,51.388133 +-0.237079,51.529903 +-0.247816,51.54839 +-0.098924,51.568508 +-0.197264,51.491053 +0.007369,51.62688 +0.132085,51.562083 +-0.063946,51.472678 +-0.212816,51.459889 +-0.036169,51.486784 +-0.191496,51.479202 +-0.204997,51.455921 +-0.460545,51.457504 +0.175386,51.458076 +-0.049709,51.6375 +-0.167577,51.460836 +0.032354,51.537693 +-0.040113,51.591218 +0.068126,51.468858 +-0.282806,51.502021 +-0.236906,51.464552 +-0.009579,51.517864 +0.025057,51.412838 +-0.117596,51.524818 +-0.025301,51.503939 +-0.361497,51.565238 +-0.155163,51.601473 +-0.092693,51.395857 +-0.14,51.447974 +-0.1016,51.477538 +-0.074825,51.443091 +-0.110394,51.404795 +-0.017007,51.578132 +0.130699,51.536739 +-0.169533,51.523095 +-0.210975,51.470895 +-0.086099,51.605546 +-0.260173,51.49212 +0.012617,51.486128 +-0.208225,51.416844 +0.079261,51.526269 +0.074,51.438988 +-0.185026,51.533686 +0.044865,51.550101 +0.01154,51.407288 +-0.372903,51.477678 +-0.447698,51.530271 +-0.352567,51.471342 +0.177352,51.480315 +-0.391735,51.571061 +-0.099486,51.538087 +-0.025884,51.42707 +-0.098517,51.575507 +-0.112756,51.567275 +0.006418,51.536827 +-0.090061,51.466254 +-0.048032,51.476119 +-0.091578,51.549253 +-0.126459,51.504169 +0.077449,51.545347 +-0.063347,51.526588 +-0.067546,51.613605 +-0.04479,51.538096 +0.121204,51.496579 +-0.128587,51.420887 +-0.109585,51.50246 +0.220473,51.557071 +-0.275249,51.508313 +-0.126089,51.551464 +-0.112475,51.487255 +-0.416756,51.517466 +-0.23235,51.582356 +-0.04532,51.456676 +-0.224876,51.492598 +-0.037536,51.432788 +-0.072825,51.572507 +-0.447887,51.551837 +-0.45983,51.526196 +-0.203382,51.532934 +-0.136746,51.526095 +-0.381837,51.583235 +-0.359712,51.594789 +-0.085603,51.427944 +-0.250354,51.488961 +-0.241132,51.506646 +0.114675,51.563099 +-0.149647,51.358812 +-0.127692,51.528568 +-0.106842,51.490419 +-0.249735,51.551368 +-0.047271,51.65691 +-0.081857,51.590028 +-0.003849,51.424359 +-0.069388,51.396276 +0.059018,51.520142 +-0.073695,51.598689 +-0.109074,51.597565 +-0.463954,51.499606 +0.060627,51.555131 +0.100968,51.425261 +-0.138082,51.61203 +-0.154743,51.571935 +-0.035503,51.545144 +-0.179225,51.651513 +-0.06507,51.573998 +-0.45759,51.457223 +-0.141229,51.57352 +-0.00781,51.591061 +-0.183708,51.550877 +-0.110965,51.488579 +-0.192162,51.383261 +-0.375547,51.511058 +-0.046645,51.660038 +0.020698,51.442796 +-0.07046,51.589158 +-0.157435,51.546403 +-0.395527,51.574017 +-0.062564,51.640716 +0.249863,51.557707 +-0.096933,51.374406 +-0.377747,51.465344 +0.053962,51.516364 +-0.103333,51.398575 +-0.264589,51.613959 +-0.205611,51.36604 +-0.043581,51.513148 +-0.127242,51.508264 +-0.404405,51.477436 +-0.405818,51.452169 +-0.20769,51.455135 +0.219784,51.555357 +-0.391233,51.499413 +0.06997,51.53565 +-0.101139,51.348791 +-0.056797,51.47996 +-0.074647,51.581988 +-0.165324,51.428707 +-0.05358,51.558862 +-0.122402,51.61294 +0.029251,51.479573 +-0.392977,51.475203 +0.057629,51.515868 +-0.057709,51.540163 +-0.376104,51.511191 +-0.006734,51.426162 +0.014675,51.507971 +-0.113072,51.48257 +-0.075602,51.548093 +-0.225566,51.542714 +-0.019623,51.585002 +-0.071731,51.567336 +-0.122056,51.555518 +-0.200771,51.517976 +0.100241,51.578331 +-0.324173,51.535765 +-0.080149,51.653793 +0.049086,51.603246 +-0.390231,51.430087 +-0.297542,51.601808 +0.122745,51.531614 +-0.239438,51.500137 +-0.040187,51.64316 +0.104368,51.40689 +-0.12979,51.527684 +-0.033301,51.546366 +-0.189899,51.384171 +-0.045608,51.510251 +-0.077395,51.474392 +-0.165098,51.650169 +-0.163317,51.461165 +-0.100638,51.34944 +-0.052118,51.416691 +0.011534,51.437927 +0.187381,51.575157 +-0.165834,51.460863 +-0.150541,51.486279 +-0.267442,51.504799 +-0.122253,51.530765 +-0.362739,51.509756 +-0.025872,51.444031 +-0.407343,51.517932 +-0.053494,51.597699 +-0.049709,51.637491 +-0.069168,51.547438 +-0.005559,51.535313 +0.148176,51.408928 +-0.173833,51.52264 +-0.1903,51.489408 +-0.056059,51.539623 +-0.378651,51.470303 +-0.181667,51.545972 +-0.003585,51.503644 +-0.013536,51.612047 +0.09663,51.464026 +-0.10045,51.465361 +-0.18208,51.541041 +-0.268037,51.600782 +-0.169022,51.385843 +-0.08648,51.661377 +-0.102226,51.546035 +-0.220916,51.522905 +-0.298173,51.39073 +-0.064769,51.462754 +-0.095325,51.387519 +-0.010946,51.406683 +-0.094101,51.398299 +-0.170565,51.478994 +-0.326503,51.456855 +-0.314615,51.553667 +-0.202982,51.486312 +-0.243543,51.498661 +-0.352568,51.579573 +-0.416313,51.525688 +-0.292124,51.441585 +0.071417,51.52495 +-0.128845,51.512768 +-0.042722,51.486462 +0.155812,51.561919 +-0.178591,51.492608 +-0.165157,51.425691 +0.038972,51.474081 +0.083412,51.576752 +-0.203173,51.512599 +-0.023959,51.474681 +-0.107635,51.481008 +0.165071,51.574302 +0.075694,51.59107 +-0.03521,51.601136 +0.060094,51.517785 +-0.246073,51.535963 +-0.015902,51.536217 +-0.190479,51.384036 +-0.11495,51.463905 +-0.184244,51.460907 +-0.050796,51.566612 +-0.226907,51.489634 +-0.056032,51.479318 +-0.158454,51.501142 +-0.022695,51.501234 +-0.103367,51.543221 +-0.064171,51.384661 +0.257253,51.613105 +-0.292264,51.432055 +-0.051704,51.52072 +-0.336186,51.426095 +0.072819,51.553909 +-0.05558,51.416443 +-0.304262,51.491866 +0.001472,51.540778 +-0.020908,51.478623 +0.062018,51.388911 +0.230329,51.609285 +-0.102847,51.541504 +0.053488,51.53148 +-0.154072,51.526144 +-0.478993,51.546399 +-0.125944,51.484413 +-0.356045,51.609601 +-0.054292,51.627649 +-0.174041,51.458662 +-0.1335,51.586419 +0.109749,51.465364 +0.286199,51.573425 +-0.147623,51.435982 +-0.066116,51.37499 +0.08166,51.589265 +-0.005399,51.382155 +-0.071742,51.658735 +0.025131,51.563384 +-0.162712,51.533914 +0.077091,51.542872 +-0.125409,51.616036 +0.088296,51.400972 +-0.103848,51.63533 +-0.181473,51.49874 +0.036088,51.533788 +-0.270206,51.488132 +-0.135972,51.503754 +0.019851,51.581307 +-0.339713,51.549331 +-0.09608,51.570971 +0.091283,51.595712 +-0.031736,51.65541 +-0.150715,51.448135 +-0.242668,51.580173 +0.091959,51.456978 +-0.12454,51.44244 +-0.116035,51.460631 +-0.02484,51.549587 +-0.335932,51.588132 +-0.093653,51.581363 +-0.064965,51.427821 +-0.172946,51.541897 +-0.305365,51.598 +0.02516,51.551369 +-0.064853,51.451587 +-0.096063,51.440363 +0.146136,51.543652 +-0.308798,51.597321 +-0.196305,51.519005 +-0.232378,51.582374 +-0.04932,51.627026 +-0.145802,51.454658 +-0.35968,51.538767 +-0.055178,51.635316 +-0.073492,51.610313 +-0.098303,51.582355 +-0.08984,51.504981 +-0.43428,51.482218 +-0.032969,51.544697 +-0.394957,51.475428 +-0.082326,51.578211 +-0.060026,51.64937 +-0.103788,51.379221 +-0.345294,51.544985 +-0.041731,51.668355 +-0.028526,51.583425 +-0.184633,51.461641 +-0.209517,51.37235 +-0.098039,51.546849 +-0.04885,51.484613 +-0.025674,51.503325 +0.036247,51.594189 +-0.073088,51.477172 +-0.238548,51.474253 +-0.028401,51.589313 +-0.061715,51.571784 +-0.171806,51.424168 +-0.375615,51.511176 +1.8E-05,51.539517 +-0.072019,51.584741 +0.131635,51.362754 +0.058495,51.581391 +0.011985,51.490077 +-0.075797,51.571153 +-0.09595,51.570609 +-0.372694,51.550683 +-0.103916,51.43245 +-0.010537,51.531594 +-0.008816,51.508265 +-0.009232,51.49972 +0.198044,51.586171 +0.057685,51.581684 +-0.234334,51.592988 +-0.215954,51.52961 +0.205921,51.580403 +-0.33479,51.504803 +-0.10787,51.562952 +-0.382282,51.435607 +-0.055657,51.625468 +0.198522,51.55091 +-0.026754,51.539017 +-0.034825,51.485862 +-0.216414,51.506417 +-0.198703,51.528744 +-0.021874,51.466949 +0.00115,51.412035 +-0.093028,51.501112 +-0.06244,51.528938 +-0.092571,51.590679 +-0.005227,51.555442 +-0.386766,51.473301 +0.151501,51.491044 +-0.161199,51.652221 +-0.403079,51.438275 +-0.366662,51.564852 +0.056272,51.527663 +-0.098004,51.47605 +-0.048248,51.613286 +-0.065761,51.321009 +-0.326457,51.475028 +0.115053,51.41284 +-0.076849,51.527763 +-0.003299,51.428396 +-0.182869,51.495156 +-0.167979,51.583707 +-0.20435,51.372586 +-0.298433,51.552057 +-0.179454,51.458279 +-0.066212,51.497418 +-0.030347,51.357703 +0.001354,51.431851 +-0.33632,51.553788 +-0.337557,51.534481 +0.016277,51.508358 +0.121548,51.569108 +-0.351269,51.536869 +-0.383082,51.500524 +-0.341,51.584526 +-0.068616,51.596223 +-0.147913,51.601161 +0.153263,51.497262 +-0.310977,51.617585 +-0.048221,51.411267 +-0.307054,51.430075 +-0.037046,51.497545 +0.004615,51.407407 +-0.068412,51.5789 +-0.192304,51.412831 +-0.097885,51.357668 +-0.365588,51.549343 +-0.141916,51.457501 +-0.350434,51.530859 +0.099326,51.420497 +-0.213341,51.49066 +-0.426344,51.523647 +0.165144,51.57431 +-0.042062,51.529085 +-0.346522,51.536154 +-0.378852,51.532847 +-0.122275,51.605178 +-0.173035,51.397317 +-0.261296,51.552691 +-0.25246,51.56193 +-0.183114,51.652958 +-0.230092,51.49256 +0.068728,51.441104 +-0.10226,51.563257 +-0.349647,51.567374 +-0.125543,51.633124 +-0.1171,51.500494 +-0.165201,51.425674 +-0.07609,51.404407 +-0.182411,51.528034 +-0.154866,51.378328 +0.037657,51.530191 +-0.284982,51.492404 +-0.180491,51.432918 +-0.304277,51.491858 +-0.005552,51.600429 +-0.379559,51.436117 +-0.152405,51.548464 +-0.327289,51.553021 +-0.420606,51.469059 +-0.20691,51.523133 +0.096804,51.442395 +-0.391247,51.537046 +-0.060115,51.588016 +0.006845,51.533096 +-0.10207,51.43082 +-0.008323,51.559523 +-0.098821,51.56856 +-0.030844,51.374933 +0.082927,51.540574 +-0.156479,51.413289 +-0.3704,51.570065 +-0.027403,51.581356 +-0.099726,51.379802 +-0.156477,51.4755 +-0.318142,51.415271 +-0.007192,51.533264 +-0.061231,51.531939 +0.052669,51.492735 +-0.106788,51.373037 +-0.042625,51.516963 +-0.238499,51.464693 +-0.170461,51.520079 +0.151427,51.466513 +-0.253169,51.394519 +-0.106109,51.496621 +-0.199883,51.585423 +0.176004,51.480439 +-0.37184,51.53257 +-0.117118,51.401081 +-0.057265,51.534661 +0.013663,51.420579 +-0.032866,51.475829 +-0.2213,51.452338 +0.082451,51.344763 +-0.050463,51.548748 +-0.160517,51.52361 +-0.110058,51.550892 +0.026879,51.577059 +0.104902,51.505173 +-0.055208,51.555526 +-0.21534,51.475997 +-0.005966,51.513459 +-0.426287,51.434092 +0.008822,51.514789 +-0.313964,51.583746 +-0.212114,51.459788 +-0.241453,51.627328 +-0.023235,51.408132 +0.147313,51.552408 +0.074647,51.53448 +0.157998,51.465736 +-0.211787,51.442743 +-0.353042,51.5313 +-0.062691,51.619415 +0.13076,51.58342 +-0.333914,51.426845 +-0.100286,51.368373 +0.100356,51.531342 +-0.110339,51.589006 +-0.431508,51.495022 +-0.204294,51.533938 +0.073528,51.526055 +0.009353,51.633519 +-0.374239,51.476941 +-0.192649,51.370526 +-0.254931,51.552803 +-0.275364,51.508333 +0.212921,51.516808 +-0.300655,51.539653 +-0.406907,51.477956 +-0.242622,51.53459 +-0.216243,51.575692 +-0.103605,51.565248 +-0.410368,51.479451 +0.051848,51.567452 +-0.030776,51.355741 +0.073278,51.525313 +-0.218105,51.576439 +-0.061062,51.607806 +-0.116205,51.378144 +-0.078163,51.523261 +0.022947,51.517074 +-0.161764,51.419559 +-0.076987,51.663255 +-0.127779,51.437133 +-0.157349,51.521034 +-0.036809,51.612934 +-0.403975,51.51036 +0.029396,51.450074 +-0.139095,51.385254 +-0.315637,51.487696 +-0.219116,51.576401 +-0.106421,51.542272 +-0.287963,51.624203 +-0.186093,51.593511 +-0.385854,51.439567 +-0.167446,51.471661 +0.285102,51.573429 +-0.17667,51.620072 +-0.072471,51.454905 +0.018071,51.376322 +-0.06898,51.595473 +-0.078655,51.641269 +-0.126087,51.439812 +-0.068956,51.595356 +-0.36004,51.5544 +0.01786,51.365624 +0.081096,51.542153 +-0.25897,51.599623 +-0.360858,51.55131 +-0.143949,51.640979 +-0.32938,51.448623 +-0.145856,51.393976 +-0.109618,51.596998 +-0.41291,51.572959 +-0.093045,51.472031 +0.140869,51.577993 +-0.290545,51.620086 +-0.167767,51.460776 +-0.083223,51.529765 +0.033997,51.537674 +-0.109587,51.61233 +-0.016999,51.451875 +-0.258849,51.516281 +-0.116273,51.438063 +-0.175207,51.523597 +-0.215098,51.417605 +-0.267771,51.496513 +-0.174918,51.60902 +-0.017266,51.464982 +-0.306467,51.490684 +-0.168542,51.51942 +-0.119136,51.364144 +0.113106,51.402443 +-0.170911,51.553088 +0.209198,51.558704 +-0.164877,51.516278 +-0.091816,51.562161 +0.058145,51.521245 +-0.173318,51.482175 +-0.078213,51.523091 +-0.20031,51.498581 +0.048773,51.590212 +-0.148633,51.578484 +-0.305231,51.508076 +-0.030188,51.518257 +-0.214972,51.52598 +-0.136927,51.417045 +0.183844,51.5122 +-0.255568,51.621325 +0.227213,51.585468 +0.055533,51.450716 +-0.133936,51.592334 +-0.030258,51.664144 +-0.273449,51.625222 +-0.07876,51.527228 +-0.06385,51.473926 +-0.076101,51.686917 +-0.133484,51.463419 +-0.254905,51.495782 +-0.084879,51.606723 +-0.250213,51.488896 +0.018637,51.508281 +0.029738,51.525239 +-0.069958,51.611226 +0.033869,51.427973 +-0.029464,51.575087 +-0.239242,51.546706 +-0.223872,51.49359 +-0.083945,51.574703 +0.145595,51.595281 +-0.008897,51.507736 +-0.149787,51.502768 +-0.018899,51.402654 +-0.030464,51.475429 +-0.188586,51.389762 +-0.065679,51.662934 +-0.029741,51.51726 +-0.115666,51.46121 +0.051282,51.519594 +-0.186932,51.413773 +-0.174803,51.516028 +-0.072363,51.577625 +-0.156388,51.645024 +0.083815,51.528436 +0.148137,51.540207 +-0.017997,51.611763 +-0.242724,51.502336 +-0.106611,51.441028 +-0.104399,51.430165 +-0.115196,51.50371 +-0.173436,51.358718 +-0.255481,51.5912 +-0.041307,51.670138 +-0.403071,51.492129 +-0.044418,51.531966 +0.060832,51.575316 +0.052544,51.535813 +-0.400474,51.517353 +-0.057297,51.537647 +-0.164082,51.405504 +-0.108294,51.384266 +-0.320812,51.511501 +-0.323896,51.57941 +-0.084467,51.441684 +-0.1841,51.387624 +-0.508592,51.468979 +-0.382833,51.4469 +-0.323447,51.462476 +-0.26653,51.468069 +0.070099,51.521323 +-0.099911,51.369104 +0.247272,51.60318 +-0.069481,51.651396 +-0.340113,51.548644 +-0.365457,51.46681 +0.08063,51.541118 +0.170564,51.475675 +-0.012592,51.511224 +-0.090309,51.380611 +0.078982,51.55969 +0.095615,51.596669 +-0.15424,51.523782 +-0.278655,51.380733 +-0.145443,51.541969 +0.139169,51.60172 +-0.202603,51.645965 +-0.086853,51.550129 +-0.219782,51.550495 +-0.058619,51.659985 +-0.129807,51.51496 +0.208008,51.578502 +-0.028492,51.61587 +-0.406274,51.518403 +0.00176,51.332788 +0.195512,51.561794 +-0.124854,51.44883 +-0.297481,51.388454 +-0.122869,51.449842 +-0.103349,51.590458 +-0.253838,51.492781 +0.119816,51.612502 +-0.128405,51.56356 +-0.170941,51.479315 +-0.151897,51.505463 +-0.089397,51.527626 +-0.130733,51.60248 +-0.129449,51.422321 +-0.038332,51.453152 +-0.219013,51.456368 +-0.135247,51.550773 +-0.002744,51.483 +-0.169799,51.420755 +-0.055807,51.616226 +-0.256938,51.439439 +-0.264043,51.39094 +-0.377524,51.437123 +-0.435628,51.487847 +-0.211887,51.467824 +-0.062836,51.407085 +-0.274454,51.425175 +-0.353766,51.563988 +-0.198898,51.447383 +-0.246468,51.614922 +-0.011696,51.354555 +-0.142402,51.539089 +-0.104752,51.389641 +-0.03647,51.57962 +-0.2942,51.595797 +0.04274,51.575767 +-0.21597,51.52774 +-0.237865,51.548367 +-0.113542,51.454773 +-0.299273,51.534957 +-0.234065,51.492647 +-0.179279,51.38995 +-0.12326,51.5988 +-0.210231,51.370239 +-0.06205,51.414104 +-0.075485,51.528649 +-0.06032,51.61506 +-0.439494,51.526071 +-0.246185,51.60615 +0.124623,51.561706 +-0.147401,51.519303 +-0.059343,51.469166 +-0.078574,51.500139 +-0.029899,51.576704 +-0.179622,51.497839 +-0.134358,51.561937 +-0.060889,51.607812 +-0.105336,51.490943 +-0.198236,51.472975 +0.069843,51.487065 +-0.004742,51.460327 +-0.396472,51.584488 +0.085622,51.551569 +-0.268543,51.400035 +-0.212856,51.459953 +-0.188853,51.59564 +-0.018977,51.510874 +-0.005148,51.55857 +0.162875,51.50035 +-0.474054,51.515555 +-0.013054,51.579073 +-0.178014,51.556544 +-0.285114,51.407841 +0.001316,51.406276 +-0.069149,51.515865 +-0.057661,51.530459 +-0.047911,51.63123 +-0.330649,51.427257 +-0.10656,51.505216 +-0.09816,51.560888 +-0.116874,51.398964 +0.052977,51.466246 +-0.174032,51.394302 +-0.039604,51.47855 +0.263088,51.607579 +-0.049166,51.467424 +-0.154656,51.407856 +-0.231995,51.499612 +-0.279047,51.56315 +0.010511,51.595002 +0.02531,51.583318 +-0.029996,51.517363 +-0.0753,51.39926 +-0.097122,51.490667 +-0.282264,51.479658 +-0.147948,51.449305 +-0.266984,51.508524 +-0.059242,51.564109 +-0.347514,51.594366 +-0.016225,51.562931 +-0.395639,51.475275 +-0.07249,51.581458 +-0.120022,51.582112 +-0.085842,51.60547 +-0.396318,51.462471 +-0.134767,51.488789 +0.01499,51.572569 +-0.095097,51.487064 +-0.347135,51.535956 +-0.217445,51.504742 +-0.316296,51.597213 +-0.03019,51.577986 +0.020383,51.406633 +-0.09181,51.586081 +-0.424045,51.501288 +-0.118003,51.34516 +-0.195288,51.494421 +-0.126829,51.490228 +0.203666,51.552585 +-0.004994,51.425476 +0.14924,51.580744 +-0.401204,51.516662 +-0.210647,51.42037 +-0.131423,51.361904 +-0.072594,51.468045 +0.181283,51.475764 +-0.389167,51.493432 +-0.150184,51.455941 +-0.006742,51.540918 +-0.057211,51.532565 +-0.008601,51.50791 +-0.192378,51.509709 +-0.194197,51.457122 +-0.160956,51.527025 +-0.171434,51.61161 +0.122122,51.506427 +-0.114125,51.55406 +-0.128195,51.430485 +-0.119075,51.511668 +-0.11145,51.594591 +-0.061203,51.599068 +-0.31869,51.45168 +-0.364594,51.441026 +-0.330572,51.455789 +-0.00974,51.517804 +0.054545,51.427738 +-0.244226,51.535612 +-0.025991,51.599614 +-0.059519,51.408666 +-0.122735,51.576526 +-0.044779,51.510426 +-0.364449,51.42009 +-0.12158,51.40832 +0.105089,51.553622 +-0.021179,51.571791 +-0.452311,51.517527 +-0.071097,51.525366 +0.117593,51.582444 +-0.013183,51.445282 +-0.174815,51.604028 +-0.086807,51.399106 +-0.304236,51.491398 +-0.163149,51.521269 +0.083806,51.592293 +-0.043948,51.474297 +-0.076966,51.539006 +-0.350774,51.436013 +-0.075431,51.548054 +-0.24219,51.399697 +-0.118935,51.443672 +-0.270133,51.495397 +0.020553,51.561341 +-0.178086,51.545008 +-0.11816,51.4009 +-0.400654,51.445921 +-0.145724,51.420718 +-0.092461,51.555382 +-0.335533,51.557176 +-0.181818,51.609469 +-0.171126,51.45993 +-0.146772,51.548654 +-0.086346,51.57494 +-0.243972,51.464631 +-0.069552,51.588783 +-0.190991,51.547977 +-0.333031,51.583757 +0.153647,51.551536 +-0.111325,51.496265 +-0.197008,51.486957 +-0.128947,51.408887 +0.057305,51.49108 +-0.010958,51.531196 +-0.403392,51.585122 +-0.13839,51.510528 +-0.238976,51.506506 +0.102345,51.535722 +-0.422087,51.466615 +-0.287419,51.553444 +0.028668,51.364106 +-0.057221,51.533339 +0.140702,51.575046 +0.047854,51.550814 +-0.37557,51.511616 +0.164049,51.552487 +-0.221614,51.574163 +0.06637,51.575534 +-0.111133,51.387208 +-0.082295,51.622138 +-0.210127,51.517544 +-0.077846,51.528741 +-0.076558,51.540806 +0.088951,51.562202 +-0.065765,51.610303 +-0.209949,51.517316 +-0.16985,51.54898 +-0.286414,51.467678 +-0.027437,51.513543 +-0.275371,51.559652 +-0.052618,51.552336 +-0.033252,51.565241 +-0.48192,51.5399 +-0.01594,51.454726 +-0.157979,51.386326 +-0.198772,51.513467 +-0.049749,51.600182 +-0.069692,51.565054 +-0.264211,51.541665 +0.100939,51.425882 +0.115001,51.497356 +-0.131178,51.551176 +-0.065793,51.57124 +0.075814,51.41489 +-0.090003,51.473852 +-0.25601,51.554753 +-0.10119,51.402757 +-0.069551,51.512482 +-0.472866,51.545025 +0.057311,51.554218 +-0.315254,51.500433 +-0.016799,51.464794 +0.083719,51.528546 +-0.113023,51.505033 +-0.147571,51.492733 +-0.186346,51.482692 +-0.195198,51.600189 +-0.174356,51.512082 +-0.015165,51.523993 +-0.147892,51.602374 +-0.045734,51.670113 +-0.436093,51.502457 +0.162427,51.453424 +-0.322501,51.497695 +-0.011003,51.563571 +-0.192596,51.413816 +-0.129662,51.430472 +0.038437,51.540861 +-0.102863,51.565748 +-0.104414,51.430156 +0.096813,51.550263 +-0.390051,51.429877 +-0.23788,51.469926 +-0.083633,51.545077 +-0.357572,51.479919 +0.013148,51.389536 +0.084198,51.540291 +-0.181584,51.437656 +0.096932,51.61491 +-0.065806,51.487259 +-0.088335,51.497223 +-0.316017,51.540693 +-0.175408,51.606888 +-0.071059,51.572972 +-0.050521,51.54874 +-0.197169,51.486897 +-0.200755,51.518003 +-0.320283,51.534127 +-0.306979,51.586846 +-0.04933,51.498334 +0.037286,51.463067 +-0.07781,51.523759 +-0.170405,51.520042 +-0.080658,51.461847 +-0.024517,51.468099 +0.066794,51.434268 +-0.017543,51.513709 +-0.193553,51.538278 +-0.098071,51.439469 +-0.078458,51.567258 +-0.418314,51.455836 +-0.406546,51.49821 +-0.041301,51.587092 +-0.157873,51.337431 +-0.192567,51.456117 +-0.157733,51.512227 +-0.112881,51.467307 +-0.406368,51.451268 +-0.211258,51.553054 +-0.404785,51.476434 +-0.252445,51.536355 +-0.293011,51.530047 +-0.007297,51.57804 +-0.057696,51.424212 +-0.413385,51.573802 +-0.335446,51.533453 +-0.067156,51.614624 +-0.087362,51.410968 +-0.267285,51.504769 +0.026136,51.453476 +-0.058163,51.593505 +-0.146189,51.394278 +0.054044,51.537414 +-0.129542,51.422862 +0.141435,51.554116 +-0.127823,51.5324 +-0.123456,51.44923 +-0.059031,51.531795 +-0.146971,51.579942 +-0.281843,51.511926 +-0.128047,51.507261 +-0.105376,51.534099 +-0.249011,51.584116 +-0.162339,51.404497 +-0.063858,51.589625 +-0.092034,51.528353 +-0.130418,51.423587 +-0.154623,51.485048 +-0.227783,51.518306 +-0.133418,51.522166 +-0.159634,51.399544 +-0.233408,51.597883 +-0.05646,51.479406 +-0.371436,51.468728 +-0.23971,51.54951 +-0.068688,51.595891 +0.152139,51.45534 +-0.121228,51.581565 +-0.295123,51.36334 +-0.071907,51.519157 +-0.057344,51.561928 +-0.304581,51.492968 +-0.072801,51.516411 +-0.194985,51.519209 +-0.110161,51.597474 +-0.310424,51.391753 +-0.06271,51.518493 +-0.171667,51.480252 +-0.178664,51.513912 +-0.335172,51.593913 +0.007172,51.458235 +-0.098442,51.529922 +-0.022582,51.517481 +0.202848,51.545514 +-0.132089,51.325395 +-0.311754,51.413399 +-0.255512,51.610345 +-0.191827,51.360397 +-0.224241,51.51524 +-0.123003,51.475356 +-0.163596,51.464254 +-0.092124,51.502743 +-0.002338,51.454396 +-0.255202,51.554012 +-0.260926,51.551813 +-0.410337,51.566863 +-0.049246,51.657716 +0.119342,51.568519 +-0.067212,51.51497 +0.074914,51.526103 +-0.095433,51.631983 +-0.076605,51.534575 +-0.152393,51.443998 +-0.105301,51.564358 +-0.248775,51.541435 +-0.360969,51.479553 +-0.078408,51.473923 +-0.115577,51.461262 +-0.056179,51.530048 +-0.070365,51.515741 +0.158748,51.472773 +-0.117706,51.520413 +-0.230633,51.503161 +-0.173828,51.495735 +-0.140385,51.507907 +-0.27323,51.5457 +-0.030811,51.466038 +-0.154629,51.508797 +-0.135747,51.462637 +-0.011176,51.507343 +-0.12955,51.423006 +-0.063071,51.576546 +-0.121281,51.566638 +-0.181682,51.612857 +0.083456,51.52846 +-0.363283,51.478092 +0.027858,51.410155 +-0.07313,51.563924 +-0.178105,51.519263 +-0.192415,51.416214 +-0.362592,51.617084 +-0.193068,51.606918 +0.122043,51.576635 +-0.11955,51.404169 +-0.202802,51.439242 +0.010321,51.4457 +0.030272,51.489267 +-0.220025,51.485115 +-0.292392,51.378048 +0.054855,51.535889 +-0.061986,51.515171 +-0.311961,51.488956 +0.021552,51.474175 +-0.272073,51.54464 +-0.307859,51.531664 +-0.056768,51.65018 +-0.291182,51.553481 +0.258017,51.606687 +-0.221152,51.562341 +-0.127904,51.342513 +-0.190401,51.38309 +-0.30367,51.610951 +0.161265,51.471188 +-0.112496,51.468245 +-0.193617,51.649478 +-0.182649,51.38797 +-0.167937,51.487784 +-0.452402,51.538228 +0.127194,51.507037 +0.227361,51.568136 +-0.34961,51.527322 +-0.114362,51.463167 +-0.121717,51.451622 +-0.200622,51.521004 +-0.36391,51.510869 +-0.095954,51.437438 +-0.006816,51.508519 +0.105278,51.447045 +0.083552,51.572856 +0.156072,51.561941 +-0.126812,51.468861 +-0.399982,51.50134 +-0.083623,51.405808 +-0.291844,51.509617 +-0.010038,51.635881 +-0.115685,51.461102 +0.051871,51.450249 +-0.193038,51.542919 +-0.013665,51.499813 +0.134524,51.531589 +0.126981,51.534316 +-0.356768,51.55315 +-0.11464,51.316887 +0.010963,51.569941 +0.003302,51.618515 +-0.152318,51.365248 +0.004418,51.445306 +-0.349759,51.556298 +0.169375,51.52041 +-0.057444,51.417265 +0.212763,51.582208 +-0.048058,51.639262 +0.022021,51.517332 +-0.094747,51.39625 +-0.102326,51.546055 +-0.268344,51.469607 +-0.071208,51.518642 +0.127614,51.540473 +-0.073576,51.652327 +-0.422934,51.500932 +-0.138684,51.536188 +-0.059418,51.63856 +0.001916,51.540716 +-0.097128,51.490523 +0.06087,51.487726 +-0.290545,51.593559 +-0.292452,51.529984 +-0.045804,51.493545 +-0.187281,51.494703 +-0.0983,51.382675 +-0.026243,51.473803 +-0.111448,51.600553 +-0.099566,51.546541 +-0.042602,51.660573 +-0.188602,51.512618 +0.025916,51.329414 +-0.068416,51.57881 +-0.016312,51.576187 +-0.137172,51.403937 +-0.200573,51.473244 +-0.09918,51.370792 +-0.065041,51.611703 +-0.183361,51.517195 +-0.041993,51.354733 +-0.396332,51.515031 +-0.036657,51.455623 +-0.122294,51.409141 +-0.01529,51.473024 +-0.053951,51.415867 +-0.228831,51.490922 +-0.259508,51.382779 +-0.043513,51.611544 +-0.079463,51.442286 +-0.093038,51.586065 +-0.436642,51.490621 +0.041009,51.592848 +-0.059351,51.625583 +-0.257146,51.38671 +0.020647,51.518192 +-0.111693,51.600575 +-0.098005,51.549033 +-0.093683,51.494028 +0.05796,51.519702 +-0.016588,51.452066 +-0.000382,51.533022 +-0.213261,51.579612 +-0.107127,51.522132 +-0.081985,51.525257 +-0.169287,51.460548 +0.093779,51.52816 +-0.099441,51.561314 +-0.075886,51.545471 +-0.097041,51.505071 +-0.127388,51.500146 +-0.066741,51.442661 +-0.101488,51.477464 +-0.149326,51.495288 +-0.165826,51.33743 +-0.09925,51.58006 +-0.060119,51.514691 +-0.186425,51.495948 +-0.240735,51.550613 +-0.085481,51.494847 +-0.19941,51.605784 +-0.147387,51.438271 +-0.400436,51.581341 +0.054561,51.518466 +-0.07493,51.374856 +-0.096538,51.387035 +-0.321465,51.568207 +0.036922,51.542794 +-0.393367,51.498121 +0.078985,51.574295 +0.080649,51.574085 +-0.09115,51.54707 +-0.027509,51.481836 +-0.208436,51.411433 +-0.029502,51.607892 +0.065959,51.564875 +-0.328776,51.598246 +-0.199425,51.508603 +-0.00935,51.582589 +-0.204643,51.497191 +-0.058893,51.659666 +0.038755,51.489894 +-0.268546,51.529652 +-0.156617,51.416637 +-0.077284,51.524281 +-0.157317,51.378843 +-0.114207,51.504629 +-0.132329,51.510378 +-0.189314,51.524472 +0.123164,51.457208 +-0.066699,51.5754 +-0.333712,51.575017 +0.095326,51.546468 +-0.001292,51.607334 +-0.081555,51.379308 +-0.12271,51.433023 +-0.154204,51.445474 +-0.146383,51.461286 +-0.065887,51.610503 +-0.014596,51.456511 +-0.011401,51.590159 +-0.324068,51.590805 +-0.316303,51.552099 +-0.101563,51.546043 +0.23068,51.599953 +-0.037901,51.420555 +-0.05038,51.548683 +-0.009831,51.573901 +0.031243,51.522119 +-0.254305,51.386578 +0.147807,51.54238 +-0.048808,51.54328 +-0.319559,51.56121 +-0.099127,51.587504 +-0.199915,51.524698 +-0.125158,51.441065 +0.288497,51.543326 +-0.220203,51.485342 +0.017257,51.390158 +0.145809,51.56552 +-0.126913,51.56475 +-0.151048,51.503633 +-0.124096,51.332039 +-0.145549,51.446003 +0.033203,51.488452 +-0.081251,51.473772 +-0.129348,51.431124 +-0.060808,51.532049 +-0.043608,51.399076 +-0.057507,51.587901 +-0.070653,51.48572 +-0.140064,51.540544 +-0.07695,51.61188 +-0.142215,51.452263 +-0.016889,51.529103 +-0.421924,51.523084 +-0.138202,51.450068 +-0.297618,51.388636 +-0.077103,51.574402 +-0.278534,51.380902 +-0.176972,51.428088 +-0.30104,51.464231 +-0.268252,51.594752 +-0.111564,51.600554 +-0.099301,51.497168 +-0.161163,51.420908 +-0.24489,51.399395 +-0.034355,51.488084 +-0.059755,51.587992 +-0.067105,51.610721 +-0.373905,51.465273 +-0.075466,51.528073 +0.052756,51.535395 +-0.119014,51.374484 +-0.073992,51.44921 +0.067626,51.493147 +-0.285135,51.500994 +-0.350502,51.530572 +-0.137191,51.514834 +-0.022961,51.478774 +-0.103459,51.378856 +-0.175872,51.484589 +-0.019092,51.589255 +-0.119457,51.557679 +0.114894,51.406278 +0.00843,51.488852 +-0.121927,51.587007 +-0.129229,51.354405 +0.034738,51.577228 +-0.165404,51.403726 +0.28502,51.571488 +-0.175542,51.427508 +-0.145813,51.360559 +-0.176645,51.62143 +-0.255441,51.398285 +-0.193179,51.401586 +-0.116562,51.53695 +-0.191008,51.55411 +-0.001371,51.607524 +-0.041275,51.512831 +-0.419262,51.532094 +-0.052804,51.496603 +-0.326829,51.509717 +0.055737,51.530829 +-0.070572,51.517318 +0.039317,51.530549 +-0.127097,51.487561 +-0.035786,51.434323 +0.039372,51.502419 +-0.203346,51.497576 +-0.055791,51.556732 +-0.048672,51.513413 +-0.003851,51.506454 +-0.088378,51.653729 +-0.114291,51.619428 +0.021497,51.486604 +-0.073254,51.606038 +-0.416248,51.504699 +-0.352458,51.47117 +-0.137894,51.359606 +-0.054703,51.514278 +0.14613,51.465945 +-0.077193,51.570564 +-0.156424,51.49218 +-0.113547,51.531416 +0.031628,51.53499 +-0.096091,51.57071 +-0.020748,51.551811 +-0.060877,51.523984 +-0.094617,51.530022 +-0.273743,51.49821 +0.091196,51.371882 +0.040894,51.530674 +-0.287836,51.553486 +-0.297698,51.513389 +0.212665,51.521921 +-0.19194,51.465801 +-0.215379,51.529943 +-0.068066,51.604424 +-0.135179,51.510117 +0.03633,51.452265 +-0.051026,51.547048 +-0.225823,51.547601 +-0.076714,51.591491 +-0.144493,51.519213 +0.165471,51.545662 +0.037763,51.530936 +-0.174037,51.482933 +-0.072704,51.596524 +-0.150562,51.616265 +0.058733,51.541307 +0.17172,51.585708 +-0.129302,51.543116 +-0.40527,51.475344 +0.007158,51.40704 +-0.457453,51.492857 +-0.119216,51.511391 +0.052573,51.466865 +-0.071281,51.64782 +-0.046584,51.644642 +-0.481883,51.604264 +0.027311,51.463105 +-0.147694,51.519911 +-0.052774,51.472969 +-0.004207,51.536226 +-0.069946,51.533495 +-0.066409,51.514876 +-0.073035,51.567537 +-0.080613,51.541089 +-0.107696,51.562985 +-0.342198,51.444381 +0.183503,51.533079 +-0.062435,51.517175 +-0.254871,51.548333 +-0.162581,51.436829 +-0.267385,51.506686 +-0.138748,51.461425 +-0.254342,51.540664 +0.044858,51.556387 +-0.054967,51.649026 +-0.144247,51.468167 +-0.405684,51.471321 +-0.129351,51.497938 +-0.068575,51.548157 +-0.127274,51.517329 +-0.070381,51.473404 +0.054412,51.533091 +-0.262169,51.596397 +-0.090555,51.592607 +-0.233,51.49746 +-0.04477,51.634729 +-0.060949,51.589118 +-0.159799,51.684284 +-0.021881,51.534331 +-0.110688,51.549967 +-0.115516,51.367989 +-0.188638,51.499355 +-0.039576,51.427804 +0.011793,51.489649 +-0.106863,51.477722 +-0.247875,51.506675 +0.054616,51.595245 +-0.127334,51.517276 +-0.011301,51.525977 +-0.070377,51.589417 +-0.099762,51.543918 +-0.106136,51.532799 +-0.367574,51.534543 +0.025303,51.513975 +-0.20522,51.655078 +-0.036956,51.429199 +-0.051855,51.615414 +-0.109831,51.385334 +0.007374,51.354491 +-0.115916,51.486932 +-0.300507,51.412301 +-0.055688,51.600407 +-0.248007,51.535534 +0.107127,51.403738 +-0.018983,51.456585 +-0.141336,51.573738 +-0.195243,51.494448 +-0.083377,51.670832 +-0.132649,51.463765 +0.026328,51.459444 +-0.196945,51.560451 +-0.10299,51.368299 +-0.068074,51.604226 +-0.126494,51.459746 +-0.28443,51.537421 +0.065535,51.547239 +-0.217226,51.483391 +-0.187709,51.369749 +0.213157,51.593279 +-0.138571,51.51563 +0.040064,51.583997 +0.083728,51.568833 +-0.093439,51.496443 +-0.201949,51.419553 +-0.045761,51.546394 +-0.038704,51.512626 +0.065657,51.577327 +-0.054126,51.499403 +-0.15114,51.523094 +-0.190495,51.556117 +-0.18958,51.447932 +0.008556,51.510055 +-0.29223,51.599437 +-0.041898,51.5225 +-0.135388,51.525804 +-0.034987,51.545063 +-0.116573,51.338726 +-0.130832,51.527242 +-0.020842,51.50078 +-0.192357,51.454135 +-0.072097,51.584266 +-0.107037,51.470405 +0.072134,51.549326 +0.020613,51.503742 +-0.022381,51.603924 +-0.09247,51.435772 +-0.38703,51.530298 +-0.164712,51.428913 +-0.268178,51.50668 +-0.181372,51.481734 +0.217786,51.573597 +0.131726,51.55039 +-0.456043,51.532476 +-0.175268,51.535405 +-0.211505,51.385842 +0.02618,51.453502 +-0.031734,51.609377 +-0.27228,51.544517 +-0.075643,51.595637 +-0.067693,51.395205 +0.014905,51.517428 +-0.170581,51.467439 +-0.1006,51.546306 +-0.116079,51.484741 +-0.088202,51.489712 +-0.126407,51.450267 +-0.075369,51.460609 +-0.196524,51.401701 +0.10481,51.485057 +-0.02513,51.468244 +-0.086617,51.529982 +0.067877,51.556595 +-0.285874,51.38253 +-0.147774,51.450759 +0.020293,51.544061 +-0.063921,51.548386 +-0.057209,51.358655 +-0.014101,51.496079 +-0.166331,51.442004 +-0.077336,51.502502 +-0.381387,51.483298 +-0.068676,51.516487 +-0.21225,51.581089 +-0.132062,51.441832 +-0.417101,51.521248 +-0.069183,51.594757 +0.037235,51.518472 +-0.138263,51.636555 +-0.166067,51.460804 +-0.061014,51.526864 +-0.167292,51.483412 +-0.100496,51.585835 +-0.066494,51.405248 +0.285845,51.570681 +-0.473974,51.543366 +0.008615,51.515989 +-0.126313,51.417055 +-0.038956,51.549015 +-0.387382,51.538297 +-0.130378,51.520373 +0.16504,51.581551 +-0.280134,51.582895 +-0.105216,51.625037 +-0.389983,51.430182 +-0.094749,51.586228 +-0.191277,51.390046 +-0.040966,51.670348 +-0.246446,51.591128 +-0.122389,51.530614 +-0.062204,51.498494 +0.066913,51.576684 +0.083689,51.528519 +-0.143925,51.49808 +-0.11281,51.515065 +-0.389364,51.537308 +0.111296,51.421505 +-0.165927,51.398546 +-0.0935,51.404791 +-0.091015,51.494101 +-0.076139,51.488148 +0.02129,51.431095 +-0.012696,51.467099 +-0.2224,51.448111 +0.032521,51.5767 +-0.280524,51.463869 +-0.307978,51.588308 +0.045375,51.413744 +-0.169361,51.607864 +0.090447,51.544478 +0.041226,51.580614 +-0.204729,51.517003 +-0.240154,51.475167 +-0.09807,51.555788 +-0.011722,51.433531 +0.109503,51.533354 +0.000394,51.471768 +-0.074468,51.520296 +-0.032995,51.644361 +0.165745,51.605774 +-0.211802,51.52006 +-0.392123,51.535934 +-0.199412,51.592583 +-0.152047,51.536642 +0.056008,51.533324 +0.129757,51.564139 +0.025368,51.547292 +-0.149824,51.614535 +-0.218402,51.493507 +-0.053985,51.550056 +-0.022222,51.518806 +-0.055654,51.556235 +-0.073782,51.461032 +-0.149269,51.466466 +-0.301027,51.550198 +-0.116434,51.460044 +0.186925,51.574679 +-0.150666,51.486379 +-0.168351,51.428196 +-0.135092,51.462824 +-0.026732,51.562199 +-0.362575,51.466887 +-0.260669,51.521092 +0.178222,51.523645 +-0.414812,51.565575 +-0.158051,51.436785 +-0.488253,51.461876 +-0.141854,51.487724 +-0.027444,51.50804 +-0.124803,51.51398 +-0.111501,51.568999 +0.054498,51.53309 +-0.272021,51.544496 +-0.279756,51.490421 +-0.378351,51.43611 +-0.053487,51.509662 +-0.078457,51.527223 +-0.018239,51.39928 +-0.275747,51.547401 +0.136916,51.571869 +-0.297739,51.552119 +-0.217541,51.544733 +0.08471,51.556846 +0.1834,51.533045 +-0.119661,51.335889 +-0.418263,51.575045 +-0.283268,51.381502 +-0.076502,51.490483 +-0.058785,51.52707 +-0.219993,51.504421 +0.027598,51.46667 +-0.116848,51.477613 +-0.119414,51.516394 +-0.112563,51.561471 +-0.276744,51.608401 +0.039531,51.439152 +-0.190248,51.38369 +-0.233224,51.464101 +-0.267667,51.608978 +0.100655,51.420005 +-0.148036,51.350324 +0.005143,51.549816 +-0.037438,51.430691 +-0.102677,51.589971 +-0.147761,51.52359 +-0.158802,51.397337 +-0.04543,51.416355 +0.020317,51.544277 +0.234643,51.605372 +-0.163323,51.489699 +-0.023237,51.51867 +-0.124464,51.529937 +-0.106296,51.54147 +-0.08441,51.478122 +-0.329921,51.455887 +-0.389165,51.429712 +0.11451,51.46151 +0.060711,51.493781 +-0.164127,51.429866 +-0.375334,51.485436 +-0.137344,51.417042 +-0.318658,51.551594 +0.046389,51.455759 +-0.133647,51.427667 +-0.237003,51.529623 +-0.083454,51.492683 +-0.007928,51.533573 +0.166263,51.59116 +-0.13012,51.469291 +-0.21552,51.508265 +0.031408,51.352017 +-0.226345,51.56607 +0.175235,51.463358 +-0.037722,51.512673 +-0.106832,51.541389 +-0.109759,51.614113 +0.100694,51.598161 +0.22986,51.555499 +-0.124856,51.494773 +0.128526,51.558469 +-0.044444,51.628537 +-0.11134,51.346222 +-0.033802,51.681154 +-0.14602,51.522798 +-0.129391,51.431826 +-0.121781,51.451461 +-0.416744,51.498708 +0.170419,51.465021 +0.115082,51.540169 +-0.250569,51.50668 +-0.321221,51.510581 +0.057618,51.430832 +-0.028696,51.51744 +-0.391255,51.536003 +-0.174001,51.352099 +-0.254485,51.622451 +-0.169319,51.374076 +-0.030217,51.377152 +-0.194882,51.427709 +-0.019062,51.510911 +-0.272322,51.544545 +-0.025609,51.527154 +-0.204848,51.654992 +0.06645,51.555029 +-0.07707,51.595696 +-0.065246,51.491638 +-0.127906,51.633629 +-0.182197,51.375077 +-0.117279,51.559065 +-0.027905,51.582749 +-0.177284,51.419163 +-0.199868,51.590189 +-0.298103,51.49131 +-0.265564,51.390621 +-0.063554,51.639852 +-0.236556,51.607571 +-0.067466,51.560719 +-0.331896,51.461725 +0.043947,51.576915 +-0.213395,51.544894 +-0.09417,51.474414 +0.071816,51.486113 +0.005357,51.538284 +-0.116723,51.536197 +-0.159894,51.513682 +-0.091522,51.610176 +-0.014423,51.513863 +-0.192615,51.555052 +-0.047194,51.52168 +-0.388463,51.512998 +-0.055168,51.498269 +0.153092,51.439504 +-0.094124,51.613923 +-0.022165,51.52778 +-0.46294,51.495906 +-0.174268,51.47282 +0.185707,51.565835 +0.126356,51.474174 +-0.124214,51.470762 +-0.075704,51.547051 +-0.412232,51.459378 +-0.078963,51.503212 +-0.10503,51.392649 +-0.217258,51.558235 +-0.242673,51.399461 +-0.084128,51.650638 +-0.14004,51.540418 +0.004728,51.48522 +-0.197155,51.486897 +-0.041969,51.517816 +-0.187632,51.461885 +-0.174771,51.511801 +-0.267852,51.486397 +-0.296706,51.448764 +-0.030126,51.471242 +-0.222417,51.484333 +-0.034219,51.524394 +-0.172225,51.512022 +-0.33143,51.463858 +0.238111,51.623625 +-0.176503,51.555747 +-0.156872,51.551061 +-0.1293,51.525922 +0.030344,51.523942 +-0.103593,51.433659 +-0.063678,51.61454 +0.150687,51.46364 +-0.295421,51.449285 +-0.158229,51.513152 +-0.452702,51.533188 +-0.262839,51.577677 +0.006616,51.485574 +-0.092034,51.528335 +-0.426402,51.493524 +-0.257364,51.591785 +-0.364035,51.501744 +-0.371689,51.483848 +0.057437,51.523119 +-0.331242,51.459135 +-0.09162,51.352198 +-0.272208,51.528888 +-0.141779,51.60957 +0.08836,51.556233 +-0.272203,51.544651 +-0.025542,51.502046 +-0.172949,51.382864 +0.049834,51.543216 +0.046404,51.591135 +0.026922,51.45304 +-0.260248,51.479927 +0.008298,51.515014 +-0.170017,51.465694 +-0.124292,51.534817 +-0.069233,51.567358 +-0.074923,51.522156 +-0.085006,51.585862 +0.145348,51.566445 +-0.17959,51.445835 +-0.16026,51.422989 +-0.141191,51.461176 +-0.028827,51.514727 +0.037122,51.518195 +-0.465744,51.495205 +0.022011,51.530129 +0.116839,51.563096 +-0.448945,51.551671 +-0.061089,51.605828 +-0.303347,51.375185 +-0.445073,51.529013 +-0.12297,51.48424 +-0.360528,51.551665 +0.148199,51.484243 +-0.137493,51.54205 +-0.053411,51.478313 +-0.289012,51.503659 +-0.0571,51.515181 +-0.290575,51.4638 +0.058356,51.524011 +-0.123278,51.630921 +-0.031924,51.531145 +-0.108687,51.551256 +-0.099393,51.568003 +0.090578,51.550492 +-0.024562,51.431697 +-0.017022,51.554905 +-0.072014,51.584175 +-0.149748,51.359497 +-0.25515,51.488241 +-0.168784,51.471323 +0.001145,51.406306 +0.217324,51.593156 +-0.367168,51.478587 +-0.123465,51.568597 +-0.201586,51.522898 +0.183377,51.470473 +-0.087543,51.411106 +0.000905,51.607054 +-0.151807,51.374727 +-0.047497,51.643578 +-0.336913,51.435781 +-0.064479,51.38418 +-0.134077,51.636785 +-0.207548,51.4448 +-0.440535,51.450829 +0.091035,51.487138 +-0.080272,51.542693 +-0.318761,51.451717 +-0.205921,51.526292 +-0.130115,51.423618 +-0.00227,51.421311 +-0.12976,51.527719 +0.012437,51.491517 +-0.031062,51.369837 +-0.461198,51.504434 +-0.18094,51.630345 +-0.195305,51.365468 +-0.164724,51.435783 +-0.356552,51.553929 +-0.27293,51.565425 +-0.180193,51.546767 +-0.360825,51.54702 +-0.157857,51.517733 +-0.258294,51.608974 +-0.089827,51.365954 +-0.184318,51.462311 +-0.310575,51.593022 +-0.000342,51.512869 +-0.270983,51.50718 +-0.126033,51.499792 +-0.189813,51.384871 +-0.002293,51.549313 +-0.138907,51.46105 +0.201087,51.53892 +0.099527,51.457508 +-0.090128,51.618966 +-0.184095,51.457784 +-0.405915,51.587269 +-0.232923,51.531845 +0.048751,51.369593 +0.021046,51.595873 +-0.075179,51.399069 +0.144413,51.531238 +-0.243429,51.454776 +-0.080395,51.524332 +-0.15781,51.492823 +0.10341,51.491243 +0.006291,51.557224 +0.000573,51.513375 +-0.21808,51.415996 +-0.406979,51.510608 +-0.407278,51.502851 +-0.448789,51.581271 +0.109622,51.533424 +-0.041425,51.681155 +-0.030353,51.394394 +-0.084331,51.639302 +-0.279314,51.565636 +-0.109584,51.541118 +-0.061397,51.460792 +-0.312141,51.578819 +-0.451648,51.52687 +-0.098058,51.439433 +-0.291506,51.59949 +-0.194783,51.493694 +-0.165041,51.554148 +-0.200537,51.482929 +-0.194302,51.361388 +-0.091051,51.397314 +-0.251472,51.490615 +-0.126969,51.388325 +0.051099,51.454867 +-0.406782,51.517889 +-0.305422,51.505273 +-0.158772,51.392373 +-0.281619,51.561902 +-0.474257,51.515063 +-0.265246,51.593323 +0.036086,51.546999 +-0.105451,51.437421 +-0.122381,51.472279 +-0.114031,51.497378 +-0.201989,51.461018 +-0.06951,51.598638 +-0.300903,51.514029 +-0.233488,51.524714 +-0.087223,51.372593 +-0.127215,51.507868 +-0.008945,51.559831 +-0.067749,51.474008 +-0.074839,51.5986 +-0.136928,51.611652 +0.103058,51.503308 +-0.161133,51.410548 +-0.386945,51.44005 +-0.047754,51.548028 +-0.43619,51.487423 +-0.280488,51.562434 +-0.204618,51.49711 +-0.311176,51.41152 +0.184303,51.526607 +0.026381,51.617444 +0.176975,51.576357 +-0.020118,51.444653 +-0.212392,51.559465 +0.091434,51.432248 +-0.10496,51.436424 +-0.112356,51.616259 +0.087437,51.553398 +-0.112417,51.585893 +0.155973,51.558616 +0.025779,51.435011 +0.124848,51.345872 +-0.129009,51.35522 +-0.207769,51.64287 +-0.028798,51.475329 +-0.064846,51.61223 +-0.382871,51.594346 +-0.37468,51.522871 +-0.285991,51.419392 +0.144216,51.539937 +-0.082927,51.689358 +-0.005002,51.507499 +-0.001089,51.573816 +0.055265,51.471017 +-0.137479,51.542761 +-0.194422,51.512672 +-0.081705,51.649133 +-0.224105,51.494646 +-0.021274,51.519393 +-0.426374,51.454164 +-0.294667,51.57255 +0.000491,51.510516 +0.023911,51.526796 +-0.149522,51.358333 +0.006269,51.485562 +0.040746,51.528645 +-0.043518,51.513273 +-0.042582,51.442278 +-0.054281,51.412141 +-0.078069,51.527198 +-0.045623,51.627666 +-0.087904,51.526433 +-0.170015,51.462871 +-0.062505,51.517221 +-0.024994,51.410671 +-0.253657,51.589428 +0.003707,51.520749 +-0.162289,51.489988 +-0.12332,51.486233 +-0.113811,51.455218 +-0.40678,51.450591 +-0.060904,51.614233 +-0.218213,51.558897 +-0.102757,51.382261 +-0.070717,51.530945 +-0.110536,51.48886 +-0.109923,51.423204 +-0.10466,51.453065 +0.170031,51.564813 +-0.398521,51.527416 +-0.098384,51.488727 +-0.195426,51.56675 +-0.410863,51.479736 +-0.150543,51.50224 +-0.07212,51.58405 +-0.384064,51.500861 +-0.151231,51.455679 +-0.056776,51.413342 +0.293968,51.54428 +-0.120647,51.380562 +-0.039812,51.430685 +-0.377739,51.511412 +-0.222015,51.500225 +-0.380952,51.419914 +-0.27943,51.610698 +-0.12457,51.633585 +0.07121,51.556609 +-0.027785,51.390592 +-0.280046,51.405726 +-0.272412,51.544834 +0.220758,51.588972 +-0.267192,51.464671 +-0.052633,51.477985 +-0.072663,51.572918 +0.054638,51.455471 +-0.382701,51.594271 +-0.156637,51.438318 +-0.108569,51.523495 +-0.318491,51.581176 +-0.221963,51.500099 +-0.100329,51.584295 +-0.140008,51.540499 +-0.190585,51.459278 +-0.164694,51.516176 +0.070712,51.556752 +0.113699,51.551705 +-0.045779,51.548004 +-0.055573,51.528356 +-0.018737,51.620309 +-0.13284,51.516222 +0.147516,51.550911 +-0.377172,51.58452 +-0.142408,51.52087 +-0.292448,51.599414 +0.088862,51.443355 +-0.091274,51.503773 +-0.14338,51.523907 +-0.124278,51.48605 +-0.023775,51.426945 +-0.110609,51.525065 +0.056422,51.492912 +-0.197393,51.525757 +-0.197368,51.562517 +-0.1232,51.507732 +-0.098967,51.493062 +-0.194781,51.507615 +-0.078306,51.420828 +-0.157457,51.686729 +0.148028,51.49011 +-0.190622,51.608508 +-0.118246,51.302053 +-0.090942,51.54721 +-0.003302,51.423379 +0.096999,51.371527 +-0.252254,51.385351 +-0.187845,51.422681 +-0.214954,51.582803 +-0.069657,51.558714 +-0.029593,51.51268 +-0.118451,51.401525 +-0.292692,51.389302 +-0.063237,51.469707 +0.183997,51.571703 +-0.099617,51.541164 +-0.058445,51.498809 +-0.068128,51.433665 +-0.25428,51.543055 +0.072162,51.537878 +0.002058,51.374204 +-0.071017,51.627475 +-0.03044,51.512425 +-0.288616,51.466137 +-0.040213,51.530853 +-0.293089,51.595026 +-0.054047,51.540138 +-0.105498,51.58704 +-0.431289,51.453106 +-0.138339,51.507883 +-0.192601,51.555043 +-0.113205,51.504802 +-0.354301,51.50917 +-0.433908,51.450596 +-0.219031,51.493256 +-0.125409,51.508685 +-0.11573,51.461399 +-0.134564,51.565357 +0.05109,51.46431 +-0.474011,51.509053 +-0.195619,51.487475 +-0.316291,51.521948 +-0.216225,51.355393 +-0.059166,51.52624 +-0.162368,51.363599 +-0.136107,51.611234 +-0.15394,51.367414 +-0.243572,51.498644 +-0.238128,51.53446 +0.029704,51.450195 +-0.096796,51.369377 +-0.475457,51.515834 +-0.070217,51.453402 +-0.128015,51.50735 +-0.061916,51.621336 +-0.081706,51.396658 +-0.120674,51.481577 +-0.224421,51.436064 +0.129719,51.557458 +-0.016243,51.590025 +-0.271429,51.616416 +0.081506,51.539439 +-0.15882,51.519942 +0.139636,51.555722 +-0.056235,51.589634 +-0.076784,51.527591 +-0.153006,51.536451 +0.153085,51.440259 +-0.133065,51.564974 +-0.046221,51.522185 +-0.0954,51.487401 +-0.120907,51.385441 +-0.028238,51.52103 +0.01976,51.427732 +-0.177586,51.407954 +-0.283263,51.492172 +-0.104901,51.531637 +-0.003725,51.55119 +-0.176751,51.615901 +-0.151224,51.528482 +0.066378,51.576352 +0.061443,51.555315 +-0.30847,51.39328 +-0.352059,51.57328 +-0.058483,51.498927 +-0.164462,51.431544 +0.027582,51.475384 +-0.173225,51.528089 +-0.079462,51.628333 +-0.07305,51.511874 +-0.158034,51.492278 +-0.110232,51.597161 +0.025354,51.533651 +-0.099811,51.542732 +-0.018702,51.515896 +0.12632,51.355324 +0.02058,51.482474 +-0.109903,51.610995 +-0.114577,51.482747 +-0.128809,51.420378 +-0.053519,51.613311 +-0.085478,51.480468 +-0.113826,51.616705 +-0.140749,51.550276 +-0.035735,51.655198 +0.117377,51.582448 +0.026523,51.513864 +-0.140112,51.507174 +-0.261147,51.416121 +-0.106514,51.584143 +-0.40866,51.602485 +-0.148949,51.499967 +0.007638,51.367103 +-0.137119,51.56074 +0.125842,51.566818 +-0.263849,51.386935 +-0.023187,51.474543 +-0.057138,51.532906 +-0.0837,51.569555 +-0.110968,51.492689 +-0.129738,51.55252 +-0.299141,51.395223 +0.053099,51.552619 +-0.136021,51.538907 +-0.020022,51.572167 +-0.142024,51.515433 +-0.267243,51.493349 +-0.032978,51.580613 +-0.191497,51.602865 +0.089765,51.55038 +-0.305829,51.498184 +0.014774,51.518374 +-0.174843,51.541711 +0.007819,51.37978 +0.084312,51.603345 +-0.194348,51.366065 +-0.177041,51.555648 +-0.370205,51.539993 +-0.307238,51.605877 +-0.462835,51.527296 +-0.038428,51.612232 +-0.154149,51.610827 +-0.061168,51.649704 +-0.027445,51.562373 +0.121451,51.544704 +-0.395048,51.497856 +-0.139704,51.506925 +0.006862,51.567889 +-0.190345,51.53554 +-0.022475,51.510978 +-0.08897,51.473754 +-0.189168,51.518346 +-0.175639,51.649731 +-0.191421,51.550592 +-0.389866,51.493621 +-0.134547,51.524162 +-0.057731,51.440669 +-0.078922,51.499398 +-0.156995,51.43764 +-0.111064,51.599036 +-0.452387,51.538228 +-0.125113,51.508869 +-0.15466,51.441309 +0.144397,51.548072 +-0.236189,51.491366 +-0.189485,51.466716 +-0.132676,51.520922 +0.068849,51.536686 +-0.258533,51.52231 +-0.25081,51.559828 +-0.049178,51.607421 +0.005875,51.5376 +-0.040291,51.586752 +-0.115046,51.531431 +-0.011158,51.465391 +-0.096081,51.4752 +-0.258639,51.409088 +-0.243586,51.498662 +-0.093003,51.474089 +-0.013661,51.45716 +0.044217,51.375859 +-0.054917,51.436791 +-0.047488,51.441299 +-0.088861,51.505649 +-0.190127,51.502129 +0.218463,51.564969 +-0.215946,51.504737 +-0.209069,51.51697 +-0.386701,51.579157 +-0.013363,51.424215 +-0.119746,51.54683 +0.18099,51.464798 +-0.023929,51.412379 +0.016506,51.408057 +-0.124788,51.441311 +-0.159073,51.516879 +-0.206274,51.412677 +-0.32282,51.51804 +-0.073109,51.640485 +-0.237571,51.493239 +-0.11324,51.505018 +-0.086034,51.58614 +-0.186232,51.462331 +-0.100561,51.450543 +-0.216157,51.377092 +-0.068376,51.596785 +-0.104818,51.498579 +0.233528,51.589431 +-0.084306,51.493659 +-0.056051,51.649035 +-0.17072,51.465409 +-0.05235,51.409546 +-0.191976,51.473976 +-0.077089,51.496392 +-0.191756,51.453694 +-0.138789,51.541388 +-0.113613,51.464908 +-0.031973,51.516974 +-0.101027,51.449733 +-0.038632,51.510611 +-0.123463,51.537456 +-0.191771,51.403381 +-0.08998,51.474058 +-0.074596,51.519309 +-0.172919,51.53321 +-0.11485,51.568612 +-0.239081,51.548997 +-0.283305,51.588777 +-0.176615,51.621816 +0.083462,51.571212 +0.010519,51.375804 +-0.02492,51.415409 +-0.247759,51.493167 +-0.144468,51.414071 +-0.264751,51.464869 +-0.118095,51.457445 +-0.048867,51.440684 +-0.190509,51.468126 +-0.086503,51.61584 +-0.320272,51.503859 +0.0142,51.490983 +-0.306788,51.586142 +-0.296817,51.530462 +-0.482116,51.52707 +-0.194706,51.529906 +0.1265,51.415313 +-0.199277,51.593084 +-0.254895,51.615146 +-0.104188,51.379632 +-0.163934,51.589524 +-0.072905,51.583928 +0.078571,51.457899 +0.172082,51.452148 +0.11952,51.500962 +-0.072713,51.563216 +-0.293586,51.467621 +0.075836,51.538433 +-0.019816,51.67912 +-0.097662,51.386621 +-0.104886,51.591706 +-0.106991,51.402258 +-0.158466,51.382791 +0.032674,51.543892 +-0.088297,51.654276 +0.105985,51.462716 +0.072484,51.53004 +-0.172116,51.643516 +-0.335771,51.59688 +-0.204658,51.382329 +-0.274171,51.62142 +-0.105604,51.46397 +0.012216,51.517906 +-0.202863,51.418974 +-0.066058,51.475527 +-0.205565,51.529119 +-0.041855,51.426646 +-0.079801,51.647672 +-0.154194,51.476067 +0.025242,51.552564 +-0.272694,51.462693 +-0.001751,51.541265 +0.057261,51.450739 +-0.084626,51.39524 +-0.205738,51.471507 +0.212472,51.592852 +-0.18261,51.463993 +-0.014397,51.456436 +-0.108769,51.384247 +-0.119448,51.460245 +-0.145088,51.448837 +-0.029178,51.591367 +0.124865,51.494453 +-0.133108,51.512485 +-0.110892,51.55479 +-0.390903,51.525144 +-0.017787,51.445962 +-0.046405,51.648452 +-0.057553,51.518749 +-0.223078,51.548072 +-0.220947,51.651442 +-0.185379,51.479836 +-0.232114,51.571337 +-0.337788,51.467168 +0.009774,51.532156 +-0.084846,51.54194 +0.213223,51.555724 +-0.494834,51.478875 +0.055023,51.471093 +-0.066258,51.484065 +0.224338,51.518004 +-0.355835,51.426885 +-0.142681,51.538949 +-0.122625,51.409128 +-0.252813,51.486813 +-0.11699,51.495124 +-0.037914,51.510545 +-0.265942,51.584143 +-0.343595,51.588178 +-0.157099,51.521524 +-0.341572,51.405246 +0.1333,51.446457 +-0.091278,51.539518 +0.121239,51.510688 +-0.02166,51.527789 +-0.267485,51.62856 +-0.200897,51.354377 +-0.140756,51.515412 +-0.13832,51.636583 +-0.059157,51.526797 +-0.301869,51.54075 +-0.196735,51.577057 +-0.2174,51.505874 +-0.079637,51.639927 +-0.039426,51.488403 +-0.200861,51.456757 +0.167317,51.600277 +-0.058645,51.649222 +-0.288914,51.409677 +0.054863,51.470737 +-0.129576,51.459715 +0.068032,51.550478 +0.066703,51.386013 +-0.005544,51.535331 +-0.067299,51.394335 +0.046074,51.397185 +0.109321,51.563079 +-0.058621,51.514666 +0.081183,51.569031 +-0.042696,51.511614 +-0.013299,51.42836 +0.008139,51.632874 +-0.059508,51.519213 +-0.374038,51.552212 +-0.085509,51.540242 +-0.339473,51.610969 +-0.094151,51.381879 +-0.100175,51.382507 +-0.134391,51.520581 +-0.303439,51.376185 +-0.112155,51.511044 +-0.203165,51.587128 +0.212411,51.592475 +-0.196932,51.4962 +-0.176438,51.635221 +-0.10299,51.590758 +-0.118051,51.460618 +-0.164822,51.515513 +-0.171564,51.398877 +-0.355844,51.589969 +-0.175805,51.420552 +-0.260654,51.541162 +-0.132723,51.463722 +-0.188093,51.413863 +-0.188204,51.517207 +0.065168,51.565267 +0.141271,51.580719 +-0.160079,51.46473 +0.105126,51.498784 +-0.277746,51.539166 +-0.078658,51.500185 +-0.054285,51.607892 +-0.170919,51.470511 +-0.051031,51.54998 +-0.234643,51.494454 +0.073254,51.553335 +-0.240671,51.449762 +-0.155974,51.513692 +0.117588,51.589162 +-0.05205,51.679974 +-0.03604,51.598973 +-0.0656,51.473739 +-0.150953,51.442968 +0.062089,51.512498 +-0.092658,51.494083 +-0.165389,51.524352 +-0.185344,51.461841 +-0.093212,51.501178 +-0.050076,51.521026 +-0.164284,51.52099 +0.076504,51.540751 +-0.14779,51.347874 +-0.016622,51.452606 +-0.009802,51.573901 +0.095738,51.571119 +-0.163324,51.460986 +-0.200788,51.544225 +-0.239043,51.499907 +0.180571,51.57129 +-0.192772,51.604189 +-0.068134,51.514994 +0.17822,51.451684 +-0.061918,51.514739 +-0.189204,51.647414 +-0.361058,51.585887 +-0.199484,51.448957 +-0.102568,51.536077 +0.009068,51.578012 +-0.109507,51.440247 +0.067823,51.562711 +-0.4064,51.521804 +0.208707,51.543498 +-0.19202,51.474318 +-0.150572,51.46628 +-0.333133,51.534814 +0.219151,51.606053 +0.017703,51.490384 +-0.122156,51.506834 +-0.074642,51.418008 +-0.007743,51.507761 +-0.226335,51.515515 +0.123809,51.551352 +-0.24754,51.535671 +-0.160184,51.466413 +-0.108098,51.32974 +0.052612,51.436297 +-0.106191,51.439349 +0.033042,51.51591 +-0.153003,51.49058 +-0.110044,51.394106 +-0.227132,51.531722 +0.095821,51.560362 +-0.141942,51.493714 +-0.078546,51.420248 +-0.104464,51.501891 +0.012896,51.543784 +0.132172,51.536479 +0.022805,51.407103 +-0.153333,51.442826 +-0.397536,51.54232 +-0.202567,51.485514 +-0.122031,51.48605 +-0.09236,51.554337 +-0.066872,51.467501 +-0.295994,51.534343 +-0.029754,51.587393 +-0.300914,51.572964 +-0.153703,51.451482 +-0.476559,51.516909 +-0.196761,51.539209 +-0.128324,51.643141 +-0.150114,51.545919 +-0.085354,51.400171 +-0.018676,51.447057 +-0.211295,51.553207 +-0.361539,51.55604 +-0.099134,51.615344 +-0.154541,51.537356 +-0.133923,51.510871 +-0.262606,51.575839 +-0.353263,51.524775 +-0.373781,51.431101 +-0.278564,51.530483 +-0.10592,51.362385 +0.135902,51.471671 +-0.376117,51.569974 +-0.18372,51.362718 +-0.100922,51.489002 +-0.278246,51.565647 +-0.024173,51.413049 +-0.219369,51.455735 +-0.480254,51.501158 +0.095389,51.552231 +0.08245,51.590744 +-0.076363,51.487981 +-0.101264,51.494987 +-0.021918,51.466931 +0.0087,51.514306 +-0.378346,51.532876 +-0.105305,51.490997 +-0.257107,51.536245 +-0.118169,51.385621 +-0.160631,51.365361 +-0.159195,51.641732 +-0.129418,51.488551 +-0.178241,51.487656 +-0.105842,51.529476 +-0.037178,51.612751 +-0.114691,51.510707 +-0.34474,51.576936 +-0.239533,51.493538 +-0.128449,51.586734 +-0.014166,51.496575 +-0.33644,51.550885 +-0.277065,51.612506 +-0.057098,51.543327 +-0.058593,51.492616 +-0.199688,51.444131 +-0.365536,51.474284 +0.008789,51.491778 +-0.266562,51.516997 +-0.41701,51.50765 +-0.113387,51.461658 +-0.3179,51.511136 +-0.13906,51.542534 +-0.187658,51.510247 +0.035467,51.474591 +-0.064178,51.561016 +-0.036151,51.613129 +-0.077731,51.522894 +0.024604,51.487171 +-0.042926,51.474298 +-0.119528,51.516423 +-0.267771,51.529955 +0.094576,51.554305 +-0.372739,51.529615 +0.055028,51.450689 +-0.054302,51.466511 +-0.065635,51.482454 +-0.262264,51.588216 +-0.161788,51.46446 +-0.154317,51.414838 +-0.147763,51.347829 +-0.063498,51.617423 +0.012069,51.469743 +-0.334544,51.508792 +0.104515,51.529298 +-0.362253,51.479112 +-0.032943,51.546648 +-0.092436,51.563898 +-0.280017,51.503392 +-0.380423,51.437325 +-0.304261,51.4041 +-0.115529,51.584657 +-0.166087,51.426524 +-0.126096,51.448014 +-0.197499,51.470131 +-0.11014,51.525939 +0.056896,51.553983 +0.088097,51.455932 +-0.152353,51.502727 +-0.163073,51.461144 +-0.250301,51.610276 +-0.084378,51.548974 +-0.300572,51.412095 +0.021581,51.588085 +0.093047,51.535466 +-0.290476,51.411742 +-0.029821,51.576172 +-0.162241,51.542387 +-0.045884,51.481227 +0.136191,51.457826 +-0.079244,51.57325 +-0.137181,51.505554 +-0.155503,51.408238 +-0.030836,51.507917 +0.097091,51.373234 +-0.139819,51.454554 +-0.169159,51.530256 +-0.189667,51.385678 +0.191211,51.454553 +-0.127063,51.43776 +-0.077331,51.509471 +0.165382,51.539539 +-0.118386,51.364555 +0.124613,51.561805 +-0.19374,51.489101 +-0.214608,51.613363 +-0.201163,51.45677 +-0.133871,51.587576 +0.044859,51.492386 +-0.010546,51.510884 +-0.010845,51.531482 +0.041052,51.596705 +-0.006641,51.455063 +0.1066,51.608145 +-0.01292,51.457634 +-0.028168,51.475256 +0.11027,51.469788 +0.217444,51.592965 +0.108773,51.568403 +-0.075158,51.581834 +-0.10222,51.545496 +-0.125198,51.493106 +-0.422388,51.577628 +0.138783,51.571997 +-0.198264,51.495295 +-0.109845,51.502095 +-0.231149,51.582437 +-0.220016,51.585892 +-0.067851,51.433417 +-0.120711,51.515704 +-0.404271,51.477956 +0.089016,51.574629 +-0.239778,51.377898 +-0.283183,51.491218 +-0.161456,51.525711 +-0.290983,51.372667 +0.137767,51.473076 +-0.187172,51.646528 +-0.049118,51.491173 +-0.028046,51.469723 +-0.284743,51.536769 +-0.075023,51.552247 +-0.165344,51.488885 +-0.072946,51.571349 +-0.031838,51.508734 +-0.115047,51.462611 +-0.318274,51.601513 +-0.06963,51.516071 +-0.008476,51.568914 +-0.201542,51.529138 +-0.410091,51.491155 +-0.086786,51.380329 +-0.165768,51.517065 +0.011577,51.456595 +-0.476506,51.481794 +0.211998,51.541781 +0.027193,51.487414 +0.073262,51.5532 +-0.130468,51.507956 +-0.034314,51.565708 +0.020064,51.430703 +-0.381079,51.609841 +-0.204129,51.344444 +-0.058977,51.464907 +-0.034988,51.413698 +-0.126307,51.545101 +-0.302413,51.562942 +-0.228995,51.463264 +-0.10511,51.564463 +-0.073377,51.517122 +-0.334669,51.475307 +-0.037748,51.642741 +-0.152316,51.466226 +-0.087064,51.623799 +0.182092,51.450173 +-0.012991,51.636084 +-0.096857,51.490132 +-0.027911,51.443139 +-0.186915,51.525694 +0.076704,51.546107 +-0.31626,51.555606 +-0.032628,51.473002 +-0.190392,51.576878 +-0.242454,51.506756 +-0.12536,51.485294 +-0.063043,51.518462 +-0.124582,51.470552 +-0.098536,51.363785 +-0.143273,51.485417 +-0.079252,51.546354 +-0.414747,51.520541 +-0.282017,51.417211 +-0.062849,51.613996 +0.029852,51.490525 +0.026219,51.323267 +0.035717,51.594279 +-0.225316,51.598778 +-0.410957,51.447581 +-0.128595,51.547673 +-0.344661,51.541353 +-0.190022,51.501876 +-0.025086,51.494583 +-0.189566,51.603105 +0.090184,51.529627 +-0.136558,51.449448 +-0.153081,51.549221 +0.16359,51.477719 +-0.14502,51.642723 +-0.252355,51.588375 +0.003851,51.437294 +-0.10027,51.427751 +-0.18515,51.511369 +-0.01068,51.463477 +0.169576,51.528868 +0.11205,51.385753 +-0.134575,51.391082 +-0.02356,51.508874 +-0.102109,51.566186 +-0.15004,51.48583 +-0.062738,51.58913 +-0.13422,51.512782 +-0.206459,51.490933 +-0.101673,51.546161 +-0.266547,51.517006 +-0.200152,51.585922 +-0.073669,51.544005 +-0.201386,51.527589 +-0.10342,51.590496 +-0.123533,51.568706 +-0.094537,51.581287 +-0.116696,51.37844 +-0.192212,51.509886 +-0.30093,51.514074 +0.106763,51.551443 +-0.14178,51.546552 +-0.05428,51.478534 +-0.164892,51.455633 +-0.400535,51.497904 +-0.094149,51.470772 +-0.179546,51.4972 +0.194595,51.595193 +-0.024799,51.437232 +-0.188779,51.519788 +-0.109838,51.612559 +-0.168254,51.497141 +-0.122625,51.567631 +-0.020392,51.444963 +-0.300253,51.410229 +-0.365941,51.481079 +-0.282944,51.407045 +-0.191216,51.53612 +-0.039747,51.512149 +-0.123456,51.519399 +-0.132846,51.370362 +-0.239624,51.503521 +-0.399932,51.476449 +0.017389,51.438555 +0.117463,51.582437 +-0.127151,51.507319 +-0.132775,51.400001 +-0.077713,51.531203 +-0.041546,51.543464 +-0.298603,51.412453 +0.088713,51.497477 +-0.172942,51.429572 +-0.09209,51.598018 +-0.134221,51.465832 +-0.111549,51.599169 +-0.105733,51.479286 +0.096139,51.576687 +-0.215355,51.4483 +-0.288234,51.461725 +-0.288111,51.467712 +-0.041379,51.631256 +-0.016454,51.600442 +0.056328,51.527617 +-0.164255,51.520989 +0.117212,51.582316 +-0.128104,51.480194 +-0.164489,51.461031 +-0.063959,51.437346 +-0.055452,51.55624 +-0.272723,51.544614 +-0.105151,51.539509 +-0.045599,51.521896 +-0.091016,51.606742 +-0.004728,51.44512 +-0.010513,51.478887 +-0.221963,51.467879 +-0.234301,51.50854 +0.014247,51.508716 +-0.285115,51.501147 +-0.175334,51.522583 +-0.301421,51.412467 +-0.132791,51.454991 +-0.112758,51.474112 +-0.029129,51.521081 +-0.375649,51.474946 +-0.028106,51.66275 +-0.013494,51.529585 +-0.405724,51.478003 +0.038046,51.518557 +0.104356,51.532116 +-0.015463,51.462731 +-0.12776,51.598224 +-0.221389,51.522607 +-0.041626,51.512369 +-0.061907,51.538425 +-0.286285,51.553283 +-0.062644,51.619496 +-0.037266,51.430022 +-0.138542,51.643843 +-0.083784,51.50473 +-0.077697,51.502481 +-0.21857,51.55937 +-0.024272,51.52706 +-0.022838,51.496928 +-0.079999,51.49742 +-0.131325,51.513077 +-0.033813,51.52178 +-0.190592,51.51005 +-0.098647,51.609024 +0.028367,51.394031 +-0.195047,51.49395 +0.008772,51.492039 +-0.079073,51.641626 +-0.125068,51.494885 +-0.129448,51.511753 +-0.052733,51.472933 +-0.219607,51.550906 +-0.231144,51.548733 +-0.268584,51.475824 +-0.074326,51.399846 +-0.056429,51.519765 +-0.060965,51.516153 +-0.040091,51.564564 +-0.23632,51.464444 +-0.109958,51.597138 +-0.481946,51.529604 +-0.055126,51.545956 +0.020081,51.545477 +-0.019089,51.473421 +-0.04635,51.649413 +-0.022203,51.533886 +-0.055978,51.524604 +0.105874,51.462808 +-0.028153,51.475256 +0.08741,51.401096 +-0.25287,51.486832 +0.042349,51.456837 +-0.14103,51.387857 +-0.086343,51.505895 +-0.170703,51.572671 +0.104508,51.445638 +-0.025836,51.502896 +-0.12072,51.390366 +-0.104518,51.384511 +-0.109929,51.395156 +0.199046,51.547717 +-0.091228,51.619604 +-0.250956,51.586861 +-0.113871,51.381452 +-0.193818,51.630238 +-0.117477,51.55638 +-0.112638,51.446323 +-0.106866,51.371851 +-0.275564,51.536599 +-0.237042,51.529731 +0.012497,51.51773 +0.181236,51.580649 +-0.144026,51.485663 +-0.106206,51.592582 +-0.398231,51.497054 +-0.402137,51.454547 +0.12084,51.4785 +-0.030976,51.472569 +-0.20563,51.588668 +-0.39145,51.598339 +0.055845,51.533866 +0.079069,51.379491 +-0.127229,51.508237 +-0.049897,51.603449 +-0.217187,51.438589 +0.048368,51.606559 +0.006488,51.585296 +-0.09453,51.528996 +0.004309,51.543967 +-0.164689,51.608753 +-0.109452,51.550567 +0.013565,51.570031 +-0.101571,51.546178 +-0.052631,51.534126 +0.144481,51.455345 +-0.257687,51.562205 +-0.163786,51.431911 +0.067818,51.55148 +-0.111054,51.607614 +-0.150517,51.417773 +-0.266743,51.464727 +0.089285,51.462709 +-0.257435,51.405581 +-0.299456,51.412313 +-0.052819,51.445524 +-0.05976,51.549567 +-0.179769,51.562093 +-0.247046,51.601055 +-0.152185,51.515791 +-0.187757,51.492867 +-0.051212,51.679942 +-0.093805,51.394005 +-0.098617,51.57656 +-0.182394,51.52013 +-0.130508,51.389308 +-0.224647,51.507036 +-0.037761,51.45405 +-0.454366,51.471703 +-0.015408,51.51209 +-0.048175,51.653355 +-0.220206,51.589501 +-0.050674,51.509732 +-0.078086,51.526803 +-0.069497,51.614609 +-0.464059,51.547904 +-0.074381,51.584169 +0.052896,51.467327 +-0.114655,51.570875 +-0.191801,51.514817 +-0.073529,51.582482 +-0.053051,51.514151 +-0.002519,51.56259 +0.169924,51.525274 +0.148237,51.531599 +-0.258838,51.552088 +-0.061989,51.468922 +-0.012506,51.511223 +-0.180542,51.414259 +-0.126744,51.318853 +-0.475657,51.515872 +-0.231359,51.591909 +0.107709,51.532595 +-0.199184,51.480732 +-0.042353,51.484306 +-0.114233,51.413876 +-0.130561,51.54792 +-0.102177,51.492088 +-0.099156,51.497192 +-0.069048,51.595223 +-0.222986,51.56378 +0.170153,51.525233 +0.117194,51.50487 +0.130466,51.570664 +-0.155083,51.518247 +0.072189,51.525773 +0.032172,51.517085 +-0.080138,51.58902 +-0.383871,51.578794 +-0.041324,51.392986 +-0.292245,51.388576 +-0.41039,51.514449 +0.006488,51.41242 +-0.068953,51.47482 +-0.184056,51.64746 +-0.087529,51.453119 +-0.132401,51.507204 +0.027383,51.524794 +-0.123757,51.560797 +-0.060366,51.644808 +-0.368419,51.480241 +-0.03975,51.589593 +-0.361753,51.445222 +-0.192321,51.353696 +-0.224675,51.51076 +0.204256,51.513176 +-0.002021,51.442206 +-0.081229,51.419725 +-0.333289,51.43929 +0.069736,51.486932 +-0.094199,51.474405 +-0.100829,51.481536 +0.202544,51.544009 +-0.007728,51.369893 +-0.227509,51.517574 +0.181238,51.525208 +-0.02961,51.656417 +-0.133947,51.545906 +-0.106148,51.522107 +-0.131843,51.475047 +-0.057248,51.473403 +-0.378492,51.436184 +-0.140619,51.507803 +-0.159693,51.435669 +-0.405806,51.519008 +-0.103386,51.59929 +-0.303864,51.407449 +-0.418053,51.525792 +-0.153059,51.452102 +-0.1171,51.556077 +-0.136468,51.445301 +0.1478,51.543469 +-0.079209,51.546362 +-0.132474,51.428197 +-0.12519,51.521037 +-0.15184,51.363919 +0.146341,51.566688 +-0.046822,51.65961 +0.04835,51.532001 +-0.339715,51.491025 +-0.44816,51.53025 +-0.282258,51.493605 +-0.074963,51.489397 +-0.264524,51.565283 +-0.198584,51.542348 +-0.245,51.616662 +-0.015541,51.573665 +0.084202,51.561199 +-0.216247,51.564541 +0.052379,51.552326 +-0.010357,51.531762 +-0.060015,51.480832 +-0.114641,51.394872 +-0.193101,51.60173 +0.070784,51.563747 +-0.232769,51.506404 +0.069496,51.536648 +-0.482304,51.530957 +-0.032641,51.580041 +-0.064328,51.518079 +-0.092062,51.597982 +0.083427,51.52847 +-0.199538,51.492221 +-0.103692,51.536095 +-0.145992,51.394185 +-0.127632,51.489611 +-0.07,51.496059 +-0.065693,51.482446 +-0.351152,51.591971 +-0.315462,51.501443 +-0.167005,51.537228 +-0.184118,51.548186 +-0.06071,51.404307 +-0.03201,51.472641 +-0.213196,51.428385 +-0.168171,51.497059 +-0.224639,51.510193 +0.156205,51.562002 +-0.262052,51.566532 +-0.206152,51.453259 +-0.251904,51.545591 +0.084341,51.481547 +-0.226696,51.372476 +-0.428701,51.451354 +-0.195598,51.571878 +-0.155892,51.360673 +-0.240651,51.589414 +-0.062956,51.618611 +-0.087893,51.526361 +-0.371399,51.437416 +0.064666,51.556085 +-0.077047,51.574374 +-0.115021,51.382136 +-0.026323,51.474964 +-0.269012,51.506719 +-0.362305,51.478447 +-0.124502,51.539541 +-0.123911,51.435326 +-0.477224,51.530253 +-0.10424,51.418706 +0.078743,51.559497 +-0.257072,51.383364 +-0.447078,51.553993 +-0.216963,51.381141 +-0.194274,51.487976 +0.13295,51.448208 +-0.216046,51.555663 +-0.073837,51.508937 +-0.368735,51.547643 +-0.249328,51.537919 +0.130441,51.570728 +-0.346089,51.508722 +-0.104052,51.574283 +-0.288758,51.544291 +-0.226732,51.530151 +-0.067017,51.514814 +-0.001869,51.541545 +-0.233515,51.510596 +-0.214261,51.365633 +0.072443,51.57325 +0.205763,51.520504 +0.002091,51.496703 +-0.051243,51.519355 +-0.057013,51.428094 +0.002305,51.514092 +-0.165641,51.405349 +-0.153269,51.498237 +-0.129981,51.603196 +-0.24543,51.556429 +-0.084128,51.436382 +-0.419248,51.44754 +-0.175677,51.484415 +0.06897,51.559688 +-0.351238,51.566075 +0.157715,51.465831 +-0.253467,51.556747 +-0.142421,51.520906 +0.212881,51.562943 +-0.101114,51.49583 +-0.12935,51.464171 +-0.150445,51.545915 +-0.117863,51.465543 +-0.161858,51.415775 +-0.129079,51.575962 +-0.109929,51.612461 +-0.192226,51.491704 +-0.100855,51.473992 +-0.049877,51.473704 +-0.107436,51.471544 +0.021794,51.579215 +-0.379314,51.436546 +-0.055454,51.519982 +-0.096256,51.330088 +-0.155188,51.535999 +-0.020432,51.616867 +-0.245263,51.535277 +-0.391526,51.536088 +-0.417146,51.609272 +0.212713,51.59246 +-0.084205,51.441419 +0.081835,51.539703 +-0.252824,51.539652 +0.231913,51.598293 +-0.183245,51.593611 +-0.380878,51.485054 +-0.04241,51.490045 +-0.144921,51.539542 +-0.017616,51.433298 +0.014936,51.412248 +-0.249888,51.556415 +-0.194695,51.650007 +0.057749,51.46127 +-0.07574,51.52841 +-0.063149,51.589307 +-0.246019,51.381139 +0.164601,51.555282 +0.001062,51.622105 +-0.355745,51.601109 +-0.301631,51.489032 +-0.055766,51.528908 +-0.491712,51.47878 +-0.218695,51.46121 +-0.038065,51.459388 +-0.14313,51.553434 +-0.105349,51.614563 +-0.191771,51.363651 +0.155712,51.47862 +-0.09306,51.472031 +-0.083256,51.364381 +-0.192323,51.477587 +-0.135697,51.61103 +0.052785,51.532841 +0.059658,51.515796 +-0.05524,51.545302 +-0.184529,51.4628 +0.149619,51.531259 +-0.175215,51.630777 +-0.363798,51.510778 +-0.144388,51.515056 +0.061314,51.406172 +-0.343162,51.581023 +-0.357351,51.574991 +0.103167,51.553234 +-0.237568,51.493338 +0.026175,51.461829 +-0.204804,51.611073 +0.001164,51.552159 +-0.390393,51.512602 +-0.127418,51.531728 +0.020043,51.607437 +-0.14813,51.602909 +-0.277694,51.539004 +-0.128427,51.511341 +0.225341,51.525863 +-0.132457,51.463888 +-0.035702,51.545201 +0.019406,51.484932 +-0.143692,51.524038 +-0.293365,51.553755 +0.014239,51.408816 +-0.157836,51.467518 +-0.079454,51.589153 +0.193288,51.568652 +-0.006514,51.368055 +-0.280295,51.611502 +0.165883,51.5431 +-0.078473,51.476145 +-0.209271,51.521361 +-0.21831,51.518379 +-0.192751,51.417919 +0.16401,51.581435 +-0.301824,51.56287 +-0.124187,51.530013 +0.037473,51.474367 +-0.049368,51.391079 +-0.162886,51.494485 +-0.473839,51.510319 +-0.167745,51.334672 +-0.157972,51.523094 +-0.118408,51.512826 +-0.063484,51.614699 +-0.20193,51.519999 +-0.112618,51.385694 +-0.21302,51.464236 +-0.382279,51.502051 +-0.449492,51.552137 +-0.235886,51.570072 +-0.343069,51.429052 +-0.20727,51.526447 +-0.148057,51.492471 +-0.260567,51.616022 +-0.220247,51.478302 +-0.02107,51.510819 +-0.144517,51.444827 +-0.096004,51.440398 +-0.041356,51.669014 +-0.353023,51.582538 +-0.160374,51.501774 +-0.432806,51.509247 +-0.123764,51.305712 +-0.312449,51.58724 +-0.171321,51.3664 +0.210389,51.517791 +-0.127193,51.595508 +-0.080644,51.379096 +-0.040124,51.593979 +-0.065376,51.509319 +0.050047,51.54314 +-0.18395,51.630949 +-0.015785,51.375929 +-0.391251,51.536111 +-0.129703,51.526297 +-0.024717,51.468121 +-0.420319,51.51113 +-0.175192,51.527212 +-0.146511,51.470577 +-0.244881,51.53921 +0.012826,51.428696 +-0.096019,51.446612 +0.018524,51.403922 +-0.113684,51.345792 +-0.322138,51.589914 +-0.257852,51.482338 +-0.046717,51.643233 +-0.080389,51.650847 +-0.15073,51.646949 +-0.25361,51.558665 +-0.071207,51.40189 +-0.175752,51.539531 +-0.135027,51.497588 +-0.192457,51.410046 +-0.320492,51.533527 +0.010488,51.567332 +0.043947,51.576924 +-0.258154,51.619052 +-0.044018,51.664949 +-0.153832,51.406881 +-0.374089,51.524895 +-0.07697,51.400915 +-0.084955,51.546564 +-0.111446,51.476951 +-0.350865,51.530514 +-0.091417,51.488973 +-0.100404,51.537499 +-0.151511,51.57156 +-0.102957,51.465663 +-0.113162,51.465018 +-0.253534,51.558762 +-0.10588,51.54765 +-0.211413,51.346921 +0.081763,51.539713 +-0.171605,51.575706 +-0.292808,51.425174 +-0.229576,51.511086 +0.213394,51.592214 +-0.078098,51.527199 +-0.355956,51.609654 +-0.116788,51.536037 +-0.292972,51.524156 +-0.376684,51.589306 +-0.146762,51.447308 +-0.134583,51.482717 +-0.18815,51.462253 +-0.068144,51.606313 +0.022429,51.592558 +-0.177139,51.5319 +-0.095121,51.359197 +-0.121773,51.519651 +-0.188494,51.41101 +-0.07032,51.594515 +-0.054036,51.433845 +-0.14493,51.594972 +0.095271,51.486856 +0.202953,51.581709 +-0.063708,51.587365 +-0.05739,51.649165 +-0.120068,51.517655 +-0.141474,51.459508 +-0.481306,51.521952 +-0.091034,51.414643 +-0.371754,51.572566 +-0.168061,51.519547 +-0.219278,51.455851 +-0.397813,51.561127 +0.026801,51.502277 +-0.217055,51.528368 +-0.264586,51.39102 +-0.386827,51.473221 +-0.019715,51.520463 +-0.195831,51.553618 +-0.168103,51.530006 +-0.026911,51.407564 +0.005514,51.552678 +-0.125752,51.508411 +-0.126704,51.581778 +-0.180153,51.45953 +-0.103257,51.491395 +-0.130515,51.513514 +-0.122532,51.45034 +-0.152675,51.502957 +-0.094378,51.486018 +-0.030757,51.483348 +-0.113379,51.513159 +-0.087379,51.546199 +-0.157926,51.513516 +-0.233029,51.485905 +-0.120855,51.385296 +-0.122125,51.506896 +-0.413401,51.573784 +-0.41635,51.439795 +-0.128446,51.388412 +0.141939,51.561148 +0.127125,51.534322 +-0.139838,51.610052 +-0.202229,51.48496 +-0.107995,51.501517 +0.071928,51.556533 +-0.200823,51.478239 +0.009273,51.468694 +0.031873,51.520741 +-0.1329,51.45939 +-0.40951,51.498323 +-0.262567,51.571953 +-0.10552,51.479211 +-0.058265,51.488114 +-0.049376,51.513461 +0.117654,51.586229 +-0.2642,51.496082 +-0.0941,51.474359 +-0.157998,51.513526 +-0.215189,51.464376 +-0.449587,51.528542 +-0.008947,51.600396 +0.168077,51.488518 +0.130883,51.582347 +0.054979,51.553369 +-0.112227,51.665301 +-0.134843,51.564903 +-0.329963,51.533564 +-0.075878,51.546344 +-0.179098,51.452761 +-0.13803,51.61612 +-0.068042,51.531116 +0.148203,51.533947 +-0.14768,51.347747 +-0.330753,51.436233 +-0.125731,51.551746 +-0.249167,51.463927 +0.138458,51.529997 +-0.114281,51.595958 +0.033198,51.52847 +-0.288897,51.51059 +0.06662,51.462301 +-0.102846,51.498871 +0.004434,51.544846 +-0.016372,51.57314 +-0.404947,51.430926 +-0.152485,51.522981 +-0.22249,51.534305 +0.182984,51.575562 +-0.210336,51.420599 +-0.393061,51.513781 +-0.103116,51.398625 +-0.175833,51.42057 +-0.082482,51.650584 +-0.162923,51.496779 +-0.140505,51.57287 +-0.177515,51.495397 +-0.453123,51.497386 +-0.091739,51.560217 +-0.381899,51.57945 +-0.062677,51.632301 +-0.07782,51.629556 +-0.23359,51.500841 +0.054644,51.533123 +-0.192372,51.378292 +-0.087826,51.473582 +-0.293093,51.36501 +-0.110996,51.444255 +-0.339611,51.550166 +-0.362412,51.510453 +-0.196855,51.602103 +-0.088096,51.380611 +-0.14131,51.465333 +-0.167315,51.483538 +-0.123908,51.569414 +-0.073484,51.605043 +-0.117381,51.620152 +-0.128835,51.432419 +-0.064859,51.514383 +-0.143901,51.478827 +-0.240202,51.414406 +-0.182951,51.41408 +-0.177862,51.453803 +0.03141,51.57413 +-0.18687,51.461856 +-0.225847,51.519896 +-0.015756,51.57669 +0.190977,51.52178 +-0.124343,51.435657 +-0.177826,51.516129 +-0.199675,51.573164 +-0.003378,51.550231 +0.240601,51.622246 +-0.000371,51.599711 +-0.149036,51.431652 +-0.150456,51.445649 +0.263886,51.536807 +-0.048639,51.513502 +-0.113803,51.587974 +-0.135454,51.567602 +-0.16061,51.457976 +-0.376947,51.543018 +-0.05729,51.533412 +-0.219118,51.504336 +-0.054953,51.649017 +0.130476,51.570556 +-0.091314,51.619615 +-0.113666,51.405639 +-0.265053,51.583986 +-0.101141,51.495192 +0.035846,51.395097 +-0.304752,51.555134 +-0.096285,51.370619 +-0.034093,51.680116 +-0.203242,51.392074 +-0.29259,51.530517 +-0.036748,51.613004 +-0.011285,51.472408 +0.119494,51.542626 +-0.259443,51.610295 +-0.168178,51.643347 +0.051256,51.485971 +-0.155012,51.512868 +-0.02268,51.377322 +-0.029087,51.512051 +-0.129901,51.490124 +-0.325714,51.542495 +0.005119,51.53845 +-0.028535,51.526502 +-0.253145,51.492843 +-0.146406,51.536715 +-0.122065,51.434029 +0.147612,51.543139 +-0.084292,51.548604 +-0.283041,51.587344 +-0.0912,51.37577 +-0.159107,51.53643 +-0.249438,51.515142 +-0.233848,51.506447 +-0.175872,51.514885 +-0.094889,51.36306 +-0.108828,51.382459 +-0.121937,51.526542 +-0.142262,51.49648 +0.212732,51.562847 +-0.321361,51.566335 +-0.285518,51.565268 +-0.238374,51.506416 +-0.212888,51.481247 +-0.367565,51.470688 +-0.213023,51.494369 +-0.042522,51.443024 +-0.299219,51.491524 +-0.099817,51.354022 +-0.10104,51.452889 +-0.276767,51.469218 +-0.255523,51.621756 +-0.056003,51.51929 +-0.307503,51.411314 +-0.090344,51.464667 +0.06929,51.490438 +-0.098912,51.577455 +-0.14289,51.496616 +-0.141275,51.544808 +0.104085,51.405115 +-0.060635,51.428172 +-0.249037,51.513958 +-0.413008,51.497983 +0.000683,51.509956 +-0.112165,51.523687 +-0.307021,51.431351 +-0.095476,51.378681 +-0.06805,51.344419 +-0.191818,51.427698 +-0.126579,51.54586 +-0.155438,51.520527 +-0.285552,51.532878 +-0.073069,51.516892 +-0.061933,51.514739 +-0.290101,51.516911 +-0.25252,51.462835 +0.052396,51.552398 +-0.129308,51.432094 +-0.06769,51.642186 +-0.328549,51.470579 +-0.182217,51.458313 +-0.103498,51.499493 +-0.157304,51.49857 +-0.244116,51.45413 +-0.125547,51.525692 +-0.220322,51.485623 +-0.292673,51.384409 +-0.132646,51.470204 +-0.151932,51.520958 +-0.166219,51.364639 +0.054971,51.53238 +-0.190202,51.489343 +-0.072746,51.605067 +0.120994,51.43338 +-0.110325,51.506149 +-0.162037,51.627568 +-0.131079,51.464496 +-0.408867,51.49817 +-0.003473,51.338561 +-0.29826,51.552064 +-0.103998,51.43532 +-0.011453,51.481448 +-0.092882,51.397542 +-0.144196,51.498165 +-0.305834,51.53766 +0.017405,51.557672 +-0.400719,51.444879 +-0.043374,51.53649 +0.096108,51.564413 +-0.36696,51.548886 +-0.178697,51.46681 +-0.058342,51.480202 +-0.135255,51.635194 +0.132387,51.462994 +-0.13312,51.511478 +-0.124801,51.331636 +-0.015441,51.410797 +-0.251854,51.395084 +0.100522,51.561249 +0.121262,51.613475 +0.18049,51.603648 +-0.015304,51.473024 +-0.125347,51.607367 +0.062366,51.446486 +-0.35213,51.527403 +0.210582,51.591394 +-0.137793,51.461887 +-0.220517,51.503916 +-0.116421,51.455448 +-0.068172,51.548492 +-0.099102,51.436122 +-0.242962,51.548956 +0.07175,51.486231 +-0.171186,51.459877 +-0.091767,51.560236 +0.140029,51.572091 +-0.07093,51.587619 +-0.073583,51.538177 +-0.126874,51.490174 +-0.100152,51.497829 +-0.014694,51.491728 +-0.378958,51.559888 +-0.094366,51.605726 +-0.442338,51.522979 +-0.122209,51.409103 +-0.401128,51.527074 +-0.293794,51.410675 +-0.072745,51.652835 +-0.098616,51.468623 +0.010519,51.486235 +-0.081217,51.526054 +0.147543,51.551171 +0.046963,51.575955 +0.074158,51.581448 +-0.067845,51.484675 +-0.312617,51.554654 +-0.063829,51.570254 +-0.117435,51.543061 +-0.292032,51.384247 +-0.097226,51.370796 +-0.117327,51.58027 +-0.180043,51.495211 +-0.291322,51.517028 +-0.114477,51.479913 +-0.037299,51.454744 +-0.103921,51.546548 +-0.035371,51.499639 +-0.380784,51.559661 +-0.009562,51.479905 +-0.14121,51.491886 +-0.230681,51.570695 +-0.148269,51.476225 +0.048772,51.537542 +-0.060833,51.460531 +-0.217535,51.47916 +-0.123061,51.617986 +-0.06437,51.628849 +-0.002096,51.538015 +-0.390164,51.527301 +0.184185,51.603022 +-0.107107,51.372287 +-0.097279,51.579578 +-0.182528,51.463875 +-0.321348,51.516517 +-0.002905,51.559386 +-0.345597,51.542993 +-0.150673,51.515039 +-0.294701,51.569313 +-0.032626,51.535267 +0.171916,51.601316 +-0.076935,51.422658 +-0.275981,51.541982 +-0.481682,51.541866 +-0.11579,51.461337 +0.000335,51.599672 +-0.150131,51.509922 +-0.294802,51.569702 +-0.095933,51.570681 +-0.128672,51.528241 +-0.197063,51.560399 +-0.071143,51.498344 +-0.305279,51.562678 +-0.104851,51.489452 +-0.015387,51.597745 +-0.073027,51.571134 +-0.055514,51.524677 +-0.062303,51.518576 +-0.050254,51.640288 +0.069564,51.508257 +-0.019561,51.520677 +-0.124066,51.501037 +0.024105,51.613023 +-0.308642,51.59026 +-0.079183,51.523674 +-0.175911,51.373432 +-0.176034,51.511569 +-0.36434,51.478737 +-0.065643,51.482598 +-0.210271,51.477098 +-0.381445,51.448283 +0.127671,51.538917 +-0.210773,51.505845 +-0.029727,51.51726 +-0.132141,51.441644 +-0.092943,51.539024 +-0.379295,51.436671 +-0.021051,51.522878 +0.042544,51.457013 +-0.197544,51.643783 +0.022116,51.610198 +-0.077354,51.523644 +0.183989,51.571551 +0.038233,51.560828 +-0.29138,51.594003 +-0.068494,51.514991 +-0.162722,51.534013 +-0.236941,51.401974 +0.010375,51.626892 +0.065768,51.409924 +-0.078107,51.5013 +0.142759,51.544838 +-0.208436,51.477627 +-0.056866,51.560625 +-0.159299,51.409305 +-0.010044,51.456569 +-0.283067,51.587794 +0.232148,51.584538 +-0.141721,51.543763 +-0.198467,51.505495 +-0.07619,51.332791 +-0.286714,51.482727 +-0.29143,51.386909 +-0.020575,51.526206 +-0.17277,51.598853 +0.01248,51.491517 +-0.097628,51.494784 +-0.015406,51.578771 +0.008226,51.486158 +0.009109,51.46563 +-0.22071,51.589536 +-0.372698,51.541268 +-0.042626,51.44227 +-0.295158,51.552846 +-0.174432,51.604939 +0.099101,51.420294 +-0.214502,51.364594 +-0.395116,51.484845 +-0.098074,51.549808 +0.057004,51.525663 +-0.186026,51.516508 +-0.118177,51.457203 +-0.016497,51.507253 +-0.417261,51.521187 +0.067994,51.372906 +-0.271106,51.529069 +-0.105377,51.463885 +-0.002509,51.434633 +-0.212206,51.482847 +0.082796,51.482393 +-0.152081,51.42072 +-0.215907,51.463299 +-0.101544,51.536088 +-0.214634,51.554139 +-0.142632,51.516422 +-0.049828,51.659974 +-0.017409,51.614972 +-0.094375,51.483671 +0.212614,51.596374 +-0.221796,51.487345 +-0.332211,51.52847 +-0.181653,51.549577 +-0.032263,51.459057 +-0.189543,51.535042 +-0.176669,51.431725 +-0.359951,51.587365 +-0.197242,51.523389 +-0.106885,51.372787 +-0.218859,51.533872 +-0.364145,51.513543 +-0.123113,51.484242 +-0.415383,51.576535 +0.026505,51.453353 +-0.0345,51.427431 +-0.048593,51.513565 +-0.024113,51.386762 +-0.110434,51.608279 +-0.106733,51.56359 +-0.114315,51.637297 +-0.300995,51.607163 +-0.245088,51.506822 +-0.266506,51.516943 +-0.099486,51.377631 +-0.126065,51.517292 +-0.109399,51.589063 +-0.197398,51.484014 +-0.289299,51.50101 +-0.228566,51.463177 +-0.007493,51.627655 +-0.126407,51.58163 +-0.121358,51.530445 +-0.01217,51.459338 +-0.296597,51.552561 +-0.192151,51.536907 +-0.298248,51.55201 +-0.197253,51.454804 +-0.204386,51.540027 +-0.011971,51.627038 +-0.159031,51.553658 +0.009933,51.410643 +-0.081954,51.536291 +-0.02641,51.481278 +0.285449,51.550994 +-0.019693,51.344313 +-0.377257,51.542419 +-0.256881,51.434528 +-0.092722,51.395857 +-0.249195,51.513961 +-0.284913,51.55258 +-0.091907,51.366375 +0.079442,51.562821 +0.031385,51.306684 +0.185855,51.521983 +-0.087519,51.52461 +-0.053813,51.64898 +-0.136339,51.491917 +-0.037402,51.524142 +-0.055578,51.526882 +0.066268,51.555473 +-0.089002,51.494015 +-0.092448,51.502236 +-0.070605,51.479694 +0.114272,51.578052 +0.119087,51.568946 +-0.114827,51.46339 +-0.15362,51.45676 +-0.256881,51.482872 +-0.098927,51.579515 +-0.237744,51.493242 +-0.38678,51.483121 +-0.120487,51.453526 +0.028382,51.539497 +-0.11128,51.387822 +-0.249901,51.619172 +-0.130437,51.512587 +-0.193603,51.649478 +-0.414767,51.520389 +-0.166163,51.429664 +0.082603,51.491137 +-0.109071,51.463693 +-0.037757,51.528285 +-0.215644,51.463763 +0.021333,51.609159 +-0.090693,51.527998 +-0.181261,51.521443 +-0.037888,51.655549 +-0.029287,51.660189 +-0.134514,51.516159 +-0.105889,51.422321 +0.071636,51.515171 +-0.140753,51.55087 +-0.117392,51.556324 +-0.18184,51.561909 +-0.292307,51.539235 +-0.057386,51.412849 +-0.038716,51.534155 +-0.018507,51.590423 +-0.133528,51.587489 +0.027059,51.362803 +-0.073484,51.415453 +-0.370409,51.546407 +-0.21605,51.46296 +0.127101,51.534116 +0.054056,51.449887 +-0.132658,51.516435 +-0.069958,51.591811 +-0.412341,51.512227 +-0.40982,51.515088 +-0.125972,51.337788 +-0.343987,51.58813 +-0.085828,51.607179 +0.009774,51.486329 +-0.056487,51.559711 +-0.039459,51.61278 +-0.475755,51.546618 +0.129631,51.558656 +-0.180119,51.458226 +-0.110468,51.443797 +-0.293581,51.586508 +-0.136029,51.637473 +-0.113731,51.434803 +-0.247738,51.516241 +-0.174964,51.522838 +-0.262267,51.58247 +-0.119026,51.582447 +-0.203538,51.56156 +-0.127946,51.517097 +-0.198611,51.401661 +0.122613,51.481328 +-0.127052,51.511858 +0.110931,51.392051 +-0.092797,51.397513 +-0.14088,51.414248 +0.046657,51.30649 +0.000113,51.449867 +0.166708,51.482725 +-0.06173,51.487263 +0.187226,51.581859 +-0.123792,51.382357 +-0.358952,51.46395 +-0.106331,51.521156 +-0.115576,51.555243 +-0.05715,51.597283 +-0.149511,51.446605 +-0.158777,51.392588 +-0.063802,51.632347 +-0.17235,51.467493 +-0.297168,51.501718 +0.113163,51.403359 +-0.481386,51.482289 +-0.099084,51.579203 +-0.068171,51.606701 +-0.111208,51.480625 +-0.016183,51.507203 +-0.21481,51.503209 +-0.220991,51.536503 +-0.007693,51.507256 +-0.266207,51.599533 +-0.137766,51.321304 +0.019221,51.610706 +-0.185111,51.482952 +0.069962,51.575812 +-0.304308,51.491417 +-0.024547,51.408703 +0.110443,51.566755 +0.019685,51.520898 +-0.378085,51.436718 +-0.227158,51.582988 +0.116716,51.56791 +-0.091606,51.505828 +-0.089087,51.473711 +-0.068147,51.548384 +0.148239,51.48418 +0.08369,51.570839 +-0.008753,51.502095 +0.017705,51.367344 +-0.104031,51.498089 +-0.24848,51.454052 +-0.09206,51.528407 +-0.109602,51.598419 +-0.272628,51.396912 +-0.110054,51.588912 +-0.05638,51.427077 +0.163396,51.608919 +-0.006616,51.591301 +-0.066565,51.620379 +-0.129743,51.527782 +-0.451319,51.505132 +-0.12709,51.521121 +-0.077305,51.497411 +-0.032185,51.476942 +-0.276987,51.505785 +-0.113332,51.643584 +-0.066527,51.463404 +0.072385,51.525959 +-0.098642,51.499153 +0.036374,51.537291 +-0.012357,51.544098 +0.113328,51.506334 +0.267973,51.568518 +-0.343892,51.577221 +-0.006724,51.578605 +-0.171947,51.459556 +0.052144,51.552231 +0.015621,51.516993 +-0.076577,51.503766 +-0.098339,51.362999 +-0.020468,51.590816 +-0.247274,51.438935 +-0.098716,51.500827 +-0.008411,51.590864 +-0.069151,51.396092 +-0.099013,51.367534 +-0.12087,51.390206 +-0.200455,51.532575 +-0.03965,51.530187 +-0.104539,51.505301 +-0.098261,51.574711 +-0.215936,51.417132 +-0.302578,51.552297 +-0.169301,51.529971 +-0.396084,51.475308 +0.007008,51.567275 +-0.196643,51.458239 +-0.251896,51.553334 +-0.096691,51.489958 +-0.072685,51.582639 +-0.06656,51.514707 +-0.069253,51.577124 +-0.32127,51.423724 +-0.282698,51.550866 +-0.091054,51.601374 +0.00869,51.620158 +-0.128351,51.43475 +-0.208515,51.420823 +-0.072451,51.572815 +-0.327957,51.516315 +-0.077082,51.532497 +-0.073827,51.55086 +-0.356868,51.440181 +-0.07074,51.609126 +-0.256095,51.401487 +-0.301907,51.37993 +-0.43288,51.517602 +0.256247,51.577396 +-0.129445,51.488597 +-0.188775,51.552934 +0.018058,51.486367 +-0.167515,51.618913 +-0.147571,51.50446 +-0.007518,51.591793 +-0.23757,51.493266 +-0.391783,51.536981 +-0.219191,51.533859 +-0.122034,51.434073 +-0.068529,51.570368 +-0.060191,51.514683 +0.071894,51.46844 +-0.180149,51.539572 +-0.092238,51.494148 +-0.197395,51.541403 +-0.129297,51.455268 +-0.249338,51.585371 +-0.013483,51.600338 +0.05182,51.452319 +-0.057551,51.651478 +-0.195474,51.401711 +-0.346469,51.434109 +-0.215577,51.652736 +-0.166483,51.544117 +-0.110862,51.549592 +-0.080449,51.470584 +0.085931,51.529298 +-0.076951,51.495211 +-0.175248,51.541673 +0.027408,51.466592 +-0.068135,51.600414 +0.044475,51.57518 +-0.062191,51.482145 +-0.064133,51.615734 +-0.32699,51.48329 +-0.253502,51.556973 +-0.037332,51.54789 +-0.481435,51.52806 +-0.141041,51.520462 +-0.199231,51.53654 +-0.120953,51.382564 +-0.014869,51.573861 +-0.029726,51.476856 +-0.101736,51.496119 +-0.287459,51.488601 +-0.037668,51.487753 +-0.06382,51.473953 +-0.266451,51.582523 +-0.156256,51.521682 +-0.066561,51.442497 +-0.111106,51.387864 +-0.180366,51.592325 +-0.210777,51.564584 +-0.020574,51.481027 +-0.37988,51.436005 +-0.144904,51.436344 +0.090829,51.480757 +-0.206418,51.525373 +-0.072118,51.404513 +-0.376858,51.532972 +0.083748,51.573994 +0.101617,51.428747 +0.025257,51.596412 +-0.117885,51.550676 +-0.236739,51.493146 +-0.286032,51.509748 +-0.189053,51.488148 +0.069991,51.321269 +-0.077346,51.459472 +0.232779,51.582404 +-0.248228,51.493336 +0.301856,51.560259 +0.003093,51.484744 +-0.133791,51.448478 +-0.091026,51.475559 +-0.141237,51.573673 +-0.373875,51.583898 +-0.120476,51.51651 +-0.131592,51.508316 +-0.0923,51.432586 +-0.148697,51.478444 +-0.111734,51.503798 +-0.377981,51.43641 +-0.059424,51.430598 +-0.286038,51.556418 +-0.130257,51.512422 +-0.19939,51.4989 +-0.149035,51.591323 +-0.168337,51.427819 +0.145068,51.531378 +-0.015766,51.555576 +-0.209114,51.476127 +-0.199112,51.526394 +-0.277403,51.565428 +-0.028671,51.507665 +-0.078093,51.526291 +-0.056279,51.498917 +-0.054226,51.467625 +-0.034941,51.397016 +-0.187761,51.51274 +-0.123314,51.477249 +-0.183786,51.458319 +-0.083066,51.533179 +-0.191859,51.366872 +0.152139,51.45534 +-0.139079,51.531824 +-0.485163,51.529969 +-0.386946,51.51269 +-0.318408,51.591615 +-0.098684,51.382753 +-0.096724,51.386021 +-0.366904,51.462586 +-0.184191,51.490905 +-0.27131,51.507293 +0.055202,51.535272 +0.233004,51.550466 +-0.168132,51.492625 +-0.213398,51.505409 +0.123591,51.391336 +-0.13203,51.441903 +-0.2277,51.409334 +0.008481,51.486405 +-0.11294,51.581288 +-0.004327,51.551623 +0.026033,51.514188 +-0.423769,51.509728 +-0.010547,51.481424 +-0.300666,51.552135 +-0.12089,51.494539 +-0.03417,51.642924 +-0.331658,51.613376 +-0.045229,51.554425 +0.04424,51.531344 +-0.072056,51.44631 +-0.032678,51.581193 +-0.147617,51.436144 +-0.376911,51.50917 +-0.416844,51.57312 +0.111715,51.459915 +0.071322,51.476481 +-0.345778,51.432121 +-0.103332,51.590539 +0.035439,51.474628 +-0.173728,51.357167 +-0.186848,51.439878 +-0.134536,51.521626 +0.037564,51.593627 +-0.191129,51.471364 +-0.345005,51.59068 +0.014632,51.455679 +-0.358699,51.547575 +-0.09624,51.570587 +-0.2921,51.563251 +-0.283482,51.493228 +-0.137912,51.448004 +-0.151384,51.506021 +-0.310654,51.416341 +-0.138366,51.331295 +-0.152484,51.590981 +-0.11366,51.363499 +-0.088882,51.52546 +-0.070925,51.478584 +0.122887,51.57555 +-0.157577,51.52217 +-0.053848,51.439265 +-0.20088,51.523976 +-0.347141,51.535012 +-0.263179,51.498693 +-0.12072,51.494105 +-0.142064,51.590925 +0.11057,51.365141 +-0.043398,51.418821 +-0.187248,51.492274 +-0.187448,51.433439 +0.124979,51.345905 +-0.164481,51.470554 +-0.051611,51.624798 +-0.148062,51.448606 +-0.056927,51.561894 +-0.139568,51.454703 +0.033989,51.390498 +-0.46757,51.533518 +-0.224711,51.539851 +-0.180239,51.561524 +-0.476114,51.535427 +-0.266647,51.51324 +-0.134012,51.548182 +-0.217241,51.460469 +-0.097398,51.529717 +-0.303021,51.444962 +0.037868,51.536833 +-0.129926,51.555671 +-0.39378,51.483927 +-0.069421,51.596982 +0.006985,51.492996 +-0.146241,51.490365 +-0.178829,51.643351 +-0.142492,51.507113 +0.019992,51.454175 +0.178142,51.48057 +-0.018425,51.581025 +-0.262573,51.508953 +-0.235788,51.45137 +-0.121189,51.384159 +0.092102,51.432704 +-0.106599,51.360219 +-0.043202,51.521325 +-0.126303,51.439105 +-0.043725,51.522251 +0.021161,51.555197 +0.126261,51.531559 +-0.240154,51.447111 +-0.125658,51.496998 +-0.42178,51.497202 +-0.166109,51.471955 +0.080596,51.574824 +-0.09864,51.492616 +0.248355,51.618959 +0.042558,51.405394 +0.132984,51.464998 +-0.202643,51.494579 +-0.05452,51.410922 +-0.252412,51.385345 +-0.105688,51.589759 +-0.215876,51.555966 +-0.10317,51.539639 +0.004506,51.545501 +-0.154011,51.526233 +-0.068292,51.516705 +-0.254336,51.642888 +0.143136,51.479174 +-0.086736,51.506163 +0.021239,51.432544 +-0.043522,51.665723 +-0.248534,51.46505 +-0.099002,51.579777 +-0.240832,51.579885 +-0.053013,51.52281 +0.152805,51.458781 +-0.261033,51.550142 +-0.245101,51.50685 +-0.099287,51.497149 +-0.209474,51.458831 +-0.291381,51.516984 +-0.126956,51.47764 +-0.096436,51.505062 +-0.164712,51.52757 +-0.099613,51.449809 +-0.099497,51.449825 +-0.394663,51.562496 +-0.253319,51.557608 +-0.19459,51.600593 +-0.085835,51.605299 +-0.058674,51.660049 +0.113537,51.548219 +-0.127045,51.507811 +-0.118449,51.364763 +-0.185876,51.461858 +-0.249984,51.413959 +-0.141862,51.399255 +-0.353177,51.531959 +-0.07399,51.530252 +-0.123005,51.412147 +-0.075236,51.459995 +-0.332279,51.586165 +-0.007667,51.57783 +0.072029,51.437736 +-0.05509,51.473026 +-0.044358,51.513188 +-0.16129,51.466835 +-0.070057,51.591525 +0.016006,51.487193 +-0.102765,51.373386 +-0.190088,51.562747 +0.034842,51.529458 +-0.044062,51.6438 +-0.150161,51.443684 +-0.174536,51.502158 +-0.245652,51.560767 +-0.092166,51.474139 +0.121089,51.549009 +-0.152468,51.606691 +-0.147107,51.453357 +-0.087971,51.65892 +-0.318239,51.558269 +-0.236522,51.542439 +-0.010995,51.56375 +-0.211047,51.459475 +-0.215202,51.503503 +-0.161187,51.653228 +-0.016757,51.476709 +-0.47095,51.551852 +-0.327462,51.326532 +-0.161338,51.548326 +-0.098406,51.468467 +-0.244918,51.494743 +-0.101376,51.529035 +-0.114815,51.386089 +-0.082196,51.561402 +-0.291819,51.553814 +-0.112931,51.617725 +-0.139491,51.480322 +-0.210871,51.516593 +-0.042816,51.515537 +-0.14603,51.411731 +-0.375712,51.51088 +-0.012867,51.575418 +-0.160081,51.618419 +-0.151035,51.501834 +-0.194667,51.473298 +-0.103775,51.623575 +-0.159728,51.499912 +-0.143979,51.521219 +-0.133507,51.572849 +-0.14875,51.604708 +0.10466,51.504934 +-0.279579,51.61097 +-0.180344,51.465235 +0.011198,51.430613 +-0.312256,51.603765 +-0.336063,51.631153 +0.147326,51.527569 +0.102323,51.557143 +-0.10961,51.404287 +0.181238,51.525217 +-0.019431,51.678988 +-0.082187,51.40198 +-0.186259,51.463096 +0.026014,51.545267 +-0.161804,51.516356 +-0.098244,51.505262 +-0.23882,51.593828 +0.079835,51.458794 +-0.226416,51.370791 +-0.059915,51.559147 +-0.119752,51.404496 +0.086067,51.589016 +-0.174873,51.430573 +-0.186946,51.413783 +-0.16343,51.448317 +-0.102289,51.448449 +-0.300299,51.511268 +-0.170035,51.376659 +-0.221616,51.486793 +-0.042783,51.515626 +-0.282023,51.61319 +-0.108976,51.384448 +-0.038685,51.514406 +-0.483691,51.549967 +-0.121817,51.581268 +-0.020673,51.551882 +-0.175778,51.493427 +0.056503,51.527677 +-0.369771,51.546893 +0.030557,51.546888 +0.016556,51.517274 +-0.125687,51.531755 +0.09098,51.595412 +-0.094563,51.390995 +-0.237526,51.548173 +-0.176795,51.49285 +-0.278401,51.585208 +-0.365639,51.60907 +-0.308039,51.512792 +-0.034962,51.512501 +-0.184024,51.535316 +0.062728,51.533665 +-0.294059,51.453762 +-0.02719,51.571946 +-0.198419,51.592514 +-0.058396,51.653354 +-0.104296,51.378069 +-0.158349,51.489099 +-0.304651,51.493032 +-0.070073,51.54106 +-0.267181,51.51662 +-0.174773,51.494419 +-0.266337,51.565795 +-0.410903,51.491417 +-0.064027,51.614501 +-0.125803,51.558779 +0.121498,51.568974 +-0.126665,51.468922 +-0.403002,51.562483 +-0.356323,51.50544 +-0.307052,51.366669 +0.078623,51.481532 +-0.128696,51.46926 +-0.122215,51.523633 +-0.342431,51.403765 +-0.213447,51.581863 +-0.266991,51.561102 +-0.022697,51.448572 +-0.025897,51.518158 +-0.102232,51.563229 +-0.180642,51.521056 +-0.066324,51.498517 +-0.101788,51.495211 +-0.121039,51.40957 +0.284865,51.571563 +-0.063931,51.551893 +-0.369833,51.488642 +0.046824,51.53174 +-0.282971,51.609482 +-0.086385,51.489071 +-0.174609,51.543236 +-0.313385,51.493293 +0.06454,51.578147 +-0.206558,51.588556 +-0.074617,51.555369 +-0.265778,51.584257 +0.203123,51.607011 +-0.403741,51.477481 +-0.211886,51.48295 +-0.069623,51.570763 +0.142056,51.571937 +-0.310415,51.617568 +0.061074,51.493208 +0.03834,51.530296 +-0.191748,51.50996 +-0.117117,51.540988 +-0.204029,51.516111 +-0.068037,51.393178 +-0.2078,51.606901 +-0.081806,51.396668 +0.01469,51.446227 +-0.260841,51.551767 +-0.067714,51.584473 +-0.081149,51.57017 +-0.087242,51.380417 +0.030285,51.589688 +-0.074814,51.449503 +-0.06577,51.57552 +0.04258,51.538064 +-0.147473,51.357869 +-0.095086,51.529131 +-0.05556,51.527304 +-0.224689,51.505212 +-0.108974,51.480652 +-0.362547,51.439109 +-0.043258,51.586909 +-0.071275,51.515693 +-0.352667,51.564854 +-0.107563,51.593629 +-0.040486,51.437468 +-0.100629,51.586107 +-0.224079,51.493099 +-0.079482,51.487097 +-0.016579,51.511022 +0.150051,51.473697 +-0.382026,51.562466 +-0.078483,51.502979 +-0.131984,51.620539 +-0.119026,51.517773 +-0.219352,51.461346 +0.200169,51.515987 +-0.078157,51.629804 +-0.099929,51.378385 +-0.099916,51.398483 +-0.365038,51.581555 +-0.006296,51.557385 +-0.055322,51.545069 +-0.019364,51.584979 +-0.412006,51.518121 +-0.393826,51.535463 +-0.027903,51.569143 +0.104911,51.539138 +-0.096621,51.45288 +-0.28218,51.533611 +-0.127768,51.582577 +-0.120349,51.45374 +-0.124574,51.435642 +-0.038159,51.6322 +-0.118596,51.446311 +0.06117,51.493728 +-0.139281,51.532151 +-0.237728,51.58027 +-0.200883,51.63317 +-0.299658,51.412307 +-0.139731,51.511934 +-0.081481,51.585238 +-0.076878,51.606061 +0.038957,51.366445 +-0.156569,51.438209 +-0.161676,51.514169 +-0.098588,51.576209 +-0.064341,51.471174 +-0.064808,51.650456 +0.130125,51.558737 +0.208972,51.593017 +-0.300597,51.512568 +-0.139665,51.480297 +-0.15948,51.411979 +-0.382929,51.595147 +0.063977,51.494003 +-0.250709,51.558702 +-0.070268,51.588921 +-0.253037,51.390435 +-0.350107,51.567021 +0.003553,51.406472 +-0.125361,51.509862 +0.092671,51.550841 +0.011104,51.38128 +-0.068799,51.382264 +-0.294745,51.448097 +-0.188572,51.442494 +-0.049929,51.525835 +-0.143832,51.426938 +-0.141121,51.552117 +-0.305551,51.458254 +-0.043041,51.545243 +-0.151464,51.571659 +-0.136375,51.485389 +0.112399,51.461944 +-0.212457,51.460963 +0.191012,51.519207 +-0.028537,51.583497 +-0.065017,51.388452 +-0.138795,51.55645 +-0.156014,51.465565 +-0.022333,51.476309 +-0.245399,51.493473 +-0.347018,51.508951 +-0.278737,51.565627 +0.06468,51.572317 +-0.204714,51.525824 +-0.111491,51.551823 +-0.171009,51.379255 +-0.09192,51.374711 +-0.073008,51.56751 +0.00233,51.540934 +-0.314416,51.539942 +0.25334,51.590392 +-0.176354,51.481521 +-0.184021,51.362749 +-0.119465,51.557841 +-0.076124,51.424165 +-0.196363,51.509141 +-0.071026,51.660954 +0.00256,51.469618 +-0.0218,51.496956 +-0.077256,51.530755 +-0.101489,51.477437 +-0.207855,51.421505 +-0.074035,51.483392 +-0.377075,51.473716 +0.000883,51.426338 +-0.111395,51.518271 +0.045116,51.374108 +-0.174421,51.481977 +-0.060312,51.624718 +0.233427,51.598849 +-0.146068,51.513797 +-0.401319,51.516259 +0.017649,51.490483 +-0.099101,51.495042 +-0.030235,51.646329 +0.125158,51.53853 +-0.07372,51.486759 +-0.08677,51.616708 +-0.039196,51.488399 +-0.040588,51.450554 +-0.284085,51.59681 +0.066502,51.540577 +-0.132546,51.428189 +0.104148,51.478792 +0.006131,51.48569 +0.092668,51.545418 +0.01276,51.485442 +-0.136703,51.438812 +-0.405621,51.587023 +-0.118309,51.363637 +-0.008178,51.512966 +-0.214098,51.505195 +-0.095396,51.487491 +-0.444151,51.563243 +-0.401456,51.497521 +-0.162743,51.467217 +-0.079608,51.450849 +-0.109187,51.500223 +-0.32541,51.578271 +-0.214828,51.577927 +0.127699,51.49004 +-0.149759,51.539358 +0.063452,51.557627 +-0.222163,51.54492 +-0.00611,51.54811 +0.017918,51.536998 +-0.075756,51.547187 +-0.180904,51.585706 +-0.041289,51.51284 +-0.176642,51.524474 +-0.142191,51.558068 +-0.144638,51.667293 +-0.296404,51.529143 +-0.068081,51.395562 +-0.345726,51.441121 +-0.042847,51.486239 +-0.087781,51.663782 +-0.199656,51.450443 +0.078979,51.558989 +-0.203875,51.497323 +0.239303,51.60058 +-0.099512,51.396768 +-0.502655,51.480575 +0.067218,51.54301 +-0.373034,51.486123 +0.098876,51.611962 +-0.368705,51.547678 +0.111886,51.394677 +-0.011324,51.574394 +-0.146565,51.474561 +-0.008472,51.568339 +0.150847,51.442549 +-0.160445,51.464933 +0.111159,51.413531 +-0.031388,51.442262 +0.035504,51.599535 +-0.028033,51.511764 +-0.103552,51.535652 +-0.152704,51.427744 +-0.114296,51.442762 +-0.406239,51.505787 +-0.202893,51.486391 +-0.252306,51.562584 +-0.030716,51.526062 +-0.365128,51.480043 +-0.020127,51.439779 +-0.00801,51.507909 +-0.09426,51.474316 +-0.201339,51.54489 +-0.164544,51.499106 +-0.016655,51.452166 +-0.215261,51.575713 +0.009875,51.570445 +-0.124996,51.517338 +-0.087574,51.617521 +-0.131806,51.470667 +0.09474,51.535588 +0.029353,51.450399 +-0.016841,51.464822 +0.036492,51.533161 +-0.165235,51.430917 +-0.069466,51.546544 +0.073138,51.579641 +-0.04248,51.440982 +-0.224203,51.468389 +-0.31498,51.599613 +-0.12386,51.569161 +-0.201458,51.522123 +-0.083349,51.498275 +-0.005775,51.535326 +0.029718,51.450194 +-0.029203,51.470606 +-0.353315,51.527734 +0.202324,51.587224 +-0.116469,51.432608 +-0.0581,51.548596 +-0.248358,51.55793 +-0.018363,51.581455 +-0.165668,51.391375 +-0.179665,51.49784 +-0.183753,51.598969 +-0.087881,51.380599 +-0.111266,51.387813 +-0.468334,51.498305 +-0.337828,51.534557 +-0.222373,51.502146 +-0.283438,51.553431 +-0.116925,51.399118 +-0.390032,51.525294 +-0.167244,51.483519 +-0.126946,51.468737 +-0.026098,51.481507 +-0.158532,51.36611 +-0.197551,51.382544 +-0.189921,51.45059 +-0.305546,51.494924 +-0.081641,51.500171 +-0.146231,51.497011 +-0.247258,51.470544 +-0.057381,51.479772 +-0.038402,51.545138 +-0.379623,51.436757 +-0.208379,51.495989 +-0.109962,51.630779 +-0.197237,51.355408 +-0.109228,51.646693 +0.050878,51.424241 +-0.450533,51.495572 +-0.012596,51.428303 +-0.0682,51.60501 +-0.17958,51.54227 +-0.405079,51.453157 +-0.105992,51.533156 +-0.056024,51.555683 +-0.068085,51.598525 +0.006414,51.485568 +-0.127023,51.528719 +-0.430806,51.506235 +-0.11709,51.495143 +0.006589,51.585294 +-0.132671,51.536201 +-0.415026,51.50917 +-0.376411,51.511492 +-0.16219,51.543654 +-0.30413,51.401419 +-0.339703,51.541291 +-0.481042,51.521661 +0.007679,51.515358 +-0.111907,51.487749 +-0.382378,51.483375 +-0.409712,51.446566 +0.042421,51.530954 +-0.074259,51.507487 +-0.116387,51.470268 +0.054036,51.533404 +-0.096373,51.598133 +0.068321,51.471255 +-0.069532,51.594035 +-0.205209,51.49782 +-0.161868,51.461053 +-0.224505,51.504372 +-0.179779,51.389661 +-0.013421,51.523325 +0.043379,51.600936 +-0.197262,51.401577 +-0.128995,51.512959 +-0.170091,51.375626 +-0.233908,51.601002 +-0.007501,51.632754 +-0.189435,51.532675 +-0.13518,51.430281 +-0.118951,51.517825 +-0.376138,51.532935 +-0.324386,51.509942 +-0.075637,51.547275 +-0.017992,51.434932 +-0.393503,51.474985 +0.079108,51.527332 +-0.300767,51.552145 +0.035295,51.452948 +-0.163826,51.405428 +-0.141253,51.5372 +-0.278109,51.539091 +-0.146652,51.546287 +-0.375397,51.542016 +-0.223528,51.407176 +-0.069667,51.546215 +-0.096807,51.483368 +0.071575,51.384749 +-0.0753,51.549787 +0.003777,51.405659 +-0.267115,51.474687 +-0.244915,51.563418 +-0.238708,51.491413 +-0.150127,51.485822 +-0.165488,51.446155 +-0.158477,51.519163 +-0.065842,51.61462 +-0.005425,51.341553 +0.101625,51.499422 +-0.053955,51.532844 +-0.405389,51.462019 +0.174674,51.583783 +0.085372,51.594028 +-0.109941,51.524488 +-0.041237,51.492543 +-0.197584,51.523475 +-0.04867,51.513458 +-0.11078,51.481211 +-0.211231,51.459541 +-0.334011,51.454642 +-0.405333,51.517689 +-0.054642,51.632321 +-0.192221,51.60427 +-0.1694,51.471044 +0.042514,51.347588 +-0.173369,51.533496 +0.221929,51.60734 +-0.208425,51.604959 +-0.118829,51.456045 +-0.1182,51.364201 +-0.056808,51.644515 +0.083826,51.490144 +-0.200847,51.472484 +0.025429,51.550277 +-0.138202,51.523267 +-0.10066,51.586063 +-0.099885,51.328753 +-0.156647,51.36332 +-0.08731,51.61624 +-0.260916,51.549808 +-0.016176,51.45393 +0.079939,51.373009 +-0.161488,51.525631 +-0.105409,51.364346 +-0.292088,51.553575 +-0.326254,51.578068 +-0.205136,51.480607 +-0.077543,51.58485 +-0.274145,51.625529 +-0.205635,51.507161 +-0.212649,51.473366 +0.036852,51.404792 +-0.457793,51.550214 +-0.460502,51.566525 +-0.349757,51.430693 +-0.162928,51.373643 +-0.452315,51.495721 +-0.129774,51.527728 +0.025119,51.529329 +-0.37687,51.463264 +-0.017445,51.473133 +-0.024209,51.430549 +-0.03669,51.429365 +-0.3015,51.408781 +-0.339408,51.603639 +-0.307452,51.365551 +-0.444117,51.582863 +-0.118351,51.467682 +-0.090331,51.39839 +0.018746,51.520518 +-0.05769,51.488779 +-0.157948,51.512626 +-0.119384,51.510468 +-0.194514,51.480094 +-0.283583,51.462934 +0.083612,51.573232 +-0.129385,51.488677 +-0.137011,51.448215 +0.049659,51.532257 +-0.220111,51.485125 +-0.170448,51.479028 +0.068895,51.489977 +-0.016339,51.481378 +-0.148726,51.499775 +-0.196376,51.519042 +-0.213568,51.55522 +-0.297276,51.607361 +-0.115312,51.462112 +-0.230731,51.506211 +0.054143,51.438033 +-0.095888,51.488497 +0.147386,51.557946 +-0.139274,51.420877 +-0.136609,51.462345 +-0.292321,51.529623 +-0.017896,51.435155 +-0.361064,51.586904 +-0.009722,51.51757 +-0.391865,51.584551 +-0.200398,51.456839 +-0.061978,51.515036 +-0.081432,51.374684 +-0.118145,51.400927 +0.002163,51.564731 +0.23053,51.588652 +0.077666,51.53493 +-0.063167,51.474086 +-0.331178,51.45024 +0.031839,51.585039 +-0.11064,51.59706 +-0.150743,51.606843 +-0.106554,51.563722 +-0.027089,51.443188 +-0.010102,51.438692 +-0.28329,51.529005 +-0.109941,51.524479 +0.02837,51.546683 +0.056947,51.539108 +-0.024753,51.415945 +0.176205,51.564474 +-0.111952,51.47864 +-0.102288,51.53449 +-0.324029,51.590697 +0.029815,51.475408 +-0.056086,51.519363 +-0.462818,51.527377 +-0.26663,51.599818 +-0.1333,51.507785 +-0.085854,51.592144 +-0.000474,51.55198 +-0.075073,51.551753 +-0.119812,51.528783 +-0.237421,51.498641 +0.090289,51.499166 +-0.116967,51.556138 +-0.015359,51.573545 +-0.144691,51.448705 +-0.05366,51.553945 +-0.315647,51.487426 +-0.129784,51.514465 +-0.085871,51.529205 +-0.369587,51.460007 +0.065336,51.556226 +-0.061369,51.641623 +0.053444,51.365941 +-0.131097,51.427392 +-0.133901,51.386799 +-0.205891,51.526327 +-0.074768,51.552144 +-0.026618,51.41872 +-0.225191,51.502674 +-0.283861,51.58973 +-0.20215,51.344009 +-0.193205,51.531789 +-0.261797,51.518348 +-0.206709,51.496323 +-0.019422,51.583335 +0.033804,51.528819 +0.176487,51.565539 +-0.279133,51.612824 +-0.170112,51.376175 +0.010464,51.4696 +0.042235,51.55869 +-0.222786,51.504868 +-0.37747,51.543331 +-0.164485,51.404755 +-0.220903,51.486603 +-0.277983,51.490449 +-0.07453,51.519856 +-0.302915,51.422219 +-0.240982,51.449902 +-0.112868,51.487144 +-0.217084,51.460808 +-0.046413,51.556765 +-0.265598,51.400738 +0.023551,51.569706 +0.133046,51.458306 +-0.412528,51.464535 +-0.159813,51.623982 +-0.142422,51.520879 +-0.365426,51.442306 +-0.028275,51.569213 +0.071876,51.389816 +-0.294971,51.425817 +-0.080023,51.589018 +-0.207487,51.526433 +-0.050915,51.636675 +-0.129735,51.512836 +0.138726,51.456629 +-0.100724,51.494826 +-0.144383,51.491073 +-0.474178,51.494587 +-0.019121,51.511227 +-0.064131,51.511169 +0.022031,51.454077 +-0.243303,51.455044 +-0.174786,51.522943 +-0.139693,51.406298 +-0.370726,51.466839 +-0.019153,51.50915 +0.081178,51.56449 +-0.124229,51.569671 +-0.185617,51.457511 +-0.173977,51.429966 +-0.228407,51.500736 +-0.065549,51.492299 +-0.125556,51.426764 +-0.047666,51.680333 +-0.186846,51.439563 +-0.09558,51.362685 +-0.182946,51.595324 +-0.121345,51.407372 +0.140926,51.580744 +-0.00286,51.580158 +-0.06569,51.495107 +-0.126546,51.504512 +-0.027108,51.473458 +-0.072562,51.475625 +-0.046011,51.484313 +-0.052704,51.42626 +-0.026355,51.480882 +-0.098049,51.569087 +-0.079774,51.497641 +-0.366431,51.422986 +-0.002882,51.399352 +-0.369,51.54708 +-0.080703,51.48959 +-0.155527,51.502625 +0.042686,51.576488 +-0.162521,51.404634 +0.010642,51.516845 +-0.119634,51.428747 +-0.205685,51.548796 +-0.21565,51.503842 +-0.295571,51.607399 +-0.142312,51.469009 +-0.135493,51.541587 +-0.179754,51.651665 +-0.281081,51.491196 +-0.124271,51.470763 +-0.206684,51.413214 +-0.2505,51.55851 +-0.048886,51.541788 +-0.134915,51.46292 +-0.287517,51.617254 +-0.168088,51.529286 +-0.069714,51.634333 +0.148281,51.533163 +-0.169705,51.589237 +-0.468568,51.511095 +-0.335607,51.596608 +-0.227186,51.516975 +0.0099,51.493108 +-0.221938,51.462213 +0.03298,51.539112 +-0.154151,51.66131 +-0.408982,51.49819 +-0.265991,51.566914 +-0.392319,51.594188 +-0.002241,51.363909 +-0.061605,51.492234 +0.004046,51.407228 +-0.171319,51.522781 +0.078708,51.440955 +-0.207706,51.477868 +0.095905,51.462672 +-0.063336,51.64634 +-0.161593,51.403019 +-0.127573,51.468208 +-0.400739,51.49743 +0.072683,51.508399 +-0.058421,51.527163 +-0.19601,51.499846 +-0.063389,51.404873 +-0.08155,51.497877 +-0.063851,51.473899 +-0.019148,51.679163 +-0.098832,51.382315 +-0.444986,51.529048 +0.049438,51.518979 +-0.27554,51.557451 +0.002247,51.621788 +-0.457109,51.570869 +-0.138122,51.525235 +-0.121121,51.385129 +0.069332,51.489772 +0.044759,51.576371 +0.202115,51.582894 +-0.142369,51.539538 +-0.137867,51.359552 +-0.052926,51.478188 +-0.034646,51.474636 +-0.150717,51.503286 +-0.102695,51.590915 +-0.114837,51.463867 +0.056906,51.533398 +-0.213077,51.466835 +-0.061254,51.41865 +0.043375,51.460793 +-0.06815,51.604146 +-0.199901,51.576557 +0.058405,51.581968 +-0.168259,51.557705 +-0.182334,51.549876 +-0.347073,51.536486 +-0.052758,51.473023 +-0.148666,51.478515 +-0.144059,51.43589 +-0.102237,51.589092 +-0.074558,51.501746 +-0.073005,51.583939 +-0.210195,51.517653 +-0.393034,51.48425 +-0.226989,51.463009 +-0.068077,51.514975 +0.04301,51.575664 +-0.049367,51.547066 +-0.139959,51.515535 +-0.194078,51.61205 +-0.216432,51.555012 +-0.199561,51.573117 +0.001972,51.561695 +-0.035398,51.5141 +-0.224695,51.511344 +-0.11765,51.328554 +-0.384278,51.49359 +-0.079577,51.503348 +0.071285,51.524917 +-0.23995,51.602694 +-0.302326,51.514895 +-0.390351,51.510956 +-0.104608,51.598383 +-0.220466,51.453792 +-0.353633,51.564463 +-0.174876,51.484987 +0.010791,51.516968 +-0.092944,51.474106 +-0.059821,51.605421 +0.064714,51.522425 +-0.260623,51.616814 +-0.473899,51.494718 +-0.066215,51.484073 +-0.402955,51.439766 +-0.182034,51.528082 +-0.150672,51.515057 +-0.213293,51.482683 +-0.35149,51.428496 +-0.029913,51.427372 +-0.123726,51.450368 +-0.2036,51.561444 +-0.045494,51.64948 +-0.07941,51.523758 +0.073378,51.553207 +0.007731,51.515213 +-0.151913,51.520723 +-0.243693,51.553571 +-0.160629,51.429209 +-0.342192,51.602141 +-0.164254,51.550044 +-0.13757,51.540883 +-0.448606,51.581151 +-0.17777,51.630107 +-0.11294,51.531452 +-0.426161,51.453226 +-0.304393,51.388869 +-0.133989,51.616047 +-0.494292,51.473913 +-0.405631,51.485636 +-0.234132,51.600808 +-0.09039,51.58622 +-0.052372,51.520597 +-0.009685,51.523711 +-0.192133,51.501342 +-0.190943,51.469149 +-0.167663,51.474857 +-0.065634,51.496077 +-0.103196,51.465118 +-0.171702,51.461009 +-0.132303,51.516294 +0.067592,51.489524 +-0.214969,51.475542 +-0.247698,51.45154 +0.020332,51.447542 +-0.193502,51.52647 +-0.202378,51.343311 +-0.20569,51.516756 +0.094289,51.545246 +-0.306763,51.586043 +0.073574,51.412421 +-0.033944,51.475883 +0.018018,51.490666 +-0.055203,51.509637 +-0.099504,51.561521 +-0.324534,51.481933 +-0.360785,51.465001 +-0.09059,51.550801 +-0.160441,51.363281 +0.0172,51.571956 +-0.117076,51.600994 +-0.245233,51.449759 +-0.041079,51.474717 +-0.244554,51.605379 +-0.303901,51.374968 +-0.100957,51.495441 +-0.165,51.63399 +-0.029872,51.517235 +-0.222601,51.541078 +-0.105397,51.424471 +-0.168004,51.521336 +0.085658,51.593331 +-0.379254,51.48496 +-0.129529,51.422817 +-0.382806,51.512795 +0.186028,51.565613 +-0.129431,51.45973 +-0.147241,51.519337 +0.137408,51.549126 +-0.067038,51.513636 +-0.066508,51.535003 +-0.326058,51.493016 +-0.188438,51.525106 +-0.188477,51.465612 +-0.387179,51.581564 +-0.206558,51.537219 +-0.370942,51.466833 +-0.217176,51.460675 +-0.416731,51.521099 +-0.450458,51.481237 +-0.030429,51.568457 +0.143185,51.467303 +-0.220497,51.561009 +-0.134842,51.553977 +-0.260765,51.561702 +-0.106366,51.61824 +-0.088564,51.412489 +-0.073059,51.563905 +-0.053212,51.552948 +-0.116176,51.460714 +-0.166266,51.459062 +-0.275078,51.528489 +-0.029887,51.427318 +-0.093088,51.47204 +-0.126482,51.505015 +-0.013372,51.511202 +-0.055133,51.52548 +-0.264041,51.597279 +-0.144241,51.523642 +-0.103771,51.434211 +-0.090003,51.473852 +-0.167952,51.463693 +-0.051172,51.547015 +-0.210332,51.532177 +-0.084306,51.548622 +-0.204298,51.507455 +-0.136086,51.515078 +-0.049982,51.679958 +-0.337058,51.435747 +-0.114643,51.423487 +-0.064895,51.614794 +-0.162634,51.460966 +-0.355242,51.509462 +-0.201282,51.492185 +-0.154092,51.514616 +-0.475955,51.614843 +-0.123481,51.520902 +-0.008628,51.511589 +-0.019817,51.466905 +-0.067011,51.608849 +-0.110681,51.481174 +-0.000254,51.425332 +-0.146694,51.520758 +-0.071843,51.63694 +0.081219,51.552744 +-0.052529,51.510842 +-0.025149,51.41142 +0.03278,51.554682 +-0.006543,51.596588 +-0.141334,51.573792 +0.066098,51.575898 +-0.068274,51.443856 +0.065568,51.555944 +-0.096946,51.472768 +-0.119625,51.557808 +-0.176277,51.419903 +-0.174061,51.602658 +0.173309,51.601776 +-0.149551,51.482981 +0.017603,51.415332 +-0.206721,51.490514 +-0.054318,51.587192 +-0.240025,51.399916 +-0.058718,51.477465 +0.024504,51.487173 +-0.142208,51.515867 +-0.147678,51.347783 +-0.480668,51.603898 +-0.136645,51.521498 +-0.036856,51.391913 +-0.107427,51.477668 +-0.164352,51.521099 +-0.135218,51.430758 +-0.391142,51.47908 +-0.113998,51.466057 +-0.251117,51.595424 +-0.120104,51.52939 +0.162407,51.490142 +0.120396,51.573509 +-0.147775,51.451784 +-0.268054,51.506157 +-0.145878,51.498255 +-0.205018,51.484364 +-0.004068,51.545998 +-0.112294,51.58643 +-0.071502,51.586378 +0.072537,51.481999 +-0.180212,51.349021 +-0.239202,51.475207 +-0.005267,51.581548 +-0.086989,51.615983 +-0.317514,51.458219 +-0.090332,51.586219 +-0.078356,51.567283 +-0.213183,51.52232 +0.069298,51.501112 +-0.091906,51.528306 +-0.152176,51.405524 +-0.196048,51.58969 +-0.118021,51.54843 +-0.226815,51.582542 +0.029196,51.467308 +-0.11658,51.459641 +-0.294488,51.621249 +-0.034367,51.545053 +0.07347,51.526038 +-0.074484,51.556132 +0.142468,51.544169 +-0.350721,51.530485 +-0.040461,51.58751 +0.052778,51.604117 +0.096393,51.542375 +-0.08932,51.585923 +-0.043971,51.464684 +0.100367,51.451045 +0.115333,51.450362 +0.140926,51.572147 +-0.372962,51.484917 +-0.05618,51.530012 +-0.141666,51.521047 +-0.107332,51.507099 +0.035865,51.367362 +0.040116,51.530688 +-0.357873,51.53849 +-0.158619,51.429105 +-0.124578,51.416218 +-0.069933,51.544016 +-0.025984,51.518141 +-0.214739,51.505034 +-0.052501,51.672167 +0.252616,51.617196 +-0.164823,51.488931 +-0.140883,51.423753 +-0.083973,51.455561 +-0.12733,51.387927 +-0.00389,51.424414 +-0.378437,51.467809 +0.017947,51.600557 +-0.11419,51.610362 +-0.279002,51.610961 +-0.171913,51.517674 +-0.407342,51.436903 +-0.297862,51.602891 +0.189984,51.518507 +-0.178135,51.410058 +-0.025535,51.527207 +-0.312548,51.569383 +-0.061167,51.481508 +-0.00834,51.571349 +0.055009,51.519466 +0.104425,51.599209 +-0.1926,51.555052 +-0.044455,51.491724 +0.116368,51.52654 +-0.121514,51.526661 +-0.231414,51.50829 +-0.093917,51.528815 +-0.318005,51.341405 +-0.01518,51.455648 +-0.08932,51.436431 +-0.097811,51.357721 +-0.076479,51.652393 +-0.100118,51.465032 +-0.045391,51.619596 +-0.11086,51.481366 +-0.124001,51.448574 +-0.226882,51.582309 +0.021058,51.608822 +-0.060456,51.464311 +-0.255219,51.621374 +-0.180293,51.348789 +-0.069969,51.443227 +-0.085838,51.592161 +0.075823,51.538479 +-0.073137,51.338837 +-0.127333,51.474768 +-0.226888,51.516476 +-0.073378,51.517436 +-0.106726,51.328558 +0.035307,51.455475 +-0.062482,51.51741 +-0.096312,51.367202 +-0.200441,51.498556 +0.266884,51.568674 +-0.115985,51.518102 +0.033617,51.607715 +-0.019109,51.496874 +-0.268492,51.568678 +-0.163886,51.43229 +0.189942,51.520333 +-0.110994,51.503229 +0.00797,51.537367 +-0.27397,51.470472 +-0.201856,51.470638 +-0.034317,51.453471 +0.094456,51.362409 +-0.094493,51.39648 +-0.302581,51.552225 +-0.122273,51.517312 +-0.120799,51.531758 +-0.211332,51.519531 +-0.216607,51.461979 +-0.030729,51.588894 +-0.259926,51.534542 +-0.128528,51.549326 +-0.22087,51.561797 +-0.128673,51.528214 +0.085147,51.528862 +-0.028776,51.653993 +-0.162311,51.434253 +-0.152862,51.44593 +-0.304634,51.388962 +0.025076,51.548178 +-0.076888,51.400814 +-0.055415,51.59631 +-0.099452,51.378098 +0.293862,51.544759 +0.002637,51.388124 +-0.0664,51.484112 +0.16067,51.574626 +-0.0904,51.557066 +-0.213465,51.355082 +-0.115543,51.460012 +-0.088218,51.412169 +0.153206,51.446507 +-0.277302,51.524556 +0.010764,51.516995 +-0.212594,51.516026 +-0.140387,51.410454 +-0.300909,51.488293 +-0.016159,51.51106 +0.067395,51.553277 +-0.100997,51.505225 +-0.153163,51.493739 +-0.102166,51.362855 +-0.101855,51.452327 +0.006452,51.499246 +-0.110485,51.524928 +-0.234011,51.593136 +-0.184728,51.389189 +-0.015636,51.598333 +-0.292171,51.594086 +-0.089044,51.47371 +-0.217088,51.523836 +-0.19205,51.535467 +-0.023304,51.474509 +0.118384,51.581126 +0.218249,51.550494 +-0.227404,51.502069 +-0.126868,51.505794 +-0.461924,51.51795 +-0.094458,51.48235 +-0.094374,51.480919 +-0.189142,51.362568 +-0.207355,51.403036 +-0.157161,51.522128 +-0.120848,51.495204 +-0.200872,51.633089 +0.082543,51.560904 +-0.104776,51.591552 +-0.023779,51.350803 +-0.064482,51.61467 +-0.218026,51.53269 +-0.103401,51.544849 +-0.177314,51.61733 +-0.039338,51.488456 +0.207092,51.553645 +-0.227055,51.468369 +-0.371724,51.533009 +-0.056538,51.541915 +-0.0528,51.552464 +-0.01694,51.528924 +-0.295352,51.595499 +-0.237345,51.565175 +-0.195749,51.500615 +-0.39207,51.474804 +-0.346103,51.592646 +-0.491338,51.539841 +-0.047299,51.543488 +-0.014553,51.472742 +-0.136004,51.449269 +-0.049589,51.648703 +-0.167382,51.428676 +7E-06,51.510642 +-0.014619,51.472896 +-0.012023,51.527932 +-0.182811,51.364646 +-0.003246,51.586829 +-0.220093,51.485224 +-0.094207,51.563306 +-0.290961,51.54284 +-0.328268,51.508208 +0.033495,51.459392 +-0.111199,51.606565 +-0.116634,51.569783 +0.002657,51.51422 +-0.288284,51.510401 +-0.101953,51.430512 +-0.406929,51.602039 +-0.192978,51.542972 +-0.064984,51.468918 +-0.362482,51.467488 +0.051291,51.539036 +0.010092,51.377853 +0.138096,51.460084 +-0.111557,51.388438 +0.005007,51.42589 +-0.109156,51.373462 +-0.106066,51.564019 +-0.249962,51.528918 +-0.163715,51.528687 +-0.082689,51.572677 +0.169823,51.525276 +-0.224861,51.511905 +-0.112998,51.46167 +0.049294,51.5514 +-0.118184,51.500763 +-0.092538,51.472103 +-0.054999,51.498195 +-0.148028,51.499233 +-0.138962,51.450134 +-0.034339,51.665417 +-0.129082,51.347784 +-0.013825,51.428818 +-0.328619,51.469061 +-0.154798,51.368587 +-0.103268,51.545252 +-0.061661,51.498377 +0.139846,51.45748 +-0.066848,51.51098 +-0.20152,51.524192 +-0.086778,51.586305 +-0.147223,51.623784 +-0.226863,51.516377 +0.100841,51.467332 +-0.102999,51.528153 +-0.065986,51.496632 +-0.233841,51.53346 +-0.231547,51.492195 +-0.069485,51.426394 +-0.059855,51.56464 +-0.183403,51.483528 +0.067648,51.489487 +-0.17218,51.533684 +-0.020486,51.509317 +-0.224569,51.493079 +-0.121578,51.473238 +-0.047196,51.443084 +0.057775,51.522304 +-0.108643,51.587091 +-0.075148,51.363493 +-0.033539,51.4421 +-0.175673,51.3711 +-0.01056,51.531414 +0.11976,51.570373 +-0.281425,51.388894 +0.092817,51.530137 +-0.100541,51.495749 +-0.059598,51.660073 +-0.166238,51.521866 +-0.423716,51.442313 +-0.098796,51.578146 +-0.151565,51.518632 +0.220736,51.561274 +-0.119153,51.558043 +-0.18778,51.369768 +-0.24512,51.536354 +0.069399,51.537045 +0.045686,51.46033 +-0.06121,51.58807 +-0.076067,51.424155 +-0.11613,51.36772 +-0.085124,51.494086 +-0.101436,51.379129 +-0.135341,51.517089 +-0.284514,51.412734 +-0.30818,51.53273 +-0.228808,51.572123 +-0.096298,51.525328 +-0.047009,51.666366 +-0.160903,51.612012 +-0.201749,51.477381 +-0.108837,51.527114 +-0.420228,51.495437 +-0.206552,51.490044 +0.110311,51.564518 +-0.204957,51.595132 +-0.140368,51.369798 +-0.172593,51.643533 +-0.182178,51.517599 +0.032438,51.543447 +-0.123424,51.449311 +-0.070522,51.560788 +0.062884,51.546045 +-0.178744,51.616624 +-0.280477,51.503039 +-0.149549,51.483376 +-0.380677,51.480159 +0.083906,51.450512 +-0.124354,51.576453 +-0.192342,51.537549 +-0.084967,51.635868 +-0.05926,51.417835 +-0.114561,51.510696 +0.01093,51.569833 +-0.160601,51.523684 +0.177765,51.575686 +-0.159158,51.520505 +-0.025355,51.589972 +-0.254593,51.468486 +-0.207235,51.550097 +-0.042116,51.380149 +-0.309933,51.585423 +0.038995,51.360527 +0.021423,51.454313 +-0.017606,51.433199 +-0.405489,51.497953 +-0.018252,51.521617 +0.017939,51.520199 +-0.198331,51.576848 +-0.128933,51.475073 +-0.077036,51.548629 +-0.150069,51.485821 +-0.129498,51.477806 +0.070022,51.535515 +0.122399,51.551134 +-0.460619,51.535297 +-0.48127,51.528228 +-0.149016,51.461318 +0.061575,51.555375 +-0.243846,51.463415 +-0.028783,51.475347 +-0.28312,51.416562 +-0.075726,51.523617 +-0.217076,51.511229 +0.162758,51.500001 +-0.127065,51.417994 +-0.097445,51.501589 +-0.101406,51.366655 +0.116512,51.374063 +-0.021415,51.357993 +-0.346583,51.508612 +-0.381797,51.464402 +-0.431048,51.572133 +-0.042148,51.510939 +-0.317008,51.620504 +-0.007407,51.55904 +-0.017765,51.504603 +-0.073189,51.477155 +-0.066297,51.460675 +-0.15605,51.497516 +-0.162957,51.423876 +-0.154999,51.51142 +-0.117322,51.37193 +-0.205081,51.459267 +-0.13035,51.49924 +-0.185706,51.480299 +0.126414,51.543813 +-0.043295,51.543035 +-0.161873,51.627683 +-0.41297,51.569983 +-0.263372,51.519756 +-0.115091,51.554759 +-0.12461,51.486388 +-0.066005,51.614506 +0.084191,51.528456 +-0.000266,51.512643 +-0.098942,51.376894 +-0.118101,51.520285 +-0.313792,51.510384 +-0.147652,51.492528 +-0.078774,51.595706 +-0.11932,51.582334 +-0.119039,51.478943 +-0.130247,51.429906 +-0.075292,51.550309 +-0.001865,51.541635 +-0.083636,51.379693 +-0.173235,51.48569 +-0.393888,51.470593 +-0.130004,51.465072 +-0.006977,51.534213 +-0.168241,51.484875 +-0.019076,51.579993 +-0.110602,51.562132 +-0.133516,51.512708 +-0.118884,51.571914 +-0.160353,51.501927 +-0.431907,51.580741 +0.212723,51.592964 +0.106491,51.608282 +-0.189204,51.647414 +0.068439,51.556891 +-0.227728,51.502272 +-0.206597,51.588314 +-0.130632,51.432088 +-0.07138,51.586529 +-0.135371,51.500813 +-0.047358,51.521565 +-0.084912,51.652261 +-0.104658,51.501742 +-0.196393,51.575496 +-0.272725,51.501505 +0.019766,51.607055 +-0.128797,51.447068 +-0.054896,51.490441 +-0.058468,51.498927 +-0.026593,51.569724 +-0.327205,51.543128 +-0.049632,51.637274 +-0.087662,51.427564 +0.041644,51.544213 +-0.108839,51.550036 +-0.227923,51.490927 +-0.085365,51.500718 +-0.204287,51.507356 +-0.144857,51.508139 +-0.299433,51.488101 +-0.237598,51.500011 +-0.072901,51.563875 +-0.11868,51.384029 +-0.067748,51.484584 +-0.443836,51.52852 +-0.037938,51.545185 +-0.062755,51.535777 +-0.185613,51.434733 +-0.337819,51.527695 +-0.230848,51.572729 +-0.093982,51.485481 +-0.19792,51.50876 +-0.061325,51.549072 +-0.118977,51.4437 +-0.332078,51.58458 +-0.256432,51.561836 +-0.067837,51.57238 +-0.245444,51.556421 +-0.449023,51.550665 +-0.064862,51.545929 +-0.018831,51.465746 +-0.396558,51.475747 +-0.189688,51.477933 +-0.189861,51.384764 +-0.080583,51.490379 +-0.199841,51.367741 +-0.355049,51.483193 +-0.0919,51.374828 +-0.143977,51.497874 +-0.214516,51.466111 +-0.197366,51.541412 +0.122213,51.414041 +-0.272952,51.507704 +-0.29803,51.552052 +-0.093978,51.477648 +-0.071245,51.591761 +-0.077421,51.52342 +-0.254235,51.627069 +-0.119034,51.511973 +0.003896,51.541798 +-0.120246,51.453792 +-0.139773,51.515487 +-0.075375,51.425205 +-0.11996,51.558074 +-0.201913,51.512014 +-0.10609,51.520712 +0.263638,51.607604 +-0.255879,51.64185 +-0.162503,51.543398 +-0.249316,51.50667 +-0.104605,51.501273 +-0.252992,51.588717 +-0.098724,51.382835 +0.121948,51.412976 +-0.193705,51.492554 +-0.213751,51.436298 +0.036582,51.537107 +-0.158961,51.500727 +-0.168148,51.464559 +-0.141076,51.552161 +-0.147838,51.347749 +-0.116441,51.559456 +-0.192549,51.551967 +0.029694,51.450303 +-0.092115,51.354796 +-0.107994,51.46292 +-0.400643,51.430589 +-0.235386,51.545713 +-0.104027,51.528745 +-0.055425,51.526762 +-0.190098,51.401691 +-0.13997,51.460402 +-0.012708,51.530417 +-0.067806,51.601353 +-0.188574,51.485703 +-0.043137,51.517808 +-0.054245,51.532462 +-0.151815,51.321697 +-0.440333,51.523033 +-0.071989,51.559193 +-0.096781,51.48987 +-0.326808,51.578318 +0.027018,51.487363 +-0.076006,51.424217 +-0.038279,51.555703 +-0.403886,51.477852 +-0.380134,51.59054 +-0.449919,51.544256 +-0.105963,51.533165 +-0.175582,51.611171 +-0.194948,51.497923 +-0.152202,51.60683 +-0.021081,51.680949 +-0.255679,51.540774 +0.003593,51.332019 +-0.046393,51.648416 +0.074141,51.412555 +-0.127952,51.433952 +0.008079,51.560476 +-0.009201,51.480574 +-0.13764,51.462127 +-0.05107,51.374363 +0.032617,51.343956 +-0.38441,51.476416 +-0.056114,51.373682 +-0.112324,51.426013 +-0.157447,51.470731 +0.071202,51.508471 +-0.249203,51.514501 +-0.295299,51.516654 +-0.373201,51.510962 +-0.03052,51.525942 +-0.020407,51.466258 +-0.126787,51.515496 +-0.059921,51.431434 +-0.186402,51.606411 +-0.003619,51.549327 +-0.098012,51.386483 +-0.279504,51.508223 +0.129228,51.576586 +-0.45336,51.498046 +-0.280942,51.379517 +-0.11618,51.531207 +-0.082959,51.52575 +-0.239999,51.568946 +0.148153,51.561061 +-0.130436,51.429837 +-0.187061,51.479547 +0.030271,51.534636 +0.054561,51.42745 +-0.268766,51.487733 +-0.192568,51.401765 +-0.206298,51.359873 +-0.060001,51.480823 +-0.089298,51.554773 +0.032627,51.540908 +-0.049611,51.425912 +-0.224643,51.505651 +-0.154014,51.498347 +-0.214389,51.362335 +-0.174202,51.498627 +0.268354,51.568349 +-0.074988,51.552039 +-0.12438,51.386971 +-0.063743,51.509427 +-0.3442,51.476152 +-0.019018,51.497646 +-0.193599,51.456942 +-0.046215,51.433032 +-0.120427,51.453597 +0.216963,51.56292 +-0.019226,51.500501 +-0.120744,51.518394 +-0.244214,51.506701 +-0.191114,51.494672 +-0.180233,51.501302 +-0.082877,51.525649 +-0.101491,51.530781 +-0.047242,51.475728 +-0.205947,51.34753 +-0.176907,51.524712 +-0.16846,51.455329 +-0.298958,51.395121 +-0.066868,51.472375 +-0.173241,51.449136 +-0.197864,51.517131 +-0.199563,51.661044 +-0.120578,51.673528 +-0.186259,51.485604 +-0.211951,51.580995 +-0.191201,51.42767 +-0.096383,51.489405 +-0.289167,51.419834 +-0.150589,51.568327 +-0.131464,51.372183 +-0.0647,51.416063 +-0.078246,51.652296 +-0.153115,51.657265 +-0.270892,51.431516 +-0.022705,51.508662 +-0.150954,51.502058 +-0.262049,51.582889 +-0.197626,51.508917 +-0.098467,51.575317 +-0.107196,51.612534 +-0.114382,51.626291 +-0.154432,51.613457 +-0.141106,51.549293 +-0.048197,51.513387 +-0.055589,51.358592 +-0.162088,51.490336 +-0.154153,51.475994 +0.134066,51.561552 +-0.188049,51.64665 +-0.226797,51.506206 +-0.068463,51.610365 +-0.125078,51.420858 +0.182253,51.453542 +-0.127208,51.413446 +0.058079,51.554304 +0.100731,51.580805 +-0.124302,51.485826 +-0.279493,51.610941 +-0.020361,51.440026 +-0.125862,51.498692 +-0.278428,51.550893 +-0.091945,51.562873 +0.117336,51.525965 +-0.354317,51.429084 +-0.166426,51.406197 +-0.095722,51.504924 +-0.073296,51.59344 +-0.028106,51.469679 +0.183783,51.574171 +-0.499516,51.484528 +-0.091866,51.599912 +0.004792,51.524759 +-0.093458,51.42274 +-0.165247,51.643256 +-0.313082,51.411718 +-0.103174,51.490971 +-0.151562,51.554305 +0.016158,51.39425 +0.037372,51.474378 +0.082104,51.597386 +-0.031871,51.525704 +-0.052667,51.439299 +-0.02622,51.481671 +-0.029968,51.648834 +0.167556,51.580111 +-0.273799,51.546284 +-0.107833,51.612481 +-0.297247,51.54365 +-0.117179,51.483895 +0.127055,51.534368 +-0.093027,51.571839 +-0.092684,51.490702 +-0.138708,51.414969 +0.006458,51.515118 +-0.128512,51.528275 +-0.293002,51.419206 +-0.023308,51.392432 +0.17142,51.600912 +0.132403,51.491735 +-0.166042,51.554019 +-0.026594,51.509033 +-0.138513,51.527661 +-0.186327,51.415976 +-0.224895,51.51213 +-0.104519,51.50718 +-0.200835,51.48341 +-0.133656,51.521981 +-0.05707,51.532131 +-0.270404,51.600431 +-0.108085,51.58629 +-0.12966,51.526279 +-0.01061,51.531262 +-0.046313,51.661022 +-0.347634,51.482351 +-0.057127,51.535882 +-0.124507,51.51626 +-0.133761,51.612438 +-0.289498,51.409803 +-0.128338,51.433652 +-0.402544,51.4734 +-0.13441,51.323732 +-0.370288,51.459306 +-0.253155,51.560735 +-0.08545,51.481493 +-0.038978,51.682544 +0.126881,51.534336 +-0.390179,51.536258 +-0.098545,51.576568 +-0.028196,51.475256 +-0.04436,51.522226 +-0.104691,51.500933 +-0.144972,51.436435 +-0.105057,51.625395 +0.244535,51.602441 +-0.097335,51.500427 +-0.220172,51.586308 +-0.337219,51.514082 +0.009619,51.493616 +-0.034802,51.680101 +0.033681,51.465521 +-0.10452,51.503664 +0.294803,51.553131 +-0.068489,51.588658 +-0.067942,51.599853 +-0.408606,51.447333 +0.183779,51.580404 +-0.248817,51.55987 +0.030989,51.522573 +-0.363232,51.589658 +-0.114151,51.554123 +-0.130142,51.423663 +-0.03726,51.542188 +-0.238258,51.377048 +0.029969,51.490235 +-0.184279,51.530734 +0.083956,51.561194 +-0.054912,51.524578 +-0.276064,51.518405 +-0.393459,51.475443 +-0.245882,51.562668 +-0.046332,51.660914 +-0.051506,51.551004 +-0.148596,51.478469 +-0.132729,51.536903 +0.237755,51.569683 +-0.099705,51.383453 +-0.145772,51.438012 +-0.086658,51.615933 +-0.069285,51.547063 +-0.270106,51.602953 +-0.027288,51.506985 +-0.198636,51.480004 +-0.291428,51.516877 +-0.134359,51.448658 +-0.057321,51.587862 +-0.352741,51.603899 +-0.44703,51.448577 +-0.009273,51.600528 +-0.093226,51.56365 +-0.208529,51.652917 +-0.300632,51.530993 +-0.10175,51.506173 +-0.17764,51.511405 +-0.105139,51.531479 +-0.262022,51.573762 +-0.09907,51.367552 +0.094459,51.563372 +-0.165441,51.479651 +-0.09677,51.544769 +-0.371209,51.467403 +-0.076056,51.571175 +0.110367,51.56449 +-0.191116,51.605162 +-0.092833,51.494374 +-0.101169,51.539211 +-0.153466,51.609845 +-0.340726,51.523474 +-0.117145,51.503966 +-0.180977,51.433744 +-0.267317,51.487586 +-0.099984,51.683502 +-0.183304,51.585977 +0.020334,51.484088 +-0.410077,51.498195 +-0.052751,51.477906 +-0.453071,51.532941 +-0.08433,51.667781 +-0.061501,51.649709 +-0.30359,51.409036 +-0.191914,51.360371 +0.070928,51.537054 +-0.104715,51.501751 +-0.183231,51.48098 +0.105942,51.50555 +-0.126999,51.516992 +-0.009746,51.517669 +-0.057983,51.498829 +-0.155655,51.528354 +-0.077273,51.524542 +0.014116,51.515868 +-0.167128,51.483544 +-0.154548,51.50867 +-0.172482,51.358505 +0.075589,51.415002 +-0.334976,51.421375 +-0.134926,51.616449 +-0.121273,51.492917 +-0.069154,51.591358 +-0.091249,51.377021 +-0.035161,51.479069 +-0.197054,51.560984 +-0.145132,51.448838 +-0.025267,51.572354 +-0.047274,51.547445 +-0.367949,51.566794 +-0.381146,51.511657 +-0.101576,51.495109 +-0.087776,51.398987 +-0.172307,51.62584 +-0.112292,51.481928 +-0.196103,51.415345 +0.069468,51.489598 +-0.007366,51.505174 +-0.257896,51.492536 +-0.065411,51.390688 +-0.163244,51.521405 +-0.070997,51.596595 +-0.08934,51.500756 +-0.477937,51.502378 +-0.215525,51.46386 +-0.164614,51.431339 +-0.119152,51.583258 +-0.000411,51.592544 +-0.145743,51.342375 +-0.194216,51.516068 +-0.246738,51.53591 +0.026101,51.544294 +-0.18963,51.44885 +-0.134042,51.520306 +0.017199,51.5954 +-0.017236,51.448723 +-0.02742,51.428139 +-0.215535,51.508256 +-0.35795,51.450942 +-0.118911,51.460371 +-0.312401,51.516056 +0.021437,51.489159 +-0.169037,51.496649 +-0.256941,51.616031 +0.113275,51.398312 +-0.1833,51.369707 +-0.119061,51.367722 +-0.204974,51.445489 +-0.322998,51.510444 +-0.382876,51.608032 +-0.101097,51.587005 +-0.000768,51.501842 +-0.405918,51.517859 +0.036567,51.594256 +-0.214983,51.582803 +-0.338133,51.506397 +-0.227684,51.505617 +0.211594,51.503092 +0.063581,51.43481 +-0.287789,51.461709 +-0.224543,51.509319 +-0.38786,51.441852 +-0.17089,51.625504 +-0.298239,51.465207 +-0.064401,51.607744 +-0.120465,51.468085 +-0.262051,51.582826 +-0.021735,51.571603 +-0.378312,51.519639 +-0.211526,51.52011 +-0.141942,51.541887 +-0.132795,51.470071 +-0.158245,51.494529 +-0.204951,51.376678 +-0.283554,51.462924 +-0.251182,51.539214 +-0.287592,51.467731 +-0.207651,51.455026 +-0.173813,51.519897 +-0.161098,51.5271 +-0.186702,51.552479 +-0.050283,51.426022 +-0.17726,51.480843 +-0.014461,51.376644 +-0.107823,51.56688 +-0.042496,51.58918 +-0.037499,51.524216 +-0.294371,51.529931 +-0.055872,51.51998 +-0.213954,51.403793 +-0.187835,51.460738 +-0.166382,51.585004 +-0.305192,51.457862 +0.066605,51.554945 +-0.288927,51.592816 +-0.267059,51.600291 +-0.356839,51.493091 +-0.089464,51.4678 +-0.093016,51.472048 +-0.052398,51.546676 +0.056437,51.492912 +-0.008422,51.572771 +-0.130084,51.408869 +-0.233169,51.502768 +-0.258148,51.470031 +-0.136712,51.434002 +-0.37029,51.46695 +-0.005354,51.535382 +-0.136166,51.610848 +-0.268568,51.565936 +-0.032492,51.475832 +-0.017289,51.554738 +0.066379,51.541037 +-0.104889,51.564558 +-0.034872,51.524963 +-0.091065,51.616256 +-0.128657,51.420933 +-0.098647,51.494873 +-0.017205,51.479325 +-0.301752,51.380225 +-0.143094,51.522437 +-0.178437,51.492147 +-0.075942,51.519169 +-0.205918,51.347529 +0.044582,51.409504 +-0.103753,51.565151 +-0.364873,51.44246 +-0.368317,51.532323 +-0.358241,51.547478 +-0.413022,51.442402 +-0.06684,51.517293 +-0.091147,51.523015 +-0.466224,51.495508 +-0.350522,51.533603 +-0.099172,51.524152 +-0.073062,51.577474 +0.068378,51.561901 +-0.238047,51.473427 +-0.142811,51.468783 +-0.301704,51.4638 +-0.114922,51.665533 +-0.11109,51.654402 +0.10164,51.423603 +-0.064756,51.526341 +0.001853,51.484369 +-0.151312,51.543042 +-0.19834,51.596694 +-0.2584,51.610361 +-0.2901,51.59349 +-0.113098,51.602216 +-0.022067,51.384875 +-0.014622,51.513939 +-0.055287,51.558414 +-0.122398,51.632292 +-0.219637,51.550879 +-0.207355,51.588487 +-0.438982,51.516154 +-0.055716,51.514519 +-0.477906,51.518446 +-0.149114,51.52469 +-0.114186,51.595813 +-0.0412,51.669614 +-0.144123,51.489666 +-0.389036,51.440744 +-0.055223,51.517622 +0.059172,51.457379 +0.041575,51.544277 +0.014493,51.516572 +0.035595,51.577339 +-0.436865,51.517817 +-0.152575,51.494737 +-0.039261,51.682702 +0.037702,51.593786 +0.070777,51.513388 +0.078005,51.599635 +-0.050462,51.636775 +-0.015343,51.614983 +-0.103406,51.590495 +-0.035766,51.59896 +-0.026921,51.588812 +-0.310663,51.411405 +-0.047652,51.548053 +-0.011182,51.472451 +-0.011184,51.527019 +-0.37211,51.545217 +-0.072185,51.485952 +-0.20157,51.522925 +-0.406509,51.518272 +-0.097237,51.439797 +0.066007,51.574542 +0.123321,51.569382 +-0.436705,51.494273 +-0.112178,51.487475 +-0.160472,51.473575 +0.01311,51.42763 +-0.191583,51.471901 +-0.038698,51.51813 +-0.094567,51.598176 +-0.305066,51.425883 +0.044627,51.54962 +-0.188438,51.390227 +0.089265,51.488429 +-0.23497,51.547514 +-0.106057,51.381694 +-0.052794,51.388924 +-0.479662,51.544043 +-0.192267,51.403218 +-0.114102,51.393299 +-0.119092,51.430042 +-0.100739,51.495851 +-0.071129,51.595194 +-0.042705,51.530238 +-0.023415,51.444619 +-0.04775,51.680397 +-0.420117,51.548624 +-0.103811,51.432907 +-0.144655,51.514872 +-0.212595,51.501647 +-0.37115,51.522021 +-0.139971,51.480194 +-0.036093,51.376837 +0.105159,51.533891 +-0.127154,51.437644 +-0.125024,51.485424 +-0.214988,51.465471 +0.074106,51.41243 +-0.265854,51.400823 +-0.120324,51.474315 +0.043473,51.592409 +-0.292073,51.512741 +-0.171661,51.409777 +-0.133601,51.510281 +0.119312,51.568501 +0.181576,51.59227 +0.10844,51.522816 +-0.106625,51.409725 +-0.280523,51.584825 +0.000337,51.445106 +-0.189419,51.532729 +0.081844,51.590125 +-0.380699,51.449046 +0.02655,51.618637 +-0.196317,51.494257 +-0.164268,51.405507 +-0.182635,51.494523 +-0.126671,51.490558 +-0.161379,51.42342 +-0.11874,51.431619 +-0.032737,51.377015 +0.018096,51.473524 +-0.055105,51.473008 +0.014793,51.446279 +-0.112823,51.472189 +0.035881,51.547569 +0.128987,51.570493 +0.069605,51.418804 +0.1131,51.541266 +-0.050956,51.426087 +-0.404259,51.518736 +-0.130788,51.527259 +0.030134,51.450484 +0.152922,51.484508 +0.172986,51.586521 +-0.403162,51.484973 +-0.190365,51.426254 +-0.192097,51.456712 +-0.077308,51.523715 +-0.092431,51.586091 +-0.047472,51.528995 +-0.332228,51.585202 +0.010441,51.516875 +0.00935,51.493396 +-0.083736,51.54605 +-0.103359,51.368755 +-0.10093,51.546005 +-0.015098,51.464514 +-0.387051,51.482774 +-0.176745,51.62144 +-0.231076,51.453736 +-0.214195,51.465854 +-0.169137,51.431203 +-0.034444,51.481 +-0.328251,51.51694 +-0.190358,51.401659 +-0.020298,51.565158 +0.208293,51.563533 +0.133095,51.448233 +-0.096454,51.489424 +0.210917,51.590561 +0.183749,51.577068 +-0.148447,51.521595 +-0.19822,51.486535 +-0.049345,51.625759 +-0.017566,51.61966 +-0.205071,51.420267 +-0.396757,51.533309 +-0.197543,51.521236 +-0.292615,51.627283 +-0.069875,51.634281 +-0.191006,51.547968 +0.041425,51.544784 +-0.137067,51.5253 +0.049877,51.543197 +-0.01351,51.57194 +-0.234068,51.57267 +0.04883,51.532092 +0.02492,51.549539 +-0.226406,51.505507 +-0.257372,51.510791 +0.127646,51.539313 +-0.206897,51.49629 +-0.076866,51.536585 +-0.441779,51.523313 +-0.122207,51.409139 +-0.103419,51.590531 +-0.023112,51.501268 +-0.109293,51.61246 +-0.371637,51.490978 +0.045754,51.371983 +0.076016,51.548106 +-0.051762,51.413906 +-0.104607,51.402885 +-0.191499,51.472565 +-0.122233,51.567346 +0.009102,51.464488 +-0.108555,51.567315 +0.05814,51.606748 +-0.022893,51.67089 +-0.229158,51.547148 +-0.373013,51.468921 +0.042957,51.549046 +0.152335,51.486416 +-0.205494,51.528713 +-0.060839,51.53776 +-0.17851,51.523918 +-0.073088,51.577214 +-0.174218,51.602337 +-0.004239,51.551307 +-0.069806,51.578032 +-0.071053,51.549933 +-0.09775,51.358152 +-0.03918,51.672854 +-0.084005,51.455481 +0.043217,51.526201 +-0.094555,51.613642 +-0.142676,51.575189 +-0.117403,51.300565 +-0.142588,51.516808 +-0.012011,51.557014 +-0.004609,51.552095 +-0.218724,51.559489 +-0.192169,51.509885 +-0.078022,51.580676 +0.142637,51.593167 +-0.194812,51.369597 +-0.114769,51.554529 +-0.159016,51.51258 +-0.043228,51.492136 +-0.089829,51.365918 +-0.19409,51.56842 +-0.095229,51.458325 +-0.21444,51.403486 +-0.286741,51.420086 +-0.017464,51.590163 +-0.171366,51.51584 +-0.333944,51.601035 +-0.272112,51.451803 +0.164858,51.581968 +-0.053371,51.47824 +-0.09837,51.493924 +-0.402849,51.438272 +-0.228957,51.549707 +-0.23211,51.406829 +-0.160805,51.589071 +0.050441,51.39647 +-0.182742,51.484948 +-0.076432,51.537999 +-0.117532,51.433353 +0.111848,51.395101 +-0.057549,51.587929 +0.03244,51.543186 +-0.136919,51.510918 +-0.076737,51.536925 +-0.243338,51.517479 +-0.046293,51.521844 +-0.418425,51.439283 +-0.423545,51.501587 +0.176225,51.56549 +-0.029869,51.587404 +-0.150926,51.404074 +-0.349045,51.435683 +-0.378231,51.505268 +-0.286061,51.527769 +-0.37239,51.530491 +-0.303778,51.462589 +-0.200218,51.478599 +-0.079792,51.642411 +-0.117471,51.433442 +-0.007646,51.533433 +-0.129085,51.459752 +-0.065281,51.571079 +-0.142221,51.495697 +-0.168997,51.427136 +-0.36847,51.443688 +-0.120383,51.423121 +-0.333922,51.579148 +-0.059549,51.408631 +-0.339065,51.560382 +0.032815,51.594923 +-0.141192,51.507533 +-0.0914,51.564186 +-0.166741,51.483502 +-0.285124,51.500913 +-0.077076,51.535716 +-0.030175,51.406558 +-0.087168,51.586293 +-0.115854,51.520941 +-0.202942,51.34761 +-0.300454,51.587237 +-0.089862,51.544063 +0.075679,51.582195 +0.061916,51.422114 +0.001057,51.405624 +0.159624,51.555599 +0.072741,51.527769 +0.022404,51.59263 +-0.01414,51.680571 +-0.130084,51.408869 +-0.049255,51.425843 +-0.036557,51.455604 +-0.026644,51.505886 +-0.261304,51.541127 +-0.363881,51.564336 +-0.149066,51.443711 +-0.099306,51.580115 +-0.09319,51.472707 +-0.023202,51.480856 +-0.26723,51.487602 +-0.111722,51.503735 +-0.099533,51.599569 +-0.066629,51.61886 +-0.078371,51.474138 +0.052799,51.534423 +-0.119597,51.557781 +-0.13879,51.557286 +0.072271,51.530106 +-0.119968,51.40485 +-0.081817,51.490489 +-0.077645,51.52631 +-0.144122,51.489693 +-0.210688,51.463139 +-0.056862,51.5878 +-0.168825,51.460586 +-0.189485,51.466698 +-0.014682,51.572859 +0.031661,51.514675 +-0.151123,51.521017 +-0.083266,51.58846 +-0.097779,51.358836 +-0.006554,51.338685 +-0.08287,51.577977 +-0.290243,51.593519 +-0.005177,51.622166 +0.218287,51.574999 +-0.237718,51.472999 +-0.203226,51.531035 +-0.077487,51.525264 +-0.045956,51.425617 +-0.055256,51.545941 +-0.126622,51.450639 +-0.200183,51.449858 +-0.233372,51.506467 +-0.287569,51.50219 +-0.504046,51.476816 +-0.120656,51.526827 +-0.253197,51.560772 +-0.309983,51.512442 +-0.10053,51.450606 +0.176217,51.557477 +-0.03883,51.5127 +-0.12815,51.32133 +-0.064912,51.436237 +-0.384082,51.532137 +0.073573,51.557169 +0.067988,51.510371 +-0.384068,51.472248 +-0.096349,51.571092 +-0.137351,51.542705 +-0.11281,51.461703 +-0.098599,51.560733 +-0.169458,51.471036 +-0.22689,51.491549 +-0.157722,51.590335 +0.083639,51.57539 +-0.108688,51.551238 +-0.126338,51.469177 +-0.230475,51.569684 +-0.345914,51.536236 +-0.231786,51.567132 +0.103624,51.453963 +-0.111187,51.489491 +-0.219881,51.57715 +0.169975,51.525129 +-0.105502,51.56508 +-0.107365,51.471858 +0.136181,51.5528 +-0.103634,51.433354 +0.006716,51.632377 +-0.108588,51.472939 +0.081658,51.589526 +0.166801,51.602787 +-0.236834,51.549296 +-0.248407,51.546528 +-0.076566,51.652385 +-0.063571,51.576329 +-0.150994,51.372089 +-0.093989,51.477019 +-0.12504,51.577309 +-0.072163,51.620192 +0.094104,51.464206 +-0.051853,51.477702 +-0.023195,51.604468 +-0.12622,51.48716 +-0.071657,51.515178 +0.157274,51.547396 +-0.026724,51.509026 +-0.074161,51.559669 +-0.170663,51.539155 +-0.286493,51.561586 +-0.101039,51.452898 +-0.032755,51.644546 +-0.054326,51.540026 +-0.066236,51.483902 +-0.071046,51.549771 +0.052807,51.42972 +-0.137477,51.461882 +0.03028,51.447927 +-0.083784,51.556931 +-0.124187,51.446499 +-0.220737,51.549304 +-0.079815,51.497695 +-0.069491,51.594304 +-0.209401,51.586738 +-0.092898,51.660736 +-0.028239,51.375033 +-0.219819,51.493367 +-0.02356,51.516868 +-0.110681,51.525066 +0.084062,51.580868 +0.036045,51.533807 +-0.123668,51.423344 +0.011107,51.571557 +-0.213914,51.555576 +-0.169189,51.471266 +-0.045129,51.474299 +-0.223593,51.487066 +-0.146775,51.537575 +-0.213786,51.513193 +-0.088316,51.545171 +-0.035703,51.676321 +0.167767,51.579999 +-0.067211,51.555508 +-0.071083,51.508298 +-0.150266,51.442858 +0.104359,51.562179 +-0.0699,51.594193 +-0.062721,51.550848 +0.007208,51.542344 +-0.38572,51.557949 +-0.080014,51.604988 +-0.465167,51.500809 +-0.082835,51.491981 +0.022069,51.610126 +-0.027557,51.517772 +-0.326524,51.597432 +-0.413016,51.511454 +-0.067989,51.606239 +-0.054886,51.490351 +-0.385426,51.507993 +0.069706,51.535871 +0.012828,51.51642 +-0.180207,51.550041 +-0.235421,51.588418 +-0.02963,51.456018 +-0.145125,51.52389 +-0.002476,51.586294 +-0.077945,51.526036 +-0.316148,51.597292 +-0.036458,51.546077 +-0.149986,51.443744 +-0.041438,51.668782 +-0.089859,51.504883 +-0.301561,51.488959 +-0.041581,51.538951 +0.186263,51.578037 +-0.230147,51.530931 +-0.05559,51.616897 +-0.068152,51.519671 +-0.277012,51.547896 +-0.087256,51.463456 +-0.110007,51.484589 +-0.234848,51.444378 +-0.142246,51.452209 +-0.451318,51.526812 +-0.364841,51.549657 +-0.020618,51.474014 +-0.47375,51.50869 +0.140589,51.58093 +-0.208338,51.522381 +-0.185296,51.413676 +0.109878,51.567628 +0.118435,51.448031 +-0.371017,51.532594 +-0.080169,51.588975 +-0.203556,51.50873 +-0.19955,51.377377 +-0.065144,51.514792 +-0.459694,51.555868 +-0.112365,51.552656 +-0.137584,51.540892 +0.199517,51.549426 +-0.091956,51.441186 +-0.134468,51.510232 +-0.017545,51.511012 +0.055135,51.427755 +-0.05192,51.393262 +-0.268986,51.451874 +-0.175626,51.545563 +-0.385216,51.442985 +-0.104441,51.43611 +-0.051157,51.4261 +-0.015988,51.529591 +0.031132,51.589242 +-0.119749,51.516319 +-0.086929,51.531138 +-0.120955,51.551777 +-0.071217,51.473382 +-0.116857,51.460941 +-0.234813,51.500508 +-0.12011,51.612831 +-0.026012,51.475148 +0.050808,51.456077 +0.235331,51.599388 +-0.047528,51.639154 +0.080076,51.532441 +-0.185148,51.501972 +-0.044887,51.376157 +-0.027555,51.617167 +-0.109994,51.612273 +-0.126017,51.551454 +-0.305208,51.508318 +-0.066906,51.322458 +-0.076279,51.655743 +0.096814,51.550272 +-0.000966,51.51377 +-0.111361,51.496445 +-0.177385,51.493956 +-0.028239,51.51165 +-0.006444,51.407047 +-0.067864,51.614618 +-0.101425,51.422779 +0.11755,51.542994 +-0.203795,51.546969 +-0.205795,51.49354 +-0.26277,51.577226 +-0.04039,51.37244 +-0.410577,51.492933 +-0.121658,51.451648 +-0.119246,51.460269 +-0.260853,51.534043 +0.051714,51.480144 +0.202605,51.568244 +-0.191062,51.547646 +-0.076032,51.61138 +-0.21734,51.528453 +-0.058842,51.52708 +-0.091993,51.413714 +-0.029726,51.467494 +-0.144531,51.448739 +0.045517,51.602562 +-0.255411,51.454218 +-0.183698,51.510546 +-0.106207,51.35301 +-0.100581,51.537412 +-0.136166,51.319354 +0.253398,51.556551 +-0.097739,51.356326 +-0.162078,51.41853 +-0.152428,51.51905 +-0.131021,51.425746 +-0.151986,51.510015 +-0.16603,51.399564 +-0.129644,51.586807 +-0.22673,51.516087 +-0.37308,51.544709 +0.006134,51.546445 +-0.036413,51.524674 +-0.093011,51.598087 +-0.149832,51.4276 +-0.179992,51.648611 +-0.296526,51.595768 +0.042043,51.538298 +-0.091703,51.572114 +-0.164696,51.456223 +0.058124,51.368754 +-0.129355,51.422149 +-0.031176,51.427771 +-0.394338,51.535263 +-0.066645,51.4739 +-0.453737,51.495839 +-0.167784,51.493051 +-0.098092,51.498164 +-0.056576,51.520037 +-0.11312,51.481042 +-0.108777,51.523354 +0.068484,51.57823 +-0.096334,51.457012 +-0.335364,51.563774 +-0.365541,51.474122 +-0.324443,51.551973 +-0.182583,51.463939 +-0.346248,51.536177 +0.112661,51.412433 +-0.248854,51.595714 +-0.14417,51.490989 +-0.104957,51.53135 +-0.016332,51.55153 +0.220025,51.567133 +-0.132464,51.564847 +-0.056613,51.511387 +-0.113422,51.521532 +0.147955,51.541856 +0.063892,51.430227 +0.120855,51.574687 +-0.343962,51.427032 +-0.085763,51.605289 +-0.190844,51.490216 +-0.145903,51.529216 +-0.093747,51.394013 +-0.051607,51.551339 +-0.121061,51.473562 +-0.072883,51.571141 +-0.093713,51.393463 +-0.162662,51.534066 +-0.120334,51.588879 +-0.097014,51.604924 +-0.262806,51.578944 +-0.095273,51.529161 +0.131861,51.585054 +-0.036962,51.475691 +-0.449574,51.545052 +-0.147404,51.546227 +-0.035025,51.413834 +-0.063549,51.486133 +-0.174854,51.514033 +-0.057433,51.511085 +-0.185532,51.480333 +-0.446989,51.448504 +0.059596,51.368252 +-0.034904,51.524901 +-0.061773,51.514089 +-0.102122,51.430956 +-0.21141,51.495091 +-0.022636,51.467312 +-0.26638,51.599562 +-0.115674,51.299008 +-0.072073,51.584131 +-0.10013,51.584237 +-0.326862,51.552862 +-0.249692,51.554371 +-0.185848,51.357939 +-0.243948,51.465242 +0.176414,51.451537 +-0.082744,51.650535 +0.212276,51.517162 +-0.127651,51.614912 +-0.214193,51.444506 +0.029638,51.538226 +-0.082799,51.504507 +-0.103919,51.59482 +0.067684,51.538335 +-0.196978,51.440969 +-0.180526,51.521072 +-0.21611,51.531159 +-0.20567,51.562357 +-0.198507,51.652305 +-0.057356,51.533548 +0.100349,51.375352 +-0.017224,51.507454 +-0.112119,51.487492 +0.028298,51.546684 +-0.126122,51.459686 +-0.271391,51.545511 +-0.14919,51.61698 +-0.223103,51.503371 +-0.094309,51.474524 +-0.191322,51.358627 +-0.056366,51.551364 +-0.115665,51.385689 +0.123278,51.477359 +-0.130584,51.513569 +-0.070632,51.588846 +-0.249331,51.559653 +-0.435338,51.586721 +-0.414378,51.563519 +-0.25417,51.398806 +-0.477425,51.548429 +-0.062694,51.571495 +-0.100339,51.400747 +-0.362467,51.467506 +0.088241,51.486828 +-0.015796,51.555891 +-0.073763,51.416338 +-0.304225,51.417903 +-0.148675,51.666898 +0.11085,51.462071 +-0.132574,51.585055 +-0.297753,51.55212 +-0.031079,51.524333 +-0.144938,51.595143 +-0.1549,51.484962 +-0.254671,51.489466 +-0.069084,51.57633 +-0.087488,51.638805 +-0.285848,51.490457 +-0.048799,51.560671 +-0.104921,51.398771 +-0.109463,51.613227 +-0.312603,51.392692 +-0.360167,51.538855 +-0.278654,51.539539 +-0.100555,51.49333 +-0.086218,51.494797 +-0.166445,51.433751 +-0.234489,51.526024 +-0.248511,51.530299 +0.033052,51.316808 +-0.379426,51.531704 +-0.115038,51.560243 +-0.050785,51.628229 +-0.058466,51.514574 +-0.035942,51.526582 +-0.076203,51.546151 +-0.090585,51.504391 +-0.166377,51.427563 +-0.069583,51.593514 +-0.01702,51.464663 +-0.008674,51.435134 +0.098254,51.535795 +-0.056019,51.427107 +-0.335048,51.47203 +0.037959,51.489791 +-0.053467,51.679305 +-0.125621,51.436765 +0.195992,51.565167 +-0.143779,51.558049 +-0.027341,51.526779 +-0.119442,51.52831 +-0.123217,51.412222 +-0.203617,51.455486 +-0.070544,51.5173 +-0.395956,51.475271 +-0.12188,51.622104 +-0.080708,51.497018 +0.071481,51.515246 +-0.13227,51.428274 +-0.21267,51.518509 +-0.214354,51.511196 +-0.148172,51.521636 +0.060294,51.576495 +-0.029839,51.589094 +-0.195019,51.347524 +0.189043,51.528632 +-0.201574,51.522835 +-0.204991,51.526098 +-0.134461,51.490997 +-0.017368,51.590395 +-0.063749,51.482773 +-0.05564,51.518663 +-0.150752,51.501335 +-0.245814,51.536688 +-0.359819,51.468674 +-0.171626,51.470099 +-0.276742,51.608473 +-0.111664,51.503734 +-0.183878,51.43315 +-0.363555,51.478932 +-0.048329,51.654833 +0.127483,51.541375 +0.013852,51.511538 +-0.083268,51.525962 +-0.278978,51.610448 +-0.451374,51.526867 +-0.037547,51.408346 +-0.32396,51.457115 +-0.222704,51.545827 +0.176867,51.523949 +-0.211212,51.514134 +0.145878,51.521912 +-0.190043,51.45079 +-0.329083,51.545403 +-0.191087,51.413793 +-0.013322,51.457658 +-0.121041,51.32601 +-0.107527,51.486734 +-0.021894,51.534709 +0.071636,51.51518 +-0.040039,51.512738 +-0.131105,51.63315 +-0.364633,51.539762 +-0.209441,51.458938 +-0.409126,51.498614 +-0.255072,51.403441 +0.013528,51.42863 +-0.141607,51.514338 +-0.149111,51.48069 +0.002873,51.497131 +-0.143208,51.523877 +-0.219806,51.596041 +-0.071812,51.515253 +-0.153054,51.361941 +-0.238412,51.448622 +-0.089111,51.365907 +-0.203104,51.525709 +-0.064266,51.48315 +-0.139204,51.534407 +-0.116795,51.49986 +-0.206842,51.490723 +-0.007552,51.559025 +-0.126811,51.483986 +-0.333161,51.451509 +0.139047,51.493646 +0.092065,51.464962 +-0.085864,51.526274 +-0.136191,51.56898 +-0.082648,51.598665 +-0.028935,51.584646 +-0.230394,51.494444 +-0.130815,51.513915 +-0.473166,51.539067 +-0.273785,51.498247 +-0.018887,51.446817 +-0.149361,51.446738 +-0.06181,51.621433 +-0.14049,51.612491 +0.07875,51.527078 +0.061336,51.521036 +-0.117093,51.489478 +-0.123308,51.504757 +-0.045729,51.474408 +0.117738,51.450076 +-0.395969,51.475316 +-0.131421,51.491002 +-0.141736,51.514718 +-0.017917,51.465245 +-0.155421,51.358444 +-0.098938,51.578553 +-0.055212,51.546641 +-0.025311,51.599639 +-0.078038,51.501218 +-0.246656,51.556807 +-0.176769,51.40679 +0.09253,51.550601 +-0.417945,51.492727 +-0.060099,51.376284 +-0.121333,51.474645 +-0.282014,51.502396 +-0.029857,51.517244 +-0.169573,51.521018 +-0.116345,51.510437 +-0.263826,51.5976 +-0.06992,51.592359 +-0.080356,51.59994 +-0.248988,51.537383 +0.035531,51.534886 +-0.115814,51.397112 +-0.124211,51.414297 +-0.148822,51.431595 +-0.058444,51.659685 +-0.156905,51.509894 +-0.151379,51.54352 +-0.124402,51.466188 +-0.125455,51.531778 +-0.013778,51.529365 +-0.184296,51.480997 +-0.048499,51.4844 +0.00315,51.54155 +-0.186279,51.352119 +-0.341897,51.508294 +-0.231251,51.506183 +-0.296948,51.56208 +-0.072444,51.465795 +-0.062805,51.571263 +-0.456419,51.497888 +-0.055752,51.547505 +-0.274059,51.508152 +0.14085,51.578209 +-0.114371,51.596238 +-0.058288,51.527232 +-0.248202,51.542092 +-0.103808,51.405866 +-0.096602,51.382368 +-0.057239,51.519023 +-0.360657,51.518791 +-0.297733,51.389006 +-0.017867,51.572625 +-0.195996,51.56585 +-0.125834,51.469538 +-0.402224,51.467731 +0.067961,51.543806 +-0.196009,51.558234 +-0.308664,51.512648 +-0.37823,51.438293 +-0.39162,51.581688 +-0.117011,51.392815 +-0.016992,51.449708 +-0.440902,51.445978 +-0.165557,51.572887 +-0.376162,51.543618 +-0.103269,51.543166 +-0.114309,51.39386 +-0.178094,51.487735 +-0.139679,51.496925 +0.129454,51.466788 +-0.062156,51.463961 +-0.419997,51.507933 +-0.127546,51.50719 +-0.338222,51.593794 +-0.396572,51.514359 +-0.377149,51.543011 +-0.208914,51.387799 +-0.122321,51.604072 +-0.191646,51.427704 +-0.40038,51.549634 +-0.128602,51.528186 +-0.041788,51.481689 +0.023898,51.546337 +0.072428,51.55388 +-0.216735,51.46163 +0.1115,51.364432 +-0.036137,51.463717 +-0.14219,51.50709 +-0.012708,51.530093 +-0.32751,51.483253 +-0.251105,51.594633 +-0.227492,51.39649 +0.08081,51.560225 +-0.114173,51.456222 +-0.037835,51.369367 +-0.283607,51.589186 +-0.126029,51.551508 +-0.123198,51.587001 +0.056294,51.533274 +-0.282492,51.550593 +-0.25294,51.389219 +-0.042851,51.612171 +-0.06348,51.41634 +-0.078999,51.489679 +-0.319554,51.564097 +-0.094064,51.459682 +-0.124267,51.4491 +-0.051575,51.418292 +-0.036868,51.66947 +-0.420641,51.496809 +-0.301009,51.415051 +-0.108046,51.377383 +-0.097736,51.358844 +-0.162086,51.621355 +-0.254785,51.454775 +-0.263124,51.434927 +-0.247858,51.548418 +-0.198206,51.508809 +-0.206169,51.517411 +-0.075588,51.549459 +-0.043465,51.474487 +-0.020218,51.51085 +-0.397289,51.597358 +-0.0091,51.496453 +-0.106095,51.379051 +-0.099634,51.58333 +-0.070249,51.515407 +-0.19505,51.48985 +-0.313405,51.583666 +-0.072515,51.374187 +-0.25352,51.558762 +-0.100471,51.493275 +-0.420884,51.493135 +-0.06817,51.606395 +-0.112172,51.552787 +0.009597,51.378041 +-0.098262,51.574693 +0.058368,51.581789 +-0.121968,51.555552 +-0.014853,51.481434 +-0.335348,51.59619 +-0.113922,51.481864 +0.162932,51.475384 +-0.3656,51.511144 +0.106492,51.608309 +-0.061224,51.414927 +0.049371,51.577513 +-0.074495,51.519658 +-0.025069,51.410276 +-0.201472,51.522123 +-0.087342,51.578706 +0.035973,51.53379 +0.231669,51.546184 +-0.208605,51.449789 +-0.111628,51.388448 +-0.309578,51.591092 +-0.354925,51.476249 +-0.26361,51.555945 +-0.130198,51.527591 +-0.008986,51.507665 +0.05286,51.492822 +-0.147143,51.41941 +-0.013183,51.551953 +0.045996,51.306798 +-0.086986,51.410332 +0.049003,51.605262 +-0.149026,51.623129 +0.144032,51.485687 +-0.088273,51.653475 +0.027649,51.534034 +-0.152273,51.444122 +-0.043877,51.474269 +0.138085,51.602 +-0.325946,51.482709 +0.163721,51.5477 +0.042246,51.579229 +-0.065458,51.642653 +-0.315328,51.568352 +0.083334,51.572833 +-0.064266,51.498123 +-0.215029,51.566906 +-0.012859,51.458379 +-0.02669,51.569816 +-0.316205,51.582492 +-0.399197,51.49704 +0.071338,51.521948 +0.099207,51.561534 +-0.112477,51.531498 +-0.303044,51.59481 +-0.127657,51.51783 +-0.12349,51.528383 +-0.111355,51.49658 +-0.178332,51.398937 +-0.216132,51.528768 +-0.168131,51.490502 +-0.443971,51.453059 +-0.301294,51.411998 +0.07915,51.562727 +-0.066676,51.481338 +0.014313,51.544182 +-0.378892,51.505322 +-0.167181,51.46101 +-0.11741,51.503467 +-0.040584,51.548736 +-0.044767,51.56251 +-0.251183,51.539187 +-0.085791,51.587458 +-0.13704,51.481802 +-0.120827,51.385286 +-0.02568,51.503514 +-0.290528,51.559388 +-0.32343,51.477466 +0.011737,51.634161 +-0.266472,51.488598 +-0.054528,51.473043 +0.182736,51.46338 +-0.003665,51.477737 +-0.177708,51.550847 +-0.192619,51.541851 +-0.074909,51.520762 +-0.069566,51.593909 +-0.14056,51.635503 +-0.10118,51.447775 +0.105218,51.404114 +-0.160779,51.473454 +-0.016315,51.530685 +-0.03,51.427364 +0.071573,51.556341 +-0.012813,51.45845 +-0.059248,51.549406 +-0.032108,51.522534 +-0.141386,51.459552 +-0.162745,51.427371 +-0.413897,51.441659 +-0.12935,51.432122 +0.191289,51.533087 +-0.38176,51.500434 +-0.302932,51.464834 +-0.123818,51.444956 +-0.302758,51.51723 +-0.203338,51.561503 +-0.292535,51.52968 +-0.150323,51.513361 +-0.434473,51.452187 +-0.048261,51.623754 +0.029149,51.466256 +-0.333689,51.51565 +-0.071316,51.47342 +-0.042635,51.435337 +-0.420657,51.508446 +0.041772,51.516469 +-0.427001,51.505006 +0.039913,51.40089 +-0.065525,51.482677 +-0.305109,51.507489 +0.000232,51.539468 +-0.149393,51.357261 +6E-06,51.619137 +-0.218628,51.533509 +-0.454185,51.456602 +-0.121408,51.407256 +-0.280194,51.408309 +-0.212103,51.419556 +-0.098827,51.478437 +-0.290797,51.506796 +-0.473266,51.543402 +0.044756,51.460446 +-0.327335,51.483304 +0.141606,51.586289 +-0.129113,51.51324 +-0.074037,51.399886 +-0.058213,51.534407 +-0.208118,51.519545 +0.038973,51.489926 +-0.026329,51.472473 +-0.46127,51.504444 +-0.098952,51.587564 +-0.12412,51.47094 +-0.121529,51.566552 +-0.126562,51.544862 +-0.085778,51.617969 +-0.233159,51.467634 +-0.224684,51.462677 +-0.16758,51.487346 +-0.060468,51.535308 +-0.032592,51.582522 +-0.159347,51.412058 +-0.399907,51.431055 +-0.157826,51.517786 +-0.186988,51.479564 +-0.072851,51.569845 +-0.301886,51.408454 +0.218574,51.591549 +-0.061254,51.474027 +-0.191142,51.546712 +-0.268684,51.608831 +-0.292632,51.53094 +-0.175228,51.608836 +-0.064894,51.526469 +0.139169,51.448554 +-0.364376,51.478935 +-0.174542,51.493732 +-0.017641,51.509781 +0.060041,51.514063 +-0.186007,51.538764 +-0.376884,51.50953 +-0.060073,51.480806 +-0.143205,51.499157 +-0.18209,51.553829 +-0.061803,51.548684 +-0.110001,51.550873 +-0.073813,51.509521 +-0.160705,51.422645 +-0.14335,51.575649 +-0.057449,51.5879 +-0.126757,51.505685 +0.143998,51.482801 +-0.055523,51.522088 +-0.284015,51.559968 +-0.165973,51.525243 +-0.105361,51.479226 +0.025069,51.486615 +-0.105691,51.338694 +-0.367949,51.478481 +-0.163135,51.543471 +0.045181,51.57452 +-0.291918,51.622003 +-0.118563,51.456571 +-0.111776,51.47942 +-0.440241,51.51011 +-0.027052,51.475084 +-0.377042,51.50509 +-0.031872,51.508627 +-0.107554,51.56327 +-0.133189,51.510149 +-0.137817,51.326071 +-0.238179,51.46253 +0.101752,51.499357 +-0.291597,51.553568 +-0.144305,51.514974 +-0.030873,51.508062 +-0.088259,51.483193 +-0.069676,51.531017 +-0.037633,51.492267 +-0.088354,51.419941 +-0.28673,51.55374 +0.000176,51.546744 +-0.102821,51.541108 +-0.400251,51.580457 +-0.195297,51.509133 +-0.174926,51.393498 +-0.130453,51.516436 +-0.061169,51.514726 +0.04412,51.375924 +-0.008313,51.570332 +-0.091311,51.376221 +-0.121594,51.451808 +-0.031057,51.423857 +-0.292864,51.378126 +0.051022,51.539481 +-0.45318,51.497387 +-0.056911,51.644472 +-0.058812,51.46744 +-0.126657,51.605364 +-0.307959,51.588443 +-0.044299,51.511533 +0.231631,51.600214 +-0.390677,51.547082 +-0.152586,51.514071 +-0.334708,51.439437 +-0.099103,51.53862 +-0.301634,51.419511 +-0.131943,51.615925 +-0.33725,51.514406 +-0.066971,51.517259 +-0.288869,51.510554 +-0.210291,51.592012 +-0.069849,51.546352 +-0.429819,51.578501 +-0.079615,51.49798 +-0.396956,51.532574 +-0.273618,51.47062 +-0.277178,51.467867 +-0.033504,51.682012 +-0.405177,51.472213 +-0.383255,51.499699 +-0.048695,51.648661 +-0.313071,51.497533 +0.067323,51.538647 +-0.161206,51.490772 +-0.123428,51.41165 +-0.31189,51.488928 +-0.287472,51.485175 +-0.041496,51.533194 +0.14523,51.473461 +0.021458,51.609382 +0.19249,51.584153 +0.145207,51.555782 +-0.282355,51.571849 +-0.030564,51.525925 +-0.051507,51.550995 +0.105828,51.450228 +0.036116,51.594174 +-0.03052,51.56836 +-0.134647,51.401676 +-0.045137,51.510144 +-0.304142,51.404611 +-0.001978,51.338598 +-0.254785,51.455153 +-0.229411,51.371735 +-0.168286,51.500648 +-0.052151,51.364803 +-0.188626,51.501468 +-0.391492,51.525197 +0.03995,51.593055 +-0.17002,51.399734 +0.177181,51.480345 +0.05799,51.499261 +0.188817,51.453851 +-0.068989,51.498867 +-0.131156,51.507706 +-0.161168,51.512461 +-0.14878,51.49027 +-0.30036,51.363497 +-0.344074,51.573015 +-0.171112,51.424256 +-0.334618,51.584967 +-0.231274,51.506318 +-0.198985,51.436036 +-0.183903,51.518786 +-0.034938,51.543516 +-0.099856,51.615005 +-0.133287,51.535599 +0.213151,51.593154 +-0.357471,51.58929 +-0.21162,51.590899 +-0.190606,51.502056 +-0.371125,51.467348 +-0.110055,51.597248 +-0.365309,51.560346 +-0.359427,51.439461 +-0.320855,51.563621 +-0.2548,51.455153 +-0.055722,51.665162 +-0.12339,51.506629 +0.024282,51.541331 +-0.24907,51.558552 +-0.034451,51.442313 +-0.205783,51.516956 +-0.078616,51.500158 +-0.026497,51.505938 +0.252746,51.543065 +-0.190548,51.502064 +-0.158548,51.502744 +-0.226534,51.372204 +-0.066358,51.498041 +-0.313685,51.602985 +-0.112903,51.474096 +-0.172055,51.584633 +-0.252083,51.465238 +-0.057546,51.511123 +-0.098527,51.576991 +-0.243497,51.498732 +-0.052703,51.438113 +0.023209,51.471602 +-0.178326,51.514069 +0.135436,51.482669 +-0.010894,51.552526 +-0.199858,51.585333 +-0.177022,51.481028 +-0.196768,51.485011 +-0.023882,51.377765 +-0.364805,51.444365 +-0.11732,51.33765 +-0.424508,51.500809 +-0.192145,51.361085 +-0.462301,51.518755 +-0.482413,51.545041 +0.220561,51.55947 +-0.121668,51.500837 +-0.473236,51.543456 +-0.045942,51.48424 +-0.047207,51.635516 +0.213558,51.596482 +-0.240709,51.499311 +-0.120401,51.500817 +0.079233,51.458526 +0.061998,51.422023 +0.143011,51.410407 +-0.062339,51.492246 +0.087231,51.414859 +-0.405249,51.497824 +-0.311697,51.356377 +-0.115966,51.355973 +-0.302042,51.514405 +0.105455,51.505621 +-0.132359,51.4469 +-0.215396,51.357872 +-0.048839,51.513542 +-0.097713,51.50519 +-0.425699,51.498442 +-0.301999,51.620135 +-0.281826,51.380096 +-0.263107,51.549445 +-0.131975,51.511991 +0.089057,51.574907 +-0.222154,51.487764 +-0.299245,51.465257 +-0.007364,51.481433 +-0.094144,51.483676 +-0.074551,51.556241 +0.18108,51.565643 +0.030678,51.530492 +-0.076137,51.424183 +-0.058079,51.405315 +0.173624,51.451886 +-0.194733,51.370891 +-0.203541,51.56147 +-0.081558,51.556346 +-0.20745,51.492108 +-0.05032,51.399467 +-0.175847,51.546169 +-0.126035,51.502202 +-0.252939,51.539654 +-0.126647,51.417313 +-0.247979,51.46488 +-0.240385,51.506581 +-0.46624,51.492883 +-0.045669,51.521942 +-0.057491,51.537821 +-0.120416,51.60263 +-0.153368,51.616534 +-0.19488,51.370435 +-0.24044,51.533199 +-0.356359,51.471206 +-0.249728,51.382993 +-0.163096,51.438707 +0.066699,51.492705 +0.013522,51.600076 +-0.157187,51.511113 +-0.065406,51.456551 +-0.174609,51.483391 +-0.304048,51.491423 +-0.160392,51.52029 +-0.175132,51.542786 +-0.262931,51.574144 +-0.194877,51.47929 +-0.10921,51.596722 +-0.073087,51.578608 +-0.212702,51.444753 +-0.009818,51.573856 +0.0306,51.473623 +-0.075256,51.549805 +-0.032938,51.645008 +-0.144758,51.496735 +-0.134637,51.509632 +0.151852,51.489626 +-0.105407,51.594448 +-0.118052,51.556776 +-0.204475,51.50735 +-0.072613,51.543736 +-0.305737,51.511518 +-0.137685,51.327912 +-0.017456,51.445651 +-0.182506,51.481455 +-0.028391,51.526491 +-0.13081,51.429492 +-0.070336,51.498682 +-0.255112,51.506585 +-0.060164,51.516679 +-0.122901,51.486253 +0.007026,51.458175 +-0.139325,51.421031 +-0.050902,51.549627 +-0.147746,51.347883 +0.049979,51.532305 +-0.061965,51.642559 +0.1009,51.483644 +0.233032,51.548388 +-0.014484,51.511131 +-0.207313,51.577462 +-0.190614,51.45927 +0.131331,51.555514 +-0.207178,51.484002 +-0.073374,51.417033 +-0.24165,51.490953 +-0.095605,51.486973 +-0.031693,51.6654 +0.025258,51.557141 +-0.303931,51.412629 +-0.143146,51.461234 +-0.223668,51.575157 +-0.162135,51.501685 +-0.146664,51.431246 +-0.139935,51.547943 +-0.185004,51.46171 +-0.102064,51.56623 +-0.194326,51.415533 +-0.227403,51.583019 +-0.248433,51.465058 +-0.359472,51.608669 +-0.051618,51.413895 +-0.156276,51.439068 +0.038258,51.541044 +0.022188,51.536718 +-0.061686,51.514771 +-0.089856,51.536303 +0.012693,51.452511 +-0.102026,51.347834 +-0.001906,51.540359 +-0.048602,51.398602 +0.044149,51.531562 +0.06501,51.556367 +-0.330797,51.587619 +-0.09634,51.562657 +-0.254542,51.561079 +-0.401219,51.516221 +-0.042127,51.554103 +-0.128139,51.638156 +-0.104105,51.506391 +-0.217143,51.505079 +-0.176756,51.615415 +-0.224625,51.572797 +-0.146703,51.419628 +0.173056,51.586493 +-0.0997,51.583466 +0.058677,51.554437 +-0.236345,51.491413 +0.069536,51.536566 +-0.178587,51.556661 +-0.127576,51.468136 +-0.081302,51.526766 +-0.026375,51.481431 +-0.06315,51.639854 +-0.106015,51.472834 +-0.073305,51.596983 +0.072439,51.530013 +0.21926,51.589342 +-0.163993,51.589498 +-0.30291,51.374954 +-0.053609,51.510851 +-0.193314,51.542501 +-0.165078,51.430897 +-0.334908,51.421275 +-0.076996,51.534537 +0.002741,51.360874 +0.130895,51.409639 +-0.227898,51.519063 +-0.227654,51.457372 +-0.010297,51.507337 +-0.045669,51.521942 +-0.1863,51.611876 +-0.127934,51.436514 +0.051664,51.60437 +-0.296737,51.409261 +0.036401,51.348027 +-0.15514,51.490083 +-0.165826,51.508442 +-0.025452,51.512116 +-0.221743,51.504627 +-0.086428,51.612836 +-0.024889,51.570424 +-0.007561,51.393586 +0.12552,51.502957 +-0.093734,51.394336 +-0.37101,51.516642 +-0.062658,51.619514 +-0.269548,51.529469 +-0.075263,51.550308 +-0.237921,51.469972 +-0.246074,51.519795 +-0.098246,51.476126 +0.018448,51.596205 +-0.362733,51.464093 +-0.243179,51.516748 +-0.286524,51.418986 +-0.193671,51.523289 +-0.197292,51.508975 +-0.194818,51.534386 +-0.259972,51.575296 +-0.198075,51.48656 +-0.287845,51.419814 +-0.074818,51.492155 +-0.044622,51.548399 +0.109589,51.493416 +-0.194607,51.493413 +-0.080519,51.458643 +-0.094125,51.478613 +-0.088861,51.505658 +-0.117121,51.371243 +-0.103909,51.434698 +-0.016109,51.456788 +-0.252627,51.55571 +-0.171739,51.491773 +-0.39846,51.510258 +-0.129766,51.465275 +-0.03668,51.415498 +-0.123942,51.519146 +-0.391034,51.52511 +-0.130573,51.45117 +-0.38904,51.535037 +-0.119526,51.557761 +-0.187823,51.423976 +-0.141928,51.541869 +-0.05535,51.514297 +-0.160934,51.514346 +0.035267,51.533155 +-0.043297,51.517775 +-0.020787,51.529636 +-0.131936,51.512943 +-0.089284,51.407294 +0.008566,51.49063 +-0.2021,51.545324 +0.088226,51.540381 +-0.130491,51.464792 +-0.294729,51.530386 +-0.329655,51.562478 +-0.148778,51.523399 +-0.080792,51.546442 +-0.071971,51.584165 +-0.016783,51.466161 +-0.127574,51.628723 +-0.010703,51.427173 +-0.121007,51.508147 +-0.044019,51.513021 +-0.238585,51.532326 +0.060395,51.515828 +-0.228067,51.518787 +-0.111522,51.297772 +-0.219952,51.503989 +-0.093411,51.394493 +-0.137547,51.52412 +-0.222939,51.488333 +-0.115052,51.560252 +-0.194522,51.37149 +-0.306073,51.49897 +-0.063744,51.570226 +0.093666,51.560562 +-0.130144,51.512699 +-0.131494,51.510355 +0.093215,51.52906 +-0.082986,51.689332 +-0.056115,51.373655 +-0.381117,51.4836 +-0.136318,51.485379 +-0.092954,51.441067 +-0.053141,51.520475 +-0.062956,51.51847 +-0.182623,51.481421 +-0.093187,51.598027 +0.084395,51.542086 +0.022016,51.508097 +-0.289418,51.488593 +-0.175809,51.43128 +-0.055806,51.667591 +-0.139611,51.629032 +-0.066095,51.573979 +-0.112316,51.597051 +-0.360328,51.554413 +-0.157404,51.521808 +0.052504,51.607647 +-0.323002,51.510354 +-0.166839,51.533457 +-0.089997,51.372585 +-0.217293,51.489417 +-0.031893,51.567969 +-0.067216,51.616271 +-0.24507,51.493783 +-0.139834,51.618289 +-0.139317,51.507575 +-0.179923,51.438538 +-0.336383,51.556019 +-0.159357,51.614532 +-0.286519,51.583519 +-0.116218,51.460382 +-0.109574,51.611961 +0.22177,51.586345 +-0.236582,51.569992 +-0.060388,51.523274 +-0.47816,51.548025 +-0.090484,51.436108 +-0.205637,51.455742 +-0.194236,51.472536 +0.193518,51.567137 +-0.205575,51.548642 +-0.110665,51.551225 +-0.100848,51.495655 +-0.004226,51.442108 +0.049093,51.460532 +-0.022526,51.533433 +-0.054286,51.369677 +0.146531,51.572871 +-0.075796,51.571189 +-0.161189,51.485808 +-0.361879,51.565055 +0.03115,51.546922 +-0.061082,51.549014 +-0.063851,51.586055 +-0.041248,51.651073 +-0.076704,51.52366 +-0.053562,51.440258 +-0.010706,51.449637 +-0.119689,51.433361 +0.065841,51.556227 +-0.12702,51.509466 +-0.154382,51.543432 +-0.017186,51.449208 +-0.157271,51.516545 +-0.227461,51.516935 +0.04295,51.457069 +-0.267514,51.506715 +-0.026318,51.5091 +-0.179119,51.560662 +-0.400301,51.573273 +-0.23976,51.536642 +-0.107323,51.549382 +0.015105,51.516723 +-0.215578,51.577948 +0.032296,51.517937 +0.021647,51.517339 +-0.176811,51.616567 +-0.15887,51.498343 +-0.128979,51.432413 +-0.053802,51.540143 +-0.05969,51.532228 +-0.110396,51.612325 +-0.117025,51.556139 +-0.102864,51.589983 +-0.104952,51.398718 +0.007826,51.537378 +-0.119862,51.511806 +-0.104692,51.500906 +-0.278749,51.526718 +-0.269734,51.492999 +-0.130392,51.50559 +-0.095307,51.529377 +-0.322838,51.519128 +-0.065623,51.473883 +-0.170435,51.490161 +-0.053422,51.644261 +-0.100797,51.466356 +-0.058938,51.489582 +-0.110678,51.502846 +-0.379055,51.498706 +0.065428,51.589786 +-0.161021,51.421229 +-0.082915,51.441983 +-0.008478,51.538465 +-0.018962,51.458069 +-0.250491,51.514745 +0.02441,51.517246 +-0.376816,51.482237 +-0.049594,51.484391 +-0.053325,51.550639 +-0.25419,51.625621 +-0.021754,51.603742 +0.112572,51.609558 +-0.205518,51.507204 +-0.19697,51.600666 +-0.244473,51.549059 +-0.281508,51.609595 +-0.180831,51.386701 +0.063045,51.501447 +-0.031453,51.599517 +-0.03295,51.644738 +-0.100311,51.526922 +0.108791,51.459887 +-0.329122,51.595904 +-0.111151,51.488618 +-0.028076,51.469697 +0.082624,51.491263 +-0.200231,51.483023 +0.195262,51.476888 +-0.242833,51.534728 +-0.091354,51.376213 +-0.352992,51.455548 +-0.400628,51.516249 +0.05216,51.532708 +0.208322,51.51917 +-0.399678,51.547871 +-0.196681,51.506556 +-0.024501,51.468126 +-0.125051,51.485451 +0.073495,51.48629 +-0.12086,51.495258 +-0.287322,51.48225 +-0.154482,51.633232 +-0.380609,51.449135 +-0.054543,51.527494 +-0.058062,51.488147 +-0.113611,51.465996 +-0.236075,51.500276 +0.006907,51.542367 +-0.027079,51.37727 +-0.09239,51.571199 +-0.401853,51.584571 +0.046916,51.516433 +0.110242,51.564897 +-0.129169,51.466129 +0.070922,51.438691 +0.069514,51.491576 +-0.00515,51.553903 +-0.233004,51.550605 +-0.064858,51.473925 +-0.217186,51.460774 +0.129936,51.570737 +-0.206363,51.517603 +-0.12205,51.434028 +-0.27579,51.547402 +-0.341912,51.474933 +-0.273636,51.408716 +-0.116207,51.559525 +-0.072794,51.551068 +0.158174,51.472513 +-0.170078,51.516692 +-0.204883,51.525934 +-0.125131,51.494751 +0.031453,51.545955 +-0.027411,51.542823 +-0.082695,51.59791 +-0.313438,51.482107 +-0.080245,51.641268 +-0.080858,51.50372 +-0.05666,51.539058 +-0.070128,51.53499 +-0.387735,51.534021 +-0.379701,51.436992 +-0.119305,51.51133 +-0.156217,51.434445 +0.210814,51.590815 +0.121108,51.493891 +0.014863,51.570665 +-0.248894,51.537211 +-0.218421,51.60709 +-0.096869,51.49916 +0.112207,51.396344 +-0.135728,51.509362 +-0.281264,51.563272 +-0.409383,51.431589 +-0.158286,51.386915 +0.119618,51.488487 +-0.114406,51.34638 +0.043028,51.47044 +-0.142414,51.516464 +-0.092987,51.581433 +-0.048307,51.49936 +-0.0765,51.423434 +-0.339439,51.584567 +-0.034383,51.545026 +-0.204752,51.497363 +-0.012102,51.511234 +-0.047136,51.641873 +-0.145802,51.454658 +-0.001282,51.559539 +0.100061,51.408604 +-0.204134,51.547523 +-0.391177,51.535768 +-0.115698,51.531334 +-0.306119,51.512513 +-0.320871,51.624651 +-0.239835,51.560095 +-0.11272,51.55767 +-0.14493,51.570162 +-0.443774,51.518934 +-0.123675,51.581721 +-0.132987,51.515433 +-0.157027,51.450419 +0.082542,51.560877 +-0.118997,51.460364 +-0.233844,51.405884 +-0.242046,51.465295 +-0.0912,51.375779 +-0.162012,51.418394 +-0.180654,51.465024 +-0.27228,51.544517 +-0.147631,51.451099 +0.01207,51.517521 +-0.434649,51.485325 +-0.267272,51.451912 +-0.446238,51.529523 +-0.202961,51.532631 +-0.094695,51.486014 +-0.136448,51.462387 +-0.124059,51.414501 +-0.071476,51.451525 +0.151046,51.535235 +0.014758,51.446136 +0.020326,51.398801 +-0.087084,51.529504 +-0.04995,51.52026 +0.124686,51.5513 +-0.160568,51.459728 +-0.151408,51.554905 +0.022496,51.59601 +-0.473896,51.510364 +-0.301937,51.379886 +0.062827,51.521496 +-0.304218,51.491506 +-0.184166,51.460708 +-0.148688,51.447734 +-0.161374,51.420318 +0.045853,51.427036 +0.035874,51.388289 +-0.044008,51.622199 +-0.107158,51.563426 +-0.156852,51.515846 +-0.150559,51.466603 +-0.110514,51.667198 +-0.285178,51.501013 +-0.386199,51.463267 +-0.067806,51.602369 +-0.110918,51.483462 +0.031938,51.544202 +-0.023269,51.467656 +-0.022115,51.516961 +-0.075833,51.545345 +-0.223326,51.491352 +-0.460358,51.593841 +-0.154471,51.47456 +-0.015069,51.670578 +0.01791,51.604928 +0.083834,51.573669 +-0.232903,51.606805 +-0.206077,51.36478 +-0.101949,51.347959 +-0.157172,51.475421 +-0.27256,51.503202 +-0.159068,51.525242 +-0.229699,51.571831 +-0.104618,51.503737 +-0.17167,51.643482 +-0.161296,51.527184 +-0.052736,51.476233 +-0.076231,51.542411 +-0.22584,51.547889 +-0.159248,51.520767 +-0.180385,51.501466 +-0.158886,51.393822 +0.054981,51.471112 +-0.257172,51.404561 +-0.184136,51.523808 +-0.288201,51.623658 +0.051839,51.568226 +-0.121416,51.61305 +-0.162192,51.519959 +-0.067104,51.516164 +-0.169847,51.478227 +0.022812,51.327705 +-0.292253,51.526439 +-0.10511,51.460958 +-0.058758,51.660104 +-0.02835,51.526445 +-0.040367,51.671498 +-0.017454,51.618238 +-0.306041,51.551898 +-0.285062,51.501038 +-0.204658,51.525787 +-0.193003,51.537613 +-0.251528,51.506865 +-0.31394,51.551643 +-0.115864,51.397302 +-0.158248,51.513404 +-0.113645,51.510897 +-0.400653,51.522931 +-0.100472,51.585025 +-0.081927,51.416454 +-0.198251,51.486491 +-0.140594,51.50773 +-0.097739,51.615888 +-0.040898,51.452727 +0.027409,51.586699 +-0.005983,51.508459 +-0.173408,51.385066 +-0.055645,51.540201 +-0.071918,51.584047 +-0.076793,51.484247 +-0.039417,51.523195 +-0.151174,51.521521 +0.141473,51.573036 +-0.115149,51.554751 +-0.123395,51.44931 +0.001914,51.541643 +-0.111406,51.470583 +0.023627,51.431568 +-0.267972,51.401456 +-0.198787,51.479827 +-0.14221,51.451678 +-0.072833,51.583909 +-0.116538,51.547309 +0.005107,51.549322 +-0.152438,51.499545 +0.120872,51.421431 +-0.100126,51.526524 +-0.072643,51.454908 +-0.164396,51.550118 +-0.309703,51.539469 +-0.235688,51.527832 +-0.142246,51.451148 +-0.171948,51.55457 +0.024041,51.369618 +-0.059736,51.532166 +-0.061703,51.565966 +-0.211744,51.591045 +-0.092122,51.375731 +-0.046692,51.645822 +-0.234979,51.492849 +0.002618,51.541262 +0.165788,51.538974 +-0.05422,51.546238 +-0.262277,51.46521 +-0.025458,51.496325 +0.056277,51.527762 +-0.35056,51.527372 +-0.452252,51.527337 +0.072823,51.48194 +-0.062326,51.518711 +-0.079327,51.498668 +-0.453255,51.497739 +-0.011291,51.510672 +-0.126819,51.474661 +-0.174161,51.450247 +-0.093454,51.372021 +-0.159452,51.435566 +-0.144556,51.453451 +-0.248999,51.514551 +-0.312296,51.35375 +-0.072816,51.565214 +-0.010066,51.426938 +-0.060448,51.64525 +-0.16261,51.582265 +-0.156855,51.519353 +-0.160526,51.49693 +-0.266773,51.565712 +-0.150884,51.543287 +-0.154615,51.414573 +-0.209304,51.643172 +-0.18988,51.524724 +-0.178904,51.56029 +-0.291949,51.51567 +-0.299137,51.491396 +-0.11083,51.536444 +-0.008156,51.488362 +-0.015822,51.473033 +-0.123486,51.411633 +0.179464,51.523388 +-0.14027,51.430695 +-0.24976,51.55448 +-0.133641,51.390725 +-0.090988,51.504757 +-0.292052,51.621888 +0.029058,51.450242 +-0.15006,51.485695 +-0.195883,51.558124 +-0.127706,51.418849 +-0.246516,51.537175 +-0.016336,51.462188 +-0.355946,51.562733 +-0.159863,51.435743 +0.046732,51.531922 +-0.10964,51.612456 +-0.15874,51.398163 +-0.38252,51.594062 +-0.074003,51.648728 +0.092655,51.56808 +0.107973,51.449928 +-0.111479,51.533307 +-0.33205,51.584552 +-0.209207,51.516397 +-0.075958,51.544789 +-0.055261,51.545833 +-0.041883,51.522499 +-0.136153,51.539214 +0.061545,51.533964 +-0.062255,51.53228 +-0.326346,51.407214 +-0.062052,51.515325 +-0.103661,51.607252 +-0.193862,51.533768 +-0.151356,51.4098 +-0.072862,51.579476 +-0.202896,51.427301 +-0.153519,51.500974 +-0.010958,51.56196 +-0.111193,51.505723 +-0.075164,51.460345 +-0.175679,51.484361 +-0.15886,51.393399 +-0.32577,51.590848 +-0.041217,51.460745 +-0.352948,51.603776 +-0.162221,51.409585 +-0.189316,51.534957 +-0.185661,51.536942 +-0.217587,51.45935 +0.177846,51.575568 +-0.027181,51.508134 +-0.084647,51.494807 +0.009364,51.542837 +-0.245756,51.38127 +-0.044682,51.490146 +-0.424678,51.508437 +-0.116551,51.416279 +0.001876,51.484243 +-0.253943,51.394198 +-0.073651,51.426184 +-0.11282,51.473322 +-0.019592,51.387927 +-0.145922,51.394139 +-0.101305,51.495042 +-0.093653,51.36688 +-0.140912,51.46413 +-0.071696,51.515287 +-0.036864,51.531606 +-0.373768,51.583654 +-0.15848,51.519073 +-0.101436,51.36662 +-0.071924,51.567879 +-0.276711,51.613086 +-0.224716,51.511561 +-0.178869,51.44622 +-0.077959,51.662515 +-0.203524,51.56155 +-0.166119,51.481047 +-0.121147,51.384482 +-0.08561,51.447395 +-0.108765,51.41118 +-0.048075,51.476111 +-0.217741,51.513757 +0.123221,51.434563 +-0.069948,51.583196 +-0.161824,51.496887 +-0.022442,51.571291 +-0.086288,51.581126 +0.021902,51.533512 +-0.100424,51.371639 +-0.104006,51.546604 +0.08689,51.555323 +0.110208,51.532694 +-0.078401,51.420632 +-0.131936,51.36765 +-0.092231,51.413871 +-0.134867,51.359873 +-0.19833,51.572495 +-0.01191,51.343318 +-0.293341,51.575202 +-0.047018,51.646646 +-0.186209,51.482888 +-0.050634,51.526863 +-0.124691,51.530723 +-0.093208,51.501286 +-0.185471,51.483335 +-0.206522,51.48419 +-0.07763,51.474279 +0.020507,51.517313 +-0.111834,51.605181 +-0.042203,51.548655 +-0.0015,51.599982 +-0.146195,51.454214 +0.102632,51.579781 +-0.034823,51.682286 +-0.075338,51.505473 +-0.091943,51.606676 +-0.077892,51.522501 +-0.028432,51.654257 +0.003828,51.541889 +-0.138196,51.598651 +-0.161607,51.410915 +-0.166627,51.483474 +-0.005005,51.552597 +-0.401926,51.440408 +0.172848,51.586065 +-0.33198,51.476006 +-0.016626,51.602451 +-0.103376,51.590504 +-0.188805,51.442785 +-0.024417,51.472072 +-0.139938,51.460473 +-0.280525,51.379538 +-0.175679,51.612 +-0.023123,51.408049 +0.032413,51.485588 +-0.061569,51.622023 +-0.274226,51.544159 +-0.080301,51.532756 +-0.036505,51.57078 +-0.240249,51.569175 +-0.188459,51.6592 +-0.184532,51.497547 +-0.055419,51.372448 +-0.038029,51.482373 +0.069566,51.576008 +-0.102256,51.546018 +-0.245109,51.617581 +-0.275625,51.536905 +-0.285707,51.594756 +-0.040127,51.488864 +-0.103004,51.409307 +-0.018476,51.522439 +-0.260205,51.594498 +-0.223848,51.440462 +-0.471704,51.51342 +-0.313842,51.368772 +-0.373222,51.510801 +-0.227163,51.520527 +-0.084956,51.575736 +-0.105203,51.467399 +0.19647,51.586174 +-0.353524,51.464764 +0.013181,51.575703 +-0.073145,51.563924 +-0.091371,51.397229 +-0.241958,51.553689 +-0.130972,51.527343 +-0.113249,51.465001 +0.166532,51.590444 +-0.070948,51.564679 +-0.408925,51.456357 +-0.218336,51.457851 +-0.0245,51.468144 +0.224915,51.561186 +0.140627,51.575614 +0.01201,51.39701 +0.112768,51.532558 +-0.120054,51.415013 +-0.175604,51.650962 +-0.071493,51.572961 +-0.0893,51.535448 +-0.306614,51.500713 +-0.074975,51.549278 +-0.081475,51.416951 +-0.398115,51.515568 +-0.155906,51.450735 +-0.069282,51.626817 +-0.11956,51.519859 +-0.33816,51.594324 +-0.144495,51.648856 +-0.090478,51.49421 +-0.255698,51.400213 +-0.330248,51.456 +-0.215556,51.508445 +-0.060405,51.514732 +-0.116456,51.561525 +-0.179772,51.498399 +-0.191303,51.472427 +0.104691,51.532182 +-0.11745,51.556334 +-0.075126,51.474238 +-0.139926,51.425357 +-0.177024,51.524677 +0.00786,51.478502 +0.034661,51.452923 +-0.122414,51.530704 +-0.127672,51.517821 +-0.2127,51.453269 +-0.209469,51.458966 +-0.272061,51.49279 +-0.194843,51.508227 +-0.149334,51.44671 +-0.140012,51.430673 +0.030721,51.478945 +-0.104894,51.343753 +-0.102332,51.44845 +-0.282694,51.565928 +-0.077205,51.479595 +-0.372483,51.439275 +-0.144796,51.421594 +-0.178993,51.540724 +-0.15716,51.540347 +-0.11335,51.521539 +0.129891,51.561439 +-0.207222,51.550061 +-0.053804,51.440316 +-0.074003,51.648728 +-0.064958,51.483468 +-0.040619,51.587171 +-0.178404,51.480312 +-0.093417,51.420617 +-0.128295,51.507535 +-0.355882,51.528499 +-0.208956,51.42243 +-0.15761,51.412696 +-0.354468,51.464534 +-0.095675,51.58653 +-0.1302,51.423646 +-0.139282,51.318612 +-0.172949,51.423646 +-0.301607,51.417146 +0.00224,51.603254 +0.115893,51.610469 +-0.115053,51.560216 +-0.078715,51.489233 +-0.126853,51.438305 +-0.045382,51.552539 +-0.19474,51.467795 +0.082262,51.540846 +-0.147002,51.646585 +-0.4215,51.522818 +0.002891,51.542229 +-0.118061,51.445331 +-0.132999,51.512322 +-0.231506,51.506277 +-0.104574,51.503772 +-0.087377,51.419574 +-0.315049,51.481375 +-0.323935,51.429122 +-0.345469,51.537371 +-0.125126,51.567509 +-0.060185,51.565689 +-0.103282,51.565395 +-0.263247,51.564716 +-0.191125,51.547503 +0.108192,51.493738 +-0.170003,51.531861 +-0.066036,51.531164 +-0.214519,51.46531 +0.230602,51.544414 +0.190277,51.572063 +-0.254869,51.417835 +-0.149737,51.502578 +-0.306735,51.431716 +-0.147318,51.461309 +-0.301582,51.461253 +-0.192622,51.4569 +0.000373,51.581479 +-0.297917,51.42666 +-0.136198,51.522579 +-0.087261,51.535928 +-0.268242,51.515637 +0.042907,51.60071 +0.088054,51.559323 +-0.194178,51.519206 +-0.022116,51.516934 +-0.057953,51.649165 +-0.038272,51.565262 +-0.150518,51.46796 +-0.095622,51.504886 +-0.254349,51.623717 +-0.011457,51.511151 +-0.127281,51.51188 +0.188783,51.58272 +-8E-06,51.44513 +-0.329698,51.433997 +-0.375532,51.514708 +-0.065632,51.557704 +0.0368,51.518084 +-0.047432,51.441262 +0.077596,51.481118 +-0.226316,51.519705 +-0.055526,51.527106 +-0.149909,51.591112 +-0.215476,51.517877 +-0.06777,51.606289 +-0.142252,51.424404 +0.212587,51.592535 +-0.237138,51.493269 +-0.129281,51.47221 +0.199235,51.548658 +-0.019435,51.51661 +-0.304044,51.491135 +-0.207758,51.578251 +0.040101,51.426426 +-0.049838,51.370898 +-0.250879,51.5268 +-0.113176,51.59684 +-0.239303,51.576858 +-0.115003,51.382225 +-0.114836,51.479595 +-0.098514,51.575579 +-0.187571,51.533519 +-0.430232,51.460025 +-0.102762,51.56366 +-0.27366,51.507282 +-0.262299,51.519551 +-0.109235,51.596488 +-0.191584,51.510092 +0.066461,51.559723 +0.025436,51.500403 +-0.253549,51.558745 +-0.3535,51.564542 +0.039356,51.530458 +-0.404517,51.477519 +-0.22607,51.519719 +-0.124656,51.534742 +-0.303169,51.414965 +-0.104618,51.503737 +0.066832,51.492774 +-0.175631,51.363131 +-0.307138,51.511439 +-0.011462,51.574558 +-0.171728,51.521205 +-0.342654,51.620788 +-0.007222,51.515405 +-0.348342,51.443604 +-0.338759,51.455096 +0.025614,51.431596 +-0.0438,51.538322 +0.040027,51.583503 +-0.136884,51.462304 +-0.064616,51.614564 +-0.055264,51.514296 +-0.131006,51.64821 +0.111428,51.393148 +-0.101045,51.495766 +-0.063147,51.48984 +0.229646,51.555836 +0.18798,51.519102 +-0.166979,51.518496 +0.147634,51.531673 +-0.128779,51.416528 +-0.168182,51.428113 +-0.099805,51.378958 +-0.223822,51.391048 +-0.252244,51.459117 +-0.067561,51.388449 +-0.366417,51.46695 +-0.061342,51.419281 +-0.202696,51.41407 +-0.029607,51.575107 +0.003856,51.514614 +-0.101088,51.587221 +-0.194411,51.571257 +0.041986,51.538308 +-0.26319,51.519618 +-0.173239,51.520185 +0.020778,51.59862 +0.124565,51.545295 +-0.102561,51.543181 +-0.279079,51.594785 +-0.020986,51.551321 +-0.308419,51.512654 +0.156921,51.44839 +0.098924,51.463823 +-0.358858,51.418393 +0.163593,51.599995 +-0.213301,51.522997 +-0.388534,51.475852 +-0.064537,51.474036 +-0.02004,51.514282 +0.048187,51.408128 +-0.318335,51.601019 +-0.099436,51.580809 +-0.165919,51.519406 +-0.13281,51.390307 +-0.369727,51.546919 +-0.284175,51.551877 +-0.100566,51.604226 +-0.098394,51.373459 +-0.258583,51.593125 +0.181112,51.475209 +-0.36201,51.548556 +-0.001257,51.631479 +-0.050789,51.412775 +-0.273594,51.585596 +0.067008,51.553652 +-0.422562,51.572181 +-0.108899,51.596213 +-0.09843,51.479654 +-0.062897,51.38589 +-0.179412,51.458269 +-0.056825,51.531794 +0.070088,51.558265 +-0.177061,51.490516 +-0.140834,51.553488 +-0.0757,51.546125 +0.000174,51.453562 +-0.092328,51.598886 +-0.092004,51.543208 +-0.117859,51.391768 +-0.147839,51.450562 +-0.088954,51.586394 +-0.292605,51.564787 +-0.188222,51.4855 +0.003144,51.49575 +-0.070332,51.537988 +-0.181966,51.458093 +-0.253826,51.416156 +-0.040564,51.59484 +0.188891,51.549823 +0.044354,51.576666 +-0.254734,51.454972 +-0.253114,51.556544 +-0.150648,51.364619 +-0.131153,51.489451 +-0.277575,51.592938 +-0.393729,51.535371 +-0.003542,51.559982 +-0.170575,51.625436 +-0.060056,51.492406 +-0.079847,51.458875 +0.091279,51.554139 +-0.167422,51.427678 +-0.236304,51.617791 +-0.055384,51.543632 +-0.149123,51.571388 +-0.171621,51.353447 +-0.081027,51.526797 +-0.073367,51.573694 +0.022738,51.594944 +-0.129506,51.423042 +-0.100041,51.505686 +0.088929,51.558893 +-0.436449,51.444057 +-0.415722,51.560561 +-0.009168,51.508792 +-0.200977,51.456749 +-0.073393,51.464794 +-0.080383,51.397356 +-0.107498,51.383013 +-0.327134,51.483292 +-0.099419,51.561484 +-0.150718,51.516056 +-0.192183,51.509886 +-0.092247,51.598048 +-0.1198,51.55496 +-0.120346,51.419127 +-0.384393,51.476083 +-0.129384,51.314615 +-0.146734,51.431292 +-0.010914,51.463724 +-0.022719,51.444742 +-0.136627,51.471427 +0.226899,51.587615 +-0.089813,51.584484 +-0.23465,51.496154 +-0.044696,51.474319 +-0.133262,51.545724 +-0.06534,51.648154 +-0.149368,51.614726 +-0.190645,51.647886 +0.06014,51.318898 +-0.236457,51.588883 +-0.07614,51.545611 +-0.068082,51.60473 +-0.320843,51.510665 +0.032767,51.528181 +-0.139393,51.318695 +0.102315,51.379058 +-0.181917,51.49337 +0.00814,51.515664 +-0.121566,51.45179 +-0.031114,51.535547 +-0.300745,51.514018 +-0.291026,51.425913 +-0.260541,51.50592 +-0.235406,51.506407 +-0.061332,51.526842 +-0.258341,51.46498 +-0.009501,51.517683 +-0.208433,51.384653 +-0.122055,51.567091 +0.083834,51.566718 +-0.099057,51.578807 +-0.106492,51.389975 +-0.320943,51.592946 +-0.362848,51.567011 +-0.041031,51.5128 +-0.143415,51.46738 +0.003145,51.483286 +-0.032467,51.654892 +-0.375528,51.475124 +-0.055374,51.478885 +-0.174557,51.458715 +-0.363534,51.586057 +-0.139098,51.540538 +0.111249,51.498467 +-0.037954,51.487812 +-0.08729,51.54626 +-0.138538,51.455622 +0.036783,51.439478 +-0.343302,51.623999 +-0.193627,51.538243 +-0.205239,51.357923 +-0.109625,51.612474 +0.182049,51.463159 +-0.005629,51.535377 +0.004627,51.552837 +-0.024844,51.481198 +-0.069966,51.591272 +-0.017186,51.528892 +-0.180857,51.585804 +-0.086167,51.454023 +-0.02161,51.519974 +-0.040976,51.6282 +-0.05172,51.614837 +0.103972,51.534731 +-0.038592,51.544072 +0.157365,51.497466 +-0.250978,51.502774 +-0.18052,51.436911 +0.091591,51.462452 +0.106439,51.550981 +-0.146668,51.537726 +-0.188699,51.534507 +-0.061784,51.548791 +-0.13628,51.485243 +-0.129458,51.499559 +-0.100294,51.585139 +0.063827,51.469617 +-0.019061,51.521244 +-0.290476,51.411742 +-0.167102,51.372027 +-0.317149,51.511979 +0.064678,51.351246 +-0.37082,51.532466 +0.105824,51.5336 +0.038628,51.48575 +-0.071425,51.586494 +-0.150819,51.475483 +-0.107535,51.61896 +-0.034381,51.551438 +-0.138302,51.320845 +-0.09911,51.476481 +-0.069864,51.492802 +-0.144347,51.515011 +-0.190869,51.45975 +-0.031958,51.480194 +-0.10823,51.462798 +0.008042,51.488526 +-0.158919,51.473866 +-0.017741,51.614322 +-0.422077,51.455222 +-0.302051,51.524629 +0.078822,51.559666 +0.028511,51.588424 +-0.178442,51.525976 +-0.377051,51.510899 +-0.191724,51.404567 +-0.069434,51.552748 +-0.043451,51.522238 +-0.110106,51.33363 +-0.060935,51.509381 +0.0659,51.556262 +0.008778,51.605472 +-0.253182,51.506557 +-0.001781,51.541571 +-0.074009,51.498023 +-0.135457,51.462695 +-0.076414,51.566792 +-0.297742,51.513381 +-0.1751,51.443301 +-0.148571,51.623679 +-0.022847,51.541991 +-0.112715,51.391019 +-0.04981,51.494529 +-0.314499,51.553305 +-0.206985,51.462111 +-0.060588,51.49889 +-0.099264,51.493201 +-0.243787,51.451805 +-0.022093,51.52545 +-0.357244,51.596364 +-0.004228,51.459887 +-0.052169,51.392474 +0.068697,51.523784 +0.065236,51.522497 +0.082223,51.599983 +-0.013208,51.523231 +-0.114471,51.431155 +-0.094206,51.568504 +-0.097832,51.37559 +-0.122059,51.46713 +-0.260077,51.53815 +0.294996,51.554108 +-0.059803,51.514668 +0.057749,51.490074 +-0.173921,51.465629 +0.109244,51.405993 +-0.069564,51.593945 +-0.035618,51.414437 +-0.15596,51.450825 +-0.04251,51.548561 +-0.274472,51.506386 +0.009067,51.514147 +-0.209524,51.469335 +-0.424339,51.466456 +-0.441338,51.518074 +-0.140739,51.55087 +0.123407,51.545514 +-0.164812,51.431082 +-0.065604,51.669452 +0.017288,51.447037 +0.130355,51.551296 +-0.288403,51.507229 +0.04156,51.544269 +-0.375498,51.514052 +-0.055762,51.416572 +-0.164859,51.477997 +-0.246516,51.537175 +-0.174959,51.523674 +0.079399,51.527399 +-0.03886,51.408583 +0.058782,51.404876 +-0.044784,51.442279 +-0.128698,51.388569 +-0.184881,51.650692 +-0.120347,51.588924 +-0.10582,51.42258 +-0.149696,51.475834 +-0.1336,51.511018 +-0.024598,51.420196 +-0.176858,51.47286 +-0.235042,51.37512 +0.114858,51.579184 +-0.226073,51.519665 +-0.135399,51.482469 +-0.37915,51.436714 +-0.256828,51.506557 +-0.192236,51.536954 +-0.134403,51.463128 +-0.095528,51.475011 +-0.265373,51.566096 +-0.20956,51.402908 +-0.17342,51.48215 +-0.309557,51.549637 +-0.24777,51.533804 +-0.388692,51.431289 +-0.072603,51.572989 +-0.382084,51.562467 +-0.02547,51.661519 +-0.072504,51.595783 +0.102626,51.4789 +0.063326,51.554526 +0.071198,51.55633 +-0.108487,51.526884 +-0.097249,51.37094 +-0.378338,51.604471 +-0.121124,51.410309 +-0.03365,51.681655 +0.078261,51.554317 +0.047518,51.600171 +-0.063944,51.523729 +0.016505,51.532112 +-0.093075,51.394964 +-0.056546,51.512959 +-0.13414,51.513671 +-0.207163,51.484002 +-0.11822,51.52892 +-0.083559,51.481588 +-0.07252,51.57323 +-0.238724,51.504083 +-0.165889,51.528398 +-0.278896,51.565612 +-0.106546,51.66423 +-0.134961,51.515437 +-0.12616,51.551492 +-0.133382,51.463453 +-0.162809,51.515032 +0.030668,51.487813 +-0.105206,51.344882 +-0.378738,51.542548 +-0.205437,51.634588 +-0.101173,51.372632 +-0.162547,51.486063 +-0.040003,51.522989 +-0.197198,51.399562 +-0.392929,51.474933 +-0.118212,51.489604 +-0.117052,51.484181 +-0.424455,51.465577 +-0.189279,51.361985 +-0.290447,51.474949 +-0.189781,51.45012 +-0.043101,51.408942 +-0.021163,51.420813 +-0.34692,51.56935 +-0.19346,51.647614 +-0.43432,51.483999 +-0.117444,51.54388 +-0.372973,51.550138 +-0.038403,51.613149 +-0.032895,51.644665 +-0.292722,51.442528 +-0.138724,51.557114 +0.036443,51.530122 +-0.139059,51.510377 +-0.034273,51.428362 +-0.105475,51.522339 +-0.102892,51.432173 +-0.059083,51.473596 +-0.064072,51.57846 +-0.432828,51.570745 +-0.141864,51.49669 +-0.476601,51.481966 +0.082089,51.572117 +-0.108158,51.329696 +-0.094246,51.483642 +-0.234508,51.587379 +-0.062481,51.619592 +-0.037086,51.646678 +-0.018361,51.580178 +-0.197479,51.452721 +-0.120017,51.510846 +-0.091694,51.503384 +-0.010877,51.472518 +-0.175234,51.556825 +0.180045,51.534645 +-0.191542,51.366912 +-0.007694,51.585807 +0.19068,51.581039 +-0.12478,51.367688 +-0.216054,51.462861 +-0.178657,51.49349 +-0.288296,51.623812 +-0.019802,51.586201 +0.05242,51.605769 +-0.108698,51.546491 +-0.290461,51.41175 +-0.137567,51.492539 +0.148167,51.540234 +-0.059484,51.514698 +-0.163552,51.458192 +-0.15965,51.499362 +-0.069121,51.518571 +-0.19223,51.501433 +0.154595,51.547481 +-0.084895,51.652332 +-0.285234,51.542873 +-0.191006,51.547977 +-0.09889,51.577977 +0.151528,51.533212 +-0.129721,51.430455 +-0.266494,51.519541 +-0.365137,51.511201 +-0.198576,51.459221 +-0.097726,51.653845 +-0.179509,51.482227 +-0.267165,51.5425 +0.05746,51.58212 +-0.479524,51.481968 +-0.262082,51.56424 +-0.205139,51.482019 +-0.23234,51.492558 +-0.077458,51.522872 +-0.224392,51.504326 +-0.22,51.535301 +-0.119042,51.434762 +0.062766,51.533547 +-0.162256,51.465735 +-0.301633,51.418387 +0.101262,51.522207 +-0.118469,51.512746 +-0.154744,51.510957 +-0.112114,51.48099 +-0.227282,51.608375 +0.090857,51.603427 +-0.135886,51.430256 +0.105033,51.404153 +-0.404068,51.455302 +0.002036,51.570381 +0.112655,51.539449 +-0.25518,51.642748 +-0.228692,51.521629 +-0.09764,51.423536 +-0.419,51.4393 +-0.165588,51.643396 +-0.106284,51.502487 +-0.016999,51.505004 +-0.101594,51.452359 +-0.158126,51.493907 +-0.070713,51.605331 +-0.462791,51.527322 +-0.262036,51.465089 +-0.093312,51.598146 +-0.167406,51.443181 +-0.297931,51.603369 +0.159432,51.557014 +-0.099316,51.538354 +0.031392,51.35199 +-0.248608,51.464988 +0.11105,51.392444 +-0.329956,51.58142 +-0.110447,51.484057 +-0.081928,51.605128 +-0.100442,51.499182 +-0.10933,51.501646 +-0.430938,51.549363 +-0.183072,51.490771 +-0.334182,51.445184 +-0.322945,51.46086 +-0.488537,51.519942 +-0.046374,51.449869 +0.111623,51.393639 +-0.123466,51.449329 +-0.31393,51.55309 +-0.193158,51.601749 +-0.169578,51.486388 +-0.185977,51.52755 +-0.068224,51.516605 +-0.138458,51.49294 +-0.219753,51.523158 +-0.243695,51.379549 +-0.107755,51.64318 +-0.274291,51.508497 +-0.043711,51.665376 +0.127318,51.461719 +0.093159,51.528791 +-0.219504,51.617061 +-0.268146,51.528423 +-0.376193,51.607121 +-0.1459,51.478184 +-0.406581,51.490181 +-0.052253,51.546691 +-0.417942,51.499039 +-0.010319,51.600707 +-0.22309,51.516671 +0.118861,51.568428 +-0.095788,51.570364 +-0.106503,51.409183 +-0.230772,51.576172 +-0.147839,51.492513 +-0.113696,51.342339 +-0.38236,51.544522 +0.218303,51.575026 +-0.05725,51.405877 +0.002876,51.54222 +-0.414953,51.440657 +0.033172,51.538893 +-0.164648,51.435872 +-0.143283,51.496173 +-0.068646,51.588714 +-0.062809,51.589158 +-0.046822,51.672055 +-0.285401,51.509649 +-0.129975,51.465081 +-0.140186,51.462177 +0.011604,51.456559 +0.209954,51.590948 +-0.087841,51.61633 +0.023173,51.573867 +-0.287926,51.535701 +-0.20599,51.5887 +-0.113598,51.413596 +-0.231824,51.490985 +0.024834,51.523561 +-0.114876,51.368168 +-0.009282,51.559693 +-0.139232,51.531952 +-0.138859,51.53084 +-0.123948,51.470937 +-0.115159,51.503907 +-0.135675,51.6112 +-0.235432,51.534086 +-0.099156,51.367545 +-0.117761,51.345121 +-0.027258,51.526688 +-0.242602,51.400566 +-0.079787,51.546327 +-0.069027,51.574962 +-0.081687,51.496674 +-0.193964,51.523177 +-0.191927,51.503632 +-0.075092,51.491125 +-0.170565,51.520377 +-0.160183,51.619105 +-0.285945,51.421756 +-0.106434,51.453669 +0.099772,51.542153 +-0.02226,51.527907 +-0.100072,51.495939 +-0.060929,51.537698 +-0.021276,51.48942 +-0.017649,51.609473 +-0.386412,51.467838 +0.079754,51.586394 +-0.015432,51.597709 +0.261857,51.540372 +-0.130292,51.360402 +0.002577,51.540651 +-0.057359,51.653265 +-0.082819,51.577805 +0.052317,51.576266 +-0.143293,51.504068 +-0.398868,51.547914 +-0.087959,51.448009 +0.081752,51.573904 +0.125905,51.569713 +-0.016729,51.572894 +0.210819,51.591516 +-0.213063,51.494469 +-0.190121,51.456807 +-0.164885,51.431056 +0.25616,51.559897 +-0.093975,51.478053 +-0.187942,51.471126 +-0.426818,51.493565 +0.02212,51.47921 +-0.227298,51.408582 +0.117807,51.441936 +-0.227502,51.57267 +-0.188022,51.385482 +-0.025543,51.599624 +-0.099865,51.464543 +0.004537,51.545555 +-0.072054,51.592763 +-0.459739,51.481027 +-0.22469,51.492209 +-0.362008,51.479513 +-0.166284,51.406159 +-0.105648,51.463944 +-0.206431,51.482839 +-0.019148,51.528197 +-0.110775,51.379154 +-0.274942,51.543145 +-0.189252,51.386706 +-0.25192,51.51393 +-0.11153,51.487105 +-0.09734,51.505166 +-0.096633,51.536305 +-0.119071,51.550605 +-0.076618,51.451772 +-0.122238,51.409445 +-0.174698,51.502088 +-0.078019,51.526325 +-0.057834,51.441651 +-0.065378,51.492269 +0.079829,51.390547 +-0.12767,51.500987 +-0.017819,51.609863 +0.011457,51.456157 +-0.127202,51.501168 +0.066519,51.49287 +-0.101451,51.504028 +0.218559,51.549751 +0.101652,51.499368 +-0.06754,51.363359 +-0.120307,51.588834 +-0.071935,51.58501 +-0.195363,51.509296 +-0.073158,51.513089 +-0.1013,51.587341 +-0.079445,51.551717 +-0.10359,51.494153 +-0.068834,51.511714 +-0.009362,51.498715 +-0.177223,51.531964 +-0.151616,51.514172 +-0.10619,51.353073 +-0.253706,51.558046 +-0.073025,51.566755 +-0.234315,51.492875 +-0.015562,51.598377 +-0.285164,51.501004 +0.009514,51.433213 +-0.145949,51.522059 +-0.117357,51.328334 +-0.12917,51.448171 +-0.08687,51.522226 +-0.083437,51.552133 +-0.279837,51.526149 +-0.124899,51.688318 +-0.201232,51.472589 +-0.21622,51.381769 +-0.211186,51.468425 +-0.212247,51.559472 +-0.397921,51.576946 +-0.048335,51.49937 +-0.074555,51.520288 +-0.453127,51.497674 +-0.132697,51.463649 +-0.044675,51.456612 +-0.078488,51.56724 +-0.28521,51.500923 +-0.088515,51.440896 +-0.167975,51.460618 +-0.169945,51.478292 +-0.219314,51.51557 +-0.100268,51.585076 +-0.134517,51.51008 +-0.292493,51.529634 +-0.015771,51.352997 +-0.299962,51.540057 +0.141907,51.590852 +0.106754,51.54531 +-0.300837,51.560716 +-0.135234,51.415885 +-0.062928,51.343282 +-0.182276,51.555306 +0.174432,51.587493 +-0.138852,51.490698 +-0.103933,51.594811 +0.256849,51.570307 +0.178193,51.515192 +-0.049556,51.494408 +-0.067258,51.39428 +-0.18694,51.502197 +0.090545,51.53373 +-0.013664,51.529983 +-0.147426,51.347986 +0.008534,51.514803 +-0.321311,51.566523 +-0.114213,51.525411 +-0.086966,51.525779 +-0.089349,51.586257 +-0.160734,51.513587 +-0.078352,51.585169 +-0.089243,51.535438 +-0.335844,51.590937 +-0.039915,51.523015 +0.02665,51.489771 +-0.100297,51.367752 +-0.090975,51.543326 +-0.11982,51.335855 +-0.124307,51.613681 +0.054834,51.544397 +-0.153707,51.522694 +-0.112458,51.476167 +-0.103359,51.369097 +-0.153794,51.498101 +0.122023,51.5449 +-0.069989,51.591075 +-0.184602,51.530937 +-0.375973,51.453666 +-0.176528,51.4638 +-0.056592,51.530828 +-0.31857,51.451418 +-0.121922,51.58118 +-0.047743,51.543226 +0.127393,51.570055 +-0.016226,51.45376 +-0.131558,51.429135 +-0.366215,51.416958 +-0.062645,51.643883 +-0.106295,51.581765 +-0.411854,51.51918 +-0.069138,51.59481 +-0.376437,51.474256 +0.011678,51.404525 +0.055988,51.553666 +-0.072096,51.583933 +-0.09012,51.689646 +0.095216,51.535589 +-0.01215,51.600442 +-0.169888,51.478282 +0.23025,51.54372 +-0.116057,51.367746 +-0.228029,51.511952 +0.028247,51.519266 +-0.099184,51.582693 +-0.063995,51.573827 +0.065388,51.556423 +-0.061202,51.432777 +-0.072232,51.401098 +-0.305203,51.488256 +-0.143572,51.523802 +-0.177534,51.520189 +-0.137217,51.541057 +-0.15877,51.411743 +-0.224853,51.506185 +-0.082014,51.525258 +-0.10252,51.614167 +-0.050519,51.521456 +-0.33118,51.561394 +-0.387249,51.538385 +-0.014975,51.406275 +-0.057462,51.527336 +-0.174454,51.421961 +-0.11105,51.607012 +-0.186693,51.6136 +-0.151558,51.498875 +-0.203752,51.546959 +0.093168,51.53023 +-0.008418,51.571881 +-0.107363,51.471921 +-0.083092,51.532559 +-0.018243,51.436096 +-0.083088,51.364262 +-0.343736,51.541016 +-0.466486,51.502283 +0.078658,51.37707 +-0.473781,51.510327 +-0.033887,51.658809 +-0.102777,51.540766 +-0.211659,51.558653 +-0.272613,51.590536 +-0.199602,51.562938 +-0.147583,51.516609 +-0.106488,51.434264 +0.066135,51.575763 +-0.231905,51.506391 +-0.09608,51.570953 +-0.143401,51.542881 +0.10578,51.533592 +-0.160561,51.605829 +-0.206574,51.490206 +-0.124805,51.508666 +-0.103777,51.500747 +-0.28272,51.561019 +-0.099885,51.378393 +0.134099,51.552406 +-0.032613,51.54693 +-0.189009,51.502346 +-0.053358,51.415588 +-0.382175,51.432116 +-0.365284,51.442646 +-0.263887,51.492571 +0.071063,51.491108 +-0.099984,51.370805 +-0.041147,51.628266 +-0.028855,51.475348 +-0.104787,51.564592 +0.011809,51.407185 +-0.262165,51.518911 +-0.055414,51.556114 +-0.01744,51.570154 +-0.14038,51.531737 +-0.20098,51.516684 +-0.128543,51.427586 +-0.183804,51.588278 +-0.015341,51.449617 +-0.112372,51.498817 +-0.260653,51.491237 +0.020029,51.607437 +-0.135555,51.563709 +-0.049705,51.628157 +-0.064007,51.518172 +-0.326999,51.422016 +-0.189937,51.361699 +-0.081084,51.579261 +-0.017548,51.510931 +-0.173894,51.363104 +0.06871,51.479531 +-0.183294,51.481206 +-0.302486,51.462885 +-0.151144,51.522977 +0.026577,51.401337 +-0.014393,51.456525 +-0.361391,51.52764 +0.134212,51.422484 +-0.076699,51.577831 +-0.029089,51.461908 +-0.029816,51.526218 +0.069456,51.49155 +-0.126993,51.490104 +-0.31197,51.552262 +-0.368044,51.566957 +0.01197,51.330563 +-0.324165,51.524983 +-0.270053,51.487995 +-0.129172,51.508295 +-0.058086,51.65994 +-0.072172,51.584186 +-0.22218,51.573704 +-0.003158,51.600361 +-0.157737,51.522488 +-0.09332,51.41155 +-0.29354,51.467683 +-0.104191,51.418849 +-0.016792,51.487528 +-0.116835,51.459376 +-0.09669,51.639575 +-0.17272,51.611972 +-0.182085,51.516303 +-0.129562,51.423079 +-0.378309,51.58949 +-0.232217,51.571275 +-0.126265,51.445993 +0.000689,51.54036 +-0.111371,51.469351 +0.1086,51.395114 +-0.222267,51.573706 +-0.338315,51.594407 +-0.05996,51.480759 +-0.048355,51.473957 +-0.086806,51.533034 +-0.088272,51.391208 +0.066252,51.565608 +-0.16278,51.534005 +0.170365,51.564861 +-0.268253,51.433213 +-0.152586,51.522982 +-0.099313,51.50554 +-0.170876,51.442039 +0.187397,51.575201 +-0.359021,51.559871 +-0.391177,51.535777 +-0.188692,51.519786 +0.153069,51.445727 +-0.354466,51.571767 +-0.011432,51.399452 +-0.336171,51.426095 +-0.349352,51.567541 +-0.326198,51.577635 +-0.074576,51.519102 +-0.064676,51.613162 +-0.402522,51.575776 +0.016061,51.59514 +-0.169795,51.430215 +-0.019873,51.502841 +0.054885,51.470898 +-0.201194,51.498442 +-0.243193,51.59687 +-0.162619,51.472827 +-0.070194,51.548076 +-0.022737,51.550523 +-0.132374,51.531834 +-0.093982,51.392524 +-0.132863,51.443014 +-0.07304,51.563329 +-0.046969,51.54547 +-0.225885,51.559346 +0.123431,51.458633 +0.175891,51.575424 +0.100033,51.483902 +-0.311086,51.520417 +0.021216,51.430728 +-0.162515,51.51625 +-0.085608,51.607256 +-0.073118,51.577188 +-0.354487,51.564385 +0.017065,51.517058 +-0.336541,51.534287 +-0.110163,51.484286 +-0.434707,51.490784 +-0.226308,51.505452 +-0.040531,51.416579 +0.233141,51.562406 +-0.070575,51.588485 +-0.155632,51.555682 +-0.024593,51.475996 +-0.128246,51.582891 +-0.123019,51.589246 +-0.213842,51.464581 +-0.028328,51.443155 +-0.05587,51.520025 +-0.276814,51.46912 +-0.252836,51.39045 +-0.207192,51.512292 +-0.426939,51.516839 +-0.105104,51.392605 +-0.414292,51.461825 +-0.109358,51.462673 +-0.237955,51.448912 +-0.05646,51.479415 +-0.18056,51.388819 +-0.281993,51.497198 +-0.140446,51.44621 +-0.028107,51.406847 +-0.065708,51.495359 +-0.120861,51.426905 +0.022758,51.517374 +-0.29102,51.553586 +-0.341771,51.579987 +-0.227501,51.56714 +-0.099065,51.523953 +-0.252976,51.388276 +-0.330076,51.577753 +-0.366484,51.564993 +0.087024,51.554152 +-0.403989,51.478195 +0.140644,51.539724 +-0.066754,51.481195 +-0.117999,51.362076 +-0.018177,51.581084 +-0.039006,51.655792 +-0.107681,51.388663 +-0.007107,51.509773 +-0.16393,51.432264 +-0.242496,51.489923 +0.089017,51.455591 +0.076839,51.516132 +-0.167754,51.463618 +-0.373891,51.477817 +-0.140698,51.515421 +-0.391769,51.43544 +0.066092,51.577049 +-0.245119,51.50676 +-0.254771,51.455144 +0.033108,51.474992 +0.013614,51.559383 +-0.289139,51.558352 +-0.028819,51.377246 +-0.128171,51.510905 +-0.159039,51.668409 +-0.084125,51.576603 +-0.086068,51.574684 +-0.152084,51.510088 +-0.156037,51.49748 +0.072984,51.490903 +-0.199498,51.589671 +-0.157476,51.541107 +-0.123739,51.517758 +0.105662,51.488855 +-0.174136,51.527663 +-0.393184,51.502524 +-0.186174,51.594384 +-0.077043,51.53478 +-0.271356,51.528929 +0.209178,51.610953 +-0.149447,51.500487 +-0.210677,51.459353 +-0.076894,51.530794 +-0.068813,51.59565 +-0.158042,51.461325 +-0.440113,51.480956 +-0.096066,51.475218 +0.01375,51.541242 +-0.323866,51.524494 +0.082864,51.560979 +-0.115218,51.570542 +-0.193357,51.606923 +-0.183166,51.51703 +-0.163607,51.534962 +-0.356645,51.472847 +-0.173964,51.467096 +-0.087932,51.365582 +-0.037652,51.487789 +0.038009,51.593565 +0.044976,51.436071 +-0.474157,51.496915 +0.27818,51.582188 +-0.375311,51.511207 +-0.093872,51.541638 +-0.185673,51.457548 +-0.024533,51.474727 +-0.196926,51.343587 +-0.016019,51.57629 +-0.001698,51.541497 +-0.306927,51.431953 +0.051687,51.53759 +-0.103907,51.590935 +-0.187782,51.49007 +-0.029159,51.613812 +-0.483796,51.549842 +-0.036878,51.475627 +-0.44865,51.553996 +-0.008403,51.462197 +-0.004216,51.55118 +-0.043736,51.490031 +-0.068293,51.605525 +-0.278718,51.405104 +-0.072583,51.573105 +-0.453463,51.497544 +0.103077,51.531878 +-0.034671,51.376832 +-0.107515,51.595822 +-0.47261,51.512596 +-0.249365,51.62447 +-0.066425,51.462404 +-0.299301,51.491642 +-0.18563,51.457556 +0.017505,51.533849 +-0.144361,51.456128 +-0.160524,51.513422 +-0.27486,51.533881 +-0.029132,51.517358 +-0.357799,51.567785 +0.086558,51.529143 +-0.321275,51.580038 +-0.059719,51.49866 +-0.045589,51.627783 +-0.077673,51.502372 +-0.191965,51.552156 +-0.334573,51.596854 +-0.1358,51.515738 +-0.111643,51.311938 +-0.155614,51.337557 +-0.066378,51.62069 +0.012113,51.522763 +-0.010357,51.456655 +-0.156908,51.364691 +-0.463804,51.493336 +-0.169414,51.439742 +-0.150554,51.466369 +-0.115845,51.52952 +-0.109759,51.597063 +-0.028278,51.441976 +-0.418792,51.506964 +-0.075172,51.581843 +-0.400378,51.599837 +-0.396804,51.59843 +-0.13136,51.464302 +-0.155182,51.516881 +0.064728,51.572433 +0.03792,51.530258 +-0.104558,51.546837 +-0.005568,51.490899 +-0.091686,51.374806 +-0.100075,51.584165 +-0.281874,51.489256 +-0.145868,51.477905 +-0.032715,51.50945 +-0.477077,51.5597 +-0.354139,51.480473 +-0.239163,51.394283 +-0.029194,51.518258 +-0.107403,51.462947 +0.028353,51.487565 +0.124257,51.545507 +-0.098358,51.523276 +0.03491,51.367523 +-0.110106,51.502396 +-0.014023,51.547237 +-0.122344,51.506486 +-0.378082,51.436385 +-0.280032,51.37927 +-0.427752,51.52042 +-0.113716,51.486861 +-0.123398,51.477655 +-0.213223,51.491846 +0.114977,51.502114 +-0.179755,51.547264 +0.019986,51.595729 +-0.155495,51.461303 +-0.149079,51.480761 +-0.084771,51.551291 +0.025217,51.513995 +-0.061022,51.351371 +-0.03217,51.439802 +0.074932,51.540428 +-0.006939,51.558511 +-0.200994,51.524004 +0.072193,51.525216 +-0.181782,51.650824 +-0.111495,51.600481 +-0.008939,51.47271 +-0.23454,51.506457 +-0.048442,51.484399 +-0.255296,51.493081 +-0.192358,51.509834 +0.067118,51.559262 +-0.097446,51.398758 +-0.171359,51.469591 +0.103743,51.389212 +-0.119456,51.391047 +-0.253279,51.506657 +-0.240442,51.533163 +-0.167721,51.517977 +0.074603,51.540497 +-0.022675,51.527654 +-0.110232,51.358848 +-0.218041,51.458422 +-0.065631,51.485277 +-0.286596,51.492797 +-0.020551,51.44029 +-0.298955,51.551615 +-0.213116,51.501942 +0.068886,51.537171 +-0.07257,51.573069 +-0.079801,51.497686 +0.181747,51.592213 +0.102617,51.358054 +0.17098,51.486558 +-0.191453,51.552328 +-0.093795,51.393213 +-0.195278,51.523107 +0.106947,51.551359 +-0.033807,51.681037 +-0.192705,51.413971 +-0.254343,51.465245 +0.019773,51.536894 +-0.202842,51.449575 +-0.404131,51.439044 +0.083623,51.579779 +-0.035147,51.596566 +0.041151,51.456444 +-0.128589,51.45005 +-0.099193,51.468938 +-0.042043,51.66783 +-0.138397,51.470754 +-0.24143,51.53709 +0.003904,51.442113 +-0.144451,51.529832 +-0.067703,51.651052 +-0.276255,51.404069 +-0.091071,51.58615 +-0.287436,51.486523 +0.044384,51.576692 +-0.238165,51.535377 +0.026244,51.411379 +-0.124518,51.481603 +-0.101441,51.45223 +-0.304893,51.587023 +-0.129416,51.499522 +-0.009595,51.517828 +-0.231446,51.49258 +-0.193833,51.504983 +-0.16165,51.410934 +-0.104545,51.531532 +-0.173818,51.394604 +-0.079153,51.523709 +-0.231247,51.491013 +0.072407,51.526129 +-0.073537,51.584002 +-0.359655,51.48127 +-0.047064,51.491687 +0.045531,51.472959 +-0.22868,51.580592 +-0.079802,51.460969 +-0.207367,51.37809 +-0.337567,51.473243 +-0.051885,51.41372 +-0.013806,51.511146 +-0.072892,51.563407 +0.213576,51.562993 +-0.077785,51.461692 +-0.239841,51.53641 +-0.10619,51.421633 +-0.116193,51.531225 +-0.120805,51.573618 +-0.179407,51.482261 +-0.151319,51.50834 +-0.167756,51.334753 +-0.326185,51.577599 +-0.141902,51.424156 +-0.147034,51.586921 +-0.168451,51.624728 +-0.018439,51.569757 +-0.195285,51.494493 +-0.050351,51.554744 +0.035616,51.461117 +-0.45018,51.531473 +0.098079,51.564296 +-0.054836,51.449209 +-0.025524,51.410383 +0.081119,51.550561 +-0.289891,51.410069 +-0.026247,51.456699 +-0.210942,51.518824 +-0.13818,51.449915 +-0.229284,51.457288 +-0.280428,51.468337 +-0.10926,51.530133 +-0.174132,51.378773 +-0.136499,51.568508 +-0.160889,51.652018 +-0.149741,51.44624 +0.092613,51.573459 +-0.046349,51.649422 +-0.391233,51.525581 +-0.263372,51.43484 +-0.238424,51.499897 +-0.068478,51.551474 +0.177157,51.603728 +-0.21534,51.452365 +-0.105332,51.479235 +-0.08509,51.520677 +-0.185692,51.373162 +-0.043843,51.548422 +-0.027726,51.582225 +-0.100159,51.476876 +0.199484,51.574454 +-0.309147,51.411194 +-0.298497,51.513616 +-0.306486,51.500261 +-0.283942,51.501687 +-0.064844,51.612608 +-0.107421,51.50738 +-0.010702,51.565508 +-0.029804,51.648291 +-0.132345,51.463823 +-0.134895,51.554095 +-0.090648,51.619307 +-0.114523,51.457153 +-0.27381,51.498733 +0.051269,51.52829 +-0.003837,51.424314 +-0.16667,51.452945 +-0.472592,51.54503 +0.110613,51.471293 +-0.182924,51.49522 +-0.259252,51.492484 +-0.311861,51.355435 +0.186066,51.570613 +-0.325785,51.468607 +0.053728,51.548013 +-0.252986,51.41555 +-0.267464,51.466617 +-0.008343,51.571277 +-0.426425,51.577304 +0.10156,51.372938 +-0.084086,51.615963 +0.007342,51.546046 +-0.220221,51.561427 +-0.119043,51.582384 +-0.102418,51.546272 +-0.309076,51.53188 +-0.254013,51.540596 +-0.033792,51.680713 +-0.398958,51.576987 +-0.400674,51.522742 +-0.207136,51.551867 +-0.148485,51.649566 +0.055152,51.471073 +-0.176324,51.652124 +-0.114369,51.559666 +-0.124608,51.61374 +-0.302011,51.587278 +-0.289272,51.488654 +-0.062103,51.509364 +0.062404,51.541485 +-0.129506,51.465298 +-0.460368,51.511087 +0.035512,51.547386 +-0.18556,51.512652 +-0.172829,51.521789 +-0.064319,51.569948 +-0.206628,51.348835 +-0.029414,51.656279 +-0.317528,51.581845 +-0.001836,51.541635 +0.188188,51.558604 +-0.244457,51.549104 +-0.165522,51.464329 +-0.053274,51.440253 +-0.081377,51.49068 +-0.281105,51.508929 +0.052913,51.592361 +-0.146475,51.497392 +-0.205018,51.543373 +-0.092765,51.406559 +-0.086073,51.424966 +-0.115574,51.393152 +-0.180372,51.610589 +-0.305335,51.562723 +-0.047535,51.614084 +-0.302661,51.375076 +-0.08652,51.489298 +-0.4292,51.4536 +-0.094159,51.528891 +-0.093814,51.642343 +-0.147289,51.4613 +0.140683,51.457231 +-0.391866,51.435541 +-0.382858,51.590236 +-0.165486,51.522654 +-0.275763,51.547374 +-0.234546,51.508544 +-0.113968,51.480381 +0.05931,51.461396 +-0.183074,51.649252 +-0.410096,51.566743 +-0.103326,51.440444 +-0.040782,51.530691 +-0.034944,51.645077 +-0.241175,51.550808 +-0.177984,51.525529 +0.159206,51.459607 +-0.047056,51.4838 +-0.125562,51.525683 +-0.109512,51.644036 +-0.177777,51.453765 +-0.053788,51.439327 +-0.182679,51.477842 +-0.151924,51.371806 +-0.051256,51.632085 +-0.064756,51.462718 +-0.002578,51.458771 +-0.408867,51.516379 +-0.239063,51.506489 +-0.047141,51.64681 +-0.247957,51.497028 +-0.153403,51.642369 +-0.254149,51.488793 +-0.366951,51.494734 +0.009843,51.472812 +-0.24458,51.398105 +-0.200902,51.540981 +-0.007252,51.369597 +-0.047336,51.669168 +-0.178781,51.556142 +-0.104474,51.46763 +-0.236452,51.443845 +0.028418,51.588282 +-0.09547,51.487447 +-0.109256,51.666854 +0.117716,51.534474 +0.067051,51.561925 +-0.064425,51.52157 +-0.059871,51.498473 +0.05657,51.526273 +-0.124537,51.376812 +0.067553,51.523364 +-0.18766,51.533439 +-0.018361,51.572553 +-0.286126,51.555997 +-0.095597,51.360895 +-0.274822,51.533719 +-0.131159,51.426575 +-0.126115,51.499218 +-0.052394,51.429825 +-0.198458,51.596273 +-0.156262,51.439059 +-0.021044,51.474479 +-0.024164,51.484928 +-0.22714,51.421205 +-0.04819,51.415385 +-0.31825,51.341372 +0.011297,51.456105 +-0.202987,51.575166 +-0.191152,51.35857 +-0.389004,51.440825 +-0.065311,51.471387 +-0.022015,51.456375 +-0.052791,51.546592 +-0.303273,51.487077 +-0.232455,51.571477 +-0.370823,51.546116 +-0.054837,51.61425 +0.121458,51.487473 +-0.390795,51.535961 +-0.094698,51.410233 +-0.080892,51.462084 +-0.131266,51.450758 +-0.042441,51.666668 +-0.128304,51.513991 +-0.19747,51.511028 +-0.03442,51.442349 +0.046608,51.548443 +0.003712,51.541864 +-0.06846,51.596148 +-0.138015,51.461746 +-0.019224,51.49622 +-0.062812,51.650154 +-0.151869,51.504725 +-0.24158,51.605731 +-0.244796,51.616713 +-0.074228,51.449062 +-0.084369,51.663079 +0.045755,51.531678 +-0.145537,51.514805 +-0.134949,51.511858 +0.046498,51.479111 +-0.211844,51.459712 +-0.019358,51.616975 +-0.121257,51.384961 +-0.145899,51.528956 +-0.144258,51.468239 +-0.461636,51.495691 +-0.27416,51.606106 +-0.021377,51.456482 +0.066285,51.37228 +-0.074108,51.55957 +-0.167407,51.37196 +-0.189488,51.397491 +-0.219252,51.48352 +-0.236756,51.401944 +-0.384039,51.472239 +-0.147795,51.512808 +-0.1514,51.569329 +0.102107,51.363854 +-0.272048,51.604277 +-0.028694,51.582205 +-0.142524,51.453509 +-0.068979,51.595482 +-0.175535,51.613805 +-0.003652,51.555164 +-0.298939,51.586838 +-0.230663,51.547009 +0.124257,51.496253 +-0.286675,51.382631 +-0.161553,51.611653 +-0.075471,51.548135 +-0.186173,51.458014 +-0.091089,51.504399 +0.181457,51.44924 +-0.227849,51.554834 +0.027304,51.565208 +-0.096886,51.490123 +-0.281577,51.491033 +-0.078099,51.527181 +-0.113459,51.455392 +-0.103105,51.465566 +-0.435731,51.488208 +-0.063325,51.518278 +-0.094224,51.620489 +-0.184942,51.51043 +0.10434,51.407853 +-0.152196,51.554674 +0.218992,51.610211 +-0.282875,51.377027 +-0.325887,51.602593 +-0.105715,51.564122 +-0.333539,51.603808 +-0.130294,51.516442 +-0.135188,51.496134 +-0.138116,51.541979 +0.141437,51.581175 +0.083492,51.575348 +-0.068689,51.595873 +-0.096344,51.571901 +-0.40143,51.516386 +-0.083932,51.489867 +-0.139983,51.540399 +-0.061442,51.53241 +-0.054729,51.632305 +-0.080099,51.542681 +-0.46478,51.495597 +0.008998,51.562007 +-0.15515,51.528733 +-0.1784,51.491993 +-0.088759,51.618206 +-0.26726,51.434745 +-0.108498,51.531821 +-0.103365,51.491235 +-0.121951,51.558762 +-0.279611,51.562727 +0.093553,51.552453 +-0.045955,51.544896 +-0.193146,51.601704 +-0.026164,51.436607 +-0.143624,51.520026 +-0.145215,51.44464 +-0.354275,51.527901 +-0.248296,51.538155 +-0.140059,51.520491 +0.057358,51.538004 +-0.217019,51.577619 +-0.342529,51.585744 +-0.143539,51.507228 +-0.058342,51.480202 +-0.381956,51.446465 +-0.238739,51.535809 +0.008054,51.479956 +0.172801,51.586597 +-0.063725,51.589353 +0.032151,51.486501 +0.013107,51.485481 +-0.13278,51.546229 +0.081602,51.560516 +-0.20045,51.521712 +-0.173033,51.533266 +-0.019852,51.363605 +-0.073925,51.509253 +-0.14699,51.586938 +-0.015612,51.480871 +-0.142797,51.591701 +-0.038035,51.459414 +-0.178165,51.487754 +-0.107144,51.590511 +-0.170514,51.672186 +-0.07798,51.526567 +-0.062826,51.574509 +-0.07432,51.507407 +-0.099095,51.578942 +-0.093862,51.410957 +0.02855,51.525421 +-0.227508,51.505713 +-0.052402,51.414735 +-0.33023,51.604651 +-0.261509,51.48767 +-0.09176,51.468332 +-0.191313,51.554421 +-0.098535,51.371797 +-0.14574,51.545652 +-0.12937,51.488676 +-0.171866,51.430598 +-0.107397,51.463091 +-0.213771,51.436145 +-0.116564,51.486943 +-0.293379,51.553765 +-0.291927,51.510104 +-0.339965,51.446031 +-0.134275,51.37301 +-0.15132,51.522908 +-0.07281,51.568766 +-0.150631,51.502197 +-0.200179,51.419193 +-0.054369,51.632605 +-0.15389,51.55418 +-0.130638,51.427358 +-0.131904,51.447828 +-0.354889,51.428382 +-0.078928,51.652577 +-0.129534,51.38923 +-0.086808,51.552583 +-0.432528,51.524899 +0.063592,51.433776 +-0.103013,51.59887 +-0.026643,51.663472 +-0.12088,51.599094 +-0.216375,51.554993 +-0.116177,51.494229 +-0.125401,51.492021 +0.14713,51.55313 +-0.111934,51.405818 +-0.065098,51.57095 +-0.309685,51.562543 +-0.117994,51.460608 +-0.011721,51.527594 +-0.315915,51.511431 +-0.13201,51.528385 +-0.098617,51.57656 +-0.172219,51.554664 +-0.003907,51.587883 +0.002538,51.582126 +-0.02117,51.466577 +-0.236017,51.630412 +-0.389291,51.462536 +0.135262,51.49466 +0.19956,51.54402 +0.079471,51.490995 +-0.153825,51.367412 +0.009869,51.56442 +-0.051686,51.419067 +-0.05936,51.440615 +-0.424828,51.574675 +-0.037899,51.674379 +0.025187,51.547754 +-0.072306,51.647154 +-0.013375,51.339997 +0.092175,51.562963 +-0.218096,51.552681 +-0.000339,51.543875 +0.072817,51.48784 +-0.217651,51.461024 +-0.008508,51.587979 +-0.213221,51.563344 +0.074319,51.589413 +-0.197838,51.457879 +-0.088266,51.381702 +-0.303962,51.461513 +0.250705,51.528895 +-0.213111,51.53963 +-0.203522,51.497497 +-0.125269,51.494555 +-0.060733,51.509387 +-0.424186,51.50138 +-0.490994,51.473493 +-0.303573,51.414926 +0.169995,51.525245 +-0.391945,51.461961 +-0.12001,51.528867 +-0.085917,51.574484 +-0.284074,51.490889 +-0.41222,51.464701 +-0.237569,51.493293 +-0.099238,51.580015 +-0.060848,51.567399 +-0.124161,51.506803 +0.017576,51.406231 +-0.132488,51.51565 +-0.255653,51.540701 +0.083242,51.54082 +-0.163917,51.41069 +0.046605,51.539693 +-0.072334,51.473535 +-0.249587,51.547706 +-0.066161,51.383138 +-0.258213,51.537493 +-0.153643,51.544239 +-0.029402,51.597873 +-0.184487,51.60193 +-0.048523,51.47405 +-0.191065,51.547924 +-0.282178,51.552423 +0.056284,51.527924 +0.059878,51.533769 +-0.074776,51.399422 +-0.099771,51.379767 +-0.147234,51.579523 +-0.143391,51.515121 +-0.237335,51.498613 +0.071476,51.438223 +-0.213722,51.519622 +-0.047039,51.440356 +-0.169498,51.477934 +-0.405208,51.451522 +-0.139026,51.517903 +-0.337503,51.445276 +-0.104199,51.383894 +-0.274575,51.626372 +-0.211886,51.552119 +-0.262521,51.564444 +-0.338646,51.59327 +-0.123184,51.484279 +-0.114502,51.605269 +-0.100244,51.452993 +0.193277,51.474533 +-0.410811,51.490337 +-0.09932,51.580115 +-0.034686,51.680108 +-0.109284,51.612325 +-0.273464,51.545983 +-0.24257,51.506722 +-0.1926,51.555061 +-0.29253,51.487793 +-0.144347,51.512178 +-0.128414,51.511322 +-0.250627,51.613833 +-0.227706,51.498747 +-0.098989,51.497396 +-0.191755,51.38009 +0.03131,51.479573 +-0.29885,51.607375 +-0.15283,51.499848 +-0.279439,51.548561 +0.072897,51.527388 +-0.165125,51.488954 +-0.067703,51.443397 +0.006245,51.493863 +-0.184707,51.484438 +-0.125401,51.558008 +-0.161569,51.499284 +-0.156631,51.502417 +-0.291907,51.553788 +-0.073503,51.398906 +0.073507,51.557629 +-0.197344,51.509848 +-0.187483,51.502331 +-0.052048,51.413605 +-0.191407,51.525485 +-0.204036,51.575649 +-0.025222,51.409721 +-0.176806,51.595058 +-0.184514,51.482394 +-0.097518,51.664353 +-0.044953,51.635182 +-0.255009,51.473815 +-0.14466,51.685862 +-0.252774,51.415835 +0.058948,51.520197 +-0.298605,51.513816 +-0.306729,51.392167 +-0.331185,51.502513 +-0.107773,51.565297 +-0.112593,51.521716 +-0.194022,51.538465 +-0.118781,51.368248 +-0.125956,51.484476 +-0.036033,51.475523 +-0.017335,51.590161 +-0.251783,51.556264 +-0.384281,51.4719 +0.125358,51.391934 +-0.113176,51.504801 +-0.312901,51.488457 +0.147278,51.551059 +-0.088141,51.597837 +-0.274973,51.607134 +-0.009477,51.498726 +-0.037713,51.565504 +-0.091511,51.559818 +-0.218621,51.518536 +-0.072928,51.567338 +-0.046726,51.492859 +-0.061379,51.498579 +-0.101919,51.566237 +-0.108491,51.395861 +0.261468,51.608123 +-0.003435,51.579889 +-0.060783,51.490224 +-0.260133,51.479935 +-0.29453,51.596243 +-0.2542,51.491977 +-0.413359,51.57372 +-0.057654,51.562455 +0.00766,51.62594 +-0.352558,51.591424 +-0.362501,51.413022 +-0.048498,51.677146 +-0.219104,51.569692 +-0.150925,51.555068 +-0.025797,51.520143 +0.017228,51.416282 +-0.094304,51.480882 +-0.146935,51.577648 +-0.379158,51.436876 +-0.061416,51.682521 +-0.106381,51.441024 +-0.171754,51.500037 +-0.094389,51.480901 +-0.17612,51.511579 +-0.149254,51.466466 +-0.069173,51.576961 +-0.246363,51.566668 +-0.112797,51.561385 +-0.10571,51.519807 +0.023052,51.471614 +-0.054211,51.490646 +-0.317511,51.491958 +-0.362555,51.419974 +-0.197338,51.509641 +-0.16395,51.640295 +-0.335291,51.596576 +-0.191145,51.547017 +-0.084429,51.379634 +-0.066096,51.458954 +-0.259147,51.410111 +-0.140555,51.492748 +-0.189634,51.47786 +-0.119348,51.511357 +-0.411199,51.606287 +-0.115732,51.5553 +-0.256703,51.470163 +-0.192844,51.364846 +0.140583,51.579284 +-0.141241,51.465601 +-0.065158,51.598765 +-0.38251,51.409999 +-0.04336,51.630884 +-0.312821,51.488303 +-0.130926,51.425241 +-0.193496,51.358498 +0.023938,51.517003 +0.023401,51.517893 +-0.064325,51.648227 +-0.454345,51.52981 +-0.196293,51.367741 +0.133914,51.531501 +-0.367964,51.425184 +-0.199866,51.516784 +0.084737,51.357798 +-0.11176,51.605216 +0.0723,51.554566 +-0.002553,51.370281 +-0.276488,51.540776 +0.1017,51.499475 +0.035436,51.480365 +-0.065395,51.600999 +-0.015922,51.423251 +-0.070613,51.588621 +-0.248799,51.537056 +-0.112362,51.476732 +-0.076765,51.496908 +0.150554,51.555981 +-0.110936,51.543622 +-0.253901,51.540127 +0.070511,51.508492 +-0.077396,51.523671 +-0.14382,51.442145 +-0.232477,51.531839 +-0.088393,51.506163 +-0.242366,51.537113 +-0.108559,51.507389 +-0.020462,51.510863 +-0.151468,51.372078 +-0.106182,51.493826 +-0.131097,51.507723 +-0.028766,51.475401 +0.071802,51.486122 +-0.245438,51.399359 +-0.062518,51.588191 +-0.08691,51.572503 +-0.062329,51.41329 +-0.270412,51.507055 +0.180878,51.444035 +-0.099227,51.382843 +-0.437102,51.45527 +-0.030756,51.358546 +-0.018262,51.610967 +0.049017,51.590172 +-0.111307,51.496354 +-0.096971,51.371403 +-0.170057,51.490245 +-0.047441,51.640826 +-0.095658,51.494339 +-0.180667,51.5519 +-0.127689,51.513172 +-0.216945,51.461058 +-0.112534,51.496995 +-0.180372,51.607342 +-0.085899,51.43187 +-0.046314,51.663684 +-0.20593,51.487184 +0.035175,51.577311 +-0.216948,51.518951 +-0.191137,51.546837 +0.041579,51.456679 +-0.22387,51.440642 +0.022891,51.422066 +-0.149839,51.464101 +-0.15075,51.561513 +-0.137174,51.365665 +-0.306417,51.483463 +-0.098465,51.497864 +0.207968,51.555643 +0.025008,51.516112 +-0.223906,51.564585 +0.056064,51.527846 +-0.211471,51.49502 +0.083638,51.573493 +0.13222,51.461567 +-0.128389,51.563586 +-0.207717,51.49008 +-0.372203,51.477902 +-0.17486,51.543447 +-0.103447,51.497576 +-0.300044,51.513864 +-0.235769,51.511566 +-0.108341,51.523446 +-0.202482,51.414382 +-0.122849,51.485065 +-0.01111,51.571045 +-0.17626,51.431521 +-0.203585,51.50873 +0.035179,51.400154 +-0.235748,51.588917 +-0.019881,51.469415 +-0.158534,51.502735 +-0.297343,51.53528 +0.066056,51.575611 +-0.148992,51.446624 +-0.029729,51.587654 +-0.436239,51.52725 +0.190575,51.521814 +0.113033,51.404594 +-0.127859,51.419346 +-0.104512,51.558716 +-0.168096,51.428094 +-0.16356,51.474829 +-0.217378,51.576203 +-0.16606,51.533112 +-0.365754,51.580908 +-0.076326,51.378917 +-0.193023,51.476285 +-0.010469,51.463033 +0.023004,51.521956 +-0.067142,51.614624 +-0.069573,51.548092 +-0.211852,51.591226 +-0.112962,51.504411 +-0.077489,51.502288 +-0.129775,51.461876 +-0.05175,51.469643 +-0.114496,51.464095 +-0.252914,51.391035 +-0.283871,51.561854 +-0.120962,51.573665 +-0.074916,51.554106 +-0.025416,51.504283 +-0.299195,51.506486 +-0.100041,51.370131 +-0.006389,51.406983 +0.256249,51.577423 +-0.055434,51.556321 +-0.191964,51.515422 +-0.425917,51.51723 +-0.224277,51.493182 +-0.35063,51.603195 +-0.020087,51.520191 +-0.047326,51.509847 +-0.109486,51.589038 +-0.411355,51.443989 +-0.069182,51.515758 +-0.087447,51.523926 +-0.110854,51.551525 +-0.090317,51.557308 +-0.04721,51.546571 +-0.068036,51.44369 +-0.078072,51.526443 +0.054677,51.508554 +-0.074256,51.474053 +-0.208783,51.454801 +-0.354573,51.480425 +-0.161143,51.525626 +0.06322,51.435428 +0.000961,51.405392 +-0.095108,51.580397 +-0.436649,51.460524 +-0.19376,51.555645 +-0.279183,51.479253 +-0.014713,51.375803 +-0.223977,51.430455 +-0.179587,51.52907 +-0.122501,51.633309 +-0.124199,51.470771 +-0.014527,51.376456 +0.078919,51.606687 +0.102978,51.375961 +0.060754,51.555075 +-0.110641,51.543105 +0.215812,51.562986 +-0.0188,51.572407 +-0.139522,51.507497 +-0.268739,51.491123 +-0.339657,51.475153 +-0.047709,51.657466 +-0.049713,51.521101 +-0.125041,51.580807 +0.077699,51.459947 +0.107925,51.391061 +-0.028284,51.641342 +-0.186251,51.461855 +-0.204083,51.561271 +-0.151283,51.50566 +-0.324076,51.524658 +-0.25453,51.512017 +-0.059539,51.519178 +-0.069966,51.403021 +-0.042266,51.545167 +-0.240779,51.578625 +-0.071282,51.627344 +-0.179215,51.482366 +-0.464446,51.557396 +-0.014496,51.456491 +-0.027073,51.569651 +-0.047394,51.514651 +0.094322,51.556315 +-0.142369,51.609966 +-0.017017,51.342433 +-0.223567,51.49292 +-0.087032,51.41027 +-0.115804,51.612538 +-0.039041,51.475231 +-0.111019,51.491107 +-0.123344,51.477214 +0.013289,51.489281 +0.023904,51.51721 +0.208905,51.605635 +-0.10406,51.591432 +-0.027425,51.511817 +-0.186499,51.416006 +-0.135086,51.635093 +0.047765,51.550123 +-0.183655,51.61626 +-0.266587,51.615733 +-0.110324,51.525672 +-0.175953,51.484357 +-0.016714,51.606391 +-0.029514,51.659293 +-0.043882,51.466086 +-0.017378,51.616006 +-0.171926,51.597221 +-0.042565,51.439311 +-0.106691,51.338458 +-0.232631,51.53194 +-0.1105,51.596958 +-0.161576,51.411697 +-0.01076,51.5073 +-0.47315,51.543446 +-0.033564,51.521524 +-0.307661,51.493435 +0.107282,51.397404 +-0.403578,51.477605 +0.060369,51.576547 +-0.173783,51.504412 +-0.31787,51.554199 +-0.068233,51.54977 +-0.169521,51.334772 +-0.037785,51.48771 +-0.196588,51.505268 +-0.189486,51.417923 +-0.183215,51.49589 +-0.101748,51.584902 +-0.294988,51.391727 +-0.350802,51.527465 +-0.106068,51.390148 +0.206144,51.564149 +-0.115401,51.560519 +-0.010739,51.348145 +-0.063977,51.498127 +-0.158592,51.429051 +-0.037643,51.646849 +-0.380457,51.529857 +-0.069485,51.550861 +0.150926,51.537566 +-0.095265,51.445709 +-0.052625,51.414901 +-0.176599,51.47032 +-0.289779,51.412307 +-0.094334,51.486017 +-0.022921,51.527631 +-0.183331,51.359474 +-0.268141,51.606782 +-0.390426,51.434756 +-0.141754,51.593905 +-0.289414,51.488683 +-0.050689,51.641257 +-0.096566,51.387053 +-0.104949,51.564496 +0.153054,51.524002 +-0.068431,51.588666 +-0.001343,51.540385 +0.074313,51.537606 +-0.194618,51.539068 +-0.242836,51.580319 +0.045408,51.512044 +-0.06813,51.474195 +-0.17246,51.515524 +-0.215143,51.530443 +-0.110127,51.52209 +0.009527,51.430893 +-0.0721,51.515617 +-0.099289,51.568064 +-0.15078,51.355629 +-0.452627,51.470736 +-0.298193,51.53067 +0.026378,51.618667 +0.03589,51.456922 +-0.159442,51.536345 +0.030416,51.475317 +-0.080225,51.531136 +-0.104055,51.56485 +-0.42133,51.438081 +-0.115744,51.461058 +-0.124143,51.569669 +0.001796,51.498525 +0.110586,51.375168 +-0.060075,51.649236 +-0.068233,51.606261 +-0.295757,51.534133 +-0.128284,51.464892 +-0.420753,51.500246 +-0.118385,51.555684 +-0.124279,51.521472 +0.02934,51.546756 +-0.093802,51.565404 +-0.161234,51.436709 +-0.139083,51.460972 +-0.077069,51.53452 +-0.024942,51.64009 +-0.012504,51.511268 +-0.076169,51.543552 +-0.445749,51.529085 +-0.193264,51.40272 +-0.067617,51.457019 +-0.055046,51.547151 +-0.171139,51.459606 +-0.287411,51.486793 +-0.37709,51.425409 +0.212856,51.592422 +-0.277815,51.561783 +0.220536,51.584723 +-0.170462,51.50963 +-0.070547,51.515519 +-0.154925,51.511464 +-0.012549,51.530423 +0.014974,51.519639 +-0.211636,51.409765 +0.046802,51.479142 +-0.075141,51.551502 +-0.394342,51.53475 +-0.22885,51.530552 +-0.351649,51.480834 +-0.192151,51.461533 +-0.214439,51.380267 +-0.452202,51.538163 +-0.144306,51.468123 +-0.055683,51.639739 +-0.023002,51.480825 +-0.127859,51.420039 +-0.118075,51.546785 +-0.289301,51.568641 +-0.196372,51.435169 +-0.120334,51.378039 +-0.081202,51.496918 +-0.035025,51.413834 +-0.374597,51.57256 +-0.043763,51.536496 +-0.342399,51.405437 +-0.024132,51.474666 +-0.014829,51.471362 +-0.176066,51.499924 +-0.065494,51.375105 +-0.165337,51.486169 +-0.374902,51.465575 +-0.110223,51.330449 +0.040561,51.509026 +-0.218049,51.490732 +0.010884,51.557667 +-0.10766,51.52214 +-0.137854,51.359524 +0.090838,51.532573 +-0.133507,51.5873 +-0.196378,51.509132 +-0.122854,51.489858 +-0.283143,51.553606 +-0.290936,51.511177 +0.060693,51.539042 +-0.191758,51.590469 +-0.046805,51.659663 +0.026363,51.542734 +0.070684,51.438848 +0.128974,51.551699 +-0.223137,51.448769 +-0.184204,51.532972 +0.175416,51.597816 +-0.075144,51.521009 +-0.062541,51.427664 +-0.124188,51.603257 +0.052903,51.535141 +-0.05721,51.617868 +-0.183444,51.463664 +-0.187894,51.552614 +-0.036294,51.44229 +-0.303992,51.484012 +-0.062788,51.48845 +-0.329379,51.59794 +-0.106747,51.542754 +-0.002622,51.472602 +-0.453737,51.493267 +-0.283363,51.492174 +-0.019901,51.456996 +-0.163493,51.433111 +-0.239144,51.56941 +-0.293462,51.531501 +-0.141083,51.513763 +-0.202579,51.485946 +-0.061721,51.614382 +-0.331871,51.58392 +-0.064406,51.650396 +-0.153421,51.513023 +0.085078,51.594222 +-0.192168,51.509903 +-0.107151,51.571582 +-0.261081,51.552265 +-0.025495,51.527126 +-0.146703,51.508097 +-0.250683,51.627007 +-0.193634,51.555536 +-0.005748,51.53529 +-0.197596,51.499439 +-0.141874,51.389372 +-0.301211,51.412293 +-0.170602,51.483095 +0.025955,51.592938 +-0.358034,51.426142 +-0.092917,51.494105 +-0.22341,51.419845 +-0.121667,51.60452 +-0.189054,51.51829 +-0.000976,51.546458 +-0.401291,51.5224 +-0.167373,51.422444 +-0.057342,51.532513 +-0.205987,51.511779 +0.035211,51.464002 +-0.27431,51.403411 +-0.207622,51.520788 +-0.129327,51.488685 +0.025594,51.546524 +-0.086781,51.529859 +0.051973,51.583052 +-0.060649,51.589383 +-0.182285,51.526863 +-0.124303,51.415207 +-0.076881,51.50271 +-0.172796,51.553936 +-0.024951,51.537683 +-0.113874,51.342198 +-0.193418,51.415582 +-0.015097,51.464523 +0.00406,51.539286 +-0.102391,51.399108 +-0.034379,51.525036 +-0.097859,51.392272 +-0.297656,51.513352 +-0.024461,51.386336 +-0.0883,51.59784 +-0.29522,51.553117 +-0.122492,51.472371 +-0.141281,51.573674 +-0.100643,51.586116 +-0.193307,51.512817 +-0.03834,51.528816 +-0.002515,51.445065 +-0.021272,51.430608 +-0.089271,51.46036 +0.053243,51.429182 +-0.329171,51.522519 +-0.159297,51.435842 +-0.339205,51.594959 +-0.079336,51.570725 +0.122265,51.55227 +-0.141909,51.479281 +-0.224563,51.509193 +-0.274355,51.508318 +-0.144176,51.442951 +-0.074536,51.519371 +0.083999,51.605653 +0.148173,51.535449 +-0.380942,51.528784 +-0.156981,51.437631 +-0.142394,51.536796 +-0.186875,51.413395 +0.235351,51.590395 +-0.12271,51.490216 +-0.089087,51.473729 +-0.160771,51.493705 +-0.299164,51.388416 +0.199105,51.509154 +-0.15543,51.522514 +-0.42074,51.577695 +-0.14183,51.428768 +-0.116933,51.378605 +-0.201125,51.49836 +-0.182536,51.586046 +-0.125432,51.57692 +-0.105467,51.49091 +-0.174149,51.491657 +-0.173538,51.571411 +-0.174685,51.493761 +-0.32709,51.48331 +-0.099089,51.578744 +-0.261724,51.550917 +-0.099103,51.436113 +-0.022509,51.571391 +-0.191299,51.538045 +-0.046444,51.644541 +-0.212496,51.479119 +-0.098768,51.580205 +-0.066124,51.633797 +0.033093,51.451332 +-0.171584,51.447014 +-0.201193,51.456744 +-0.11438,51.596364 +-0.294903,51.40793 +-0.07438,51.500511 +-0.195286,51.494457 +-0.076508,51.546102 +-0.110894,51.480889 +-0.077385,51.545829 +-0.013849,51.424637 +0.045333,51.597826 +-0.324266,51.502999 +-0.12285,51.509948 +-0.06477,51.462745 +-0.11005,51.550757 +0.029731,51.525077 +0.035496,51.463934 +0.043719,51.540634 +-0.072035,51.515445 +-0.377567,51.435901 +-0.052454,51.550777 +-0.187224,51.457266 +-0.461573,51.500573 +0.005333,51.550199 +-0.19464,51.45721 +-0.064378,51.615073 +0.045698,51.545519 +0.023345,51.520214 +-0.334083,51.580265 +-0.393864,51.502012 +-0.061583,51.523996 +-0.332879,51.439474 +-0.108753,51.523929 +-0.249433,51.547587 +-0.112398,51.49889 +-0.200035,51.53371 +-0.318059,51.51112 +-0.45673,51.518547 +-0.087435,51.529042 +-0.148921,51.43165 +0.032751,51.395654 +-0.18723,51.461843 +-0.298971,51.551571 +-0.120292,51.588843 +-0.042887,51.409226 +-0.1062,51.522224 +-0.059686,51.639068 +0.101726,51.483125 +-0.14682,51.53611 +-0.051878,51.393234 +0.224763,51.586441 +0.218783,51.598209 +-0.075264,51.505507 +-0.172661,51.478073 +0.072086,51.55492 +-0.001106,51.577701 +-0.107211,51.501315 +-0.132697,51.51336 +-0.138397,51.507884 +-0.118238,51.36467 +-0.147838,51.451659 +-0.327889,51.614122 +-0.398446,51.510231 +-0.073124,51.565093 +-0.371457,51.574414 +-0.201304,51.474047 +-0.33393,51.467527 +-0.404706,51.47789 +0.079115,51.363374 +-0.141094,51.592033 +-0.370545,51.612402 +-0.053617,51.440313 +-0.314039,51.488078 +-0.206038,51.515611 +-0.099683,51.467192 +-0.458856,51.498262 +-0.250015,51.488417 +0.025004,51.548189 +-0.334387,51.508745 +-0.309287,51.539418 +-0.482315,51.537989 +-0.144745,51.46795 +0.213881,51.563023 +-0.160729,51.593098 +-0.053548,51.440573 +0.099654,51.463729 +-0.183995,51.584936 +-0.016977,51.601027 +-0.104579,51.501911 +0.030346,51.447477 +-0.115067,51.560217 +0.020159,51.525422 +-0.02964,51.551655 +-0.146521,51.47457 +-0.026503,51.51547 +-0.192154,51.509903 +-0.073889,51.493345 +-0.072822,51.686117 +-0.0159,51.445688 +0.096961,51.571043 +-0.391159,51.436844 +-0.127436,51.506712 +-0.011587,51.627212 +-0.199964,51.5238 +-0.01709,51.578206 +-0.102108,51.430946 +-0.074233,51.589049 +0.00137,51.531212 +-0.125926,51.416663 +-0.077854,51.527177 +-0.046215,51.373994 +-0.065115,51.517867 +-0.406578,51.498121 +-0.297801,51.389115 +0.006862,51.458708 +-0.172079,51.491562 +-0.078086,51.526794 +-0.293544,51.586724 +-0.044548,51.666424 +0.102611,51.36952 +-0.073725,51.509196 +-0.162863,51.461014 +-0.326766,51.45676 +-0.084115,51.529806 +0.096404,51.426745 +-0.176125,51.447544 +-0.180173,51.52523 +-0.194087,51.427813 +-0.216678,51.408421 +-0.170909,51.532657 +-0.08837,51.506009 +-0.123771,51.579384 +-0.03302,51.372433 +0.141921,51.545114 +-0.017472,51.618175 +-0.101513,51.489344 +-0.290801,51.599048 +-0.210546,51.468964 +-0.07177,51.515225 +-0.127775,51.500188 +0.124216,51.551434 +-0.10174,51.452316 +0.004446,51.445279 +-0.028338,51.511706 +-0.39407,51.5994 +-0.164929,51.529704 +-0.110978,51.60702 +-0.038683,51.45269 +-0.141896,51.542651 +-0.361524,51.556058 +-0.247714,51.536033 +-0.018027,51.500228 +-0.198187,51.527936 +-0.294294,51.49147 +-0.029649,51.575153 +-0.208052,51.531127 +0.037858,51.525314 +0.083656,51.574823 +-0.141503,51.459509 +-0.252717,51.504778 +0.069543,51.56055 +-0.170491,51.467536 +-0.135852,51.637542 +-0.248687,51.618453 +0.06805,51.562321 +-0.147829,51.492405 +-0.023526,51.568917 +0.251118,51.560632 +-0.055036,51.436712 +0.094607,51.568495 +-0.165343,51.527993 +-0.292392,51.530811 +-0.146386,51.411098 +0.171504,51.481215 +-0.010388,51.478786 +0.055532,51.516021 +-0.032357,51.509067 +-0.193084,51.509711 +-0.124078,51.526702 +-0.21849,51.552552 +-0.155151,51.511935 +-0.20428,51.507545 +0.072543,51.522781 +-0.167895,51.411904 +-0.472969,51.507897 +-0.173075,51.505543 +0.173055,51.607329 +-0.309571,51.36068 +-0.19047,51.519679 +-0.041285,51.612631 +-0.331354,51.463965 +-0.472619,51.545093 +0.065004,51.577878 +0.134822,51.444829 +-0.047487,51.6391 +0.004045,51.54354 +-0.019427,51.524433 +-0.149191,51.650315 +-0.265084,51.50658 +-0.410302,51.457329 +-0.269311,51.542927 +-0.0692,51.547025 +-0.167034,51.537237 +0.064688,51.565491 +-0.212356,51.554114 +-0.381298,51.541117 +0.254066,51.590468 +-0.329532,51.467716 +-0.292314,51.527501 +-0.163941,51.514824 +-0.040652,51.47024 +0.01352,51.426805 +-0.290482,51.556015 +-0.140247,51.425236 +-0.310994,51.49173 +-0.1751,51.648409 +-0.088431,51.468053 +-0.163637,51.52883 +0.018735,51.403801 +0.051821,51.492453 +-0.270684,51.501771 +-0.176228,51.613447 +-0.124493,51.445353 +-0.169932,51.478247 +-0.221774,51.537135 +-0.336755,51.508617 +-0.083858,51.546591 +-0.066717,51.506572 +-0.229861,51.371976 +-0.229676,51.57317 +-0.27605,51.60804 +-0.012009,51.581861 +-0.155843,51.361185 +-0.281501,51.383796 +-0.070821,51.647075 +-0.274267,51.544987 +-0.001091,51.384717 +-0.441862,51.518342 +-0.105834,51.438255 +-0.074077,51.486172 +0.192334,51.584219 +0.190574,51.527498 +-0.07708,51.422625 +-0.365966,51.463436 +-0.104233,51.628529 +0.125386,51.57313 +-0.2461,51.557006 +-0.131562,51.399783 +-0.144488,51.393703 +-0.042221,51.52505 +-0.21955,51.467365 +-0.159467,51.498883 +-0.084996,51.592283 +-0.124415,51.415281 +0.088901,51.355871 +0.055724,51.450811 +-0.053658,51.540132 +-0.039084,51.475232 +-0.378053,51.47132 +0.026055,51.467245 +-0.060601,51.509447 +-0.143137,51.517842 +-0.143434,51.46123 +-0.061666,51.605829 +-0.244218,51.611111 +-0.112594,51.470413 +-0.157619,51.385277 +-0.144001,51.45328 +-0.045485,51.548134 +-0.279565,51.610951 +0.020994,51.397971 +-0.179986,51.527385 +0.05249,51.526596 +-0.101987,51.624176 +-0.192736,51.475876 +-0.148992,51.491443 +-0.142446,51.639921 +-0.171451,51.539986 +-0.072387,51.486279 +-0.014459,51.375699 +-0.238788,51.493446 +-0.475811,51.516018 +-0.174088,51.601993 +-0.003884,51.569313 +-0.229787,51.492627 +-0.243617,51.46075 +0.034915,51.602827 +-0.018409,51.509039 +-0.100494,51.385552 +-0.055017,51.445624 +-0.173058,51.485795 +-0.198032,51.597175 +-4.9E-05,51.471857 +-0.155779,51.489598 +-0.057609,51.518795 +-0.003879,51.60531 +-0.011401,51.574629 +-0.213526,51.474135 +-0.132737,51.463731 +-0.354729,51.519283 +-0.345916,51.476482 +-0.130786,51.517088 +-0.198604,51.54804 +-0.198456,51.446189 +0.056246,51.515892 +-0.300291,51.511115 +-0.108672,51.440603 +-0.08169,51.57481 +-0.085688,51.605702 +-0.164466,51.425348 +-0.200965,51.516702 +0.075116,51.294892 +-0.42245,51.493255 +-0.025887,51.585692 +0.270905,51.575809 +-0.145667,51.485689 +-0.107471,51.498514 +-0.128048,51.582798 +-0.12389,51.462852 +-0.307701,51.506744 +-0.149975,51.427269 +-0.237152,51.46452 +-0.401664,51.430189 +-0.236464,51.560719 +-0.11409,51.544437 +-0.072321,51.577588 +-0.12743,51.557798 +0.198552,51.547349 +0.185355,51.577757 +-0.166151,51.517224 +-0.085847,51.39972 +-0.034146,51.475878 +-0.326833,51.483261 +0.123112,51.546922 +0.130171,51.551074 +-0.333354,51.470315 +0.030659,51.475295 +0.032029,51.519704 +-0.077472,51.523223 +-0.029969,51.475565 +-0.092029,51.494307 +-0.150925,51.404092 +-0.127403,51.506792 +-0.198154,51.456778 +-0.008022,51.574347 +0.082488,51.558109 +-0.117934,51.55404 +-0.104726,51.380171 +-0.34191,51.57936 +0.030823,51.398197 +-0.284189,51.551877 +-0.082001,51.41606 +0.074429,51.537613 +-0.000989,51.502385 +-0.172515,51.542583 +-0.150502,51.501116 +-0.185346,51.613345 +-0.038172,51.548804 +-0.108187,51.486115 +-0.053113,51.520465 +-0.071145,51.473372 +-0.100059,51.567582 +-0.354886,51.609684 +-0.173597,51.495749 +-0.299792,51.551214 +-0.070571,51.48561 +-0.029264,51.530318 +-0.159952,51.522253 +-0.410091,51.491164 +-0.249838,51.546811 +0.004504,51.433128 +-0.193379,51.500786 +-0.091754,51.653541 +-0.083108,51.396114 +-0.409582,51.483019 +-0.146315,51.558817 +0.100614,51.564809 +-0.01348,51.517328 +-0.110559,51.562123 +-0.210976,51.505821 +-0.133293,51.390459 +-0.0457,51.491925 +0.191016,51.552319 +0.009016,51.331288 +-0.232043,51.57094 +-0.303346,51.376363 +-0.002636,51.422486 +-0.087113,51.689588 +-0.133824,51.510815 +-0.121832,51.40952 +-0.126139,51.37699 +-0.064076,51.642531 +0.054112,51.585659 +-0.076652,51.455423 +-0.130691,51.666757 +-0.034126,51.525229 +-0.099452,51.493195 +-0.448377,51.553129 +-0.28022,51.405692 +-0.126904,51.534076 +-0.330935,51.50937 +0.155773,51.595553 +-0.319467,51.510843 +-0.453912,51.48086 +-0.135922,51.462585 +0.072039,51.55484 +-0.369579,51.467093 +-0.094511,51.539795 +-0.158045,51.429411 +0.061489,51.566861 +-0.335968,51.550788 +-0.08704,51.529503 +-0.045126,51.505342 +-0.150381,51.468156 +-0.054429,51.604873 +-0.214132,51.409191 +-0.147646,51.607712 +-0.122391,51.444654 +-0.172325,51.650201 +0.065463,51.489588 +-0.068217,51.531083 +-0.127835,51.614996 +0.152169,51.454134 +-0.336753,51.425914 +-0.085461,51.445792 +-0.111915,51.519277 +-0.033353,51.414255 +-0.118902,51.456019 +0.018534,51.40644 +-0.14017,51.50186 +-0.092903,51.501002 +-0.054471,51.546098 +-0.065971,51.584732 +-0.076961,51.640306 +-0.034063,51.676122 +0.062886,51.546405 +-0.064777,51.406065 +-0.386906,51.429735 +0.092828,51.559588 +-0.059648,51.53221 +0.036136,51.460515 +-0.034242,51.523208 +-0.05024,51.619371 +0.017267,51.536946 +-0.137956,51.551194 +-0.124692,51.586818 +-0.300436,51.620212 +0.180606,51.593718 +-0.1092,51.612269 +-0.044653,51.510325 +-0.283544,51.480855 +-0.119547,51.376192 +-0.406184,51.524301 +-0.293558,51.467603 +-0.106136,51.533149 +-0.058966,51.418325 +-0.229263,51.521026 +-0.23941,51.50011 +-0.151479,51.508298 +-0.169096,51.519266 +-0.065813,51.57553 +-0.027687,51.513422 +-0.155001,51.457851 +-0.194346,51.458815 +-0.023826,51.53636 +0.067729,51.551427 +-0.100775,51.495663 +-0.156222,51.474345 +0.033826,51.312235 +-0.04666,51.519009 +0.116959,51.556358 +-0.173079,51.374557 +-0.100725,51.499304 +0.019315,51.536965 +-0.051155,51.680274 +-0.152974,51.443512 +-0.062032,51.526997 +0.068832,51.591299 +-0.396246,51.475625 +-0.354155,51.522018 +-0.127215,51.50857 +-0.126537,51.504737 +-0.228547,51.498229 +0.114754,51.532774 +0.018263,51.486435 +-0.08451,51.395247 +-0.045335,51.456326 +0.084391,51.573542 +0.029821,51.463223 +-0.039692,51.592964 +-0.188918,51.400648 +0.198736,51.586446 +0.083636,51.52861 +-0.157516,51.492242 +-0.116749,51.547447 +-0.158869,51.393885 +-0.014557,51.557165 +-0.07321,51.516975 +0.08934,51.497636 +-0.174063,51.602604 +-0.042704,51.516803 +0.045688,51.53631 +-0.234018,51.582902 +-0.052804,51.472952 +-0.12035,51.405701 +-0.285047,51.536729 +0.02097,51.515084 +-0.255941,51.48373 +-0.212383,51.481635 +-0.074761,51.399422 +-0.153608,51.432785 +0.016071,51.477228 +-0.255186,51.542349 +0.097977,51.564262 +0.018711,51.611587 +-0.15271,51.606767 +-0.122167,51.388716 +-0.129187,51.501254 +-0.265105,51.506401 +-0.199782,51.543409 +0.01094,51.560247 +-0.159838,51.370798 +-0.414492,51.506717 +-0.280052,51.562517 +-0.119841,51.532623 +0.026419,51.528407 +0.002462,51.552164 +-0.230047,51.492613 +0.172078,51.47571 +-0.202777,51.414215 +-0.050596,51.416972 +0.148149,51.43597 +-0.139295,51.318639 +-0.020824,51.518468 +0.21898,51.500902 +-0.106205,51.532188 +-0.016006,51.555706 +-0.173287,51.601423 +-0.255311,51.621258 +-0.135786,51.432008 +-0.056236,51.539527 +-0.017914,51.448033 +-0.019069,51.583805 +0.112921,51.575073 +-0.137316,51.471124 +-0.153849,51.659479 +-0.1907,51.426871 +-0.036453,51.524414 +-0.267148,51.527365 +-0.177138,51.545263 +-0.108226,51.424589 +-0.243668,51.4538 +-0.144618,51.448731 +-0.139034,51.57568 +0.070682,51.514478 +0.10659,51.533335 +0.001734,51.540836 +-0.020809,51.587288 +-0.055294,51.546058 +-0.138553,51.509712 +-0.328681,51.483135 +0.056021,51.533288 +-0.134975,51.564851 +-0.166069,51.412972 +-0.191128,51.517972 +0.002232,51.496323 +-0.0718,51.522024 +-0.162247,51.52112 +-0.065945,51.464914 +-0.063653,51.550288 +-0.112811,51.467261 +-0.147562,51.504333 +-0.218125,51.517953 +-0.192263,51.390169 +-0.095832,51.365611 +-0.239565,51.493467 +-0.028361,51.533541 +-0.112771,51.473816 +-0.372162,51.531234 +-0.338458,51.554088 +0.149591,51.483831 +-0.056117,51.590018 +-0.190435,51.468161 +0.027028,51.362767 +0.072484,51.530049 +-0.260045,51.492451 +-0.270876,51.525235 +-0.06553,51.383451 +-0.241845,51.614214 +0.218458,51.552424 +-0.308559,51.456328 +-0.04428,51.398818 +-0.107717,51.625698 +0.056422,51.526509 +-0.118051,51.547351 +-0.172339,51.495865 +-0.293257,51.514215 +-0.135794,51.567751 +-0.105703,51.544635 +-0.20599,51.347521 +-0.083573,51.573951 +-0.197714,51.427393 +-0.04746,51.441281 +0.217294,51.562895 +-0.007878,51.503986 +-0.053862,51.550234 +0.149942,51.441675 +-0.006942,51.399556 +-0.031343,51.611754 +-0.175307,51.541655 +0.021642,51.474264 +-0.11713,51.58783 +-0.073241,51.516922 +0.208974,51.588898 +0.16358,51.4495 +0.071427,51.556308 +-0.041854,51.548703 +0.00349,51.514476 +-0.059878,51.559011 +-0.133867,51.526346 +-0.256934,51.541143 +-0.238357,51.552816 +-0.205327,51.552748 +-0.073471,51.509075 +-0.156699,51.47 +0.152224,51.492947 +-0.015958,51.454627 +-0.07424,51.584094 +-0.273254,51.486765 +0.07121,51.556276 +-0.450717,51.538152 +-0.220869,51.576247 +-0.00171,51.551758 +0.077136,51.545137 +0.052594,51.554211 +-0.167727,51.533624 +-0.170462,51.52043 +-0.184416,51.482339 +-0.325426,51.576266 +-0.380897,51.560949 +-0.043001,51.665733 +-0.365545,51.56382 +-0.14447,51.519797 +-0.05452,51.358071 +-0.124209,51.544204 +-0.218476,51.533336 +-0.102002,51.452248 +-0.107732,51.565944 +-0.249233,51.537773 +-0.072575,51.467137 +-0.167718,51.529901 +-0.257893,51.540213 +-0.077533,51.474205 +-0.068184,51.598572 +-0.400468,51.516265 +-0.405652,51.485447 +0.094386,51.488284 +-0.112286,51.477522 +-0.070077,51.548119 +-0.057581,51.613234 +-0.227464,51.370429 +-0.20598,51.550833 +0.107254,51.395552 +-0.029405,51.607801 +0.021465,51.428556 +-0.222682,51.509021 +-0.028948,51.592344 +-0.15707,51.613229 +-0.085782,51.526164 +-0.122583,51.554996 +-0.391736,51.435557 +-0.313859,51.551489 +-0.129946,51.425297 +-0.346485,51.570207 +-0.300192,51.605848 +-0.066813,51.584629 +-0.373095,51.5447 +-0.078575,51.489141 +-0.082474,51.379665 +-0.013019,51.57525 +-0.258124,51.604736 +-0.467389,51.56167 +-0.072232,51.583801 +0.122113,51.538478 +0.00844,51.569318 +0.017345,51.504787 +-0.35485,51.517541 +-0.407149,51.50365 +-0.148098,51.535177 +-0.157844,51.524477 +0.199113,51.586484 +-0.170973,51.60261 +-0.046227,51.484326 +-0.158674,51.613209 +-0.202778,51.414188 +0.017887,51.54511 +-0.114935,51.587839 +-0.007559,51.511634 +0.04293,51.437609 +-0.225155,51.589954 +-0.246871,51.537315 +0.103659,51.608585 +-0.052755,51.473077 +-0.016536,51.603187 +-0.286286,51.55903 +-0.298934,51.546382 +0.032234,51.47962 +-0.014778,51.45628 +-0.113857,51.627452 +-0.049118,51.606799 +-0.175056,51.649857 +-0.076151,51.611984 +0.066077,51.556663 +-0.191397,51.429993 +-0.253624,51.558683 +0.064791,51.341928 +-0.282273,51.380813 +-0.17486,51.398416 +0.072636,51.371331 +-0.030554,51.599619 +-0.378001,51.436635 +0.122029,51.492634 +0.022375,51.592622 +-0.451059,51.531907 +0.106021,51.533516 +-0.084466,51.552024 +-0.191922,51.515385 +-0.133193,51.473711 +-0.093002,51.474098 +-0.018903,51.4468 +-0.003313,51.42346 +-0.300651,51.46463 +-0.104106,51.565013 +-0.337782,51.475234 +-0.308647,51.56251 +-0.33366,51.56303 +-0.283876,51.555209 +-0.098763,51.577219 +-0.043956,51.464684 +-0.108527,51.652769 +0.16489,51.581734 +-0.052774,51.472969 +0.056033,51.51595 +-0.040163,51.4366 +-0.200128,51.492598 +-0.176719,51.615604 +0.144125,51.440972 +-0.038672,51.512689 +-0.123744,51.526058 +-0.122176,51.409211 +0.168359,51.47836 +-0.127859,51.637594 +-0.263858,51.541471 +-0.304796,51.543085 +-0.122717,51.47215 +0.019342,51.536911 +-0.244498,51.491814 +-0.107871,51.395914 +-0.059132,51.527048 +-0.120144,51.485364 +-0.089513,51.555154 +-0.161588,51.513124 +-0.277695,51.621445 +-0.017379,51.615997 +-0.195929,51.585021 +-0.2557,51.449663 +-0.216336,51.460428 +-0.143038,51.539396 +-0.106323,51.592557 +-0.083794,51.372816 +0.030352,51.540668 +-0.14207,51.508275 +0.058934,51.36919 +-0.295791,51.561776 +-0.036871,51.350591 +-0.28067,51.606939 +-0.158031,51.524489 +-0.0699,51.591819 +-0.166502,51.646909 +-0.329954,51.45578 +0.025926,51.502364 +0.052086,51.532682 +-0.138292,51.557098 +-0.008172,51.50882 +-0.259241,51.521871 +-0.265346,51.487538 +-0.010223,51.442201 +-0.266754,51.43481 +0.060782,51.555066 +-0.121918,51.613139 +0.176203,51.567154 +-0.156975,51.474231 +0.105109,51.5656 +-0.292365,51.467531 +0.001002,51.512963 +-0.075028,51.50598 +-0.14921,51.446915 +-0.049541,51.35592 +-0.017386,51.445587 +-0.394981,51.567383 +0.011642,51.430236 +-0.033738,51.612486 +-0.143114,51.563739 +-0.200536,51.368355 +0.015787,51.420804 +-0.103426,51.380699 +-0.017047,51.572899 +-0.142262,51.408191 +-0.196518,51.553008 +-0.112174,51.603244 +-0.292326,51.526799 +-0.210308,51.385213 +-0.353373,51.527717 +-0.186332,51.482683 +0.115829,51.461082 +-0.114671,51.531425 +-0.068419,51.478255 +0.176946,51.578174 +-0.032029,51.475887 +-0.065296,51.611158 +-0.265127,51.607421 +-0.329634,51.484245 +-0.072943,51.432071 +-0.078084,51.52719 +0.006629,51.542282 +-0.1094,51.460965 +-0.24618,51.510274 +-0.118819,51.468193 +-0.156641,51.438219 +-0.176719,51.488622 +-0.075391,51.460762 +0.062789,51.48843 +-0.300481,51.540073 +-0.192597,51.602073 +-0.173333,51.630146 +-0.156404,51.519445 +-0.021083,51.510837 +-0.127478,51.51762 +-0.122519,51.531668 +0.068175,51.580331 +-0.444818,51.550051 +-0.206725,51.348935 +-0.060994,51.51886 +0.005264,51.554544 +-0.087886,51.658883 +-0.004941,51.552407 +-0.121985,51.472803 +-0.309346,51.49774 +-0.290204,51.478731 +-0.288296,51.584633 +-0.332211,51.587639 +-0.441175,51.481051 +-0.073436,51.496233 +-0.090777,51.525302 +-0.16173,51.419685 +0.169465,51.474355 +-0.064559,51.614563 +-0.001528,51.540757 +0.090064,51.570429 +-0.103099,51.590589 +-0.142968,51.45285 +-0.449927,51.481167 +-0.186888,51.651829 +-0.074362,51.430476 +-0.017627,51.61726 +-0.151734,51.631156 +0.054981,51.471103 +-0.050557,51.509757 +-0.243658,51.596787 +-0.21523,51.505005 +-0.12518,51.675904 +-0.23002,51.492559 +0.008563,51.44564 +-0.142741,51.52012 +-0.125258,51.494465 +-0.362415,51.458099 +-0.196005,51.589671 +-0.049074,51.546827 +-0.223867,51.5093 +-0.174956,51.630746 +-0.343299,51.587976 +-0.157434,51.470713 +-0.121878,51.581206 +-0.096987,51.499108 +-0.33786,51.593843 +-0.280816,51.415098 +-0.105675,51.422974 +-0.413517,51.57374 +-0.057256,51.561639 +-0.210259,51.385365 +-0.168082,51.443902 +-0.169963,51.376667 +0.127445,51.46106 +-0.206785,51.506864 +-0.334516,51.508756 +-0.388204,51.537894 +-0.206201,51.421876 +-0.109858,51.442906 +-0.363144,51.583659 +-0.167763,51.463753 +-0.2707,51.402315 +-0.191589,51.509966 +-0.111858,51.604246 +-0.079326,51.523721 +-0.087913,51.553069 +0.065616,51.573541 +-0.36996,51.577918 +-0.078974,51.523499 +-0.06903,51.51187 +0.006166,51.546507 +-0.121544,51.507714 +-0.304178,51.374865 +-0.097762,51.354042 +-0.004047,51.514182 +-0.118549,51.509744 +-0.080145,51.461703 +-0.129083,51.463313 +-0.375077,51.496727 +0.04664,51.349315 +-0.126933,51.468719 +0.120907,51.421574 +0.087273,51.586989 +-0.013957,51.6004 +-0.085681,51.608948 +-0.069577,51.467879 +-0.249393,51.624488 +-0.113485,51.363568 +0.021137,51.476835 +0.041903,51.516484 +0.100158,51.564628 +-0.11103,51.492933 +-0.360478,51.439431 +-0.093075,51.474081 +0.044935,51.615962 +-0.087889,51.659161 +-0.121031,51.521582 +-0.015336,51.529328 +-0.071376,51.496927 +0.098094,51.418415 +-0.075183,51.652263 +0.154518,51.580639 +-0.104056,51.435312 +-0.102668,51.53785 +0.019086,51.603119 +-0.368945,51.468325 +-0.105126,51.383721 +-0.324728,51.495901 +0.100425,51.369784 +-0.21294,51.527065 +0.026959,51.548038 +-0.157209,51.490943 +-0.28312,51.467981 +-0.217804,51.576749 +0.02168,51.503444 +-0.19611,51.381173 +0.147364,51.552272 +-0.07275,51.573603 +-0.113599,51.450934 +-0.00515,51.553247 +-0.025292,51.538138 +0.034485,51.452198 +0.109596,51.562795 +-0.014642,51.376116 +0.106917,51.456692 +0.182537,51.467656 +-0.111131,51.490848 +-0.055061,51.547142 +-0.104107,51.435475 +-0.235301,51.460634 +0.108184,51.562838 +-0.176901,51.483697 +-0.105218,51.467381 +0.018384,51.406289 +-0.064092,51.524316 +-0.192132,51.495155 +0.004257,51.445255 +-0.432236,51.525003 +-0.371848,51.545285 +-0.126088,51.551482 +-0.222753,51.502008 +-0.132419,51.379087 +-0.409431,51.456292 +-0.153438,51.497996 +-0.018614,51.628104 +-0.129582,51.488788 +-0.12407,51.327389 +-0.171548,51.479989 +0.013565,51.39773 +-0.36095,51.570437 +-0.091589,51.560017 +-0.142149,51.452118 +0.074773,51.550583 +-0.073361,51.566311 +-0.169339,51.496303 +-0.139194,51.534308 +-0.005627,51.454551 +-0.021673,51.527817 +-0.35543,51.471418 +0.114514,51.551555 +-0.155122,51.368754 +-0.09984,51.615059 +-0.283546,51.407477 +0.145749,51.565458 +-0.172739,51.517201 +-0.412997,51.448517 +-0.350112,51.59835 +-0.424407,51.495826 +-0.024935,51.57037 +0.092841,51.603859 +-0.104327,51.489911 +-0.134332,51.488872 +-0.163523,51.464298 +-0.202528,51.49786 +-0.071117,51.660515 +-0.242084,51.556038 +-0.309597,51.585535 +-0.227136,51.505653 +-0.136186,51.539098 +-0.050043,51.59971 +-0.350863,51.509005 +-0.139048,51.57568 +-0.190233,51.550358 +-0.085474,51.546555 +-0.133045,51.427262 +-0.135218,51.547626 +-0.450604,51.511767 +0.212083,51.597023 +-0.239509,51.506505 +-0.132697,51.419549 +-0.033591,51.438873 +-0.034925,51.474839 +-0.270847,51.530945 +-0.410997,51.581871 +-0.067918,51.58444 +-0.226982,51.515165 +-0.171822,51.512016 +0.002151,51.541135 +-0.086552,51.399363 +-0.297939,51.549452 +-0.122031,51.415206 +-0.133329,51.47356 +-0.099186,51.482256 +-0.464677,51.564673 +-0.163299,51.513951 +-0.394572,51.476547 +-0.076785,51.501899 +0.158066,51.467767 +-0.027013,51.443267 +0.081628,51.539284 +-0.065188,51.405856 +-0.22398,51.493412 +-0.102564,51.503596 +-0.146868,51.476688 +-0.214157,51.494108 +-0.086861,51.451885 +-0.079836,51.652304 +-0.258664,51.402739 +-0.014048,51.496969 +-0.143497,51.352105 +-0.076963,51.503161 +-0.071031,51.549771 +-0.01675,51.600591 +-0.300502,51.620365 +-0.252045,51.588181 +-0.002758,51.483009 +-0.12228,51.409473 +-0.348381,51.592355 +-0.429935,51.498031 +0.014468,51.525169 +-0.22691,51.516288 +0.113597,51.569099 +0.206041,51.55219 +-0.313847,51.498353 +-0.116291,51.502648 +-0.309872,51.391529 +-0.183698,51.510546 +-0.144286,51.422467 +0.0841,51.534033 +0.040239,51.508914 +-0.190426,51.493492 +-0.218597,51.552401 +-0.359149,51.620031 +-0.073093,51.565497 +-0.016519,51.602584 +0.059765,51.499949 +-0.12963,51.465417 +-0.27507,51.528309 +-0.302179,51.420329 +-0.11117,51.485381 +0.001339,51.597209 +-0.115581,51.382495 +0.059904,51.577122 +-0.410126,51.570862 +-0.048944,51.554244 +-0.448268,51.530045 +-0.032953,51.527341 +-0.061551,51.492152 +-0.166329,51.533971 +-0.008572,51.502613 +-0.012736,51.62903 +-0.220372,51.576411 +-0.130692,51.487349 +0.058906,51.533633 +-0.03593,51.54962 +-0.019498,51.600494 +0.036253,51.561393 +0.075184,51.558337 +0.192182,51.525552 +0.12194,51.417167 +-0.001605,51.540974 +-0.163303,51.611591 +-0.045173,51.542626 +-0.089783,51.36599 +-0.229746,51.492582 +-0.162171,51.411571 +-0.131192,51.447636 +-0.07667,51.664266 +-0.102387,51.589292 +-0.068369,51.549952 +-0.008584,51.502353 +-0.049918,51.641038 +-0.109324,51.390299 +-0.087346,51.597851 +-0.325404,51.475885 +-0.200423,51.520579 +-0.129053,51.533715 +-0.139477,51.492326 +0.053511,51.533907 +-0.189019,51.425001 +0.062163,51.568045 +0.180409,51.603767 +-0.129307,51.513441 +-0.180062,51.511029 +-0.16393,51.432273 +-0.266232,51.576126 +-0.162248,51.500662 +-0.138437,51.488155 +-0.098308,51.574622 +0.145179,51.546295 +-0.078554,51.546154 +-0.216367,51.530498 +-0.296733,51.595636 +-0.038917,51.64714 +-0.076787,51.501854 +0.008743,51.424486 +-0.427334,51.480659 +-0.029767,51.576432 +-0.148254,51.498994 +-0.070329,51.53806 +-0.046464,51.490229 +-0.123136,51.513144 +-0.09626,51.571136 +0.177295,51.576711 +-0.112826,51.423269 +-0.256121,51.540906 +-0.026021,51.605909 +-0.313831,51.553035 +-0.138655,51.460875 +-0.185524,51.389409 +-0.260215,51.469828 +-0.151784,51.466209 +-0.476928,51.494613 +-0.045763,51.474292 +-0.111845,51.497262 +-0.165099,51.680203 +-0.313493,51.511837 +-0.188557,51.442503 +-0.122456,51.510058 +-0.302386,51.562905 +0.170123,51.525216 +0.010435,51.469582 +-0.352851,51.604071 +0.061124,51.515698 +-0.156819,51.461306 +-0.104598,51.563924 +-0.107361,51.56619 +0.123273,51.569275 +-0.195287,51.589579 +-0.099295,51.580366 +-0.01488,51.522909 +0.005199,51.549779 +-0.085839,51.605209 +-0.108828,51.597237 +-0.214996,51.453457 +-0.127199,51.508623 +0.064486,51.578229 +-0.312753,51.617215 +0.065566,51.576591 +-0.224079,51.410008 +-0.072332,51.59337 +-0.118973,51.512044 +0.198939,51.586478 +-0.085073,51.566754 +-0.119521,51.409438 +-0.157275,51.498578 +-0.147911,51.514545 +-0.282947,51.561894 +-0.21595,51.527884 +-0.26394,51.565077 +-0.22275,51.573884 +-0.180658,51.544149 +-0.371331,51.573091 +-0.024238,51.51652 +0.057787,51.481306 +-0.144541,51.512361 +-0.218418,51.584294 +0.050651,51.548876 +-0.346102,51.59824 +-0.070458,51.588861 +-0.094646,51.50791 +-0.239566,51.514374 +-0.359971,51.587212 +-0.02318,51.623109 +0.040535,51.482003 +-0.249789,51.55636 +-0.143796,51.590224 +0.042918,51.554946 +-0.102253,51.491991 +-0.150893,51.312861 +0.052751,51.576285 +-0.080382,51.485906 +0.055085,51.365057 +0.091626,51.428261 +0.052162,51.552312 +-0.173988,51.602316 +-0.011385,51.427707 +-0.141144,51.494907 +0.102714,51.426318 +0.017734,51.634166 +-0.02845,51.441655 +0.025945,51.329422 +-0.020032,51.488869 +0.024872,51.549756 +-0.021092,51.533238 +-0.184566,51.60176 +0.071594,51.556494 +0.161593,51.588287 +-0.058645,51.660039 +0.094239,51.527504 +0.140675,51.5327 +-0.24925,51.558753 +-0.000626,51.471831 +0.106639,51.528154 +-0.128763,51.528126 +0.123515,51.562085 +0.060268,51.576549 +0.104222,51.562019 +-0.245148,51.506769 +-0.369942,51.541716 +0.022742,51.326438 +-0.078817,51.669238 +-0.170157,51.516522 +0.053702,51.552879 +-0.193504,51.526398 +-0.114555,51.428431 +-0.052164,51.473094 +-0.015803,51.562366 +-0.025672,51.570671 +0.14535,51.472632 +-0.138613,51.556654 +-0.125499,51.515979 +0.003543,51.500249 +-0.248267,51.541895 +-0.103126,51.608305 +-0.233565,51.407516 +-0.130824,51.512305 +-0.085236,51.505509 +-0.100756,51.466661 +-0.086961,51.616639 +-0.178485,51.466708 +-0.276042,51.508298 +-0.182304,51.5177 +-0.173981,51.602486 +-0.191235,51.473047 +-0.170224,51.495796 +-0.015951,51.555642 +-0.216026,51.504532 +-0.282186,51.600055 +-0.303045,51.412877 +-0.209115,51.506234 +-0.254746,51.621295 +0.151679,51.56088 +-0.129233,51.432192 +-0.074226,51.559158 +-0.088107,51.483389 +-0.394947,51.476111 +-0.077692,51.549494 +0.029537,51.450009 +-0.07451,51.550719 +-0.427331,51.523876 +-0.296702,51.385439 +-0.131493,51.510382 +-0.390244,51.484122 +-0.183632,51.460385 +-0.059231,51.51929 +-0.307196,51.5872 +-0.178365,51.492137 +-0.03287,51.644917 +-0.327451,51.509662 +-0.108288,51.562976 +-0.111142,51.485363 +-0.098413,51.493916 +-0.126388,51.504842 +-0.071916,51.520299 +-0.378344,51.560104 +-0.396842,51.497629 +-0.480545,51.479859 +0.079992,51.532497 +-0.260267,51.492301 +-0.131674,51.489406 +0.137806,51.530846 +-0.259435,51.465356 +-0.130907,51.430645 +-0.211573,51.459645 +-0.10532,51.490997 +-0.127733,51.632566 +-0.235502,51.514385 +-0.081092,51.570835 +-0.183055,51.477075 +-0.02077,51.565912 +-0.072754,51.52471 +-0.14749,51.357807 +0.065089,51.556195 +0.100851,51.426468 +-0.211645,51.558644 +-0.1774,51.488156 +-0.119421,51.468976 +-0.021902,51.508243 +-0.373667,51.607896 +0.072581,51.482007 +0.153209,51.439852 +0.107393,51.392303 +-0.07218,51.47034 +-0.17849,51.559438 +-0.017477,51.578257 +-0.053605,51.48051 +-0.143286,51.542862 +-0.215145,51.526352 +-0.219456,51.415018 +-0.128642,51.420933 +-0.190143,51.502094 +-0.043358,51.474287 +-0.16603,51.498338 +-0.171077,51.469443 +0.083318,51.415459 +-0.125268,51.46541 +-0.092624,51.494208 +-0.253491,51.558744 +-0.003931,51.545492 +-0.179102,51.414318 +-0.268638,51.487704 +-0.116405,51.481715 +-0.192383,51.521237 +0.080821,51.588273 +-0.1199,51.439452 +-0.017503,51.616125 +0.044964,51.549749 +-0.005502,51.535312 +-0.089988,51.473869 +0.227985,51.609797 +-0.09838,51.591583 +-0.01877,51.572425 +-0.050476,51.399506 +-0.355721,51.505368 +-0.137515,51.54081 +0.022213,51.608155 +-0.341407,51.52495 +-0.017659,51.456572 +-0.055947,51.599763 +0.066881,51.535255 +-0.017152,51.530996 +-0.064501,51.614895 +-0.110539,51.654447 +-0.41938,51.504957 +-0.189651,51.475253 +-0.193141,51.601821 +-0.123779,51.503119 +0.087424,51.529802 +-0.184497,51.461432 +-0.125763,51.459654 +0.067799,51.462568 +-0.201384,51.509353 +-0.139477,51.535481 +-0.112132,51.46207 +-0.108123,51.403031 +0.232464,51.597176 +0.082913,51.48276 +-0.07986,51.639436 +0.173883,51.518204 +-0.059191,51.41778 +-0.080645,51.579406 +-0.300947,51.38685 +-0.136821,51.515791 +-0.153356,51.44297 +-0.133316,51.545797 +-0.242546,51.549273 +-0.350972,51.552682 +-0.154215,51.522603 +-0.16208,51.463295 +0.17703,51.576617 +-0.03611,51.550127 +0.065954,51.556809 +-0.086331,51.340924 +-0.115176,51.395843 +-0.215397,51.556768 +-0.190502,51.647839 +-0.172925,51.521898 +-0.165637,51.521056 +-0.122935,51.489653 +-0.40922,51.521555 +-0.075686,51.505083 +-0.056029,51.549461 +-0.095747,51.416122 +-0.152759,51.443482 +-0.045618,51.516743 +-0.113125,51.482679 +-0.334104,51.467502 +-0.007219,51.511502 +-0.075869,51.504834 +0.055459,51.488163 +-0.340438,51.581731 +0.104621,51.397677 +0.155109,51.529054 +0.024067,51.528376 +-0.164512,51.544356 +-0.14839,51.649412 +0.092442,51.5958 +-0.075336,51.418945 +-0.089413,51.497268 +-0.004946,51.591848 +-0.162459,51.368492 +-0.270118,51.601874 +-0.371975,51.503725 +-0.293539,51.5541 +-0.152277,51.444023 +0.175285,51.583277 +-0.206503,51.566497 +-0.03906,51.429099 +-0.067453,51.462259 +-0.078754,51.45919 +-0.3255,51.519652 +-0.305847,51.543901 +0.019536,51.518167 +-0.136831,51.539909 +-0.279611,51.562736 +-0.022988,51.455825 +0.001014,51.540534 +-0.166176,51.408496 +-0.023461,51.444547 +-0.135258,51.515937 +-0.100477,51.505963 +-0.062781,51.518512 +0.083323,51.541034 +0.191992,51.459431 +-0.218332,51.493452 +-0.302479,51.378446 +-0.202805,51.414234 +0.20098,51.538796 +-0.154022,51.526314 +-0.325623,51.483658 +-0.108946,51.388324 +-0.245514,51.543734 +-0.206949,51.490949 +0.05081,51.573235 +-0.180049,51.510975 +-0.097934,51.353361 +0.019825,51.545544 +-0.101245,51.326077 +-0.009671,51.486994 +-0.271986,51.54427 +-0.078876,51.461431 +-0.102986,51.598842 +-0.186994,51.472882 +-0.104253,51.383976 +-0.265628,51.393113 +-0.239265,51.493399 +-0.075344,51.549078 +0.040775,51.477691 +-0.166796,51.429296 +-0.201287,51.443724 +-0.16853,51.401042 +-0.251365,51.544594 +-0.159303,51.498313 +0.050179,51.49214 +-0.100756,51.49336 +0.057687,51.533456 +-0.114626,51.559724 +-0.076245,51.542429 +-0.107411,51.544474 +-0.25005,51.619058 +-0.029689,51.613264 +-0.249201,51.529581 +-0.178852,51.61356 +-0.32757,51.477283 +-0.025121,51.59004 +-0.094085,51.596918 +-0.171263,51.519858 +-0.12739,51.418844 +-0.086054,51.52036 +-0.082214,51.526682 +-0.143427,51.593959 +0.01908,51.572373 +-0.179854,51.511179 +0.051573,51.535056 +-0.161359,51.420326 +-0.096988,51.598637 +0.033934,51.390562 +0.16544,51.539242 +-0.329948,51.53279 +-0.157948,51.512626 +-0.117056,51.47535 +-0.085497,51.552202 +-0.151305,51.579497 +-0.134286,51.516083 +-0.130382,51.508998 +-0.209068,51.387891 +0.018731,51.520509 +-0.158461,51.389004 +-0.060097,51.509439 +-0.185441,51.483362 +-0.172028,51.363057 +-0.098134,51.366899 +-0.113173,51.504882 +0.105488,51.484766 +-0.203165,51.589313 +-0.304413,51.554545 +-0.064805,51.406074 +-0.369655,51.545299 +-0.19711,51.480367 +0.038381,51.518947 +-0.048445,51.511305 +-0.23818,51.44905 +-0.116463,51.481716 +-0.155935,51.489664 +0.023739,51.546322 +-0.184287,51.484117 +-0.042554,51.512915 +-0.000299,51.483579 +-0.149004,51.604874 +-0.112182,51.523634 +-0.283627,51.462889 +0.017875,51.367287 +-0.098227,51.505306 +-0.000672,51.522793 +-0.318083,51.596906 +-0.147473,51.504386 +-0.306611,51.512834 +0.052917,51.535123 +-0.331159,51.459835 +-0.080671,51.428934 +-0.034761,51.566705 +-0.40423,51.601166 +-0.052874,51.490902 +-0.141318,51.454497 +-0.216191,51.390275 +-0.116968,51.472588 +-0.106313,51.532028 +-0.130815,51.517089 +-0.094204,51.479127 +-0.211411,51.553209 +-0.111264,51.599084 +-0.448986,51.548344 +-0.430551,51.496457 +-0.197435,51.509733 +-0.12581,51.416688 +-0.146776,51.518017 +-0.406337,51.591726 +0.114735,51.55165 +0.036006,51.592359 +-0.261231,51.56385 +-0.175312,51.393198 +0.281531,51.578202 +0.219371,51.562883 +-0.08264,51.405252 +0.220382,51.556686 +0.037619,51.593869 +-0.058608,51.565789 +-0.134227,51.313379 +-0.19214,51.456712 +-0.14865,51.685232 +-0.032647,51.428038 +-0.01847,51.461783 +0.086638,51.602423 +0.005124,51.546102 +-0.089638,51.391904 +0.099409,51.535838 +-0.069539,51.59863 +-0.024037,51.474539 +-0.075065,51.605213 +-0.223609,51.589975 +-0.452662,51.498225 +-0.250695,51.597765 +-0.401685,51.49756 +-0.148796,51.479219 +-0.094791,51.597289 +-0.280024,51.379108 +0.076368,51.547264 +-0.089034,51.489456 +-0.147378,51.577745 +0.001672,51.498986 +-0.022951,51.431697 +-0.035464,51.526286 +-0.254605,51.621571 +-0.129795,51.430393 +-0.248193,51.596001 +-0.13436,51.51005 +-0.071802,51.588506 +-0.087116,51.546626 +-0.060703,51.509422 +-0.013641,51.632786 +-0.121059,51.566059 +-0.454071,51.496185 +-0.015914,51.511056 +0.000386,51.43997 +-0.12043,51.602639 +-0.072853,51.579683 +0.2132,51.592685 +-0.261786,51.520164 +-0.018537,51.617599 +-0.272316,51.490618 +-0.166121,51.521909 +-0.180738,51.465088 +-0.039499,51.598788 +-0.167284,51.52957 +-0.136846,51.509865 +-0.122517,51.513485 +-0.063852,51.473872 +0.263102,51.609036 +-0.109773,51.44286 +-0.003553,51.579829 +-0.049789,51.679739 +-0.117663,51.458157 +-0.146211,51.608193 +0.205862,51.551771 +0.077804,51.558839 +-0.10667,51.487602 +-0.077992,51.527323 +-0.156007,51.497515 +-0.174632,51.649967 +0.173499,51.606053 +-0.153643,51.520706 +-0.061756,51.490033 +0.002762,51.608875 +-0.266387,51.48857 +-0.096038,51.524641 +-0.234143,51.56626 +0.029636,51.462615 +0.025229,51.553239 +0.0716,51.387519 +-0.062007,51.526916 +-0.174423,51.502471 +-0.096617,51.503841 +-0.254806,51.643443 +-0.08142,51.636359 +-0.106339,51.35258 +-0.079813,51.49774 +-0.429599,51.537143 +-0.292287,51.526664 +-0.186972,51.413495 +0.074079,51.551819 +-0.09735,51.578914 +-0.298694,51.465762 +-0.28076,51.415062 +-0.143163,51.506566 +-0.335301,51.505008 +-0.198155,51.486363 +-0.16386,51.432218 +-0.000893,51.59374 +-0.051171,51.655635 +0.110901,51.373579 +0.254715,51.555177 +-0.030173,51.37717 +-0.092718,51.501629 +0.003046,51.484637 +-0.035177,51.59922 +-0.093632,51.38295 +-0.087174,51.361028 +-0.14836,51.47682 +0.069745,51.548802 +-0.012983,51.551914 +-0.142351,51.469477 +-0.260204,51.479954 +-0.177028,51.599251 +-0.274026,51.403317 +-0.246357,51.48954 +-0.138358,51.541713 +-0.182633,51.388006 +-0.141849,51.546643 +-0.061227,51.473991 +0.250704,51.528859 +-0.245105,51.50676 +0.074952,51.550077 +-0.140152,51.610147 +-0.14372,51.506332 +-0.017373,51.443563 +-0.313728,51.583895 +-0.16587,51.55399 +-0.249052,51.513932 +0.017153,51.400213 +-0.139048,51.575689 +-0.303303,51.46144 +-0.068008,51.580602 +-0.016338,51.630592 +-0.046502,51.557036 +-0.276876,51.468986 +-0.195653,51.604386 +-0.25716,51.581639 +-0.164484,51.470482 +-0.203008,51.49151 +-0.304879,51.587023 +-0.2675,51.608067 +-0.358629,51.509851 +-0.142293,51.487551 +0.226359,51.605197 +-0.368612,51.547866 +0.047767,51.455357 +-0.376476,51.500334 +-0.216628,51.557758 +-0.078549,51.547988 +-0.119,51.517691 +-0.252825,51.55618 +-0.052389,51.445499 +-0.102072,51.621093 +-0.198426,51.508732 +0.102114,51.430789 +-0.069615,51.634286 +-0.105486,51.589765 +-0.072962,51.568921 +-0.431291,51.448871 +-0.138459,51.541715 +0.06909,51.42045 +-0.133833,51.566308 +-0.160705,51.422645 +-0.217939,51.41076 +-0.16801,51.501777 +-0.080746,51.579399 +-0.190517,51.468279 +-0.157509,51.412703 +-0.138276,51.481157 +-0.200164,51.480711 +-0.288635,51.467567 +-0.112238,51.523671 +-0.08425,51.577415 +-0.109734,51.596973 +-0.192449,51.571245 +-0.051296,51.414034 +-0.11867,51.420701 +-0.20591,51.550769 +-0.047336,51.658071 +-0.327923,51.579791 +-0.125059,51.614026 +-0.418847,51.574028 +-0.140723,51.513038 +-0.075279,51.549931 +-0.18947,51.535068 +-0.481447,51.528132 +-0.248316,51.535754 +-0.265442,51.634762 +-0.256521,51.562125 +0.003793,51.458644 +-0.380671,51.479943 +-0.029009,51.507509 +-0.169085,51.519185 +-0.354147,51.564227 +-0.191705,51.477191 +0.177529,51.480402 +-0.048473,51.507942 +-0.078044,51.526425 +0.248036,51.603741 +-0.146511,51.645156 +-0.08974,51.549385 +-0.046943,51.659486 +-0.101734,51.383369 +0.057285,51.470793 +-0.036688,51.402882 +0.062627,51.493766 +-0.137331,51.555554 +-0.476346,51.494363 +0.188643,51.565385 +-0.149697,51.616952 +-0.253638,51.558683 +-0.003156,51.509176 +-0.072262,51.583765 +-0.272821,51.544705 +-0.177089,51.451533 +-0.129856,51.564068 +0.06615,51.565592 +-0.005961,51.5139 +-0.037558,51.64781 +-0.193821,51.504929 +-0.111246,51.470644 +-0.286851,51.461768 +-0.071223,51.480738 +-0.196957,51.572178 +-0.151461,51.540437 +-0.267124,51.546986 +-0.084688,51.372759 +-0.131466,51.45961 +-0.037483,51.428641 +-0.062156,51.649936 +-0.045225,51.491243 +-0.127212,51.570474 +-0.114295,51.557273 +-0.074268,51.500437 +-0.149264,51.544467 +0.141504,51.573377 +-0.19391,51.515065 +-0.051052,51.527886 +-0.223915,51.575116 +-0.02427,51.622291 +0.142557,51.567539 +-0.011443,51.472411 +-0.069487,51.511968 +-0.201474,51.524264 +-0.183238,51.481169 +-0.146693,51.453988 +-0.317984,51.486552 +-0.035734,51.520004 +0.11329,51.545993 +-0.372121,51.532772 +-0.285219,51.56976 +0.002208,51.426027 +-0.192512,51.475369 +-0.125853,51.416679 +0.044152,51.437911 +-0.160388,51.422658 +-0.338667,51.550737 +-0.071007,51.648805 +-0.074517,51.577534 +-0.144098,51.442734 +-0.165758,51.458101 +-0.426145,51.436114 +-0.12988,51.615496 +-0.1618,51.42259 +-0.117146,51.583244 +-0.1624,51.461052 +-0.104092,51.467803 +-0.0843,51.616371 +-0.145261,51.596074 +-0.156597,51.438228 +-0.421276,51.531798 +-0.0848,51.493559 +-0.017472,51.461892 +0.112286,51.396181 +-0.101164,51.587132 +-0.173244,51.505285 +-0.041014,51.474221 +-0.057352,51.479772 +-0.152962,51.506919 +-0.093631,51.475601 +-0.176793,51.617017 +-0.14953,51.523321 +-0.051812,51.635629 +0.000964,51.484133 +-0.225822,51.542421 +0.044953,51.466791 +-0.195556,51.557274 +-0.362442,51.478252 +-0.27518,51.528455 +-0.108318,51.400409 +0.187331,51.581929 +-0.096763,51.642337 +-0.155491,51.508874 +-0.182598,51.480611 +-0.013967,51.60183 +-0.233697,51.457445 +0.039775,51.575927 +-0.24368,51.379567 +-0.2188,51.504349 +0.070476,51.556963 +-0.114429,51.53135 +-0.200031,51.589706 +-0.059541,51.479107 +-0.053381,51.514166 +0.056574,51.55388 +-0.221687,51.589667 +-0.172606,51.512945 +0.144871,51.538531 +-0.037731,51.402359 +-0.124389,51.386746 +-0.200712,51.484712 +0.100927,51.578796 +-0.083461,51.560838 +0.024854,51.517194 +-0.348535,51.604029 +-0.22412,51.575038 +-0.17433,51.427957 +-0.018187,51.436059 +-0.103551,51.561695 +-0.06571,51.389407 +-0.076884,51.598391 +-0.155466,51.379848 +0.02459,51.475148 +-0.355319,51.470481 +-0.371365,51.572552 +0.082329,51.491115 +-0.381311,51.490725 +-0.116597,51.587803 +-0.008422,51.462099 +-0.362263,51.462342 +-0.086282,51.384817 +-0.092609,51.500431 +-0.478137,51.494207 +0.016136,51.487533 +-0.237486,51.554818 +-0.196559,51.572046 +0.192553,51.518576 +-0.19021,51.347476 +0.023746,51.517231 +-0.244082,51.465145 +-0.446005,51.48259 +-0.183119,51.454091 +-0.153208,51.580265 +0.033379,51.474933 +-0.093138,51.501231 +-0.138784,51.461246 +-0.202708,51.545648 +0.18954,51.542607 +0.107728,51.568575 +-0.071132,51.650291 +-0.313156,51.552549 +-0.015724,51.568471 +0.11419,51.577847 +-0.020074,51.439023 +-0.23231,51.455338 +-0.245951,51.54401 +-0.105047,51.489221 +-0.005824,51.335004 +-0.029864,51.576182 +-0.067818,51.395323 +3.5E-05,51.512943 +-0.218737,51.53405 +-0.007777,51.453113 +0.044493,51.401403 +-0.119072,51.367794 +-0.002116,51.508888 +-0.188338,51.383283 +-0.283804,51.491937 +-0.015541,51.515672 +-0.422246,51.52209 +-0.254283,51.416244 +-0.111374,51.555688 +0.195054,51.57745 +-0.057298,51.534563 +-0.027096,51.531451 +-0.169519,51.374466 +-0.158549,51.502726 +-0.038873,51.51271 +-0.100509,51.493743 +0.142305,51.522265 +-0.155201,51.367146 +-0.061022,51.511055 +-0.048209,51.560985 +-0.017428,51.487799 +-0.087094,51.525808 +-0.100221,51.632205 +-0.196279,51.54046 +-0.16073,51.470378 +-0.198344,51.557541 +-0.050718,51.548869 +0.074056,51.557323 +-0.15977,51.399735 +-0.17353,51.394996 +0.021609,51.5526 +-0.056417,51.479406 +0.15041,51.524482 +-0.172896,51.481557 +-0.169235,51.463281 +-0.323902,51.477176 +0.068321,51.417424 +-0.305407,51.412381 +-0.125321,51.517145 +-0.118367,51.365733 +-0.201262,51.544637 +0.065732,51.56211 +-0.173946,51.524135 +-0.129467,51.385569 +-0.246437,51.544871 +-0.255505,51.484605 +-0.113509,51.402138 +-0.279555,51.56269 +-0.275839,51.614008 +-0.131706,51.510808 +-0.369394,51.470669 +-0.190442,51.456695 +-0.163784,51.432675 +-0.174962,51.421483 +-0.2161,51.46279 +-0.323381,51.462709 +-0.099991,51.58375 +-0.20957,51.494254 +0.035212,51.535809 +-0.055134,51.547126 +-0.11069,51.595163 +-0.102068,51.342637 +-0.217425,51.586788 +-0.127592,51.52469 +0.114733,51.495293 +-0.101244,51.640944 +-0.237905,51.54585 +-0.094962,51.47476 +-0.220898,51.513004 +-0.299059,51.411021 +0.147699,51.456734 +-0.123457,51.411641 +-0.072497,51.666517 +0.112964,51.494425 +-0.312545,51.588158 +-0.165273,51.530825 +-0.158812,51.535166 +0.065413,51.409714 +-0.085063,51.66514 +-0.111134,51.38719 +-0.241421,51.493531 +-0.055447,51.439561 +-0.170037,51.519866 +-0.078224,51.42964 +0.231601,51.561293 +-0.023956,51.527711 +-0.139592,51.540087 +-0.116498,51.392375 +-0.195143,51.650014 +-0.139845,51.537421 +-0.225609,51.542715 +-0.208131,51.421087 +0.286049,51.572169 +-0.067,51.517269 +-0.232086,51.592144 +-0.09286,51.583778 +-0.198404,51.572452 +-0.045741,51.521952 +-0.052399,51.471974 +-0.043144,51.51797 +-0.377917,51.51127 +-0.127868,51.434607 +-0.135661,51.531833 +-0.28452,51.407968 +0.00071,51.513201 +-0.280313,51.617913 +-0.087122,51.469065 +-0.128656,51.563779 +-0.018435,51.443968 +0.073034,51.527224 +-0.30403,51.446469 +-0.135877,51.562887 +-0.293938,51.531481 +-0.116637,51.4544 +0.206711,51.523715 +-0.108143,51.52195 +-0.215378,51.517795 +-0.169449,51.434544 +0.125625,51.547299 +-0.045673,51.47438 +-0.336409,51.445288 +-0.255476,51.398133 +-0.230332,51.410426 +-0.290502,51.59354 +-0.087963,51.658785 +-0.192879,51.501048 +-0.066111,51.6426 +-0.239084,51.548925 +-0.025361,51.535873 +-0.507448,51.469207 +0.076463,51.547784 +-0.118679,51.401906 +-0.197293,51.536321 +-0.180723,51.465097 +0.102941,51.502348 +0.040519,51.509062 +-0.2343,51.537262 +-0.144942,51.595044 +-0.272508,51.621845 +-0.147679,51.534847 +-0.044465,51.45008 +-0.331775,51.476093 +-0.095974,51.586625 +0.120126,51.532021 +-0.240319,51.464909 +0.142892,51.59337 +-0.38967,51.430475 +0.115212,51.579969 +-0.214857,51.50312 +-0.164876,51.429473 +-0.079562,51.659817 +-0.122588,51.513522 +-0.250342,51.517872 +-0.145671,51.445825 +-0.020669,51.565578 +0.039368,51.373776 +-0.317427,51.581835 +-0.201355,51.472393 +-0.276771,51.507697 +-0.2066,51.484056 +-0.139329,51.526379 +-0.371377,51.536655 +-0.12613,51.529055 +-0.083364,51.529515 +0.232252,51.589024 +-0.055087,51.54449 +-0.252818,51.487056 +0.025196,51.476145 +-0.148641,51.512902 +-0.342331,51.526905 +-0.32767,51.509594 +-0.13477,51.509895 +-0.062042,51.572932 +-0.27143,51.590896 +-0.232481,51.492641 +-0.151317,51.514078 +-0.075205,51.459716 +-0.089322,51.431899 +-0.131855,51.439509 +0.020997,51.489949 +-0.141912,51.414336 +-0.36646,51.46695 +-0.125121,51.577104 +0.248245,51.554446 +0.207595,51.589041 +0.022992,51.517127 +-0.128752,51.432697 +-0.219551,51.523154 +-0.097059,51.398725 +-0.032211,51.512464 +-0.363392,51.510835 +-0.01097,51.579199 +-0.095305,51.469981 +-0.229357,51.492567 +-0.031136,51.551096 +-0.429798,51.453374 +-0.197016,51.541137 +-0.170593,51.479012 +-0.169126,51.588194 +0.037343,51.474361 +-0.299981,51.379543 +0.057716,51.60823 +-0.200686,51.492679 +-0.144564,51.493351 +-0.065283,51.383519 +0.056731,51.562789 +-0.147302,51.438225 +-0.030229,51.579749 +-0.10698,51.522192 +-0.162498,51.685504 +-0.05862,51.506888 +-0.115625,51.461164 +-0.123814,51.423292 +-0.094193,51.485259 +-0.424936,51.51683 +-0.102072,51.621093 +-0.480932,51.544895 +-0.355579,51.610081 +-0.330718,51.406809 +-0.380683,51.437302 +-0.386187,51.535394 +-0.228882,51.588032 +-0.092171,51.597813 +-0.219065,51.534136 +-0.138103,51.505209 +-0.343489,51.47473 +-0.209231,51.492261 +0.01273,51.377726 +-0.23128,51.487191 +-0.268243,51.464291 +-0.107761,51.618739 +-0.127997,51.438827 +-0.376453,51.543523 +-0.205526,51.515792 +0.188536,51.563453 +-0.205132,51.445483 +-0.136597,51.471454 +0.134111,51.552352 +-0.297163,51.461648 +-0.134266,51.509176 +-0.163248,51.620124 +-0.273563,51.605459 +-0.329838,51.476686 +-0.221787,51.515707 +-0.376535,51.518526 +-0.107892,51.549211 +-0.08998,51.474067 +-0.269109,51.401806 +-0.202676,51.485686 +-0.076454,51.522082 +-0.108287,51.594279 +-0.192593,51.45618 +-0.086134,51.370121 +-0.110099,51.54226 +-0.012429,51.511006 +0.073492,51.525265 +-0.108231,51.383699 +-0.306274,51.498226 +-0.310317,51.411031 +-0.099136,51.36491 +-0.241346,51.533645 +-0.071659,51.415423 +-0.082976,51.405464 +-0.07772,51.47419 +-0.482632,51.532382 +-0.104013,51.435321 +0.023251,51.517437 +-0.10909,51.596153 +-0.055602,51.521936 +-0.325476,51.516747 +-0.039897,51.558014 +-0.064755,51.462754 +0.164092,51.450291 +-0.141809,51.539475 +-0.000272,51.551977 +-0.197793,51.423932 +-0.075546,51.450234 +-0.038272,51.647003 +-0.136241,51.525745 +-0.262098,51.564204 +-0.007472,51.504708 +-0.164943,51.489185 +-0.49265,51.483522 +-0.109577,51.612231 +0.036472,51.347675 +-0.168008,51.432094 +-0.137391,51.559746 +-0.237015,51.500191 +-0.164053,51.502363 +-0.214002,51.516865 +-0.013211,51.574813 +-0.128248,51.420027 +-0.11457,51.504203 +-0.249815,51.513943 +-0.067137,51.480653 +-0.205764,51.42275 +-0.114923,51.513103 +-0.12234,51.523752 +-0.347307,51.569023 +-0.025351,51.501134 +-0.194715,51.558834 +-0.235265,51.492908 +-0.328676,51.46908 +-0.087671,51.533389 +-0.239956,51.605149 +-0.06615,51.459729 +-0.091757,51.468395 +-0.084019,51.574677 +-0.149719,51.500519 +0.093441,51.535567 +-0.106108,51.502547 +0.076135,51.334973 +-0.360931,51.463753 +-0.060837,51.476727 +-0.12812,51.456229 +-0.045534,51.611236 +0.024932,51.548496 +-0.066272,51.484065 +-0.112694,51.473922 +-0.070261,51.477611 +-0.086979,51.473505 +-0.146748,51.420645 +0.007431,51.494625 +-0.012348,51.519494 +-0.208466,51.605014 +-0.27866,51.560797 +0.015268,51.398537 +-0.115319,51.337437 +-0.166171,51.364405 +-0.188643,51.519588 +0.107377,51.566288 +-0.372989,51.477688 +-0.152815,51.499866 +-0.042543,51.625367 +-0.02803,51.511827 +0.168075,51.600416 +-0.128441,51.310643 +-0.305071,51.459559 +0.128909,51.525585 +-0.037121,51.547095 +-0.446321,51.449107 +-0.032713,51.47303 +0.05463,51.552988 +-0.357967,51.453271 +-0.124521,51.441847 +-0.169796,51.402104 +-0.114969,51.526646 +-0.323091,51.521254 +-0.11319,51.505161 +-0.052323,51.496406 +-0.052169,51.52062 +-0.292512,51.524896 +-0.150491,51.545853 +-0.141503,51.459518 +0.009364,51.493369 +-0.402403,51.55199 +-0.292387,51.553669 +-0.12052,51.470262 +-0.278843,51.58498 +-0.124887,51.459613 +-0.086375,51.505833 +0.013606,51.600335 +-0.144187,51.523569 +-0.22465,51.505831 +-0.344795,51.444184 +-0.031915,51.475858 +-0.255885,51.593085 +0.069487,51.48047 +-0.141057,51.500238 +-0.057737,51.527304 +-0.126736,51.516745 +-0.064264,51.514822 +-0.192701,51.456739 +-0.123385,51.477277 +-0.167829,51.532879 +-0.015741,51.576708 +-0.228436,51.463202 +-0.011258,51.524646 +-0.246947,51.381693 +-0.16163,51.413208 +-0.161646,51.514204 +-0.130453,51.516436 +-0.284714,51.608842 +-0.108208,51.589584 +-0.221407,51.51955 +-0.369637,51.478406 +-0.09419,51.620624 +-0.151131,51.445309 +-0.041984,51.667865 +0.058301,51.554417 +0.121419,51.433247 +-0.144884,51.46878 +-0.038195,51.465083 +-0.005537,51.450341 +-0.141835,51.458417 +-0.132772,51.526688 +-0.120791,51.52986 +-0.06809,51.606232 +-0.017275,51.608765 +-0.211484,51.495056 +0.020854,51.397083 +-0.058994,51.548943 +-0.315512,51.489933 +-0.153296,51.366648 +-0.280987,51.491393 +-0.112779,51.472206 +-0.042204,51.511651 +-0.027512,51.5725 +-0.240969,51.550518 +-0.062569,51.571376 +0.18748,51.593743 +-0.197792,51.457204 +-0.169613,51.643243 +-0.249086,51.548751 +-0.071016,51.59512 +-0.12939,51.462841 +-0.172834,51.51446 +-0.422163,51.522844 +0.190192,51.573297 +-0.147712,51.505972 +-0.138598,51.536187 +-0.218467,51.556473 +-0.11054,51.484921 +-0.324456,51.473848 +-0.321113,51.423695 +-0.181553,51.549198 +0.146638,51.556772 +-0.245576,51.536127 +-0.217734,51.577054 +-0.0406,51.671115 +-0.192472,51.416251 +-0.119453,51.455236 +-0.106232,51.563833 +-0.359969,51.47052 +-0.219816,51.378703 +-0.129512,51.615661 +-0.034092,51.517981 +-0.056536,51.511161 +-0.173597,51.495749 +0.060822,51.513492 +-0.032515,51.532486 +-0.078654,51.503027 +-0.110908,51.49276 +0.22074,51.606958 +0.181188,51.571513 +-0.213548,51.652121 +-0.034805,51.525178 +0.027584,51.538738 +-0.150229,51.523161 +-0.15307,51.60786 +-0.15025,51.485995 +0.168494,51.520066 +-0.127535,51.481444 +0.078681,51.550865 +-0.266177,51.541154 +-0.294481,51.403032 +0.036566,51.594229 +-0.196261,51.419349 +-0.12468,51.42568 +-0.190754,51.456826 +-0.173915,51.458939 +0.035289,51.480296 +-0.097252,51.36532 +-0.319899,51.616553 +0.001719,51.62391 +-0.125953,51.56004 +-0.249026,51.506728 +-0.045914,51.656861 +-0.022956,51.518513 +-0.152049,51.545851 +-0.067518,51.388448 +-0.242444,51.50663 +-0.069024,51.557319 +-0.1687,51.477022 +0.106358,51.532682 +0.069362,51.536857 +0.072503,51.524437 +-0.238243,51.553129 +-0.143414,51.521659 +-0.214655,51.556199 +-0.027199,51.508036 +-0.298136,51.46141 +-0.140002,51.425259 +-0.245003,51.61659 +0.039501,51.530465 +0.064376,51.489131 +-0.249094,51.414674 +0.113283,51.385992 +-0.410353,51.431818 +-0.20286,51.485401 +-0.261022,51.55043 +-0.266745,51.526604 +0.052675,51.490316 +-0.19224,51.488422 +-0.255666,51.540756 +-0.04148,51.532897 +-0.072087,51.546299 +-0.093795,51.537608 +-0.112862,51.467405 +-0.036419,51.465529 +-0.315607,51.539311 +-0.185015,51.484659 +-0.076801,51.539497 +-0.039538,51.510653 +-0.232334,51.58241 +-0.206707,51.652943 +-0.125964,51.562226 +-0.185438,51.613221 +-0.253755,51.497213 +-0.467163,51.5156 +-0.044488,51.548163 +-0.067969,51.405047 +-0.108075,51.395854 +-0.071382,51.53091 +-0.141026,51.537116 +-0.119781,51.49453 +-0.106215,51.522216 +-0.313217,51.350571 +0.006434,51.536871 +-0.088395,51.50645 +-0.494262,51.475261 +0.066647,51.53963 +-0.176591,51.620952 +-0.087669,51.519325 +-0.163754,51.432711 +-0.117412,51.542917 +-0.137578,51.524426 +-0.221324,51.529458 +-0.035509,51.524911 +0.245277,51.578838 +0.054277,51.449353 +-0.056331,51.479404 +0.011132,51.568517 +-0.084446,51.441846 +-0.287186,51.510107 +-0.134055,51.58765 +-0.207382,51.483951 +-0.28928,51.504193 +-0.125589,51.52571 +-0.05918,51.644806 +-0.095861,51.503299 +-0.056529,51.559738 +0.013181,51.543365 +-0.003919,51.424414 +-0.06192,51.610051 +-0.092344,51.525066 +-0.180257,51.399713 +-0.115635,51.337425 +-0.140705,51.502166 +-0.369078,51.532388 +-0.117703,51.513147 +-0.247416,51.437867 +-0.127445,51.482225 +-0.131951,51.463943 +0.126448,51.541457 +-0.047133,51.522776 +-0.134746,51.571502 +-0.089188,51.581497 +0.102669,51.432865 +-0.092269,51.478574 +-0.29227,51.564494 +-0.148872,51.461316 +-0.015534,51.511508 +-0.149595,51.502522 +-0.064738,51.547824 +-0.070764,51.594945 +-0.109565,51.550272 +-0.020245,51.607566 +-0.126133,51.507203 +-0.104459,51.50583 +-0.14712,51.494264 +0.072323,51.524602 +-0.131617,51.428759 +-0.312769,51.497106 +-0.097881,51.588652 +-0.124081,51.561009 +0.205719,51.520478 +-0.124511,51.625203 +-0.233521,51.54733 +-0.221864,51.451151 +0.107105,51.408882 +-0.272219,51.544606 +-0.125673,51.496989 +-0.135368,51.462765 +0.125345,51.502915 +-0.19456,51.509176 +-0.240764,51.550245 +-0.016626,51.426941 +-0.135727,51.525638 +-0.095362,51.457887 +-0.143162,51.468644 +-0.043109,51.42896 +-0.298368,51.466018 +-0.091661,51.474148 +-0.291925,51.515535 +-0.191576,51.503015 +-0.22286,51.468126 +-0.148234,51.473167 +-0.159943,51.547512 +-0.047319,51.500216 +-0.423211,51.454904 +0.142051,51.581029 +-0.301099,51.464187 +0.080174,51.490929 +-0.039847,51.672146 +0.071959,51.437765 +-0.109702,51.498226 +-0.250214,51.538894 +-0.007861,51.481261 +-0.200983,51.58973 +0.056994,51.548145 +-0.078395,51.420092 +-0.063999,51.47892 +-0.060515,51.440517 +0.140234,51.57215 +-0.142393,51.536814 +-0.254493,51.622226 +-0.091408,51.503667 +-0.442427,51.52798 +-0.444233,51.528714 +-0.029134,51.614064 +-0.280045,51.379315 +-0.176132,51.519565 +0.044776,51.431902 +0.042036,51.543298 +-0.004785,51.541802 +-0.354138,51.429271 +-0.187055,51.362311 +-0.093053,51.47186 +0.102268,51.531857 +-0.189632,51.384724 +-0.331487,51.561695 +0.069882,51.558484 +-0.143611,51.592991 +-0.29648,51.552596 +-0.138397,51.541804 +0.084781,51.528751 +-0.051332,51.436516 +0.190687,51.551767 +-0.050621,51.612507 +0.046312,51.575912 +-0.218346,51.487544 +-0.119206,51.61654 +-0.132994,51.564937 +-0.018389,51.581186 +-0.01963,51.514761 +-0.409458,51.600743 +-0.262738,51.564429 +-0.308928,51.489955 +0.183826,51.574171 +-0.006139,51.504883 +-0.303332,51.461441 +-0.083791,51.405918 +-0.406262,51.451411 +0.111128,51.344789 +0.033331,51.538584 +-0.130898,51.584741 +-0.236311,51.49304 +-0.144375,51.497296 +-0.275445,51.61563 +0.131509,51.409538 +-0.390534,51.513117 +-0.193184,51.504254 +-0.40904,51.558546 +-0.102141,51.540126 +-0.381154,51.471165 +-0.07803,51.528115 +0.189759,51.529141 +-0.290108,51.478622 +-0.183298,51.545952 +-0.020448,51.565367 +0.023153,51.325676 +-0.228607,51.505981 +0.007374,51.486784 +-0.132982,51.63389 +-0.140089,51.502075 +0.12961,51.566543 +-0.047273,51.475675 +-0.094955,51.440695 +-0.284427,51.552069 +0.149013,51.540128 +-0.116849,51.587627 +-0.048415,51.476251 +-0.166377,51.555365 +-0.391975,51.513523 +-0.105529,51.389977 +-0.105612,51.564174 +-0.172919,51.397702 +0.162473,51.473279 +-0.239475,51.475238 +-0.005601,51.535341 +-0.021401,51.505492 +-0.297571,51.562008 +-0.427432,51.453936 +-0.15143,51.496706 +-0.293394,51.553729 +-0.058767,51.45967 +0.038521,51.595643 +-0.036884,51.6751 +-0.128065,51.419574 +-0.164849,51.643097 +-0.152197,51.506574 +-0.11966,51.454745 +-0.214289,51.465667 +-0.075681,51.528436 +-0.103548,51.378084 +-0.270669,51.512058 +-0.087605,51.525331 +-0.065612,51.362077 +0.025467,51.365798 +-0.036638,51.397674 +0.076012,51.560049 +-0.431501,51.494806 +-0.145115,51.540454 +-0.28825,51.502083 +-0.214854,51.500989 +-0.190934,51.586859 +-0.156961,51.49744 +-0.076478,51.509529 +-0.024249,51.456638 +0.147858,51.545923 +-0.336052,51.557183 +-0.138562,51.356586 +-0.282808,51.491608 +0.183826,51.574171 +-0.060802,51.623728 +0.097746,51.53102 +0.103228,51.426227 +-0.280262,51.621941 +-0.253506,51.558753 +-0.083468,51.425005 +-0.387296,51.602311 +-0.383466,51.49945 +-0.02548,51.570434 +-0.159349,51.60581 +-0.104388,51.531493 +-0.032343,51.544839 +-0.255786,51.603578 +-0.141678,51.543753 +-0.164561,51.470717 +0.262187,51.608936 +0.267834,51.576759 +-0.056697,51.555784 +-0.17086,51.446769 +-0.091254,51.647886 +0.089231,51.355865 +-0.143514,51.506428 +-0.157984,51.513526 +-0.121117,51.603486 +-0.289113,51.362317 +-0.148109,51.503982 +0.025268,51.502474 +0.023663,51.570927 +-0.125858,51.498458 +-0.005194,51.553229 +-0.047824,51.441179 +-0.112573,51.501617 +0.133151,51.471964 +-0.322693,51.407648 +-0.120401,51.517624 +-0.117258,51.577041 +-0.266734,51.616805 +-0.105257,51.542874 +-0.207356,51.491954 +-0.376601,51.505326 +-0.074735,51.549841 +-0.203072,51.491349 +-0.076727,51.501916 +-0.335715,51.596816 +-0.148465,51.523295 +-0.395315,51.47546 +0.139517,51.352196 +0.126272,51.47422 +-0.136802,51.515898 +-0.186133,51.435415 +-0.014276,51.48111 +-0.016219,51.512994 +-0.396917,51.539821 +-0.008471,51.454015 +-0.076088,51.652395 +-0.025768,51.413417 +-0.095131,51.435087 +-0.109265,51.646496 +-0.472244,51.542067 +-0.119838,51.454622 +0.031884,51.515804 +0.146126,51.551098 +0.01983,51.503971 +-0.047734,51.521536 +-0.042675,51.516802 +-0.265727,51.564761 +-0.339176,51.507023 +-0.211367,51.471908 +0.08946,51.52954 +-0.208904,51.421548 +-0.062898,51.526643 +-0.05978,51.473463 +-0.174572,51.501637 +-0.301639,51.412003 +0.002077,51.406245 +-0.080829,51.524645 +-0.199348,51.58983 +-0.259936,51.563372 +-0.422792,51.500876 +0.010205,51.594288 +-0.047801,51.548263 +-0.11027,51.608402 +-0.116202,51.367371 +-0.037707,51.391855 +-0.056347,51.520681 +-0.126295,51.381597 +-0.072982,51.516908 +-0.059966,51.376363 +-0.024137,51.47356 +0.149775,51.547731 +-0.063679,51.38236 +-0.072365,51.530828 +0.021554,51.43155 +-0.247703,51.535574 +-0.094218,51.483623 +-0.126178,51.623683 +-0.099964,51.526251 +-0.151034,51.404238 +-0.131296,51.527879 +-0.461274,51.535108 +-0.184287,51.484117 +-0.127875,51.507582 +-0.401838,51.447439 +-0.170149,51.457711 +0.130339,51.55126 +-0.308969,51.49001 +-0.218211,51.553061 +-0.031251,51.472196 +-0.06049,51.645268 +-0.022581,51.681046 +-0.109772,51.342447 +-0.188097,51.485381 +-0.081232,51.490695 +-0.12696,51.516911 +-0.199992,51.482138 +-0.101008,51.377998 +-0.019219,51.43881 +-0.099414,51.580629 +-0.330828,51.599372 +-0.195032,51.458582 +-0.018345,51.481268 +-0.086745,51.393719 +-0.17366,51.449816 +-0.405065,51.533611 +0.065076,51.420098 +-0.07281,51.666621 +-0.120782,51.494717 +-0.195363,51.570525 +-0.130759,51.587076 +-0.21721,51.332963 +-0.141812,51.51533 +0.061585,51.515708 +-0.193103,51.537642 +-0.102374,51.623211 +0.019307,51.601919 +0.1773,51.576225 +-0.193584,51.522209 +-0.188624,51.487718 +-0.151578,51.537534 +-0.223552,51.589974 +0.057736,51.461289 +0.007514,51.524722 +-0.410412,51.479451 +-0.223469,51.503224 +0.011392,51.456643 +-0.058619,51.47741 +-0.100411,51.372286 +-0.100378,51.543308 +-0.181386,51.528432 +-0.239347,51.484174 +-0.015107,51.463965 +-0.242527,51.449781 +-0.335241,51.558844 +0.052844,51.450763 +-0.191782,51.448299 +-0.155146,51.440687 +-0.046444,51.660323 +-0.137612,51.540901 +-0.190442,51.527637 +-0.287064,51.433004 +-0.051633,51.530485 +-0.064067,51.625787 +-0.177723,51.519428 +-0.111384,51.606271 +-0.115127,51.530498 +-0.2919,51.595539 +-0.214811,51.525672 +0.041371,51.576115 +0.020611,51.598758 +0.229198,51.609208 +-0.153047,51.565011 +0.084938,51.480098 +-0.170816,51.529212 +-0.122876,51.47458 +-0.030442,51.568476 +-0.038095,51.682557 +-0.325345,51.454276 +-0.032911,51.47512 +-0.418006,51.566248 +-0.09345,51.475445 +-0.090313,51.479198 +0.055905,51.533272 +-0.260902,51.617079 +-0.13477,51.482728 +-0.105869,51.436718 +-0.409942,51.514883 +-0.147906,51.605926 +-0.068584,51.635411 +-0.12008,51.511774 +-0.02717,51.508053 +-0.092766,51.397549 +-0.160991,51.652011 +-0.363413,51.465199 +-0.068639,51.403799 +0.060521,51.517355 +-0.315855,51.541977 +-0.07109,51.525177 +-0.292478,51.378049 +0.024189,51.520397 +0.048427,51.548492 +-0.294988,51.597122 +0.049699,51.589288 +-0.162687,51.403702 +0.026399,51.50393 +0.112469,51.537609 +-0.267284,51.504796 +-0.361993,51.557476 +-0.294993,51.596996 +-0.356508,51.472665 +-0.386679,51.502705 +-0.317045,51.511276 +0.07214,51.578651 +-0.067333,51.478408 +-0.323745,51.599991 +-0.365296,51.563907 +-0.337089,51.59795 +-0.03471,51.581263 +0.08509,51.489744 +0.036627,51.453447 +-0.473253,51.547242 +-0.352749,51.603701 +-0.349452,51.52732 +-0.175776,51.462799 +-0.133491,51.565151 +-0.240519,51.40352 +-0.013043,51.458121 +-0.09549,51.406388 +0.107901,51.462439 +-0.06819,51.605577 +-0.005933,51.574914 +-0.171436,51.426959 +0.061566,51.449495 +-0.069938,51.477075 +-0.41402,51.569674 +0.06655,51.555 +-0.446532,51.495033 +-0.07635,51.461587 +-0.155416,51.489305 +-0.068115,51.453071 +0.250602,51.590499 +-0.324102,51.428872 +0.100118,51.485762 +0.099679,51.578027 +-0.275139,51.616093 +-0.035149,51.512513 +-0.168803,51.512203 +-0.073436,51.582624 +-0.068822,51.584221 +-0.186032,51.523981 +-0.107218,51.470552 +0.067771,51.435842 +-0.073601,51.565424 +-0.121768,51.49244 +0.161756,51.599031 +-0.086893,51.473504 +-0.00965,51.4997 +-0.203827,51.517232 +-0.391198,51.442276 +-0.270092,51.464129 +-0.181953,51.457706 +0.027628,51.546866 +-0.089514,51.505201 +-0.19653,51.54068 +-0.371227,51.542884 +0.058708,51.515831 +-0.352265,51.591528 +-0.261747,51.465121 +-0.178987,51.486301 +-0.066614,51.618878 +-0.171616,51.380622 +-0.405395,51.505595 +-0.178341,51.665626 +-0.294265,51.595223 +-0.467156,51.481447 +0.079271,51.523939 +-0.347892,51.592303 +0.013429,51.427031 +-0.440865,51.45255 +-0.002123,51.574912 +0.049423,51.368547 +-0.241797,51.614708 +0.202918,51.545477 +-0.298918,51.513532 +-0.128423,51.325543 +-0.098461,51.494834 +-0.191276,51.545877 +0.15044,51.448294 +-0.066678,51.566704 +-0.042069,51.489922 +-0.076419,51.488 +-0.061618,51.498385 +-0.17414,51.602489 +-0.048331,51.511285 +-0.176789,51.616756 +-0.069171,51.485012 +0.021805,51.421257 +-0.110684,51.589731 +-0.481974,51.529613 +-0.191828,51.476995 +-0.144207,51.543632 +-0.259964,51.492324 +-0.282841,51.449326 +-0.407628,51.484107 +-0.379319,51.54323 +-0.064798,51.527034 +-0.05561,51.644468 +-0.453117,51.525649 +-0.177836,51.520203 +-0.077736,51.549485 +-0.019375,51.4658 +0.025396,51.502436 +-0.231449,51.409427 +0.042031,51.538352 +-0.048939,51.546951 +-0.080408,51.403264 +-0.118415,51.364196 +-0.364149,51.413198 +0.178976,51.527651 +-0.25728,51.535852 +-0.010271,51.481473 +-0.145623,51.548528 +-0.009119,51.46229 +-0.067143,51.614588 +-0.127445,51.468862 +-0.075131,51.520972 +-0.214624,51.464835 +-0.139972,51.470257 +-0.077486,51.502369 +-0.100256,51.397562 +-0.099404,51.55009 +0.042447,51.548929 +-0.12268,51.567695 +0.022973,51.477334 +-0.321651,51.563156 +-0.088321,51.50617 +0.14005,51.523368 +0.060092,51.554781 +-0.326772,51.5286 +0.241949,51.603596 +-0.061951,51.610006 +-0.211607,51.385817 +-0.200357,51.49262 +-0.110389,51.38189 +-0.130337,51.516434 +-0.054415,51.546062 +-0.191491,51.380607 +-0.054172,51.55478 +-0.421291,51.465912 +-0.246475,51.515368 +-0.282306,51.479668 +-0.22294,51.489044 +-0.126214,51.50207 +-0.252629,51.544739 +0.05313,51.552673 +-0.046717,51.643224 +-0.208554,51.516504 +-0.249044,51.552842 +-0.139321,51.535434 +-0.108464,51.546208 +-0.008443,51.507881 +-0.136143,51.515087 +-0.010423,51.634989 +-0.139155,51.535251 +-0.023852,51.474824 +-0.138965,51.538135 +-0.135977,51.359764 +-0.050798,51.54057 +-0.396529,51.547999 +-0.078084,51.527199 +-0.116484,51.478057 +0.10689,51.415469 +0.156016,51.550998 +-0.198295,51.47294 +-0.120948,51.426888 +-0.489043,51.494186 +-0.036969,51.35401 +-0.195426,51.539781 +-0.039155,51.47526 +-0.472799,51.54443 +0.037814,51.594684 +-0.308171,51.589714 +0.070882,51.438773 +-0.148169,51.52169 +-0.116049,51.600689 +-0.27316,51.403026 +-0.176377,51.613683 +0.077002,51.574806 +0.207589,51.60976 +-0.303291,51.549826 +-0.073775,51.517587 +-0.405701,51.601636 +-0.074885,51.523729 +-0.175807,51.60738 +-0.126286,51.439168 +-0.021629,51.527834 +-0.32034,51.336816 +0.022931,51.517371 +-0.022702,51.474435 +-0.213017,51.494522 +0.046446,51.554489 +-0.409668,51.446988 +-0.097875,51.353747 +0.00547,51.527724 +-0.186735,51.491412 +-0.09865,51.471942 +-0.376729,51.589261 +0.067875,51.451839 +-0.174393,51.541776 +-0.143424,51.52317 +-0.054645,51.587305 +-0.140231,51.512733 +-0.073094,51.387101 +-0.098851,51.538787 +-0.062858,51.518396 +-0.253475,51.556909 +-0.418326,51.540372 +-0.016007,51.577216 +-0.12447,51.415335 +-0.131688,51.508425 +-0.079643,51.497998 +-0.064119,51.610635 +-0.133548,51.542617 +-0.116467,51.459936 +-0.420594,51.531923 +-0.120752,51.51575 +-0.074529,51.399463 +-0.256747,51.435003 +-0.306477,51.600345 +-0.056231,51.373288 +-0.034668,51.475788 +7.3E-05,51.539795 +-0.135324,51.517143 +0.000858,51.590868 +-0.318694,51.556504 +-0.188544,51.485739 +-0.277321,51.469038 +-0.308056,51.411124 +-0.159406,51.521138 +-0.180256,51.527488 +-0.099077,51.472066 +-0.125021,51.577417 +0.026203,51.461505 +-0.057157,51.514507 +-0.121874,51.408163 +-0.192761,51.501127 +-0.211812,51.591145 +-0.184072,51.440212 +-0.049332,51.414235 +-0.101661,51.439653 +0.005989,51.583802 +-0.038784,51.514444 +-0.14048,51.496713 +0.053827,51.538038 +-0.06885,51.47453 +-0.064634,51.52615 +-0.29956,51.552002 +-0.109772,51.6145 +-0.015257,51.513904 +-0.171352,51.520866 +-0.211939,51.520611 +-0.170803,51.520534 +-0.093945,51.483951 +-0.195475,51.55203 +-0.087513,51.380458 +-0.288841,51.510526 +-0.186191,51.482609 +-0.479568,51.494504 +-0.105697,51.412686 +0.023581,51.546334 +-0.249821,51.55627 +-0.188045,51.41326 +0.012733,51.516224 +-0.362291,51.608583 +0.0854,51.559019 +0.077471,51.459978 +-0.008156,51.548487 +-0.41972,51.499711 +-0.163053,51.515062 +-0.11408,51.554095 +-0.157606,51.510741 +-0.163634,51.407359 +-0.064245,51.589676 +0.152818,51.529986 +0.07444,51.550859 +-0.134542,51.359724 +0.033351,51.597558 +0.145331,51.558424 +-0.052785,51.473059 +-0.031686,51.35831 +-0.286272,51.578201 +-0.23613,51.576451 +0.025094,51.547926 +-0.216319,51.451624 +-0.060642,51.649506 +-0.134054,51.512258 +0.00181,51.540925 +-0.158183,51.512873 +-0.123253,51.48785 +-0.189231,51.478223 +-0.067636,51.407829 +-0.425633,51.480709 +0.064529,51.361339 +-0.122053,51.486221 +-0.174772,51.629934 +-0.136002,51.54396 +-0.147649,51.64807 +-0.029763,51.463295 +0.002825,51.628684 +-0.029849,51.57619 +-0.056478,51.4051 +-0.100475,51.493518 +-0.21345,51.531712 +-0.150776,51.463019 +-0.174342,51.499817 +-0.158176,51.429386 +-0.145116,51.525184 +-0.1947,51.457139 +-0.069982,51.651513 +-0.173248,51.612115 +-0.133804,51.441797 +-0.085524,51.663808 +0.164145,51.538096 +-0.367937,51.548171 +-0.159085,51.520531 +-0.231508,51.456333 +-0.132733,51.545617 +-0.416634,51.440725 +-0.361581,51.585382 +-0.127001,51.517307 +0.103971,51.565333 +-0.105445,51.547355 +-0.117206,51.503868 +-0.1078,51.562914 +0.177629,51.576453 +-0.195455,51.539782 +-0.056705,51.664836 +-0.038283,51.565343 +-0.074572,51.418312 +-0.08501,51.339886 +-0.376897,51.569139 +-0.163753,51.43272 +0.065963,51.576737 +-0.418864,51.526091 +-0.139592,51.415504 +-0.305834,51.543874 +-0.031193,51.483589 +-0.025229,51.468273 +-0.180815,51.640684 +-0.163796,51.424843 +-0.164043,51.514799 +-0.280566,51.413323 +-0.088674,51.500475 +-0.026006,51.49896 +-0.192829,51.413739 +-0.16582,51.460845 +-0.105434,51.438518 +-0.480353,51.482168 +-0.118492,51.366886 +-0.100922,51.528164 +-0.113281,51.387413 +-0.168904,51.4935 +-0.216648,51.53106 +0.076187,51.560091 +-0.118931,51.500829 +-0.006908,51.558555 +-0.217549,51.47916 +-0.126171,51.501008 +-0.009073,51.590587 +-0.189255,51.520856 +-0.006162,51.514595 +-0.06008,51.565786 +-0.170594,51.478994 +-0.354972,51.507354 +-0.355568,51.50961 +-0.030834,51.580128 +-0.170326,51.507263 +-0.176773,51.616783 +-0.113817,51.518247 +0.21623,51.582844 +-0.192574,51.488714 +-0.044368,51.552639 +-0.079334,51.498506 +0.134678,51.552431 +0.003499,51.41739 +-0.066504,51.526244 +-0.080872,51.503747 +-0.138175,51.566683 +-0.057251,51.535335 +0.121171,51.394644 +0.064611,51.522364 +-0.152292,51.528814 +0.024569,51.517261 +-0.23715,51.455608 +-0.209612,51.483275 +-0.057439,51.479755 +-0.462848,51.527323 +-0.052183,51.471296 +-0.173325,51.514791 +-0.323273,51.579473 +-0.111146,51.488393 +-0.194126,51.457103 +-0.148684,51.431457 +0.002827,51.54142 +-0.12011,51.517691 +-0.063964,51.522245 +-0.036141,51.465624 +0.070455,51.558402 +-0.054859,51.540026 +-0.051838,51.635692 +-0.040285,51.522787 +0.117227,51.477909 +-0.19015,51.479001 +-0.133463,51.511205 +-0.281891,51.497242 +-0.254841,51.561165 +-0.114305,51.464551 +-0.123952,51.560989 +0.146164,51.547914 +0.000763,51.59265 +-0.078581,51.589327 +0.093604,51.530312 +0.092475,51.545305 +0.12993,51.569064 +0.048191,51.540025 +-0.088256,51.502204 +-0.421426,51.572067 +-0.274363,51.408493 +-0.216039,51.52856 +-0.17474,51.520128 +-0.339723,51.605307 +-0.095511,51.499948 +-0.147832,51.450733 +-0.110489,51.551294 +0.019979,51.634298 +0.183559,51.577017 +-0.205483,51.588737 +-0.224917,51.520088 +-0.072968,51.567069 +-0.445082,51.568093 +-0.088436,51.412451 +-0.063721,51.526594 +-0.14221,51.450959 +-0.143934,51.442515 +-0.123698,51.561893 +0.083377,51.53464 +0.066998,51.576332 +-0.39902,51.579748 +0.0526,51.466828 +0.07653,51.536578 +-0.001,51.542619 +-0.268332,51.568729 +-0.377764,51.577235 +-0.070197,51.514587 +0.017485,51.419192 +-0.046255,51.661021 +-0.237418,51.580445 +-0.270381,51.597625 +-0.099549,51.546595 +-0.305162,51.506051 +-0.143176,51.499156 +-0.19716,51.49115 +-0.173188,51.550282 +-0.157534,51.397785 +-0.257434,51.492565 +-0.427461,51.453927 +0.145799,51.543541 +-0.116212,51.397919 +-0.104678,51.523468 +-0.058497,51.498927 +-0.062844,51.583934 +-0.235635,51.506456 +-0.004346,51.462794 +-0.205895,51.347376 +-0.112592,51.552749 +-0.368202,51.511334 +-0.224395,51.434158 +-0.008905,51.462242 +-0.217848,51.42235 +-0.063289,51.523871 +-0.003625,51.579839 +0.057712,51.536891 +-0.041123,51.670063 +-0.053972,51.520255 +-0.102702,51.491584 +-0.278636,51.51785 +-0.049279,51.476598 +-0.421589,51.572348 +-0.388962,51.440788 +-0.2246,51.5742 +-0.029341,51.474421 +0.024231,51.52947 +-0.110523,51.654483 +-0.377332,51.43035 +-0.132548,51.51173 +-0.323044,51.508422 +-0.174594,51.490252 +-0.010797,51.348119 +-0.319776,51.623799 +-0.277576,51.500497 +-0.290921,51.511168 +-0.147719,51.347855 +-0.218528,51.552679 +0.08571,51.551586 +-0.124611,51.606663 +-0.007646,51.50668 +-0.006563,51.50739 +-0.096623,51.472916 +-0.208107,51.373507 +-0.275686,51.536438 +-0.064978,51.514636 +0.030628,51.5232 +0.044599,51.389917 +-0.189249,51.362767 +0.069038,51.561512 +-0.386609,51.50265 +0.102169,51.426345 +-0.197327,51.541294 +-0.306843,51.392196 +0.052572,51.56752 +-0.06149,51.642173 +-0.385324,51.539392 +-0.401203,51.522453 +-0.238849,51.449222 +-0.310774,51.506645 +-0.292938,51.529695 +-0.053974,51.439006 +-0.108683,51.400612 +-0.064103,51.474065 +0.004414,51.544729 +-0.053947,51.438969 +-0.065365,51.390769 +-0.184151,51.457803 +-0.06072,51.555491 +-0.354944,51.571306 +-0.139334,51.496919 +-0.142106,51.630564 +0.002147,51.497008 +-0.278468,51.563969 +0.088086,51.534178 +-0.11946,51.688644 +0.011007,51.377756 +-0.398866,51.497836 +-0.107101,51.435443 +-0.071827,51.515253 +-0.063722,51.526576 +-0.377432,51.519249 +-0.316676,51.409765 +-0.260973,51.550942 +-0.366104,51.528489 +0.020602,51.59856 +-0.073265,51.398758 +-0.150915,51.505142 +-0.241917,51.537169 +-0.117931,51.558653 +-0.119043,51.582393 +-0.115177,51.396185 +-0.384406,51.47611 +-0.286886,51.531144 +-0.448504,51.551926 +0.116507,51.506834 +0.026098,51.502334 +-0.022498,51.511104 +-0.126693,51.515683 +0.176944,51.576322 +-0.197917,51.444176 +-0.194174,51.387636 +-0.454088,51.438599 +0.108007,51.532797 +-0.375657,51.511212 +-0.369752,51.467077 +-0.255801,51.591132 +-0.321989,51.600613 +-0.067009,51.510929 +-0.047322,51.51331 +-0.139466,51.500743 +-0.044565,51.628413 +-0.110397,51.56221 +-0.165119,51.463972 +-0.205729,51.496686 +-0.281754,51.51812 +-0.121227,51.580531 +-0.191483,51.550853 +0.057615,51.404186 +0.082073,51.53576 +-0.454396,51.470795 +-0.207573,51.517253 +-0.157886,51.337467 +-0.199653,51.498805 +-0.085941,51.526149 +-0.259263,51.562867 +-0.008695,51.480961 +-0.174643,51.411074 +-0.049027,51.521287 +-0.229636,51.547092 +-0.199936,51.516848 +-0.409076,51.447456 +0.026043,51.406841 +-0.160765,51.363798 +0.052314,51.576194 +-0.346011,51.476636 +-0.068003,51.412763 +-0.005514,51.586786 +-0.218112,51.558176 +0.00013,51.453554 +-0.063552,51.58899 +0.144794,51.441122 +-0.238995,51.449548 +-0.438351,51.434703 +-0.197218,51.486763 +-0.131668,51.620156 +0.08722,51.442377 +-0.319822,51.53528 +-0.333322,51.471583 +-0.133488,51.526439 +0.184205,51.526654 +-0.097832,51.35791 +-0.127082,51.573646 +-0.314946,51.554463 +-0.067736,51.484548 +-0.077437,51.502503 +-0.20708,51.489441 +-0.185279,51.534589 +-0.135456,51.462713 +-0.232574,51.54719 +-0.161876,51.552165 +-0.459779,51.61269 +-0.03848,51.353937 +-0.136272,51.50982 +-0.126897,51.400285 +0.049646,51.460019 +-0.204713,51.611206 +0.141695,51.572834 +-0.40811,51.435942 +-0.037704,51.431217 +-0.057648,51.488742 +-0.215992,51.527911 +-0.141867,51.409426 +-0.043562,51.490046 +0.023951,51.527056 +-0.057412,51.479719 +-0.008246,51.559315 +-0.13497,51.564599 +-0.311402,51.552011 +-0.220317,51.512016 +-0.395819,51.557521 +-0.089377,51.586275 +-0.263677,51.593578 +-0.101176,51.402766 +-0.159432,51.590182 +-0.010105,51.519033 +-0.026236,51.474972 +-0.144677,51.36948 +-0.137737,51.497218 +-0.092352,51.435842 +0.106271,51.424842 +-0.295007,51.552655 +-0.32985,51.531944 +-0.085726,51.539535 +-0.04892,51.440783 +-0.052057,51.414397 +-0.021637,51.530307 +-0.189804,51.457189 +-0.169956,51.427619 +-0.080112,51.497466 +-0.119495,51.529821 +0.031079,51.546942 +-0.157293,51.461341 +-0.094312,51.478948 +0.216423,51.573164 +-0.093549,51.430241 +-0.093824,51.398052 +-0.20358,51.376108 +-0.243483,51.379447 +-0.124309,51.446681 +-0.131206,51.516349 +-0.169135,51.553151 +-0.033786,51.581607 +-0.112594,51.470764 +-0.11332,51.466432 +-0.122348,51.427468 +-0.060514,51.409285 +-0.064756,51.387818 +0.144967,51.474294 +-0.064241,51.535082 +-0.040199,51.46972 +-0.33524,51.596387 +0.021961,51.536794 +-0.137558,51.540819 +-0.278052,51.554746 +-0.396287,51.497855 +0.027234,51.596387 +-0.183507,51.550838 +-0.138364,51.636547 +-0.304161,51.374927 +0.046403,51.430974 +-0.181475,51.433158 +-0.166269,51.495266 +-0.191146,51.501875 +-0.119707,51.517685 +-0.209307,51.46935 +-0.443746,51.56456 +-0.07309,51.566243 +-0.21987,51.575216 +-0.062081,51.519382 +-0.010231,51.461212 +-0.257791,51.541372 +-0.315795,51.540078 +-0.111466,51.591426 +-0.276426,51.541269 +-0.141223,51.573664 +-0.196787,51.440337 +-0.112069,51.511033 +-0.133185,51.522918 +0.056543,51.526948 +-0.17235,51.515387 +-0.126991,51.51192 +-0.119222,51.421267 +-0.367111,51.478568 +0.163519,51.471345 +-0.048849,51.440773 +-0.134506,51.482841 +-0.40296,51.529095 +-0.009515,51.517683 +-0.110828,51.481104 +-0.094804,51.529333 +-0.111352,51.346276 +-0.135772,51.519578 +0.090918,51.595638 +0.031135,51.546914 +-0.166444,51.433068 +-0.085359,51.412104 +-0.063978,51.440296 +-0.248146,51.596108 +-0.05441,51.554622 +-0.043416,51.536499 +-0.160364,51.687107 +-0.116644,51.465775 +-0.088041,51.590929 +-0.054897,51.41153 +-0.058172,51.527239 +0.037015,51.542612 +0.073413,51.52416 +-0.112202,51.552419 +0.111524,51.393362 +-0.069094,51.59516 +-0.171135,51.447088 +-0.27951,51.562743 +0.024147,51.370722 +-0.417869,51.507383 +-0.080955,51.524737 +0.220361,51.594744 +-0.011277,51.46364 +-0.089768,51.428786 +-0.114933,51.46502 +0.140531,51.457369 +0.091119,51.371767 +-0.248042,51.557907 +0.038002,51.541453 +-0.068599,51.431379 +-0.158546,51.502807 +0.008794,51.514493 +-0.091568,51.58221 +-0.248363,51.497312 +0.168419,51.538503 +-0.242157,51.400937 +-0.182604,51.458723 +-0.202274,51.656463 +-0.146508,51.45395 +0.191916,51.462957 +-0.147722,51.492565 +-0.172782,51.423491 +0.153442,51.497385 +-0.125624,51.440227 +-0.124359,51.688408 +-0.066075,51.531264 +-0.392276,51.513563 +0.032087,51.517131 +-0.384784,51.539574 +-0.213649,51.555734 +-0.388244,51.524496 +-0.347217,51.536083 +-0.246214,51.506758 +-0.308488,51.522861 +-0.058115,51.552642 +-0.381358,51.486167 +-0.083163,51.523298 +-0.10933,51.462654 +0.024657,51.440875 +-0.228237,51.463127 +-0.190351,51.467755 +0.090815,51.575154 +-0.205961,51.347521 +-0.06458,51.474028 +-0.339957,51.579485 +-0.116939,51.338534 +-0.296523,51.506655 +-0.069169,51.547411 +-0.085458,51.484056 +-0.075501,51.56622 +0.0996,51.451257 +-0.123153,51.513801 +-0.163857,51.43229 +0.015368,51.532483 +-0.3628,51.413125 +-0.336134,51.556501 +-0.006494,51.538009 +-0.142012,51.409383 +-0.072747,51.514962 +-0.140067,51.507209 +-0.308012,51.364408 +0.08144,51.597074 +-0.087316,51.659386 +-0.043459,51.548631 +-0.063751,51.616906 +-0.212474,51.496258 +0.267003,51.561801 +-0.258469,51.593087 +-0.07133,51.586358 +-0.405533,51.462012 +-0.11234,51.476911 +-0.037805,51.613283 +-0.255492,51.398825 +-0.048461,51.511278 +0.2293,51.55792 +-0.141574,51.441812 +-0.101781,51.641231 +-0.008145,51.462166 +-0.375815,51.54364 +-0.059056,51.61387 +-0.369186,51.467222 +-0.239426,51.451065 +-0.138352,51.505456 +-0.246068,51.498195 +-0.124714,51.530525 +-0.158375,51.494891 +-0.122518,51.530643 +-0.280206,51.50335 +-0.178768,51.519966 +-0.348171,51.528058 +-0.401949,51.515134 +-0.080893,51.47373 +-0.15978,51.435652 +0.079364,51.527265 +-0.29085,51.41136 +0.123801,51.531684 +-0.10088,51.599483 +0.040219,51.473951 +-0.187842,51.463489 +-0.082483,51.597781 +0.133823,51.460459 +-0.295628,51.385702 +-0.126399,51.408972 +-0.075668,51.546178 +-0.053434,51.679404 +-0.019068,51.583823 +-0.180589,51.548059 +-0.315604,51.555003 +-0.003071,51.60892 +-0.007324,51.469796 +-0.066278,51.53124 +-0.256921,51.506765 +-0.058727,51.660158 +-0.041113,51.409008 +0.251264,51.578481 +-0.11998,51.582075 +-0.07756,51.523548 +-0.05921,51.660031 +-0.285718,51.509671 +0.119117,51.612083 +0.108321,51.533043 +-0.108096,51.566894 +-0.337816,51.475108 +-0.123046,51.488683 +-0.199153,51.589656 +0.033414,51.430364 +-0.399691,51.527333 +-0.192593,51.475505 +-0.073234,51.583997 +-0.235545,51.547577 +-0.049249,51.476625 +-0.094152,51.478982 +-0.123902,51.412359 +-0.302163,51.399034 +-0.04799,51.639495 +-0.101074,51.453447 +-0.333504,51.460264 +0.002095,51.598967 +-0.221493,51.574306 +-0.141853,51.515394 +-0.048935,51.440775 +-0.217749,51.576686 +-0.064666,51.511799 +0.145267,51.47731 +-0.124343,51.470782 +-0.14238,51.536786 +-0.093746,51.393347 +-0.075614,51.487636 +-0.345549,51.544324 +0.21924,51.594558 +-0.147866,51.34775 +-0.199022,51.526501 +0.048391,51.604823 +-0.102472,51.539772 +-0.11023,51.411914 +-0.049839,51.620309 +-0.09977,51.496636 +-0.028341,51.477588 +-0.434439,51.519619 +-0.064621,51.614465 +0.102978,51.387571 +-0.14462,51.519286 +0.009634,51.411035 +-0.204331,51.522374 +-0.405167,51.548027 +-0.072645,51.45248 +-0.066811,51.644824 +-0.224642,51.505678 +-0.127177,51.511608 +-0.058431,51.659982 +-0.105121,51.425914 +-0.177193,51.49264 +-0.117605,51.484397 +-0.11135,51.518306 +-0.364845,51.52259 +-0.284883,51.558739 +-0.161992,51.434661 +-0.074896,51.549781 +-0.085088,51.550955 +-0.287966,51.62414 +-0.069722,51.588858 +-0.335532,51.480094 +-0.077073,51.451905 +-0.323218,51.5794 +-0.142425,51.591254 +-0.167592,51.5298 +-0.137701,51.540858 +-0.10843,51.565802 +0.056897,51.539289 +-0.078477,51.419842 +-0.168089,51.524592 +0.022563,51.522395 +0.217422,51.562866 +0.066457,51.487367 +-0.410471,51.518748 +-0.387798,51.47345 +0.047875,51.530733 +0.134766,51.561404 +-0.068885,51.47507 +-0.05877,51.440605 +-0.123278,51.411449 +-0.269757,51.481723 +-0.114009,51.480445 +0.132912,51.414342 +-0.197667,51.511526 +-0.075236,51.550614 +0.180807,51.571079 +-0.09569,51.488053 +-0.180714,51.399792 +-0.134666,51.431604 +-0.176089,51.511615 +-0.035745,51.534501 +0.226392,51.612948 +0.039532,51.485033 +-0.01605,51.522866 +-0.296484,51.396326 +0.104658,51.565537 +-0.054494,51.520182 +0.041258,51.580038 +-0.378981,51.532849 +0.003591,51.517109 +-0.134887,51.488665 +-0.16148,51.411578 +-0.138248,51.525327 +-0.064456,51.614589 +-0.036841,51.391931 +-0.013172,51.472386 +-0.201849,51.553522 +-0.203578,51.634443 +0.001869,51.540951 +-0.336121,51.631145 +-0.096579,51.571797 +-0.201392,51.528534 +-0.371475,51.411402 +0.039148,51.489977 +-0.229227,51.426389 +-0.107442,51.463046 +-0.192611,51.540952 +-0.05071,51.439968 +-0.266008,51.483367 +-0.410887,51.491453 +-0.132317,51.526186 +-0.257819,51.436718 +-0.245807,51.50686 +-0.0095,51.479994 +-0.139302,51.496982 +-0.122403,51.566701 +-0.234427,51.592458 +-0.159453,51.435557 +-0.017191,51.563936 +-0.191215,51.415665 +-0.176089,51.511264 +-0.301368,51.413501 +-0.169077,51.463297 +-0.140137,51.512561 +0.018562,51.406403 +0.159629,51.563009 +-0.212237,51.522189 +-0.204031,51.568078 +-0.128924,51.518929 +-0.024488,51.509078 +-0.158601,51.547177 +-0.136289,51.562336 +-0.40423,51.4548 +0.022283,51.518695 +0.069638,51.536268 +-0.040062,51.522954 +0.101212,51.579033 +-0.109242,51.617863 +-0.11514,51.495625 +0.010302,51.566715 +-0.142899,51.468748 +-0.379295,51.436662 +-0.200507,51.482955 +-0.053266,51.401845 +-0.323227,51.464568 +-0.350271,51.551332 +-0.028961,51.515637 +-0.292693,51.59672 +0.002102,51.54101 +-0.245119,51.506769 +-0.227484,51.567202 +-0.389281,51.537208 +-0.151026,51.512373 +0.117505,51.588624 +-0.072199,51.485943 +-0.033497,51.582295 +-0.094494,51.541585 +0.21899,51.606317 +-0.266984,51.465972 +-0.163571,51.424704 +-0.207049,51.421151 +-0.060023,51.561352 +0.098792,51.52807 +-0.069875,51.5454 +-0.197761,51.424003 +0.058558,51.533585 +-0.035257,51.466778 +0.202711,51.541794 +0.051252,51.539468 +-0.138894,51.331735 +-0.300232,51.370059 +-0.036903,51.593349 +0.183748,51.573129 +-0.156766,51.546186 +0.104091,51.565439 +0.011669,51.486171 +-0.099442,51.489958 +-0.365306,51.464192 +-0.375532,51.516354 +-0.211357,51.494973 +-0.257433,51.492574 +-0.114359,51.394049 +-0.11464,51.463747 +-0.047444,51.561314 +-0.180856,51.641458 +0.020378,51.561299 +0.020395,51.44049 +0.092467,51.575296 +-0.101824,51.385034 +0.01028,51.411995 +-0.013562,51.511142 +-0.130489,51.527515 +-0.199927,51.508656 +-0.197866,51.486017 +-0.136308,51.50929 +-0.122119,51.513353 +-0.21535,51.46651 +0.131857,51.57108 +-0.073696,51.482209 +-0.04187,51.586949 +-0.075361,51.517919 +-0.07269,51.58388 +-0.118221,51.58273 +-0.205106,51.456795 +-0.135236,51.462808 +-0.396727,51.533335 +-0.010917,51.523867 +-0.097803,51.498537 +-0.21808,51.457784 +-0.016806,51.590035 +-0.472914,51.511269 +-0.217799,51.479784 +-0.071811,51.515279 +0.176979,51.451608 +-0.072764,51.686116 +-0.117861,51.433035 +0.138805,51.502032 +-0.224425,51.547571 +-0.116532,51.538047 +0.130368,51.570729 +-0.289405,51.588165 +-0.174522,51.523065 +-0.160517,51.513611 +-0.014346,51.351731 +-0.450983,51.505262 +-0.06628,51.474011 +-0.06585,51.484858 +0.074147,51.551089 +-0.085594,51.606905 +-0.095139,51.52441 +-0.18622,51.462619 +-0.140091,51.425548 +0.130832,51.551017 +0.033458,51.536586 +-0.091933,51.353992 +-0.041088,51.628274 +0.07186,51.48613 +-0.05307,51.52282 +-0.244356,51.563697 +-0.095256,51.487048 +-0.115041,51.462746 +0.133875,51.449837 +-0.127548,51.631807 +-0.123853,51.502356 +-0.152041,51.606891 +-0.082788,51.57785 +-0.139109,51.539558 +-0.446627,51.449417 +-0.073397,51.582525 +-0.147371,51.438307 +-0.078329,51.605213 +-0.110446,51.333744 +-0.371479,51.532592 +-0.195946,51.527353 +-0.178508,51.442266 +-0.225774,51.46835 +-0.106527,51.373806 +-0.248939,51.513876 +-0.277176,51.467912 +-0.467051,51.504331 +-0.339653,51.533944 +-0.098999,51.57814 +-0.155828,51.518357 +-0.155016,51.538452 +0.055462,51.553513 +-0.07749,51.523142 +-0.224215,51.589984 +-0.060161,51.473982 +-0.121754,51.492448 +0.039574,51.411048 +-0.137013,51.449591 +-0.065899,51.545955 +-0.092134,51.375776 +-0.418993,51.505726 +-0.05388,51.415839 +-0.202529,51.545808 +-0.214794,51.606037 +-0.176297,51.536356 +-0.408004,51.448908 +-0.15947,51.536363 +-0.072276,51.491304 +-0.250271,51.497539 +-0.355448,51.515355 +-0.163735,51.40986 +-0.070504,51.560185 +-0.116225,51.392712 +-0.107019,51.373014 +0.01876,51.558953 +-0.25261,51.415985 +-0.215945,51.575579 +0.099714,51.37655 +-0.041029,51.682632 +0.060133,51.577073 +-0.258758,51.596095 +-0.191864,51.403571 +-0.055038,51.546989 +-0.135745,51.515666 +-0.035999,51.526582 +-0.192618,51.45556 +-0.231949,51.543979 +-0.139951,51.392498 +-0.377552,51.511409 +-0.232109,51.406856 +-0.078548,51.476083 +-0.063965,51.589483 +-0.156515,51.522406 +-0.283711,51.527015 +0.044595,51.533479 +-0.37826,51.50731 +-0.289572,51.412079 +-0.240185,51.449683 +-0.257903,51.552389 +-0.203514,51.487444 +0.13424,51.455199 +-0.359678,51.587711 +-0.21078,51.471827 +0.129879,51.561502 +0.084388,51.600592 +-0.30112,51.559686 +-0.178515,51.558809 +-0.034951,51.492663 +-0.100027,51.522997 +-0.218144,51.532971 +-0.241552,51.552999 +-0.30774,51.411111 +-0.169975,51.488706 +-0.112087,51.487239 +-0.036471,51.643529 +-0.135363,51.61142 +-0.14707,51.546294 +-0.071684,51.385765 +-0.291224,51.533123 +-0.326524,51.578179 +-0.106341,51.620568 +-0.177589,51.491018 +-0.018972,51.528275 +-0.024545,51.44444 +-0.053986,51.648974 +-0.104685,51.501787 +0.096878,51.546027 +-0.029646,51.517124 +0.009628,51.486925 +-0.190295,51.538632 +-0.302968,51.374946 +0.011764,51.456583 +0.184364,51.449825 +0.010206,51.445693 +-0.165246,51.497786 +-0.329329,51.500481 +-0.173563,51.643476 +-0.065884,51.424455 +0.131044,51.583325 +-0.094749,51.661404 +-0.075666,51.546241 +-0.14879,51.472591 +-0.067562,51.44334 +0.107879,51.533159 +-0.125239,51.432407 +-0.155749,51.520334 +0.104025,51.550251 +-0.301893,51.419506 +-0.159916,51.547476 +-0.101158,51.586583 +-0.251808,51.50668 +0.006377,51.440749 +-0.111272,51.531694 +-0.396131,51.432083 +0.139735,51.463427 +-0.017461,51.503978 +-0.28111,51.406119 +-0.237569,51.493293 +-0.159127,51.513418 +-0.149868,51.518911 +-0.127704,51.507192 +-0.128686,51.435699 +-0.039077,51.682258 +-0.373092,51.484506 +-0.191065,51.469708 +-0.167098,51.520548 +-0.121873,51.507072 +-0.076926,51.595694 +-0.173741,51.467623 +-0.003099,51.423429 +-0.282265,51.561974 +-0.141011,51.55234 +-0.085775,51.451697 +-0.009418,51.552294 +0.032459,51.595046 +-0.06334,51.639785 +-0.23722,51.506462 +-0.257903,51.470046 +-0.182248,51.536116 +-0.01817,51.481328 +-0.306532,51.500577 +0.140787,51.578705 +-0.256489,51.465214 +0.013058,51.383899 +-0.23105,51.490893 +-0.077361,51.523815 +-0.21956,51.421594 +0.030169,51.465879 +-0.104725,51.546993 +-0.004827,51.591271 +-0.136365,51.434041 +-0.148617,51.614741 +-0.10875,51.480495 +-0.071841,51.515253 +-0.073444,51.417089 +-0.072322,51.573811 +-0.410991,51.491778 +-0.183999,51.481946 +-0.130939,51.518629 +-0.050496,51.468651 +0.110185,51.461696 +-0.467677,51.533339 +-0.183545,51.567996 +-0.149608,51.651086 +-0.257472,51.465102 +-0.019533,51.59072 +-0.142904,51.493424 +-0.097762,51.476684 +-0.13079,51.4254 +-0.237243,51.570047 +-0.147595,51.45233 +-0.328197,51.446745 +-0.412628,51.464563 +-0.165618,51.498565 +-0.090104,51.564471 +-0.162888,51.533845 +-0.147402,51.346807 +-0.029101,51.589478 +-0.135157,51.472168 +-0.193388,51.555559 +-0.020926,51.527759 +-0.07684,51.474239 +0.023066,51.529859 +-0.203474,51.392023 +-0.038959,51.478144 +-0.19216,51.501378 +0.212427,51.59252 +-0.062998,51.526645 +-0.163915,51.432264 +-0.159355,51.514186 +-0.015535,51.472363 +-0.118417,51.365212 +-0.352685,51.603871 +-0.100416,51.562139 +-0.229714,51.571831 +-0.012698,51.564076 +-0.179868,51.459463 +-0.152021,51.5031 +-0.160328,51.515442 +-0.129973,51.484163 +-0.160466,51.592465 +-0.171076,51.520556 +0.031873,51.517171 +-0.021113,51.552042 +-0.11165,51.479688 +0.116794,51.448025 +0.222729,51.500346 +-0.124172,51.486525 +-0.371123,51.574068 +-0.043962,51.474297 +-0.149636,51.523196 +0.005788,51.583815 +-0.129436,51.430729 +0.250285,51.558949 +0.163218,51.476557 +-0.45886,51.48106 +-0.399671,51.555865 +-0.151536,51.645271 +-0.194572,51.480076 +0.0664,51.576828 +0.051357,51.441355 +-0.05972,51.53222 +-0.391445,51.525709 +-0.136856,51.540008 +0.121816,51.460128 +-0.02632,51.481025 +-0.11104,51.490963 +-0.146388,51.542137 +-0.116909,51.357832 +-0.293802,51.554391 +-0.168519,51.370718 +-0.176783,51.472931 +0.011607,51.634172 +-0.104835,51.590141 +0.037161,51.481909 +0.006054,51.537417 +-0.18071,51.465079 +-0.124879,51.530726 +0.06739,51.552845 +0.060724,51.555049 +-0.016607,51.602217 +-0.25004,51.559583 +-0.128413,51.511349 +-0.326731,51.602425 +-0.131228,51.427368 +-0.086416,51.340953 +-0.160753,51.536006 +-0.137042,51.461596 +-0.282597,51.550487 +-0.069966,51.477084 +-0.052169,51.520638 +0.04308,51.600716 +-0.334836,51.581373 +-0.073357,51.509055 +-0.17792,51.53256 +-0.01762,51.444503 +0.07155,51.515173 +-0.116951,51.556173 +-0.021642,51.474301 +-0.241506,51.4018 +-0.099987,51.476846 +-0.003339,51.424512 +-0.068457,51.55061 +-0.178539,51.412555 +-0.212947,51.505528 +0.220008,51.564697 +-0.109604,51.61054 +-0.134591,51.566104 +-0.415409,51.566653 +-0.218686,51.576691 +-0.139407,51.460797 +-0.138205,51.461669 +-0.105784,51.565238 +0.014372,51.444875 +-0.120787,51.334675 +-0.483379,51.547634 +-0.294496,51.596008 +-0.105894,51.547659 +-0.248057,51.465088 +-0.085019,51.406811 +-0.408022,51.517456 +-0.294688,51.447314 +-0.393474,51.502052 +-0.059756,51.430927 +0.061485,51.575071 +0.161209,51.471225 +-0.12898,51.421828 +0.065662,51.556095 +-0.197301,51.486845 +-0.041888,51.512967 +-0.151557,51.432267 +0.18054,51.477405 +-0.069666,51.515919 +-0.07534,51.48729 +-0.194575,51.371248 +-0.375524,51.514546 +-0.13336,51.572928 +-0.196633,51.420137 +-0.096461,51.630903 +-0.132191,51.59896 +0.053553,51.538682 +0.232988,51.548371 +0.147372,51.531615 +-0.073392,51.517428 +-0.169367,51.466107 +-0.075926,51.545211 +-0.129497,51.488741 +-0.259699,51.5522 +-0.068798,51.362831 +-0.074585,51.555783 +-0.12389,51.332521 +-0.059509,51.564284 +-0.137736,51.369513 +-0.119491,51.557914 +-0.122677,51.613277 +-0.133529,51.396308 +-0.169842,51.426151 +-0.123475,51.586924 +-0.117734,51.484426 +-0.055437,51.527482 +0.197971,51.536505 +-0.196828,51.596599 +-0.096357,51.36749 +-0.474598,51.537224 +-0.403988,51.477835 +-0.028756,51.507684 +-0.167045,51.460819 +0.042939,51.60079 +-0.051574,51.5008 +-0.037964,51.43757 +-0.291849,51.49138 +-0.258517,51.399059 +0.066548,51.483957 +-0.102828,51.378126 +-0.30003,51.634926 +-0.151584,51.50607 +-0.029753,51.543033 +0.100138,51.531301 +-0.2324,51.485401 +-0.17576,51.555574 +0.114058,51.551663 +-0.131234,51.513184 +-0.031106,51.568145 +-0.103209,51.495693 +-0.008293,51.508031 +-0.02233,51.670872 +-0.29255,51.462192 +0.043714,51.58557 +-0.06963,51.450946 +0.039465,51.546113 +-0.017745,51.433642 +-0.095792,51.598213 +-0.086665,51.473455 +-0.26578,51.584212 +-0.168101,51.537937 +0.080993,51.480752 +-0.029877,51.575885 +-0.034027,51.680303 +-0.248332,51.465065 +-0.165983,51.517105 +-0.062705,51.649954 +-0.19787,51.482267 +-0.218987,51.576749 +-0.165601,51.522665 +-0.05276,51.472969 +-0.410734,51.560035 +-0.054962,51.514291 +-0.167325,51.529616 +-0.168397,51.521243 +-0.171738,51.52634 +-0.20952,51.553972 +-0.038214,51.598785 +-0.090345,51.46464 +-0.106209,51.532791 +-0.139271,51.500569 +-0.001185,51.512712 +-0.193625,51.60199 +-0.012556,51.463697 +-0.375661,51.511104 +-0.107077,51.536896 +-0.099078,51.364927 +-0.046235,51.479416 +-0.111236,51.387848 +-0.479742,51.603526 +-0.412379,51.574103 +-0.071947,51.515147 +-0.129649,51.423053 +-0.080498,51.526681 +-0.235391,51.506416 +-0.219446,51.560201 +-0.215935,51.408661 +-0.373904,51.481918 +-0.13692,51.417566 +-0.124436,51.480432 +-0.250628,51.519441 +-0.07653,51.540806 +-0.070793,51.511738 +0.165542,51.582072 +-0.082901,51.457099 +-0.286258,51.553238 +-0.12372,51.553656 +-0.022059,51.533893 +0.059221,51.450795 +-0.185186,51.461848 +0.070143,51.558525 +-0.028688,51.530641 +-0.234459,51.532408 +-0.04491,51.490518 +-0.034261,51.518064 +-0.056956,51.537516 +-0.234089,51.451758 +-0.147588,51.438634 +0.068734,51.500744 +0.067733,51.557542 +-0.00537,51.535346 +-0.198199,51.480132 +-0.115932,51.461034 +-0.143516,51.608762 +0.073489,51.486155 +-0.187997,51.614223 +-0.118267,51.612361 +0.098575,51.419179 +-0.142152,51.632624 +0.08518,51.490138 +0.024723,51.522358 +-0.159119,51.409131 +-0.111677,51.600601 +-0.094406,51.480847 +-0.259108,51.543513 +-0.061008,51.511064 +-0.037349,51.512631 +-0.168015,51.334757 +-0.216087,51.595904 +-0.157943,51.498445 +-0.163177,51.528445 +0.232071,51.598281 +-0.267376,51.600683 +-0.07353,51.509049 +-0.162,51.417971 +-0.143498,51.319398 +-0.048383,51.473966 +-0.214518,51.444295 +-0.115358,51.503614 +-0.123493,51.478853 +-0.088354,51.653261 +-0.143973,51.490878 +-0.095991,51.488769 +-0.217867,51.479884 +-0.239211,51.411387 +-0.259833,51.436335 +-0.174515,51.42189 +0.070044,51.411314 +0.148191,51.452813 +-0.044303,51.49495 +0.151899,51.452691 +-0.019577,51.615935 +-0.11964,51.582259 +-0.019474,51.520702 +-0.066029,51.584715 +-0.168596,51.485366 +-0.118709,51.489774 +0.00443,51.544756 +-0.196688,51.576076 +-0.19539,51.509324 +-0.250129,51.613637 +-0.172474,51.398046 +-0.19571,51.539903 +-0.099523,51.530264 +-0.056024,51.410731 +0.08115,51.536703 +-0.126105,51.632099 +-0.17732,51.418975 +0.054567,51.519563 +-0.168179,51.427807 +-0.057352,51.534672 +0.020874,51.420689 +-0.322689,51.438384 +-0.407514,51.498143 +-0.163827,51.439492 +-0.211411,51.510531 +-0.057237,51.548204 +-0.126751,51.515675 +-0.367212,51.472113 +-0.247182,51.557373 +-0.040581,51.517918 +-0.019063,51.465705 +-0.184425,51.594061 +-0.070261,51.47762 +-0.122308,51.535046 +-0.223547,51.448209 +0.093422,51.545819 +0.181868,51.568533 +-0.130548,51.464802 +-0.05106,51.477383 +-0.098522,51.363794 +-0.334403,51.470753 +0.00721,51.443352 +-0.159532,51.588062 +-0.234729,51.547402 +-0.019629,51.670808 +-0.133356,51.499702 +-0.445402,51.553656 +-0.236336,51.532337 +-0.10888,51.561214 +-0.007117,51.510538 +-0.158287,51.442373 +-0.030409,51.578601 +-0.091726,51.503303 +-0.292392,51.530811 +-0.062858,51.518405 +-0.182742,51.484948 +-0.457303,51.55063 +-0.21326,51.492736 +-0.068484,51.516942 +-0.021769,51.431749 +-0.104664,51.575534 +0.006516,51.485603 +-0.113889,51.518257 +-0.016532,51.431769 +-0.287794,51.413483 +-0.386722,51.429643 +-0.154192,51.613318 +0.101737,51.499654 +-0.262018,51.392034 +-0.132406,51.493707 +-0.03679,51.587592 +0.1133,51.413492 +-0.107047,51.528218 +-0.33042,51.429583 +-0.323524,51.479626 +-0.361131,51.565386 +-0.252389,51.512588 +-0.114278,51.345667 +-0.16432,51.4071 +0.043953,51.579307 +-0.046295,51.414283 +0.119064,51.447957 +-0.208764,51.47551 +-0.044177,51.532214 +-0.45044,51.541655 +-0.345494,51.543037 +-0.076266,51.41941 +-0.479793,51.608032 +-0.078442,51.52724 +0.03584,51.367435 +-0.121623,51.433914 +0.101668,51.499421 +-0.229485,51.40705 +-0.290357,51.38023 +0.032165,51.518884 +0.143525,51.479779 +-0.254189,51.540895 +-0.175771,51.440533 +-0.168299,51.518651 +-0.066533,51.392389 +-0.108257,51.6214 +-0.19398,51.415573 +-0.115997,51.502796 +-0.048146,51.476139 +-0.253267,51.554424 +-0.079109,51.489465 +-0.082713,51.491808 +-0.016955,51.450894 +-0.102058,51.621102 +-0.057157,51.514507 +-0.018586,51.579652 +-0.104169,51.391583 +-0.119815,51.587468 +-0.21038,51.472109 +-0.074884,51.581848 +-0.110307,51.483937 +-0.338709,51.475094 +-0.083689,51.574627 +-0.210527,51.38661 +-0.109595,51.612851 +-0.399042,51.431116 +-0.206527,51.517471 +-0.269948,51.513208 +-0.010579,51.44129 +-0.199089,51.508724 +-0.105526,51.592265 +-0.06919,51.498528 +-0.161882,51.437393 +0.066842,51.576389 +0.224063,51.586877 +0.145181,51.572707 +-0.275623,51.413224 +-0.13871,51.592796 +-0.098175,51.492015 +-0.061471,51.495397 +-0.160876,51.611984 +-0.297275,51.545998 +-0.148335,51.546026 +0.006375,51.557169 +0.056046,51.455734 +-0.113027,51.340818 +-0.197414,51.504049 +-0.219394,51.485033 +0.040228,51.548348 +-0.120972,51.559781 +-0.389782,51.441222 +-0.14125,51.565931 +-0.189732,51.384744 +-0.352506,51.526967 +-0.013763,51.580361 +-0.015581,51.670425 +-0.08034,51.524277 +-0.360601,51.444433 +-0.051026,51.628691 +-0.00371,51.543294 +-0.00501,51.5149 +0.198456,51.565111 +-0.030073,51.59971 +-0.05675,51.559958 +-0.146146,51.394269 +-0.179207,51.561005 +-0.165331,51.518605 +-0.153345,51.608566 +0.058665,51.43683 +-0.133312,51.473632 +-0.016911,51.45057 +0.066767,51.5547 +0.052197,51.450792 +-0.088336,51.506153 +-0.004892,51.535725 +-0.025757,51.527058 +-0.21098,51.388991 +-0.211838,51.597467 +-0.025097,51.410304 +-0.125441,51.515996 +-0.118145,51.597144 +-0.141479,51.508644 +-0.158975,51.394471 +-0.250302,51.538859 +-0.010313,51.481501 +-0.099077,51.367732 +-0.353053,51.45385 +-0.008849,51.50849 +-0.066373,51.629656 +-0.032728,51.454604 +-0.231342,51.586387 +-0.060573,51.509429 +-0.332836,51.513732 +-0.200613,51.545374 +-0.102258,51.611798 +-0.019335,51.618179 +-0.090618,51.487755 +-0.140775,51.52981 +-0.095533,51.540882 +-0.331961,51.445332 +-0.023509,51.665047 +-0.084606,51.526361 +-0.085371,51.503317 +-0.085033,51.494184 +-0.187835,51.392745 +-0.16181,51.496869 +-0.22511,51.542941 +-0.132808,51.470108 +0.145544,51.53137 +-0.335216,51.421495 +-0.13402,51.513435 +-0.040625,51.350789 +-0.1718,51.552877 +-0.078189,51.497975 +-0.424014,51.501351 +-0.182206,51.400229 +-0.372681,51.447065 +-0.285859,51.553106 +0.117726,51.444537 +-0.271568,51.492864 +0.041656,51.576038 +-0.147867,51.348101 +-0.296534,51.512931 +-0.014554,51.529747 +-0.262422,51.616993 +0.069532,51.491639 +-0.140729,51.634193 +-0.052032,51.642979 +-0.029024,51.512167 +-0.066591,51.619093 +-0.414171,51.533383 +0.014637,51.446327 +-0.383693,51.427011 +-0.453567,51.43995 +-0.087956,51.526227 +-0.074575,51.509902 +0.220831,51.500444 +-0.019361,51.602659 +-0.071737,51.614906 +-0.112753,51.473896 +0.026007,51.545096 +-0.448922,51.551086 +-0.190352,51.53465 +0.004143,51.336731 +-0.079423,51.523803 +0.212487,51.592573 +-0.315695,51.369536 +-0.212839,51.55467 +-0.14171,51.389181 +0.147062,51.555362 +-0.147738,51.468708 +-0.339131,51.455928 +-0.176172,51.47454 +-0.114241,51.336413 +0.161436,51.460187 +-0.108294,51.441388 +-0.41536,51.496639 +-0.116433,51.502363 +-0.055638,51.527521 +-0.338653,51.602954 +-0.068026,51.605367 +-0.360715,51.46375 +-0.419715,51.467356 +-0.002351,51.483092 +-0.407307,51.449914 +-0.19265,51.610922 +-0.178287,51.466633 +-0.3296,51.448896 +-0.076696,51.536852 +-0.36341,51.5646 +-0.126984,51.437929 +-0.173401,51.461719 +-0.302912,51.444808 +-0.081983,51.652141 +-0.045521,51.522038 +-0.024137,51.413219 +-0.378721,51.470349 +-0.111273,51.481822 +0.041199,51.545858 +-0.274523,51.567166 +-0.129998,51.57818 +-0.200334,51.482611 +0.185987,51.526243 +-0.375164,51.56354 +-0.281341,51.584585 +-0.220484,51.414468 +-0.344093,51.458831 +0.104266,51.478871 +-0.133677,51.443872 +-0.412998,51.560902 +-0.106331,51.522191 +0.007539,51.597013 +-0.026435,51.541395 +-0.138177,51.630879 +-0.033864,51.458976 +-0.206749,51.490892 +0.025449,51.584161 +-0.314944,51.553348 +-0.121953,51.581127 +-0.24181,51.493528 +-0.188382,51.614732 +-0.197812,51.480441 +-0.197274,51.509793 +-0.104014,51.435303 +0.034904,51.409817 +-0.118606,51.512577 +-0.060355,51.624727 +-0.235193,51.492898 +-0.061665,51.621791 +-0.142818,51.591539 +0.109784,51.389616 +-0.192981,51.509772 +-0.20701,51.496364 +0.032422,51.543411 +-0.000865,51.607849 +-0.062533,51.634646 +-0.011449,51.557985 +-0.190411,51.361697 +-0.205905,51.560805 +-0.378152,51.507101 +-0.269073,51.406167 +-0.139938,51.53762 +-0.065545,51.452228 +-0.096927,51.53997 +-0.11594,51.463993 +-0.048732,51.504925 +-0.436521,51.497112 +-0.108219,51.594179 +-0.166109,51.46084 +-0.169341,51.371019 +-0.298777,51.365119 +-0.220087,51.516814 +0.08966,51.352665 +-0.080957,51.540123 +-0.111508,51.536096 +0.096455,51.35177 +-0.285027,51.46933 +-0.177682,51.545361 +-0.135056,51.418481 +-0.095324,51.415926 +-0.1952,51.600153 +-0.282361,51.585086 +-0.300148,51.454515 +-0.066087,51.571461 +0.143309,51.455511 +0.127698,51.570085 +-0.286868,51.478233 +-0.221122,51.546828 +-0.145999,51.533948 +-0.098996,51.491677 +-0.130338,51.516425 +0.014677,51.517495 +-0.277968,51.539781 +0.046901,51.529589 +-0.055708,51.514357 +-0.456258,51.470658 +0.209092,51.593419 +-0.022569,51.639159 +-0.203638,51.496393 +0.137076,51.42807 +-0.231325,51.547054 +-0.093187,51.473481 +-0.235067,51.587486 +-0.110143,51.477109 +-0.150559,51.361488 +-0.016556,51.603385 +-0.110043,51.597185 +-0.37727,51.435762 +-0.351941,51.447144 +-0.17625,51.634867 +0.070748,51.556599 +-0.222179,51.491577 +-0.183294,51.481197 +-0.185214,51.522799 +-0.03007,51.599772 +-0.397905,51.496906 +-0.150055,51.485821 +-0.419312,51.475678 +0.165894,51.543037 +0.052923,51.517317 +-0.073083,51.577331 +0.030053,51.502185 +-0.268239,51.601154 +0.054498,51.533081 +-0.232809,51.566797 +-0.07227,51.564135 +-0.098031,51.375638 +-0.09789,51.353379 +-0.337044,51.5553 +-0.33961,51.60759 +-0.21929,51.504338 +-0.353757,51.572207 +0.044667,51.374988 +-0.161522,51.411606 +0.168152,51.520136 +-0.11281,51.44111 +-0.283497,51.589032 +-0.068706,51.597852 +-0.048499,51.388537 +-0.098916,51.470049 +0.017845,51.419527 +-0.014391,51.616945 +0.109246,51.387908 +-0.099584,51.492082 +-0.024123,51.41321 +-0.148279,51.478114 +-0.230362,51.536537 +-0.179034,51.560642 +-0.043648,51.51395 +-0.183534,51.586017 +-0.200269,51.492673 +-0.152616,51.501913 +-0.000422,51.543958 +-0.253854,51.394269 +-0.253218,51.394763 +0.0262,51.583212 +-0.152572,51.514052 +0.014591,51.446256 +-0.116873,51.398982 +-0.079354,51.579889 +-0.067881,51.526078 +-0.172904,51.448923 +0.176837,51.523932 +-0.147292,51.557502 +-0.397032,51.575962 +-0.160866,51.501728 +-0.012352,51.365942 +-0.272843,51.492685 +-0.16234,51.427077 +-0.158289,51.436582 +-0.152622,51.465062 +0.06475,51.568764 +-0.202478,51.450046 +-0.072224,51.583989 +-0.159606,51.588027 +-0.16928,51.426898 +0.029263,51.525894 +-0.206502,51.507111 +-0.184059,51.523213 +0.038194,51.518635 +-0.015105,51.472967 +-0.292726,51.531904 +-0.069116,51.594981 +-0.278363,51.611042 +-0.183351,51.481225 +-0.150875,51.503289 +-0.227774,51.452769 +-0.093468,51.565443 +-0.047559,51.515849 +0.018395,51.557241 +-0.291426,51.51694 +-0.005979,51.541211 +-0.344768,51.538818 +-0.075197,51.537187 +-0.206559,51.490224 +-0.211647,51.558599 +-0.164351,51.405248 +0.218638,51.583383 +-0.0654,51.463844 +-0.107304,51.600207 +-0.019515,51.584829 +-0.137913,51.542363 +0.025511,51.453352 +-0.068199,51.473926 +-0.168807,51.427214 +-0.207034,51.496112 +-0.381895,51.46854 +-0.262439,51.519274 +-0.117305,51.371291 +-0.155603,51.440047 +-0.101912,51.464818 +-0.030379,51.671025 +-0.258262,51.609064 +0.048698,51.437895 +0.225942,51.524602 +-0.115892,51.46097 +0.066687,51.451671 +-0.100556,51.494364 +-0.254479,51.642935 +-0.07408,51.479589 +-0.004251,51.472234 +-0.339898,51.604456 +-0.158224,51.515787 +-0.191575,51.509957 +-0.047254,51.543524 +-0.2083,51.555293 +-0.032589,51.346608 +-0.076162,51.606256 +-0.131215,51.475604 +0.002873,51.540179 +-0.180508,51.592363 +-0.063864,51.473926 +-0.282262,51.486978 +0.038495,51.448513 +-0.183644,51.433245 +-0.116248,51.555748 +-0.268906,51.608682 +-0.219933,51.532216 +-0.141719,51.573906 +-0.323881,51.513478 +-0.021939,51.44481 +-0.026436,51.481018 +-0.235557,51.498406 +0.055059,51.550993 +-0.392513,51.433112 +-0.290461,51.411759 +-0.007058,51.472597 +0.180762,51.45035 +-0.115541,51.527824 +-0.121199,51.558822 +0.177253,51.480353 +-0.292417,51.52859 +-0.075179,51.550604 +-0.044879,51.520886 +-0.161691,51.611808 +-0.09457,51.522171 +-0.151038,51.507814 +-0.256299,51.591311 +-0.171484,51.479773 +-0.242884,51.567848 +0.073533,51.552809 +-0.055139,51.631511 +-0.070131,51.477618 +0.183969,51.577145 +-0.135599,51.462733 +0.102547,51.434261 +0.099539,51.453083 +-0.010705,51.478774 +-0.315868,51.511529 +-0.122562,51.410305 +0.047888,51.46031 +0.075864,51.59131 +-0.333973,51.426828 +0.183293,51.46328 +0.074714,51.534371 +-0.179925,51.459482 +-0.16843,51.518609 +0.102545,51.531924 +-0.272413,51.544798 +0.026312,51.617508 +-0.167469,51.518144 +-0.226966,51.516702 +-0.040484,51.488942 +-0.070807,51.594937 +-0.067657,51.584463 +-0.074998,51.489253 +-0.142821,51.632167 +-0.195628,51.553633 +-0.056007,51.489722 +-0.20276,51.41426 +-0.126566,51.50507 +0.09409,51.527399 +-0.049737,51.453351 +-0.111311,51.570803 +-0.070646,51.485558 +-0.104485,51.50521 +-0.145831,51.454658 +-0.07731,51.363654 +-0.130815,51.517098 +0.114617,51.612533 +-0.480932,51.463004 +-0.395588,51.484941 +0.045474,51.492915 +-0.287775,51.532056 +-0.302681,51.378035 +-0.239012,51.49996 +-0.205919,51.493317 +-0.076888,51.478241 +0.118665,51.527263 +-0.123706,51.580966 +-0.129328,51.527694 +-0.051172,51.547015 +-0.026968,51.443321 +-0.147289,51.516028 +-0.405649,51.426044 +0.114364,51.541792 +-0.225954,51.582772 +-0.047735,51.523523 +-0.054217,51.608808 +-0.020251,51.439916 +-0.030414,51.568457 +-0.12128,51.580648 +0.070963,51.58164 +-0.342025,51.579757 +0.113359,51.449076 +0.162881,51.475205 +-0.189004,51.519557 +-0.124162,51.501165 +-0.326214,51.577608 +0.002126,51.581953 +0.008749,51.542605 +-0.26526,51.519379 +-0.181375,51.437832 +-0.035145,51.524994 +-0.161298,51.423275 +-0.20951,51.521158 +-0.175026,51.649514 +-0.101515,51.477519 +-0.251061,51.59465 +-0.006791,51.545397 +0.152793,51.530077 +-0.06087,51.537724 +-0.061114,51.51468 +-0.184746,51.462039 +0.035434,51.474502 +-0.282087,51.585459 +-0.057311,51.533583 +-0.087411,51.372579 +-0.22257,51.445218 +-0.304881,51.395495 +-0.162351,51.437904 +-0.250289,51.528653 +0.037688,51.53055 +-0.349858,51.471789 +-0.188788,51.609604 +-0.187068,51.362329 +-0.187592,51.646517 +-0.078332,51.500054 +-0.095011,51.616186 +-0.123971,51.486522 +-0.161926,51.416226 +-0.104661,51.500977 +-0.160717,51.522588 +-0.249346,51.513792 +-0.102993,51.399837 +-0.059008,51.34534 +0.076643,51.601125 +-0.065112,51.570968 +-0.128962,51.408888 +-0.020507,51.441971 +-0.116779,51.535884 +-0.190886,51.469148 +-0.197287,51.509838 +0.025723,51.41163 +-0.183495,51.47362 +0.149025,51.544355 +0.139963,51.522731 +-0.0655,51.589355 +-0.054039,51.347029 +-0.048589,51.532899 +-0.090239,51.504754 +0.052207,51.552347 +-0.025813,51.57008 +-0.151084,51.374131 +-0.149896,51.502554 +-0.21672,51.491557 +-0.057335,51.58788 +-0.121508,51.612908 +-0.216641,51.416756 +-0.180247,51.517956 +-0.060268,51.564072 +-0.119395,51.455235 +-0.197718,51.525941 +-0.352374,51.527451 +-0.281203,51.379458 +-0.337397,51.526206 +0.113645,51.549611 +0.237681,51.60901 +-0.082263,51.569757 +-0.150424,51.36127 +0.045351,51.492746 +-0.202391,51.485232 +-0.000433,51.539435 +0.083393,51.571905 +-0.227033,51.371915 +0.09417,51.52693 +-0.146537,51.419823 +0.283136,51.575086 +-0.472586,51.512038 +-0.234229,51.572978 +0.192953,51.471373 +-0.154523,51.50322 +-0.166549,51.640732 +-0.111119,51.490785 +0.12338,51.473661 +-0.173175,51.541955 +0.190163,51.573279 +-0.445049,51.528887 +0.13691,51.449171 +-0.024587,51.472129 +-0.233012,51.584263 +-0.481051,51.547397 +-0.480606,51.547319 +-0.110647,51.48897 +-0.419307,51.526214 +0.055636,51.450759 +-0.105137,51.642203 +0.022897,51.529943 +-0.200522,51.482947 +-0.192649,51.548012 +-0.422871,51.548635 +-0.301579,51.41711 +-0.064821,51.613147 +-0.274083,51.621446 +-0.147871,51.450491 +-0.084364,51.473724 +-0.130883,51.514015 +-0.183808,51.550888 +0.00926,51.542749 +-0.190491,51.647748 +-0.211947,51.447124 +-0.213187,51.554999 +-0.162505,51.651369 +-0.153949,51.44217 +-0.081255,51.41085 +-0.249653,51.5475 +-0.218958,51.534296 +-0.022573,51.444784 +-0.390575,51.535652 +0.012523,51.517667 +-0.286231,51.421805 +0.004758,51.524328 +-0.096079,51.488752 +0.018201,51.558054 +0.117628,51.488127 +-0.354881,51.518278 +-0.121112,51.55883 +-0.221194,51.486904 +0.206708,51.576404 +-0.002449,51.458777 +0.019435,51.43602 +0.192902,51.565125 +0.063994,51.57661 +0.162877,51.475125 +-0.387867,51.494367 +0.01706,51.416717 +-0.179818,51.439373 +-0.094134,51.47078 +-0.084493,51.426271 +-0.163587,51.549791 +0.021038,51.608696 +0.064618,51.52222 +-0.079872,51.648384 +0.029034,51.489936 +-0.17596,51.511604 +0.110827,51.56664 +-0.137952,51.330174 +-0.13158,51.489584 +-0.306453,51.459552 +-0.152237,51.497393 +-0.382777,51.501014 +-0.06958,51.387259 +-0.040774,51.376232 +-0.068158,51.684188 +-0.440401,51.452652 +-0.094181,51.586002 +-0.050089,51.521071 +0.024202,51.529462 +-0.068739,51.514986 +-0.003422,51.581166 +-0.19952,51.589869 +0.018783,51.419916 +-0.121105,51.558299 +-0.210363,51.55233 +-0.171827,51.363054 +0.2016,51.574324 +-0.070082,51.541186 +-0.328206,51.44688 +-0.265679,51.527712 +-0.187256,51.481528 +-0.080953,51.652214 +-0.332432,51.585151 +0.054191,51.469238 +0.154859,51.597917 +-0.085934,51.556562 +0.009225,51.350826 +-0.091276,51.397776 +0.180408,51.603758 +-0.362697,51.479154 +-0.125199,51.492728 +-0.4219,51.444087 +-0.489725,51.472676 +-0.200107,51.589626 +-0.212672,51.459887 +-0.242004,51.401546 +-0.008342,51.571304 +-0.259914,51.561321 +-0.054639,51.603339 +0.045383,51.550083 +-0.197394,51.508941 +-0.22894,51.489962 +-0.079801,51.497686 +-0.061932,51.514748 +-0.141207,51.573709 +0.018628,51.398776 +-0.101316,51.543305 +-0.086232,51.581071 +-0.050629,51.509777 +0.137996,51.601957 +-0.357472,51.443804 +-0.13894,51.529916 +-0.117359,51.338109 +-0.157417,51.546502 +-0.210938,51.527025 +-0.124195,51.446293 +0.181808,51.450556 +0.054985,51.535248 +-0.278151,51.539505 +0.131635,51.490418 +-0.043209,51.423926 +-0.125211,51.484384 +0.10378,51.429482 +-0.178206,51.527906 +0.051849,51.532534 +0.00894,51.536145 +-0.356877,51.470009 +-0.295733,51.593428 +-0.071135,51.5872 +-0.005027,51.504289 +0.096588,51.535636 +-0.406746,51.518113 +-0.056724,51.653236 +-0.05852,51.594941 +-0.005205,51.425596 +-0.084437,51.413177 +-0.137821,51.461905 +-0.327265,51.532851 +0.04202,51.456878 +-0.068049,51.598362 +0.175816,51.568105 +-0.216722,51.484498 +-0.148238,51.353133 +0.005081,51.549385 +0.008816,51.416984 +0.15142,51.454436 +-0.124516,51.444427 +-0.197556,51.401797 +-0.127715,51.43518 +-0.178595,51.519612 +-0.093123,51.501249 +0.073224,51.526645 +-0.114266,51.345595 +0.149579,51.561305 +-0.070701,51.513921 +-0.11099,51.491817 +-0.290571,51.559389 +0.0277,51.440706 +0.127634,51.540293 +0.113177,51.405535 +0.044085,51.576787 +0.194086,51.585229 +-0.01922,51.584986 +0.017652,51.545015 +-0.108291,51.586528 +-0.302028,51.513991 +-0.191427,51.552264 +-0.310981,51.412542 +0.07221,51.525278 +-0.009091,51.457308 +0.021515,51.545929 +0.182802,51.580494 +-0.412073,51.443217 +-0.122746,51.474605 +-0.28924,51.584098 +-0.080435,51.477094 +0.053684,51.534228 +-0.214112,51.59029 +-0.423429,51.611326 +-0.005972,51.578979 +-0.082748,51.652162 +-0.325789,51.483453 +-0.355864,51.573819 +0.022029,51.523681 +-0.136567,51.458765 +-0.077339,51.523652 +-0.053607,51.42632 +0.194031,51.471335 +-0.002053,51.571575 +-0.075859,51.545417 +-0.460966,51.502345 +0.060902,51.520684 +-0.269915,51.513324 +-0.361261,51.558176 +-0.015458,51.333639 +-0.142527,51.51652 +-0.052452,51.632492 +-0.041363,51.48322 +-0.1498,51.475764 +-0.057226,51.47325 +-0.011431,51.527302 +0.036794,51.404784 +-0.012032,51.527725 +-0.09562,51.504931 +-0.168006,51.497218 +-0.155904,51.581413 +-0.186476,51.452183 +-0.194759,51.359993 +-0.129396,51.454946 +-0.182201,51.493842 +0.020306,51.556084 +0.066339,51.557027 +0.071759,51.558218 +-0.133534,51.515091 +-0.275647,51.4038 +-0.202597,51.449949 +-0.118787,51.491726 +-0.049065,51.682461 +-0.106604,51.542716 +-0.055593,51.514688 +0.001744,51.498319 +-0.126957,51.516964 +0.054229,51.537042 +0.098735,51.479159 +-0.058451,51.549501 +-0.077297,51.656282 +-0.369301,51.572559 +-0.087716,51.483427 +-0.150342,51.551669 +-0.124202,51.486157 +-0.129997,51.512768 +-0.171206,51.542158 +0.153827,51.46307 +-0.225604,51.587308 +-0.017951,51.447827 +-0.184406,51.375156 +0.121967,51.460584 +-0.135627,51.58594 +-0.132695,51.463694 +0.181521,51.57907 +-0.314249,51.511668 +-0.136547,51.513313 +-0.087263,51.602931 +-0.360492,51.551871 +-0.176786,51.616819 +-0.050107,51.5193 +-0.487907,51.494117 +-0.033864,51.458985 +-0.055586,51.628812 +0.017949,51.525964 +-0.281261,51.584395 +-0.126741,51.571392 +-0.345793,51.432094 +0.129327,51.550604 +-0.067534,51.473987 +-0.053018,51.426301 +-0.45331,51.497389 +0.119447,51.488535 +-0.393122,51.530085 +-0.129203,51.51316 +0.06582,51.57646 +-0.210989,51.453962 +-0.112287,51.521792 +-0.143776,51.63318 +-0.397394,51.530764 +-0.079316,51.61468 +0.054958,51.603764 +0.188616,51.582544 +-0.113357,51.558319 +-0.305697,51.548737 +-0.103042,51.546183 +-0.11478,51.369821 +-0.159799,51.497098 +-0.324223,51.536746 +-0.111681,51.479616 +-0.056672,51.546234 +-0.078525,51.629648 +-0.041469,51.612382 +-0.348681,51.470514 +-0.109211,51.532021 +-0.067703,51.510868 +-0.026655,51.508953 +0.127433,51.548651 +-0.142427,51.593682 +-0.154191,51.448298 +-0.229039,51.490008 +-0.165941,51.426234 +-0.023076,51.444793 +-0.195889,51.455826 +-0.174826,51.493835 +0.126113,51.55158 +-0.14231,51.63759 +0.033212,51.590564 +0.153127,51.482139 +-0.313477,51.539991 +-0.133766,51.518233 +-0.125174,51.552321 +-0.181679,51.481631 +0.004292,51.552447 +-0.173026,51.526953 +-0.111823,51.481777 +-0.245758,51.600362 +-0.180057,51.491264 +-0.132089,51.584912 +-0.409829,51.49536 +-0.024194,51.413229 +-0.024353,51.521864 +0.088919,51.383101 +-0.263619,51.56366 +-0.114447,51.619485 +-0.119283,51.374929 +-0.151711,51.591895 +-0.157132,51.49069 +0.065159,51.556454 +-0.050005,51.521016 +-0.283724,51.407326 +-0.087162,51.525567 +-0.213738,51.523246 +0.087742,51.387232 +-0.116952,51.556146 +-0.059659,51.40875 +-0.093328,51.441074 +-0.128819,51.586515 +0.161448,51.490286 +-0.144175,51.44296 +-0.04294,51.666478 +-0.113245,51.52652 +-0.071312,51.633783 +-0.316915,51.503073 +-0.171648,51.4609 +-0.063605,51.423239 +-0.122877,51.560117 +0.000719,51.592642 +0.025235,51.559866 +-0.13073,51.489238 +-0.043005,51.548435 +0.100808,51.426469 +-0.107827,51.562942 +-0.051669,51.550917 +-0.179819,51.562651 +-0.12482,51.410305 +-0.055652,51.625243 +-0.217581,51.544823 +0.032514,51.547115 +-0.222461,51.502093 +-0.208332,51.421827 +-0.239054,51.576953 +-0.125461,51.469838 +-0.341364,51.508295 +-0.371914,51.532517 +0.056292,51.52715 +-0.25325,51.560161 +-0.033222,51.439082 +-0.172564,51.42355 +-0.103893,51.590233 +-0.212025,51.49484 +-0.075134,51.458312 +-0.073623,51.530399 +-0.067747,51.509143 +-0.042406,51.426214 +-0.222758,51.548166 +0.062633,51.533792 +-0.080943,51.462256 +-0.061023,51.511037 +0.009172,51.434604 +-0.297357,51.546125 +-0.116921,51.520572 +-0.152977,51.523987 +-0.203761,51.561383 +-0.411278,51.444159 +-0.302353,51.410215 +0.177346,51.576269 +-0.234331,51.492849 +-0.223936,51.493798 +0.024248,51.613335 +-0.223164,51.487356 +-0.300719,51.410452 +-0.132018,51.508835 +-0.198725,51.405691 +-0.255891,51.538628 +-0.094219,51.483614 +-0.100043,51.583903 +-0.174125,51.601068 +0.028204,51.487469 +-0.018593,51.585119 +-0.294278,51.40463 +-0.110045,51.550856 +-0.041295,51.46598 +-0.240923,51.449937 +-0.052197,51.520657 +0.120635,51.488055 +-0.125931,51.50827 +0.08353,51.573647 +-0.022957,51.48087 +-0.055134,51.411373 +-0.120418,51.615885 +-0.190269,51.383889 +-0.204104,51.353167 +-0.290371,51.559728 +-0.061756,51.514152 +-0.337922,51.509011 +-0.213217,51.494579 +-0.139262,51.461164 +-0.04755,51.491452 +0.213042,51.5924 +-0.007397,51.558932 +-0.331327,51.502569 +-0.066634,51.526246 +0.02828,51.488537 +-0.07073,51.363006 +-0.20907,51.589305 +-0.110738,51.5686 +-0.186897,51.362299 +0.052199,51.53679 +-0.100138,51.659432 +-0.015703,51.525198 +-0.066743,51.392851 +-0.109618,51.614362 +0.080125,51.408789 +-0.198452,51.510261 +-0.289763,51.504785 +-0.123071,51.415097 +-0.050426,51.619078 +-0.064104,51.511124 +-0.255589,51.492591 +0.153928,51.55136 +0.045762,51.492595 +0.169037,51.519957 +0.188422,51.582412 +-0.372679,51.550683 +-0.282257,51.49249 +-0.217928,51.558083 +-0.289864,51.517097 +-0.301061,51.49932 +-0.074132,51.509805 +0.035832,51.400943 +-0.013789,51.523142 +-0.111273,51.606521 +-0.421828,51.466207 +-0.365966,51.514225 +-0.251117,51.559338 +-0.23358,51.547277 +-0.139484,51.511624 +-0.097264,51.370913 +-0.345281,51.54494 +-0.098814,51.364374 +-0.298027,51.549417 +-0.221823,51.54513 +-0.212723,51.501676 +0.04543,51.30697 +-0.215904,51.504719 +-0.364981,51.563057 +0.18749,51.581935 +-0.227298,51.396307 +-0.092953,51.441085 +-0.389696,51.488251 +-0.195021,51.487682 +0.011627,51.543455 +-0.041147,51.399134 +-0.12951,51.527823 +0.000223,51.483651 +-0.154903,51.601487 +-0.219435,51.467337 +0.177447,51.48079 +-0.247807,51.439294 +0.053019,51.480337 +-0.006484,51.5455 +-0.153825,51.367412 +-0.290667,51.559525 +-0.070558,51.517309 +-0.161297,51.386396 +0.029249,51.525903 +-0.159479,51.521121 +-0.345936,51.475934 +0.060257,51.450795 +-0.294549,51.537901 +-0.297189,51.369224 +-0.088815,51.505729 +-0.018626,51.582377 +-0.028431,51.53659 +-0.222815,51.504841 +-0.072624,51.638985 +-0.160009,51.492587 +0.14305,51.554401 +-0.026169,51.591838 +-0.311485,51.392209 +-0.115028,51.495542 +-0.075847,51.528268 +-0.237229,51.625232 +-0.218474,51.576957 +-0.119575,51.558661 +-0.266887,51.390218 +-0.424963,51.574533 +-0.140278,51.543794 +-0.296743,51.410655 +-0.039959,51.591107 +-0.140414,51.365464 +0.124527,51.448748 +-0.037986,51.51256 +-0.1092,51.612269 +-0.212384,51.505546 +-0.408069,51.457793 +-0.035525,51.478958 +-0.110717,51.562161 +-0.204882,51.525943 +-0.09045,51.480055 +-0.285665,51.527574 +-0.018298,51.400261 +-0.355069,51.507463 +-0.337967,51.527572 +0.20697,51.576741 +0.092351,51.57528 +-0.087311,51.380482 +-0.128963,51.508121 +-0.080617,51.653674 +-0.35884,51.584534 +-0.380634,51.476913 +-0.048971,51.396702 +-0.199448,51.419146 +-0.355223,51.54838 +-0.286362,51.467911 +-0.144189,51.514999 +-0.478726,51.608863 +-0.207919,51.554694 +-0.333094,51.509023 +-0.246143,51.536001 +-0.129035,51.466235 +-0.223451,51.442165 +0.073458,51.485463 +-0.26711,51.487735 +-0.063222,51.519329 +-0.363809,51.510859 +-0.006643,51.511501 +-0.117467,51.495087 +-0.391675,51.52574 +-0.198484,51.518588 +-0.201159,51.573951 +-0.282273,51.513119 +-0.12431,51.445251 +-0.275996,51.536992 +-0.043783,51.631143 +-0.362454,51.557491 +0.046045,51.3975 +-0.157116,51.43749 +-0.028518,51.538246 +-0.09818,51.529972 +-0.058043,51.49436 +-0.48193,51.545232 +-0.201132,51.521615 +-0.215997,51.380839 +-0.105477,51.691585 +0.008713,51.514611 +0.127144,51.535653 +-0.363148,51.583552 +-0.124009,51.521378 +-0.292081,51.513289 +-0.341814,51.580797 +-0.368446,51.549275 +-0.048192,51.53104 +0.04995,51.516272 +0.165366,51.545889 +-0.023814,51.474706 +-0.150057,51.524552 +-0.251363,51.465218 +-0.164541,51.515679 +-0.183333,51.517195 +-0.006632,51.557948 +-0.192915,51.543115 +-0.111004,51.480666 +-0.479477,51.588965 +0.220378,51.594789 +-0.196147,51.487259 +0.067563,51.559209 +-0.047652,51.548053 +-0.12479,51.514637 +-0.273398,51.49361 +0.172818,51.58665 +-0.254472,51.554604 +-0.03225,51.671236 +-0.259696,51.544727 +-0.308697,51.610547 +0.044444,51.456377 +0.292125,51.559829 +-0.06832,51.516715 +-0.179014,51.495735 +0.036909,51.536994 +-0.062531,51.57329 +-0.163681,51.53491 +-0.109309,51.540448 +-0.277562,51.558551 +-0.126099,51.443383 +-0.404014,51.601154 +-0.014201,51.575936 +0.046123,51.367364 +-0.195678,51.487449 +-0.300656,51.412159 +-0.078993,51.499426 +-0.06847,51.554396 +-0.29545,51.586706 +-0.024976,51.570425 +-0.199636,51.572677 +-0.212664,51.46414 +-0.254036,51.495149 +-0.278661,51.539369 +-0.276801,51.469075 +0.18183,51.565638 +-0.238162,51.57614 +-0.073489,51.398915 +-0.258778,51.522296 +-0.167913,51.476183 +-0.040163,51.548783 +-0.017981,51.502611 +0.051711,51.522086 +-0.140082,51.470025 +-0.21195,51.581022 +-0.140605,51.507793 +-0.379212,51.476812 +-0.121892,51.581207 +-0.252945,51.472445 +0.03724,51.463005 +0.097778,51.560876 +0.174461,51.587501 +-0.13439,51.463101 +-0.132291,51.610256 +-0.129591,51.549074 +-0.252049,51.522609 +-0.085885,51.368858 +-0.060205,51.552677 +-0.093269,51.501206 +-0.016364,51.375507 +-0.108304,51.586573 +-0.234267,51.550786 +-0.121639,51.451773 +-0.046421,51.644729 +-0.421095,51.526202 +-0.201526,51.654168 +-0.194923,51.370435 +-0.038283,51.565343 +-0.253998,51.386339 +-0.010989,51.576789 +0.072297,51.529728 +-0.106568,51.56374 +-0.044332,51.512774 +-0.127781,51.501106 +-0.0637,51.468618 +-0.061765,51.391941 +0.108068,51.600241 +-0.193589,51.526444 +-0.096074,51.46985 +0.093925,51.390755 +-0.092393,51.397875 +0.00716,51.485825 +-0.197986,51.504894 +0.020188,51.583028 +-0.116542,51.55944 +0.216565,51.606929 +-0.107038,51.522184 +-0.41235,51.519421 +-0.099809,51.530331 +-0.433109,51.511328 +-0.194395,51.500604 +-0.324433,51.496877 +0.036694,51.48921 +0.270443,51.589424 +-0.345748,51.591706 +-0.322133,51.457098 +-0.22004,51.493244 +0.048261,51.604807 +-0.324293,51.537592 +-0.142385,51.389902 +-0.175095,51.380946 +-0.450383,51.541637 +-0.201402,51.498283 +-0.04484,51.522126 +-0.355836,51.50376 +-0.393714,51.535371 +-0.285919,51.462042 +-0.188291,51.478667 +-0.476114,51.537172 +-0.445265,51.598687 +-0.112575,51.594285 +-0.070287,51.584038 +-0.092111,51.502698 +-0.094072,51.477119 +-0.180034,51.555451 +0.073967,51.551884 +-0.163407,51.49979 +-0.132565,51.51941 +-0.051273,51.477459 +-0.127638,51.388138 +-0.221414,51.545996 +-0.17799,51.519603 +-0.207734,51.455126 +-0.360529,51.413884 +-0.051835,51.393242 +-0.179419,51.526783 +-0.142529,51.496277 +-0.211085,51.423524 +-0.153792,51.43286 +-0.126321,51.446039 +-0.262232,51.543263 +-0.130744,51.464949 +-0.132691,51.507173 +-0.144274,51.525675 +-0.056624,51.559884 +-0.072959,51.577176 +-0.310412,51.411203 +0.063345,51.493726 +0.112599,51.507399 +-0.132231,51.52864 +0.10688,51.4118 +-0.035167,51.596765 +-0.338223,51.581897 +-0.239847,51.535133 +-0.050683,51.439608 +0.10914,51.533298 +-0.174911,51.568842 +-0.101603,51.530873 +-0.122488,51.506129 +-0.067384,51.608576 +0.02492,51.318873 +-0.236925,51.480856 +-0.069534,51.593981 +-0.100167,51.49782 +-0.128804,51.516922 +-0.196015,51.509189 +-0.267181,51.504471 +-0.426293,51.579892 +-0.167431,51.422427 +-0.170912,51.446905 +0.034656,51.536916 +-0.102532,51.4766 +-0.176617,51.526551 +-0.085757,51.609219 +-0.226258,51.547544 +-0.011,51.464067 +-0.090604,51.504634 +-0.092869,51.59804 +-0.188865,51.536497 +-0.157119,51.51603 +-0.132177,51.47463 +-0.0523,51.413421 +-0.289015,51.41967 +-0.013659,51.498968 +-0.451809,51.519139 +-0.452257,51.534845 +-0.138561,51.416127 +0.060738,51.555048 +-0.073609,51.49316 +-0.250943,51.564263 +-0.077004,51.375088 +-0.24517,51.609633 +-0.006866,51.55788 +-0.317306,51.511235 +-0.362489,51.584208 +-0.044722,51.522178 +0.107751,51.382584 +-0.382235,51.483355 +0.057609,51.404051 +0.244056,51.603547 +0.179903,51.461617 +-0.128852,51.60397 +-0.255491,51.398115 +-0.05529,51.545815 +-0.128956,51.43261 +-0.204619,51.371583 +-0.149194,51.481473 +-0.244134,51.616272 +0.050644,51.541008 +-0.267241,51.487692 +-0.203343,51.476758 +-0.025115,51.468244 +-0.046678,51.660273 +0.164895,51.581833 +-0.130598,51.512535 +-0.05494,51.547275 +-0.224618,51.507782 +-0.295614,51.552997 +-0.198326,51.542299 +-0.153447,51.517735 +-0.162343,51.434154 +-0.09424,51.478965 +-0.108408,51.422964 +-0.452761,51.533161 +-0.35206,51.583621 +-0.36146,51.439319 +-0.413091,51.511374 +-0.282004,51.410655 +-0.109698,51.612448 +-0.103758,51.498777 +-0.139534,51.590291 +0.056076,51.553709 +-0.222252,51.49933 +-0.047455,51.64052 +-0.329612,51.433996 +-0.128148,51.419998 +-0.257122,51.605657 +-0.265537,51.617516 +-0.040558,51.669073 +-0.070747,51.646094 +-0.04487,51.510319 +-0.203004,51.561569 +-0.098246,51.352773 +0.005625,51.485321 +-0.151184,51.515946 +-0.38453,51.476265 +0.057721,51.389877 +-0.057514,51.564035 +-0.0957,51.504411 +-0.245153,51.380866 +0.189158,51.529539 +-0.24033,51.403598 +-0.432206,51.452813 +-0.350426,51.471609 +-0.182709,51.567255 +-0.423593,51.5311 +-0.158653,51.388891 +0.049799,51.428739 +-0.291672,51.594304 +-0.020575,51.439742 +-0.080656,51.379141 +-0.176766,51.549529 +-0.201704,51.524276 +-0.038082,51.545205 +0.079889,51.527381 +-0.111539,51.600455 +-0.237083,51.493205 +-0.235097,51.375184 +-0.072333,51.574234 +-0.205749,51.373542 +0.0973,51.486496 +0.009747,51.410655 +-0.110239,51.342257 +-0.070715,51.515648 +-0.382848,51.507553 +-0.01699,51.578186 +-0.20693,51.652793 +-0.301128,51.464961 +-0.065356,51.573715 +0.134261,51.493581 +-0.334969,51.454422 +-0.27252,51.509613 +-0.464062,51.547805 +-0.074686,51.546225 +-0.116965,51.365935 +-0.376122,51.579973 +-0.322827,51.504507 +-0.077499,51.523268 +-0.129811,51.614362 +-0.119724,51.49452 +-0.011763,51.627152 +0.105115,51.532309 +-0.122691,51.47455 +-0.152932,51.443494 +-0.102803,51.540829 +-0.123253,51.455576 +-0.117052,51.576795 +-0.085257,51.566838 +0.093667,51.552424 +0.099682,51.463719 +-0.108835,51.377764 +-0.020657,51.587132 +-0.0586,51.530079 +-0.009378,51.511907 +-0.282301,51.495144 +-0.046972,51.659486 +-0.07584,51.545525 +-0.119162,51.391186 +0.139068,51.501794 +-0.007758,51.50741 +-0.06144,51.622335 +-0.162118,51.437253 +-0.124259,51.580507 +-0.01217,51.600334 +-0.269832,51.602553 +0.185412,51.455507 +-0.224831,51.511931 +-0.103993,51.465338 +-0.030414,51.47158 +-0.134772,51.550766 +-0.147677,51.645255 +-0.106569,51.542518 +0.114465,51.461475 +-0.168827,51.471332 +-0.19635,51.589712 +-0.16495,51.404277 +-0.12631,51.469159 +-0.013128,51.425335 +-0.052494,51.496445 +-0.160425,51.543797 +-0.109626,51.612438 +-0.02687,51.481628 +-0.330751,51.516364 +-0.185398,51.483343 +-0.109876,51.569207 +-0.078821,51.523731 +-0.098213,51.492141 +0.111933,51.55189 +0.147798,51.542489 +0.036361,51.388559 +-0.135151,51.566185 +-0.423448,51.501074 +-0.115893,51.44276 +0.103129,51.45069 +-0.0979,51.357659 +-0.207151,51.551849 +-0.273466,51.545938 +0.087911,51.44303 +0.078193,51.526872 +-0.140258,51.55525 +-0.238612,51.505107 +-0.477194,51.554064 +-0.298673,51.530542 +-0.328024,51.578228 +0.044339,51.53967 +-0.049707,51.609911 +-0.21682,51.451326 +-0.069951,51.557235 +-0.222895,51.491309 +-0.151082,51.475379 +-0.058132,51.429192 +-0.134294,51.509195 +-0.125903,51.576343 +-0.138948,51.510267 +-0.25777,51.386539 +-0.043488,51.536519 +-0.134755,51.544822 +0.048665,51.534828 +-0.15129,51.514032 +-0.250366,51.583786 +-0.222246,51.548338 +-0.172799,51.363177 +-0.014735,51.341396 +-0.302607,51.552316 +-0.118427,51.512709 +-0.388042,51.473472 +0.074552,51.389247 +-0.066059,51.464934 +-0.056664,51.511882 +-0.190874,51.520746 +-0.129728,51.423225 +-0.029628,51.544587 +-0.321045,51.51065 +0.179235,51.580164 +-0.372373,51.439561 +-0.358748,51.474846 +-0.15019,51.443684 +-0.375195,51.475569 +-0.447782,51.527781 +-0.098807,51.529101 +-0.080157,51.650196 +-0.075368,51.486975 +-0.120822,51.385412 +-0.083382,51.580548 +0.084291,51.603202 +0.003806,51.539425 +-0.096177,51.37425 +0.036748,51.453238 +-0.144604,51.621053 +-0.180928,51.561625 +-0.163746,51.621381 +-0.199126,51.456235 +-0.161473,51.515262 +-0.288808,51.412886 +-0.126323,51.35417 +0.05325,51.605925 +-0.026765,51.389918 +0.11056,51.566465 +-0.150838,51.496382 +-0.102897,51.378181 +0.066824,51.576632 +0.068863,51.479726 +-0.376515,51.500847 +-0.39236,51.442373 +-0.10442,51.507826 +-0.172738,51.643517 +0.103986,51.395746 +0.072257,51.537741 +0.177496,51.581222 +0.069537,51.507025 +-0.208494,51.495982 +-0.184326,51.431269 +-0.098378,51.552547 +-0.031671,51.475827 +-0.102876,51.535956 +-0.120276,51.512253 +-0.253292,51.538355 +-0.08179,51.396704 +0.011763,51.534757 +-0.208611,51.371257 +-0.04652,51.513179 +-0.084881,51.541806 +0.063912,51.430982 +0.137278,51.45768 +-0.024998,51.527288 +-0.099175,51.398651 +-0.304156,51.516063 +-0.170199,51.376518 +-0.407661,51.484009 +-0.232337,51.571538 +-0.297617,51.546102 +-0.098807,51.577894 +-0.2937,51.554426 +-0.14085,51.617451 +-0.285863,51.415118 +0.179825,51.594596 +0.001253,51.444677 +-0.139724,51.572201 +-0.204872,51.405866 +0.164862,51.581734 +0.033415,51.562791 +-0.09451,51.482504 +-0.110482,51.463338 +-0.075534,51.392995 +-0.06928,51.558078 +0.095866,51.563545 +-0.113147,51.447932 +-0.090566,51.480362 +-0.085053,51.364689 +0.09816,51.44309 +0.070021,51.491315 +-0.302318,51.51395 +-0.166159,51.426534 +-0.18663,51.64598 +-0.444473,51.495851 +-0.215426,51.503668 +-0.063789,51.589192 +-0.332991,51.533976 +-0.191534,51.472044 +0.104302,51.528115 +-0.277422,51.565302 +0.183533,51.512314 +-0.117383,51.339269 +-0.09944,51.580692 +-0.13649,51.462424 +-0.046588,51.544592 +-0.157261,51.498569 +0.031275,51.52219 +0.027143,51.317864 +-0.133488,51.526457 +-0.090316,51.597954 +-0.41277,51.442624 +-0.029634,51.575162 +-0.341735,51.610326 +-0.191544,51.472521 +-0.408345,51.522676 +-0.143647,51.506358 +-0.191995,51.353205 +-0.20053,51.551865 +-0.416322,51.517505 +-0.249683,51.559496 +-0.265806,51.487554 +-0.035527,51.428303 +-0.35054,51.552262 +-0.038918,51.466003 +-0.31535,51.501342 +-0.136141,51.539151 +-0.104338,51.535144 +0.048165,51.550997 +-0.121505,51.612998 +-0.113562,51.408533 +-0.048448,51.612669 +-0.124051,51.644422 +0.062805,51.488466 +-0.134746,51.525991 +-0.147944,51.492424 +-0.087008,51.661188 +-0.319846,51.519733 +-0.191414,51.359572 +0.166647,51.463823 +-0.090749,51.525283 +-0.121133,51.494228 +-0.02026,51.432713 +-0.310461,51.397778 +-0.096944,51.490097 +-0.093508,51.49166 +-0.195227,51.515643 +-0.383315,51.476419 +-0.209839,51.4771 +-0.14948,51.446641 +0.011618,51.45655 +0.006655,51.485483 +-0.141595,51.496586 +-0.14205,51.538175 +-0.217665,51.514979 +0.117101,51.582417 +-0.311088,51.520381 +-0.197517,51.525174 +0.112157,51.395868 +-0.260031,51.492441 +0.024811,51.549361 +-0.090481,51.381657 +-0.137899,51.541292 +-0.400556,51.516221 +-0.14181,51.558206 +-0.160792,51.421199 +-0.129163,51.490921 +-0.150315,51.505024 +-0.060142,51.614158 +-0.110682,51.525039 +-0.249093,51.414683 +0.128386,51.549911 +-0.127256,51.468904 +-0.106386,51.479504 +-0.068322,51.526894 +-0.307408,51.604028 +-0.106558,51.374104 +-0.301284,51.465017 +-0.213322,51.544929 +-0.171174,51.469175 +-0.069206,51.498492 +-0.090502,51.374257 +-0.243584,51.454095 +0.045517,51.400171 +-0.252098,51.486694 +-0.024095,51.444531 +0.067858,51.43585 +-0.221478,51.562471 +-0.376577,51.497494 +0.054804,51.500818 +-0.17824,51.580872 +-0.068584,51.572473 +0.184391,51.463368 +-0.075089,51.598505 +-0.24313,51.552834 +-0.236749,51.45107 +-0.221164,51.486184 +-0.021547,51.603514 +-0.463744,51.527686 +0.03647,51.593376 +0.13835,51.449504 +-0.131685,51.464119 +-0.112474,51.482048 +0.179114,51.573116 +-0.452488,51.495274 +-0.043077,51.666336 +-0.167792,51.487826 +-0.376563,51.59148 +-0.110058,51.542196 +-0.0896,51.505202 +-0.215357,51.578061 +-0.337198,51.454076 +-0.175383,51.535434 +-0.148819,51.522743 +0.002745,51.411989 +-0.074798,51.520661 +-0.121203,51.473609 +-0.137406,51.534657 +-0.106342,51.440223 +0.102307,51.431559 +-0.109047,51.567638 +-0.002454,51.406871 +-0.459069,51.505189 +-0.180686,51.547063 +-0.099817,51.306459 +-0.034678,51.376661 +-0.354417,51.607474 +-0.393196,51.473893 +-0.188687,51.552968 +-0.10074,51.493396 +-0.259421,51.516406 +-0.15631,51.514282 +0.254853,51.615408 +-0.138401,51.55692 +-0.244468,51.380361 +-0.204996,51.476109 +-0.113684,51.413607 +-0.234853,51.532648 +-0.370813,51.466813 +-0.099445,51.417126 +-0.041679,51.64778 +0.003185,51.495713 +-0.176127,51.625342 +-0.305757,51.495458 +-0.051864,51.677903 +-0.376906,51.493488 +-0.041578,51.522566 +-0.154303,51.39661 +0.094521,51.470808 +-0.157466,51.522061 +-0.382238,51.540627 +-0.195783,51.557745 +-0.137596,51.492539 +-0.012063,51.548202 +-0.006887,51.606215 +-0.226011,51.369004 +-0.116424,51.583943 +0.006505,51.557499 +-0.07251,51.573122 +-0.162583,51.526359 +-0.06502,51.48337 +-0.031303,51.675393 +-0.070386,51.485562 +-0.061929,51.359831 +-0.102646,51.47662 +-0.052754,51.552536 +-0.104665,51.469953 +-0.189346,51.652542 +0.08195,51.590222 +-0.469913,51.505798 +-0.089439,51.527654 +-0.174536,51.534611 +-0.152395,51.487441 +-0.106176,51.408746 +-0.175935,51.428108 +-0.192974,51.552162 +-0.061054,51.638497 +-0.178148,51.501548 +0.020342,51.536705 +-0.083271,51.525881 +-0.32983,51.445365 +-0.228544,51.409077 +-0.198453,51.55222 +-0.034244,51.392157 +-0.210572,51.54665 +-0.07393,51.534073 +-0.105502,51.396191 +-0.039344,51.488654 +-0.151057,51.468158 +-0.013778,51.428916 +-0.040444,51.636519 +-0.093478,51.689628 +-0.148855,51.445381 +0.264063,51.608019 +-0.298648,51.485967 +-0.074467,51.557885 +-0.343403,51.474693 +-0.307236,51.411131 +-0.070094,51.592344 +-0.215396,51.563422 +-0.142412,51.5937 +0.156,51.597914 +-0.184032,51.500345 +-0.136404,51.485389 +-0.124718,51.644702 +-0.343661,51.541096 +-0.07194,51.584209 +-0.248761,51.595892 +-0.062339,51.528945 +-0.088021,51.520563 +0.083722,51.481549 +-0.115315,51.527704 +0.068635,51.537041 +0.091141,51.532244 +0.063937,51.461854 +-0.224546,51.506279 +0.041843,51.516431 +-0.121292,51.56216 +-0.164825,51.460892 +-0.080221,51.530867 +-0.12085,51.470978 +-0.127209,51.614761 +-0.07026,51.353673 +-0.153567,51.474816 +-0.064448,51.614795 +-0.053383,51.608039 +-0.289853,51.458871 +0.110393,51.549777 +-0.28349,51.475765 +0.183972,51.572082 +-0.172219,51.521545 +-0.364267,51.59059 +-0.248166,51.58432 +-0.35283,51.525983 +0.013696,51.486082 +0.021351,51.530518 +-0.122124,51.53355 +-0.015674,51.507293 +0.066606,51.372382 +-0.102058,51.621102 +-0.203763,51.561338 +-0.107621,51.498381 +-0.028768,51.475356 +-0.183006,51.512361 +-0.25994,51.534542 +-0.217174,51.460711 +-0.079273,51.580094 +-0.193603,51.555598 +-0.136573,51.513395 +-0.098821,51.373906 +-0.053572,51.510716 +-0.348549,51.539924 +-0.117405,51.401086 +-0.350946,51.537044 +0.044275,51.562674 +0.106415,51.440469 +-0.114466,51.346686 +-0.103022,51.3783 +0.095368,51.486755 +-0.123461,51.583759 +-0.060802,51.491816 +-0.085739,51.60894 +-0.069528,51.614888 +-0.159505,51.54729 +-0.122093,51.488407 +0.078735,51.53813 +-0.210595,51.527299 +-0.214745,51.403032 +0.0568,51.528823 +-0.09751,51.356313 +-0.052985,51.635576 +0.036212,51.45188 +-0.146524,51.453905 +-0.245667,51.399362 +-0.17876,51.555575 +-0.174977,51.630216 +-0.130598,51.516402 +-0.04153,51.416766 +-0.069299,51.588635 +-0.057122,51.517708 +-0.446782,51.565211 +-0.234314,51.492902 +-0.161406,51.473248 +-0.01542,51.5844 +-0.158326,51.511823 +-0.173162,51.584759 +-0.025032,51.527172 +-0.110377,51.551221 +0.042914,51.482051 +-0.183485,51.46371 +0.007465,51.568166 +-0.056259,51.404844 +-0.086923,51.417354 +-0.02841,51.514711 +0.019021,51.517294 +0.194026,51.577083 +0.080428,51.381247 +-0.17305,51.541836 +-0.130593,51.425298 +-0.139036,51.46107 +-0.120604,51.530891 +-0.282566,51.561646 +-0.189514,51.535059 +0.040167,51.548277 +-0.205072,51.595134 +-0.192325,51.509222 +0.122016,51.483048 +-0.422321,51.61623 +-0.07314,51.557198 +-0.167262,51.583588 +0.097829,51.560434 +0.049414,51.589689 +-0.064039,51.548325 +0.018205,51.571849 +-0.088043,51.526912 +-0.197958,51.504885 +-0.168147,51.443714 +-0.149801,51.446178 +-0.441057,51.45071 +-0.17265,51.423551 +-0.111018,51.481728 +0.152784,51.455283 +-0.271066,51.603525 +-0.173338,51.541841 +-0.026862,51.569513 +-0.355387,51.548239 +-0.176634,51.428272 +-0.281325,51.449835 +-0.400524,51.555409 +-0.070163,51.614907 +-0.412078,51.572381 +-0.113649,51.470673 +-0.074957,51.459109 +-0.062502,51.517293 +-0.057406,51.424944 +-0.130277,51.47531 +-0.047953,51.613776 +-0.027914,51.429371 +-0.037413,51.514142 +-0.266347,51.576146 +-0.118781,51.597478 +-0.058299,51.409294 +-0.307299,51.531584 +-0.17442,51.457832 +0.002284,51.445208 +-0.148737,51.447582 +-0.053791,51.510989 +0.092958,51.603893 +-0.05278,51.445434 +-0.107353,51.544491 +0.180452,51.603766 +-0.183217,51.664119 +-0.115318,51.461977 +-0.100092,51.398396 +-0.103359,51.491028 +-0.089768,51.494297 +-0.017566,51.517154 +-0.151303,51.374396 +-0.275437,51.555597 +-0.286837,51.59043 +0.091446,51.371698 +0.042018,51.538398 +0.171166,51.525026 +-0.1243,51.486554 +-0.186748,51.439867 +-0.307082,51.366633 +-0.072859,51.617748 +0.117593,51.603541 +-0.04136,51.669257 +0.063384,51.57653 +-0.044153,51.672568 +-0.435813,51.487931 +0.102017,51.435575 +-0.004774,51.442082 +-0.172134,51.45955 +-0.304991,51.436061 +-0.083424,51.49271 +-0.175783,51.545979 +-0.217267,51.505225 +-0.285001,51.501109 +-0.194169,51.5056 +-0.27072,51.622143 +-0.018906,51.44671 +0.034388,51.452928 +-0.328363,51.468976 +-0.060154,51.376339 +-0.362663,51.53237 +-0.501993,51.482329 +-0.152896,51.547366 +-0.093597,51.484359 +-0.366645,51.566119 +-0.017195,51.563855 +-0.097446,51.529933 +-0.061688,51.628706 +-0.11938,51.455244 +-0.085837,51.447471 +-0.239074,51.546946 +-0.334124,51.406444 +-0.008661,51.542218 +-0.02676,51.468829 +-0.403739,51.477535 +-0.21306,51.494532 +-0.330221,51.455955 +-0.296325,51.595738 +-0.346147,51.527013 +0.128079,51.531886 +-0.16133,51.512751 +-0.101427,51.587064 +-0.180098,51.428334 +-0.280422,51.450118 +-0.235019,51.511959 +-0.105181,51.436994 +-0.21413,51.576208 +-0.155264,51.443467 +-0.186988,51.479582 +-0.094075,51.52469 +-0.041639,51.533223 +-0.181302,51.495087 +-0.184696,51.538717 +-0.362556,51.423562 +-0.270948,51.492882 +0.059643,51.526642 +0.069745,51.488406 +0.001279,51.552166 +-0.324529,51.467923 +-0.080234,51.527144 +-0.072968,51.516899 +-0.165711,51.545382 +-0.341224,51.40534 +-0.346573,51.465898 +0.046576,51.472806 +-0.066067,51.610011 +-0.273187,51.507599 +-0.019111,51.583833 +-0.418986,51.434695 +-0.093778,51.471377 +-0.089414,51.573003 +-0.136012,51.462488 +0.002694,51.54136 +-0.1512,51.50842 +-0.186793,51.513894 +0.142642,51.448337 +-0.115719,51.337129 +-0.010484,51.56224 +0.07119,51.415988 +-0.227026,51.547448 +-0.289085,51.419725 +-0.123383,51.484345 +-0.152733,51.416324 +-0.176136,51.536075 +-0.302323,51.410232 +0.130857,51.561736 +-0.278468,51.539501 +-0.304798,51.512377 +-0.093423,51.496461 +-0.182261,51.41407 +-0.025574,51.496309 +-0.217417,51.459644 +-0.013034,51.524928 +-0.21317,51.591867 +0.0206,51.59883 +-0.01693,51.519202 +-0.030332,51.47147 +-0.463085,51.504432 +-0.180218,51.438363 +-0.041844,51.545259 +-0.249645,51.515766 +-0.116929,51.459197 +-0.023478,51.41015 +-0.208799,51.495933 +-0.371271,51.488716 +-0.19392,51.522448 +-0.346604,51.535103 +-0.037649,51.35154 +-0.141341,51.491834 +-0.188951,51.552874 +-0.015988,51.412443 +0.023423,51.570077 +0.132879,51.459964 +-0.197551,51.442866 +0.100034,51.422777 +-0.401496,51.516558 +-0.19659,51.495736 +-0.077715,51.474307 +-0.137913,51.541302 +-0.069733,51.516028 +-0.236616,51.506435 +-0.078645,51.489187 +-0.199644,51.56516 +-0.229505,51.371898 +-0.021288,51.448872 +-0.117935,51.433 +-0.156907,51.50234 +-0.117844,51.545028 +0.024471,51.596263 +-0.165411,51.498697 +-0.201084,51.495032 +-0.120802,51.385187 +-0.013021,51.381026 +-0.156797,51.470074 +-0.104038,51.43542 +0.039211,51.490101 +0.139322,51.581016 +0.031618,51.521474 +-0.366236,51.44702 +-0.061104,51.59903 +0.021155,51.427725 +-0.369634,51.421106 +-0.177035,51.419285 +0.017038,51.406097 +-0.220612,51.417464 +-0.061887,51.514801 +-0.003283,51.454178 +-0.252998,51.486887 +-0.427504,51.453946 +-0.116583,51.561599 +-0.35634,51.562217 +0.025217,51.515299 +-0.074084,51.483942 +0.144345,51.535933 +-0.255951,51.400748 +-0.197562,51.524401 +-0.161992,51.521358 +-0.02194,51.440457 +0.007661,51.413596 +-0.098301,51.500766 +-0.254343,51.465227 +0.028332,51.598346 +-0.153222,51.502984 +0.131302,51.460415 +-0.2507,51.473526 +-0.091711,51.387325 +-0.174969,51.602349 +-0.251865,51.506708 +-0.099312,51.467447 +-0.073206,51.443604 +0.016091,51.572973 +-0.042601,51.666976 +-0.329248,51.528689 +-0.200438,51.52057 +-0.12808,51.494861 +0.123867,51.459642 +-0.031983,51.483962 +-0.223326,51.442774 +-0.119017,51.512035 +0.025118,51.517288 +-0.045287,51.68318 +-0.045305,51.491406 +0.203201,51.581767 +0.056903,51.519909 +-0.355438,51.509627 +-0.111978,51.588484 +-0.039426,51.49647 +0.067545,51.490406 +0.054512,51.53308 +-0.161118,51.410575 +-0.074742,51.449502 +0.02637,51.395036 +-0.129731,51.430545 +-0.089425,51.527645 +-0.177825,51.482911 +-0.069467,51.516185 +0.041084,51.456229 +-0.357121,51.470021 +-0.122268,51.580844 +-0.119232,51.518019 +-0.00013,51.545032 +-0.099923,51.495379 +-0.125896,51.560013 +-0.136096,51.539187 +-0.448134,51.55603 +-0.010276,51.552794 +-0.448858,51.551697 +-0.028093,51.475309 +-0.058916,51.430032 +-0.165944,51.488643 +-0.03513,51.524994 +-0.253247,51.544029 +-0.131469,51.55181 +-0.273113,51.557937 +-0.072486,51.573688 +-0.128403,51.467259 +0.177462,51.466302 +-0.098554,51.538998 +-0.134913,51.537441 +0.087259,51.396198 +-0.219337,51.443235 +-0.280788,51.611851 +0.056091,51.553718 +-0.325316,51.454275 +-0.158631,51.43022 +-0.248853,51.513848 +-0.045629,51.474379 +-0.118873,51.456045 +-0.34922,51.592286 +-0.364888,51.442442 +0.095048,51.546383 +-0.028782,51.475365 +-0.047864,51.530953 +0.062901,51.326376 +-0.092533,51.46981 +-0.018451,51.581745 +-0.218152,51.49326 +-0.183683,51.510573 +-0.161784,51.415126 +-0.032449,51.51262 +-0.017448,51.615072 +-0.080067,51.426172 +-0.15394,51.548308 +-0.052465,51.598114 +-0.11465,51.463846 +0.075977,51.526336 +0.0537,51.521764 +-0.141636,51.543735 +-0.127462,51.507126 +-0.119848,51.581075 +0.111941,51.482258 +-0.194934,51.523057 +-0.144812,51.455649 +-0.029911,51.613133 +-0.19958,51.449084 +-0.233982,51.57489 +-0.094118,51.567144 +0.032283,51.517973 +0.029496,51.360423 +-0.331571,51.427216 +0.029344,51.525785 +-0.133741,51.508629 +-0.287041,51.553519 +-0.191977,51.413842 +-0.399526,51.559999 +-0.142337,51.589176 +-0.100476,51.372458 +-0.18428,51.478506 +-0.057328,51.557566 +-0.063836,51.473917 +-0.186254,51.483203 +-0.07283,51.596616 +-0.199733,51.591032 +-0.067926,51.603297 +-0.166987,51.460827 +-0.439367,51.494344 +-0.289002,51.596585 +-0.354864,51.529563 +-0.033745,51.671441 +0.15727,51.558583 +-0.204301,51.344438 +-0.390173,51.528255 +-0.068685,51.635422 +-0.226914,51.468277 +0.001345,51.463236 +-0.112623,51.470756 +-0.066609,51.584661 +0.084209,51.56484 +-0.217723,51.479873 +-0.134975,51.524628 +-0.298873,51.50507 +-0.112783,51.487125 +-0.132482,51.598569 +-0.351473,51.471336 +0.070714,51.561572 +-0.043429,51.665866 +-0.140056,51.516328 +-0.21234,51.453272 +0.001847,51.623863 +0.131335,51.481521 +-0.131176,51.464236 +-0.123692,51.471203 +-0.085754,51.608931 +0.027646,51.525203 +-0.244175,51.616344 +-0.189671,51.45582 +-0.074559,51.399454 +-0.019098,51.502782 +-0.171621,51.353447 +-0.392079,51.434392 +-0.072821,51.686135 +0.037872,51.525313 +-0.124735,51.33151 +-0.322175,51.457135 +-0.190795,51.468895 +-0.127262,51.50884 +-0.07106,51.549781 +-0.067771,51.573952 +-0.165915,51.458131 +0.083698,51.579526 +-0.099434,51.368485 +0.066623,51.5757 +0.052048,51.444248 +-0.093554,51.588231 +-0.332972,51.534883 +0.084413,51.528578 +-0.13587,51.522133 +-0.107627,51.563253 +0.220958,51.588636 +-0.130477,51.464792 +-0.115887,51.486941 +-0.049667,51.410409 +-0.452841,51.533342 +-0.380287,51.552119 +0.020116,51.599648 +-0.126404,51.566603 +-0.075743,51.427396 +-0.050245,51.457999 +-0.166864,51.463892 +-0.064843,51.612626 +0.016453,51.407501 +0.02585,51.578254 +-0.064231,51.514579 +-0.199292,51.589776 +0.052813,51.532813 +-0.004435,51.551778 +0.111498,51.551835 +0.124259,51.552036 +-0.279889,51.584798 +-0.080878,51.403713 +-0.213405,51.560856 +-0.339533,51.43018 +-0.063202,51.606052 +-0.001744,51.505213 +-0.209449,51.402816 +-0.173492,51.48216 +-0.06955,51.485234 +-0.072129,51.465061 +-0.1085,51.531785 +-0.106176,51.507162 +-0.255033,51.396166 +-0.104611,51.502514 +-0.119975,51.612613 +-0.149481,51.592777 +-0.005544,51.425746 +0.183332,51.511437 +0.072621,51.554326 +-0.041201,51.512857 +-0.379228,51.532798 +-0.361056,51.568694 +0.149593,51.557015 +-0.041451,51.513077 +0.021498,51.59662 +0.137134,51.412673 +-0.212872,51.358517 +-0.062311,51.620524 +-0.163262,51.620142 +-0.11419,51.505034 +-0.074023,51.652352 +-0.395162,51.475314 +-0.139798,51.540342 +-0.041378,51.42671 +-0.328041,51.522683 +0.060016,51.46141 +-0.195559,51.596561 +-0.044922,51.354755 +0.058663,51.554455 +-0.169974,51.467133 +-0.083321,51.49001 +0.012523,51.570283 +-0.35035,51.527594 +-0.341165,51.588323 +-0.279972,51.4686 +-0.011509,51.552302 +-0.102881,51.541748 +-0.166,51.528507 +-0.037593,51.432789 +-0.249494,51.538874 +-0.123747,51.479342 +-0.297844,51.461514 +-0.431863,51.582835 +-0.116784,51.579425 +-0.137758,51.521444 +-0.188683,51.446956 +-0.219436,51.467319 +0.066605,51.554936 +-0.105186,51.407318 +-0.383994,51.47677 +-0.393333,51.598985 +-0.021505,51.474154 +0.088642,51.384896 +-0.214615,51.54396 +-0.17431,51.589614 +-0.103622,51.379083 +-0.130421,51.464755 +0.282714,51.572999 +-0.012507,51.511187 +-0.123963,51.459688 +0.253908,51.579122 +0.05217,51.451467 +-0.234829,51.464287 +-0.347392,51.536418 +-0.221881,51.462203 +-0.168811,51.487536 +-0.096899,51.49015 +-0.09491,51.440758 +-0.09609,51.44039 +-0.134126,51.516134 +-0.069012,51.444425 +0.085221,51.574013 +-0.119631,51.558006 +-0.114208,51.55728 +-0.213959,51.555541 +-0.19221,51.509949 +-0.105222,51.564527 +-0.137189,51.508872 +0.080847,51.527841 +-0.192806,51.476299 +-0.070605,51.531887 +0.004514,51.542075 +-0.061801,51.514773 +-0.067999,51.599872 +0.080135,51.457782 +-0.186057,51.516463 +-0.055276,51.545824 +-0.19405,51.538474 +-0.12737,51.437639 +-0.391058,51.43151 +-0.086911,51.615757 +-0.058006,51.625948 +0.026145,51.54432 +0.007744,51.486022 +-0.101542,51.477564 +-0.046873,51.650006 +-0.228207,51.519626 +-0.197612,51.523512 +-0.072318,51.473553 +-0.33484,51.553632 +0.213072,51.593308 +-0.045366,51.648417 +-0.141871,51.407897 +-0.014052,51.49687 +-0.031647,51.544926 +0.034833,51.602937 +0.007615,51.43419 +-0.265499,51.492603 +-0.411278,51.444132 +0.004446,51.544801 +-0.097027,51.494685 +-0.005564,51.535205 +-0.176792,51.617754 +-0.142438,51.539269 +-0.136068,51.516228 +-0.006644,51.489343 +-0.305585,51.458128 +-0.098663,51.546742 +0.117521,51.582445 +-0.069961,51.485744 +-0.494666,51.474367 +-0.099319,51.406279 +-0.036935,51.52426 +-0.152973,51.524094 +-0.061201,51.531957 +0.006513,51.533102 +-0.096332,51.387139 +0.027368,51.524785 +-0.172056,51.532442 +-0.335877,51.469425 +-0.169426,51.371047 +-0.12988,51.529349 +-0.242151,51.568124 +0.039015,51.474071 +-0.309748,51.360566 +-0.138221,51.510426 +0.095345,51.473078 +-0.10237,51.59109 +-0.12511,51.616275 +-0.417931,51.475219 +-0.378289,51.605864 +-0.20489,51.357298 +-0.111349,51.561866 +-0.247745,51.535584 +-0.127727,51.51436 +-0.135445,51.509249 +-0.005418,51.425654 +0.011957,51.38827 +-0.346565,51.535768 +-0.422683,51.501945 +-0.047493,51.492441 +-0.100844,51.586137 +-0.08108,51.473733 +-0.12684,51.574946 +0.0625,51.51777 +-0.177237,51.47167 +-0.063343,51.519555 +-0.154769,51.396824 +-0.024504,51.518368 +-0.413877,51.448861 +-0.106133,51.441452 +0.086145,51.528934 +-0.072291,51.574215 +-0.103762,51.564243 +-0.101139,51.54618 +-0.173324,51.514818 +-0.074693,51.555964 +-0.195094,51.4413 +-0.218153,51.481399 +-0.176061,51.511614 +-0.19526,51.551991 +-0.328108,51.579874 +-0.241918,51.412048 +-0.111355,51.640369 +-0.347936,51.542127 +-0.060754,51.638744 +0.130889,51.551313 +0.140984,51.579816 +-0.136201,51.511204 +-0.029956,51.5173 +-0.031265,51.442116 +0.152078,51.454352 +-0.068939,51.498335 +-0.15351,51.609846 +-0.126956,51.417857 +-0.275458,51.386648 +-0.158619,51.429105 +-0.291705,51.509093 +-0.051276,51.436488 +0.005214,51.479555 +-0.089427,51.365912 +-0.14878,51.418411 +-0.138963,51.61627 +-0.116466,51.382995 +-0.017497,51.616925 +-0.42172,51.465981 +-0.289136,51.492276 +-0.149745,51.578807 +-0.368708,51.467296 +-0.008127,51.507857 +-0.0333,51.581158 +-0.186952,51.529489 +-0.074113,51.559453 +0.190588,51.569818 +-0.443942,51.564292 +-0.229604,51.549753 +-0.119862,51.544719 +-0.045194,51.663503 +-0.474478,51.537357 +-0.275817,51.403865 +-0.223512,51.491363 +-0.016428,51.500219 +-0.447231,51.448166 +-0.074729,51.550677 +-0.023303,51.527475 +-0.213021,51.494432 +0.106342,51.505776 +0.062584,51.484198 +-0.008231,51.571203 +-0.206266,51.445203 +0.062862,51.445677 +0.045624,51.395475 +-0.243641,51.553444 +-0.160753,51.496996 +-0.024294,51.413231 +-0.328305,51.471358 +-0.138802,51.461156 +-0.045545,51.375215 +-0.053778,51.483885 +-0.032063,51.644849 +-0.452163,51.497652 +-0.023236,51.608515 +-0.264023,51.452197 +-0.17342,51.482141 +-0.100793,51.494881 +-0.254385,51.4162 +-0.088298,51.462979 +0.051669,51.537186 +-0.285854,51.477229 +-0.025483,51.41335 +0.131481,51.551932 +-0.139777,51.329429 +-0.173395,51.383591 +0.085865,51.492527 +-0.132261,51.516267 +-0.117898,51.476596 +-0.091025,51.525243 +0.068577,51.373399 +-0.278232,51.564091 +-0.016598,51.623969 +-0.034748,51.435061 +-0.018389,51.405127 +-0.150931,51.505106 +-0.024509,51.597152 +-0.167265,51.475453 +-0.178616,51.48259 +-0.378764,51.44518 +0.042854,51.426558 +0.10211,51.499 +-0.145145,51.491472 +0.091444,51.406645 +-0.140201,51.502158 +-0.08593,51.574879 +0.212997,51.594137 +-0.264494,51.56531 +-0.18998,51.57091 +-0.398434,51.527424 +-0.01878,51.370467 +-0.070129,51.534964 +-0.105649,51.522314 +-0.251488,51.492836 +-0.069397,51.477947 +-0.015896,51.454734 +-0.371943,51.49046 +-0.43529,51.523389 +0.014714,51.385606 +-0.451401,51.447843 +0.165179,51.545281 +-0.286485,51.467706 +-0.104956,51.498725 +-0.102048,51.496241 +-0.208943,51.455127 +-0.029756,51.471155 +-0.319709,51.510928 +-0.092585,51.474091 +-0.109512,51.567897 +-0.364957,51.479591 +-0.105551,51.463861 +-0.030467,51.578593 +-0.061454,51.419346 +-0.049321,51.374612 +-0.157681,51.522451 +-0.181097,51.539308 +-0.124056,51.651652 +-0.281244,51.61736 +0.069222,51.523919 +-0.222347,51.493171 +-0.028184,51.58966 +-0.067864,51.60068 +-0.020546,51.551799 +-0.405464,51.506918 +-0.125013,51.580789 +-0.223523,51.491085 +0.087453,51.474621 +-0.17718,51.531955 +-0.086816,51.616313 +0.007477,51.545504 +-0.22201,51.499982 +-0.003855,51.522533 +-0.160252,51.670613 +-0.010254,51.461356 +-0.13916,51.461189 +-0.478374,51.544638 +0.224868,51.561106 +-0.164284,51.425228 +-0.142616,51.50689 +0.129743,51.565992 +-0.225639,51.505226 +-0.159193,51.612884 +0.141011,51.530949 +0.060241,51.450103 +-0.408824,51.558975 +-0.248577,51.61418 +-0.126762,51.52242 +-0.151948,51.554743 +-0.151064,51.519613 +-0.102659,51.498877 +-0.085572,51.605376 +-0.168963,51.37363 +-0.250147,51.519955 +0.044128,51.375789 +0.14082,51.575719 +-0.436152,51.4439 +-0.008165,51.507651 +-0.063331,51.558547 +0.047759,51.550321 +0.052614,51.396198 +0.073469,51.52602 +-0.078511,51.523213 +0.04308,51.519926 +0.116868,51.509337 +-0.088792,51.48456 +-0.077183,51.530772 +-0.291674,51.5623 +-0.252123,51.539489 +-0.134689,51.514354 +-0.066515,51.606251 +-0.323704,51.478648 +-0.089386,51.586419 +-0.111582,51.600474 +-0.359385,51.613892 +-0.148641,51.478425 +-0.401115,51.515492 +0.035536,51.593788 +-0.055283,51.545312 +-0.076859,51.537448 +0.135985,51.346334 +0.240971,51.579316 +-0.184004,51.493069 +-0.047255,51.680146 +0.027206,51.517243 +-0.077167,51.523982 +-0.072139,51.583952 +-0.037606,51.454299 +-0.229262,51.422505 +-0.106096,51.620906 +-0.186309,51.463304 +-0.440214,51.480939 +-0.167876,51.537799 +-0.269025,51.414313 +0.135127,51.571578 +-0.170879,51.441968 +-0.181099,51.429582 +-0.178781,51.556142 +-0.383233,51.512144 +-0.396214,51.497863 +0.086006,51.492453 +-0.199934,51.58412 +-0.275305,51.536217 +-0.081522,51.490997 +-0.109526,51.612428 +-0.156481,51.438604 +-0.100594,51.614972 +0.022451,51.591748 +-0.182746,51.458033 +-0.054311,51.438202 +0.05167,51.477861 +-0.08455,51.605287 +-0.047313,51.657612 +-0.11562,51.482953 +-0.125969,51.529116 +-0.099965,51.58749 +0.029185,51.526102 +-0.08835,51.506162 +-0.262028,51.56414 +-0.226441,51.518331 +-0.06112,51.511479 +-0.199294,51.657973 +-0.188203,51.517216 +-0.214249,51.533766 +-0.223604,51.412635 +0.022549,51.522413 +-0.037666,51.531403 +0.09211,51.371758 +-0.103761,51.433761 +-0.118407,51.456856 +-0.375567,51.51131 +-0.100718,51.493566 +-0.21052,51.494286 +-0.008851,51.508454 +-0.226004,51.514754 +-0.03785,51.432505 +-0.232558,51.546857 +-0.161716,51.514259 +-0.093628,51.642987 +-0.214209,51.555788 +-0.215031,51.556537 +-0.23237,51.506308 +-0.175427,51.651049 +-0.14959,51.495526 +-0.218936,51.584347 +-0.394792,51.526852 +-0.124971,51.309184 +0.082599,51.491362 +-0.147791,51.607705 +0.014147,51.444663 +-0.068281,51.605138 +0.080229,51.450676 +-0.470562,51.507075 +-0.076773,51.538445 +-0.235967,51.550452 +-0.10717,51.507888 +0.057683,51.536901 +-0.011414,51.590196 +-0.09668,51.585261 +-0.125678,51.509498 +-0.109221,51.569691 +0.099136,51.437074 +-0.185263,51.483485 +-0.153152,51.644263 +-0.417504,51.520839 +-0.050949,51.673958 +-0.186881,51.502241 +0.026727,51.577196 +-0.210945,51.453988 +-0.347788,51.581232 +-0.092338,51.616205 +-0.101657,51.477557 +0.123235,51.478916 +0.218814,51.562696 +-0.126592,51.581695 +-0.061379,51.642405 +-0.294961,51.532287 +-0.289561,51.553646 +-0.180584,51.464978 +-0.181831,51.609505 +-0.147279,51.453027 +-0.10802,51.594104 +-0.14899,51.480463 +-0.033871,51.495315 +0.045691,51.576867 +-0.214111,51.361719 +-0.150342,51.523208 +-0.09989,51.493391 +-0.103264,51.378709 +-0.117251,51.583156 +-0.122879,51.474526 +-0.260161,51.479944 +-0.264066,51.496188 +-0.037406,51.61315 +-0.131682,51.580059 +-0.297822,51.389322 +-0.405946,51.45182 +-0.298951,51.491367 +0.039867,51.533489 +-0.090604,51.504634 +-0.371844,51.494874 +-0.337996,51.560825 +-0.326845,51.474674 +-0.0307,51.483329 +0.097919,51.43751 +-0.275098,51.493608 +-0.21754,51.515957 +-0.193618,51.55558 +-0.228525,51.420363 +-0.093485,51.427623 +-0.073101,51.57725 +-0.022242,51.532997 +-0.105625,51.463826 +0.12871,51.570435 +-0.086434,51.537101 +-0.019367,51.528146 +-0.087515,51.411096 +-0.032237,51.612111 +-0.172467,51.491586 +-0.026607,51.541425 +-0.067666,51.478351 +0.033947,51.406092 +-0.089599,51.378684 +-0.155992,51.489683 +0.068884,51.416848 +-0.322843,51.425545 +-0.084665,51.689332 +-0.128093,51.481174 +-0.385971,51.439515 +-0.080615,51.462188 +-0.09323,51.374994 +0.18369,51.58036 +-0.107493,51.507048 +0.23281,51.581846 +-0.187811,51.605497 +-0.118525,51.431238 +-0.23431,51.592861 +-0.103594,51.546453 +-0.287771,51.510259 +-0.322776,51.570635 +0.070873,51.422658 +-0.061045,51.517314 +-0.116036,51.460622 +-0.104588,51.50308 +-0.244163,51.535386 +-0.332225,51.528488 +-0.295446,51.493816 +-0.14403,51.339623 +-0.192499,51.647438 +-0.090651,51.558293 +-0.196596,51.389634 +0.101542,51.48571 +0.007629,51.486024 +0.051272,51.366536 +-0.111431,51.496482 +-0.036565,51.465145 +-0.227908,51.556652 +-0.337496,51.599845 +-0.134277,51.565667 +-0.093017,51.474098 +-0.068709,51.596062 +0.118641,51.43943 +-0.08035,51.626801 +-0.208004,51.499661 +-0.22748,51.57249 +-0.094582,51.598149 +-0.092152,51.47412 +-0.0589,51.592807 +-0.071946,51.598723 +-0.067714,51.584464 +0.222097,51.601033 +0.143623,51.554624 +0.057328,51.493184 +0.017862,51.48682 +-0.103573,51.588547 +-0.309498,51.48973 +0.069429,51.491604 +0.028832,51.334993 +-0.073961,51.486871 +0.108962,51.532861 +-0.412141,51.512179 +0.141561,51.58227 +0.233481,51.603776 +-0.191425,51.552309 +0.000607,51.607167 +-0.308397,51.516754 +-0.052562,51.61307 +-0.240482,51.394743 +-0.404267,51.442598 +-0.175986,51.62561 +-0.102392,51.502172 +0.166644,51.463454 +-0.116776,51.338315 +-0.366696,51.492591 +-0.20784,51.421523 +-0.048852,51.494019 +-0.146029,51.537123 +-0.404502,51.477536 +-0.070753,51.58803 +-0.069061,51.4668 +-0.057719,51.488771 +-0.148005,51.524681 +-0.482674,51.525486 +-0.246152,51.536891 +-0.288279,51.413193 +0.040609,51.607108 +0.07091,51.438745 +-0.174108,51.429923 +-0.046121,51.551796 +-0.325292,51.44825 +-0.203034,51.524926 +-0.046371,51.648586 +-0.047971,51.639611 +0.002327,51.43205 +-0.392758,51.433494 +-0.160018,51.633544 +-0.057248,51.516775 +-0.053365,51.490875 +-0.131943,51.395356 +-0.085811,51.526165 +-0.216714,51.381264 +-0.232663,51.531131 +0.024217,51.546368 +-0.426928,51.517144 +-0.106018,51.381604 +0.000365,51.501373 +-0.156591,51.459828 +-0.217269,51.467142 +-0.278813,51.563623 +0.041769,51.579849 +0.085746,51.559013 +0.172116,51.45195 +-0.09843,51.547494 +-0.132014,51.371023 +-0.183136,51.493146 +-0.083428,51.422513 +-0.11117,51.643433 +-0.141626,51.494761 +-0.18056,51.378666 +-0.193632,51.555589 +-0.193062,51.55577 +0.083671,51.573582 +-0.109534,51.550308 +-0.024427,51.570092 +-0.200399,51.54787 +-0.209006,51.516007 +-0.069583,51.596922 +-0.175783,51.632836 +-0.314259,51.583597 +0.116225,51.567909 +-0.306058,51.584828 +-0.097509,51.579591 +-0.140649,51.392653 +-0.242371,51.580024 +-0.473147,51.515939 +-0.102005,51.563136 +-0.121782,51.55938 +-0.142717,51.590836 +-0.174266,51.366024 +-0.364965,51.466875 +-0.081597,51.379318 +-0.039135,51.636056 +-0.068525,51.569091 +-0.218317,51.379948 +-0.026941,51.509353 +-0.087272,51.546341 +-0.381562,51.44824 +-0.050971,51.618169 +-0.006855,51.380714 +-0.12432,51.530285 +-0.351952,51.449239 +-0.164984,51.516486 +-0.055762,51.416554 +-0.331932,51.476131 +-0.383,51.593979 +-0.007971,51.586396 +-0.107147,51.470532 +-0.129568,51.564046 +-0.242134,51.50533 +-0.131078,51.42857 +-0.358073,51.451933 +-0.223239,51.573577 +-0.046595,51.671952 +0.129607,51.567101 +-0.026192,51.527002 +-0.1895,51.448857 +-0.147987,51.492425 +-0.118837,51.533543 +0.025608,51.574437 +-0.274882,51.492472 +0.063238,51.481138 +-0.214137,51.510105 +0.07009,51.558634 +-0.225507,51.505296 +-0.133827,51.485708 +-0.033429,51.521333 +-0.410396,51.491096 +-0.052561,51.635021 +0.005643,51.485411 +-0.053075,51.426311 +-0.046767,51.659887 +-0.190536,51.578355 +0.008757,51.348028 +0.094082,51.546077 +-0.235089,51.587658 +-0.107057,51.50018 +-0.200841,51.633133 +-0.202433,51.485269 +0.064153,51.428343 +-0.238371,51.506497 +-0.087026,51.529503 +-0.166714,51.64595 +-0.009313,51.496205 +-0.490445,51.469601 +-0.018988,51.52823 +-0.338597,51.600921 +-0.195601,51.409096 +-0.020381,51.4399 +-0.259186,51.563001 +0.058471,51.533578 +-0.195673,51.547393 +-0.038173,51.458877 +-0.124983,51.676126 +-0.385672,51.46352 +-0.190287,51.599151 +-0.049953,51.601822 +-0.064132,51.511133 +-0.154144,51.465895 +-0.124677,51.442964 +0.026067,51.541902 +-0.104135,51.564995 +-0.014286,51.399276 +-0.081149,51.496449 +-0.105659,51.422659 +-0.098365,51.627867 +-0.002041,51.440758 +-0.227677,51.544787 +-0.310254,51.391678 +-0.046706,51.348283 +0.162179,51.549859 +-0.150778,51.493593 +-0.094335,51.689876 +-0.17508,51.475189 +-0.30433,51.491202 +-0.233329,51.463986 +-0.09969,51.538027 +-0.205014,51.563641 +-0.278378,51.621725 +-0.340225,51.474981 +0.00481,51.538635 +-0.024168,51.444505 +-0.369574,51.608864 +-0.326018,51.534218 +-0.041645,51.53308 +-0.163136,51.434841 +-0.024902,51.463519 +-0.124857,51.418534 +-0.428599,51.437145 +-0.050314,51.545166 +0.031173,51.502399 +-0.072455,51.48637 +-0.401362,51.49528 +-0.109964,51.37861 +-0.055296,51.411285 +-0.167766,51.460785 +0.015744,51.516838 +-0.152058,51.342447 +-0.138564,51.541959 +-0.082396,51.496946 +-0.005897,51.556605 +-0.41789,51.579968 +-0.275882,51.614 +-0.243829,51.539554 +-0.362296,51.529353 +-0.183705,51.499135 +-0.152076,51.502813 +-0.11212,51.487474 +0.285644,51.57358 +-0.301587,51.607172 +-0.166988,51.5538 +-0.191098,51.381446 +-0.409745,51.497777 +-0.069448,51.542542 +0.054722,51.536134 +-0.187021,51.523394 +-0.363294,51.5164 +-0.191191,51.456698 +-0.364563,51.478947 +-0.16573,51.472795 +-0.123602,51.423541 +-0.126932,51.516892 +-0.094931,51.470317 +-0.018945,51.437511 +-0.273542,51.470727 +-0.219477,51.378941 +-0.332873,51.612521 +-0.395917,51.528891 +-0.223606,51.366171 +-0.05658,51.55955 +0.005076,51.532227 +-0.144704,51.546652 +-0.16477,51.527544 +-0.215979,51.527884 +-0.115203,51.462659 +-0.091185,51.629918 +-0.043947,51.474324 +-0.146464,51.497311 +-0.210177,51.494209 +-0.191009,51.553706 +-0.057063,51.440136 +-0.081727,51.496764 +-0.174453,51.421997 +-0.176106,51.536452 +-0.199367,51.542953 +-0.035229,51.545148 +-0.05938,51.387837 +-0.202412,51.340992 +-0.213154,51.527122 +-0.063649,51.465748 +-0.378492,51.511323 +-0.23447,51.44448 +-0.128985,51.446711 +-0.142402,51.402258 +-0.302115,51.513974 +-0.403628,51.457202 +0.039763,51.583715 +-0.058765,51.659933 +-0.042592,51.474356 +0.083393,51.564972 +-0.073086,51.566324 +-0.15678,51.510504 +0.054446,51.526166 +0.161617,51.550175 +0.182404,51.463665 +-0.19822,51.542073 +-0.482596,51.482709 +-0.171922,51.361761 +-0.202535,51.485594 +-0.147764,51.504319 +-0.287165,51.592458 +-0.167385,51.492946 +-0.059651,51.44053 +-0.064288,51.613795 +0.152233,51.488846 +-0.065979,51.5519 +-0.482555,51.526438 +-0.19792,51.434959 +-0.125971,51.460556 +-0.142704,51.519967 +-0.247512,51.610315 +-0.084105,51.498449 +-0.111639,51.479598 +-0.06266,51.640152 +-0.084634,51.493395 +-0.355603,51.609424 +-0.196378,51.415295 +0.12974,51.568079 +-0.069295,51.558079 +-0.124313,51.445161 +0.025454,51.578756 +0.014862,51.485738 +-0.059464,51.51923 +0.156962,51.448345 +-0.330481,51.455931 +-0.114979,51.462511 +-0.457968,51.493395 +0.033308,51.597568 +-0.172344,51.480964 +-0.123574,51.560344 +-0.043985,51.464685 +-0.112144,51.410839 +-0.242907,51.580338 +-0.018931,51.432843 +-0.124249,51.523252 +-0.085887,51.57487 +-0.131424,51.544822 +-0.205739,51.460833 +0.105836,51.581037 +-0.306613,51.500722 +0.228781,51.560861 +-0.22784,51.583655 +0.19521,51.47339 +0.212812,51.593601 +-0.396687,51.575508 +-0.173143,51.396761 +-0.15007,51.485812 +-0.306594,51.551771 +-0.084027,51.536028 +0.022625,51.486711 +-0.35244,51.471259 +-0.006478,51.596757 +-0.173189,51.51496 +0.139948,51.522722 +0.03273,51.542561 +-0.196985,51.598463 +-0.371595,51.510742 +-0.00361,51.579839 +-0.101048,51.537276 +-0.167943,51.484411 +-0.308331,51.605623 +-0.018209,51.522273 +-0.019058,51.507683 +-0.158761,51.396941 +-0.297359,51.385161 +0.098293,51.374391 +-0.078158,51.600021 +-0.346478,51.535785 +-0.128715,51.458226 +-0.253374,51.472137 +-0.059583,51.386446 +-0.196437,51.502892 +0.089175,51.360947 +-0.032978,51.427352 +-0.133095,51.507153 +-0.277204,51.523332 +-0.02548,51.527125 +-0.29941,51.36627 +-0.037519,51.642692 +0.008304,51.609131 +-0.211547,51.38587 +-0.167649,51.474848 +0.007911,51.5452 +-0.168649,51.462463 +0.028791,51.409455 +-0.21288,51.50541 +-0.169772,51.426105 +-0.098054,51.417014 +-0.004722,51.591044 +-0.137227,51.492408 +-0.216212,51.462504 +-0.26879,51.464668 +-0.081456,51.66393 +-0.196361,51.540569 +-0.192689,51.383018 +0.072184,51.55741 +-0.139374,51.540848 +0.106209,51.570374 +-0.128421,51.467187 +-0.157969,51.513535 +-0.175045,51.555419 +-0.205788,51.496651 +-0.242106,51.534124 +0.186264,51.581364 +0.067788,51.435905 +0.141028,51.580148 +-0.082158,51.470001 +-0.067614,51.512288 +-0.188666,51.366976 +-0.219755,51.538256 +-0.129144,51.459708 +-0.298882,51.607276 +0.003803,51.520631 +-0.219373,51.596781 +-0.130534,51.464793 +-0.071851,51.519803 +-0.254134,51.540067 +-0.420542,51.496754 +0.130122,51.444969 +-0.429604,51.49381 +-0.024208,51.38688 +0.006512,51.436934 +-0.135997,51.522207 +0.017457,51.406134 +0.155565,51.561285 +-0.10844,51.485904 +-0.196591,51.435828 +0.130312,51.584957 +-0.143061,51.575662 +-0.029639,51.512285 +-0.212906,51.522424 +-0.168093,51.427806 +-0.121672,51.598451 +-0.205174,51.576422 +-0.364057,51.510772 +-0.120794,51.51754 +-0.069849,51.592673 +-0.226046,51.534448 +-0.069802,51.473467 +-0.371291,51.580257 +-0.055513,51.546682 +-0.100942,51.537058 +-0.052591,51.477957 +-0.109616,51.612348 +-0.058745,51.563588 +0.020539,51.581835 +-0.083191,51.485907 +-0.288904,51.383356 +-0.064096,51.615923 +-0.07855,51.550704 +-0.107686,51.523256 +-0.028043,51.511854 +-0.366721,51.469715 +0.04759,51.451394 +-0.062299,51.447327 +0.149309,51.448404 +-0.409383,51.579745 +-0.303604,51.40089 +-0.233878,51.565284 +-0.301539,51.513966 +-0.037795,51.580694 +-0.277788,51.378185 +-0.084103,51.539383 +-0.409049,51.516112 +-0.118216,51.531114 +-0.238436,51.534329 +0.05656,51.553872 +-0.472848,51.497717 +-0.092524,51.563881 +-0.168357,51.524749 +-0.226321,51.50547 +0.025188,51.552331 +-0.180103,51.47997 +-0.222341,51.448137 +-0.23148,51.570572 +-0.150876,51.475484 +-0.23211,51.367325 +-0.0781,51.546326 +-0.056306,51.547694 +-0.071591,51.462129 +-0.13633,51.511215 +-0.010655,51.443198 +0.117327,51.417871 +0.03188,51.590155 +-0.020545,51.551826 +-0.139602,51.493515 +0.101644,51.372883 +-0.145654,51.532504 +0.073444,51.395894 +-0.195748,51.494797 +-0.038574,51.585392 +-0.084579,51.576107 +-0.055236,51.545401 +0.030227,51.406489 +-0.017529,51.487792 +0.014972,51.532669 +-0.099432,51.568103 +-0.371668,51.512749 +-0.128865,51.508056 +-0.165025,51.604712 +-0.08332,51.405506 +0.099891,51.452897 +-0.026439,51.505613 +-0.093287,51.441019 +-0.057045,51.532733 +-0.305262,51.615525 +-0.377558,51.543278 +-0.258202,51.588758 +0.188668,51.564701 +-0.185107,51.480533 +-0.096048,51.598307 +-0.050746,51.440139 +-0.005045,51.552687 +-0.062408,51.514738 +0.053317,51.544657 +-0.344926,51.59049 +-0.050604,51.54884 +0.049805,51.543208 +-0.036838,51.376886 +-0.272157,51.600645 +-0.323684,51.481544 +-0.095877,51.59826 +-0.425444,51.493313 +0.101525,51.499127 +-0.237688,51.578686 +-0.251592,51.559003 +-0.121356,51.512621 +-0.179943,51.465525 +-0.405962,51.521573 +-0.212192,51.467739 +-0.190934,51.357901 +-0.173581,51.495776 +-0.245471,51.536233 +-0.003339,51.586354 +0.150659,51.441932 +-0.411569,51.444046 +-0.251181,51.559923 +-0.391257,51.436494 +-0.100217,51.454674 +0.110794,51.566847 +-0.034409,51.460703 +-0.072149,51.620183 +-0.305981,51.551951 +-0.161151,51.535787 +0.096151,51.560635 +-0.134291,51.520561 +-0.055017,51.490326 +-0.257539,51.592102 +0.158471,51.452867 +0.205288,51.581044 +-0.16677,51.427093 +-0.10111,51.586681 +-0.050047,51.521026 +-0.018015,51.67829 +-0.072981,51.577338 +0.070922,51.556605 +0.035962,51.481516 +-0.169085,51.594614 +-0.444986,51.452416 +-0.071853,51.515307 +0.078886,51.5598 +0.012266,51.522968 +-0.072753,51.588539 +-0.036197,51.42844 +-0.049894,51.679992 +-0.015539,51.478559 +-0.411298,51.443971 +-0.180113,51.610558 +0.04018,51.593042 +-0.094988,51.529075 +-0.31538,51.55482 +-0.123951,51.560998 +0.181145,51.592917 +-0.17434,51.384019 +-0.056769,51.631556 +-0.163083,51.408528 +-0.146664,51.431246 +0.136512,51.571885 +-0.291068,51.599232 +-0.335142,51.593553 +-0.016699,51.352779 +-0.180345,51.534666 +-0.391977,51.442205 +-0.217886,51.558793 +-0.024167,51.474856 +-0.187374,51.492357 +-0.069639,51.646993 +-0.257228,51.582125 +-0.073196,51.578061 +-0.094594,51.36221 +-0.129021,51.458483 +0.174844,51.471504 +-0.095203,51.498009 +0.072711,51.584208 +-0.057964,51.548404 +-0.103446,51.433018 +-0.129458,51.454848 +-0.064365,51.522288 +-0.408419,51.518055 +-0.391227,51.436935 +0.164601,51.546775 +-0.143746,51.492934 +-0.069885,51.482083 +0.029887,51.517232 +-0.171933,51.517512 +-0.106311,51.522325 +-0.190754,51.460828 +-0.332321,51.58622 +-0.260906,51.551561 +0.012857,51.543865 +-0.096066,51.494228 +-0.002775,51.533692 +0.092607,51.572703 +-0.48233,51.537972 +-0.039321,51.585818 +-0.408951,51.447329 +-0.130236,51.516441 +-0.247397,51.557403 +-0.274272,51.526166 +0.120105,51.449287 +-0.023799,51.604532 +-0.117274,51.576996 +-0.110008,51.525991 +-0.172166,51.54193 +-0.286197,51.554865 +-0.171217,51.447207 +-0.010654,51.511057 +-0.108978,51.526514 +-0.302935,51.461264 +-0.208576,51.44978 +-0.014658,51.379732 +-0.164978,51.489023 +0.022766,51.622866 +-0.303719,51.375227 +0.023905,51.568585 +-0.310692,51.518999 +-0.158354,51.612538 +-0.004361,51.430762 +-0.100353,51.385505 +-0.117558,51.543917 +-0.110454,51.568497 +-0.340903,51.432465 +-0.150472,51.52142 +-0.226346,51.533761 +-0.283125,51.587795 +0.111195,51.502596 +-0.124364,51.500808 +-0.211911,51.520583 +-0.125969,51.501014 +0.188096,51.580134 +-0.060365,51.642461 +-0.397777,51.498496 +-0.211221,51.519422 +-0.175912,51.613028 +-0.2057,51.548788 +-0.107622,51.5665 +-0.234252,51.550776 +-0.149231,51.357726 +-0.166566,51.429311 +-0.045388,51.493844 +-0.156526,51.408902 +-0.228251,51.463127 +-0.023684,51.431395 +-0.398075,51.515459 +-0.124555,51.534749 +0.040083,51.600858 +-0.117406,51.399296 +-0.07449,51.557696 +-0.04199,51.510595 +-0.107796,51.549093 +-0.073799,51.417526 +-0.199522,51.498839 +-0.276384,51.608 +-0.270473,51.59822 +-0.180167,51.630153 +-0.098595,51.363768 +0.029683,51.591713 +-0.042722,51.517738 +-0.392866,51.598727 +-0.01128,51.511256 +-0.246525,51.532454 +0.19551,51.477549 +-0.010094,51.50968 +-0.128776,51.446878 +-0.203234,51.545477 +0.285888,51.573548 +-0.243869,51.539644 +-0.065552,51.66286 +-0.048525,51.484472 +-0.064713,51.613307 +-0.144572,51.496714 +-0.194036,51.538474 +0.024684,51.54975 +0.003227,51.388474 +-0.215187,51.504986 +-0.007695,51.576545 +0.005599,51.550671 +0.095104,51.56015 +-0.038657,51.529145 +-0.215438,51.527705 +-0.229699,51.57184 +-0.318176,51.511086 +-0.128325,51.523686 +-0.242847,51.515637 +0.147356,51.531588 +-0.058442,51.422551 +-0.134252,51.390906 +0.066974,51.522996 +-0.173118,51.469888 +-0.049205,51.484412 +-0.222737,51.516126 +-0.132354,51.474525 +-0.080709,51.589182 +-0.028995,51.512167 +-0.188876,51.502434 +-0.147922,51.570757 +-0.093814,51.485037 +-0.199166,51.514453 +-0.189939,51.467236 +0.006803,51.537072 +-0.274177,51.490537 +-0.065277,51.492259 +-0.098386,51.557547 +-0.221947,51.533433 +-0.105559,51.547393 +-0.139615,51.537759 +0.266635,51.557294 +-0.08562,51.551674 +-0.187247,51.442159 +-0.106047,51.422305 +-0.202014,51.545314 +0.059065,51.478666 +0.063833,51.434653 +-0.098464,51.376275 +0.220612,51.556663 +-0.099661,51.385889 +-0.07381,51.461042 +-0.114596,51.58662 +-0.272058,51.544289 +-0.147738,51.514561 +-0.199444,51.398005 +-0.091621,51.663925 +-0.010064,51.517647 +-0.117139,51.578882 +-0.128921,51.524262 +-0.162619,51.543741 +0.034332,51.452965 +0.032212,51.562983 +-0.078432,51.489112 +-0.098741,51.599187 +-0.121761,51.486307 +-0.044654,51.491791 +-0.062269,51.620506 +-0.061013,51.476649 +-0.122098,51.567119 +-0.371348,51.535863 +-0.060887,51.623774 +-0.17239,51.429707 +-0.156705,51.492347 +-0.128244,51.509845 +-0.109944,51.597147 +-0.248793,51.557882 +-0.212772,51.494545 +-0.121435,51.483739 +-0.151512,51.506068 +-0.250308,51.563498 +-0.419379,51.526206 +-0.124562,51.481576 +-0.185139,51.430724 +0.092963,51.535512 +-0.086048,51.617398 +-0.05796,51.491913 +-0.184527,51.381183 +-0.110637,51.527521 +0.069455,51.557359 +0.013363,51.572642 +-0.168293,51.362711 +0.00802,51.558148 +-0.061818,51.513361 +-0.126406,51.450294 +-0.292676,51.53015 +-0.079432,51.55374 +-0.081801,51.496712 +-0.272195,51.468657 +0.00949,51.558779 +-0.100377,51.537463 +0.081887,51.560736 +-0.33564,51.445457 +0.034962,51.409834 +0.040024,51.559583 +-0.062867,51.632242 +-0.167925,51.529769 +-0.418404,51.575155 +-0.134853,51.509977 +-0.105053,51.564435 +-0.142256,51.409045 +-0.098643,51.373004 +-0.346538,51.468047 +-0.42992,51.497608 +-0.109754,51.613178 +0.059752,51.518843 +-0.06422,51.498167 +-0.304861,51.425601 +-0.148944,51.461326 +-0.230105,51.492596 +0.035712,51.400819 +0.048712,51.590141 +-0.4892,51.494664 +-0.225882,51.547925 +-0.122979,51.560092 +0.21443,51.591835 +-0.083741,51.545933 +-0.380024,51.529878 +-0.03084,51.475723 +-0.391469,51.436192 +0.115033,51.384359 +-0.066555,51.552602 +-0.134362,51.511417 +-0.144342,51.576456 +-0.156737,51.502275 +0.035344,51.517767 +-0.188583,51.491665 +-0.174842,51.523349 +-0.297242,51.416948 +-0.278568,51.539547 +-0.189607,51.552695 +-0.037879,51.613239 +-0.267605,51.508479 +0.109416,51.559849 +-0.015507,51.455402 +-0.127765,51.501124 +-0.041376,51.669231 +-0.144289,51.468186 +-0.233629,51.464035 +-0.10248,51.589491 +-0.351681,51.528278 +-0.248596,51.611051 +-0.043143,51.487395 +-0.205071,51.516001 +-0.116688,51.555917 +-0.029442,51.574925 +-0.225902,51.541865 +0.011422,51.515896 +-0.029726,51.517269 +-0.472897,51.516097 +-0.342886,51.576721 +-0.215896,51.535544 +-0.360666,51.528961 +-0.256752,51.574205 +-0.35484,51.528205 +0.014418,51.431205 +0.181207,51.448507 +-0.089821,51.494073 +-0.364768,51.496547 +-0.159542,51.51454 +0.129991,51.556779 +-0.041641,51.458225 +-0.108281,51.612479 +-0.052399,51.440194 +0.117248,51.582468 +-0.072227,51.396098 +-0.26961,51.626254 +-0.181525,51.501421 +-0.116876,51.482164 +0.223243,51.602306 +-0.189334,51.446876 +-0.219352,51.483531 +-0.115341,51.570688 +0.181605,51.450218 +-0.282006,51.491884 +-0.031296,51.427665 +0.017776,51.490742 +-0.134817,51.566575 +-0.055407,51.55695 +-0.298864,51.465054 +-0.211091,51.453937 +-0.131043,51.428021 +-0.151344,51.455726 +-0.246449,51.535924 +-0.195704,51.539678 +-0.131901,51.483501 +-0.212271,51.43034 +0.028718,51.466264 +-0.099109,51.367643 +-0.139382,51.515535 +-0.127257,51.508246 +-0.101611,51.466172 +-0.109875,51.615832 +-0.243226,51.59527 +-0.106115,51.531926 +-0.452358,51.517842 +-0.119087,51.557557 +-0.44783,51.553922 +-0.071384,51.50833 +-0.035599,51.393403 +-0.262756,51.549197 +-0.071855,51.380669 +-0.295339,51.553038 +-0.11834,51.363583 +-0.065791,51.391576 +-0.329215,51.448405 +-0.214787,51.417834 +-0.039465,51.548924 +-0.031637,51.679373 +-0.287017,51.557233 +-0.297887,51.516449 +0.012128,51.517529 +-0.252758,51.544759 +-0.281135,51.422702 +-0.283082,51.422559 +-0.24115,51.56864 +-0.255694,51.540765 +-0.015479,51.51112 +-0.028139,51.475246 +-0.243844,51.535436 +-0.227008,51.649501 +-0.014766,51.529507 +0.124618,51.447919 +0.219683,51.569586 +-0.015714,51.529254 +-0.054708,51.48167 +-0.213188,51.648779 +-0.201536,51.547564 +-0.205545,51.548695 +-0.055619,51.466686 +0.220747,51.584899 +-0.092853,51.494239 +-0.095825,51.469936 +0.177034,51.451562 +-0.277969,51.541643 +-0.167668,51.462151 +0.063638,51.487129 +0.067358,51.535607 +-0.168132,51.537893 +-0.318711,51.511021 +-0.150854,51.404073 +-0.165209,51.516643 +-0.282669,51.586502 +-0.002925,51.39937 +-0.219439,51.455781 +-0.228116,51.37105 +-0.285083,51.55073 +-0.106668,51.499481 +-0.101777,51.53084 +-0.027985,51.526556 +-0.18927,51.553193 +-0.182531,51.501481 +0.063197,51.591506 +-0.02809,51.606825 +-0.267797,51.533436 +-0.031893,51.56796 +-0.217779,51.576659 +-0.268856,51.528326 +-0.087692,51.659383 +0.067297,51.535536 +-0.398054,51.598996 +0.005245,51.39388 +-0.000726,51.471842 +-0.120793,51.40962 +-0.161885,51.514343 +-0.362525,51.477929 +-0.320644,51.553286 +-0.307183,51.391949 +-0.103177,51.378365 +-0.274438,51.425229 +-0.07731,51.524335 +-0.070386,51.485571 +0.22424,51.50002 +-0.195349,51.500151 +-0.102227,51.543239 +-0.043972,51.520178 +-0.048122,51.524249 +0.036884,51.54774 +-0.160883,51.534578 +-0.37013,51.466983 +-0.018103,51.465266 +-0.110506,51.534164 +0.053047,51.471335 +-0.219151,51.456155 +-0.025222,51.535772 +-0.049086,51.648649 +-0.210503,51.495464 +-0.210217,51.552391 +-0.080988,51.55926 +-0.161506,51.46111 +-0.229876,51.555009 +-0.12938,51.464154 +-0.246217,51.535957 +-0.010723,51.45122 +-0.145435,51.48716 +0.015802,51.532187 +-0.29978,51.550377 +-0.115923,51.414749 +-0.087709,51.391963 +-0.002624,51.505848 +-0.053959,51.439024 +0.066331,51.566092 +-0.119101,51.367786 +-0.279497,51.504572 +-0.063437,51.437418 +-0.297776,51.542228 +-0.372092,51.53278 +-0.285266,51.418005 +-0.162495,51.535368 +-0.073157,51.564653 +-0.279492,51.562833 +-0.13773,51.619928 +-0.288556,51.480838 +-0.041191,51.393056 +-0.305845,51.375626 +-0.191386,51.536194 +-0.393729,51.535353 +-0.022001,51.420054 +-0.247929,51.465059 +-0.191869,51.527299 +-0.085384,51.524656 +-0.392586,51.475287 +-0.129219,51.432183 +-0.157581,51.522081 +-0.190145,51.466412 +-0.167398,51.618939 +-0.099248,51.580114 +-0.167891,51.583741 +-0.124111,51.414637 +0.01784,51.378898 +0.063077,51.439585 +-0.236296,51.493067 +-0.136998,51.449599 +-0.180912,51.406018 +-0.27954,51.584883 +-0.218517,51.535989 +-0.130047,51.4651 +0.017517,51.406196 +-0.306454,51.562506 +-0.072581,51.57351 +-0.120659,51.433574 +0.025908,51.431753 +-0.28373,51.49199 +-0.041889,51.679796 +-0.069262,51.382182 +-0.417205,51.52115 +-0.23302,51.379874 +-0.222566,51.390804 +-0.081085,51.579225 +-0.459832,51.498374 +-0.031846,51.40682 +0.034072,51.443563 +-0.130068,51.326748 +-0.198333,51.472724 +-0.385761,51.444251 +-0.175668,51.523973 +-0.174185,51.550576 +-0.051726,51.469849 +-0.009714,51.462516 +0.007282,51.536146 +-0.106788,51.61991 +-0.182187,51.536187 +-0.402463,51.429966 +-0.0913,51.503827 +-0.10827,51.480281 +-0.096614,51.398717 +-0.076741,51.598361 +-0.21209,51.500551 +-0.195753,51.532233 +-0.132141,51.564635 +-0.149589,51.442874 +-0.291926,51.515526 +0.035151,51.535747 +-0.110724,51.341986 +-0.045198,51.628127 +-0.166789,51.592824 +-0.074346,51.507111 +-0.202764,51.456687 +-0.403922,51.478068 +-0.061047,51.511163 +-0.081638,51.404462 +-0.235096,51.547606 +-0.302208,51.42032 +-0.11419,51.4998 +-0.193935,51.601104 +-0.165443,51.403817 +-0.181152,51.437307 +-0.152881,51.580134 +0.008831,51.351022 +-0.199106,51.447953 +-0.137556,51.462063 +-0.288237,51.467804 +-0.424794,51.574387 +0.052041,51.552197 +-0.212323,51.453722 +-0.019979,51.444875 +-0.128149,51.419989 +-0.135808,51.488698 +-0.073362,51.501079 +-0.262782,51.522391 +0.058292,51.535694 +-0.049081,51.493051 +0.030027,51.537571 +-0.024125,51.444505 +-0.149824,51.614535 +-0.257693,51.49256 +-0.080678,51.570387 +-0.098227,51.505324 +-0.098531,51.575867 +-0.21789,51.42236 +-0.315427,51.539902 +0.07352,51.522701 +-0.335692,51.472147 +0.220469,51.582458 +0.110564,51.564693 +0.00658,51.536572 +-0.114656,51.463711 +-0.330594,51.456769 +-0.269021,51.618179 +-0.084883,51.56614 +-0.007719,51.540017 +0.023011,51.517234 +-0.1941,51.457012 +-0.204575,51.4971 +-0.18715,51.479485 +-0.019483,51.488581 +-0.172535,51.498152 +-0.236989,51.530729 +-0.415436,51.458702 +-0.299112,51.412299 +-0.094819,51.437743 +-0.304518,51.483795 +-0.310793,51.435569 +-0.275081,51.374116 +-0.043202,51.538474 +-0.072931,51.579208 +-0.239863,51.501061 +-0.469267,51.492374 +-0.089943,51.470469 +-0.112798,51.406119 +-0.126075,51.551455 +-0.124221,51.52148 +-0.077388,51.580657 +-0.034839,51.48588 +-0.082272,51.58017 +-0.287563,51.413884 +-0.258284,51.593399 +-0.237128,51.498376 +0.025202,51.513986 +-0.075815,51.546127 +-0.04093,51.489283 +0.146087,51.533725 +-0.194373,51.53214 +0.047598,51.420054 +-0.216689,51.595266 +-0.018804,51.502921 +0.088934,51.497572 +-0.186211,51.482834 +-0.263285,51.597034 +-0.338854,51.587176 +-0.179677,51.547056 +-0.214497,51.502377 +-0.049466,51.374579 +-0.016145,51.599565 +-0.069355,51.529402 +-0.149148,51.505375 +-0.016654,51.342184 +-0.061502,51.588992 +-0.081535,51.497894 +-0.307535,51.408113 +-0.217885,51.480514 +-0.409472,51.582966 +0.053827,51.547975 +-0.069578,51.593972 +0.038949,51.367237 +0.003962,51.541985 +0.124582,51.561769 +-0.016954,51.519302 +-0.148289,51.506665 +0.036528,51.543646 +-0.125733,51.508528 +-0.172725,51.521859 +-0.18018,51.36251 +4.3E-05,51.565406 +-0.144036,51.510617 +-0.096665,51.536215 +-0.250883,51.415636 +-0.078235,51.521878 +0.142972,51.544753 +-0.310709,51.5123 +-0.327218,51.552984 +-0.124867,51.485385 +-0.033342,51.52536 +-0.219468,51.455764 +-0.029828,51.406615 +0.012293,51.517365 +-0.028726,51.653129 +0.069372,51.560921 +-0.246069,51.498168 +0.073653,51.486278 +-0.193696,51.514261 +0.108977,51.487024 +-0.193249,51.600923 +-0.221678,51.548482 +-0.201586,51.522152 +-0.201702,51.5719 +0.148118,51.535216 +-0.272647,51.509668 +-0.118032,51.558655 +-0.24671,51.535874 +-0.223869,51.379061 +0.006479,51.632255 +-0.178993,51.546137 +-0.076787,51.501863 +-0.091877,51.3982 +-0.207509,51.421545 +-0.079067,51.556225 +-0.167795,51.463304 +-0.052122,51.477797 +-0.117006,51.524098 +-0.105608,51.522251 +-0.139443,51.506606 +-0.197934,51.525936 +-0.34077,51.582131 +-0.194616,51.371285 +-0.287584,51.578634 +0.184244,51.453649 +-0.249179,51.557969 +-0.063806,51.473952 +-0.231144,51.548733 +-0.075149,51.488761 +-0.125508,51.531914 +0.109402,51.532727 +-0.217387,51.553822 +-0.054617,51.498026 +0.205522,51.613594 +-0.041016,51.466784 +-0.351792,51.569104 +-0.072841,51.579647 +-0.239984,51.551006 +-0.297711,51.410516 +-0.404272,51.601203 +-0.163865,51.522098 +-0.166531,51.485846 +-0.096959,51.569951 +-0.099207,51.524359 +-0.071503,51.380843 +-0.204818,51.42341 +-0.192526,51.537264 +-0.099965,51.58749 +0.080831,51.53571 +-0.200864,51.476082 +-0.098398,51.493925 +-0.073596,51.593517 +-0.169125,51.420349 +0.081953,51.37274 +0.107737,51.382279 +-0.199056,51.45984 +-0.41506,51.498227 +-0.046777,51.647208 +-0.178258,51.415285 +-0.096939,51.474657 +-0.273542,51.585847 +-0.076793,51.503428 +0.069673,51.558335 +-0.104502,51.484302 +-0.473126,51.538985 +-0.131956,51.508222 +-0.213702,51.466314 +-0.410048,51.583828 +-0.130331,51.516236 +-0.086153,51.380328 +-0.162149,51.43434 +-0.113188,51.569728 +0.104232,51.48782 +-0.122453,51.506641 +-0.084451,51.619638 +-0.03022,51.518185 +-0.115772,51.461085 +-0.292653,51.530374 +-0.107763,51.404806 +0.143519,51.455381 +-0.107432,51.3832 +-0.197399,51.604053 +-0.287355,51.485209 +-0.111087,51.492619 +0.048484,51.548465 +-0.119118,51.455672 +-0.394987,51.534426 +-0.50668,51.470241 +-0.436158,51.535513 +-0.087471,51.573565 +-0.422341,51.502246 +-0.152479,51.523133 +0.118301,51.580902 +-0.222164,51.491595 +0.024534,51.445581 +-0.181714,51.630483 +-0.081676,51.521997 +-0.101562,51.379212 +-0.211794,51.591244 +0.170943,51.485164 +0.029884,51.450362 +-0.248858,51.611379 +-0.102027,51.342601 +-0.29126,51.507513 +-0.082831,51.592958 +-0.300116,51.620252 +0.071061,51.482151 +-0.01695,51.449671 +-0.054186,51.514233 +0.033244,51.538559 +-0.217679,51.589903 +-0.291701,51.529614 +-0.202482,51.369643 +-0.308165,51.546335 +-0.44589,51.529591 +-0.045323,51.611097 +0.054423,51.519566 +-0.14283,51.479295 +0.148666,51.456797 +-0.008452,51.399204 +0.011588,51.511172 +0.034385,51.551543 +0.023482,51.594797 +-0.169027,51.460589 +-0.13152,51.512181 +0.107587,51.462498 +-0.074979,51.489361 +-0.165926,51.405758 +-0.164457,51.499132 +-0.04928,51.607081 +-0.244307,51.535748 +-0.163504,51.464037 +0.030891,51.509994 +0.096038,51.456464 +-0.133194,51.419351 +-0.386184,51.483688 +-0.029783,51.517297 +0.053412,51.480429 +-0.055159,51.478845 +-0.276914,51.468366 +-0.059201,51.549486 +-0.135489,51.611161 +-0.103712,51.565106 +-0.07289,51.471278 +-0.075145,51.491935 +-0.11146,51.496483 +-0.127618,51.468154 +0.189196,51.571786 +-0.042627,51.445283 +-0.099944,51.546466 +-0.114432,51.619494 +-0.062189,51.598985 +-0.080976,51.403795 +-0.126809,51.598173 +-0.081099,51.490783 +-0.369864,51.541076 +-0.112016,51.513703 +-0.151935,51.515184 +-0.247185,51.511872 +0.053475,51.519646 +-0.402777,51.474572 +-0.307846,51.40631 +-0.092741,51.500739 +0.113207,51.545752 +-0.265587,51.393813 +-0.129005,51.513427 +-0.29768,51.548656 +-0.303446,51.375214 +-0.162095,51.465067 +-0.385375,51.501275 +-0.06989,51.523899 +-0.12732,51.517258 +-0.286167,51.461964 +-0.307779,51.526825 +-0.148623,51.54603 +-0.150372,51.52105 +-0.092974,51.38427 +-0.458778,51.511246 +-0.080147,51.599092 +-0.154485,51.495954 +-0.200323,51.520559 +-0.209072,51.374187 +-0.076934,51.535669 +0.145157,51.566674 +-0.409269,51.602026 +-0.05302,51.445546 +-0.173409,51.383582 +-0.235085,51.550888 +-0.054701,51.540032 +-0.01788,51.376342 +-0.300274,51.412361 +-0.126211,51.411802 +-0.039907,51.672093 +-0.088342,51.412288 +-0.012541,51.575629 +-0.094724,51.371888 +-0.277326,51.464326 +-0.147464,51.506751 +0.062586,51.446905 +0.229957,51.588438 +-0.136865,51.412197 +-0.039357,51.452072 +-0.315924,51.536196 +-0.083543,51.423891 +-0.169377,51.356415 +-0.339867,51.572056 +0.019611,51.551132 +-0.414099,51.533391 +-0.161711,51.461014 +-0.153496,51.538248 +-0.061151,51.480869 +-0.066409,51.514876 +-0.093858,51.485362 +-0.022721,51.419032 +-0.312242,51.617379 +-0.10249,51.539358 +-0.066569,51.55262 +-0.100586,51.477351 +0.135171,51.587899 +-0.100624,51.567196 +-0.400208,51.445906 +-0.056046,51.519282 +-0.444629,51.453158 +-0.146661,51.494221 +-0.069213,51.544004 +-0.160925,51.48414 +-0.173408,51.482087 +-0.138589,51.508121 +-0.086693,51.372567 +-0.027044,51.571971 +-0.201828,51.485637 +-0.061438,51.538264 +-0.017121,51.442741 +-0.187472,51.467737 +-0.158835,51.519924 +0.091955,51.529874 +-0.094971,51.490101 +-0.138483,51.38439 +-0.041082,51.435976 +-0.096392,51.387086 +-0.097849,51.398746 +-0.217041,51.467093 +-0.215652,51.503797 +-0.39029,51.441499 +-0.016749,51.557859 +0.099705,51.376362 +-0.174508,51.523065 +-0.06332,51.492226 +-0.146793,51.47532 +0.095377,51.570163 +0.032296,51.51729 +-0.232599,51.501132 +-0.17912,51.643319 +-0.111118,51.490803 +-0.060119,51.660064 +-0.234421,51.601163 +-0.163107,51.497573 +-0.220359,51.503177 +-0.065151,51.526536 +-0.071878,51.521216 +-0.051581,51.546905 +-0.358461,51.588648 +-0.267211,51.593639 +0.019464,51.477107 +-0.452773,51.532802 +0.070359,51.468566 +-0.161869,51.416225 +-0.258828,51.434764 +-0.129546,51.423096 +-0.398957,51.548275 +-0.015103,51.468039 +-0.292386,51.527502 +-0.300438,51.539668 +-0.172064,51.554572 +0.1325,51.571248 +0.113768,51.52674 +-0.072932,51.471306 +-0.306561,51.500568 +-0.099301,51.489884 +-0.115719,51.462029 +-0.111479,51.599123 +-0.395808,51.598012 +-0.132098,51.564626 +-0.063932,51.613663 +-0.160226,51.522967 +-0.124384,51.447294 +-0.364986,51.442947 +-0.053389,51.546773 +-0.128973,51.35539 +-0.379301,51.43651 +-0.019633,51.6707 +-0.224558,51.510434 +-0.118218,51.476502 +0.032793,51.451058 +-0.188619,51.496198 +-0.175396,51.651121 +-0.336356,51.478415 +-0.101097,51.587005 +-0.057708,51.562537 +-0.298732,51.412077 +-0.335246,51.588725 +-0.349741,51.53289 +-0.352328,51.527514 +-0.219676,51.407486 +-0.180791,51.432985 +-0.115821,51.397301 +0.032798,51.354223 +-0.00585,51.589661 +-0.199947,51.511084 +0.10309,51.465817 +-0.129361,51.488541 +-0.222394,51.493082 +-0.426661,51.506071 +0.052588,51.552484 +-0.143174,51.575718 +-0.125514,51.497005 +-0.233364,51.550637 +-0.014152,51.511161 +-0.072813,51.57176 +-0.173632,51.397848 +-0.179557,51.427103 +0.011417,51.634131 +0.122209,51.450894 +-0.210292,51.592003 +-0.253025,51.392638 +-0.034296,51.460656 +0.156264,51.466505 +-0.294697,51.53008 +-0.108387,51.586664 +-0.112774,51.557761 +0.061594,51.49355 +-0.219259,51.575701 +0.056603,51.487325 +-0.242866,51.45707 +-0.168968,51.519219 +-0.018876,51.446089 +-0.08017,51.648514 +-0.21452,51.505102 +-0.144743,51.570168 +-0.340499,51.57015 +-0.097735,51.475947 +-0.277723,51.611923 +0.032692,51.532651 +-0.154243,51.52264 +-0.05273,51.472996 +-0.226123,51.45751 +-0.323493,51.478519 +-0.128483,51.322658 +-0.271227,51.600056 +-0.157043,51.469322 +-0.14177,51.421384 +-0.028258,51.514232 +-0.471141,51.537125 +0.151417,51.561136 +-0.084501,51.395121 +-0.160418,51.581862 +-0.245867,51.505683 +-0.050407,51.456222 +-0.065505,51.489619 +-0.281441,51.413003 +-0.120248,51.37802 +-0.062276,51.59896 +-0.052651,51.496474 +-0.020913,51.500808 +-0.074145,51.559381 +0.012888,51.575933 +0.099463,51.463642 +-0.162075,51.406417 +-0.102328,51.431184 +-0.044668,51.61525 +0.043031,51.53847 +-0.22624,51.515351 +-0.191864,51.509953 +-0.292698,51.442411 +-0.135935,51.562897 +-0.436877,51.514094 +-0.175897,51.552869 +-0.11312,51.505133 +-0.211323,51.374302 +-0.363825,51.530138 +-0.125487,51.532066 +-0.362754,51.463508 +-0.150379,51.512327 +-0.110975,51.492869 +-0.054842,51.632361 +-0.033265,51.599349 +-0.141294,51.573692 +-0.150529,51.361506 +-0.012836,51.428406 +-0.215924,51.463246 +-0.1115,51.48366 +0.106826,51.532521 +-0.104724,51.402833 +0.019078,51.606518 +0.175268,51.478591 +-0.053647,51.611658 +-0.285191,51.501436 +0.020809,51.530986 +-0.176909,51.488544 +-0.026753,51.542047 +-0.298641,51.49156 +0.219921,51.561137 +-0.187639,51.41918 +-0.298252,51.529466 +-0.140921,51.537195 +-0.037624,51.584666 +-0.069071,51.4751 +0.184091,51.532718 +-0.268273,51.52963 +-0.14477,51.359715 +-0.074907,51.598367 +-0.138399,51.526562 +-0.344239,51.548226 +-0.048947,51.396576 +-0.185968,51.593743 +-0.024424,51.590137 +-0.291053,51.577722 +0.154749,51.560203 +-0.156094,51.601658 +-0.279243,51.56255 +-0.084449,51.588137 +-0.071161,51.6503 +-0.021673,51.527834 +-0.118427,51.524606 +-0.064858,51.612617 +-0.054865,51.407879 +0.006698,51.632314 +-0.068765,51.663461 +0.187845,51.540642 +0.156548,51.494207 +-0.08808,51.39892 +-0.141606,51.457325 +-0.125212,51.517359 +-0.06382,51.473953 +-0.077148,51.530924 +-0.167717,51.529919 +-0.152297,51.497349 +-0.148578,51.47712 +-0.255562,51.620731 +-0.031045,51.366888 +-0.127322,51.586761 +-0.197879,51.452071 +0.107393,51.392312 +-0.194702,51.523089 +-0.001878,51.547598 +-0.202923,51.419271 +-0.176258,51.529396 +-0.06391,51.523836 +-0.467109,51.481555 +-0.100513,51.617255 +-0.055394,51.544747 +-0.078103,51.616387 +-0.364922,51.524461 +-0.188631,51.51261 +-0.245978,51.381103 +-0.014333,51.557017 +-0.004356,51.551614 +-0.171232,51.447189 +0.274914,51.584706 +-0.231446,51.494802 +-0.168551,51.476777 +-0.354215,51.553528 +-0.018904,51.446773 +-0.305046,51.37548 +-0.445734,51.561259 +-0.022818,51.496407 +0.026903,51.546456 +-0.143509,51.523918 +0.218632,51.606674 +-0.122727,51.434372 +-0.319939,51.515265 +0.024931,51.549773 +-0.319293,51.421546 +-0.37207,51.531395 +-0.115385,51.501213 +-0.184794,51.483693 +-0.158325,51.352285 +-0.068373,51.54988 +-0.120055,51.500811 +-0.050066,51.648711 +-0.293568,51.586463 +-0.174259,51.534337 +0.086581,51.590472 +-0.128565,51.512206 +0.025087,51.407001 +-0.110951,51.332979 +0.106614,51.532615 +-0.06804,51.598569 +-0.03407,51.460229 +0.017365,51.488276 +-0.257267,51.487491 +-0.198095,51.589739 +-0.005049,51.544009 +-0.083802,51.425271 +-0.048358,51.532895 +-0.120432,51.557128 +-0.011216,51.527613 +-0.474298,51.515153 +-0.219518,51.588277 +0.151559,51.455566 +0.212793,51.592621 +0.207433,51.563666 +0.051333,51.538379 +-0.03533,51.525708 +-0.352646,51.410357 +-0.313522,51.511846 +0.057904,51.554244 +-0.079859,51.64252 +-0.038014,51.680757 +-0.190489,51.515543 +-0.104692,51.507156 +-0.123951,51.381991 +-0.165639,51.522063 +0.074733,51.507203 +-0.123724,51.579473 +0.136161,51.457799 +0.020067,51.420343 +-0.28294,51.492329 +0.094328,51.614201 +-0.039646,51.422472 +-0.106603,51.542743 +-0.431134,51.572161 +-0.116161,51.570063 +-0.174938,51.649927 +-0.135256,51.430175 +-0.17754,51.418879 +-0.103822,51.452772 +-0.296562,51.41165 +0.078939,51.559682 +-0.185881,51.480257 +-0.019661,51.552593 +-0.142012,51.502276 +-0.028961,51.515637 +-0.053438,51.469896 +-0.286754,51.574584 +-0.178467,51.667166 +-0.30625,51.576558 +-0.117315,51.489338 +-0.243057,51.56785 +-0.258323,51.408328 +-0.182932,51.501551 +-0.284227,51.55855 +-0.273826,51.605769 +-0.461681,51.517902 +-0.449456,51.524764 +-0.060821,51.589071 +-0.114177,51.463101 +-0.217311,51.553928 +-0.122822,51.609763 +-0.3756,51.511193 +-0.138723,51.528527 +-0.072573,51.583231 +-0.154542,51.495973 +-0.067458,51.571798 +-0.17255,51.625889 +-0.104062,51.591036 +-0.261683,51.602316 +-0.163617,51.497077 +-0.40269,51.492727 +-0.250486,51.506588 +-0.276025,51.508378 +-0.077244,51.532419 +-0.00424,51.506802 +-0.086882,51.615766 +-0.053973,51.402477 +0.025902,51.544046 +-0.41991,51.532121 +-0.26181,51.518393 +-0.233882,51.565195 +-0.230201,51.5853 +-0.360804,51.519512 +0.025158,51.547754 +-0.020609,51.586898 +-0.107466,51.593528 +-0.16713,51.460856 +-0.015418,51.600677 +-0.154947,51.493794 +-0.151116,51.575978 +0.100504,51.45089 +-0.276915,51.616865 +-0.219768,51.534227 +-0.371366,51.536556 +-0.471549,51.537427 +0.137971,51.457712 +0.157385,51.497591 +-0.292501,51.529805 +-0.060286,51.566032 +-0.013372,51.460483 +0.150716,51.442218 +-0.037109,51.475613 +0.133135,51.571263 +-0.14464,51.576578 +-0.099443,51.580971 +-0.133744,51.572709 +0.13151,51.55194 +-0.040985,51.432531 +-0.161019,51.593786 +-0.081066,51.473742 +-0.016094,51.576228 +-0.084308,51.473678 +-0.204686,51.510033 +0.065373,51.536667 +-0.09129,51.530634 +-0.119831,51.454433 +-0.224665,51.508781 +-0.188794,51.51977 +-0.324065,51.583063 +-0.067823,51.600616 +0.126101,51.547308 +0.237311,51.56328 +-0.099987,51.476846 +-0.084403,51.523291 +0.229691,51.559998 +-0.482509,51.603256 +-0.382525,51.424639 +0.011109,51.490137 +-0.327613,51.44617 +-0.355135,51.470803 +-0.329963,51.444863 +-0.297641,51.513388 +-0.458775,51.568526 +-0.034111,51.534941 +-0.096884,51.529241 +-0.193924,51.515056 +-0.08821,51.578307 +-0.189606,51.647474 +-0.245421,51.556276 +-0.059463,51.430707 +-0.273323,51.507808 +0.117014,51.477679 +-0.15783,51.412591 +-0.356569,51.603881 +-0.00153,51.60652 +-0.076886,51.422802 +-0.104047,51.54664 +-0.328996,51.509586 +-0.0334,51.376963 +0.036203,51.594172 +0.005801,51.565757 +-0.158143,51.553158 +0.094838,51.454139 +0.238694,51.558541 +0.201411,51.56475 +-0.022326,51.527738 +-0.028725,51.517432 +-0.041418,51.51251 +-0.109617,51.643947 +-0.114154,51.600084 +-0.19012,51.384012 +0.119264,51.445741 +-0.197493,51.442865 +-0.125507,51.469766 +-0.063968,51.523846 +-0.37885,51.505699 +0.077497,51.544519 +-0.154793,51.44123 +-0.413857,51.441568 +-0.300712,51.410263 +-0.127665,51.328301 +0.008603,51.489182 +0.166215,51.443444 +-0.111292,51.489385 +-0.486963,51.586984 +0.02942,51.449957 +-0.056116,51.611016 +-0.309,51.489947 +0.008432,51.596647 +-0.34962,51.531828 +-0.285261,51.421971 +-0.09039,51.372456 +-0.216811,51.424969 +-0.148099,51.473668 +-0.012887,51.458388 +-0.317991,51.341396 +0.090836,51.486872 +-0.101607,51.464535 +-0.175727,51.611892 +-0.01698,51.607924 +-0.084192,51.576398 +-0.158676,51.629206 +-0.193663,51.647599 +-0.173485,51.395049 +-0.178475,51.458299 +-0.137439,51.492501 +-0.19229,51.501371 +0.05622,51.531953 +-0.222651,51.357074 +-0.085957,51.551562 +-0.005561,51.545493 +-0.384101,51.512462 +-0.013444,51.511203 +-0.452521,51.47175 +0.060708,51.520535 +-0.095918,51.613152 +-0.122533,51.531677 +0.019078,51.606518 +-0.156926,51.437576 +-0.113605,51.381277 +-0.01938,51.521204 +0.113872,51.551711 +0.218788,51.576698 +-0.27135,51.626459 +-0.176085,51.494052 +-0.304259,51.375001 +-0.154794,51.441212 +0.14476,51.470808 +-0.356782,51.47105 +-0.152477,51.4273 +-0.382588,51.510418 +-0.325099,51.483794 +0.053018,51.480319 +-0.120708,51.385383 +-0.023765,51.527456 +0.113593,51.549432 +-0.169773,51.482938 +-0.017482,51.616952 +-0.054297,51.659949 +0.215078,51.558872 +-0.280757,51.394819 +-0.152937,51.507179 +-0.082179,51.57828 +-0.114901,51.577156 +-0.129243,51.461166 +-0.18657,51.552531 +-0.260186,51.469828 +-0.130763,51.564101 +-0.070958,51.386625 +-0.298722,51.518403 +0.147356,51.490509 +-0.009647,51.49747 +-0.129352,51.430332 +-0.299159,51.537626 +-0.22374,51.550339 +0.035989,51.594553 +-0.464381,51.500196 +0.123195,51.448889 +-0.103013,51.598888 +-0.191094,51.547934 +-0.128442,51.510981 +-0.238559,51.44331 +-0.281401,51.549696 +-0.126169,51.439202 +-0.150682,51.554318 +-0.275183,51.384414 +-0.124269,51.530131 +-0.336996,51.406557 +-0.056044,51.555881 +0.039551,51.490293 +-0.22277,51.583362 +0.01034,51.548944 +-0.250369,51.619413 +-0.118301,51.364877 +-0.133163,51.527 +-0.298347,51.433663 +0.188985,51.582708 +0.083992,51.457147 +-0.178593,51.35146 +0.071352,51.560671 +-0.141274,51.489603 +0.005137,51.554285 +-0.391033,51.525938 +-0.266742,51.464772 +-0.032147,51.550726 +-0.092019,51.388562 +0.169991,51.589409 +-0.103158,51.440334 +0.135424,51.347253 +-0.197209,51.527498 +-0.092894,51.441129 +-0.104784,51.436493 +-0.315114,51.499927 +0.054282,51.565431 +-0.372558,51.43799 +-0.021754,51.514653 +-0.104174,51.434217 +0.069753,51.507984 +-0.348047,51.443798 +-0.145866,51.34252 +-0.151676,51.606624 +-0.297812,51.513444 +-0.213293,51.560773 +-0.051081,51.520791 +-0.130043,51.45287 +-0.129645,51.465408 +-0.178769,51.414007 +-0.061895,51.562795 +-0.140294,51.425138 +-0.227547,51.518078 +-0.143818,51.593219 +-0.066328,51.517473 +-0.26833,51.515585 +-0.064973,51.611603 +-0.234223,51.550785 +0.130552,51.551814 +0.061348,51.491927 +0.008595,51.53518 +-0.054644,51.547441 +-0.117008,51.578907 +-0.125081,51.531062 +-0.111728,51.596933 +-0.123947,51.480416 +-0.072939,51.563336 +0.076929,51.439475 +-0.057792,51.631969 +-0.286015,51.536302 +-0.025867,51.511521 +-0.381505,51.540572 +-0.297031,51.559878 +-0.278899,51.565926 +-0.179662,51.638805 +-0.0833,51.605132 +-0.105772,51.507182 +0.140885,51.578325 +-0.092004,51.330163 +-0.157629,51.636878 +-0.190636,51.578384 +-0.160663,51.363842 +0.047525,51.472457 +-0.142635,51.59356 +-0.105594,51.344871 +-0.130438,51.558313 +-0.024063,51.474602 +-0.156584,51.43821 +0.110585,51.566707 +-0.06965,51.567392 +-0.098757,51.616768 +-0.222757,51.391436 +-0.332882,51.439402 +-0.058483,51.538584 +-0.126211,51.329807 +-0.094482,51.483178 +-0.419859,51.507769 +-0.202121,51.402326 +-0.156461,51.636087 +-0.141453,51.515307 +-0.10811,51.618331 +-0.344279,51.592801 +-0.182568,51.487876 +-0.107327,51.47139 +-0.33186,51.476139 +-0.206939,51.3475 +-0.06211,51.447369 +-0.481804,51.541652 +-0.16194,51.459264 +-0.114268,51.464739 +-0.360358,51.505838 +-0.051206,51.680095 +-0.222232,51.407219 +-0.198954,51.581893 +-0.326208,51.512522 +-0.140492,51.414602 +-0.274169,51.528512 +-0.26896,51.532805 +-0.130539,51.558306 +0.148064,51.524876 +-0.141503,51.459509 +-0.146352,51.497228 +0.120707,51.496129 +-0.098049,51.491941 +-0.179777,51.416855 +-0.218462,51.465703 +-0.078557,51.502944 +0.035222,51.394964 +-0.176911,51.488499 +0.180462,51.53462 +-0.073669,51.544014 +-0.19455,51.505795 +-0.17044,51.467724 +-0.002352,51.505808 +0.056418,51.487382 +-0.079324,51.523748 +0.181754,51.592366 +-0.194451,51.513041 +-0.134474,51.516068 +-0.127045,51.547486 +-0.316292,51.432744 +-0.061546,51.518752 +-0.358317,51.541778 +-0.153024,51.520705 +-0.286671,51.604041 +0.071988,51.554994 +0.212619,51.592894 +0.019921,51.606962 +-0.1505,51.502231 +0.112197,51.532676 +-0.135694,51.4975 +0.063965,51.522123 +-0.136446,51.418611 +-0.077437,51.525084 +-0.099972,51.417944 +-0.237588,51.515972 +-0.054972,51.524866 +-0.111842,51.604291 +-0.123466,51.449329 +-0.100321,51.585185 +-0.057337,51.664253 +0.136608,51.574222 +-0.129879,51.447364 +-0.083687,51.492615 +-0.443704,51.562832 +-0.422859,51.572769 +-0.153127,51.577988 +0.016107,51.47381 +-0.019894,51.44518 +-0.12832,51.434111 +-0.402179,51.551817 +-0.12068,51.556701 +-0.087699,51.526528 +-0.093701,51.52882 +-0.476084,51.537198 +-0.020255,51.500698 +-0.161329,51.394193 +-0.357706,51.611981 +0.12705,51.473604 +0.077415,51.559817 +-0.119865,51.390864 +-0.048472,51.622543 +-0.222491,51.468732 +0.199262,51.574323 +0.007195,51.567928 +-0.455213,51.532267 +-0.019316,51.552893 +-0.107334,51.387326 +0.027398,51.576717 +-0.186364,51.534129 +-0.118667,51.578574 +-0.087752,51.353007 +-0.161666,51.611718 +0.230561,51.543291 +-0.288784,51.510517 +-0.0537,51.51177 +-0.105238,51.407445 +-0.114822,51.435567 +-0.385191,51.539489 +-0.001753,51.436464 +-0.110699,51.598436 +-0.064312,51.614595 +-0.096968,51.461501 +-0.297337,51.545891 +-0.122891,51.560108 +0.137398,51.346471 +0.031829,51.520715 +-0.327743,51.483571 +-0.400354,51.548312 +0.116304,51.369849 +-0.189606,51.552704 +-0.274936,51.537201 +0.069411,51.536991 +-0.186649,51.468147 +-0.194527,51.371724 +0.098808,51.418609 +-0.23869,51.547174 +-0.111541,51.552004 +-0.306773,51.501462 +-0.249546,51.541267 +0.070161,51.508705 +-0.078692,51.397562 +-0.048893,51.680066 +0.047531,51.550702 +-0.213531,51.494269 +-0.207795,51.525197 +-0.144933,51.537825 +0.148198,51.536591 +0.011714,51.452825 +-0.099121,51.54407 +0.037471,51.474331 +-0.064828,51.565766 +-0.271496,51.570521 +-0.130155,51.564154 +-0.231183,51.506074 +-0.054172,51.632835 +-0.13525,51.547527 +-0.071953,51.584246 +-0.17883,51.597508 +-0.178819,51.413828 +0.060563,51.539035 +-0.108524,51.458118 +-0.03373,51.681476 +-0.059662,51.590841 +-0.137152,51.450051 +-0.182831,51.495029 +-0.183866,51.55088 +-0.11421,51.544331 +-0.193745,51.501385 +-0.064491,51.614796 +0.012896,51.543784 +-0.162211,51.447129 +-0.10595,51.470576 +-0.104853,51.396936 +-0.104968,51.453258 +-0.2013,51.597414 +-0.102868,51.541019 +-0.451751,51.52001 +-0.073086,51.398567 +-0.283153,51.587831 +0.050659,51.439272 +0.021726,51.431529 +-0.145348,51.685675 +-0.175909,51.524058 +-0.210904,51.47343 +0.101696,51.485608 +-0.119849,51.363553 +-0.124216,51.570696 +-0.103766,51.607155 +-0.059394,51.521576 +-0.09259,51.501933 +-0.186865,51.440543 +-0.391797,51.513674 +-0.398906,51.489708 +-0.111151,51.338593 +-0.426968,51.576637 +-0.091608,51.528193 +-0.061969,51.487042 +-0.037748,51.549264 +-0.135288,51.472134 +-0.05569,51.514447 +-0.120902,51.688398 +-0.331725,51.46326 +0.004377,51.445028 +0.027338,51.487421 +-0.194334,51.5058 +-0.100006,51.427873 +-0.08975,51.391268 +-0.159536,51.412007 +-0.039924,51.530533 +-0.494809,51.47481 +-0.061429,51.622587 +-0.191135,51.546909 +-0.180667,51.54646 +-0.033974,51.58161 +-0.181192,51.383388 +-0.175607,51.513226 +-0.229026,51.588052 +-0.107822,51.563068 +-0.218917,51.533855 +-0.098165,51.491915 +-0.243641,51.498735 +-0.141693,51.543736 +0.008819,51.620794 +0.052388,51.53426 +-0.126765,51.515693 +-0.087345,51.569021 +-0.413873,51.519981 +-0.279711,51.560471 +-0.098274,51.35209 +-0.112818,51.58598 +-0.015072,51.471735 +-0.228567,51.546761 +0.005535,51.55087 +0.106646,51.505807 +-0.234023,51.566375 +-0.149703,51.409783 +0.176333,51.565947 +0.052268,51.546969 +-0.223796,51.509272 +-0.174094,51.516817 +0.14649,51.560975 +-0.163181,51.491072 +-0.059993,51.48067 +-0.093627,51.41419 +-0.243815,51.539554 +-0.02711,51.377226 +-0.283024,51.537607 +0.022304,51.532831 +0.098576,51.46659 +-0.043842,51.491247 +-0.211213,51.582143 +-0.208934,51.536212 +-0.126999,51.437902 +-0.153188,51.599625 +-0.041874,51.512958 +-0.402173,51.49762 +-0.112238,51.52368 +-0.18503,51.34665 +-0.227124,51.373301 +-0.047171,51.659894 +0.106292,51.38619 +-0.106474,51.589619 +-0.285665,51.527565 +-0.224346,51.502904 +-0.174848,51.484987 +-0.195528,51.539756 +-0.357811,51.453215 +0.066782,51.539762 +0.208044,51.555723 +-0.035702,51.643247 +-0.02426,51.527348 +0.256819,51.570577 +-0.294329,51.529904 +-0.225284,51.411573 +-0.127212,51.506537 +-0.041051,51.682795 +-0.029864,51.57584 +-0.095547,51.505659 +-0.296889,51.38698 +-0.084379,51.379813 +0.025565,51.449034 +-0.122964,51.544687 +-0.282295,51.492617 +0.111529,51.364431 +-0.212896,51.522307 +-0.186235,51.413583 +0.083316,51.5917 +-0.120514,51.38101 +0.057637,51.561757 +-0.147087,51.346793 +0.053022,51.59191 +-0.195135,51.369063 +-0.20049,51.368426 +0.089,51.574593 +-0.193199,51.542499 +-0.115635,51.461272 +-0.077366,51.599631 +0.150655,51.441527 +-0.092678,51.528453 +-0.104892,51.590861 +-0.033859,51.477186 +0.167956,51.489303 +-0.086183,51.581565 +-0.23644,51.451254 +-0.016317,51.6049 +-0.082333,51.477845 +-0.060384,51.431711 +0.074598,51.508366 +-0.187522,51.433027 +-0.006666,51.578614 +-0.175666,51.489388 +-0.098052,51.491878 +-0.122509,51.530859 +-0.313935,51.481907 +-0.100344,51.439146 +-0.253753,51.540233 +-0.072502,51.583904 +0.100719,51.48567 +0.050586,51.439247 +-0.013045,51.635519 +-0.065727,51.517706 +-0.112554,51.368391 +0.070004,51.559588 +-0.11213,51.43422 +-0.043486,51.514037 +-0.277373,51.565463 +0.034969,51.509033 +-0.368232,51.548004 +-0.140743,51.540151 +-0.409105,51.497957 +-0.269596,51.508437 +0.145487,51.572765 +0.09274,51.550444 +-0.190172,51.389984 +-0.413942,51.579366 +0.099686,51.578188 +-0.279262,51.548667 +0.051489,51.552099 +-0.116308,51.61991 +-0.414076,51.574701 +-0.110943,51.386602 +-0.09839,51.476119 +-0.035223,51.524843 +-0.163191,51.642631 +-0.3881,51.487761 +-0.062877,51.518639 +-0.167784,51.477961 +-0.274309,51.508398 +0.117189,51.582442 +-0.099981,51.58366 +-0.101976,51.48097 +0.275369,51.542089 +-0.410908,51.570369 +0.120214,51.434258 +-0.153538,51.476254 +-0.018502,51.581907 +-0.191392,51.458886 +0.236275,51.566573 +-0.112025,51.552866 +-0.138499,51.534378 +0.092628,51.399196 +-0.068801,51.474341 +-0.095548,51.540864 +-0.100548,51.371767 +-0.240975,51.514854 +-0.18059,51.52092 +-0.048258,51.493415 +-0.26777,51.600967 +-0.058325,51.479932 +-0.302301,51.515964 +-0.029828,51.575677 +-0.176641,51.621169 +-0.071955,51.446299 +0.066593,51.541312 +-0.108433,51.441525 +0.054015,51.605588 +-0.162714,51.544597 +-0.168279,51.529199 +-0.004165,51.536189 +-0.100849,51.4932 +-0.23141,51.647814 +-0.041565,51.6682 +-0.048882,51.513551 +0.047502,51.550703 +-0.208461,51.551195 +-0.235099,51.550879 +0.141112,51.580704 +-0.303209,51.493452 +-0.10736,51.411077 +-0.269459,51.506726 +-0.035449,51.524622 +0.129409,51.466753 +-0.121653,51.385812 +-0.407112,51.505538 +-0.189316,51.384737 +-0.099179,51.579357 +-0.098518,51.381914 +0.007433,51.596916 +-0.149123,51.44588 +-0.153602,51.507828 +-0.165394,51.49876 +-0.103805,51.379167 +-0.466774,51.502727 +-0.037582,51.646911 +-0.110909,51.521995 +0.26828,51.568018 +-0.018406,51.582787 +-0.169376,51.538524 +-0.132808,51.495143 +-0.206878,51.490903 +-0.017505,51.448494 +0.066872,51.555426 +0.01749,51.517204 +-0.142204,51.539346 +-0.37719,51.562543 +-0.132746,51.507219 +-0.012651,51.616106 +-0.395781,51.574192 +-0.100773,51.586478 +-0.096973,51.563045 +0.227777,51.603785 +-0.221002,51.486667 +-0.194715,51.360019 +-0.123266,51.484388 +0.104282,51.425057 +-0.042417,51.667207 +-0.071743,51.585465 +-0.163064,51.491125 +-0.040546,51.587196 +0.00485,51.517564 +-0.309026,51.490047 +-0.060863,51.492078 +-0.110044,51.562717 +-0.246688,51.557105 +-0.281602,51.463543 +-0.19245,51.415711 +-0.076164,51.542634 +-0.140641,51.617628 +-0.011292,51.35096 +-0.360255,51.553252 +-0.014957,51.340932 +-0.097461,51.59387 +-0.069919,51.380907 +-0.074558,51.399472 +-0.146532,51.47466 +-0.102986,51.475024 +-0.282325,51.514442 +-0.151711,51.606112 +-0.222368,51.488208 +-0.014529,51.376726 +0.186155,51.570656 +-0.354571,51.466856 +0.107001,51.39535 +-0.234645,51.510083 +0.119879,51.475478 +-0.078114,51.501139 +-0.08834,51.527043 +-0.182659,51.458787 +-0.144251,51.468059 +-0.249221,51.595549 +-0.126276,51.507215 +-0.014891,51.464636 +0.048979,51.305469 +-0.359913,51.608442 +0.078637,51.451109 +-0.119452,51.336083 +0.165272,51.581871 +-0.124285,51.445152 +-0.17576,51.512644 +-0.222127,51.492907 +-0.219332,51.577159 +-0.297444,51.500508 +-0.045296,51.61107 +-0.131141,51.584457 +-0.02092,51.500646 +0.075868,51.380842 +-0.099718,51.476743 +-0.152449,51.4148 +-0.161563,51.46112 +-0.125966,51.647743 +-0.12186,51.376562 +-0.119088,51.455707 +-0.276058,51.42385 +-0.098706,51.373922 +-0.160314,51.501818 +-0.178901,51.45265 +0.011094,51.408906 +-0.040699,51.548747 +-0.148954,51.461443 +-0.002474,51.548147 +-0.157706,51.5172 +-0.018287,51.583208 +-0.013895,51.518396 +0.101491,51.449514 +-0.185226,51.516702 +-0.105521,51.624656 +-0.159562,51.519765 +-0.023566,51.568981 +-0.235041,51.550887 +-0.145613,51.597357 +-0.192258,51.561512 +-0.118776,51.530484 +-0.124326,51.44625 +-0.103437,51.590433 +-0.092803,51.501657 +-0.056553,51.649133 +-0.091276,51.572314 +0.040634,51.53067 +-0.295938,51.60762 +-0.07453,51.584072 +-0.274038,51.40338 +-0.091711,51.560199 +0.226836,51.629693 +0.077729,51.544227 +0.10207,51.535682 +-0.129874,51.514736 +-0.32442,51.429218 +-0.12584,51.439161 +0.027919,51.465783 +-0.174411,51.602943 +0.21842,51.551642 +-0.22324,51.503175 +-0.122899,51.410868 +-0.071609,51.530977 +-0.067565,51.443259 +-0.427042,51.497093 +-0.103871,51.464446 +-0.309058,51.605481 +-0.183766,51.497598 +-0.119863,51.511797 +-0.382049,51.511804 +-0.073332,51.597038 +-0.025632,51.476283 +-0.08708,51.372573 +-0.06091,51.514722 +-0.284789,51.552425 +-0.180545,51.610232 +0.06578,51.428377 +-0.043702,51.398224 +-0.029394,51.660074 +-0.191322,51.357538 +0.219045,51.572188 +0.218578,51.59163 +-0.045619,51.548029 +-0.099379,51.581123 +0.035057,51.474769 +-0.113566,51.58012 +-0.193726,51.478526 +-0.147751,51.347757 +-0.060154,51.549475 +-0.145778,51.394146 +-0.101545,51.477492 +-0.07314,51.560633 +-0.223426,51.519895 +-0.279391,51.493599 +-0.092366,51.362246 +-0.097834,51.359601 +-0.079503,51.489696 +-0.200422,51.582752 +-0.011302,51.52596 +0.094678,51.568467 +-0.131126,51.425981 +-0.083404,51.333304 +0.169432,51.481559 +-0.130505,51.360451 +-0.043961,51.681045 +0.157455,51.52804 +-0.326075,51.496865 +-0.445771,51.482677 +-0.396917,51.51396 +-0.118088,51.547514 +-0.295396,51.553048 +0.020413,51.50379 +0.147813,51.546184 +-0.070571,51.496545 +-0.12935,51.478263 +-0.065928,51.496298 +-0.233356,51.409573 +-0.065534,51.50934 +-0.072769,51.571795 +-0.011319,51.527219 +0.145031,51.448339 +-0.181944,51.490879 +-0.175744,51.513057 +-0.045932,51.447424 +-0.30254,51.545966 +-0.190071,51.384911 +-0.202252,51.485104 +-0.438657,51.526518 +-0.02146,51.357949 +-0.27185,51.468651 +-0.031487,51.521561 +-0.07497,51.614294 +0.061222,51.537342 +-0.191017,51.501864 +-0.484402,51.544635 +-0.226173,51.514847 +-0.092204,51.482529 +-0.174525,51.490179 +-0.170259,51.520085 +-0.069501,51.403148 +-0.451002,51.505128 +-0.300425,51.411392 +0.029423,51.450352 +0.09505,51.464432 +-0.227016,51.496857 +-0.006018,51.450853 +-0.244974,51.506794 +-0.212042,51.597785 +-0.004284,51.579625 +-0.246484,51.549269 +-0.189584,51.446745 +-0.184992,51.526564 +0.034761,51.488821 +-0.171069,51.462797 +-0.095127,51.470464 +-0.217949,51.504381 +-0.481505,51.542853 +0.193032,51.534547 +-0.134934,51.549258 +-0.146619,51.560216 +-0.176881,51.488525 +-0.023972,51.377686 +-0.143321,51.512602 +-0.149516,51.483115 +-0.109856,51.435973 +0.025773,51.593067 +-0.241606,51.575166 +-0.076228,51.541457 +-0.315115,51.460046 +-0.121118,51.518759 +-0.147459,51.504377 +-0.040026,51.630801 +-0.134558,51.323627 +-0.278764,51.563757 +-0.201179,51.456744 +-0.091765,51.373603 +-0.173164,51.601628 +-0.132723,51.463722 +-0.055673,51.466759 +-0.087474,51.520536 +-0.088274,51.502474 +-0.255577,51.515917 +-0.259148,51.410075 +-0.041126,51.43595 +-0.191247,51.43196 +-0.165574,51.498583 +-0.004689,51.468807 +-0.134457,51.565517 +-0.061875,51.597209 +-0.042776,51.530257 +-0.265146,51.605029 +-0.211516,51.555675 +-0.128087,51.507333 +0.230223,51.555546 +-0.194623,51.506488 +-0.111557,51.655687 +-0.055943,51.660004 +-0.206543,51.420487 +-0.222534,51.448733 +-0.058215,51.519812 +0.030608,51.589809 +-0.238526,51.464729 +-0.156036,51.497525 +-0.01797,51.433106 +0.107131,51.607146 +0.058893,51.533669 +-0.02816,51.511811 +-0.199034,51.472834 +-0.055681,51.644496 +-0.180806,51.438039 +-0.092743,51.490676 +-0.324671,51.495892 +-0.125732,51.485012 +-0.378057,51.505302 +-0.04367,51.398286 +-0.072,51.538106 +-0.087902,51.526847 +0.15104,51.489821 +0.03218,51.517921 +0.176837,51.459209 +0.023519,51.573547 +-0.178857,51.414314 +-0.092377,51.590829 +-0.327182,51.477268 +-0.11275,51.446406 +0.021025,51.439436 +-0.181688,51.495165 +-0.456434,51.522185 +-0.177134,51.431966 +-0.043535,51.490001 +-0.214062,51.452678 +-0.246099,51.510129 +-0.458714,51.493935 +-0.371392,51.5326 +-0.315504,51.500706 +-0.346339,51.475535 +-0.194598,51.453891 +-0.026759,51.520555 +-0.31486,51.565378 +-0.026254,51.572884 +-0.098037,51.491868 +-0.205937,51.475997 +-0.153844,51.513965 +-0.110848,51.48132 +-0.131789,51.470721 +-0.248353,51.439302 +0.093894,51.397959 +-0.053007,51.524978 +-0.226816,51.502384 +-0.179119,51.643328 +-0.042674,51.44451 +-0.234625,51.550836 +-0.106479,51.422654 +-0.448645,51.552017 +-0.147736,51.648422 +-0.086827,51.652445 +-0.070001,51.591147 +-0.171792,51.424167 +-0.096826,51.60457 +0.031932,51.479625 +-0.376633,51.542528 +-0.171934,51.554561 +-0.196037,51.494415 +-0.105924,51.560492 +-0.127285,51.509317 +-0.091138,51.362073 +0.125801,51.577988 +-0.074613,51.546233 +-0.350765,51.591093 +-0.047217,51.492157 +-0.098258,51.476189 +0.144654,51.567636 +-0.202311,51.515455 +-0.092108,51.392997 +-0.068308,51.462147 +0.097612,51.549431 +-0.221808,51.499269 +-0.201587,51.522862 +0.146047,51.564742 +-0.178128,51.519758 +-0.246823,51.399218 +-0.30472,51.412686 +-0.115045,51.462647 +-0.111156,51.296894 +0.083925,51.485691 +-0.126178,51.438986 +-0.38024,51.449418 +0.045366,51.550012 +-0.308112,51.512775 +-0.066102,51.466311 +-0.251275,51.61012 +0.226151,51.574077 +0.065387,51.451235 +-0.125431,51.494818 +-0.3656,51.549388 +-0.112461,51.50434 +-0.222855,51.41302 +-0.190031,51.384101 +-0.194356,51.372432 +-0.146519,51.477124 +0.034549,51.591089 +-0.140337,51.369852 +0.022466,51.595974 +-0.471079,51.507108 +0.079369,51.552355 +-0.213184,51.502042 +0.131884,51.531565 +0.023818,51.370098 +0.001071,51.405606 +-0.026635,51.468728 +-0.192428,51.409344 +0.163547,51.547676 +-0.195868,51.527514 +-0.164774,51.368097 +-0.11947,51.51992 +-0.046775,51.643899 +0.063001,51.438858 +-0.19586,51.360126 +-0.008801,51.542311 +-0.152309,51.552248 +-0.047117,51.522811 +0.148992,51.454849 +-0.068105,51.46218 +-0.280626,51.584791 +0.064529,51.584918 +0.13442,51.552481 +-0.165168,51.472084 +0.163736,51.477753 +-0.14384,51.338999 +-0.079776,51.642447 +-0.191389,51.524117 +-0.221643,51.589694 +-0.151061,51.492644 +-0.210844,51.509192 +0.005761,51.542215 +-0.091395,51.542946 +-0.039154,51.406745 +-0.305928,51.392443 +0.012322,51.520961 +-0.045154,51.538021 +-0.138214,51.481254 +0.101515,51.606878 +-0.002005,51.339948 +-0.115473,51.462052 +-0.062115,51.59732 +-0.380409,51.560465 +-0.232988,51.505966 +-0.162604,51.494687 +-0.278639,51.58504 +-0.094331,51.480235 +-0.165934,51.519397 +-0.082733,51.577786 +-0.376304,51.485296 +-0.32524,51.504325 +-0.099494,51.567996 +-0.446234,51.52964 +-0.18981,51.541044 +-0.153825,51.455594 +-0.380382,51.449464 +-0.277359,51.617717 +-0.123633,51.485617 +0.175033,51.517823 +-0.109226,51.522957 +-0.198967,51.662932 +0.022112,51.595486 +-0.049471,51.46501 +0.071416,51.532549 +0.112221,51.396011 +-0.223667,51.575166 +0.181622,51.476243 +-0.144487,51.554472 +0.018442,51.575235 +-0.390854,51.438152 +-0.076151,51.655696 +0.069378,51.558197 +0.110689,51.534349 +0.118583,51.582309 +-0.275639,51.51134 +0.208746,51.581231 +-0.10382,51.422611 +-0.098553,51.568763 +0.064404,51.388581 +-0.253583,51.558619 +-0.107039,51.601723 +0.101166,51.378125 +-0.187459,51.467701 +-0.031955,51.483944 +-0.131368,51.52788 +-0.151957,51.417013 +-0.212681,51.415059 +-0.396239,51.462254 +-0.406156,51.521774 +-0.149224,51.454766 +-0.080394,51.598026 +-0.387209,51.60231 +-0.449913,51.521928 +0.114147,51.395077 +-0.245352,51.597802 +-0.046303,51.630672 +-0.275282,51.586007 +-0.060302,51.589377 +-0.073651,51.465167 +0.212837,51.605705 +-0.269551,51.62628 +-0.309201,51.539417 +0.092637,51.603818 +-0.126862,51.438089 +-0.106793,51.58957 +-0.174851,51.424278 +-0.084813,51.427922 +0.018607,51.405809 +-0.027279,51.566219 +0.156666,51.473207 +0.11259,51.396238 +-0.332125,51.528469 +-0.384498,51.500831 +0.024961,51.615068 +-0.036068,51.465667 +-0.114546,51.45799 +0.006359,51.536801 +-0.264541,51.587944 +-0.111034,51.599053 +-0.127193,51.508407 +0.258201,51.570227 +-0.149851,51.543145 +-0.091279,51.50469 +-0.071887,51.5152 +-0.172295,51.480739 +-0.112317,51.602239 +-0.184366,51.516932 +0.129566,51.568073 +-0.371092,51.574112 +-0.175653,51.489343 +-0.203009,51.486366 +-0.294292,51.530128 +0.004469,51.5207 +0.176145,51.557479 +-0.078899,51.532482 +-0.190087,51.443857 +0.145513,51.572701 +-0.130959,51.527307 +0.04866,51.547256 +-0.142573,51.591185 +-0.069039,51.474821 +-0.098883,51.396002 +-0.154328,51.414928 +-0.203538,51.561542 +-0.110653,51.525048 +-0.120328,51.405521 +-0.057334,51.561829 +-0.058968,51.644371 +-0.197142,51.441547 +-0.088909,51.586411 +-0.10025,51.582036 +-0.161371,51.420389 +-0.279739,51.610549 +-0.041625,51.533214 +-0.28478,51.582576 +-0.139677,51.493427 +-0.117475,51.466931 +0.024738,51.579209 +-0.114622,51.523196 +-0.007878,51.507305 +-0.04993,51.492391 +-0.393737,51.598173 +-0.419603,51.525984 +-0.158176,51.523052 +0.057249,51.450785 +0.034857,51.403271 +-0.04746,51.441281 +0.228968,51.557908 +-0.304551,51.514765 +-0.342297,51.580606 +0.130553,51.551832 +-0.07737,51.53011 +-0.098473,51.492469 +-0.147473,51.504386 +-0.132341,51.370767 +0.141969,51.572217 +-0.208782,51.565426 +-0.164114,51.520924 +-0.343652,51.42924 +-0.046833,51.6597 +-0.076793,51.538661 +-0.072729,51.572397 +-0.078096,51.47417 +-0.070723,51.588074 +-0.409822,51.511303 +-0.405234,51.530439 +-0.03907,51.475223 +-0.187295,51.51106 +0.034423,51.509717 +-0.067996,51.603676 +-0.369148,51.53246 +-0.137825,51.449783 +-0.433372,51.575913 +-0.153725,51.367401 +-0.363228,51.478011 +-0.279625,51.562736 +-0.18551,51.457653 +-0.271109,51.530895 +-0.051196,51.550513 +-0.118106,51.476437 +-0.068215,51.554967 +0.141726,51.45705 +-0.171536,51.380477 +-0.234573,51.508193 +-0.409997,51.570842 +-0.103849,51.434419 +-0.149604,51.483449 +-0.176309,51.652133 +-0.02552,51.538205 +-0.032996,51.654694 +-0.206778,51.515487 +-0.21591,51.535545 +-0.085648,51.609397 +-0.162532,51.461009 +-0.161721,51.437121 +0.034157,51.452923 +-0.408773,51.518248 +-0.033645,51.675432 +-0.205141,51.658908 +-0.060498,51.5095 +-0.030793,51.475831 +0.040254,51.607258 +-0.209818,51.370511 +0.065571,51.573515 +-0.052871,51.468672 +-0.088188,51.506573 +-0.102288,51.397775 +-0.163517,51.474828 +-0.291132,51.540972 +-0.22327,51.44869 +-0.178724,51.414402 +-0.164624,51.367887 +-0.300931,51.514038 +-0.363226,51.475259 +-0.096413,51.469657 +-0.106931,51.409613 +-0.207214,51.518686 +-0.376184,51.553114 +-0.199604,51.589564 +-0.252411,51.523703 +-0.247055,51.596326 +-0.177931,51.446637 +-0.056807,51.631683 +-0.041926,51.44787 +-0.224303,51.493255 +-0.182169,51.485244 +-0.017133,51.61004 +-0.458807,51.495869 +-0.132825,51.647556 +0.06741,51.537377 +-0.050387,51.679974 +-0.375232,51.49681 +-0.104347,51.564765 +-0.129577,51.423043 +-0.253807,51.55954 +-0.385928,51.51255 +-0.079619,51.570514 +-0.18224,51.517484 +-0.057389,51.427363 +-0.13867,51.536179 +-0.124668,51.523232 +-0.041844,51.512993 +-0.360218,51.585165 +-0.415441,51.612208 +-0.215332,51.556965 +0.039846,51.582355 +-0.253274,51.560656 +-0.254307,51.589815 +0.009758,51.542929 +0.036907,51.542767 +-0.11068,51.638182 +-0.206722,51.474328 +-0.132373,51.612829 +-0.074128,51.479491 +-0.072835,51.579782 +-0.362429,51.584279 +0.069598,51.508364 +-0.071194,51.457546 +-0.150444,51.505035 +-0.175778,51.484417 +-0.206049,51.652762 +-0.0322,51.544819 +0.130282,51.551585 +-0.323047,51.520489 +-0.066919,51.572931 +-0.172904,51.448923 +-0.105039,51.46718 +-0.21944,51.455754 +-0.180624,51.521136 +-0.191218,51.501885 +-0.156909,51.489086 +-0.113097,51.47079 +-0.080624,51.585386 +-0.17599,51.481632 +0.006542,51.542274 +-0.099559,51.341499 +-0.225166,51.493304 +-0.103419,51.433674 +-0.405401,51.472414 +0.006124,51.568513 +-0.180182,51.358841 +-0.11007,51.550955 +0.044859,51.576342 +-0.44821,51.533443 +-0.248571,51.614324 +-0.052572,51.527731 +-0.189275,51.478196 +-0.411943,51.512473 +0.009791,51.433299 +-0.382577,51.594099 +-0.251422,51.560781 +-0.186353,51.502116 +-0.355925,51.472055 +-0.134662,51.463123 +-0.263814,51.541479 +-0.167539,51.462149 +-0.084814,51.468137 +-0.267969,51.401528 +-0.096333,51.489224 +-0.371816,51.50374 +0.011197,51.490181 +-0.180242,51.518073 +-0.029973,51.577325 +-0.056968,51.527417 +-0.127066,51.533989 +-0.046507,51.644074 +-0.03279,51.475927 +-0.255112,51.56125 +-0.107117,51.388762 +-0.023818,51.433286 +-0.148395,51.515416 +-0.054705,51.43739 +-0.143363,51.46122 +-0.158214,51.461355 +-0.353245,51.580392 +-0.245177,51.3994 +-0.307213,51.483366 +-0.167106,51.603971 +-0.100122,51.464942 +-0.211496,51.46825 +-0.031136,51.451799 +-0.294405,51.573769 +-0.101487,51.4775 +-0.07467,51.534651 +-0.174852,51.630106 +-0.010004,51.508789 +-0.208742,51.589201 +0.090383,51.457141 +-0.132751,51.577918 +-0.401545,51.536153 +0.249478,51.618587 +-0.268183,51.510727 +-0.182346,51.494186 +-0.093328,51.501513 +0.176229,51.566182 +-0.136745,51.471357 +-0.210863,51.459392 +-0.142914,51.511967 +-0.116996,51.57674 +0.215731,51.60315 +0.065112,51.536626 +0.020151,51.583191 +-0.097367,51.539779 +-0.020103,51.51217 +-0.22832,51.370954 +-0.352638,51.533318 +-0.009439,51.462224 +-0.076019,51.474243 +-0.173478,51.495478 +-0.094038,51.500724 +0.253836,51.579115 +0.170631,51.471618 +-0.348577,51.472194 +-0.315162,51.527939 +-0.126808,51.580656 +-0.244408,51.535768 +0.045819,51.520256 +-0.086579,51.537418 +-0.126168,51.50108 +0.056359,51.487347 +-0.136125,51.516238 +-0.175715,51.523884 +-0.190604,51.384137 +0.069323,51.586857 +-0.077347,51.524498 +-0.106925,51.538818 +-0.159049,51.51678 +-0.222125,51.37622 +-0.174044,51.440911 +-0.014218,51.522223 +-0.01498,51.430402 +-0.213325,51.527187 +-0.155931,51.513674 +-0.094407,51.481171 +-0.285178,51.600351 +-0.045346,51.456749 +-0.178433,51.556892 +-0.316969,51.556344 +-0.13849,51.455738 +-0.174489,51.461151 +-0.142581,51.538939 +-0.131296,51.53492 +-0.129066,51.4595 +0.019945,51.545659 +-0.178077,51.412242 +-0.319309,51.5809 +-0.093493,51.524815 +0.15807,51.490123 +-0.028548,51.445389 +-0.301881,51.629863 +0.137922,51.457596 +0.113235,51.5529 +-0.081824,51.649746 +-0.0554,51.411206 +-0.050999,51.5406 +-0.01902,51.510893 +-0.030101,51.410622 +-0.117067,51.576777 +0.081531,51.533045 +-0.118665,51.401906 +-0.010315,51.456645 +-0.143935,51.640988 +0.263454,51.60768 +-0.154425,51.445001 +-0.063245,51.386174 +-0.104304,51.50714 +0.145348,51.566436 +-0.127818,51.514262 +-0.119615,51.580783 +-0.292785,51.366714 +-0.068956,51.474748 +-0.384184,51.476296 +-0.111757,51.596934 +0.018602,51.406331 +-0.367011,51.450718 +-0.070213,51.536386 +0.012591,51.469815 +-0.190285,51.510144 +-0.124271,51.582324 +0.073211,51.52669 +-0.318821,51.510007 +-0.33932,51.603674 +-0.249521,51.553577 +-0.102822,51.489752 +-0.099451,51.561422 +-0.033891,51.479453 +-0.010138,51.442182 +-0.145863,51.527013 +-0.006191,51.535702 +-0.045077,51.538137 +-0.186303,51.482692 +-0.40753,51.469556 +0.077591,51.361756 +0.18413,51.478382 +0.016702,51.460194 +-0.114651,51.463837 +-0.463673,51.522101 +-0.40945,51.53439 +-0.247305,51.596572 +-0.27439,51.546671 +-0.198621,51.499032 +-0.4076,51.443974 +0.04757,51.550594 +-0.086844,51.380303 +-0.05756,51.488093 +-0.36115,51.55804 +-0.066785,51.617909 +-0.333156,51.593372 +-0.101081,51.528499 +-0.125371,51.576982 +0.147149,51.554128 +-0.166735,51.471803 +-0.059227,51.532284 +-0.215568,51.556447 +-0.041533,51.668262 +-0.17689,51.374104 +-0.205955,51.51552 +-0.232601,51.547236 +-0.090467,51.6164 +-0.408037,51.4488 +-0.201564,51.547591 +-0.069232,51.516298 +-0.161636,51.410924 +-0.193626,51.513856 +-0.176702,51.652058 +-0.111761,51.601025 +-0.22813,51.37105 +0.064874,51.360704 +-0.378532,51.55321 +-0.16882,51.407818 +-0.214899,51.582739 +0.008287,51.618879 +-0.117259,51.55607 +-0.196251,51.54081 +-0.056751,51.511866 +-0.043751,51.513232 +-0.091289,51.494106 +-0.169272,51.530321 +-0.209815,51.567779 +-0.083779,51.52615 +-0.126237,51.445975 +-0.034824,51.672916 +-0.137502,51.473294 +0.050057,51.492313 +-0.009209,51.559718 +-0.473461,51.549645 +-0.063601,51.61703 +-0.102007,51.522534 +-0.034621,51.407847 +-0.084235,51.576398 +-0.22176,51.587807 +-0.103063,51.542209 +-0.346492,51.468127 +-0.146165,51.509293 +-0.033168,51.439 +-0.094454,51.534273 +-0.423672,51.45197 +-0.29697,51.535248 +-0.075295,51.549895 +-0.183045,51.490725 +0.149331,51.441533 +-0.055121,51.522729 +-0.15879,51.613202 +-0.032591,51.451437 +-0.34893,51.536161 +-0.06913,51.57696 +-0.434813,51.521737 +-0.360247,51.585157 +-0.108658,51.507786 +-0.111722,51.461883 +0.001251,51.501556 +-0.197923,51.41915 +-0.069688,51.531071 +-0.289099,51.556724 +-0.096241,51.56262 +-0.103376,51.399969 +-0.227359,51.517347 +-0.435584,51.435242 +0.043609,51.577434 +0.019255,51.406472 +-0.122183,51.530719 +-0.078094,51.501264 +0.143337,51.45765 +0.020454,51.447036 +-0.033218,51.550294 +-0.219726,51.455075 +-0.005629,51.535359 +-0.315307,51.500568 +-0.15662,51.550158 +-0.002364,51.483137 +-0.110558,51.386515 +-0.163709,51.454994 +-0.199381,51.472786 +-0.106557,51.584135 +-0.090645,51.576341 +0.008005,51.533247 +-0.08516,51.565721 +-0.183799,51.649911 +-0.267794,51.414916 +-0.013847,51.52942 +0.189104,51.58249 +-0.030398,51.671259 +-0.167102,51.460829 +-0.26819,51.601324 +0.077377,51.531113 +-0.123182,51.56005 +-0.212308,51.385153 +-0.061364,51.526771 +-0.021034,51.444776 +0.037222,51.395667 +-0.204194,51.514494 +-0.452767,51.498092 +-0.25358,51.558691 +-0.374769,51.522 +-0.134984,51.46017 +0.122897,51.453634 +-0.348499,51.470359 +0.161175,51.465614 +-0.098875,51.577653 +-0.123427,51.56848 +-0.171776,51.424185 +-0.135637,51.497472 +-0.287217,51.5008 +-0.073637,51.417281 +-0.161545,51.4114 +-0.2558,51.561368 +0.089402,51.455504 +-0.18562,51.480289 +-0.092439,51.474134 +-0.069415,51.515033 +-0.200818,51.378736 +-0.364427,51.47872 +-0.133589,51.427675 +-0.140815,51.320093 +-0.14498,51.467846 +-0.016769,51.482402 +-0.080337,51.524349 +-0.166999,51.460881 +-0.170173,51.533033 +-0.005231,51.570505 +-0.414004,51.440626 +-0.232131,51.570905 +0.220678,51.588812 +-0.14857,51.627231 +-0.142091,51.515209 +-0.07741,51.502449 +-0.160461,51.423001 +-0.052248,51.411945 +-0.158653,51.471542 +-0.095833,51.570652 +-0.3631,51.43088 +-0.254247,51.542767 +-0.101829,51.599237 +-0.12276,51.634384 +-0.108143,51.597388 +0.061225,51.553043 +-0.273518,51.616923 +-0.262178,51.573827 +-0.017977,51.434932 +-0.043526,51.623324 +-0.058885,51.409052 +0.010932,51.45764 +-0.175762,51.420551 +0.072402,51.484421 +-0.121389,51.528638 +-0.147808,51.512826 +-0.079786,51.497686 +-0.123942,51.482646 +-0.062041,51.518626 +0.192231,51.46323 +-0.30874,51.61794 +-0.061132,51.625154 +0.210598,51.51794 +-0.075209,51.487314 +0.039323,51.367248 +-0.253292,51.538346 +-0.112072,51.602919 +-0.219019,51.576669 +0.167913,51.458934 +-0.305073,51.5065 +-0.037267,51.454815 +-0.245886,51.536698 +0.152215,51.453891 +0.144153,51.56099 +0.012684,51.542241 +-0.271889,51.514459 +0.049353,51.604375 +-0.07212,51.620191 +-0.453536,51.497518 +-0.110795,51.524763 +-0.307161,51.531439 +-0.148153,51.476232 +-0.199319,51.589821 +-0.099694,51.369136 +-0.225222,51.565621 +0.060768,51.493762 +-0.333498,51.577325 +-0.117805,51.457845 +-0.196892,51.440968 +-0.131148,51.527957 +-0.203279,51.48682 +-0.06052,51.566971 +-0.251446,51.546241 +-0.150038,51.500829 +-0.002741,51.421732 +-0.291729,51.456416 +-0.407561,51.587283 +-0.084267,51.574609 +-0.122791,51.450002 +0.067167,51.489684 +-0.33015,51.556434 +-0.072203,51.596084 +-0.119485,51.512223 +-0.104527,51.378037 +-0.073487,51.524057 +-0.125128,51.552375 +-0.013546,51.511492 +-0.187233,51.557622 +-0.045977,51.442308 +-0.266606,51.468745 +-0.063636,51.587706 +-0.19548,51.361379 +-0.168562,51.476858 +-0.172467,51.445445 +-0.083829,51.41395 +-0.142764,51.539041 +-0.033593,51.442182 +-0.037405,51.353892 +-0.040199,51.427374 +0.006583,51.542219 +0.061385,51.536161 +-0.032841,51.644584 +-0.158249,51.511597 +-0.413454,51.441976 +-0.000121,51.539636 +-0.222179,51.583713 +-0.083995,51.526153 +-0.281663,51.491025 +-0.200534,51.3684 +-0.191036,51.547951 +-0.043671,51.648164 +-0.072853,51.570493 +-0.159657,51.499191 +-0.265539,51.542026 +-0.128744,51.528234 +-0.273425,51.545883 +0.082487,51.573567 +-0.304096,51.631676 +-0.151213,51.501693 +0.069872,51.558916 +-0.091025,51.499731 +0.066975,51.492772 +-0.047251,51.658376 +-0.045989,51.442362 +-0.203756,51.508778 +-0.102401,51.397822 +0.174511,51.584011 +-0.499975,51.484569 +0.014898,51.446044 +-0.17007,51.464014 +-0.1639,51.489312 +0.078793,51.438066 +-0.095359,51.362115 +-0.305338,51.497026 +-0.159802,51.522044 +-0.306685,51.58659 +-0.345161,51.598703 +0.003056,51.565013 +-0.025331,51.411872 +-0.056487,51.519766 +0.084751,51.591809 +-0.131876,51.59891 +0.148685,51.540206 +-0.085856,51.616127 +-0.404224,51.497891 +-0.150348,51.500996 +-0.341172,51.524686 +-0.120111,51.474608 +-0.38465,51.472463 +-0.214233,51.409552 +-0.090539,51.463771 +-0.013084,51.464462 +0.046201,51.455744 +-0.081976,51.636548 +-0.103705,51.478516 +-0.471468,51.537678 +-0.134234,51.565676 +-0.071805,51.585367 +-0.300913,51.464931 +-0.134037,51.497851 +-0.057792,51.473493 +-0.35447,51.470865 +-0.111282,51.488575 +-0.079098,51.491793 +0.015528,51.40641 +-0.144129,51.496618 +-0.343418,51.474693 +-0.115112,51.495615 +-0.034209,51.458334 +-0.246584,51.547409 +-0.016088,51.380898 +-0.176648,51.419594 +0.006241,51.546254 +-0.062409,51.386214 +-0.377969,51.436725 +-0.125432,51.459666 +-0.074423,51.57738 +-0.198043,51.365259 +-0.088372,51.653513 +-0.378273,51.571451 +-0.199208,51.45049 +0.071848,51.521112 +-0.073345,51.530511 +-0.058709,51.407421 +-0.093433,51.374601 +-0.109802,51.61308 +0.084626,51.548071 +-0.211946,51.511232 +-0.121107,51.518687 +0.100711,51.424978 +-0.404444,51.477536 +-0.300226,51.493094 +-0.082192,51.49152 +0.139875,51.47257 +-0.127118,51.632421 +-0.256857,51.506548 +-0.148349,51.448286 +-0.267155,51.487691 +-0.372656,51.478124 +-0.110931,51.481385 +-0.060157,51.387472 +0.030416,51.475335 +-0.155754,51.513779 +-0.370702,51.575339 +-0.000539,51.53931 +-0.331326,51.516399 +-0.232913,51.545514 +-0.185426,51.43437 +-0.165591,51.498871 +-0.154545,51.494129 +-0.107599,51.563235 +-0.122187,51.409283 +-0.070124,51.540188 +-0.095396,51.439093 +-0.010564,51.565703 +-0.094482,51.539804 +-0.174152,51.527618 +0.155206,51.452927 +-0.070801,51.608722 +-0.252185,51.514158 +0.099599,51.382515 +-0.298089,51.4615 +-0.251935,51.513912 +-0.252968,51.539654 +-0.062396,51.503821 +0.066233,51.527308 +-0.208131,51.421078 +-0.150617,51.545963 +-0.123438,51.478447 +-0.018467,51.52198 +-0.136912,51.51885 +-0.422569,51.573215 +-0.051648,51.520666 +-0.087346,51.597851 +-0.213265,51.490776 +0.022131,51.543247 +-0.449955,51.481185 +0.049808,51.45882 +-0.437657,51.514887 +0.19135,51.572169 +-0.032379,51.532637 +-0.078346,51.419885 +-0.314062,51.592415 +-0.053341,51.613074 +-0.095994,51.57061 +-0.262604,51.567575 +-0.045993,51.648643 +-0.147869,51.600809 +-0.460331,51.53015 +-0.219408,51.534582 +-0.093846,51.598155 +-0.149232,51.435351 +-0.117004,51.499 +-0.328415,51.57817 +-0.126763,51.484462 +-0.383591,51.577729 +-0.104912,51.478949 +-0.109878,51.610194 +-0.182782,51.531763 +-0.129096,51.421803 +-0.005253,51.55386 +0.294633,51.551471 +-0.339611,51.604406 +-0.314835,51.583236 +-0.139769,51.461792 +-0.054674,51.466553 +0.077252,51.526475 +-0.086226,51.578472 +-0.177305,51.469603 +-0.14567,51.541703 +-0.062959,51.454514 +-0.303873,51.4841 +-0.07961,51.406866 +0.163393,51.599126 +-0.158418,51.389013 +-0.080317,51.643661 +-0.183194,51.614427 +-0.246125,51.556737 +-0.115656,51.570756 +-0.23644,51.63031 +-0.132062,51.399854 +-0.217037,51.595244 +-0.18876,51.519545 +-0.040866,51.670661 +-0.122869,51.44985 +0.056523,51.45577 +0.121485,51.488983 +0.240691,51.558071 +0.102852,51.3726 +-0.123696,51.589275 +-0.127298,51.509371 +-0.103763,51.37913 +0.147721,51.559235 +-0.135463,51.550804 +-0.320657,51.601106 +-0.191097,51.470356 +-0.180681,51.432858 +0.141125,51.580974 +-0.219817,51.378694 +-0.084538,51.541719 +0.096954,51.426816 +0.038409,51.384198 +-0.202472,51.54578 +0.15543,51.528823 +-0.015336,51.5111 +-0.196556,51.527605 +0.214072,51.574386 +-0.166297,51.555201 +-0.130379,51.520355 +-0.413926,51.520099 +-0.285578,51.542941 +-0.323165,51.600045 +0.229579,51.622573 +-0.058547,51.661324 +-0.06288,51.469297 +-0.473043,51.53974 +-0.025457,51.529661 +-0.055375,51.54382 +-0.133087,51.535542 +0.071061,51.436998 +-0.293945,51.373376 +0.152369,51.544311 +-0.083674,51.52693 +0.037876,51.530232 +-0.144951,51.508303 +0.14889,51.531389 +-0.249469,51.513947 +-0.160206,51.516663 +-0.094459,51.484751 +-0.138754,51.511847 +-0.298269,51.4102 +-0.36336,51.477932 +-0.387163,51.557546 +-0.372629,51.510855 +-0.089045,51.473701 +-0.176018,51.511596 +-0.202286,51.362186 +0.182037,51.463205 +-0.008196,51.587182 +-0.169362,51.501852 +-0.078809,51.548649 +-0.158824,51.625567 +0.017558,51.574171 +-0.359054,51.412506 +-0.248126,51.398985 +-0.213727,51.527211 +-0.17411,51.515352 +-0.376205,51.543619 +-0.2246,51.507117 +-0.260973,51.54489 +0.112812,51.540669 +-0.148374,51.448368 +-0.141292,51.547929 +-0.345534,51.543541 +-0.141452,51.324555 +-0.486758,51.540106 +-0.264339,51.541703 +-0.101891,51.397985 +-0.243987,51.554187 +-0.221049,51.549075 +-0.12615,51.501511 +-0.294194,51.425428 +-0.292278,51.511503 +0.266806,51.568559 +-0.120172,51.390743 +-0.079189,51.630334 +-0.403092,51.497696 +-0.029725,51.535668 +-0.119464,51.469319 +-0.331427,51.582637 +-0.018261,51.589763 +-0.179412,51.541773 +-0.191072,51.381743 +-0.134814,51.566665 +-0.026865,51.534109 +0.159174,51.532388 +-0.299375,51.427284 +0.22217,51.588037 +0.071062,51.438626 +-0.203239,51.486738 +0.060058,51.517633 +-0.097772,51.382576 +-0.340965,51.619559 +0.151288,51.491111 +0.221951,51.59537 +-0.048266,51.51346 +-0.132603,51.463828 +-0.163095,51.439085 +-0.087952,51.440932 +-0.033887,51.654799 +-0.139099,51.470477 +-0.462258,51.564084 +0.095999,51.422616 +-0.188136,51.552672 +0.211519,51.590163 +-0.262617,51.594093 +-0.132048,51.389962 +-0.268077,51.505546 +-0.280183,51.623648 +-0.179716,51.498353 +-0.366988,51.548913 +-0.369536,51.500193 +-0.123755,51.500889 +-0.022981,51.444674 +-0.438142,51.445042 +-0.1038,51.434202 +-0.357684,51.469597 +-0.175912,51.523986 +0.010456,51.512621 +0.091271,51.562763 +-0.404056,51.477935 +-0.263941,51.521086 +-0.302759,51.513714 +-0.145422,51.477889 +-0.041198,51.47462 +0.02715,51.517289 +-0.324162,51.448863 +-0.038574,51.585401 +-0.387726,51.492216 +-0.419122,51.505341 +-0.101205,51.451678 +-0.080601,51.481728 +-0.130704,51.429616 +-0.164891,51.643125 +0.126017,51.538704 +-0.021968,51.533981 +-0.069758,51.473493 +-0.031868,51.525767 +-0.124495,51.616831 +-0.23615,51.532299 +-0.330407,51.426768 +-0.041186,51.512875 +-0.122633,51.530645 +0.126099,51.41505 +-0.067591,51.518609 +0.112062,51.39632 +-0.047657,51.547937 +-0.104148,51.436564 +-0.314205,51.511676 +-0.069821,51.557242 +-0.026002,51.538393 +-0.097727,51.494822 +-0.097785,51.491693 +0.015133,51.570894 +-0.339784,51.521636 +-0.129419,51.508254 +0.084157,51.581667 +-0.060796,51.567273 +-0.222065,51.500055 +-0.128321,51.511465 +-0.19433,51.457043 +-0.05244,51.44023 +-0.055723,51.514339 +-0.452579,51.483243 +-0.463407,51.481156 +-0.059701,51.514675 +-0.069567,51.593882 +-0.360611,51.538933 +-0.080879,51.625209 +-0.103194,51.465154 +-0.006555,51.540915 +-0.113596,51.543476 +0.005064,51.593287 +-0.210373,51.520479 +-0.141417,51.512635 +-0.014202,51.51332 +-0.083971,51.526369 +-0.278243,51.621453 +0.112493,51.537824 +0.086345,51.549722 +-0.117363,51.601025 +-0.206404,51.489781 +-0.468719,51.497573 +-0.128341,51.510278 +-0.139071,51.534836 +-0.255786,51.55269 +-0.153438,51.543948 +-0.339748,51.475028 +-0.136921,51.509084 +-0.037071,51.429183 +-0.064881,51.411435 +-0.121161,51.467619 +0.147713,51.542535 +-0.094739,51.597171 +-0.144741,51.443904 +-0.187708,51.46177 +-0.085885,51.330953 +-0.098147,51.387052 +-0.080045,51.646687 +0.232601,51.605843 +-0.177338,51.531957 +-0.0721,51.584194 +-0.046614,51.617027 +-0.180906,51.558558 +-0.255446,51.495206 +-0.29653,51.465488 +-0.103674,51.574331 +-0.409078,51.450307 +0.179087,51.580086 +-0.130357,51.526874 +-0.118016,51.517784 +-0.203176,51.492016 +-0.024202,51.549648 +0.047297,51.538737 +-0.314659,51.616082 +-0.136271,51.31253 +-0.154922,51.509054 +0.002574,51.54191 +-0.18215,51.549423 +-0.193646,51.649488 +-0.19466,51.371277 +-0.429674,51.537054 +-0.150204,51.516308 +-0.023101,51.522481 +-0.203589,51.417699 +-0.227884,51.519036 +-0.207355,51.652998 +-0.141656,51.512423 +0.038282,51.367114 +-0.176058,51.613723 +-0.335602,51.577391 +-0.097489,51.494665 +-0.094429,51.463015 +-0.199756,51.481919 +-0.086367,51.68945 +-0.025944,51.586367 +-0.018114,51.446076 +-0.15174,51.449491 +-0.218485,51.552669 +0.228639,51.500395 +0.030296,51.540696 +-0.289852,51.560098 +-0.147339,51.432336 +-0.206623,51.450047 +-0.191412,51.494784 +-0.30147,51.607197 +-0.022383,51.50112 +-0.089045,51.544643 +-0.162591,51.40468 +-0.047308,51.615663 +-0.050909,51.631405 +-0.104014,51.435303 +0.027967,51.54669 +0.113358,51.420685 +-0.117008,51.466384 +0.251332,51.561465 +-0.015613,51.455296 +-0.108612,51.565949 +0.053016,51.450751 +-0.016233,51.453931 +-0.015773,51.562392 +-0.40279,51.47379 +0.007468,51.51546 +0.181203,51.571522 +-0.137483,51.510514 +-0.15164,51.506115 +-0.144129,51.339669 +-0.060758,51.642728 +-0.045455,51.627187 +-0.201428,51.544828 +-0.334007,51.596936 +-0.331664,51.522923 +-0.106044,51.40709 +-0.366663,51.469318 +-0.202871,51.574813 +-0.305659,51.411404 +-0.246018,51.536997 +-0.117958,51.455536 +-0.008812,51.508678 +-0.098566,51.500627 +-0.312449,51.512028 +-0.220396,51.453737 +-0.292294,51.52688 +0.108653,51.386885 +-0.337005,51.580091 +0.044381,51.410479 +-0.215162,51.504905 +-0.170077,51.519965 +-0.101683,51.481091 +-0.130968,51.429153 +-0.129303,51.421654 +-0.09608,51.570629 +-0.001933,51.458706 +-0.016349,51.341936 +-0.08585,51.431671 +-0.27952,51.610627 +-0.266978,51.492724 +-0.391064,51.438317 +-0.160036,51.486896 +-0.084978,51.592021 +-0.106321,51.441095 +-0.198678,51.499033 +-0.223847,51.590923 +-0.213623,51.515142 +0.026239,51.453537 +-0.31509,51.340239 +-0.240209,51.577708 +-0.272852,51.607831 +-0.48316,51.546858 +-0.166064,51.496783 +-0.432174,51.583442 +-0.411268,51.513642 +-0.297016,51.575723 +-0.431078,51.572097 +-0.036593,51.413824 +0.149313,51.454627 +0.202869,51.545361 +-0.297709,51.541715 +-0.161043,51.63356 +-0.162115,51.490363 +-0.360085,51.55477 +0.100042,51.564621 +-0.064399,51.595218 +0.036452,51.537091 +-0.33594,51.511618 +-0.38023,51.559411 +-0.106149,51.41915 +-0.333183,51.57724 +-0.206743,51.560754 +-0.232473,51.49506 +-0.0697,51.492601 +0.147999,51.560848 +-0.237212,51.464458 +-0.24956,51.541267 +-0.065983,51.495679 +-0.108413,51.592285 +-0.485661,51.494097 +-0.18293,51.495085 +-0.094539,51.500444 +-0.129531,51.576545 +0.061567,51.493595 +0.021609,51.423005 +0.017044,51.516914 +-0.115785,51.464611 +0.105996,51.462653 +-0.340117,51.595278 +-0.006783,51.617832 +-0.214298,51.518138 +-0.185642,51.60701 +-0.110151,51.597357 +-0.008883,51.454481 +-0.064136,51.514784 +-0.096029,51.540746 +-0.243412,51.553018 +-0.056327,51.509646 +-0.024844,51.481198 +0.140987,51.58112 +0.083202,51.493834 +-0.156118,51.361126 +-0.363543,51.47726 +-0.128699,51.447003 +0.028446,51.396466 +-0.119332,51.55792 +-0.198786,51.479854 +-0.188177,51.517153 +-0.094528,51.482414 +0.126362,51.57269 +-0.168687,51.402528 +-0.086675,51.555747 +-0.328077,51.499636 +-0.154917,51.474549 +-0.140749,51.507796 +-0.079381,51.525134 +-0.077138,51.531158 +-0.315027,51.499566 +-0.169735,51.411195 +-0.02685,51.508776 +-0.213179,51.358737 +-0.036197,51.465661 +-0.154079,51.522763 +-0.1814,51.437563 +0.023524,51.477091 +0.145204,51.473507 +-0.045793,51.442251 +-0.104858,51.522275 +-0.408851,51.499465 +-0.219152,51.362128 +-0.127232,51.481448 +-0.070202,51.581969 +0.078612,51.534481 +-0.101245,51.495104 +-0.06319,51.38611 +0.188498,51.525099 +-0.083914,51.544218 +-0.18098,51.585617 +-0.073925,51.415217 +-0.118592,51.374594 +-0.379031,51.505477 +-0.207674,51.635387 +-0.065531,51.452228 +-0.205919,51.489279 +-0.050735,51.440076 +-0.396041,51.475299 +-0.199006,51.366344 +-0.408511,51.522462 +0.11277,51.49209 +-0.103741,51.526942 +-0.095735,51.540544 +-0.285112,51.609 +-0.323942,51.481583 +-0.41323,51.519819 +-0.392722,51.499667 +-0.087054,51.372528 +-0.183307,51.481242 +-0.198334,51.456961 +-0.216051,51.528236 +-0.073122,51.564796 +-0.114637,51.50433 +-0.160029,51.454513 +-0.422725,51.611227 +-0.188487,51.546392 +-0.20624,51.359881 +0.196691,51.553337 +0.072516,51.529787 +-0.186607,51.456501 +-0.419038,51.50569 +-0.337532,51.453999 +-0.408713,51.601398 +-0.004834,51.482298 +-0.279357,51.610733 +-0.074243,51.42613 +-0.156143,51.630407 +-0.405764,51.452078 +-0.191285,51.54603 +-0.312918,51.507908 +0.089144,51.497442 +-0.014991,51.523009 +-0.042985,51.668457 +-0.175067,51.544763 +-0.124601,51.577824 +-0.232054,51.409418 +-0.169287,51.493281 +-0.165927,51.406091 +-0.095729,51.499906 +0.124986,51.571348 +-0.099838,51.499155 +-0.055848,51.521913 +-0.004695,51.509247 +-0.12445,51.37681 +-0.141817,51.508838 +0.120406,51.43126 +-0.142849,51.506831 +-0.07595,51.606145 +-0.081736,51.396622 +-0.203439,51.528916 +-0.321119,51.503556 +0.227657,51.621377 +-0.206214,51.498663 +-0.270568,51.621961 +-0.384161,51.47653 +-0.024404,51.57064 +0.023984,51.517388 +0.062782,51.591595 +-0.412744,51.492746 +-0.195128,51.507953 +-0.312364,51.549012 +-0.257476,51.492574 +-0.11816,51.4009 +-0.182415,51.388066 +-0.270618,51.565508 +0.176794,51.451665 +-0.024301,51.52706 +-0.112198,51.668106 +-0.04626,51.530711 +-0.124289,51.446114 +-0.161674,51.514213 +-0.2675,51.628543 +0.09568,51.571111 +0.092307,51.563015 +-0.142163,51.495714 +0.122045,51.485529 +-0.261311,51.551154 +-0.321131,51.564758 +-0.198455,51.596336 +-0.096679,51.500263 +-0.334813,51.527905 +-0.209743,51.422901 +-0.093876,51.619494 +-0.108285,51.596059 +-0.172435,51.410554 +-0.175531,51.555516 +-0.141435,51.539802 +-0.140323,51.369842 +-0.064184,51.625735 +-0.054731,51.483487 +-0.08328,51.427762 +0.058216,51.295163 +0.022297,51.437283 +0.169874,51.52514 +-0.201455,51.522195 +-0.03925,51.632029 +-0.164313,51.609835 +0.000229,51.386304 +-0.089766,51.433327 +-0.191383,51.502796 +0.041768,51.502512 +0.068123,51.419109 +-0.016976,51.450751 +-0.025095,51.410663 +0.097755,51.530903 +0.117654,51.5822 +-0.117001,51.460943 +0.222091,51.511833 +-0.210929,51.386256 +-0.08906,51.473683 +-0.181077,51.548489 +0.212792,51.562899 +-0.159635,51.435677 +0.221687,51.595294 +-0.325956,51.590904 +-0.219871,51.528986 +0.118071,51.418721 +-0.108266,51.441378 +-0.377441,51.46543 +-0.158693,51.522017 +0.070061,51.558616 +-0.143424,51.511138 +-0.288704,51.465733 +0.112392,51.396305 +-0.466984,51.527359 +-0.153884,51.514055 +-0.030829,51.483331 +-0.37615,51.515985 +-0.466001,51.508139 +-0.020704,51.58306 +-0.371991,51.536816 +-0.109787,51.548037 +0.051985,51.532666 +-0.355774,51.562308 +-0.072589,51.632635 +-0.064219,51.483231 +-0.02087,51.500789 +-0.293583,51.529794 +0.202218,51.519923 +-0.151447,51.452814 +-0.195123,51.515003 +-0.092907,51.490886 +-0.125076,51.587669 +-0.330496,51.561969 +-0.302314,51.463269 +-0.170708,51.520407 +-0.149048,51.543043 +-0.176659,51.615315 +0.110864,51.532853 +-0.00189,51.439919 +-0.149795,51.50257 +-0.071935,51.492557 +-0.069991,51.634283 +-0.126074,51.551473 +-0.109629,51.61099 +-0.190156,51.502139 +0.098096,51.458649 +0.131068,51.458782 +-0.184307,51.530734 +-0.190156,51.50213 +-0.073031,51.566944 +-0.339754,51.604435 +-0.054898,51.52491 +-0.244159,51.380185 +-0.060921,51.589082 +-0.101094,51.587077 +-0.114629,51.554419 +0.00793,51.492539 +0.025431,51.547084 +-0.212732,51.554461 +-0.080009,51.589009 +-0.447627,51.52768 +0.078995,51.358826 +-0.164969,51.550559 +-0.134106,51.497924 +-0.126843,51.46879 +0.184059,51.573294 +-0.181558,51.4843 +-0.006395,51.460041 +-0.140973,51.410544 +-0.299461,51.551973 +-0.128269,51.433597 +-0.440132,51.450832 +-0.222178,51.501604 +-0.10158,51.521008 +0.154268,51.462963 +-0.048455,51.411531 +-0.369538,51.415728 +-0.122972,51.483835 +0.145375,51.494034 +0.082513,51.49167 +-0.09631,51.580309 +-0.166328,51.442067 +-0.007161,51.509541 +-0.234302,51.492848 +-0.287531,51.413974 +0.003284,51.332168 +0.02452,51.475176 +-0.385927,51.473011 +-0.128534,51.423224 +-0.074568,51.598542 +-0.086837,51.58627 +-0.107319,51.387344 +-0.260793,51.492498 +-0.080168,51.65676 +-0.010221,51.507434 +-0.452221,51.469121 +-0.38438,51.533067 +0.287059,51.56956 +0.000518,51.511118 +-0.206136,51.567013 +-0.234516,51.582325 +-0.081074,51.566815 +-0.129617,51.501297 +-0.078498,51.475894 +-0.189211,51.459797 +-0.124707,51.445384 +-0.123939,51.569711 +-0.119278,51.500808 +0.177675,51.579537 +-0.053758,51.483336 +-0.147639,51.352332 +-0.201624,51.654628 +-0.038154,51.664456 +-0.150518,51.467978 +-0.187177,51.539789 +-0.019223,51.446382 +-0.138086,51.461757 +-0.139254,51.492853 +-0.252183,51.539436 +-0.271121,51.530958 +-0.036883,51.468802 +-0.255789,51.400484 +-0.447388,51.565633 +-0.238426,51.449018 +-0.254349,51.542759 +0.021091,51.43082 +-0.076011,51.61494 +-0.410783,51.492783 +-0.335487,51.606605 +-0.235098,51.547561 +-0.04962,51.682326 +0.145521,51.399831 +-0.233668,51.418264 +-0.085758,51.494079 +-0.096323,51.367283 +-0.215136,51.50334 +-0.291618,51.508337 +-0.109506,51.534292 +-0.262014,51.550894 +-0.276072,51.53728 +-0.348913,51.532654 +0.071001,51.560578 +-0.071897,51.520757 +-0.102692,51.431783 +-0.026617,51.520517 +-0.199422,51.543026 +-0.141578,51.537709 +-0.081631,51.606364 +-0.188705,51.428216 +-0.239831,51.515718 +-0.053501,51.509662 +-0.282369,51.491809 +-0.151753,51.519687 +-0.101372,51.53675 +-0.033942,51.481621 +0.094114,51.37255 +-0.079571,51.497673 +-0.135182,51.462727 +-0.126303,51.562051 +-0.405194,51.564168 +-0.215353,51.563413 +-0.042966,51.513057 +-0.186197,51.540134 +-0.076709,51.538947 +-0.274107,51.621194 +0.031983,51.606061 +-0.013676,51.529705 +-0.15553,51.611316 +-0.174646,51.494363 +-0.215394,51.578224 +-0.39683,51.513985 +-0.07054,51.414658 +-0.191204,51.501867 +-0.074178,51.559283 +-0.237823,51.58751 +0.058338,51.581745 +0.206964,51.553666 +-0.29879,51.529726 +-0.140217,51.609968 +-0.221257,51.558898 +-0.251303,51.473571 +0.03778,51.601663 +-0.097887,51.392272 +-0.268183,51.510718 +-0.253578,51.558736 +-0.112232,51.603236 +-0.26954,51.591642 +-0.190857,51.469138 +-0.307045,51.40852 +0.007458,51.413869 +-0.27729,51.469082 +-0.296882,51.552664 +-0.117985,51.362067 +-0.111507,51.57756 +-0.214625,51.409091 +-0.176892,51.613826 +-0.161794,51.527695 +-0.076948,51.57056 +-0.06052,51.526946 +-0.270035,51.388304 +-0.199689,51.508122 +-0.06542,51.5178 +-0.132215,51.494855 +-0.192616,51.555025 +0.220158,51.625512 +-0.014495,51.470763 +-0.107729,51.565305 +-0.204165,51.575678 +-0.16395,51.586251 +-0.3469,51.535674 +-0.406678,51.498158 +-0.15094,51.50525 +-0.06107,51.531649 +0.16762,51.492537 +0.129465,51.566528 +-0.15308,51.495086 +-0.135369,51.506173 +-0.137937,51.538236 +-0.030655,51.67933 +-0.142335,51.538944 +-0.113204,51.504838 +-0.055796,51.527515 +-0.13305,51.512484 +-0.151677,51.501997 +-0.132331,51.535341 +-0.235819,51.508041 +0.06734,51.535517 +0.181454,51.47362 +-0.244778,51.518265 +-0.193097,51.535609 +-0.107038,51.522193 +-0.108157,51.497275 +-0.377014,51.511555 +0.165443,51.542335 +0.110664,51.386866 +-0.071943,51.617895 +-0.153897,51.367413 +-0.224041,51.440312 +-0.118625,51.578537 +0.141139,51.580974 +-0.125722,51.497557 +-0.222223,51.573714 +0.024812,51.582823 +-0.163238,51.460975 +-0.05946,51.533241 +-0.226157,51.566454 +-0.18636,51.482701 +-0.355362,51.50932 +0.066221,51.555384 +-0.121311,51.408558 +-0.141325,51.547821 +0.045383,51.488312 +-0.346718,51.508857 +-0.146682,51.423683 +0.035174,51.543687 +-0.096456,51.580275 +0.040809,51.530712 +-0.229255,51.46843 +-0.326699,51.483385 +-0.064051,51.509315 +-0.282221,51.496132 +-0.084385,51.549154 +-0.057296,51.517684 +-0.080126,51.528329 +-0.078193,51.48007 +-0.15054,51.466351 +-0.141492,51.539821 +0.070792,51.51087 +-0.107214,51.456721 +0.213517,51.506797 +0.116975,51.569452 +-0.105552,51.564236 +-0.094316,51.374795 +0.037223,51.493643 +0.023134,51.43538 +-0.152014,51.613958 +-0.114704,51.463595 +0.125179,51.553206 +-0.261219,51.551674 +-0.031339,51.47218 +-0.017659,51.509701 +-0.103001,51.465636 +-0.378906,51.505745 +-0.034064,51.428197 +-0.108485,51.441301 +0.121355,51.450487 +-0.162848,51.461014 +0.114742,51.393951 +-0.163763,51.677476 +-0.246259,51.515365 +-0.10335,51.418682 +-0.159303,51.498305 +0.020549,51.483095 +-0.063521,51.570033 +-0.114705,51.39437 +-0.061299,51.473992 +-0.047025,51.491605 +-0.193662,51.555554 +-0.19503,51.515154 +-0.150629,51.445634 +-0.062794,51.454323 +-0.218628,51.58668 +-0.45225,51.48189 +-0.215138,51.545703 +-0.362625,51.463884 +-0.195902,51.540149 +-0.091692,51.366353 +0.216985,51.59747 +-0.165133,51.443523 +-0.353929,51.527887 +0.179556,51.450723 +-0.010523,51.520344 +-0.126634,51.515709 +-0.043961,51.51034 +-0.099464,51.476622 +-0.079395,51.378724 +-0.384213,51.523128 +-0.126488,51.516121 +-0.311092,51.52181 +0.184633,51.58046 +-0.016099,51.431456 +-0.017609,51.617008 +-0.060845,51.607821 +-0.047403,51.441945 +-0.12761,51.378965 +-0.123373,51.579944 +-0.101939,51.307527 +-0.414536,51.609992 +0.019745,51.536895 +0.188867,51.582656 +-0.265558,51.400656 +-0.198958,51.459758 +-0.292268,51.528714 +-0.48196,51.530045 +-0.009811,51.509235 +-0.100185,51.476931 +-0.075004,51.598468 +-0.194884,51.494433 +-0.185558,51.606946 +-0.41296,51.480304 +-0.305021,51.562656 +-0.176085,51.403749 +-0.142337,51.50703 +-0.30811,51.618569 +0.065842,51.577251 +-0.301164,51.607273 +0.129752,51.475983 +-0.189554,51.480242 +-0.349654,51.597858 +-0.180214,51.610577 +-0.351357,51.55159 +-0.21866,51.37998 +-0.235399,51.541648 +-0.159542,51.612449 +-0.079871,51.658671 +-0.406664,51.517959 +-0.032834,51.509695 +-0.120992,51.387232 +-0.078626,51.589283 +0.056417,51.487364 +-0.268484,51.601553 +-0.174581,51.366056 +0.039974,51.438748 +-0.061042,51.549624 +0.048103,51.550899 +-0.104513,51.406543 +-0.008351,51.514633 +-0.459171,51.504291 +-0.077832,51.522905 +-0.31305,51.584263 +-0.070349,51.614605 +-0.097011,51.378068 +0.090814,51.532673 +-0.078428,51.521764 +-0.251665,51.545813 +-0.176077,51.53611 +-0.435856,51.443707 +-0.158235,51.513017 +0.07467,51.540396 +-0.031719,51.439579 +-0.055132,51.487613 +0.164926,51.554242 +-0.225869,51.580136 +-0.081724,51.350165 +-0.153778,51.43286 +0.073559,51.487692 +-0.137666,51.508835 +0.000427,51.439934 +-0.327024,51.561812 +-0.131757,51.37699 +0.064495,51.556133 +0.058017,51.424971 +0.057755,51.536882 +-0.111294,51.387831 +0.16408,51.489581 +-0.39623,51.475652 +-0.215441,51.556751 +0.010953,51.517046 +-0.330583,51.581654 +-0.26042,51.551833 +-0.013019,51.530242 +-0.412186,51.498026 +0.017026,51.571617 +-0.11627,51.36712 +-0.306165,51.599783 +-0.342046,51.495437 +-0.079475,51.489677 +-0.109807,51.61227 +-0.220187,51.529027 +0.009691,51.489676 +-0.11819,51.501681 +-0.142697,51.58848 +-0.061216,51.474917 +0.053444,51.533054 +-0.404514,51.4776 +0.11456,51.551618 +-0.406406,51.518333 +-0.094501,51.482369 +0.052924,51.552577 +-0.1941,51.387698 +-0.215896,51.535535 +-0.030824,51.373718 +-0.436267,51.587831 +-0.117126,51.556131 +-0.040612,51.548745 +-0.094485,51.482413 +0.041505,51.452445 +-0.384351,51.539613 +-0.032287,51.517393 +0.071701,51.515017 +-0.112368,51.498916 +-0.191077,51.548006 +0.059965,51.500233 +-0.232956,51.506415 +-0.070175,51.4735 +-0.275128,51.38435 +-0.375392,51.497981 +-0.16907,51.535003 +0.080583,51.531857 +0.099753,51.57807 +0.083751,51.573437 +-0.016177,51.453903 +-0.191649,51.476416 +-0.141546,51.617048 +-0.010299,51.519872 +-0.29753,51.447904 +-0.048016,51.476146 +-0.069371,51.475159 +0.115322,51.362276 +-0.276908,51.580797 +-0.282285,51.493264 +-0.41834,51.440082 +-0.136669,51.471455 +-0.112552,51.470386 +-0.068079,51.614666 +-0.046696,51.625202 +-0.142029,51.515307 +-0.231797,51.499141 +-0.136118,51.503694 +-0.06377,51.586925 +-0.111897,51.600884 +-0.25414,51.558762 +0.101431,51.485801 +0.048259,51.548909 +-0.063782,51.58733 +-0.05345,51.368044 +-0.183125,51.527479 +0.079027,51.559717 +-0.097767,51.354968 +-0.100192,51.379675 +-0.339411,51.456157 +-0.235993,51.588543 +0.217923,51.602488 +-0.345278,51.54503 +-0.127839,51.521834 +-0.140817,51.549675 +0.130369,51.551287 +-0.217263,51.503867 +-0.195896,51.56619 +-0.043914,51.464657 +-0.140795,51.359256 +-0.168441,51.501811 +-0.051777,51.61553 +-0.001842,51.580663 +0.023216,51.573858 +-0.236373,51.547778 +-0.084363,51.47375 +-0.037026,51.476214 +-0.017875,51.609909 +0.050968,51.532504 +-0.19255,51.602144 +-0.037962,51.674254 +-0.05495,51.514228 +-0.154054,51.415293 +-0.453025,51.49814 +-0.404387,51.554256 +-0.124277,51.484315 +-0.277448,51.565384 +-0.160067,51.63376 +-0.127716,51.481222 +-0.075919,51.566559 +-0.051272,51.43995 +-0.228114,51.497143 +0.056196,51.399148 +-0.009593,51.524159 +0.03254,51.595566 +-0.008195,51.507957 +0.120872,51.460253 +-0.098591,51.398866 +-0.189911,51.384225 +-0.209665,51.516844 +0.124015,51.569405 +0.126213,51.569806 +-0.068536,51.551133 +-0.164941,51.521872 +0.020184,51.478075 +-0.10705,51.522238 +-0.100443,51.495675 +-0.292119,51.514216 +-0.096127,51.457153 +-0.161708,51.525913 +0.057702,51.533483 +-0.221539,51.532815 +-0.232394,51.582339 +0.110671,51.471301 +0.102729,51.432909 +-0.063729,51.575675 +-0.133628,51.497989 +-0.196339,51.368038 +-0.27923,51.377657 +-0.066531,51.510984 +-0.176778,51.511706 +-0.172803,51.649444 +-0.192464,51.454352 +-0.239679,51.535364 +-0.117664,51.361153 +-0.075062,51.561222 +-0.173947,51.429983 +-0.144514,51.540687 +0.038315,51.541034 +0.024962,51.576777 +-0.235967,51.550443 +-0.229708,51.409464 +-0.368809,51.547599 +-0.135849,51.611185 +-0.339905,51.618519 +-0.096987,51.499108 +-0.075843,51.488341 +0.003235,51.442269 +0.220009,51.609733 +0.035776,51.547481 +-0.156808,51.510504 +-0.16258,51.358647 +0.157973,51.490215 +-0.256378,51.603218 +-0.306846,51.58653 +-0.091806,51.474124 +-0.191675,51.602742 +0.220077,51.562276 +-0.452478,51.534695 +-0.093617,51.571542 +-0.392353,51.433137 +0.134817,51.470018 +-0.07313,51.563933 +0.047369,51.439699 +-0.033988,51.587977 +-0.140063,51.507317 +-0.17474,51.501738 +-0.449676,51.481362 +-0.288318,51.462958 +0.119145,51.563055 +-0.089115,51.33784 +-0.118306,51.366505 +-0.033422,51.546242 +-0.054027,51.633174 +-0.09085,51.636522 +-0.185392,51.487129 +-0.217001,51.504286 +-0.029388,51.406473 +0.198101,51.473336 +0.03268,51.539171 +-0.062566,51.640654 +-0.111003,51.378843 +-0.027441,51.515108 +-0.040477,51.51833 +-0.214911,51.63324 +-0.297834,51.513238 +-0.376423,51.509928 +-0.203814,51.533319 +-0.106152,51.384969 +-0.11993,51.376675 +-0.183358,51.494102 +-0.474322,51.509686 +-0.214544,51.613901 +-0.017679,51.448137 +-0.127704,51.507192 +-0.370937,51.50335 +-0.13775,51.53469 +-0.097688,51.498544 +0.061351,51.552322 +-0.249431,51.585588 +-0.43593,51.587979 +-0.166809,51.406329 +0.068928,51.577512 +-0.024546,51.549708 +-0.406948,51.517666 +-0.131366,51.47227 +-0.070478,51.595894 +-0.149546,51.495552 +-0.311215,51.512262 +-0.335438,51.557777 +-0.165062,51.430933 +-0.279333,51.614806 +0.001086,51.485929 +0.224092,51.586886 +-0.394446,51.477255 +-0.198789,51.479791 +-0.199811,51.554012 +-0.024994,51.502378 +-0.096441,51.374137 +-0.167466,51.461464 +-0.09454,51.398468 +-0.298873,51.505079 +-0.060941,51.408016 +0.056263,51.528419 +-0.015081,51.551769 +-0.208717,51.386591 +-0.136503,51.417569 +0.01532,51.401684 +-0.016733,51.450702 +-0.299034,51.588916 +0.2614,51.608484 +-0.33373,51.426779 +-0.420701,51.548434 +-0.404927,51.497964 +-0.398949,51.444882 +-0.293435,51.491341 +-0.198838,51.526417 +-0.227412,51.502249 +-0.202735,51.41417 +-0.184506,51.655749 +-0.330716,51.449865 +0.139859,51.573704 +0.095768,51.571145 +-0.18379,51.497733 +0.024768,51.517204 +-0.158316,51.408723 +0.059598,51.560149 +-0.372379,51.531615 +-0.158296,51.513279 +-0.111435,51.600525 +-0.17428,51.517594 +0.109246,51.387917 +-0.149962,51.651631 +-0.064679,51.526448 +0.024783,51.517204 +-0.326926,51.500798 +0.029058,51.526159 +-0.064756,51.613308 +0.026084,51.543602 +-0.130643,51.564234 +-0.140537,51.414566 +-0.196674,51.532292 +-0.089244,51.397896 +-0.097078,51.626515 +-0.142457,51.593674 +-0.121796,51.451803 +-0.189611,51.384544 +-0.242936,51.399735 +-0.196364,51.556189 +-0.142413,51.593691 +-0.068181,51.605442 +-0.09155,51.559909 +0.077772,51.458363 +0.158546,51.53953 +-0.105817,51.507147 +0.076797,51.41088 +0.103915,51.56537 +-0.155843,51.489455 +-0.245121,51.617653 +-0.104405,51.507142 +-0.081847,51.608777 +-0.183869,51.352046 +-0.114707,51.515887 +0.050355,51.399062 +-0.378364,51.467421 +-0.13571,51.519352 +0.037687,51.530218 +-0.114575,51.470562 +0.070158,51.558525 +-0.099954,51.400678 +-0.113256,51.526241 +0.026352,51.547995 +0.104059,51.425844 +-0.10742,51.501139 +-0.224742,51.511633 +0.197742,51.553893 +0.199852,51.456136 +-0.081863,51.636816 +-0.472961,51.508131 +0.106336,51.53253 +0.027455,51.487455 +-0.006137,51.565979 +0.090892,51.535306 +-0.245172,51.493389 +-0.106114,51.520838 +0.009918,51.40996 +-0.105782,51.4082 +0.084179,51.488421 +-0.258074,51.600383 +-0.012696,51.441254 +0.147621,51.547321 +0.068394,51.536515 +-0.130162,51.508041 +-0.187221,51.492211 +-0.189538,51.519898 +-0.086612,51.380371 +-0.070682,51.477528 +-0.105951,51.422196 +-0.148637,51.478524 +-0.129542,51.465478 +-0.105557,51.507161 +-0.142834,51.523871 +0.143665,51.567789 +0.062029,51.576563 +-0.35882,51.469622 +-0.129123,51.456695 +-0.144171,51.430999 +-0.144976,51.560891 +-0.036583,51.584019 +0.035214,51.536492 +-0.17857,51.466763 +-0.101917,51.378615 +-0.294636,51.53132 +-0.200075,51.472733 +-0.367052,51.548725 +-0.055298,51.544628 +0.024653,51.394562 +-0.201796,51.512066 +-0.109549,51.612221 +5.5E-05,51.471918 +-0.110978,51.533911 +-0.426999,51.610852 +-0.015251,51.515712 +0.08902,51.573469 +-0.153194,51.536454 +0.11039,51.607969 +-0.185427,51.483334 +-0.222826,51.509023 +-0.103227,51.398708 +-0.134961,51.510159 +0.124299,51.542692 +-0.046824,51.659574 +-0.126307,51.427046 +-0.239707,51.449748 +-0.423483,51.50173 +-0.093372,51.411686 +-0.124873,51.459595 +0.062753,51.445166 +-0.102934,51.59073 +-0.32348,51.478483 +-0.005738,51.557609 +-0.031842,51.406919 +-0.014568,51.464784 +-0.089805,51.536122 +0.184253,51.571932 +0.069915,51.557306 +0.087313,51.529255 +-0.077159,51.634617 +-0.105449,51.479174 +-0.073694,51.509591 +-0.06584,51.555513 +-0.109959,51.5533 +-0.13435,51.494412 +-0.199535,51.494855 +-0.064828,51.612634 +-0.196554,51.589671 +-0.137719,51.542522 +-0.448882,51.524693 +-0.057051,51.543416 +-0.249097,51.513887 +0.227331,51.503136 +-0.258477,51.402763 +0.136994,51.346118 +-0.073866,51.509279 +-0.147712,51.307064 +0.094327,51.614192 +-0.073837,51.508937 +-0.127664,51.328319 +0.042586,51.38408 +0.099347,51.420335 +-0.046338,51.649008 +-0.503425,51.478607 +-0.274926,51.373673 +0.282699,51.57674 +-0.075687,51.505047 +-0.087613,51.519279 +-0.075134,51.505856 +-0.088264,51.506826 +-0.074398,51.507256 +-0.074906,51.509908 +-0.087999,51.506957 +-2.971025,54.89111 +-2.606352,54.406508 +-2.646844,54.304948 +-2.646932,54.304696 +-3.192111,54.693141 +-2.915293,54.232108 +-2.904609,54.875797 +-3.578691,54.559018 +-3.549353,54.643361 +-3.008056,54.234397 +-2.899658,54.785068 +-2.745856,54.949613 +-2.759898,54.302824 +-2.69233,54.947575 +-3.13948,54.609356 +-3.054009,54.616404 +-3.093653,54.193268 +-3.220943,54.112554 +-2.716378,54.721099 +-3.172392,54.158714 +-2.82246,54.904042 +-2.733458,54.380072 +-3.238065,54.121421 +-3.583435,54.544557 +-2.774022,54.240603 +-3.201913,54.115209 +-2.909367,54.878808 +-3.181971,54.820283 +-2.744194,54.326738 +-2.715816,54.227024 +-2.952191,54.327451 +-2.941531,54.895944 +-3.096571,54.195812 +-3.579487,54.526003 +-3.226291,54.117524 +-3.200815,54.1185 +-2.706145,54.232869 +-2.91526,54.874019 +-2.753785,54.274372 +-3.569461,54.648414 +-3.316709,54.659425 +-3.537832,54.498174 +-2.694375,54.682691 +-3.576522,54.540477 +-3.350355,54.760927 +-3.127108,54.179612 +-3.43627,54.414462 +-3.022553,54.775943 +-2.67139,54.554937 +-2.759243,54.300644 +-2.539163,54.631277 +-3.214057,54.127131 +-3.277085,54.734507 +-3.251274,54.105807 +-3.219118,54.684173 +-2.871451,54.883346 +-3.569632,54.63315 +-2.61534,54.3575 +-3.226011,54.110624 +-3.344675,54.650499 +-3.046782,54.277486 +-2.544259,54.610369 +-3.101435,54.849107 +-2.792609,54.261693 +-3.231213,54.113771 +-3.492097,54.630805 +-3.272744,54.741185 +-3.129817,54.81359 +-3.513652,54.615537 +-3.238938,54.124001 +-2.731985,54.638623 +-3.231563,54.128157 +-3.229656,54.112861 +-2.764073,54.354781 +-2.93367,54.895142 +-3.215261,54.11441 +-3.01443,54.249685 +-2.87959,54.22256 +-3.416969,54.66622 +-3.551223,54.631842 +-2.716159,54.245931 +-3.538226,54.608487 +-3.482922,54.439765 +-3.578179,54.560579 +-3.520142,54.47671 +-2.741709,54.655288 +-2.673759,54.748052 +-3.307491,54.773916 +-3.207334,54.777812 +-2.739937,54.331123 +-3.335214,54.229454 +-3.101389,54.849108 +-2.933833,54.896156 +-3.169342,54.828134 +-2.96957,54.186916 +-3.147448,54.833349 +-2.833969,55.090074 +-3.016376,54.872415 +-2.90058,54.895005 +-3.56474,54.623956 +-3.113268,54.187983 +-3.382623,54.638334 +-2.437578,54.557905 +-3.217546,54.122952 +-3.1474,54.833323 +-3.543047,54.643406 +-3.585194,54.551257 +-3.588892,54.545339 +-2.880165,54.633466 +-3.53797,54.608256 +-2.970802,54.880535 +-2.964356,54.917369 +-3.551444,54.587987 +-3.225458,54.121946 +-2.926617,54.888833 +-2.718961,54.669652 +-3.223874,54.113891 +-3.144301,54.610129 +-3.561016,54.540858 +-3.24858,54.109808 +-3.388923,54.681761 +-2.780476,54.725673 +-2.81375,54.905952 +-2.981345,54.184583 +-2.913213,54.384409 +-3.223158,54.114536 +-2.972165,54.862676 +-3.043948,54.507044 +-3.004556,54.971646 +-2.724245,54.201206 +-2.898903,54.89251 +-3.535274,54.491727 +-3.221499,54.608997 +-3.530764,54.643139 +-3.223186,54.121187 +-2.739691,54.942075 +-3.590557,54.543627 +-2.952524,54.891958 +-3.081743,54.199694 +-3.113789,54.240405 +-2.42391,54.788634 +-2.574955,54.286394 +-2.954065,54.891191 +-2.981815,54.893081 +-2.917161,54.384002 +-3.086914,54.184692 +-3.578862,54.558647 +-2.757646,54.938101 +-3.250532,54.114695 +-2.639393,54.95962 +-3.551682,54.512819 +-2.68755,54.561514 +-2.352561,54.310059 +-2.948648,54.411287 +-3.214504,54.114678 +-3.238953,54.806117 +-3.204424,54.151675 +-2.470161,54.788958 +-2.737639,54.690712 +-3.210557,54.100004 +-3.411069,54.666909 +-3.441473,54.417815 +-3.505844,54.534906 +-3.531147,54.631073 +-3.369209,54.333154 +-2.877237,54.858375 +-2.349574,54.532085 +-2.821166,54.755276 +-2.939261,54.32278 +-3.528417,54.482583 +-3.270245,54.794829 +-2.986355,54.95632 +-2.682096,54.949826 +-2.984653,54.876478 +-3.275507,54.223477 +-2.831197,54.19799 +-2.935727,54.896438 +-2.972028,54.439537 +-2.951911,54.978315 +-2.716546,54.247016 +-2.961107,55.041437 +-2.935255,54.966879 +-3.224274,54.111388 +-3.234881,54.116214 +-3.082318,54.19941 +-2.739035,54.332297 +-2.815493,54.25986 +-3.555097,54.636744 +-2.476958,54.786361 +-2.960025,54.262372 +-2.7391,54.330796 +-2.583211,54.37274 +-3.21835,54.644016 +-3.516637,54.521703 +-3.507565,54.518698 +-3.542393,54.595428 +-2.395273,54.810155 +-2.841667,54.670928 +-2.943117,54.929757 +-2.501665,54.603966 +-2.83013,54.761263 +-3.227386,54.115761 +-2.555507,54.772079 +-2.876035,54.927905 +-2.915647,54.984525 +-3.170008,54.829063 +-2.937298,54.902312 +-2.988535,54.257262 +-3.571991,54.525157 +-3.544613,54.535073 +-3.545138,54.61354 +-2.982307,54.926715 +-3.55727,54.627908 +-3.371067,54.360807 +-3.263411,54.61244 +-2.670268,54.54778 +-2.717479,54.245941 +-2.636499,54.482888 +-2.802224,54.729314 +-2.956255,54.889538 +-3.225602,54.117001 +-3.240364,54.119501 +-3.559307,54.454253 +-2.721388,54.211442 +-3.521096,54.479979 +-3.229152,54.886049 +-3.525157,54.685021 +-2.839279,54.313801 +-2.813267,54.260621 +-3.416749,54.696439 +-3.241435,54.116425 +-2.937484,54.908323 +-2.755719,54.6176 +-3.100246,54.192794 +-3.103924,54.163424 +-3.586255,54.547108 +-2.930311,54.894206 +-2.945911,54.881216 +-2.921681,54.895907 +-2.658829,54.527694 +-2.911416,54.190543 +-3.346618,54.692368 +-2.394518,54.543935 +-2.939102,54.996523 +-3.321825,54.765357 +-3.584709,54.548315 +-3.57341,54.539547 +-3.565174,54.524689 +-2.944395,54.940343 +-3.593856,54.506131 +-2.928856,54.88993 +-2.91506,54.874155 +-3.212966,54.399376 +-3.567178,54.526586 +-2.505623,54.588618 +-3.107248,54.145103 +-2.879676,54.853738 +-3.402008,54.640169 +-3.249578,54.77077 +-3.573445,54.571372 +-2.660058,54.533997 +-3.230643,54.949258 +-3.447459,54.504512 +-2.945017,54.894991 +-2.944359,54.891518 +-2.84669,54.380499 +-2.588608,54.366962 +-2.35173,54.728493 +-2.269106,54.529082 +-3.187603,54.204826 +-2.817432,54.377915 +-2.760301,54.671439 +-3.563822,54.628309 +-3.280302,54.734087 +-2.868369,54.227225 +-3.528256,54.483646 +-3.184849,54.602531 +-2.66898,54.552245 +-3.160019,54.825456 +-3.364433,54.267874 +-3.572478,54.572383 +-3.582918,54.522013 +-3.219088,54.10878 +-3.074354,54.157131 +-2.728896,54.327677 +-2.538369,54.30789 +-2.667487,54.652934 +-3.563951,54.529881 +-3.395851,54.66625 +-2.917079,54.884133 +-2.942302,54.350213 +-3.101082,54.823569 +-3.214344,54.639617 +-3.496931,54.62618 +-2.571057,54.236685 +-2.403014,54.414719 +-3.394496,54.357321 +-3.443864,54.711038 +-2.739893,54.331241 +-3.212433,54.276797 +-2.880927,54.39103 +-2.583106,54.256679 +-3.557445,54.622756 +-2.770022,54.665635 +-3.452784,54.746046 +-3.561631,54.541173 +-2.743273,54.319995 +-3.231043,54.126104 +-3.561163,54.556027 +-2.773741,54.240371 +-2.931378,54.397105 +-3.143194,54.256128 +-2.708443,54.23361 +-3.111329,54.18943 +-2.718124,54.217735 +-2.934674,54.89809 +-3.497119,54.713897 +-2.969209,54.426555 +-3.475922,54.699184 +-2.973859,54.326873 +-2.910988,54.38128 +-3.055607,54.845237 +-2.644041,54.497218 +-3.048286,54.242367 +-3.503787,54.516803 +-2.752441,54.663993 +-2.899325,54.888382 +-3.091752,54.198498 +-3.079573,54.831222 +-3.177684,54.157395 +-2.882963,54.997635 +-2.730565,54.936397 +-2.179256,54.508435 +-2.921212,54.886286 +-2.925889,54.88563 +-3.16851,54.828421 +-3.494039,54.715014 +-3.204417,54.160394 +-3.541048,54.526994 +-2.771773,54.682735 +-3.130901,54.103512 +-2.727646,54.356147 +-3.088812,54.194525 +-2.985766,54.883128 +-3.078062,54.83235 +-3.010668,54.857913 +-3.352032,54.666666 +-3.560831,54.637156 +-2.921122,54.809225 +-3.101404,54.849089 +-3.079065,54.195772 +-2.932011,54.884757 +-3.498568,54.555237 +-3.497959,54.536937 +-3.17581,54.160443 +-3.18911,54.13502 +-3.087981,54.187405 +-2.941499,54.745379 +-2.591814,54.437865 +-2.755426,54.31121 +-3.145789,54.605217 +-2.917102,54.887207 +-2.61676,54.37731 +-3.543209,54.642352 +-2.453689,54.799679 +-3.556428,54.635882 +-3.053726,54.885406 +-3.528012,54.662722 +-2.747257,54.329452 +-3.546475,54.643488 +-2.652104,54.513945 +-3.520717,54.478896 +-2.840473,54.715925 +-2.749837,54.662356 +-2.755015,54.333259 +-2.909305,54.381077 +-3.07251,54.158684 +-3.593806,54.529033 +-3.578725,54.566297 +-3.064148,54.368442 +-2.625085,54.329428 +-3.223189,54.118706 +-2.965219,54.434541 +-2.528718,54.323544 +-3.140881,54.60245 +-2.902857,54.376318 +-2.812521,54.647105 +-2.886851,54.896077 +-3.534322,54.490211 +-3.233729,54.112963 +-2.840239,54.248473 +-3.521914,54.512793 +-2.721119,54.227666 +-2.374743,54.450668 +-2.928475,54.869273 +-2.955337,54.923191 +-2.717752,54.236952 +-3.194053,54.144588 +-3.419328,54.390619 +-3.477002,54.719501 +-3.059151,54.543661 +-2.761275,54.673761 +-3.223151,54.127272 +-2.755342,54.24029 +-2.856245,54.238798 +-2.97357,54.441484 +-2.950363,54.198726 +-3.583267,54.52386 +-3.011783,54.421577 +-2.927429,54.882069 +-3.186545,54.656043 +-3.234791,54.134299 +-3.254918,54.101365 +-2.73919,54.942006 +-3.463145,54.707634 +-2.951954,54.910771 +-2.93873,54.179179 +-2.94191,54.177528 +-3.12863,54.813997 +-2.738191,54.941995 +-3.532442,54.527445 +-3.422422,54.665653 +-3.208352,54.635057 +-2.35458,54.531971 +-3.326858,54.577896 +-2.808868,54.78222 +-3.236158,54.279729 +-2.924418,54.486205 +-2.960722,54.262636 +-3.481773,54.708145 +-2.911962,54.880523 +-3.246586,54.108103 +-2.759198,54.301498 +-2.373407,54.444471 +-3.560222,54.632194 +-2.968368,54.911612 +-3.564627,54.567343 +-3.233712,54.112918 +-2.773065,54.232925 +-3.341737,54.39441 +-2.618978,54.353887 +-2.900121,54.88701 +-2.948425,54.894012 +-2.895947,54.917362 +-2.708267,54.315532 +-2.953544,54.989841 +-3.009704,54.97509 +-2.407452,54.851443 +-3.329235,54.725381 +-3.248914,54.110227 +-2.901497,54.379572 +-2.932504,54.867651 +-3.145391,54.173634 +-3.530658,54.488433 +-2.953773,54.894024 +-3.54831,54.508619 +-2.947438,54.92967 +-3.322756,54.216954 +-2.467792,54.361829 +-3.006698,54.449939 +-2.741232,54.330441 +-2.952981,54.989172 +-2.84296,54.644255 +-3.563911,54.644351 +-2.795779,54.931063 +-2.77514,54.345183 +-3.228967,54.114899 +-3.338764,54.740312 +-3.533483,54.488855 +-3.582122,54.521807 +-3.04233,54.501099 +-2.835694,54.250644 +-3.563035,54.538674 +-3.196628,54.267716 +-3.229364,54.11281 +-3.564859,54.623838 +-3.011676,54.421012 +-3.553434,54.637808 +-2.409404,54.841174 +-2.771933,54.480103 +-2.753825,54.66757 +-3.142655,54.601094 +-3.302776,54.66051 +-3.098578,54.194041 +-2.684351,54.368452 +-2.976782,54.269158 +-2.786311,54.261519 +-3.489581,54.712381 +-3.064187,54.920921 +-2.939646,54.843781 +-3.422347,54.665708 +-3.172672,54.158325 +-2.736516,54.335036 +-3.524353,54.662328 +-2.935443,54.893627 +-2.891516,54.923739 +-2.918298,54.360419 +-2.92416,54.873403 +-2.895916,54.358035 +-2.707208,54.844315 +-2.634706,54.210258 +-2.994678,54.865235 +-3.068648,54.848421 +-2.744514,54.327437 +-3.074729,54.369265 +-3.279327,54.207635 +-2.651143,54.97159 +-2.92268,54.362309 +-2.962763,54.432341 +-2.617267,54.461346 +-3.477969,54.443097 +-2.761565,54.652801 +-2.507614,54.320273 +-3.000927,55.006634 +-2.356322,54.492468 +-2.798891,54.364989 +-3.062623,54.219242 +-2.873074,54.205935 +-3.438027,54.658809 +-2.91974,54.510219 +-2.745445,54.668845 +-3.521809,54.510367 +-3.238238,54.11591 +-2.394963,54.765618 +-2.954676,54.200966 +-3.595231,54.545364 +-2.695745,55.001528 +-2.935822,54.898531 +-2.744442,54.656377 +-2.961904,54.431871 +-2.9452,54.930091 +-2.965309,54.288772 +-2.968958,54.89527 +-3.559447,54.631781 +-3.54355,54.642366 +-3.079454,54.8489 +-3.235984,54.117281 +-2.761064,54.952116 +-2.716283,54.317731 +-2.640001,54.959536 +-2.488928,54.622297 +-3.299288,54.251508 +-2.993746,54.391466 +-2.936831,54.995651 +-2.664904,54.952545 +-3.190352,54.146845 +-3.547712,54.634448 +-2.721061,54.277987 +-2.732348,54.248467 +-2.928654,54.881817 +-3.201599,54.263361 +-2.9815,54.871785 +-2.965661,54.438231 +-2.941779,54.565186 +-3.029155,54.901146 +-2.748449,54.190947 +-2.892619,54.92348 +-2.716425,54.247107 +-2.802278,54.91178 +-2.600569,54.202407 +-3.184056,54.820802 +-3.469327,54.735655 +-2.880734,54.222246 +-3.194338,54.269239 +-3.124822,54.60109 +-2.430222,54.429004 +-3.558123,54.580118 +-3.420628,54.665791 +-3.431014,54.669668 +-3.238384,54.116205 +-3.433194,54.420376 +-3.13443,54.814958 +-3.222011,54.650855 +-2.784623,54.35526 +-3.371052,54.613129 +-2.937348,54.902464 +-2.906484,55.063953 +-2.753226,54.659504 +-2.877082,54.897154 +-2.349217,54.423253 +-2.869491,54.669752 +-3.461885,54.429263 +-3.017846,54.254411 +-2.603774,54.637434 +-3.238998,54.128063 +-3.114702,54.84505 +-3.495875,54.7071 +-2.742896,54.319583 +-2.894579,54.893683 +-3.518834,54.519276 +-2.938998,54.197755 +-3.070673,54.19192 +-2.939466,54.888267 +-2.671543,54.323058 +-2.89617,54.874072 +-3.226738,54.116082 +-2.798229,54.718817 +-2.985196,54.408055 +-2.462553,54.828096 +-2.906106,54.918877 +-2.744996,54.32943 +-3.113617,54.240298 +-2.240378,54.50477 +-3.526343,54.642611 +-3.558452,54.627219 +-2.925313,54.464979 +-3.516476,54.616518 +-2.744903,54.329394 +-3.163996,54.829507 +-2.805549,54.506845 +-3.25501,54.106946 +-2.960957,55.041716 +-2.927141,54.826757 +-3.10549,54.179076 +-3.551624,54.625689 +-3.222354,54.108001 +-2.74377,54.665458 +-3.330975,54.733469 +-2.744646,54.316876 +-2.905236,54.881544 +-3.103687,54.206892 +-2.68202,54.573912 +-3.097815,54.177384 +-3.589389,54.540632 +-3.094351,54.195922 +-3.268437,54.21903 +-2.534084,54.597123 +-2.932734,54.891743 +-3.404097,54.371716 +-3.201691,54.12286 +-2.693652,54.253603 +-3.589313,54.541055 +-3.074912,54.799333 +-3.222631,54.118964 +-2.965717,54.916198 +-2.704402,54.242253 +-2.961348,54.888024 +-2.961874,54.431916 +-3.186775,54.820111 +-2.481601,54.611686 +-2.944457,54.921021 +-2.937069,54.903895 +-2.75048,54.662711 +-2.926567,54.894109 +-2.911796,54.193874 +-2.920974,54.363796 +-2.908648,54.45024 +-2.773047,54.232808 +-3.002678,54.42364 +-2.31882,54.525735 +-3.590413,54.542335 +-3.158418,54.597978 +-2.93108,54.877511 +-3.587562,54.549329 +-2.904841,54.875751 +-2.507238,54.550461 +-3.120772,54.604714 +-2.700406,54.264502 +-2.584619,54.987133 +-2.931158,54.891036 +-3.193485,54.879773 +-2.558002,54.770441 +-3.167367,54.602934 +-3.223539,54.127979 +-2.924663,54.887886 +-3.37127,54.663322 +-2.720501,54.230923 +-3.2349,54.133822 +-2.836107,54.875453 +-3.209366,54.113175 +-3.540269,54.531345 +-2.609223,54.449434 +-2.978559,54.873876 +-2.706224,54.318312 +-3.201221,54.180649 +-2.757522,54.668788 +-2.654666,54.294292 +-3.14757,54.833276 +-2.946041,54.894767 +-3.14881,54.09412 +-2.907348,54.872856 +-2.649594,54.679668 +-2.654499,54.294428 +-3.284872,54.841579 +-2.601264,54.413589 +-2.519119,54.774685 +-2.944357,54.916735 +-3.508186,54.704242 +-3.543987,54.640796 +-2.75958,54.66935 +-2.988544,54.423612 +-2.767826,54.206113 +-3.047666,54.244539 +-2.718032,54.220342 +-3.225352,54.116797 +-2.889252,54.832361 +-3.088517,54.192065 +-3.230836,54.120147 +-3.238114,54.119974 +-2.912963,54.894427 +-2.754909,54.663295 +-2.7755,54.343905 +-2.729356,54.306769 +-3.572472,54.538076 +-2.612338,54.452528 +-3.161185,54.824852 +-3.367233,54.66361 +-2.440634,54.815058 +-2.739345,54.3153 +-3.4951,54.705033 +-3.587364,54.549386 +-2.733007,54.65748 +-3.219011,54.278519 +-3.556786,54.63026 +-3.594152,54.533559 +-3.586238,54.547082 +-3.065303,54.246505 +-3.26858,54.209681 +-2.877249,54.868216 +-3.159327,54.803471 +-2.933451,54.339838 +-2.947589,54.894279 +-2.72936,54.181744 +-3.501293,54.535978 +-3.549453,54.643135 +-2.905221,54.881544 +-3.238486,54.112429 +-3.160328,54.823745 +-3.381879,54.658879 +-3.53824,54.608451 +-3.556376,54.657634 +-3.485969,54.706152 +-3.254064,54.668502 +-2.833152,54.885601 +-3.502683,54.446729 +-3.509027,54.703495 +-2.937187,54.904245 +-2.881259,54.857061 +-3.464971,54.737631 +-3.555415,54.635734 +-3.565751,54.569612 +-3.215671,54.114298 +-3.005223,54.450167 +-3.428513,54.693838 +-3.432043,54.786493 +-3.539434,54.500949 +-3.364542,54.663812 +-2.932041,54.891469 +-2.885405,54.88985 +-3.446157,54.673407 +-3.565363,54.569185 +-3.209178,54.121958 +-2.940456,54.912712 +-2.952155,54.922605 +-3.233577,54.11301 +-3.551867,54.663794 +-2.790649,54.224255 +-3.52204,54.615792 +-2.937524,54.901322 +-3.021097,54.853278 +-2.737477,54.332891 +-3.22226,54.113656 +-2.760845,54.227476 +-3.025963,54.249965 +-2.956758,54.895636 +-3.32466,54.764589 +-2.625996,54.468204 +-2.760021,54.304495 +-2.860404,54.865272 +-3.556404,54.636054 +-3.517567,54.648716 +-2.754604,54.325047 +-3.35919,54.666514 +-3.31104,54.661032 +-2.72119,54.228187 +-2.790303,54.693679 +-2.906399,54.223197 +-3.230387,54.104989 +-3.566743,54.533773 +-2.888002,54.895232 +-3.181055,54.156383 +-2.606339,54.32307 +-2.736064,54.312337 +-2.808839,54.902957 +-3.365949,54.651689 +-2.294219,54.527433 +-3.332068,54.683451 +-3.546507,54.57287 +-3.594886,54.539688 +-3.269819,54.741549 +-2.757101,54.662787 +-2.707377,54.938448 +-3.552637,54.545702 +-2.888595,54.836473 +-2.789169,54.268088 +-3.528767,54.481194 +-2.715532,54.237226 +-3.184825,54.154881 +-2.929359,54.890079 +-2.93201,54.90495 +-2.659549,54.537855 +-3.465985,54.682237 +-3.557814,54.644969 +-3.095477,54.188641 +-2.975111,54.858249 +-2.948814,54.888015 +-2.935086,54.889658 +-2.681274,54.950136 +-3.009731,54.858442 +-2.915737,54.883389 +-3.249401,54.675722 +-2.708826,54.240735 +-3.048277,54.242017 +-2.833812,54.931113 +-3.54587,54.639802 +-2.669839,54.27875 +-2.637307,54.95999 +-3.271521,54.737361 +-2.494286,54.564831 +-2.727412,54.168526 +-3.064435,54.763495 +-2.412104,54.437668 +-2.731678,54.247033 +-3.042247,54.247516 +-3.538742,54.500212 +-2.907607,54.728256 +-3.176227,54.164348 +-2.476129,54.346923 +-3.215127,54.265517 +-2.676265,54.823822 +-2.723802,54.3283 +-3.304248,54.659515 +-2.968816,54.913361 +-3.578646,54.561472 +-3.09495,54.195971 +-3.561368,54.54035 +-3.515275,54.456108 +-2.720538,54.225108 +-2.640992,54.370425 +-2.984687,54.809445 +-2.762221,54.307123 +-3.187715,54.602628 +-3.155062,54.903681 +-2.965807,54.888689 +-2.954187,55.026178 +-3.318838,54.76335 +-2.991103,54.750537 +-2.932766,54.891787 +-2.708698,54.334313 +-2.731191,54.659971 +-2.964562,54.886183 +-2.868361,54.720671 +-3.291992,54.728552 +-2.932341,54.877448 +-2.878213,54.067953 +-3.055362,53.819947 +-2.446062,53.747561 +-2.691685,53.740138 +-2.720288,53.804478 +-2.633166,53.654642 +-2.281153,53.787806 +-2.287619,53.73016 +-3.05751,53.779759 +-2.220173,53.942319 +-2.67579,53.687837 +-2.665246,53.773877 +-2.451665,53.729869 +-2.795191,54.096609 +-3.042065,53.799516 +-2.759636,53.526305 +-2.801203,54.046723 +-2.769377,54.05928 +-2.505899,53.740051 +-2.689587,53.76849 +-2.98677,53.742008 +-2.570546,53.707655 +-2.9697,53.740161 +-2.649837,54.100628 +-2.584926,53.622655 +-2.492637,53.752061 +-2.214834,53.834115 +-2.690964,53.770109 +-2.778389,53.905456 +-2.474925,53.773632 +-2.483395,53.861069 +-2.763909,53.549118 +-2.659528,53.899697 +-2.820929,53.646455 +-2.745224,54.1335 +-2.841845,53.774394 +-3.03664,53.815958 +-3.053366,53.794258 +-2.464445,53.694416 +-3.046077,53.803948 +-2.269972,53.698931 +-3.039848,53.818518 +-2.385543,53.876533 +-2.260529,53.788338 +-2.9221,53.673295 +-2.800078,54.056545 +-2.69653,53.716831 +-2.795153,54.025866 +-2.688746,53.721765 +-3.052259,53.821583 +-2.664651,53.72085 +-2.837537,53.75847 +-2.684658,53.701466 +-2.772581,54.039261 +-2.669155,53.721975 +-2.685034,53.727431 +-2.818565,54.056663 +-3.037857,53.879288 +-2.717481,53.692475 +-2.720813,53.769547 +-3.052885,53.822297 +-2.691566,53.801196 +-2.673577,53.618387 +-2.739539,53.837941 +-2.731838,53.798917 +-2.682718,53.707032 +-2.663398,53.76542 +-2.624329,53.623858 +-2.247433,53.796581 +-2.782267,53.954955 +-3.0297,53.829015 +-3.03775,53.788327 +-2.811862,53.871799 +-3.024068,53.75383 +-2.329303,53.780763 +-2.392074,53.87546 +-2.293064,53.824269 +-2.669642,53.721182 +-2.448791,53.743299 +-2.797602,54.050908 +-3.040792,53.825368 +-2.893727,53.785208 +-3.034065,53.751443 +-2.70286,53.760198 +-2.998533,53.870957 +-2.23602,53.818831 +-2.997449,53.747978 +-2.489465,53.750582 +-2.729725,53.848598 +-2.310113,53.800237 +-2.453192,53.825262 +-2.891134,53.571662 +-2.470086,53.697782 +-2.37396,53.752841 +-2.431897,53.738534 +-2.683218,53.764932 +-2.28501,53.792597 +-2.989859,53.738621 +-2.39687,53.742655 +-2.71933,53.782202 +-2.711285,53.783023 +-2.878217,53.526967 +-3.032451,53.809873 +-2.842798,53.593037 +-2.632875,53.654419 +-2.710016,53.774393 +-2.846052,53.670432 +-2.266211,53.829913 +-2.924214,53.679993 +-2.906926,53.756814 +-2.835063,54.072665 +-2.711386,53.787211 +-2.729114,53.777532 +-2.851445,53.535421 +-3.011237,53.801775 +-2.722607,53.54071 +-2.948842,53.847955 +-2.470906,53.760265 +-2.336868,53.726705 +-2.919857,53.845969 +-2.218682,53.834935 +-2.705472,53.758583 +-2.744379,53.887992 +-2.781562,53.983263 +-3.045713,53.783817 +-2.331551,53.684746 +-2.309208,53.675134 +-2.873882,54.066924 +-2.678591,53.764023 +-2.960325,53.735967 +-2.639517,53.706345 +-3.032771,53.845131 +-2.679807,53.7726 +-3.046489,53.799118 +-2.368167,53.75986 +-2.449942,53.689204 +-2.815082,53.593489 +-2.802183,54.050815 +-2.747287,53.532594 +-2.491456,53.737918 +-2.642839,53.718542 +-2.469425,53.641078 +-2.697919,53.659756 +-3.017935,53.779301 +-2.471508,53.749009 +-2.8345,54.064373 +-2.737562,53.689854 +-2.87526,53.765768 +-2.922776,53.836302 +-2.659643,53.777503 +-2.483515,53.715804 +-2.556771,53.778385 +-2.746278,53.769086 +-2.32472,53.719827 +-2.463835,53.765559 +-3.055358,53.811291 +-2.384628,53.75695 +-2.656541,53.674938 +-2.446697,53.948628 +-2.632327,53.667311 +-2.77557,53.540567 +-2.749088,53.855256 +-3.000997,53.797043 +-2.637271,53.680983 +-3.024749,53.806047 +-2.795975,54.099183 +-2.215947,53.784796 +-3.042972,53.807912 +-2.781302,53.908224 +-2.483127,53.715006 +-2.830591,54.062225 +-2.773979,54.071797 +-2.474792,53.788804 +-2.696177,53.762421 +-2.471288,53.741586 +-2.87713,53.527631 +-2.648687,53.669237 +-2.722255,53.813742 +-2.297405,53.699333 +-2.796073,54.027657 +-2.686747,53.773918 +-2.47986,53.752679 +-2.684721,53.758496 +-2.976268,53.805004 +-2.447614,53.782285 +-2.797947,54.049 +-2.797597,53.552377 +-2.79189,54.056545 +-2.479771,53.716942 +-3.03242,53.809864 +-2.708722,53.634417 +-3.012967,53.821265 +-3.037982,53.818624 +-2.887142,53.569238 +-2.750964,53.868339 +-2.463135,53.766784 +-2.389771,53.740629 +-2.490204,53.747595 +-2.881836,53.566814 +-2.692878,53.629216 +-2.993682,53.845974 +-2.399301,53.869315 +-2.448416,53.727976 +-2.990347,53.746464 +-2.464644,53.755049 +-2.529561,53.784279 +-2.650877,53.667922 +-3.036447,53.845675 +-2.867753,54.066079 +-3.049558,53.805302 +-2.780879,53.98422 +-2.63631,53.863034 +-2.796671,53.548041 +-2.232243,53.825166 +-2.759113,53.932822 +-2.625562,53.661181 +-3.036067,53.814875 +-2.944887,53.743847 +-2.799546,54.051111 +-2.580795,53.609175 +-2.682489,53.720013 +-2.798442,54.042939 +-2.798217,54.049538 +-2.848472,54.054955 +-3.033167,53.87292 +-2.813466,53.774931 +-2.459791,53.749531 +-2.67213,53.744124 +-2.691306,53.765101 +-2.727286,53.761374 +-2.721471,53.737149 +-2.750748,53.536321 +-2.471011,53.760228 +-2.305968,53.798136 +-2.759108,54.071658 +-2.405259,53.865853 +-2.726935,53.772656 +-2.929508,53.613742 +-2.796531,54.052407 +-2.788357,54.010326 +-2.401449,53.653558 +-2.830911,53.772376 +-2.207863,53.693689 +-2.792976,54.055046 +-3.028394,53.919502 +-3.005492,53.798372 +-2.476443,53.756288 +-2.375975,53.767916 +-3.055376,53.825331 +-3.029268,53.812605 +-2.670604,53.793001 +-2.393996,53.866376 +-2.221886,53.785612 +-2.257305,53.794736 +-2.807232,54.05443 +-2.563823,53.622891 +-2.717715,53.764937 +-2.628611,53.765338 +-2.715216,53.723264 +-2.662446,53.76565 +-3.032848,53.877902 +-2.627519,53.652362 +-2.487548,53.746096 +-3.013524,53.806574 +-2.690499,53.761187 +-2.86102,53.806741 +-2.701159,53.68814 +-2.482915,53.73478 +-2.780221,53.72675 +-2.249432,53.803471 +-3.050065,53.796408 +-2.697522,53.758459 +-2.248639,53.789945 +-3.023087,53.785217 +-2.819611,53.840279 +-2.442381,53.75658 +-3.043232,53.812862 +-2.322954,53.799682 +-2.728193,53.770833 +-2.62633,53.646678 +-2.417378,53.768076 +-2.72466,53.591941 +-2.625629,53.661666 +-2.353007,53.740905 +-2.186896,53.91711 +-2.863761,53.552672 +-2.705283,53.7699 +-3.004936,53.880449 +-3.044649,53.808796 +-2.895134,53.577304 +-2.658582,53.823061 +-2.479495,53.70738 +-2.31581,53.808788 +-2.230554,53.691832 +-2.694727,53.763697 +-2.700169,53.765274 +-2.993176,53.847677 +-2.678267,53.762731 +-2.473605,53.700896 +-2.48099,53.709576 +-3.036705,53.883756 +-2.742874,53.559722 +-3.043842,53.784247 +-2.366771,53.756314 +-2.925133,53.786058 +-2.730867,53.777126 +-2.698097,53.782166 +-2.314486,53.792136 +-2.24728,53.700948 +-2.239102,53.789237 +-3.029078,53.924403 +-3.023336,53.87393 +-2.765434,54.130605 +-2.270246,53.699074 +-3.024629,53.807351 +-2.771546,54.078203 +-2.628898,53.652543 +-2.878826,54.065136 +-3.033916,53.780576 +-3.054053,53.827104 +-2.752689,53.537729 +-2.235127,53.803086 +-2.441678,53.69541 +-2.529531,53.724049 +-2.795455,54.052073 +-2.835205,53.690597 +-2.392499,53.745492 +-2.231396,53.784614 +-2.486583,53.746531 +-2.386013,53.740875 +-2.833153,53.535928 +-2.497693,53.741012 +-2.482285,53.745955 +-2.628056,53.653887 +-2.841492,53.604129 +-3.02349,53.885847 +-2.415374,53.73409 +-2.939464,53.803851 +-3.027489,53.80383 +-2.705128,53.715414 +-2.967791,53.794296 +-2.760898,53.874353 +-2.764685,54.107358 +-2.456275,53.651744 +-2.711516,53.662948 +-2.889701,54.060643 +-2.490575,53.740394 +-2.220473,53.692858 +-2.267486,53.786831 +-2.211573,53.835343 +-2.800328,53.561886 +-2.414876,53.768165 +-3.00173,53.797253 +-2.19827,53.878831 +-2.738129,53.747349 +-2.687653,53.763423 +-2.488408,53.74576 +-2.689832,53.762134 +-2.483761,53.716055 +-2.246618,53.823196 +-3.02373,53.873881 +-3.054637,53.818893 +-2.72625,53.732959 +-3.028572,53.837545 +-2.754711,53.563172 +-2.97037,53.73701 +-2.655859,53.627168 +-2.445784,53.745701 +-2.803572,54.052378 +-2.644836,53.776703 +-2.744414,53.769178 +-2.158247,53.857904 +-2.758425,53.542088 +-2.889358,53.806867 +-2.233697,53.788843 +-2.690969,53.660434 +-2.665254,53.687051 +-2.78243,54.016539 +-2.603745,53.766239 +-3.055322,53.820163 +-3.036893,53.810823 +-2.664324,53.788506 +-2.211133,53.832405 +-2.382806,53.769989 +-2.990042,53.738674 +-2.762083,54.123957 +-2.851391,53.914488 +-2.940774,53.680511 +-2.689473,53.774477 +-3.028585,53.805825 +-2.467966,53.730534 +-2.609911,53.628472 +-3.050282,53.841537 +-3.009855,53.761959 +-2.239683,53.787348 +-2.696743,53.769141 +-2.717792,53.700949 +-3.039591,53.825334 +-2.659264,53.789136 +-2.631941,53.651655 +-3.054536,53.817276 +-2.290027,53.703522 +-3.03357,53.913912 +-3.022636,53.832796 +-2.283446,53.742951 +-2.673539,53.618846 +-2.710992,53.769273 +-2.983082,53.858699 +-2.721179,53.541051 +-2.240068,53.801485 +-2.794843,53.96155 +-2.547787,53.715455 +-2.42618,53.819169 +-2.733337,53.795204 +-2.35977,53.748102 +-2.251657,53.784501 +-2.809338,53.897845 +-2.491629,53.731994 +-3.033586,53.822689 +-2.736133,53.769364 +-2.513783,53.792284 +-2.67686,53.78085 +-2.768329,53.550681 +-2.650988,53.667265 +-3.051806,53.853208 +-2.407073,53.788002 +-3.023756,53.760942 +-2.264692,53.78894 +-2.707357,53.777762 +-2.507006,53.74517 +-2.745017,53.855425 +-2.615537,53.666958 +-2.631373,53.650067 +-2.643924,53.612924 +-2.683096,53.742462 +-2.878363,54.067808 +-2.704248,53.767938 +-2.217246,53.827612 +-2.458933,53.694437 +-2.954869,53.803514 +-2.72247,53.798901 +-2.712981,53.789053 +-2.773525,54.07695 +-2.482349,53.751536 +-2.883293,53.806579 +-2.825994,53.99456 +-2.237537,53.799675 +-2.270352,53.699119 +-2.489603,53.751992 +-2.423864,53.773356 +-2.287595,53.731121 +-2.315435,53.774985 +-2.448597,53.727948 +-2.66203,53.622451 +-2.470398,53.758271 +-2.493383,53.743294 +-3.051086,53.820227 +-3.017114,53.838182 +-2.396444,53.824601 +-2.491024,53.743843 +-2.372658,53.753141 +-2.493377,53.7531 +-2.289702,53.700269 +-2.658631,53.717692 +-2.993654,53.547753 +-2.728483,53.770885 +-2.727288,53.770218 +-2.664079,53.68454 +-2.806224,54.0481 +-2.54565,53.71542 +-3.052995,53.822466 +-2.491167,53.752139 +-3.01,53.864605 +-2.717631,53.825796 +-2.48812,53.745761 +-3.030769,53.814992 +-2.78077,54.028944 +-2.846466,53.596678 +-2.62706,53.80475 +-2.645565,53.64521 +-2.488272,53.745796 +-3.035382,53.759341 +-2.156507,53.89268 +-2.446879,53.724575 +-3.0443,53.868032 +-2.493532,53.750808 +-2.71045,53.744388 +-2.658394,53.74518 +-2.771852,53.815869 +-2.659608,53.715233 +-2.896083,53.816012 +-2.46278,53.74134 +-2.537253,53.727053 +-2.484983,53.747158 +-2.628525,53.660976 +-2.866561,53.587761 +-3.051045,53.800992 +-3.003063,53.781206 +-2.696722,53.674369 +-2.691435,53.769262 +-2.663526,53.765815 +-2.661416,53.635407 +-3.039519,53.805839 +-2.715858,53.71465 +-2.67515,53.766973 +-2.178729,53.855197 +-2.550699,53.770108 +-2.220826,53.841015 +-2.707629,53.77501 +-2.799429,53.761318 +-2.757036,53.727834 +-2.763663,53.724673 +-2.58318,53.857453 +-2.446679,53.807131 +-2.475839,53.743186 +-2.204911,53.834105 +-2.480375,53.773889 +-2.669992,53.85078 +-2.684058,53.678505 +-2.372458,53.752827 +-2.880788,54.063252 +-3.045727,53.802693 +-2.781121,54.081817 +-2.468907,53.744211 +-2.329155,53.725001 +-2.768653,54.018399 +-2.212474,53.836195 +-2.675166,53.768932 +-3.054274,53.814707 +-2.771528,53.53982 +-2.686794,53.760075 +-2.652694,53.635689 +-2.412055,53.785226 +-2.62633,53.646669 +-2.896791,53.544258 +-2.935065,53.61076 +-3.006147,53.794016 +-2.901049,53.690578 +-2.382,53.816504 +-2.775668,53.545114 +-2.234965,53.822941 +-2.214007,53.838925 +-2.893467,53.75012 +-2.493824,53.714899 +-2.825623,54.059761 +-2.644943,53.649042 +-2.723012,53.68828 +-3.032962,53.810309 +-2.849472,53.592118 +-2.223215,53.804403 +-2.905072,54.03964 +-2.457637,53.749404 +-3.023411,53.885749 +-3.053989,53.81124 +-2.22065,53.833484 +-2.376508,53.768166 +-3.04717,53.803911 +-2.896802,54.039927 +-2.373881,53.883823 +-2.238216,53.79882 +-2.244548,53.788624 +-2.472137,53.761842 +-2.777866,54.070433 +-3.01411,53.848445 +-2.680827,53.778436 +-2.375364,53.747084 +-2.610688,53.682263 +-2.682443,53.705937 +-2.487703,53.760782 +-2.324286,53.78154 +-2.211107,53.827362 +-2.683369,53.757417 +-2.795175,54.042188 +-2.810505,53.550915 +-2.75372,53.823678 +-3.001335,53.852013 +-2.682643,53.710808 +-2.909077,53.805838 +-2.934159,53.610111 +-2.65963,53.777602 +-2.172273,53.760149 +-2.485065,53.758285 +-2.384747,53.682025 +-2.383081,53.775192 +-2.282973,53.785411 +-2.74923,54.146004 +-3.023032,53.87333 +-2.78689,54.034486 +-2.886017,53.574666 +-2.460171,53.744047 +-2.848022,54.077095 +-2.495771,53.638302 +-2.709661,53.777604 +-2.518526,53.733715 +-2.365616,53.768227 +-2.94867,53.847749 +-2.24079,53.795049 +-3.031233,53.922264 +-2.694718,53.805402 +-2.387637,53.747701 +-3.05461,53.819037 +-2.668868,54.124844 +-2.331466,53.698992 +-2.285519,53.702185 +-2.690648,53.632473 +-2.795116,54.028715 +-3.038504,53.7949 +-2.698768,53.764042 +-2.663512,53.765905 +-2.694104,53.759979 +-3.036506,53.820974 +-2.66835,53.768719 +-2.257145,53.954423 +-2.663266,53.721442 +-2.678359,53.767467 +-2.694382,53.759349 +-2.799251,54.040534 +-2.329135,53.782534 +-3.039952,53.756461 +-2.457961,53.763883 +-2.251808,53.791943 +-2.267307,53.965968 +-2.663578,53.671969 +-2.6657,53.621208 +-3.028639,53.864456 +-2.84841,54.076679 +-2.398537,53.832216 +-2.316767,53.810808 +-2.835872,53.692147 +-2.864011,53.823725 +-2.314489,53.78234 +-2.744204,53.880713 +-2.684987,53.770162 +-2.702853,53.79154 +-3.028341,53.826851 +-2.366625,53.755227 +-3.036926,53.789376 +-3.014975,53.88795 +-3.025223,53.874615 +-2.780342,53.726741 +-2.74383,53.969256 +-2.684153,53.758104 +-2.680767,53.766294 +-2.449653,53.727396 +-2.65758,53.719289 +-3.026206,53.861331 +-2.643933,53.640329 +-2.174048,53.90665 +-2.235979,53.819532 +-2.491279,53.748777 +-2.861989,53.587246 +-2.373607,53.883752 +-2.739604,53.868338 +-2.435163,53.761164 +-3.02125,53.861364 +-2.66015,53.736335 +-2.849439,53.61831 +-2.802153,54.050851 +-2.692385,53.802054 +-2.573885,53.645755 +-3.052712,53.819647 +-2.687148,53.760334 +-2.51203,53.780418 +-2.411405,53.818142 +-3.036837,53.828836 +-2.690703,53.757896 +-2.907029,53.594661 +-2.220712,53.764384 +-2.664586,53.686946 +-2.345679,53.786388 +-3.03983,53.872386 +-2.723647,53.80995 +-2.688045,53.694607 +-3.052393,53.791174 +-2.717022,53.96169 +-2.234142,53.808768 +-3.011422,53.826492 +-2.668667,53.713188 +-3.014955,53.79982 +-2.248595,53.823668 +-2.686849,53.759689 +-3.048939,53.817001 +-2.980332,53.847692 +-2.46285,53.747731 +-2.229245,53.788097 +-2.786276,54.04728 +-2.499487,53.742712 +-3.029819,53.752082 +-2.396028,53.828808 +-2.886043,54.025185 +-2.675341,53.658798 +-2.589435,53.625042 +-2.396059,53.828808 +-2.244036,53.810322 +-2.493747,53.751005 +-2.600164,53.641707 +-2.512014,53.76041 +-2.468526,53.75631 +-2.635637,53.723254 +-2.528899,53.771509 +-2.217323,53.692755 +-2.623238,54.104318 +-3.05155,53.811459 +-2.928877,53.531941 +-3.051322,53.820567 +-2.838528,54.066394 +-3.008176,53.827337 +-2.391454,53.755346 +-2.61763,53.638301 +-2.695026,53.689021 +-2.705841,53.768836 +-2.921597,53.681478 +-2.36683,53.756134 +-2.65623,53.71918 +-2.796316,54.052363 +-2.408884,53.726032 +-2.584382,54.151492 +-3.042119,53.852475 +-2.311686,53.799415 +-2.701641,53.719857 +-2.816993,54.055973 +-2.632317,53.644391 +-3.03687,53.78713 +-2.727602,53.76121 +-2.40997,53.750422 +-2.642456,53.640714 +-2.271029,53.790211 +-2.825604,54.064183 +-2.699332,53.758763 +-2.772562,54.14272 +-3.044473,53.791927 +-2.671919,53.748035 +-3.027262,53.753578 +-2.99131,53.847854 +-2.178887,53.853039 +-2.690836,53.631052 +-2.801133,54.058201 +-2.794714,54.033248 +-2.720958,53.791271 +-2.306711,53.689755 +-2.638157,53.715574 +-2.492493,53.743667 +-2.469001,53.888657 +-2.672078,53.704773 +-2.745745,53.84849 +-2.233475,53.789985 +-2.618703,53.806439 +-2.491411,53.738008 +-2.799806,54.049545 +-2.501453,53.739773 +-2.980651,53.857451 +-2.60776,53.828839 +-2.286177,53.725444 +-2.956789,53.867153 +-2.798352,54.047011 +-2.632147,53.663402 +-2.246229,53.785483 +-2.727653,54.159609 +-2.365937,53.751122 +-2.327717,53.814697 +-2.496332,53.741296 +-3.009281,53.767105 +-2.69801,53.782364 +-2.710974,53.688289 +-2.716104,54.074313 +-2.996038,53.802433 +-3.033447,53.822583 +-2.325862,53.781249 +-2.631094,53.658725 +-2.944527,53.752811 +-2.737386,53.769024 +-3.022053,53.852521 +-2.309273,53.783063 +-2.18014,53.854404 +-3.040149,53.859485 +-2.688657,53.75895 +-2.77708,53.627863 +-3.034862,53.801735 +-2.682801,53.726132 +-2.464385,53.694425 +-2.540084,53.634596 +-2.312952,53.800203 +-2.466549,53.691585 +-3.029851,53.794911 +-2.362147,53.749426 +-2.720925,53.756603 +-2.390346,53.763394 +-2.630059,53.717127 +-2.708894,53.776206 +-2.277111,53.789407 +-2.681423,53.761841 +-2.671196,53.770177 +-2.841492,53.60412 +-2.607774,53.828776 +-2.671829,53.748062 +-2.229599,53.802908 +-2.636167,53.667039 +-2.998408,53.782018 +-2.478929,53.746849 +-2.245692,53.774097 +-2.251418,53.780143 +-2.707339,53.792053 +-3.04501,53.816577 +-2.495091,53.640867 +-2.890257,54.058805 +-2.713554,53.754859 +-2.754396,53.870583 +-2.346014,53.904408 +-2.617773,53.65217 +-2.793102,54.04479 +-2.933247,53.681109 +-2.236512,53.800998 +-3.043061,53.80783 +-2.168656,53.67519 +-2.486009,53.748061 +-2.830502,54.062324 +-2.315763,53.695367 +-2.870245,54.05666 +-2.986714,53.79655 +-2.491425,53.749603 +-2.648864,53.63837 +-2.659913,53.7705 +-2.711469,53.70415 +-2.488227,53.745841 +-3.052415,53.798733 +-3.016307,53.922786 +-3.028718,53.875097 +-2.883958,54.05354 +-2.889177,53.933772 +-2.854767,53.668734 +-3.017321,53.822262 +-2.716018,53.713381 +-2.946365,53.590887 +-2.803009,53.761313 +-2.873795,53.703202 +-2.400934,53.869948 +-2.2487,53.790008 +-2.729379,53.749937 +-3.034965,53.826857 +-2.814498,53.90021 +-3.054049,53.806359 +-2.541057,53.854361 +-2.271711,53.801687 +-2.309914,53.67435 +-2.684986,53.770108 +-2.9463,53.930594 +-2.245556,53.774079 +-2.687581,53.721898 +-3.010838,53.80034 +-2.226009,53.807184 +-2.778685,53.712523 +-2.626473,53.649176 +-3.045597,53.805381 +-2.444446,53.746767 +-3.052676,53.811557 +-2.619864,54.181548 +-2.307211,53.795697 +-2.56184,53.714806 +-2.876589,53.57736 +-3.03363,53.822644 +-2.873823,54.061173 +-2.729518,53.734341 +-2.817663,53.677038 +-2.681958,53.727449 +-2.616473,53.670917 +-3.047762,53.812445 +-2.839161,53.709031 +-2.702741,53.760343 +-2.800295,54.04956 +-2.631281,53.755213 +-2.784437,53.724413 +-2.655745,53.787331 +-2.768151,53.534206 +-2.943247,53.786357 +-2.446692,53.781183 +-2.485276,53.742339 +-2.785228,53.54711 +-2.660489,53.726985 +-2.687072,53.76037 +-2.692438,53.764717 +-2.499947,53.745721 +-2.226181,53.788363 +-2.980635,53.857424 +-2.223542,53.808825 +-3.024321,53.75363 +-2.350043,53.721778 +-2.88161,53.566798 +-3.038736,53.876718 +-2.641809,53.640943 +-2.988782,53.817341 +-3.014534,53.791806 +-3.03154,53.804946 +-2.456789,53.717428 +-2.652634,53.635671 +-2.213109,53.787785 +-2.668397,53.768754 +-3.035593,53.918146 +-3.008792,53.864354 +-2.386434,53.778435 +-2.470152,53.748493 +-2.487231,53.746259 +-3.040395,53.80566 +-3.055589,53.822902 +-2.63298,53.654364 +-2.777512,53.552662 +-2.486277,53.754208 +-2.734144,54.025265 +-2.388032,53.754342 +-2.995918,53.802461 +-3.030681,53.794068 +-2.874854,54.071708 +-2.801281,54.046803 +-2.676676,53.670331 +-2.659969,53.716022 +-2.674722,53.609626 +-2.225416,53.78734 +-2.88164,53.563921 +-2.783821,53.615477 +-2.7295,53.749037 +-2.652467,53.634692 +-2.97946,53.788206 +-3.041396,53.850315 +-3.053499,53.814094 +-2.384619,53.749311 +-2.874599,53.782087 +-2.715703,53.773308 +-3.051502,53.802894 +-3.013743,53.778492 +-2.169827,53.75929 +-2.745835,53.891156 +-2.761554,53.724569 +-2.486078,53.748771 +-2.844099,54.063794 +-2.739701,53.768659 +-2.698133,53.763255 +-2.781154,53.908422 +-2.959526,53.744791 +-3.051989,53.816273 +-2.292878,53.736645 +-2.751371,53.95038 +-2.679612,53.626101 +-2.480408,53.774176 +-2.627089,53.651924 +-2.471695,53.757646 +-2.43165,53.754354 +-2.689793,53.68942 +-2.713274,53.791128 +-3.038046,53.81875 +-3.026762,53.803908 +-2.985174,53.793049 +-2.75824,53.928334 +-2.76841,54.071419 +-2.249801,53.796549 +-2.474323,53.701433 +-2.475883,53.760479 +-2.960621,53.907588 +-2.449807,53.751816 +-2.773725,53.540327 +-3.038241,53.821705 +-2.478495,53.77537 +-2.742618,53.763697 +-2.663541,53.765815 +-2.895667,53.532492 +-2.861615,53.75651 +-3.046794,53.914282 +-3.018257,53.820151 +-2.167477,53.873521 +-2.726021,53.778576 +-2.475085,53.75428 +-2.87723,54.065534 +-3.030176,53.750542 +-2.261155,53.774307 +-2.795071,54.034342 +-2.221183,53.790494 +-2.177113,53.663278 +-2.316106,53.706799 +-2.717785,53.801033 +-2.677486,53.696303 +-2.726737,53.762959 +-2.698151,53.688436 +-3.04084,53.85423 +-2.881736,53.564181 +-2.481453,53.730238 +-3.055672,53.810506 +-2.955701,53.879449 +-2.384403,53.680804 +-2.510275,53.752131 +-2.484302,53.740689 +-2.755847,53.712265 +-2.786446,53.585097 +-2.502789,53.734824 +-2.2645,53.787431 +-3.005137,53.788613 +-2.494858,53.744933 +-2.764655,54.107385 +-2.454733,53.867976 +-2.831381,53.679442 +-2.751831,53.954754 +-2.827998,54.057039 +-2.713858,53.699435 +-2.786382,54.049652 +-2.564653,53.769836 +-3.009424,53.86407 +-2.874576,54.057051 +-2.731041,53.735653 +-2.497788,53.742647 +-2.49675,53.736962 +-3.015668,53.824262 +-3.041411,53.84662 +-2.206903,53.837472 +-3.018117,53.823136 +-2.33219,53.725442 +-2.764657,54.076737 +-2.369958,53.761715 +-2.757454,54.076531 +-2.495751,53.753756 +-2.260032,53.774246 +-2.472643,53.747522 +-2.716755,53.800284 +-2.748925,53.53049 +-2.697349,53.762639 +-2.474831,53.730435 +-3.052471,53.836106 +-3.001187,53.789734 +-3.0235,53.87382 +-2.688743,53.778113 +-3.022728,53.889538 +-2.637416,53.76371 +-2.735899,54.157366 +-2.708373,53.774996 +-3.044849,53.814996 +-2.48102,53.74143 +-2.56676,54.124658 +-2.371154,53.763123 +-2.67773,53.645464 +-3.006256,53.877795 +-2.259016,53.759508 +-2.696122,53.672889 +-2.339521,53.698628 +-2.669568,53.721299 +-2.693037,53.770735 +-3.047227,53.778168 +-2.696001,53.675596 +-2.698258,53.68849 +-2.766645,53.542692 +-2.313347,53.686125 +-3.03112,53.813219 +-2.486092,53.739459 +-2.498307,53.739121 +-2.226878,53.810607 +-2.710964,53.6985 +-3.024094,53.874471 +-2.701857,53.822798 +-2.759119,54.114152 +-3.04153,53.87469 +-2.884417,53.855619 +-2.892848,53.750268 +-2.555258,53.631542 +-2.166622,53.739054 +-3.028066,53.833028 +-2.695134,53.763551 +-3.027855,53.802685 +-2.423696,53.673786 +-2.689875,53.761999 +-2.392766,53.650504 +-2.305828,53.685003 +-3.013102,53.875302 +-2.83762,53.696315 +-3.0346,53.913714 +-2.214624,53.828839 +-2.962851,53.737008 +-2.994993,53.846754 +-2.870011,53.77821 +-2.479483,53.754217 +-2.498383,53.728875 +-2.467414,53.742212 +-2.362028,53.753273 +-2.213899,53.83568 +-2.29021,53.699324 +-2.901472,53.601885 +-2.737441,53.722824 +-2.379051,53.747333 +-2.742602,53.763697 +-2.485759,53.743523 +-2.359525,53.756741 +-2.481603,53.716809 +-2.578423,53.607038 +-2.958035,53.917648 +-2.660843,53.729239 +-3.049411,53.821311 +-2.466772,53.744543 +-2.716992,53.800849 +-2.418289,53.769592 +-2.684886,53.792839 +-2.504856,53.774489 +-2.371403,53.722577 +-2.217827,53.749344 +-2.622421,53.640083 +-2.228751,53.691709 +-2.948689,53.847902 +-3.054415,53.797952 +-2.793949,54.103601 +-2.451051,53.733448 +-2.828623,53.612955 +-2.254015,53.795516 +-2.960899,53.604173 +-3.037148,53.846963 +-2.644908,53.662615 +-2.826453,53.674407 +-2.754128,53.945221 +-2.765032,54.107095 +-2.473147,53.700547 +-3.021356,53.831378 +-2.765381,53.620621 +-2.753194,53.797751 +-2.792249,53.946126 +-2.735173,54.126776 +-2.415786,53.768135 +-2.876582,53.566808 +-3.026654,53.869686 +-2.491712,53.749458 +-2.489529,53.746959 +-2.448217,53.752029 +-3.010097,53.864236 +-2.934536,53.801418 +-2.443174,53.745522 +-2.712562,53.591268 +-2.759609,54.120854 +-2.366379,53.758275 +-2.532297,53.63704 +-2.489705,53.758194 +-3.03768,53.795931 +-2.634199,53.765659 +-2.73735,53.622245 +-3.028878,53.805993 +-2.851813,54.061474 +-2.887086,53.566595 +-2.548152,53.863362 +-3.033658,53.897768 +-2.185866,53.750341 +-2.648167,53.734863 +-2.751867,54.128443 +-3.03381,53.78055 +-2.566266,53.625819 +-2.75081,54.128414 +-2.737262,53.779253 +-2.561981,53.716324 +-2.959783,53.566313 +-2.678366,53.670043 +-2.186804,53.91703 +-2.686285,53.759539 +-2.669559,53.769368 +-2.648511,53.638057 +-2.171563,53.664113 +-2.648755,53.721881 +-2.951588,53.847699 +-2.248685,53.790035 +-3.03651,53.751566 +-2.777846,53.552768 +-2.635313,53.676661 +-3.045141,53.804154 +-2.773135,53.974491 +-2.465197,53.748764 +-2.460395,53.806037 +-2.262052,53.789216 +-3.032265,53.880163 +-2.67693,53.646556 +-2.287064,53.717631 +-2.904387,53.856675 +-3.025745,53.802695 +-2.71666,53.789418 +-2.26769,53.790201 +-2.485109,53.716058 +-3.0145,53.919224 +-2.781444,53.541616 +-2.869467,54.069131 +-2.594571,53.619372 +-2.676123,53.763327 +-2.594549,53.83046 +-2.664366,53.781576 +-2.854014,54.056309 +-2.690136,53.76127 +-2.382768,53.807523 +-2.877223,53.505114 +-2.36931,53.755228 +-3.001098,53.789816 +-3.050555,53.798408 +-3.049482,53.81199 +-2.360073,53.756919 +-3.032082,53.843088 +-2.41885,53.769581 +-2.958933,53.746037 +-3.044732,53.834098 +-2.820704,54.060576 +-2.461432,53.699973 +-2.482364,53.751536 +-2.2657,53.789927 +-2.800315,54.08632 +-2.789656,53.987065 +-2.470065,53.838383 +-2.361425,53.753661 +-2.857691,54.073126 +-2.907163,53.542373 +-2.996918,53.82095 +-2.492026,53.743911 +-2.986622,53.843722 +-2.284837,53.704397 +-2.860301,53.588175 +-2.690502,53.65872 +-2.839047,54.054967 +-2.674349,53.787057 +-2.20951,53.836012 +-2.676897,53.766181 +-3.040387,53.793077 +-2.779988,54.029534 +-2.477418,53.779446 +-2.21246,53.839503 +-2.706345,53.760879 +-2.965882,53.856528 +-2.753799,53.945583 +-2.892819,53.552728 +-2.44038,53.758143 +-3.040646,53.851939 +-2.203847,53.780799 +-2.370633,53.762594 +NULL,NULL +-2.818647,53.531713 +-2.616177,54.191238 +-2.689778,53.774574 +-2.858524,54.041662 +-2.696274,53.728859 +-3.024329,53.830553 +-2.7299,53.692534 +-3.018976,53.79469 +-2.682338,53.766806 +-2.608654,53.651434 +-2.707327,53.79581 +-2.691705,53.766276 +-2.170707,53.904749 +-2.682563,53.775038 +-2.255698,53.782722 +-3.05409,53.807374 +-2.532122,53.749258 +-2.729246,53.773765 +-2.252766,53.693809 +-2.19189,53.854277 +-2.366519,53.756926 +-2.759316,53.874345 +-2.397647,53.768727 +-2.403862,53.633749 +-2.798164,54.047561 +-2.696714,53.59039 +-2.510365,53.752059 +-2.599634,53.68533 +-2.795204,54.028526 +-2.710263,53.768343 +-2.233491,53.831087 +-2.707412,53.774723 +-3.033972,53.780387 +-2.78754,54.063216 +-2.685281,53.798455 +-2.87266,54.06181 +-2.837335,54.08072 +-2.840902,53.702907 +-2.485948,53.746749 +-2.453435,53.730986 +-3.033011,53.875851 +-2.296207,53.796111 +-3.04514,53.813888 +-2.959754,53.865799 +-3.050751,53.771009 +-2.895622,53.922507 +-2.30795,53.795057 +-2.793766,54.054807 +-2.580633,53.654621 +-2.499048,53.764564 +-3.020755,53.798566 +-2.684618,53.764303 +-2.999071,53.789491 +-2.60785,53.827706 +-3.022146,53.749001 +-2.87978,54.066917 +-2.664189,53.684783 +-2.864556,53.780802 +-2.954494,53.89188 +-2.641931,53.774328 +-3.020746,53.79569 +-2.309183,53.783126 +-2.950219,53.761746 +-3.030978,53.838954 +-2.793897,53.814593 +-3.041374,53.786318 +-2.2342,53.824614 +-3.016354,53.792348 +-2.611559,53.836208 +-2.707588,53.694071 +-2.288081,53.702403 +-2.711401,53.783589 +-3.055421,53.81138 +-2.724207,53.646701 +-2.69183,53.72039 +-2.844584,53.600008 +-2.344875,53.764289 +-2.622466,53.640074 +-2.667668,53.717076 +-3.006154,53.802546 +-2.674589,53.660959 +-2.859094,54.076684 +-3.048278,53.789278 +-3.043263,53.79946 +-2.79735,54.051314 +-3.02125,53.829518 +-2.822917,54.055033 +-2.252758,53.692434 +-2.887261,54.045804 +-3.020299,53.920991 +-2.628021,53.717632 +-2.247934,53.698709 +-2.768763,54.071534 +-3.001743,53.795221 +-2.609874,53.629047 +-2.62804,53.654822 +-2.631432,53.649986 +-2.199137,53.693093 +-2.196661,53.694849 +-3.052697,53.819665 +-3.040914,53.832091 +-2.705674,53.771534 +-2.248145,53.796373 +-2.991818,53.742632 +-2.973183,53.54882 +-2.963138,53.8602 +-2.585117,53.773954 +-2.992762,53.837919 +-2.469863,53.641049 +-3.054555,53.801096 +-2.180179,53.856399 +-2.351332,53.776377 +-2.797916,53.94128 +-2.316276,53.695132 +-2.478283,53.739392 +-2.743855,53.669735 +-2.341064,53.778842 +-2.349181,53.776788 +-2.806895,53.68076 +-2.223816,53.808896 +-3.046963,53.820003 +-2.862268,54.07276 +-2.773091,54.071677 +-2.952961,53.742156 +-2.631748,53.649868 +-2.712335,53.745536 +-2.249064,53.820773 +-2.758362,54.124619 +-2.537791,53.779847 +-3.006244,53.85323 +-2.801651,54.044643 +-2.830219,54.061967 +-2.260727,53.832406 +-3.043703,53.79943 +-2.900497,53.783854 +-2.781574,53.726957 +-3.002436,53.87452 +-2.718398,53.82714 +-2.812322,54.019379 +-2.522248,53.761319 +-3.054838,53.817228 +-3.04684,53.852209 +-3.049686,53.858413 +-2.227597,53.800377 +-3.024322,53.86949 +-2.765946,54.130134 +-3.055563,53.810993 +-2.749934,53.59014 +-2.702418,53.837247 +-2.320349,53.701018 +-2.970008,53.532756 +-2.622174,53.661297 +-2.482343,53.744436 +-2.309755,53.792877 +-2.31399,53.800964 +-2.601895,53.830909 +-2.688955,53.778075 +-3.026429,53.833779 +-2.618849,53.655436 +-2.63067,53.714418 +-2.791854,54.037006 +-2.923621,53.849877 +-2.452019,53.747385 +-3.052848,53.805075 +-2.714481,53.775517 +-2.891409,54.054114 +-2.780004,53.981484 +-2.189238,53.909809 +-3.052402,53.795785 +-3.037848,53.856224 +-2.321948,53.702119 +NULL,NULL +-2.641376,53.646284 +-2.405295,53.786228 +-2.708298,53.711998 +-2.658211,53.678209 +-3.053238,53.849699 +-3.027902,53.781625 +-2.841783,53.774331 +-2.400289,53.83114 +-2.734812,53.591942 +-2.772683,53.898132 +-2.322357,53.781276 +-2.852244,53.707941 +-2.227888,53.786886 +-2.586001,53.612961 +-2.740749,53.762693 +-2.479837,53.74805 +-2.840109,54.061413 +-2.930583,53.558804 +-2.328883,53.779425 +-2.278994,53.787227 +-2.323152,53.703024 +-2.836908,54.080813 +-2.869766,53.64522 +-2.713178,53.773817 +-2.331466,53.699001 +-2.764515,53.724847 +-2.366972,53.751487 +-2.536454,53.692901 +-2.373886,53.753075 +-2.742475,53.789126 +-2.829637,53.680047 +-2.92305,53.596975 +-2.716785,53.800293 +-2.764352,54.076784 +-3.005672,53.85346 +-2.639647,53.706937 +-3.040915,53.79478 +-2.241057,53.793987 +-2.663849,53.737249 +-3.055819,53.781895 +-2.31413,53.80135 +-2.687908,53.799392 +-3.045917,53.807886 +-2.820102,53.67552 +-2.671118,53.770087 +-2.869385,54.060117 +-2.661605,53.775839 +-2.388015,53.872444 +-2.418942,53.816866 +-2.643815,53.668319 +-2.439847,53.96653 +-2.631972,53.657722 +-3.018576,53.802621 +-2.839057,54.052423 +-2.366291,53.756927 +-2.476049,53.781807 +-3.047037,53.810169 +-3.034341,53.749724 +NULL,NULL +-2.267344,53.790705 +-2.714401,53.662625 +-2.755122,53.714903 +-2.686344,53.722193 +-2.955645,53.886325 +-2.105154,53.893365 +-2.506118,53.741893 +-2.697219,53.761238 +-2.19198,53.920329 +-2.71588,53.800649 +-2.925146,53.59881 +-2.604685,53.618333 +-3.042289,53.872149 +-2.658487,53.822828 +-2.801794,54.047303 +-2.664054,53.765677 +-2.801172,54.065741 +-2.747022,53.90739 +-2.729717,53.692482 +-2.649354,53.669296 +-3.047286,53.876168 +-2.750567,54.129314 +-2.38278,53.773809 +-2.674581,53.763686 +-3.004983,53.839929 +-2.278915,53.798238 +-2.719819,53.729214 +-2.238365,53.806459 +-2.773646,54.126166 +-2.415801,53.768081 +-2.670593,53.731405 +-2.754599,53.765213 +-2.667866,53.792648 +-2.991273,53.839846 +-2.878118,53.566644 +-2.458238,53.68484 +-2.800284,54.045785 +-2.696947,53.793354 +-3.022733,53.872937 +-3.047053,53.796174 +-2.704564,53.765051 +-3.030252,53.847166 +-3.048313,53.831451 +-3.054357,53.811974 +-2.38227,53.756167 +-2.932223,53.53659 +-2.682538,53.710871 +-2.679966,53.767422 +-3.042754,53.824839 +-2.23998,53.796794 +-2.227035,53.80321 +-2.244063,53.786144 +-2.381342,53.770811 +-2.886733,53.564836 +-2.338671,53.768108 +-2.247909,53.774308 +-2.655535,53.782604 +-2.64679,53.772576 +-2.434271,53.684938 +-2.742883,53.540451 +-2.179314,53.867554 +-2.692223,53.725862 +-2.236014,53.81778 +-3.038396,53.820625 +-2.88727,53.566693 +-2.798251,54.055263 +-2.648868,53.789211 +-2.459063,53.734191 +-2.513883,53.75074 +-2.663816,53.774622 +-2.724074,53.73868 +-2.200978,53.853562 +-3.046056,53.785396 +-2.67727,53.762988 +-2.84122,53.702905 +-2.986435,53.794351 +-2.674643,53.76374 +-2.743609,54.05271 +-3.024674,53.807333 +-3.051998,53.818457 +-3.037908,53.818688 +-2.664409,54.093843 +-2.699463,53.760263 +-2.993292,53.801853 +-3.026898,53.913151 +-2.719223,53.758186 +-2.946126,53.80165 +-2.989048,53.843459 +-3.052218,53.798744 +-2.453964,53.712612 +-2.721187,53.748881 +-2.675477,53.658788 +-2.261688,53.694123 +-2.621642,53.765968 +-2.246118,53.789753 +-2.991083,53.848521 +-2.219247,53.84411 +-2.505951,53.717904 +-2.519104,53.731483 +-3.024335,53.878739 +-2.795085,54.034252 +-2.198847,53.702396 +-2.473407,53.743995 +-2.445273,53.759041 +-3.042685,53.872181 +-3.033642,53.816325 +-2.487162,53.744183 +-2.727472,53.541957 +-2.859933,54.071429 +-2.444597,53.74531 +-2.593586,53.695652 +-2.68193,53.688287 +-2.904111,53.784627 +-2.491558,53.744093 +-2.493787,53.736345 +-3.049498,53.811999 +-3.041554,53.876263 +-2.673923,53.66099 +-2.759438,53.767727 +-2.460424,53.805965 +-2.855293,54.043474 +-2.247289,53.792689 +-2.727939,53.562088 +-3.0291,53.834889 +-2.621656,53.765896 +-3.029337,53.817917 +-2.502819,53.734842 +-2.231126,53.823766 +-2.219778,53.838141 +-2.219825,53.841386 +-2.648015,53.733857 +-2.969607,53.855222 +-2.682339,53.766842 +-3.051102,53.820272 +-2.471966,53.738527 +-3.028326,53.826878 +-2.392532,53.765257 +-2.683077,53.757203 +-2.455135,53.750825 +-2.220642,53.823301 +-2.439555,53.875098 +-2.314626,53.687047 +-2.285911,53.699703 +-2.862987,54.060271 +-2.715194,54.13956 +-2.801623,54.047115 +-3.023944,53.873942 +-2.751322,54.168496 +-2.482203,53.713661 +-2.773196,54.071604 +-3.036553,53.816731 +-2.470455,53.715856 +-2.521459,53.937307 +-2.983292,53.79372 +-2.384067,53.725377 +-2.246837,53.785644 +-2.47049,53.729913 +-2.830842,53.673612 +-2.419929,53.816863 +-2.948689,53.847902 +-2.803116,53.761357 +-2.729695,54.150285 +-2.732234,53.73534 +-2.7007,53.788973 +-2.485802,53.759055 +-3.033468,53.843831 +-2.677027,53.695038 +-2.47764,53.738819 +-2.604113,53.621679 +-2.705264,53.763357 +-2.784987,53.980454 +-2.714936,53.790642 +-2.836595,54.081202 +-3.052113,53.813342 +-3.022676,53.914841 +-2.210857,53.844044 +-2.796099,54.047368 +-3.055494,53.823361 +-2.183426,53.649804 +-3.001714,53.795294 +-2.664705,53.774177 +-2.967563,53.92736 +-3.02802,53.802603 +-2.631958,53.651754 +-2.240803,53.789431 +-2.672083,53.744043 +-3.03218,53.798873 +-2.676046,53.762339 +-2.480718,53.741548 +-2.773116,53.956174 +-2.629852,53.804601 +-2.716961,53.757184 +-2.444523,53.993413 +-3.024558,53.808179 +-2.674467,53.66096 +-2.260396,53.820776 +-2.597218,53.716801 +-2.473455,53.757666 +-2.467844,53.735883 +-2.248797,53.719236 +-2.720499,53.783139 +-3.029758,53.806606 +-2.649307,53.669207 +-2.94975,53.847777 +-2.312899,53.795125 +-3.04752,53.816744 +-2.690745,53.631933 +-2.628894,53.71725 +-3.006503,53.856401 +-3.002406,53.794398 +-2.745611,53.769108 +-2.532923,53.722659 +-2.320607,53.973433 +-3.056351,53.795238 +-3.055921,53.798657 +-2.998404,53.845719 +-3.011296,53.833243 +-2.635257,53.70715 +-2.969788,53.829505 +-2.177771,53.690214 +-2.830132,54.062174 +-2.879355,54.064152 +-2.646479,53.777953 +-2.683218,53.688325 +-2.209313,53.787414 +-2.63812,53.718145 +-2.79708,54.05474 +-2.402027,53.741317 +-3.050597,53.77093 +-2.849846,54.061686 +-2.473012,53.72904 +-2.709829,53.777666 +-2.407476,53.787344 +-2.468359,53.749507 +-3.038953,53.803237 +-2.632335,53.66883 +-2.697838,53.779318 +-2.61073,53.611893 +-2.219973,53.843561 +-2.992279,53.799498 +-2.888225,53.56834 +-2.321666,53.819827 +-2.722387,53.775497 +-2.902121,53.560721 +-3.058071,53.785165 +-2.800675,53.561093 +-2.994911,53.846512 +-2.727506,53.955452 +-2.390983,53.872695 +-2.593965,53.69565 +-2.395952,53.828773 +-2.627759,53.652253 +-3.010565,53.871 +-2.811384,53.766155 +-2.768742,53.661623 +-2.617751,53.639335 +-2.147113,53.912941 +-3.010963,53.800474 +-2.631092,53.710219 +-2.674772,53.781257 +-2.794159,53.707118 +-2.642847,53.640569 +-3.035361,53.852138 +-2.177739,53.858308 +-2.491483,53.744129 +-2.681651,53.692567 +-2.897663,53.806778 +-2.675427,53.750235 +-2.674589,53.660986 +-2.227204,53.783975 +-2.21193,53.842946 +-2.697484,53.806483 +-2.693139,53.778734 +-2.695159,53.797193 +-2.802466,54.043335 +-2.967863,53.82775 +-2.975742,53.794124 +-2.729668,53.750025 +-2.961157,53.908383 +-2.682157,53.720068 +-2.240362,53.789225 +-3.013644,53.878857 +-2.987937,53.849868 +-2.746888,54.148544 +-2.254424,53.692583 +-2.444948,53.746944 +-2.636074,53.766279 +-2.611622,53.622387 +-2.824796,53.53524 +-2.598381,53.744299 +-3.047433,53.865605 +-2.801885,53.558002 +-2.72576,53.843427 +-3.045279,53.835324 +-2.188012,53.769078 +-2.791594,53.677806 +-2.44553,53.751751 +-2.287968,53.794513 +-2.860167,53.756916 +-2.170858,53.859774 +-2.639743,53.772074 +-3.000672,53.790413 +-2.490507,53.733239 +-3.047016,53.777622 +-2.46927,53.748209 +-3.040207,53.885712 +-2.854829,53.668805 +-2.720397,53.800172 +-2.796644,54.058311 +-2.761957,53.590828 +-2.679098,53.76251 +-2.549143,53.702066 +-3.055414,53.823218 +-2.970596,53.922221 +-2.717382,53.693805 +-2.788944,54.108217 +-2.203551,53.87005 +-2.80307,54.050081 +-2.434915,53.8002 +-2.510677,53.749037 +-2.460664,53.751712 +-2.675004,53.763567 +-2.711723,53.759597 +-2.874542,53.769863 +-2.22508,53.693352 +-2.795223,54.035914 +-2.531245,53.7134 +-2.179285,53.910453 +-2.626328,53.646562 +-2.607189,53.831412 +-2.769282,54.145014 +-3.011528,53.826464 +-2.669638,53.73523 +-2.724384,53.771629 +-2.936273,53.82827 +-2.432311,53.752258 +-2.72289,53.688236 +-2.745256,53.852655 +-2.641826,53.7744 +-2.682978,53.761374 +-2.661376,53.781565 +-2.51968,53.920418 +-2.455827,53.743344 +-2.457424,53.749342 +-2.972406,53.599208 +-2.304659,53.667704 +-2.803241,54.048686 +-2.704073,53.799164 +-3.004868,53.842744 +-3.055823,53.815296 +-3.005076,53.853303 +-2.914657,53.547664 +-3.043929,53.813414 +-2.393559,53.837625 +-2.582488,53.621238 +-2.626155,53.649151 +-2.755068,54.124379 +-2.733107,53.769832 +-2.278067,53.789332 +-2.77801,54.122246 +-2.829426,53.680094 +-2.671467,53.69498 +-2.408417,53.78575 +-2.217651,53.832375 +-2.817088,54.056125 +-2.713263,53.685741 +-2.28305,53.785474 +-3.051162,53.797782 +-2.830257,54.062308 +-2.738151,53.761559 +-2.14711,53.877242 +-2.997363,53.872261 +-2.705634,53.77095 +-2.28622,53.789736 +-3.014488,53.807509 +-2.704648,53.759172 +-3.055458,53.819524 +-2.622583,53.735241 +-2.176515,53.654227 +-2.778267,54.032214 +-2.650357,53.783441 +-3.007535,53.802543 +-2.385136,53.757686 +-2.778737,53.965844 +-2.481175,53.709863 +-2.634046,53.704172 +-2.794841,53.602578 +-2.955682,53.885291 +-2.696881,53.689522 +-2.792341,54.031268 +-2.638353,54.11657 +-2.170844,53.669857 +-2.529697,53.724012 +-2.999595,53.794269 +-2.800092,53.85356 +-2.254876,53.784665 +-2.282086,53.791219 +-2.4862,53.743638 +-2.871147,54.061084 +-2.865649,53.755016 +-2.94264,53.595231 +-2.636515,53.768362 +-2.483717,53.741302 +-2.634581,53.718577 +-2.993477,53.836007 +-2.575433,53.884553 +-2.17429,53.840571 +-2.670106,53.717017 +-2.750194,54.073943 +-3.031881,53.827486 +-2.327411,53.711146 +-2.559352,53.715734 +-3.021871,53.915522 +-2.771429,53.764729 +-2.923246,53.836254 +-2.631483,53.650372 +-3.011898,53.922419 +-2.328852,53.783173 +-3.006287,53.87846 +-2.464547,53.748964 +-2.22178,53.834515 +-2.252353,53.809468 +-3.035624,53.91819 +-3.035459,53.752626 +-2.410286,53.703557 +-3.051341,53.815245 +-2.942657,53.595303 +-2.789401,54.046917 +-2.460781,53.683401 +-2.366987,53.751478 +-2.799879,54.059692 +-2.475346,53.786762 +-2.800473,54.05088 +-2.213271,53.837659 +-2.685143,53.698695 +-2.395452,53.790234 +-2.655904,53.627141 +-3.027911,53.894878 +-2.174447,53.900205 +-2.830381,53.668627 +-2.695422,53.693755 +-2.99136,53.843548 +-2.811274,54.057252 +-2.482445,53.722927 +-2.431023,53.71826 +-2.482615,53.750942 +-3.019253,53.81048 +-2.818786,53.645957 +-2.452872,53.747724 +-2.393321,53.867367 +-2.466711,53.695234 +-2.711004,53.78165 +-2.782094,54.014043 +-3.043129,53.798949 +-2.235003,53.789128 +-2.776905,53.914094 +-2.888955,53.806474 +-3.041783,53.818762 +-2.744542,53.777258 +-2.811957,53.956744 +-2.604104,53.618875 +-3.033765,53.800334 +-3.04302,53.872205 +-2.20777,53.834541 +-2.776586,54.010043 +-3.042516,53.840337 +-3.019857,53.914092 +-3.044663,53.851455 +-2.844232,53.674777 +-2.228411,53.799306 +-2.89943,53.692747 +-2.4848,53.74057 +-2.514255,53.712934 +-3.023845,53.874231 +-2.990543,53.803125 +-2.955571,53.877742 +-3.038534,53.804688 +-2.187394,53.912768 +-2.19829,53.703044 +-2.327355,53.705951 +-2.639029,53.789039 +-3.03846,53.820733 +-2.233652,53.840892 +-3.022878,53.821505 +-2.431311,53.759766 +-2.960784,53.623742 +-2.764932,53.767844 +-2.479304,53.715866 +-2.333257,53.829647 +-2.891027,53.571591 +-2.441096,53.743966 +-2.225613,53.809881 +-2.173798,53.857514 +-2.828619,53.679874 +-2.705447,53.770672 +-2.661255,53.682093 +-2.74161,53.890571 +-2.923947,53.531386 +-2.204819,53.836927 +-3.032807,53.810148 +-2.25356,53.782996 +-2.434115,53.896086 +-2.858005,54.060181 +-2.520754,53.732501 +-3.017743,53.823364 +-2.474453,53.757374 +-2.650907,53.667921 +-2.699255,53.758673 +-2.716167,53.754241 +-2.619764,53.702314 +-2.660779,53.696217 +-2.498136,53.74261 +-2.491242,53.744292 +-3.043236,53.799586 +-2.746812,53.533056 +-2.803931,54.030598 +-2.622614,53.73525 +-2.799861,53.702613 +-2.607444,53.710386 +-2.286424,53.659147 +-2.811243,54.057216 +-2.198474,53.844794 +-2.288593,53.783798 +-3.023882,53.753643 +-2.499396,53.728655 +-2.768102,53.556498 +-2.702894,53.764036 +-2.825333,54.05978 +-2.202982,53.837425 +-3.006174,53.842041 +-3.021447,53.804529 +-2.171116,53.859621 +-2.631132,53.718973 +-2.982913,53.794371 +-3.038268,53.819755 +-2.670999,53.770205 +-2.704482,53.615971 +-2.705731,53.792988 +-2.386208,53.876036 +-2.784851,53.978927 +-3.025737,53.885648 +-2.385338,53.749919 +-2.60309,53.766063 +-3.032306,53.809559 +-2.378645,53.752718 +-2.717712,53.700698 +-2.98205,53.789254 +-2.98899,53.799093 +-2.167358,53.855321 +-2.807293,54.041028 +-2.699223,53.758592 +-2.692121,53.726069 +-3.011213,53.801398 +-2.766254,53.875307 +-2.464285,53.765126 +-3.014485,53.919225 +-2.337228,53.81512 +-2.716209,53.688941 +-3.039787,53.793369 +-2.491666,53.749449 +-2.722446,53.763938 +-2.689844,53.774008 +-2.23441,53.802431 +-2.616112,54.135354 +-2.333403,53.704515 +-2.777686,53.927445 +-2.827281,54.065555 +-2.482696,53.714333 +-2.681362,53.761823 +-2.582061,54.193367 +-3.04311,53.852583 +-2.798066,53.705447 +-3.05034,53.798904 +-2.27008,53.793728 +-2.263373,53.789213 +-2.769381,53.536301 +-2.325364,53.701166 +-2.67991,53.635231 +-2.68546,53.70699 +-2.991395,53.799343 +-2.207932,53.766034 +-2.678565,53.670141 +-2.716291,53.695529 +-3.032241,53.798864 +-2.597324,53.617291 +-3.005868,53.878095 +-3.015899,53.740875 +-3.032755,53.750573 +-2.625166,53.65081 +-2.692838,53.775213 +-2.852062,54.059468 +-2.670461,53.72124 +-2.36552,53.755455 +-2.801499,54.047017 +-2.798938,53.677883 +-2.60107,53.685134 +-2.875296,53.558647 +-2.464766,53.755048 +-3.039735,53.883262 +-3.019253,53.747876 +-2.798774,54.049884 +-2.801638,54.074097 +-2.864277,54.070886 +-2.332967,53.702961 +-2.905427,53.868253 +-2.889423,53.807028 +-2.28086,53.866559 +-3.039763,53.779518 +-3.008677,53.924622 +-2.810121,53.550576 +-2.955454,53.620711 +-2.797919,53.941469 +-2.380786,53.753044 +-2.769185,54.144736 +-2.641884,53.811943 +-2.874761,54.062918 +-3.030464,53.788336 +-2.826604,53.674414 +-2.483044,53.747408 +-2.44375,53.755506 +-2.82244,54.059531 +-2.244585,53.797531 +-2.748305,54.1753 +-2.666752,53.773168 +-2.49938,53.742667 +-3.047823,53.779565 +-2.669278,53.792694 +-2.546425,53.722598 +-3.001103,53.797024 +-2.23397,53.788824 +-2.63776,53.769398 +-2.496483,53.741268 +-2.214021,53.838736 +-2.500748,53.750571 +-2.468096,53.695866 +-2.333724,53.702896 +-2.955862,53.88982 +-3.041454,53.877108 +-2.30793,53.920699 +-3.040732,53.78493 +-2.232706,53.823727 +-3.055461,53.808746 +-2.498985,53.766856 +-2.336506,53.687132 +-2.710249,53.768424 +-2.726879,53.740415 +-3.021786,53.91643 +-2.839464,54.054443 +-3.038541,53.762568 +-3.04886,53.794369 +-2.892297,54.047052 +-2.633145,53.656269 +-2.631205,53.765298 +-2.698061,53.762626 +-2.503618,53.738263 +-2.253636,53.813061 +-2.633069,53.70975 +-2.511388,53.75138 +-2.873599,54.063619 +-2.72842,53.770804 +-2.70577,53.694899 +-2.495953,53.638337 +-2.2301,53.794476 +-2.195826,53.844043 +-3.048656,53.819035 +-2.483266,53.752216 +-3.020919,53.916429 +-2.69155,53.695908 +-3.011497,53.826455 +-2.682612,53.710745 +-2.72932,53.750027 +-2.341455,53.933227 +-2.810957,53.898931 +-2.464668,53.792907 +-2.473498,53.743923 +-2.715543,53.77641 +-2.694422,53.698363 +-2.77021,53.612681 +-2.472295,53.771863 +-2.678159,53.779575 +-2.881672,53.503014 +-2.239716,53.793091 +-2.389748,53.752907 +-3.00119,53.789869 +-2.474359,53.640007 +-2.280901,53.788742 +-2.648371,53.638759 +-2.706265,53.690096 +-2.673674,53.721213 +-2.677537,53.751275 +-2.235994,53.819451 +-2.35451,53.750167 +-2.200978,53.872562 +-2.274997,53.781915 +-2.644106,53.74292 +-3.028067,53.828714 +-2.644193,53.753571 +-2.36599,53.755427 +-2.306173,53.794944 +-2.693254,53.726764 +-3.011512,53.826437 +-3.037491,53.817173 +-2.838818,54.066374 +-2.33253,53.768539 +-2.651953,53.780637 +-2.481883,53.712143 +-2.675421,53.771609 +-3.023322,53.849688 +-2.445785,53.745746 +-3.024112,53.753749 +-2.740709,53.762981 +-2.68859,53.698289 +-2.64596,53.777776 +-2.257414,53.79265 +-2.252034,53.697972 +-2.949182,53.898556 +-2.492108,53.739255 +-2.578496,53.606885 +-2.928771,53.803701 +-2.631881,53.651701 +-2.199167,53.693102 +-2.336917,53.768788 +-3.052471,53.819739 +-2.363876,53.721395 +-3.037833,53.818752 +-2.978013,53.857122 +-2.706997,53.739222 +-2.895077,54.035005 +-2.321587,53.694471 +-2.167469,53.867679 +-2.279892,53.780834 +-2.845055,54.07779 +-3.016084,53.774913 +-2.929313,53.580764 +-2.618508,53.651735 +-2.609149,53.617591 +-2.230199,53.804291 +-3.051547,53.825284 +-2.480542,53.751382 +-2.311752,53.812403 +-2.309452,53.799007 +-2.446826,53.738138 +-2.783161,54.067585 +-3.056052,53.796643 +-2.23487,53.789695 +-3.043581,53.811655 +-2.283025,53.928193 +-2.219474,53.843957 +-2.706682,54.078341 +-2.481096,53.70963 +-2.677311,53.669348 +-2.257485,53.834013 +-2.259801,53.820346 +-2.364329,53.759782 +-3.031344,53.827913 +-2.726265,53.73295 +-3.031979,53.798102 +-2.204509,53.698575 +-2.188046,53.919023 +-2.656737,53.737144 +-3.02852,53.800064 +-2.689866,53.629961 +-2.40077,53.868717 +-3.04641,53.798408 +-3.033759,53.870416 +-2.351478,53.806558 +-2.990251,53.817132 +-2.875614,54.070777 +-2.781133,54.081664 +-3.011173,53.800994 +-2.645247,53.787684 +-2.778858,53.712881 +-2.637045,54.112119 +-2.47171,53.757628 +-2.230452,53.833717 +-2.256458,53.790297 +-2.454703,53.867977 +-2.20327,53.711817 +-2.148533,53.819673 +-3.049267,53.841662 +-2.740875,53.69315 +-2.722736,53.765814 +-2.704511,53.790856 +-3.024123,53.762953 +-3.035449,53.826781 +-2.79102,53.927871 +-2.793826,53.673315 +-2.702879,53.735894 +-2.646635,53.72298 +-2.405213,53.865862 +-3.012067,53.918715 +-2.986314,53.796311 +-2.794644,54.099183 +-2.494041,53.729585 +-2.385832,53.752614 +-2.713073,53.813267 +-2.476246,53.779136 +-2.422673,53.899291 +-2.236096,53.788991 +-2.6526,53.785173 +-3.022059,53.872125 +-2.260941,53.78627 +-3.044515,53.802793 +-3.055419,53.801044 +-2.638956,53.771207 +-3.004018,53.870704 +-3.033238,53.875822 +-2.634091,53.653747 +-2.651086,53.896049 +-3.051339,53.798779 +-2.361701,53.754065 +-2.680676,53.701561 +-2.329754,53.787916 +-2.388403,53.786338 +-2.682141,53.771481 +-2.985927,53.794732 +-3.002042,53.794419 +-2.705665,53.771003 +-2.793723,54.042107 +-2.648291,53.785286 +-2.524405,53.787105 +-2.715744,53.800694 +-2.71582,53.800685 +-2.664288,54.093898 +-2.283003,53.785276 +-2.577638,54.191636 +-2.461785,53.723871 +-2.230184,53.8043 +-2.877402,54.063573 +-2.982695,53.857102 +-2.140761,53.86641 +-2.26445,53.784321 +-2.90152,53.778463 +-2.175962,53.858805 +-2.202757,53.696439 +-2.237756,53.819547 +-3.030257,53.753246 +-2.981073,53.787716 +-2.70972,53.814347 +-2.635159,53.676509 +-3.027549,53.834246 +-3.000719,53.790484 +-2.704043,53.715753 +-2.714311,53.759249 +-2.913335,53.786553 +-2.892566,53.792758 +-3.033695,53.912841 +-2.979538,53.73618 +-3.043469,53.869478 +-2.690713,53.725242 +-2.705825,53.771497 +-2.482548,53.751688 +-2.234944,53.789344 +-2.471253,53.747931 +-2.357965,53.758723 +-2.776585,53.912398 +-2.455975,53.64495 +-2.798982,54.040041 +-2.767607,54.128919 +-3.026746,53.803881 +-2.203513,53.834036 +-2.671256,53.770131 +-2.880529,53.861589 +-2.683664,53.770942 +-2.65041,53.789778 +-2.40799,53.829254 +-2.677606,53.697165 +-3.016754,53.764966 +-2.202824,53.707144 +-2.775991,53.900115 +-2.683002,53.719839 +-2.806422,54.062309 +-2.728037,53.54234 +-2.282658,53.797213 +-2.672758,53.728418 +-3.04111,53.85163 +-2.602823,53.766477 +-2.685296,53.774258 +-2.476118,53.767839 +-2.382687,53.773647 +-2.908522,53.584637 +-2.411822,53.750694 +-2.71588,53.713283 +-2.693577,53.727059 +-2.171635,53.85642 +-3.029043,53.898221 +-2.223675,53.80247 +-2.470935,53.760184 +-3.055316,53.807238 +-3.029889,53.796448 +-2.486191,53.771663 +-3.054886,53.817929 +-2.24672,53.791531 +-2.940304,53.614548 +-2.223557,53.808798 +-2.796859,54.036811 +-2.17912,53.647707 +-2.243482,53.790693 +-2.471575,53.702198 +-2.73149,53.770183 +-2.739512,54.146199 +-2.169417,53.853161 +-2.636759,53.680195 +-3.000811,53.851065 +-2.787662,54.063224 +-2.700182,53.690402 +-2.776244,54.040846 +-2.752177,53.692504 +-2.290381,53.699908 +-2.576618,53.605456 +-2.472647,53.75189 +-2.182407,53.65225 +-2.894521,53.564005 +-2.610518,53.731142 +-2.312736,53.693668 +-2.203341,53.836202 +-3.021492,53.826379 +-2.323883,53.703543 +-3.05376,53.828113 +-2.233164,53.7832 +-3.04413,53.761 +-2.68143,53.766029 +-2.886273,53.574628 +-2.801453,54.047018 +-2.828613,53.787429 +-2.632357,53.765229 +-3.055424,53.812711 +-3.052487,53.830695 +-2.677134,53.762099 +-2.915225,53.852422 +-2.362205,53.749093 +-2.69541,53.795844 +-2.329182,53.780754 +-2.250525,53.790696 +-2.910528,53.795688 +-2.406538,53.822131 +-2.757973,53.736124 +-2.728501,53.847257 +-2.390635,53.872831 +-2.890617,53.57367 +-2.387767,53.878467 +-2.719388,53.758958 +-2.733824,53.762242 +-2.835534,54.064914 +-2.990637,53.738813 +-2.7444,54.149809 +-2.876687,53.806547 +-2.579654,53.776119 +-2.212587,53.810642 +-2.639779,53.707638 +-2.351459,53.702539 +-3.027277,53.883316 +-3.01679,53.922603 +-2.738924,53.761572 +-2.678671,53.783078 +-3.038837,53.790555 +-2.384228,53.786199 +-2.72802,53.762591 +-2.956604,53.736312 +-2.471905,53.757438 +-2.635189,53.976639 +-2.696692,53.758688 +-2.912798,53.835875 +-3.051634,53.820896 +-3.019423,53.75866 +-2.747241,53.532577 +-2.425918,53.761898 +-2.879904,53.562469 +-2.236124,53.788658 +-2.686729,53.759788 +-2.460568,53.745708 +-2.73116,53.692689 +-3.038749,53.821979 +-2.677689,53.694774 +-2.815881,53.961769 +-2.79253,53.993859 +-2.702354,53.735358 +-3.022113,53.806321 +-2.740615,53.763683 +-2.782551,54.025418 +-3.040323,53.871375 +-2.712168,53.767936 +-3.034197,53.791377 +-2.316934,53.696083 +-2.831798,53.685219 +-2.890363,53.572324 +-2.686379,53.719694 +-2.873911,54.070465 +-3.034639,53.915287 +-3.03109,53.81632 +-2.830876,54.062717 +-2.759127,53.730292 +-2.292478,53.796794 +-2.638552,53.695609 +-2.747491,53.769896 +-3.025619,53.920002 +-2.488932,53.746414 +-2.719,53.780649 +-2.843637,53.601777 +-2.532093,53.722896 +-2.229971,53.787583 +-2.674935,53.681684 +-3.054048,53.822035 +-2.992228,53.843622 +-2.775527,53.781313 +-2.8233,54.05895 +-2.396273,53.870817 +-2.364345,53.759809 +-3.002026,53.794383 +-2.663513,53.635036 +-2.827635,53.564775 +-2.794625,54.033374 +-2.640727,53.727137 +-2.67263,53.721318 +-2.837154,54.080874 +-2.454473,53.731692 +-2.232658,53.741092 +-2.406552,53.820432 +-3.007181,53.780156 +-2.249137,53.697268 +-2.298033,53.698235 +-2.444432,53.74683 +-3.014626,53.75285 +-3.018011,53.820638 +-2.680149,53.753408 +-2.188128,53.916947 +-2.334616,53.698876 +-2.201717,53.703757 +-2.587141,54.124659 +-3.029558,53.834355 +-2.69731,53.75846 +-3.036994,53.808135 +-2.402815,53.741278 +-2.792393,54.068532 +-2.587697,53.629482 +-2.232269,53.785961 +-2.373869,53.752877 +-2.896429,53.857112 +-2.368669,53.777341 +-2.775005,54.076797 +-2.854701,54.060753 +-2.239848,53.787006 +-2.316532,53.801775 +-2.899672,53.606761 +-3.018515,53.74559 +-2.712936,53.773873 +-2.969814,53.564524 +-2.201856,53.843395 +-2.683063,53.719883 +-2.461737,53.686364 +-2.585616,54.124999 +-2.658395,53.780171 +-2.801281,54.057921 +-2.165284,53.857337 +-2.172091,53.856366 +-2.650897,53.667283 +-3.020836,53.860612 +-2.377331,53.773628 +-2.387622,53.747692 +-2.218728,53.834934 +-3.013808,53.885641 +-2.684694,53.758667 +-2.771853,54.06507 +-2.360893,53.750023 +-2.729533,53.750098 +-3.046662,53.795719 +-2.683947,53.720175 +-2.45486,53.733803 +-3.011006,53.874178 +-2.312134,53.80043 +-2.870012,53.555701 +-2.699433,53.698163 +-2.190673,53.853938 +-2.220482,53.833421 +-3.03987,53.878273 +-2.716229,53.754295 +-2.717268,53.755628 +-3.019466,53.873675 +-2.774954,53.764203 +-2.447946,53.723672 +-2.650138,53.716229 +-2.456714,53.841805 +-2.682903,53.765185 +-2.96084,53.870689 +-2.979596,53.788187 +-2.706117,53.693055 +-2.691301,53.768472 +-2.466535,53.758673 +-2.735239,53.761631 +-2.455604,53.732541 +-3.018019,53.823505 +-2.886934,53.566507 +-3.022574,53.872633 +-2.709193,53.766938 +-2.364073,53.721368 +-2.708998,53.695078 +-2.688621,53.778086 +-2.79173,53.725425 +-2.247072,53.822863 +-2.886016,53.574639 +-2.759754,53.767581 +-2.740446,53.762704 +-3.039139,53.852456 +-2.637961,53.790662 +-2.681394,53.728216 +-2.479818,53.774349 +-2.252279,53.817369 +-2.84179,53.603902 +-3.009192,53.863893 +-2.840267,53.605593 +-2.680105,53.766639 +-2.470326,53.770783 +-2.239196,53.797622 +-3.03504,53.794795 +-2.679318,53.795882 +-3.019585,53.869171 +-2.331451,53.699001 +-3.031211,53.873188 +-2.858694,54.060266 +-2.867907,53.769651 +-2.20453,53.836928 +-2.662676,53.733031 +-2.952534,53.805033 +-2.372936,53.755343 +-2.470298,53.743873 +-2.20966,53.832641 +-2.405067,53.749971 +-2.355986,53.740015 +-2.174556,53.659803 +-2.706339,53.792122 +-2.689442,53.850337 +-2.798275,54.046994 +-2.674593,53.662164 +-2.774755,54.138868 +-2.767761,53.732475 +-2.779327,53.925574 +-2.212619,53.942737 +-2.311731,53.799361 +-2.362304,53.75356 +-2.680927,53.688014 +-3.025048,53.74859 +-2.88863,53.579006 +-3.011075,53.874528 +-2.716427,53.903847 +-2.480224,53.773979 +-3.039732,53.897212 +-2.390307,53.646378 +-2.805963,53.949352 +-2.618596,53.806412 +-2.77969,53.967132 +-2.431793,53.744656 +-2.826454,53.988481 +-2.202947,53.707494 +-2.756978,54.122587 +-3.01806,53.808252 +-2.713746,53.698169 +-2.69423,54.123433 +-2.251637,53.798855 +-2.391883,53.755803 +-2.853817,54.069037 +-2.439009,53.724155 +-2.454968,53.733982 +-2.19637,53.84992 +-2.990724,53.839122 +-2.596093,54.16621 +-2.481254,53.710123 +-2.423073,53.806264 +-2.790502,53.54179 +-2.269137,53.793325 +-2.718458,53.756951 +-2.153741,53.910156 +-2.631569,53.69961 +-2.406294,53.823561 +-2.485422,53.718232 +-2.96401,53.828024 +-2.685976,53.721961 +-2.958304,53.79235 +-2.238938,53.792383 +-2.844584,53.600008 +-3.005178,53.863908 +-3.033717,53.800226 +-2.718721,53.765227 +-2.98534,53.794935 +-2.904626,53.824082 +-3.023962,53.75384 +-2.769206,53.568203 +-2.705267,53.769873 +-2.754252,53.562842 +-2.391555,53.748263 +-2.697773,53.758978 +-2.750846,54.128665 +-2.750343,53.791135 +-2.7963,54.052319 +-3.010069,53.864326 +-2.385492,53.748589 +-3.027549,53.84789 +-2.883004,53.568477 +-2.78925,54.047044 +-2.475319,53.702444 +-3.038466,53.873179 +-3.033226,53.875939 +-2.715355,53.773382 +-2.823485,54.059056 +-2.792439,53.712334 +-2.686884,53.759958 +-3.02715,53.901096 +-2.758152,53.767923 +-2.765178,53.602727 +-2.964062,53.553263 +-3.019678,53.806117 +-3.036793,53.815983 +-2.738023,54.155402 +-2.677823,53.694629 +-2.230565,53.787995 +-3.029842,53.837274 +-3.022764,53.872937 +-3.007566,53.751884 +-2.735156,53.795067 +-2.795258,54.052155 +-2.799365,54.056028 +-2.21577,53.844907 +-2.933805,53.637879 +-2.220234,53.823769 +-2.705143,53.715405 +-2.649832,53.737658 +-2.883804,53.567015 +-2.706784,53.757245 +-3.043039,53.876627 +-3.002562,53.844183 +-2.18411,53.764887 +-2.493891,53.759399 +-3.045815,53.808031 +-2.230076,53.798521 +-3.041046,53.80436 +-2.672858,53.748901 +-2.825731,54.059068 +-2.739382,53.768616 +-2.455539,53.74757 +-2.860393,53.756852 +-2.697628,53.758422 +-2.463444,53.725968 +-2.985652,53.804343 +-2.336513,53.663295 +-2.638257,53.771175 +-2.233729,53.789301 +-2.623326,53.651224 +-2.890672,53.569814 +-2.778302,53.784449 +-2.445693,53.745692 +-3.053746,53.814262 +-3.018969,53.869518 +-2.649798,53.745298 +-2.8519,54.061258 +-2.662135,53.731398 +-2.252988,53.692964 +-2.727475,53.796831 +-2.710217,53.768316 +-2.680388,53.772902 +-2.467506,53.780582 +-2.610692,54.182009 +-2.176387,53.858633 +-2.663453,53.621589 +-2.888226,53.569832 +-2.22817,53.830522 +-2.625135,53.804976 +-2.444992,53.725229 +-2.325956,53.703277 +-2.692163,53.644653 +-2.512014,53.75544 +-2.791442,54.057114 +-2.47157,53.699071 +-2.688088,53.694454 +-2.328404,53.743384 +-2.290965,53.74056 +-2.619285,53.67377 +-2.745399,53.861525 +-2.778558,53.541401 +-3.02371,53.760934 +-2.72657,53.7515 +-2.347221,53.789323 +-2.716015,53.798733 +-2.885449,53.789234 +-2.687699,53.764385 +-2.486714,53.751357 +-2.238689,53.791305 +-2.662689,53.732896 +-2.15149,53.90242 +-2.453647,53.704272 +-2.561643,53.715984 +-2.254482,53.779759 +-2.801014,53.831794 +-2.608703,53.622312 +-2.284446,53.792212 +-2.71324,53.789987 +-2.208418,53.766078 +-2.61966,53.766302 +-2.890288,54.058832 +-2.342244,53.795152 +-2.674207,53.658885 +-3.009774,53.766778 +-2.603456,53.831692 +-2.696177,53.762421 +-3.039528,53.828283 +-2.710226,53.76526 +-2.79816,54.051345 +-2.445227,53.74609 +-2.282958,53.785375 +-2.235667,53.820827 +-3.086198,53.397139 +-2.724297,53.407119 +-2.960066,53.30442 +-2.960253,53.303358 +-3.088706,53.398752 +-2.751912,53.389034 +-2.984357,53.644566 +-3.01655,53.3839 +-2.974736,53.46861 +-3.051705,53.412082 +-2.755982,53.452379 +-2.930661,53.442624 +-2.746865,53.451133 +-2.927111,53.442778 +-3.080125,53.320014 +-2.982506,53.413687 +-3.005235,53.339483 +-2.910117,53.511906 +-2.975173,53.435779 +-2.838963,53.345748 +-3.090744,53.357878 +-3.022823,53.384017 +-2.890708,53.445679 +-2.955542,53.470536 +-2.825618,53.415343 +-2.893116,53.406164 +-2.988291,53.642044 +-2.935072,53.413843 +-2.96284,53.462207 +-3.079981,53.330389 +-2.955824,53.415378 +-3.018435,53.383498 +-3.071237,53.368536 +-2.998111,53.652416 +-2.864148,53.460508 +-2.915959,53.414279 +-2.987542,53.425169 +-3.026646,53.394825 +-3.036902,53.602352 +-2.933205,53.401417 +-2.931999,53.450794 +-2.953502,53.537437 +-2.898402,53.372929 +-2.997349,53.459003 +-3.043228,53.390277 +-2.915423,53.450967 +-2.736948,53.457612 +-2.976702,53.411856 +-2.900734,53.502521 +-2.967792,53.481242 +-2.902102,53.507293 +-2.972599,53.486515 +-2.984869,53.630827 +-3.117994,53.352466 +-2.900828,53.503383 +-3.030783,53.389297 +-2.931693,53.37555 +-3.005551,53.37078 +-3.022477,53.414142 +-3.043439,53.422267 +-3.040287,53.432452 +-2.845827,53.42081 +-2.872695,53.374881 +-2.973972,53.6403 +-2.961879,53.403023 +-2.7915,53.366243 +-3.015537,53.364699 +-3.012934,53.393037 +-2.981089,53.442301 +-2.991548,53.454413 +-2.977224,53.332209 +-2.908235,53.513466 +-2.96835,53.401146 +-2.993605,53.637065 +-2.869537,53.373367 +-3.099138,53.328497 +-2.866078,53.408045 +-3.112045,53.389997 +-2.995977,53.359165 +-2.957241,53.444293 +-3.140918,53.389482 +-2.860165,53.349084 +-2.931123,53.410045 +-2.892017,53.467917 +-2.745368,53.467987 +-3.02697,53.337679 +-2.955562,53.395622 +-2.737442,53.456576 +-2.929283,53.409151 +-2.962397,53.457923 +-2.961716,53.454423 +-2.980968,53.461233 +-2.923843,53.432304 +-2.926486,53.398827 +-2.866735,53.419653 +-2.932701,53.440936 +-2.970788,53.442152 +-3.048705,53.415506 +-2.952065,53.43433 +-3.046464,53.563069 +-2.978465,53.423096 +-2.948361,53.376156 +-3.117367,53.41233 +-3.037985,53.35958 +-2.87851,53.490084 +-3.039688,53.417787 +-2.958969,53.386651 +-2.722484,53.436865 +-2.795812,53.467653 +-3.029979,53.473009 +-2.832676,53.417756 +-2.970321,53.302 +-2.69944,53.443384 +-2.982652,53.341675 +-2.909443,53.432549 +-2.82569,53.356177 +-2.873098,53.429117 +-2.996607,53.420258 +-2.97708,53.409291 +-3.095528,53.354616 +-2.700148,53.435164 +-3.037583,53.310863 +-2.873073,53.417585 +-2.987582,53.409366 +-3.022475,53.370744 +-2.928024,53.423175 +-2.940095,53.413049 +-2.940971,53.439757 +-2.979665,53.427535 +-2.907715,53.419241 +-2.883956,53.480894 +-2.972852,53.404669 +-3.024692,53.396748 +-2.837977,53.410322 +-2.990119,53.399449 +-2.951239,53.494381 +-3.00935,53.458893 +-2.994415,53.405624 +-2.908339,53.414643 +-2.680968,53.498052 +-2.993014,53.439785 +-3.02012,53.39107 +-2.864721,53.382715 +-3.002603,53.350184 +-2.983753,53.447475 +-2.783904,53.421484 +-3.112633,53.403871 +-2.97148,53.438191 +-2.848685,53.395792 +-2.943436,53.411737 +-3.056033,53.426453 +-3.009802,53.458889 +-2.943763,53.511367 +-2.984191,53.644603 +-3.070691,53.371328 +-2.914724,53.388958 +-2.982871,53.631419 +-2.958494,53.423051 +-3.004957,53.631712 +-3.032431,53.37535 +-2.960458,53.394693 +-3.028773,53.36642 +-2.955963,53.467189 +-2.92344,53.440118 +-3.018996,53.391232 +-2.632075,53.451041 +-3.004962,53.341247 +-2.965587,53.412657 +-2.929032,53.452174 +-2.932462,53.394232 +-3.116882,53.379453 +-2.998893,53.464482 +-3.051892,53.381841 +-2.75131,53.405218 +-2.783422,53.416553 +-2.970468,53.40566 +-3.119063,53.352007 +-2.879333,53.415453 +-2.969503,53.408867 +-2.95383,53.393524 +-2.918482,53.434278 +-2.992955,53.458563 +-3.021452,53.404623 +-3.020415,53.388946 +-2.962636,53.4838 +-2.966027,53.463917 +-2.882807,53.377585 +-2.86938,53.373045 +-2.955589,53.390139 +-2.988128,53.441992 +-3.008393,53.50683 +-2.984935,53.446495 +-2.969367,53.503377 +-2.904905,53.378336 +-3.014997,53.374862 +-2.937867,53.438954 +-2.929271,53.452082 +-2.897174,53.396723 +-2.627114,53.461763 +-2.928752,53.410315 +-2.89044,53.401951 +-2.862301,53.393879 +-2.839548,53.345726 +-2.930703,53.406668 +-2.94696,53.451179 +-2.95559,53.411658 +-2.92933,53.451309 +-3.180789,53.390344 +-2.967246,53.44796 +-2.92095,53.389027 +-2.955026,53.38244 +-2.883494,53.407171 +-2.891736,53.434409 +-2.981216,53.4047 +-2.986272,53.400874 +-2.854688,53.408711 +-2.912937,53.463498 +-2.970495,53.424698 +-2.837934,53.411949 +-2.967858,53.411973 +-2.968039,53.442453 +-3.096346,53.327372 +-2.97103,53.387407 +-3.079004,53.394543 +-2.895023,53.461863 +-3.046419,53.56306 +-2.996444,53.444152 +-2.909657,53.432674 +-2.974584,53.468566 +-2.985178,53.458942 +-3.073187,53.374955 +-2.838117,53.412882 +-2.914109,53.389736 +-2.969538,53.397191 +-2.973394,53.392809 +-3.021257,53.630369 +-2.697131,53.453186 +-3.110045,53.392883 +-3.073205,53.405562 +-3.079667,53.338769 +-2.819875,53.428074 +-2.636756,53.461946 +-2.987814,53.401877 +-2.742025,53.454237 +-3.048418,53.419113 +-3.027005,53.412225 +-3.030439,53.415512 +-3.002972,53.349902 +-2.979942,53.402283 +-2.92458,53.390006 +-2.892448,53.410907 +-3.029688,53.324568 +-2.97597,53.338458 +-3.036229,53.42775 +-2.968205,53.445085 +-2.750677,53.458956 +-2.803004,53.431299 +-3.040565,53.484459 +-2.981095,53.645456 +-2.614209,53.453624 +-2.625508,53.439633 +-2.951586,53.494388 +-2.740191,53.451849 +-2.982105,53.423704 +-3.082829,53.420226 +-2.859471,53.422807 +-3.080923,53.388378 +-2.916287,53.435814 +-2.984082,53.40829 +-3.07672,53.373179 +-2.716642,53.434968 +-2.739161,53.469662 +-2.702814,53.430717 +-3.009594,53.459026 +-3.046801,53.373499 +-2.948071,53.42264 +-2.746172,53.457124 +-2.884723,53.484456 +-2.982955,53.338518 +-2.825203,53.410995 +-2.943213,53.388745 +-3.001734,53.450139 +-2.869713,53.490319 +-3.035468,53.602409 +-3.036009,53.385306 +-2.877274,53.464529 +-3.004811,53.499453 +-2.875695,53.422177 +-2.953623,53.49314 +-2.979056,53.403001 +-2.981737,53.627518 +-3.090169,53.369506 +-2.953411,53.493097 +-2.915602,53.398354 +-2.907382,53.364052 +-2.97965,53.427544 +-3.004556,53.447886 +-2.940869,53.378579 +-2.933146,53.401445 +-3.049257,53.408598 +-2.959301,53.463539 +-2.766769,53.454351 +-2.950346,53.404536 +-2.711645,53.456597 +-2.848064,53.420534 +-2.924553,53.426887 +-2.943735,53.421856 +-2.763702,53.407611 +-2.917332,53.41026 +-2.89326,53.476168 +-3.062514,53.556446 +-2.972541,53.435863 +-2.853678,53.365032 +-2.864442,53.358537 +-2.867208,53.438437 +-2.977187,53.446118 +-2.655272,53.45248 +-2.936274,53.434311 +-2.931015,53.445758 +-2.974377,53.386481 +-3.109058,53.339848 +-2.738733,53.454608 +-2.871085,53.420467 +-2.944896,53.407006 +-2.97746,53.447527 +-2.751259,53.442467 +-2.744279,53.452219 +-2.96596,53.447683 +-2.929072,53.395355 +-2.991399,53.454477 +-2.884259,53.424451 +-2.738946,53.455587 +-2.962397,53.457905 +-2.971909,53.37913 +-2.956061,53.397767 +-2.681956,53.413014 +-2.979955,53.387155 +-2.998345,53.469997 +-2.981808,53.640344 +-2.887061,53.351539 +-2.871835,53.428416 +-2.761253,53.443959 +-2.847802,53.423268 +-2.726647,53.427626 +-2.965087,53.662538 +-2.964327,53.45202 +-2.982508,53.411799 +-2.94751,53.49886 +-2.856394,53.386532 +-2.915808,53.414262 +-2.932276,53.508104 +-2.916172,53.414385 +-2.78652,53.422195 +-3.030869,53.415859 +-2.991595,53.448642 +-3.040467,53.487238 +-2.984735,53.331698 +-3.177341,53.392364 +-2.934844,53.424704 +-2.81097,53.382472 +-2.91447,53.466165 +-2.911823,53.388342 +-2.841547,53.466171 +-2.983251,53.408135 +-2.955414,53.414563 +-2.998708,53.464322 +-2.856995,53.470295 +-3.081696,53.383885 +-2.823825,53.342797 +-3.144339,53.396497 +-2.94102,53.398399 +-2.968591,53.462718 +-2.859589,53.343596 +-2.945485,53.383397 +-2.930307,53.369898 +-2.86446,53.39504 +-2.986181,53.630672 +-2.946522,53.426059 +-3.088804,53.369024 +-3.035979,53.479942 +-3.031344,53.395702 +-2.886123,53.50246 +-3.089278,53.4141 +-2.828143,53.354057 +-2.88342,53.365112 +-2.743342,53.45289 +-2.890589,53.362983 +-2.93202,53.46896 +-2.921325,53.376449 +-2.925573,53.399724 +-2.748317,53.4284 +-2.801799,53.416835 +-2.995258,53.468126 +-2.982613,53.426154 +-2.95341,53.49307 +-2.984935,53.631069 +-2.937496,53.436476 +-2.896116,53.475877 +-2.858302,53.340136 +-2.928027,53.374248 +-3.046173,53.421443 +-2.95665,53.407281 +-2.921965,53.426943 +-3.055542,53.392038 +-2.951867,53.494152 +-3.038699,53.48212 +-2.932507,53.440974 +-3.018129,53.484023 +-2.801637,53.357834 +-2.994334,53.460215 +-3.019149,53.61819 +-2.874752,53.459074 +-2.636422,53.451737 +-3.053188,53.366162 +-2.976081,53.394602 +-2.931349,53.38047 +-2.876386,53.480644 +-2.931916,53.468997 +-3.045082,53.536393 +-2.94937,53.394458 +-2.884126,53.362914 +-2.719533,53.470635 +-2.895644,53.417687 +-2.972445,53.436278 +-2.944533,53.438165 +-2.979675,53.659238 +-2.960464,53.491018 +-2.961663,53.446774 +-3.020714,53.636702 +-2.966253,53.444661 +-3.025985,53.471704 +-2.906886,53.435445 +-3.019951,53.647063 +-3.056042,53.369723 +-2.977732,53.410868 +-2.792001,53.376226 +-2.97833,53.405452 +-2.797866,53.395648 +-3.100864,53.327294 +-2.968367,53.487304 +-2.885172,53.414062 +-2.975062,53.405281 +-3.088725,53.371236 +-3.14767,53.361021 +-2.917649,53.440352 +-2.956897,53.426327 +-2.897472,53.397287 +-2.921375,53.429554 +-2.988382,53.642052 +-2.885101,53.483033 +-2.970436,53.647718 +-3.027312,53.384374 +-2.739208,53.454192 +-3.088576,53.37068 +-2.80861,53.398344 +-2.915116,53.456992 +-2.828583,53.362764 +-2.929081,53.373656 +-3.116789,53.352936 +-2.98974,53.409663 +-2.955851,53.396456 +-3.031888,53.416318 +-2.802797,53.412343 +-3.025266,53.374324 +-2.945262,53.514339 +-2.975346,53.388118 +-2.813619,53.399191 +-2.889814,53.363285 +-2.874878,53.430048 +-2.849601,53.418392 +-2.986256,53.40082 +-2.795661,53.467627 +-3.049902,53.399342 +-2.935563,53.450604 +-2.904059,53.407925 +-3.026519,53.361441 +-2.856204,53.359082 +-2.965508,53.38525 +-2.748492,53.433181 +-2.924269,53.431824 +-3.095157,53.34893 +-2.931638,53.399892 +-2.931055,53.425524 +-2.909327,53.432739 +-2.957526,53.434897 +-2.753919,53.435358 +-3.025674,53.475033 +-2.917786,53.409699 +-2.943534,53.448105 +-2.974328,53.43175 +-2.737442,53.456567 +-2.976764,53.403415 +-2.752273,53.40869 +-2.992764,53.452947 +-2.916025,53.415249 +-2.901693,53.487341 +-2.980977,53.404783 +-2.97171,53.415268 +-2.794957,53.429987 +-2.634918,53.471025 +-2.929869,53.441534 +-2.989535,53.40215 +-2.924501,53.434879 +-2.747104,53.450179 +-2.949303,53.492078 +-2.908637,53.414524 +-3.08918,53.366675 +-2.975309,53.435769 +-2.810668,53.399004 +-3.032477,53.395287 +-2.943679,53.40369 +-2.72746,53.473446 +-2.935211,53.468809 +-2.962585,53.387656 +-2.967471,53.418754 +-2.802601,53.412291 +-2.889121,53.419453 +-3.060512,53.419573 +-2.925376,53.390629 +-2.938971,53.519018 +-2.858822,53.392133 +-2.983867,53.396363 +-2.893502,53.390854 +-3.029138,53.384682 +-2.889321,53.419685 +NULL,NULL +-2.985786,53.402622 +-3.109123,53.340072 +-3.024925,53.631974 +-3.020383,53.409603 +-2.947981,53.458488 +-3.021804,53.473897 +-2.967777,53.430922 +-3.076557,53.421532 +-3.060143,53.425904 +-2.969774,53.647858 +-2.961955,53.403059 +-2.82653,53.427444 +-2.904655,53.41406 +-2.878477,53.341059 +-2.943974,53.506628 +-2.941145,53.389058 +-2.910901,53.415549 +-3.009718,53.489623 +-2.924027,53.431799 +-2.97369,53.328688 +-2.977728,53.436891 +-2.746636,53.450955 +-2.953381,53.493115 +-3.073777,53.317114 +-2.978916,53.425708 +-2.873934,53.408248 +-3.087263,53.385237 +-3.08871,53.419526 +-2.864751,53.476854 +-3.036415,53.385303 +-2.988393,53.443068 +-2.993661,53.466836 +-2.8445,53.360639 +-2.963537,53.437743 +-2.98312,53.404405 +-2.786627,53.422275 +-2.981945,53.397799 +-3.037964,53.409407 +-2.980658,53.331372 +-3.035125,53.413296 +-2.845357,53.479016 +-2.865703,53.425135 +-2.925172,53.436006 +-2.808019,53.399733 +-2.933093,53.436115 +-2.911717,53.38828 +-2.922981,53.418962 +-2.950413,53.398738 +-2.972683,53.434838 +-2.967435,53.395976 +-2.977022,53.31355 +-2.959436,53.392023 +-2.885103,53.480256 +-2.900301,53.461437 +-2.750841,53.458856 +-2.982083,53.424702 +-2.914442,53.399657 +-3.002904,53.649697 +-2.958291,53.411358 +-2.996752,53.447053 +-2.866449,53.373785 +-3.144893,53.37063 +-2.877085,53.464126 +-2.981638,53.436724 +-2.986417,53.401942 +-2.864346,53.421325 +-2.742945,53.450888 +-2.851165,53.36034 +-2.805427,53.429683 +-2.876782,53.420146 +-2.977404,53.405064 +-2.899448,53.39471 +-2.982441,53.410847 +-2.972463,53.316329 +-2.92904,53.369009 +-2.98198,53.415004 +-2.94661,53.44489 +-2.896618,53.357391 +-2.637091,53.475274 +-3.024292,53.494604 +-3.050014,53.439909 +-3.047404,53.430511 +-2.978659,53.424362 +-2.876914,53.466051 +-2.948365,53.408795 +-2.97288,53.429622 +-2.768772,53.452648 +-3.079363,53.403979 +-2.950216,53.414218 +-3.087485,53.366798 +-2.933676,53.392703 +-2.810174,53.400734 +-3.066718,53.566333 +-2.678042,53.49228 +-2.982317,53.404151 +-2.887946,53.490095 +-2.709014,53.40989 +-2.979081,53.498318 +-2.949989,53.389195 +-3.025071,53.396852 +-2.868169,53.414735 +-2.926288,53.421552 +-2.967456,53.391571 +-2.641226,53.478695 +-2.866294,53.379449 +-2.954022,53.424956 +-2.978396,53.630826 +-2.94664,53.521366 +-2.954912,53.413623 +-2.952449,53.417841 +-2.979222,53.427908 +-2.746389,53.404233 +-2.855953,53.359317 +-2.615649,53.456385 +-3.008544,53.659088 +-2.901561,53.424258 +-3.001793,53.364968 +-3.112002,53.39007 +-2.981691,53.403779 +-3.013644,53.613697 +-2.903734,53.499703 +-2.854381,53.425666 +-2.940245,53.41712 +-2.913598,53.365892 +-3.004977,53.341274 +-3.184465,53.385696 +-3.048581,53.544264 +-3.061065,53.552855 +-2.976014,53.490173 +-3.012614,53.633166 +-2.959228,53.42087 +-2.956782,53.443964 +-3.0149,53.39604 +-2.973538,53.40772 +-2.988144,53.42583 +-2.79641,53.426363 +-2.705842,53.500775 +-2.91451,53.3902 +-2.855503,53.378116 +-2.856902,53.354196 +-2.95829,53.391906 +-2.989436,53.420551 +-3.032293,53.49139 +-2.944156,53.39672 +-2.92971,53.466632 +-2.966429,53.40598 +-3.151595,53.396751 +-2.931339,53.428911 +-2.892589,53.352954 +-2.949731,53.398509 +-3.060353,53.332093 +-2.91917,53.469635 +-2.815215,53.428394 +-2.991825,53.361564 +-2.979846,53.403354 +-2.904246,53.452904 +-2.990135,53.352175 +-2.929984,53.390242 +-2.953277,53.493179 +-3.03372,53.488087 +-2.954336,53.408711 +-2.949187,53.393021 +-2.949706,53.396721 +-2.993287,53.65509 +-2.813899,53.383935 +-2.98572,53.400438 +-2.971171,53.399568 +-2.865529,53.421019 +-2.882508,53.380589 +-2.664745,53.488247 +-2.912129,53.515046 +-2.930547,53.390579 +-3.000484,53.65103 +-2.961603,53.544042 +-3.006295,53.649795 +-2.982451,53.407386 +-3.038354,53.417394 +-3.032562,53.397552 +-3.038037,53.417343 +-3.017473,53.611984 +-3.006957,53.456441 +-2.949625,53.398501 +-2.724596,53.433589 +-2.89694,53.470658 +-2.939104,53.409048 +-3.037184,53.379813 +-2.653471,53.472516 +-2.972004,53.403768 +-2.915041,53.456992 +-3.038231,53.398114 +-2.725517,53.466446 +-2.98327,53.393986 +-2.914435,53.422489 +-2.991066,53.403279 +-3.037804,53.384913 +-2.989079,53.412959 +-2.783773,53.502644 +-2.983403,53.429734 +-2.743587,53.452304 +-2.907665,53.431754 +-2.960796,53.672163 +-3.03976,53.59812 +-3.021212,53.388948 +-2.925513,53.399715 +-2.970297,53.384285 +-2.99255,53.654619 +-2.926754,53.389683 +-2.965532,53.426806 +-2.985666,53.402623 +-3.02247,53.493452 +-2.83288,53.405108 +-2.979657,53.405567 +-2.746897,53.455519 +-2.949521,53.399248 +-2.762009,53.43324 +-2.635913,53.451937 +-2.825026,53.355211 +-2.886586,53.380047 +-2.750589,53.452278 +-2.923606,53.390157 +-2.919776,53.434987 +-2.713849,53.43627 +-2.719387,53.472722 +-2.984176,53.396729 +-2.933615,53.468884 +-2.961625,53.483044 +-2.957545,53.408254 +-2.788448,53.41981 +-2.953289,53.373339 +-3.038999,53.591745 +-2.98296,53.490071 +-2.71361,53.450734 +-2.955358,53.419409 +-3.018237,53.392183 +-2.90551,53.41533 +-2.909013,53.483582 +-3.043283,53.554054 +-2.786521,53.422213 +-2.984084,53.474807 +-2.992076,53.457006 +-2.702831,53.453665 +-2.978077,53.405544 +-2.788388,53.419864 +-2.972172,53.436855 +-2.859514,53.343633 +-2.885724,53.406624 +-2.931884,53.500538 +-2.979726,53.394204 +-2.794697,53.420901 +-3.033468,53.600341 +-2.989001,53.412824 +-2.896613,53.39723 +-2.973734,53.43011 +-3.084175,53.374936 +-2.725068,53.455995 +-2.953433,53.673921 +-3.10963,53.401211 +-2.957405,53.423482 +-3.033586,53.424897 +-2.967164,53.447673 +-2.938746,53.413302 +-2.901788,53.407951 +-2.91743,53.414798 +-2.961351,53.410938 +-2.939208,53.395321 +-2.775518,53.455939 +-2.959798,53.475562 +-2.964539,53.482652 +-2.974279,53.401296 +-2.993989,53.485413 +-2.876916,53.4201 +-2.956739,53.370992 +-2.612747,53.451501 +-3.063665,53.566818 +-2.903575,53.377285 +-2.877153,53.464467 +-2.913468,53.373174 +-2.910462,53.408398 +-2.991846,53.403839 +-3.033968,53.599771 +-2.986129,53.473361 +-2.970599,53.443133 +-2.821209,53.355984 +-3.010215,53.651766 +-2.839969,53.356437 +-3.067314,53.370306 +-3.035071,53.423463 +-2.873467,53.479371 +-2.939075,53.413201 +-3.022878,53.619866 +-3.050178,53.544771 +-2.884296,53.470446 +-3.177779,53.393493 +-3.152204,53.404835 +-2.890849,53.49269 +-2.968801,53.38792 +-2.8851,53.472876 +-2.976864,53.4327 +-2.970904,53.405665 +-2.966696,53.410454 +-2.995249,53.483866 +-2.988108,53.400265 +-2.942297,53.44798 +-2.992712,53.458448 +-2.957912,53.400502 +-2.992885,53.410365 +-2.895437,53.402812 +-2.974985,53.656022 +-3.028837,53.369682 +-2.975222,53.489163 +-2.929886,53.455421 +-2.887355,53.398944 +-2.927672,53.389739 +-2.993007,53.436225 +-2.951222,53.398623 +-3.007248,53.646002 +-2.945765,53.398712 +-3.039876,53.408212 +-2.974351,53.401169 +-2.869348,53.476884 +-2.902809,53.391503 +-3.088674,53.419292 +-2.980159,53.401248 +-2.880139,53.430441 +-2.935094,53.429933 +-2.765137,53.424698 +-2.711848,53.418349 +-3.029415,53.416078 +-2.868148,53.475715 +-3.019577,53.390374 +-2.96323,53.435498 +-2.928335,53.425707 +-2.758921,53.439848 +-2.825877,53.406963 +-2.803083,53.480979 +-2.974168,53.342428 +-3.049814,53.37074 +-3.056338,53.401137 +-2.948352,53.404129 +-2.981224,53.405023 +-2.897542,53.396324 +-3.067392,53.551153 +-2.832762,53.341252 +-2.927565,53.451197 +-3.005077,53.351889 +-2.902637,53.51119 +-2.683579,53.445723 +-2.908809,53.387987 +-2.994958,53.412155 +-3.08871,53.419544 +-2.803885,53.399814 +-3.057205,53.38512 +-2.968591,53.397863 +-2.901723,53.408437 +-3.055718,53.550862 +-2.826912,53.426228 +-2.967688,53.481305 +-3.003764,53.460882 +-2.968067,53.41981 +-2.986546,53.400997 +-3.014089,53.390393 +-3.001187,53.653864 +-2.804186,53.425367 +-2.987263,53.34295 +-2.976157,53.462252 +-2.917122,53.426351 +-2.768936,53.465914 +-3.013204,53.383524 +-2.730448,53.441311 +-2.795559,53.467834 +-3.048098,53.415907 +-2.978919,53.425834 +-2.868463,53.423218 +-2.864649,53.46517 +-2.981966,53.67645 +-2.927463,53.469274 +-3.032231,53.390067 +-3.055829,53.554726 +-2.96026,53.667224 +-3.037644,53.430875 +-2.984323,53.431758 +-2.800516,53.507891 +-2.985303,53.465647 +-3.124825,53.377392 +-2.771144,53.463895 +-2.919837,53.385521 +-3.052669,53.410896 +-3.00162,53.449151 +-2.787012,53.463432 +-3.070919,53.391794 +-2.874898,53.387018 +-3.01563,53.641635 +-2.897042,53.353271 +-2.962195,53.456963 +-2.9314,53.396559 +-3.02587,53.375065 +-2.968567,53.387526 +-2.981995,53.443714 +-2.966535,53.449135 +-2.873043,53.388955 +-3.031354,53.375566 +-2.757897,53.462686 +-3.109669,53.392878 +-3.012847,53.621461 +-2.976215,53.399132 +-3.061848,53.375335 +-2.92805,53.425763 +-2.984784,53.45624 +-2.879825,53.438551 +-2.949404,53.485776 +-2.960461,53.394828 +-2.948489,53.379211 +-2.944563,53.425265 +-3.17099,53.371896 +-2.998106,53.47266 +-3.0691,53.399621 +-3.089298,53.378359 +-2.93266,53.441791 +-2.987085,53.406746 +-2.81972,53.427851 +-2.985035,53.404605 +-2.911717,53.38828 +-3.027597,53.381244 +-2.922873,53.440338 +-2.771778,53.457321 +-3.001367,53.650636 +-2.993757,53.452893 +-3.00095,53.349514 +-2.993946,53.362274 +-2.949727,53.397664 +-3.015613,53.364726 +-2.98331,53.40808 +-2.922873,53.440338 +-2.962761,53.410774 +-3.019809,53.47049 +-3.031634,53.419493 +-2.808598,53.39696 +-2.720139,53.428169 +-2.820231,53.355874 +-2.969181,53.433086 +-2.866609,53.374971 +-2.816962,53.355438 +-3.027443,53.378593 +-2.96575,53.450373 +-3.1128,53.401047 +-2.950689,53.372695 +-3.000482,53.641987 +-3.016372,53.463472 +-2.863195,53.383085 +-2.925584,53.389836 +-2.914739,53.466783 +-2.78263,53.401268 +-2.990918,53.639244 +-2.933435,53.389901 +-2.627038,53.461755 +-2.981189,53.444035 +-2.812933,53.405003 +-2.97842,53.43231 +-2.617855,53.456904 +-3.032199,53.52722 +-2.835883,53.408673 +-2.898546,53.365449 +-3.071703,53.381692 +-2.938784,53.418408 +-3.006476,53.647869 +-2.747415,53.455876 +-3.031106,53.354121 +-2.758492,53.452947 +-3.069485,53.414962 +-2.979147,53.441643 +-2.876327,53.424365 +-2.910805,53.38781 +-2.982455,53.306332 +-3.032564,53.387691 +-2.983576,53.409858 +-2.830455,53.408774 +-2.969676,53.313277 +-3.002924,53.356815 +-2.746355,53.402309 +-3.047936,53.384222 +-2.738863,53.451641 +-2.967824,53.481313 +-3.038239,53.422555 +-2.868236,53.361835 +-2.823938,53.388406 +-2.935724,53.397595 +-2.995749,53.477533 +-3.033111,53.412118 +-2.982657,53.426091 +-2.931409,53.414214 +-3.002349,53.450044 +-2.981844,53.335929 +-3.15733,53.401945 +-3.028365,53.374415 +-2.984878,53.38742 +-2.922308,53.453898 +-2.897193,53.406188 +-3.082445,53.326285 +-2.667495,53.475261 +-3.09875,53.404476 +-3.03841,53.517152 +-3.023338,53.481273 +-2.979056,53.447523 +-2.876929,53.419983 +-2.865722,53.349754 +-3.005028,53.352393 +-2.901593,53.44851 +-2.999622,53.450615 +-2.869961,53.470803 +-2.942337,53.387907 +-2.838012,53.346285 +-3.169974,53.360588 +-2.997439,53.458993 +-3.023864,53.486231 +-2.88622,53.387771 +-3.059736,53.38534 +-2.948711,53.404055 +-2.986279,53.425899 +-2.960559,53.427196 +-2.728937,53.411064 +-2.922119,53.381189 +-2.960632,53.666942 +-2.910294,53.397711 +-3.098922,53.383728 +-2.927311,53.40843 +-2.921958,53.475276 +-3.010703,53.646225 +-2.976015,53.410783 +-2.932591,53.44207 +-2.924608,53.420406 +-2.739129,53.452251 +-3.01484,53.387214 +-2.898852,53.445609 +-2.871905,53.411265 +-2.954645,53.428556 +-2.869552,53.373358 +-2.977486,53.409288 +-2.974733,53.409301 +-2.919938,53.406923 +-2.946384,53.500406 +-3.003731,53.357293 +-2.911962,53.439119 +-2.975473,53.456064 +-2.977147,53.33212 +-2.669712,53.472507 +-2.866394,53.391808 +-2.877622,53.47552 +-2.822326,53.410844 +-2.955618,53.47058 +-2.997092,53.50394 +-2.975852,53.440412 +-2.990646,53.451895 +-2.768595,53.442051 +-2.867889,53.475564 +-2.950187,53.445976 +-2.945445,53.515821 +-2.921195,53.405906 +-3.027636,53.345404 +-2.983628,53.446613 +-2.98582,53.434667 +-2.950601,53.445613 +-2.954517,53.392619 +-2.892484,53.383895 +-3.153914,53.35518 +-3.093321,53.389892 +-3.061629,53.556697 +-2.928821,53.400382 +-2.831213,53.418342 +-2.97849,53.422907 +-2.725052,53.429443 +-2.997038,53.63709 +-2.961304,53.410866 +-2.838417,53.360781 +-2.825047,53.363301 +-2.665072,53.464803 +-2.733402,53.41439 +-2.985667,53.459918 +-2.980423,53.404886 +-2.936615,53.389561 +-2.939096,53.425731 +-2.941553,53.395958 +-2.956038,53.443673 +-3.05279,53.440172 +-2.984312,53.644575 +-2.988389,53.448695 +-2.865265,53.358342 +-2.681397,53.475929 +-2.933963,53.372836 +-2.929815,53.425264 +-3.074049,53.4056 +-2.943995,53.408443 +-2.975213,53.332945 +-2.983376,53.460512 +-2.96927,53.37677 +-3.038523,53.375549 +-3.000773,53.365076 +-2.993765,53.640021 +-2.94896,53.37741 +-3.035453,53.390273 +-2.914172,53.413709 +-2.951424,53.492537 +-2.982714,53.481399 +-2.905511,53.399815 +-3.00469,53.341213 +-3.021725,53.391524 +-2.93305,53.436916 +-3.088619,53.358823 +-3.017913,53.349614 +-2.63961,53.454434 +-3.179253,53.373378 +-2.892434,53.439671 +-3.07577,53.371282 +-2.913973,53.421971 +-2.941265,53.422433 +-2.99689,53.366115 +-3.022749,53.610159 +-2.852242,53.433798 +-2.732194,53.447422 +-2.855946,53.394185 +-2.809063,53.400813 +-2.884106,53.484488 +-2.912604,53.481703 +-2.826578,53.368639 +-3.030426,53.390065 +-2.971063,53.395461 +-3.014877,53.36982 +-2.948033,53.472987 +-3.025943,53.36808 +-2.914746,53.43765 +-3.035198,53.4169 +-3.094607,53.347388 +-2.921051,53.438231 +-2.960697,53.313799 +-2.944136,53.510528 +-2.968641,53.387499 +-3.099017,53.381003 +-3.001327,53.415589 +-2.925698,53.512083 +-3.047191,53.436562 +-2.94423,53.506599 +-2.965229,53.451303 +-3.086639,53.397926 +-2.97644,53.401062 +-3.094637,53.347406 +-2.995996,53.407661 +-2.878705,53.462308 +-2.91501,53.388983 +-2.938072,53.440759 +-3.017904,53.375089 +-2.881991,53.437717 +-2.976391,53.399598 +-3.115748,53.3401 +-2.898519,53.44981 +-2.99146,53.454477 +-2.709388,53.427829 +-2.973345,53.430859 +-2.76673,53.417893 +-2.791795,53.444462 +-2.976272,53.429226 +-3.09112,53.324957 +-2.81631,53.350408 +-2.909533,53.388099 +-2.910447,53.458367 +-2.80861,53.398344 +-2.984872,53.407978 +-2.881455,53.416229 +-3.024923,53.490761 +-2.983131,53.403587 +-2.985775,53.434685 +-2.932745,53.436747 +-2.962272,53.440414 +-3.12297,53.344006 +-2.62889,53.445386 +-3.048815,53.377778 +-2.967754,53.382868 +-2.982066,53.416145 +-2.885783,53.436233 +-2.903783,53.413365 +-2.874296,53.45887 +-3.05334,53.529894 +-3.00109,53.468868 +-2.68323,53.432404 +-2.967217,53.400949 +-2.882024,53.481474 +-2.986848,53.437436 +-2.960919,53.395777 +-2.942671,53.408444 +-2.944863,53.429946 +-2.914456,53.409419 +-2.987388,53.429566 +-3.088185,53.397193 +-2.887759,53.484029 +-2.986013,53.459888 +-3.088089,53.417014 +-2.998014,53.430844 +-2.954303,53.405251 +-2.742607,53.453946 +-2.976311,53.6466 +-3.083614,53.380092 +-2.906999,53.411777 +-2.941608,53.412749 +-3.048352,53.349737 +-2.931268,53.440813 +-2.872689,53.426037 +-2.872694,53.477669 +-2.951167,53.49387 +-2.932687,53.440954 +-2.845387,53.400894 +-2.914738,53.388949 +-2.984814,53.396346 +-3.026253,53.409121 +-2.92118,53.405915 +-2.936988,53.433927 +-2.891097,53.440544 +-2.875335,53.469838 +-2.984887,53.405371 +-2.726033,53.482515 +-2.843039,53.403832 +-2.820328,53.396143 +-3.186537,53.391006 +-2.703143,53.436064 +-2.953308,53.493196 +-2.946055,53.38199 +-2.981885,53.397818 +-2.832015,53.345311 +-3.098948,53.380653 +-3.007055,53.312815 +-2.992549,53.404336 +-2.969359,53.415125 +-2.817965,53.428159 +-2.677892,53.412911 +-2.973827,53.407835 +-3.016179,53.611006 +-2.873146,53.485036 +-2.862455,53.422309 +-2.98562,53.409104 +-3.010433,53.370622 +-2.954557,53.424665 +-3.005063,53.467433 +-2.876766,53.420146 +-2.760369,53.445052 +-2.867776,53.361425 +-2.923048,53.406764 +-2.740675,53.423378 +-2.976969,53.464196 +-2.97255,53.306305 +-3.031451,53.526237 +-3.073514,53.413632 +-3.023788,53.397942 +-3.002613,53.634284 +-2.759446,53.439737 +-3.01548,53.371154 +-2.92743,53.428384 +-2.909748,53.440475 +-2.875531,53.422259 +-2.966029,53.662045 +-3.118183,53.41075 +-2.917136,53.426306 +-2.644227,53.459003 +-2.928713,53.445839 +-3.045788,53.554607 +-2.929293,53.414455 +-2.747633,53.450274 +-2.767431,53.469313 +-2.778805,53.419945 +-2.869292,53.435114 +-2.995683,53.64183 +-2.982466,53.413885 +-2.967615,53.440335 +-3.04277,53.431819 +-2.961702,53.455142 +-2.976316,53.400263 +-2.985794,53.340508 +-3.027852,53.396199 +-2.939957,53.440879 +-2.632955,53.45047 +-3.041834,53.428618 +-2.942094,53.376196 +-3.099576,53.379937 +-3.006968,53.64694 +-2.727616,53.412133 +-2.736716,53.472023 +-3.005979,53.463479 +-2.929043,53.405045 +-2.934841,53.486951 +-2.650075,53.456319 +-3.057771,53.553927 +-2.981351,53.404025 +-2.877818,53.41862 +-3.060387,53.401847 +-2.772209,53.484392 +-3.096532,53.384936 +-2.990047,53.448771 +-2.948561,53.408128 +-2.98185,53.413935 +-2.712121,53.436478 +-2.98747,53.449979 +-2.865597,53.373989 +-2.929988,53.369747 +-3.028261,53.639154 +-2.912801,53.412937 +-2.742938,53.454762 +-2.936203,53.394104 +-3.040838,53.418047 +-2.974374,53.468613 +-2.948959,53.400996 +-2.84956,53.348378 +-2.951243,53.49253 +-3.180325,53.373566 +-2.941186,53.468555 +-2.976477,53.403363 +-2.978974,53.430867 +-2.964747,53.313659 +-3.044049,53.381452 +-2.895141,53.48392 +-3.015762,53.642092 +-2.949773,53.4281 +-2.891907,53.39438 +-2.78024,53.430138 +-2.727143,53.442572 +-2.883448,53.362829 +-2.740669,53.450767 +-3.029283,53.391297 +NULL,NULL +-2.981885,53.397809 +-2.966696,53.410454 +-3.093694,53.388018 +-2.964982,53.411834 +-2.904898,53.415541 +-2.986355,53.446078 +-2.786279,53.419743 +-2.993998,53.405196 +-2.795796,53.467644 +-3.098606,53.405906 +-3.0062,53.32431 +-3.083563,53.386969 +-2.915886,53.363277 +-2.921492,53.429419 +-2.951288,53.49252 +-2.983992,53.448705 +-2.966721,53.39564 +-2.996895,53.475007 +-2.985662,53.661615 +-2.972208,53.439084 +-3.026514,53.385586 +-3.032805,53.385226 +-3.005496,53.466638 +-2.961082,53.37831 +-2.875476,53.426169 +-3.057828,53.386005 +-2.783688,53.42856 +-2.949173,53.393058 +-2.982466,53.413885 +-2.727652,53.466173 +-3.022574,53.484597 +-2.886133,53.379942 +-3.014835,53.383205 +-2.723825,53.442214 +-2.86102,53.422059 +-3.037225,53.399417 +-2.772631,53.439607 +-2.937344,53.393304 +-3.094224,53.379375 +-2.989556,53.407588 +-2.864821,53.37279 +-2.959273,53.42291 +-3.002263,53.459834 +-2.890006,53.494197 +-2.947251,53.457496 +-2.741477,53.45131 +-3.056884,53.606716 +-3.076517,53.408031 +-3.027412,53.388544 +-2.712257,53.414904 +-2.68325,53.426166 +-3.113544,53.400752 +-3.065181,53.370352 +-2.850215,53.339034 +-2.975633,53.40524 +-2.715847,53.472716 +-2.878813,53.407763 +-2.855269,53.42263 +-2.740332,53.459956 +-3.122353,53.397128 +-3.020185,53.409506 +-2.948185,53.404068 +-2.864222,53.460454 +-3.095046,53.37037 +-2.935944,53.450089 +-2.742694,53.465837 +-2.961601,53.388661 +-2.99207,53.658659 +-3.184232,53.372988 +-2.836087,53.423665 +-3.002339,53.456031 +-2.905129,53.370442 +-2.973751,53.432168 +-3.041762,53.602094 +-2.836798,53.358707 +-2.998715,53.496052 +-3.102883,53.379943 +-2.973497,53.43093 +-2.960904,53.431823 +-2.800297,53.412971 +-2.840911,53.416449 +-2.815245,53.428367 +-2.768787,53.452657 +-2.713384,53.447185 +-3.04225,53.419176 +-2.825979,53.427763 +-2.955496,53.470518 +-2.981383,53.466146 +-2.773499,53.46913 +-2.950351,53.514649 +-2.96047,53.475296 +-2.929533,53.424781 +-3.031233,53.361248 +-2.699645,53.436642 +-2.945207,53.408172 +-2.956122,53.397793 +-3.051056,53.617914 +-2.988571,53.443597 +-3.058792,53.372144 +-2.915335,53.395003 +-2.793281,53.433728 +-2.913079,53.421699 +-2.885889,53.43625 +-2.65181,53.485046 +-2.850081,53.424339 +-2.805244,53.392956 +-2.878112,53.431391 +-3.099017,53.381003 +-2.961417,53.38851 +-2.998517,53.42728 +-3.074951,53.405016 +-2.978134,53.405435 +-2.876457,53.408005 +-2.824052,53.421493 +-3.007607,53.647105 +-2.772353,53.484858 +-3.030565,53.476051 +-2.937845,53.413381 +-3.05631,53.414558 +-3.108511,53.383019 +-2.704636,53.453502 +-2.849301,53.48483 +-3.03007,53.635211 +-3.029139,53.384718 +-2.737457,53.456576 +-2.697135,53.432288 +-2.959034,53.303871 +-2.855847,53.420721 +-2.973751,53.432168 +-2.906229,53.452673 +-2.71678,53.419048 +-2.784938,53.360785 +-3.089258,53.369137 +-3.034836,53.389622 +-3.027508,53.419349 +-2.978857,53.434302 +-2.846116,53.420952 +-2.932849,53.436665 +-2.921372,53.456539 +-2.915924,53.470019 +-3.099017,53.381003 +-2.829682,53.338118 +-2.849515,53.348361 +-2.960372,53.422263 +-2.983413,53.409284 +-2.951176,53.426912 +-2.639641,53.452447 +-3.078726,53.369907 +-2.853704,53.347522 +-2.982156,53.435677 +-2.983856,53.427842 +-2.941133,53.398056 +-2.78934,53.360747 +-2.82321,53.428573 +-2.872873,53.390925 +-3.021377,53.404624 +-2.937498,53.446157 +-2.906883,53.459337 +-3.038832,53.371555 +-2.971075,53.390688 +-2.94696,53.676849 +-2.954299,53.411768 +-2.914207,53.400629 +-2.951605,53.483125 +-2.983969,53.394915 +-2.935846,53.426485 +-2.988429,53.627876 +-2.821222,53.398824 +-2.935166,53.515389 +-2.936104,53.409467 +-2.878138,53.385943 +-3.058054,53.433887 +-2.917337,53.426574 +-3.043486,53.409439 +-2.967841,53.411856 +-2.730769,53.461722 +-2.960469,53.475242 +-2.915541,53.397635 +-2.955175,53.407248 +-3.114117,53.381223 +-2.988571,53.443597 +-2.720606,53.453092 +-3.030317,53.415423 +-2.724906,53.427889 +-2.981186,53.426255 +-2.953469,53.493015 +-2.885602,53.43618 +-2.924116,53.426873 +-3.116045,53.37964 +-2.631361,53.449606 +-2.897647,53.40276 +-2.947759,53.421447 +-2.935589,53.394208 +-2.895982,53.47595 +-2.79215,53.439264 +-2.961889,53.410799 +-2.900226,53.393841 +-2.982729,53.641586 +-2.957406,53.488435 +-2.978253,53.642953 +-2.874015,53.349074 +-2.983031,53.405773 +-2.949771,53.397619 +-2.942435,53.448123 +-2.97226,53.669114 +-2.969531,53.448445 +-3.183061,53.375732 +-2.860565,53.414431 +-2.975169,53.436255 +-2.948531,53.50341 +-3.12103,53.389131 +-2.653289,53.472409 +-3.012744,53.348956 +-2.914738,53.388949 +-3.026107,53.491757 +-3.04117,53.602009 +-2.858481,53.340054 +-2.918084,53.431881 +-2.878539,53.462327 +-2.920731,53.376795 +-2.944686,53.38396 +-2.948246,53.404094 +-2.948435,53.40856 +-3.002714,53.467479 +-2.90976,53.369157 +-3.107036,53.416588 +-3.100245,53.321322 +-2.74424,53.402619 +-2.999523,53.416287 +-3.024551,53.397756 +-2.909776,53.369175 +-2.968371,53.403411 +-2.908488,53.39199 +-2.827597,53.425837 +-2.958722,53.425135 +-2.722276,53.44412 +-2.914322,53.400404 +-2.930422,53.400702 +-2.958884,53.386876 +-2.982886,53.409288 +-2.790597,53.422914 +-2.954408,53.407254 +-2.852255,53.37129 +-2.944837,53.440329 +-2.905686,53.408757 +-3.098318,53.380722 +-2.930415,53.46721 +-3.024237,53.373425 +-3.028467,53.493337 +-3.007425,53.629309 +-2.933176,53.436492 +-2.9764,53.399984 +-2.961714,53.46103 +-2.949818,53.428073 +-3.027396,53.3885 +-2.918967,53.434463 +-2.97321,53.40188 +-2.886643,53.379902 +-3.0327,53.393937 +-2.947995,53.675789 +-3.025718,53.395615 +-3.016231,53.464489 +-3.184298,53.392143 +-2.981224,53.651693 +-2.794453,53.428785 +-2.969638,53.633351 +-2.8005,53.507855 +-2.981184,53.411792 +-2.875367,53.408417 +-2.997375,53.355962 +-2.805533,53.516423 +-3.016149,53.634898 +-3.073604,53.427977 +-3.093901,53.34388 +-3.012352,53.646849 +-2.725218,53.465702 +-2.932837,53.436818 +-3.006877,53.646931 +-2.8738,53.371583 +-2.768479,53.452308 +-2.956814,53.443406 +-2.986855,53.448807 +-3.037028,53.412336 +-2.853142,53.456965 +-2.924093,53.432032 +-2.953411,53.493079 +-3.071653,53.404857 +-3.085443,53.378709 +-3.090581,53.35797 +-2.708663,53.458422 +-2.78845,53.384969 +-2.677492,53.472913 +-2.997858,53.469803 +-2.896468,53.406049 +-3.068147,53.553538 +-2.928091,53.389637 +-2.969025,53.422256 +-2.876834,53.464344 +-2.942506,53.412535 +-3.048325,53.543062 +-2.884246,53.387552 +-2.730242,53.441591 +-2.89172,53.434355 +-2.653035,53.478451 +-3.091238,53.357235 +-2.913368,53.413427 +-2.991752,53.322822 +-3.143454,53.391534 +-2.949188,53.393057 +-2.855177,53.450308 +-2.908414,53.420269 +-3.024678,53.431814 +-2.804427,53.467586 +-3.039788,53.484736 +-3.060894,53.414374 +-2.896393,53.462581 +-2.745949,53.464199 +-3.166172,53.376536 +-2.864467,53.41469 +-3.02218,53.493292 +-2.705115,53.453337 +-2.877453,53.464447 +-2.724801,53.488059 +-2.649062,53.456046 +-2.956007,53.467116 +-2.926409,53.421569 +-2.704953,53.453581 +-2.950792,53.42722 +-2.854904,53.359441 +-2.989144,53.463062 +-2.891238,53.353009 +-2.972597,53.435701 +-2.944259,53.412225 +-2.898566,53.499814 +-2.799142,53.386714 +-3.067318,53.330197 +-3.070758,53.431481 +-2.714714,53.456444 +-2.734531,53.446697 +-2.85033,53.386288 +-2.93201,53.391467 +-2.949591,53.389522 +-2.795448,53.428851 +-2.989171,53.405245 +-2.903634,53.377213 +-2.983092,53.40517 +-2.704137,53.503455 +-2.839617,53.340817 +-3.010466,53.377732 +-3.033929,53.378259 +-3.06865,53.429064 +-2.97168,53.325468 +-2.930665,53.529564 +-3.00436,53.501434 +-2.966562,53.390644 +-2.98271,53.408822 +-2.868331,53.426329 +-2.974602,53.642039 +-2.974586,53.426543 +-3.044797,53.397868 +-2.969777,53.405692 +-2.725645,53.452765 +-2.943996,53.383355 +-2.9605,53.475305 +-2.99101,53.453258 +-3.111391,53.343512 +-2.920276,53.454606 +-2.995382,53.352321 +-3.009824,53.64554 +-2.980381,53.476276 +-2.993506,53.412454 +-3.00566,53.324323 +-2.936218,53.394104 +-2.966409,53.432318 +-2.873528,53.458867 +-2.965717,53.452216 +-2.962914,53.406206 +-2.797355,53.456748 +-2.943405,53.412402 +-3.007376,53.372922 +-3.010875,53.362033 +-2.756314,53.464251 +-2.938758,53.399477 +-2.856682,53.358961 +-2.839733,53.359711 +-2.912769,53.449369 +-2.765809,53.428622 +-2.995886,53.410682 +-2.789471,53.360504 +-3.060208,53.371062 +-3.068044,53.428297 +-2.876191,53.421454 +-2.934301,53.373166 +-3.09519,53.349055 +-2.938375,53.397799 +-2.914527,53.389625 +-3.025867,53.417457 +-2.885084,53.351104 +-2.950851,53.427166 +-2.724923,53.48814 +-3.019841,53.3341 +-2.884068,53.479032 +-2.944416,53.39145 +-2.97606,53.400922 +-3.04204,53.421668 +-2.893333,53.402181 +-2.692428,53.451038 +-2.903496,53.35582 +-2.970312,53.384267 +-2.935113,53.373851 +-3.052029,53.372788 +-2.854854,53.416206 +-3.044784,53.373409 +-3.074297,53.411872 +-3.111471,53.401419 +-2.948185,53.404077 +-3.023492,53.480184 +-2.979852,53.323046 +-2.813752,53.383307 +-3.045105,53.554487 +-3.09519,53.349055 +-2.953214,53.493053 +-2.915818,53.469993 +-2.917532,53.409746 +-2.865836,53.359839 +-2.995856,53.482755 +-2.957278,53.391015 +-2.919098,53.372151 +-2.996414,53.439028 +-2.987379,53.408397 +-2.946984,53.521894 +-2.977509,53.404407 +-2.860959,53.420522 +-3.023655,53.518233 +-2.778793,53.434956 +-2.961695,53.406189 +-2.810403,53.397757 +-2.967687,53.430914 +-2.972093,53.447247 +-2.877041,53.480954 +-3.004369,53.648993 +-2.983016,53.409701 +-3.02636,53.474757 +-2.858331,53.340046 +-2.635952,53.473662 +-2.854781,53.414104 +-2.974447,53.653051 +-2.955491,53.390445 +-3.075619,53.557111 +-2.857253,53.355182 +-3.005336,53.642576 +-2.685605,53.412606 +-3.012522,53.644484 +-2.941201,53.468573 +-3.03117,53.487965 +-3.019509,53.382491 +-2.971391,53.39865 +-2.898829,53.518661 +-2.774378,53.418131 +-2.725857,53.472206 +-3.007173,53.368159 +-3.013294,53.644504 +-2.881437,53.477847 +-2.909749,53.440502 +-3.022885,53.390372 +-2.883383,53.48452 +-2.95344,53.493042 +-2.949276,53.398342 +-3.024808,53.62215 +-2.932909,53.40986 +-2.952063,53.384405 +-3.015671,53.333048 +-3.028013,53.625224 +-2.865709,53.349889 +-2.973887,53.409146 +-2.842038,53.344782 +-3.043445,53.422501 +-2.973035,53.405432 +-2.948626,53.459031 +-2.949377,53.423133 +-2.953242,53.492954 +-2.723229,53.407117 +-2.939638,53.448954 +-2.961051,53.402994 +-2.639974,53.453596 +-3.036069,53.496651 +-3.025301,53.631872 +-3.052606,53.410788 +-2.969403,53.440842 +-2.623134,53.458431 +-3.081341,53.370494 +-3.026206,53.360284 +-2.946912,53.39757 +-2.751095,53.452805 +-2.941729,53.403921 +-2.987525,53.645511 +-2.99546,53.427216 +-3.078428,53.369982 +-2.89606,53.397378 +-2.712199,53.468136 +-3.012473,53.375521 +-2.726221,53.48557 +-3.031083,53.415992 +-2.972932,53.640453 +-3.037147,53.518575 +-3.06167,53.387517 +-3.048174,53.438576 +-2.981485,53.430747 +-2.997406,53.446679 +-2.937326,53.393888 +-2.914792,53.467826 +-2.967587,53.396029 +-2.895579,53.476843 +-2.977907,53.409302 +-3.032748,53.4164 +-2.999045,53.41257 +-2.902853,53.391484 +-2.723406,53.426424 +-2.938244,53.374762 +-2.974642,53.431657 +-3.130258,53.350382 +-3.00675,53.629512 +-3.153296,53.370675 +-2.974887,53.489013 +-2.722209,53.443698 +-2.931938,53.468646 +-2.994459,53.458452 +-2.886291,53.351383 +-3.020076,53.397435 +-3.047853,53.419415 +-3.006142,53.474812 +-3.03213,53.52687 +-3.005573,53.449478 +-2.874153,53.381514 +-3.011029,53.377421 +-2.932746,53.440927 +-2.911342,53.368606 +-2.941051,53.398434 +-2.978388,53.405343 +-2.968567,53.387526 +-2.89392,53.389286 +-3.035873,53.401362 +-2.95506,53.426926 +-2.914156,53.413691 +-2.915463,53.419209 +-2.923459,53.419489 +-2.931444,53.529279 +-2.756,53.439804 +-2.963866,53.315859 +-2.949878,53.395012 +-2.953471,53.493087 +-3.027605,53.639555 +-2.604856,53.45564 +-2.630629,53.448936 +-3.025941,53.63894 +-3.030056,53.361672 +-3.000165,53.440435 +-2.957344,53.670151 +-2.73732,53.454716 +-2.632947,53.453984 +-2.897462,53.406114 +-3.179318,53.379005 +-3.039305,53.488398 +-2.914749,53.391538 +-3.122324,53.397173 +-2.96787,53.411811 +-2.828933,53.397836 +-2.912364,53.405156 +-2.927141,53.410292 +-2.819668,53.396237 +-2.989299,53.421146 +-2.818946,53.396188 +-2.731963,53.453221 +-3.050922,53.436476 +-3.051557,53.383525 +-2.70462,53.453484 +-2.985761,53.434694 +-2.928852,53.400427 +-2.881012,53.41954 +-2.795487,53.428563 +-3.065194,53.332949 +-2.961851,53.454422 +-2.967856,53.411865 +-2.940109,53.413013 +-2.89215,53.357856 +-2.877792,53.435609 +-3.020474,53.414681 +-2.970278,53.633571 +-3.054625,53.389026 +-2.907575,53.385102 +-3.036705,53.425678 +-3.026397,53.49127 +-3.006889,53.643623 +-2.962119,53.456299 +-2.893994,53.389241 +-2.978338,53.416265 +-3.083856,53.387245 +-3.088428,53.418512 +-2.953666,53.442631 +-2.918027,53.466273 +-2.799297,53.429472 +-2.990734,53.446599 +-2.849515,53.348361 +-2.949591,53.389522 +-2.901289,53.38648 +-2.912851,53.386482 +-3.042842,53.383727 +-2.979061,53.42808 +-2.949816,53.397628 +-2.973901,53.407771 +-2.943005,53.454788 +-2.997679,53.652707 +-2.97203,53.37984 +-2.943185,53.388844 +-2.944654,53.512798 +-2.833707,53.386621 +-3.064955,53.423344 +-2.986001,53.402161 +-2.693222,53.465578 +-3.065255,53.423917 +-2.907046,53.365879 +-2.972712,53.403808 +-2.977185,53.432257 +-2.948352,53.404129 +-2.925644,53.421027 +-2.718832,53.462145 +-3.056417,53.419483 +-2.716941,53.456305 +-2.995993,53.407535 +-2.872797,53.4372 +-3.18515,53.374102 +-2.946029,53.40929 +-2.937109,53.393575 +-3.099017,53.328471 +-3.149024,53.38171 +-2.888076,53.4184 +-2.935369,53.389652 +-2.872816,53.371995 +-3.026363,53.3612 +-2.913784,53.465074 +-2.882502,53.471826 +-2.788641,53.390442 +-3.004701,53.645116 +-3.032128,53.526762 +-3.03107,53.32461 +-2.868539,53.460881 +-2.863836,53.465176 +-2.80574,53.393716 +-2.858245,53.485953 +-2.977599,53.405044 +-2.914738,53.388949 +-3.09448,53.386393 +-2.869292,53.435114 +-2.920518,53.366899 +-2.896937,53.397605 +-2.936505,53.423576 +-2.626485,53.461011 +-3.030251,53.390282 +-3.06201,53.555597 +-2.983113,53.485602 +-2.974763,53.395503 +-2.996329,53.416116 +-3.118711,53.37869 +-2.801316,53.407993 +-2.92335,53.415157 +-2.855529,53.449074 +-2.982331,53.404142 +-2.915987,53.470153 +-2.966497,53.385781 +-3.064858,53.426087 +-2.961148,53.427281 +-2.930043,53.390188 +-2.949008,53.459262 +-2.910196,53.440319 +-2.920009,53.447866 +-2.882683,53.416678 +-2.919843,53.437387 +-2.972178,53.441709 +-3.132276,53.349428 +-3.04599,53.417085 +-3.098417,53.412003 +-2.987453,53.348575 +-2.997885,53.460679 +-2.895073,53.362509 +-2.944527,53.389022 +-2.895247,53.461789 +-2.904852,53.430391 +-3.116777,53.411077 +-2.706651,53.452438 +-2.862569,53.449481 +-2.983992,53.408317 +-2.929016,53.465909 +-2.905429,53.487268 +-2.959548,53.46316 +-2.929385,53.414535 +-2.972502,53.439414 +-2.991369,53.463511 +-2.98615,53.400156 +-2.709694,53.45073 +-3.185105,53.374103 +-2.974175,53.330886 +-2.978764,53.400774 +-2.935113,53.373851 +-2.89419,53.495316 +-2.730216,53.441825 +-2.971774,53.409496 +-2.995562,53.407089 +-3.068283,53.553555 +-2.929426,53.378453 +-3.014863,53.385632 +-2.980456,53.447502 +-2.997666,53.469958 +-3.030426,53.390047 +-2.744113,53.457379 +-2.773617,53.388626 +-2.904219,53.384283 +-3.040577,53.419685 +-3.077101,53.553071 +-2.94971,53.467086 +-2.93044,53.505511 +-3.048098,53.415907 +-2.711271,53.409004 +-2.961536,53.429822 +-3.113912,53.406196 +-2.948518,53.407535 +-2.97063,53.401532 +-2.987526,53.400477 +-2.976545,53.411552 +-3.062923,53.3968 +-2.996391,53.48178 +-2.979279,53.395682 +-3.040348,53.384432 +-2.970785,53.383895 +-2.708269,53.459161 +-2.940183,53.422504 +-2.732021,53.451324 +-2.938379,53.374752 +-2.980373,53.476564 +-2.951919,53.430528 +-2.767492,53.469348 +-2.953264,53.492585 +-2.952242,53.426103 +-2.761325,53.461504 +-2.880525,53.403238 +-2.914806,53.437632 +-2.914023,53.457279 +-2.90704,53.384711 +-2.983516,53.409858 +-2.856236,53.378686 +-2.925762,53.35991 +-2.909605,53.442211 +NULL,NULL +-2.898862,53.372638 +-2.977036,53.43891 +-2.963034,53.664766 +-2.945074,53.414376 +-2.949515,53.389495 +-2.921019,53.406123 +-2.856363,53.429184 +-2.956365,53.41603 +-2.750458,53.454203 +-3.002464,53.457486 +-2.935965,53.435985 +-2.956381,53.416075 +-2.888076,53.4184 +-3.01219,53.468748 +-3.009566,53.639817 +-3.033552,53.379431 +-2.961094,53.304735 +-2.953276,53.493116 +-3.03557,53.390137 +-2.9903,53.45899 +-2.778016,53.434404 +-2.789325,53.426572 +-2.93596,53.45016 +-2.91868,53.364612 +-2.848679,53.411361 +-2.921057,53.405826 +-2.707364,53.395652 +-2.94461,53.396824 +-2.981204,53.401563 +-2.975473,53.458725 +-3.028401,53.382765 +-2.94537,53.377528 +-3.076632,53.549462 +-3.015422,53.378813 +-3.003587,53.651085 +-2.891862,53.414551 +-2.935582,53.402127 +-2.90752,53.455306 +-2.994597,53.405695 +-3.04117,53.602009 +-2.9361,53.450366 +-3.11075,53.388194 +-3.029454,53.483684 +-3.073161,53.405608 +-3.09519,53.349055 +-2.926408,53.429138 +-2.915924,53.470019 +-2.954022,53.424956 +-3.001797,53.647064 +-2.971153,53.39547 +-2.900072,53.406463 +-2.917517,53.409755 +-2.928854,53.426072 +-2.881436,53.415303 +-2.937521,53.375388 +-3.111986,53.402151 +-2.961352,53.396987 +-2.975988,53.401057 +-2.92367,53.399352 +-3.023478,53.391922 +-2.957314,53.670133 +-2.999646,53.66229 +-2.920475,53.376779 +-2.984096,53.407597 +-3.008356,53.488151 +-2.841001,53.416422 +-2.998875,53.652086 +-2.732179,53.447422 +-2.94912,53.485877 +-2.701075,53.464067 +-2.971263,53.43857 +-2.949276,53.398342 +-2.949106,53.404231 +-2.921932,53.398961 +-3.077791,53.369763 +-2.952713,53.441785 +-2.997735,53.348256 +-2.885085,53.391042 +-2.905991,53.461286 +-2.983001,53.40971 +-3.050716,53.419551 +-2.897145,53.433955 +-2.988617,53.407965 +-2.988617,53.407965 +-2.757689,53.462849 +-3.156658,53.402104 +-3.026145,53.361498 +-2.770572,53.417364 +-3.065319,53.564745 +-2.936446,53.465375 +-2.978491,53.422952 +-2.937768,53.409193 +-2.874494,53.348998 +-2.815155,53.428394 +-2.97644,53.433234 +-2.827736,53.425998 +-3.181454,53.394805 +-2.949925,53.422778 +-2.896811,53.405921 +-2.730475,53.453374 +-2.96596,53.447683 +-2.857111,53.391561 +-2.683235,53.426157 +-3.177064,53.392655 +-2.908234,53.514114 +-3.036745,53.480465 +-3.007235,53.464978 +-3.067271,53.402856 +-3.051504,53.5684 +-2.799223,53.423936 +-2.862485,53.421581 +-2.960069,53.445501 +-2.944828,53.413434 +-2.708909,53.428911 +-2.948575,53.408083 +-2.903516,53.377358 +-2.895944,53.396876 +-2.984514,53.446534 +-3.037575,53.398965 +-3.012812,53.62441 +-2.97061,53.425128 +-3.144563,53.370651 +-3.104748,53.355574 +-2.801171,53.509055 +-2.887237,53.406316 +-3.071702,53.381674 +-2.83366,53.427296 +-3.018567,53.40792 +-3.036685,53.487891 +-2.915132,53.398195 +-2.940488,53.439725 +-2.787567,53.468229 +-2.920467,53.361066 +-2.70816,53.49784 +-2.948552,53.67023 +-2.974736,53.43705 +-2.802695,53.43087 +-3.023344,53.481516 +-2.964172,53.39531 +-3.087202,53.385183 +-3.016016,53.388597 +-3.013895,53.340488 +-2.982402,53.407207 +-3.005133,53.648654 +-3.002357,53.650277 +-2.710226,53.460031 +-2.909871,53.440609 +-2.993551,53.412454 +-2.944584,53.403809 +-2.932701,53.440927 +-2.946532,53.50027 +-2.715708,53.408052 +-3.02225,53.40529 +-2.976317,53.430529 +-2.980111,53.461294 +-2.902899,53.391529 +-2.988671,53.407686 +-3.000573,53.455219 +-2.971221,53.402399 +-2.799816,53.412992 +-3.032837,53.389019 +-2.979725,53.394132 +-2.956797,53.443964 +-2.927125,53.442724 +-2.742943,53.45505 +-2.21414,53.357575 +-2.164193,53.399335 +-2.089064,53.367514 +-2.207873,53.357434 +-2.043551,53.375342 +-2.163568,53.350294 +-2.307251,53.357866 +-2.604578,53.51031 +-2.394669,53.54973 +-2.152433,53.488013 +-2.237244,53.553894 +-2.029086,53.454796 +-2.124023,53.538776 +-2.454099,53.581607 +-2.082571,53.498679 +-2.088107,53.616575 +-2.116438,53.436505 +-2.602226,53.542159 +-2.49578,53.524231 +-2.303317,53.554635 +-2.040955,53.473344 +-2.176908,53.498747 +-2.265752,53.52659 +-2.117097,53.489725 +-2.434903,53.525816 +-2.258004,53.463104 +-2.253416,53.486817 +-2.468883,53.549893 +-2.295267,53.471575 +-2.596293,53.539897 +-2.499301,53.490096 +-2.487148,53.523862 +-2.220889,53.47418 +-2.170643,53.616468 +-1.980463,53.579377 +-2.599503,53.521445 +-2.215669,53.523168 +-2.45223,53.580545 +-2.047668,53.480739 +-2.289127,53.516901 +-2.303584,53.594039 +-2.310864,53.575243 +-2.33097,53.517817 +-2.094053,53.449171 +-2.231782,53.485288 +-2.168865,53.462544 +-2.21561,53.485003 +-2.27338,53.59137 +-2.418938,53.578671 +-2.236221,53.470538 +-2.471743,53.539761 +-2.337644,53.515066 +-2.206241,53.492004 +-2.265164,53.476014 +-2.131768,53.613092 +-2.382612,53.583395 +-2.672886,53.595893 +-2.074807,53.455773 +-2.225337,53.463602 +-2.674657,53.541044 +-2.187056,53.420685 +-2.312213,53.467244 +-2.498374,53.492032 +-2.518958,53.497787 +-2.1674,53.358171 +-2.200594,53.391063 +-2.247114,53.527763 +-2.184214,53.48022 +-2.149315,53.608299 +-2.658702,53.550445 +-2.3899,53.539948 +-2.336972,53.460795 +-2.097448,53.544248 +-2.296556,53.44475 +-2.194798,53.458541 +-2.200779,53.532326 +-2.052635,53.512709 +-2.34032,53.512218 +-2.304889,53.466841 +-2.151082,53.531815 +-2.197921,53.462976 +-2.214737,53.434373 +-2.23585,53.48243 +-2.114277,53.500226 +-2.082206,53.489736 +-2.283361,53.592893 +-2.179121,53.408688 +-2.334511,53.440919 +-2.123752,53.56504 +-2.314924,53.387868 +-2.153027,53.523103 +-2.296837,53.590694 +-2.25227,53.481498 +-2.288678,53.457434 +-2.335272,53.512609 +-2.287613,53.527169 +-2.289381,53.538643 +-2.293971,53.54771 +-2.196852,53.554066 +-2.191383,53.445882 +-2.291349,53.456151 +-2.131024,53.52419 +-2.225775,53.38994 +-2.212401,53.533385 +-2.604261,53.543102 +-2.261581,53.456858 +-2.518,53.582372 +-2.501371,53.521214 +-2.391009,53.545625 +-2.40143,53.457198 +-2.452991,53.596577 +-2.54967,53.571598 +-2.135936,53.607128 +-2.209574,53.367129 +-2.372274,53.565513 +-2.607911,53.477637 +-2.652364,53.5152 +-2.548177,53.572908 +-2.609765,53.54488 +-2.237205,53.474131 +-2.153967,53.433055 +-2.520768,53.504035 +-2.390157,53.448022 +-2.550492,53.572052 +-2.186255,53.550452 +-2.242614,53.511126 +-2.267624,53.495765 +-2.103145,53.541097 +-2.291828,53.622246 +-2.229248,53.373098 +-2.103206,53.566139 +-2.523537,53.559859 +-2.282798,53.479164 +-2.0972,53.488628 +-2.227416,53.531173 +-2.219865,53.448026 +-2.363697,53.479188 +-2.284142,53.466101 +-2.343355,53.5034 +-2.320873,53.520882 +-2.442393,53.572879 +-2.447957,53.577766 +-2.311015,53.505295 +-2.186082,53.483444 +-2.446004,53.564452 +-2.239247,53.443386 +-2.493329,53.594917 +-2.462455,53.568039 +-2.163573,53.410293 +-2.351579,53.484231 +-2.499444,53.490742 +-2.319473,53.645311 +-2.308144,53.485618 +-2.391195,53.467587 +-2.349068,53.470171 +-2.138194,53.544342 +-2.193317,53.507009 +-2.096888,53.444216 +-2.237441,53.524502 +-2.274005,53.449819 +-2.625465,53.494077 +-2.116614,53.527728 +-2.180307,53.386925 +-2.154489,53.427455 +-2.145208,53.600592 +-2.133867,53.402213 +-2.211657,53.45382 +-2.184214,53.497487 +-2.238243,53.567869 +-2.250517,53.493429 +-2.400459,53.531572 +-2.272879,53.586365 +-2.165242,53.522314 +-2.263923,53.397475 +-2.560735,53.59639 +-2.257422,53.471339 +-2.43178,53.622048 +-2.660475,53.502455 +-2.245091,53.436022 +-2.135518,53.632206 +-2.289941,53.393163 +-2.228995,53.365233 +-2.225814,53.47685 +-2.107051,53.456378 +-2.256806,53.546402 +-2.30465,53.448163 +-2.08393,53.477429 +-2.227406,53.484262 +-2.352724,53.48421 +-2.339489,53.506333 +-2.063305,53.48821 +-2.2831,53.440873 +-2.149301,53.41574 +-2.385172,53.58087 +-2.64523,53.528047 +-2.17545,53.525175 +-2.242838,53.468592 +-2.378801,53.486584 +-2.219372,53.410886 +-2.240837,53.474304 +-2.062382,53.48626 +-2.39911,53.476351 +-2.300524,53.452407 +-2.143019,53.543132 +-2.229635,53.433797 +-2.393233,53.586893 +-2.365875,53.522146 +-2.157296,53.628674 +-2.408003,53.594294 +-2.656237,53.521902 +-2.280299,53.488581 +-2.207342,53.461261 +-2.065512,53.473432 +-2.16326,53.505113 +-2.192537,53.404955 +-2.22058,53.408799 +-2.379929,53.491371 +-2.266251,53.529286 +-2.556498,53.493555 +-2.245336,53.468057 +-2.176725,53.613942 +-2.180047,53.503084 +-2.657709,53.499072 +-2.364304,53.444535 +-2.526901,53.547539 +-2.103053,53.490798 +-2.307134,53.446071 +-2.529043,53.587331 +-2.088087,53.549226 +-2.199385,53.546988 +-2.380788,53.486299 +-2.282819,53.51395 +-2.260298,53.520409 +-2.344211,53.504782 +-2.314154,53.556611 +-2.173865,53.458654 +-2.093166,53.477297 +-2.172889,53.404005 +-2.623627,53.548566 +-2.18413,53.502592 +-2.228234,53.456127 +-2.194493,53.474092 +-2.426784,53.583901 +-2.283369,53.530828 +-2.254515,53.476477 +-2.316489,53.398075 +-2.501281,53.48802 +-2.109624,53.449733 +-2.141859,53.512223 +-2.163902,53.620531 +-2.127271,53.384396 +-2.169162,53.472953 +-2.18163,53.43254 +-2.28729,53.419281 +-2.358944,53.489081 +-2.216685,53.415026 +-2.20572,53.44371 +-2.37157,53.476629 +-2.290495,53.408163 +-2.088838,53.540075 +-2.100743,53.565422 +-2.494838,53.495157 +-2.203083,53.383095 +-2.229945,53.474541 +-2.212777,53.593102 +-2.143275,53.520661 +-2.68926,53.572394 +-2.292356,53.584998 +-2.149831,53.416791 +-2.126531,53.514649 +-2.150379,53.618445 +-2.096439,53.584633 +-2.348854,53.462478 +-2.257947,53.483346 +-2.225955,53.438118 +-2.24643,53.52949 +-2.224641,53.454471 +-2.147662,53.611051 +-2.133888,53.633466 +-2.404615,53.469016 +-2.09429,53.481098 +-2.420676,53.548374 +-2.204433,53.432737 +-2.199714,53.360378 +-2.267962,53.458552 +-2.351245,53.385421 +-2.291958,53.590796 +-2.495705,53.524249 +-2.463558,53.557096 +-2.136287,53.556749 +-2.161521,53.377038 +-2.227408,53.467822 +-2.264712,53.475934 +-2.156635,53.609692 +-2.24102,53.46945 +-2.104036,53.535245 +-2.527034,53.547314 +-2.254614,53.472873 +-2.282779,53.453592 +-2.062957,53.487725 +-2.27588,53.385951 +-2.14201,53.611112 +-2.453305,53.583615 +-2.130975,53.439968 +-2.118114,53.42187 +-2.43524,53.621873 +-2.143871,53.549549 +-2.105071,53.641908 +-2.278459,53.481529 +-2.307029,53.446018 +-2.199672,53.54706 +-2.253832,53.473162 +-2.220443,53.472509 +-2.282575,53.592814 +-2.34082,53.613758 +-2.111201,53.500184 +-2.099483,53.491835 +-2.100746,53.490441 +-2.160977,53.408076 +-2.223945,53.453744 +-2.376016,53.483554 +-2.113682,53.480766 +-2.194569,53.474289 +-2.236598,53.475993 +-2.025512,53.521697 +-2.040394,53.485784 +-2.157544,53.403137 +-2.186004,53.396831 +-2.307852,53.391239 +-2.274357,53.597561 +-2.279163,53.490004 +-2.184499,53.393058 +-2.389858,53.586247 +-2.379714,53.47237 +-2.257885,53.426018 +-2.12046,53.554303 +-2.315802,53.445393 +-2.482788,53.571536 +-2.462948,53.566221 +-2.177975,53.591317 +-2.455081,53.514083 +-2.228761,53.433583 +-2.383864,53.531546 +-2.328814,53.488763 +-2.336835,53.515706 +-2.191941,53.559405 +-2.25094,53.475838 +-2.107998,53.467721 +-2.268757,53.39848 +-2.240366,53.4923 +-2.212308,53.593049 +-2.093663,53.477251 +-2.212214,53.562247 +-2.19551,53.557583 +-2.242863,53.462408 +-2.20377,53.44196 +-2.453884,53.561519 +-2.118204,53.422004 +-2.232441,53.454195 +-2.383124,53.382626 +-2.620536,53.543575 +-2.238012,53.475631 +-2.112656,53.565474 +-2.350045,53.469917 +-2.238029,53.478669 +-2.32396,53.375844 +-2.257686,53.408041 +-2.076668,53.452428 +-2.181087,53.474859 +-2.268058,53.406841 +-2.141124,53.508925 +-2.326391,53.424475 +-2.262339,53.406485 +-2.097052,53.54263 +-2.157208,53.422049 +-2.428139,53.577515 +-2.141767,53.601765 +-2.082368,53.487408 +-2.338565,53.513364 +-2.336804,53.515688 +-2.270432,53.472802 +-2.124101,53.560339 +-2.276024,53.454624 +-2.284584,53.532102 +-2.128685,53.54376 +-2.548579,53.511793 +-2.297918,53.482291 +-2.276592,53.384458 +-2.248616,53.467465 +-2.094745,53.482356 +-2.138142,53.556045 +-2.336982,53.570382 +-2.160653,53.429847 +-2.243444,53.513946 +-2.231621,53.439141 +-2.079554,53.465774 +-2.239299,53.46344 +-2.251256,53.475738 +-2.221139,53.397796 +-2.448697,53.499312 +-2.120221,53.549656 +-2.15858,53.616466 +-2.089788,53.489892 +-2.216571,53.466458 +-2.120282,53.549863 +-2.235065,53.46041 +-2.583288,53.598143 +-2.164338,53.390247 +-2.127189,53.42257 +-2.157605,53.456232 +-2.389829,53.468095 +-2.340151,53.46466 +-2.137874,53.538788 +-2.263258,53.552617 +-2.20496,53.595022 +-2.225612,53.543643 +-2.172544,53.40406 +-2.263542,53.484116 +-2.001079,53.568529 +-2.384626,53.580647 +-2.271211,53.516943 +-2.210435,53.47766 +-2.195404,53.482279 +-2.306295,53.482108 +-2.112692,53.45426 +-2.070652,53.456971 +-2.384413,53.497199 +-2.33442,53.632184 +-2.298316,53.583949 +-2.469248,53.49419 +-2.414522,53.50241 +-2.58932,53.566879 +-2.645691,53.558354 +-2.181087,53.474895 +-2.161438,53.51778 +-2.500217,53.492375 +-2.354578,53.446308 +-2.15437,53.419608 +-2.210738,53.593241 +-2.623804,53.547235 +-2.289958,53.600985 +-2.22002,53.408116 +-2.358739,53.5879 +-2.653214,53.540049 +-2.068858,53.455885 +-2.231464,53.443636 +-2.363788,53.479251 +-2.434441,53.580845 +-2.174752,53.473088 +-2.359376,53.509879 +-2.303324,53.452256 +-2.347091,53.390377 +-2.112782,53.471015 +-2.313844,53.508524 +-2.216778,53.592601 +-2.23438,53.519079 +-2.217113,53.596142 +-2.266207,53.469297 +-2.27429,53.53369 +-2.289896,53.60076 +-2.423628,53.505498 +-2.099333,53.395622 +-2.43572,53.526047 +-2.325705,53.417331 +-2.18028,53.451436 +-2.28356,53.480412 +-2.264573,53.378552 +-2.106883,53.509329 +-2.258191,53.407042 +-2.235409,53.59306 +-2.623744,53.546255 +-2.172488,53.638801 +-2.57107,53.467482 +-2.310956,53.385883 +-2.253194,53.401444 +-2.153939,53.620526 +-2.362216,53.489197 +-2.139985,53.629648 +-2.131653,53.430529 +-2.3951,53.591102 +-2.211537,53.453856 +-2.569815,53.589588 +-2.17979,53.445927 +-2.186165,53.550452 +-2.135167,53.456502 +-2.288963,53.596825 +-2.138541,53.60433 +-2.467294,53.51391 +-2.149037,53.409152 +-2.524902,53.506695 +-2.239434,53.447341 +-2.188641,53.418408 +-2.21337,53.435013 +-2.203462,53.45938 +-2.422104,53.579648 +-2.254213,53.405846 +-2.13784,53.388923 +-2.362527,53.534542 +-2.040141,53.393284 +-2.117482,53.525516 +-2.352091,53.515096 +-2.022565,53.455049 +-2.175319,53.537346 +-2.117575,53.450292 +-2.427785,53.546928 +-2.430791,53.579914 +-2.430687,53.6083 +-2.188661,53.602661 +-2.29601,53.46582 +-2.259841,53.443298 +-2.298824,53.583139 +-2.026329,53.454248 +-2.222962,53.470231 +-2.205249,53.533065 +-2.22537,53.398785 +-2.186857,53.556842 +-2.095765,53.486975 +-2.169355,53.615696 +-2.400327,53.547976 +-2.008621,53.532935 +-2.209932,53.509983 +-2.410204,53.564167 +-2.444433,53.568674 +-2.253461,53.486789 +-2.254368,53.487147 +-2.382254,53.542049 +-2.210544,53.454056 +-2.159304,53.587936 +-2.351398,53.564336 +-2.125556,53.475631 +-2.27466,53.380957 +-2.272969,53.590895 +-2.658396,53.546312 +-2.128647,53.456644 +-2.711454,53.580183 +-2.331323,53.420129 +-2.26396,53.548859 +-2.215936,53.466145 +-2.124444,53.522992 +-2.325425,53.481159 +-2.476297,53.528678 +-2.115706,53.482445 +-2.07887,53.381094 +-2.147397,53.517483 +-2.213285,53.586046 +-2.257599,53.37633 +-2.300842,53.420686 +-2.308997,53.509741 +-2.08683,53.539699 +-2.154187,53.622126 +-2.411761,53.620267 +-2.252558,53.428564 +-2.134076,53.520941 +-2.099419,53.567184 +-2.089546,53.596512 +-2.089375,53.48014 +-2.315409,53.43103 +-2.092766,53.493872 +-2.336629,53.440266 +-2.396658,53.518749 +-2.194182,53.551186 +-2.356314,53.455849 +-2.338345,53.487676 +-2.132934,53.536717 +-2.216948,53.466646 +-2.216589,53.372384 +-2.134804,53.541254 +-2.06309,53.485667 +-2.510118,53.547441 +-2.207945,53.581381 +-2.453529,53.542429 +-2.266974,53.406726 +-2.254358,53.402493 +-2.168645,53.414618 +-2.452418,53.596696 +-2.572966,53.536586 +-2.230023,53.452645 +-2.160614,53.419411 +-2.459582,53.569039 +-2.28666,53.540151 +-2.295669,53.475322 +-2.2193,53.440746 +-2.193113,53.439012 +-2.242582,53.500214 +-2.080886,53.453378 +-2.287016,53.590484 +-2.670342,53.530615 +-2.167517,53.605821 +-2.084216,53.454437 +-2.191872,53.444227 +-2.317775,53.409182 +-2.245227,53.417793 +-2.270021,53.476821 +-2.096926,53.401817 +-2.239882,53.473362 +-2.295639,53.475304 +-2.297286,53.553436 +-2.450774,53.558718 +-2.267758,53.40463 +-2.253856,53.452021 +-2.165093,53.445454 +-2.192801,53.549381 +-2.236783,53.425477 +-2.228166,53.46028 +-2.184413,53.435763 +-2.282955,53.554792 +-2.415492,53.549183 +-2.150817,53.414795 +-2.412643,53.58831 +-2.217284,53.479221 +-2.172326,53.602668 +-2.13528,53.397187 +-2.037323,53.489588 +-2.159474,53.472741 +-2.401135,53.580673 +-2.120836,53.421453 +-2.07785,53.497622 +-2.088425,53.660131 +-2.198496,53.457088 +-2.241808,53.462212 +-2.635248,53.549538 +-2.244778,53.481082 +-2.353678,53.564285 +-2.278543,53.478275 +-2.646746,53.485991 +-2.084617,53.473995 +-2.258919,53.489654 +-2.216279,53.627971 +-2.11895,53.543303 +-2.430054,53.577166 +-2.296702,53.554112 +-2.146218,53.560548 +-2.526528,53.56123 +-2.389893,53.534259 +-2.148849,53.415687 +-2.500764,53.48511 +-2.226695,53.393291 +-2.197376,53.543369 +-2.429036,53.567687 +-2.296018,53.555597 +-2.452811,53.586835 +-2.499242,53.491561 +-2.184777,53.436463 +-2.14795,53.408183 +-2.20406,53.493059 +-2.349819,53.38751 +-2.383728,53.494846 +-2.423445,53.530935 +-2.099725,53.492041 +-2.181366,53.462544 +-2.124477,53.529176 +-2.073025,53.479567 +-2.335577,53.482506 +-2.257262,53.524578 +-2.090646,53.46849 +-2.091353,53.453694 +-2.117512,53.52539 +-2.253055,53.481784 +-2.230894,53.463268 +-2.594125,53.543449 +-2.301338,53.588373 +-2.239767,53.508911 +-2.31701,53.647682 +-2.140615,53.373388 +-2.058313,53.485768 +-2.120102,53.566123 +-2.263324,53.475685 +-2.206776,53.53379 +-2.13761,53.420186 +-2.147553,53.618772 +-2.089576,53.546582 +-2.105511,53.503407 +-2.478013,53.591294 +-2.283657,53.531133 +-2.411338,53.410244 +-2.245225,53.435752 +-2.22979,53.476366 +-2.474923,53.562273 +-2.410977,53.597196 +-2.435564,53.572517 +-2.318485,53.648748 +-2.244301,53.387638 +-2.643189,53.541685 +-2.412199,53.55972 +-2.204629,53.442076 +-2.337522,53.446655 +-2.523968,53.505558 +-2.622295,53.549283 +-2.342129,53.429761 +-2.173775,53.499237 +-2.206686,53.515256 +-2.187652,53.439847 +-2.156569,53.620352 +-2.330139,53.391566 +-2.292022,53.400591 +-2.051391,53.482383 +-2.150498,53.503224 +-2.306613,53.390461 +-2.290031,53.596158 +-2.263193,53.522632 +-2.491328,53.52273 +-2.614721,53.545304 +-2.455296,53.567905 +-2.291944,53.604009 +-2.219017,53.441232 +-2.552125,53.528226 +-2.214501,53.524905 +-2.573211,53.534617 +-2.116712,53.464773 +-2.360082,53.518362 +-2.206781,53.574992 +-2.135749,53.62888 +-2.137207,53.528569 +-2.249582,53.496011 +-2.162963,53.459191 +-2.092528,53.536863 +-2.215599,53.592558 +-2.334102,53.417604 +-2.31397,53.446126 +-2.139965,53.63256 +-2.49664,53.551273 +-2.088718,53.547437 +-2.445364,53.399992 +-2.31846,53.589236 +-2.417541,53.54887 +-2.627761,53.547448 +-2.176696,53.498532 +-2.540227,53.593707 +-2.538988,53.571134 +-2.155791,53.400793 +-2.341348,53.51057 +-2.155023,53.350934 +-2.115068,53.458681 +-2.159385,53.400707 +-2.232909,53.440783 +-2.241303,53.468865 +-2.508918,53.516688 +-2.175789,53.410599 +-2.257434,53.483293 +-2.381443,53.470342 +-2.37564,53.379612 +-2.649919,53.50129 +-2.263832,53.545398 +-2.320835,53.56169 +-2.117588,53.525408 +-2.377903,53.531358 +-2.197492,53.448335 +-2.080222,53.396527 +-2.214691,53.434337 +-2.162798,53.419974 +-2.272181,53.367111 +-2.34647,53.467563 +-2.472377,53.589842 +-2.096584,53.469789 +-2.254949,53.443408 +-2.135311,53.520617 +-2.212984,53.514274 +-2.205397,53.442119 +-2.173898,53.514724 +-2.270368,53.476892 +-2.359913,53.480754 +-2.186603,53.502705 +-2.343537,53.466241 +-2.159284,53.610542 +-2.251943,53.507826 +-2.41239,53.563845 +-2.399699,53.546909 +-2.059518,53.539158 +-2.207971,53.411401 +-2.472821,53.517358 +-2.205931,53.474791 +-2.241649,53.489915 +-2.160094,53.437389 +-2.478407,53.586088 +-2.411818,53.61215 +-2.07908,53.453964 +-2.263055,53.483317 +-2.106296,53.467965 +-2.072908,53.481338 +-2.646463,53.499107 +-2.141373,53.556455 +-2.28858,53.451933 +-2.241307,53.474824 +-2.242086,53.508484 +-2.290835,53.479999 +-2.240368,53.468714 +-2.197323,53.548133 +-2.233881,53.488852 +-2.077164,53.468724 +-2.278474,53.440173 +-2.543174,53.566657 +-2.319474,53.559356 +-2.580418,53.533215 +-2.398509,53.526329 +-2.270221,53.472803 +-2.485818,53.526222 +-2.216741,53.372779 +-2.220947,53.43899 +-2.35719,53.457887 +-2.390334,53.551002 +-2.2932,53.361928 +-2.226172,53.459169 +-2.639044,53.487938 +-2.570935,53.467546 +-2.173126,53.495499 +-2.496609,53.551228 +-2.095828,53.575061 +-2.178575,53.622514 +-2.292135,53.419269 +-2.235205,53.515545 +-2.412723,53.542218 +-2.224506,53.488771 +-2.159262,53.436257 +-2.413974,53.554491 +-2.495165,53.494724 +-2.487425,53.579436 +-2.157341,53.380774 +-2.205577,53.560344 +-2.023047,53.53776 +-2.259805,53.420072 +-2.310306,53.443286 +-2.436149,53.572156 +-2.181226,53.556797 +-2.124881,53.569048 +-2.102476,53.501549 +-2.538631,53.598838 +-2.29268,53.362703 +-2.695944,53.535232 +-2.242369,53.486786 +-2.634962,53.566735 +-2.245136,53.451662 +-2.116885,53.462112 +-2.27024,53.473414 +-2.080836,53.5376 +-2.001678,53.459743 +-2.0879,53.589799 +-2.159925,53.456463 +-2.187819,53.41956 +-2.222354,53.45194 +-2.48197,53.519514 +-2.320779,53.642027 +-2.182167,53.522729 +-2.537602,53.522603 +-2.389505,53.544507 +-2.514608,53.546847 +-2.404954,53.525175 +-2.268855,53.406821 +-2.194489,53.453481 +-2.098664,53.573585 +-2.353635,53.45059 +-2.268478,53.432943 +-2.140199,53.543828 +-2.258279,53.458681 +-2.216331,53.508138 +-2.239553,53.479115 +-2.650285,53.540963 +-2.142863,53.61325 +-2.245644,53.500621 +-2.247383,53.472996 +-2.385609,53.484494 +-2.257779,53.396131 +-2.329702,53.391478 +-2.129975,53.521647 +-2.466884,53.509561 +-2.257012,53.500795 +-2.135613,53.52049 +-2.151307,53.408808 +-2.083373,53.668629 +-2.428377,53.433644 +-2.652313,53.517762 +-2.231424,53.436121 +-2.39844,53.523813 +-2.324742,53.417342 +-2.212344,53.482717 +-2.518896,53.498902 +-2.141358,53.556482 +-2.194904,53.481587 +-2.266192,53.469369 +-2.340275,53.512236 +-2.33324,53.392016 +-2.413662,53.502369 +-2.220293,53.45225 +-2.150954,53.457562 +-2.378921,53.488273 +-2.336026,53.382975 +-2.423899,53.531141 +-2.252662,53.481623 +-2.423682,53.569774 +-2.120315,53.550833 +-2.684545,53.538516 +-2.411838,53.544315 +-2.078961,53.559515 +-2.401488,53.557365 +-2.427083,53.528172 +-2.257284,53.483366 +-2.44374,53.58179 +-2.410505,53.543798 +-2.085644,53.64693 +-2.168509,53.460244 +-2.381314,53.49293 +-2.338828,53.574529 +-2.359631,53.491847 +-2.382269,53.521924 +-2.34862,53.569764 +-2.33664,53.515886 +-2.236454,53.534139 +-2.239514,53.448114 +-2.438511,53.561082 +-2.219239,53.431902 +-2.514489,53.504682 +-2.18805,53.379947 +-2.187229,53.364074 +-2.469616,53.588846 +-2.23932,53.472554 +-2.408403,53.526125 +-2.228403,53.417341 +-2.108435,53.544517 +-2.271777,53.53943 +-2.355869,53.454862 +-2.163923,53.473886 +-2.637575,53.570766 +-2.287018,53.541768 +-2.114196,53.531793 +-2.3251,53.401162 +-2.218744,53.502453 +-2.214275,53.5309 +-2.242066,53.451956 +-2.527136,53.511809 +-2.154322,53.43123 +-2.250399,53.49387 +-2.414755,53.52782 +-2.682705,53.548881 +-2.075198,53.447117 +-2.162108,53.621756 +-2.253605,53.467976 +-2.524034,53.556136 +-2.200465,53.475457 +-2.328991,53.509652 +-2.416562,53.548999 +-2.438823,53.548992 +-2.263441,53.455659 +-2.430167,53.591331 +-2.293437,53.361433 +-2.201639,53.551326 +-2.29672,53.554615 +-2.405904,53.589699 +-2.444381,53.56657 +-2.274868,53.438851 +-2.240217,53.484534 +-2.125278,53.478661 +-2.528392,53.512118 +-2.247781,53.443135 +-2.251633,53.429995 +-2.686912,53.595184 +-2.267305,53.495361 +-2.432902,53.504107 +-2.420996,53.446794 +-2.268507,53.547204 +-2.389321,53.570555 +-2.196791,53.514922 +-2.519149,53.498649 +-2.248165,53.480527 +-2.168288,53.518462 +-2.164404,53.465885 +-2.29345,53.594505 +-2.192044,53.448955 +-2.204939,53.456493 +-2.168255,53.620336 +-2.588941,53.572238 +-2.261431,53.456922 +-2.095564,53.551611 +-2.282638,53.479965 +-2.111114,53.374641 +-2.312799,53.440349 +-2.464694,53.567104 +-2.427048,53.572674 +-2.522746,53.583844 +-2.296568,53.465909 +-2.236441,53.439644 +-2.091638,53.488129 +-2.172904,53.481801 +-2.208689,53.395157 +-2.43107,53.604334 +-2.317622,53.392697 +-2.143042,53.518666 +-2.428346,53.618824 +-2.19273,53.401099 +-2.132892,53.634034 +-2.290901,53.443362 +-2.230311,53.483529 +-2.171342,53.445481 +-2.637396,53.586011 +-2.274749,53.492666 +-2.125124,53.528474 +-2.341652,53.46035 +-2.377932,53.505777 +-2.422493,53.503533 +-2.28393,53.375703 +-2.212004,53.411673 +-2.227911,53.398664 +-2.22243,53.452021 +-2.199676,53.432538 +-2.65124,53.539268 +-2.429249,53.567857 +-2.337707,53.562758 +-2.34913,53.47045 +-2.300917,53.590711 +-2.237141,53.497753 +-2.429081,53.567615 +-2.313978,53.608204 +-2.173759,53.524791 +-2.160322,53.509719 +-2.118644,53.541568 +-2.14091,53.389918 +-2.274938,53.556771 +-2.222935,53.410475 +-2.259222,53.472593 +-2.142702,53.543043 +-2.28215,53.508576 +-2.385507,53.543009 +-2.352899,53.476236 +-2.148854,53.408532 +-2.157717,53.624233 +-2.333936,53.634037 +-2.161255,53.509304 +-2.339365,53.422785 +-2.184211,53.552505 +-2.146082,53.508101 +-2.28,53.463881 +-2.47383,53.590088 +-2.333084,53.639189 +-2.488352,53.524962 +-2.146566,53.412535 +-2.206561,53.436913 +-2.221039,53.410389 +-2.01639,53.45247 +-2.201427,53.357175 +-2.311927,53.573901 +-2.211258,53.4341 +-2.217108,53.421254 +-2.243704,53.482963 +-2.291948,53.420555 +-2.449237,53.571748 +-2.24465,53.443178 +-2.661391,53.586402 +-2.223945,53.453753 +-2.470529,53.609794 +-2.61454,53.545359 +-2.443719,53.576883 +-2.151723,53.61394 +-2.17145,53.39394 +-2.240492,53.440022 +-2.460748,53.588836 +-2.096334,53.538595 +-2.467197,53.49143 +-2.164295,53.608917 +-2.028014,53.451344 +-2.108741,53.516581 +-2.487726,53.579354 +-2.118189,53.42195 +-2.077943,53.449497 +-2.30332,53.449497 +-2.298237,53.454741 +-2.305421,53.431775 +-2.257484,53.501441 +-2.409339,53.599701 +-2.137435,53.631197 +-2.486954,53.521373 +-2.23447,53.480815 +-2.235594,53.458045 +-2.445439,53.399946 +-2.125725,53.52273 +-2.14206,53.482066 +-2.110273,53.450416 +-2.288173,53.391792 +-2.158906,53.481919 +-2.255579,53.483019 +-2.128743,53.508103 +-2.217666,53.424462 +-2.500304,53.480555 +-2.286943,53.593019 +-2.28318,53.369036 +-2.243129,53.456232 +-2.333406,53.472769 +-2.261066,53.471034 +-2.044998,53.54889 +-2.034085,53.491836 +-2.339539,53.48432 +-2.211994,53.527435 +-2.226307,53.456238 +-2.199852,53.383541 +-2.374787,53.477428 +-2.032125,53.629303 +-2.211761,53.374784 +-2.052273,53.537481 +-2.384023,53.495789 +-2.457849,53.500895 +-2.242203,53.47866 +-2.457297,53.514047 +-2.241648,53.479138 +-2.223658,53.502327 +-2.175905,53.405934 +-2.097967,53.579131 +-2.308529,53.395489 +-2.244755,53.495419 +-2.262873,53.378412 +-2.528059,53.512048 +-2.155141,53.457772 +-2.154623,53.41061 +-2.376026,53.5306 +-2.221208,53.38202 +-2.234941,53.440725 +-2.297528,53.553526 +-2.12979,53.456212 +-2.391736,53.536086 +-2.487926,53.554797 +-2.298041,53.58146 +-2.434606,53.565995 +-2.387206,53.441443 +-2.278343,53.367168 +-2.223949,53.454463 +-2.245055,53.461154 +-2.36108,53.502746 +-2.214986,53.483629 +-2.220503,53.478271 +-2.135542,53.455855 +-2.384021,53.580532 +-2.235532,53.490395 +-2.177661,53.386749 +-2.133798,53.633619 +-2.199842,53.458182 +-2.173048,53.620482 +-2.383132,53.485608 +-2.249094,53.492407 +-2.227973,53.410232 +-2.168509,53.460253 +-2.117595,53.533471 +-2.125736,53.475685 +-2.292043,53.473821 +-2.442605,53.572968 +-2.237281,53.474239 +-2.637231,53.535883 +-2.068259,53.541814 +-2.437687,53.592374 +-2.525831,53.548847 +-2.489946,53.494413 +-2.271806,53.367139 +-2.239486,53.493928 +-2.144395,53.623432 +-2.156774,53.622679 +-2.041639,53.44859 +-2.198593,53.455335 +-2.290789,53.479945 +-2.240109,53.481523 +-2.353344,53.468118 +-2.228336,53.430168 +-2.115101,53.537329 +-2.145936,53.478826 +-2.261817,53.470772 +-2.218555,53.421791 +-2.121377,53.426477 +-2.317917,53.424273 +-2.171776,53.485892 +-2.34633,53.448499 +-2.235219,53.512687 +-2.091834,53.488515 +-2.005713,53.558004 +-2.369027,53.529004 +-2.11036,53.478055 +-2.181084,53.498912 +-2.270027,53.361489 +-2.11839,53.456143 +-2.478084,53.517247 +-2.19653,53.523569 +-2.212748,53.421954 +-2.384396,53.497055 +-2.138821,53.55609 +-2.258488,53.376543 +-2.252152,53.474316 +-2.215829,53.510296 +-2.328988,53.396387 +-2.411737,53.566561 +-2.096279,53.40171 +-2.229921,53.369726 +-2.122591,53.549941 +-2.149903,53.616343 +-2.248972,53.52055 +-2.259904,53.51997 +-2.337258,53.557528 +-2.401632,53.527946 +-2.279037,53.47778 +-2.333845,53.634082 +-2.161026,53.599727 +-2.157338,53.445051 +-2.148497,53.521778 +-2.218073,53.38048 +-2.419892,53.565266 +-2.229056,53.589019 +-2.422112,53.530473 +-2.431102,53.56297 +-2.327812,53.423275 +-2.711475,53.533757 +-2.285087,53.588988 +-2.258014,53.462259 +-2.269913,53.362577 +-2.235374,53.499887 +-2.272106,53.367021 +-2.538364,53.579083 +-2.239498,53.399711 +-2.253173,53.478943 +-2.587374,53.467862 +-2.440842,53.573307 +-2.08678,53.537353 +-2.1245,53.516287 +-2.341621,53.50141 +-2.282989,53.534982 +-2.447178,53.582649 +-2.693669,53.516972 +-2.359731,53.48062 +-2.466706,53.57977 +-2.284039,53.486703 +-2.430554,53.580319 +-2.087978,53.45287 +-2.392946,53.546239 +-2.660151,53.558221 +-2.119852,53.541837 +-2.340517,53.525457 +-2.32383,53.513117 +-2.242165,53.593541 +-2.12691,53.500231 +-2.031144,53.448521 +-2.273755,53.436634 +-2.535031,53.480134 +-2.436815,53.559129 +-2.411337,53.526942 +-2.131182,53.385264 +-2.232026,53.477575 +-2.142598,53.521138 +-2.42325,53.582449 +-2.226798,53.457927 +-2.314192,53.551452 +-2.308229,53.451677 +-2.528392,53.544845 +-2.288372,53.461282 +-2.21847,53.4433 +-2.672946,53.595848 +-2.212792,53.593093 +-2.240821,53.474178 +-2.227667,53.507677 +-2.193142,53.601135 +-2.157867,53.482208 +-2.292109,53.45925 +-2.176618,53.588335 +-2.632173,53.539694 +-2.24679,53.529103 +-2.268594,53.427513 +-2.102886,53.415924 +-2.681441,53.506858 +-2.32264,53.427901 +-2.163303,53.473338 +-2.391754,53.588686 +-2.16479,53.619622 +-2.185061,53.536172 +-2.378395,53.490045 +-2.65315,53.499654 +-2.25854,53.551064 +-2.249019,53.492435 +-2.384394,53.496741 +-2.148172,53.415751 +-2.120585,53.5609 +-2.325993,53.376369 +-2.063436,53.485685 +-2.146687,53.60441 +-2.328854,53.637799 +-2.060896,53.563705 +-2.055477,53.483927 +-2.299849,53.593626 +-2.125347,53.522479 +-2.185535,53.437675 +-2.299457,53.597986 +-2.436082,53.586196 +-2.248262,53.473965 +-2.144804,53.619513 +-2.07567,53.449849 +-2.344923,53.562773 +-2.185443,53.437298 +-2.215678,53.39448 +-1.987038,53.464704 +-2.104001,53.48411 +-2.302335,53.554547 +-2.598937,53.471687 +-2.146656,53.416777 +-2.116098,53.460675 +-2.339864,53.423107 +-2.295986,53.388807 +-2.256951,53.443377 +-2.191544,53.444965 +-2.24797,53.478055 +-2.072827,53.451829 +-2.202032,53.51032 +-2.119003,53.492096 +-2.272338,53.582016 +-2.178219,53.487788 +-2.269228,53.50155 +-2.057544,53.485715 +-2.230695,53.593159 +-2.239459,53.44637 +-2.117455,53.455784 +-2.309752,53.40025 +-2.371436,53.490562 +-2.430419,53.532879 +-2.255743,53.485266 +-2.244021,53.511986 +-2.628619,53.561555 +-2.243239,53.509632 +-2.059423,53.493147 +-2.214542,53.52113 +-2.155683,53.523477 +-2.306206,53.446748 +-2.648324,53.555787 +-2.370686,53.528999 +-2.220512,53.596037 +-2.157295,53.457868 +-2.017445,53.456335 +-2.336207,53.510692 +-2.197023,53.451266 +-2.089921,53.488921 +-2.118823,53.610823 +-2.457087,53.588283 +-2.291003,53.592524 +-2.056565,53.395893 +-2.376559,53.480209 +-2.238899,53.467279 +-2.202026,53.407573 +-2.131374,53.374396 +-2.08847,53.537352 +-2.408667,53.533243 +-2.108076,53.480574 +-2.174945,53.578234 +-2.100038,53.490423 +-2.339947,53.458009 +-2.225552,53.410371 +-2.2148,53.521336 +-2.415,53.542093 +-2.288523,53.483528 +-2.237396,53.486796 +-2.225978,53.456679 +-2.253676,53.497476 +-2.402182,53.525526 +-2.352804,53.457469 +-2.489343,53.523187 +-2.143267,53.406696 +-2.673397,53.519667 +-2.697617,53.5388 +-2.289323,53.516855 +-2.284751,53.592908 +-2.434559,53.586462 +-2.244053,53.496597 +-2.21411,53.510227 +-2.224188,53.593881 +-2.200757,53.355306 +-2.63572,53.594092 +-2.10546,53.410223 +-2.266654,53.54772 +-2.232893,53.542263 +-2.401768,53.567764 +-2.423545,53.57425 +-2.168406,53.464666 +-2.266603,53.599637 +-2.655466,53.523713 +-2.091623,53.488156 +-2.547572,53.600874 +-2.429403,53.574121 +-2.208387,53.554532 +-2.256285,53.485201 +-2.257885,53.465684 +-2.249629,53.478259 +-2.207679,53.373056 +-2.228132,53.434186 +-2.319893,53.456878 +-2.17528,53.571708 +-2.258813,53.397926 +-2.121245,53.564719 +-2.186131,53.491174 +-2.092593,53.47701 +-2.259223,53.640487 +-2.446122,53.552686 +-2.169442,53.391858 +-2.536663,53.506724 +-2.087769,53.490073 +-2.704879,53.53998 +-2.276232,53.523717 +-2.142841,53.41858 +-2.335355,53.567034 +-2.318127,53.424102 +-2.19314,53.501347 +-2.180545,53.520916 +-2.598901,53.471256 +-2.273164,53.560235 +-2.42737,53.523722 +-2.31486,53.450375 +-2.438131,53.424971 +-2.491129,53.555071 +-2.26615,53.530005 +-2.068801,53.47637 +-2.397443,53.523645 +-2.20419,53.507485 +-2.116272,53.436307 +-2.444401,53.588664 +-2.437103,53.563622 +-2.576117,53.564193 +-2.353933,53.488233 +-2.64736,53.552017 +-2.282869,53.525949 +-2.294896,53.389942 +-2.490586,53.556377 +-2.409752,53.447076 +-2.207864,53.555693 +-2.614577,53.531211 +-2.106573,53.548105 +-2.143093,53.609637 +-2.219731,53.591121 +-2.252199,53.487349 +-2.395208,53.550843 +-2.443465,53.572866 +-2.325325,53.416945 +-2.427271,53.563289 +-2.235254,53.480912 +-2.268481,53.36658 +-2.259087,53.586324 +-2.025784,53.595887 +-2.161681,53.458707 +-2.237335,53.475776 +-2.251556,53.462785 +-2.341327,53.464863 +-2.574631,53.537019 +-2.232926,53.487784 +-2.495174,53.575629 +-2.087353,53.529722 +-2.293862,53.627823 +-2.325154,53.489079 +-2.326815,53.505199 +-2.068514,53.364013 +-2.541987,53.51159 +-2.17353,53.601597 +-2.343854,53.46447 +-2.192149,53.448964 +-2.298852,53.582932 +-2.071464,53.474202 +-2.399449,53.526803 +-2.182632,53.462767 +-2.289162,53.464507 +-2.088827,53.462955 +-2.257986,53.464992 +-2.264056,53.428602 +-2.100745,53.471044 +-2.207394,53.438008 +-2.160305,53.608743 +-2.536614,53.471849 +-2.24068,53.507696 +-2.427795,53.570406 +-2.30399,53.446322 +-2.547603,53.600873 +-2.165171,53.473183 +-2.276086,53.49198 +-2.344132,53.465215 +-2.718793,53.513327 +-2.420643,53.561794 +-2.439834,53.416416 +-2.389693,53.512471 +-2.2639,53.505391 +-2.13476,53.432548 +-2.248477,53.381697 +-2.092035,53.490771 +-2.147862,53.521087 +-2.167903,53.482177 +-2.135773,53.476348 +-2.210628,53.467979 +-2.235549,53.463573 +-2.518139,53.502375 +-2.095216,53.578261 +-2.348942,53.386875 +-2.217224,53.41453 +-2.092326,53.492811 +-2.508661,53.580777 +-2.169399,53.388802 +-2.111047,53.619486 +-2.313733,53.591451 +-2.309138,53.547735 +-2.634328,53.543539 +-2.349176,53.479672 +-2.197355,53.548646 +-2.153915,53.472677 +-2.443054,53.592758 +-2.155866,53.511567 +-2.58618,53.46758 +-2.344927,53.388702 +-2.486147,53.549716 +-2.444005,53.566725 +-2.190673,53.401695 +-2.276533,53.366076 +-2.352344,53.381912 +-2.197768,53.44944 +-2.258144,53.458879 +-2.111735,53.536712 +-2.256234,53.489282 +-2.212371,53.545447 +-2.140164,53.556043 +-2.309332,53.489507 +-2.26812,53.447828 +-2.221621,53.435439 +-2.142703,53.59264 +-2.173028,53.445577 +-2.171258,53.409716 +-2.400487,53.532956 +-2.304565,53.59178 +-2.289713,53.540916 +-2.294284,53.40135 +-2.144798,53.485137 +-2.62832,53.544434 +-2.125419,53.546738 +-2.257229,53.379638 +-2.169299,53.424064 +-2.12697,53.500384 +-2.181072,53.474868 +-2.32249,53.55702 +-2.325855,53.484133 +-2.211425,53.395018 +-2.156244,53.536384 +-2.298405,53.553793 +-2.041635,53.659087 +-2.158134,53.444573 +-2.259011,53.586261 +-2.195825,53.553816 +-2.30957,53.400017 +-2.198975,53.559411 +-2.179365,53.502294 +-2.257804,53.502061 +-2.175563,53.574377 +-2.082981,53.454105 +-2.190735,53.452444 +-2.139942,53.589354 +-2.208372,53.474886 +-2.149862,53.472484 +-2.164861,53.614372 +-2.271506,53.393233 +-2.665905,53.545857 +-2.178351,53.461928 +-2.652113,53.54205 +-2.703843,53.546611 +-2.202566,53.609425 +-2.144238,53.559813 +-2.107448,53.512349 +-2.217103,53.414405 +-2.161096,53.519012 +-2.234551,53.45456 +-2.20383,53.426257 +-2.16308,53.525013 +-2.561056,53.512293 +-2.575852,53.541381 +-2.211755,53.527813 +-2.2807,53.478639 +-2.268158,53.546962 +-2.168177,53.460047 +-2.288685,53.451906 +-2.150601,53.34952 +-2.128258,53.53719 +-2.266171,53.528558 +-2.192704,53.501563 +-2.197364,53.550542 +-2.268464,53.402049 +-2.295326,53.590563 +-2.460684,53.557898 +-2.349355,53.483105 +-2.439371,53.566841 +-2.341616,53.615032 +-2.126766,53.522612 +-2.311283,53.502661 +-2.27513,53.597982 +-2.523175,53.590448 +-2.522586,53.548862 +-2.155642,53.623067 +-2.383979,53.542619 +-2.498636,53.551633 +-2.113139,53.497414 +-2.151496,53.495681 +-2.378727,53.579713 +-2.316433,53.431081 +-2.426608,53.579974 +-2.411429,53.614174 +-2.204994,53.455324 +-2.254735,53.472918 +-2.194361,53.43545 +-2.598431,53.520246 +-2.26121,53.447934 +-2.143852,53.508409 +-2.104771,53.496684 +-2.211236,53.453929 +-2.181083,53.459821 +-2.150057,53.472457 +-2.102495,53.484282 +-2.241231,53.474716 +-2.254161,53.407276 +-2.123718,53.382791 +-2.27316,53.597024 +-2.248322,53.473893 +-2.368217,53.45131 +-2.272301,53.41413 +-2.545499,53.573657 +-2.082197,53.476972 +-2.237479,53.485483 +-2.159459,53.420518 +-2.250061,53.477494 +-2.152436,53.476157 +-2.530071,53.582535 +-2.339003,53.570062 +-2.195833,53.431403 +-2.520589,53.534983 +-2.411448,53.510421 +-2.273235,53.430748 +-2.241408,53.476774 +-2.141838,53.600578 +-2.333255,53.391953 +-2.649362,53.501356 +-2.3177,53.592582 +-2.206417,53.475636 +-2.100886,53.530349 +-2.086931,53.544678 +-2.130256,53.387233 +-2.431396,53.593286 +-2.554123,53.534518 +-2.432315,53.547146 +-2.111749,53.542132 +-2.620156,53.535155 +-2.536622,53.560781 +-2.379728,53.470608 +-2.412767,53.542136 +-2.215679,53.468896 +-2.457703,53.571266 +-2.338998,53.446686 +-2.158065,53.474505 +-2.348988,53.524642 +-2.245101,53.531785 +-2.153134,53.385543 +-2.410856,53.597161 +-2.110706,53.466487 +-2.267569,53.45591 +-2.156025,53.530362 +-2.448329,53.591552 +-2.536372,53.471778 +-2.065674,53.451518 +-2.424398,53.574912 +-2.652549,53.519406 +-2.295305,53.472797 +-2.273569,53.435816 +-2.253794,53.517188 +-2.478366,53.590483 +-2.244371,53.480975 +-2.23897,53.506675 +-2.226426,53.464463 +-2.133308,53.425593 +-2.385692,53.501923 +-2.53514,53.598836 +-2.120177,53.560892 +-2.257315,53.448697 +-2.224853,53.454605 +-2.237593,53.497743 +-2.03282,53.590429 +-2.271421,53.450679 +-2.1668,53.408347 +-2.241173,53.480424 +-2.323353,53.458424 +-2.166392,53.48101 +-2.120772,53.478261 +-2.247875,53.526341 +-2.155828,53.624397 +-2.38511,53.580726 +-2.377366,53.579501 +-2.195882,53.510789 +-2.374501,53.477501 +-2.117345,53.377835 +-2.276473,53.384656 +-2.13375,53.623139 +-2.121214,53.379683 +-2.17794,53.399567 +-2.266787,53.513645 +-2.241981,53.47938 +-2.493413,53.534685 +-2.206684,53.514959 +-2.216529,53.490853 +-2.509229,53.595344 +-2.572396,53.464132 +-2.038797,53.485632 +-2.40234,53.472152 +-2.063047,53.416743 +-2.593419,53.601913 +-2.431291,53.609646 +-2.163068,53.459218 +-2.317963,53.424282 +-2.545879,53.599668 +-2.227993,53.506606 +-2.134789,53.541254 +-2.63734,53.486841 +-2.303073,53.450864 +-2.30753,53.50072 +-2.24041,53.481325 +-2.242147,53.479451 +-2.07469,53.475162 +-2.212906,53.513771 +-2.314827,53.490634 +-2.247082,53.51446 +-2.136004,53.388476 +-2.254658,53.502948 +-2.240083,53.484858 +-2.23032,53.463125 +-2.099739,53.369897 +-2.22706,53.481611 +-2.272492,53.408655 +-2.45451,53.501582 +-2.354478,53.452304 +-2.319078,53.588965 +-2.340582,53.418808 +-2.10374,53.537456 +-2.339628,53.482171 +-2.231727,53.444759 +-2.054027,53.481519 +-2.57805,53.532166 +-2.267851,53.407389 +-2.252324,53.457615 +-2.417524,53.577759 +-2.131877,53.478384 +-2.521192,53.522621 +-2.263489,53.39779 +-2.185388,53.483355 +-2.379925,53.487578 +-2.302378,53.463234 +-2.05731,53.624377 +-2.290751,53.602016 +-2.34392,53.409208 +-2.304181,53.580348 +-2.225811,53.456266 +-2.449932,53.557561 +-2.116139,53.453565 +-2.118105,53.445869 +-2.158777,53.507752 +-2.210592,53.460716 +-2.157564,53.449104 +-2.382795,53.500009 +-2.242763,53.476448 +-2.239437,53.482612 +-2.219001,53.441205 +-2.110528,53.467619 +-2.139225,53.509035 +-2.365276,53.520845 +-2.432804,53.600957 +-2.430315,53.589533 +-2.128759,53.54331 +-2.409169,53.561806 +-2.246505,53.529319 +-2.205503,53.454784 +-2.242683,53.517939 +-2.361505,53.453559 +-2.557668,53.586077 +-2.436278,53.603731 +-2.272766,53.364602 +-2.184063,53.493901 +-2.26937,53.40024 +-2.250413,53.506561 +-2.350443,53.390295 +-2.266722,53.491354 +-2.204781,53.564264 +-2.040737,53.450523 +-2.321146,53.489242 +-2.218413,53.502544 +-2.135853,53.543842 +-2.362822,53.561956 +-2.286485,53.384578 +-2.357655,53.479161 +-2.561501,53.576693 +-2.243577,53.473975 +-2.105989,53.423094 +-2.413318,53.592424 +-2.160434,53.407708 +-2.438565,53.399909 +-2.275813,53.384936 +-2.352263,53.399422 +-2.400704,53.55744 +-2.641699,53.538008 +-2.443657,53.591192 +-2.222855,53.452703 +-2.231026,53.512488 +-2.40909,53.595864 +-2.083772,53.466113 +-2.085487,53.547169 +-2.146048,53.546212 +-2.496365,53.531698 +-2.343008,53.505127 +-2.312906,53.59201 +-2.279592,53.369619 +-2.597809,53.475019 +-2.273343,53.545808 +-2.127643,53.418121 +-2.210192,53.428421 +-2.309085,53.482425 +-2.174226,53.601677 +-2.107049,53.509473 +-2.102661,53.497081 +-2.115328,53.53741 +-2.39282,53.558661 +-2.229811,53.485974 +-2.249016,53.443196 +-2.276496,53.390615 +-2.281515,53.47888 +-2.052409,53.403634 +-2.353359,53.446312 +-2.211131,53.453956 +-2.224381,53.453581 +-2.684134,53.541098 +-2.152302,53.602435 +-2.220605,53.454397 +-2.480307,53.591042 +-2.645526,53.560413 +-2.169336,53.463703 +-2.674628,53.535471 +-2.08113,53.564843 +-2.269307,53.494997 +-2.099269,53.490388 +-2.199002,53.35913 +-2.151227,53.614597 +-2.681852,53.569056 +-2.013727,53.460227 +-2.110432,53.523114 +-2.40369,53.406441 +-2.257954,53.501871 +-2.453241,53.580442 +-2.246116,53.52994 +-2.273096,53.434802 +-2.619618,53.543787 +-2.134493,53.623965 +-2.265794,53.4659 +-2.179791,53.503156 +-2.168151,53.628371 +-2.242162,53.479406 +-2.464725,53.567149 +-2.447521,53.565094 +-2.302368,53.510531 +-2.65285,53.513489 +-2.133583,53.622932 +-2.253093,53.473092 +-2.232022,53.429999 +-2.076367,53.444087 +-2.571362,53.462322 +-2.374317,53.507963 +-2.511331,53.496579 +-2.069093,53.451993 +-2.158366,53.619801 +-2.103783,53.499471 +-2.096863,53.400388 +-2.658556,53.526492 +-2.349702,53.483158 +-2.169192,53.620308 +-2.576465,53.550924 +-2.623933,53.550856 +-2.3145,53.5543 +-2.088772,53.487133 +-2.500046,53.525264 +-2.231519,53.398333 +-2.187217,53.409305 +-2.170224,53.474641 +-2.108884,53.601592 +-2.383183,53.532941 +-2.383827,53.500787 +-2.080628,53.515426 +-2.267448,53.40802 +-2.350474,53.390412 +-2.087364,53.46212 +-2.277642,53.497198 +-2.291865,53.395208 +-2.241286,53.479022 +-2.277923,53.445685 +-2.295032,53.48984 +-2.237243,53.499847 +-2.392919,53.580781 +-2.592587,53.50575 +-2.230486,53.463178 +-2.196396,53.465424 +-2.426987,53.574058 +-2.258056,53.461612 +-2.183006,53.48308 +-2.308181,53.4824 +-2.239202,53.486244 +-2.198415,53.452612 +-2.237247,53.484387 +-2.277828,53.486385 +-2.116416,53.461178 +-2.329836,53.507825 +-2.149168,53.408001 +-2.117276,53.499908 +-2.239356,53.44406 +-2.339177,53.486145 +-2.070707,53.462733 +-2.061833,53.48156 +-2.463581,53.604734 +-2.391771,53.449985 +-2.436109,53.565387 +-2.110072,53.483224 +-2.427916,53.574828 +-2.158541,53.343685 +-2.391695,53.588848 +-2.294456,53.62837 +-2.389603,53.440168 +-2.155428,53.622447 +-2.290803,53.459955 +-2.210405,53.495835 +-2.078057,53.503392 +-2.146173,53.486421 +-2.327156,53.606093 +-2.082604,53.454033 +-2.328702,53.491765 +-2.157498,53.610005 +-2.447115,53.417729 +-2.37877,53.469604 +-2.047589,53.518212 +-2.588475,53.469007 +-2.535323,53.578629 +-2.308657,53.647434 +-2.290676,53.443524 +-2.209995,53.513551 +-2.232495,53.469601 +-2.175519,53.425188 +-2.162083,53.366556 +-2.324935,53.371689 +-2.267116,53.453412 +-2.338032,53.514588 +-2.177937,53.409814 +-2.248925,53.47906 +-2.115793,53.431508 +-2.152549,53.436239 +-2.248491,53.474351 +-2.383272,53.494362 +-2.0964,53.401638 +-2.036525,53.490505 +-2.246087,53.530183 +-2.156533,53.406221 +-2.220603,53.596054 +-2.182014,53.462687 +-2.269481,53.398766 +-2.427449,53.583944 +-2.257912,53.467652 +-2.327888,53.47229 +-2.184701,53.436311 +-2.187699,53.399318 +-2.205567,53.443126 +-2.208878,53.43059 +-2.237842,53.496466 +-2.321453,53.529743 +-2.077906,53.486746 +-2.350439,53.462869 +-2.039582,53.519087 +-2.317486,53.392598 +-2.556706,53.472584 +-2.115992,53.46596 +-2.136357,53.583138 +-2.518807,53.49901 +-2.415448,53.558522 +-2.322961,53.587067 +-2.274383,53.578308 +-2.165411,53.472832 +-2.222294,53.451832 +-2.370824,53.384067 +-2.122143,53.425973 +-2.291713,53.366399 +-2.241441,53.47459 +-2.229525,53.393834 +-2.270462,53.432507 +-2.295739,53.45721 +-2.137169,53.6007 +-2.230093,53.462874 +-2.183307,53.483098 +-2.092408,53.481953 +-2.352065,53.413705 +-2.412669,53.566145 +-2.41387,53.451025 +-2.597266,53.476091 +-2.432795,53.548411 +-2.247488,53.480681 +-2.520194,53.50766 +-2.166842,53.472992 +-2.161277,53.459391 +-2.6753,53.535027 +-2.303984,53.649702 +-2.27145,53.408136 +-2.030945,53.526379 +-2.201197,53.54721 +-2.364079,53.527257 +-2.517606,53.551355 +-2.176063,53.527538 +-2.395407,53.479968 +-2.612254,53.538576 +-2.156513,53.482633 +-2.228491,53.593442 +-2.205858,53.437813 +-2.27116,53.39327 +-2.646725,53.542052 +-2.488164,53.579379 +-2.310799,53.595108 +-2.376637,53.4873 +-2.418476,53.579329 +-2.531551,53.472968 +-2.207302,53.450062 +-2.229116,53.482713 +-2.522686,53.504305 +-2.147226,53.54639 +-2.251828,53.409609 +-2.333795,53.508865 +-2.233159,53.398519 +-2.395673,53.544064 +-2.545002,53.523279 +-2.292716,53.455564 +-2.288249,53.400834 +-2.235021,53.392547 +-2.337211,53.403537 +-2.604488,53.510319 +-2.222992,53.470204 +-2.291792,53.538107 +-2.261686,53.456804 +-2.167464,53.359178 +-2.336245,53.376484 +-2.090115,53.367468 +-2.539571,53.471 +-2.621244,53.543473 +-2.486703,53.525814 +-2.297956,53.492008 +-2.236255,53.482133 +-2.411829,53.589994 +-2.25352,53.478987 +-2.175894,53.41041 +-2.428638,53.561154 +-2.354414,53.506154 +-2.159304,53.591882 +-2.293027,53.61206 +-2.157365,53.444125 +-2.439197,53.558806 +-2.22518,53.502189 +-2.344669,53.369764 +-2.108908,53.605179 +-2.248002,53.491232 +-2.005365,53.549402 +-2.42843,53.559995 +-2.218613,53.441826 +-2.082985,53.471462 +-2.315705,53.590457 +-2.296412,53.596861 +-2.181952,53.613323 +-2.552537,53.477565 +-2.47779,53.563493 +-2.240646,53.477801 +-2.163543,53.472961 +-2.349818,53.403923 +-2.250128,53.496495 +-2.191586,53.447607 +-2.391502,53.399506 +-2.150357,53.446381 +-2.142274,53.474021 +-2.076977,53.448491 +-2.286039,53.396534 +-2.090047,53.455646 +-2.301906,53.593935 +-2.43162,53.533783 +-2.072043,53.477761 +-2.237185,53.497573 +-2.176297,53.482236 +-2.3397,53.396906 +-2.471529,53.587005 +-2.257735,53.441065 +-2.435908,53.572282 +-2.11105,53.540281 +-2.149681,53.472493 +-2.149665,53.621619 +-2.438533,53.570502 +-2.215392,53.421086 +-2.626363,53.55292 +-2.267117,53.441458 +-2.210913,53.510125 +-2.450363,53.54272 +-2.291042,53.595895 +-2.194137,53.481912 +-2.20731,53.513349 +-2.203888,53.513589 +-2.097934,53.545272 +-2.156247,53.422725 +-2.134177,53.543439 +-2.349425,53.387134 +-2.056246,53.507054 +-2.134991,53.529012 +-2.279365,53.38553 +-2.379036,53.56524 +-2.436218,53.574519 +-2.135528,53.45625 +-2.056947,53.624575 +-2.289139,53.392374 +-2.260516,53.388745 +-2.144257,53.530071 +-2.278355,53.525438 +-2.202352,53.548808 +-2.313466,53.394029 +-2.242499,53.5517 +-2.504511,53.493498 +-2.567075,53.591408 +-2.261401,53.476588 +-2.331397,53.381289 +-2.179503,53.449271 +-2.181102,53.474814 +-2.076964,53.549341 +-2.202364,53.428039 +-2.426729,53.578454 +-2.200559,53.457057 +-2.109041,53.604055 +-2.214146,53.463613 +-2.084588,53.489851 +-2.116585,53.539413 +-2.214301,53.512241 +-2.644601,53.496591 +-2.379149,53.596493 +-2.382393,53.580905 +-2.225371,53.455773 +-2.159869,53.609588 +-2.136037,53.643153 +-2.109286,53.540831 +-2.175246,53.428316 +-2.168418,53.414295 +-2.523009,53.488898 +-2.661141,53.557793 +-2.535323,53.578629 +-2.567267,53.468094 +-2.238414,53.426373 +-2.117209,53.562827 +-2.224277,53.488187 +-2.300237,53.420193 +-2.136306,53.534439 +-2.101848,53.415674 +-2.205324,53.455162 +-2.45407,53.587306 +-2.2706,53.480244 +-2.269026,53.476832 +-2.261247,53.476076 +-2.27765,53.399259 +-2.302347,53.45038 +-2.163316,53.429573 +-2.227451,53.484253 +-2.115393,53.456181 +-2.334481,53.473431 +-2.248633,53.459978 +-2.1018,53.483923 +-2.23637,53.473054 +-2.097163,53.551232 +-2.382437,53.493736 +-2.144598,53.519428 +-2.536387,53.471778 +-2.244352,53.446378 +-2.249307,53.515822 +-2.271023,53.579538 +-2.198519,53.4233 +-2.106992,53.64205 +-2.281366,53.442585 +-2.1325,53.426861 +-2.194676,53.48121 +-2.286551,53.590998 +-2.259114,53.501842 +-2.102379,53.642306 +-2.493506,53.579006 +-2.230458,53.485784 +-2.255531,53.472664 +-2.120573,53.556828 +-2.39906,53.605686 +-2.091281,53.469227 +-2.526735,53.547549 +-2.167531,53.616921 +-2.679187,53.548776 +-2.22663,53.372536 +-2.388781,53.483693 +-2.097085,53.484565 +-2.497347,53.488027 +-2.231605,53.392086 +-2.176131,53.52575 +-2.531982,53.497748 +-2.449329,53.499211 +-2.414976,53.578226 +-2.152328,53.613976 +-2.160541,53.372284 +-2.157174,53.612369 +-2.335351,53.507396 +-2.154389,53.524359 +-2.425964,53.578943 +-2.110783,53.524552 +-2.120415,53.554321 +-2.34686,53.384202 +-2.223264,53.453143 +-2.245455,53.426134 +-2.315441,53.553048 +-2.246659,53.477995 +-2.385762,53.581011 +-2.692752,53.514406 +-2.496494,53.493703 +-2.082476,53.504495 +-2.277912,53.485414 +-2.395078,53.551508 +-2.234763,53.482028 +-2.23753,53.537571 +-2.234205,53.471144 +-2.428351,53.598421 +-2.346283,53.446405 +-2.31702,53.388681 +-2.289305,53.458961 +-2.180568,53.462473 +-2.064647,53.49851 +-2.122658,53.458376 +-2.455569,53.598868 +-2.432835,53.598135 +-2.547296,53.575977 +-2.070982,53.474058 +-2.144843,53.555741 +-2.224893,53.388081 +-2.005727,53.548171 +-2.100147,53.549306 +-2.270908,53.578118 +-2.337143,53.486178 +-2.11082,53.567723 +-2.328767,53.56245 +-2.28583,53.533438 +-2.297065,53.465917 +-2.518137,53.546652 +-2.170616,53.362212 +-2.204843,53.455279 +-2.545802,53.594805 +-2.15514,53.609954 +-2.647714,53.561336 +-2.33276,53.624917 +-1.993997,53.46146 +-2.370214,53.512947 +-2.174496,53.495066 +-2.13463,53.529165 +-2.236212,53.468983 +-2.276716,53.544704 +-2.207586,53.554381 +-2.222458,53.405496 +-2.12493,53.636469 +-2.16387,53.389699 +-2.294426,53.421978 +-2.207144,53.402081 +-2.242737,53.506218 +-2.284507,53.417023 +-2.227604,53.459265 +-2.15124,53.457624 +-2.262479,53.470582 +-2.410027,53.547485 +-2.448469,53.571966 +-2.074649,53.562978 +-2.278204,53.490896 +-2.025004,53.504161 +-2.302802,53.450855 +-2.120988,53.379674 +-2.43873,53.504958 +-2.060357,53.503321 +-2.311274,53.604257 +-2.416895,53.567523 +-2.09765,53.441771 +-2.236374,53.517017 +-2.390187,53.585869 +-2.283325,53.479172 +-2.224717,53.454444 +-2.156832,53.621799 +-2.4075,53.560895 +-2.216932,53.475365 +-2.613449,53.529401 +-2.388408,53.594485 +-2.218775,53.50248 +-2.293802,53.362098 +-2.246346,53.499334 +-2.323224,53.506764 +-2.229915,53.474514 +-2.088584,53.577449 +-2.226656,53.47363 +-2.229973,53.462937 +-2.379189,53.491247 +-2.201972,53.510249 +-2.464884,53.558196 +-2.242816,53.446301 +-2.192074,53.448946 +-2.241074,53.391249 +-2.138605,53.485531 +-2.480661,53.565073 +-2.176201,53.466336 +-2.115174,53.475462 +-2.104547,53.497547 +-2.50872,53.554234 +-2.165266,53.470558 +-2.210715,53.373069 +-2.232758,53.567098 +-2.623264,53.54846 +-2.132919,53.479174 +-2.007477,53.546526 +-2.217561,53.424471 +-2.309693,53.5968 +-2.016933,53.456452 +-2.239961,53.484552 +-2.295866,53.574913 +-2.225735,53.456284 +-2.337185,53.419249 +-2.197292,53.398844 +-2.214752,53.377763 +-2.233003,53.457879 +-2.275758,53.462327 +-2.185154,53.59198 +-2.432924,53.600849 +-2.080583,53.476362 +-2.250855,53.430734 +-2.49875,53.551049 +-2.157844,53.41919 +-2.281484,53.474188 +-2.213246,53.51831 +-2.216197,53.455187 +-2.349155,53.50093 +-2.227159,53.45781 +-2.265945,53.48039 +-2.039069,53.437436 +-2.171407,53.543859 +-2.405583,53.603561 +-2.220623,53.46362 +-2.543574,53.5755 +-2.233196,53.484862 +-2.134304,53.478651 +-2.483508,53.527382 +-2.244356,53.473209 +-2.340324,53.546499 +-2.473541,53.51562 +-2.373759,53.530202 +-2.006919,53.459024 +-2.215927,53.494018 +-2.193069,53.469159 +-2.2141,53.591878 +-2.462467,53.588496 +-2.338485,53.631786 +-2.221789,53.421533 +-2.136593,53.375235 +-2.082571,53.452496 +-2.127901,53.549109 +-2.396945,53.557452 +-2.232433,53.370053 +-2.241799,53.508296 +-2.287203,53.600263 +-2.569544,53.530104 +-2.276366,53.576739 +-2.1543,53.607439 +-2.270389,53.525259 +-2.311324,53.604814 +-2.357592,53.392907 +-2.249079,53.492425 +-2.257523,53.465757 +-2.316753,53.43366 +-2.518995,53.489733 +-2.388269,53.541455 +-2.157504,53.61156 +-2.319274,53.502793 +-2.345523,53.38621 +-2.115564,53.535702 +-2.36291,53.489311 +-2.114462,53.457261 +-2.566384,53.57925 +-2.599155,53.468963 +-2.099951,53.370364 +-2.392069,53.511762 +-2.427375,53.58416 +-2.119193,53.543896 +-2.220721,53.415729 +-2.241595,53.48578 +-2.128421,53.421931 +-2.480259,53.593532 +-2.260696,53.457382 +-2.413662,53.587489 +-2.129556,53.478261 +-2.129162,53.536757 +-2.521586,53.509245 +-2.502133,53.520627 +-2.121807,53.560584 +-2.146806,53.603844 +-2.234362,53.398382 +-2.696802,53.590246 +-2.240763,53.540998 +-2.325556,53.376181 +-2.254453,53.395725 +-2.249055,53.516685 +-2.230331,53.398398 +-2.501505,53.5798 +-2.630273,53.547911 +-2.679567,53.535794 +-2.138146,53.552846 +-2.08776,53.471162 +-2.11317,53.37348 +-2.108101,53.608415 +-2.350914,53.487586 +-2.632708,53.500699 +-2.376015,53.483446 +-2.225262,53.455117 +-2.336567,53.525711 +-2.43076,53.590179 +-2.224584,53.480726 +-2.431671,53.595038 +-2.298161,53.474012 +-2.176131,53.525741 +-2.07752,53.465353 +-2.180442,53.56771 +-2.319537,53.601853 +-2.239236,53.473561 +-2.471291,53.516698 +-2.214031,53.467595 +-2.145737,53.600465 +-2.204639,53.459864 +-2.349333,53.385085 +-2.372947,53.379314 +-2.22876,53.433502 +-2.237397,53.564995 +-2.258889,53.489645 +-2.25011,53.475633 +-2.087286,53.490092 +-2.313868,53.438432 +-2.191961,53.627248 +-2.63193,53.490951 +-2.432985,53.600948 +-2.217514,53.591898 +-2.155233,53.350934 +-2.293274,53.368319 +-2.221123,53.5944 +-2.328984,53.563196 +-2.251015,53.47582 +-2.403806,53.524927 +-2.177883,53.342741 +-2.271103,53.570774 +-2.255708,53.499566 +-2.324686,53.42776 +-2.340711,53.613443 +-2.391866,53.546962 +-2.402961,53.524948 +-2.400349,53.555086 +-2.586326,53.569851 +-2.334544,53.402952 +-2.533956,53.590005 +-2.482943,53.506944 +-2.178792,53.591747 +-2.334402,53.417415 +-2.234076,53.477706 +-2.240569,53.456201 +-2.518055,53.50286 +-2.569667,53.480792 +-2.246247,53.513572 +-2.253278,53.450971 +-2.378483,53.530385 +-2.076774,53.477947 +-2.241367,53.594073 +-2.099287,53.485103 +-2.57958,53.535889 +-2.232454,53.464936 +-2.28582,53.54089 +-2.620945,53.538549 +-2.313474,53.417561 +-2.295536,53.406317 +-2.275616,53.55898 +-2.260207,53.507952 +-2.221696,53.594057 +-2.309456,53.429877 +-2.488588,53.52186 +-2.330244,53.507877 +-2.238435,53.518729 +-2.244984,53.459249 +-2.206912,53.447294 +-2.396205,53.525132 +-2.702172,53.535052 +-2.145933,53.407592 +-2.069014,53.459228 +-2.231919,53.471823 +-2.246722,53.462921 +-2.237544,53.604705 +-2.157678,53.597448 +-2.210441,53.624628 +-2.418969,53.558941 +-2.106482,53.481987 +-2.505718,53.548089 +-2.336483,53.562689 +-2.216384,53.500875 +-2.233366,53.469177 +-2.22541,53.522647 +-2.287996,53.461292 +-2.262269,53.460911 +-2.343033,53.371917 +-2.15476,53.40679 +-2.42742,53.438762 +-2.161223,53.409433 +-2.134558,53.39726 +-2.095547,53.490769 +-2.114243,53.538076 +-2.240967,53.486591 +-2.161158,53.515353 +-2.256732,53.511779 +-2.184339,53.602515 +-2.391785,53.54636 +-2.243347,53.504868 +-2.142957,53.623101 +-2.377095,53.48116 +-2.241003,53.474402 +-2.160942,53.418602 +-2.424772,53.582147 +-2.241859,53.508368 +-2.247098,53.426526 +-2.268014,53.49553 +-2.098905,53.489579 +-2.167849,53.605497 +-2.279018,53.380668 +-2.360725,53.480455 +-2.333941,53.512137 +-2.312512,53.442336 +-2.093875,53.545554 +-2.45425,53.570299 +-2.24012,53.371287 +-2.172854,53.498969 +-2.215691,53.471116 +-2.357007,53.452234 +-2.483285,53.493218 +-2.17419,53.585759 +-2.177573,53.372916 +-2.175124,53.464576 +-2.300735,53.47362 +-2.217939,53.445459 +-2.238231,53.44746 +-2.343631,53.40511 +-2.388788,53.431757 +-2.640517,53.547659 +-2.6282,53.558726 +-2.149215,53.408514 +-2.177832,53.409733 +-2.231269,53.438126 +-2.245499,53.470213 +-2.212398,53.454376 +-2.275467,53.368541 +-2.090889,53.546563 +-2.181158,53.459632 +-2.176934,53.468933 +-2.207304,53.592456 +-2.370218,53.470099 +-2.101343,53.487905 +-2.277237,53.439799 +-2.159507,53.621741 +-2.547155,53.46914 +-2.202583,53.442448 +-2.155517,53.391805 +-2.195538,53.553835 +-2.292778,53.610964 +-2.13583,53.423568 +-2.168858,53.415283 +-2.147558,53.589956 +-2.197184,53.622161 +-2.125226,53.547781 +-2.399597,53.55374 +-2.250285,53.495137 +-2.240005,53.468382 +-2.184143,53.411746 +-2.196838,53.550912 +-2.117556,53.378114 +-2.225903,53.456572 +-2.178736,53.399431 +-2.395724,53.479985 +-2.512643,53.519153 +-2.510831,53.552759 +-2.222878,53.594774 +-2.235891,53.47621 +-2.311101,53.593076 +-2.121132,53.467097 +-2.218448,53.380345 +-2.136591,53.388583 +-2.149916,53.415146 +-2.155284,53.591474 +-2.220056,53.409402 +-2.089152,53.488598 +-2.340516,53.485845 +-2.097299,53.485626 +-2.167514,53.459994 +-2.336644,53.52589 +-2.143001,53.551132 +-2.255667,53.502694 +-2.330058,53.563426 +-2.133315,53.456432 +-2.237926,53.471119 +-2.100916,53.542753 +-2.13849,53.556404 +-2.317021,53.388725 +-2.254286,53.483633 +-2.254409,53.466375 +-2.147756,53.620615 +-2.213416,53.513213 +-2.359491,53.480729 +-2.624256,53.542028 +-2.22266,53.470087 +-2.272238,53.477238 +-2.568175,53.595699 +-2.004702,53.558759 +-2.158676,53.343595 +-2.166013,53.599981 +-2.283835,53.462974 +-2.08914,53.489983 +-2.290899,53.390275 +-2.577289,53.536098 +-2.550239,53.601446 +-2.579109,53.572133 +-2.638331,53.534763 +-2.18251,53.462291 +-2.176242,53.461662 +-2.339768,53.512893 +-2.035837,53.513794 +-2.390162,53.522492 +-2.211425,53.394964 +-2.288259,53.58889 +-2.280171,53.592586 +-2.15772,53.628961 +-2.599278,53.47662 +-2.323427,53.563139 +-2.1126,53.583963 +-2.412513,53.592005 +-2.080255,53.414486 +-2.253415,53.478952 +-2.371884,53.472853 +-2.497063,53.495938 +-2.330379,53.39153 +-2.203753,53.498066 +-2.437662,53.571044 +-2.240671,53.468983 +-2.238666,53.484798 +-2.209414,53.612757 +-2.315805,53.451936 +-2.287736,53.536409 +-2.148894,53.415714 +-2.462379,53.567967 +-2.257066,53.527023 +-2.432767,53.601838 +-2.296133,53.390496 +-2.379642,53.562165 +-2.278655,53.481574 +-2.238129,53.483046 +-2.139246,53.630116 +-2.354461,53.475611 +-2.259524,53.388694 +-2.080797,53.461989 +-2.191661,53.444245 +-2.388926,53.512627 +-2.415848,53.577738 +-2.217844,53.379753 +-2.416073,53.536094 +-2.253461,53.486673 +-2.16159,53.438834 +-2.452276,53.549445 +-2.624321,53.551591 +-2.132237,53.521438 +-2.089831,53.467556 +-2.398371,53.580647 +-2.254978,53.483317 +-2.28638,53.413692 +-2.109608,53.449688 +-2.168822,53.485753 +-2.478606,53.560875 +-2.394544,53.526558 +-2.644637,53.545623 +-2.266416,53.396912 +-2.232076,53.464569 +-2.092669,53.477198 +-2.178256,53.399791 +-2.283949,53.534063 +-2.284159,53.531627 +-2.225112,53.455144 +-2.097187,53.574745 +-2.194854,53.52652 +-2.133806,53.531045 +-2.342468,53.46442 +-2.213015,53.514472 +-2.403144,53.402766 +-2.298277,53.591383 +-2.543128,53.566576 +-2.157612,53.587858 +-2.546932,53.599304 +-2.151509,53.61306 +-2.201219,53.459528 +-2.598723,53.516407 +-2.339265,53.563194 +-2.09966,53.566897 +-2.457782,53.546413 +-2.294372,53.570728 +-2.144721,53.418425 +-2.382683,53.442366 +-2.216641,53.400437 +-2.420921,53.541164 +-2.272421,53.599651 +-2.290428,53.598997 +-2.348852,53.524588 +-2.366011,53.520375 +-2.249588,53.555873 +-2.101162,53.411998 +-2.289394,53.542742 +-2.295858,53.595343 +-2.303875,53.59455 +-2.439592,53.573635 +-2.436307,53.584613 +-2.198173,53.413575 +-2.289926,53.60067 +-2.181161,53.456738 +-2.128502,53.548092 +-2.226251,53.457029 +-2.226036,53.456266 +-2.119027,53.54386 +-2.284994,53.399943 +-2.180041,53.394934 +-2.434677,53.59358 +-2.303484,53.655878 +-2.251588,53.442768 +-2.311418,53.477979 +-2.206073,53.441947 +-2.266436,53.479427 +-2.40574,53.580505 +-2.229397,53.504195 +-2.204056,53.441933 +-2.353017,53.448722 +-2.324623,53.600931 +-2.34481,53.467199 +-2.307977,53.535415 +-2.079217,53.365894 +-2.43497,53.570641 +-2.321811,53.451624 +-2.283819,53.541784 +-2.239423,53.477452 +-2.233131,53.418042 +-2.356841,53.49164 +-2.350782,53.39486 +-2.215229,53.481031 +-2.191576,53.445387 +-2.320896,53.483985 +-2.068127,53.440928 +-2.235478,53.477883 +-2.392498,53.623325 +-2.246475,53.529409 +-2.174626,53.423984 +-2.157815,53.528795 +-2.166403,53.506888 +-2.286111,53.532548 +-2.259313,53.494956 +-2.202714,53.498365 +-2.250347,53.467138 +-2.218473,53.502436 +-2.096999,53.644216 +-2.190946,53.442584 +-2.297827,53.58102 +-2.191198,53.42484 +-2.302228,53.401743 +-2.399721,53.554037 +-2.231765,53.415923 +-2.104925,53.486168 +-2.653151,53.534018 +-2.238481,53.540436 +-2.254027,53.47309 +-2.27867,53.44251 +-2.188898,53.37466 +-2.26197,53.515058 +-2.114075,53.537267 +-2.403974,53.580583 +-2.281408,53.594506 +-2.130898,53.551703 +-2.11069,53.529639 +-2.155166,53.612902 +-2.27636,53.601286 +-2.291607,53.456429 +-2.410642,53.623407 +-2.40435,53.52506 +-2.084946,53.548284 +-2.084976,53.495397 +-2.216435,53.507868 +-2.287823,53.442371 +-2.288341,53.461174 +-2.316511,53.50422 +-2.253457,53.6022 +-2.654175,53.545616 +-2.257869,53.465567 +-2.194448,53.474253 +-2.215905,53.468904 +-2.130368,53.614999 +-2.636931,53.578167 +-2.141577,53.522614 +-2.19554,53.534591 +-2.092792,53.643626 +-2.239724,53.493406 +-2.134911,53.456565 +-2.322015,53.502471 +-2.31437,53.437019 +-2.184917,53.416751 +-2.382724,53.495533 +-2.214351,53.41459 +-2.193035,53.501518 +-2.428415,53.56004 +-2.244544,53.495374 +-2.10578,53.490472 +-2.335834,53.130992 +-2.914658,53.197734 +-2.392629,53.062276 +-2.561824,53.416372 +-2.590134,53.394186 +-2.94464,53.283383 +-2.394826,53.227217 +-2.477829,53.061901 +-2.568441,53.424053 +-2.92865,53.208584 +-2.151037,53.285942 +-2.912228,53.195398 +-2.865142,53.192639 +-2.401463,53.24493 +-2.251313,53.112512 +-2.40939,53.094095 +-2.499932,53.22435 +-2.717884,53.318367 +-2.497225,53.260875 +-2.477879,53.381098 +-2.533928,53.191447 +-2.861488,53.145499 +-2.895488,53.190806 +-2.605433,53.337382 +-2.1278,53.275057 +-2.733535,53.377544 +-2.367898,53.157828 +-2.855669,53.166432 +-2.437982,53.167128 +-2.726251,53.339017 +-2.170141,53.231804 +-2.385992,53.084348 +-2.377064,53.219023 +-2.732521,53.356984 +-2.472477,53.27462 +-2.606293,53.422321 +-2.421399,53.332358 +-2.881663,53.2246 +-2.575551,53.334347 +-2.556191,53.397531 +-2.549887,53.427636 +-2.485858,52.985074 +-2.573383,53.40323 +-2.405969,53.234982 +-2.663852,53.314104 +-2.335834,53.134803 +-2.91187,53.280698 +-3.062744,53.27908 +-2.911757,53.265535 +-2.680082,53.270021 +-2.68151,53.027612 +-2.314021,53.097297 +-2.573442,53.403148 +-2.860131,53.192828 +-2.397634,53.100176 +-2.579133,53.393647 +-2.126115,53.263158 +-2.876956,53.200193 +-3.064454,53.28996 +-2.620133,53.182858 +-2.834337,53.182566 +-2.74063,53.33421 +-2.442696,53.277593 +-2.578809,53.414017 +-2.718019,53.28081 +-2.901796,53.234625 +-2.473198,53.250375 +-2.707777,53.372513 +-2.506912,53.066977 +-2.626282,53.384789 +-2.579222,53.262752 +-2.71664,53.365934 +-2.566856,53.209668 +-2.672359,53.314848 +-2.721046,53.292262 +-2.723294,53.231707 +-2.202822,53.173262 +-2.908934,53.29007 +-2.912476,53.21412 +-2.461888,53.229978 +-2.573534,53.397701 +-2.655914,53.349456 +-2.74699,53.336363 +-2.220035,53.355713 +-2.038575,53.209322 +-2.594971,53.408931 +-2.725942,53.329707 +-2.922809,53.275374 +-2.659215,53.14751 +-2.703728,53.343889 +-2.704107,53.028128 +-2.915827,53.178821 +-2.557883,53.411887 +-2.612472,53.394685 +-2.336265,53.071393 +-2.439478,53.098347 +-2.584218,53.377335 +-2.592536,53.292134 +-2.423948,53.363747 +-2.64937,53.393321 +-2.925765,53.277553 +-2.206339,53.164079 +-2.121086,53.271379 +-2.236297,53.302622 +-2.641714,53.391223 +-2.57574,53.397385 +-2.818487,53.180797 +-2.038184,53.35813 +-2.672818,53.3116 +-2.511493,53.079533 +-2.44217,53.188866 +-2.12803,53.266706 +-2.694012,53.330139 +-2.880895,53.195202 +-2.475131,53.437989 +-2.642216,53.326672 +-2.906472,53.29212 +-2.509023,53.196446 +-2.962388,53.231445 +-2.878282,53.282569 +-2.903144,53.278014 +-2.91707,53.149417 +-2.446823,53.093754 +-2.466642,53.102334 +-2.117265,53.359589 +-2.660042,53.152638 +-2.528247,53.067711 +-2.900984,53.192391 +-2.772889,53.266219 +-2.761917,53.048555 +-2.491687,53.005177 +-2.115793,53.343159 +-2.452883,53.113354 +-2.73587,53.336855 +-2.721398,53.366508 +-2.582437,53.38999 +-2.306681,53.349643 +-2.605063,53.1211 +-2.171525,53.274202 +-3.064454,53.28996 +-2.461693,53.079485 +-2.931944,53.198248 +-2.291117,53.11119 +-2.560851,53.15917 +-2.700057,53.336226 +-2.356759,53.167219 +-2.885533,53.18492 +-2.340279,53.075058 +-2.377016,53.302152 +-2.351875,53.202785 +-2.522366,53.068852 +-2.662012,53.095043 +-2.235312,53.319873 +-2.393669,53.151696 +-2.465212,53.116452 +-2.599323,53.065055 +-2.33526,53.118732 +-2.7569,53.278601 +-2.365001,53.144299 +-2.510818,53.398768 +-2.67955,53.260127 +-2.810409,53.271346 +-2.13112,53.257561 +-2.126889,53.256164 +-2.66412,53.448197 +-2.503036,53.063451 +-2.239837,53.146946 +-2.451992,53.085446 +-2.104761,53.346414 +-2.371284,53.070147 +-2.439456,53.094725 +-2.343211,53.070232 +-2.573966,53.40524 +-2.516289,53.260506 +-3.005937,53.292724 +-2.332342,53.122048 +-2.74522,53.38984 +-2.777531,53.194825 +-2.682093,53.036212 +-2.471211,53.246823 +-2.737506,53.335901 +-2.44059,53.186562 +-2.414245,53.095867 +-2.699866,53.311696 +-2.151886,53.288503 +-2.557887,53.405316 +-2.208944,53.161512 +-2.916108,53.257951 +-2.418234,53.312693 +-2.700059,53.328082 +-2.883616,53.259041 +-2.691857,53.312974 +-2.468417,53.251715 +-2.646627,53.432599 +-2.874183,53.25814 +-2.883714,53.181617 +-2.910351,53.256538 +-2.484032,53.336408 +-2.853022,53.081215 +-2.374205,53.215796 +-2.857173,53.132307 +-2.404014,53.138708 +-2.483617,53.436292 +-2.445941,53.093595 +-2.887785,53.194666 +-2.668617,53.051004 +-2.121577,53.259432 +-2.450572,53.063797 +-2.558313,53.337899 +-2.602447,53.38652 +-2.130583,53.253355 +-2.201279,53.348124 +-2.599096,53.386663 +-2.323545,53.15437 +-2.216929,53.164266 +-2.761265,53.02 +-2.527109,53.255353 +-2.215466,53.352476 +-2.399951,53.237034 +-2.724746,53.342415 +-2.317252,53.104094 +-2.682981,53.21199 +-2.909495,53.274128 +-2.914785,53.180483 +-2.822636,53.236519 +-2.917566,53.15095 +-2.777367,53.194853 +-2.30647,53.095933 +-2.743726,53.359386 +-2.557918,53.40537 +-2.717128,53.298353 +-2.376483,53.304742 +-2.21212,53.165686 +-2.473537,53.059617 +-2.539312,53.376881 +-2.258209,53.094097 +-2.882537,53.220495 +-2.431977,53.097952 +-2.067269,53.26068 +-2.816287,53.27527 +-2.125794,53.255689 +-2.238049,53.264056 +-2.027675,53.347005 +-2.921582,53.212046 +-2.475687,53.200485 +-2.967675,53.279863 +-2.018153,53.31578 +-2.50811,53.261026 +-2.237826,53.313081 +-2.653593,53.152377 +-2.853446,53.21116 +-2.128006,53.258572 +-2.405065,53.163056 +-2.594445,53.400376 +-2.729472,53.294557 +-2.912815,53.156794 +-2.586875,53.392369 +-2.529534,53.415046 +-2.72792,53.357686 +-2.52896,53.418518 +-2.524712,53.235813 +-2.735385,53.188072 +-2.874413,53.201066 +-2.415729,53.094855 +-2.893402,53.267543 +-2.695433,53.345502 +-2.721035,53.288909 +-2.74116,53.317973 +-2.508445,53.35867 +-2.925312,53.276019 +-2.563252,53.022577 +-2.37861,53.120966 +-2.251902,53.100888 +-2.599027,53.383895 +-2.368107,53.358458 +-2.463218,53.095012 +-2.723146,53.29313 +-2.357986,53.274875 +-2.413371,53.095088 +-2.45739,53.072131 +-2.581332,53.401609 +-2.952639,53.292326 +-2.91556,53.287727 +-2.366715,53.143656 +-2.579948,53.36843 +-2.286208,53.112047 +-2.426816,53.315431 +-2.899576,53.196645 +-2.435898,53.197617 +-2.53993,53.189092 +-2.637235,53.391319 +-2.907696,53.277665 +-2.951533,53.239173 +-2.361641,53.141182 +-2.588904,53.387882 +-2.599835,53.400718 +-2.507269,53.260895 +-2.826075,53.268056 +-2.594247,53.391532 +-2.932804,53.200614 +-2.699692,53.304749 +-2.766636,53.370855 +-2.577317,53.403894 +-2.117574,53.27007 +-2.20528,53.164835 +-2.208325,53.16039 +-2.731829,53.292052 +-2.772406,53.375725 +-2.348615,53.188448 +-2.740502,53.095911 +-2.465598,53.159104 +-2.284543,53.271397 +-2.41507,53.311454 +-2.13759,53.260305 +-2.742249,53.387629 +-2.923439,53.278875 +-2.218685,53.168281 +-2.610979,53.389138 +-2.512939,53.349977 +-2.557843,53.405353 +-2.658901,53.148456 +-2.751365,53.042258 +-2.537127,53.173194 +-2.907096,53.267036 +-2.631994,53.072527 +-2.74657,53.389688 +-2.584998,53.394742 +-2.339732,53.176042 +-2.572293,53.334336 +-2.537375,53.406876 +-2.545705,53.380717 +-2.660372,53.383274 +-2.577671,53.363362 +-2.11689,53.359958 +-2.923647,53.26556 +-2.64819,53.398829 +-2.508762,53.360062 +-2.554546,53.081866 +-2.160819,53.274667 +-3.046858,53.283868 +-2.735117,53.359413 +-2.768781,53.279577 +-2.113423,53.271063 +-2.386346,53.368243 +-2.738815,53.389871 +-2.469462,53.251333 +-2.595689,53.369853 +-2.449112,53.394549 +-2.587032,53.412502 +-2.559211,53.083588 +-2.527731,53.42984 +-2.612466,53.395296 +-2.501537,53.191174 +-2.574824,53.391852 +-2.391346,53.349755 +-2.559989,53.337442 +-2.501894,52.98836 +-2.536256,53.263986 +-2.577932,53.433679 +-2.417994,53.309673 +-2.88798,53.190376 +-2.252463,53.31351 +-2.549143,53.421276 +-2.509053,53.383144 +-2.594139,53.394589 +-2.221078,53.171117 +-2.707045,53.318332 +-2.49182,53.005069 +-2.554774,53.37761 +-2.702741,53.329558 +-2.477249,53.07963 +-2.524739,53.067646 +-2.319678,53.171334 +-2.684716,53.310418 +-2.516781,53.193096 +-2.236139,53.219485 +-2.901054,53.168605 +-2.883093,53.259872 +-2.607581,53.134373 +-2.734832,53.391711 +-2.454131,53.104189 +-2.594567,53.369176 +-2.5627,53.380206 +-2.852981,53.188538 +-2.593745,53.393305 +-2.532199,53.398333 +-2.967511,53.279918 +-2.237209,53.312732 +-2.666592,53.342557 +-2.541387,53.188339 +-2.897658,53.189369 +-2.715699,53.38869 +-2.230327,53.336278 +-2.749281,53.381338 +-2.318408,53.094715 +-2.393654,53.151678 +-2.342791,53.09436 +-2.440635,53.186642 +-2.471157,53.078109 +-2.416541,53.311467 +-2.735085,53.359269 +-2.852284,53.212211 +-2.881172,53.260497 +-2.963983,53.28508 +-2.588679,53.392297 +-2.448639,53.097513 +-2.490791,53.383544 +-2.728749,53.374571 +-2.897496,53.271153 +-2.512111,53.100133 +-2.437948,53.178427 +-2.898236,53.281422 +-2.653634,53.205251 +-2.874487,53.211295 +-2.896829,53.288723 +-2.127991,53.258805 +-2.811726,53.15002 +-2.86273,53.209673 +-2.227422,53.326603 +-2.496203,53.068829 +-2.864173,53.189868 +-2.826111,53.175774 +-2.556907,53.32098 +-2.470581,53.250852 +-2.745538,53.038204 +-2.12345,53.264383 +-2.351087,53.353404 +-2.573388,53.451696 +-2.391848,53.199694 +-2.425846,53.374715 +-2.43777,53.320919 +-2.574673,53.397426 +-2.84547,53.194722 +-2.33519,53.123155 +-2.725254,53.295301 +-2.092234,53.297778 +-2.335862,53.134614 +-2.692641,53.326174 +-2.577582,53.436719 +-2.740363,53.389852 +-2.772581,53.264927 +-2.719097,53.38689 +-2.737857,53.389266 +-2.509679,53.078903 +-2.799416,53.264813 +-2.842697,53.195272 +-2.881626,53.267964 +-2.531156,53.406355 +-2.525422,53.260763 +-2.63325,53.341678 +-2.570031,53.334778 +-2.885185,53.192707 +-2.647347,53.430447 +-2.593421,53.391581 +-2.728888,53.294641 +-2.522981,53.19217 +-2.808081,53.239361 +-2.425202,53.133259 +-2.890072,53.194514 +-2.542729,53.377243 +-2.335748,53.0701 +-2.525313,53.408233 +-3.06456,53.290004 +-2.488099,53.379492 +-2.628439,53.40973 +-2.452478,53.101804 +-2.463689,53.197009 +-2.462338,53.09089 +-2.662412,53.124957 +-2.559162,53.455413 +-2.969282,53.290583 +-2.672225,53.045114 +-2.905113,53.26332 +-2.227726,53.104622 +-3.044833,53.296777 +-2.347823,53.197853 +-2.606821,53.093144 +-2.555897,53.029156 +-2.522226,53.068439 +-2.714639,53.318251 +-2.573733,53.405826 +-2.476676,53.099328 +-3.036819,53.280567 +-3.035886,53.26497 +-2.599903,53.414137 +-2.63696,53.135883 +-2.542187,53.188893 +-2.593584,53.392533 +-2.618408,53.227282 +-2.678311,53.323839 +-2.418519,53.306544 +-2.597396,53.42953 +-2.544384,53.415087 +-2.43978,53.18492 +-2.570719,53.378434 +-2.322902,53.236027 +-2.096324,53.348551 +-2.75369,53.287071 +-2.506325,53.390167 +-2.745545,53.207794 +-2.621139,53.358892 +-2.918973,53.253883 +-2.129971,53.244322 +-2.33508,53.12249 +-2.893985,53.202764 +-2.468735,53.09695 +-2.027532,53.359221 +-2.430859,53.089174 +-2.555852,53.029138 +-2.589983,53.387625 +-2.820988,53.224773 +-2.611942,53.390238 +-2.333029,53.2976 +-2.435594,53.089355 +-2.449804,53.274762 +-3.061067,53.28768 +-2.540604,53.348336 +-2.686746,53.331179 +-2.207315,53.341381 +-2.413604,53.075761 +-2.240869,53.26441 +-2.895816,53.287625 +-2.894796,53.207189 +-2.622114,53.38864 +-2.400154,53.215433 +-2.874175,53.254787 +-2.140558,53.301317 +-2.1183,53.180109 +-2.123351,53.25579 +-2.540934,53.089273 +-2.892323,53.191953 +-2.229,53.335283 +-2.47741,53.380821 +-2.59525,53.116017 +-2.177286,53.249636 +-2.521087,53.242085 +-2.337718,53.207267 +-2.516557,53.193124 +-2.490114,53.264329 +-2.381544,53.226029 +-2.349751,53.226846 +-2.470163,53.272868 +-2.882296,53.220398 +-2.600218,53.280455 +-2.94554,53.288805 +-2.395774,53.229326 +-2.622173,53.393727 +-2.59249,53.38737 +-2.483415,53.384033 +-2.890927,53.260991 +-2.732551,53.362215 +-2.863147,53.171565 +-2.521622,53.453228 +-2.383756,53.193662 +-2.367526,53.200104 +-2.251219,53.106732 +-2.921355,53.202159 +-2.636147,53.241616 +-2.488415,53.236264 +-2.295152,53.115791 +-2.867051,53.212338 +-2.396514,53.108332 +-2.365132,53.289901 +-2.507246,53.062391 +-2.96019,53.292544 +-2.898373,53.280765 +-2.863551,53.173818 +-2.723977,53.363481 +-2.933284,53.201365 +-2.42055,53.103818 +-2.385027,53.066553 +-2.909558,53.156945 +-2.862306,53.154258 +-2.507947,53.202959 +-2.396013,53.107471 +-2.703154,53.33823 +-2.398222,53.275098 +-2.236378,53.322594 +-2.437945,53.17814 +-2.897333,53.21108 +-2.322902,53.236027 +-2.893217,53.272318 +-2.338389,53.083414 +-2.244403,53.352888 +-2.585117,53.367227 +-2.791722,53.103015 +-2.591815,53.387517 +-2.45853,53.082437 +-2.843442,53.195105 +-2.871019,53.192398 +-2.203164,53.163392 +-2.525034,53.256009 +-2.410517,53.094837 +-2.727521,53.366902 +-2.223433,53.235608 +-2.734881,53.390192 +-2.680079,53.21126 +-2.733594,53.377445 +-2.382002,53.228724 +-2.952322,53.240309 +-2.143959,53.259677 +-2.852949,53.188439 +-2.522196,53.256813 +-2.596937,53.386072 +-2.724601,53.378102 +-2.58326,53.384207 +-2.54247,53.413594 +-2.521108,53.187063 +-2.735256,53.359618 +-2.597225,53.392668 +-2.899437,53.277179 +-2.95725,53.299948 +-2.361446,53.141065 +-2.904142,53.279822 +-2.438191,53.089255 +-2.664169,53.428224 +-2.214712,53.163542 +-2.59028,53.411291 +-2.472751,53.250601 +-2.878142,53.270623 +-2.86213,53.16341 +-2.507584,53.070857 +-2.532575,53.084636 +-2.660445,53.145804 +-2.203244,53.328633 +-2.724209,53.294732 +-3.039526,53.293254 +-2.535863,53.311692 +-2.122103,53.349139 +-2.12025,53.256665 +-2.92658,53.270841 +-2.890053,53.266562 +-2.520843,53.068822 +-2.910046,53.266878 +-2.588442,53.384972 +-2.889226,53.260635 +-2.55032,53.073643 +-2.381987,53.22867 +-2.864974,53.208093 +-2.512995,53.428457 +-2.505604,53.359842 +-2.377626,53.145069 +-3.085943,53.298486 +-2.307203,53.121181 +-2.594136,53.406229 +-2.273992,53.342442 +-2.153342,53.26362 +-2.524871,53.256136 +-2.21882,53.297567 +-2.761467,53.134639 +-2.58374,53.376429 +-2.896098,53.283173 +-2.503269,53.238152 +-2.881877,53.272169 +-3.013898,53.293736 +-2.235146,53.24604 +-2.216783,53.301122 +-2.75267,53.333137 +-2.665387,53.31344 +-2.906042,53.27534 +-2.701124,53.312426 +-2.585846,53.39294 +-2.640654,53.21938 +-2.622777,53.401112 +-2.505103,53.383466 +-2.734519,53.364828 +-2.574865,53.40609 +-2.560618,53.383057 +-2.639847,53.334901 +-2.530771,53.001108 +-2.445718,53.200538 +-2.452141,53.036931 +-2.69974,53.266339 +-2.204181,53.260829 +-2.628437,53.432049 +-2.666286,53.130985 +-2.490287,53.341021 +-2.595286,53.422879 +-2.436462,53.281014 +-2.472124,53.083237 +-2.975622,53.263303 +-2.910065,53.256487 +-2.400319,53.29893 +-2.889295,53.196758 +-2.579687,53.262821 +-2.919545,53.253951 +-2.899075,53.179866 +-2.132063,53.334729 +-2.545768,53.433858 +-2.71882,53.365112 +-2.52937,53.256332 +-2.880987,53.196775 +-2.305545,53.161312 +-2.512453,53.418428 +-2.508882,53.396574 +-2.442356,53.057176 +-2.391473,53.363588 +-2.121549,53.254731 +-2.396555,53.141924 +-2.574084,53.434093 +-2.712769,53.339305 +-2.571946,53.428432 +-2.445786,53.382786 +-2.381762,53.22868 +-2.73364,53.376635 +-2.814609,53.174379 +-2.703929,53.375268 +-2.586331,53.389953 +-2.771614,53.278668 +-2.668017,53.397164 +-2.378281,53.120967 +-2.047624,53.200671 +-2.304199,53.095777 +-2.527627,53.418991 +-2.958631,53.295289 +-2.325436,53.097905 +-2.661392,53.075045 +-2.82389,53.268269 +-2.570026,53.334428 +-2.570161,53.334373 +-2.92216,53.300962 +-2.568469,53.408116 +-2.228179,53.330664 +-2.910234,53.264423 +-2.628797,53.302393 +-2.423323,53.294643 +-2.877231,53.262774 +-2.247713,53.167209 +-2.531035,53.41476 +-2.716152,53.285747 +-2.484925,53.379379 +-2.442478,53.067549 +-2.556953,53.189634 +-2.44161,53.093602 +-2.481279,53.096891 +-2.521819,53.416509 +-2.520478,53.242465 +-2.335061,53.121978 +-2.021923,53.350143 +-2.324704,53.111813 +-2.476625,53.020358 +-2.400361,53.096364 +-2.360171,53.072698 +-2.431131,53.091007 +-2.396175,53.076296 +-2.457003,53.272011 +-2.911405,53.265196 +-2.743024,53.389818 +-3.064227,53.289854 +-2.568114,53.330662 +-2.901581,53.179496 +-2.958811,53.295252 +-2.069534,53.261443 +-2.692667,53.31297 +-2.594352,53.391541 +-2.593182,53.391708 +-2.286357,53.109808 +-2.687961,53.018847 +-2.901854,53.198911 +-2.719174,53.332615 +-2.418545,53.312323 +-2.482894,53.00239 +-2.908207,53.278416 +-2.913528,53.20373 +-2.207501,53.23748 +-2.226482,53.211575 +-2.67307,53.322844 +-2.237017,53.313299 +-2.486475,53.248865 +-2.585012,53.39245 +-2.120084,53.352215 +-2.635305,53.385918 +-2.450877,53.101541 +-2.302538,53.277995 +-2.218027,53.262719 +-2.635893,53.386059 +-2.571265,53.435994 +-2.917466,53.273096 +-2.584304,53.390206 +-2.460913,53.073591 +-2.447468,53.086812 +-2.596937,53.427932 +-2.729481,53.210554 +-2.512381,53.136673 +-2.6681,53.154463 +-2.696399,53.306152 +-2.894388,53.196954 +-2.622901,53.436401 +-2.602197,53.392274 +-2.449768,53.324147 +-2.523782,53.235718 +-2.546231,53.250269 +-2.376417,53.188013 +-2.820046,53.268745 +-2.670879,53.210845 +-2.65516,53.405128 +-3.082521,53.296072 +-2.547186,53.249977 +-2.718761,53.29819 +-2.599461,53.117991 +-2.915499,53.179588 +-2.517691,53.073546 +-2.419706,53.221047 +-2.542772,53.378249 +-2.851917,53.200546 +-2.669379,53.253866 +-2.468058,53.106131 +-2.663171,53.372769 +-2.704459,53.329907 +-2.349364,53.151744 +-2.712147,53.171161 +-2.529778,53.187502 +-2.553313,53.361149 +-2.967436,53.279919 +-2.606063,53.398754 +-2.707289,53.314025 +-2.582841,53.398618 +-2.592984,53.236724 +-2.936504,53.286521 +-2.529783,53.187888 +-2.379656,53.340921 +-2.47735,53.099487 +-2.904872,53.293076 +-2.543143,53.40267 +-2.430902,53.114388 +-2.898911,53.258522 +-2.924397,53.286427 +-2.297746,53.162555 +-2.422426,53.342053 +-2.947145,53.302357 +-2.23271,53.321784 +-2.493948,53.460051 +-2.612746,53.390693 +-2.596299,53.38345 +-2.535489,53.238578 +-2.470444,53.245244 +-2.590344,53.399596 +-2.723054,53.371118 +-2.136386,53.296405 +-2.240142,53.273814 +-2.609278,53.228821 +-2.037946,53.310284 +-2.720571,53.368229 +-2.209012,53.335346 +-2.802577,53.266302 +-2.367573,53.209021 +-2.4316,53.110943 +-2.302568,53.277986 +-2.395739,53.280725 +-2.880265,53.192196 +-2.591081,53.386595 +-2.812979,53.272452 +-2.182835,53.303138 +-2.109833,53.268585 +-2.902137,53.204527 +-2.172412,53.222767 +-2.716039,53.331043 +-2.358387,53.199161 +-2.934532,53.204358 +-3.059006,53.289865 +-2.138628,53.252348 +-2.517015,53.24737 +-2.153565,53.263144 +-2.38941,53.148672 +-2.215259,53.347272 +-2.907954,53.265771 +-2.672615,53.379763 +-2.895025,53.194468 +-2.512356,53.397781 +-2.532777,53.410914 +-2.477886,53.307857 +-2.580047,53.416582 +-2.519485,53.452141 +-2.727272,53.365501 +-2.50038,53.143223 +-2.552788,53.27414 +-2.593498,53.367967 +-2.512689,53.23653 +-2.335951,53.130713 +-2.140478,53.263331 +-2.160914,53.251889 +-2.430078,53.109636 +-2.144125,53.246796 +-2.672073,53.316701 +-2.305025,53.231301 +-2.436824,53.086932 +-2.483075,53.44299 +-2.682109,53.036302 +-2.722596,53.337808 +-2.794754,53.348873 +-2.536429,53.430934 +-2.643291,53.183437 +-2.354475,53.086019 +-2.652962,53.248662 +-2.500098,53.262975 +-2.502159,53.257231 +-2.874457,53.200994 +-2.198045,53.139715 +-2.396401,53.096 +-2.776352,53.097202 +-2.814284,53.270124 +-2.522524,53.256721 +-2.537165,53.240863 +-2.537774,53.178261 +-2.623776,53.41593 +-2.776906,53.100605 +-2.114849,53.271637 +-2.508743,53.371047 +-2.60974,53.388703 +-2.782342,53.101378 +-2.51162,53.115426 +-2.520759,53.451686 +-2.894359,53.208496 +-2.92464,53.209406 +-2.516302,53.430546 +-2.416716,53.301732 +-2.581135,53.370572 +-2.875476,53.227504 +-2.492778,53.343428 +-2.605629,53.391493 +-2.424238,53.091598 +-2.403282,53.326767 +-2.126336,53.241477 +-2.239733,53.101408 +-2.511451,53.322325 +-2.485159,53.257023 +-2.504912,53.294892 +-2.418498,53.305923 +-2.336251,53.073461 +-2.912335,53.195478 +-2.726905,53.290069 +-2.687327,53.312209 +-2.969992,53.273588 +-2.910608,53.15922 +-2.436811,53.087112 +-2.923027,53.266005 +-2.433075,53.066046 +-2.388983,53.215506 +-2.392334,53.319945 +-2.595462,53.286816 +-2.409677,53.070875 +-2.629049,53.132554 +-2.376483,53.304742 +-2.42133,53.091959 +-2.123581,53.257587 +-2.655579,53.213025 +-2.595675,53.391471 +-2.668374,53.158633 +-2.366187,53.302815 +-2.395058,53.09613 +-2.59285,53.269291 +-2.527697,53.418541 +-2.736562,53.353444 +-2.640953,53.415587 +-2.445087,53.087621 +-2.542304,53.191041 +-2.690325,53.316669 +-2.517816,53.261578 +-2.430887,53.09197 +-2.305455,53.161268 +-2.63224,53.406357 +-2.82273,53.174233 +-2.488167,53.061608 +-2.217964,53.167761 +-2.741222,53.318125 +-2.786862,53.132964 +-2.793173,53.12262 +-2.489292,53.255379 +-2.592106,53.38677 +-2.742473,53.359897 +-2.445313,53.323004 +-2.733629,53.362029 +-2.356931,53.225728 +-2.551392,53.08278 +-2.534248,53.265299 +-2.57167,53.333791 +-2.890571,53.269111 +-2.319377,53.259542 +-2.534974,53.431318 +-2.596432,53.376825 +-2.604245,53.422214 +-2.34854,53.227146 +-2.76972,53.241691 +-2.521713,53.453282 +-2.59566,53.386105 +-2.357639,53.202768 +-2.441409,53.091464 +-2.493635,53.465562 +-2.894084,53.201756 +-2.884499,53.273507 +-2.733627,53.376779 +-2.791589,53.199011 +-2.597538,53.42143 +-2.509854,53.365936 +-2.631618,53.400922 +-2.924667,53.286416 +-2.371678,53.212775 +-2.165139,53.185348 +-2.677039,53.351612 +-2.69988,53.307975 +-2.219782,53.166374 +-2.468319,53.077967 +-2.984108,53.304458 +-2.92358,53.283323 +-2.479561,53.125025 +-2.526765,53.079601 +-2.278058,53.22405 +-2.59536,53.38616 +-2.635633,53.328254 +-2.22076,53.164574 +-2.128899,53.24658 +-2.663654,53.325521 +-2.594491,53.369149 +-2.690185,53.312588 +-2.61003,53.389035 +-2.518014,53.348553 +-2.873242,53.250182 +-2.063586,53.294156 +-2.427937,53.203875 +-2.666551,53.382305 +-2.863513,53.240401 +-2.604301,53.411275 +-2.646417,53.321481 +-2.5285,53.236812 +-2.327244,53.153129 +-2.436495,53.066276 +-2.885188,53.196492 +-2.698994,53.142393 +-2.286495,53.099039 +-2.691479,53.325795 +-2.910567,53.261777 +-2.541991,53.440976 +-2.855589,53.195504 +-2.844101,53.18443 +-2.886908,53.194268 +-2.90952,53.269633 +-2.559949,53.437423 +-2.955306,53.300224 +-2.393574,53.102131 +-2.335275,53.126364 +-2.605223,53.407333 +-2.03586,53.256702 +-2.875768,53.192624 +-2.493571,53.196098 +-2.237332,53.305163 +-2.567857,53.377953 +-2.587882,53.035888 +-2.401177,53.147068 +-2.700409,53.322875 +-2.522479,53.256722 +-2.528063,53.070948 +-2.640112,53.327547 +-2.818352,53.180798 +-2.559774,53.408076 +-2.513873,53.057544 +-2.334993,53.070929 +-2.865556,53.249591 +-2.903793,53.199274 +-2.594247,53.391532 +-2.469143,53.02188 +-2.311889,53.095676 +-2.512953,53.258543 +-2.379566,53.340957 +-2.70143,53.310078 +-2.652659,53.38124 +-2.798972,53.199969 +-2.44433,53.192211 +-2.52635,53.419104 +-2.361588,53.143735 +-2.441423,53.09141 +-2.441916,53.347322 +-2.598104,53.393104 +-2.591614,53.395743 +-2.44888,53.094798 +-2.322768,53.236063 +-2.513128,53.398227 +-2.039597,53.358795 +-2.562253,53.074144 +-2.921393,53.253478 +-2.364995,53.298468 +-2.211546,53.164555 +-2.515825,53.193262 +-2.732222,53.360581 +-2.920803,53.272746 +-2.429974,53.342835 +-2.587949,53.408102 +-2.191888,53.156903 +-2.635313,53.393523 +-2.663009,53.090947 +-2.742867,53.360093 +-2.165641,53.183594 +-2.336205,53.138371 +-2.439574,53.194062 +-2.492342,53.062696 +-2.922439,53.276293 +-2.209276,53.143794 +-2.869405,53.202874 +-2.467744,53.17488 +-2.922809,53.276084 +-2.335906,53.126794 +-2.508956,53.139025 +-2.343441,53.091652 +-2.584537,53.377576 +-2.598106,53.420079 +-2.537212,53.238633 +-2.518543,53.192756 +-2.416476,53.310973 +-2.445444,53.087448 +-2.926099,53.203489 +-2.595146,53.404229 +-2.758959,53.365951 +-2.152015,53.28248 +-2.958575,53.295443 +-2.578992,53.406492 +-2.507728,53.360255 +-2.938331,53.278165 +-2.388683,53.140997 +-2.772526,53.351644 +-2.512185,53.452388 +-2.600692,53.400704 +-2.338356,53.153313 +-2.665735,53.393609 +-2.225682,53.335406 +-2.538763,53.087593 +-2.720397,53.290225 +-2.570453,53.334902 +-2.916978,53.276911 +-2.550532,53.281746 +-2.121985,53.260483 +-2.917196,53.25209 +-2.509319,53.396617 +-2.456213,53.083605 +-2.699687,53.329189 +-2.510223,53.398024 +-2.400788,53.299297 +-2.771623,53.378976 +-2.122504,53.258469 +-2.333636,53.354236 +-2.536901,53.46472 +-2.464913,53.102655 +-2.574754,53.315259 +-2.573282,53.359958 +-2.34656,53.197228 +-2.586725,53.390185 +-2.338248,53.143381 +-2.244882,53.318577 +-2.322539,53.313152 +-2.13417,53.321881 +-2.74411,53.363267 +-2.725869,53.360737 +-2.339297,53.079187 +-2.46148,53.105644 +-2.898252,53.280739 +-2.669309,53.342478 +-2.224799,53.201906 +-2.585013,53.439622 +-2.911883,53.277786 +-2.29651,53.085162 +-2.230225,53.325833 +-2.868197,53.200905 +-2.89449,53.244254 +-2.724737,53.379072 +-2.842934,53.197428 +-2.17276,53.234704 +-2.131484,53.258703 +-2.609363,53.389685 +-2.682202,53.033667 +-2.347127,53.13949 +-2.515478,53.190531 +-3.056482,53.287289 +-2.597132,53.428947 +-2.230856,53.164645 +-2.741239,53.360669 +-2.188313,53.310096 +-2.121999,53.255009 +-2.35478,53.309699 +-2.568989,53.372653 +-2.728308,53.241115 +-2.450916,53.092444 +-2.703404,53.336979 +-2.436056,53.08929 +-2.761485,53.134828 +-2.28617,53.104092 +-2.90401,53.20605 +-2.694657,53.270036 +-2.664114,53.406364 +-2.602733,53.400415 +-2.558948,53.411666 +-2.254078,53.173505 +-2.127961,53.258599 +-2.410939,53.364215 +-2.879391,53.215313 +-2.922938,53.276505 +-2.489137,53.247083 +-2.865895,53.204041 +-2.584978,53.318724 +-2.557599,53.380958 +-2.594319,53.399927 +-2.814929,53.198333 +-2.858333,53.206954 +-2.901203,53.190718 +-2.561117,53.416438 +-2.509302,53.196023 +-2.466826,53.087573 +-2.469342,53.25128 +-2.649569,53.321455 +-2.72049,53.369704 +-2.24245,53.339706 +-2.21474,53.163174 +-2.734793,53.357158 +-2.473188,53.250761 +-2.794749,53.200689 +-2.171138,53.229942 +-2.109869,53.335147 +-2.739196,53.361545 +-2.584197,53.3988 +-2.126929,53.239301 +-2.02947,53.359121 +-2.467594,53.103292 +-2.527648,53.063893 +-2.805019,53.240667 +-2.386294,53.118002 +-2.885854,53.193943 +-2.654764,53.110419 +-2.970818,53.298778 +-2.598446,53.388581 +-2.613433,53.240755 +-2.598175,53.374623 +-2.452084,53.212281 +-2.396607,53.076241 +-2.379302,53.312904 +-2.206111,53.238228 +-2.728839,53.370112 +-2.525431,53.069341 +-2.600948,53.394357 +-2.197173,53.161415 +-2.306354,53.142559 +-2.500227,53.288179 +-2.120763,53.263011 +-2.568002,53.397871 +-2.898551,53.287829 +-2.559156,53.378138 +-2.41532,53.080384 +-2.507031,53.354694 +-2.434682,53.080387 +-2.466795,53.249986 +-2.61252,53.392806 +-2.515623,53.2188 +-2.148359,53.249029 +-2.191993,53.156911 +-2.058782,53.291678 +-2.313241,53.15011 +-2.867147,53.213362 +-2.58301,53.407722 +-2.460764,53.073547 +-2.29745,53.089475 +-2.52333,53.25643 +-2.655715,53.349278 +-2.618968,53.420557 +-2.594283,53.231018 +-2.188694,53.280972 +-2.857889,53.207209 +-2.609243,53.422315 +-2.482131,53.246357 +-2.509694,53.36635 +-2.704218,53.310727 +-2.273836,53.304132 +-2.893585,53.194299 +-2.701029,53.310314 +-2.757846,53.083486 +-2.888927,53.262876 +-2.929537,53.244039 +-2.452546,53.417735 +-2.302553,53.277968 +-2.536793,53.173969 +-2.588419,53.365862 +-2.723519,53.363942 +-2.21553,53.168566 +-2.486566,53.067889 +-2.524813,53.068814 +-2.697265,53.326165 +-2.437931,53.071017 +-2.596563,53.400168 +-2.390064,53.349211 +-2.481381,53.250297 +-2.418173,53.312585 +-2.457788,53.092759 +-2.463004,53.105647 +-2.705415,53.37419 +-2.540161,53.189594 +-2.441528,53.092856 +-2.87557,53.200527 +-2.612521,53.400213 +-2.731565,53.362581 +-2.547804,53.186863 +-2.923495,53.28007 +-2.190956,53.310415 +-2.396955,53.32775 +-2.894327,53.19761 +-2.857402,53.206799 +-2.66893,53.318256 +-2.519866,53.060772 +-2.213219,53.167033 +-2.833118,53.179087 +-2.984029,53.29644 +-2.467176,53.10608 +-2.354831,53.294085 +-2.42231,53.134087 +-2.481573,53.28075 +-2.857874,53.207191 +-2.442289,53.088476 +-2.418366,53.312459 +-2.80482,53.26679 +-2.521423,53.236393 +-2.61512,53.22782 +-2.542187,53.188884 +-2.701072,53.319356 +-2.682372,53.261262 +-2.902471,53.167003 +-2.510286,53.36562 +-2.364959,53.144578 +-2.441798,53.095867 +-2.736398,53.340447 +-2.877592,53.268695 +-2.704896,53.332763 +-2.818442,53.180825 +-2.43248,53.344121 +-2.595097,53.408274 +-2.03577,53.256613 +-2.129526,53.285302 +-2.254468,53.097835 +-2.142753,53.293539 +-2.387721,53.205182 +-2.506396,53.356899 +-2.568436,53.093693 +-2.505373,53.382207 +-2.467922,53.095021 +-2.489433,53.14165 +-2.812045,53.198622 +-2.574226,53.155016 +-2.381484,53.226056 +-2.316901,53.313976 +-2.58288,53.390501 +-2.449788,53.085895 +-2.222488,53.33925 +-2.777994,53.276542 +-2.556758,53.189527 +-2.888548,53.193231 +-2.77994,53.275531 +-2.507465,53.357101 +-2.57086,53.412536 +-2.361288,53.14538 +-2.120446,53.251622 +-2.213816,53.334924 +-2.711248,53.299359 +-2.447559,53.204801 +-2.38358,53.306302 +-2.47583,53.021269 +-2.528469,53.39834 +-3.050861,53.291105 +-2.467427,53.101702 +-2.893113,53.192513 +-2.135991,53.262014 +-2.651951,53.204846 +-2.899891,53.279531 +-2.492853,53.286089 +-2.552368,53.077346 +-2.864825,53.249767 +-2.767506,53.357384 +-2.700912,53.305946 +-2.12022,53.256611 +-2.785844,53.04279 +-2.356886,53.168064 +-2.213295,53.323977 +-2.381927,53.228697 +-2.82129,53.260871 +-2.162211,53.190655 +-2.041294,53.203091 +-2.334681,53.071155 +-2.910038,53.198013 +-2.703979,53.332724 +-2.597575,53.374716 +-2.158258,53.263155 +-2.441513,53.092874 +-2.531033,53.19217 +-2.43836,53.089713 +-2.473024,53.090434 +-2.20906,53.176272 +-2.413579,53.093334 +-2.40148,53.241982 +-2.519251,53.075418 +-2.602057,53.388742 +-2.61114,53.415051 +-2.560296,53.381431 +-2.912413,53.195612 +-2.435495,53.134264 +-2.888611,53.262788 +-2.835768,53.183797 +-2.920466,53.25496 +-2.522167,53.074605 +-2.5941,53.409034 +-2.542035,53.375844 +-2.575136,53.410556 +-2.812652,53.181619 +-2.545735,53.380708 +-2.158439,53.259605 +-2.661287,53.407359 +-2.920339,53.290962 +-2.450693,53.193886 +-2.894761,53.1854 +-2.027523,53.345666 +-2.50555,53.356534 +-2.207844,53.342207 +-2.226529,53.149624 +-2.025799,53.350817 +-2.753734,53.265704 +-2.480873,53.378623 +-2.750533,53.366229 +-2.439539,53.094077 +-3.011571,53.279094 +-2.864961,53.080248 +-2.509198,53.43437 +-2.158108,53.263272 +-2.602984,53.401115 +-2.885131,53.193715 +-2.049008,53.297624 +-2.590749,53.396278 +-2.4142,53.095804 +-2.442957,53.109832 +-2.507653,53.262916 +-2.565608,53.389721 +-2.295222,53.269726 +-2.539178,53.266292 +-2.564291,53.353862 +-2.365699,53.145538 +-2.91907,53.173762 +-2.88826,53.194518 +-2.785484,53.00572 +-2.245675,53.231969 +-2.63982,53.392231 +-2.91423,53.155803 +-2.967399,53.250399 +-2.461643,53.113895 +-2.584987,53.439982 +-2.576851,53.395006 +-2.655195,53.212361 +-2.558812,53.378301 +-2.522061,53.453424 +-2.451489,53.211222 +-2.71187,53.32776 +-2.415668,53.113319 +-2.738123,53.356859 +-2.134022,53.260201 +-2.557374,53.028061 +-2.761617,53.373395 +-2.728511,53.289259 +-2.784902,53.273791 +-2.175946,53.324685 +-2.586362,53.390016 +-2.476969,53.075874 +-2.735774,53.336487 +-2.508803,53.371019 +-2.52263,53.347706 +-2.595338,52.992505 +-2.236222,53.30246 +-2.58358,53.440555 +-2.319272,53.094452 +-2.655762,53.349376 +-2.622019,53.388334 +-2.518045,53.243285 +-2.69914,53.213945 +-2.858303,53.206927 +-2.725926,53.363253 +-2.749835,53.374413 +-2.889594,53.272606 +-2.562546,53.36507 +-2.724233,53.365295 +-2.370182,53.126117 +-2.934653,53.157604 +-2.812351,53.263863 +-2.845878,53.194926 +-2.877293,53.19255 +-2.335169,53.122427 +-2.454956,53.094613 +-2.780832,53.370448 +-2.660284,53.402807 +-2.609694,53.388668 +-2.533364,53.426561 +-2.569092,53.213433 +-2.176451,53.148774 +-2.355839,53.070446 +-2.660327,53.40269 +-2.525067,53.067662 +-2.546021,53.250252 +-2.400549,53.238569 +-2.514688,53.434049 +-2.644214,53.389475 +-2.514688,53.434049 +-2.395342,53.288088 +-2.59821,53.419988 +-2.584346,53.398745 +-2.768275,53.370862 +-2.254442,53.333424 +-2.376199,53.304851 +-2.529105,53.256746 +-2.217604,53.167645 +-2.182505,53.264433 +-2.032382,53.334923 +-2.495282,53.26011 +-2.612209,53.395226 +-2.21864,53.16829 +-2.683146,53.212025 +-2.46597,53.375311 +-2.594117,53.404899 +-2.534,53.191213 +-2.468731,53.242006 +-2.890907,53.284534 +-2.836705,53.184293 +-2.469494,53.19677 +-2.435904,53.12886 +-2.530515,53.410403 +-2.36424,53.142648 +-2.287882,53.098739 +-2.89453,53.185779 +-2.702716,53.313396 +-2.508998,53.396178 +-2.204689,53.163227 +-2.442037,53.111929 +-2.700608,53.310253 +-2.782336,53.260531 +-2.51911,53.193841 +-2.422134,53.309407 +-2.608905,53.397607 +-2.515637,53.198764 +-2.492362,53.049994 +-2.417448,53.310601 +-2.517529,53.433732 +-2.57402,53.364575 +-2.584377,53.398772 +-2.839753,53.195535 +-2.390988,53.144585 +-2.452737,53.092365 +-2.593706,53.392667 +-2.72985,53.365962 +-2.53956,53.195404 +-2.73497,53.393616 +-2.663121,53.383079 +-2.447299,53.346421 +-2.5104,53.07925 +-2.734162,53.355436 +-2.723082,53.364745 +-2.137244,53.260008 +-2.596282,53.369311 +-2.160006,53.313769 +-2.536489,53.060851 +-2.85826,53.207026 +-2.668269,53.158615 +-2.89706,53.189418 +-2.614578,53.430215 +-2.894089,53.2444 +-2.545347,53.418579 +-2.725702,53.296081 +-2.338505,53.143793 +-2.521446,53.200141 +-2.428162,53.103225 +-2.862761,53.209727 +-2.548469,53.373531 +-2.741443,53.292757 +-2.357039,53.350141 +-2.123362,53.285857 +-2.458563,53.106599 +-2.126765,53.239418 +-2.838184,53.195672 +-2.374105,53.305675 +-2.448432,53.113461 +-2.037104,53.359731 +-2.648397,53.349111 +-2.701261,53.306151 +-2.514387,53.258114 +-2.570395,53.381141 +-2.580955,53.26233 +-2.152844,53.25438 +-2.507047,53.264923 +-2.466865,53.089766 +-2.894562,53.188763 +-2.503331,52.98893 +-2.688081,53.012347 +-2.087504,53.339893 +-2.87612,53.276616 +-2.587676,53.398108 +-2.755743,53.371023 +-2.438587,53.175099 +-2.948521,53.231736 +-2.931342,53.245724 +-2.314981,53.128424 +-2.222279,53.327898 +-2.37232,53.272917 +-2.213514,53.346709 +-2.123197,53.259772 +-2.776986,53.090123 +-2.40001,53.076203 +-2.41978,53.240795 +-2.634265,53.257267 +-2.149597,53.290223 +-2.605641,53.361569 +-2.389865,53.263189 +-2.521627,53.206396 +-2.667064,53.440055 +-2.584902,53.313133 +-2.23742,53.307545 +-2.906604,53.162936 +-2.597826,53.421608 +-2.435925,53.281304 +-2.393174,53.151509 +-2.492778,53.355105 +-2.954087,53.229355 +-2.309216,53.181016 +-2.404437,53.304381 +-2.162949,53.317998 +-2.570316,53.370777 +-2.875497,53.197669 +-2.771831,53.084925 +-2.130897,53.263072 +-2.706772,53.312707 +-2.726521,53.360193 +-2.440379,53.101751 +-2.520309,53.067881 +-2.705572,53.323663 +-2.905498,53.292163 +-2.251565,53.102021 +-2.926003,53.147613 +-2.37526,53.307326 +-2.104192,53.267152 +-2.23192,53.103868 +-2.874539,53.257948 +-2.127178,53.26268 +-2.222817,53.338944 +-2.03928,53.30809 +-2.491924,53.005014 +-2.301186,53.309612 +-2.527913,53.419008 +-2.710062,53.268588 +-2.6055,53.407772 +-2.520495,53.257449 +-2.531737,53.379378 +-2.529735,53.432438 +-2.223739,53.328722 +-2.226684,53.164725 +-2.215696,53.350328 +-2.46151,53.105635 +-2.381514,53.226047 +-2.897721,53.195985 +-2.557948,53.405343 +-2.533452,53.178424 +-2.462956,53.231808 +-2.900337,53.279321 +-2.122488,53.258029 +-2.477589,53.09145 +-2.488782,53.061884 +-2.704711,53.329753 +-2.510465,53.261097 +-2.391028,53.36918 +-2.694399,53.310568 +-2.669533,53.319376 +-2.696832,53.323552 +-2.135886,53.261907 +-2.212606,53.1732 +-2.449844,53.101347 +-2.470073,53.06631 +-2.389397,53.216574 +-2.507339,53.39836 +-2.515035,53.238471 +-2.403344,53.303072 +-2.231241,53.247243 +-2.142232,53.249656 +-2.80805,53.135033 +-2.454008,53.19452 +-2.112937,53.347845 +-2.747849,53.36141 +-2.278424,53.342683 +-2.514365,53.402312 +-2.629004,53.418491 +-2.663999,53.448171 +-2.804523,53.33714 +-2.700673,53.340788 +-1.890679,55.025118 +-1.653691,55.581945 +-1.575354,54.967068 +-1.404844,54.91992 +-1.58009,55.083527 +-1.408187,54.990839 +-1.604221,54.963678 +-1.62341,54.965968 +-1.621815,55.017687 +-1.382904,54.905909 +-1.519627,55.114629 +-1.497582,55.009753 +-1.500768,54.905461 +-1.569083,55.033436 +-1.402067,54.90197 +-1.662116,54.971374 +-1.731519,54.992674 +-1.493804,54.893714 +-1.691644,54.954513 +-1.615994,54.95747 +-1.43462,54.893651 +-1.441097,54.887534 +-1.584213,55.166258 +-1.586519,54.96583 +-1.897121,55.319502 +-1.635056,55.559301 +-1.453975,55.02344 +-1.612405,54.976681 +-1.602003,54.981122 +-1.413057,54.971938 +-1.463268,54.963524 +-1.564365,54.95487 +-1.620693,55.012337 +-1.596044,55.087517 +-1.593776,54.9494 +-1.612372,54.970354 +-1.397032,54.910221 +-1.394933,54.88167 +-1.584438,54.976759 +-1.512329,55.126875 +-1.587216,55.167373 +-1.770482,54.973756 +-1.629037,55.014672 +-1.454861,54.928036 +-1.431404,54.962616 +-1.563362,54.973909 +-1.637676,54.975707 +-1.560064,54.97404 +-1.481392,55.041775 +-1.550127,54.886073 +-1.61031,55.005843 +-2.5416,54.98044 +-1.763552,54.908808 +-1.464326,54.813384 +-1.582002,54.960153 +-1.49061,55.003478 +-1.563798,55.021636 +-1.567076,55.174564 +-1.616163,54.97414 +-1.486153,54.984004 +-1.478221,54.82784 +-1.663765,54.953496 +-1.63917,54.965961 +-1.494901,54.997871 +-1.460353,54.922264 +-1.540294,54.91455 +-1.540393,54.908574 +-1.496053,54.995764 +-1.601365,54.923994 +-1.389241,54.904521 +-1.475139,54.998165 +-1.380563,54.924292 +-1.380666,54.885076 +-1.490465,55.021082 +-1.440952,54.872113 +-1.579553,55.03314 +-1.531078,55.111385 +-2.343368,54.910889 +-1.414855,54.971874 +-1.724708,55.322973 +-1.493657,55.084268 +-1.43085,55.03161 +-1.525684,54.992234 +-1.502594,55.1089 +-1.551337,55.151458 +-1.450337,55.049268 +-1.381476,54.907492 +-1.599088,54.978785 +-1.784541,55.282981 +-1.487737,55.020369 +-1.621824,54.968551 +-1.613096,54.950263 +-1.614505,54.95477 +-1.481779,54.953549 +-1.691917,55.16974 +-1.506548,54.871534 +-1.60741,54.936145 +-1.573071,55.208606 +-1.673708,54.959607 +-1.400378,54.87289 +-1.708083,54.963585 +-1.583553,55.027573 +-1.61521,54.956183 +-1.622177,54.974168 +-1.556371,55.127601 +-1.583104,55.131164 +-1.528236,55.073129 +-1.505742,54.871154 +-1.613587,54.973971 +-1.557317,55.127146 +-1.684632,54.982506 +-1.535581,54.929593 +-1.648875,54.96891 +-1.568238,55.08008 +-1.606317,54.968151 +-1.619746,54.973586 +-1.615031,54.991229 +-1.708646,55.43939 +-1.443964,54.979344 +-1.514841,55.121431 +-1.606892,54.97483 +-1.537582,54.892541 +-2.254361,55.144208 +-1.367686,54.90468 +-1.546262,55.041252 +-2.230903,55.124612 +-1.531023,54.988759 +-1.570731,55.09736 +-1.604146,55.158668 +-1.654474,54.989945 +-1.632869,55.030041 +-1.76232,54.996062 +-1.745767,54.978758 +-1.568756,55.221117 +-1.692836,54.970179 +-1.567439,55.139619 +-1.531777,54.992456 +-1.366434,54.885038 +-1.629135,54.9413 +-1.390865,54.902318 +-1.494257,54.957151 +-1.596436,54.990872 +-1.612801,54.997251 +-1.395328,54.921913 +-1.522786,54.946662 +-1.550484,55.174235 +-1.522214,54.976423 +-1.572251,54.968 +-1.611967,54.997815 +-1.473887,54.98033 +-1.600478,54.961527 +-1.59484,54.958426 +-1.579816,54.931659 +-1.580261,54.999759 +-1.652016,55.433895 +-1.690741,55.16759 +-1.449128,54.914773 +-1.680635,55.159234 +-1.445995,54.982777 +-1.386336,54.916099 +-1.454142,55.022659 +-1.939613,54.885434 +-1.666478,55.001122 +-1.6004,54.964708 +-1.766428,54.921179 +-1.502805,54.845189 +-1.623269,54.967702 +-1.792107,55.564331 +-1.916816,54.919371 +-1.611408,54.973146 +-1.411179,54.994619 +-1.621297,54.971371 +-1.640583,54.975599 +-1.595075,54.958418 +-1.849091,54.961397 +-1.474347,55.009762 +-1.692989,54.999358 +-1.595359,55.001598 +-1.542712,54.881462 +-1.677714,54.942975 +-1.568513,55.176744 +-1.481389,55.000797 +-1.621091,54.968423 +-1.727353,55.000896 +-1.608709,54.953439 +-1.671191,54.979109 +-1.424854,54.996904 +-1.653886,54.972888 +-1.660107,54.972465 +-1.550889,55.045879 +-1.586312,54.975319 +-1.63315,55.009518 +-1.380587,54.906481 +-1.491045,54.90605 +-1.58393,54.991126 +-1.51694,55.067019 +-1.678236,55.000776 +-1.565764,55.179753 +-1.609953,54.974956 +-1.659687,54.979617 +-1.619295,54.973333 +-1.604597,54.961954 +-1.462753,54.84279 +-1.65232,55.005908 +-1.593033,55.452799 +-1.382808,54.914194 +-2.049751,55.357526 +-1.596209,54.937196 +-1.377303,54.871615 +-1.617047,54.979796 +-1.382958,54.909495 +-1.630548,54.940433 +-1.452926,54.941857 +-1.371813,54.895014 +-1.578071,55.044691 +-1.780728,55.329233 +-2.145338,55.130495 +-1.408191,54.924654 +-1.620814,55.089007 +-1.635416,55.01479 +-1.599148,54.961846 +-1.691998,55.167467 +-1.393011,54.979469 +-1.58509,55.012059 +-1.474267,54.981168 +-1.602219,54.987728 +-1.476879,54.855828 +-1.576123,54.978627 +-1.619809,55.006619 +-1.858515,54.963907 +-1.62032,55.00379 +-1.623208,54.970891 +-1.44647,55.007275 +-1.688752,54.934718 +-1.615097,54.97615 +-1.543192,54.979604 +-1.824321,54.976012 +-1.597925,54.956082 +-1.595578,54.937823 +-1.600356,55.131132 +-1.49005,54.990922 +-1.686957,54.964935 +-1.492586,54.967056 +-1.669857,54.989368 +-1.446589,55.04296 +-1.533366,54.916051 +-1.452594,55.019192 +-1.499051,55.026186 +-1.456374,54.818021 +-1.588914,55.330293 +-1.579975,54.910371 +-1.405922,54.883782 +-1.445119,54.863712 +-1.599516,55.135137 +-1.445024,54.922842 +-1.573328,55.072702 +-1.611602,54.920613 +-1.530571,54.910936 +-1.442496,55.043571 +-1.440295,54.89818 +-1.595969,54.951762 +-1.429953,54.994529 +-1.61771,55.100689 +-1.426752,54.895502 +-1.673889,54.96623 +-1.63207,54.975511 +-1.433858,54.972431 +-1.635905,54.981516 +-1.756401,55.015937 +-1.441727,54.87129 +-1.714852,55.413912 +-1.696907,54.972993 +-1.393422,54.898224 +-1.43054,54.867922 +-1.488021,55.001742 +-1.593326,55.078962 +-1.706658,54.987602 +-1.411092,54.908709 +-1.870124,54.967514 +-1.608826,54.971987 +-1.453845,54.950075 +-1.56074,54.953635 +-1.616447,54.965649 +-1.599621,54.956627 +-1.575197,55.177172 +-1.538603,54.879577 +-1.620152,54.968653 +-1.559329,54.949874 +-1.554299,55.174312 +-1.561645,54.947932 +-1.517271,55.12667 +-1.570994,55.185478 +-1.610431,54.970743 +-2.126118,54.983828 +-1.382987,54.911661 +-1.490729,55.0212 +-1.637516,54.946663 +-1.666037,54.992098 +-1.39034,54.907133 +-1.417074,54.888689 +-1.569566,55.099333 +-1.600022,54.95714 +-1.648206,54.954216 +-1.727332,55.287306 +-1.440989,54.969688 +-2.042136,55.758086 +-1.692328,54.995843 +-1.613684,54.955684 +-1.380882,54.90757 +-1.538213,54.984608 +-1.400023,54.898913 +-1.524994,55.073162 +-1.419463,54.982725 +-1.558745,55.132776 +-1.611299,54.921322 +-1.584719,55.182578 +-1.693087,55.002818 +-1.526949,55.103929 +-1.468957,54.839914 +-1.693572,54.955552 +-1.388152,54.90332 +-1.625755,54.943842 +-1.387257,54.903702 +-1.663234,55.102863 +-1.610744,54.998144 +-1.524404,55.027788 +-1.616414,54.995304 +-1.559968,54.937079 +-1.551483,55.187349 +-1.619924,54.982842 +-1.608474,54.971213 +-1.400454,54.910831 +-1.606924,54.974821 +-1.405471,54.922871 +-1.617675,54.971252 +-1.425439,55.022724 +-1.694091,55.40848 +-1.49389,54.976344 +-1.618825,54.975092 +-1.648444,54.969952 +-1.60773,54.972262 +-1.638972,54.979314 +-1.621919,54.968443 +-1.746769,54.918839 +-1.586282,54.991925 +-1.646234,54.974366 +-1.495591,54.867985 +-1.396097,54.901832 +-1.780273,55.274679 +-1.574545,54.977066 +-1.592976,54.997627 +-1.795783,55.015012 +-1.691313,55.400233 +-1.641271,55.084181 +-2.295152,55.070035 +-1.685513,55.54404 +-1.657381,55.002732 +-1.600708,54.950969 +-1.41148,54.974033 +-1.540862,54.882417 +-2.090408,54.967837 +-1.702663,55.24683 +-1.569685,55.080939 +-1.605373,54.968813 +-1.616531,54.969954 +-1.438583,55.036876 +-1.441999,54.888842 +-1.430369,54.983864 +-1.665022,55.549647 +-1.651257,54.975217 +-1.68443,54.954459 +-1.382905,54.914015 +-1.507519,55.123936 +-1.630357,54.971453 +-1.563386,55.220577 +-1.596979,54.935069 +-1.451582,54.815663 +-1.616499,54.970017 +-1.624719,54.936128 +-1.581909,54.902865 +-1.650501,55.029931 +-1.684646,54.98273 +-1.52221,54.979451 +-1.652458,54.975481 +-1.471353,54.966301 +-1.472188,55.014633 +-1.545019,54.913274 +-1.389427,54.899463 +-1.55137,54.952316 +-1.626833,54.9758 +-1.599805,54.95696 +-1.528795,54.905358 +-1.577696,54.990997 +-1.52963,55.111865 +-1.473104,55.072391 +-1.570534,54.986955 +-1.495311,54.867912 +-1.439331,54.969833 +-2.503699,54.86972 +-1.669873,55.179666 +-1.43281,54.951515 +-1.593284,54.948644 +-1.575106,54.9876 +-1.610681,54.985329 +-1.729531,54.932722 +-1.614791,54.959147 +-2.266234,54.97174 +-1.564789,54.932927 +-1.742462,54.982597 +-1.851371,54.961607 +-1.869463,55.0077 +-1.558775,55.132929 +-1.382215,54.915215 +-1.466356,54.967402 +-1.611706,54.969723 +-1.648634,55.180748 +-1.658921,54.970467 +-1.578456,54.972156 +-1.693656,54.960899 +-1.412753,54.9039 +-1.672503,54.975294 +-1.506371,54.957444 +-1.457031,54.889754 +-1.742244,54.982408 +-1.749167,55.097579 +-1.432162,55.036181 +-1.689625,54.967233 +-1.605446,54.988538 +-1.596482,54.936397 +-1.432672,55.005621 +-1.60965,54.91268 +-1.439842,54.895985 +-1.580743,54.980557 +-1.416241,55.000197 +-1.579978,54.995417 +-1.51286,54.977428 +-1.390871,54.931884 +-1.50441,54.870474 +-1.671551,54.944477 +-1.462871,54.925349 +-1.460701,54.907932 +-1.387999,54.982319 +-1.468839,55.036059 +-1.544321,55.154317 +-1.734617,54.973252 +-1.448171,55.008703 +-1.526728,54.960607 +-1.668732,55.010168 +-1.715019,55.194885 +-1.404577,54.892537 +-1.712438,54.963955 +-1.562291,54.944493 +-1.378934,54.90446 +-1.419018,54.887907 +-1.59493,54.968114 +-1.537161,54.90202 +-1.365988,54.893618 +-2.010385,55.54447 +-1.534702,54.94625 +-1.614441,54.969597 +-1.771962,54.966112 +-1.625371,54.965048 +-1.522714,55.131814 +-1.617252,54.979581 +-1.617397,54.974153 +-1.409002,54.898068 +-1.570256,54.973484 +-1.620942,55.012446 +-1.462128,54.97052 +-1.569097,54.890482 +-1.557192,54.943989 +-1.423558,55.000097 +-1.404055,54.901503 +-1.616507,54.995448 +-1.971917,55.507654 +-1.509866,54.892208 +-1.724719,55.330449 +-1.535182,55.035917 +-1.617883,54.969033 +-1.667976,54.944602 +-1.698988,55.406308 +-1.600526,54.961464 +-1.617554,54.96914 +-1.682793,54.985889 +-1.684548,55.184539 +-1.720124,55.378656 +-1.553424,54.951551 +-1.601711,54.964784 +-1.670768,54.948609 +-1.620101,55.003843 +-1.84011,54.961871 +-1.868542,54.987866 +-1.515253,55.128882 +-1.449217,55.041885 +-1.580132,55.039145 +-1.690011,54.959721 +-1.54503,55.129221 +-1.713714,54.964551 +-1.657885,54.967435 +-1.685955,54.991244 +-1.656441,55.145626 +-1.604934,54.968991 +-1.809134,54.923572 +-1.734411,54.964158 +-1.620882,54.955715 +-1.418713,54.994646 +-1.487201,55.001083 +-1.84391,55.105618 +-1.619871,54.983507 +-1.461816,54.9705 +-1.45319,54.950045 +-1.554998,54.932029 +-1.64093,54.950762 +-1.571107,54.958156 +-1.549426,55.043816 +-1.641088,55.0084 +-1.460027,54.907013 +-1.592219,55.039977 +-1.401224,54.91992 +-1.624482,55.010102 +-1.830221,55.28839 +-1.752689,55.524058 +-1.559174,54.974046 +-1.575106,54.925397 +-1.376898,54.904998 +-1.58089,55.304998 +-1.753888,55.045766 +-1.44181,54.910453 +-1.485388,54.876281 +-2.141947,54.988303 +-1.54117,55.171828 +-1.684192,55.422023 +-1.624514,55.010058 +-1.392945,54.937169 +-1.430961,54.986194 +-1.541252,54.992114 +-1.815879,55.600562 +-1.687372,54.98989 +-1.506851,54.895233 +-1.621481,55.449116 +-1.645678,54.948727 +-1.712889,54.988345 +-1.600545,54.979958 +-1.406975,54.89697 +-1.382616,54.908424 +-1.513135,54.912018 +-1.632352,54.949685 +-1.4531,55.007261 +-1.599669,54.937684 +-1.699116,55.406066 +-1.770367,54.966414 +-1.445155,55.007395 +-1.616942,54.951318 +-1.388273,54.907661 +-1.608532,55.133872 +-1.631939,55.047885 +-1.614079,54.97807 +-1.613097,54.97777 +-1.689108,54.983694 +-1.601976,54.961712 +-1.559247,55.100042 +-1.778921,55.537864 +-1.466728,54.967593 +-1.429682,55.02686 +-1.638811,54.971083 +-1.414316,54.907933 +-1.596826,54.953463 +-1.441867,54.810371 +-1.464407,54.823691 +-1.606625,54.96861 +-1.516437,54.881181 +-1.382734,54.913978 +-1.612896,54.971039 +-2.124924,55.026908 +-1.693162,54.960233 +-1.643535,54.973972 +-1.584471,54.976624 +-1.659319,55.128327 +-2.257507,54.955493 +-1.999687,55.73838 +-1.423181,54.976254 +-2.261993,55.142952 +-1.694524,55.161354 +-1.444221,54.900732 +-1.616461,54.982175 +-1.684873,55.163163 +-1.451619,55.004666 +-1.566119,55.125308 +-1.434226,54.945187 +-1.441262,54.899298 +-1.603113,54.939807 +-1.545939,55.213657 +-1.583076,55.326355 +-1.792847,55.390033 +-1.623563,54.957916 +-1.397576,54.894633 +-1.625026,54.966871 +-1.560175,54.969638 +-1.431007,54.986257 +-1.516168,55.124491 +-1.675468,54.952494 +-1.516153,54.945163 +-1.501795,55.113893 +-1.752898,55.044021 +-1.565648,55.021211 +-1.604052,55.157041 +-1.67238,55.017313 +-1.552126,54.936287 +-1.727539,55.20177 +-1.603401,54.956549 +-1.605425,54.981044 +-1.608274,54.969272 +-1.665687,55.007868 +-1.776731,54.996305 +-1.492355,55.095558 +-1.59629,54.9525 +-1.498409,55.009918 +-1.525453,54.936267 +-1.663042,54.985701 +-1.42165,54.889151 +-1.575539,55.084347 +-1.483118,55.060896 +-1.458962,54.966678 +-1.539752,54.901877 +-1.383079,54.91078 +-1.758819,55.240969 +-1.711679,54.956486 +-1.443002,54.899765 +-1.603518,54.962112 +-1.428335,54.990693 +-1.694143,54.93794 +-1.388216,54.902188 +-1.615241,54.956174 +-1.800437,55.384492 +-1.50398,55.000649 +-1.381423,54.899746 +-1.406431,54.918095 +-1.444248,55.042501 +-1.576688,54.985764 +-1.564244,54.994913 +-1.750601,55.015593 +-1.572374,54.925549 +-1.560694,54.90341 +-1.503996,55.000676 +-1.608655,55.35842 +-1.403097,54.872418 +-1.572457,55.063399 +-1.622617,54.922211 +-1.567212,55.027013 +-1.376967,54.878272 +-1.526489,55.071181 +-1.535735,54.895922 +-1.428996,54.883407 +-1.445145,54.920821 +-1.425859,54.982378 +-1.595766,54.975108 +-1.609416,54.991669 +-1.585485,54.91145 +-1.667117,55.001366 +-1.639545,54.988572 +-1.421476,54.889339 +-1.533869,54.99134 +-1.588731,54.961812 +-1.388658,54.902874 +-1.660792,54.989406 +-1.63125,54.940444 +-1.790134,54.997839 +-1.487209,54.999196 +-1.635049,55.015706 +-2.598857,54.968372 +-1.614691,54.971287 +-1.561193,55.179881 +-1.604606,54.969017 +-1.441694,55.041608 +-1.605743,54.967736 +-1.620368,55.003727 +-1.494887,54.96915 +-1.40489,54.879715 +-1.580514,55.078946 +-1.846218,55.349667 +-1.540499,54.977329 +-1.505792,55.004628 +-1.604635,54.989946 +-1.63716,54.97576 +-1.631872,54.942467 +-1.45357,55.052068 +-1.617272,55.100687 +-1.487964,54.850088 +-1.563901,55.176332 +-1.636246,55.06312 +-1.558189,55.028149 +-1.453996,54.911236 +-1.584703,55.182614 +-1.610834,54.920961 +-1.7106,54.991511 +-1.712189,54.987831 +-1.572222,55.003073 +-1.525461,55.030982 +-1.545034,54.91331 +-1.484988,55.0433 +-1.76671,54.972231 +-1.43693,54.967234 +-2.467982,54.968866 +-1.394696,54.93494 +-2.212959,55.660617 +-1.627233,54.952824 +-1.530605,54.91064 +-1.538686,54.989633 +-1.593384,55.039235 +-1.542234,54.984102 +-1.558427,55.131796 +-1.440662,54.992089 +-1.663629,54.997771 +-1.461807,54.948978 +-1.538156,54.926853 +-1.59469,55.055558 +-1.675098,54.957723 +-1.47408,54.884222 +-1.368318,54.886216 +-1.441869,54.930996 +-1.616037,54.959537 +-2.028943,55.759069 +-1.539591,55.03898 +-1.39703,54.892608 +-1.38892,54.906173 +-1.664373,55.448999 +-1.502883,55.109593 +-1.614825,54.953989 +-1.620012,54.968572 +-1.745005,55.039889 +-1.54709,55.120459 +-1.526497,54.993532 +-1.477983,54.906669 +-1.658117,54.969548 +-1.419047,55.001783 +-1.650611,55.020811 +-1.407827,54.880323 +-1.428772,54.999501 +-1.368557,54.9347 +-1.690501,54.981334 +-1.6897,54.983858 +-1.621039,54.978909 +-1.487472,54.99943 +-1.566404,55.18592 +-1.592017,55.039832 +-1.58588,54.979406 +-1.486036,55.023741 +-1.475009,54.942233 +-1.538896,55.186619 +-1.85152,54.959163 +-1.361791,54.878032 +-1.444896,54.965006 +-1.59975,54.987693 +-1.401926,54.973573 +-1.62053,55.00974 +-1.388879,54.979897 +-2.445794,54.988027 +-1.614367,55.364701 +-1.406755,54.938442 +-1.548562,55.184597 +-1.598688,54.959365 +-1.596594,55.088885 +-1.677987,54.945896 +-1.71011,55.211147 +-1.605615,54.961634 +-1.586389,54.975436 +-1.588348,54.941232 +-1.599611,54.971823 +-1.684881,54.98265 +-1.591797,54.972084 +-1.599565,54.93559 +-1.45315,54.890779 +-1.672231,54.960699 +-1.71079,54.943238 +-1.390007,54.904381 +-1.381209,54.904525 +-1.578652,55.183034 +-1.60363,54.974487 +-2.096997,55.08334 +-1.568665,55.037415 +-2.232121,55.069794 +-1.384223,54.918622 +-1.525426,54.914708 +-1.669421,55.00441 +-1.463999,55.02831 +-1.45585,54.8142 +-1.899855,55.008807 +-1.612309,54.921675 +-1.418031,54.976904 +-1.599334,54.972972 +-1.602604,54.970853 +-1.638656,55.002354 +-1.575605,54.953661 +-1.653667,54.971108 +-1.481326,54.850356 +-1.611104,54.977054 +-1.471292,54.935271 +-1.426895,54.89198 +-1.607855,54.948108 +-1.602996,54.961185 +-1.996029,55.525924 +-1.670446,54.951753 +-1.561259,54.905946 +-1.586887,55.083667 +-1.729727,54.957012 +-2.097627,54.969116 +-1.579832,55.064763 +-1.503534,55.108958 +-1.50735,54.911806 +-1.652519,55.434193 +-2.059786,54.910883 +-1.638481,54.966121 +-1.595518,55.094605 +-1.439096,55.016947 +-1.711663,54.976183 +-1.620196,55.008615 +-1.752114,54.922418 +-1.701916,55.249901 +-1.967632,54.934905 +-1.647746,54.976545 +-1.514941,55.005671 +-1.441746,54.896991 +-1.652684,55.019837 +-1.561884,55.141163 +-1.525513,54.913927 +-1.523552,55.04422 +-1.511814,55.127979 +-1.712925,54.976627 +-1.431278,54.995856 +-1.530136,55.171579 +-1.436348,55.003284 +-1.579791,55.313575 +-1.692558,54.994334 +-1.474021,54.901943 +-1.781297,55.277422 +-2.538303,54.987473 +-2.252887,55.144328 +-1.599327,54.948565 +-1.838279,55.61834 +-1.454198,54.881339 +-1.583134,54.969952 +-1.47061,54.94198 +-1.673755,54.959598 +-1.495204,54.980025 +-1.554248,54.985782 +-1.563898,54.9951 +-1.606125,54.94945 +-1.467706,54.958619 +-1.597327,54.940902 +-1.598985,54.9892 +-1.674363,54.986747 +-1.699073,55.074156 +-1.382482,54.979299 +-1.579968,54.96951 +-1.657995,55.029818 +-1.860325,54.964385 +-1.631025,54.999123 +-1.467366,54.846036 +-1.526045,55.073013 +-1.580555,55.106506 +-1.889685,55.016832 +-1.710254,55.217357 +-1.422272,54.884948 +-1.571458,55.137854 +-1.712082,54.941533 +-1.382622,54.929398 +-1.577427,55.055266 +-2.158367,55.697188 +-2.245003,54.96898 +-1.557391,55.129024 +-1.924342,55.473157 +-1.645057,55.130749 +-1.7154,55.187697 +-1.593819,55.130804 +-1.433992,54.803837 +-1.520328,54.884206 +-1.689173,55.16941 +-1.539113,55.186871 +-1.487219,54.989877 +-1.554,55.126505 +-1.451766,54.874436 +-1.616014,54.924212 +-1.61419,54.977864 +-1.697623,54.971306 +-1.606224,54.96807 +-1.584761,54.912068 +-1.652183,55.034348 +-1.424175,54.88263 +-1.417611,54.919533 +-1.480511,54.847144 +-1.460234,55.05004 +-1.58789,54.981417 +-1.70658,54.987611 +-1.57201,55.102352 +-1.661899,54.920844 +-1.453269,55.02243 +-1.559693,55.183488 +-1.805676,55.378157 +-1.57132,55.184419 +-1.578844,55.064966 +-1.42123,54.94677 +-1.506703,54.974932 +-1.554117,54.975052 +-1.370648,54.934746 +-1.538039,55.075916 +-1.99192,55.318161 +-1.857559,55.168132 +-1.475864,54.856003 +-1.942384,55.489223 +-1.712829,54.987985 +-1.721147,54.957999 +-1.49288,54.969726 +-1.578866,55.22685 +-1.832692,54.976841 +-2.124076,55.025903 +-1.429796,54.994555 +-1.396077,54.922959 +-1.66943,54.978592 +-1.42515,54.888655 +-1.60917,54.962301 +-1.495854,54.841853 +-1.613258,54.95287 +-1.574643,54.89832 +-1.583668,54.963619 +-2.021049,55.74695 +-1.385873,54.868639 +-1.368152,54.933673 +-1.632325,55.065508 +-1.442003,54.899859 +-1.502746,54.91327 +-1.366059,54.959552 +-1.4977,55.009124 +-1.456843,54.88979 +-1.8287,55.198952 +-1.565832,54.973738 +-1.558472,55.127707 +-1.523886,55.116371 +-1.647167,54.97312 +-1.587207,55.078465 +-1.645994,54.96608 +-1.48981,54.906288 +-1.649465,54.95138 +-1.741758,54.999696 +-1.684678,54.982676 +-1.731964,54.970461 +-1.579004,55.066144 +-1.578892,55.009648 +-1.658762,54.976307 +-1.556032,54.964303 +-1.470587,55.076774 +-1.610805,54.972461 +-1.419154,54.888195 +-1.426425,55.016124 +-1.583618,54.94579 +-1.617054,54.969201 +-1.615934,54.952303 +-1.658589,55.022541 +-1.588731,54.961803 +-1.514785,55.030275 +-1.606029,54.976786 +-1.475394,55.002623 +-1.622036,54.94259 +-1.620242,55.441502 +-1.537444,54.99033 +-1.441222,55.042909 +-1.711772,55.074348 +-1.572591,55.183021 +-1.579075,55.054822 +-1.833924,54.96969 +-1.402142,54.874804 +-1.569435,55.082358 +-1.575678,55.017832 +-1.508337,55.01003 +-1.663516,55.108489 +-1.4944,54.997959 +-1.51574,55.123645 +-1.444491,55.046438 +-1.680497,54.983789 +-1.609198,54.967451 +-1.439578,54.9712 +-1.562183,55.181241 +-1.677434,55.133885 +-1.604988,54.982579 +-1.917725,54.978528 +-1.503278,54.862472 +-1.685262,54.991898 +-1.521504,55.104429 +-1.575134,54.979081 +-1.431086,54.997239 +-1.419135,54.92424 +-1.708233,55.074295 +-1.712587,55.26868 +-1.728091,54.954169 +-1.545487,54.946507 +-1.60257,54.925211 +-1.486916,54.968299 +-1.631752,55.04784 +-1.435745,54.951493 +-1.956292,55.13123 +-1.54646,55.00573 +-1.402788,54.893328 +-1.632465,55.026347 +-1.789634,55.003688 +-1.529445,54.888394 +-1.445529,54.898581 +-1.650947,55.020003 +-1.446914,55.014772 +-1.420744,54.94692 +-1.676562,55.014538 +-1.963545,54.967012 +-1.466584,54.967897 +-1.780724,54.969138 +-1.657463,55.533075 +-1.562592,55.14103 +-1.437399,54.865411 +-1.66979,55.005183 +-1.636045,55.061071 +-1.627759,54.975408 +-1.600459,55.130269 +-1.603101,55.132695 +-1.518125,54.994343 +-1.407646,54.990405 +-1.532329,54.888396 +-1.749952,55.054609 +-1.444364,54.900535 +-1.592685,55.057241 +-1.401224,54.919938 +-1.598264,55.133299 +-1.418002,54.97676 +-1.570999,54.949214 +-1.555212,54.935238 +-1.556846,54.944212 +-1.574066,54.989852 +-1.466152,54.946265 +-1.40683,54.973669 +-1.703887,54.973406 +-1.942916,54.853049 +-1.556398,55.128023 +-1.648427,54.970122 +-2.623856,55.26443 +-1.581098,54.932913 +-1.420659,54.973421 +-1.575695,54.924312 +-1.492206,55.018195 +-1.554572,55.186417 +-1.502952,54.913037 +-1.44512,54.86479 +-1.431463,54.986097 +-1.615967,54.952052 +-1.704653,55.230768 +-1.434483,54.996904 +-1.400186,54.926772 +-1.784077,55.391671 +-1.538493,55.191587 +-1.451535,54.815681 +-1.607986,54.971625 +-1.531837,55.106814 +-1.749845,54.92093 +-1.49811,55.043876 +-1.574415,54.945057 +-1.492743,54.971909 +-1.822388,55.098984 +-1.52424,55.036369 +-1.799453,54.994053 +-1.648904,55.428477 +-1.665544,55.008119 +-2.01755,55.548764 +-1.581784,54.988603 +-1.400082,54.892821 +-1.554322,55.122965 +-1.673219,54.942927 +-2.014195,55.778488 +-1.502493,55.109457 +-1.624297,55.08519 +-1.436208,54.901692 +-1.576251,55.163634 +-1.521179,54.913703 +-1.59668,54.985247 +-1.470814,55.021609 +-1.435213,54.977236 +-1.754577,54.920122 +-1.62341,54.966004 +-1.66763,55.0017 +-1.430316,54.962251 +-1.517827,55.124795 +-1.416316,54.906577 +-1.585893,55.025164 +-1.584417,54.998461 +-1.618086,54.969033 +-1.404034,54.974706 +-1.723316,54.992332 +-2.09415,55.078157 +-1.506597,54.914723 +-1.444031,54.913357 +-1.591393,55.065764 +-1.580823,55.064389 +-1.566192,55.108433 +-1.794114,54.965424 +-1.614369,54.962435 +-2.366765,54.86463 +-1.454734,54.943195 +-1.568694,55.141016 +-1.595008,54.968168 +-1.588559,55.084113 +-1.636645,54.975731 +-1.635963,55.455926 +-1.521269,54.990222 +-1.555939,54.985465 +-1.595025,55.131006 +-2.218695,55.249116 +-1.549659,54.950368 +-1.909675,54.980211 +-1.445206,55.042244 +-1.896549,55.26068 +-1.436749,54.92772 +-1.438093,54.992509 +-2.092989,54.969731 +-1.579752,54.933267 +-1.49144,54.890802 +-1.592997,55.054285 +-1.536222,55.124677 +-1.390923,54.892308 +-1.613092,54.921354 +-1.908398,55.308188 +-1.667239,54.965763 +-1.437259,54.997366 +-1.445183,55.038245 +-1.574478,54.980481 +-1.506929,54.905442 +-1.664778,54.985553 +-1.425157,55.022723 +-1.578246,55.00863 +-1.560012,55.077382 +-1.550062,54.975819 +-1.515242,55.125863 +-1.648105,54.974749 +-1.453853,55.023197 +-1.900654,54.982496 +-1.535197,54.912805 +-1.838254,55.682278 +-1.69195,55.399471 +-1.584269,55.056646 +-1.422364,54.985309 +-1.482437,55.01296 +-1.610694,55.18252 +-1.462057,54.978149 +-1.555722,54.951361 +-1.466317,55.006897 +-1.701683,54.956695 +-2.017121,55.546976 +-1.555331,54.982497 +-1.560405,55.100181 +-1.638563,55.002264 +-1.449486,55.005123 +-1.603067,54.977738 +-1.585748,54.958836 +-1.575289,55.183345 +-1.585798,54.938689 +-1.609363,55.132257 +-1.538599,54.957669 +-1.804983,55.570427 +-2.034164,55.752383 +-1.518674,54.974648 +-1.563475,54.97505 +-1.4986,55.022158 +-1.365724,54.921367 +-1.684756,54.95667 +-1.620829,55.012805 +-1.445538,54.863857 +-1.615954,54.956715 +-1.579476,54.988164 +-1.679421,54.95601 +-1.725935,54.935949 +-1.622778,54.968428 +-1.390939,54.892263 +-1.481114,55.086318 +-1.567894,54.95189 +-1.571576,54.978647 +-1.486884,54.992859 +-1.433054,55.035107 +-1.688265,54.983584 +-1.663169,54.985566 +-2.02765,54.880863 +-1.911417,55.310671 +-1.56217,55.113585 +-1.576126,54.927809 +-1.628353,54.941432 +-1.598131,55.087182 +-1.432055,54.990665 +-1.549549,54.965798 +-1.723896,55.169583 +-1.384749,54.918913 +-1.60338,54.923785 +-1.487896,55.025079 +-1.662179,54.920934 +-1.504026,55.000766 +-1.440342,54.930828 +-1.563891,55.111067 +-1.606589,54.973858 +-1.383751,54.899479 +-2.041672,55.75681 +-1.75709,55.527023 +-1.460751,55.030192 +-1.481493,54.848281 +-1.393982,54.902469 +-1.780512,55.539404 +-1.52767,54.897517 +-1.538781,55.020915 +-1.389048,54.904888 +-1.666031,55.015363 +-1.914504,55.670512 +-1.406484,54.989753 +-1.599431,54.941188 +-1.512455,54.945058 +-1.923666,55.009696 +-1.59311,55.086375 +-1.602955,54.965319 +-1.427542,54.904609 +-1.956271,54.948399 +-1.597931,54.957017 +-1.518122,54.905801 +-1.594849,54.934235 +-1.504748,54.991612 +-1.642817,54.973889 +-1.63225,54.971135 +-1.620368,54.973857 +-1.498075,54.876244 +-1.3988,54.902493 +-1.534363,55.178047 +-1.692832,54.985061 +-1.621738,54.93274 +-1.5085,54.965971 +-1.514255,54.977029 +-1.922316,54.923373 +-1.577542,54.950531 +-1.677542,54.952841 +-1.814189,54.974568 +-1.408419,54.971834 +-1.57611,54.927899 +-1.425328,54.895836 +-1.510378,55.006732 +-1.663334,55.008769 +-1.639425,54.939219 +-1.604538,55.002994 +-1.613776,54.94774 +-1.621215,54.968477 +-1.616038,54.974086 +-1.653165,55.141726 +-1.408634,54.886967 +-1.552132,54.911853 +-1.749768,55.126893 +-1.509097,55.127015 +-1.42981,54.999102 +-1.53831,55.021093 +-1.430428,54.874742 +-1.436881,54.976328 +-1.570177,54.977977 +-1.491222,54.990972 +-1.692231,55.416203 +-1.669743,54.959452 +-1.68142,55.159263 +-1.686878,54.983131 +-1.454974,54.927776 +-1.617427,54.977586 +-1.412488,54.903872 +-1.557712,54.969134 +-1.585773,55.167288 +-1.489932,54.959505 +-1.382792,54.914212 +-1.367036,54.885455 +-1.50259,55.00564 +-1.552428,54.951304 +-1.585551,54.976448 +-2.385326,54.863512 +-1.421885,54.991426 +-1.576511,54.888171 +-1.624906,55.028382 +-1.580598,55.17719 +-1.5032,55.027119 +-1.582058,55.013433 +-1.680281,55.012957 +-1.492314,54.873336 +-1.438742,54.995243 +-1.489868,54.870782 +-1.523681,54.992451 +-1.482266,55.012825 +-1.522803,54.991325 +-1.574037,55.132804 +-1.502625,55.1089 +-1.567881,54.906491 +-1.529633,55.074213 +-1.433812,54.972422 +-1.602827,55.006862 +-1.534814,55.171678 +-1.467168,54.930786 +-1.686836,54.974469 +-1.565362,55.034681 +-1.620346,54.982789 +-1.685473,54.984943 +-1.577178,54.954008 +-1.614608,54.971763 +-1.66328,55.002164 +-1.623253,54.939341 +-1.574539,54.980598 +-1.632903,54.944034 +-1.525933,55.112965 +-1.610962,54.970745 +-1.586937,55.039258 +-1.622818,54.970773 +-1.57675,54.997689 +-1.454417,54.965462 +-1.571388,54.925842 +-1.617585,55.100697 +-1.674504,54.990665 +-1.675854,54.991783 +-1.610699,54.997973 +-1.61214,54.97012 +-1.667241,55.007082 +-1.685528,54.961813 +-1.387763,54.906338 +-1.597929,54.983805 +-1.632591,55.065617 +-1.626655,55.180117 +-1.618601,54.98229 +-1.547506,54.952984 +-1.414557,54.908555 +-1.763098,54.972817 +-1.460794,55.040984 +-1.44599,55.04214 +-2.205861,55.643827 +-1.582013,54.984668 +-1.573134,55.138066 +-1.63482,55.064922 +-1.550003,55.172382 +-1.604631,54.960076 +-1.584841,55.133057 +-1.622031,55.00969 +-1.460369,54.922282 +-1.621577,55.01473 +-1.639249,54.955358 +-1.639469,54.939507 +-1.605691,54.987416 +-1.4935,55.08433 +-1.525371,54.914061 +-1.444744,54.964672 +-1.67889,54.948172 +-1.52232,55.177983 +-1.662601,55.008551 +-1.429971,54.989919 +-1.575151,54.925541 +-1.445428,54.812795 +-2.036195,55.177743 +-1.428666,54.88035 +-1.614649,54.974028 +-1.442642,54.926992 +-1.666759,55.001167 +-1.373057,54.92633 +-1.454519,54.817123 +-1.402556,54.893156 +-1.637021,55.499123 +-1.560988,55.17997 +-1.605655,54.987892 +-1.580659,54.940567 +-1.458028,55.052268 +-1.537848,54.895211 +-1.611339,54.970576 +-1.792166,54.949434 +-1.597037,55.245745 +-1.620799,55.01107 +-1.580797,55.039866 +-1.615057,54.991786 +-1.743581,54.919677 +-1.473349,54.942621 +-1.386941,54.902955 +-1.54302,55.000209 +-1.658761,54.989319 +-1.533462,55.004818 +-1.42862,54.98382 +-1.586128,54.935509 +-1.388657,54.927631 +-1.637445,54.885088 +-1.382902,54.909081 +-1.559161,54.965195 +-1.620268,54.982798 +-1.390604,54.904123 +-1.563179,54.901424 +-1.684512,55.171096 +-1.544925,55.000458 +-1.646343,54.974412 +-1.49521,54.841068 +-1.663789,54.965511 +-1.540189,54.988093 +-1.439612,54.97093 +-1.568733,55.07912 +-1.529446,55.120868 +-1.601656,55.006723 +-1.567397,55.021514 +-1.590918,54.980196 +-1.593147,55.130587 +-1.572842,55.008063 +-1.42074,55.018865 +-1.451385,54.975927 +-1.672641,55.424149 +-1.505846,54.978604 +-1.524051,54.937394 +-1.376737,54.88715 +-1.556474,54.962462 +-1.618758,54.973933 +-1.603743,54.961412 +-1.522519,55.190222 +-2.09746,55.631067 +-1.366859,54.89276 +-1.565537,55.011227 +-1.602639,55.006834 +-1.617671,54.956802 +-1.385815,54.903147 +-2.14332,54.983224 +-1.412825,54.890376 +-1.528062,54.902695 +-1.439534,54.970957 +-1.626593,54.956263 +-1.596723,54.935715 +-1.478684,54.954992 +-1.456107,55.017312 +-1.535053,54.913119 +-1.605735,54.97178 +-1.536452,55.130573 +-1.478193,54.957964 +-2.096363,54.969693 +-1.591217,55.066114 +-1.39812,54.896882 +-1.471433,55.02562 +-1.43107,55.01939 +-1.461428,55.041508 +-1.387783,54.93487 +-1.618539,54.982272 +-1.723073,54.982258 +-1.559725,54.967911 +-1.507896,55.186417 +-1.502665,54.908471 +-2.092901,54.978735 +-1.552793,54.985948 +-1.625495,54.965102 +-1.518172,54.994326 +-1.853465,54.961133 +-1.703537,55.412493 +-1.599683,54.937846 +-1.697992,54.982575 +-1.493369,54.867481 +-1.429378,54.901661 +-1.554603,54.969222 +-1.567824,54.96723 +-1.849404,54.961398 +-1.554603,54.969258 +-1.655775,54.989455 +-1.550967,55.170381 +-1.435574,55.002723 +-1.716062,55.266963 +-1.72964,54.932731 +-1.472093,54.845383 +-1.499743,55.010813 +-1.57838,54.904812 +-1.790118,54.997911 +-1.501532,54.841032 +-1.41833,54.976806 +-1.572517,54.979737 +-1.498486,55.010008 +-1.407778,54.971912 +-1.497628,55.008594 +-1.377774,54.90786 +-1.444166,54.945484 +-1.529441,55.043812 +-1.518481,55.032509 +-1.654724,54.969898 +-1.612441,54.97296 +-1.574223,54.9499 +-1.368828,54.952279 +-1.550396,54.880107 +-1.447201,55.04512 +-1.680278,54.956227 +-1.481591,55.011797 +-1.591834,55.039382 +-1.587747,54.943494 +-1.652444,55.249932 +-1.655547,54.975885 +-1.514727,54.909283 +-1.725379,55.365001 +-1.676672,54.961951 +-1.473804,54.941248 +-1.707873,55.413491 +-1.553725,54.95263 +-1.517606,55.105393 +-1.372149,54.899473 +-1.544539,54.935055 +-1.479253,54.954455 +-1.608211,54.969307 +-1.384951,54.929194 +-2.258014,55.272582 +-1.450206,55.005082 +-1.695061,55.000226 +-1.564975,55.106532 +-1.763977,54.996084 +-1.597484,55.288699 +-1.634101,54.987459 +-1.587092,54.975429 +-2.049828,54.980324 +-1.370311,54.878337 +-1.564932,54.968864 +-1.564495,54.994824 +-1.609929,54.982307 +-1.444988,54.914143 +-1.601086,54.917505 +-1.529699,55.107345 +-1.535092,54.946279 +-1.623361,54.939467 +-1.400743,54.873503 +-1.530904,54.888957 +-1.533825,54.939786 +-1.463231,54.908833 +-1.57491,54.924803 +-1.558887,55.158315 +-1.443513,54.969025 +-1.546753,55.004689 +-1.61361,55.087044 +-1.727249,55.352236 +-1.485993,54.905939 +-1.37131,54.905265 +-1.611725,54.974261 +-1.493585,55.011812 +-1.639384,54.95419 +-1.575025,54.925648 +-1.585184,55.012078 +-1.39794,54.951788 +-1.429081,54.986518 +-1.717845,55.039317 +-1.431353,55.025915 +-1.382966,54.906952 +-1.486163,54.9734 +-1.453097,54.929268 +-1.568032,55.097665 +-2.460981,54.969989 +-1.703318,55.169283 +-1.505143,55.040867 +-2.141022,54.982975 +-1.616491,54.995448 +-1.602639,55.00687 +-1.549817,54.973967 +-1.580514,54.980035 +-1.80371,55.676262 +-1.526232,55.073059 +-1.548012,54.976117 +-1.668931,54.989788 +-1.770367,54.966441 +-1.395825,54.918932 +-1.378694,54.903794 +-2.101253,54.970012 +-1.566336,55.1386 +-1.434023,54.883952 +-1.606686,54.973598 +-1.627765,54.967994 +-1.460491,54.910771 +-1.507052,54.97071 +-1.589646,55.077359 +-1.592403,55.078905 +-1.832267,55.288519 +-1.645481,55.406605 +-2.077616,55.064869 +-1.574697,54.980464 +-1.504627,55.063645 +-1.579833,55.064727 +-2.111731,54.968835 +-1.418922,54.888104 +-1.582772,54.950585 +-1.568787,54.94873 +-1.632671,54.943836 +-1.454686,54.890229 +-1.723501,54.967647 +-1.695582,55.401556 +-1.407755,54.918236 +-1.573749,55.183385 +-1.626193,55.054787 +-1.603488,54.962004 +-1.648477,54.953642 +-1.611593,54.921556 +-1.61854,54.9689 +-1.432157,54.96128 +-1.616291,54.924644 +-1.425756,54.989611 +-1.571787,54.961726 +-1.445114,54.901554 +-1.622021,54.942581 +-1.466165,55.006519 +-1.640977,54.945478 +-1.693618,54.955615 +-1.752438,54.97382 +-1.564694,54.966347 +-1.360403,54.883991 +-1.68106,54.98769 +-1.761445,54.990831 +-1.681018,55.002868 +-1.402124,54.877077 +-1.448381,54.890713 +-1.4972,54.868881 +-1.466015,54.973062 +-1.423844,54.882934 +-1.540996,54.903517 +-1.519173,55.18763 +-1.481891,55.023723 +-1.598378,55.217274 +-1.397909,54.873336 +-1.670302,55.043735 +-1.581839,55.028457 +-1.435309,55.024963 +-1.45488,55.022455 +-1.589271,54.922588 +-1.701764,54.973221 +-1.578019,55.066006 +-1.607338,54.980412 +-1.598037,54.957305 +-1.612785,54.979369 +-1.563146,55.057111 +-1.604835,54.964759 +-1.665165,55.014202 +-1.716951,55.00408 +-1.606939,54.974803 +-1.492959,54.896452 +-1.619216,55.239005 +-1.941145,55.010963 +-1.597072,54.98515 +-1.570115,54.994035 +-1.594558,55.000454 +-1.682165,54.996122 +-1.808663,54.97021 +-1.525034,55.034045 +-1.504325,55.036074 +-1.623113,54.972644 +-1.580987,54.93302 +-1.401081,54.904328 +-1.419295,54.991108 +-1.510494,55.020337 +-1.506499,54.983927 +-1.713971,54.96581 +-1.645309,55.010165 +-1.652255,54.975444 +-1.589864,54.971718 +-1.467615,54.967848 +-1.603063,54.955946 +-1.434785,54.977621 +-1.55027,54.965558 +-1.694495,54.961575 +-1.391733,54.906798 +-1.456656,54.973173 +-1.909197,55.310202 +-1.456159,55.007643 +-1.376928,54.878784 +-1.715739,55.18866 +-1.626464,54.965051 +-2.497907,54.966123 +-1.563195,54.93746 +-1.610834,54.972704 +-1.57377,54.978025 +-1.704052,55.074249 +-1.471649,54.966383 +-1.519726,54.908638 +-1.601764,54.970536 +-1.458992,54.905112 +-1.606331,54.966713 +-1.600467,54.979994 +-1.636583,54.949671 +-1.618476,54.973995 +-1.590893,55.031849 +-1.623661,55.047743 +-1.437734,54.892857 +-1.4288,54.908299 +-1.436326,54.889858 +-2.220059,55.251234 +-1.484479,55.01588 +-1.572045,54.956506 +-1.791394,54.995999 +-2.51441,54.900768 +-1.514839,55.121611 +-1.727327,55.352407 +-1.592586,55.039259 +-1.638736,55.028253 +-1.428319,54.990684 +-2.00869,55.758874 +-1.407416,54.900909 +-1.595983,54.95196 +-1.588348,54.94125 +-2.096762,55.083016 +-2.26544,54.929488 +-1.622004,54.967698 +-1.488826,54.918712 +-1.64976,54.974943 +-1.538326,54.986999 +-1.409695,54.911425 +-1.664252,54.998096 +-1.603865,54.974425 +-1.58493,54.976015 +-1.540556,54.954522 +-1.648489,54.970149 +-1.364432,54.950881 +-1.389789,54.904371 +-1.611458,54.977693 +-1.636573,54.971651 +-1.613432,55.100711 +-1.605502,54.985959 +-1.938002,55.558912 +-1.430193,54.894691 +-1.566053,54.979355 +-1.765915,54.996087 +-1.474694,54.965219 +-1.438104,54.951378 +-1.497538,54.866753 +-1.437648,54.966204 +-1.430781,54.958084 +-1.658446,54.98966 +-1.597545,54.954958 +-1.589976,54.948471 +-1.474767,54.965624 +-1.45835,54.887873 +-1.450956,54.976473 +-1.528047,54.933347 +-1.422833,54.812924 +-1.538922,55.020844 +-1.666817,55.012984 +-1.556811,55.18283 +-1.62904,54.995729 +-1.505406,54.952093 +-1.699296,55.155049 +-1.538618,54.991493 +-1.547273,55.041822 +-1.776852,55.027946 +-1.606109,54.976651 +-1.733137,54.956031 +-1.42459,54.881985 +-1.619539,55.007059 +-1.378476,54.930123 +-1.515795,55.006124 +-1.388332,54.919254 +-1.571876,55.218972 +-1.687812,54.983538 +-1.722248,55.194417 +-1.608776,54.973874 +-1.495755,54.978437 +-1.549449,54.913254 +-1.606158,55.005156 +-1.605189,54.978032 +-1.61326,55.086063 +-2.216873,54.980869 +-1.663469,54.985181 +-1.437144,55.004447 +-1.563473,54.901632 +-1.576013,54.943049 +-1.494208,54.875177 +-1.436141,55.002393 +-1.586918,55.083685 +-1.830523,55.612686 +-1.642745,55.075271 +-1.417433,54.865919 +-1.490827,55.001125 +-1.790974,54.96549 +-1.70947,55.40468 +-1.432263,54.985886 +-1.436514,54.96131 +-1.714392,55.177172 +-1.776451,54.970685 +-1.57614,54.984423 +-1.58963,55.066711 +-1.59162,55.068119 +-2.596212,54.969032 +-1.568415,55.107282 +-1.453735,54.825648 +-1.441059,54.872311 +-1.559435,54.928702 +-1.5191,55.00567 +-1.575382,54.977752 +-1.636376,55.178349 +-1.883602,54.848963 +-1.465407,55.003559 +-1.377288,54.904946 +-1.599785,55.131741 +-1.614222,54.977747 +-1.605592,54.928879 +-2.174462,54.99048 +-1.756444,54.970126 +-1.936605,55.481026 +-1.954912,54.948668 +-1.602197,54.962998 +-1.783253,54.928642 +-1.457093,54.902542 +-1.71892,55.158366 +-1.725088,55.334125 +-1.579334,54.977775 +-1.523533,54.946818 +-1.457938,54.887206 +-1.855207,54.963139 +-1.529791,55.114175 +-1.545624,54.948179 +-1.589909,55.085331 +-1.522916,55.072749 +-1.65618,54.989671 +-1.719732,55.158943 +-1.42177,54.889484 +-1.504419,54.876109 +-1.741621,55.222872 +-1.645026,55.130785 +-1.813896,55.593784 +-1.444228,55.01112 +-1.655425,55.048601 +-1.624283,54.967875 +-1.584947,54.910711 +-1.630323,54.939362 +-1.504404,55.037332 +-1.476956,54.855882 +-1.514262,54.875358 +-1.74357,54.995018 +-1.441662,54.871478 +-1.623647,55.034228 +-1.604312,54.989361 +-1.388716,54.902128 +-1.597564,54.931153 +-1.663076,55.0022 +-1.607484,54.95419 +-1.667644,55.0056 +-1.573773,54.97772 +-1.560318,55.225176 +-1.603881,54.974452 +-1.854653,54.908816 +-1.545232,54.902715 +-1.65387,54.971135 +-1.709536,55.218829 +-1.674573,54.953121 +-1.461806,54.949005 +-1.573569,54.977836 +-1.384331,54.904352 +-1.42891,54.95892 +-2.101523,54.971495 +-1.669304,54.978664 +-1.555583,54.952637 +-1.642523,54.948915 +-1.710492,55.41613 +-1.572491,54.973348 +-1.673674,54.958061 +-1.451725,54.875226 +-1.524155,55.036908 +-1.425856,55.023086 +-1.635936,54.981534 +-1.762975,54.908726 +-1.515762,55.033577 +-1.641043,55.00813 +-1.502201,55.126682 +-1.813976,54.922492 +-1.65205,54.93408 +-1.669941,55.257008 +-1.630926,54.940029 +-1.574353,54.980499 +-1.702889,55.002842 +-1.380299,54.915098 +-1.860493,54.965482 +-2.280295,55.099626 +-1.559704,54.974093 +-1.597675,54.956099 +-1.585014,54.964809 +-1.918296,55.152094 +-1.445814,54.913051 +-1.578656,55.319565 +-1.563262,55.011902 +-1.634556,54.964887 +-1.480932,55.010824 +-2.017116,55.786269 +-1.710702,55.159758 +-1.453492,54.942696 +-1.487457,54.999403 +-1.583025,54.629731 +-1.367462,54.838341 +-1.526175,54.797653 +-1.746917,54.715782 +-1.530424,54.71679 +-1.606453,54.69641 +-1.596096,54.850261 +-1.865036,54.82601 +-1.711986,54.635282 +-1.569535,54.611934 +-1.521803,54.79512 +-1.688454,54.872227 +-1.613934,54.692839 +-1.574139,54.845478 +-1.332948,54.757716 +-1.523826,54.830787 +-1.360851,54.833984 +-1.436036,54.683695 +-1.328951,54.787989 +-1.688983,54.671487 +-1.520539,54.729738 +-1.528576,54.762364 +-1.648826,54.64598 +-1.599692,54.844064 +-1.564318,54.865222 +-1.776851,54.864567 +-1.842601,54.891719 +-1.736969,54.787446 +-1.374475,54.833884 +-1.708693,54.879151 +-1.595134,54.625458 +-1.517833,54.643634 +-1.512823,54.651792 +-1.565742,54.850193 +-1.54796,54.68659 +-1.667292,54.85143 +-1.332654,54.723574 +-1.698898,54.867517 +-1.560531,54.766411 +-1.6084,54.822803 +-1.678625,54.663677 +-1.687956,54.872162 +-1.554775,54.538458 +-1.634526,54.766548 +-1.745851,54.863877 +-1.820929,54.542757 +-1.701801,54.866949 +-1.363329,54.813031 +-1.433744,54.702367 +-1.546187,54.780143 +-1.578163,54.517108 +-1.746858,54.827421 +-1.424253,54.739276 +-1.665141,54.653755 +-1.54559,54.689016 +-1.860143,54.841138 +-1.566055,54.620316 +-1.56222,54.583699 +-1.550214,54.524548 +-1.58816,54.699467 +-1.573084,54.777194 +-1.552712,54.527828 +-1.491097,54.758294 +-1.652371,54.635467 +-1.580458,54.535818 +-1.721171,54.90481 +-1.572263,54.857998 +-1.559523,54.533892 +-1.339118,54.762405 +-1.421462,54.744358 +-1.748582,54.853162 +-1.637944,54.57649 +-1.55776,54.688325 +-1.764603,54.875669 +-1.603283,54.698403 +-1.565212,54.880646 +-1.344967,54.849625 +-1.607671,54.602143 +-1.582068,54.854321 +-1.569892,54.768862 +-1.821997,54.872495 +-1.540022,54.521328 +-1.646593,54.667632 +-1.977455,54.527304 +-1.838557,54.721303 +-1.475167,54.775292 +-1.575283,54.776582 +-1.58647,54.732865 +-1.361433,54.763477 +-1.659042,54.643556 +-1.620394,54.750383 +-1.552828,54.529959 +-1.563775,54.533656 +-1.524061,54.537515 +-1.368422,54.717834 +-1.707096,54.865138 +-1.418357,54.787614 +-2.043044,54.745513 +-1.725496,54.685819 +-1.552017,54.527772 +-1.677681,54.653681 +-1.548682,54.54301 +-1.550002,54.521366 +-1.830147,54.850347 +-1.331036,54.837831 +-1.62658,54.755102 +-1.854046,54.544941 +-1.739764,54.860683 +-1.743725,54.862614 +-1.577972,54.597055 +-1.620815,54.750213 +-1.357226,54.76714 +-1.679071,54.701467 +-1.68503,54.847712 +-1.573667,54.854867 +-1.518902,54.848183 +-1.781512,54.679067 +-1.535849,54.837061 +-1.554649,54.547202 +-1.561413,54.514658 +-1.63054,54.661401 +-1.670024,54.852614 +-2.004898,54.787776 +-1.291372,54.746625 +-1.565197,54.851656 +-1.832542,54.85106 +-1.62296,54.817035 +-1.568608,54.861831 +-1.587837,54.518202 +-1.564062,54.779112 +-1.565567,54.622471 +-1.32331,54.757942 +-1.676785,54.661039 +-1.569788,54.665703 +-1.680676,54.597711 +-1.53718,54.526781 +-1.812653,54.837677 +-1.923826,54.543018 +-1.552733,54.541497 +-1.451064,54.596394 +-1.534045,54.521143 +-1.366907,54.833997 +-1.377454,54.843649 +-1.598032,54.777621 +-1.649142,54.623613 +-2.05954,54.744743 +-1.471653,54.728717 +-1.440644,54.647517 +-1.33678,54.760928 +-1.356837,54.758367 +-1.744563,54.714932 +-1.829033,54.837369 +-1.578086,54.517036 +-1.562254,54.654074 +-1.550159,54.521088 +-1.741543,54.821299 +-1.749543,54.695136 +-1.573576,54.851658 +-1.54402,54.513354 +-1.516227,54.799672 +-1.555828,54.677677 +-1.575231,54.867588 +-1.557803,54.86403 +-1.679181,54.872355 +-1.554547,54.62324 +-1.420194,54.742887 +-1.567871,54.536502 +-1.365205,54.740932 +-1.500086,54.661706 +-1.572523,54.574919 +-1.359813,54.835623 +-1.556907,54.674068 +-1.558238,54.528352 +-1.63694,54.871886 +-1.860622,54.73818 +-1.560116,54.527541 +-1.577864,54.597001 +-1.910247,54.56757 +-1.320586,54.765655 +-1.483435,54.60191 +-1.484756,54.699548 +-1.707601,54.866325 +-1.504058,54.531467 +-1.542988,54.519946 +-1.685114,54.650511 +-1.368059,54.762191 +-1.368339,54.762121 +-1.346731,54.849356 +-1.606908,54.873949 +-1.664165,54.875415 +-1.555033,54.689456 +-1.789239,54.642451 +-1.565881,54.528865 +-1.356128,54.835307 +-1.317508,54.761989 +-1.639832,54.634352 +-1.5934,54.518077 +-1.708563,54.66555 +-1.552737,54.778352 +-1.580066,54.79805 +-1.428632,54.642114 +-1.817369,54.844792 +-1.568703,54.861733 +-1.591508,54.77245 +-1.656692,54.64488 +-1.404299,54.661588 +-1.821909,54.715367 +-1.592833,54.790625 +-1.536738,54.527597 +-1.446529,54.653466 +-1.617701,54.747624 +-1.77381,54.906896 +-1.679362,54.873173 +-1.860471,54.84086 +-1.777038,54.740033 +-1.369266,54.692469 +-1.566743,54.529191 +-1.457177,54.504422 +-1.805012,54.859475 +-1.556062,54.683295 +-1.549226,54.524463 +-1.521655,54.729895 +-1.576031,54.777816 +-1.611532,54.599863 +-1.505501,54.656202 +-1.708006,54.86629 +-1.313817,54.76612 +-1.832678,54.855904 +-1.737943,54.790666 +-1.329534,54.794076 +-1.826529,54.880527 +-1.708304,54.686578 +-1.592962,54.861403 +-1.799193,54.63171 +-1.531599,54.78858 +-1.411636,54.70742 +-1.620422,54.68585 +-1.562965,54.525529 +-1.389253,54.74589 +-1.7196,54.632047 +-1.63196,54.584784 +-1.634368,54.63208 +-1.895353,54.519146 +-1.592471,54.822041 +-1.498383,54.709356 +-1.625895,54.755262 +-1.507838,54.650118 +-1.703443,54.655473 +-1.631865,54.835368 +-1.357169,54.762907 +-1.500062,54.518276 +-1.661814,54.835976 +-2.024455,54.855342 +-1.590242,54.794651 +-1.579559,54.777954 +-1.451782,54.659332 +-1.633443,54.662614 +-1.593928,54.539558 +-1.685622,54.63687 +-1.755058,54.85118 +-1.655517,54.844226 +-1.568837,54.491741 +-1.559624,54.527305 +-1.618213,54.696483 +-1.723647,54.677124 +-1.926902,54.542724 +-1.558827,54.533908 +-1.570176,54.536258 +-1.496439,54.541546 +-1.765151,54.619796 +-1.554979,54.651846 +-1.643644,54.634202 +-1.926341,54.5196 +-1.431739,54.64371 +-1.813755,54.838434 +-1.549096,54.567097 +-1.593237,54.615306 +-1.707863,54.793374 +-1.623837,54.66538 +-1.556877,54.614091 +-1.318926,54.736735 +-1.545835,54.776907 +-1.926225,54.567131 +-1.58519,54.871837 +-1.73426,54.856681 +-1.574898,54.776158 +-1.554862,54.781568 +-1.367911,54.825492 +-1.56303,54.877726 +-1.330376,54.70167 +-1.559996,54.52293 +-1.82296,54.858936 +-1.55888,54.637949 +-1.704747,54.858114 +-1.628164,54.74843 +-2.004198,54.786832 +-1.547486,54.592389 +-1.579443,54.533855 +-1.706837,54.773942 +-1.50566,54.807762 +-1.73923,54.861472 +-1.540108,54.531573 +-1.557664,54.524243 +-1.551718,54.516968 +-1.58486,54.776444 +-1.362285,54.735983 +-1.523249,54.804418 +-1.305637,54.757312 +-1.561423,54.852109 +-1.737432,54.735101 +-1.588554,54.806229 +-1.472099,54.51964 +-1.637189,54.743389 +-1.345815,54.826094 +-1.743615,54.715056 +-1.592175,54.766413 +-1.574371,54.718229 +-1.565226,54.536708 +-1.593799,54.635024 +-1.53158,54.523318 +-1.691542,54.871902 +-1.448047,54.653536 +-1.508227,54.531736 +-2.132262,54.642579 +-1.746412,54.714684 +-1.469456,54.781674 +-1.490535,54.789385 +-1.597538,54.882222 +-1.568504,54.527742 +-1.346417,54.759857 +-1.700067,54.638111 +-1.535165,54.775986 +-1.308729,54.76096 +-1.608812,54.75918 +-1.472494,54.72021 +-1.536625,54.545778 +-1.735374,54.82214 +-1.658128,54.730401 +-1.374429,54.723941 +-1.727979,54.662396 +-1.757809,54.849406 +-1.5273,54.538085 +-1.701714,54.868144 +-1.810451,54.859088 +-1.596939,54.789057 +-1.875966,54.610937 +-1.383835,54.763063 +-1.574677,54.865456 +-1.572451,54.778279 +-1.574641,54.77551 +-1.737245,54.857604 +-2.147555,54.505584 +-1.622058,54.639906 +-1.540585,54.513862 +-1.588397,54.806319 +-1.557253,54.685016 +-1.729216,54.578876 +-1.671485,54.649324 +-1.635355,54.783275 +-1.456706,54.517774 +-1.686109,54.638049 +-1.628746,54.754453 +-2.043914,54.745477 +-1.572775,54.777067 +-1.790532,54.900168 +-1.542142,54.516896 +-1.673872,54.666684 +-1.43798,54.679965 +-2.064087,54.624319 +-1.579897,54.628066 +-1.620091,54.81761 +-1.698166,54.867533 +-1.349235,54.763395 +-1.61288,54.65847 +-1.860221,54.841111 +-1.822673,54.571985 +-1.647988,54.63354 +-1.589251,54.806465 +-1.967295,54.518558 +-2.237217,54.771448 +-1.427589,54.714129 +-1.917023,54.551569 +-1.634021,54.631109 +-1.47518,54.775499 +-1.525193,54.791161 +-1.763687,54.634621 +-1.386482,54.819261 +-1.499408,54.812599 +-1.394277,54.817305 +-1.619085,54.540134 +-1.565332,54.852069 +-1.604582,54.880664 +-1.550184,54.52444 +-1.818557,54.878556 +-1.592879,54.556458 +-1.531107,54.524143 +-1.550982,54.512247 +-1.599244,54.702057 +-1.841257,54.757307 +-1.543817,54.52323 +-1.914036,54.818245 +-1.679011,54.709106 +-1.552869,54.555931 +-1.873453,54.737502 +-1.733317,54.621383 +-1.508243,54.531646 +-1.52623,54.522353 +-1.601883,54.823995 +-1.289127,54.747124 +-1.547588,54.779978 +-1.528635,54.522767 +-1.660694,54.661058 +-1.558252,54.522744 +-1.966816,54.729395 +-1.586637,54.679862 +-1.548101,54.545201 +-1.510833,54.652341 +-1.551546,54.532704 +-1.546023,54.685028 +-1.469205,54.547487 +-1.582561,54.523594 +-1.492067,54.790003 +-2.016021,54.643513 +-1.499893,54.672373 +-1.735037,54.7308 +-1.799722,54.514424 +-1.436433,54.683031 +-1.880485,54.833575 +-1.91536,54.548387 +-1.912113,54.548618 +-1.688322,54.8893 +-1.541736,54.752978 +-1.654906,54.632428 +-1.724298,54.887617 +-1.530797,54.715462 +-1.518345,54.715638 +-1.606578,54.874182 +-1.56021,54.52312 +-1.588506,54.806274 +-2.015832,54.755333 +-1.927523,54.541376 +-2.17969,54.652664 +-1.339133,54.770098 +-1.628306,54.748161 +-1.84984,54.860949 +-1.55287,54.533176 +-1.600872,54.695942 +-1.579832,54.877669 +-1.750765,54.71348 +-1.459044,54.74863 +-1.537976,54.780364 +-1.5429,54.519542 +-1.787557,54.834293 +-1.521812,54.596334 +-1.819755,54.903639 +-1.54852,54.543684 +-1.69537,54.708977 +-1.517448,54.542584 +-1.692909,54.642299 +-1.57393,54.526 +-1.5784,54.53458 +-1.552468,54.511965 +-1.673443,54.538369 +-1.645314,54.778775 +-1.365083,54.737831 +-1.833298,54.849057 +-1.644299,54.777532 +-1.614442,54.886231 +-1.523833,54.70173 +-1.688719,54.872227 +-1.563627,54.535902 +-1.550654,54.526724 +-1.954546,54.550259 +-1.69604,54.868444 +-1.537693,54.531978 +-1.433912,54.518443 +-1.560167,54.881589 +-1.416713,54.737569 +-1.587027,54.858301 +-1.568672,54.861688 +-1.360682,54.810177 +-1.693675,54.863882 +-1.331021,54.758667 +-1.554095,54.522855 +-1.580745,54.866232 +-1.748599,54.65455 +-1.587739,54.767018 +-1.574035,54.861329 +-1.528433,54.512117 +-1.571027,54.59659 +-1.525751,54.5197 +-1.43011,54.750214 +-1.487904,54.52075 +-1.337145,54.759537 +-1.808049,54.612942 +-1.583485,54.654446 +-1.612087,54.704327 +-1.550005,54.540741 +-1.556993,54.859777 +-1.529909,54.742553 +-1.675474,54.780845 +-1.554365,54.689507 +-1.598016,54.777603 +-1.319053,54.779162 +-1.579525,54.776705 +-1.867812,54.738503 +-1.592905,54.521185 +-1.539951,54.778871 +-1.351277,54.785378 +-1.58695,54.858265 +-1.688138,54.64013 +-1.516617,54.816532 +-1.427963,54.716234 +-1.646548,54.592341 +-1.462838,54.649622 +-1.863287,54.823151 +-1.585619,54.54813 +-1.596934,54.559258 +-1.520467,54.79631 +-1.506592,54.846211 +-1.736106,54.58041 +-1.50795,54.720377 +-1.344121,54.773082 +-1.60048,54.549267 +-1.746035,54.802356 +-1.510848,54.652395 +-1.340631,54.835682 +-1.504619,54.774598 +-1.347352,54.824386 +-1.333246,54.757511 +-1.547682,54.779951 +-1.434824,54.651435 +-1.490071,54.493151 +-1.824975,54.868438 +-1.680301,54.856803 +-1.602104,54.874329 +-1.343904,54.771094 +-1.756272,54.719225 +-1.540181,54.692752 +-1.55728,54.579798 +-1.676208,54.856378 +-1.792397,54.7131 +-1.436306,54.683237 +-1.521747,54.729967 +-1.744961,54.693455 +-1.740186,54.636981 +-1.450325,54.653574 +-1.666963,54.652763 +-1.575299,54.54006 +-1.837427,54.848595 +-1.58339,54.610626 +-1.556838,54.522047 +-1.735831,54.857152 +-1.565845,54.536647 +-1.624928,54.81625 +-1.585356,54.635014 +-1.602023,54.700358 +-1.564536,54.77844 +-1.584192,54.774914 +-1.625305,54.603519 +-1.540446,54.505584 +-1.751312,54.829659 +-1.599423,54.767453 +-1.368195,54.817262 +-1.59286,54.792611 +-1.691117,54.872386 +-1.96731,54.518531 +-1.579095,54.627776 +-1.527931,54.519547 +-1.54622,54.689612 +-1.31298,54.761379 +-1.594639,54.771795 +-1.357714,54.814852 +-1.512994,54.733455 +-1.693853,54.871297 +-1.918015,54.727745 +-1.746962,54.715961 +-1.598206,54.891777 +-1.336384,54.760422 +-1.301122,54.744273 +-2.014183,54.749447 +-1.503642,54.815033 +-1.451832,54.656771 +-1.728844,54.897818 +-1.553575,54.778472 +-1.354123,54.75021 +-2.011692,54.518966 +-1.540694,54.513799 +-1.650305,54.77869 +-1.357829,54.749628 +-1.82681,54.902193 +-1.54032,54.781981 +-1.588192,54.805069 +-1.519898,54.497129 +-1.608202,54.759672 +-1.504918,54.80864 +-1.605898,54.663912 +-1.619717,54.820925 +-1.459169,54.673897 +-1.695823,54.673301 +-1.555849,54.523553 +-1.58855,54.713029 +-1.597453,54.787352 +-1.333722,54.830755 +-1.684212,54.658911 +-1.614439,54.87516 +-1.548271,54.553649 +-1.573637,54.854723 +-1.560021,54.583852 +-1.740335,54.581902 +-1.332905,54.766011 +-1.678075,54.652811 +-1.693315,54.711902 +-1.560325,54.623189 +-1.555353,54.62318 +-1.557903,54.523641 +-1.809807,54.863482 +-1.540188,54.708641 +-1.744527,54.693373 +-1.680742,54.664509 +-1.637946,54.679271 +-1.346145,53.855267 +-2.522082,54.149109 +-1.786444,53.929991 +-1.34661,53.85571 +-1.984437,53.908663 +-1.374061,53.942653 +-1.717853,53.915883 +-1.315266,53.823708 +-1.279308,53.738685 +-1.760471,53.931183 +-1.497108,53.985833 +-1.098701,53.688117 +-1.374491,53.943401 +-1.385742,53.94496 +-0.662462,54.16631 +-1.330238,54.346464 +-1.296237,53.784383 +-1.389039,54.056066 +-0.327081,54.19046 +-0.602971,54.1735 +-1.904404,54.320387 +-1.354529,54.256031 +-0.620964,54.480809 +-1.215547,53.96768 +-1.377864,54.009533 +-1.011929,54.002697 +-0.768085,54.38178 +-1.074598,53.781835 +-1.199679,54.469829 +-1.133744,54.488239 +-1.432151,54.288605 +-1.121644,54.488817 +-1.434801,54.340762 +-0.410272,54.285596 +-0.408713,54.291355 +-1.056006,54.004723 +-1.432607,54.344814 +-1.106606,53.940288 +-1.713485,54.326467 +-1.071104,53.977598 +-1.10433,53.964036 +-1.081087,53.968093 +-1.054209,53.962834 +-1.606694,53.91469 +-0.822235,54.077927 +-1.119775,53.942839 +-1.096215,54.155768 +-1.111313,54.093568 +-1.543801,54.132572 +-1.50503,54.321739 +-1.429736,54.337772 +-1.736521,54.405318 +-0.438302,54.265055 +-1.265467,53.848113 +-0.781527,54.13128 +-1.550328,54.291494 +-1.721529,54.446697 +-1.135304,53.956596 +-0.395851,54.26492 +-0.461445,54.256284 +-1.733616,54.406759 +-0.411726,54.277355 +-1.126253,53.955065 +-1.534992,53.948614 +-1.881648,53.972077 +-1.266763,54.414867 +-2.309532,54.157285 +-1.456736,54.044797 +-0.95532,54.388327 +-1.802624,53.990075 +-1.585196,53.976328 +-0.408874,54.282018 +-1.10729,53.992442 +-1.415491,54.059739 +-1.01636,53.723594 +-1.070473,53.955249 +-1.039431,54.031466 +-0.639738,54.117502 +-1.080219,53.958371 +-1.064649,53.77401 +-1.143608,53.97233 +-1.525975,54.136341 +-1.288375,53.783483 +-1.090521,53.969612 +-0.409,54.274353 +-1.076843,53.954597 +-1.073465,53.970848 +-0.635679,54.491321 +-0.419101,54.27809 +-1.558701,54.130336 +-1.572326,53.991454 +-1.084985,53.961328 +-1.103095,53.954112 +-1.137865,53.839005 +-1.062441,53.762092 +-1.04003,53.774984 +-1.01788,53.712371 +-1.519287,54.026512 +-1.199234,54.122757 +-1.092166,53.957751 +-1.558009,54.014006 +-1.70028,54.368333 +-1.081478,53.772567 +-1.483808,53.982334 +-1.132202,53.954821 +-0.770906,54.060426 +-0.630859,54.169173 +-0.420862,54.200264 +-0.41381,54.247469 +-1.075431,53.952959 +-1.495145,53.991847 +-2.080477,54.375229 +-1.575398,54.320155 +-0.920499,54.102694 +-2.151973,53.930677 +-1.700381,54.460307 +-1.443265,53.997999 +-1.862799,54.326396 +-0.585397,54.178481 +-1.803017,54.352457 +-0.624354,54.490635 +-1.055006,53.976762 +-2.42143,54.118595 +-0.990426,54.013017 +-2.509238,54.126713 +-0.303961,54.215322 +-0.435442,54.275292 +-0.397679,54.270059 +-1.13346,53.969831 +-1.085893,53.974161 +-1.116551,53.95192 +-1.534338,54.00323 +-1.246934,54.134146 +-1.149718,53.95526 +-2.019381,53.96089 +-1.282046,54.423847 +-1.019418,53.967705 +-0.400031,54.279897 +-1.819558,53.989059 +-1.081522,54.019742 +-1.109844,53.977792 +-0.958964,53.912449 +-1.090078,53.950743 +-1.090162,53.976261 +-1.567433,54.039718 +-1.995702,53.90364 +-1.606892,53.914735 +-1.106606,53.940279 +-2.236054,54.319951 +-2.103853,53.969861 +-1.552907,53.977425 +-1.976534,53.914935 +-1.443215,54.330448 +-1.539029,53.995726 +-1.345672,54.2308 +-1.535461,53.97229 +-1.128766,53.950023 +-1.443758,54.334656 +-1.141766,53.981835 +-1.988441,54.300123 +-0.822155,54.506124 +-1.073873,53.961378 +-1.072592,53.990948 +-1.08389,53.927839 +-1.074015,53.94876 +-1.091606,53.955437 +-1.552364,53.94273 +-1.282332,54.256396 +-1.122755,54.276515 +-1.691023,54.054713 +-1.061961,53.981419 +-0.418931,54.280514 +-1.063261,53.967668 +-1.446165,54.383315 +-1.475449,54.345969 +-1.339545,54.285006 +-1.619905,53.95205 +-1.477038,53.981056 +-0.323406,54.182031 +-1.739733,54.496588 +-1.068676,54.002395 +-0.47992,54.189708 +-1.595125,54.203783 +-1.43991,54.333821 +-1.363291,53.989585 +-0.824081,54.126175 +-1.500926,53.971352 +-1.06409,53.983727 +-1.067609,53.955209 +-1.964369,54.311451 +-1.638921,53.941521 +-1.148251,54.024988 +-0.969052,53.976964 +-1.742782,53.969389 +-1.470463,54.011343 +-1.011839,53.958169 +-1.132269,53.954533 +-1.09031,53.996107 +-1.07396,53.965028 +-1.272675,53.998661 +-0.4856,54.259034 +-1.058072,53.975384 +-1.058172,53.755605 +-1.706586,54.375493 +-1.460083,53.975022 +-1.865234,54.277445 +-1.349722,54.221071 +-0.759155,54.236643 +-1.549652,53.988046 +-1.338037,54.311996 +-1.261405,54.181879 +-0.399918,54.240391 +-0.635633,54.49132 +-2.027268,53.948674 +-1.116001,53.928934 +-1.354137,54.255579 +-1.332613,53.857287 +-1.478796,54.444986 +-2.016135,53.962868 +-2.069934,53.87866 +-1.536477,53.992004 +-1.170653,53.975423 +-1.061163,53.924644 +-1.077096,53.956226 +-0.403601,54.278542 +-1.060198,53.870644 +-1.155386,53.693123 +-0.396659,54.281299 +-0.504452,54.18011 +-1.092293,53.95751 +-1.267493,54.414565 +-1.065821,53.784095 +-1.073378,54.010503 +-2.13046,54.375113 +-1.076791,53.782149 +-1.071714,53.787341 +-1.1365,54.435081 +-1.723452,54.408425 +-1.985169,53.906785 +-1.38942,54.364034 +-1.100131,53.948787 +-0.79349,54.141467 +-1.653007,54.387349 +-0.596956,54.470628 +-1.731062,54.394486 +-1.019232,53.714818 +-1.316393,54.023994 +-1.622121,54.114706 +-1.443099,53.997881 +-1.045622,53.889638 +-1.735831,54.395314 +-1.434967,54.34096 +-0.380926,54.250816 +-1.074077,53.939781 +-1.307322,54.3983 +-1.526007,54.118788 +-1.708579,54.376684 +-1.095167,53.952849 +-1.23534,54.073882 +-1.123275,54.275162 +-1.357024,54.260448 +-2.112888,54.007619 +-1.324014,54.360162 +-0.613666,54.486666 +-0.664242,54.461926 +-1.362916,54.196848 +-1.457763,54.189906 +-1.070445,53.955168 +-1.103633,53.952445 +-1.305334,53.866686 +-1.261539,53.856277 +-1.058817,53.964658 +-0.58032,54.40022 +-1.081632,53.967594 +-1.042537,54.035149 +-2.012751,53.960891 +-1.535865,54.00587 +-1.386925,54.05229 +-1.070256,53.783932 +-1.123778,53.945933 +-1.090128,53.996052 +-1.017436,53.998194 +-2.142768,53.973443 +-1.408038,54.095042 +-1.485211,54.221995 +-2.494653,54.1458 +-1.107015,53.93968 +-0.958435,53.823551 +-0.41992,54.253454 +-1.372654,53.944021 +-1.391327,54.063637 +-1.067872,53.786727 +-1.591334,54.166976 +-1.544586,54.006442 +-1.753088,54.082673 +-0.910938,54.10339 +-1.617733,54.484617 +-1.109464,53.955562 +-1.131269,53.952028 +-0.442827,54.276169 +-0.904871,54.263841 +-1.141549,53.915196 +-0.935002,54.056544 +-1.544788,53.99209 +-1.911279,54.376607 +-0.449799,54.262273 +-1.045834,53.953797 +-1.02352,53.751481 +-0.415969,54.294857 +-1.991669,53.900044 +-0.379528,54.23087 +-1.286855,53.748707 +-1.250997,53.795272 +-1.593495,54.124616 +-1.340178,54.223266 +-1.080219,53.95838 +-1.326218,54.038528 +-0.432719,54.288352 +-1.512766,54.182016 +-1.451426,53.956252 +-1.060459,53.962802 +-1.711638,54.353064 +-1.432043,54.336633 +-1.988488,53.904142 +-1.086642,53.957359 +-1.303622,53.948674 +-1.100328,53.953822 +-1.073053,53.78239 +-1.210171,54.236325 +-0.717744,54.272728 +-0.397243,54.240904 +-1.088654,53.954552 +-0.779665,54.129562 +-2.173953,54.394506 +-1.087217,53.963817 +-1.348181,54.007857 +-0.793709,54.133946 +-2.308291,54.25596 +-0.516725,54.178841 +-1.477806,54.345683 +-1.224012,54.476369 +-1.242485,54.272204 +-2.019729,53.956297 +-0.684909,54.365318 +-1.069023,53.987505 +-1.091222,53.955569 +-1.078213,53.957394 +-2.026627,53.971278 +-0.684942,54.413925 +-1.139856,54.437487 +-0.421185,54.301109 +-1.849618,54.162766 +-1.354212,54.255715 +-0.706975,54.254205 +-1.423614,54.154966 +-1.03971,53.953686 +-1.338993,53.855695 +-1.676798,53.934887 +-1.218604,54.445921 +-0.488278,54.268505 +-1.404162,54.342835 +-1.208511,53.962547 +-0.971162,54.25354 +-0.763694,54.172003 +-1.595568,54.009006 +-1.525693,54.122184 +-1.056382,53.956361 +-1.078446,53.954438 +-1.525572,54.122085 +-1.051985,53.913705 +-0.99736,54.253051 +-1.82938,54.309574 +-1.067137,53.966791 +-1.429766,54.337808 +-0.447481,54.303536 +-1.603283,53.966223 +-1.637542,54.003963 +-1.637701,54.431044 +-1.422135,54.362119 +-1.06622,53.923937 +-1.027974,53.990478 +-1.070868,53.933357 +-1.533156,54.001141 +-1.922625,54.063353 +-1.538496,53.985927 +-0.614393,54.487555 +-1.603745,54.007569 +-1.128689,53.950076 +-1.62758,54.498308 +-1.120193,53.849051 +-0.311182,54.202984 +-1.084725,53.795584 +-0.719476,54.117109 +-2.193397,53.999329 +-1.340727,54.364919 +-1.225855,53.797018 +-1.095162,53.968596 +-1.997878,53.917759 +-0.991892,53.727714 +-1.077112,53.782043 +-0.403077,54.28453 +-2.168533,54.375875 +-0.788487,54.438753 +-1.020843,54.081145 +-2.107357,53.897902 +-1.316364,54.023939 +-0.928723,54.063086 +-1.320501,54.171793 +-1.12765,54.223605 +-1.528413,53.967265 +-1.337579,54.13547 +-0.996752,53.736833 +-0.400933,54.274839 +-0.77848,54.134988 +-0.415901,54.263001 +-1.270922,54.397582 +-1.624645,54.361749 +-0.76364,54.120869 +-0.732877,54.204894 +-0.447381,54.196663 +-0.417705,54.24477 +-1.430244,53.94278 +-1.431449,53.984111 +-0.558111,54.227269 +-1.075443,53.953777 +-1.378121,54.00975 +-1.536638,54.004983 +-1.07832,53.925613 +-0.854321,54.149908 +-1.068122,53.958862 +-1.34221,54.240128 +-0.775137,54.1492 +-2.50464,54.118599 +-1.091866,53.958226 +-0.76657,54.197361 +-0.448768,54.283607 +-0.623452,54.485789 +-0.412446,54.2798 +-1.067359,53.981425 +-0.902208,54.103257 +-0.672195,54.474561 +-1.250739,53.791855 +-0.532928,54.178213 +-1.073581,53.783221 +-1.010243,53.957347 +-1.123569,53.98716 +-1.074171,54.007066 +-1.135511,53.979768 +-1.085956,53.974108 +-1.073108,53.956024 +-1.359556,54.349625 +-1.740522,54.401121 +-1.434526,54.340644 +-1.256118,53.879901 +-1.418707,54.359649 +-0.807548,54.075724 +-0.353499,54.188298 +-0.556531,54.100533 +-1.432881,54.148063 +-1.081107,53.961622 +-1.04347,53.986477 +-1.216144,53.969994 +-1.093846,53.95407 +-1.058826,53.954106 +-0.879713,54.017438 +-0.579524,54.428163 +-1.571172,54.309643 +-1.668324,54.447129 +-1.129755,53.799164 +-0.931481,54.162149 +-0.784298,54.093603 +-1.562376,54.003614 +-1.10659,53.955298 +-1.133149,53.940743 +-1.08509,53.957257 +-0.438332,54.265056 +-1.010358,53.777206 +-1.496186,53.919391 +-0.787009,54.131201 +-0.824224,54.265868 +-0.416135,54.284522 +-0.409794,54.285652 +-0.644335,54.492892 +-1.091309,53.809117 +NULL,NULL +-0.535132,54.434509 +-1.273984,53.88827 +-2.325466,54.22463 +-1.340195,54.13748 +-1.088397,53.95935 +-1.368606,53.946741 +-1.429272,54.154445 +-1.264205,54.236478 +-2.27889,54.27992 +-1.327132,54.237007 +-1.128642,53.989605 +-1.069903,53.989093 +-1.047218,53.985977 +-1.069072,53.986678 +-1.238674,53.795051 +-1.076604,53.785824 +-1.063886,53.765348 +-1.232199,53.761358 +-2.165323,54.071119 +-1.08979,53.954866 +-1.075478,53.952897 +-1.073698,53.956208 +-1.534105,53.977686 +-1.387326,54.008405 +-1.530326,54.080473 +-1.329313,54.222676 +-1.508708,53.996666 +-1.651702,54.379616 +-1.06634,53.923992 +-1.286182,53.784836 +-1.58614,54.220829 +-1.710053,54.374944 +-1.110265,54.088239 +-1.312113,54.018801 +-1.449887,54.356002 +-1.342023,54.227815 +-1.486043,54.141282 +-0.603886,54.471957 +-0.694822,54.335209 +-0.795141,54.254328 +-1.231266,54.485357 +-0.401115,54.278077 +-1.550838,53.959999 +-0.75006,54.142013 +-0.487468,54.186136 +-2.052978,53.942006 +-0.683822,54.470023 +-1.582015,54.003262 +-1.21472,54.237532 +-1.181367,54.46116 +-1.281475,54.231549 +-1.718619,54.430316 +-1.345183,54.254956 +-1.015451,54.151378 +-1.467885,54.008896 +-1.093594,53.976206 +-1.857865,53.981255 +-1.267591,53.881436 +-1.13654,53.94545 +-1.195616,53.866675 +-1.142652,54.488923 +-0.843592,54.114617 +-0.432564,54.281528 +-1.428019,54.00856 +-1.208907,53.896505 +-1.087202,53.968715 +-1.686574,54.39561 +-1.732272,54.508992 +-2.161475,53.993103 +-1.270983,54.397619 +-1.682503,54.424223 +-1.101159,53.947024 +-1.541063,53.947973 +-1.337009,54.050335 +-0.628599,54.445457 +-0.636717,54.479612 +-1.394972,54.10507 +-0.424705,54.295457 +-0.915585,54.072981 +-1.161079,54.111154 +-0.894725,54.454691 +-1.061479,53.979132 +-1.072391,53.952612 +NULL,NULL +-2.016221,53.948847 +-1.371912,54.003552 +-1.232854,53.796182 +-0.587561,54.110905 +-1.16793,54.298244 +-1.584302,54.327475 +-1.737657,54.403631 +-1.719227,54.458653 +-1.078197,53.962984 +-2.014778,54.299511 +-0.401077,54.28542 +-1.62159,54.263734 +-0.695203,54.335321 +-1.044696,53.879528 +-1.745673,54.405104 +-1.063455,53.963778 +-1.24129,53.79309 +-1.162206,53.689072 +-1.52885,53.917699 +-1.07081,53.955197 +-1.115671,53.795277 +-1.008628,54.07674 +-1.346675,54.266405 +-1.778841,53.993997 +-0.559294,54.177857 +-1.27172,54.263684 +-1.208511,53.962511 +-1.339572,54.006174 +-1.088561,53.996561 +-1.1751,53.800967 +-1.136556,53.94545 +-2.019172,54.394513 +-1.073575,53.974157 +-1.670198,54.442236 +-0.40839,54.292573 +-2.046743,54.00583 +-1.815344,54.492458 +-1.319783,54.398299 +-0.329217,54.230983 +-0.614626,54.486138 +-0.430222,54.2813 +-1.292459,54.231533 +-0.851501,54.505508 +-0.619542,54.485925 +-0.277334,54.160842 +-0.620954,54.480656 +-1.664373,54.470143 +-1.215086,53.761508 +-1.113146,53.933568 +-0.478631,54.281929 +-1.519067,53.992601 +-0.816562,54.506195 +-0.610374,54.478602 +-0.990261,54.012898 +-1.075296,53.993494 +-1.654626,54.398075 +-1.091448,53.973916 +-1.05014,53.911803 +-1.338219,54.313147 +-0.443074,54.318912 +-1.077072,53.95592 +-0.861667,54.258264 +-0.673339,54.157173 +-1.119899,54.181262 +-1.131334,54.137898 +-0.418445,54.27676 +-1.420021,54.322052 +-1.069207,53.968335 +-1.549791,53.987893 +-1.07341,53.784064 +-0.405775,54.282705 +-0.537974,54.368518 +-1.413048,54.120376 +-0.612028,54.488094 +-1.19401,53.72377 +-1.650389,54.184004 +-0.771689,54.125005 +-1.997891,53.968801 +-1.415943,54.12776 +-1.024276,53.907857 +-0.415682,54.276724 +-1.032253,53.932863 +-0.797669,54.552645 +-0.581626,54.401206 +-1.045448,53.968004 +-0.43194,54.280567 +-0.402911,54.273346 +-1.149877,53.956448 +-1.090581,53.996271 +-1.195148,54.12042 +-1.044211,53.96679 +-1.117872,53.955795 +-1.114312,53.98427 +-1.704808,54.453865 +-1.181928,54.477925 +-1.653477,54.38274 +-1.131281,53.961753 +-1.70745,54.357889 +-1.072781,53.965252 +-1.090726,53.965776 +-1.379086,54.012551 +-1.092816,53.967086 +-1.08108,54.021752 +-1.124117,53.955948 +-1.130159,53.992924 +-1.070618,53.963114 +-1.142547,53.973518 +-1.497032,54.02128 +-1.076095,53.837322 +-0.772542,54.125643 +-1.542359,53.992494 +-1.084909,53.927901 +-1.102633,53.977739 +-0.930828,54.266446 +-1.064465,53.785028 +-1.611235,54.295552 +-0.921965,54.006589 +-0.413189,54.276862 +-1.094763,53.8948 +-0.679486,54.082351 +-1.11597,53.955628 +-1.067503,53.95519 +-0.772079,54.211133 +-1.582602,54.32684 +-2.32117,54.006937 +-2.171475,54.302499 +-1.621214,54.323202 +-0.774265,54.152796 +-1.467724,53.998748 +-0.874906,54.098816 +-0.835644,54.505922 +-2.045373,53.967192 +-1.546594,53.991602 +-1.082103,53.971121 +-1.998593,53.916456 +-1.073523,54.152243 +-1.050734,53.985609 +-2.153435,54.029935 +-1.382586,54.175955 +-0.793851,54.111675 +-1.294142,53.779886 +-0.614769,54.49058 +-1.828704,54.309546 +-1.620575,53.913413 +-1.035975,53.796982 +-1.535838,54.004171 +-1.540218,53.988819 +-1.023392,53.990073 +-1.057367,53.996456 +-1.107256,53.955492 +-1.403537,54.089043 +-0.447345,54.294078 +-2.045373,53.967192 +-1.089371,53.959393 +-1.044932,53.797 +-0.761597,54.239616 +-2.428324,54.125455 +-1.259137,54.407927 +-1.195358,54.103263 +-1.091334,53.955354 +-1.094772,53.954221 +-1.043015,53.876522 +-1.343667,54.272105 +-1.526856,54.139661 +-1.085938,53.974197 +-1.124608,53.939027 +-1.691232,54.246865 +-2.033043,53.969344 +-1.082258,53.957829 +-1.813512,53.990371 +-1.091798,53.95152 +-1.097368,53.970212 +-0.984387,53.963342 +-1.012112,54.002699 +-0.990261,54.012907 +-1.888179,53.964084 +-0.475009,54.356665 +-0.620841,54.188051 +-0.410136,54.282745 +-0.718279,54.149948 +-0.95167,54.284344 +-1.620522,54.211137 +-2.304922,54.152902 +-0.694112,54.0922 +-1.131734,53.952408 +-1.094865,53.923896 +-1.086384,53.960773 +-0.284608,54.211588 +-1.09854,53.969583 +-1.099434,53.971971 +-2.035905,53.964221 +-2.397954,54.119439 +-1.354412,54.255662 +-0.435777,54.274146 +-2.07435,53.958505 +-1.530656,53.99697 +-1.301952,54.401612 +-0.408492,54.28035 +-2.080787,53.92965 +-2.259358,54.021242 +-0.774244,54.243646 +-1.505057,53.997164 +-1.451513,53.970534 +-1.102448,53.974996 +-1.353444,54.147636 +-1.593273,54.407905 +-2.385255,54.109414 +-1.39509,54.094843 +-1.122019,53.986178 +-1.156897,53.706967 +-1.181684,53.849621 +-1.262792,53.794447 +-1.12785,53.949414 +-1.027552,53.989585 +-1.022127,53.710195 +-1.071632,53.962754 +-1.071174,53.933979 +-1.07391,53.784095 +-1.635402,54.144028 +-1.454425,54.005546 +-1.361872,53.976653 +-0.797795,54.13449 +-0.721366,54.464054 +-0.401335,54.286673 +-1.504331,53.994006 +-1.692263,53.998417 +-1.398786,54.081389 +-0.633305,54.477318 +-1.446378,54.452185 +-1.318988,54.386754 +-1.096303,53.969395 +-0.414412,54.276994 +-0.420406,54.279311 +-0.412657,54.277115 +-0.395726,54.236902 +-2.300291,54.003881 +-1.190579,54.065141 +-1.14053,53.915162 +-0.401325,54.240122 +-0.438009,54.215517 +-1.516651,53.991836 +-1.214983,53.79631 +-1.073544,54.00921 +-2.205031,54.326137 +-2.065094,54.304941 +-1.131216,54.413033 +-1.059296,53.95216 +-0.792614,54.128965 +-1.085135,53.957258 +-1.01745,53.99823 +-1.770806,54.090788 +-0.479496,54.250517 +-1.935596,53.964506 +-0.400634,54.269882 +-1.511219,54.357326 +NULL,NULL +-1.701497,54.061705 +-1.813918,54.285735 +-1.528895,53.91769 +-1.99905,53.914443 +NULL,NULL +-0.379583,54.249458 +-0.398387,54.271983 +-1.083852,53.957428 +-1.443585,53.999169 +-1.155689,53.693116 +-1.505969,53.988413 +-1.564761,54.038271 +-0.406496,54.278337 +-1.574315,54.21642 +-1.546098,54.287775 +-1.618079,54.088522 +-0.99056,54.149886 +-0.850767,54.258286 +-1.940371,54.315072 +-1.032379,53.953753 +-2.234027,54.09821 +-1.21056,54.236058 +-1.19277,54.119181 +-1.505177,53.997299 +-1.544628,53.992817 +-1.461178,54.125274 +-1.056444,54.004933 +-1.133475,53.969876 +-0.278072,54.219755 +-1.590851,54.333788 +-1.770752,54.347286 +-0.940199,54.049211 +-2.422098,54.12412 +-1.059084,53.955511 +-1.059218,53.952222 +-1.310761,53.864974 +-1.375215,54.227919 +-1.013045,53.950333 +-1.552602,53.97178 +-1.72127,54.373434 +-0.718447,54.236684 +-1.178435,53.975908 +-1.065894,53.978753 +-1.075307,53.953767 +-0.406253,54.292203 +-0.429822,54.281313 +-1.051788,53.953961 +-1.742069,53.998544 +-1.523395,54.131792 +-0.949184,53.987874 +-1.05943,53.947559 +-2.013895,53.962607 +-1.156501,54.014063 +-1.660369,54.381537 +-1.529789,54.094132 +-1.188005,53.765642 +-0.807149,54.094434 +-1.069182,53.78449 +-1.07082,53.959512 +-1.073901,53.964946 +-1.007969,53.992122 +-1.135409,53.956686 +-0.77565,54.244388 +-0.286494,54.206401 +-1.439986,54.333875 +-1.066515,53.925737 +-1.146325,53.936334 +-0.384793,54.287774 +-1.557671,54.150877 +-1.198312,53.902196 +-2.210184,54.302537 +-1.505575,54.142622 +-2.108871,54.006041 +-1.61894,54.484324 +-1.329929,54.346535 +-1.250897,53.793214 +-1.37517,53.94389 +-0.632611,54.201973 +-0.398336,54.279236 +-0.745606,54.200704 +-1.142961,53.953334 +-2.072031,54.317204 +-1.461443,54.221613 +-1.120775,53.956158 +-0.683615,54.16151 +-0.435754,54.290567 +-0.407285,54.285368 +-1.042245,54.025925 +-1.059439,53.781034 +-1.058565,53.994748 +-0.775557,54.243372 +-1.460511,54.023324 +-0.638871,54.235866 +-1.091315,53.955525 +-1.720305,54.427147 +-0.41582,54.275925 +-1.240075,54.128423 +-0.778672,54.24494 +-1.419742,54.26206 +-1.005791,54.006089 +-1.704761,54.453892 +-1.079509,53.963632 +-1.07194,53.96539 +-1.047681,53.956329 +-1.10311,53.954095 +-1.079928,53.963977 +NULL,NULL +-1.100767,53.981563 +-1.070911,53.954749 +-1.572101,54.014812 +-0.408465,54.290614 +-0.405279,54.268101 +-0.684875,54.355314 +-1.164867,54.035242 +-1.448694,54.008549 +-1.07507,53.785902 +-1.971805,54.292589 +-0.798338,54.136347 +-0.415702,54.294611 +-1.738267,54.101183 +-1.530099,54.08972 +-1.600333,54.334539 +-1.004356,53.953029 +-2.287455,54.05179 +-0.381027,54.250979 +-1.645184,53.93052 +-0.95149,53.951942 +-1.149813,53.9566 +-1.41898,53.958517 +-1.03352,53.949861 +-1.611342,54.295552 +-0.43401,54.291578 +-1.313986,53.969909 +-1.059128,53.973847 +-1.692125,53.998471 +-1.538199,53.993521 +-1.052751,53.914151 +-1.634444,54.490474 +-2.488979,54.152798 +-1.431214,53.989036 +-1.156502,53.974776 +-1.120232,53.984843 +-1.06853,53.95971 +-1.053734,53.967648 +-0.97169,53.954651 +-1.185576,53.90834 +-1.086355,53.960727 +-1.452873,54.173806 +-1.56452,54.023314 +-1.052309,53.971348 +-2.007174,53.879678 +-1.431214,53.989036 +-1.290257,53.782568 +-1.472483,54.333716 +-1.084574,53.795511 +-1.326329,54.227881 +-0.568096,54.394243 +-1.741352,54.37453 +-1.539673,53.987109 +-1.073721,53.949 +-1.11192,53.95976 +-0.760049,54.096124 +-1.083675,53.96201 +-1.044807,53.984699 +-1.442576,54.331074 +-1.081042,53.964597 +-1.221291,54.236514 +-1.133626,53.969913 +-1.550366,53.983995 +-1.792208,53.992978 +-1.086356,53.963478 +-1.235549,54.501553 +-1.198631,53.695137 +-1.250558,53.770507 +-0.730104,54.209331 +-0.546805,54.432295 +-1.538565,53.994888 +-0.480639,54.254073 +-1.199627,54.470135 +-0.969782,53.999926 +-1.483427,54.323095 +-1.692156,53.998453 +-0.306705,54.199613 +-1.497899,53.986016 +-1.230541,53.989555 +-0.791581,54.247488 +-0.416344,54.267079 +-1.359267,54.262302 +-1.149929,53.956116 +-0.341724,54.166959 +-1.394785,54.076956 +-0.439697,54.241101 +-0.338175,54.203907 +-0.41976,54.253623 +-1.692263,53.998417 +-1.545594,53.99656 +-1.433906,54.33648 +-1.943004,54.389864 +-1.498594,53.999276 +-1.099984,53.961271 +-1.297564,53.814852 +-1.532813,53.992277 +-1.91127,54.03623 +-1.885242,54.261918 +-0.976976,53.97216 +-1.088639,53.954525 +-1.082612,53.95767 +-1.370125,54.002662 +-1.076139,53.952641 +-1.51172,54.130361 +-1.306784,54.332393 +-0.403627,54.281041 +-0.416481,54.259476 +-1.572004,54.306456 +-1.52521,54.143042 +-1.52949,54.275831 +-1.988242,54.410394 +-2.043863,53.96633 +-2.025839,54.077135 +-1.338346,54.223651 +-1.467154,53.998035 +-1.057578,53.768598 +-1.2941,53.813115 +-1.075944,53.9601 +-1.773073,54.34747 +NULL,NULL +-1.913081,54.009502 +-0.624636,54.480401 +-1.981802,53.878005 +-1.603532,54.007433 +-1.121021,54.27067 +-1.072904,54.000918 +-1.07391,53.786162 +-0.416478,54.285596 +-0.412515,54.277194 +-0.94796,54.26293 +-1.095162,53.9714 +-1.063423,53.984927 +-2.017166,53.949674 +-1.135455,53.956687 +-1.061978,53.97795 +-1.549051,53.984358 +-1.344986,54.227642 +-1.319945,54.397787 +-0.952522,53.986762 +-1.53814,53.994716 +-2.052142,53.882839 +-2.019152,53.960126 +-1.087426,53.770455 +-1.550561,53.984373 +-1.153011,53.702059 +-1.660613,54.407996 +-1.667037,54.466987 +-1.570536,54.193372 +-1.126353,53.955389 +-1.079554,54.009975 +-1.439956,54.333821 +-1.055052,53.953852 +-1.494394,53.99214 +-0.934562,54.057008 +-1.029733,53.988282 +-2.013323,53.93746 +-1.045017,53.819318 +NULL,NULL +-1.258186,53.796504 +-0.925239,54.265831 +NULL,NULL +-1.072078,53.965355 +-1.11179,53.940794 +-1.068652,53.95972 +-1.512462,54.133617 +-1.109065,53.977175 +-2.324293,54.164993 +-0.302838,54.185842 +-0.408069,54.273405 +-1.470463,54.011316 +-1.763392,54.069068 +-1.156667,54.014163 +-1.126628,53.908698 +-1.048407,54.099711 +-1.145045,54.486702 +-1.540897,53.997818 +-1.219994,54.236928 +-1.285389,54.226953 +-1.452884,54.401383 +-1.333569,54.233619 +-1.10205,53.992834 +-1.051475,53.960394 +-1.479802,54.445863 +-0.390558,54.260077 +-1.907621,54.291388 +-0.961894,54.362167 +-1.067392,53.981344 +-1.700576,54.376305 +-1.059052,53.954189 +-1.902591,53.99958 +-1.19065,54.465294 +-1.224072,54.439728 +-1.630729,54.369758 +-1.042924,53.974375 +-1.130278,53.955004 +-1.433662,54.337467 +-1.077027,53.957295 +-1.451049,54.39574 +-0.451165,54.191804 +-0.796347,54.1348 +-1.659254,54.393514 +-1.52957,53.991797 +-1.099434,53.949312 +-1.997072,53.9008 +-0.409098,54.274588 +-1.539955,53.994759 +-1.430934,54.341175 +-1.073053,53.97569 +-1.087279,53.963781 +-1.06382,53.779217 +-1.080219,53.958344 +-1.070142,53.780875 +-1.038869,53.95847 +-1.722334,54.412027 +-1.079306,53.958975 +-1.083057,53.965142 +-1.06411,53.954265 +-1.058008,53.776502 +-1.543846,53.994585 +-2.005664,53.962177 +-0.449395,54.193633 +-1.110356,54.491844 +-1.331939,54.23388 +-1.453385,54.125635 +-1.088608,53.973409 +-1.325705,54.22759 +-1.105167,53.954829 +-1.536301,53.995509 +-1.136718,53.979669 +-1.090858,53.779452 +-0.603957,54.472578 +-1.278239,53.745312 +-1.047991,53.98618 +-0.857046,54.106557 +-1.059086,53.782586 +-1.103328,53.961727 +-0.421563,54.284 +-1.738505,54.403489 +-1.000807,53.952964 +-1.023395,53.988662 +-1.115496,53.962204 +-1.705998,54.375923 +-1.685888,53.979994 +-1.678728,53.675104 +-1.614028,53.739816 +-1.31655,53.778425 +-1.757116,53.884502 +-1.671996,53.709609 +-1.816398,53.815967 +-1.407788,53.69167 +-1.365939,53.721369 +-1.566486,53.789664 +-1.635467,53.7011 +-1.776735,53.785592 +-1.577269,53.798151 +-1.789552,53.77811 +-1.822307,53.804903 +-1.593684,53.819851 +-1.763163,53.656569 +-1.477899,53.803341 +-1.836568,53.655496 +-1.546085,53.774255 +-1.871723,53.717881 +-1.752348,53.803215 +-1.756637,53.75201 +-1.478873,53.804442 +-1.745313,53.716097 +-1.508276,53.809042 +-1.439744,53.808931 +-1.679098,53.867296 +-1.400643,53.690412 +-1.521932,53.642951 +-1.350348,53.673953 +-1.591859,53.69322 +-1.608967,53.747772 +-1.678217,53.676559 +-2.09781,53.713702 +-1.761816,53.772144 +-1.472595,53.684998 +-1.742391,53.805036 +-1.652189,53.697428 +-1.352363,53.874949 +-1.379334,53.906531 +-1.573994,53.680764 +-1.776217,53.65441 +-1.731159,53.771037 +-1.65696,53.693775 +-1.771759,53.788001 +-1.758545,53.781665 +-1.926174,53.705756 +-1.663675,53.803134 +-1.321566,53.717603 +-1.558953,53.826325 +-1.527554,53.790901 +-1.470593,53.650286 +-1.780429,53.662202 +-1.552948,53.779556 +-1.786239,53.647355 +-1.34335,53.848358 +-1.628145,53.713795 +-1.537466,53.800539 +-1.780874,53.710595 +-1.516886,53.810407 +-1.5905,53.798952 +-1.863911,53.635873 +-1.779757,53.640017 +-1.922878,53.843307 +-1.778905,53.67862 +-1.581426,53.801554 +-1.229932,53.617314 +-1.676721,53.711806 +-1.821756,53.658756 +-1.743517,53.657643 +-1.610185,53.786515 +-1.537614,53.776038 +-1.755668,53.798853 +-1.633049,53.749305 +-1.499143,53.833784 +-1.77187,53.79831 +-1.392028,53.651396 +-1.635868,53.802082 +-1.804742,53.813935 +-1.38077,53.777398 +-1.786333,53.571826 +-1.469094,53.810475 +-1.511917,53.730906 +-1.72053,53.792899 +-1.457282,53.727866 +-1.821306,53.578966 +-1.77941,53.648583 +-1.743436,53.793076 +-1.744393,53.792961 +-1.569178,53.658671 +-1.727944,53.834323 +-1.756993,53.787522 +-1.87887,53.946945 +-1.720711,53.777188 +-1.543889,53.835482 +-1.57779,53.791654 +-1.489529,53.807184 +-1.479082,53.639096 +-1.761886,53.641547 +-1.542922,53.844709 +-1.579637,53.769317 +-1.560231,53.797101 +-1.627777,53.690254 +-1.723363,53.793786 +-1.824938,53.683307 +-1.73606,53.645088 +-1.782281,53.799003 +-1.775874,53.644999 +-1.543281,53.821557 +-1.856066,53.696974 +-1.331173,53.709001 +-1.332452,53.709601 +-1.674907,53.801664 +-1.860579,53.660227 +-1.719412,53.794361 +-1.883431,53.747355 +-1.732765,53.807298 +-1.489689,53.665055 +-1.870602,53.707983 +-1.346272,53.903704 +-1.883083,53.725271 +-1.349143,53.727553 +-1.581315,53.678363 +-1.747022,53.789973 +-1.340229,53.601685 +-2.104697,53.722837 +-1.525946,53.687028 +-1.36405,53.702888 +-1.47536,53.750085 +-1.826083,53.82434 +-1.565333,53.763208 +-2.000372,53.751286 +-1.354012,53.755982 +-1.531275,53.748465 +-1.607973,53.821948 +-1.575054,53.736368 +-1.776997,53.615528 +-1.587624,53.80891 +-1.367624,53.766607 +-1.492448,53.649553 +-1.569574,53.725203 +-1.492805,53.686586 +-1.541395,53.805066 +-1.738349,53.605141 +-1.850949,53.764963 +-1.353656,53.756465 +-1.308637,53.594766 +-1.734014,53.792246 +-1.659813,53.679815 +-1.82402,53.747562 +-1.458799,53.818599 +-1.544274,53.81402 +-1.54123,53.903636 +-2.098181,53.716749 +-1.891271,53.717945 +-1.545301,53.902942 +-1.519528,53.685492 +-1.557733,53.750219 +-1.770454,53.643119 +-1.583075,53.800598 +-1.611323,53.789817 +-1.613106,53.88648 +-1.671912,53.825555 +-1.487028,53.667282 +-1.575657,53.735247 +-1.54491,53.800109 +-1.735924,53.824194 +-1.719289,53.626031 +-1.767933,53.840519 +-1.487491,53.873408 +-1.516395,53.776547 +-1.50999,53.80922 +-1.541296,53.796005 +-1.909623,53.86583 +-1.636723,53.831349 +-1.768857,53.77463 +-1.549147,53.807153 +-1.737321,53.792613 +-1.364195,53.706349 +-1.864003,53.659117 +-1.760985,53.76355 +-1.384616,53.696982 +-1.665333,53.798941 +-1.781017,53.790966 +-1.75861,53.661728 +-1.675999,53.860996 +-1.629497,53.690997 +-1.914423,53.868 +-1.773263,53.700334 +-1.807492,53.773853 +-1.788866,53.778612 +-1.445833,53.822738 +-1.800443,53.647487 +-1.725368,53.735503 +-1.651426,53.74767 +-1.68655,53.710286 +-1.411686,53.632484 +-1.575125,53.73236 +-1.778807,53.810124 +-1.266735,53.660474 +-1.413672,53.771721 +-1.641845,53.686657 +-1.782411,53.835504 +-1.782154,53.791372 +-1.647762,53.712471 +-1.289481,53.686497 +-1.891696,53.723383 +-1.347543,53.790731 +-1.793243,53.811291 +-1.441746,53.798774 +-1.595941,53.780958 +-1.833191,53.79043 +-1.857148,53.717415 +-1.559772,53.733554 +-1.790872,53.628281 +-1.859669,53.72468 +-1.48735,53.654466 +-1.915083,53.706756 +-1.743803,53.7926 +-1.639734,53.712267 +-1.891636,53.723203 +-1.787068,53.801142 +-1.634087,53.715234 +-1.764624,53.758299 +-1.554719,53.801476 +-1.715414,53.79969 +-1.769295,53.805486 +-1.679282,53.715777 +-1.777687,53.599306 +-1.461404,53.82395 +-1.672131,53.863763 +-1.736652,53.91162 +-1.336175,53.715608 +-1.358927,53.676193 +-1.268815,53.696781 +-1.567415,53.820352 +-1.686286,53.760107 +-1.565129,53.810853 +-1.381815,53.64933 +-1.553627,53.799917 +-1.734635,53.734652 +-1.763087,53.643123 +-1.754081,53.696189 +-1.518759,53.815322 +-1.49451,53.809695 +-1.495287,53.680341 +-1.438193,53.759075 +-1.671125,53.570496 +-1.664361,53.730449 +-1.346358,53.861137 +-1.352,53.704361 +-1.746563,53.782917 +-1.50164,53.682165 +-1.776659,53.785592 +-1.599888,53.750547 +-1.736702,53.796881 +-1.560003,53.685315 +-1.587993,53.684426 +-1.543421,53.678503 +-1.709095,53.800161 +-1.51766,53.712458 +-1.515966,53.817783 +-1.506674,53.883438 +-1.641151,53.613347 +-1.354793,53.727745 +-1.723863,53.73843 +-1.538956,53.733844 +-1.668797,53.680946 +-1.78165,53.79787 +-1.40022,53.710598 +-1.913872,53.713909 +-1.783986,53.653103 +-1.78493,53.657931 +-1.564917,53.794655 +-1.53578,53.796479 +-1.371033,53.853153 +-1.518797,53.81064 +-1.450936,53.771718 +-1.960395,53.639988 +-1.759504,53.794439 +-1.769044,53.840242 +-1.767162,53.773926 +-1.820726,53.637614 +-1.572683,53.817675 +-1.693763,53.689273 +-1.88581,53.787327 +-1.881273,53.657517 +-1.579562,53.810266 +-1.779688,53.783971 +-1.800078,53.654263 +-1.785261,53.658318 +-1.823204,53.923885 +-1.518084,53.683347 +-1.750658,53.788606 +-1.591017,53.738005 +-1.586756,53.807621 +-1.812345,53.798326 +-1.490424,53.650506 +-1.500308,53.716665 +-1.593413,53.747352 +-1.857762,53.719438 +-1.350314,53.713511 +-1.879914,53.736548 +-1.552727,53.74896 +-1.657587,53.732138 +-1.544827,53.776955 +-1.570047,53.742768 +-1.382359,53.72807 +-1.755738,53.734472 +-1.532529,53.852713 +-1.673097,53.710196 +-1.371619,53.645241 +-1.881332,53.722753 +-1.575501,53.765779 +-1.775393,53.678524 +-1.556712,53.659839 +-1.833725,53.843531 +-1.760642,53.757042 +-1.752155,53.611435 +-1.426088,53.696757 +-1.503065,53.698683 +-1.524583,53.810618 +-1.636353,53.777618 +-1.782261,53.638359 +-1.555696,53.683043 +-1.78235,53.656354 +-1.695256,53.677538 +-1.313254,53.680865 +-1.768581,53.805557 +-1.845282,53.717858 +-1.268283,53.712615 +-1.549252,53.798795 +-1.581868,53.805942 +-1.879481,53.819094 +-1.628732,53.714247 +-1.527613,53.778857 +-1.773168,53.920709 +-1.790659,53.805696 +-1.904625,53.86331 +-1.524614,53.8106 +-1.757263,53.645852 +-1.741523,53.753587 +-1.909694,53.86814 +-1.787603,53.604708 +-1.628256,53.806085 +-1.784443,53.646453 +-1.743081,53.793965 +-1.532206,53.822952 +-1.565651,53.794092 +-1.522964,53.811429 +-1.761543,53.772027 +-1.641884,53.714188 +-1.640824,53.714131 +-1.820715,53.747323 +-1.766836,53.808133 +-1.742503,53.781812 +-1.853361,53.703892 +-1.282703,53.596995 +-1.671619,53.863114 +-1.818392,53.688079 +-1.405239,53.786519 +-1.528601,53.84371 +-1.901576,53.710682 +-1.555132,53.79977 +-1.808613,53.804486 +-1.507179,53.736818 +-1.895248,53.727053 +-1.565427,53.77323 +-1.487543,53.845555 +-1.84562,53.857226 +-1.255674,53.646644 +-1.695943,53.701898 +-1.557439,53.794107 +-1.514544,53.775165 +-1.66406,53.732138 +-1.630292,53.8387 +-1.85992,53.72673 +-1.747046,53.765733 +-1.938586,53.910581 +-1.675131,53.802168 +-1.519348,53.822192 +-1.468194,53.689455 +-1.732682,53.684126 +-1.347193,53.792778 +-1.743138,53.811995 +-1.711777,53.745475 +-1.535008,53.781196 +-1.744659,53.646338 +-1.327334,53.58867 +-1.555886,53.737009 +-1.784604,53.576156 +-1.711398,53.789794 +-1.836503,53.660458 +-1.516163,53.81782 +-1.540246,53.799012 +-1.540862,53.784364 +-1.592025,53.791973 +-1.767336,53.783642 +-1.572744,53.817648 +-1.562454,53.764348 +-1.800302,53.815015 +-1.715009,53.718285 +-1.792216,53.603979 +-1.466976,53.900813 +-1.503462,53.82068 +-1.72573,53.574723 +-1.817552,53.815996 +-1.904906,53.860236 +-1.453901,53.724436 +-1.784654,53.777428 +-1.807822,53.80462 +-1.622469,53.60982 +-1.354657,53.665357 +-1.388746,53.816456 +-1.502718,53.681837 +-1.313991,53.724076 +-1.757654,53.786059 +-1.776878,53.804368 +-1.871274,53.721296 +-1.530261,53.638041 +-1.4991,53.647325 +-1.770757,53.592749 +-1.624662,53.746016 +-1.458892,53.727604 +-1.741648,53.792452 +-1.36001,53.724573 +-1.843806,53.768486 +-1.696494,53.909521 +-1.568564,53.74545 +-1.874006,53.735014 +-1.821637,53.783861 +-1.305436,53.693179 +-1.772373,53.665962 +-1.45621,53.82265 +-1.420834,53.607154 +-1.792653,53.798527 +-1.491404,53.784003 +-1.909554,53.869461 +-1.833094,53.661639 +-1.23271,53.619983 +-1.733121,53.787148 +-1.582632,53.800875 +-1.857762,53.719456 +-1.793267,53.809512 +-1.789172,53.802494 +-1.758777,53.770287 +-1.888457,53.739172 +-1.754908,53.767672 +-1.506431,53.883446 +-1.872951,53.732955 +-1.366703,53.650276 +-1.749881,53.79166 +-1.775294,53.583329 +-1.781494,53.687361 +-1.664614,53.797789 +-1.400668,53.910225 +-1.779429,53.702988 +-1.830199,53.670138 +-1.506309,53.826552 +-1.594239,53.837874 +-1.6644,53.796017 +-1.776031,53.815224 +-1.580006,53.82357 +-1.670861,53.676404 +-1.911268,53.864348 +-1.652737,53.792847 +-1.848873,53.616234 +-1.763832,53.783276 +-1.730187,53.794961 +-1.388683,53.816591 +-1.780248,53.821955 +-1.570125,53.772276 +-1.860249,53.718973 +-1.624419,53.870131 +-1.386203,53.780527 +-1.831532,53.624336 +-1.7245,53.793977 +-1.253386,53.613454 +-1.524714,53.801729 +-1.549011,53.771713 +-1.733754,53.816621 +-1.759413,53.661433 +-1.616371,53.83223 +-1.837581,53.655641 +-1.791769,53.648775 +-1.902674,53.747103 +-1.531979,53.678189 +-1.818759,53.655462 +-1.761718,53.7895 +-1.579085,53.747204 +-1.638999,53.815888 +-1.852143,53.658087 +-1.513985,53.815726 +-1.775895,53.803701 +-1.724108,53.738044 +-1.527723,53.765025 +-1.577055,53.869254 +-1.582531,53.765111 +-1.575689,53.732038 +-1.837708,53.685464 +-1.618933,53.836175 +-1.523387,53.81037 +-1.249609,53.638067 +-1.751767,53.69568 +-1.91365,53.866867 +-1.520835,53.753052 +-1.559083,53.783489 +-1.558898,53.812708 +-1.788401,53.786719 +-1.568871,53.749469 +-1.85424,53.721276 +-1.737276,53.680693 +-1.562008,53.799921 +-1.619919,53.838101 +-1.795628,53.632864 +-1.632321,53.839551 +-1.724642,53.797887 +-1.795431,53.692275 +-1.523073,53.815286 +-1.768002,53.789485 +-1.687347,53.85824 +-1.773047,53.791239 +-1.684689,53.724213 +-1.675062,53.742352 +-1.694859,53.803676 +-1.546647,53.79954 +-1.777464,53.768238 +-1.545303,53.80313 +-1.885856,53.725328 +-1.564718,53.824153 +-1.743209,53.907221 +-1.73541,53.830996 +-1.752174,53.695996 +-1.666927,53.891009 +-1.490754,53.822631 +-1.762143,53.767993 +-1.537285,53.7673 +-1.768596,53.85802 +-1.511433,53.849708 +-1.804415,53.818959 +-1.753238,53.804169 +-1.962845,53.640555 +-1.91238,53.878038 +-1.948966,53.648325 +-1.827968,53.671618 +-1.508494,53.854037 +-1.778223,53.577807 +-1.318723,53.692842 +-1.809331,53.773182 +-1.52776,53.861745 +-1.495734,53.789927 +-1.562261,53.724485 +-1.337612,53.715751 +-1.62968,53.6908 +-1.544371,53.799478 +-1.821329,53.781433 +-1.641924,53.779109 +-1.617639,53.804704 +-1.625872,53.665944 +-1.676043,53.735083 +-1.579929,53.776607 +-1.70791,53.837485 +-1.740364,53.779191 +-1.387313,53.90739 +-1.263391,53.611835 +-1.752576,53.803071 +-1.388291,53.699455 +-1.611436,53.794096 +-1.935617,53.6722 +-1.472267,53.806903 +-1.7004,53.588181 +-1.878411,53.742569 +-1.576786,53.778313 +-1.453125,53.814556 +-1.752381,53.645123 +-1.741494,53.755816 +-1.779435,53.814817 +-1.676447,53.860063 +-1.496476,53.833198 +-1.601245,53.842571 +-1.539876,53.664845 +-1.497088,53.714755 +-1.71819,53.788822 +-1.567287,53.816631 +-1.576475,53.803181 +-1.345492,53.715749 +-1.862847,53.721457 +-1.359302,53.674433 +-1.789141,53.80866 +-1.293314,53.716208 +-1.495235,53.680934 +-1.435268,53.906924 +-1.674348,53.707135 +-1.761372,53.778219 +-2.00479,53.663085 +-1.568662,53.795136 +-1.767338,53.849092 +-1.758137,53.836859 +-1.904425,53.8713 +-1.679588,53.815077 +-1.717741,53.79007 +-1.756593,53.796402 +-1.748132,53.850527 +-1.698097,53.760847 +-1.52034,53.791214 +-1.880773,53.716739 +-1.635776,53.749511 +-1.64184,53.705164 +-1.631864,53.714778 +-1.565686,53.790766 +-1.660147,53.679771 +-1.634609,53.676011 +-1.537159,53.752523 +-1.796332,53.590135 +-1.757871,53.790643 +-1.54638,53.803224 +-1.698008,53.904312 +-1.563256,53.787935 +-1.620759,53.775269 +-1.754457,53.751331 +-1.545661,53.8107 +-1.741961,53.912153 +-1.78139,53.806848 +-1.750914,53.827317 +-1.456533,53.822364 +-1.634395,53.788146 +-1.500053,53.729221 +-1.789532,53.6606 +-1.533557,53.794304 +-1.814522,53.638404 +-1.856768,53.686585 +-1.5402,53.814301 +-1.570203,53.621805 +-1.775547,53.832004 +-1.577692,53.898125 +-1.520179,53.801343 +-1.695788,53.700351 +-1.924098,53.647135 +-1.651146,53.68806 +-1.40769,53.702977 +-1.976641,53.637467 +-1.462519,53.811551 +-1.762115,53.807845 +-1.771749,53.792701 +-1.78083,53.710253 +-1.770293,53.800815 +-1.485564,53.802359 +-1.591737,53.796601 +-1.690211,53.72349 +-1.520218,53.708711 +-1.719715,53.835581 +-1.684032,53.805724 +-1.443614,53.883666 +-1.74345,53.793192 +-1.775216,53.777266 +-1.580799,53.808023 +-1.778685,53.706195 +-1.724189,53.776657 +-1.481322,53.70064 +-1.922877,53.860366 +-1.743248,53.793938 +-1.734457,53.803869 +-1.712189,53.669625 +-1.565084,53.815194 +-1.859988,53.733794 +-1.509776,53.763757 +-1.554619,53.79664 +-1.49186,53.805316 +-1.847186,53.631224 +-1.633477,53.750636 +-1.735801,53.589639 +-1.599216,53.798792 +-1.906362,53.875534 +-1.54104,53.805595 +-1.87229,53.736046 +-1.625921,53.802285 +-1.767483,53.80915 +-1.406849,53.702434 +-1.304994,53.723719 +-1.757295,53.790444 +-1.542254,53.794481 +-1.816245,53.663026 +-1.640593,53.671886 +-1.482046,53.827915 +-1.751652,53.792518 +-1.775671,53.677545 +-1.511066,53.823758 +-1.7213,53.800387 +-1.533771,53.83396 +-1.760265,53.796634 +-1.448042,53.664844 +-1.751054,53.7884 +-1.876973,53.741731 +-1.493678,53.681997 +-1.365262,53.890989 +-1.658824,53.731036 +-1.868731,53.725185 +-1.635345,53.815095 +-1.709157,53.762609 +-1.782899,53.782242 +-1.712678,53.798039 +-1.768526,53.782512 +-1.884923,53.717328 +-1.524465,53.670573 +-1.761339,53.7974 +-1.824057,53.687647 +-1.542448,53.811523 +-1.362883,53.693903 +-1.549359,53.805761 +-1.763828,53.794816 +-1.860511,53.726937 +-1.512386,53.732283 +-1.630122,53.82004 +-1.787132,53.806418 +-1.562225,53.844745 +-1.89639,53.873073 +-1.709095,53.817804 +-1.752139,53.789696 +-1.515527,53.6515 +-1.350285,53.665225 +-1.726531,53.775916 +-1.554804,53.82498 +-1.802555,53.642259 +-1.697162,53.903339 +-1.977609,53.637027 +-1.378089,53.79554 +-1.709849,53.721625 +-1.650153,53.886261 +-1.521649,53.801573 +-1.457213,53.816714 +-1.327429,53.662564 +-1.368903,53.704523 +-1.696971,53.685326 +-1.380767,53.751818 +-1.604202,53.815895 +-1.788257,53.646181 +-1.376848,53.76146 +-1.376117,53.718681 +-1.927909,53.923265 +-1.790009,53.799107 +-2.012679,53.630431 +-1.53913,53.801075 +-1.757327,53.798147 +-1.531235,53.687947 +-1.69583,53.803723 +-1.320303,53.694424 +-1.500475,53.848333 +-1.893798,53.731088 +-1.314831,53.678897 +-1.841089,53.64415 +-1.651272,53.746141 +-1.553261,53.784366 +-1.460966,53.826078 +-1.604042,53.815167 +-1.575275,53.824254 +-1.668929,53.743297 +-1.539636,53.799298 +-1.772798,53.66572 +-1.579306,53.776623 +-1.656586,53.745222 +-1.808564,53.637991 +-1.557303,53.796875 +-1.75465,53.671337 +-1.575735,53.775639 +-1.629669,53.690413 +-1.567687,53.792463 +-1.773361,53.645336 +-1.736103,53.725479 +-1.644508,53.685083 +-1.535528,53.808279 +-1.53958,53.798812 +-1.411911,53.907441 +-1.69098,53.703323 +-1.537372,53.802228 +-1.76226,53.809005 +-1.840184,53.615306 +-1.516872,53.816951 +-1.701653,53.789797 +-1.387572,53.708296 +-1.857539,53.71835 +-1.521418,53.812529 +-1.39823,53.802204 +-1.909695,53.867493 +-1.50426,53.707837 +-1.797272,53.835629 +-1.875422,53.738027 +-1.327241,53.778853 +-1.569091,53.812458 +-1.330703,53.824533 +-1.284248,53.60389 +-1.482152,53.827906 +-1.669821,53.70688 +-1.546748,53.77325 +-1.773676,53.78715 +-1.601066,53.751063 +-1.68886,53.668282 +-1.641674,53.630031 +-1.677242,53.794183 +-1.917194,53.750799 +-1.828866,53.60685 +-1.986775,53.732338 +-1.732494,53.77104 +-1.672545,53.863324 +-1.791466,53.759185 +-1.356087,53.714477 +-1.857708,53.71764 +-1.523182,53.603219 +-1.308175,53.731206 +-1.899905,53.719193 +-1.769043,53.740817 +-1.575686,53.735301 +-1.287199,53.715803 +-1.738399,53.792624 +-1.467184,53.796994 +-1.583999,53.819215 +-1.250843,53.709263 +-1.768883,53.789253 +-1.593816,53.837558 +-1.842986,53.768701 +-1.633985,53.749739 +-1.42956,53.657252 +-1.805496,53.568345 +-1.759905,53.641444 +-1.768322,53.642908 +-1.499178,53.682901 +-1.735485,53.734519 +-1.834467,53.681847 +-1.489207,53.674868 +-1.665308,53.748698 +-1.686327,53.80546 +-1.558499,53.782768 +-1.559478,53.797952 +-1.870529,53.939324 +-1.375522,53.939659 +-1.515531,53.808128 +-1.767263,53.755581 +-1.700148,53.717655 +-1.608379,53.812628 +-1.490557,53.677148 +-1.554426,53.684297 +-1.530643,53.727547 +-1.626812,53.708704 +-1.816026,53.772366 +-1.785787,53.799288 +-1.515021,53.812818 +-1.331994,53.708835 +-1.638188,53.841286 +-1.834844,53.732585 +-1.414851,53.906143 +-1.287802,53.608225 +-1.684749,53.724249 +-1.709369,53.665888 +-1.486075,53.65358 +-1.52477,53.7336 +-1.544401,53.800844 +-1.689843,53.857833 +-1.778386,53.633346 +-1.559814,53.781811 +-1.600472,53.845588 +-1.816669,53.652546 +-1.749393,53.886248 +-1.562014,53.815353 +-1.402737,53.610822 +-1.530911,53.650357 +-1.586862,53.798382 +-1.773508,53.787294 +-1.571622,53.814507 +-1.771947,53.792549 +-1.641078,53.832109 +-1.513701,53.640527 +-1.581242,53.720867 +-1.534097,53.794899 +-1.394474,53.688701 +-1.702959,53.72523 +-1.847024,53.859988 +-1.949717,53.665709 +-1.822557,53.644574 +-1.531087,53.770808 +-1.542665,53.809717 +-1.694849,53.712905 +-1.745435,53.711046 +-2.011925,53.740643 +-1.755075,53.663249 +-1.782802,53.647933 +-1.477447,53.821387 +-1.771687,53.801267 +-1.528755,53.792065 +-1.765249,53.806719 +-1.795319,53.777833 +-1.540945,53.798997 +-1.587897,53.779502 +-1.644312,53.712011 +-1.899369,53.797694 +-1.526233,53.687092 +-1.340178,53.716394 +-1.630555,53.903872 +-1.25783,53.616924 +-1.892133,53.671108 +-1.361869,53.644749 +-1.790004,53.815267 +-1.837746,53.636164 +-1.823025,53.673831 +-1.4638,53.825417 +-1.752405,53.803781 +-1.86124,53.72177 +-1.804897,53.757662 +-1.753312,53.786319 +-1.794386,53.835363 +-1.767055,53.743833 +-1.923992,53.647233 +-1.585433,53.79853 +-1.750966,53.792885 +-1.547603,53.812325 +-1.593382,53.835309 +-1.507087,53.796544 +-1.764363,53.772554 +-1.416662,53.712486 +-1.506247,53.804675 +-1.260813,53.612286 +-1.780003,53.630508 +-1.72308,53.776798 +-1.675834,53.848871 +-1.792094,53.810283 +-1.283394,53.613286 +-1.526172,53.751815 +-1.742648,53.755639 +-1.894629,53.786958 +-1.557151,53.796955 +-1.719537,53.777922 +-1.526985,53.799617 +-1.360823,53.744945 +-1.472767,53.794879 +-1.886372,53.561716 +-1.526208,53.802526 +-1.865321,53.7203 +-1.560139,53.804399 +-1.782202,53.646889 +-1.903201,53.874597 +-1.421316,53.609547 +-1.551389,53.669428 +-1.732097,53.771542 +-1.778879,53.703814 +-1.518712,53.684033 +-1.520129,53.809692 +-1.74669,53.698699 +-1.604062,53.840468 +-1.761046,53.734052 +-1.531691,53.816003 +-1.57099,53.685786 +-1.359162,53.674684 +-1.292679,53.594933 +-1.354322,53.753602 +-1.255442,53.644369 +-1.69654,53.743253 +-1.398848,53.709036 +-1.681643,53.706013 +-1.787655,53.720961 +-1.879435,53.718239 +-1.733472,53.645271 +-1.619804,53.803722 +-1.658109,53.83037 +-1.681833,53.741103 +-1.453927,53.814784 +-1.386476,53.647197 +-1.608424,53.691918 +-1.770119,53.8243 +-1.908958,53.709178 +-1.554421,53.783714 +-1.481083,53.823425 +-1.597994,53.736052 +-1.634948,53.689333 +-1.767382,53.783615 +-1.715028,53.769247 +-1.898514,53.869228 +-1.757451,53.802982 +-1.7857,53.789446 +-1.492618,53.685804 +-1.63316,53.71213 +-1.485952,53.684804 +-1.740286,53.796799 +-1.885387,53.713796 +-1.792662,53.79362 +-1.861573,53.698779 +-1.584284,53.7889 +-1.734746,53.787008 +-1.778257,53.784696 +-1.996563,53.783058 +-1.708408,53.745934 +-1.585857,53.732334 +-1.600357,53.752247 +-1.428927,53.709659 +-1.771736,53.761432 +-1.426882,53.613682 +-1.318551,53.686639 +-1.343387,53.813898 +-1.615694,53.713397 +-1.517063,53.747447 +-1.859129,53.723142 +-1.539972,53.807433 +-1.546974,53.642213 +-1.778,53.718382 +-1.484892,53.728276 +-1.299642,53.69648 +-1.732378,53.684314 +-1.634177,53.692683 +-1.773176,53.798295 +-1.408665,53.800872 +-1.543005,53.784076 +-1.593281,53.837933 +-1.491773,53.822518 +-1.441869,53.79758 +-1.653367,53.699661 +-1.712633,53.797904 +-1.955528,53.708935 +-1.547117,53.799596 +-1.753581,53.784396 +-1.549667,53.811047 +-1.720081,53.785069 +-1.783267,53.698851 +-1.631925,53.702617 +-1.803265,53.639312 +-1.549563,53.771158 +-1.778866,53.651296 +-1.608547,53.735817 +-1.475035,53.866137 +-1.740886,53.753487 +-1.334403,53.709792 +-1.809179,53.7565 +-1.434927,53.795561 +-1.846113,53.768246 +-1.457559,53.799341 +-1.540107,53.797852 +-1.771102,53.839051 +-1.561147,53.786427 +-1.341513,53.603625 +-1.893386,53.804429 +-1.461832,53.816618 +-1.785205,53.776404 +-1.624304,53.71133 +-1.58622,53.678371 +-1.692188,53.714193 +-1.826461,53.640606 +-1.758177,53.882707 +-1.800407,53.802693 +-1.531991,53.823221 +-1.886901,53.787742 +-1.74902,53.719619 +-1.720942,53.712447 +-1.590584,53.745096 +-1.53472,53.848416 +-1.579289,53.776865 +-1.288611,53.714769 +-1.628568,53.744959 +-1.898938,53.857274 +-1.688107,53.805078 +-1.674912,53.708673 +-1.51398,53.791206 +-1.356687,53.722875 +-1.568184,53.745556 +-1.975037,53.897561 +-1.719197,53.806216 +-1.52226,53.811957 +-1.303253,53.694281 +-1.781304,53.650977 +-1.782262,53.702858 +-1.624974,53.709211 +-1.688882,53.827586 +-1.779929,53.798801 +-1.731979,53.809112 +-1.75872,53.708602 +-1.530427,53.688412 +-1.636279,53.677194 +-1.282608,53.604338 +-1.809157,53.928834 +-1.888622,53.722454 +-1.886379,53.722488 +-1.569718,53.810546 +-1.255684,53.646986 +-1.634078,53.8437 +-1.600537,53.795597 +-1.714209,53.684299 +-1.532829,53.803873 +-1.798543,53.64618 +-1.707035,53.801738 +-1.582665,53.806726 +-1.748665,53.812159 +-1.307723,53.681166 +-1.523803,53.817805 +-1.697541,53.675494 +-1.607389,53.850348 +-1.82955,53.680941 +-1.821283,53.674116 +-1.838057,53.732841 +-1.504321,53.679471 +-1.757878,53.670616 +-1.584167,53.806804 +-1.662018,53.888353 +-1.63414,53.745884 +-1.847002,53.769955 +-1.797689,53.631798 +-1.585422,53.782738 +-1.564838,53.82579 +-1.746496,53.786485 +-1.258341,53.701598 +-1.757198,53.696806 +-1.422718,53.698394 +-1.890786,53.729359 +-1.460783,53.800093 +-1.5522,53.788542 +-1.808727,53.772579 +-1.541888,53.794633 +-1.896854,53.73367 +-1.576978,53.869326 +-1.290692,53.601744 +-1.293751,53.688275 +-1.510548,53.729974 +-1.727268,53.879899 +-1.677424,53.865467 +-1.562776,53.81514 +-1.687862,53.805275 +-1.832667,53.815352 +-1.310161,53.70801 +-1.609462,53.592763 +-1.579577,53.678069 +-1.505165,53.731426 +-1.292711,53.688916 +-1.997887,53.700719 +-1.507266,53.737115 +-1.617438,53.663122 +-1.559121,53.800153 +-1.338839,53.823023 +-1.665454,53.743665 +-1.813512,53.64438 +-1.523499,53.733424 +-1.487408,53.654664 +-1.718053,53.82285 +-1.817508,53.633376 +-1.557472,53.697089 +-1.788258,53.80607 +-1.575732,53.672015 +-1.791559,53.79254 +-1.554397,53.679856 +-1.881893,53.944467 +-1.801209,53.783954 +-1.595278,53.736321 +-1.913743,53.865959 +-1.750815,53.769749 +-1.873149,53.808167 +-1.351091,53.704383 +-1.729306,53.823379 +-1.710441,53.798726 +-1.266377,53.663653 +-1.784497,53.796311 +-1.824692,53.662445 +-1.338882,53.715938 +-1.782229,53.79148 +-1.769857,53.797282 +-1.528792,53.688405 +-1.549517,53.771149 +-1.564879,53.763116 +-1.231036,53.618112 +-1.530274,53.768846 +-1.887028,53.876551 +-1.534363,53.791494 +-1.753613,53.776487 +-1.28613,53.603415 +-1.963118,53.62213 +-1.567884,53.829477 +-1.859892,53.758206 +-1.900321,53.799573 +-1.422721,53.69488 +-1.856185,53.697523 +-1.546835,53.828617 +-1.54944,53.771292 +-1.967868,53.639092 +-1.741393,53.787022 +-1.834438,53.693208 +-1.291725,53.690816 +-1.694836,53.700034 +-1.508118,53.644567 +-1.912845,53.859056 +-1.543581,53.774272 +-1.541951,53.811144 +-1.498431,53.63997 +-1.815449,53.77241 +-1.662251,53.744177 +-1.896673,53.807605 +-1.58326,53.78344 +-1.621088,53.796041 +-1.277753,53.701132 +-1.233374,53.620886 +-1.306554,53.692457 +-1.650658,53.896949 +-1.761832,53.77201 +-1.654112,53.706728 +-1.767024,53.744013 +-1.54087,53.790584 +-1.800501,53.651334 +-1.827326,53.710248 +-1.667196,53.682416 +-1.527717,53.787145 +-1.505179,53.837396 +-1.58714,53.788649 +-1.842506,53.633213 +-1.534006,53.715363 +-1.770855,53.809013 +-1.752412,53.611355 +-1.236482,53.624592 +-1.522522,53.67239 +-1.505893,53.700402 +-1.674249,53.706209 +-1.342142,53.907915 +-1.759079,53.781145 +-1.883118,53.65227 +-1.602032,53.815708 +-1.537924,53.664748 +-1.729306,53.823388 +-1.492269,53.680778 +-1.871455,53.726527 +-1.336794,53.722488 +-1.514466,53.76748 +-1.294197,53.691531 +-1.690274,53.801534 +-1.556776,53.745991 +-1.780766,53.702271 +-1.634307,53.69511 +-1.407128,53.69981 +-1.825857,53.673466 +-1.518646,53.724291 +-1.656889,53.745286 +-1.846939,53.770584 +-1.636149,53.748514 +-1.660777,53.729487 +-1.535542,53.80569 +-1.641415,53.719445 +-1.550296,53.770657 +-1.372145,53.831659 +-1.512642,53.797924 +-1.701909,53.869341 +-1.531326,53.750703 +-1.633177,53.68921 +-1.658965,53.829743 +-1.776152,53.761009 +-1.580006,53.823543 +-2.097811,53.713954 +-1.530503,53.793249 +-1.489794,53.650036 +-1.823323,53.660358 +-1.508757,53.79523 +-1.609104,53.74114 +-1.787173,53.804351 +-1.779062,53.833916 +-1.527921,53.798767 +-1.536733,53.806495 +-1.584483,53.811703 +-1.836234,53.687053 +-1.601374,53.841789 +-1.304977,53.702668 +-1.764664,53.650649 +-1.530101,53.806083 +-1.811637,53.780079 +-1.698448,53.67564 +-1.617333,53.795005 +-1.491516,53.679184 +-1.451692,53.745125 +-1.712506,53.70095 +-1.824586,53.662427 +-1.441265,53.904633 +-1.817599,53.924021 +-1.564542,53.807363 +-1.812111,53.755426 +-1.325278,53.665572 +-1.497796,53.801593 +-1.841947,53.81532 +-1.456378,53.813196 +-1.912224,53.858174 +-1.915474,53.867515 +-1.664876,53.873477 +-1.77754,53.848617 +-1.767851,53.841588 +-1.536737,53.614319 +-1.391536,53.824119 +-1.975033,53.619292 +-1.325728,53.719819 +-2.020738,53.628776 +-1.808951,53.786744 +-1.55306,53.748997 +-1.927743,53.700472 +-1.544453,53.849325 +-1.50558,53.80975 +-1.789497,53.834645 +-1.67672,53.860108 +-1.784712,53.798675 +-1.730724,53.808264 +-1.784614,53.645563 +-1.739216,53.633581 +-1.327618,53.605948 +-1.575471,53.735588 +-1.749409,53.886185 +-1.546012,53.824686 +-1.667591,53.801419 +-1.450607,53.80739 +-1.937031,53.912009 +-1.377343,53.679759 +-1.355451,53.738256 +-1.289633,53.717921 +-1.348288,53.608255 +-1.684025,53.72982 +-1.411105,53.845644 +-1.792139,53.807389 +-1.840463,53.689782 +-1.937355,53.715039 +-1.526898,53.80874 +-1.606683,53.745536 +-1.721938,53.83022 +-1.800803,53.763749 +-2.013972,53.742593 +-1.749645,53.803245 +-1.843742,53.630195 +-1.783461,53.62851 +-1.403845,53.786359 +-1.754282,53.721562 +-1.778925,53.833871 +-1.576248,53.819683 +-1.546757,53.803468 +-1.791507,53.609694 +-1.653307,53.636905 +-1.753033,53.675945 +-1.737725,53.783868 +-1.318207,53.692956 +-1.633261,53.751049 +-1.738502,53.802943 +-1.764505,53.828441 +-1.753251,53.788944 +-1.54937,53.748058 +-1.520626,53.818035 +-1.867167,53.721354 +-1.523313,53.798084 +-1.757683,53.794256 +-1.556563,53.810938 +-1.813082,53.639022 +-1.524522,53.810663 +-1.855808,53.723723 +-1.824136,53.653996 +-1.59784,53.798222 +-1.537465,53.796503 +-1.615579,53.697748 +-1.443656,53.824282 +-1.331302,53.595659 +-1.882159,53.741512 +-1.91952,53.866619 +-1.786909,53.78455 +-1.595785,53.781425 +-1.350738,53.779486 +-1.743833,53.66043 +-1.507851,53.824635 +-1.750513,53.789972 +-1.455991,53.749181 +-2.129025,53.709493 +-1.545009,53.814894 +-1.975915,53.63779 +-1.78981,53.77812 +-1.851769,53.777808 +-1.753403,53.788944 +-1.576105,53.814253 +-1.718532,53.787528 +-1.781867,53.790985 +-1.789764,53.778084 +-1.897946,53.827362 +-1.715068,53.794719 +-1.720585,53.798345 +-1.763001,53.815055 +-1.483071,53.800092 +-1.745047,53.797735 +-1.861701,53.729033 +-1.872337,53.700489 +-1.493536,53.678671 +-1.753353,53.836337 +-1.735697,53.645088 +-1.647777,53.712498 +-1.577582,53.804839 +-1.666965,53.824831 +-1.919642,53.866646 +-1.565133,53.789946 +-1.623303,53.590848 +-1.530064,53.768683 +-1.893024,53.881069 +-1.709645,53.799695 +-1.848004,53.828612 +-1.518037,53.815985 +-1.761605,53.771793 +-1.744143,53.796546 +-1.781672,53.661709 +-1.54402,53.805184 +-1.760768,53.777679 +-1.723288,53.82137 +-1.54516,53.805107 +-1.856109,53.697577 +-1.462096,53.628406 +-1.535505,53.792559 +-1.334888,53.645348 +-1.64137,53.61066 +-1.929114,53.885643 +-1.900357,53.874388 +-1.530872,53.772345 +-1.758185,53.794185 +-1.720586,53.773143 +-1.70912,53.800934 +-1.842182,53.849816 +-1.773691,53.654342 +-1.369461,53.716858 +-1.779886,53.783863 +-1.838968,53.732537 +-1.959536,53.843001 +-1.546231,53.795907 +-1.800325,53.861384 +-1.777538,53.808873 +-1.405663,53.715658 +-1.537402,53.802246 +-1.390426,53.69952 +-1.833389,53.805637 +-1.760781,53.756755 +-1.831738,53.747501 +-1.353144,53.608938 +-1.534951,53.787757 +-1.610276,53.748864 +-1.724023,53.822783 +-1.546791,53.828509 +-1.902131,53.843957 +-1.674668,53.706974 +-1.492196,53.680598 +-1.661462,53.58734 +-1.909613,53.870063 +-1.52087,53.633923 +-1.763131,53.816206 +-1.800019,53.567518 +-1.647244,53.707445 +-1.700575,53.698035 +-1.53414,53.848603 +-1.578693,53.623974 +-1.655466,53.802481 +-1.336755,53.679703 +-1.578326,53.824525 +-1.793536,53.689567 +-1.565859,53.793131 +-1.911156,53.859989 +-1.687961,53.867652 +-1.55918,53.781485 +-1.49598,53.83023 +-1.428481,53.685542 +-1.798023,53.631637 +-1.523542,53.81003 +-1.950276,53.795829 +-1.491133,53.76252 +-1.876105,53.727395 +-1.551567,53.726809 +-1.338415,53.827757 +-1.78405,53.800526 +-1.569021,53.777872 +-1.511113,53.715263 +-1.560268,53.813828 +-1.578679,53.807423 +-1.729562,53.722075 +-1.638223,53.711858 +-1.814808,53.614334 +-1.456322,53.736491 +-1.317688,53.710031 +-1.497542,53.789799 +-1.745577,53.81058 +-1.659945,53.838248 +-1.728372,53.737469 +-1.866739,53.736975 +-1.673315,53.805381 +-1.490868,53.677707 +-1.745741,53.768336 +-1.587548,53.692693 +-1.721199,53.792738 +-1.780592,53.767668 +-1.341749,53.710893 +-1.867002,53.72077 +-1.715977,53.617188 +-1.516879,53.808421 +-1.591113,53.839013 +-1.635604,53.779917 +-1.818085,53.643362 +-1.693109,53.904048 +-1.916063,53.854276 +-1.533182,53.802113 +-1.697542,53.90974 +-1.557699,53.694214 +-1.523506,53.770311 +-1.843669,53.768621 +-1.544964,53.776947 +-1.493133,53.815576 +-1.69628,53.699319 +-1.713429,53.723269 +-1.686526,53.574708 +-1.557959,53.813891 +-1.732925,53.837157 +-1.787832,53.806159 +-1.3682,53.766682 +-1.603704,53.7462 +-1.760264,53.775503 +-1.801922,53.651597 +-1.516029,53.81763 +-1.905103,53.860524 +-1.65241,53.834191 +-1.597172,53.793474 +-1.621954,53.816204 +-1.921133,53.646836 +-1.750096,53.913779 +-1.909855,53.71485 +-1.514026,53.791197 +-1.769578,53.83974 +-1.475003,53.669162 +-1.775986,53.621054 +-1.826566,53.640741 +-1.776126,53.654608 +-1.474684,53.669269 +-1.505856,53.699611 +-1.887682,53.722454 +-1.729748,53.808918 +-1.464127,53.809321 +-1.83955,53.814508 +-1.738101,53.79177 +-1.666952,53.715258 +-1.805283,53.815221 +-1.857607,53.707232 +-1.534063,53.796607 +-1.627075,53.901489 +-1.570345,53.824974 +-1.542128,53.799119 +-1.851088,53.592274 +-1.46201,53.667307 +-1.621484,53.679431 +-1.339442,53.809751 +-1.518344,53.815725 +-1.470681,53.67104 +-1.591944,53.791011 +-1.575115,53.790512 +-1.712531,53.899386 +-1.756443,53.793525 +-1.536902,53.614427 +-1.784508,53.660519 +-1.619834,53.756742 +-1.503534,53.800376 +-1.659685,53.710698 +-1.794787,53.762435 +-1.540892,53.784355 +-1.384062,53.909045 +-1.779968,53.834978 +-1.484556,53.694982 +-1.621103,53.79605 +-1.615269,53.75341 +-1.370112,53.626529 +-1.64511,53.721631 +-1.573418,53.811107 +-1.782231,53.644291 +-1.584401,53.818516 +-1.918132,53.876837 +-1.716299,53.832813 +-1.544856,53.781243 +-1.569767,53.810222 +-1.880544,53.722653 +-1.791971,53.795237 +-1.690843,53.713695 +-1.754266,53.80232 +-1.834989,53.927946 +-1.771071,53.763705 +-1.601591,53.835004 +-1.819258,53.924284 +-1.324872,53.725019 +-1.444217,53.822038 +-1.541868,53.799216 +-1.769476,53.780824 +-1.69249,53.651977 +-1.78229,53.768013 +-1.764729,53.793838 +-1.592789,53.780507 +-1.882583,53.714251 +-1.88151,53.723913 +-1.915147,53.855822 +-1.661458,53.790014 +-1.604253,53.742634 +-1.593939,53.793463 +-1.428238,53.79739 +-1.380912,53.700693 +-1.558331,53.782866 +-1.487712,53.744458 +-1.381235,53.637274 +-1.507768,53.798021 +-1.365792,53.744189 +-1.558049,53.822691 +-1.509344,53.799501 +-1.338244,53.827028 +-1.779153,53.790459 +-1.919581,53.866619 +-1.240394,53.629875 +-1.63768,53.702697 +-1.775802,53.821201 +-1.500861,53.819698 +-1.482431,53.66328 +-1.786716,53.642691 +-1.577919,53.79845 +-1.554836,53.767519 +-1.712977,53.874231 +-1.684671,53.730657 +-1.452169,53.805204 +-1.74679,53.644249 +-1.881375,53.712956 +-1.896334,53.723189 +-1.631945,53.715901 +-1.634797,53.68926 +-1.446296,53.871733 +-1.462792,53.830625 +-1.291996,53.69088 +-1.552977,53.779646 +-1.515178,53.677906 +-1.493328,53.810751 +-1.523758,53.817787 +-1.463262,53.728406 +-1.817307,53.931651 +-1.934542,53.682356 +-1.791484,53.642097 +-1.691699,53.68773 +-1.711598,53.800481 +-1.753016,53.64525 +-1.525247,53.849979 +-1.845597,53.859536 +-1.518959,53.816393 +-1.54453,53.814201 +-1.755952,53.815257 +-1.877471,53.716269 +-1.460349,53.667021 +-1.406096,53.727983 +-1.755094,53.795626 +-2.102075,53.710346 +-1.529284,53.793667 +-1.37346,53.747555 +-1.780125,53.662318 +-1.693116,53.674036 +-1.47599,53.80549 +-1.590596,53.787582 +-1.5782,53.821865 +-1.500563,53.682323 +-1.749854,53.63515 +-1.659518,53.744637 +-1.766511,53.773646 +-1.732782,53.771104 +-1.804837,53.757428 +-1.453115,53.815329 +-1.920265,53.714237 +-1.62144,53.794083 +-1.871736,53.718878 +-1.880663,53.62142 +-1.762738,53.645989 +-1.814549,53.928582 +-1.491387,53.677322 +-1.580784,53.808014 +-1.279224,53.704538 +-1.840569,53.689881 +-1.758243,53.770798 +-1.591689,53.832841 +-1.728603,53.736832 +-1.584675,53.689196 +-1.364262,53.71497 +-1.648586,53.684475 +-1.753821,53.636911 +-1.71768,53.79016 +-1.580276,53.805702 +-1.733421,53.806841 +-1.814397,53.9286 +-1.684106,53.805976 +-1.832295,53.672109 +-1.734547,53.823337 +-1.921108,53.863259 +-1.544712,53.779202 +-1.594243,53.793428 +-1.688966,53.596214 +-1.800353,53.634481 +-1.745165,53.81083 +-1.746923,53.649786 +-1.94382,53.901146 +-1.593416,53.838104 +-1.519995,53.810761 +-1.665621,53.6786 +-1.556369,53.83072 +-1.503571,53.804978 +-1.52734,53.799142 +-1.771162,53.814074 +-1.757158,53.645753 +-1.777065,53.619978 +-1.712835,53.875048 +-1.504756,53.693998 +-1.73155,53.771658 +-1.331666,53.587931 +-1.725839,53.837806 +-1.577874,53.798351 +-1.856738,53.686477 +-1.86014,53.660362 +-1.731964,53.83053 +-1.719652,53.806316 +-1.764157,53.798457 +-1.859235,53.723196 +-1.790774,53.791666 +-1.727977,53.707008 +-1.547078,53.799056 +-1.302726,53.611495 +-1.820477,53.924133 +-1.730472,53.833349 +-1.778484,53.784984 +-1.540474,53.798959 +-1.524791,53.808336 +-1.365937,53.891622 +-1.673037,53.86257 +-1.515222,53.742684 +-1.601831,53.897749 +-1.402329,53.678251 +-1.561117,53.854762 +-1.937718,53.705197 +-1.868352,53.739754 +-1.897466,53.743809 +-1.774055,53.78725 +-1.913947,53.862858 +-1.883903,53.757611 +-1.514317,53.742276 +-1.861735,53.686159 +-1.452622,53.792542 +-1.663272,53.826942 +-1.896329,53.774682 +-1.649312,53.704718 +-1.586648,53.841793 +-1.779287,53.81115 +-1.36113,53.693669 +-1.627256,53.744083 +-1.260526,53.7074 +-1.647551,53.712407 +-1.577462,53.797046 +-1.874195,53.686641 +-1.84097,53.667717 +-1.833228,53.738722 +-1.759357,53.801467 +-1.769247,53.559274 +-1.237775,53.625849 +-1.933469,53.835296 +-1.501622,53.683621 +-1.766057,53.797984 +-1.734492,53.714087 +-1.514772,53.71197 +-1.766772,53.636056 +-1.504689,53.757804 +-1.832969,53.850136 +-1.932839,53.858745 +-1.721961,53.792345 +-1.778217,53.717367 +-1.785158,53.702405 +-1.789119,53.649328 +-1.784132,53.796319 +-1.868103,53.751627 +-1.757058,53.652674 +-1.618819,53.835303 +-1.265092,53.708794 +-1.464549,53.826292 +-1.77238,53.734811 +-1.653572,53.680238 +-1.960902,53.730939 +-1.385884,53.713941 +-1.549563,53.771176 +-1.261958,53.680147 +-1.919295,53.674761 +-1.356912,53.606657 +-1.768964,53.738642 +-1.634807,53.819354 +-1.914235,53.714009 +-1.844422,53.827619 +-1.537435,53.666597 +-1.525354,53.810927 +-1.756338,53.793255 +-1.830374,53.645484 +-1.516618,53.808654 +-1.572112,53.80668 +-1.774219,53.74808 +-1.4067,53.616019 +-1.327159,53.789693 +-1.525026,53.813073 +-1.512628,53.810929 +-1.623159,53.589994 +-1.745539,53.826911 +-1.596707,53.784934 +-1.917241,53.819476 +-1.601406,53.793587 +-1.789089,53.806907 +-1.776949,53.776802 +-1.361914,53.709924 +-1.496022,53.611152 +-1.525938,53.678255 +-1.51641,53.77653 +-1.728294,53.775471 +-1.345516,53.793201 +-1.79533,53.800644 +-1.54297,53.774683 +-1.884046,53.876791 +-1.512433,53.808115 +-1.632852,53.846608 +-1.568643,53.805796 +-1.589063,53.779721 +-1.950214,53.796287 +-1.708542,53.79447 +-1.472891,53.751072 +-1.863165,53.726239 +-1.577792,53.765688 +-1.408358,53.705021 +-1.801653,53.808852 +-1.66847,53.749606 +-1.786196,53.571952 +-1.592623,53.8494 +-1.651971,53.727583 +-1.569567,53.733337 +-1.711346,53.63341 +-1.562443,53.815076 +-1.508915,53.712719 +-1.583001,53.732936 +-1.651738,53.834684 +-1.859895,53.816493 +-1.501616,53.822614 +-1.621422,53.794362 +-1.718624,53.803311 +-1.783005,53.782305 +-1.742107,53.796956 +-1.756192,53.792311 +-1.947315,53.710999 +-1.470387,53.669151 +-1.909631,53.868922 +-1.52509,53.685029 +-1.879974,53.869849 +-1.630365,53.80113 +-1.574793,53.808847 +-1.621515,53.794146 +-1.684436,53.721552 +-1.752591,53.80317 +-1.516969,53.808511 +-1.491567,53.678707 +-1.460464,53.816665 +-1.787482,53.604654 +-1.750665,53.805332 +-1.316586,53.692012 +-1.641447,53.706852 +-1.81629,53.663008 +-1.523748,53.797195 +-1.489211,53.829581 +-1.712324,53.783181 +-1.791564,53.791596 +-1.426426,53.703122 +-1.803825,53.642414 +-1.510827,53.679803 +-1.643473,53.789701 +-1.75617,53.793435 +-1.714297,53.615252 +-1.457747,53.72937 +-1.782923,53.64787 +-1.793846,53.784409 +-1.628425,53.690625 +-1.579427,53.823801 +-1.676985,53.865214 +-1.581425,53.82299 +-1.688347,53.700835 +-1.631665,53.687255 +-1.93218,53.852336 +-1.892653,53.722647 +-1.826788,53.697412 +-1.804299,53.63811 +-1.762119,53.764137 +-1.527531,53.861852 +-1.316556,53.692003 +-1.705423,53.719664 +-1.788234,53.768653 +-1.515116,53.72682 +-1.622735,53.590118 +-1.798088,53.725653 +-1.727906,53.739203 +-1.865127,53.605359 +-1.941088,53.906843 +-1.287492,53.700255 +-1.784988,53.762526 +-1.805463,53.651468 +-1.753348,53.655767 +-1.769978,53.797345 +-1.743569,53.756261 +-1.598788,53.799106 +-1.665947,53.748466 +-2.078256,53.717123 +-1.897187,53.727756 +-1.731855,53.742789 +-1.897286,53.873945 +-1.529913,53.669318 +-1.584344,53.788891 +-1.755911,53.798746 +-1.840643,53.682304 +-1.730754,53.808264 +-1.544515,53.814192 +-1.724184,53.738017 +-1.578336,53.821955 +-1.529097,53.80358 +-1.561931,53.786942 +-1.662772,53.82295 +-1.921204,53.714274 +-1.678355,53.708125 +-1.441513,53.798027 +-1.625578,53.692297 +-1.524297,53.758064 +-1.690496,53.903295 +-1.8307,53.662193 +-1.723338,53.795368 +-1.825065,53.802633 +-1.468004,53.66843 +-1.527355,53.808625 +-1.795657,53.805247 +-1.602758,53.897896 +-1.578142,53.80503 +-1.263261,53.681827 +-1.429269,53.748211 +-1.559121,53.800171 +-1.70666,53.790061 +-1.358388,53.678742 +-1.859622,53.725345 +-2.070546,53.718341 +-1.561398,53.769575 +-1.347978,53.728427 +-1.604097,53.815769 +-1.549941,53.681826 +-1.716546,53.827727 +-1.60026,53.845453 +-1.489967,53.683357 +-1.913431,53.736784 +-1.426003,53.710769 +-1.396641,53.704459 +-1.545629,53.79542 +-1.916977,53.876252 +-1.761451,53.77227 +-1.607208,53.814431 +-1.829429,53.572012 +-1.779267,53.644187 +-1.517591,53.816513 +-1.574098,53.731952 +-1.7968,53.640758 +-1.357613,53.607272 +-1.533963,53.841259 +-1.475303,53.669397 +-1.57954,53.798761 +-1.770111,53.839552 +-1.558863,53.826208 +-1.558514,53.782759 +-1.597285,53.8007 +-1.643037,53.719449 +-1.55676,53.689878 +-1.315759,53.723412 +-1.678986,53.907786 +-1.539915,53.633404 +-1.525832,53.678228 +-1.58372,53.655505 +-1.569108,53.812314 +-1.587678,53.684038 +-1.617493,53.800785 +-1.652412,53.883589 +-1.543513,53.835112 +-1.841312,53.673461 +-1.757499,53.81038 +-1.395028,53.786306 +-1.310278,53.694385 +-1.752213,53.795125 +-1.500504,53.801146 +-1.764015,53.636734 +-1.982682,53.619779 +-1.673737,53.797895 +-1.592538,53.78607 +-1.607413,53.810306 +-1.422642,53.804688 +-1.784131,53.651333 +-1.560699,53.768305 +-1.817957,53.637799 +-1.3725,53.675563 +-1.950691,53.726415 +-1.724117,53.722755 +-1.521139,53.733019 +-1.482332,53.792314 +-1.569975,53.733501 +-1.564965,53.79 +-1.786349,53.799262 +-1.332104,53.708584 +-1.737279,53.787265 +-1.708974,53.767237 +-1.499998,53.678887 +-1.731842,53.730565 +-1.719862,53.731374 +-1.509328,53.833467 +-1.752156,53.789265 +-1.778854,53.778082 +-1.776392,53.678714 +-1.876328,53.73392 +-1.340393,53.840136 +-1.544326,53.800808 +-1.468065,53.668386 +-1.504217,53.814634 +-1.5473,53.898212 +-1.821455,53.658369 +-1.784337,53.634759 +-1.770505,53.764692 +-1.533702,53.668866 +-1.261577,53.673358 +-1.374467,53.935851 +-1.731959,53.79803 +-1.615912,53.787702 +-1.755427,53.69398 +-1.510082,53.798749 +-1.746331,53.67274 +-1.28341,53.588227 +-1.313394,53.916841 +-1.600906,53.64778 +-1.900546,53.633383 +-1.455075,53.705098 +-1.701155,53.802316 +-1.377746,53.785885 +-2.097193,53.715384 +-1.785739,53.83258 +-1.548643,53.681417 +-1.353364,53.721122 +-1.526513,53.810545 +-1.638998,53.895458 +-1.728684,53.842045 +-1.411016,53.737077 +-1.6667,53.678154 +-1.934991,53.892882 +-1.751347,53.728396 +-1.806574,53.835069 +-1.387448,53.650024 +-1.627468,53.713227 +-1.740221,53.782759 +-1.720701,53.799164 +-1.782312,53.654898 +-1.559436,53.784614 +-1.773697,53.786063 +-1.791563,53.650591 +-1.469509,53.70164 +-1.77832,53.674682 +-1.773284,53.747126 +-1.735506,53.726403 +-1.695055,53.705338 +-1.44552,53.816561 +-1.565197,53.829224 +-1.733296,53.742622 +-1.763881,53.92062 +-1.723133,53.86799 +-1.651532,53.694496 +-1.440772,53.798968 +-1.739443,53.822601 +-1.524365,53.678159 +-1.353222,53.667111 +-1.623679,53.815257 +-1.804973,53.757626 +-1.376829,53.749406 +-1.358372,53.678841 +-1.519049,53.809832 +-1.54506,53.801691 +-1.955313,53.640544 +-1.950963,53.726586 +-1.782996,53.648481 +-1.577205,53.732007 +-1.567709,53.834662 +-1.540522,53.782062 +-1.911037,53.664383 +-1.945579,53.847193 +-1.883578,53.880907 +-1.7178,53.68837 +-1.50314,53.70004 +-1.656528,53.679815 +-1.713532,53.801942 +-1.782334,53.815182 +-1.530662,53.856535 +-1.743195,53.680715 +-1.503346,53.786785 +-1.465598,53.662461 +-1.753116,53.664413 +-1.90954,53.869093 +-1.739922,53.796735 +-1.593607,53.741376 +-1.334108,53.656463 +-1.454825,53.754883 +-1.782123,53.656335 +-1.742508,53.788355 +-1.602288,53.81588 +-1.531194,53.74619 +-1.786047,53.712186 +-1.766517,53.819152 +-1.846667,53.778646 +-1.74746,53.83326 +-1.737898,53.792668 +-1.94789,53.895755 +-1.456187,53.749289 +-1.524472,53.811049 +-1.767886,53.741624 +-1.653415,53.699445 +-1.626984,53.709756 +-1.526109,53.906975 +-1.542172,53.799245 +-1.860914,53.724223 +-1.346687,53.863422 +-1.59495,53.735745 +-1.542416,53.790743 +-1.758477,53.790914 +-1.490889,53.679702 +-1.54881,53.681408 +-1.587492,53.78208 +-1.769436,53.746624 +-1.794915,53.705092 +-1.53899,53.67392 +-1.706733,53.801395 +-1.515948,53.773193 +-1.733328,53.816647 +-1.69461,53.80869 +-1.823295,53.638112 +-1.48921,53.809664 +-1.643356,53.807075 +-1.548462,53.771909 +-1.537023,53.614419 +-1.598422,53.837483 +-1.349255,53.693776 +-1.871611,53.794836 +-1.709921,53.825706 +-1.510662,53.810229 +-1.637523,53.712215 +-1.446346,53.823028 +-1.623151,53.684299 +-1.558529,53.782777 +-1.376558,53.681625 +-1.351558,53.608857 +-1.780814,53.76011 +-1.501488,53.682201 +-1.790313,53.655586 +-1.757303,53.810226 +-1.63974,53.849928 +-1.943434,53.723895 +-1.616849,53.794796 +-1.509822,53.805435 +-1.712699,53.899306 +-1.749658,53.634934 +-1.511548,53.847668 +-1.785489,53.780305 +-1.427093,53.613737 +-1.898955,53.723407 +-1.902556,53.831275 +-1.896092,53.766197 +-1.731495,53.758913 +-1.4407,53.623823 +-1.808186,53.784928 +-1.550383,53.738336 +-1.587965,53.808165 +-1.581754,53.799029 +-1.577638,53.802296 +-1.468139,53.715422 +-1.913968,53.860261 +-1.543306,53.802467 +-1.641587,53.706385 +-1.751428,53.778963 +-1.708143,53.819186 +-1.767745,53.805816 +-1.52294,53.788123 +-1.327668,53.898298 +-1.51237,53.729694 +-1.53387,53.848296 +-1.881865,53.743327 +-1.526158,53.800243 +-1.807682,53.812169 +-1.453779,53.82734 +-1.786873,53.76474 +-1.449715,53.83604 +-1.788142,53.605581 +-1.761355,53.797184 +-1.473997,53.757179 +-1.68409,53.806182 +-1.592753,53.738694 +-1.685674,53.709888 +-1.48779,53.683132 +-1.597351,53.796926 +-1.73523,53.842698 +-1.724123,53.81446 +-1.904456,53.871048 +-1.567231,53.791042 +-1.456985,53.822654 +-1.652571,53.739341 +-1.485173,53.672982 +-1.426508,53.858518 +-1.535959,53.807768 +-1.480726,53.701069 +-1.708242,53.644943 +-1.674068,53.653187 +-2.101444,53.693503 +-1.525007,53.810727 +-1.72407,53.792511 +-1.668274,53.639545 +-2.10564,53.724122 +-1.670086,53.847193 +-1.622823,53.897125 +-1.607658,53.736812 +-1.546528,53.775362 +-1.789594,53.790855 +-1.524091,53.816539 +-1.933052,53.647544 +-1.807651,53.81545 +-1.804144,53.772796 +-1.635873,53.748837 +-1.824818,53.726989 +-1.772571,53.612266 +-1.645766,53.784181 +-1.304886,53.723853 +-1.830265,53.729073 +-1.559741,53.678438 +-1.611132,53.795731 +-1.622428,53.80578 +-1.341064,53.809948 +-1.785413,53.78035 +-1.532694,53.80372 +-1.840318,53.640015 +-1.641502,53.800176 +-1.74383,53.793166 +-1.767132,53.773934 +-1.723523,53.792564 +-1.504259,53.704035 +-1.593,53.799527 +-1.828842,53.638929 +-2.071,53.718413 +-1.500293,53.68589 +-1.503942,53.804467 +-1.554814,53.80109 +-1.534558,53.734061 +-1.483754,53.713512 +-1.718512,53.797316 +-1.656215,53.831623 +-1.567384,53.79239 +-1.750028,53.8001 +-1.536155,53.803778 +-1.508564,53.680423 +-1.491753,53.663275 +-1.53793,53.774907 +-1.761279,53.802613 +-1.466754,53.814168 +-1.749054,53.795298 +-1.816686,53.815931 +-1.562084,53.764904 +-1.540577,53.81876 +-1.546632,53.824922 +-1.849959,53.663864 +-1.772918,53.761569 +-1.719515,53.742545 +-1.301231,53.597689 +-1.736382,53.82859 +-1.592869,53.838121 +-1.607014,53.807537 +-1.538885,53.741726 +-1.752419,53.917397 +-1.609501,53.799698 +-1.458588,53.819614 +-1.558851,53.812816 +-1.713011,53.784828 +-1.84399,53.862401 +-1.729017,53.809294 +-1.662588,53.732341 +-1.751667,53.792455 +-1.732234,53.771444 +-1.741614,53.793126 +-1.718224,53.788273 +-1.818103,53.663847 +-1.582241,53.77453 +-1.747689,53.800185 +-1.751759,53.792311 +-1.55838,53.76516 +-1.481875,53.803583 +-1.979271,53.797419 +-1.843531,53.630141 +-1.768356,53.736106 +-1.342317,53.711364 +-1.630228,53.693992 +-1.514615,53.907136 +-1.566555,53.676809 +-1.359541,53.694595 +-1.652624,53.699776 +-1.857931,53.763884 +-1.347382,53.616016 +-1.746984,53.768456 +-1.878327,53.818931 +-1.772098,53.798266 +-1.787935,53.833914 +-1.824811,53.761548 +-1.58528,53.838679 +-1.76978,53.766911 +-1.514524,53.819008 +-1.920045,53.85489 +-1.747561,53.669615 +-1.410964,53.703928 +-1.898531,53.723326 +-1.683277,53.805263 +-1.554846,53.800964 +-1.533133,53.843494 +-1.421096,53.712876 +-1.528036,53.835879 +-1.657055,53.821774 +-1.346628,53.715774 +-1.313316,53.68083 +-1.81579,53.816038 +-1.462731,53.830661 +-1.534212,53.82563 +-1.328648,53.723952 +-1.570397,53.802144 +-1.540892,53.784337 +-1.318508,53.693047 +-1.544959,53.799866 +-1.51628,53.81294 +-1.612663,53.829009 +-1.802389,53.642241 +-1.509231,53.794926 +-1.745165,53.793232 +-2.018668,53.630987 +-1.771765,53.585075 +-1.634623,53.819524 +-1.777534,53.594012 +-1.649392,53.789881 +-1.895409,53.643635 +-1.493979,53.646737 +-1.515492,53.810204 +-1.738414,53.643467 +-1.52759,53.786335 +-1.722828,53.815086 +-1.689955,53.729368 +-1.889033,53.87161 +-1.772649,53.763654 +-1.607225,53.838555 +-1.752081,53.799565 +-1.936241,53.870844 +-1.388889,53.785727 +-1.759432,53.785828 +-1.832979,53.786457 +-1.298755,53.69154 +-1.526898,53.758784 +-1.810112,53.815535 +-1.519048,53.809922 +-1.70934,53.799883 +-1.385413,53.912377 +-1.550443,53.796741 +-1.542632,53.796011 +-1.533615,53.767223 +-1.449317,53.80733 +-1.782474,53.646934 +-2.104142,53.70683 +-1.810489,53.772222 +-1.793685,53.798583 +-1.56373,53.812474 +-1.998918,53.665512 +-1.667819,53.824465 +-1.783955,53.650281 +-1.551556,53.709336 +-1.367788,53.706198 +-1.524422,53.802106 +-1.480605,53.748975 +-1.500928,53.648843 +-1.737562,53.814886 +-1.734621,53.74897 +-1.472735,53.728394 +-1.368364,53.806266 +-1.763828,53.759583 +-1.497119,53.815018 +-1.644069,53.801792 +-1.500147,53.67904 +-1.810788,53.861005 +-1.584227,53.806903 +-1.769141,53.706294 +-1.838432,53.686436 +-1.585094,53.876005 +-1.720033,53.712391 +-1.743273,53.794972 +-1.683104,53.709235 +-1.877079,53.746954 +-1.615442,53.697909 +-1.777378,53.804585 +-1.886757,53.570211 +-1.801622,53.715448 +-1.593285,53.834365 +-1.603527,53.684478 +-1.887165,53.717698 +-1.522121,53.817493 +-1.355359,53.739352 +-1.769785,53.793686 +-1.698819,53.865478 +-1.74377,53.793004 +-1.627876,53.661825 +-1.308355,53.593533 +-1.274563,53.675199 +-1.597737,53.781962 +-1.39292,53.930095 +-1.606098,53.64741 +-1.838583,53.848912 +-1.599414,53.781186 +-1.516092,53.677407 +-1.602379,53.815952 +-1.691512,53.804467 +-1.68451,53.709616 +-1.710054,53.771123 +-1.367865,53.707106 +-1.470666,53.672244 +-1.257178,53.708296 +-1.980774,53.795676 +-1.767111,53.703549 +-1.558484,53.782768 +-1.336223,53.629716 +-1.584182,53.777655 +-1.780111,53.798784 +-1.495735,53.821537 +-1.828917,53.822331 +-1.335881,53.640905 +-1.709021,53.679037 +-1.631387,53.71563 +-1.543463,53.821522 +-1.547603,53.812307 +-1.731783,53.813624 +-1.677334,53.728804 +-1.859619,53.821984 +-1.715372,53.736415 +-1.725807,53.817178 +-1.435521,53.760384 +-1.777214,53.881395 +-1.6946,53.906182 +-1.467413,53.668518 +-1.776124,53.72343 +-1.469632,53.809911 +-1.697777,53.71658 +-1.798716,53.835505 +-1.514223,53.809597 +-1.427864,53.782468 +-1.848937,53.704219 +-1.352164,53.764726 +-1.702982,53.79078 +-1.952997,53.641936 +-1.633176,53.8061 +-1.381635,53.649221 +-1.294367,53.6904 +-1.721126,53.68463 +-1.732382,53.764793 +-1.615207,53.829916 +-1.475253,53.814664 +-1.711287,53.788338 +-1.790948,53.80558 +-1.993179,53.784721 +-1.580891,53.823231 +-1.452119,53.804341 +-1.567981,53.778605 +-2.13109,53.730487 +-1.576933,53.768193 +-1.926963,53.889048 +-1.530421,53.750241 +-1.630473,53.686703 +-1.783434,53.790404 +-1.584927,53.800604 +-1.631367,53.695344 +-1.412007,53.908187 +-1.878179,53.722939 +-1.494273,53.646217 +-1.294258,53.715926 +-1.524114,53.802473 +-1.276615,53.606603 +-1.746926,53.672023 +-1.634553,53.712197 +-1.643992,53.814483 +-1.873779,53.724687 +-1.556592,53.812457 +-1.30206,53.694966 +-1.753948,53.802175 +-1.75367,53.805599 +-1.50001,53.679094 +-1.771961,53.790023 +-1.739751,53.789967 +-1.402959,53.688339 +-1.781002,53.642024 +-1.536813,53.614265 +-1.604706,53.793004 +-1.651377,53.810442 +-1.531055,53.770934 +-1.909631,53.868769 +-1.74007,53.836624 +-1.772811,53.775959 +-1.670943,53.710613 +-1.675149,53.707389 +-1.766749,53.870356 +-1.884429,53.820204 +-1.75947,53.848178 +-1.539739,53.775974 +-1.735581,53.784556 +-1.679954,53.751021 +-1.531862,53.842994 +-1.779049,53.798656 +-1.541374,53.797228 +-1.72951,53.886088 +-1.672529,53.86336 +-1.779228,53.700803 +-1.686404,53.715652 +-1.557455,53.770936 +-1.818729,53.637755 +-1.547812,53.785874 +-1.493031,53.677851 +-1.695953,53.75934 +-1.386751,53.698099 +-1.566899,53.787939 +-1.470116,53.822164 +-1.568118,53.746006 +-1.665097,53.801987 +-1.6051,53.797949 +-1.764333,53.7725 +-1.503936,53.80365 +-1.906865,53.868183 +-1.465565,53.808536 +-1.233038,53.706948 +-1.322007,53.789115 +-1.860279,53.719108 +-1.787901,53.759278 +-1.512725,53.738315 +-1.487676,53.673792 +-1.778305,53.674718 +-1.630369,53.840399 +-1.621498,53.794335 +-1.506509,53.839298 +-1.470801,53.791859 +-1.476885,53.754235 +-1.792643,53.704935 +-1.830662,53.837891 +-1.585402,53.798584 +-1.654995,53.702479 +-1.561022,53.764927 +-1.751237,53.682862 +-1.752764,53.649609 +-1.304235,53.725656 +-1.802702,53.639977 +-1.552932,53.779583 +-1.501133,53.830054 +-1.943199,53.673525 +-1.735899,53.784628 +-1.849888,53.845673 +-1.543097,53.839865 +-1.714658,53.73653 +-1.767399,53.849164 +-1.356679,53.714435 +-1.747471,53.720092 +-1.552103,53.847494 +-1.553731,53.777303 +-1.772554,53.79823 +-1.469368,53.817595 +-1.837311,53.595842 +-1.853748,53.701421 +-1.934347,53.91545 +-1.522657,53.811734 +-1.775388,53.90423 +-1.544502,53.802768 +-1.573616,53.826028 +-1.781938,53.771536 +-1.597187,53.793465 +-1.665984,53.803032 +-1.731655,53.798047 +-1.756975,53.796025 +-1.322829,53.720154 +-1.732458,53.762474 +-1.753686,53.810651 +-1.767076,53.770276 +-1.784259,53.759756 +-1.562007,53.814607 +-1.779129,53.702448 +-1.767992,53.658969 +-1.81376,53.72557 +-1.540638,53.818698 +-1.899457,53.824532 +-1.864343,53.732253 +-1.531139,53.669368 +-1.499682,53.81022 +-1.693232,53.803977 +-1.555486,53.777723 +-1.569771,53.792093 +-1.652534,53.883526 +-1.338815,53.836109 +-1.810957,53.833602 +-1.623029,53.591 +-1.634151,53.814435 +-1.330499,53.723792 +-1.909522,53.870171 +-1.650911,53.809829 +-1.284304,53.70065 +-1.832702,53.672613 +-1.910203,53.714734 +-1.846094,53.661378 +-1.339196,53.730698 +-1.649559,53.808001 +-1.858921,53.762609 +-1.78815,53.803391 +-1.516433,53.750734 +-1.820648,53.837913 +-1.809728,53.62807 +-1.811103,53.655477 +-1.915148,53.719932 +-1.788534,53.657282 +-1.512982,53.7318 +-1.656528,53.679797 +-1.83236,53.854297 +-1.307548,53.69187 +-1.584893,53.782556 +-1.545561,53.775053 +-1.760542,53.812093 +-1.629706,53.874156 +-1.8013,53.626195 +-1.732966,53.677448 +-1.629128,53.703705 +-1.766446,53.788098 +-1.363027,53.673311 +-1.887102,53.729841 +-1.37876,53.852906 +-1.772161,53.867895 +-1.552497,53.849032 +-1.99715,53.61472 +-1.757684,53.79413 +-1.443556,53.822655 +-1.84376,53.768594 +-1.353005,53.674381 +-1.716258,53.739922 +-1.610322,53.748837 +-1.542143,53.783776 +-2.107046,53.704994 +-1.35951,53.613754 +-1.415381,53.620116 +-1.767544,53.778996 +-1.903912,53.71605 +-1.828449,53.739659 +-1.841618,53.656303 +-1.361736,53.805737 +-1.873598,53.673895 +-1.711797,53.837944 +-1.948149,53.895773 +-1.500751,53.686916 +-1.538731,53.800112 +-1.633851,53.71455 +-1.881089,53.739174 +-1.773496,53.792309 +-1.554948,53.81424 +-1.77227,53.920636 +-1.528936,53.792219 +-1.860426,53.715774 +-1.578502,53.822036 +-1.51366,53.729546 +-1.384771,53.641642 +-1.768758,53.731999 +-1.830034,53.696266 +-1.533069,53.690543 +-1.782197,53.650961 +-1.772503,53.838469 +-1.519373,53.708402 +-1.614067,53.659337 +-1.551992,53.779535 +-1.546452,53.745854 +-1.564146,53.791399 +-1.775433,53.702504 +-1.404705,53.786714 +-1.377821,53.676059 +-1.512633,53.792153 +-1.810958,53.637159 +-1.314166,53.693706 +-1.625883,53.666457 +-1.34369,53.622126 +-1.866075,53.73577 +-1.462882,53.853275 +-1.590525,53.744943 +-1.522247,53.714139 +-1.772283,53.780892 +-1.789483,53.806998 +-1.524624,53.808353 +-1.725789,53.726597 +-1.916888,53.867543 +-1.503096,53.699905 +-1.902556,53.831311 +-1.505781,53.699602 +-1.522051,53.672586 +-1.715585,53.823833 +-1.471307,53.83859 +-1.89793,53.871834 +-1.505647,53.69934 +-1.796527,53.835654 +-1.49821,53.820316 +-1.47505,53.866128 +-1.773622,53.785874 +-1.875061,53.79333 +-1.396556,53.739 +-1.387396,53.713113 +-1.520464,53.813648 +-1.819119,53.783515 +-1.779175,53.638488 +-1.773674,53.65196 +-1.567445,53.663824 +-1.705712,53.656433 +-1.421053,53.841783 +-1.968706,53.81551 +-1.724073,53.736435 +-1.522535,53.631071 +-1.66134,53.729129 +-1.790939,53.834836 +-1.675576,53.752402 +-1.5735,53.80904 +-1.619195,53.847527 +-1.7466,53.749014 +-1.456178,53.82158 +-1.715282,53.821414 +-1.752861,53.803683 +-1.633258,53.814109 +-1.761915,53.644433 +-1.623676,53.693387 +-1.439822,53.664994 +-1.857087,53.717406 +-1.79893,53.647673 +-1.718899,53.800714 +-1.717215,53.744041 +-1.78264,53.652912 +-1.735234,53.726259 +-2.006076,53.761514 +-1.325476,53.921996 +-1.728468,53.738944 +-1.652361,53.595574 +-1.484953,53.693528 +-1.754228,53.694364 +-1.910273,53.867502 +-1.756252,53.692715 +-1.759661,53.785595 +-1.744066,53.644351 +-1.925325,53.868789 +-1.549916,53.618791 +-1.954984,53.808081 +-1.776013,53.678696 +-1.626006,53.690204 +-1.568662,53.795136 +-1.530514,53.805806 +-1.708927,53.767345 +-1.523298,53.790021 +-1.507637,53.807853 +-1.472591,53.795624 +-1.646394,53.684082 +-1.536356,53.796607 +-1.482439,53.803352 +-1.263846,53.709874 +-1.38982,53.69949 +-1.753369,53.805113 +-1.459691,53.808321 +-1.899945,53.714986 +-1.715833,53.665661 +-1.644141,53.705269 +-1.897897,53.797495 +-1.749587,53.810408 +-1.544009,53.804815 +-1.923293,53.865884 +-1.772874,53.806383 +-1.363074,53.722406 +-1.57196,53.776848 +-1.693089,53.746498 +-1.53988,53.836671 +-1.580147,53.798853 +-1.769156,53.800462 +-1.444008,53.904421 +-1.547787,53.745769 +-1.715137,53.827166 +-1.68479,53.807928 +-1.555779,53.798873 +-1.76572,53.874911 +-1.528676,53.804549 +-1.484789,53.652289 +-1.54533,53.789406 +-1.73517,53.782227 +-1.538787,53.781139 +-1.707824,53.766821 +-1.560376,53.813684 +-1.700177,53.845771 +-1.76034,53.775476 +-1.364231,53.715023 +-1.540699,53.800668 +-1.674221,53.706011 +-1.890945,53.744181 +-1.578129,53.766902 +-1.794378,53.662775 +-1.952994,53.603817 +-1.677674,53.751662 +-1.363938,53.780627 +-1.82478,53.692322 +-1.558759,53.782589 +-1.515836,53.798746 +-1.573856,53.808367 +-1.674104,53.84848 +-1.830162,53.837585 +-1.729628,53.792155 +-1.598382,53.708073 +-1.919596,53.866637 +-1.523208,53.789994 +-1.772368,53.810121 +-2.020844,53.628614 +-1.859883,53.660388 +-1.89656,53.742262 +-1.859879,53.720923 +-1.288382,53.594404 +-1.786877,53.610747 +-1.743771,53.792923 +-1.487336,53.84754 +-1.76099,53.642256 +-1.453224,53.808148 +-1.517426,53.725023 +-1.759544,53.800704 +-1.837421,53.732543 +-1.237061,53.625197 +-1.728527,53.739312 +-1.539269,53.861817 +-1.754588,53.806922 +-1.545082,53.799723 +-1.640004,53.780029 +-1.486762,53.666813 +-1.709643,53.837372 +-1.268038,53.694431 +-1.590177,53.743225 +-1.53088,53.771679 +-1.774033,53.644123 +-1.550027,53.682222 +-1.417511,53.789258 +-1.548673,53.845629 +-2.008528,53.739385 +-1.705553,53.798669 +-1.6627,53.706896 +-1.542612,53.804855 +-1.767625,53.742181 +-1.571961,53.761793 +-1.736432,53.777026 +-1.626941,53.709522 +-1.374341,53.693325 +-1.398001,53.730154 +-1.339048,53.804877 +-1.315181,53.778614 +-1.510755,53.797035 +-1.599073,53.799457 +-1.659715,53.710779 +-1.754799,53.885459 +-1.727421,53.776682 +-1.739319,53.889103 +-1.789967,53.834708 +-1.594254,53.837838 +-1.590255,53.853724 +-1.76918,53.740755 +-1.662968,53.796643 +-1.532328,53.822944 +-1.369921,53.896838 +-1.820972,53.829707 +-1.555051,53.777272 +-1.607371,53.831086 +-1.23844,53.626707 +-1.720832,53.816007 +-1.567924,53.778308 +-1.718474,53.805261 +-1.558022,53.842554 +-1.257841,53.70848 +-1.444438,53.821419 +-1.710825,53.873165 +-1.547377,53.800873 +-1.919392,53.862035 +-1.49084,53.677527 +-1.513947,53.815087 +-1.576922,53.657467 +-1.733516,53.743916 +-1.447451,53.801407 +-1.696986,53.685326 +-1.660107,53.69782 +-1.474832,53.691426 +-1.833036,53.791229 +-1.75576,53.576073 +-1.51719,53.815676 +-1.777125,53.73197 +-1.651016,53.745862 +-1.574076,53.81217 +-1.622158,53.810443 +-1.87536,53.723196 +-1.569704,53.810501 +-1.316068,53.733337 +-1.73842,53.588746 +-1.802063,53.724815 +-1.662237,53.796901 +-1.534282,53.812454 +-1.525057,53.831849 +-1.478931,53.80464 +-1.750162,53.815838 +-1.884419,53.73551 +-1.829577,53.858247 +-1.568684,53.792979 +-1.859242,53.711925 +-1.889053,53.875681 +-1.315424,53.723509 +-1.873648,53.793697 +-1.793869,53.835515 +-1.46618,53.667847 +-1.506873,53.808308 +-1.765264,53.806746 +-1.529933,53.690702 +-1.864228,53.725692 +-1.78296,53.78226 +-1.548114,53.638864 +-1.552421,53.803373 +-1.410403,53.622608 +-1.780358,53.768917 +-1.393355,53.70544 +-2.160257,53.711721 +-1.607958,53.75025 +-1.642532,53.567897 +-1.750021,53.80117 +-1.730487,53.83334 +-1.314698,53.729976 +-1.644946,53.782479 +-1.923972,53.826743 +-1.562407,53.81415 +-1.852737,53.704718 +-1.68389,53.729649 +-1.350153,53.723954 +-1.544366,53.7999 +-1.631453,53.695865 +-1.378632,53.905646 +-1.531861,53.815788 +-1.540172,53.819649 +-1.55637,53.728391 +-1.537986,53.672972 +-1.331353,53.755957 +-1.51032,53.848706 +-1.767429,53.76687 +-1.358647,53.725537 +-1.912263,53.707931 +-1.730876,53.808319 +-1.948735,53.702065 +-1.255682,53.64535 +-1.373907,53.630683 +-1.744387,53.553543 +-1.314643,53.688594 +-1.412709,53.718929 +-1.944474,53.901443 +-1.668449,53.867878 +-1.772138,53.712241 +-1.939961,53.875403 +-1.77922,53.815329 +-1.552932,53.779592 +-1.849006,53.845843 +-1.909675,53.869964 +-1.436574,53.759877 +-1.576993,53.869326 +-1.56107,53.7967 +-1.602108,53.828507 +-1.791772,53.663561 +-1.735492,53.803457 +-1.766223,53.773645 +-1.451685,53.896951 +-1.302746,53.698377 +-1.937586,53.640563 +-1.650958,53.692445 +-1.60019,53.795353 +-1.742481,53.80279 +-1.727668,53.797085 +-1.477601,53.728298 +-1.732221,53.735222 +-1.411459,53.632518 +-1.562518,53.796157 +-1.828568,53.680427 +-1.883674,53.714226 +-1.575226,53.797506 +-1.691766,53.802985 +-1.750216,53.768454 +-1.305376,53.693161 +-1.559008,53.657268 +-1.767747,53.794356 +-1.779597,53.784034 +-1.863251,53.727794 +-1.532056,53.824219 +-1.627063,53.711078 +-1.545637,53.84249 +-1.614546,53.804235 +-1.706917,53.801117 +-1.396322,53.704529 +-1.249598,53.673661 +-1.487195,53.801808 +-1.811463,53.815636 +-1.750147,53.797943 +-1.784246,53.78308 +-1.51086,53.821906 +-1.747095,53.671672 +-1.539588,53.775884 +-1.768606,53.751404 +-1.558514,53.782768 +-1.547358,53.772974 +-1.673511,53.801561 +-1.242285,53.632394 +-1.40837,53.624189 +-1.306622,53.694777 +-1.660999,53.74705 +-1.50407,53.857929 +-1.551628,53.780945 +-1.681265,53.58948 +-1.622083,53.791784 +-1.398394,53.792893 +-1.710486,53.798771 +-1.775655,53.67776 +-1.63221,53.808902 +-1.606055,53.81591 +-1.585518,53.793003 +-1.401583,53.928206 +-1.538514,53.79497 +-1.85622,53.771836 +-1.777102,53.808063 +-1.75965,53.734282 +-1.760329,53.801514 +-1.779892,53.649051 +-1.853407,53.703757 +-1.782884,53.782233 +-1.743171,53.756907 +-1.78171,53.806777 +-1.371862,53.680827 +-1.804044,53.7748 +-1.353394,53.682581 +-1.640339,53.698175 +-1.612106,53.803697 +-1.832235,53.672109 +-1.812986,53.780387 +-1.374744,53.642597 +-1.584935,53.744411 +-1.451952,53.893977 +-1.629643,53.719184 +-1.757272,53.810316 +-1.784885,53.806432 +-1.720342,53.798444 +-1.407153,53.784254 +-1.68681,53.709963 +-1.466195,53.667856 +-1.537939,53.801691 +-1.564619,53.773568 +-1.587926,53.795177 +-1.808998,53.769676 +-1.364169,53.706053 +-1.562194,53.631627 +-1.383377,53.921463 +-1.752139,53.789714 +-1.778246,53.703318 +-1.754215,53.795399 +-1.526831,53.806618 +-1.744893,53.700403 +-1.806725,53.683045 +-1.739278,53.792842 +-1.360604,53.71442 +-1.685518,53.749175 +-1.776037,53.831214 +-1.887454,53.660363 +-1.721816,53.807399 +-1.525837,53.758699 +-1.628497,53.747844 +-1.791109,53.635238 +-1.466358,53.808216 +-1.517937,53.643124 +-1.707314,53.79861 +-1.482798,53.827253 +-1.517785,53.685665 +-2.017156,53.741245 +-1.310916,53.724867 +-1.73313,53.809645 +-1.305619,53.693099 +-1.779069,53.644277 +-1.569657,53.81654 +-1.860248,53.714812 +-1.445693,53.8299 +-1.449684,53.797786 +-1.848435,53.70065 +-1.496457,53.791646 +-1.46171,53.816635 +-1.286322,53.613547 +-1.551339,53.798075 +-1.766879,53.797635 +-1.827298,53.683706 +-1.514209,53.668699 +-1.404142,53.928174 +-1.723031,53.821163 +-1.783189,53.62842 +-1.427317,53.805888 +-1.672852,53.862956 +-1.551557,53.605135 +-1.368018,53.766618 +-1.841375,53.826006 +-1.742617,53.755684 +-1.620063,53.593301 +-1.773537,53.649165 +-1.545145,53.823308 +-1.665953,53.743774 +-1.984321,53.728482 +-1.458714,53.827533 +-1.925837,53.871656 +-1.746945,53.772482 +-1.861393,53.721446 +-1.77756,53.652354 +-1.713537,53.72522 +-1.630336,53.686865 +-1.694106,53.829937 +-1.496333,53.847623 +-1.552476,53.799661 +-1.552824,53.814115 +-1.530226,53.774553 +-1.482424,53.65147 +-1.497724,53.822849 +-1.408209,53.702701 +-1.811744,53.725603 +-1.593998,53.837657 +-1.349036,53.727606 +-1.792775,53.65959 +-1.517809,53.818662 +-1.334595,53.656295 +-1.760498,53.835777 +-1.772795,53.775941 +-1.949692,53.84004 +-1.393906,53.709236 +-1.88337,53.714657 +-1.574099,53.713876 +-1.775409,53.834934 +-1.79293,53.603117 +-1.752237,53.788447 +-1.576578,53.81252 +-1.516697,53.750267 +-1.338928,53.836676 +-1.737127,53.823711 +-1.464837,53.808443 +-1.575145,53.65809 +-1.881729,53.743237 +-1.483417,53.796687 +-1.878192,53.718436 +-1.599967,53.740561 +-1.799059,53.601348 +-1.518057,53.844755 +-1.722108,53.779214 +-1.481395,53.799375 +-1.575789,53.804896 +-1.781726,53.657054 +-1.497707,53.801377 +-1.602669,53.852741 +-1.520811,53.723185 +-1.350571,53.672193 +-1.677037,53.684447 +-1.438171,53.833416 +-1.640208,53.701114 +-1.835362,53.599759 +-1.834928,53.68413 +-1.732626,53.76705 +-1.325676,53.685178 +-1.522674,53.672346 +-1.547679,53.799607 +-1.613165,53.779361 +-1.754889,53.695246 +-1.835152,53.843892 +-1.867311,53.737973 +-1.767162,53.773935 +-1.510936,53.799688 +-1.307993,53.689634 +-1.71951,53.793435 +-1.747335,53.720056 +-1.840308,53.850802 +-1.790078,53.620639 +-1.522884,53.770327 +-1.639458,53.840283 +-1.369066,53.766578 +-1.87612,53.717058 +-1.740645,53.824743 +-1.532893,53.814488 +-1.398414,53.707623 +-1.675472,53.57075 +-1.35713,53.879522 +-1.803729,53.666475 +-1.795185,53.689911 +-1.805549,53.820129 +-1.331913,53.824845 +-1.726564,53.805855 +-1.622267,53.811855 +-1.754243,53.777621 +-1.731458,53.836021 +-1.620792,53.690763 +-1.350228,53.673872 +-1.528141,53.791353 +-1.355282,53.780005 +-1.621491,53.820472 +-1.907623,53.709698 +-1.896034,53.765172 +-1.528303,53.814749 +-1.758323,53.574074 +-1.578141,53.821721 +-1.732646,53.809275 +-1.860146,53.722586 +-1.761003,53.779073 +-1.903246,53.874714 +-1.730847,53.83175 +-1.295926,53.594143 +-1.515439,53.789738 +-1.875286,53.722306 +-1.563453,53.824499 +-1.861276,53.724601 +-1.714983,53.874568 +-1.498168,53.678726 +-1.822551,53.671232 +-1.710017,53.816161 +-1.906127,53.749083 +-1.72437,53.823116 +-1.324049,53.709276 +-1.605269,53.744282 +-1.730251,53.773048 +-1.697052,53.863828 +-1.332689,53.709953 +-1.660893,53.747023 +-1.758864,53.771033 +-1.825952,53.841453 +-1.402498,53.715553 +-1.655167,53.690804 +-1.758711,53.781719 +-1.706589,53.802473 +-1.676048,53.742229 +-1.723906,53.805912 +-1.69968,53.802627 +-1.511324,53.72969 +-1.807857,53.620579 +-1.825614,53.798355 +-1.519191,53.81474 +-1.886574,53.71777 +-1.498184,53.686312 +-1.557527,53.800129 +-1.787867,53.799238 +-1.645818,53.671533 +-1.577102,53.686329 +-1.761061,53.771541 +-1.665097,53.716044 +-1.900368,53.869616 +-1.272012,53.638763 +-1.859222,53.713498 +-1.767147,53.773917 +-1.692158,53.803399 +-1.6302,53.690208 +-1.770444,53.828812 +-1.760314,53.801487 +-1.574835,53.806178 +-1.462806,53.853248 +-1.7715,53.807774 +-1.756329,53.794828 +-1.720413,53.794561 +-1.781671,53.790787 +-1.922041,53.646873 +-1.791611,53.809779 +-1.511989,53.648619 +-1.803275,53.809547 +-1.739002,53.822717 +-1.637206,53.67148 +-1.474955,53.669342 +-1.73386,53.816585 +-1.713223,53.796018 +-1.752213,53.76933 +-1.655521,53.897736 +-1.531692,53.805046 +-1.801091,53.808887 +-1.715967,53.729055 +-1.734965,53.64834 +-1.53224,53.660079 +-1.810278,53.815571 +-1.712192,53.604631 +-1.923563,53.842597 +-1.528,53.822819 +-1.70644,53.875949 +-1.513064,53.809979 +-1.70908,53.80017 +-1.758471,53.770772 +-1.89613,53.873845 +-1.697346,53.745017 +-1.696872,53.863504 +-1.505399,53.763146 +-1.348199,53.608102 +-1.924844,53.831839 +-1.496648,53.717315 +-1.537706,53.777306 +-1.412325,53.668179 +-1.488678,53.823458 +-1.802482,53.929767 +-1.31412,53.689085 +-1.808118,53.819828 +-1.779085,53.644223 +-1.753671,53.795083 +-1.748351,53.768207 +-1.757957,53.691109 +-1.869035,53.700504 +-1.872446,53.714592 +-1.805268,53.805388 +-1.714154,53.795211 +-1.923932,53.865921 +-1.577619,53.852503 +-1.537485,53.767067 +-1.536782,53.614274 +-1.762556,53.778123 +-1.770529,53.643218 +-1.754141,53.789979 +-1.642763,53.719583 +-1.316679,53.686323 +-1.972967,53.73079 +-1.514314,53.816158 +-1.764193,53.770325 +-1.766144,53.779685 +-1.776753,53.730585 +-1.705912,53.803739 +-1.585669,53.726797 +-1.759469,53.800569 +-1.7943,53.775278 +-1.748239,53.766697 +-1.777548,53.646009 +-1.761854,53.794992 +-1.632925,53.690333 +-1.57179,53.811443 +-1.702954,53.777577 +-1.839028,53.732654 +-1.615831,53.733387 +-1.757318,53.810218 +-1.857216,53.661338 +-1.601407,53.793524 +-1.70164,53.802308 +-1.304909,53.696708 +-1.54982,53.724403 +-1.838193,53.732823 +-1.465797,53.818927 +-1.58833,53.808193 +-1.603419,53.684649 +-1.744835,53.797608 +-1.512991,53.815012 +-1.555399,53.659529 +-1.771676,53.814416 +-1.808263,53.927835 +-1.783341,53.805459 +-1.602014,53.816032 +-1.523726,53.787066 +-1.773081,53.815947 +-1.575783,53.811511 +-2.091005,53.719424 +-1.762177,53.764667 +-1.431305,53.794016 +-1.865549,53.734349 +-1.769493,53.805442 +-1.44198,53.798353 +-1.787553,53.75925 +-1.690909,53.884413 +-1.728446,53.834145 +-1.788647,53.779951 +-1.594751,53.713831 +-1.446296,53.871733 +-1.538854,53.665515 +-1.392784,53.710372 +-1.737244,53.81715 +-1.808995,53.643043 +-1.618666,53.835491 +-1.628644,53.829222 +-1.837824,53.690758 +-1.876263,53.740751 +-1.528375,53.802984 +-1.540338,53.798977 +-1.821104,53.830822 +-1.917472,53.856686 +-1.797121,53.633684 +-1.849612,53.791008 +-1.408617,53.781619 +-1.49962,53.810355 +-1.773886,53.776239 +-1.67422,53.706038 +-1.786318,53.79928 +-1.843917,53.656558 +-1.847974,53.769714 +-1.548599,53.771927 +-1.756526,53.794793 +-1.877631,53.739539 +-1.871241,53.841204 +-1.777449,53.811407 +-1.774817,53.786658 +-1.461443,53.835095 +-1.386795,53.698153 +-1.881565,53.720533 +-1.68564,53.740978 +-1.784642,53.797471 +-1.577721,53.678934 +-1.630105,53.683772 +-1.530309,53.768477 +-1.583726,53.814532 +-1.510048,53.660808 +-1.795361,53.775586 +-1.862303,53.725654 +-1.517944,53.797613 +-1.417239,53.700327 +-1.768868,53.789298 +-1.784691,53.627542 +-1.682688,53.708164 +-1.687769,53.596696 +-1.808725,53.803084 +-1.905455,53.866168 +-1.634876,53.891806 +-1.526233,53.800369 +-1.697526,53.675494 +-1.835443,53.932549 +-1.684699,53.684342 +-1.898707,53.87107 +-1.719259,53.626004 +-1.570006,53.788346 +-1.604176,53.750876 +-1.657769,53.679819 +-1.780632,53.643498 +-1.504155,53.707801 +-1.298997,53.593874 +-1.918,53.850763 +-1.556545,53.796818 +-1.920135,53.679085 +-1.771484,53.777179 +-1.861411,53.729823 +-1.844623,53.855661 +-1.821169,53.833294 +-1.421452,53.64489 +-1.789231,53.805784 +-1.817492,53.63343 +-1.550779,53.711131 +-1.824557,53.924453 +-1.568222,53.803943 +-1.765871,53.875145 +-1.673349,53.799053 +-1.771959,53.77629 +-1.557782,53.813387 +-1.62919,53.874037 +-1.907633,53.816341 +-1.657185,53.802082 +-1.738473,53.670683 +-1.593309,53.83814 +-1.507683,53.807808 +-1.539178,53.732928 +-1.974009,53.638024 +-1.416277,53.69217 +-1.50478,53.682951 +-1.431487,53.663643 +-1.537739,53.796477 +-1.747688,53.790325 +-1.257239,53.708278 +-1.631371,53.791984 +-1.780263,53.827842 +-1.769678,53.793803 +-1.329677,53.657292 +-1.294454,53.693331 +-1.780436,53.593666 +-1.305193,53.693268 +-1.623618,53.670971 +-1.492598,53.64959 +-1.753646,53.674805 +-1.570152,53.791915 +-1.801769,53.774527 +-1.618351,53.804931 +-1.486824,53.682885 +-1.48692,53.667488 +-1.87649,53.626782 +-1.354702,53.724832 +-1.76778,53.741669 +-1.355511,53.713548 +-1.768946,53.860708 +-1.889583,53.725907 +-1.869166,53.741337 +-1.615327,53.833368 +-1.554059,53.76775 +-1.547363,53.721715 +-1.500878,53.676113 +-1.766452,53.797904 +-1.45248,53.80694 +-1.531205,53.728861 +-1.776664,53.730262 +-1.816607,53.652699 +-1.79279,53.810778 +-1.845331,53.687874 +-1.839448,53.769712 +-1.812639,53.725479 +-1.833044,53.708827 +-1.457358,53.72784 +-1.527705,53.719293 +-1.541464,53.807097 +-1.556297,53.820303 +-1.815846,53.87605 +-1.342505,53.843104 +-1.687541,53.866932 +-1.782502,53.80046 +-1.259877,53.67617 +-1.574582,53.790681 +-1.556044,53.796753 +-1.75515,53.799104 +-1.533063,53.801879 +-1.776706,53.802436 +-1.711766,53.873518 +-1.810199,53.772563 +-1.985671,53.635149 +-1.636162,53.748757 +-1.4854,53.800839 +-1.682999,53.705028 +-1.56429,53.795111 +-1.457408,53.816912 +-1.800094,53.647828 +-1.974852,53.619355 +-1.501442,53.648899 +-1.564069,53.801744 +-1.743255,53.660923 +-1.496694,53.705856 +-1.874879,53.727016 +-1.752862,53.803449 +-1.51499,53.818094 +-1.726307,53.737986 +-1.46299,53.628248 +-1.778868,53.824433 +-1.575206,53.791951 +-1.560241,53.815041 +-1.511112,53.81069 +-1.605069,53.797931 +-1.568588,53.783074 +-1.56914,53.812188 +-1.761618,53.646122 +-1.51391,53.81959 +-1.831758,53.731026 +-1.777487,53.832879 +-1.526755,53.799805 +-1.505355,53.827564 +-1.343811,53.704972 +-1.627609,53.693858 +-1.602364,53.897769 +-1.497969,53.683993 +-1.687649,53.70922 +-1.908001,53.856293 +-1.662907,53.796633 +-1.786819,53.784289 +-1.614238,53.735179 +-1.856723,53.623668 +-1.64864,53.590638 +-2.012105,53.630575 +-1.719555,53.684087 +-1.917127,53.707288 +-1.733462,53.60842 +-1.56212,53.780426 +-1.706672,53.801413 +-1.561926,53.68676 +-1.355662,53.677847 +-1.550692,53.682386 +-1.846605,53.862243 +-1.760536,53.660851 +-1.505316,53.696634 +-1.534004,53.79649 +-1.428603,53.792825 +-1.609348,53.69185 +-1.661144,53.729074 +-1.515951,53.685774 +-1.907971,53.856338 +-1.719464,53.795673 +-1.652831,53.739108 +-1.543871,53.774192 +-1.794447,53.601879 +-1.498435,53.795142 +-1.801714,53.808879 +-1.75011,53.827082 +-1.284379,53.596142 +-1.894294,53.757054 +-1.529655,53.794405 +-1.819776,53.924303 +-1.737304,53.785566 +-1.868765,53.699425 +-1.577752,53.686466 +-1.775735,53.773825 +-1.695188,53.703711 +-1.630381,53.686883 +-2.013603,53.63319 +-1.860053,53.723413 +-1.639018,53.588686 +-1.552052,53.808126 +-1.836553,53.776692 +-1.569622,53.796191 +-1.637739,53.831658 +-1.581591,53.774231 +-1.576304,53.814092 +-1.501314,53.676358 +-1.914433,53.706171 +-1.572105,53.808855 +-1.321976,53.717587 +-1.627007,53.710628 +-1.776808,53.803389 +-1.739818,53.759498 +-1.799509,53.691375 +-1.863666,53.721458 +-1.689405,53.869786 +-1.323705,53.725039 +-1.564476,53.829887 +-1.420779,53.766821 +-1.789759,53.657482 +-1.716044,53.794182 +-1.73944,53.769132 +-1.513142,53.774386 +-1.308906,53.694026 +-1.778905,53.788481 +-1.758797,53.912314 +-1.843836,53.768603 +-1.545372,53.823425 +-1.637497,53.71519 +-1.671509,53.801349 +-1.755207,53.846731 +-1.4219,53.801206 +-1.774617,53.789974 +-1.788592,53.806043 +-1.359858,53.67467 +-1.491818,53.818825 +-1.711915,53.723167 +-1.735098,53.769653 +-1.913557,53.71204 +-1.482042,53.745602 +-1.579872,53.795922 +-1.772915,53.815731 +-1.794261,53.705567 +-1.812546,53.780512 +-1.767504,53.819118 +-1.776901,53.76572 +-1.480669,53.671218 +-1.677593,53.716734 +-1.852807,53.771562 +-1.863337,53.659143 +-1.741965,53.82498 +-1.699936,53.91139 +-1.979271,53.797446 +-1.886438,53.723046 +-1.491726,53.812613 +-1.8377,53.84919 +-1.512918,53.797673 +-1.922427,53.873676 +-1.870805,53.656338 +-1.872351,53.655665 +-1.453098,53.743073 +-1.632033,53.691957 +-1.656378,53.80234 +-1.524544,53.801998 +-1.7014,53.694874 +-1.519086,53.778724 +-1.708821,53.800277 +-1.564757,53.763179 +-2.027498,53.62926 +-1.768664,53.829169 +-1.490165,53.681991 +-1.780874,53.710613 +-1.622036,53.791892 +-1.571034,53.730655 +-1.893639,53.758393 +-1.467657,53.728452 +-1.625862,53.709834 +-1.444082,53.797841 +-1.536559,53.663655 +-1.664299,53.80105 +-1.301096,53.695536 +-1.735443,53.83052 +-1.506246,53.692215 +-1.501962,53.708736 +-1.318495,53.72199 +-1.790039,53.799134 +-1.569233,53.671012 +-1.531403,53.818761 +-1.465933,53.840517 +-1.546054,53.663116 +-1.694199,53.75237 +-1.793077,53.798852 +-1.610057,53.816714 +-1.710502,53.745769 +-1.343372,53.813889 +-1.606063,53.703128 +-1.530052,53.858024 +-1.807905,53.6434 +-1.382629,53.931921 +-1.772197,53.86696 +-1.39843,53.707569 +-1.544227,53.840786 +-1.530575,53.80586 +-1.629513,53.692597 +-1.754605,53.793584 +-1.287705,53.66966 +-1.354345,53.686747 +-1.582598,53.65578 +-1.538888,53.800994 +-1.635938,53.806298 +-2.044106,53.734838 +-1.831772,53.681933 +-1.691205,53.713974 +-1.872985,53.726834 +-1.396422,53.7039 +-1.539721,53.713731 +-1.370716,53.768852 +-1.875064,53.720527 +-2.097887,53.714125 +-1.615077,53.814169 +-1.308781,53.691446 +-1.639459,53.716131 +-1.381297,53.637184 +-1.471015,53.813495 +-1.717869,53.73021 +-1.719705,53.784592 +-1.34905,53.727669 +-1.477022,53.829924 +-1.512752,53.766169 +-1.594831,53.784343 +-1.459147,53.728935 +-1.511132,53.70578 +-1.740997,53.841533 +-1.629442,53.693774 +-1.590378,53.795913 +-1.561216,53.800197 +-1.538318,53.829438 +-1.98516,53.668415 +-1.530878,53.793655 +-1.853027,53.704125 +-1.517337,53.818813 +-1.805322,53.619425 +-1.428232,53.786676 +-1.511298,53.730669 +-1.678278,53.716304 +-1.634253,53.701357 +-1.696796,53.743425 +-1.710365,53.767852 +-1.387424,53.714308 +-1.782177,53.654736 +-1.563245,53.797768 +-1.548522,53.662972 +-1.728083,53.817435 +-1.816667,53.642533 +-1.824136,53.66151 +-1.388594,53.941658 +-1.718593,53.792067 +-1.796896,53.680647 +-1.751222,53.682817 +-1.519864,53.806339 +-1.781365,53.829282 +-1.514635,53.81998 +-1.419462,53.666434 +-1.586186,53.817659 +-1.779924,53.756279 +-1.919933,53.721661 +-1.779826,53.655891 +-1.557113,53.796146 +-1.824004,53.747553 +-1.743234,53.704246 +-1.523952,53.797942 +-1.349268,53.905833 +-1.939732,53.812002 +-1.720482,53.816204 +-1.45834,53.628929 +-1.316225,53.691893 +-1.505388,53.693021 +-1.752939,53.793051 +-1.467561,53.81036 +-1.494716,53.74073 +-1.787739,53.604654 +-1.330092,53.706523 +-1.832525,53.686832 +-1.784982,53.799251 +-1.53107,53.772273 +-1.577569,53.824199 +-1.732286,53.729784 +-1.781295,53.798903 +-1.894407,53.875587 +-1.709057,53.634222 +-1.817516,53.803161 +-1.55064,53.681568 +-1.433329,53.659445 +-1.769387,53.702852 +-1.563513,53.766095 +-1.742947,53.70403 +-1.55241,53.73314 +-1.547998,53.721879 +-1.763741,53.78332 +-1.516335,53.800258 +-1.761881,53.803576 +-1.459023,53.808264 +-1.89027,53.858219 +-1.547136,53.792235 +-1.562187,53.763798 +-1.898496,53.731766 +-1.689296,53.857787 +-1.406629,53.784863 +-1.601997,53.801723 +-1.643947,53.814501 +-1.771708,53.867292 +-1.909412,53.645515 +-1.315369,53.723185 +-1.731336,53.831275 +-1.455525,53.835626 +-1.452755,53.807984 +-1.412261,53.736948 +-1.469537,53.819852 +-1.567422,53.803518 +-1.523056,53.811385 +-1.943683,53.901514 +-1.587829,53.797298 +-1.624515,53.740398 +-1.556252,53.687773 +-1.545746,53.774748 +-1.738116,53.79177 +-1.483097,53.658331 +-1.759879,53.771224 +-1.642986,53.74156 +-1.574784,53.808164 +-1.415786,53.788872 +-1.342614,53.84386 +-1.804121,53.771205 +-1.559425,53.778376 +-1.862808,53.719632 +-1.785733,53.780108 +-1.486925,53.728159 +-1.715346,53.616611 +-1.774045,53.684408 +-1.495008,53.680906 +-1.757281,53.798138 +-1.808322,53.61472 +-1.816668,53.652717 +-1.895835,53.741327 +-1.768642,53.706015 +-1.564157,53.788873 +-1.725513,53.792407 +-1.812333,53.644118 +-1.74821,53.794353 +-1.522963,53.811546 +-1.563943,53.780271 +-1.533496,53.799858 +-1.745081,53.794571 +-1.394118,53.786248 +-1.353616,53.598819 +-1.545644,53.795465 +-1.533963,53.848153 +-1.594614,53.78481 +-1.545423,53.842588 +-1.352164,53.721295 +-1.625817,53.709851 +-1.395571,53.703006 +-1.295798,53.69084 +-1.661188,53.729182 +-1.514602,53.818865 +-1.803378,53.647573 +-1.762794,53.768147 +-1.573634,53.794273 +-1.784133,53.650892 +-1.665202,53.80206 +-1.255697,53.699505 +-1.73244,53.789196 +-1.489785,53.68341 +-1.670813,53.707808 +-1.863342,53.723004 +-1.378425,53.783102 +-1.523996,53.81688 +-1.758468,53.797771 +-1.494302,53.685532 +-1.578066,53.732316 +-1.575613,53.804284 +-1.544847,53.803209 +-1.792758,53.798851 +-1.743746,53.647262 +-1.570527,53.811663 +-1.773052,53.815641 +-1.566803,53.803165 +-1.544381,53.799909 +-1.712142,53.723167 +-1.733212,53.787121 +-1.490058,53.683348 +-1.522151,53.722606 +-1.752502,53.64515 +-1.769842,53.805407 +-1.767383,53.819055 +-1.777446,53.645217 +-1.479652,53.758606 +-1.541307,53.7337 +-1.830883,53.847275 +-1.597196,53.70211 +-1.641532,53.796634 +-1.88104,53.621807 +-1.637157,53.671893 +-1.79052,53.583267 +-1.58607,53.732218 +-1.757556,53.681878 +-1.566411,53.802903 +-1.643485,53.836682 +-1.768717,53.822248 +-1.920096,53.739575 +-1.719568,53.777904 +-1.579029,53.77708 +-1.726225,53.864941 +-1.34147,53.723925 +-1.859258,53.711782 +-1.537326,53.802246 +-1.744415,53.796763 +-1.63777,53.831568 +-1.487122,53.728106 +-1.701699,53.903144 +-1.617709,53.731874 +-1.517546,53.747646 +-1.747479,53.799717 +-1.377707,53.776241 +-1.527253,53.786603 +-1.729566,53.808936 +-1.759474,53.661361 +-1.608614,53.753137 +-1.557075,53.796919 +-1.625877,53.709879 +-1.488701,53.652845 +-1.562454,53.764348 +-1.538787,53.781148 +-1.538818,53.781112 +-1.453631,53.808365 +-1.940707,53.907409 +-1.564895,53.790916 +-1.547772,53.745742 +-1.462897,53.853293 +-1.773424,53.656229 +-1.335074,53.680674 +-1.309995,53.692235 +-1.630076,53.713064 +-1.625158,53.79245 +-1.538528,53.796507 +-1.860866,53.720223 +-1.590061,53.798806 +-1.814818,53.625929 +-1.532116,53.824264 +-1.745415,53.71687 +-1.713395,53.768479 +-1.79536,53.800716 +-1.792163,53.648659 +-1.626135,53.691013 +-1.601484,53.835013 +-1.517654,53.816307 +-1.57918,53.68142 +-1.862939,53.674638 +-1.635474,53.784446 +-1.728914,53.792253 +-1.536697,53.787629 +-1.522733,53.736773 +-1.349045,53.715256 +-1.791004,53.754519 +-1.459111,53.793164 +-1.468943,53.86203 +-1.732084,53.642311 +-1.768595,53.739576 +-1.583314,53.764143 +-1.744129,53.796376 +-1.656184,53.692362 +-1.759166,53.800325 +-1.589505,53.816933 +-1.296504,53.613921 +-1.314611,53.724134 +-1.818624,53.672836 +-1.575934,53.731769 +-1.729686,53.702769 +-1.425044,53.688905 +-1.686444,53.710295 +-1.506014,53.82709 +-1.569689,53.810474 +-1.46293,53.628221 +-1.547942,53.845725 +-1.770881,53.793167 +-1.336393,53.629501 +-1.743498,53.705586 +-1.649511,53.746433 +-1.68527,53.796622 +-1.743839,53.796672 +-1.937242,53.67852 +-1.534085,53.842634 +-1.513192,53.797656 +-1.735377,53.831356 +-1.549157,53.782149 +-1.489262,53.651481 +-1.492156,53.809685 +-1.780429,53.662211 +-1.891927,53.716229 +-1.580407,53.746876 +-1.736487,53.79253 +-1.784811,53.702135 +-1.725788,53.878179 +-1.579463,53.624076 +-1.724123,53.814442 +-1.852215,53.702569 +-1.594242,53.820212 +-1.67066,53.640001 +-1.492779,53.807189 +-1.526101,53.779687 +-1.565157,53.772932 +-1.536031,53.790287 +-1.603672,53.884939 +-1.663603,53.585989 +-1.567964,53.778785 +-1.656207,53.674592 +-1.413521,53.63216 +-1.629431,53.689846 +-1.581958,53.806041 +-1.352536,53.611119 +-1.505789,53.692447 +-1.591652,53.780368 +-1.261691,53.679804 +-1.86811,53.657153 +-1.458744,53.819363 +-2.047104,53.732311 +-1.768571,53.658305 +-1.532587,53.803747 +-1.597077,53.651092 +-1.576399,53.804709 +-1.355444,53.738714 +-1.59829,53.744771 +-1.605473,53.822874 +-1.577005,53.816872 +-1.73454,53.826851 +-1.513935,53.791125 +-1.556169,53.684168 +-1.834152,53.789092 +-1.586315,53.807665 +-1.428866,53.905339 +-1.840289,53.587514 +-1.60623,53.703039 +-1.765176,53.803501 +-1.781356,53.687631 +-1.808293,53.637891 +-1.532496,53.786022 +-1.634982,53.716953 +-1.543172,53.800794 +-1.511248,53.729734 +-1.936077,53.909132 +-1.271117,53.715221 +-1.644688,53.802198 +-1.50226,53.734812 +-1.521247,53.810182 +-1.793509,53.661047 +-1.929925,53.855391 +-1.287839,53.594374 +-1.826923,53.642315 +-1.660732,53.791495 +-1.511024,53.80784 +-1.918654,53.858556 +-1.759058,53.805925 +-1.568744,53.793033 +-1.538329,53.829816 +-1.527901,53.784332 +-1.343323,53.7246 +-1.559274,53.772506 +-1.769476,53.753015 +-1.269787,53.714171 +-1.582123,53.806212 +-1.783678,53.69852 +-1.50299,53.671592 +-1.828887,53.822277 +-1.462804,53.672686 +-1.745819,53.790654 +-1.659711,53.731991 +-1.881536,53.720326 +-1.902464,53.719941 +-1.872788,53.726744 +-1.557065,53.796397 +-1.349627,53.899399 +-1.56167,53.814831 +-1.656649,53.707787 +-1.793372,53.775798 +-1.336759,53.629297 +-1.896264,53.801223 +-1.78742,53.644238 +-1.576933,53.869299 +-1.672489,53.716361 +-1.544574,53.81572 +-1.862887,53.718572 +-1.687225,53.858285 +-1.579009,53.79573 +-1.48198,53.682765 +-1.828662,53.646128 +-1.795953,53.712706 +-1.583536,53.818396 +-1.786354,53.777296 +-1.801952,53.651507 +-1.714975,53.821935 +-1.852401,53.714146 +-1.89525,53.750917 +-1.602137,53.815879 +-1.58258,53.827479 +-1.653895,53.79783 +-1.523788,53.686372 +-1.757812,53.792944 +-1.909821,53.865713 +-1.771708,53.643274 +-1.480459,53.74857 +-1.836142,53.628567 +-1.649319,53.807695 +-1.579288,53.772425 +-1.788957,53.56944 +-1.754272,53.845462 +-1.338344,53.823604 +-1.395418,53.709495 +-1.507248,53.807348 +-1.532692,53.79564 +-1.652427,53.883544 +-1.765158,53.806737 +-1.891764,53.714575 +-1.577135,53.820567 +-1.763468,53.772399 +-1.734731,53.78699 +-1.700554,53.570609 +-1.844709,53.815791 +-1.720759,53.703495 +-1.307483,53.729971 +-1.61921,53.689877 +-1.640238,53.718956 +-1.77551,53.904257 +-1.509462,53.730851 +-1.627725,53.692735 +-1.760855,53.778407 +-1.570792,53.796079 +-1.964006,53.805756 +-1.78963,53.637824 +-1.883676,53.944289 +-1.794748,53.692733 +-1.576343,53.775561 +-1.789089,53.649265 +-1.743755,53.660843 +-1.560566,53.786784 +-1.747045,53.76851 +-1.569676,53.777613 +-1.8626,53.722967 +-1.638958,53.714449 +-1.743011,53.793093 +-1.78464,53.797884 +-1.908984,53.865587 +-1.935542,53.671976 +-1.764729,53.793901 +-1.777439,53.804567 +-1.913042,53.645779 +-1.570876,53.7879 +-1.771231,53.86828 +-1.503862,53.670849 +-1.759459,53.823587 +-1.906523,53.864524 +-1.952929,53.826236 +-1.559066,53.780819 +-1.557421,53.814536 +-1.74787,53.797911 +-1.538695,53.835183 +-1.481849,53.827797 +-1.940308,53.651656 +-1.875286,53.722306 +-1.359322,53.805706 +-1.886099,53.876712 +-1.232599,53.617771 +-1.440565,53.743798 +-1.593465,53.820524 +-1.668711,53.882862 +-1.755914,53.918608 +-1.713832,53.800136 +-1.559101,53.783201 +-1.569121,53.674571 +-1.543403,53.811662 +-1.779574,53.649113 +-1.625028,53.665546 +-1.824197,53.654059 +-1.657681,53.830683 +-1.885882,53.73819 +-1.715107,53.719409 +-1.774905,53.702108 +-1.457334,53.824992 +-1.726893,53.776178 +-1.544469,53.790427 +-1.740589,53.79688 +-1.690418,53.872727 +-1.514629,53.732292 +-1.611407,53.645837 +-1.393917,53.828616 +-1.300634,53.687767 +-1.780082,53.827563 +-1.82039,53.837849 +-1.774302,53.828847 +-1.736201,53.797033 +-1.749048,53.826918 +-1.567484,53.775268 +-1.693072,53.746777 +-1.935596,53.696226 +-1.88481,53.731079 +-1.562976,53.795871 +-1.913944,53.8568 +-1.668742,53.88279 +-2.087512,53.716038 +-1.53793,53.812243 +-1.645731,53.887533 +-1.788386,53.659618 +-1.277578,53.704232 +-1.551085,53.846034 +-1.626215,53.711021 +-1.515922,53.817657 +-1.414176,53.844455 +-1.598201,53.816055 +-1.789218,53.662838 +-1.513455,53.809054 +-1.705593,53.634375 +-1.320346,53.694604 +-1.346468,53.863825 +-1.758032,53.791686 +-1.536189,53.807598 +-1.702473,53.87354 +-1.260928,53.673219 +-1.715107,53.809244 +-1.792012,53.796172 +-1.817277,53.833881 +-1.889395,53.757023 +-1.526988,53.719686 +-1.807191,53.63735 +-1.601558,53.819212 +-1.691545,53.596787 +-1.793424,53.805378 +-1.636271,53.815134 +-1.787083,53.732042 +-1.921215,53.855197 +-1.821022,53.642603 +-1.744263,53.796915 +-1.866816,53.635436 +-1.821281,53.638783 +-1.608171,53.746925 +-1.904268,53.946689 +-1.712782,53.873844 +-1.510689,53.679929 +-1.777489,53.720448 +-1.559553,53.785037 +-1.832767,53.847484 +-1.865853,53.724705 +-1.629554,53.8742 +-2.006465,53.63124 +-1.531402,53.818806 +-1.428542,53.656429 +-1.768582,53.860671 +-1.721755,53.816657 +-1.575092,53.734076 +-1.988393,53.634997 +-1.783533,53.635207 +-1.78669,53.569859 +-1.863603,53.726752 +-1.349589,53.779201 +-1.564991,53.794871 +-1.776466,53.821903 +-1.549562,53.771185 +-1.786541,53.812277 +-1.796253,53.641125 +-1.524421,53.802115 +-1.78436,53.831795 +-1.828902,53.822304 +-1.575132,53.805298 +-1.584956,53.725311 +-1.90971,53.867547 +-1.830458,53.726503 +-1.765416,53.89658 +-1.507006,53.7503 +-1.633323,53.714324 +-1.674778,53.625739 +-1.761908,53.77192 +-1.74673,53.795518 +-1.600112,53.734836 +-1.558944,53.812691 +-1.73809,53.756833 +-1.343136,53.828987 +-1.840334,53.587532 +-2.000098,53.632301 +-1.585662,53.810754 +-1.430369,53.793616 +-1.760038,53.796588 +-1.532467,53.821372 +-1.750742,53.797441 +-1.742273,53.799481 +-1.629154,53.692101 +-1.559253,53.783166 +-1.719416,53.777931 +-1.704924,53.80175 +-1.699838,53.588683 +-1.351243,53.876605 +-1.832221,53.671696 +-1.690838,53.747418 +-1.543128,53.804866 +-1.770564,53.642346 +-1.569238,53.65868 +-1.501394,53.74394 +-1.723209,53.867954 +-1.670299,53.676645 +-1.729063,53.643985 +-1.797525,53.663059 +-1.736925,53.911783 +-1.626515,53.802017 +-1.930443,53.8546 +-1.627169,53.712867 +-1.230287,53.694994 +-1.72998,53.888633 +-1.893735,53.750223 +-1.620014,53.748563 +-1.287343,53.608591 +-1.579609,53.805529 +-1.770104,53.793597 +-1.202431,53.695198 +-1.571976,53.761802 +-1.49886,53.801471 +-1.574745,53.807508 +-1.631466,53.713527 +-1.299155,53.698419 +-1.459737,53.808258 +-1.473494,53.75502 +-1.697456,53.911088 +-1.50863,53.808657 +-1.646771,53.886808 +-1.487889,53.805982 +-1.69779,53.710567 +-1.626877,53.711562 +-1.913067,53.707213 +-1.803159,53.636103 +-1.766238,53.773636 +-1.57587,53.819439 +-1.869068,53.938882 +-1.718555,53.793262 +-1.523146,53.811475 +-1.684954,53.711055 +-1.308309,53.717473 +-1.860515,53.757784 +-1.737476,53.794564 +-1.549296,53.796108 +-1.751487,53.789506 +-1.624209,53.820507 +-1.795329,53.619597 +-1.761053,53.7783 +-1.676776,53.67491 +-1.730315,53.786836 +-1.909535,53.871007 +-1.827535,53.796435 +-1.625743,53.702813 +-1.375291,53.904155 +-1.738959,53.717027 +-1.386682,53.927645 +-1.284023,53.589471 +-1.778882,53.651296 +-1.767039,53.796171 +-1.791098,53.769314 +-1.533032,53.814309 +-1.468344,53.812144 +-1.426958,53.613664 +-1.352906,53.599759 +-1.909548,53.872391 +-1.598563,53.787717 +-1.507517,53.680617 +-1.538674,53.684848 +-1.5246,53.810465 +-1.892739,53.754366 +-1.770534,53.795476 +-1.562546,53.764249 +-1.714169,53.795256 +-1.738447,53.797136 +-1.780468,53.765385 +-1.758658,53.788442 +-1.480969,53.779779 +-1.774306,53.819652 +-1.525666,53.80078 +-1.543888,53.80477 +-1.5362,53.798368 +-1.697025,53.829665 +-1.712625,53.796817 +-1.648537,53.810362 +-1.510191,53.81021 +-1.355625,53.682224 +-1.753459,53.77681 +-1.493003,53.815055 +-1.803744,53.803265 +-1.557254,53.814527 +-1.555667,53.799412 +-1.742192,53.755692 +-1.404102,53.715669 +-1.522948,53.811546 +-2.100598,53.6883 +-1.558928,53.812744 +-1.627781,53.772217 +-1.593459,53.83362 +-1.826325,53.640498 +-1.536351,53.799815 +-1.49591,53.7271 +-1.773028,53.808819 +-1.672039,53.811237 +-1.816914,53.833386 +-1.314304,53.688943 +-1.593659,53.715526 +-1.759209,53.806195 +-1.543381,53.794162 +-1.755222,53.828495 +-1.621383,53.886344 +-1.538817,53.781157 +-1.874847,53.737649 +-1.638718,53.804365 +-1.697519,53.803269 +-1.744356,53.821497 +-1.600213,53.856777 +-1.809978,53.707166 +-1.546829,53.812241 +-1.77889,53.655476 +-1.51572,53.873373 +-1.503717,53.800323 +-1.575972,53.767156 +-1.20983,53.694762 +-1.176896,53.50864 +-1.475486,53.497127 +-1.37064,53.431184 +-1.423944,53.421655 +-1.252672,53.386441 +-1.383818,53.432718 +-1.469288,53.387313 +-1.426381,53.345649 +-1.403523,53.479855 +-1.275312,53.502517 +-1.432396,53.499959 +-1.284604,53.361441 +-1.513877,53.403727 +-1.40749,53.358231 +-1.154292,53.583663 +-1.38915,53.372575 +-1.517857,53.566525 +-1.405441,53.352198 +-1.29036,53.498796 +-1.474487,53.372963 +-1.109877,53.522757 +-1.487008,53.561669 +-1.363841,53.432946 +-1.490892,53.401402 +-1.479091,53.373765 +-1.515748,53.437631 +-1.62784,53.457645 +-1.486791,53.504708 +-1.318045,53.39868 +-1.508459,53.379211 +-1.508997,53.551865 +-1.3876,53.345412 +-1.088822,53.526886 +-1.478264,53.344278 +-1.47455,53.381251 +-1.338967,53.455786 +-1.236037,53.307719 +-1.340424,53.495883 +-1.361311,53.442073 +-1.343363,53.507629 +-1.359843,53.432529 +-1.343592,53.503541 +-1.150615,53.516842 +-1.504764,53.417865 +-0.963284,53.586106 +-1.513448,53.588834 +-1.489874,53.355708 +-1.421544,53.358992 +-1.336594,53.421579 +-1.473191,53.373227 +-1.126708,53.522881 +-1.393091,53.344846 +-1.380834,53.435012 +-1.286067,53.427643 +-1.301681,53.397785 +-1.475483,53.431384 +-1.535867,53.586074 +-1.430207,53.361694 +-1.446594,53.397025 +-1.15492,53.577141 +-1.464174,53.388683 +-1.463876,53.386066 +-1.421421,53.412384 +-1.218395,53.430546 +-1.13954,53.556583 +-1.34196,53.460962 +-1.402561,53.414161 +-1.361731,53.425105 +-1.468664,53.421754 +-1.461358,53.359277 +-1.134789,53.520837 +-1.133041,53.522217 +-1.494222,53.403394 +-1.084086,53.555506 +-1.630398,53.523853 +-1.560849,53.342516 +-1.265171,53.495219 +-1.55474,53.350745 +-1.628391,53.442816 +-1.471837,53.542125 +-1.483282,53.372794 +-1.400962,53.524722 +-1.08126,53.47962 +-1.586704,53.321656 +-1.499354,53.36853 +-1.45282,53.58335 +-1.350081,53.39858 +-1.358932,53.471094 +-1.419565,53.402847 +-1.446986,53.343562 +-1.413222,53.377441 +-1.329982,53.434369 +-1.473313,53.380391 +-1.470524,53.525158 +-1.221202,53.482851 +-1.398249,53.379632 +-1.459968,53.389554 +-1.344146,53.455931 +-1.491928,53.420462 +-1.38555,53.359478 +-1.437382,53.421647 +-1.114782,53.525499 +-1.382378,53.372099 +-1.489171,53.3793 +-1.473294,53.363699 +-1.456414,53.421897 +-1.438866,53.433519 +-1.284551,53.500011 +-1.213885,53.587557 +-1.368548,53.499253 +-1.585637,53.519958 +-0.989014,53.59101 +-1.467987,53.409707 +-1.418753,53.411661 +-1.32185,53.44031 +-1.466054,53.382687 +-1.409302,53.399966 +-1.472579,53.374123 +-1.331171,53.398907 +-1.202612,53.568498 +-1.345145,53.436943 +-1.454831,53.422124 +-1.100696,53.517502 +-1.564566,53.36981 +-1.471967,53.384682 +-1.489036,53.429555 +-1.165987,53.54815 +-1.122692,53.525953 +-1.355808,53.328975 +-1.422204,53.536682 +-1.426119,53.399832 +-1.462359,53.320271 +-0.977748,53.593952 +-1.275314,53.343084 +-1.133835,53.526951 +-1.310337,53.444721 +-1.514884,53.549165 +-1.226459,53.480476 +-1.479893,53.354874 +-1.466396,53.580023 +-1.414996,53.425647 +-1.389856,53.340974 +-1.452448,53.376801 +-1.321224,53.368999 +-1.407527,53.403256 +-1.43894,53.391291 +-1.332796,53.484407 +-1.49961,53.401816 +-1.575394,53.479411 +-1.228614,53.373201 +-1.407792,53.440515 +-1.123485,53.533581 +-1.198628,53.567582 +-0.972609,53.493666 +-1.464845,53.353199 +-1.254834,53.362446 +-1.344622,53.45045 +-1.490488,53.378497 +-1.425503,53.371847 +-1.507634,53.382964 +-1.36474,53.395809 +-1.444349,53.404323 +-1.270106,53.572147 +-1.521238,53.379056 +-1.408731,53.437913 +-1.137098,53.520772 +-1.132583,53.522475 +-1.357115,53.429799 +-1.436902,53.559242 +-1.456388,53.530029 +-1.440179,53.491627 +-1.476156,53.381455 +-1.444108,53.45624 +-1.595467,53.487049 +-1.177907,53.467263 +-1.541125,53.572064 +-1.502945,53.587928 +-1.453771,53.413211 +-1.477024,53.383059 +-1.219439,53.541095 +-1.513476,53.354449 +-1.206343,53.486906 +-1.456283,53.530038 +-1.4912,53.394509 +-1.378261,53.515402 +-1.435112,53.455533 +-1.160241,53.42429 +-1.078137,53.560431 +-1.228814,53.540868 +-1.467569,53.374514 +-1.165831,53.569919 +-1.458706,53.370546 +-1.493721,53.377136 +-1.382764,53.348524 +-1.489505,53.549851 +-1.434962,53.563232 +-1.465968,53.373941 +-1.433992,53.364103 +-1.390199,53.341191 +-1.468331,53.373663 +-1.340474,53.494652 +-1.397229,53.40929 +-1.362595,53.345137 +-1.069366,53.471608 +-1.469745,53.473947 +-1.148976,53.555014 +-1.349182,53.399312 +-1.471831,53.387216 +-1.506702,53.412902 +-1.464591,53.537536 +-1.437266,53.559126 +-1.378077,53.347493 +-1.475334,53.548531 +-1.480302,53.334795 +-1.147454,53.552631 +-1.47692,53.371877 +-1.459257,53.578454 +-1.332407,53.449664 +-1.630844,53.524645 +-1.345975,53.497648 +-1.075441,53.508878 +-1.346363,53.500796 +-1.493279,53.348514 +-1.677509,53.491406 +-1.452101,53.546647 +-1.538629,53.436274 +-1.321612,53.44199 +-1.287993,53.492508 +-1.564666,53.451418 +-1.40261,53.407429 +-1.436926,53.500529 +-1.535273,53.546577 +-1.480395,53.359254 +-1.463152,53.363564 +-1.553718,53.603732 +-1.413732,53.575408 +-1.067764,53.573537 +-1.471786,53.38478 +-1.319553,53.362571 +-1.259121,53.404693 +-1.365349,53.458032 +-1.477397,53.411492 +-1.408287,53.588981 +-1.45971,53.476428 +-1.145053,53.529459 +-1.480299,53.459782 +-1.519783,53.588393 +-1.42168,53.546324 +-1.432658,53.402308 +-1.251095,53.410288 +-1.453137,53.58337 +-1.446349,53.392719 +-1.221446,53.349181 +-1.400324,53.348568 +-1.464209,53.358328 +-1.413207,53.406933 +-1.340928,53.503247 +-1.122133,53.501913 +-1.531906,53.386433 +-1.277314,53.421964 +-1.485589,53.389667 +-1.146528,53.478557 +-1.144286,53.475413 +-1.510719,53.594962 +-1.439745,53.550914 +-1.315899,53.487458 +-1.447039,53.50072 +-1.432261,53.575525 +-1.387216,53.371145 +-1.23261,53.379159 +-0.922896,53.573327 +-1.479904,53.549998 +-1.07368,53.510087 +-1.159034,53.589035 +-1.476792,53.497546 +-1.479707,53.511922 +-1.388291,53.358026 +-1.447113,53.409243 +-1.280977,53.3743 +-1.452803,53.373746 +-1.293228,53.494067 +-1.477657,53.392725 +-1.047179,53.486867 +-1.417675,53.372762 +-1.186525,53.486117 +-1.061384,53.539744 +-1.358438,53.348854 +-1.027631,53.600175 +-1.169088,53.540873 +-1.343853,53.45246 +-1.360357,53.437448 +-1.142968,53.511655 +-1.473157,53.36991 +-1.340343,53.496269 +-1.114752,53.489292 +-1.401601,53.382831 +-1.192503,53.531613 +-1.458706,53.374034 +-1.473133,53.321856 +-1.26591,53.341426 +-1.195849,53.423349 +-1.168106,53.540165 +-1.448774,53.390132 +-1.142915,53.527736 +-1.146216,53.546608 +-1.527558,53.368987 +-1.25756,53.394094 +-1.362104,53.345817 +-1.429038,53.572651 +-1.09555,53.487207 +-1.382666,53.575504 +-1.50388,53.367048 +-1.451382,53.359187 +-1.33463,53.398944 +-1.067021,53.496111 +-1.464689,53.369198 +-1.393166,53.433655 +-1.454041,53.561253 +-1.479741,53.379637 +-1.108548,53.432923 +-1.418739,53.411643 +-1.449652,53.348815 +-1.580013,53.562499 +-1.406449,53.568128 +-1.175835,53.511221 +-1.20699,53.457032 +-1.454651,53.598315 +-1.502908,53.395017 +-1.097679,53.621855 +-1.464016,53.530486 +-1.235893,53.476205 +-1.168151,53.540165 +-1.495973,53.374898 +-1.434247,53.358478 +-1.187643,53.602635 +-1.265553,53.494961 +-1.114297,53.487968 +-1.148214,53.529778 +-1.082697,53.545752 +-1.499568,53.418256 +-1.468026,53.364368 +-1.100383,53.512349 +-1.343279,53.345068 +-1.456853,53.534966 +-1.433724,53.363931 +-1.456062,53.539007 +-1.188601,53.559712 +-1.355419,53.434482 +-1.284607,53.500245 +-1.486804,53.352342 +-1.353837,53.445476 +-1.407633,53.403175 +-1.265858,53.425723 +-1.625547,53.524908 +-1.449218,53.348732 +-0.974884,53.616732 +-1.551559,53.602088 +-1.477322,53.369766 +-1.417072,53.421289 +-1.370508,53.511406 +-1.405598,53.384091 +-1.521503,53.409133 +-1.427931,53.404883 +-1.481122,53.350124 +-1.469493,53.372051 +-1.445448,53.539507 +-1.491104,53.55748 +-1.511124,53.584717 +-1.504641,53.411581 +-1.467828,53.415189 +-1.416845,53.37407 +-1.469144,53.326395 +-1.311901,53.484909 +-1.424163,53.536836 +-1.410014,53.3909 +-1.107933,53.519785 +-1.47004,53.386102 +-1.481861,53.392033 +-0.955819,53.615614 +-1.212769,53.550049 +-1.468774,53.375526 +-1.30944,53.419259 +-1.258743,53.493022 +-1.280488,53.421174 +-1.400213,53.340415 +-1.545408,53.335519 +-1.108698,53.51856 +-1.127448,53.528693 +-1.159,53.37656 +-1.316684,53.546454 +-1.158907,53.537593 +-1.507274,53.382927 +-1.375493,53.534443 +-1.369763,53.358173 +-1.126585,53.528858 +-1.068621,53.473275 +-1.066849,53.477836 +-1.212384,53.583798 +-1.339439,53.432157 +-1.496771,53.411746 +-1.500315,53.389172 +-1.217554,53.572129 +-1.236186,53.481734 +-1.457523,53.428158 +-1.438669,53.544383 +-1.208431,53.456502 +-1.368603,53.328854 +-1.665968,53.410226 +-1.147157,53.544871 +-1.464265,53.388674 +-1.507818,53.360476 +-1.383822,53.356403 +-1.476878,53.550587 +-1.444664,53.407821 +-1.13496,53.523561 +-1.129124,53.524184 +-1.465822,53.362758 +-1.375019,53.389158 +-1.109481,53.51861 +-1.216258,53.362594 +-1.486174,53.372222 +-1.062322,53.469953 +-1.709213,53.527873 +-1.348067,53.47721 +-1.128914,53.526349 +-1.129283,53.495817 +-1.054147,53.588891 +-1.428281,53.343977 +-1.438003,53.526313 +-1.46374,53.371809 +-1.386357,53.455993 +-1.540538,53.440695 +-1.13881,53.517396 +-1.062687,53.537453 +-1.039766,53.487428 +-1.379007,53.333116 +-1.340952,53.463751 +-1.327927,53.484506 +-1.486407,53.352898 +-1.026453,53.587653 +-1.112883,53.532649 +-1.48455,53.382292 +-1.396696,53.411885 +-1.463883,53.319675 +-1.633177,53.528653 +-1.47237,53.364261 +-1.362582,53.432588 +-1.150554,53.50708 +-1.488095,53.416401 +-1.134286,53.526271 +-1.347743,53.419654 +-0.986633,53.589497 +-1.098311,53.540351 +-1.458937,53.386718 +-1.535273,53.485869 +-1.492249,53.402334 +-1.466939,53.398502 +-1.406628,53.373795 +-1.16978,53.435197 +-1.009273,53.575557 +-1.348215,53.432124 +-1.488785,53.371362 +-1.374369,53.433513 +-1.444192,53.337805 +-1.48807,53.419727 +-1.468734,53.388353 +-1.129839,53.523929 +-1.006012,53.442703 +-1.293524,53.444496 +-1.132627,53.526969 +-1.365794,53.502959 +-1.458241,53.391775 +-1.355156,53.363299 +-1.347065,53.42659 +-1.520485,53.538402 +-1.455489,53.455447 +-1.457055,53.378637 +-1.231227,53.487608 +-1.241254,53.480589 +-1.468347,53.389277 +-1.43328,53.341862 +-1.190651,53.540913 +-1.616544,53.544717 +-1.589219,53.475469 +-1.486499,53.352718 +-1.471199,53.548477 +-1.373158,53.538242 +-1.476435,53.380773 +-1.309754,53.40825 +-1.123045,53.52565 +-1.098718,53.516903 +-1.175981,53.50217 +-1.138644,53.514456 +-1.554332,53.457555 +-1.191465,53.480694 +-1.01153,53.461193 +-1.518608,53.341634 +-1.069286,53.560632 +-1.438238,53.544983 +-1.398583,53.543559 +-1.520187,53.568746 +-1.335537,53.462346 +-1.493101,53.588723 +-1.440644,53.359901 +-1.474208,53.374849 +-1.185056,53.569018 +-1.341308,53.433983 +-0.904361,53.572952 +-1.373914,53.398851 +-1.44361,53.43098 +-1.115028,53.530346 +-1.192342,53.586047 +-1.157051,53.502587 +-1.417869,53.359577 +-1.451213,53.465881 +-1.421379,53.358964 +-1.491522,53.492387 +-1.093968,53.427716 +-1.258733,53.424403 +-1.157307,53.495002 +-1.416749,53.600905 +-1.446438,53.578117 +-1.44213,53.381894 +-1.452029,53.410677 +-1.033638,53.599189 +-1.114915,53.489419 +-1.048541,53.486609 +-1.425878,53.54612 +-1.212138,53.57835 +-1.473796,53.372942 +-1.203742,53.368965 +-1.236838,53.441137 +-1.047493,53.533387 +-1.148716,53.542392 +-1.546219,53.393553 +-1.413219,53.395131 +-1.404088,53.590021 +-1.585561,53.520048 +-1.306236,53.363699 +-1.358342,53.362238 +-1.504103,53.410006 +-1.10693,53.520875 +-1.337271,53.497052 +-1.477845,53.554187 +-1.496821,53.381985 +-1.1667,53.458745 +-1.42197,53.546083 +-1.138263,53.522057 +-1.129217,53.52627 +-1.343317,53.454003 +-1.475412,53.373497 +-1.360563,53.394609 +-1.448139,53.443872 +-1.50823,53.361223 +-1.400658,53.412561 +-0.989227,53.495902 +-1.442966,53.414626 +-1.158853,53.47477 +-1.349787,53.436618 +-1.565373,53.349553 +-1.341119,53.43355 +-1.361562,53.413221 +-0.989283,53.496064 +-1.353307,53.53784 +-1.41226,53.419962 +-1.301104,53.508252 +-1.462789,53.382825 +-1.474559,53.546496 +-1.464985,53.376777 +-1.444754,53.40783 +-1.48119,53.39407 +-1.617882,53.525081 +-1.349995,53.397285 +-1.515647,53.548458 +-1.03208,53.60057 +-1.323277,53.4339 +-0.96265,53.611997 +-1.286423,53.334441 +-1.318351,53.520621 +-1.026947,53.648375 +-1.484043,53.381903 +-1.490865,53.510703 +-1.541005,53.571955 +-0.964746,53.607234 +-1.23471,53.51181 +-1.481066,53.388173 +-1.221461,53.349163 +-1.341504,53.433921 +-1.464345,53.496071 +-1.473045,53.326592 +-1.372878,53.533701 +-1.184061,53.539888 +-1.143492,53.425789 +-1.143326,53.481195 +-1.31166,53.417834 +-1.480928,53.371049 +-1.179335,53.555667 +-1.324089,53.514542 +-1.151916,53.47811 +-1.477641,53.392779 +-1.353782,53.536368 +-1.466924,53.398493 +-1.472875,53.373288 +-1.465541,53.36842 +-1.145474,53.425983 +-1.183806,53.406305 +-1.508923,53.376741 +-1.41769,53.372762 +-0.9629,53.592539 +-1.468918,53.570399 +-1.366013,53.514529 +-1.339373,53.466538 +-1.487332,53.359661 +-1.332823,53.353837 +-1.437061,53.456189 +-1.240005,53.432393 +-1.49729,53.426399 +-1.507804,53.467305 +-1.549084,53.384207 +-1.251956,53.485529 +-1.458124,53.382049 +-1.452569,53.546641 +-1.488753,53.553425 +-0.978717,53.533682 +-1.456283,53.53002 +-1.147286,53.517412 +-1.116841,53.529478 +-1.497742,53.564222 +-1.092816,53.513613 +-1.281194,53.403398 +-1.461858,53.327855 +-1.2818,53.362027 +-1.25582,53.490389 +-1.35416,53.533341 +-1.492334,53.377489 +-1.404922,53.416375 +-1.459921,53.443171 +-1.483236,53.578794 +-0.982447,53.549912 +-1.476948,53.383086 +-1.353106,53.433149 +-1.449771,53.533082 +-1.202092,53.369584 +-1.485577,53.548899 +-0.968485,53.613828 +-1.477429,53.370791 +-1.22212,53.607241 +-1.08671,53.53531 +-1.521301,53.552948 +-1.48131,53.3371 +-1.137313,53.521295 +-1.497427,53.368846 +-1.446275,53.393851 +-1.509044,53.358377 +-0.970494,53.616982 +-1.492461,53.422451 +-1.337265,53.398743 +-0.950041,53.609649 +-1.491186,53.336343 +-1.194561,53.477174 +-1.526148,53.36472 +-1.345251,53.436917 +-1.020683,53.568667 +-1.50605,53.366518 +-1.322098,53.440824 +-1.444261,53.407621 +-1.316148,53.532878 +-1.477979,53.558053 +-1.504236,53.535621 +-1.363185,53.416367 +-1.03978,53.478134 +-1.133677,53.5273 +-1.483928,53.372824 +-1.540489,53.393585 +-1.520532,53.345588 +-1.070422,53.507401 +-1.415621,53.533675 +-1.29372,53.397244 +-1.060814,53.558696 +-1.183234,53.49893 +-1.420044,53.394212 +-1.466789,53.53315 +-1.523145,53.423683 +-1.315745,53.359233 +-1.398351,53.379866 +-1.182385,53.497612 +-1.548405,53.581835 +-1.319098,53.377931 +-1.432598,53.402308 +-1.472093,53.461994 +-1.424135,53.35069 +-1.681243,53.499928 +-1.441706,53.445316 +-1.478731,53.373781 +-1.333577,53.327621 +-1.145492,53.518127 +-1.436224,53.38175 +-1.279638,53.394877 +-1.430117,53.395537 +-1.316326,53.360486 +-1.499741,53.589281 +-1.442488,53.357896 +-1.236032,53.616886 +-1.121712,53.488004 +-1.445165,53.546184 +-1.428679,53.359143 +-1.412368,53.341141 +-1.452675,53.437646 +-1.378778,53.40773 +-1.475348,53.54863 +-1.282242,53.423315 +-0.963202,53.589423 +-1.135349,53.550377 +-1.477604,53.374909 +-1.443644,53.357965 +-1.102075,53.533602 +-1.699838,53.528793 +-1.197979,53.366904 +-1.237986,53.481315 +-1.325206,53.514476 +-1.786117,53.500818 +-1.101523,53.525481 +-1.500981,53.562249 +-1.48767,53.351573 +-1.148204,53.506982 +-1.478165,53.362282 +-1.516152,53.378181 +-1.219863,53.387346 +-1.428578,53.409372 +-1.48964,53.360174 +-1.290146,53.419488 +-1.266446,53.429205 +-1.109508,53.536031 +-1.383074,53.401964 +-1.179992,53.58332 +-1.443868,53.456194 +-1.169955,53.537436 +-1.411195,53.367436 +-1.029884,53.59417 +-1.436305,53.421157 +-1.363063,53.434631 +-1.475687,53.576136 +-1.425118,53.38923 +-1.381434,53.438314 +-1.444977,53.423067 +-1.548441,53.537252 +-1.506306,53.366456 +-1.412398,53.341177 +-1.257826,53.492882 +-1.243244,53.424638 +-1.363342,53.434102 +-1.243651,53.366879 +-1.512841,53.336334 +-1.366805,53.383344 +-1.492993,53.366328 +-0.975574,53.616369 +-1.475458,53.383259 +-1.276688,53.465079 +-1.036335,53.526448 +-1.193423,53.478353 +-1.466984,53.398502 +-1.03322,53.591663 +-1.488739,53.371398 +-0.952995,53.506008 +-1.264381,53.424114 +-1.267413,53.427207 +-1.410898,53.387857 +-1.455524,53.419691 +-1.473622,53.423637 +-1.490217,53.41383 +-1.410006,53.52954 +-1.31276,53.443854 +-1.130011,53.515526 +-1.493663,53.48721 +-1.170342,53.547704 +-1.491164,53.439119 +-1.253757,53.419796 +-1.302047,53.551817 +-1.349706,53.44193 +-1.483231,53.543271 +-1.135724,53.592707 +-1.25034,53.594271 +-1.580961,53.388413 +-1.283159,53.497639 +-1.482439,53.370382 +-1.121184,53.526643 +-1.074406,53.509319 +-1.38055,53.361303 +-1.271824,53.542423 +-0.951355,53.631647 +-1.043768,53.53937 +-1.508523,53.437655 +-1.457677,53.439727 +-1.4504,53.373609 +-1.397197,53.372166 +-1.354233,53.494853 +-1.461607,53.498 +-1.40545,53.479919 +-1.44728,53.569168 +-1.213105,53.373828 +-1.066898,53.496209 +-1.564507,53.475813 +-1.474353,53.559484 +-1.030905,53.603734 +-1.462107,53.402417 +-1.091684,53.512949 +-1.126097,53.523982 +-1.399,53.347582 +-1.17722,53.5067 +-1.359543,53.433489 +-1.704024,53.560209 +-1.067036,53.496121 +-1.439368,53.545141 +-0.961902,53.616593 +-1.490397,53.378605 +-1.196419,53.423443 +-1.462068,53.387568 +-1.541554,53.316763 +-1.470792,53.382456 +-1.465323,53.414584 +-1.226153,53.482362 +-1.614839,53.444786 +-1.109545,53.518431 +-1.319305,53.549561 +-1.418416,53.502535 +-1.273999,53.340919 +-1.132785,53.526647 +-1.53785,53.353998 +-1.332962,53.379609 +-1.466301,53.532357 +-1.429134,53.413923 +-1.174277,53.622345 +-1.111575,53.531696 +-1.296565,53.455409 +-1.367086,53.493142 +-1.50674,53.354925 +-1.313454,53.44375 +-1.061042,53.508793 +-1.269322,53.495784 +-1.426003,53.393935 +-1.410133,53.384482 +-1.615402,53.535832 +-1.323236,53.488551 +-1.634206,53.454699 +-1.381266,53.360633 +-1.41824,53.406293 +-1.453136,53.377082 +-1.423058,53.359242 +-1.414713,53.375013 +-1.495847,53.376614 +-1.441705,53.407474 +-1.175878,53.511329 +-1.373456,53.430057 +-1.492922,53.402705 +-1.434382,53.406172 +-1.450018,53.398632 +-1.170609,53.380237 +-0.961146,53.609827 +-1.062458,53.473334 +-1.47864,53.361484 +-1.465156,53.527462 +-1.207004,53.47083 +-1.121623,53.517109 +-1.25352,53.395543 +-1.152978,53.562449 +-1.209925,53.373474 +-1.343121,53.368079 +-1.401731,53.345672 +-1.346151,53.418477 +-1.532818,53.561146 +-1.436582,53.40016 +-1.321046,53.4152 +-1.051909,53.555237 +-1.211826,53.421936 +-1.364303,53.450404 +-1.177518,53.457786 +-1.356058,53.336347 +-1.333832,53.406679 +-1.474378,53.385474 +-1.472735,53.569427 +-1.394321,53.418057 +-1.266461,53.399426 +-1.488004,53.347475 +-1.2074,53.42935 +-1.446868,53.436271 +-1.129637,53.515379 +-1.094599,53.529735 +-1.479957,53.578923 +-1.280992,53.374283 +-1.17715,53.507185 +-1.35792,53.349382 +-1.224225,53.485612 +-1.41931,53.366316 +-1.585592,53.520003 +-1.23459,53.489203 +-1.469724,53.365571 +-1.331011,53.548045 +-1.498551,53.390891 +-1.344478,53.327619 +-1.474046,53.359972 +-1.305621,53.507757 +-1.304863,53.543923 +-1.196543,53.378508 +-1.24018,53.431019 +-1.48245,53.49473 +-1.247792,53.513951 +-1.130943,53.524512 +-1.401262,53.412366 +-1.451644,53.566833 +-0.967854,53.613687 +-1.34648,53.447072 +-1.38444,53.359382 +-1.413113,53.386421 +-1.420533,53.403616 +-1.177347,53.580336 +-1.344421,53.346998 +-1.363801,53.34277 +-1.426301,53.451158 +-1.48705,53.419453 +-1.364972,53.429761 +-1.079319,53.517097 +-1.369982,53.511314 +-1.467609,53.339935 +-1.359627,53.436932 +-1.340057,53.414596 +-1.368316,53.455962 +-1.161531,53.61094 +-1.518919,53.370121 +-1.389096,53.39626 +-1.357312,53.506509 +-1.431069,53.51126 +-1.188163,53.486326 +-1.281573,53.325432 +-1.175159,53.501005 +-0.969656,53.625316 +-1.414277,53.578584 +-1.316696,53.398366 +-1.378584,53.514981 +-1.349465,53.353165 +-1.096097,53.433773 +-1.535577,53.48427 +-1.406235,53.410701 +-1.144975,53.53184 +-1.472134,53.502424 +-1.428039,53.572808 +-1.024181,53.597126 +-1.417453,53.401138 +-1.145944,53.529402 +-1.338531,53.431496 +-1.391363,53.382824 +-1.145712,53.47643 +-1.33221,53.436314 +-1.281226,53.516566 +-1.268334,53.382287 +-1.112448,53.531801 +-1.477298,53.537367 +-1.509847,53.415405 +-1.44598,53.568146 +-1.464484,53.42392 +-1.461664,53.371944 +-1.154844,53.611261 +-1.490713,53.524679 +-1.168089,53.537145 +-1.393158,53.43744 +-1.482224,53.381976 +-1.143542,53.528082 +-1.489055,53.337475 +-1.198772,53.417535 +-1.472014,53.380898 +-1.393718,53.375834 +-1.460575,53.402186 +-1.110551,53.519346 +-1.469814,53.365562 +-1.484199,53.377769 +-1.35645,53.350219 +-1.475403,53.393838 +-1.519651,53.354465 +-1.234295,53.483772 +-1.041026,53.521137 +-1.441677,53.418809 +-1.207629,53.456668 +-1.247333,53.429104 +-1.176613,53.519307 +-1.28336,53.498224 +-0.994503,53.578085 +-1.386076,53.531855 +-1.470365,53.385367 +-1.359622,53.422217 +-1.466046,53.389321 +-1.486897,53.485932 +-1.444598,53.412908 +-1.487523,53.469018 +-1.344619,53.503474 +-1.365387,53.47769 +-1.416783,53.348911 +-1.520503,53.539463 +-1.441555,53.38217 +-1.098512,53.527319 +-1.471687,53.561458 +-1.082139,53.431213 +-1.547531,53.335006 +-1.447435,53.409946 +-1.319007,53.376069 +-1.409404,53.386106 +-1.213753,53.360672 +-1.378004,53.418548 +-1.046495,53.544911 +-1.47805,53.381464 +-1.475476,53.371987 +-1.334143,53.406959 +-1.511259,53.317083 +-1.472316,53.405097 +-1.424195,53.350699 +-1.128976,53.525549 +-1.312928,53.537021 +-1.215921,53.593457 +-1.197634,53.56744 +-1.481001,53.321719 +-1.322652,53.412575 +-1.140859,53.513042 +-1.339656,53.419134 +-1.488242,53.371503 +-1.481652,53.500794 +-1.452006,53.531816 +-1.078525,53.488354 +-1.541081,53.57192 +-1.480147,53.549865 +-1.461753,53.408978 +-1.433279,53.40197 +-1.153297,53.508682 +-1.099466,53.47876 +-1.393943,53.426693 +-1.464711,53.537599 +-1.102152,53.512138 +-1.227853,53.560511 +-1.286765,53.501948 +-1.518781,53.379702 +-1.48975,53.37106 +-1.464963,53.398934 +-1.529833,53.589457 +-1.529936,53.404214 +-1.473585,53.394963 +-1.353097,53.541758 +-1.172992,53.547273 +-1.250419,53.488944 +-1.200012,53.421219 +-1.359449,53.422684 +-1.479373,53.578507 +-1.26516,53.438294 +-1.349856,53.334345 +-0.951618,53.633258 +-1.131403,53.527095 +-1.350006,53.39759 +-1.497538,53.462804 +-1.577721,53.47577 +-1.355117,53.338984 +-0.947575,53.632207 +-1.405882,53.442519 +-1.249226,53.418204 +-1.147351,53.535983 +-1.302212,53.364395 +-1.489687,53.396543 +-1.424727,53.399304 +-1.211609,53.366941 +-1.207446,53.576476 +-1.186301,53.530106 +-1.582237,53.511452 +-1.437673,53.358476 +-1.476462,53.497455 +-1.21312,53.373828 +-1.403582,53.356171 +-1.465007,53.399024 +-1.36355,53.347533 +-1.402604,53.525971 +-1.370154,53.431505 +-1.506125,53.388657 +-1.267005,53.436058 +-1.245662,53.423188 +-1.144944,53.531103 +-1.462308,53.566477 +-1.32137,53.437332 +-1.372364,53.535829 +-1.192672,53.42188 +-1.166933,53.503798 +-1.195165,53.564682 +-1.320122,53.518348 +-1.355017,53.434211 +-1.473262,53.412561 +-1.392937,53.40641 +-1.305315,53.533823 +-1.162122,53.473274 +-1.494747,53.562169 +-1.148307,53.543217 +-1.319986,53.362772 +-1.175549,53.511974 +-1.601492,53.318308 +-1.145783,53.509644 +-1.162435,53.5224 +-1.020598,53.430382 +-1.394083,53.367027 +-1.197675,53.371109 +-1.2521,53.423337 +-1.370177,53.470632 +-1.414682,53.375102 +-1.363187,53.434425 +-1.362362,53.326511 +-1.150488,53.545102 +-1.502009,53.367723 +-1.451231,53.356867 +-1.397246,53.346297 +-1.475805,53.553153 +-1.131,53.522463 +-1.538674,53.436274 +-1.436582,53.40016 +-1.281462,53.432982 +-1.446863,53.495721 +-1.342088,53.427336 +-1.13157,53.527051 +-1.495408,53.43663 +-1.535154,53.546361 +-1.320427,53.369992 +-1.546552,53.547438 +-1.508982,53.342817 +-1.603576,53.561384 +-1.100796,53.544154 +-1.411628,53.416741 +-1.280347,53.343914 +-1.483035,53.483767 +-1.276346,53.4382 +-1.241618,53.512591 +-1.488055,53.390855 +-1.44751,53.408769 +-1.447279,53.418466 +-1.394691,53.409996 +-1.186354,53.585575 +-1.326028,53.547262 +-1.09034,53.511635 +-1.194218,53.431599 +-1.357823,53.34983 +-1.309649,53.468608 +-1.477023,53.383086 +-1.399503,53.340645 +-0.898476,53.568098 +-1.459592,53.598329 +-1.456299,53.529966 +-1.135727,53.550344 +-1.42614,53.345657 +-1.436311,53.400222 +-1.17555,53.486266 +-1.443797,53.455852 +-1.123855,53.525179 +-1.444321,53.41803 +-1.152566,53.528685 +-1.385655,53.56929 +-1.446468,53.578135 +-1.398289,53.524942 +-1.465974,53.396242 +-1.341461,53.433822 +-1.449124,53.500388 +-1.412846,53.581606 +-1.500906,53.58783 +-1.276936,53.403481 +-1.105886,53.526035 +-1.390224,53.42893 +-1.278596,53.340821 +-0.985644,53.586604 +-1.426563,53.36005 +-1.333173,53.398819 +-1.129644,53.515775 +-0.982956,53.495255 +-1.307559,53.333972 +-1.308992,53.43763 +-1.180422,53.539207 +-1.283314,53.312022 +-1.280373,53.419924 +-1.332868,53.353829 +-1.094055,53.42787 +-1.419272,53.387925 +-1.341455,53.50334 +-1.33962,53.340778 +-1.326981,53.506217 +-1.451807,53.397445 +-1.468636,53.420415 +-1.65565,53.521798 +-1.185424,53.568733 +-1.732969,53.545114 +-1.21138,53.366328 +-1.532726,53.568211 +-1.187508,53.416488 +-1.151148,53.478123 +-0.981613,53.565779 +-1.36331,53.35964 +-1.374485,53.419438 +-1.148702,53.492631 +-1.509695,53.541127 +-1.142359,53.511956 +-1.065432,53.495029 +-1.357101,53.319885 +-1.175914,53.511042 +-1.402133,53.412487 +-1.215062,53.433391 +-1.379109,53.599718 +-1.466407,53.580293 +-1.493476,53.420658 +-1.471433,53.413227 +-1.017252,53.600063 +-1.204254,53.368879 +-1.416641,53.365917 +-1.489529,53.387095 +-1.264966,53.521069 +-1.345301,53.327821 +-1.34693,53.426553 +-1.412654,53.388099 +-1.420359,53.403076 +-1.464084,53.388656 +-1.540288,53.484783 +-1.509557,53.321534 +-1.446264,53.54636 +-1.113872,53.516315 +-1.250717,53.383876 +-1.493894,53.403141 +-1.447214,53.437441 +-1.309946,53.40844 +-1.337204,53.40943 +-1.383946,53.37173 +-1.236769,53.478628 +-1.416423,53.404963 +-1.47865,53.350851 +-1.403995,53.590209 +-1.450954,53.384272 +-1.533571,53.339914 +-1.120619,53.536445 +-1.533725,53.584466 +-1.495014,53.563797 +-1.314032,53.435924 +-1.126311,53.528946 +-1.585319,53.520101 +-1.037394,53.473728 +-1.124706,53.524835 +-1.302157,53.36408 +-1.486039,53.394703 +-1.34866,53.398059 +-1.111494,53.54205 +-1.495871,53.590766 +-1.41431,53.375928 +-1.333936,53.372046 +-1.081075,53.502872 +-1.182471,53.497873 +-1.416861,53.387194 +-1.47076,53.318277 +-1.206629,53.57737 +-1.464659,53.369171 +-1.115714,53.529991 +-1.419009,53.576072 +-1.493431,53.37628 +-1.315134,53.487246 +-1.394681,53.428737 +-1.492921,53.588587 +-1.304463,53.353541 +-1.151966,53.560959 +-1.182215,53.497863 +-1.436791,53.400314 +-1.270486,53.340789 +-1.320934,53.413698 +-1.475081,53.383311 +-1.352763,53.432913 +-1.336189,53.429236 +-1.278148,53.426931 +-1.194847,53.510595 +-1.268185,53.382223 +-1.019483,53.608818 +-1.157105,53.6093 +-0.989211,53.495928 +-1.167187,53.533902 +-1.226673,53.381602 +-1.488275,53.553001 +-1.461112,53.370377 +-1.144942,53.518465 +-1.497907,53.543927 +-1.394773,53.376657 +-1.186231,53.42109 +-1.165411,53.589718 +-1.324767,53.398727 +-1.077875,53.618972 +-1.423355,53.343873 +-1.476755,53.373125 +-1.31468,53.482651 +-1.428616,53.405363 +-1.150539,53.50708 +-1.481846,53.392042 +-1.537394,53.436305 +-1.462807,53.367113 +-1.477606,53.348949 +-0.947218,53.578497 +-0.901733,53.584047 +-1.421241,53.422379 +-1.468319,53.53144 +-1.426575,53.345731 +-1.295342,53.420103 +-1.343106,53.504787 +-1.482512,53.358157 +-1.411715,53.395124 +-1.491953,53.379204 +-1.08394,53.512638 +-1.472103,53.363981 +-0.985997,53.588926 +-1.059784,53.547246 +-1.461917,53.407936 +-1.50472,53.376265 +-1.502386,53.424308 +-1.24347,53.366914 +-1.365421,53.429916 +-1.250162,53.416322 +-1.404259,53.339977 +-1.462939,53.401999 +-1.027478,53.600272 +-1.367951,53.361777 +-1.46262,53.330555 +-1.497909,53.385342 +-0.989338,53.591354 +-1.406299,53.588531 +-1.486501,53.395064 +-1.493212,53.528861 +-1.11226,53.536438 +-1.473115,53.361127 +-1.109471,53.432714 +-1.260363,53.341662 +-1.482192,53.494819 +-1.571725,53.372299 +-1.577199,53.508585 +-1.547432,53.384048 +-1.619716,53.50222 +-1.400825,53.586796 +-1.145826,53.529284 +-1.352255,53.432659 +-1.489732,53.346152 +-1.338129,53.531968 +-1.380737,53.332855 +-1.193845,53.585626 +-1.194926,53.480978 +-1.482987,53.413305 +-1.290184,53.494912 +-1.388413,53.346342 +-1.315305,53.483131 +-1.100728,53.517439 +-1.640777,53.473666 +-1.468877,53.32608 +-1.471764,53.37562 +-1.439193,53.437224 +-1.501132,53.58793 +-1.24601,53.366067 +-1.143794,53.511086 +-1.536149,53.352922 +-1.475757,53.380905 +-1.08802,53.548048 +-1.168503,53.470559 +-1.019207,53.565257 +-1.498762,53.411296 +-0.992057,53.578038 +-1.278523,53.381674 +-1.058442,53.48053 +-1.243805,53.424354 +-1.288668,53.503523 +-1.481123,53.419319 +-1.208597,53.544727 +-1.168776,53.532925 +-1.501411,53.342957 +-1.44054,53.430983 +-1.386118,53.534184 +-1.45202,53.407828 +-1.442426,53.378813 +-1.348558,53.353529 +-1.377875,53.575704 +-1.16059,53.48983 +-1.450459,53.599968 +-0.918619,53.585909 +-1.062496,53.537244 +-1.127673,53.522124 +-1.458623,53.391283 +-1.319087,53.439872 +-1.480196,53.348457 +-1.474037,53.494819 +-1.421497,53.412367 +-1.141908,53.616365 +-1.234064,53.386117 +-1.158465,53.619188 +-1.419037,53.589447 +-1.305988,53.441819 +-1.592077,53.51376 +-1.150791,53.510309 +-1.392034,53.374783 +-1.202158,53.444065 +-1.462338,53.446103 +-1.240733,53.42278 +-1.483862,53.557206 +-1.055905,53.480105 +-0.960723,53.628888 +-1.464342,53.505832 +-1.435191,53.438176 +-1.324186,53.425905 +-1.428348,53.359178 +-1.423682,53.393187 +-1.033329,53.598827 +-1.151939,53.461868 +-1.317672,53.442695 +-1.45107,53.357684 +-1.297601,53.493922 +-1.422083,53.36464 +-1.483947,53.382415 +-1.152581,53.528676 +-1.414668,53.374995 +-1.469019,53.390844 +-0.976159,53.547773 +-1.3128,53.500168 +-1.479275,53.412965 +-1.512349,53.390031 +-1.478911,53.373773 +-1.468881,53.46357 +-1.31754,53.501642 +-1.457976,53.386615 +-1.527711,53.355172 +-1.124032,53.52972 +-1.115737,53.499906 +-1.481023,53.554749 +-1.449299,53.421712 +-1.487266,53.380209 +-1.122973,53.516751 +-1.595162,53.321002 +-1.148704,53.507633 +-1.103679,53.524086 +-1.490208,53.400734 +-1.454748,53.416829 +-1.363172,53.434425 +-1.489355,53.428002 +-1.53316,53.39131 +-1.367533,53.408273 +-1.189609,53.406453 +-1.444986,53.435148 +-1.1564,53.486807 +-1.44055,53.348746 +-1.429064,53.3607 +-0.922897,53.573291 +-1.621697,53.537192 +-1.190142,53.514591 +-0.956839,53.618383 +-1.4891,53.337512 +-1.360249,53.366392 +-1.483909,53.381876 +-1.462946,53.373954 +-1.068948,53.472828 +-1.412308,53.378273 +-1.474065,53.380412 +-1.48418,53.381841 +-1.517598,53.326053 +-1.357484,53.395303 +-1.515348,53.597093 +-1.178787,53.588642 +-1.114826,53.489356 +-1.475588,53.535346 +-1.468195,53.373672 +-1.440093,53.431745 +-1.437023,53.560348 +-1.111468,53.515902 +-1.457474,53.441425 +-1.424194,53.350708 +-1.098015,53.506704 +-1.094554,53.529698 +-1.450101,53.355945 +-1.485817,53.433083 +-1.506454,53.366654 +-1.321546,53.413064 +-1.350704,53.399158 +-1.367247,53.408326 +-1.473514,53.550438 +-1.4448,53.407803 +-1.400567,53.449009 +-1.451792,53.397454 +-1.493525,53.489987 +-1.022835,53.540145 +-1.323226,53.366925 +-1.44812,53.394147 +-1.170124,53.541896 +-1.082493,53.431539 +-1.194478,53.562655 +-1.514164,53.40096 +-1.463406,53.59902 +-1.44709,53.400578 +-1.086859,53.535384 +-1.439122,53.436927 +-1.396867,53.434906 +-1.021832,53.540451 +-1.636287,53.457887 +-1.514215,53.397859 +-1.360994,53.408975 +-1.097732,53.540626 +-1.32134,53.442078 +-1.452293,53.484978 +-1.445987,53.443781 +-1.508863,53.538687 +-1.070845,53.471476 +-1.55221,53.601974 +-1.459567,53.563544 +-1.130136,53.524138 +-1.367617,53.495922 +-1.348808,53.442545 +-1.320186,53.412499 +-1.137055,53.524377 +-1.286541,53.501812 +-1.489031,53.367138 +-1.145723,53.509643 +-1.54903,53.584138 +-1.473828,53.380052 +-1.235681,53.389839 +-1.321417,53.413584 +-1.424311,53.371086 +-1.020542,53.570184 +-1.361617,53.410552 +-1.409461,53.529663 +-1.528772,53.578901 +-1.517909,53.39302 +-1.502219,53.367751 +-1.472161,53.370202 +-1.483968,53.429183 +-1.460557,53.408442 +-1.124428,53.516402 +-1.054832,53.490398 +-1.161283,53.49059 +-1.482439,53.370373 +-1.111185,53.538803 +-1.461228,53.383852 +-1.474947,53.364875 +-1.040419,53.52195 +-1.440121,53.434217 +-1.482421,53.358256 +-1.357718,53.327789 +-1.447293,53.568162 +-1.482984,53.429637 +-1.409342,53.386258 +-1.486431,53.485786 +-1.204119,53.42211 +-1.096934,53.541222 +-1.355193,53.469267 +-1.198128,53.567632 +-1.451166,53.390008 +-1.350207,53.329043 +-1.484457,53.356341 +-1.477085,53.479921 +-1.342563,53.433585 +-1.447101,53.50525 +-1.463211,53.528514 +-1.530734,53.367174 +-1.585711,53.520102 +-1.137305,53.520972 +-1.479244,53.387159 +-1.467934,53.382623 +-1.310748,53.50954 +-1.379264,53.38989 +-1.394298,53.376286 +-1.434787,53.417572 +-1.434126,53.564819 +-1.572728,53.413264 +-1.479889,53.550016 +-1.546398,53.406372 +-1.349282,53.404616 +-1.393257,53.433656 +-1.446234,53.54636 +-1.456629,53.383714 +-1.148384,53.516799 +-1.152033,53.461662 +-1.508074,53.364351 +-1.380319,53.430093 +-1.484358,53.35955 +-1.394808,53.375264 +-1.243425,53.36694 +-1.190137,53.572585 +-1.408224,53.519931 +-1.073819,53.50998 +-1.209503,53.373579 +-1.384129,53.371578 +-1.476281,53.46683 +-1.031126,53.596059 +-1.428868,53.360744 +-1.339199,53.411742 +-1.174431,53.547004 +-1.481723,53.338936 +-1.356455,53.348861 +-1.406095,53.346206 +-1.414818,53.446275 +-1.468911,53.463552 +-1.576704,53.323293 +-1.077737,53.476006 +-1.201565,53.537481 +-1.508967,53.342853 +-1.294784,53.357403 +-1.12929,53.519763 +-1.282933,53.366995 +-1.024481,53.593255 +-1.444767,53.456522 +-1.40401,53.519281 +-1.499096,53.43669 +-1.120406,53.488453 +-1.278071,53.381699 +-1.470378,53.385511 +-1.211269,53.45529 +-1.452054,53.532769 +-1.479216,53.386943 +-1.302339,53.450472 +-1.483756,53.429299 +-1.461878,53.407414 +-1.47065,53.429107 +-1.141921,53.512744 +-1.177163,53.551643 +-0.970722,53.61444 +-1.364671,53.42975 +-1.443616,53.435123 +-1.472017,53.369743 +-1.047277,53.557115 +-1.46426,53.383083 +-1.333907,53.406679 +-1.43277,53.363307 +-1.357565,53.50972 +-1.33359,53.406767 +-1.219172,53.601523 +-1.131543,53.526889 +-1.445677,53.547382 +-1.070991,53.477904 +-1.358267,53.362246 +-1.55502,53.547326 +-1.339306,53.450484 +-1.341151,53.438288 +-1.213033,53.585466 +-1.411478,53.546338 +-1.460795,53.382466 +-1.475614,53.496516 +-1.4504,53.373618 +-1.027952,53.590146 +-1.340769,53.398735 +-1.324111,53.391703 +-1.389901,53.341001 +-1.563055,53.534979 +-1.455329,53.378378 +-1.320707,53.418515 +-1.238662,53.368564 +-1.129202,53.52627 +-1.214191,53.588161 +-1.184817,53.582248 +-1.474581,53.379983 +-1.339497,53.450737 +-1.321919,53.441677 +-1.416347,53.405007 +-1.15751,53.502248 +-1.425882,53.393916 +-1.480397,53.507251 +-1.48384,53.581268 +-1.503129,53.401876 +-1.349205,53.404696 +-0.976359,53.548862 +-1.288697,53.503604 +-1.339207,53.458807 +-1.353301,53.537256 +-1.083032,53.545583 +-1.473334,53.557709 +-1.319161,53.414488 +-1.436493,53.400115 +-1.283246,53.312507 +-0.988843,53.496186 +-1.50747,53.386712 +-1.456512,53.377583 +-1.046693,53.51863 +-1.493101,53.588714 +-1.100491,53.517222 +-1.468334,53.37218 +-1.426716,53.40574 +-1.11063,53.506934 +-1.132057,53.517994 +-1.349362,53.353021 +-1.365147,53.427101 +-1.163411,53.548671 +-1.476084,53.373842 +-1.419497,53.465318 +-1.079819,53.479366 +-1.477672,53.392725 +-1.274797,53.426659 +-1.190507,53.572974 +-1.358108,53.333823 +-1.475343,53.387681 +-1.320887,53.546927 +-1.207465,53.593213 +-1.451031,53.37363 +-1.318395,53.406924 +-1.526559,53.543046 +-1.473645,53.372959 +-1.428099,53.365388 +-1.599718,53.483801 +-1.415623,53.425992 +-1.624221,53.521281 +-1.248911,53.514633 +-1.382459,53.435075 +-1.076032,53.43868 +-1.522918,53.380761 +-1.082554,53.431503 +-1.257548,53.396503 +-1.463567,53.427412 +-1.42066,53.573519 +-1.459244,53.393344 +-1.230947,53.372191 +-1.50758,53.366785 +-1.419348,53.387844 +-1.500214,53.545357 +-1.12932,53.619815 +-1.265598,53.494961 +-1.256548,53.360713 +-1.474376,53.499135 +-1.366034,53.368472 +-0.952257,53.623331 +-1.154665,53.461078 +-1.554733,53.455256 +-1.333772,53.406696 +-1.20984,53.378912 +-1.114546,53.48761 +-1.011888,53.581933 +-1.507789,53.468564 +-1.482515,53.37031 +-1.518589,53.589835 +-1.455132,53.369128 +-1.38562,53.568607 +-1.179201,53.515765 +-1.18115,53.582843 +-1.193436,53.436348 +-1.519666,53.354492 +-1.243816,53.588172 +-1.291402,53.53668 +-1.450683,53.373826 +-1.470654,53.563198 +-1.359058,53.423707 +-1.345146,53.436907 +-1.389404,53.364261 +-1.44783,53.509496 +-1.476903,53.383059 +-1.057251,53.425446 +-1.549556,53.333737 +-1.220365,53.427358 +-1.021861,53.598096 +-1.338972,53.457457 +-1.148718,53.492613 +-1.478955,53.370151 +-1.467711,53.461965 +-1.110122,53.506705 +-1.087447,53.548727 +-1.481304,53.552809 +-1.461753,53.374416 +-1.405211,53.416161 +-1.473251,53.374458 +-1.508118,53.36054 +-1.490503,53.387315 +-1.492808,53.421131 +-1.455405,53.423088 +-1.411857,53.513531 +-1.468358,53.389601 +-1.474521,53.381223 +-1.073629,53.580872 +-1.443339,53.390619 +-1.599856,53.473896 +-1.486149,53.36184 +-1.348067,53.477201 +-1.149204,53.382342 +-1.598702,53.319692 +-1.478816,53.34091 +-1.264213,53.423385 +-1.374872,53.419692 +-1.410402,53.355198 +-1.498089,53.559145 +-1.461753,53.40896 +-1.237486,53.441114 +-1.431758,53.454069 +-1.161227,53.596529 +-1.363607,53.409295 +-1.435399,53.355409 +-1.516778,53.326822 +-1.202114,53.423103 +-1.487062,53.490957 +-1.322365,53.441976 +-1.322177,53.441534 +-1.341136,53.438252 +-1.127402,53.528738 +-1.450113,53.412259 +-1.457889,53.335396 +-1.147532,53.549512 +-1.484226,53.380484 +-1.484518,53.356314 +-1.30057,53.363729 +-1.007074,53.573975 +-1.176513,53.348466 +-1.158929,53.588981 +-1.454207,53.379155 +-1.49904,53.582178 +-1.29281,53.444852 +-1.447949,53.419036 +-1.61374,53.497932 +-1.332665,53.46491 +-1.475968,53.380843 +-1.262273,53.519767 +-1.4856,53.355061 +-1.505898,53.366643 +-1.35196,53.439246 +-1.436679,53.560103 +-1.482669,53.376207 +-1.484393,53.428906 +-1.454315,53.408351 +-0.962249,53.614771 +-1.16001,53.544351 +-1.475832,53.367432 +-1.255201,53.360363 +-1.414451,53.406166 +-1.170009,53.604833 +-1.130295,53.515627 +-1.415471,53.356985 +-1.459511,53.36744 +-1.130195,53.515365 +-1.360192,53.390239 +-1.301685,53.450881 +-1.463813,53.375567 +-1.533332,53.432047 +-1.522054,53.323581 +-1.473138,53.322683 +-1.100506,53.51724 +-1.413664,53.371466 +-1.315251,53.36847 +-1.52599,53.542621 +-1.081117,53.427627 +-1.562261,53.553528 +-1.185564,53.526847 +-1.495906,53.369037 +-1.496143,53.583145 +-1.409666,53.400857 +-1.161192,53.596763 +-1.49343,53.420684 +-1.428614,53.360581 +-1.336584,53.473426 +-1.473937,53.412717 +-1.066677,53.637294 +-1.200652,53.423237 +-1.067078,53.574493 +-1.100701,53.517268 +-1.479286,53.501943 +-1.249258,53.418105 +-1.345401,53.336927 +-1.157888,53.50448 +-1.28082,53.493301 +-1.117957,53.528777 +-1.380767,53.548331 +-1.082202,53.560273 +-1.232655,53.379168 +-1.285926,53.353368 +-1.344733,53.450065 +-1.361772,53.456494 +-1.320745,53.408601 +-1.53743,53.365025 +-1.463984,53.385869 +-1.168151,53.519392 +-1.178603,53.584848 +-1.423043,53.359188 +-1.472191,53.370247 +-1.025613,53.615637 +-1.447644,53.390325 +-1.097811,53.487188 +-1.478128,53.410776 +-1.438383,53.437031 +-1.462886,53.3811 +-1.076892,53.548278 +-1.1114,53.539353 +-1.442135,53.390757 +-1.157322,53.495775 +-1.151694,53.542135 +-1.218456,53.572378 +-0.96256,53.611952 +-1.434504,53.392438 +-1.423395,53.573406 +-1.614884,53.444804 +-1.054121,53.487821 +-1.342819,53.459942 +-1.422426,53.398169 +-1.123718,53.525241 +-1.349857,53.397482 +-1.282683,53.364019 +-1.196119,53.534217 +-1.282106,53.315134 +-1.453,53.583414 +-1.374973,53.432312 +-1.480405,53.579402 +-1.558736,53.548436 +-1.374384,53.433478 +-1.41784,53.423459 +-1.486693,53.382858 +-1.15417,53.485263 +-1.396299,53.409087 +-1.08983,53.538984 +-1.488584,53.470937 +-1.057131,53.425454 +-1.479013,53.380173 +-1.383819,53.343037 +-1.47283,53.558147 +-1.161272,53.596574 +-1.490293,53.491798 +-1.107897,53.533691 +-1.480817,53.412334 +-1.444445,53.353024 +-1.445091,53.578344 +-1.120311,53.533135 +-1.028411,53.591893 +-1.478359,53.389474 +-1.086471,53.533763 +-1.421078,53.479779 +-1.447213,53.437513 +-1.503198,53.555994 +-1.197634,53.567449 +-1.539987,53.576679 +-1.351415,53.354299 +-1.39479,53.376531 +-1.374623,53.355592 +-1.141148,53.518141 +-1.487832,53.383178 +-1.422727,53.573663 +-1.394892,53.378869 +-1.458527,53.3929 +-1.200657,53.459048 +-1.162486,53.473169 +-1.504447,53.318134 +-1.349395,53.425812 +-1.286316,53.50172 +-1.466818,53.398528 +-1.390622,53.384205 +-1.378755,53.516708 +-1.145127,53.531778 +-1.019478,53.584234 +-1.479891,53.549845 +-1.298655,53.451978 +-1.46261,53.374375 +-1.117911,53.52883 +-1.447375,53.408723 +-1.33045,53.408413 +-1.453406,53.554302 +-1.467174,53.561367 +-1.48087,53.441367 +-1.480827,53.34597 +-1.286374,53.352634 +-1.456613,53.553724 +-1.334828,53.436374 +-1.345687,53.44971 +-1.365296,53.387812 +-1.196161,53.589389 +-1.172716,53.497914 +-1.466984,53.398439 +-1.464682,53.411714 +-1.395673,53.355574 +-1.375055,53.419558 +-1.491728,53.468766 +-1.437957,53.366585 +-0.962365,53.590934 +-1.107577,53.533877 +-1.406748,53.373814 +-1.484447,53.528931 +-1.454271,53.408278 +-1.156169,53.533358 +-1.141972,53.512421 +-1.142274,53.54827 +-1.106559,53.542076 +-1.432673,53.402335 +-1.443684,53.488696 +-1.087088,53.543655 +-1.481782,53.553197 +-1.253167,53.480098 +-1.067581,53.573607 +-1.444387,53.372503 +-1.458699,53.391229 +-1.479384,53.347258 +-1.250766,53.32535 +-1.44996,53.391459 +-1.038,53.597427 +-1.056759,53.504094 +-1.478801,53.340901 +-1.119107,53.506781 +-1.336069,53.508344 +-1.493445,53.402995 +-1.162329,53.491073 +-1.428611,53.379916 +-1.483897,53.366649 +-1.472521,53.371498 +-1.335692,53.477511 +-1.641843,53.389905 +-1.464413,53.385205 +-1.386033,53.500395 +-1.38889,53.444285 +-1.503104,53.395017 +-1.441677,53.508443 +-1.427288,53.451621 +-1.122394,53.507542 +-1.426231,53.345595 +-0.95963,53.587864 +-1.097776,53.540671 +-1.41409,53.424753 +-1.250168,53.475864 +-1.177995,53.581158 +-1.417736,53.42336 +-1.100131,53.51712 +-1.633782,53.430473 +-1.495681,53.45681 +-1.445392,53.415491 +-1.094189,53.524914 +-1.452714,53.360757 +-1.133338,53.519514 +-1.380439,53.430093 +-1.428578,53.361039 +-1.032506,53.591864 +-1.34623,53.438828 +-1.264137,53.423456 +-1.311656,53.444162 +-1.254334,53.408312 +-1.526316,53.543207 +-1.14999,53.557143 +-1.370714,53.501592 +-1.195741,53.56456 +-1.321636,53.418754 +-1.333822,53.440072 +-1.522767,53.380779 +-1.369502,53.389102 +-1.563702,53.548365 +-1.421666,53.546234 +-1.005437,53.580028 +-1.471134,53.385199 +-1.049703,53.541827 +-1.36242,53.423302 +-1.529541,53.392257 +-1.458404,53.438184 +-1.207358,53.576341 +-0.922927,53.57331 +-1.349449,53.405488 +-1.483546,53.550913 +-0.096073,53.563798 +-0.117645,53.562575 +-0.264884,53.75962 +-0.660954,53.587986 +0.013734,53.740565 +-0.518506,53.72428 +-0.350286,53.761671 +-0.439634,53.71927 +-0.870843,53.711408 +-0.698187,53.590177 +-0.668525,53.59466 +-0.056371,53.565506 +-0.299077,53.747229 +-1.073596,53.683207 +-0.552815,53.480826 +-0.179342,54.130753 +-0.32816,53.770255 +-0.078221,53.558209 +-0.357241,53.741676 +-0.149846,53.744829 +-0.423989,53.842125 +-0.700245,53.577273 +-0.423609,53.684156 +-0.259406,53.746443 +-0.031996,53.559704 +-0.456587,53.725611 +-0.824526,53.524706 +-0.363657,54.08976 +-0.231816,53.99138 +-0.65347,53.566778 +-0.818663,53.615005 +-0.185329,54.086896 +-0.308045,53.948774 +-0.586381,54.05653 +-0.030705,53.558568 +-0.375464,53.741367 +-0.4737,53.759935 +-0.362063,53.786876 +-0.080649,53.5746 +-0.387848,53.750181 +-0.259802,53.629623 +-0.064324,53.800373 +-0.277682,53.758267 +-0.366897,53.734697 +-0.698843,53.589016 +-0.404804,53.858995 +-0.373747,53.790136 +-0.028025,53.561329 +-0.416226,53.72797 +-0.098855,53.569776 +-0.038577,53.563337 +-0.353081,53.749933 +-0.344244,53.767943 +-0.513484,53.724848 +-0.079552,53.553825 +-0.050554,53.569196 +-0.333062,53.754529 +-0.833705,53.607323 +-0.320256,53.747401 +-0.431915,53.786578 +-0.744117,53.914593 +-0.023415,53.556893 +-0.074375,53.564107 +-0.333629,53.740586 +-0.554043,53.547531 +-0.417769,53.782536 +-0.667732,53.864827 +-0.456501,53.682022 +-0.331687,53.764721 +-0.351613,53.749473 +-0.295719,53.747765 +-0.425999,53.841208 +-0.373278,53.733957 +-0.360658,53.768807 +-0.015058,53.536401 +-0.404341,54.017273 +-0.517688,53.814708 +-0.374478,53.728409 +-0.055762,53.562323 +-0.609218,53.757359 +-0.405714,53.786628 +-0.883137,53.488297 +-0.036124,53.560554 +-0.282696,53.613288 +-0.32995,53.683066 +-0.654803,53.581877 +-0.311613,53.754948 +-0.366093,53.759334 +-0.328714,53.747897 +-0.539641,53.534448 +-0.818984,53.746405 +-0.679852,53.597725 +-0.092536,53.567904 +-0.871047,53.736614 +-0.053048,53.570468 +-0.308934,53.789896 +-0.098853,53.516952 +-0.456747,53.999342 +-0.528123,53.812562 +-0.381366,53.746795 +-0.111771,53.548666 +-0.120264,53.528024 +-0.36953,53.595652 +-0.879962,53.564142 +-0.11889,53.516469 +-0.328865,53.781546 +-0.800447,53.875368 +-0.318444,53.750639 +-0.202427,54.087504 +-0.073664,53.55382 +-0.836333,53.482987 +-0.294228,53.758351 +-0.243573,54.022996 +-0.411796,53.758214 +-0.357378,53.758379 +-0.661233,53.605446 +-0.379724,53.750458 +-0.359479,53.793978 +-0.405488,53.752539 +-0.196133,53.550157 +-0.882541,53.706808 +-0.454679,54.108652 +-0.220285,54.068227 +-0.352355,53.735927 +-0.271322,53.764271 +-0.299096,53.76216 +-0.679685,53.769149 +-0.395016,53.749927 +-0.059373,53.569205 +-0.344922,53.783503 +-0.29312,53.764358 +-0.051295,53.525149 +0.035859,53.726149 +-0.386356,53.778827 +-0.887279,53.79245 +-0.334153,53.789035 +-0.475544,53.722393 +-0.102859,53.566028 +-0.354288,53.750112 +-0.294601,53.755156 +-0.444867,53.684622 +-0.719786,53.757188 +-0.479403,53.723395 +-0.887585,53.711439 +-0.267264,53.772176 +-0.079023,53.565836 +-0.653878,53.518242 +-0.409033,53.756676 +-0.253976,54.070941 +-0.358713,53.782084 +-0.574849,53.55268 +-0.391562,53.741494 +-0.207607,53.620798 +-0.369982,54.037612 +-0.05465,53.560884 +-0.196392,53.739408 +-0.601104,53.562168 +-0.382273,53.740937 +-0.629436,53.656251 +-0.074388,53.568809 +-0.192384,54.084638 +-0.379707,53.750494 +-0.902892,53.949144 +-0.118852,53.517331 +-0.884763,53.74308 +-0.200234,54.083066 +-0.458238,53.724815 +-0.489555,53.557944 +-0.375884,53.750514 +-0.096144,53.517484 +-0.616118,53.564302 +-0.370188,53.782079 +-0.259182,53.778631 +-0.367734,53.75106 +-0.078141,53.553641 +-0.096215,53.574759 +-0.316084,53.756925 +-0.428903,53.723355 +-0.445151,53.637838 +-0.379087,53.789058 +-0.590285,53.557421 +-0.871336,53.705436 +-0.407056,53.842953 +-0.439581,53.688356 +-0.443625,53.84995 +-0.294,53.763984 +-0.634888,53.609706 +-0.795575,53.837415 +-0.442251,53.776376 +-0.090878,53.554744 +-0.088296,53.563135 +-0.397127,53.736714 +-0.387759,53.732696 +-0.399743,53.737289 +-0.220657,53.620049 +-0.507693,53.789936 +-0.054988,53.553518 +-0.877365,53.568711 +-0.111107,53.562571 +-0.296196,53.76184 +-0.206322,53.764727 +-0.302317,54.016604 +-0.330496,53.777928 +-0.409333,53.779224 +-0.832287,53.610509 +-0.438296,53.731658 +-0.649365,53.566696 +-0.446373,53.757229 +-0.350255,53.761688 +-0.858388,53.570815 +-0.31924,53.785762 +-0.659409,53.776924 +-0.434172,53.753285 +-0.656515,53.604566 +-0.288307,53.766312 +-0.103675,53.566337 +-0.098768,53.547462 +-0.328022,53.758441 +-0.608977,53.592346 +-0.577247,53.544664 +-0.358751,53.764016 +-0.024536,53.528279 +-0.565773,53.729817 +-0.16995,53.911206 +-0.790525,54.000368 +-0.661875,54.02011 +-0.436081,53.724357 +-0.335426,53.806339 +-0.273436,53.757478 +-0.059715,53.565362 +-0.351386,53.76147 +-0.381897,53.674125 +-0.302039,53.757267 +-0.326589,53.955263 +-0.357511,53.751073 +-0.65436,53.59202 +-0.769766,53.497144 +-0.043121,53.537179 +-0.740877,53.577177 +-0.358336,53.743138 +-0.348274,53.761535 +-0.345143,53.745455 +-0.363169,53.735455 +-0.96343,53.686268 +-0.350228,53.761589 +-0.908842,53.743661 +-0.866257,53.745594 +-0.35803,53.750981 +-0.64529,53.564771 +-0.570956,53.740136 +-0.354559,53.768399 +-0.365358,53.653989 +-0.673062,53.563662 +-0.35962,53.749897 +-0.546934,53.547508 +-0.818572,53.615022 +-0.352113,53.748329 +-0.045494,53.565598 +-0.352379,53.76516 +-0.668391,53.590263 +-0.454955,53.762283 +-0.273379,53.757397 +-0.301293,53.761085 +-0.728549,53.764347 +-0.051869,53.570143 +-0.310568,53.755652 +-0.35018,53.798417 +-0.661082,53.59063 +-0.322441,53.743953 +-0.374555,53.740159 +-0.624542,53.578288 +-0.345349,53.780354 +-0.161769,53.915486 +-0.179772,53.896118 +-0.584096,53.742107 +-0.386931,53.743238 +-0.3586,53.765929 +-0.037202,53.559116 +-0.216351,53.836997 +-0.196706,53.951702 +-0.524603,53.938199 +-0.449571,53.657554 +-0.423638,53.730387 +-0.353207,53.766493 +-0.311355,53.790856 +-0.07857,53.732866 +-0.235535,54.077279 +-0.323314,53.743741 +-0.683573,53.589837 +-0.364026,53.786759 +-0.361351,53.743206 +-0.195168,54.084968 +-0.450855,53.770617 +-0.382477,53.755377 +-0.677475,53.769475 +0.034729,53.730995 +-0.279828,53.771072 +-0.092706,53.538609 +-0.605545,53.76155 +-0.05606,53.56275 +-0.320865,53.784598 +-0.064334,53.564071 +-0.29404,53.758124 +-0.070508,53.553509 +-0.376021,53.788639 +-0.644655,53.566688 +-0.099724,53.516696 +-0.432558,53.838543 +-0.646523,53.561594 +-0.393808,53.769687 +-0.347191,53.749322 +-0.632947,53.586977 +-0.077219,53.562328 +-0.650474,53.578358 +-0.427584,53.82405 +-0.034582,53.556025 +-0.464214,53.691839 +-0.341974,53.799355 +-0.357389,53.758469 +-0.913793,53.991092 +-0.792205,53.999801 +-0.342439,53.767927 +-0.874611,53.70703 +-0.112767,53.473661 +-0.369279,53.795748 +-0.450772,53.803363 +-0.351657,53.763847 +-0.493663,53.561304 +-0.357333,53.733479 +-0.124484,53.569416 +-0.284185,53.767692 +-0.373653,53.769415 +-0.405742,54.022146 +-0.408111,53.586723 +-0.555669,53.731404 +-0.414759,53.846642 +-0.288969,53.766834 +-0.422425,53.734039 +-0.430745,53.753663 +-0.296577,53.762169 +-0.37352,53.728486 +-0.456568,53.725306 +-0.221534,53.724277 +-0.413707,53.58455 +-0.487703,53.676667 +-0.072716,53.550425 +-0.529696,53.937633 +-0.348617,53.748919 +-0.292056,53.778249 +-0.235644,54.077227 +-0.421477,53.973841 +-0.203675,54.08941 +-0.878807,53.786816 +-0.721968,53.756762 +-0.360078,53.753706 +-0.888706,53.70567 +-0.362146,53.735639 +-0.397346,53.750893 +-0.661234,53.549498 +-0.445438,53.954378 +-0.633446,53.577131 +-0.105871,53.548968 +0.031953,53.730971 +-0.308229,53.757228 +-0.521099,53.543902 +-0.915409,53.991124 +-0.213434,54.081501 +-0.031739,53.549946 +-0.075228,53.521356 +-0.343957,53.780254 +-0.288495,53.766549 +-0.057084,53.571037 +-0.22354,53.609377 +-0.812305,53.567903 +-0.648378,53.585355 +-0.696476,53.874553 +-0.344652,53.757944 +-0.476392,53.746306 +-0.156464,53.588315 +-0.245917,53.806304 +-0.45061,53.714622 +-0.753351,53.901053 +-0.043175,53.546169 +-0.638305,53.572081 +-0.660982,53.588076 +-0.266017,53.778496 +-0.407097,53.784975 +-0.081189,53.567012 +-0.353642,53.767398 +-0.297777,53.762501 +0.000989,53.527881 +-0.291174,53.770075 +-0.159053,53.54124 +-0.914459,53.991305 +-0.632853,53.587093 +-0.609941,53.761655 +-0.371723,53.732623 +-0.670205,53.551252 +-0.577798,53.532706 +-0.201159,54.105867 +-0.032596,53.535055 +-0.198499,53.73943 +-0.884777,53.977029 +-0.362288,53.7433 +-0.249012,53.796901 +-0.88637,53.718996 +-0.268486,53.772733 +-0.766053,53.828926 +-0.64972,53.592552 +-0.387055,53.743186 +-0.416272,53.727953 +-0.375449,53.741357 +-0.372045,53.741545 +-0.359079,53.755589 +-0.912172,53.705121 +-0.364005,53.755288 +-0.399001,53.755221 +-0.09196,53.566259 +-0.361,53.75184 +-0.097217,53.574973 +-0.27445,53.757178 +-0.337303,53.748538 +-0.651642,53.590084 +-0.889871,53.728781 +-0.434286,53.838682 +-0.428078,53.72516 +-0.623825,53.566423 +-0.719676,53.601016 +-0.654095,53.589887 +-0.34716,53.749331 +-0.88835,53.537335 +-0.486732,53.818932 +-0.091948,53.549088 +-0.223751,53.60973 +-0.324166,53.777183 +-0.320855,53.786 +-0.682394,53.565096 +-0.306035,53.758609 +-0.33548,53.794249 +-0.360084,53.768727 +-0.715686,53.863651 +-0.069331,53.522646 +-0.555967,53.548193 +-0.394039,53.750103 +-0.380196,53.672295 +-0.263766,53.769798 +-0.879229,53.489024 +-0.500203,53.750516 +-0.103432,53.576842 +-0.230766,53.992398 +-0.181132,53.878107 +-0.679159,53.57102 +-0.266261,53.782158 +-0.122919,53.573383 +-0.083777,53.566559 +-0.367713,53.786809 +-0.051309,53.567554 +-0.303328,53.760296 +-0.39884,53.780586 +-0.824845,53.891123 +-0.388327,53.761451 +-0.244426,53.898268 +-0.676608,53.605806 +-0.327745,53.767723 +-0.3785,53.743628 +-0.699815,53.577035 +-0.034254,53.54845 +-0.289668,53.862291 +-0.584911,53.555137 +-0.946795,53.6945 +-0.191012,53.875847 +-0.220219,54.086195 +-0.271696,53.747781 +-0.778722,53.924576 +-0.378498,53.733452 +-0.194272,54.082707 +-0.477611,53.749935 +-0.392762,53.779974 +-0.076213,53.522586 +-0.499681,53.806439 +-0.107501,53.567584 +-0.097029,53.575123 +-0.225253,54.015868 +-0.351246,53.745683 +-0.333661,53.747436 +-0.261383,53.778635 +-0.380371,53.737559 +-0.723867,53.590328 +-0.901572,53.8189 +-0.328157,53.758101 +-0.207447,53.860416 +-0.906686,53.845939 +-0.383714,53.788734 +-0.075638,53.564226 +-0.306642,53.758222 +-0.336942,53.583157 +-0.379711,53.743698 +-0.09623,53.574759 +-0.37579,53.750612 +-0.471787,53.736997 +-0.099677,53.54976 +-0.079568,53.570456 +-0.316516,53.751808 +-0.33464,53.754137 +-0.377328,53.743747 +-0.351453,53.746603 +-0.447169,53.728645 +-0.632839,53.587057 +-0.329461,53.781042 +-0.312685,53.78042 +-0.422008,53.84467 +-0.831757,53.528328 +-0.373372,53.782167 +-0.853676,53.748197 +-0.065806,53.562926 +-0.093588,53.54888 +-0.431237,53.759198 +-0.139341,53.549889 +-0.777961,53.746551 +-0.573466,53.677198 +-0.086351,53.532287 +-0.112219,53.555568 +-0.656033,53.598331 +-0.37831,53.77417 +-0.828414,53.601339 +-0.592706,53.927143 +-0.273875,53.767499 +-0.278659,53.769608 +-0.864595,53.74707 +-0.96504,53.661366 +-0.252872,53.629334 +-0.279543,53.769513 +-0.448061,53.856201 +-0.081329,53.527891 +-0.341718,53.743484 +-0.083806,53.553902 +-0.089972,53.53532 +-0.809281,53.566983 +-0.132884,53.861212 +-0.359698,53.765405 +-0.654713,53.543322 +0.020655,53.697072 +-0.817877,53.586305 +-0.18892,53.737569 +-0.334403,53.811098 +-0.35806,53.750991 +-0.458805,53.680713 +-0.366265,53.740055 +-0.359271,53.745209 +-0.44174,53.605639 +-0.635768,53.556609 +-0.140568,53.549099 +-0.375152,53.728625 +-0.607317,53.656113 +-0.749267,53.915473 +-0.365181,53.786721 +-0.654378,53.569557 +-0.06903,53.568057 +-0.055343,53.568833 +-0.380267,53.779689 +-0.350289,53.73642 +-0.028485,53.561813 +-0.370171,53.769215 +-0.359742,53.751418 +-0.450398,54.012545 +-0.350674,53.738205 +-0.258862,53.620494 +-0.380151,53.582653 +-0.379034,53.750647 +-0.345871,53.743155 +-0.346615,53.74313 +-0.065379,53.573941 +-0.376703,54.064193 +-0.624269,53.807834 +-0.311273,53.879397 +-0.437413,53.68226 +-0.74455,53.575032 +-0.441875,53.626181 +-0.056839,53.524664 +-0.598863,53.655053 +-0.290867,53.77052 +-0.079937,53.563981 +-0.323031,53.755782 +-0.441951,53.820121 +-0.354919,53.768503 +-0.35232,53.765115 +-0.653515,53.593889 +-0.313741,53.753701 +-0.32798,54.131318 +-0.730363,53.585812 +-0.099627,53.565005 +-0.268354,53.775204 +-0.344399,53.742398 +-0.031477,53.560145 +-0.283677,53.613724 +-0.189088,54.082746 +-0.669416,53.568682 +-0.315319,53.746469 +-0.328803,53.796458 +-0.380013,53.787066 +-0.328432,53.777926 +-0.309335,53.78182 +-0.318519,53.750649 +-0.342381,53.783253 +-0.351839,53.758429 +-0.311362,53.755142 +-0.109985,53.709516 +-0.595452,53.760335 +-0.849785,53.735208 +-0.668353,53.868753 +-0.101456,53.549473 +-0.084239,53.553999 +-0.660019,53.598439 +-0.256306,53.759037 +-0.347671,53.750605 +-0.574971,53.729909 +-0.353701,53.768217 +-0.3097,53.783318 +-0.484834,53.86521 +-0.684924,53.590122 +-0.355047,53.738436 +-0.297839,53.750456 +-0.359956,53.751394 +-0.84112,53.470458 +-0.352057,53.793148 +-0.415226,53.73238 +-0.192796,53.875397 +-0.214532,54.095091 +-0.522211,53.928723 +-0.266775,53.747215 +-0.268409,53.776445 +-0.897534,53.572404 +-0.376697,53.733365 +-0.074753,53.567745 +-0.425788,53.838337 +-0.414501,53.732712 +-0.859145,53.598786 +-0.43862,53.745802 +-0.311216,53.744029 +-0.451462,53.881863 +-0.054736,53.560984 +-0.325938,53.764704 +-0.026122,53.533123 +-0.103279,53.572822 +-0.315233,53.792951 +-0.313167,53.607365 +-0.381261,53.762947 +-0.49616,53.551348 +-0.124424,53.550636 +-0.077485,53.70116 +-0.457446,53.724526 +-0.603281,53.562985 +-0.606491,53.672895 +-0.080828,53.567312 +-0.365759,53.74412 +-0.11844,53.583786 +-0.288658,53.766641 +-0.694954,53.590178 +-0.096208,53.563809 +-0.311953,53.751366 +-0.327744,53.769637 +-0.654244,53.586167 +-0.382076,54.047052 +-0.416854,53.842705 +-0.162294,53.572349 +-0.446311,54.027612 +-0.416675,53.753119 +-0.683556,53.590385 +-0.405809,53.754898 +-0.549363,53.73051 +-0.06191,53.566567 +-0.293814,53.778688 +-0.050469,53.538854 +-0.288831,53.777295 +-0.052166,53.761916 +-0.54094,53.77413 +-0.104845,53.70823 +-0.278729,53.769753 +-0.428046,53.782878 +-0.125695,53.580627 +-0.029973,53.560984 +-0.387927,53.725534 +-0.092249,53.543061 +-0.380228,53.737332 +-0.435433,53.754462 +-0.317433,53.788433 +-0.465203,53.679222 +-0.632775,53.524412 +-0.634738,53.574045 +-0.323878,53.80118 +-0.27378,53.755398 +-0.423653,53.730396 +-0.067659,53.763507 +-0.663004,53.566597 +-0.98612,53.680925 +-0.031517,53.559274 +-0.367606,53.795042 +-0.831905,53.931523 +-0.458045,53.764067 +-0.635554,53.587654 +-0.571631,53.551878 +-0.098556,53.546811 +-0.449033,53.807296 +-0.383619,53.748947 +-0.891239,53.529002 +-0.071779,53.522901 +-0.417616,53.724042 +-0.765435,53.748625 +-0.186241,53.551661 +-0.377404,53.743748 +-0.802853,53.922671 +-0.092567,53.541358 +-0.878829,53.705686 +-0.616923,53.566478 +-0.092391,53.550309 +-0.376825,53.750509 +-0.380408,53.778397 +-0.405701,53.682004 +-0.136713,53.727015 +-0.547041,53.547492 +-0.552515,53.564422 +-0.616809,53.569039 +-0.660966,53.588076 +-0.394283,53.752461 +-0.290013,53.772503 +-0.834295,53.744397 +-0.906897,53.485092 +-0.41466,53.753856 +-0.371707,53.732632 +-0.093068,53.552387 +-0.08218,53.556465 +-0.568851,53.740075 +-0.329176,53.805425 +-0.453063,53.721683 +-0.68309,53.574748 +-0.343412,53.665293 +-0.383468,53.764325 +-0.350155,53.78087 +-0.212793,53.596101 +-0.258568,53.782091 +-0.883173,53.580388 +-0.892927,53.722643 +-0.075002,53.711422 +-0.344438,53.781897 +-0.333673,53.740613 +-0.351711,53.764019 +-0.527111,53.515057 +-0.414161,53.780799 +-0.43055,53.762146 +-0.612897,53.793923 +-0.239434,53.608829 +-0.390565,53.765994 +-0.136502,53.763311 +-0.113447,53.575472 +-0.242959,53.744091 +-0.670131,53.881752 +-0.395906,53.567521 +-0.109922,53.578312 +-0.039276,53.557037 +-0.652311,53.604186 +-0.82043,53.581961 +-0.434349,53.684872 +-0.289904,53.93106 +-0.69456,53.58923 +-0.444365,53.756546 +-0.683492,53.590987 +-0.374825,53.759876 +-0.257062,53.761304 +-0.091639,53.556967 +-0.385943,53.787991 +-0.369696,53.786944 +-0.653872,53.581695 +-0.035112,53.56087 +-0.079866,53.574893 +-0.576756,53.532756 +-0.780383,53.92977 +-0.202534,54.089627 +-0.330725,53.776735 +-0.452287,53.789845 +-0.349258,53.75887 +-0.200456,54.086063 +-0.041109,53.544481 +-0.033246,53.695372 +-0.381493,53.75059 +-0.395336,53.749895 +-0.658678,53.590702 +-0.662131,53.576062 +-0.675525,53.771638 +-0.410083,53.586111 +-0.433675,53.83347 +-0.219636,54.124812 +-0.335018,53.874479 +-0.370309,53.782089 +-0.346478,53.743128 +-0.456011,53.681746 +-0.350905,53.793087 +-0.448998,53.598533 +-0.044332,53.567872 +-0.026355,53.519346 +-0.38696,53.581963 +-0.272921,53.773732 +-0.446443,53.960576 +-0.318476,53.764267 +-0.429542,54.009938 +-0.316532,53.75179 +-0.413918,53.744569 +-0.044904,53.567252 +-0.876561,53.71175 +-0.90507,53.700346 +-0.160195,53.541006 +-0.82453,53.523439 +-0.178737,53.888066 +-0.463836,53.993689 +-0.104246,53.512021 +-0.328298,53.748071 +-0.074484,53.568352 +-0.445248,53.956641 +-0.028708,53.560585 +-0.073005,53.573974 +-0.296196,53.752833 +-0.87074,53.702814 +-0.089144,53.555705 +-0.480142,53.834382 +-0.340806,53.743544 +-0.079644,53.557117 +-0.450709,53.687584 +-0.369264,53.795738 +-0.395199,53.750316 +-0.35942,53.78186 +-0.29609,53.761839 +-0.253721,53.972788 +-0.423585,53.684389 +-0.400017,53.736879 +-0.362439,53.7515 +-0.356814,53.738622 +-0.347189,53.749349 +-0.354822,53.793096 +-0.448991,53.694789 +-0.275331,53.748633 +-0.515926,53.676598 +-0.073553,53.559599 +-0.55108,53.544565 +-0.375075,53.761254 +-0.082996,53.565127 +-0.654151,53.586247 +-0.161026,53.913685 +-0.322081,53.75185 +-0.232396,53.742497 +-0.879122,53.563936 +-0.306725,53.747499 +-0.207638,54.083312 +-0.323329,53.743741 +-0.359283,53.746468 +-0.357364,53.750945 +-0.445865,53.819012 +-0.640312,53.576859 +-0.43953,53.816997 +-0.732112,53.755342 +-0.132918,53.551092 +-0.479669,53.758878 +-0.474878,54.105108 +-0.360279,54.102145 +-0.674912,53.561948 +-0.678957,53.599791 +-0.364936,53.778573 +-0.331162,53.809327 +-0.294705,53.754088 +-0.099992,53.54642 +-0.390379,53.86283 +-0.569567,53.551314 +-0.185536,53.910274 +-0.847608,53.729982 +-0.111276,53.562511 +-0.660936,53.568974 +-0.375895,53.750622 +-0.515818,53.87793 +-0.030059,53.54777 +-0.300189,53.77378 +-0.727638,53.638791 +-0.347714,53.746803 +-0.661392,53.864316 +-0.908861,53.920076 +-0.092964,53.571129 +-0.4221,53.839008 +-0.072387,53.56697 +-0.035371,53.553332 +-0.294178,53.758099 +-0.111323,53.547211 +-0.372046,53.741518 +-0.66913,53.568652 +-0.661299,53.58808 +-0.639668,53.590335 +-0.413446,53.736967 +-0.042521,53.566539 +-0.074368,53.568898 +-0.060537,53.570167 +-0.441986,53.819582 +-0.095016,53.56815 +-0.646523,53.561594 +-0.414878,53.757742 +-0.673684,53.585746 +-0.328175,53.748114 +-0.293829,53.756979 +-0.555793,53.731316 +-0.395428,53.739523 +-0.540801,53.789076 +-0.360272,53.753385 +-0.328418,53.748109 +-0.376905,53.743714 +-0.31116,53.879189 +-0.092537,53.552442 +-0.682954,53.574289 +-0.359384,53.743098 +-0.096733,53.568924 +-0.297844,53.757468 +-0.273147,53.761196 +-0.377815,53.788969 +-0.813198,53.568352 +-0.357205,53.743356 +-0.076352,53.554475 +-0.180179,53.919658 +-0.386474,53.731412 +-0.338039,53.744108 +-0.094039,53.518349 +-0.05855,53.565748 +-0.422478,53.724538 +-0.335433,53.744422 +-0.591543,54.061112 +-0.332063,53.778597 +-0.316965,53.745899 +-0.293469,53.768849 +-0.424654,53.778222 +-0.207427,54.083246 +-0.360063,53.751369 +-0.35197,53.764373 +-0.395217,53.737507 +-0.813926,53.950528 +-0.09146,53.562286 +-0.451353,54.013133 +-0.458695,53.680828 +-0.361082,53.751679 +-0.377102,53.786982 +-0.610944,54.039199 +-0.634104,53.566559 +-0.092507,53.549079 +-0.517598,53.900729 +-0.498883,53.550735 +-0.352033,53.749604 +-0.379557,53.74375 +-0.314862,53.745771 +-0.267846,53.772419 +-0.337967,53.743999 +-0.443624,53.636191 +-0.716806,53.590019 +-0.170296,53.914447 +-0.343103,53.780359 +-0.190025,53.596694 +-0.308469,53.78259 +-0.097764,53.566486 +-0.891664,53.876577 +-0.368451,53.750962 +-0.533537,53.773626 +-0.445771,53.836755 +-0.093977,53.552303 +-0.863055,53.850693 +-0.796887,53.748621 +-0.428073,53.583338 +0.074123,53.653501 +-0.670303,53.883021 +-0.65595,53.575229 +-0.069937,53.560089 +-0.679921,53.551414 +-0.239989,54.013164 +-0.372794,53.732359 +-0.282066,53.757881 +-0.353893,53.768363 +-0.329724,53.802718 +-0.654687,53.578397 +-0.455995,53.681782 +-0.52158,53.97373 +-0.072781,53.55964 +-0.124402,53.551831 +-0.338006,53.790644 +-0.573103,53.602333 +-0.810389,53.5673 +-0.347727,53.768117 +-0.498763,53.550734 +-0.28608,53.758415 +-0.346753,53.743078 +-0.619232,53.566496 +-0.327588,53.767837 +-0.728879,53.849311 +-0.358074,53.751018 +-0.109325,53.554443 +-0.331278,53.747483 +-0.587324,53.473607 +-0.649544,53.594276 +-0.07451,53.573432 +-0.833011,53.764995 +-0.358858,53.781888 +-0.454518,54.119967 +-0.067143,53.532948 +-0.450491,53.871909 +-0.359031,53.760712 +-0.30758,53.774146 +-0.679908,53.551342 +-0.631492,54.048243 +-0.327889,53.777838 +-0.269448,53.612315 +-0.832831,53.505192 +-0.718498,53.659907 +-0.323195,53.743676 +-0.217502,54.116771 +-0.399299,53.737004 +-0.481386,53.723906 +-0.577694,53.671235 +-0.478113,53.842976 +-0.348279,53.753652 +-0.350651,53.761649 +-0.359887,53.762117 +-0.447467,53.851717 +-0.070522,53.553527 +-0.598278,53.761124 +-0.45812,53.925823 +-0.188753,53.532434 +-0.424255,53.733766 +-0.13249,54.113414 +-0.430274,53.836625 +-0.343239,53.743362 +-0.376296,53.780337 +-0.58687,53.479552 +-0.274685,53.75737 +-0.294231,53.763898 +-0.379636,53.743679 +-0.262255,53.771852 +-0.389579,53.750124 +-0.103864,53.566169 +-0.394564,53.772537 +-0.448491,53.683249 +-0.376091,53.733357 +-0.315495,53.755344 +-0.273559,53.757075 +-0.339484,53.746312 +-0.22405,54.131798 +-0.124478,53.551814 +-0.344133,53.741073 +-0.269198,53.773121 +-0.21562,53.759059 +0.006579,53.741898 +-0.416889,53.753067 +-0.056206,53.573378 +-0.350116,53.761363 +-0.768031,53.55959 +-0.57938,53.75158 +-0.65661,53.566795 +-0.862574,53.77585 +-0.488998,53.552382 +-0.396171,53.787292 +-0.324289,53.778677 +-0.41033,53.582339 +-0.816214,53.556616 +-0.205634,53.617407 +-0.47322,53.721276 +-0.673669,53.55148 +-0.771066,53.910952 +-0.059053,53.570925 +-0.16667,54.129679 +-0.091966,53.544989 +-0.731754,53.579229 +-0.433572,53.833369 +-0.663463,53.59801 +-0.480202,53.834401 +-0.875059,53.703889 +-0.848638,53.561166 +-0.109251,53.557112 +-0.655829,53.574284 +-0.340852,53.767779 +-0.456712,53.999054 +-0.366682,53.740636 +-0.416398,53.841495 +-0.373185,53.743826 +-0.071628,53.567731 +-0.293439,53.764345 +-0.397299,54.023759 +-0.653268,53.592143 +-0.566555,53.931606 +-0.337152,53.743907 +-0.048665,53.54002 +-0.27006,53.766931 +-0.268202,53.767093 +-0.89203,53.724478 +-0.280471,53.769086 +-0.056995,53.571009 +-0.302416,53.767861 +-0.269464,53.77255 +-0.276056,54.065875 +-0.448987,53.790009 +-0.650799,53.56673 +-0.68403,53.59022 +-0.497599,53.792031 +-0.180733,53.535783 +-0.610215,53.654502 +-0.130795,53.585562 +-0.119125,53.562554 +-0.44545,53.751814 +-0.259524,53.772577 +-0.030554,53.527362 +-0.444026,53.684854 +-0.371392,53.801556 +-0.550288,53.547423 +-0.350253,53.792305 +-0.435459,53.72843 +-0.058326,53.566014 +-0.68012,53.597377 +-0.203307,54.073863 +-0.38563,53.788256 +-0.374957,53.740758 +0.005771,53.533941 +-0.68378,53.564697 +-0.135498,53.739734 +-0.432381,53.723158 +-0.024865,53.553303 +-0.279544,53.75762 +-0.358804,53.761878 +-0.926943,53.819363 +-0.353189,53.74989 +-0.684763,53.868277 +-0.293097,53.764565 +-0.438212,53.749868 +-0.098532,53.546334 +-0.101886,53.516568 +-0.428254,53.723283 +-0.416676,53.753083 +-0.04728,53.54256 +-0.35383,53.768407 +-0.383223,53.778597 +-0.201496,53.611618 +-0.273524,53.756455 +-0.445588,53.790379 +-0.126074,53.57034 +-0.067138,53.555576 +-0.450108,53.773196 +-0.282018,53.757952 +-0.436172,53.732115 +-0.480292,53.834447 +-0.343437,53.743337 +-0.272673,53.761665 +-0.924861,53.707123 +-0.328298,53.748062 +-0.888588,53.713606 +-0.880474,53.827379 +-0.592657,53.54783 +-0.434295,53.729574 +-0.693837,53.589186 +-1.02887,53.691751 +-0.376798,53.679962 +-0.412487,53.585253 +-0.09255,53.542068 +-0.360585,53.752751 +-0.079922,53.574993 +-0.094439,53.549083 +-0.376663,53.731899 +-0.292804,53.758322 +-0.437192,53.783061 +-0.33135,53.747583 +-0.171375,53.910994 +-0.007513,53.540897 +-0.331861,53.74733 +-0.635182,53.574355 +-0.865795,53.706444 +-0.414177,53.78079 +-0.36303,53.743319 +-0.447343,53.71733 +-0.648367,53.594703 +-0.557656,53.547782 +-0.436587,53.834029 +-0.726641,53.830905 +-0.326849,53.78986 +-0.344947,53.744662 +-0.405011,53.843151 +-0.187829,53.940647 +-0.375037,53.729621 +-0.423013,53.777059 +-0.816046,53.556668 +-0.257343,53.83582 +-0.498233,53.549504 +-0.383893,53.741004 +-0.635711,53.786104 +-0.477475,53.8434 +-0.49164,53.845125 +-0.309957,53.747445 +-0.203275,54.073898 +-0.818971,53.591502 +-0.270766,53.76598 +-0.351766,53.764172 +-0.887182,53.701988 +-0.180762,53.846684 +-0.556635,53.548084 +-0.375162,53.760977 +-0.405747,53.786566 +-0.108463,53.578163 +-0.632748,53.585168 +-0.080172,53.574125 +-0.040757,53.544592 +-0.441604,53.730748 +-0.060088,53.570079 +-0.64736,53.575599 +-0.120284,53.528249 +-0.084684,53.564875 +-0.932627,53.849741 +-0.410172,53.752619 +-0.400605,53.744536 +-0.41386,53.586512 +-0.379142,53.749012 +-0.36008,54.059877 +-0.074746,53.729955 +-0.111755,53.549043 +-0.452069,53.863372 +-0.676251,53.564992 +-0.408363,53.744298 +-0.084723,53.56368 +-0.400455,53.744489 +-0.413943,53.784571 +-0.348849,53.792888 +-0.679138,53.598346 +-0.33095,53.747722 +-0.065913,53.574821 +-0.69823,53.620731 +-0.728337,53.590393 +-0.296185,54.093794 +-0.111723,53.548728 +-0.836623,53.570974 +-0.876004,53.703106 +-0.37258,53.769284 +-0.781896,53.934298 +-0.100776,53.539025 +-0.416329,53.58472 +-0.628367,53.567464 +-0.321607,53.758037 +-0.642223,53.561509 +-0.540923,53.774165 +-0.308624,53.749674 +-0.361916,53.768833 +-0.176129,53.603557 +-0.390588,53.741993 +-0.274016,53.967616 +-0.355202,54.044125 +-0.867324,53.693497 +-0.343023,53.818966 +-0.396894,53.73646 +-0.38266,53.763649 +-0.654081,53.586048 +-0.780004,53.929164 +-0.328044,53.769345 +-0.906836,53.485109 +-0.409349,53.779207 +-0.460551,53.896173 +-0.107329,53.559257 +-0.363157,53.768904 +-0.358965,53.760864 +-0.279121,53.769453 +-0.08416,53.562098 +-0.409363,53.779243 +-0.687771,53.8708 +-0.443097,53.816244 +-0.885271,53.946528 +-0.287929,53.755852 +-0.458708,53.680873 +-0.360076,53.751405 +-0.372674,53.786859 +-0.417573,53.753041 +-0.637977,53.561146 +-0.071169,53.568505 +-0.32642,53.746094 +-0.447145,53.728896 +-1.036425,53.687821 +-0.328408,53.747974 +-0.341241,53.672796 +-0.912243,53.70469 +-0.360294,54.102154 +-0.330954,53.747641 +-0.481957,53.72403 +-0.647382,53.594773 +-0.203977,54.096588 +-0.379404,53.75049 +-0.365502,53.778473 +-0.677748,53.862106 +-0.347738,53.751217 +-0.489357,53.725624 +-0.120252,53.550426 +-0.201827,54.083 +-0.291741,53.765076 +-0.279284,53.769545 +-0.413308,53.850856 +-0.881382,53.704217 +-0.091361,53.537653 +-0.072315,53.566888 +-0.274491,53.959793 +-0.324703,53.745037 +-0.356282,53.750706 +-0.347857,53.75165 +-0.187886,53.940729 +-0.470512,53.678121 +-0.906882,53.485091 +-0.890792,53.71679 +-0.904801,53.7002 +-0.498064,53.55086 +-0.293765,53.77875 +-0.50482,54.093385 +-0.049246,53.556256 +-0.647033,53.544188 +-0.329987,53.807935 +-0.502938,53.550031 +-0.89765,53.711847 +-0.319426,53.611148 +-0.221585,53.612719 +-0.581194,53.550742 +-0.33423,53.744181 +-0.364199,53.774905 +-0.256805,53.753228 +-0.663495,53.574001 +-0.437,53.831913 +-0.364785,53.773879 +-0.480223,53.989394 +-0.56382,53.544944 +-0.351586,53.764116 +-0.387515,53.74304 +-0.65954,53.566783 +-0.307816,53.7528 +-0.556987,53.547927 +-0.885327,53.702268 +-0.081237,53.569962 +-0.654142,53.77886 +-0.382212,53.778457 +-0.092364,53.542856 +-0.273292,53.761368 +-0.109305,53.562345 +-0.414934,53.585259 +-0.344948,53.744644 +-0.396523,53.753381 +-0.672693,53.584602 +-0.307489,53.787341 +-0.649636,53.566735 +-0.383536,53.773612 +-0.625333,53.566476 +-0.985907,53.686038 +-0.908143,53.71561 +-0.42244,53.840882 +-0.074225,53.553766 +-0.206972,54.084578 +-0.383253,53.763999 +-0.322469,53.755433 +-0.049368,53.54574 +-0.668214,53.864985 +-0.413816,53.586466 +-0.264516,53.771112 +-0.273381,53.757352 +-0.193288,54.081785 +-0.080118,53.574996 +-0.042075,53.545792 +-0.375524,53.786969 +-0.021503,53.555153 +-0.333226,53.767233 +-0.636746,53.561402 +-0.377163,53.786973 +-0.408173,53.857179 +-0.612669,53.793956 +-0.023138,53.556681 +-0.081013,53.560564 +-0.858534,53.737934 +-0.32719,53.767544 +-0.411331,53.582244 +-0.310896,53.755414 +-0.398775,53.778715 +-0.187696,54.099256 +-0.568273,53.74058 +-0.196839,53.597093 +-0.600433,53.769302 +-0.385192,53.743503 +-0.262293,53.631206 +-0.102881,53.465585 +-0.415195,53.585954 +-0.260846,53.778772 +-0.387095,53.782118 +-0.327445,53.789373 +-0.285538,53.748258 +-0.65579,53.574085 +-0.675327,53.771663 +-0.321332,53.791913 +-0.642986,53.777962 +-0.350255,53.803074 +-0.327826,53.767589 +-0.645837,53.5949 +-0.84279,53.944904 +-0.138763,53.570619 +-0.366931,53.795221 +-0.03348,53.556358 +-0.011956,53.545295 +-0.678209,53.546757 +-0.754393,53.759467 +-0.344424,53.781887 +-0.434214,53.787633 +-0.363909,53.774155 +-0.587084,53.477199 +-0.355032,53.793539 +-0.382708,53.75725 +-0.649396,53.566687 +-0.074901,53.567154 +-0.28216,54.094952 +-0.069614,53.567168 +-0.080002,53.566211 +-0.149748,53.744657 +-0.641405,53.584683 +-0.135681,53.711285 +-0.612928,53.793905 +-0.450924,53.71556 +-0.17122,53.90514 +-0.673463,53.58462 +-0.679326,53.768974 +-0.907016,53.485156 +-0.246174,53.811413 +-0.81564,53.584745 +-0.371486,53.769323 +-0.294086,53.758124 +-0.055619,53.562158 +-0.820481,53.578528 +-0.313156,53.746708 +-0.618784,53.57192 +-0.638465,53.561008 +-0.113515,53.56376 +-0.161609,53.571764 +-0.351918,53.759518 +-0.356173,53.793501 +-0.056804,53.571554 +-0.653132,53.592141 +-0.360725,53.732015 +-0.296196,53.757723 +-0.358658,53.764833 +-0.331016,53.804597 +-0.430425,53.837481 +-0.28148,53.748101 +-0.37227,53.778475 +-0.033664,53.560514 +-0.215522,54.110503 +-0.358699,53.764573 +-0.076513,53.560581 +-0.349355,53.78076 +-0.436618,54.003145 +-0.264255,53.7469 +-0.55817,53.858006 +-0.352228,53.746551 +-0.316766,53.763389 +-0.398747,54.019068 +-0.34874,53.748876 +-0.072513,53.566864 +-0.273522,53.757237 +-0.569487,53.63688 +-0.032213,53.689269 +-0.884702,53.743088 +-0.333726,53.746187 +-0.564048,53.78222 +-0.351825,53.7642 +-0.573058,53.730012 +-0.423558,53.730503 +-0.369279,53.79573 +-0.330215,53.777735 +-0.029616,53.557633 +0.024705,53.730626 +-0.384925,53.743355 +0.039993,53.719183 +-0.108753,53.578428 +-0.033305,53.695391 +-0.630907,53.568275 +-0.790915,53.987959 +-0.267978,53.759997 +-0.202688,54.082878 +-0.322686,53.757225 +-0.361579,53.735784 +-0.09204,53.544019 +-0.651807,53.598643 +-0.270148,53.772524 +-0.187259,54.099447 +-0.438396,53.75512 +-0.159621,53.571985 +-0.251701,53.795394 +-0.886296,53.706295 +-0.797482,53.836634 +-0.448838,53.789927 +-0.423739,53.683528 +-0.067321,53.532673 +-0.612867,53.793923 +-0.349821,53.792875 +-0.022913,53.552111 +-0.217862,54.094807 +-0.17362,53.910498 +-0.709245,53.768024 +-0.352438,53.765215 +-0.265694,53.775291 +-0.043977,53.557905 +-0.358092,53.750946 +-0.495961,53.55398 +-0.652281,53.604186 +-0.278644,53.769617 +-0.639126,53.581322 +-0.985393,53.685342 +-0.323052,53.802859 +-0.453984,53.675509 +-0.316722,53.764108 +-0.441665,53.821268 +-0.601401,54.051915 +-0.346404,53.793663 +-0.455763,54.044066 +-0.874399,53.707595 +-0.350759,53.801077 +-0.814213,53.92699 +-0.317035,54.050519 +-0.348813,53.75668 +-0.862396,53.7426 +-0.142722,53.571948 +-0.464241,53.72188 +-0.430983,53.839619 +-0.815049,53.525916 +-0.200378,53.757186 +-0.328776,53.747871 +-0.43526,53.754217 +-0.324927,53.784385 +-0.066638,53.567542 +-0.358906,53.761582 +-0.280393,53.769129 +-0.333958,53.772897 +-0.076376,53.730448 +-0.519325,53.735913 +-0.361038,53.751634 +-0.328442,53.771184 +-0.43391,53.748913 +0.067324,53.688041 +-0.515479,53.724585 +-0.09146,53.545835 +-0.291714,53.764994 +-0.273353,53.758043 +-0.398005,53.777411 +-0.375227,53.864531 +-0.142229,53.807817 +-0.86708,53.734725 +-0.740798,53.577284 +0.035821,53.726626 +-0.662583,53.857021 +-0.122551,53.740377 +-0.035833,53.560639 +-0.558767,53.544847 +-0.771032,53.911087 +-0.616112,53.81894 +-0.777804,53.651026 +-0.367522,53.751057 +-0.256903,53.762219 +-0.37353,53.761979 +-0.477493,53.842888 +-0.377553,53.75051 +-0.398465,53.737406 +-0.339984,53.748243 +-0.378603,53.74371 +-0.423229,53.845764 +-0.073978,53.57051 +-0.404203,54.017289 +-0.382092,53.733034 +-0.305941,53.758697 +-0.364981,53.778583 +-0.098929,53.569813 +-0.116848,53.5795 +-0.393818,53.745947 +-0.436049,53.732141 +-0.384229,53.816022 +-0.827561,53.600485 +-0.831235,53.488646 +-0.897971,53.947957 +-0.298788,53.762254 +-0.095996,53.574926 +-0.837873,53.479595 +-0.37322,53.750775 +-0.307292,53.754141 +-0.368233,53.769099 +-0.206988,54.08456 +-0.251572,53.975696 +-0.296784,53.752167 +-0.467299,53.733228 +-0.473315,53.757575 +-0.619471,53.568449 +-0.471977,53.737189 +-0.068424,53.562465 +-0.732752,53.585748 +-0.349717,53.760692 +-0.676252,53.564983 +-0.558905,53.544795 +-0.359283,53.746468 +-0.436169,53.826895 +-0.414351,53.781385 +-0.358029,53.751017 +-0.125379,53.571381 +-0.373157,53.750837 +-0.515425,53.676619 +-0.427843,53.723737 +-0.139117,53.731952 +-0.492978,53.816332 +-0.092588,53.541223 +-0.057301,53.535 +-0.300058,53.753742 +-0.632216,53.561881 +-0.288938,53.766834 +-0.463923,53.854859 +-0.551801,53.459724 +-0.870655,53.731442 +-0.413242,53.784634 +-0.417589,53.753023 +-0.329783,53.744658 +-0.668485,53.590156 +-0.343134,53.779946 +-0.197649,54.090515 +0.038755,53.725218 +-0.655509,53.596294 +-0.388658,53.767451 +-0.216259,54.113633 +-0.207181,53.589823 +-0.610868,53.788713 +-0.09821,53.571015 +-0.463047,53.721793 +-0.567803,53.743703 +-0.879345,53.999908 +-0.852289,53.740112 +-0.647492,53.56672 +-0.335324,53.832298 +-0.348205,53.780663 +-0.313136,53.754016 +-0.420811,53.753245 +-0.36486,53.773889 +-0.331342,53.742441 +-0.641043,53.764834 +-0.064379,53.564098 +-0.632419,53.611287 +-0.076214,53.522568 +-0.337214,53.776889 +-0.297452,53.771297 +-0.111178,53.576551 +-0.370925,53.779122 +-0.041687,53.549624 +-0.34558,53.743214 +-0.291922,53.778176 +-0.385496,53.581926 +-0.679586,53.550044 +-0.307995,53.767212 +-0.654205,53.569303 +-0.360276,54.102208 +-0.035503,53.560913 +-0.502277,53.830301 +-0.365715,53.781955 +-0.432603,53.722891 +-0.34713,53.74933 +-0.348526,53.755111 +-0.086818,53.564424 +-0.261697,53.774694 +-0.89339,53.714225 +-0.34994,53.655495 +-0.79598,53.920193 +-0.540936,53.789977 +-0.395185,53.750289 +-0.318831,53.753845 +-0.321998,53.748612 +-0.616304,53.761917 +-0.374883,53.744226 +-0.359788,53.75452 +-0.423238,53.778347 +-0.327083,53.764891 +-0.4438,53.957872 +-0.169337,53.911313 +-0.647271,53.592588 +-0.692519,53.589288 +-0.555418,53.543916 +-0.064923,53.564737 +-0.178006,54.091766 +-0.324288,53.749364 +-0.386515,53.743413 +-0.110418,53.562785 +-0.657649,53.590754 +-0.360531,53.752966 +-0.271718,53.771989 +-0.455866,53.903124 +-0.777532,53.934029 +-0.449454,53.775714 +-0.583421,53.754522 +-0.330137,53.661477 +-0.371391,53.798824 +-0.286101,53.758262 +-0.656471,53.590732 +-0.356739,53.759575 +-0.176204,54.099037 +-0.091647,53.562145 +-0.397956,53.582408 +-0.444518,53.716682 +-0.439538,53.683358 +-0.073569,53.571861 +-0.453031,53.682094 +-0.449278,53.791595 +-0.349126,53.747155 +-0.502262,53.830292 +-0.878964,53.724527 +-0.332998,53.742734 +-0.07487,53.567154 +-0.079906,53.565679 +-0.325123,53.784037 +-0.102262,53.576653 +-0.303445,53.760388 +-0.19915,53.739458 +-0.34676,53.761442 +-0.080698,53.553852 +-0.128427,53.743274 +-0.643356,53.574709 +-0.188362,53.726926 +-0.655021,53.57787 +-0.056789,53.571545 +-0.437176,53.844742 +-0.390844,53.788443 +-0.242245,54.064254 +-0.399237,53.737039 +-0.457664,53.854311 +-0.329883,53.791457 +-0.196957,54.090954 +-0.629179,53.656248 +-0.572839,53.533033 +-0.385887,53.761769 +-0.557597,53.547754 +-0.119871,53.747401 +-0.196106,53.765913 +-0.326232,53.745849 +-0.614893,53.797398 +-0.299013,53.747309 +-0.605549,53.77746 +-0.935763,53.698349 +-0.654251,53.578805 +-0.577391,53.53271 +0.054619,53.709845 +-0.309243,53.941006 +-0.422769,53.725683 +-0.320848,53.948315 +-0.311744,53.780793 +-0.672739,53.574463 +-0.349439,53.760059 +-0.36194,53.769004 +-0.330893,53.74764 +-0.055115,53.571167 +-0.329079,53.747884 +-0.44107,54.005288 +-0.741488,53.754254 +-0.096536,53.563904 +-0.584384,53.599429 +-0.09185,53.544888 +-0.876361,53.705051 +-0.347434,53.75008 +-0.096066,53.575035 +-0.092256,53.550289 +-0.422463,53.724529 +-0.110026,53.57834 +-0.359488,53.743154 +-0.208402,53.622015 +-0.381454,53.743704 +-0.394245,53.747085 +-0.651206,53.566735 +-0.363131,53.794531 +-0.172881,53.909983 +-0.653852,53.581866 +-0.365384,53.769015 +-0.439015,53.857818 +-0.267009,53.771732 +-0.564392,53.544995 +-0.359012,53.760415 +-0.353677,53.767291 +-0.676251,53.565019 +-0.357744,53.73655 +-0.097139,53.575016 +-0.076663,53.567263 +-0.780227,53.929355 +-0.228987,54.131961 +-0.474466,53.73669 +-0.314503,53.746772 +-0.053511,53.559391 +-0.837603,53.47953 +-0.647177,53.576586 +-0.449155,53.71587 +-0.069061,53.568049 +-0.197614,54.083198 +-0.331245,53.747555 +-0.651809,53.566786 +-0.661476,53.860748 +-0.413308,53.850856 +-0.242697,53.609255 +-0.407205,53.755672 +-0.202321,54.087475 +-0.349203,53.749062 +-0.371676,53.73265 +-0.549626,53.565915 +-0.340144,53.774943 +-0.420773,53.78174 +-0.072544,53.570487 +-0.092292,53.559558 +-0.694918,53.588415 +-0.400462,53.761083 +-0.357561,53.750948 +-0.327002,53.765034 +-0.269205,53.772951 +-0.196194,54.079626 +-0.33194,53.742648 +-0.267966,53.773553 +-0.414245,53.78462 +-0.35981,53.754358 +-0.669198,53.574181 +-0.297992,53.750063 +-0.865143,53.734033 +-0.115043,53.545706 +-0.670415,53.558518 +-0.071155,53.568496 +-0.214286,53.740431 +-0.332878,53.743083 +-0.319861,53.749715 +-0.339691,53.767592 +-0.346571,53.743084 +-0.322795,53.787214 +-0.303483,53.776011 +-0.381757,53.782002 +-0.327792,53.747048 +-0.311005,53.879241 +-0.053567,53.554232 +-0.416859,53.753058 +-0.339933,53.748377 +-0.066795,53.559795 +-0.419986,53.83863 +-0.287819,53.771977 +-0.330041,53.740823 +-0.628457,53.566539 +-0.328488,53.797137 +-0.196412,53.765855 +-0.015368,53.683867 +-0.073129,53.55961 +-0.278672,53.769662 +-0.361288,53.735852 +-0.101028,53.516878 +-0.107681,53.557123 +-0.358826,53.762462 +-0.354229,53.769851 +-0.353815,53.767625 +-0.344503,53.743235 +-0.33374,53.747356 +-0.394665,54.024389 +-0.07024,53.562386 +-0.415226,53.585937 +-0.409655,53.744216 +-0.393357,53.744925 +-0.105882,53.578113 +-0.682845,53.574368 +-0.438089,53.829995 +-0.299937,53.767988 +-0.356975,53.743056 +-0.359384,53.743089 +-0.073562,53.559401 +-0.133916,53.763469 +-0.093104,53.536476 +-0.107473,53.557048 +-0.290548,53.76754 +-0.416536,53.731013 +-0.472437,53.737042 +-0.362951,53.788236 +-0.694018,53.589179 +-0.202875,53.621483 +-0.319027,53.774774 +-0.336861,53.777756 +-0.683744,53.589677 +-0.736492,53.93417 +-0.698787,53.588853 +-0.303461,53.76037 +-0.448617,53.856388 +-0.880151,53.706094 +-0.170317,53.911166 +-0.078299,53.573798 +-0.842145,53.46601 +-0.380037,53.743505 +-0.189486,54.083786 +-0.365007,53.744335 +-0.251948,53.835445 +-0.356679,53.759556 +-0.435206,53.738117 +-0.407568,53.857486 +-0.118575,53.550121 +-0.09328,53.552355 +-0.364943,53.743246 +-0.411296,53.784725 +-0.863359,53.708569 +-0.506835,53.720432 +-0.317078,54.131813 +-0.104204,53.565995 +-0.085959,53.562387 +-0.352081,53.764653 +-0.457489,53.763907 +-0.617666,53.56219 +-0.441491,53.78255 +-0.335257,53.755009 +-0.32666,53.745774 +-0.048857,53.546999 +-0.312836,53.754327 +-0.035739,53.561042 +-0.303476,53.760379 +-0.675452,53.556255 +-0.260072,53.835968 +-0.348576,53.755364 +-0.326639,53.808869 +-0.093004,53.552125 +-0.917018,53.992038 +-1.336066,54.574501 +-1.209972,54.567471 +-1.218923,54.692205 +-1.230025,54.699897 +-1.234207,54.682201 +-1.288366,54.629095 +-1.211861,54.678733 +-1.222164,54.700431 +-1.198227,54.677241 +-1.212474,54.675951 +-1.209737,54.69228 +-1.218838,54.691809 +-1.240656,54.699011 +-1.226754,54.685901 +-1.19284,54.670492 +-1.219935,54.685561 +-1.230643,54.686088 +-1.280626,54.63321 +-1.241436,54.683765 +-1.273333,54.636474 +-1.302088,54.681748 +-1.218524,54.665323 +-1.208261,54.686052 +-1.301722,54.6488 +-1.220138,54.664416 +-1.211455,54.678883 +-1.243146,54.685232 +-1.24526,54.690862 +-1.276326,54.676493 +-1.220552,54.658173 +-1.208607,54.678622 +-1.188391,54.665781 +-1.301184,54.678346 +-1.242837,54.660983 +-1.272227,54.705352 +-1.213587,54.682519 +-1.213494,54.691388 +-1.203025,54.68883 +-1.235566,54.665144 +-1.225199,54.653494 +-1.238722,54.707833 +-1.223232,54.677791 +-1.235687,54.662008 +-1.239504,54.647725 +-1.216124,54.67806 +-1.244168,54.683693 +-1.201651,54.693261 +-1.209867,54.672806 +-1.236932,54.660928 +-1.239486,54.647869 +-1.244827,54.711709 +-1.226161,54.662415 +-1.236036,54.674835 +-1.226584,54.659739 +-1.274129,54.704896 +-1.237699,54.662182 +-1.253338,54.64294 +-1.246884,54.657621 +-1.240455,54.706424 +-1.276426,54.675199 +-1.220346,54.698927 +-1.258036,54.666613 +-1.30248,54.682362 +-1.225356,54.653387 +-1.204391,54.703101 +-1.231215,54.668981 +-1.21708,54.698484 +-1.245495,54.69409 +-1.239737,54.699194 +-1.243107,54.66147 +-1.222489,54.693163 +-1.211347,54.678882 +-1.245004,54.69628 +-1.245742,54.694163 +-1.228074,54.699723 +-1.238314,54.708073 +-1.228148,54.696596 +-1.211237,54.685352 +-1.226673,54.690134 +-1.214414,54.673465 +-1.219776,54.664738 +-1.21265,54.668412 +-1.214831,54.672731 +-1.228312,54.696956 +-1.223152,54.703933 +-1.254425,54.642794 +-1.239965,54.65791 +-1.208341,54.688299 +-1.235737,54.676693 +-1.26607,54.69054 +-1.212377,54.682574 +-1.243083,54.685313 +-1.222017,54.699163 +-1.22929,54.658454 +-1.228042,54.699731 +-1.218434,54.706374 +-1.2118,54.678705 +-1.209454,54.658928 +-1.299498,54.675434 +-1.221877,54.699207 +-1.227945,54.700746 +-1.292257,54.702963 +-1.235716,54.671202 +-1.204273,54.633758 +-1.205702,54.703505 +-1.223222,54.704338 +-1.233398,54.658462 +-1.23885,54.699324 +-1.29935,54.675019 +-1.241351,54.709989 +-1.229099,54.700475 +-1.206133,54.675856 +-1.224309,54.705891 +-1.205619,54.652136 +-1.198886,54.693395 +-1.185092,54.699684 +-1.225077,54.706354 +-1.208995,54.688168 +-1.292211,54.685151 +-1.211748,54.668595 +-1.211207,54.685316 +-1.219275,54.687633 +-1.24172,54.671033 +-1.214974,54.702317 +-1.208884,54.685876 +-1.220048,54.685328 +-1.121011,54.507542 +-0.986987,54.525592 +-1.060022,54.54119 +-0.91056,54.4973 +-0.998622,54.567246 +-0.949499,54.560026 +-0.969436,54.555587 +-1.076985,54.535389 +-1.006856,54.571484 +-1.120251,54.509118 +-0.872938,54.502662 +-1.043977,54.543185 +-0.963267,54.564081 +-0.978884,54.563603 +-1.011596,54.557116 +-1.106411,54.522677 +-1.056647,54.53738 +-1.100167,54.533281 +-0.985068,54.554973 +-1.150331,54.54592 +-0.906421,54.563257 +-0.956948,54.55779 +-1.104086,54.532896 +-1.147929,54.575165 +-1.032043,54.551035 +-0.99538,54.56827 +-1.059003,54.531718 +-1.106652,54.523668 +-1.067445,54.533572 +-1.04683,54.528855 +-0.967314,54.518972 +-1.04469,54.543083 +-1.006433,54.571049 +-1.109158,54.519956 +-1.122171,54.534125 +-1.062981,54.534805 +-1.079535,54.531256 +-0.99566,54.568192 +-1.060211,54.533606 +-1.066237,54.527559 +-1.151027,54.566029 +-1.15722,54.577693 +-1.140203,54.580611 +-1.153163,54.548771 +-1.1577,54.577705 +-1.182759,54.580932 +-1.158607,54.550157 +-1.16786,54.570298 +-1.152603,54.569842 +-1.178421,54.547399 +-1.157964,54.577635 +-1.143179,54.558955 +-1.146412,54.576691 +-1.182882,54.578686 +-1.176463,54.551708 +-1.145208,54.580996 +-1.145316,54.580979 +-1.175117,54.580889 +-1.156185,54.557419 +-1.178201,54.569092 +-1.141639,54.568973 +-1.146173,54.57402 +-1.145904,54.575789 +-1.182574,54.570093 +-1.16181,54.564343 +-1.177229,54.551309 +-1.1711,54.580637 +-1.169922,54.573116 +-1.169053,54.58163 +-1.17747,54.550853 +-1.142342,54.558311 +-1.123281,54.565984 +-1.179482,54.549994 +-1.154418,54.556095 +-1.149829,54.552216 +-1.176088,54.582631 +-1.143299,54.567242 +-1.174391,54.568608 +-1.171141,54.574778 +-1.175409,54.580972 +-1.146787,54.559474 +-1.140153,54.580017 +-1.065115,54.566519 +-1.081892,54.611467 +-1.084141,54.603692 +-1.039471,54.606033 +-1.052591,54.61506 +-1.079562,54.60629 +-1.068182,54.615837 +-1.069838,54.593481 +-1.059756,54.617273 +-1.059086,54.592598 +-1.101911,54.60591 +-1.086644,54.589376 +-1.07001,54.617829 +-1.059085,54.592643 +-1.087769,54.583354 +-1.083832,54.610574 +-1.053411,54.615094 +-1.056302,54.592532 +-1.057713,54.616538 +-1.077312,54.614065 +-1.059933,54.615639 +-1.069029,54.594347 +-1.06975,54.591881 +-1.078479,54.617237 +-1.059291,54.617297 +-1.052918,54.615629 +-1.110271,54.606592 +-1.061332,54.617402 +-1.078975,54.603518 +-1.068336,54.594845 +-1.059055,54.604704 +-1.07014,54.618935 +-1.085229,54.616641 +-1.067909,54.614236 +-1.05985,54.615189 +-1.015563,54.590158 +-0.975141,54.582121 +-1.023416,54.591831 +-0.974147,54.582274 +-1.056824,54.588689 +-1.01926,54.590242 +-0.978265,54.581545 +-0.979974,54.578198 +-1.015471,54.583705 +-0.978337,54.583631 +-0.967715,54.574149 +-0.971819,54.571479 +-1.04147,54.588155 +-0.964948,54.583193 +-0.978265,54.581554 +-0.973554,54.582458 +-0.957208,54.541534 +-0.829322,54.557422 +-1.247019,54.565532 +-1.241547,54.564554 +-1.242573,54.56093 +-1.253813,54.565286 +-1.222519,54.556722 +-1.229212,54.568287 +-1.257575,54.566801 +-1.216333,54.547857 +-1.198527,54.569813 +-1.279082,54.536483 +-1.258858,54.546346 +-1.231999,54.556648 +-1.278713,54.541648 +-1.22258,54.55675 +-1.23914,54.567568 +-1.238263,54.571462 +-1.216521,54.547768 +-1.269183,54.560275 +-1.277249,54.54403 +-1.249308,54.565546 +-1.222811,54.573045 +-1.274084,54.548172 +-1.257634,54.570369 +-1.210785,54.540559 +-1.226919,54.567724 +-1.21624,54.54791 +-1.254778,54.566694 +-1.239681,54.56758 +-1.249777,54.571202 +-1.233036,54.569749 +-1.237168,54.572974 +-1.255036,54.570362 +-1.239274,54.556245 +-1.228389,54.534067 +-1.22442,54.564886 +-1.223078,54.559036 +-1.224676,54.562829 +-1.25382,54.571694 +-1.240255,54.552539 +-1.244385,54.577531 +-1.202248,54.532918 +-1.196278,54.528403 +-1.23849,54.570907 +-1.272602,54.551516 +-1.215203,54.546358 +-1.270389,54.555969 +-1.244852,54.568142 +-1.240187,54.567026 +-1.224646,54.569273 +-1.200676,54.531874 +-1.274977,54.548375 +-1.239271,54.568844 +-1.272046,54.55233 +-1.23696,54.578302 +-1.248065,54.558277 +-1.200741,54.549912 +-1.242106,54.574443 +-1.255154,54.581687 +-1.267812,54.555666 +-1.225723,54.572039 +-1.239315,54.582262 +-1.242155,54.562626 +-1.266983,54.551886 +-1.273913,54.548225 +-1.199398,54.530841 +-1.250335,54.569444 +-1.210656,54.540837 +-1.268357,54.545945 +-1.197871,54.529924 +-1.240623,54.581003 +-1.247448,54.564959 +-1.273491,54.550227 +-1.238292,54.570735 +-1.249072,54.560701 +-1.262843,54.567166 +-1.241969,54.574326 +-1.22255,54.556678 +-1.229276,54.568997 +-1.240201,54.567071 +-1.224445,54.562756 +-1.260624,54.562407 +-1.250595,54.543446 +-1.254365,54.541007 +-1.216153,54.547613 +-1.239018,54.557528 +-1.245906,54.568868 +-1.212877,54.577222 +-1.245412,54.565468 +-1.239942,54.558541 +-1.275068,54.547612 +-1.267988,54.556224 +-1.234629,54.576364 +-1.240382,54.578989 +-1.280265,54.531628 +-1.248918,54.569093 +-1.239346,54.568953 +-1.21236,54.539869 +-1.245509,54.569432 +-1.239514,54.568244 +-1.227728,54.566632 +-1.252665,54.55702 +-1.25949,54.527665 +-1.222864,54.558073 +-1.242947,54.559952 +-1.237343,54.561121 +-1.231422,54.568426 +-1.257603,54.570369 +-1.242372,54.552588 +-1.24668,54.568837 +-1.251472,54.568166 +-1.215685,54.547008 +-1.232882,54.557346 +-1.231017,54.577627 +-1.242739,54.558675 +-1.234871,54.578316 +-1.26119,54.563633 +-1.222967,54.559188 +-1.211256,54.541012 +-1.222535,54.556695 +-1.257604,54.570324 +-1.248823,54.576786 +-1.248008,54.56978 +-1.239468,54.568244 +-1.241665,54.564015 +-1.205756,54.536096 +-1.275648,54.528833 +-1.242216,54.575999 +-1.225784,54.572075 +-1.226011,54.569911 +-1.245282,54.554089 +-1.24,54.557103 +-1.240922,54.573214 +-1.223697,54.567119 +-1.213393,54.536757 +-1.246231,54.565509 +-1.280002,54.532507 +-1.258629,54.5462 +-1.22311,54.567915 +-1.244553,54.560906 +-1.233537,54.56782 +-1.211766,54.541788 +-1.26243,54.554006 +-1.251409,54.563141 +-1.251687,54.529352 +-1.241372,54.576497 +-1.20301,54.533427 +-1.269662,54.558598 +-1.239277,54.569339 +-1.242248,54.57599 +-1.231137,54.560534 +-1.217791,54.565409 +-1.266012,54.563797 +-1.224429,54.563619 +-1.234538,54.576283 +-1.232902,54.570305 +-1.228697,54.549716 +-1.252418,54.532511 +-1.238474,54.570933 +-1.199094,54.529815 +-1.240041,54.556537 +-1.234261,54.577854 +-1.241178,54.565289 +-1.216817,54.548426 +-1.203213,54.575407 +-1.273192,54.548778 +-1.185071,54.566676 +-1.211898,54.563043 +-1.203027,54.561143 +-1.180036,54.550115 +-1.20591,54.563193 +-1.210307,54.558144 +-1.19642,54.559751 +-1.207409,54.564848 +-1.196136,54.566319 +-1.19612,54.566364 +-1.214537,54.571365 +-1.197889,54.553443 +-1.196105,54.566355 +-1.204653,54.557846 +-1.193036,54.567476 +-1.198419,54.562667 +-1.20522,54.560492 +-1.198819,54.556505 +-1.186693,54.568323 +-1.182218,54.557742 +-1.182641,54.555902 +-1.201306,54.559802 +-1.27857,54.528724 +-1.280174,54.519207 +-1.278903,54.535251 +-1.218004,54.522749 +-1.212114,54.521318 +-1.232436,54.526769 +-1.275417,54.528777 +-1.212589,54.521545 +-1.208459,54.521797 +-1.255766,54.525162 +-1.239892,54.521307 +-1.216021,54.527859 +-1.232865,54.526978 +-1.218187,54.522049 +-1.227177,54.522979 +-1.245921,54.517777 +-1.276049,54.528862 +-1.210783,54.523861 +-1.214402,54.523633 +-1.240312,54.521148 +-1.230595,54.52771 +-1.318584,54.584819 +-1.288619,54.571993 +-1.422306,54.540631 +-1.319108,54.560809 +-1.359444,54.569279 +-1.325685,54.584877 +-1.310901,54.558705 +-1.315129,54.563806 +-1.323186,54.558271 +-1.337045,54.561807 +-1.320719,54.557835 +-1.31934,54.560766 +-1.269336,54.571654 +-1.279459,54.560732 +-1.373091,54.6083 +-1.354077,54.588842 +-1.325644,54.570498 +-1.350653,54.590118 +-1.336451,54.555567 +-1.325272,54.571484 +-1.325671,54.584787 +-1.311326,54.580267 +-1.319089,54.547095 +-1.269373,54.571277 +-1.310388,54.573512 +-1.314882,54.570276 +-1.341685,54.571413 +-1.314331,54.561591 +-1.30793,54.569742 +-1.270491,54.574537 +-1.371995,54.610119 +-1.314276,54.604522 +-1.321579,54.571248 +-1.271236,54.575269 +-1.311355,54.571217 +-1.319005,54.59389 +-1.311106,54.584112 +-1.312464,54.566901 +-1.357669,54.594631 +-1.338169,54.569758 +-1.32617,54.570483 +-1.310614,54.60229 +-1.350501,54.583135 +-1.32357,54.579878 +-1.310911,54.579186 +-1.282216,54.559616 +-1.35686,54.579214 +-1.323432,54.589178 +-1.299517,54.582302 +-1.343637,54.585668 +-1.27075,54.574727 +-1.32115,54.590541 +-1.282285,54.560039 +-1.278871,54.559012 +-1.311024,54.588983 +-1.328611,54.583824 +-1.326311,54.547836 +-1.31055,54.587731 +-1.351082,54.558226 +-1.32203,54.585081 +-1.342717,54.585115 +-1.316919,54.56405 +-1.412665,54.543586 +-1.338209,54.547219 +-1.310902,54.560448 +-1.311154,54.560189 +-1.327221,54.581812 +-1.346912,54.585003 +-1.312014,54.559637 +-1.333346,54.594212 +-1.318359,54.595504 +-1.332995,54.556007 +-1.312759,54.584274 +-1.313109,54.561647 +-1.334214,54.594154 +-1.314838,54.5941 +-1.337947,54.54719 +-1.323184,54.575202 +-1.314347,54.568026 +-1.357455,54.557073 +-1.311106,54.559371 +-1.311103,54.571467 +-1.315646,54.568042 +-1.345378,54.548471 +-1.329613,54.551045 +-1.315047,54.56412 +-1.282597,54.559888 +-1.332531,54.546559 +-1.350422,54.583206 +-1.377175,54.605463 +-1.275292,54.57772 +-1.396613,54.581827 +-1.315925,54.592938 +-1.311171,54.587626 +-1.325857,54.589462 +-1.341044,54.555511 +-1.310856,54.602606 +-1.290895,54.571827 +-1.296575,54.556376 +-1.316357,54.552364 +-1.343438,54.582638 +-1.293458,54.57124 +-1.319224,54.55939 +-1.293801,54.581829 +-1.372702,54.603418 +-1.319994,54.568902 +-1.33706,54.561852 +-1.319294,54.547761 +-1.282442,54.559941 +-1.33813,54.571232 +-1.331572,54.548477 +-1.405515,54.566513 +-1.390432,54.578175 +-1.268597,54.569708 +-1.307197,54.566457 +-1.282139,54.55869 +-1.340106,54.571476 +-1.303564,54.596336 +-1.279954,54.602848 +-1.297816,54.598469 +-1.283031,54.607477 +-1.241526,54.593187 +-1.311026,54.626512 +-1.292216,54.617947 +-1.289277,54.592838 +-1.302872,54.596997 +-1.312223,54.611502 +-1.305063,54.627386 +-1.292238,54.61127 +-1.305165,54.609547 +-1.214323,54.618662 +-1.30463,54.596459 +-1.316835,54.606127 +-1.260583,54.62111 +-1.285412,54.625303 +-1.276321,54.618266 +-1.312091,54.624847 +-1.279185,54.603455 +-1.308527,54.6012 +-1.304553,54.596432 +-1.330752,54.634459 +-1.309014,54.629143 +-1.219049,54.60559 +-1.288431,54.612973 +-1.272911,54.577607 +-1.316237,54.619604 +-1.302972,54.594733 +-1.372011,54.610083 +-1.307335,54.600294 +-1.283437,54.614319 +-1.297801,54.598433 +-1.307793,54.600683 +-1.282491,54.606449 +-1.290869,54.513618 +-1.305875,54.555054 +-1.287591,54.551066 +-1.323634,54.519036 +-1.32334,54.514352 +-1.291038,54.513673 +-1.317323,54.519477 +-1.303559,54.539412 +-1.292585,54.553764 +-1.305784,54.555854 +-1.315725,54.522694 +-1.299354,54.554846 +-1.298583,54.545693 +-1.321343,54.522115 +-1.324601,54.518421 +-1.298877,54.527621 +-1.298432,54.545476 +-1.300046,54.531591 +-1.290791,54.513626 +-1.294525,54.556894 +-1.298401,54.552719 +-1.301291,54.552799 +-1.323313,54.528165 +-1.300488,54.549083 +-1.321028,54.522454 +-1.295695,54.519487 +-1.303993,54.543917 +-1.315333,54.51934 +-1.320887,54.522543 +-1.303607,54.542972 +-1.29066,54.54082 +-1.297787,54.533511 +-1.296966,54.545342 +-1.30124,54.477927 +-1.363239,54.539193 +-1.303507,54.502511 +-1.34212,54.535701 +-1.352328,54.494173 +-1.345164,54.531853 +-1.267963,54.49193 +-1.305058,54.502134 +-1.3405,54.538415 +-1.338157,54.54091 +-1.368822,54.521895 +-1.394159,54.504176 +-1.303644,54.48718 +-1.35378,54.515696 +-1.348133,54.501636 +-1.345524,54.531585 +-1.355525,54.497075 +-1.34492,54.497872 +-1.219835,54.679423 +-2.089567,52.479921 +-2.134818,52.567781 +-2.00623,52.587204 +-1.892729,52.440027 +-1.97636,52.467915 +-1.729943,52.417787 +-2.087776,52.519694 +-2.141698,52.473289 +-1.505566,52.394272 +-2.014999,52.592327 +-2.018805,52.551711 +-1.768384,52.528904 +-1.9532,52.487084 +-1.506815,52.436477 +-1.783351,52.383644 +-1.951937,52.578897 +-2.10548,52.502787 +-1.911894,52.471184 +-1.832853,52.460491 +-1.86844,52.509881 +-1.727788,52.45501 +-1.990568,52.592121 +-2.11541,52.621048 +-1.994661,52.564478 +-2.011176,52.479235 +-1.97336,52.437978 +-2.046274,52.475864 +-1.892276,52.493418 +-1.850627,52.52286 +-1.86061,52.460428 +-2.013447,52.585801 +-1.89459,52.474074 +-1.48968,52.44276 +-1.876816,52.459619 +-1.937478,52.503843 +-1.459475,52.410361 +-1.976283,52.584397 +-1.480485,52.411435 +-1.853919,52.489844 +-1.909374,52.53733 +-1.874941,52.472266 +-1.856392,52.476722 +-1.846946,52.449443 +-1.960636,52.421756 +-1.917827,52.487199 +-2.066951,52.480376 +-1.854129,52.452994 +-1.975249,52.587076 +-1.771393,52.451731 +-2.105451,52.503075 +-2.166449,52.497629 +-2.008413,52.582538 +-2.086326,52.531669 +-2.12576,52.501122 +-1.930958,52.414596 +-1.719731,52.444545 +-1.836803,52.586346 +-1.969833,52.476913 +-1.799433,52.358914 +-1.984275,52.396212 +-2.150355,52.469143 +-2.022922,52.585044 +-1.899857,52.449608 +-1.444766,52.414527 +-1.84502,52.453136 +-2.152249,52.59517 +-1.908666,52.516023 +-1.492405,52.415505 +-1.801741,52.558442 +-2.037725,52.601141 +-1.934089,52.513676 +-1.994127,52.585064 +-1.994522,52.49068 +-1.865411,52.459489 +-1.95135,52.642769 +-1.871378,52.517877 +-1.860592,52.447482 +-1.827987,52.53448 +-1.961013,52.578001 +-1.53181,52.414031 +-1.969161,52.575567 +-2.057895,52.490809 +-1.498703,52.42935 +-1.871977,52.458706 +-1.940909,52.438838 +-2.111967,52.597453 +-2.143658,52.568652 +-1.919383,52.432901 +-2.121986,52.484108 +-1.496957,52.444536 +-1.810008,52.427004 +-2.007161,52.510493 +-1.903828,52.47766 +-2.115754,52.566731 +-1.927979,52.447102 +-1.926908,52.472012 +-1.829164,52.47041 +-1.859843,52.470163 +-1.780273,52.482871 +-1.823591,52.479896 +-1.988282,52.53072 +-1.924932,52.535057 +-1.926019,52.546044 +-2.068655,52.458683 +-1.536299,52.40656 +-1.827372,52.469572 +-1.884609,52.485095 +-1.905382,52.508227 +-1.814185,52.503911 +-2.037501,52.529654 +-2.04534,52.484324 +-1.861516,52.448391 +-2.130206,52.619226 +-1.55469,52.390314 +-1.928361,52.502175 +-1.530358,52.399794 +-1.844147,52.442059 +-1.885904,52.456742 +-2.017394,52.600643 +-2.155774,52.602537 +-2.097112,52.56949 +-1.888744,52.492039 +-1.768514,52.481599 +-1.865809,52.42032 +-1.893464,52.483144 +-1.834474,52.444113 +-1.996589,52.617886 +-1.948183,52.621318 +-1.992158,52.532546 +-1.498975,52.41574 +-1.903161,52.499774 +-1.884482,52.4604 +-1.980216,52.501502 +-1.926726,52.608775 +-1.845117,52.442312 +-1.978891,52.500756 +-1.585089,52.412675 +-1.90351,52.508504 +-2.164152,52.497677 +-1.973988,52.495954 +-1.927602,52.633048 +-2.058599,52.444286 +-1.990728,52.462739 +-1.825986,52.559649 +-1.772884,52.499524 +-1.964476,52.51012 +-1.907056,52.510628 +-1.900491,52.468757 +-1.876733,52.431345 +-1.921252,52.531998 +-1.827856,52.469815 +-1.58115,52.406278 +-1.909036,52.49381 +-2.126767,52.482458 +-1.991348,52.453947 +-1.469555,52.381359 +-1.848114,52.477898 +-2.057851,52.479617 +-1.899309,52.451324 +-2.152237,52.562042 +-1.835274,52.509795 +-1.765552,52.506999 +-1.985786,52.591779 +-1.983337,52.588336 +-1.524564,52.406936 +-1.886053,52.473392 +-1.760766,52.48224 +-1.784942,52.518803 +-1.951292,52.548376 +-1.77978,52.575826 +-1.873671,52.545829 +-1.872099,52.477504 +-1.911147,52.491474 +-2.03118,52.596064 +-1.995031,52.406533 +-1.851085,52.526726 +-2.006034,52.56223 +-1.479544,52.450178 +-1.90161,52.461853 +-2.015834,52.614163 +-2.144144,52.617618 +-1.875307,52.462404 +-1.901737,52.444638 +-2.11966,52.522138 +-1.950014,52.400203 +-1.763664,52.397308 +-2.068798,52.587867 +-1.996606,52.590656 +-1.884983,52.579175 +-1.869318,52.457075 +-1.475181,52.424852 +-2.129723,52.600842 +-1.850286,52.527552 +-1.976382,52.592524 +-1.81897,52.450545 +-1.848966,52.543076 +-1.959903,52.500715 +-1.896619,52.475208 +-1.484685,52.429514 +-1.900333,52.479877 +-2.151366,52.450523 +-1.945384,52.46012 +-1.904502,52.458422 +-1.912326,52.453663 +-1.938291,52.416721 +-1.920366,52.63903 +-1.887452,52.409492 +-1.87052,52.458902 +-1.875776,52.478874 +-1.997191,52.435356 +-1.907633,52.552036 +-1.844244,52.431253 +-1.896265,52.481923 +-1.801337,52.458276 +-1.8011,52.478386 +-1.985308,52.607071 +-1.463664,52.438375 +-2.134238,52.518086 +-1.897584,52.535334 +-2.084087,52.563459 +-2.037704,52.474519 +-1.981481,52.578564 +-2.162644,52.460433 +-2.017101,52.569142 +-1.883623,52.462448 +-1.990348,52.516553 +-1.932941,52.503553 +-1.857086,52.503297 +-2.006793,52.511078 +-2.094292,52.547962 +-2.176412,52.598049 +-1.977316,52.584523 +-2.084951,52.536911 +-1.854633,52.523719 +-1.889185,52.492633 +-1.890945,52.513563 +-1.87957,52.518398 +-1.482671,52.413116 +-1.981956,52.460724 +-1.923427,52.637639 +-1.912418,52.541027 +-1.99713,52.463341 +-1.780067,52.482763 +-1.877646,52.50554 +-1.8635,52.511099 +-2.023463,52.492646 +-2.118942,52.561748 +-1.820608,52.507607 +-1.946959,52.459455 +-2.08145,52.509333 +-1.871094,52.45875 +-1.778957,52.451601 +-2.114339,52.48808 +-1.911926,52.477153 +-1.574967,52.398039 +-1.898582,52.530777 +-1.840844,52.464736 +-1.802212,52.512801 +-1.9425,52.504771 +-1.905181,52.457568 +-1.838991,52.456229 +-2.079116,52.498151 +-1.98893,52.590287 +-1.50103,52.417304 +-1.97644,52.510734 +-1.506337,52.416076 +-1.93516,52.486662 +-2.052438,52.607123 +-1.936373,52.401302 +-1.898993,52.492696 +-1.986114,52.579148 +-2.079153,52.583896 +-1.880321,52.518677 +-1.450889,52.38914 +-1.843618,52.554243 +-1.93093,52.649285 +-2.008288,52.619082 +-1.880283,52.473062 +-2.026841,52.597207 +-1.584929,52.414014 +-2.024428,52.560115 +-1.796582,52.477884 +-1.500502,52.439345 +-2.013311,52.575166 +-1.844226,52.440495 +-2.014452,52.590314 +-1.772689,52.397101 +-1.882515,52.486361 +-1.536835,52.462076 +-1.919839,52.449569 +-1.899267,52.47611 +-1.940659,52.504375 +-1.825931,52.468967 +-2.127009,52.627293 +-1.933986,52.553258 +-1.853775,52.46237 +-2.052012,52.447642 +-1.836217,52.422387 +-1.472275,52.410769 +-1.943267,52.469468 +-2.167792,52.463375 +-1.823725,52.446471 +-1.907592,52.458739 +-1.810688,52.48785 +-1.929145,52.472877 +-1.906201,52.628673 +-1.973905,52.512783 +-1.874352,52.487952 +-1.888197,52.49879 +-1.926972,52.442417 +-1.799248,52.516473 +-1.894088,52.505592 +-1.757847,52.498991 +-1.743761,52.49452 +-1.871235,52.445525 +-1.846157,52.435058 +-1.87346,52.537054 +-2.110114,52.47682 +-2.078917,52.583932 +-1.850524,52.492123 +-2.015389,52.402999 +-1.973074,52.425311 +-1.831601,52.487648 +-1.894155,52.471322 +-1.855501,52.50156 +-1.514616,52.414609 +-2.111931,52.606506 +-1.893025,52.43333 +-1.863729,52.532414 +-1.859348,52.524111 +-2.063114,52.607441 +-1.774862,52.530498 +-1.516553,52.404207 +-1.825468,52.429833 +-2.149494,52.479986 +-2.114679,52.466028 +-2.032783,52.469917 +-1.826774,52.55822 +-2.117711,52.520827 +-2.142122,52.563547 +-2.143585,52.568751 +-1.835731,52.434316 +-1.847338,52.53181 +-1.776258,52.42085 +-1.982606,52.607637 +-1.82162,52.446639 +-1.884392,52.404706 +-1.869605,52.434682 +-2.102875,52.516823 +-1.797776,52.551432 +-1.839684,52.496298 +-1.911738,52.512358 +-1.84685,52.400753 +-1.856376,52.440941 +-1.890139,52.475913 +-1.831218,52.487638 +-1.932869,52.502114 +-1.780489,52.510488 +-1.810824,52.370215 +-2.090509,52.615721 +-2.010027,52.60192 +-1.784829,52.42119 +-2.019454,52.55296 +-2.113042,52.56205 +-2.125211,52.452891 +-1.996428,52.598279 +-2.053541,52.53132 +-1.557963,52.39065 +-1.781731,52.435119 +-1.496372,52.432576 +-1.899655,52.473718 +-1.858763,52.522789 +-1.949184,52.483046 +-1.868784,52.488216 +-2.168673,52.49741 +-2.054386,52.583065 +-1.990555,52.58733 +-1.874396,52.462052 +-1.867214,52.471763 +-1.745302,52.406071 +-1.995363,52.623729 +-1.879024,52.411048 +-2.054543,52.530852 +-2.131684,52.58536 +-2.086134,52.531561 +-2.153193,52.468168 +-1.987263,52.588417 +-1.939323,52.511431 +-2.071783,52.499837 +-2.112284,52.479182 +-1.897005,52.499203 +-1.935366,52.648605 +-1.899023,52.492705 +-2.112949,52.57736 +-1.9447,52.642523 +-2.009878,52.533238 +-1.895067,52.502455 +-1.535244,52.404839 +-2.011068,52.518818 +-1.888511,52.508509 +-1.826178,52.439867 +-1.987594,52.459116 +-1.898258,52.466768 +-1.57064,52.421398 +-1.960912,52.608917 +-1.841731,52.475849 +-2.049908,52.487028 +-2.158167,52.619228 +-1.811428,52.442173 +-1.991351,52.593191 +-1.837467,52.526304 +-1.87738,52.431489 +-1.972483,52.47739 +-2.074133,52.522004 +-1.960119,52.473206 +-1.956533,52.496596 +-1.902177,52.464892 +-1.978812,52.573583 +-1.915096,52.444135 +-1.452413,52.388266 +-2.105235,52.609623 +-2.045892,52.575535 +-2.16885,52.570452 +-2.039849,52.533906 +-1.908579,52.493908 +-1.74877,52.509796 +-1.935619,52.596257 +-2.001608,52.543621 +-1.853837,52.443411 +-2.066296,52.562832 +-2.095474,52.508234 +-1.510714,52.409846 +-1.995526,52.620268 +-1.518513,52.425368 +-2.134682,52.475239 +-1.935293,52.627775 +-1.954225,52.478607 +-2.128267,52.481602 +-1.842519,52.42841 +-2.109659,52.524584 +-1.887317,52.531962 +-1.520906,52.431159 +-2.009396,52.620385 +-1.911338,52.491609 +-2.031802,52.49687 +-1.873627,52.463139 +-1.506216,52.434838 +-1.858702,52.527742 +-1.946223,52.447642 +-1.912115,52.515855 +-2.094299,52.509845 +-1.878963,52.514046 +-1.711757,52.442332 +-1.875395,52.473255 +-1.895489,52.492405 +-2.13959,52.597721 +-1.762373,52.473685 +-1.799635,52.49942 +-1.77118,52.41328 +-1.950845,52.578825 +-2.13208,52.613938 +-1.486603,52.446703 +-1.504412,52.414666 +-1.874249,52.487934 +-1.481222,52.423835 +-1.994833,52.604806 +-1.987499,52.588399 +-1.795322,52.508205 +-2.022621,52.488241 +-2.087536,52.591424 +-1.994624,52.621194 +-2.153105,52.489322 +-1.468367,52.38361 +-2.087809,52.521042 +-1.863363,52.545745 +-2.153361,52.592399 +-1.914189,52.471842 +-1.970121,52.485606 +-2.003309,52.611261 +-1.896736,52.525822 +-2.087794,52.53601 +-1.495366,52.444637 +-1.87468,52.512244 +-1.996222,52.588696 +-2.053929,52.583164 +-1.892244,52.421615 +-1.874298,52.522276 +-1.889183,52.463955 +-2.123314,52.453523 +-2.073496,52.528837 +-1.835984,52.53664 +-1.4621,52.429018 +-1.818161,52.49348 +-1.750158,52.467609 +-1.799774,52.517544 +-1.874484,52.513817 +-1.898294,52.502431 +-1.794345,52.503034 +-1.793441,52.488396 +-1.927641,52.447102 +-2.109768,52.591936 +-2.044713,52.475784 +-1.972798,52.490812 +-1.82079,52.516975 +-1.859924,52.509845 +-1.831533,52.463078 +-2.118699,52.515594 +-2.138325,52.585064 +-1.724745,52.416732 +-1.839278,52.43388 +-1.913276,52.600028 +-1.974374,52.594357 +-2.117434,52.532982 +-1.814322,52.478227 +-1.926123,52.413316 +-1.859272,52.524848 +-1.842843,52.494361 +-1.84129,52.446874 +-1.752187,52.446981 +-2.023271,52.574328 +-2.070193,52.564978 +-1.931522,52.544483 +-1.574747,52.442341 +-2.062179,52.593229 +-2.002845,52.513892 +-2.139185,52.484062 +-1.914769,52.407771 +-1.897338,52.482626 +-1.509578,52.444732 +-1.828189,52.513102 +-1.978074,52.573529 +-2.075144,52.483958 +-2.125884,52.539158 +-2.02647,52.521818 +-2.111179,52.455656 +-1.827895,52.554231 +-2.08369,52.509709 +-2.102594,52.5035 +-1.505665,52.428885 +-1.826142,52.49013 +-2.05961,52.452565 +-1.961152,52.604944 +-2.122629,52.566913 +-1.847739,52.518217 +-1.823298,52.446363 +-1.823901,52.446399 +-1.498479,52.429663 +-1.909524,52.528763 +-2.128865,52.570188 +-2.124473,52.577061 +-1.766321,52.481415 +-1.79438,52.50805 +-2.032679,52.547563 +-1.859279,52.476303 +-1.842754,52.490306 +-2.131749,52.621561 +-1.874225,52.522096 +-1.904297,52.437448 +-1.470621,52.424912 +-1.780453,52.47932 +-2.058364,52.445086 +-1.823764,52.462366 +-1.932928,52.502303 +-1.816905,52.490826 +-2.174002,52.556322 +-2.006683,52.468924 +-1.740909,52.47844 +-2.075683,52.565919 +-1.508253,52.410376 +-1.892654,52.464974 +-2.125723,52.580772 +-1.886747,52.455107 +-2.130494,52.607116 +-1.743809,52.488812 +-1.788303,52.48178 +-1.818065,52.559754 +-1.859106,52.442967 +-1.865239,52.472345 +-1.976174,52.512568 +-1.832654,52.431318 +-2.040176,52.584932 +-2.082606,52.567793 +-1.837993,52.383058 +-1.77787,52.35447 +-1.86883,52.497575 +-1.897421,52.535585 +-2.00352,52.483632 +-2.091194,52.49042 +-2.061639,52.471965 +-2.129927,52.620071 +-1.994729,52.608105 +-1.813944,52.519113 +-1.901296,52.483861 +-1.871625,52.48884 +-1.988314,52.404447 +-1.917503,52.636592 +-2.109863,52.500014 +-2.03907,52.569847 +-1.466455,52.452035 +-2.120594,52.58325 +-2.086783,52.583747 +-1.959859,52.500679 +-1.965049,52.475158 +-1.988485,52.599996 +-1.866848,52.441745 +-1.849166,52.488705 +-1.920439,52.434538 +-2.033275,52.554971 +-1.779076,52.41013 +-1.854071,52.452814 +-2.049931,52.584568 +-1.991727,52.468771 +-1.906922,52.455376 +-1.879459,52.478123 +-1.904616,52.487666 +-1.813197,52.430866 +-1.848099,52.435061 +-1.901097,52.467436 +-1.883398,52.475097 +-1.56766,52.413359 +-1.81177,52.465512 +-2.126382,52.589159 +-1.802698,52.460148 +-2.014005,52.578582 +-1.796637,52.417848 +-2.134415,52.595003 +-1.824023,52.497283 +-1.794689,52.463793 +-1.466248,52.432633 +-1.8607,52.459987 +-1.859627,52.491847 +-1.990016,52.553357 +-1.970475,52.440377 +-1.879612,52.584231 +-1.874247,52.519471 +-1.818294,52.493337 +-2.136893,52.480945 +-2.070425,52.5161 +-2.12361,52.574751 +-1.850602,52.491017 +-1.815258,52.518531 +-1.829345,52.416039 +-1.859331,52.520039 +-2.003483,52.567031 +-1.79025,52.474924 +-1.939849,52.438775 +-1.650235,52.391848 +-1.819509,52.516793 +-2.015772,52.445927 +-1.8463,52.470281 +-2.140269,52.592856 +-1.84076,52.487912 +-1.996567,52.515088 +-1.920633,52.417034 +-1.938706,52.44691 +-1.806375,52.517761 +-1.961551,52.400216 +-1.556594,52.402682 +-2.029446,52.498012 +-2.029969,52.466448 +-1.82743,52.46959 +-2.106367,52.583515 +-1.931526,52.484799 +-2.015302,52.44625 +-1.845284,52.407341 +-2.131673,52.58651 +-1.776664,52.532578 +-1.536673,52.407344 +-1.874116,52.472651 +-1.833714,52.435005 +-1.845031,52.521333 +-1.871688,52.446865 +-1.959364,52.509615 +-2.083438,52.509134 +-1.976086,52.511399 +-1.781323,52.496843 +-1.821976,52.401941 +-1.998672,52.602064 +-1.884981,52.551486 +-2.150889,52.465816 +-1.943176,52.471617 +-2.142452,52.569813 +-2.066123,52.477491 +-1.56453,52.395277 +-2.120288,52.487706 +-2.040387,52.478384 +-1.921677,52.491454 +-1.86487,52.511199 +-1.999367,52.558832 +-1.484879,52.444412 +-1.82461,52.486559 +-1.971998,52.592334 +-1.923696,52.550924 +-1.616615,52.389937 +-1.992323,52.515537 +-1.856903,52.546169 +-2.047151,52.456302 +-1.977478,52.498913 +-1.871313,52.550438 +-1.979858,52.480538 +-2.076947,52.529536 +-2.006126,52.587213 +-1.859095,52.524911 +-1.819193,52.50053 +-1.926413,52.48636 +-1.908411,52.489557 +-2.136208,52.502171 +-1.944218,52.462654 +-2.053314,52.514824 +-1.986153,52.502348 +-2.079198,52.567993 +-2.161324,52.618163 +-1.86689,52.471762 +-2.026267,52.502139 +-1.854258,52.489898 +-1.866457,52.493086 +-2.01495,52.537301 +-1.979348,52.500882 +-1.984178,52.546506 +-2.162327,52.46225 +-1.792867,52.554112 +-1.869858,52.54854 +-1.922506,52.606777 +-1.994459,52.518764 +-1.782279,52.530018 +-1.996179,52.573782 +-1.907271,52.429539 +-1.892439,52.456335 +-1.935193,52.494555 +-1.870719,52.466292 +-1.848242,52.470445 +-2.029187,52.485318 +-1.752904,52.382021 +-1.990748,52.508012 +-2.16296,52.569732 +-2.14179,52.593169 +-1.991905,52.464546 +-2.077175,52.474652 +-2.112171,52.584661 +-1.891008,52.595407 +-1.784726,52.406077 +-1.988488,52.589757 +-1.856881,52.503 +-1.757134,52.483994 +-1.82952,52.526994 +-2.157312,52.475778 +-2.128139,52.513562 +-1.937316,52.503807 +-1.84374,52.51966 +-1.88328,52.553237 +-2.042224,52.535963 +-2.083527,52.57102 +-1.907802,52.499337 +-2.013945,52.482417 +-1.515549,52.401928 +-1.467749,52.395942 +-2.124101,52.575947 +-1.94589,52.455598 +-1.843595,52.519201 +-1.823151,52.501498 +-1.862651,52.509318 +-1.898189,52.464655 +-1.996055,52.477078 +-1.855925,52.497964 +-1.888523,52.451243 +-2.150357,52.590156 +-1.866399,52.453935 +-2.132305,52.438733 +-2.05522,52.588809 +-1.764202,52.412169 +-1.909421,52.492623 +-2.091922,52.571238 +-1.856015,52.443305 +-2.10738,52.48468 +-1.521596,52.431251 +-1.937879,52.438486 +-1.846437,52.553654 +-1.933803,52.606496 +-1.838279,52.542001 +-1.885771,52.565448 +-1.760786,52.435042 +-1.903553,52.482244 +-1.864221,52.516278 +-2.119772,52.628128 +-1.839222,52.477581 +-1.925252,52.432932 +-1.975612,52.407978 +-2.017775,52.486606 +-1.779256,52.456492 +-2.139648,52.592686 +-2.03333,52.550197 +-1.512025,52.432255 +-2.110058,52.566099 +-1.858813,52.548311 +-1.876967,52.479541 +-2.130754,52.441684 +-1.956241,52.479812 +-1.873566,52.458968 +-2.137769,52.591259 +-1.991777,52.604815 +-2.058834,52.444259 +-1.780403,52.471508 +-1.99058,52.394289 +-1.863663,52.506235 +-1.946605,52.448496 +-2.167597,52.505008 +-1.843357,52.528127 +-2.100161,52.476604 +-1.884763,52.45977 +-2.008405,52.540744 +-1.967391,52.393377 +-1.892699,52.428097 +-1.887917,52.510315 +-1.994925,52.43718 +-1.751297,52.500677 +-1.915871,52.408077 +-1.979868,52.457424 +-1.954259,52.473383 +-1.927471,52.407365 +-2.000104,52.522091 +-2.01307,52.461444 +-1.932896,52.474983 +-1.846697,52.466092 +-1.967509,52.393449 +-1.555593,52.411615 +-1.87098,52.427015 +-1.966601,52.448252 +-1.933561,52.423776 +-1.903287,52.482559 +-1.952126,52.472574 +-1.901678,52.444593 +-1.898773,52.518182 +-1.958658,52.39759 +-1.868482,52.416673 +-2.040132,52.585085 +-1.860124,52.483846 +-1.864944,52.429255 +-1.645499,52.385002 +-1.885154,52.490876 +-1.746598,52.487775 +-2.059484,52.543876 +-1.82013,52.462117 +-1.825488,52.432144 +-1.827281,52.492757 +-1.856058,52.516151 +-2.003736,52.596985 +-1.474725,52.39885 +-1.936693,52.639993 +-1.799534,52.473016 +-1.883001,52.552787 +-1.822379,52.56172 +-1.989552,52.456086 +-1.970462,52.459994 +-1.976186,52.43556 +-1.870511,52.516968 +-1.973287,52.412617 +-2.075481,52.559743 +-2.141042,52.585538 +-1.938866,52.447746 +-1.871035,52.45883 +-1.503299,52.410364 +-2.024849,52.496548 +-2.080209,52.507626 +-2.013405,52.404366 +-1.851634,52.47739 +-1.999499,52.565754 +-1.968078,52.563035 +-1.505659,52.405717 +-1.819656,52.495218 +-1.936344,52.503617 +-1.723364,52.46354 +-1.90586,52.456742 +-1.985104,52.598908 +-2.076907,52.548667 +-2.037534,52.568122 +-1.523439,52.424103 +-2.015393,52.496774 +-1.934661,52.46594 +-1.915787,52.460003 +-2.103207,52.475846 +-2.127892,52.499708 +-1.868234,52.460428 +-1.968702,52.576691 +-1.887682,52.452321 +-1.924073,52.477126 +-1.743991,52.498018 +-1.806165,52.43811 +-1.85311,52.511904 +-1.850219,52.508287 +-2.072412,52.604092 +-1.79357,52.47973 +-1.984663,52.464644 +-2.082436,52.56373 +-2.059072,52.479086 +-1.891285,52.483106 +-1.871593,52.413656 +-2.012478,52.502582 +-1.864406,52.4706 +-1.891782,52.466295 +-2.024539,52.521621 +-2.083262,52.509242 +-1.993492,52.586386 +-2.019145,52.621921 +-1.826803,52.400438 +-1.887051,52.46291 +-2.083122,52.599005 +-2.042378,52.481601 +-1.855485,52.501964 +-1.811983,52.477675 +-1.843926,52.496457 +-1.891415,52.454221 +-2.12143,52.618741 +-1.850243,52.505698 +-2.126692,52.589348 +-1.996321,52.463251 +-1.523074,52.423832 +-2.154981,52.595652 +-2.058609,52.573381 +-1.860162,52.467206 +-1.767971,52.509251 +-1.853456,52.527349 +-2.000694,52.57363 +-1.809933,52.403163 +-2.00003,52.493979 +-1.899758,52.53868 +-2.13057,52.617697 +-1.977256,52.557913 +-1.868431,52.488261 +-2.057887,52.540578 +-1.589984,52.398407 +-1.891453,52.486504 +-2.068347,52.47811 +-2.088439,52.482852 +-1.997134,52.40648 +-1.779081,52.482644 +-1.846266,52.488351 +-1.874455,52.513718 +-1.837896,52.449836 +-1.779628,52.482294 +-2.057795,52.560113 +-2.101449,52.537204 +-1.990461,52.610361 +-2.116294,52.442041 +-2.063849,52.503311 +-2.012315,52.395745 +-1.994074,52.538048 +-1.45264,52.436473 +-1.892386,52.423925 +-1.798422,52.474803 +-1.923938,52.641037 +-2.104367,52.604787 +-1.865099,52.450616 +-2.15305,52.592103 +-1.519415,52.405944 +-1.887475,52.452689 +-1.847164,52.492946 +-1.892313,52.423835 +-1.872536,52.458778 +-2.051214,52.583588 +-1.852448,52.537983 +-1.966791,52.449034 +-2.132704,52.561275 +-1.881599,52.564176 +-2.11183,52.624701 +-1.94703,52.449278 +-1.903265,52.499091 +-1.527063,52.408367 +-1.854315,52.468152 +-2.113063,52.49575 +-2.106677,52.449889 +-2.112821,52.590818 +-1.807757,52.477929 +-1.879121,52.494026 +-1.747415,52.465958 +-2.1517,52.598757 +-1.978987,52.60938 +-2.080918,52.604365 +-1.87239,52.488849 +-1.892663,52.436988 +-1.964859,52.603488 +-1.732955,52.452244 +-1.998412,52.404412 +-2.174686,52.587201 +-2.07711,52.563715 +-2.086505,52.495053 +-1.859025,52.509925 +-1.989841,52.477806 +-1.842031,52.490782 +-1.798702,52.513317 +-1.569278,52.422391 +-1.943491,52.536641 +-1.808907,52.467341 +-1.806632,52.522868 +-1.990792,52.508704 +-2.130394,52.583302 +-1.848772,52.513508 +-1.83311,52.443042 +-2.04687,52.454926 +-1.856379,52.467138 +-2.019779,52.489779 +-1.925891,52.499647 +-1.478154,52.385991 +-2.001415,52.504614 +-2.09662,52.533594 +-1.935386,52.503464 +-1.820342,52.507679 +-1.983282,52.577422 +-2.12737,52.472074 +-1.83689,52.467032 +-1.839079,52.423955 +-2.108256,52.51769 +-2.084917,52.610969 +-1.849168,52.466734 +-1.840733,52.474949 +-1.547811,52.439365 +-1.974159,52.607231 +-2.148276,52.594707 +-1.80891,52.466505 +-2.014196,52.575543 +-1.988757,52.572883 +-1.901129,52.538888 +-1.840634,52.522928 +-1.498027,52.407258 +-1.865082,52.442021 +-1.883988,52.553184 +-1.75192,52.478823 +-1.822111,52.492857 +-1.937161,52.623192 +-2.009926,52.487884 +-1.853028,52.434734 +-1.939683,52.647375 +-1.883694,52.54165 +-1.834705,52.547525 +-1.481994,52.444525 +-2.086697,52.495395 +-1.889731,52.533475 +-1.997183,52.564999 +-2.082821,52.611555 +-2.160711,52.612086 +-1.954033,52.478319 +-1.887301,52.463198 +-2.081411,52.567902 +-1.887378,52.502143 +-1.94538,52.487098 +-2.125436,52.619707 +-2.153818,52.587922 +-1.857157,52.513258 +-2.004594,52.61447 +-2.182646,52.584761 +-2.128572,52.596052 +-1.743236,52.478328 +-1.836961,52.515695 +-2.107041,52.496556 +-1.944615,52.474818 +-1.884785,52.55314 +-1.962066,52.486116 +-1.889656,52.445184 +-1.8105,52.466579 +-1.806283,52.438038 +-1.987976,52.460617 +-2.067078,52.582178 +-2.06906,52.529038 +-1.886745,52.490626 +-2.078955,52.58057 +-1.79835,52.429278 +-1.842457,52.528279 +-1.851635,52.406989 +-1.99634,52.408997 +-2.066888,52.477473 +-1.899299,52.442415 +-1.975188,52.484672 +-1.809735,52.48356 +-1.875964,52.543251 +-1.956107,52.495598 +-2.051813,52.578374 +-1.843838,52.521368 +-1.78746,52.473355 +-1.901236,52.484229 +-2.115976,52.566929 +-2.104625,52.502905 +-1.842163,52.429074 +-2.024958,52.582743 +-1.7961,52.502623 +-1.802126,52.420105 +-2.011657,52.462136 +-2.114566,52.620321 +-1.912913,52.409657 +-1.898258,52.530489 +-1.875917,52.507327 +-1.832519,52.587149 +-1.785026,52.37757 +-1.965987,52.538349 +-2.003501,52.613176 +-1.46211,52.434259 +-1.857741,52.418908 +-1.92292,52.615146 +-1.911033,52.49667 +-1.806713,52.487709 +-1.893222,52.479502 +-1.853549,52.477186 +-2.057571,52.479842 +-1.988963,52.576731 +-1.778389,52.415119 +-1.985314,52.590215 +-1.895677,52.512588 +-1.464069,52.441335 +-1.891021,52.482566 +-2.061239,52.544244 +-2.138795,52.444426 +-1.514414,52.404899 +-1.854917,52.473214 +-2.103591,52.601632 +-1.886735,52.431382 +-1.921677,52.483471 +-1.865742,52.476607 +-1.827147,52.417771 +-2.024366,52.528417 +-1.911479,52.472577 +-1.781028,52.479105 +-2.124493,52.610107 +-1.726313,52.469831 +-2.017942,52.535322 +-1.996979,52.52032 +-1.859311,52.447687 +-1.811155,52.526759 +-1.970141,52.477946 +-2.112866,52.579787 +-1.845015,52.488116 +-2.087519,52.50869 +-2.01485,52.503427 +-1.872598,52.503746 +-1.901669,52.461871 +-1.836863,52.470574 +-1.816473,52.499096 +-2.035232,52.531003 +-1.793047,52.456167 +-1.899822,52.504078 +-1.921986,52.600214 +-2.075519,52.590461 +-1.894086,52.463034 +-1.731471,52.37676 +-2.104128,52.603708 +-1.793893,52.55245 +-1.903527,52.473686 +-1.920426,52.499401 +-1.877908,52.453336 +-2.004684,52.488909 +-2.109342,52.509715 +-1.514278,52.410616 +-1.743384,52.488424 +-1.977522,52.498922 +-1.879664,52.489396 +-1.485698,52.429671 +-1.973699,52.511201 +-2.131115,52.617049 +-1.889366,52.508303 +-1.995864,52.470569 +-1.985015,52.513253 +-1.85725,52.548498 +-1.870929,52.459954 +-1.734225,52.441656 +-2.029557,52.465423 +-2.149611,52.45814 +-1.968201,52.638262 +-1.88325,52.498003 +-1.815877,52.490249 +-1.898864,52.484982 +-1.877764,52.526792 +-1.874339,52.492429 +-1.902181,52.476588 +-1.840597,52.586045 +-1.790876,52.563413 +-1.746924,52.471953 +-2.073209,52.603588 +-2.047748,52.599546 +-2.074707,52.495385 +-1.844633,52.542351 +-1.957469,52.47325 +-1.86565,52.472741 +-1.713531,52.452378 +-1.946399,52.496646 +-2.122087,52.605129 +-1.927838,52.407402 +-2.170599,52.504059 +-2.112973,52.500775 +-2.012434,52.501674 +-1.824197,52.486666 +-1.773188,52.466001 +-2.062236,52.478113 +-1.86732,52.524678 +-1.736967,52.480292 +-2.147613,52.524893 +-2.092103,52.516841 +-1.917703,52.450475 +-1.886792,52.460734 +-2.074341,52.583756 +-2.003066,52.523682 +-2.080231,52.600365 +-1.887285,52.463513 +-2.079853,52.473797 +-1.897237,52.431131 +-1.831276,52.484213 +-1.883507,52.556941 +-1.974635,52.394394 +-1.984206,52.46815 +-1.988719,52.608581 +-1.492163,52.408465 +-1.494617,52.435544 +-1.918455,52.505854 +-1.901066,52.468416 +-1.978752,52.452749 +-2.129766,52.620512 +-1.931521,52.544735 +-2.002521,52.524365 +-1.870814,52.47396 +-1.872935,52.48885 +-2.089268,52.550186 +-1.862702,52.459783 +-1.986395,52.625482 +-1.906723,52.472906 +-1.894449,52.46538 +-1.92762,52.478045 +-1.54617,52.404369 +-1.853838,52.443177 +-1.869439,52.440974 +-1.837994,52.43511 +-1.840688,52.438521 +-1.838296,52.452884 +-2.047453,52.544924 +-2.116618,52.608695 +-1.829428,52.485963 +-1.875977,52.485895 +-1.78255,52.415207 +-1.784346,52.447808 +-1.832822,52.554094 +-1.957352,52.549322 +-1.444698,52.408251 +-1.890081,52.404397 +-1.943587,52.472795 +-2.108864,52.584466 +-1.471123,52.393997 +-1.888653,52.475615 +-1.80011,52.465996 +-2.005577,52.562041 +-2.152366,52.450495 +-1.827923,52.513183 +-1.819644,52.487459 +-1.940835,52.471768 +-1.986836,52.532473 +-1.787686,52.460167 +-2.037557,52.509157 +-1.513804,52.418957 +-1.88757,52.502152 +-1.906446,52.499831 +-1.761272,52.481198 +-1.898252,52.482078 +-2.125196,52.587371 +-2.062711,52.542472 +-1.887109,52.46345 +-2.131213,52.457506 +-2.097296,52.552436 +-1.504877,52.395501 +-1.948499,52.565492 +-1.932867,52.503436 +-1.953664,52.507941 +-1.468772,52.433121 +-1.907266,52.51587 +-2.013761,52.553797 +-2.087599,52.512124 +-2.126115,52.62973 +-2.10464,52.502707 +-2.120621,52.480235 +-2.028151,52.499604 +-1.81372,52.404463 +-1.782522,52.450718 +-1.982009,52.512111 +-1.910321,52.455783 +-1.931517,52.471745 +-1.855908,52.467291 +-1.789965,52.556498 +-2.120429,52.480055 +-2.041752,52.597679 +-1.875726,52.413058 +-1.915882,52.4951 +-2.002848,52.566123 +-1.844175,52.521701 +-2.131906,52.605155 +-1.559199,52.405254 +-1.930883,52.510024 +-2.072676,52.487529 +-2.063848,52.492838 +-1.765786,52.42412 +-2.056618,52.608227 +-2.12909,52.59669 +-1.91971,52.43113 +-1.99423,52.586197 +-2.103911,52.555829 +-1.82435,52.396523 +-2.003615,52.566923 +-1.53181,52.414031 +-1.76834,52.528922 +-1.885991,52.463008 +-2.071379,52.540957 +-1.54408,52.394643 +-1.835152,52.463443 +-1.969818,52.476364 +-1.877184,52.465076 +-1.735884,52.388052 +-1.79607,52.483564 +-1.826512,52.557177 +-1.813783,52.420897 +-1.896614,52.470866 +-1.933225,52.412925 +-1.903399,52.498561 +-1.91728,52.598287 +-1.445363,52.430235 +-1.834613,52.48963 +-2.050275,52.459609 +-1.988019,52.577315 +-1.988702,52.44181 +-1.791309,52.484428 +-2.027813,52.570794 +-2.011495,52.462136 +-1.826304,52.49013 +-1.834936,52.403074 +-2.00252,52.504363 +-1.958912,52.48919 +-1.930906,52.645635 +-1.897233,52.464304 +-1.790737,52.421839 +-2.045383,52.539972 +-1.502799,52.4418 +-1.99598,52.48311 +-1.986696,52.608698 +-1.925206,52.486161 +-2.094699,52.517845 +-1.984021,52.61366 +-1.960063,52.436634 +-2.129955,52.534614 +-2.083204,52.510015 +-1.487051,52.44612 +-2.145136,52.457705 +-1.825623,52.468886 +-1.797038,52.446006 +-1.978167,52.564692 +-1.876068,52.490265 +-1.87037,52.504768 +-1.887051,52.462874 +-1.908892,52.506593 +-2.058496,52.533026 +-1.85993,52.433556 +-1.739661,52.385381 +-1.877,52.520526 +-1.99975,52.495211 +-1.893948,52.471574 +-1.892538,52.47035 +-1.920213,52.535621 +-2.000664,52.538111 +-1.86596,52.472642 +-1.744886,52.488383 +-1.901329,52.508574 +-1.982413,52.460203 +-1.837215,52.466907 +-1.85709,52.433804 +-2.001807,52.385254 +-1.864225,52.471957 +-2.151254,52.610714 +-1.976273,52.43663 +-1.945605,52.460111 +-1.99659,52.406839 +-1.959035,52.483229 +-1.901476,52.515388 +-2.021665,52.401614 +-1.919801,52.470264 +-1.991271,52.393345 +-1.950747,52.507229 +-1.867625,52.49164 +-1.882873,52.462205 +-1.492391,52.415496 +-1.518586,52.425396 +-1.811159,52.487923 +-1.622374,52.455539 +-1.922299,52.565055 +-2.137867,52.584939 +-1.718251,52.365149 +-1.920508,52.609571 +-1.792393,52.567182 +-1.991256,52.393354 +-1.493473,52.436564 +-1.880534,52.483617 +-2.141145,52.585322 +-1.895637,52.492216 +-1.974337,52.554595 +-1.970359,52.415996 +-2.085737,52.569391 +-2.071108,52.564852 +-1.831499,52.460282 +-1.945532,52.435199 +-1.787333,52.481526 +-2.143988,52.588249 +-1.958535,52.435169 +-2.144382,52.568723 +-2.105482,52.583426 +-1.898479,52.575501 +-1.923939,52.495438 +-1.976976,52.557311 +-1.849176,52.537637 +-2.127939,52.576392 +-2.019649,52.593513 +-1.874041,52.550549 +-2.051215,52.609299 +-1.846938,52.451897 +-1.978344,52.444604 +-1.451316,52.443596 +-1.998071,52.487174 +-1.86008,52.446538 +-2.054145,52.567144 +-1.876684,52.459601 +-1.912939,52.508664 +-1.523875,52.419061 +-1.983949,52.44341 +-1.90159,52.444637 +-1.959898,52.473736 +-1.908651,52.416405 +-1.854829,52.473061 +-1.946268,52.471618 +-2.037752,52.529573 +-1.493164,52.435305 +-1.832362,52.589864 +-2.124341,52.56701 +-1.929278,52.545767 +-1.944177,52.471662 +-1.870868,52.495752 +-2.145792,52.571517 +-1.905565,52.457083 +-1.876675,52.431336 +-1.838723,52.521424 +-2.019787,52.572136 +-2.002835,52.385613 +-1.686366,52.444164 +-1.891797,52.514427 +-2.040739,52.476406 +-2.107032,52.583587 +-1.903574,52.526583 +-2.105328,52.593279 +-2.090949,52.543056 +-1.475303,52.408301 +-1.887759,52.468287 +-1.877589,52.536825 +-1.985076,52.416916 +-1.784219,52.413493 +-2.104429,52.612482 +-1.463657,52.443796 +-1.958068,52.509497 +-1.819339,52.508037 +-1.666825,52.434797 +-2.188248,52.593698 +-1.857939,52.531364 +-2.029844,52.476679 +-1.838806,52.603726 +-1.869731,52.556549 +-2.002559,52.424541 +-1.485778,52.450646 +-1.939522,52.495591 +-1.901954,52.512404 +-1.87956,52.446406 +-1.852224,52.51246 +-1.78702,52.463941 +-1.941053,52.55132 +-1.933559,52.55306 +-1.861845,52.48926 +-1.526911,52.417059 +-1.931321,52.502904 +-1.531273,52.438293 +-2.111931,52.606497 +-2.010569,52.586592 +-1.507213,52.394207 +-1.735542,52.408414 +-1.526055,52.428294 +-2.095239,52.515552 +-2.011867,52.529408 +-2.13172,52.567704 +-1.986582,52.495875 +-2.029122,52.475933 +-1.96049,52.486691 +-1.859421,52.533667 +-2.012637,52.491093 +-1.98607,52.57922 +-2.095614,52.572467 +-1.913499,52.516018 +-2.110223,52.479202 +-1.885458,52.458504 +-2.069991,52.576575 +-1.887853,52.471955 +-1.880162,52.403641 +-1.795515,52.517599 +-1.99925,52.442611 +-1.852268,52.512452 +-2.119231,52.489055 +-1.973125,52.412743 +-2.03569,52.4779 +-1.927064,52.609575 +-2.031861,52.496861 +-1.831373,52.504863 +-2.05855,52.573471 +-1.868896,52.510251 +-1.887477,52.492254 +-2.073386,52.594751 +-2.033431,52.489417 +-1.904712,52.504423 +-1.782014,52.503084 +-1.521595,52.419115 +-2.010669,52.513694 +-1.920676,52.639219 +-1.956147,52.500039 +-1.922206,52.467451 +-1.493599,52.387011 +-1.886246,52.49548 +-1.8731,52.457151 +-1.903047,52.471186 +-1.930126,52.513557 +-1.916061,52.602691 +-2.139876,52.585476 +-1.992446,52.574726 +-1.824195,52.480004 +-2.040025,52.565082 +-1.869289,52.456968 +-1.886007,52.456931 +-2.088056,52.475247 +-1.870503,52.539856 +-1.905632,52.487568 +-1.915915,52.439138 +-2.117459,52.49277 +-2.090139,52.500408 +-1.992053,52.546363 +-1.874752,52.419413 +-1.796077,52.507586 +-2.122791,52.587904 +-2.128468,52.610948 +-2.17987,52.577367 +-1.817085,52.476029 +-1.499161,52.448653 +-2.011095,52.509423 +-2.074513,52.554763 +-2.106114,52.546001 +-1.538504,52.416368 +-1.469339,52.420196 +-1.744016,52.473404 +-2.068431,52.617291 +-2.067075,52.561465 +-1.828845,52.454012 +-2.074992,52.507009 +-1.922506,52.472243 +-1.821449,52.485439 +-1.739484,52.490394 +-1.947033,52.644412 +-2.076445,52.56323 +-1.506155,52.420517 +-1.882605,52.485731 +-2.182055,52.502685 +-1.821079,52.493089 +-2.118451,52.614869 +-1.948597,52.5065 +-2.167769,52.495928 +-1.491096,52.425802 +-1.985457,52.513612 +-1.498247,52.417715 +-1.808309,52.479512 +-1.965631,52.502838 +-1.940624,52.486323 +-1.742007,52.482039 +-1.811889,52.465377 +-2.015177,52.595977 +-1.74814,52.491177 +-2.022937,52.585044 +-1.980515,52.627818 +-2.064513,52.484028 +-1.556434,52.402529 +-2.138935,52.568091 +-1.738116,52.477769 +-2.019741,52.503093 +-1.905964,52.469894 +-1.781917,52.454151 +-1.967539,52.634369 +-1.967788,52.474341 +-2.126929,52.49775 +-1.985962,52.592975 +-1.882174,52.542457 +-2.111961,52.606479 +-1.936002,52.464664 +-1.848958,52.424858 +-1.784152,52.481476 +-2.150632,52.489676 +-1.930659,52.427163 +-1.934137,52.39232 +-2.068756,52.589081 +-1.950079,52.4993 +-1.915128,52.496844 +-1.982588,52.538415 +-2.039867,52.585885 +-1.891185,52.475797 +-1.521214,52.420372 +-1.947165,52.471726 +-2.11435,52.6109 +-2.09543,52.508253 +-1.86859,52.409976 +-1.842369,52.428985 +-1.870356,52.504759 +-1.866723,52.43422 +-1.741066,52.501931 +-2.107175,52.605962 +-1.776384,52.509411 +-1.925837,52.531318 +-1.767198,52.468759 +-1.965715,52.413442 +-1.888408,52.426718 +-1.98054,52.571282 +-1.824109,52.53113 +-2.002113,52.608914 +-1.775901,52.421713 +-2.010761,52.586637 +-2.159964,52.605812 +-1.871255,52.458903 +-2.130556,52.617841 +-1.856481,52.503638 +-1.793892,52.454919 +-1.941368,52.53602 +-1.907202,52.455304 +-2.013106,52.434213 +-1.997747,52.497575 +-1.486345,52.410714 +-1.918728,52.461228 +-1.829848,52.430415 +-1.843427,52.441887 +-1.880828,52.494711 +-1.485699,52.451104 +-1.836084,52.470222 +-2.130138,52.601426 +-1.947831,52.506248 +-2.138871,52.585163 +-2.016074,52.585009 +-2.010283,52.503014 +-1.857786,52.487224 +-1.883816,52.467528 +-1.904369,52.458592 +-2.05617,52.569562 +-2.001753,52.486796 +-1.772761,52.466135 +-2.031167,52.617999 +-1.770752,52.478852 +-1.99769,52.452913 +-1.870172,52.492101 +-1.871457,52.470455 +-1.835245,52.513499 +-1.806777,52.449555 +-1.872391,52.473521 +-1.938537,52.44086 +-1.673286,52.432361 +-2.143118,52.574882 +-1.833604,52.518846 +-1.881722,52.501939 +-2.157567,52.596233 +-1.49463,52.444723 +-1.839359,52.512722 +-1.965994,52.413352 +-1.889565,52.475786 +-1.821616,52.465796 +-2.088063,52.552524 +-1.728407,52.440429 +-1.938044,52.488434 +-1.892442,52.485579 +-1.999233,52.606973 +-1.959043,52.458687 +-1.74563,52.499829 +-1.876684,52.459601 +-1.498343,52.409228 +-2.005439,52.525399 +-1.800389,52.54117 +-2.041926,52.593606 +-1.969925,52.536722 +-2.096703,52.551376 +-2.06789,52.563568 +-1.907776,52.405895 +-1.935603,52.415021 +-1.97977,52.57637 +-1.64185,52.421985 +-2.128161,52.450497 +-1.987563,52.568667 +-1.824655,52.497482 +-2.076969,52.483067 +-1.98468,52.586412 +-1.555231,52.390523 +-2.04742,52.473976 +-1.902573,52.512459 +-2.12818,52.53778 +-1.99894,52.477438 +-1.93671,52.44316 +-1.916152,52.516173 +-1.791767,52.509223 +-1.887867,52.471964 +-2.006267,52.443707 +-1.813674,52.443291 +-1.525145,52.411712 +-1.824366,52.440691 +-1.984509,52.483766 +-1.959067,52.447971 +-1.719141,52.426212 +-2.021198,52.530261 +-1.497857,52.391183 +-2.103547,52.601659 +-1.811859,52.465404 +-2.066296,52.562823 +-1.78606,52.534601 +-1.858584,52.509636 +-1.938903,52.581363 +-1.521962,52.405613 +-2.068195,52.570023 +-1.938888,52.581363 +-1.845258,52.490282 +-1.797518,52.501781 +-1.830662,52.433059 +-1.976413,52.506275 +-2.122754,52.584992 +-1.48022,52.415272 +-2.013194,52.435921 +-1.829318,52.41541 +-1.899055,52.555931 +-1.79401,52.454874 +-1.771793,52.414198 +-1.951502,52.491245 +-2.024843,52.562273 +-2.123813,52.568207 +-1.479327,52.429868 +-2.134814,52.475257 +-2.056707,52.608209 +-1.841598,52.496499 +-1.947929,52.486272 +-1.942435,52.452459 +-1.945104,52.4837 +-2.165312,52.567338 +-1.842348,52.406186 +-1.861932,52.456698 +-1.904616,52.487675 +-1.904839,52.493555 +-1.929938,52.501717 +-1.811211,52.46561 +-1.883913,52.475196 +-1.856706,52.443441 +-2.161389,52.607914 +-1.780696,52.510444 +-2.016647,52.578456 +-1.855683,52.594488 +-2.039739,52.54268 +-1.458732,52.4447 +-1.758479,52.472301 +-1.809602,52.398307 +-1.892166,52.465711 +-1.890771,52.476318 +-1.894753,52.492135 +-1.886037,52.525308 +-1.937227,52.503789 +-2.160895,52.465093 +-1.911589,52.409989 +-1.899311,52.476119 +-1.855074,52.501478 +-1.913645,52.471824 +-1.88295,52.466448 +-1.901684,52.46188 +-1.815994,52.391431 +-1.734833,52.484998 +-1.900715,52.519775 +-1.891827,52.484068 +-1.882071,52.542035 +-1.836294,52.520854 +-1.564027,52.42247 +-1.894219,52.432333 +-2.082452,52.470505 +-2.073741,52.498847 +-2.057658,52.545513 +-1.8504,52.441986 +-1.808019,52.465056 +-2.053255,52.478118 +-1.562115,52.391294 +-2.109837,52.454408 +-1.837196,52.515866 +-2.15254,52.50056 +-1.997699,52.580722 +-1.941972,52.503126 +-1.958579,52.435151 +-2.061146,52.540531 +-2.048146,52.545149 +-1.84697,52.442629 +-1.873221,52.584116 +-1.771551,52.506588 +-1.982101,52.576865 +-1.644436,52.393 +-1.986029,52.475234 +-1.854629,52.453139 +-1.876834,52.479666 +-1.9327,52.623126 +-1.808896,52.524364 +-1.94953,52.476366 +-1.894642,52.470685 +-1.841961,52.46498 +-2.05425,52.579955 +-2.15306,52.468034 +-1.923004,52.431375 +-1.577064,52.398523 +-1.511321,52.449396 +-2.002934,52.5237 +-1.445216,52.425542 +-1.935628,52.458568 +-1.885296,52.458692 +-1.863735,52.540037 +-1.847978,52.508877 +-1.848032,52.49737 +-1.870868,52.495761 +-1.882335,52.454158 +-1.909872,52.502962 +-1.940585,52.504662 +-1.988858,52.465148 +-2.120771,52.583205 +-1.831588,52.55295 +-1.929992,52.411889 +-1.970368,52.534763 +-1.859641,52.464337 +-2.106371,52.450968 +-1.892876,52.440009 +-1.737423,52.420923 +-2.097142,52.469558 +-1.912643,52.494523 +-1.855561,52.600161 +-1.483966,52.444462 +-2.025073,52.551647 +-1.922623,52.632532 +-1.925119,52.476641 +-1.940837,52.59128 +-1.859579,52.470136 +-1.502342,52.413093 +-2.034238,52.504052 +-1.846065,52.465885 +-1.833943,52.510989 +-2.118222,52.46437 +-2.022385,52.517405 +-1.859231,52.509979 +-2.120721,52.565054 +-1.822833,52.551427 +-1.777201,52.461388 +-2.05544,52.505734 +-1.986807,52.530675 +-1.852348,52.506186 +-2.155575,52.467545 +-2.070128,52.47792 +-1.859669,52.464886 +-2.03329,52.555744 +-1.917937,52.435444 +-1.769461,52.373432 +-1.928999,52.637202 +-1.879036,52.455117 +-1.922153,52.472117 +-1.903101,52.459904 +-2.132886,52.587507 +-1.917684,52.547746 +-1.866942,52.454601 +-1.929505,52.486829 +-1.825974,52.450655 +-1.900955,52.518013 +-1.884526,52.477409 +-1.899042,52.451962 +-1.790924,52.47559 +-2.083001,52.511462 +-1.934381,52.624907 +-1.853775,52.46237 +-1.780386,52.415608 +-1.796411,52.53737 +-2.113295,52.511473 +-1.569106,52.421887 +-1.998927,52.395808 +-2.034801,52.601052 +-1.908715,52.506692 +-1.969423,52.494425 +-1.812395,52.443118 +-2.145759,52.472619 +-2.018851,52.488593 +-1.873608,52.454581 +-2.022889,52.493698 +-2.006005,52.565287 +-1.81511,52.546822 +-1.982159,52.581027 +-1.811406,52.52675 +-1.859237,52.498714 +-1.963225,52.42022 +-1.821492,52.485691 +-1.891547,52.508161 +-1.475205,52.442598 +-1.908066,52.492559 +-1.905315,52.436361 +-2.025945,52.581115 +-1.919042,52.499067 +-1.893044,52.486326 +-2.061751,52.478231 +-1.896769,52.524446 +-1.89434,52.492269 +-1.719459,52.480477 +-2.094005,52.544636 +-1.968828,52.482405 +-1.966285,52.475725 +-1.948652,52.458853 +-2.161598,52.460057 +-1.808528,52.496998 +-2.073736,52.513257 +-1.837265,52.509249 +-2.02941,52.531796 +-1.959202,52.397375 +-1.816144,52.461518 +-1.973657,52.409273 +-1.905131,52.487873 +-1.83412,52.511016 +-2.091213,52.499868 +-1.964409,52.613215 +-1.859408,52.509988 +-1.819015,52.561742 +-1.823205,52.558053 +-1.929402,52.486802 +-2.168865,52.57047 +-2.059545,52.59973 +-1.908932,52.49443 +-1.938059,52.488659 +-2.171906,52.582162 +-1.847432,52.466282 +-1.753872,52.482702 +-2.029754,52.560833 +-1.994747,52.456563 +-2.107056,52.557192 +-1.975747,52.511417 +-1.869664,52.429575 +-1.972532,52.493608 +-1.886204,52.512021 +-1.961625,52.400126 +-1.786129,52.380449 +-1.891523,52.470169 +-1.862611,52.507996 +-1.924577,52.397609 +-1.980605,52.454422 +-2.027997,52.4894 +-1.942217,52.56396 +-2.043083,52.525148 +-2.153196,52.604428 +-1.971191,52.470647 +-1.898337,52.502665 +-1.892808,52.486424 +-2.015622,52.479217 +-1.996502,52.598342 +-1.900967,52.446579 +-1.894339,52.511184 +-1.472502,52.379412 +-1.854872,52.473205 +-1.834324,52.480154 +-1.574115,52.423999 +-1.819855,52.446528 +-2.099393,52.573543 +-2.091185,52.543155 +-1.875604,52.472078 +-1.462715,52.424463 +-1.8828,52.495531 +-1.981066,52.581395 +-1.996817,52.524203 +-1.717375,52.444791 +-1.895678,52.499507 +-1.803732,52.499013 +-2.007951,52.396707 +-1.933098,52.545634 +-1.947088,52.487558 +-1.94665,52.545174 +-1.919123,52.40611 +-1.933947,52.441307 +-1.859182,52.548267 +-1.823977,52.479222 +-1.883467,52.465999 +-2.046622,52.609678 +-2.107912,52.557668 +-1.895877,52.496541 +-2.050741,52.595518 +-1.971298,52.510967 +-1.832579,52.517199 +-1.493677,52.431594 +-2.103385,52.457893 +-2.170015,52.486467 +-1.837379,52.422289 +-1.933151,52.579086 +-1.854654,52.477007 +-1.483365,52.415385 +-2.077653,52.436957 +-2.013536,52.445154 +-2.0063,52.467531 +-1.796419,52.481174 +-1.906972,52.550804 +-1.837176,52.509276 +-2.188077,52.501956 +-1.821996,52.492039 +-1.840651,52.40791 +-1.953443,52.508039 +-1.873471,52.456127 +-1.844987,52.521387 +-1.762699,52.470368 +-1.45731,52.409533 +-1.860372,52.447203 +-1.964657,52.505005 +-1.910468,52.45581 +-1.786366,52.559575 +-1.796055,52.483573 +-1.985873,52.503022 +-1.806057,52.462724 +-1.894155,52.434544 +-2.1167,52.528631 +-1.987147,52.47883 +-1.83873,52.527609 +-2.097583,52.54893 +-1.977595,52.498976 +-1.81862,52.478639 +-1.95073,52.549338 +-1.977728,52.586986 +-2.004707,52.434708 +-2.054549,52.488842 +-1.967346,52.43447 +-1.997204,52.463009 +-1.754103,52.467617 +-2.090308,52.539442 +-1.800439,52.406258 +-2.012582,52.453083 +-1.834016,52.511169 +-1.845199,52.423055 +-1.861298,52.489889 +-1.987248,52.588408 +-1.876769,52.455672 +-1.93084,52.414784 +-1.86224,52.471191 +-1.867807,52.455527 +-1.460219,52.431347 +-2.155372,52.576728 +-1.991319,52.526522 +-1.854162,52.44315 +-2.122753,52.621526 +-1.86898,52.457057 +-1.485293,52.430353 +-1.878234,52.468664 +-1.932235,52.646526 +-1.434914,52.396248 +-2.071576,52.508126 +-1.866106,52.409712 +-1.911967,52.537952 +-1.866758,52.457019 +-1.510829,52.410135 +-1.972813,52.491747 +-2.134746,52.577904 +-1.830466,52.480346 +-1.770661,52.479302 +-1.908654,52.457544 +-1.939377,52.504401 +-1.460399,52.404548 +-1.84593,52.504676 +-1.796656,52.477821 +-1.953347,52.472772 +-1.90213,52.539347 +-1.86149,52.470902 +-1.954083,52.487048 +-1.918036,52.541094 +-2.122322,52.636638 +-1.945092,52.600236 +-1.822918,52.405349 +-2.082864,52.595275 +-1.943817,52.465018 +-1.885938,52.454998 +-1.82273,52.404693 +-1.773017,52.553725 +-2.158333,52.57533 +-2.113125,52.468178 +-1.86726,52.4417 +-1.920992,52.421754 +-2.139881,52.457316 +-1.881262,52.514228 +-2.044544,52.526865 +-1.852226,52.485419 +-1.862224,52.509173 +-1.510229,52.445724 +-1.875071,52.509466 +-1.495602,52.444584 +-1.823675,52.462536 +-1.857046,52.470375 +-1.815691,52.467855 +-1.920265,52.604995 +-1.771687,52.451686 +-1.919296,52.472933 +-1.893558,52.48691 +-2.074535,52.454813 +-1.931405,52.476977 +-2.010197,52.513855 +-1.776743,52.464669 +-2.138101,52.457489 +-1.800745,52.387307 +-1.492714,52.434754 +-2.110247,52.559356 +-2.124967,52.486406 +-1.937388,52.442549 +-1.876251,52.456723 +-1.873466,52.488572 +-1.804296,52.521345 +-2.037561,52.51403 +-2.112959,52.478148 +-1.846375,52.529165 +-1.846081,52.520337 +-2.035969,52.530653 +-1.864381,52.50736 +-2.048839,52.585081 +-2.108267,52.599821 +-2.131272,52.457488 +-1.96704,52.490037 +-1.995087,52.433036 +-2.066448,52.507463 +-1.887957,52.448266 +-1.870433,52.458191 +-1.940925,52.514857 +-2.007636,52.529939 +-1.54014,52.427297 +-2.151333,52.479399 +-2.008257,52.461984 +-2.099437,52.501821 +-2.083836,52.509052 +-1.903789,52.45478 +-1.824788,52.497374 +-1.921374,52.430151 +-1.79839,52.475361 +-2.015134,52.515311 +-2.040702,52.61084 +-1.891608,52.465504 +-1.803513,52.518503 +-2.098649,52.603443 +-1.869173,52.436596 +-1.486867,52.42146 +-1.874543,52.472598 +-1.82547,52.46271 +-1.842595,52.526724 +-1.84361,52.510768 +-2.082055,52.549373 +-2.103367,52.587905 +-1.506436,52.434866 +-2.073896,52.503234 +-2.109727,52.528315 +-1.936564,52.545412 +-1.833102,52.480152 +-1.823807,52.562387 +-1.915484,52.441286 +-1.897608,52.512212 +-1.872163,52.424777 +-2.173,52.586367 +-1.472634,52.379422 +-2.103292,52.600113 +-1.956964,52.401311 +-1.859532,52.498805 +-1.536299,52.406542 +-1.819789,52.506078 +-1.649293,52.39199 +-1.912866,52.560832 +-1.82282,52.565568 +-1.961027,52.411031 +-2.138754,52.599367 +-1.504896,52.447617 +-1.456596,52.394588 +-2.063896,52.566339 +-2.114004,52.574572 +-1.980703,52.567991 +-1.98835,52.552125 +-1.737121,52.496412 +-1.991176,52.502753 +-2.170345,52.50317 +-2.065813,52.565646 +-1.834547,52.444203 +-1.906291,52.489393 +-1.978852,52.459393 +-2.106775,52.557139 +-1.857535,52.418908 +-2.104071,52.530243 +-1.969453,52.536974 +-1.974186,52.510958 +-1.901693,52.444575 +-1.997317,52.538713 +-1.901083,52.467436 +-2.00424,52.617392 +-1.954297,52.494177 +-1.87686,52.459655 +-1.509363,52.385882 +-1.859472,52.475718 +-2.005256,52.475307 +-2.007897,52.583356 +-2.005455,52.530496 +-1.512922,52.412229 +-1.988865,52.614164 +-2.10178,52.610021 +-1.781456,52.496799 +-1.556448,52.402565 +-1.937839,52.498638 +-1.879629,52.518443 +-1.900644,52.433309 +-2.045255,52.444229 +-1.821805,52.561288 +-1.947666,52.459249 +-2.103926,52.555838 +-1.885687,52.512336 +-2.105022,52.502383 +-1.950833,52.429924 +-1.914772,52.482523 +-1.858326,52.429257 +-1.835984,52.536667 +-2.02136,52.560583 +-2.132822,52.581052 +-1.460238,52.386369 +-2.136523,52.575178 +-1.971509,52.480931 +-2.07375,52.504052 +-1.971978,52.460416 +-1.975056,52.43022 +-1.514063,52.448931 +-1.999573,52.502583 +-1.908328,52.501594 +-2.140909,52.516559 +-1.895684,52.497098 +-1.895301,52.497152 +-1.860696,52.470614 +-1.823725,52.479599 +-1.901489,52.489776 +-2.029479,52.547429 +-2.015594,52.48355 +-1.481862,52.390548 +-1.779534,52.48634 +-1.999087,52.50269 +-1.897528,52.540332 +-1.82744,52.512283 +-2.13192,52.585332 +-2.087892,52.518426 +-1.572153,52.392662 +-1.51714,52.396244 +-1.795966,52.521861 +-1.897333,52.535585 +-1.898753,52.423841 +-1.872921,52.478565 +-1.889912,52.508204 +-1.982141,52.588443 +-2.078867,52.498915 +-1.977438,52.431074 +-1.898795,52.502243 +-2.040904,52.527891 +-1.89747,52.539712 +-2.063606,52.478005 +-2.031351,52.587371 +-1.89902,52.442271 +-1.866107,52.545551 +-1.943991,52.490919 +-2.12632,52.50096 +-2.149673,52.463282 +-1.985491,52.590754 +-1.933835,52.496514 +-2.067349,52.480277 +-2.106788,52.501842 +-1.993477,52.584858 +-1.899451,52.479256 +-1.86896,52.488423 +-2.047365,52.477033 +-1.823396,52.506605 +-1.771964,52.480725 +-1.961001,52.474914 +-2.053827,52.560528 +-1.970475,52.396866 +-1.983858,52.410623 +-1.486513,52.436777 +-1.894495,52.470657 +-1.893761,52.488385 +-1.974613,52.510689 +-1.864945,52.472255 +-2.178819,52.489403 +-1.844337,52.521908 +-1.485554,52.426911 +-1.871871,52.490341 +-1.493912,52.435461 +-1.89082,52.492266 +-1.992456,52.605894 +-2.022952,52.585044 +-1.817631,52.443468 +-2.013069,52.508236 +-1.997522,52.580821 +-2.162722,52.596927 +-2.021826,52.548132 +-1.895683,52.528841 +-1.826189,52.530783 +-2.102312,52.597543 +-1.965757,52.473432 +-2.013872,52.57691 +-1.780267,52.5313 +-1.876497,52.463502 +-1.853368,52.52716 +-1.8096,52.467009 +-2.013623,52.583904 +-1.830287,52.423259 +-1.93475,52.495409 +-1.95368,52.506206 +-1.743247,52.478949 +-2.00457,52.395826 +-1.80821,52.461685 +-2.066281,52.562814 +-1.959844,52.500679 +-2.126883,52.593914 +-1.941161,52.515001 +-2.129458,52.596186 +-2.118227,52.487987 +-1.996682,52.564864 +-2.0453,52.516499 +-2.004787,52.491075 +-1.935064,52.411649 +-1.945732,52.476571 +-1.91125,52.45457 +-1.896186,52.521488 +-1.905944,52.42418 +-1.987832,52.612869 +-1.979462,52.411198 +-1.988378,52.61331 +-2.049795,52.568666 +-1.830061,52.497516 +-2.121425,52.606263 +-1.874614,52.473515 +-1.94953,52.476366 +-2.168031,52.599275 +-1.940624,52.48635 +-1.95914,52.449427 +-2.058455,52.590785 +-2.128012,52.576383 +-1.935395,52.426717 +-1.808331,52.467816 +-2.146089,52.594072 +-1.889376,52.492633 +-1.940025,52.439296 +-1.926466,52.552409 +-1.914578,52.445897 +-1.880243,52.563797 +-1.894456,52.622604 +-2.078856,52.59089 +-1.971847,52.41152 +-1.886052,52.410731 +-2.10336,52.534991 +-1.976413,52.506266 +-1.922113,52.402984 +-2.015845,52.483649 +-1.901435,52.474466 +-1.856469,52.507413 +-2.129311,52.621456 +-1.936341,52.484891 +-1.973155,52.41241 +-1.990775,52.592346 +-1.933015,52.503013 +-1.868225,52.527609 +-1.965019,52.494639 +-2.022494,52.528031 +-1.920398,52.474094 +-1.926631,52.417191 +-1.995661,52.596796 +-1.831562,52.463213 +-1.82379,52.492788 +-1.899637,52.475148 +-2.164905,52.490358 +-2.088347,52.58353 +-1.875133,52.472005 +-1.951538,52.578879 +-2.042895,52.513093 +-1.954728,52.417628 +-1.933473,52.423695 +-1.956078,52.495607 +-1.800379,52.478268 +-2.099894,52.611704 +-2.125723,52.580772 +-1.559085,52.403402 +-1.502973,52.428927 +-1.829067,52.533475 +-1.984255,52.411567 +-2.127416,52.498172 +-1.809821,52.391718 +-1.946575,52.461109 +-1.792154,52.455122 +-1.859502,52.498778 +-1.876895,52.431354 +-2.011167,52.617149 +-2.146007,52.458414 +-2.006905,52.476242 +-1.869333,52.457075 +-1.961209,52.60729 +-1.521446,52.443774 +-1.476622,52.411121 +-1.857777,52.517744 +-2.077096,52.563886 +-1.818471,52.529081 +-1.87101,52.426925 +-1.900851,52.577445 +-2.062802,52.482096 +-2.115961,52.566794 +-2.010298,52.502501 +-1.80159,52.520064 +-1.457067,52.44124 +-1.53184,52.413986 +-2.083556,52.57102 +-1.791215,52.495027 +-1.500214,52.428385 +-2.000739,52.573674 +-1.975539,52.40796 +-2.000044,52.469311 +-2.173058,52.586196 +-1.981883,52.604598 +-1.990756,52.39534 +-1.831489,52.436072 +-1.80331,52.458162 +-1.860902,52.470659 +-1.842812,52.428527 +-2.07629,52.55887 +-1.991852,52.511707 +-1.849166,52.488687 +-1.47941,52.399095 +-1.852017,52.512478 +-2.031202,52.482162 +-1.946794,52.49893 +-2.126073,52.476435 +-1.937161,52.623165 +-1.851423,52.548842 +-2.104639,52.502527 +-1.467822,52.396005 +-1.965011,52.485901 +-1.901009,52.467579 +-1.867656,52.441979 +-2.005145,52.52592 +-1.488796,52.407219 +-2.148479,52.589277 +-1.964162,52.442911 +-1.99119,52.433243 +-1.47028,52.395711 +-2.11692,52.589169 +-1.898841,52.423976 +-1.506153,52.420697 +-1.950686,52.430077 +-1.88603,52.448166 +-1.792814,52.370743 +-1.865548,52.472516 +-1.906199,52.477338 +-1.845107,52.43253 +-2.057396,52.447047 +-2.017799,52.509539 +-1.82163,52.462371 +-1.515906,52.394836 +-1.926573,52.541127 +-1.905358,52.49173 +-1.985102,52.562185 +-2.01227,52.44323 +-1.939525,52.504266 +-2.062214,52.514532 +-1.836574,52.461098 +-2.137444,52.595988 +-1.928605,52.487854 +-2.154975,52.593836 +-2.110586,52.518065 +-1.823725,52.446471 +-1.803838,52.402209 +-1.930011,52.502445 +-1.823458,52.480003 +-1.820077,52.467763 +-1.960004,52.486871 +-1.931582,52.553131 +-2.086164,52.531606 +-1.908417,52.493935 +-2.062066,52.565711 +-1.924776,52.47051 +-1.794297,52.522802 +-1.899759,52.473269 +-2.042787,52.583699 +-1.892602,52.486388 +-2.113845,52.553123 +-2.000916,52.577855 +-2.064255,52.610093 +-1.785012,52.522777 +-1.934397,52.445191 +-1.841191,52.548253 +-1.847138,52.466219 +-2.065751,52.583023 +-1.88535,52.454898 +-1.782237,52.451913 +-1.858846,52.528884 +-1.829062,52.500518 +-1.963809,52.40713 +-1.861446,52.456671 +-1.876142,52.479558 +-1.8999,52.4827 +-1.822668,52.57401 +-1.72407,52.444788 +-1.934852,52.466075 +-1.842307,52.50415 +-1.960947,52.435844 +-2.086853,52.514804 +-1.498464,52.449163 +-1.778852,52.466596 +-1.840733,52.528079 +-1.95947,52.458858 +-1.874258,52.505366 +-1.55905,52.404013 +-1.848661,52.442766 +-1.969815,52.416338 +-1.961428,52.457015 +-2.123176,52.588183 +-1.756323,52.484146 +-1.523579,52.4179 +-1.975617,52.506976 +-2.121607,52.576093 +-1.962523,52.485945 +-1.950262,52.493052 +-1.710811,52.469884 +-1.741277,52.478513 +-1.825244,52.441835 +-1.78038,52.479212 +-1.8991,52.491024 +-2.114808,52.458853 +-1.729288,52.450257 +-1.789355,52.499042 +-1.48567,52.451032 +-1.859784,52.470244 +-1.878204,52.468655 +-2.156845,52.439755 +-1.949036,52.445135 +-1.942183,52.488364 +-1.918982,52.499723 +-1.883127,52.466305 +-2.118077,52.519973 +-1.845078,52.432548 +-1.550381,52.370384 +-1.788705,52.453282 +-2.103666,52.583329 +-1.947793,52.401622 +-2.086075,52.531409 +-2.027089,52.522106 +-1.874322,52.48797 +-1.858792,52.444307 +-1.531855,52.443079 +-1.872405,52.488867 +-1.948489,52.397101 +-1.873786,52.531382 +-1.471342,52.394106 +-1.908005,52.422995 +-2.108006,52.475707 +-1.778983,52.419875 +-1.536636,52.42349 +-1.812308,52.488005 +-1.905455,52.487927 +-1.994599,52.584264 +-1.856333,52.517572 +-1.812249,52.442983 +-1.922543,52.46836 +-2.001475,52.539882 +-2.024612,52.467034 +-1.917897,52.473121 +-1.845076,52.521297 +-1.952642,52.499463 +-2.114749,52.458701 +-2.094452,52.512425 +-1.894886,52.4612 +-2.00313,52.591474 +-1.854032,52.509163 +-1.99597,52.435904 +-1.878692,52.484019 +-2.004545,52.563866 +-2.039589,52.475498 +-2.074121,52.523425 +-1.918103,52.4094 +-1.952155,52.472556 +-1.755575,52.438421 +-1.99856,52.388059 +-2.043471,52.603638 +-1.908817,52.492982 +-1.815747,52.489548 +-1.788362,52.484944 +-2.000237,52.577675 +-1.976093,52.498427 +-1.531459,52.38465 +-1.993663,52.521434 +-1.938012,52.469591 +-2.130239,52.605768 +-2.131877,52.52199 +-1.830843,52.512486 +-1.899839,52.503026 +-1.794654,52.502989 +-2.10768,52.529099 +-1.796296,52.48236 +-1.885095,52.553086 +-1.99662,52.395979 +-2.108396,52.502775 +-2.08271,52.490022 +-1.782181,52.505017 +-2.083211,52.513422 +-1.956356,52.556622 +-1.503127,52.429575 +-1.897142,52.497063 +-2.054531,52.569122 +-2.040488,52.508131 +-2.007235,52.510511 +-2.060927,52.57391 +-1.994478,52.488801 +-2.085221,52.509249 +-1.893958,52.479647 +-2.080832,52.454216 +-1.811962,52.392764 +-2.002106,52.478481 +-1.983808,52.38741 +-1.915563,52.407987 +-1.901402,52.535274 +-1.885904,52.456922 +-2.133367,52.628994 +-1.884103,52.498229 +-1.75119,52.44653 +-1.545643,52.421295 +-1.843161,52.492078 +-1.728617,52.480597 +-1.898429,52.49461 +-1.883369,52.55321 +-1.936017,52.464673 +-1.879573,52.474158 +-2.126692,52.589339 +-1.995231,52.468412 +-1.490525,52.41031 +-2.057456,52.605152 +-1.889709,52.459452 +-1.556366,52.385861 +-2.017575,52.501655 +-1.718784,52.42685 +-1.785368,52.534249 +-1.775885,52.494388 +-1.90965,52.481826 +-1.814002,52.473921 +-2.015196,52.481788 +-1.943326,52.469396 +-1.490967,52.440869 +-1.929258,52.530979 +-2.040495,52.611074 +-1.508978,52.407304 +-2.024539,52.521567 +-2.115996,52.462817 +-1.841076,52.469582 +-2.085562,52.464632 +-1.784938,52.462355 +-1.474156,52.442953 +-2.061533,52.522713 +-1.928028,52.625443 +-1.741185,52.499172 +-1.835244,52.592834 +-1.78567,52.381051 +-2.011515,52.53802 +-2.115688,52.541893 +-1.886023,52.456293 +-1.987827,52.411909 +-2.041767,52.597607 +-2.015023,52.619899 +-1.915779,52.472131 +-2.001432,52.57576 +-1.938523,52.504059 +-1.97501,52.512028 +-1.946858,52.433483 +-2.022944,52.569914 +-1.44665,52.402588 +-1.925008,52.516439 +-1.902567,52.515263 +-1.859502,52.498805 +-1.896137,52.485987 +-1.878966,52.459486 +-2.104329,52.502276 +-2.149724,52.594975 +-1.71246,52.445022 +-2.073221,52.51395 +-1.858873,52.488286 +-1.806029,52.505948 +-2.06692,52.478992 +-2.00627,52.562446 +-2.147258,52.524651 +-1.953826,52.494168 +-1.809706,52.483497 +-1.950256,52.485671 +-1.89838,52.48429 +-1.911573,52.484669 +-1.8625,52.52478 +-1.836245,52.486414 +-2.083556,52.571029 +-2.061829,52.51312 +-1.905403,52.436559 +-1.938937,52.524215 +-2.098241,52.52009 +-1.840041,52.450522 +-2.010569,52.526055 +-1.968118,52.569112 +-1.924913,52.641658 +-1.815236,52.477914 +-1.802951,52.561716 +-2.018886,52.500379 +-2.108021,52.475707 +-2.01594,52.543297 +-2.122748,52.588381 +-1.976296,52.504549 +-1.837672,52.466638 +-1.922698,52.472252 +-2.143541,52.58691 +-1.889115,52.473439 +-2.091038,52.543182 +-1.880137,52.483535 +-1.899023,52.492858 +-2.150797,52.477773 +-1.492811,52.437874 +-1.897216,52.471838 +-1.933647,52.454854 +-1.880901,52.538716 +-2.128415,52.623264 +-1.858789,52.491414 +-1.793276,52.41039 +-1.930626,52.645465 +-1.842246,52.49649 +-2.029408,52.484995 +-1.531625,52.435589 +-2.164555,52.569955 +-2.009456,52.559983 +-1.820121,52.467853 +-1.511471,52.450485 +-2.039433,52.513858 +-1.916613,52.451122 +-1.718461,52.479944 +-1.979377,52.565546 +-2.085935,52.557677 +-1.880665,52.538563 +-1.988644,52.612204 +-2.144467,52.585821 +-1.842315,52.465008 +-1.909775,52.456277 +-1.935599,52.45864 +-1.856595,52.477864 +-1.818899,52.44632 +-1.80659,52.508898 +-1.830875,52.450473 +-1.802044,52.48771 +-1.460338,52.416766 +-1.770025,52.423248 +-1.479127,52.418153 +-1.856076,52.54651 +-2.109525,52.606904 +-2.088319,52.510919 +-1.780205,52.475913 +-2.179973,52.577304 +-2.134388,52.475509 +-1.902635,52.477677 +-1.929902,52.524677 +-2.052354,52.48816 +-1.806345,52.487717 +-1.902054,52.560383 +-1.796136,52.507487 +-1.947062,52.459419 +-1.789709,52.375088 +-2.118787,52.455478 +-1.900776,52.518867 +-1.935783,52.534542 +-1.834362,52.454434 +-1.842123,52.464972 +-1.865958,52.492726 +-2.052257,52.517746 +-1.555801,52.38941 +-2.167701,52.613506 +-1.888716,52.450595 +-1.559035,52.404004 +-1.885817,52.433521 +-2.170814,52.570818 +-1.833006,52.485978 +-1.931984,52.502842 +-1.892556,52.438454 +-1.974202,52.559081 +-1.992177,52.510377 +-1.480758,52.413252 +-2.063362,52.472206 +-2.04604,52.575499 +-1.871522,52.463353 +-1.833551,52.423642 +-2.023022,52.523509 +-1.926419,52.447397 +-1.975382,52.586914 +-2.090641,52.522361 +-1.485328,52.429895 +-2.088982,52.539884 +-1.820863,52.466533 +-2.091919,52.597749 +-2.040493,52.576931 +-2.157699,52.595936 +-2.044293,52.453066 +-1.910321,52.455675 +-1.871527,52.476973 +-2.077064,52.43676 +-1.569529,52.392059 +-1.981552,52.584416 +-2.006197,52.565772 +-1.825474,52.558668 +-1.96533,52.473405 +-2.162148,52.597332 +-1.886545,52.476655 +-1.970127,52.476985 +-1.926918,52.50176 +-2.041078,52.445444 +-1.966546,52.500834 +-2.105604,52.566669 +-1.872048,52.459739 +-2.044975,52.444292 +-1.815968,52.500085 +-1.467033,52.379702 +-1.778928,52.451466 +-1.911147,52.491483 +-1.951938,52.428549 +-1.850391,52.453124 +-1.981585,52.575687 +-1.892366,52.480383 +-1.847169,52.410355 +-1.891415,52.45423 +-2.015318,52.493241 +-1.845957,52.488279 +-2.113027,52.562059 +-1.927271,52.6009 +-1.841256,52.509695 +-1.887874,52.492587 +-1.891139,52.53033 +-1.52929,52.418696 +-1.488863,52.410329 +-1.907883,52.552378 +-1.954573,52.455125 +-1.919297,52.431894 +-2.014096,52.40531 +-2.07789,52.463145 +-1.867866,52.411135 +-1.742692,52.506079 +-1.87009,52.470022 +-1.784268,52.445696 +-1.928126,52.529198 +-1.880502,52.533655 +-1.905785,52.602467 +-1.49838,52.429276 +-1.930306,52.473911 +-2.061174,52.5926 +-2.10252,52.503527 +-1.897522,52.46657 +-1.828731,52.414959 +-1.847046,52.531171 +-1.87878,52.468071 +-2.06868,52.60653 +-2.006005,52.562329 +-1.999558,52.565458 +-2.139625,52.464778 +-1.915289,52.443264 +-1.991475,52.560225 +-1.463771,52.385855 +-2.000162,52.469041 +-1.933909,52.496397 +-1.989796,52.614964 +-1.850506,52.514859 +-1.856598,52.476704 +-1.883651,52.462862 +-1.508012,52.434693 +-2.158916,52.451017 +-1.771074,52.501966 +-2.087119,52.492697 +-1.935965,52.429207 +-2.085989,52.57011 +-1.456133,52.428694 +-1.888197,52.498763 +-1.967589,52.424806 +-1.878132,52.484315 +-1.815825,52.478014 +-1.454196,52.415236 +-2.137544,52.505325 +-1.892601,52.438409 +-1.909064,52.508868 +-2.085339,52.509204 +-1.82418,52.446777 +-1.884888,52.48532 +-2.064642,52.542003 +-1.480079,52.402254 +-1.876087,52.520291 +-2.007658,52.401957 +-1.893848,52.457981 +-2.166434,52.493511 +-1.977888,52.413508 +-1.82282,52.53627 +-1.818629,52.397477 +-1.922444,52.600025 +-1.486166,52.390674 +-1.892816,52.464785 +-1.94424,52.514994 +-1.989635,52.477923 +-2.149856,52.594993 +-2.065477,52.538272 +-1.891754,52.477712 +-2.09683,52.508728 +-2.00286,52.523682 +-1.99696,52.598396 +-1.896834,52.496434 +-1.93089,52.581089 +-2.083586,52.494048 +-1.532049,52.442864 +-1.843297,52.524172 +-1.965846,52.453268 +-2.020867,52.484897 +-2.170599,52.504095 +-1.983858,52.410623 +-1.931493,52.48692 +-2.034863,52.566828 +-1.976447,52.498562 +-1.976556,52.598385 +-1.84101,52.487948 +-1.928987,52.497896 +-2.076027,52.560246 +-1.91093,52.48234 +-1.823987,52.447218 +-1.858241,52.492492 +-2.139378,52.568072 +-1.951742,52.500856 +-1.822989,52.457375 +-1.984757,52.577099 +-1.950667,52.48684 +-2.11645,52.617883 +-2.08429,52.569077 +-2.171852,52.492937 +-2.134234,52.574533 +-1.888208,52.407047 +-1.562233,52.391295 +-2.062946,52.572534 +-1.955491,52.419561 +-1.966829,52.635537 +-1.786445,52.415385 +-1.86555,52.413631 +-2.095514,52.59433 +-2.165283,52.567419 +-1.892445,52.423845 +-2.130125,52.572281 +-1.877368,52.52094 +-1.874337,52.472481 +-1.848816,52.513517 +-2.016891,52.59986 +-2.107367,52.455219 +-1.951384,52.450701 +-1.748969,52.50327 +-2.025058,52.551844 +-1.946681,52.39746 +-1.900861,52.480777 +-1.964799,52.419438 +-2.015524,52.575579 +-2.170984,52.497083 +-1.845107,52.432539 +-1.82672,52.556935 +-1.857123,52.510273 +-1.91818,52.423515 +-1.438817,52.404834 +-1.593004,52.413592 +-2.015955,52.543333 +-2.005299,52.462173 +-1.976764,52.512029 +-2.085853,52.508287 +-1.898856,52.430422 +-1.999809,52.597794 +-1.57872,52.402107 +-1.760244,52.529472 +-2.039968,52.584096 +-1.971289,52.592792 +-1.89596,52.473518 +-2.07356,52.487771 +-1.975425,52.588667 +-2.108781,52.62848 +-2.085892,52.61114 +-1.893938,52.481939 +-1.475121,52.432367 +-1.906561,52.473032 +-1.811119,52.487041 +-1.850977,52.467195 +-2.077374,52.579537 +-1.950742,52.538685 +-1.992686,52.549932 +-1.909487,52.481907 +-1.801006,52.518876 +-1.821891,52.401383 +-1.829244,52.44977 +-1.510643,52.409657 +-1.443941,52.425185 +-2.122803,52.54451 +-1.91371,52.468551 +-1.526844,52.408222 +-2.122045,52.611341 +-2.130636,52.485987 +-1.919745,52.484863 +-2.014284,52.527106 +-2.044873,52.444625 +-2.099221,52.517095 +-1.840356,52.473465 +-1.517021,52.396342 +-2.159397,52.559543 +-1.90292,52.488654 +-2.080932,52.604347 +-1.935614,52.45855 +-1.973625,52.51326 +-1.780577,52.457304 +-1.554064,52.401369 +-2.006154,52.475792 +-1.856016,52.510757 +-1.650323,52.391921 +-1.742006,52.492395 +-1.88458,52.422821 +-2.122546,52.478965 +-1.880504,52.538311 +-1.965522,52.473315 +-1.897312,52.519089 +-1.497294,52.443296 +-1.948982,52.415234 +-1.926068,52.490558 +-1.891423,52.486756 +-2.122897,52.63617 +-2.157185,52.559672 +-2.013143,52.555532 +-1.930909,52.493159 +-1.890798,52.60258 +-1.771007,52.494954 +-1.884996,52.551459 +-1.978363,52.405327 +-1.505483,52.409591 +-1.849573,52.403831 +-1.889097,52.510037 +-1.498376,52.419279 +-1.942683,52.44283 +-1.780253,52.528279 +-1.928512,52.47258 +-1.462231,52.45331 +-1.866054,52.475609 +-2.172014,52.508175 +-2.004865,52.525785 +-1.710315,52.46029 +-1.829957,52.501607 +-2.128651,52.477125 +-2.121611,52.577262 +-2.000602,52.386414 +-1.850249,52.390841 +-2.083436,52.515552 +-1.872391,52.473504 +-1.902968,52.500583 +-2.117534,52.581482 +-2.135172,52.586902 +-1.806493,52.48751 +-1.930316,52.533317 +-1.831417,52.505007 +-1.953627,52.543289 +-1.778942,52.451601 +-2.004211,52.620511 +-1.758316,52.477794 +-2.062503,52.448015 +-1.854349,52.377307 +-1.901662,52.504718 +-1.804004,52.460995 +-2.173458,52.58651 +-1.867325,52.542684 +-1.811196,52.486125 +-2.097495,52.549146 +-1.506557,52.42006 +-1.45971,52.432073 +-1.917558,52.496998 +-2.055846,52.569966 +-1.932012,52.426939 +-2.042891,52.53964 +-1.849539,52.47434 +-2.169174,52.482207 +-1.868649,52.404744 +-1.90417,52.462539 +-1.978333,52.558579 +-2.074798,52.48813 +-2.11793,52.569354 +-2.005962,52.470596 +-2.019855,52.462639 +-1.534702,52.421415 +-2.000604,52.501971 +-1.975723,52.583012 +-1.837246,52.526411 +-1.926349,52.525349 +-1.979009,52.500549 +-1.487574,52.445484 +-1.753044,52.467435 +-2.005941,52.630346 +-1.994964,52.627271 +-2.005808,52.527071 +-1.959278,52.571888 +-1.981021,52.549499 +-2.050814,52.531456 +-1.819605,52.529379 +-1.764419,52.473743 +-1.883534,52.490515 +-2.126298,52.580565 +-1.84708,52.449138 +-2.14728,52.583867 +-1.889706,52.472622 +-1.975323,52.506572 +-1.984569,52.396751 +-1.877696,52.466074 +-2.020269,52.592866 +-1.889293,52.49035 +-1.962275,52.482565 +-1.789913,52.49943 +-2.148723,52.461009 +-1.898818,52.466454 +-1.823285,52.405494 +-1.673402,52.412682 +-2.06631,52.562805 +-1.889987,52.489757 +-2.073662,52.566091 +-2.106618,52.583542 +-1.859784,52.470217 +-1.455501,52.41909 +-1.965066,52.397502 +-2.009422,52.536906 +-2.059676,52.544442 +-2.056037,52.569643 +-2.051068,52.445683 +-2.117164,52.492617 +-1.914071,52.47195 +-2.031161,52.569175 +-1.975112,52.461154 +-1.912129,52.515864 +-2.130405,52.601821 +-2.066785,52.448048 +-2.029285,52.49999 +-1.854609,52.47716 +-2.117282,52.459579 +-1.968155,52.455822 +-1.505889,52.406221 +-2.190422,52.587581 +-1.848874,52.505354 +-1.891127,52.499135 +-1.87753,52.536843 +-1.932753,52.501035 +-2.120256,52.589103 +-1.883854,52.497878 +-1.858487,52.466368 +-2.08178,52.512686 +-1.866428,52.454025 +-1.989503,52.477842 +-2.039796,52.541044 +-1.979859,52.574922 +-1.575167,52.406374 +-1.912851,52.560868 +-1.979805,52.499524 +-1.728974,52.451075 +-1.890135,52.489523 +-1.840539,52.48793 +-2.122866,52.567003 +-1.471282,52.379425 +-2.063128,52.53474 +-2.072289,52.583352 +-1.980133,52.45729 +-1.816833,52.433821 +-1.936688,52.510063 +-1.747527,52.379348 +-1.976604,52.506931 +-2.085896,52.45485 +-2.0877,52.547958 +-1.89044,52.526724 +-2.105378,52.626271 +-2.144281,52.596609 +-1.827096,52.412098 +-1.995364,52.607827 +-1.994625,52.485286 +-1.924794,52.520916 +-1.889995,52.474897 +-1.888373,52.446487 +-1.892303,52.48236 +-1.99165,52.488936 +-1.521729,52.425804 +-1.86339,52.532279 +-2.014111,52.584596 +-1.843106,52.478332 +-2.018002,52.501772 +-1.824945,52.405694 +-1.82764,52.517686 +-2.130406,52.567534 +-1.919072,52.498564 +-2.122086,52.520104 +-1.802433,52.512757 +-1.872864,52.457457 +-1.861705,52.444526 +-2.082394,52.54931 +-1.806652,52.474745 +-2.015344,52.481842 +-2.032022,52.576259 +-1.928432,52.476472 +-2.006005,52.562329 +-1.84664,52.435868 +-1.84562,52.475117 +-1.833907,52.442404 +-2.116736,52.442202 +-1.895143,52.470766 +-1.993452,52.555326 +-1.776582,52.417758 +-1.796055,52.483564 +-1.806916,52.404111 +-2.053896,52.604263 +-1.988417,52.51907 +-2.091318,52.543433 +-2.013246,52.605857 +-1.802799,52.460454 +-1.841143,52.44699 +-1.976264,52.564601 +-2.049637,52.546317 +-1.831587,52.487576 +-1.876732,52.458135 +-1.962681,52.420543 +-1.88338,52.44294 +-1.920082,52.469877 +-1.856657,52.476695 +-1.863,52.463226 +-1.853234,52.44804 +-2.007002,52.6158 +-1.930769,52.412995 +-1.826753,52.484674 +-1.962842,52.403669 +-1.918799,52.50322 +-1.955845,52.477717 +-1.776419,52.420913 +-2.128851,52.48509 +-1.947182,52.43315 +-2.155819,52.473865 +-1.800423,52.478268 +-2.086312,52.532083 +-1.812015,52.487672 +-1.797503,52.501816 +-2.005843,52.567507 +-1.506273,52.415204 +-1.941159,52.438667 +-1.803527,52.485438 +-1.746369,52.478955 +-1.876515,52.472753 +-1.834577,52.444212 +-2.078396,52.499311 +-1.780432,52.527893 +-1.812952,52.443551 +-1.940303,52.506011 +-1.957645,52.473385 +-1.908443,52.55272 +-1.800645,52.406222 +-1.815689,52.528214 +-1.803134,52.520732 +-1.881001,52.506883 +-1.509179,52.410379 +-1.992055,52.534928 +-1.921374,52.430133 +-1.98942,52.453119 +-1.895539,52.496307 +-1.950109,52.655417 +-1.971278,52.495945 +-1.832941,52.507248 +-2.078959,52.50929 +-1.883726,52.462466 +-1.966833,52.629667 +-1.84329,52.476327 +-1.488216,52.406515 +-1.930418,52.505772 +-1.989639,52.394837 +-1.976545,52.394943 +-1.836886,52.476148 +-1.907144,52.468852 +-1.719716,52.449165 +-1.973347,52.631602 +-1.473101,52.456173 +-2.004673,52.525525 +-2.0804,52.507652 +-1.438581,52.430347 +-1.961643,52.532917 +-1.985535,52.49966 +-1.870326,52.539865 +-1.871914,52.54135 +-1.894169,52.465263 +-2.013652,52.579886 +-1.551631,52.413811 +-2.091412,52.510314 +-1.848325,52.450739 +-1.837335,52.422182 +-2.076785,52.529779 +-1.475706,52.441315 +-2.084,52.471348 +-1.772203,52.500107 +-1.825265,52.566597 +-1.871731,52.442038 +-2.079373,52.550598 +-2.10995,52.499619 +-2.008698,52.60165 +-2.062787,52.471739 +-1.896638,52.485987 +-1.960904,52.551274 +-1.856238,52.510649 +-1.848602,52.442954 +-2.105558,52.614989 +-1.91979,52.48445 +-2.148556,52.564124 +-2.106133,52.626765 +-1.853041,52.452858 +-1.865453,52.532847 +-2.118777,52.517086 +-1.870868,52.495752 +-1.87012,52.469608 +-1.914416,52.468759 +-1.891782,52.466295 +-2.09841,52.470429 +-1.953896,52.42668 +-1.95043,52.409049 +-1.49506,52.408315 +-1.519184,52.419141 +-1.967466,52.633416 +-1.814031,52.561321 +-2.003841,52.61349 +-1.779001,52.451583 +-2.121191,52.500291 +-1.834758,52.411291 +-2.00071,52.60646 +-1.455261,52.414773 +-1.887353,52.477384 +-2.18375,52.576921 +-1.493897,52.43546 +-2.09117,52.543137 +-2.005897,52.527197 +-1.733655,52.38001 +-2.128413,52.58219 +-1.856041,52.516699 +-2.065675,52.473626 +-1.932997,52.553554 +-1.82339,52.497147 +-1.799099,52.516733 +-2.050344,52.58438 +-1.911801,52.50299 +-2.106454,52.576449 +-2.097215,52.59592 +-2.014334,52.588776 +-2.002583,52.567103 +-1.837957,52.497303 +-2.110817,52.498881 +-1.983503,52.576559 +-1.877227,52.465355 +-1.928083,52.401576 +-1.843001,52.429237 +-1.869887,52.413915 +-1.830889,52.504476 +-1.92894,52.526861 +-1.509619,52.410507 +-1.978609,52.444577 +-1.903733,52.473641 +-2.011506,52.556566 +-1.974323,52.42568 +-2.144118,52.573901 +-2.109251,52.473297 +-2.071608,52.437572 +-1.891414,52.454239 +-1.89975,52.444681 +-1.942807,52.461368 +-1.915676,52.494929 +-2.013665,52.481375 +-2.078316,52.487247 +-1.924548,52.483689 +-1.823729,52.445302 +-2.060284,52.492966 +-2.16338,52.456477 +-2.176555,52.582299 +-1.76432,52.505962 +-1.86074,52.493871 +-1.782864,52.384039 +-1.748243,52.405834 +-2.107809,52.55774 +-1.509516,52.410498 +-2.068198,52.477274 +-1.823076,52.454067 +-1.538458,52.382781 +-1.960413,52.473188 +-1.88372,52.554289 +-1.784564,52.381939 +-1.885891,52.404708 +-1.9487,52.507264 +-1.907011,52.490167 +-1.844079,52.465442 +-1.854747,52.453202 +-1.443974,52.413184 +-1.865873,52.452783 +-1.951139,52.659651 +-2.122011,52.583177 +-1.846945,52.449893 +-1.933186,52.545985 +-1.976888,52.413561 +-1.528296,52.408488 +-2.045887,52.528384 +-2.087158,52.542196 +-2.041273,52.528089 +-1.848947,52.483877 +-1.948586,52.453019 +-1.899742,52.480893 +-1.442681,52.406138 +-1.800189,52.556048 +-1.996268,52.389659 +-1.874675,52.472589 +-1.989389,52.395331 +-1.882947,52.489714 +-2.116943,52.509222 +-1.93189,52.506636 +-1.496255,52.43254 +-1.834362,52.403352 +-1.483099,52.390301 +-1.893881,52.462925 +-1.836597,52.486612 +-1.819163,52.45033 +-1.8903,52.482161 +-1.711787,52.473725 +-2.139036,52.585891 +-1.48414,52.389254 +-2.008453,52.486598 +-1.898436,52.485288 +-1.954881,52.484837 +-2.153413,52.560809 +-1.954548,52.392446 +-1.463903,52.406524 +-2.034022,52.566999 +-1.804915,52.42794 +-1.915823,52.49519 +-1.895887,52.486031 +-1.995022,52.491174 +-1.995204,52.588795 +-2.062862,52.513749 +-1.853896,52.43443 +-1.513351,52.441467 +-1.522014,52.442949 +-1.826943,52.405967 +-1.771,52.502083 +-1.902016,52.484823 +-1.493969,52.40867 +-1.873333,52.45298 +-2.086565,52.510705 +-2.086065,52.548687 +-1.87771,52.439698 +-1.87544,52.472958 +-2.134698,52.624857 +-1.910216,52.558277 +-1.874614,52.47338 +-1.996073,52.609121 +-1.851425,52.513502 +-1.760793,52.482563 +-1.930862,52.627189 +-1.973979,52.460812 +-2.060001,52.609124 +-2.0161,52.53739 +-1.844087,52.496511 +-2.05948,52.584735 +-1.92609,52.47719 +-1.920125,52.47858 +-2.050174,52.487235 +-1.960909,52.49578 +-1.991323,52.581855 +-2.001934,52.5682 +-1.524076,52.411321 +-1.846045,52.492585 +-1.97569,52.427343 +-1.518907,52.420273 +-2.053775,52.577923 +-1.945965,52.514572 +-1.935569,52.458559 +-1.492826,52.437847 +-1.829012,52.437462 +-1.940227,52.486413 +-1.980581,52.578671 +-2.044578,52.444562 +-1.844913,52.50472 +-1.973519,52.493194 +-2.026311,52.502067 +-1.829631,52.437112 +-1.855665,52.519126 +-1.536869,52.408217 +-1.833372,52.443617 +-1.974826,52.394592 +-1.990771,52.613319 +-1.904117,52.473452 +-1.910318,52.464368 +-2.037415,52.53281 +-1.990186,52.516615 +-2.101894,52.595449 +-1.794482,52.536737 +-2.005049,52.589856 +-1.954253,52.494276 +-1.99004,52.578592 +-1.877442,52.451789 +-1.899141,52.492723 +-2.12523,52.635359 +-1.829963,52.523048 +-1.891675,52.486109 +-1.857252,52.429228 +-1.798625,52.501198 +-1.938489,52.48652 +-1.902227,52.502587 +-1.928552,52.529962 +-2.04795,52.473985 +-1.980539,52.606315 +-2.016586,52.49538 +-1.861288,52.516418 +-1.786705,52.459113 +-2.089674,52.510945 +-1.549913,52.410649 +-1.944386,52.44569 +-1.97847,52.487864 +-1.837624,52.495828 +-1.805587,52.439098 +-2.127401,52.477666 +-1.838545,52.537848 +-1.749541,52.376431 +-2.051582,52.595185 +-2.022411,52.624285 +-2.002304,52.5868 +-1.863597,52.532342 +-1.843047,52.544632 +-1.971568,52.595723 +-1.53233,52.402391 +-1.970682,52.529333 +-1.875995,52.479809 +-1.734306,52.49183 +-1.911535,52.437543 +-1.696694,52.358381 +-2.021459,52.521163 +-2.039586,52.488534 +-1.444607,52.414292 +-2.134974,52.51279 +-1.848571,52.602193 +-1.919057,52.49868 +-1.853354,52.52716 +-2.178159,52.602883 +-2.129725,52.596491 +-1.887984,52.408324 +-1.888261,52.426834 +-1.838441,52.521936 +-1.879651,52.483436 +-1.88998,52.474879 +-1.909952,52.528664 +-1.812278,52.443019 +-2.099079,52.551796 +-2.009458,52.569062 +-1.98019,52.494634 +-1.918549,52.534541 +-1.943267,52.469477 +-1.841456,52.523801 +-1.90771,52.458595 +-1.858912,52.512927 +-1.848744,52.474492 +-1.50675,52.419917 +-1.798282,52.434429 +-1.855074,52.501487 +-1.928109,52.512018 +-2.021984,52.481454 +-2.124134,52.587687 +-2.101127,52.512545 +-1.466102,52.378979 +-1.616615,52.389937 +-1.97703,52.481706 +-2.086036,52.504187 +-1.831208,52.421031 +-1.984057,52.512731 +-1.523779,52.381509 +-1.909565,52.49417 +-1.934209,52.502385 +-1.777174,52.565851 +-1.951702,52.61802 +-1.48315,52.377149 +-1.875409,52.47321 +-2.103439,52.487119 +-2.167219,52.494841 +-1.929072,52.545767 +-1.985317,52.398927 +-1.569702,52.392437 +-1.869399,52.434618 +-1.481555,52.390357 +-1.893892,52.457963 +-2.089807,52.510954 +-1.448633,52.438099 +-1.905668,52.436451 +-1.919956,52.580183 +-1.850621,52.437392 +-1.88583,52.462954 +-2.007699,52.549725 +-1.986672,52.491048 +-1.873199,52.448242 +-1.798477,52.501279 +-1.836886,52.476148 +-1.987103,52.577881 +-1.885934,52.456571 +-1.848812,52.424444 +-1.85455,52.468233 +-1.896355,52.468582 +-1.853215,52.471495 +-1.919568,52.484899 +-2.088954,52.569892 +-1.83507,52.528746 +-1.780523,52.482979 +-2.095971,52.533451 +-1.855136,52.47361 +-1.907061,52.459368 +-2.040501,52.538391 +-2.107086,52.60598 +-2.110302,52.598848 +-1.955221,52.440022 +-1.97549,52.631827 +-2.01446,52.482246 +-1.509323,52.413302 +-2.078151,52.568506 +-1.834955,52.496427 +-1.901422,52.467076 +-1.87455,52.490578 +-2.065961,52.517083 +-1.833811,52.491247 +-1.976722,52.506949 +-1.96021,52.486026 +-1.874454,52.472616 +-1.835299,52.526597 +-1.574662,52.420594 +-1.883959,52.474657 +-2.048193,52.560836 +-1.823547,52.479878 +-1.904058,52.500225 +-1.819001,52.500503 +-2.052913,52.572584 +-2.122851,52.567003 +-2.110518,52.47922 +-1.928975,52.486739 +-2.016761,52.528832 +-2.056155,52.56958 +-2.137952,52.569548 +-1.900962,52.521267 +-1.555578,52.411606 +-1.820357,52.420719 +-2.066536,52.526711 +-1.865684,52.45673 +-1.885267,52.475575 +-1.903145,52.460075 +-1.996924,52.459682 +-1.721715,52.47525 +-1.798556,52.58083 +-1.901112,52.467427 +-1.984486,52.466082 +-1.892078,52.465657 +-1.455227,52.41391 +-1.70843,52.40461 +-1.781955,52.455329 +-1.906635,52.473122 +-2.061107,52.481243 +-1.823931,52.446319 +-1.933278,52.553608 +-1.458521,52.413826 +-1.974296,52.549525 +-1.896703,52.514638 +-1.650883,52.399078 +-1.990376,52.594333 +-1.543299,52.366401 +-1.982338,52.539134 +-1.815326,52.4776 +-1.936002,52.464664 +-2.011611,52.508327 +-1.892631,52.486451 +-1.999145,52.606892 +-2.028901,52.498803 +-2.025072,52.575587 +-2.095455,52.513161 +-1.556221,52.420841 +-1.927252,52.477766 +-2.122985,52.58856 +-1.910541,52.478042 +-1.778032,52.489232 +-1.887829,52.47538 +-2.125093,52.561661 +-1.776837,52.405074 +-2.040354,52.538418 +-1.845294,52.522134 +-1.850953,52.496187 +-1.932274,52.506132 +-1.870858,52.47396 +-2.088962,52.515458 +-1.532291,52.431096 +-1.87189,52.473656 +-1.656855,52.368098 +-2.011815,52.556449 +-1.97081,52.558056 +-1.879116,52.468935 +-1.78375,52.455323 +-2.083565,52.490731 +-1.937698,52.472531 +-1.988026,52.38466 +-2.161795,52.597773 +-1.842636,52.436842 +-1.836276,52.42236 +-2.013118,52.522602 +-1.830709,52.485911 +-1.992681,52.488873 +-2.044191,52.483327 +-1.468023,52.414697 +-1.945336,52.487134 +-1.961992,52.486197 +-1.961359,52.486412 +-2.014051,52.583472 +-2.085673,52.544624 +-1.899237,52.476127 +-1.967485,52.586813 +-1.902305,52.486927 +-1.787241,52.473112 +-1.80214,52.525495 +-1.475849,52.420557 +-1.841271,52.509686 +-2.12675,52.589042 +-1.938209,52.423338 +-1.876346,52.454206 +-1.914362,52.474072 +-1.842035,52.551338 +-1.784326,52.382549 +-1.980239,52.550003 +-1.874328,52.470422 +-2.028217,52.487503 +-1.896137,52.473572 +-1.536002,52.380137 +-1.978524,52.405372 +-1.815903,52.519359 +-1.439473,52.43081 +-1.833141,52.508695 +-1.888629,52.508491 +-1.594972,52.417123 +-1.867338,52.513737 +-1.893848,52.457999 +-1.902269,52.476768 +-2.101007,52.466678 +-1.929552,52.531536 +-1.824806,52.511569 +-1.48025,52.411452 +-1.870844,52.473942 +-1.859326,52.498544 +-1.933062,52.647066 +-1.488501,52.444203 +-2.096203,52.511668 +-1.850546,52.407428 +-1.968071,52.470421 +-1.507796,52.415759 +-1.99082,52.587671 +-2.092333,52.584228 +-1.914476,52.476067 +-1.783823,52.404359 +-1.885888,52.462972 +-1.872139,52.524683 +-1.462117,52.409528 +-1.935271,52.552072 +-1.967821,52.469621 +-1.828051,52.495491 +-1.967782,52.421677 +-1.944477,52.491143 +-1.512137,52.41148 +-1.878056,52.453039 +-1.909627,52.5287 +-1.859568,52.464139 +-1.889169,52.56341 +-1.962936,52.573264 +-1.920349,52.48508 +-1.791764,52.522187 +-1.90083,52.47505 +-1.917716,52.435777 +-1.771514,52.482405 +-2.120933,52.540224 +-1.776689,52.530556 +-1.776867,52.530394 +-1.853953,52.453111 +-1.840517,52.453174 +-1.940187,52.43917 +-2.017538,52.482696 +-1.815688,52.500309 +-2.099133,52.608297 +-1.857244,52.490918 +-1.910912,52.556974 +-1.890329,52.44674 +-2.14541,52.594064 +-1.825879,52.456076 +-1.86805,52.536707 +-1.839622,52.517532 +-2.065773,52.558769 +-1.859341,52.405956 +-2.128673,52.590424 +-2.053687,52.57795 +-1.913845,52.595848 +-1.891345,52.596288 +-2.073998,52.520054 +-2.106317,52.605513 +-2.073929,52.514192 +-2.005271,52.475289 +-1.983146,52.545238 +-1.937844,52.40026 +-1.831587,52.487576 +-1.926663,52.531202 +-1.864906,52.470573 +-1.464304,52.385516 +-2.131824,52.612113 +-1.943873,52.490874 +-1.815689,52.489359 +-1.985184,52.580479 +-1.809958,52.496686 +-1.876907,52.479909 +-1.868391,52.442394 +-1.826801,52.438735 +-1.922553,52.42848 +-1.82654,52.490113 +-1.865009,52.557317 +-1.495635,52.408219 +-1.850423,52.543779 +-1.993016,52.612097 +-1.984545,52.465624 +-2.142561,52.584987 +-1.938223,52.423365 +-2.041724,52.614454 +-1.980599,52.570742 +-1.976428,52.506275 +-1.851041,52.496106 +-1.796386,52.561786 +-1.919462,52.470686 +-2.073837,52.503297 +-1.932226,52.52778 +-1.912599,52.487025 +-1.454534,52.439124 +-1.874098,52.551079 +-1.958637,52.388906 +-2.166154,52.474102 +-1.871591,52.474932 +-1.968423,52.472264 +-2.053055,52.556096 +-1.967101,52.448333 +-2.003527,52.566563 +-2.08613,52.461961 +-2.070149,52.564951 +-2.010698,52.513694 +-2.088284,52.552138 +-1.898849,52.485018 +-2.146594,52.577278 +-2.14794,52.622028 +-2.038213,52.585553 +-1.742472,52.500802 +-1.808442,52.506554 +-1.839136,52.456742 +-1.902172,52.474161 +-1.900036,52.474483 +-1.460382,52.416793 +-1.824556,52.477856 +-1.502914,52.406649 +-1.896796,52.525669 +-2.040587,52.472028 +-1.848669,52.513517 +-1.845687,52.43503 +-2.103198,52.44724 +-1.916911,52.488754 +-1.510632,52.40527 +-1.92138,52.501496 +-1.916235,52.472347 +-2.013166,52.585342 +-2.005914,52.548763 +-1.461177,52.416688 +-1.91833,52.637258 +-1.982745,52.40148 +-1.903702,52.508522 +-1.827588,52.534902 +-1.909049,52.429927 +-1.508667,52.440584 +-1.997123,52.581415 +-1.968746,52.620085 +-1.971233,52.519597 +-1.986627,52.442574 +-1.959836,52.509669 +-1.774651,52.473628 +-1.967068,52.393107 +-1.969999,52.535931 +-1.962332,52.484714 +-2.055347,52.619069 +-1.859551,52.464922 +-1.833213,52.443096 +-1.966064,52.398887 +-1.926223,52.477136 +-1.815982,52.46141 +-1.916412,52.472248 +-1.917033,52.462557 +-2.111403,52.584634 +-1.977827,52.388398 +-2.113086,52.562068 +-1.939392,52.504239 +-1.530257,52.407975 +-1.97355,52.514563 +-2.010645,52.535054 +-1.796523,52.477875 +-1.903643,52.508378 +-1.937165,52.557656 +-1.962276,52.515576 +-1.485162,52.430253 +-1.847091,52.48846 +-1.814648,52.375975 +-1.935296,52.494627 +-1.811705,52.560103 +-2.03569,52.4779 +-1.947205,52.413606 +-1.957751,52.486672 +-1.88135,52.514183 +-1.974025,52.5348 +-1.901891,52.514247 +-1.961245,52.582775 +-1.558902,52.40261 +-1.829317,52.430864 +-1.874445,52.522582 +-1.979652,52.6076 +-1.799354,52.50938 +-1.815837,52.489224 +-1.928129,52.51823 +-2.140592,52.615582 +-1.909551,52.494026 +-1.811413,52.442191 +-1.930535,52.543646 +-1.49293,52.408261 +-1.984017,52.543719 +-1.876516,52.456553 +-1.975768,52.554551 +-1.923838,52.647977 +-1.959105,52.486726 +-2.058545,52.514426 +-2.053916,52.560528 +-1.675516,52.433086 +-2.122355,52.61117 +-2.050081,52.560997 +-1.846828,52.508966 +-2.123521,52.453765 +-2.074115,52.519919 +-1.909798,52.466957 +-1.918824,52.529507 +-2.019152,52.571327 +-1.932082,52.486903 +-1.830709,52.48592 +-2.019725,52.533506 +-1.958013,52.458003 +-1.921179,52.46523 +-2.009112,52.469751 +-1.826277,52.418507 +-1.947128,52.502778 +-2.115754,52.566776 +-1.860492,52.460634 +-1.875365,52.4733 +-1.921639,52.513048 +-1.853383,52.52716 +-1.903289,52.508567 +-1.856369,52.483976 +-2.08687,52.605224 +-1.902788,52.454734 +-1.829436,52.502946 +-1.938671,52.504104 +-1.79156,52.412643 +-1.881571,52.552606 +-1.839551,52.496388 +-1.483026,52.436807 +-1.873217,52.452405 +-2.003881,52.565736 +-1.836506,52.527129 +-1.828599,52.415049 +-1.859166,52.419315 +-1.990639,52.464618 +-1.882882,52.475573 +-1.770823,52.479356 +-1.884756,52.502266 +-1.938262,52.4907 +-1.950701,52.430077 +-1.844529,52.496476 +-1.894855,52.47402 +-1.936373,52.534714 +-1.870639,52.458353 +-2.165943,52.566537 +-1.692399,52.450365 +-1.876233,52.463169 +-2.015012,52.586718 +-1.578078,52.384745 +-1.901097,52.467436 +-1.882367,52.475393 +-1.941961,52.444197 +-2.013712,52.490176 +-2.135491,52.584834 +-1.486009,52.448435 +-1.472777,52.435251 +-1.831211,52.574247 +-2.126632,52.450795 +-2.083335,52.509313 +-2.068413,52.530386 +-1.895474,52.492405 +-1.858977,52.464813 +-1.761459,52.501066 +-1.968343,52.501563 +-1.811697,52.465547 +-2.025845,52.462062 +-1.989869,52.487164 +-1.889097,52.409934 +-1.939175,52.512195 +-2.068038,52.58269 +-1.487898,52.407367 +-2.131274,52.517406 +-2.114298,52.483379 +-2.129098,52.574242 +-1.939364,52.503053 +-1.531133,52.384936 +-1.935166,52.552908 +-1.508407,52.403139 +-2.065991,52.517092 +-1.902018,52.483511 +-1.990843,52.619082 +-1.918859,52.502141 +-1.886786,52.531998 +-2.123625,52.548366 +-2.119319,52.537709 +-1.840523,52.508652 +-2.127083,52.606976 +-2.145616,52.584939 +-1.896638,52.485834 +-1.824242,52.490199 +-1.924868,52.650504 +-2.131389,52.575579 +-1.738412,52.477536 +-1.866001,52.492969 +-1.767709,52.514375 +-1.446505,52.402425 +-1.539869,52.381294 +-2.053866,52.448154 +-1.525293,52.421197 +-1.912559,52.581751 +-1.846964,52.529292 +-1.503399,52.406714 +-1.932966,52.486849 +-1.975731,52.433348 +-1.970955,52.585241 +-1.874337,52.472481 +-1.601755,52.406736 +-1.755036,52.469273 +-2.018812,52.500585 +-2.080194,52.507626 +-1.901384,52.517213 +-1.877038,52.464563 +-1.957391,52.401159 +-1.984683,52.579418 +-1.987772,52.562967 +-2.113533,52.500865 +-1.797955,52.496243 +-2.145262,52.59392 +-2.023581,52.493303 +-1.952628,52.457381 +-1.514064,52.404682 +-1.527709,52.408423 +-2.131336,52.592372 +-1.536236,52.380309 +-1.767833,52.468265 +-1.9398,52.486412 +-1.858595,52.487593 +-1.978464,52.500333 +-1.809864,52.487678 +-1.773527,52.465948 +-1.499235,52.40702 +-1.487023,52.421937 +-2.000562,52.573665 +-1.779667,52.430224 +-1.796084,52.483564 +-2.092099,52.542983 +-2.091322,52.445641 +-1.863493,52.47531 +-1.815361,52.440992 +-1.555961,52.393924 +-1.854144,52.452985 +-2.010701,52.404178 +-1.936825,52.4866 +-1.864078,52.510119 +-1.922003,52.490636 +-1.818467,52.397476 +-1.477034,52.411168 +-1.842519,52.42841 +-1.852179,52.512496 +-1.874243,52.505348 +-1.876713,52.459592 +-1.99244,52.523817 +-2.109876,52.499511 +-1.843293,52.40501 +-1.503061,52.406686 +-1.911319,52.51563 +-2.171796,52.501307 +-1.898391,52.466624 +-1.849743,52.522697 +-2.011245,52.462127 +-1.944313,52.445115 +-2.117095,52.477856 +-2.109295,52.473027 +-2.07051,52.513916 +-2.102656,52.593299 +-1.931669,52.544555 +-2.013408,52.555361 +-1.796746,52.509421 +-2.115787,52.584747 +-1.816849,52.557765 +-2.004447,52.616897 +-1.834379,52.434161 +-1.998879,52.583644 +-1.929598,52.502346 +-2.012575,52.481312 +-1.885078,52.553724 +-1.521801,52.419116 +-1.934073,52.445352 +-1.902594,52.483079 +-1.781945,52.364745 +-1.967023,52.414422 +-1.838555,52.555324 +-1.905045,52.473193 +-1.9012,52.473936 +-1.891554,52.487205 +-1.947359,52.433034 +-1.506553,52.388855 +-1.938206,52.488506 +-2.076289,52.549332 +-1.863004,52.471488 +-1.918655,52.461228 +-2.142367,52.575324 +-2.051844,52.530017 +-2.106366,52.613253 +-1.841746,52.475858 +-2.016819,52.526944 +-1.538111,52.414604 +-1.517039,52.410915 +-2.066216,52.5099 +-1.922003,52.515314 +-1.884994,52.473013 +-1.529733,52.430987 +-1.846437,52.553654 +-1.871167,52.458804 +-1.76126,52.42083 +-2.125639,52.592495 +-1.937154,52.472378 +-1.819724,52.489581 +-2.131543,52.592453 +-1.892368,52.600514 +-1.927946,52.476706 +-2.073357,52.603965 +-1.916737,52.50267 +-2.106511,52.612148 +-1.821648,52.43604 +-1.964385,52.495035 +-2.168219,52.459697 +-1.921963,52.463379 +-1.897043,52.526991 +-2.087022,52.496096 +-2.080325,52.595061 +-2.115011,52.575866 +-1.989999,52.563471 +-1.95593,52.495814 +-1.856954,52.421353 +-1.995826,52.395907 +-2.08294,52.495128 +-1.970207,52.490047 +-2.12928,52.596051 +-1.887549,52.44645 +-2.058709,52.504923 +-1.860036,52.44643 +-1.493839,52.435406 +-1.863003,52.509866 +-1.53863,52.435284 +-1.521021,52.405654 +-2.133557,52.589592 +-2.074603,52.581724 +-1.801606,52.575289 +-1.831631,52.487576 +-1.867514,52.513863 +-1.850196,52.515011 +-1.961224,52.607056 +-1.984383,52.465804 +-1.913628,52.502992 +-1.86366,52.545206 +-1.447357,52.402492 +-1.861962,52.503401 +-1.851094,52.423683 +-1.930512,52.473768 +-1.897636,52.480963 +-1.793453,52.410255 +-2.129497,52.604447 +-1.878513,52.468898 +-2.089734,52.56181 +-1.979574,52.457424 +-1.986846,52.599421 +-1.856643,52.476686 +-2.013271,52.444767 +-1.944703,52.474719 +-1.932301,52.468995 +-1.975426,52.506446 +-1.92047,52.499437 +-2.176207,52.569012 +-1.879628,52.551274 +-1.878321,52.501298 +-1.950359,52.472276 +-1.99557,52.463665 +-1.991353,52.503616 +-2.030364,52.483673 +-2.110381,52.536288 +-1.493927,52.435461 +-1.826847,52.411792 +-1.839424,52.434222 +-1.493941,52.43547 +-2.068089,52.473229 +-1.891995,52.487628 +-2.160104,52.478183 +-2.117143,52.617271 +-1.991029,52.579059 +-1.774459,52.505407 +-1.86236,52.55077 +-1.966932,52.635457 +-2.11183,52.624701 +-1.779523,52.4826 +-1.771073,52.476605 +-1.841172,52.508634 +-2.084442,52.563549 +-2.126315,52.576259 +-1.709357,52.447028 +-2.025411,52.549822 +-2.088438,52.569955 +-1.908124,52.47885 +-2.056108,52.59022 +-1.49388,52.403536 +-1.909968,52.506046 +-1.897756,52.499024 +-2.049623,52.560611 +-1.978523,52.50081 +-1.914495,52.473874 +-2.044099,52.538651 +-1.8795,52.468647 +-1.786413,52.449457 +-1.979085,52.558768 +-1.945488,52.435397 +-1.524675,52.418471 +-2.059009,52.541395 +-2.018443,52.534351 +-1.858131,52.531337 +-1.804188,52.49914 +-1.875513,52.472967 +-1.880547,52.467839 +-2.173222,52.504334 +-1.749234,52.48254 +-1.892921,52.439874 +-1.893457,52.486011 +-1.893968,52.512352 +-1.877095,52.57638 +-1.943142,52.486648 +-1.753075,52.403921 +-1.899311,52.47611 +-1.875356,52.486884 +-1.871945,52.459667 +-1.858102,52.521988 +-1.829085,52.506065 +-1.929319,52.446824 +-1.899023,52.492885 +-1.970099,52.607158 +-1.938837,52.543228 +-1.962,52.528432 +-1.551845,52.392622 +-2.074953,52.47549 +-1.514943,52.414287 +-1.854981,52.511871 +-1.905315,52.436352 +-1.884482,52.471727 +-1.934426,52.44528 +-1.918167,52.502285 +-1.894601,52.475476 +-1.931939,52.446142 +-1.934379,52.546993 +-1.999071,52.628593 +-1.785373,52.560499 +-2.12487,52.571604 +-1.493956,52.435488 +-1.843205,52.554288 +-1.992277,52.437243 +-1.79241,52.501008 +-2.086872,52.606419 +-1.896034,52.4735 +-1.891626,52.421803 +-1.921875,52.612772 +-1.790427,52.381706 +-1.802955,52.389235 +-1.487217,52.43696 +-1.97114,52.595651 +-1.486938,52.422943 +-1.896861,52.529247 +-1.859125,52.524785 +-1.880396,52.550717 +-1.919657,52.484881 +-1.946414,52.448181 +-1.903372,52.483943 +-1.888182,52.498763 +-1.634524,52.395631 +-1.531479,52.445208 +-2.022432,52.493968 +-1.911842,52.512313 +-1.533344,52.430256 +-1.994614,52.584264 +-1.911203,52.470905 +-1.822421,52.507169 +-1.960988,52.606742 +-2.056447,52.601664 +-1.883077,52.502112 +-1.460542,52.416928 +-1.459289,52.411205 +-1.922437,52.419544 +-1.936636,52.443241 +-1.964054,52.395021 +-1.823201,52.566225 +-1.829963,52.450175 +-1.874619,52.507883 +-2.131994,52.59025 +-1.976631,52.511732 +-1.828864,52.506145 +-1.919172,52.484476 +-1.978567,52.561348 +-1.939079,52.581615 +-1.498074,52.413497 +-2.129342,52.47663 +-1.85944,52.444379 +-1.795413,52.374073 +-2.090224,52.570601 +-2.023345,52.492754 +-1.994379,52.45365 +-1.534571,52.405897 +-2.172275,52.57105 +-1.9698,52.416545 +-1.510572,52.40945 +-2.004432,52.61812 +-2.073963,52.464343 +-2.122044,52.542111 +-1.859803,52.492036 +-1.949148,52.449954 +-1.836506,52.515218 +-1.954298,52.478625 +-1.535302,52.404884 +-2.063347,52.51329 +-2.132591,52.587579 +-1.986956,52.528257 +-1.996773,52.520158 +-1.946802,52.480042 +-1.783337,52.500596 +-1.783295,52.479119 +-1.760701,52.415264 +-1.954954,52.485736 +-1.878351,52.452662 +-1.482187,52.421745 +-1.856868,52.470654 +-1.994496,52.584435 +-1.838267,52.452884 +-1.951153,52.567354 +-1.823011,52.565892 +-1.731662,52.376823 +-1.846033,52.470748 +-1.734321,52.49183 +-1.866839,52.556951 +-1.92186,52.51321 +-1.780289,52.458859 +-1.982636,52.455204 +-1.894598,52.470837 +-1.874313,52.522276 +-1.724729,52.445293 +-1.892538,52.470341 +-1.557401,52.398343 +-2.147754,52.588874 +-1.979152,52.573457 +-1.931559,52.520246 +-1.44192,52.426884 +-1.724516,52.44398 +-1.82852,52.45421 +-1.833734,52.519538 +-1.899728,52.474222 +-1.975425,52.589027 +-1.908034,52.415955 +-1.890627,52.49908 +-1.774936,52.530301 +-2.08508,52.527607 +-1.461855,52.426185 +-1.964848,52.413442 +-1.967556,52.510354 +-1.902269,52.483214 +-1.885987,52.458972 +-2.123032,52.478992 +-1.832568,52.481095 +-2.092029,52.586818 +-2.166752,52.453074 +-1.536228,52.460977 +-1.814986,52.477851 +-1.811354,52.487276 +-1.859613,52.491829 +-1.970845,52.43777 +-1.911176,52.491492 +-1.907741,52.507195 +-2.025127,52.569303 +-1.915544,52.494956 +-2.138668,52.581549 +-2.186987,52.578282 +-1.466206,52.378836 +-1.499855,52.406861 +-2.014422,52.589181 +-1.997038,52.534173 +-1.886801,52.462802 +-1.504427,52.414702 +-1.965943,52.538411 +-1.876066,52.485815 +-1.835399,52.452376 +-1.767716,52.47383 +-1.96976,52.476292 +-2.08339,52.561176 +-1.916102,52.472356 +-1.886349,52.455511 +-1.78459,52.443179 +-2.074136,52.523245 +-1.973418,52.414487 +-1.80557,52.466338 +-1.917533,52.447005 +-1.981643,52.578033 +-2.059816,52.517014 +-2.084873,52.527472 +-2.066573,52.541643 +-1.870888,52.524286 +-1.830722,52.471222 +-1.51085,52.402853 +-2.11483,52.523716 +-2.066945,52.582142 +-1.960659,52.578235 +-2.163602,52.488544 +-1.527988,52.408478 +-1.916414,52.408401 +-2.057389,52.452674 +-1.992949,52.565215 +-2.056184,52.569553 +-1.972934,52.412329 +-1.892112,52.421642 +-1.842619,52.429084 +-1.892548,52.466358 +-2.075715,52.567303 +-1.872038,52.508798 +-1.776433,52.418216 +-2.073608,52.454436 +-2.123295,52.593864 +-1.9101,52.455756 +-2.07804,52.589021 +-1.919186,52.412143 +-1.835048,52.443961 +-2.142147,52.457331 +-2.118281,52.475104 +-1.471256,52.393917 +-2.047182,52.5261 +-2.106513,52.576485 +-1.855514,52.501991 +-1.840555,52.524393 +-2.002611,52.547298 +-1.777959,52.409966 +-1.977697,52.443552 +-1.997391,52.5318 +-2.03695,52.506101 +-1.830757,52.488788 +-2.050485,52.514241 +-1.934986,52.545573 +-2.078454,52.457094 +-1.919491,52.406129 +-1.492089,52.408482 +-2.129031,52.596654 +-1.868233,52.510079 +-1.804914,52.518173 +-1.938582,52.44086 +-2.115492,52.50098 +-2.083473,52.511813 +-1.818586,52.451102 +-1.824133,52.554702 +-2.100378,52.546141 +-1.875106,52.507668 +-1.966701,52.510273 +-1.830457,52.471096 +-1.841955,52.466841 +-1.992786,52.56962 +-2.151446,52.610705 +-1.88002,52.483122 +-1.840966,52.487939 +-1.834572,52.433523 +-1.940865,52.438631 +-1.886327,52.498492 +-1.851325,52.442329 +-1.800682,52.518759 +-2.123762,52.555315 +-2.122414,52.484458 +-2.120795,52.565036 +-1.85058,52.488689 +-1.460564,52.44407 +-1.868815,52.433117 +-2.046126,52.587627 +-2.011176,52.536905 +-1.820857,52.442502 +-1.790781,52.421893 +-2.016803,52.449064 +-1.825795,52.462557 +-2.153957,52.56026 +-2.143673,52.568652 +-1.9406,52.504635 +-1.867304,52.441709 +-1.915771,52.491765 +-2.140587,52.44793 +-1.780735,52.374838 +-1.836232,52.422342 +-1.925078,52.474834 +-1.916007,52.406378 +-1.90043,52.587127 +-1.763616,52.417445 +-2.121465,52.57265 +-1.777159,52.422929 +-2.024887,52.511093 +-1.800768,52.401709 +-1.945708,52.435406 +-1.902085,52.479978 +-1.84848,52.439808 +-1.851429,52.507902 +-2.021351,52.570607 +-1.82536,52.53151 +-1.936554,52.552316 +-2.035218,52.49499 +-2.058928,52.5361 +-1.488025,52.400194 +-2.128521,52.487877 +-1.83894,52.550794 +-1.762711,52.501141 +-1.64931,52.384276 +-1.855104,52.523791 +-2.15116,52.570728 +-2.072911,52.513339 +-2.119202,52.483796 +-1.486387,52.422267 +-1.966692,52.483277 +-1.80976,52.477753 +-1.855656,52.503789 +-2.073867,52.512709 +-2.082063,52.490543 +-1.901813,52.523138 +-1.748733,52.404928 +-1.901629,52.52597 +-1.974344,52.594222 +-2.002745,52.567229 +-1.931398,52.519859 +-2.032057,52.563242 +-2.129179,52.59677 +-1.78217,52.462386 +-1.995233,52.588921 +-1.873425,52.456711 +-1.903645,52.473659 +-1.989861,52.522099 +-1.95676,52.611954 +-1.798141,52.420305 +-1.829459,52.470447 +-1.971105,52.445439 +-1.871351,52.491959 +-1.448313,52.428361 +-2.014351,52.507409 +-1.779148,52.45162 +-1.882486,52.485974 +-1.987423,52.385056 +-1.803363,52.502402 +-1.957536,52.495851 +-1.930168,52.411799 +-1.903674,52.473668 +-2.067233,52.529677 +-2.115961,52.566848 +-1.485381,52.406332 +-1.934089,52.513694 +-1.502973,52.415811 +-2.087042,52.595371 +-1.772347,52.48068 +-1.953962,52.447672 +-2.05357,52.531356 +-1.819574,52.508082 +-1.737273,52.480824 +-1.936651,52.443232 +-2.000133,52.524644 +-1.836343,52.499665 +-2.073732,52.502622 +-2.011523,52.567992 +-1.899128,52.491662 +-2.040354,52.5384 +-1.894456,52.622622 +-1.871609,52.458687 +-1.823764,52.462366 +-2.076362,52.455882 +-1.860577,52.447473 +-1.766555,52.451182 +-2.081077,52.507059 +-1.499741,52.438982 +-2.045394,52.578556 +-2.088455,52.549378 +-2.068675,52.509386 +-1.884565,52.496297 +-2.029698,52.500268 +-2.017428,52.502087 +-1.891687,52.487151 +-2.113108,52.484674 +-2.124301,52.589143 +-1.847624,52.474715 +-1.976074,52.506221 +-1.900568,52.519316 +-1.822933,52.570621 +-1.518285,52.404492 +-1.933459,52.423605 +-1.489231,52.377175 +-1.977893,52.582815 +-1.489405,52.433391 +-1.840828,52.485395 +-2.047414,52.468294 +-1.809571,52.467009 +-2.055229,52.584242 +-2.07015,52.556321 +-1.841087,52.446082 +-2.140708,52.439767 +-1.778934,52.482734 +-1.885454,52.613354 +-2.01365,52.481518 +-1.885643,52.512363 +-1.762358,52.473676 +-1.861354,52.537751 +-1.905487,52.500325 +-1.896002,52.499454 +-1.901009,52.467597 +-2.071372,52.527544 +-1.895855,52.499588 +-2.004196,52.620961 +-1.879677,52.468342 +-1.914269,52.468705 +-1.834641,52.493963 +-1.984122,52.579292 +-1.883783,52.507857 +-1.822114,52.382405 +-2.015439,52.584704 +-1.9132,52.510903 +-2.032815,52.511496 +-1.864604,52.463552 +-2.04472,52.54026 +-2.01021,52.441387 +-1.812239,52.369058 +-1.799393,52.43595 +-1.515009,52.412309 +-1.888497,52.426583 +-1.869088,52.510107 +-2.073764,52.512556 +-2.10144,52.56509 +-2.105142,52.583373 +-1.502724,52.42756 +-1.985815,52.593712 +-1.956751,52.424092 +-1.908882,52.475587 +-1.864465,52.451155 +-1.909722,52.410113 +-2.083866,52.563459 +-2.077214,52.563832 +-2.071123,52.564843 +-2.111895,52.505496 +-1.974105,52.49768 +-1.904334,52.4887 +-1.656841,52.368107 +-1.89408,52.453396 +-2.087162,52.492545 +-1.844912,52.496512 +-1.536299,52.406551 +-1.991587,52.593119 +-1.884727,52.552834 +-2.064875,52.559776 +-2.01448,52.585585 +-1.819407,52.415665 +-2.161927,52.597629 +-2.05778,52.560023 +-1.794812,52.431061 +-2.025339,52.502265 +-2.00056,52.47768 +-1.876739,52.455744 +-1.848522,52.496382 +-1.948838,52.565672 +-1.872849,52.457475 +-1.995022,52.491201 +-1.741257,52.481929 +-1.830287,52.423286 +-1.974905,52.411233 +-1.836037,52.514498 +-1.917667,52.469867 +-1.885078,52.565097 +-1.494822,52.444616 +-1.971159,52.519885 +-1.934294,52.445208 +-1.906128,52.489744 +-2.004389,52.628045 +-1.81093,52.441732 +-1.796281,52.48236 +-2.00137,52.482292 +-2.00302,52.502268 +-1.999986,52.494267 +-1.888276,52.537222 +-1.884653,52.547081 +-2.008705,52.491552 +-1.80449,52.437595 +-1.876501,52.551432 +-1.913862,52.504017 +-2.024483,52.551988 +-2.130448,52.621302 +-1.487767,52.407259 +-1.888553,52.451216 +-1.929207,52.498139 +-1.867218,52.51433 +-1.906525,52.427444 +-2.125516,52.580764 +-1.89295,52.433968 +-1.499101,52.382504 +-1.798225,52.385658 +-1.878984,52.50111 +-1.831723,52.505924 +-1.970888,52.529747 +-1.641865,52.421949 +-1.893664,52.479593 +-1.835094,52.463245 +-1.89769,52.54026 +-1.916481,52.497762 +-1.750846,52.405696 +-2.066259,52.577467 +-2.103799,52.546012 +-1.931626,52.486938 +-1.81511,52.444669 +-1.811715,52.516386 +-1.828081,52.499177 +-1.993209,52.606604 +-2.114553,52.474074 +-1.564321,52.422489 +-1.860131,52.50944 +-1.635766,52.421553 +-1.734158,52.479711 +-1.930897,52.510024 +-2.073283,52.603839 +-2.119855,52.447665 +-1.964241,52.510012 +-1.901979,52.46153 +-1.831748,52.418254 +-2.001209,52.522738 +-1.902721,52.512423 +-1.953796,52.494168 +-2.083436,52.562039 +-1.887241,52.463522 +-1.804224,52.461202 +-2.122072,52.583869 +-1.990958,52.486607 +-1.809365,52.511195 +-1.949516,52.476366 +-1.488691,52.432876 +-1.863733,52.459649 +-1.858362,52.509744 +-1.833623,52.509856 +-1.571765,52.393299 +-2.126876,52.627284 +-2.117691,52.458473 +-1.945821,52.487296 +-1.757204,52.530041 +-2.163474,52.497705 +-1.916053,52.544581 +-2.075124,52.584061 +-1.987148,52.577854 +-2.02851,52.508548 +-1.958057,52.45821 +-1.797733,52.457973 +-1.524091,52.411285 +-1.991058,52.502286 +-1.491154,52.377282 +-1.80828,52.479512 +-1.466886,52.378524 +-1.865558,52.440206 +-2.024982,52.4967 +-1.886527,52.455106 +-1.819949,52.546146 +-1.556331,52.402529 +-2.108044,52.56913 +-1.948876,52.48158 +-1.818279,52.493481 +-2.015847,52.610019 +-1.822894,52.565694 +-1.84452,52.478217 +-2.00271,52.486625 +-2.011093,52.502501 +-1.850141,52.492374 +-1.480986,52.377535 +-2.08701,52.541989 +-2.122565,52.475126 +-1.935045,52.495049 +-1.959669,52.465807 +-1.958387,52.388987 +-1.495803,52.427018 +-1.953577,52.478058 +-2.119292,52.571124 +-1.778515,52.466326 +-2.070598,52.568916 +-1.525264,52.418446 +-2.013569,52.55244 +-1.892932,52.483718 +-2.117738,52.580538 +-1.876852,52.431111 +-1.788642,52.377091 +-1.897404,52.454064 +-1.935178,52.494555 +-1.944997,52.474917 +-1.931299,52.41296 +-1.780696,52.510435 +-1.904334,52.488691 +-1.748299,52.491563 +-1.917754,52.486678 +-1.899832,52.492957 +-1.828391,52.442028 +-2.167612,52.504954 +-1.791498,52.460066 +-1.738107,52.496657 +-1.806477,52.487699 +-1.85839,52.464273 +-1.587786,52.411947 +-2.005038,52.616502 +-1.997377,52.531791 +-1.984324,52.465004 +-2.034126,52.587055 +-2.12556,52.58578 +-1.893452,52.481795 +-2.121448,52.48134 +-1.87595,52.479791 +-1.856687,52.476497 +-1.794503,52.522695 +-1.956497,52.578827 +-1.875571,52.462872 +-1.836352,52.421704 +-1.985715,52.583194 +-1.761941,52.417109 +-1.772181,52.450231 +-1.51131,52.401146 +-1.977705,52.514879 +-1.888786,52.469681 +-1.878566,52.454955 +-1.558903,52.406934 +-1.893836,52.462925 +-2.030202,52.547681 +-2.106264,52.479916 +-1.87421,52.522105 +-2.037828,52.600952 +-1.55905,52.404022 +-1.874057,52.544867 +-1.77698,52.484681 +-1.5157,52.401578 +-1.812451,52.478431 +-2.121081,52.561683 +-1.8721,52.497677 +-1.888182,52.446487 +-1.869058,52.430564 +-1.709883,52.44542 +-1.990337,52.500191 +-2.130228,52.582197 +-2.107986,52.557632 +-2.085942,52.531373 +-1.733895,52.479467 +-1.880767,52.490099 +-1.861267,52.457579 +-1.780545,52.493318 +-1.844366,52.521917 +-1.885988,52.464159 +-1.979995,52.568081 +-2.060892,52.453482 +-1.832439,52.47642 +-1.887037,52.457058 +-2.140542,52.447876 +-2.054134,52.546117 +-2.122762,52.567003 +-1.979098,52.404904 +-1.827645,52.490051 +-1.981267,52.490373 +-1.824761,52.407627 +-2.020386,52.401569 +-1.968629,52.493022 +-1.994333,52.586341 +-2.13906,52.598108 +-1.980962,52.480259 +-1.881008,52.504519 +-2.015904,52.483712 +-2.035925,52.531093 +-1.820769,52.48952 +-1.833337,52.480242 +-1.86545,52.441968 +-2.025381,52.549813 +-1.778424,52.484585 +-1.876701,52.464069 +-1.832676,52.429241 +-1.825107,52.480042 +-1.804793,52.408845 +-1.823529,52.462374 +-1.908608,52.494151 +-1.925227,52.630691 +-1.473139,52.383883 +-2.132628,52.580216 +-1.884126,52.46146 +-1.48227,52.410957 +-1.845503,52.475144 +-2.114059,52.488081 +-2.084882,52.501536 +-2.013166,52.585468 +-1.819302,52.517027 +-1.8873,52.463522 +-1.903539,52.50854 +-2.108913,52.592341 +-1.889112,52.492067 +-1.868433,52.482516 +-1.986473,52.514458 +-2.016095,52.484008 +-1.9274,52.531238 +-1.975335,52.431703 +-1.882858,52.556887 +-1.786688,52.490048 +-2.083639,52.490902 +-2.012902,52.540879 +-1.904586,52.508379 +-1.964477,52.510039 +-1.897303,52.53563 +-1.892112,52.421741 +-1.959883,52.473206 +-1.860346,52.464725 +-1.539855,52.403796 +-1.833278,52.511509 +-1.828704,52.429685 +-2.147249,52.623089 +-1.965131,52.464119 +-1.803033,52.427748 +-1.891775,52.42094 +-1.485958,52.449055 +-2.008438,52.559362 +-1.810908,52.484695 +-2.124246,52.481238 +-2.136459,52.587746 +-1.796896,52.45763 +-1.964856,52.496186 +-1.844337,52.52189 +-1.895341,52.49895 +-1.465245,52.378139 +-1.991381,52.508615 +-1.972529,52.569158 +-1.70585,52.626664 +-2.193316,53.042038 +-2.134194,52.984949 +-2.166678,53.061387 +-2.148179,52.906213 +-2.094685,52.981751 +-1.644327,52.807826 +-1.975782,53.149603 +-2.214106,53.041841 +-1.675952,52.610279 +-2.13968,53.036927 +-2.259525,52.888394 +-2.179723,52.627764 +-2.121497,52.812808 +-2.161091,52.903743 +-2.144237,52.829584 +-1.857349,52.936083 +-2.072286,53.018011 +-2.323122,53.026322 +-2.187751,53.007529 +-2.16073,52.986957 +-1.852587,52.879112 +-2.139193,52.978489 +-2.167021,53.034465 +-1.65872,52.638467 +-2.11911,52.802608 +-2.216758,53.073945 +-1.669344,52.791429 +-2.107516,52.978531 +-2.103014,52.688905 +-2.191392,52.522331 +-2.141078,52.990056 +-2.156449,52.997516 +-1.695429,52.633893 +-2.016743,53.014976 +-2.058538,52.6307 +-1.648672,52.6071 +-1.834098,52.649981 +-2.199696,53.051098 +-1.868553,52.89631 +-2.202098,53.063894 +-1.979886,52.645528 +-2.211758,52.644369 +-2.254997,52.987915 +-1.630366,52.78708 +-2.212415,53.01654 +-2.115509,52.809587 +-2.019611,52.704078 +-1.78354,52.591358 +-1.890886,52.632624 +-2.169217,53.122896 +-2.012506,52.650536 +-2.182525,52.895576 +-1.924664,52.950465 +-2.131154,53.023669 +-2.149439,52.822907 +-2.273993,52.946091 +-1.650393,52.850652 +-1.661039,52.795406 +-2.275653,52.813835 +-2.327805,53.008789 +-2.072274,52.636778 +-1.660661,52.622534 +-2.233727,53.08461 +-1.939975,52.682471 +-2.20602,52.922542 +-2.238981,53.035897 +-2.120266,52.979175 +-2.00484,52.690181 +-2.179824,53.00426 +-2.30835,52.494323 +-2.177955,53.020803 +-2.107757,52.76435 +-2.069905,52.790799 +-1.853487,52.907601 +-2.12096,52.982231 +-1.894068,53.021681 +-1.613574,52.833089 +-2.036424,53.074803 +-2.020346,52.692939 +-1.805412,52.639113 +-2.058828,52.648275 +-1.99133,52.698901 +-1.763814,52.671787 +-2.224264,52.975932 +-2.161514,53.0015 +-1.840194,52.688797 +-1.990805,53.094548 +-1.663017,52.808096 +-2.221151,53.013647 +-2.194564,53.001361 +-2.144019,52.826429 +-2.153592,52.965167 +-2.179383,53.048775 +-1.637989,52.811825 +-2.22618,52.463287 +-2.184553,52.897254 +-2.105458,52.696364 +-2.106699,52.689522 +-2.169781,53.034766 +-2.027782,52.661348 +-1.690762,52.633602 +-1.645899,52.813395 +-2.109853,52.966447 +-2.017346,52.701759 +-2.238347,52.926355 +-2.127213,52.69245 +-1.846111,52.958273 +-2.126386,52.65197 +-2.043298,52.726833 +-2.035912,52.676152 +-1.945336,52.725543 +-2.111115,52.99407 +-2.12183,52.804546 +-1.831376,52.67371 +-2.21778,52.714055 +-2.117959,52.777321 +-1.990202,52.783591 +-1.995191,52.71733 +-2.201828,52.628546 +-2.184807,53.00899 +-2.311324,52.774894 +-1.993911,52.985654 +-2.019436,52.678062 +-2.16102,53.000764 +-1.942282,52.761949 +-2.033916,52.695894 +-2.131269,52.693021 +-2.234384,52.644021 +-2.20577,52.458029 +-2.104111,53.166181 +-2.313629,52.594367 +-1.963788,52.685618 +-2.098268,52.808569 +-1.666473,52.627486 +-2.052063,53.120686 +-2.03045,52.69113 +-2.128622,52.804117 +-1.972872,52.660252 +-1.834273,52.646646 +-2.111945,53.020992 +-2.126047,52.816327 +-1.880215,52.758307 +-1.681841,52.779732 +-1.938147,52.783621 +-1.966403,52.941656 +-1.671583,52.619787 +-2.089336,52.814895 +-1.978674,52.984673 +-1.893459,52.911553 +-2.103718,52.978229 +-1.686724,52.63013 +-1.816362,52.663736 +-1.947008,52.67744 +-1.745358,52.727782 +-2.202121,52.973212 +-2.115361,52.80956 +-2.033856,52.695696 +-1.780195,52.705171 +-2.186744,53.053654 +-1.852309,52.676183 +-1.839108,52.690513 +-2.01222,52.788248 +-2.09375,52.962749 +-1.865048,52.919291 +-2.082237,52.717193 +-2.186242,53.041007 +-2.098321,52.733587 +-2.180688,53.021986 +-1.723753,52.622356 +-2.123908,52.815484 +-2.19334,52.52293 +-2.212299,52.99582 +-2.166723,52.999794 +-1.999203,52.702587 +-2.317176,52.886411 +-1.77259,53.011991 +-2.170677,53.106588 +-2.211876,53.052407 +-1.857876,52.815662 +-2.119794,53.002071 +-2.026479,52.706575 +-2.157491,52.813143 +-2.063186,52.921967 +-1.962886,52.738306 +-2.035234,52.66167 +-2.235384,52.447725 +-2.196568,53.045575 +-2.09476,53.022445 +-1.717809,52.597998 +-2.188431,53.00627 +-2.193856,52.462787 +-2.186316,53.034076 +-1.708425,52.648255 +-2.230704,53.013557 +-1.639534,52.795415 +-2.168418,53.014075 +-1.685061,52.775201 +-2.041398,52.784528 +-2.143933,53.055745 +-2.097892,52.733596 +-2.10312,52.689983 +-1.703688,52.629599 +-1.675969,52.619907 +-1.78239,52.590978 +-1.88803,52.674927 +-2.202095,53.009061 +-1.823014,52.700702 +-1.928853,52.754597 +-2.200807,52.644334 +-2.109115,52.821405 +-1.603393,52.80348 +-2.165918,52.999723 +-1.638842,52.816358 +-2.018865,52.724358 +-2.135166,52.80971 +-2.025996,52.689873 +-1.834686,52.650853 +-2.192166,52.628751 +-2.247915,52.903584 +-2.222715,52.975971 +-1.831972,52.676326 +-1.942323,52.696793 +-2.26041,53.062999 +-1.671108,52.6201 +-2.277284,52.694891 +-1.949386,52.77007 +-1.634378,52.816048 +-2.051172,52.673791 +-2.237095,52.527813 +-2.186145,52.463087 +-2.21206,53.05958 +-2.325448,53.06985 +-2.03892,53.079009 +-2.153661,52.997223 +-2.168551,52.434786 +-1.908454,52.887474 +-2.018697,52.677846 +-2.080975,52.858698 +-1.915977,52.746921 +-2.131644,52.832223 +-2.260701,52.461876 +-2.198167,52.981201 +-1.777494,52.712537 +-1.837536,52.651675 +-2.198235,53.109574 +-1.796162,53.042085 +-1.698768,52.614591 +-2.329066,53.035457 +-1.637796,52.813631 +-2.176581,52.939795 +-2.0959,52.97882 +-2.141791,52.989552 +-1.643767,52.823709 +-1.836508,52.633793 +-1.939542,53.071845 +-2.254534,53.033258 +-1.93828,52.783531 +-1.804946,52.687324 +-2.196498,52.523878 +-1.826842,52.683331 +-2.312873,52.815127 +-2.081684,52.809247 +-2.098198,52.961199 +-2.18689,53.015198 +-2.135172,52.820983 +-1.943312,52.676198 +-2.298472,53.047277 +-2.136498,52.638286 +-1.99608,52.699432 +-2.240795,52.471196 +-1.872254,52.911838 +-2.067009,52.66296 +-2.259538,52.561703 +-2.160638,53.006176 +-1.676937,52.632963 +-1.968319,52.659208 +-1.907923,52.815469 +-2.190544,53.025674 +-2.091311,52.624674 +-2.000736,53.117236 +-1.941673,52.707679 +-2.210484,53.112618 +-2.083159,52.789235 +-1.825182,52.684048 +-2.027268,52.665717 +-2.160052,53.021044 +-2.049714,53.054024 +-1.670137,52.621527 +-2.038959,52.676987 +-2.20997,53.050118 +-2.100599,52.982133 +-2.044955,52.683098 +-1.866653,53.18146 +-2.249228,52.535915 +-2.201828,52.6286 +-2.189574,52.943937 +-1.933774,52.684814 +-2.147013,52.825239 +-2.202207,53.026562 +-2.021498,53.105369 +-2.15724,53.022522 +-2.117505,52.823384 +-2.095134,52.793199 +-2.215389,52.811461 +-2.025829,52.682627 +-2.295942,52.993735 +-2.012241,52.70451 +-1.662875,52.809183 +-1.626553,52.806378 +-2.167905,53.031587 +-2.230658,53.016101 +-2.08835,52.840651 +-1.92797,52.759901 +-1.86097,52.748056 +-2.129978,52.989637 +-2.033903,52.67956 +-1.6603,52.836989 +-1.93456,52.763033 +-2.077742,52.861091 +-2.22479,53.008508 +-1.972977,52.657744 +-2.130482,52.672373 +-1.744096,52.611947 +-2.132575,52.796732 +-2.185509,53.033655 +-2.175232,52.517061 +-1.882438,52.890382 +-2.153459,52.994832 +-2.28673,52.99303 +-2.022515,53.10705 +-2.219645,53.019556 +-1.67264,52.620752 +-1.935309,52.877658 +-1.931012,52.766807 +-2.206405,52.565295 +-2.342016,52.8023 +-2.056455,52.642217 +-2.408275,52.919456 +-1.989748,52.953652 +-1.654167,52.818498 +-1.718077,52.72185 +-1.864148,52.89812 +-1.637437,52.812201 +-2.222654,53.013204 +-1.935121,52.664229 +-2.141768,52.977947 +-2.004349,52.669649 +-1.710569,52.616814 +-1.647376,52.843532 +-2.107402,52.63819 +-2.234078,52.995258 +-2.163545,52.860824 +-2.025345,52.690044 +-2.021491,52.674483 +-2.116184,52.778995 +-2.103509,52.978346 +-1.874833,52.603814 +-2.075094,52.815786 +-2.023043,52.673117 +-2.189285,52.491625 +-2.078773,52.807424 +-1.659933,52.600156 +-1.966331,52.765267 +-1.638342,52.831891 +-2.068194,52.683078 +-2.105357,53.021654 +-1.941169,52.752267 +-2.18099,53.005041 +-2.180645,53.008169 +-2.018531,52.704446 +-1.714591,52.858959 +-1.926215,52.675793 +-2.124441,53.022193 +-2.174687,52.517134 +-1.976627,52.661187 +-1.628893,52.822494 +-2.144731,52.830932 +-2.080477,52.790028 +-2.188535,53.006188 +-2.078025,52.861316 +-1.874804,52.603841 +-2.169891,53.047612 +-2.128365,52.892824 +-2.144943,53.032093 +-2.08662,52.642999 +-1.996761,52.700807 +-2.310421,52.99546 +-2.086154,52.639331 +-2.078552,52.791845 +-1.684465,52.631967 +-2.329545,53.012236 +-2.235305,52.454836 +-2.198047,52.987511 +-1.985734,52.985662 +-2.043205,53.064823 +-2.096729,52.816607 +-1.667576,52.803569 +-1.669461,52.615286 +-2.090612,52.722338 +-2.085969,52.972553 +-2.141836,52.989731 +-2.146264,52.893891 +-2.122148,52.80691 +-2.063645,52.829646 +-2.123809,52.817211 +-2.1266,52.995726 +-2.248497,53.038862 +-1.634344,52.820183 +-2.131682,52.947431 +-2.013413,52.664866 +-1.687553,52.636084 +-2.172104,52.782954 +-2.087373,52.686922 +-1.846794,52.722257 +-1.644179,52.603841 +-1.942147,52.729452 +-2.15906,52.998501 +-1.688604,52.631646 +-1.702796,52.647908 +-1.994838,52.69242 +-1.982015,52.645034 +-2.172302,53.01255 +-1.78498,52.634916 +-2.186286,53.002839 +-2.215689,53.012408 +-2.133545,52.827547 +-2.03157,52.685188 +-1.646467,52.792775 +-1.852925,52.602531 +-2.212158,52.586528 +-2.252804,52.857242 +-1.993636,52.715909 +-2.133591,52.683067 +-2.193926,52.779064 +-2.27549,52.991888 +-2.19572,53.022888 +-2.107365,52.965757 +-1.629046,52.834226 +-2.037765,52.801214 +-2.011276,52.691745 +-2.175841,53.057967 +-1.927288,52.760458 +-2.111512,53.153293 +-2.18893,52.901984 +-1.987549,52.991182 +-1.997042,52.707711 +-2.156171,53.023629 +-1.885138,52.728943 +-2.025409,52.672829 +-2.106866,52.87831 +-2.105175,52.824321 +-2.444343,52.913789 +-2.202556,53.04365 +-2.098478,52.992283 +-2.195836,53.002635 +-2.209102,52.645183 +-1.61951,52.790714 +-2.171242,53.023285 +-1.646564,52.613962 +-1.840445,52.758081 +-2.021976,53.104991 +-1.825428,52.678052 +-2.130131,53.010564 +-2.188884,52.987032 +-2.021328,52.675364 +-2.243009,52.504454 +-2.240581,52.494022 +-2.188735,52.49408 +-2.042931,52.625457 +-1.891167,52.656151 +-2.174552,53.0272 +-2.176707,53.116386 +-2.111015,52.879745 +-2.216642,53.012271 +-2.225866,52.971991 +-2.104614,52.689676 +-2.197963,52.975682 +-2.000655,52.807594 +-1.725814,52.623521 +-1.883976,52.725769 +-2.135156,53.03037 +-1.92062,52.74367 +-2.190819,53.030698 +-2.307628,53.051056 +-2.145732,52.98747 +-2.027224,52.690016 +-1.834862,52.651105 +-1.836191,52.679416 +-2.100126,52.989909 +-2.17389,53.022032 +-1.892835,52.911625 +-2.094268,53.001914 +-2.141853,52.990262 +-1.987202,52.955198 +-1.922463,52.656175 +-2.172403,52.554688 +-2.085785,52.639313 +-2.045932,52.627469 +-2.033827,52.620219 +-2.19402,53.042712 +-1.860407,52.900984 +-2.083024,52.780731 +-2.226379,52.973132 +-2.137522,53.033514 +-2.209473,53.033849 +-2.134778,52.985757 +-2.42418,52.980861 +-2.118866,52.391865 +-2.115563,52.409983 +-2.042985,52.379987 +-1.998545,52.375877 +-2.578197,52.774163 +-2.727918,52.733586 +-2.050254,52.364845 +-2.184022,52.215159 +-2.493075,52.697497 +-2.792943,52.000267 +-2.488649,52.709292 +-2.246474,52.386363 +-2.157216,52.213328 +-2.018633,52.427506 +-2.257701,52.182197 +-2.198715,52.070568 +-2.229855,52.202321 +-2.268982,52.359478 +-2.261628,52.399672 +-2.191548,52.07307 +-1.911481,52.28739 +-2.120653,52.02875 +-2.222973,52.388019 +-2.221073,52.392976 +-2.481736,52.106414 +-2.452107,52.085781 +-2.133746,52.278321 +-2.252317,52.192161 +-1.905767,52.355055 +-2.732984,52.055311 +-3.04141,52.847037 +-2.656246,51.893298 +-3.063382,52.857225 +-2.716429,52.761758 +-2.14953,52.416678 +-2.623087,52.046647 +-2.18965,52.103578 +-2.283812,52.336545 +-2.520995,52.897045 +-2.51946,52.186315 +-2.201039,52.194516 +-2.160334,52.355387 +-2.049627,52.38118 +-2.248301,52.332364 +-2.170266,52.192847 +-2.399427,52.277217 +-2.327464,52.112329 +-2.30277,52.114364 +-2.052621,52.427747 +-2.274895,52.155177 +-2.158739,52.213631 +-2.437343,52.707362 +-2.047303,52.378538 +-2.353903,52.479155 +-2.487397,52.68863 +-2.240244,52.191413 +-1.940663,52.11544 +-2.454761,52.708573 +-2.984185,52.835317 +-2.289187,52.350566 +-2.457749,52.270307 +-2.690484,52.061834 +-2.719084,52.065259 +-3.075733,52.594111 +-3.079515,52.84898 +-1.97054,52.142261 +-2.859781,52.079601 +-2.072141,52.260097 +-2.288132,52.176903 +-2.076139,52.344099 +-2.143977,52.418178 +-2.213563,52.197847 +-2.502429,52.579089 +-2.510491,52.049373 +-2.22665,52.190702 +-2.706141,52.96733 +-3.016482,52.201842 +-2.30404,52.0758 +-2.904159,51.958323 +-2.607864,52.685161 +-2.718007,52.746861 +-2.78062,52.70176 +-2.233266,52.392152 +-2.346485,52.741311 +-2.604343,51.91742 +-1.94008,52.311367 +-2.499096,52.698704 +-2.454092,52.676941 +-2.24983,52.390087 +-1.932595,52.324111 +-2.433543,52.036034 +-2.921565,52.232417 +-1.933092,52.090595 +-2.228662,52.203609 +-2.844059,52.267736 +-2.32701,52.114227 +-1.88387,52.295421 +-2.844172,52.276762 +-2.068521,52.344572 +-2.046,52.369054 +-1.885412,52.374015 +-2.069351,52.414478 +-2.221948,52.19518 +-2.233324,52.39208 +-2.338495,52.530092 +-2.439358,52.679522 +-2.999133,52.626113 +-2.710514,52.692411 +-2.729683,52.8436 +-1.960528,52.360318 +-3.040178,52.117473 +-2.230541,52.190668 +-2.104235,52.344455 +-2.046892,52.365493 +-2.443751,52.673735 +-2.765276,52.682459 +-2.433048,52.678629 +-2.491753,52.903427 +-2.334477,52.303688 +-2.525898,52.637421 +-2.159294,52.274306 +-2.598273,52.307285 +-2.228307,52.191383 +-2.478447,52.635897 +-2.266435,52.363395 +-2.224021,52.383036 +-2.153505,52.274413 +-2.758958,52.708795 +-3.052196,52.860165 +-2.274264,52.349388 +-2.715959,52.84505 +-2.694893,52.973401 +-2.73413,52.712808 +-2.520917,52.699464 +-2.508294,52.696867 +-2.695082,52.039546 +-2.510605,52.705972 +-2.951433,52.171358 +-2.218016,52.192984 +-2.59479,52.082198 +-2.359899,52.282819 +-2.179352,52.403403 +-2.03349,52.373301 +-2.449579,52.693958 +-2.229554,52.192135 +-2.655021,52.787626 +-2.704422,52.060502 +-2.437053,52.697609 +-2.254421,52.186672 +-3.069908,52.143442 +-2.942345,52.924699 +-2.229845,52.375671 +-2.256088,52.387304 +-2.059968,52.336782 +-2.153623,52.274574 +-2.430549,52.63066 +-2.830006,52.680019 +-2.31491,52.127503 +-2.764436,52.222985 +-2.755992,52.68278 +-2.75472,52.716239 +-2.091548,52.434367 +-2.255138,52.385562 +-1.991189,52.35885 +-2.422643,52.676428 +-2.518081,52.697427 +-2.326538,52.111559 +-2.207675,52.0679 +-2.282048,52.338357 +-2.342048,52.368747 +-2.653685,52.30932 +-2.719043,52.253091 +-2.495174,52.900913 +-2.718887,52.060252 +-1.903242,52.300959 +-2.731867,51.975344 +-2.244125,52.389478 +-2.24001,52.378384 +-1.832211,52.031175 +-2.260961,52.181902 +-2.569136,52.035187 +-2.234073,52.422393 +-2.19665,52.194586 +-2.716724,52.0645 +-2.493154,52.903753 +-2.046228,52.362275 +-2.191777,52.360366 +-2.643921,51.862671 +-2.9842,52.835308 +-2.73299,52.404026 +-2.311774,52.119762 +-2.249177,52.40975 +-2.100211,52.414537 +-2.541689,52.886408 +-2.049589,52.334791 +-2.420432,52.734123 +-2.756006,52.704967 +-2.240177,52.390197 +-2.436409,52.646361 +-2.934927,52.895218 +-2.325838,52.566591 +-2.745123,52.707301 +-2.600342,52.374522 +-2.225378,52.271636 +-2.495995,52.717505 +-1.954629,52.067419 +-2.71135,52.271281 +-2.444181,52.67385 +-2.213415,52.163882 +-2.463228,52.684834 +-2.317984,52.155087 +-1.930238,52.302281 +-2.753778,52.301567 +-2.643954,51.861915 +-2.76745,52.709379 +-2.274882,52.39209 +-2.109613,52.049718 +-2.428396,52.653681 +-1.904693,52.301284 +-2.247511,52.385354 +-2.458034,52.704452 +-2.335754,52.572613 +-2.39134,52.438672 +-2.583666,51.913901 +-2.246913,52.386083 +-2.233311,52.188873 +-1.934558,52.306275 +-2.093094,52.309664 +-2.234271,52.190535 +-2.745692,52.744974 +-2.628369,51.860615 +-2.684428,52.823715 +-1.903887,52.069816 +-2.71919,52.060907 +-2.498944,52.904269 +-2.437906,52.701544 +-2.435186,52.683952 +-2.218512,52.162794 +-1.885582,52.353904 +-2.089357,52.289448 +-2.688723,52.596689 +-2.080662,52.352961 +-2.443742,52.814234 +-2.693086,52.705567 +-2.867707,51.950955 +-2.564001,52.594355 +-2.718063,52.155181 +-3.001423,52.872849 +-1.887039,52.404403 +-2.187785,52.21544 +-2.864834,52.713365 +-1.867731,52.382618 +-2.770899,52.701868 +-1.90582,52.316289 +-2.706061,52.901177 +-2.250258,52.380035 +-2.665735,52.079796 +-2.533321,52.891183 +-2.436268,52.636626 +-2.375692,52.311215 +-1.905008,52.304934 +-2.463749,52.674009 +-2.693048,51.944758 +-2.251011,52.38843 +-2.430854,52.681145 +-3.057052,52.861354 +-2.37726,52.766478 +-2.855046,52.079231 +-2.225578,52.267662 +-1.85839,52.086465 +-2.968387,52.820443 +-2.078112,52.314332 +-2.144605,52.268886 +-2.229052,52.245242 +-3.040437,52.856673 +-2.672786,52.161454 +-2.721329,52.075117 +-2.046833,52.365529 +-1.927274,52.302756 +-2.744063,52.069024 +-2.718826,52.060064 +-2.247237,52.338965 +-2.769101,52.693861 +-2.194834,52.340978 +-2.458866,52.704755 +-3.027869,52.85779 +-2.451257,52.704577 +-2.023703,52.393612 +-2.226002,52.192619 +-2.518457,52.707907 +-2.791309,52.657 +-2.462045,52.645644 +-2.226516,52.213134 +-2.236051,52.173099 +-2.049827,52.129343 +-2.901761,52.243637 +-2.714171,52.262588 +-2.454383,52.692087 +-1.866592,52.380252 +-3.043388,52.896706 +-2.222125,52.213178 +-2.795308,52.762361 +-2.617646,51.909969 +-2.731616,52.855248 +-2.272265,52.391961 +-2.253394,52.388857 +-2.119058,52.28881 +-2.031294,52.384261 +-2.046639,52.334837 +-2.317113,52.375415 +-2.713084,52.0567 +-1.939298,52.314926 +-2.220733,52.374817 +-2.482296,52.706325 +-2.204843,52.410482 +-2.227705,52.193901 +-3.051036,52.862594 +-2.200919,52.194013 +-2.797871,52.687683 +-2.733151,52.686205 +-2.699111,52.30745 +-1.880605,52.309946 +-1.950848,52.083852 +-2.250329,52.389978 +-2.245769,52.370587 +-1.927968,52.282142 +-1.909573,52.310197 +-1.906597,52.30934 +-1.95426,52.071779 +-2.695868,52.072258 +-2.547169,52.762102 +-1.871906,52.39164 +-1.902459,52.310371 +-2.737779,52.745733 +-2.71534,52.174051 +-2.749714,52.038842 +-2.310288,52.363674 +-2.89256,52.936321 +-2.264618,52.258375 +-2.373231,52.301154 +-2.470564,52.717762 +-1.965607,52.115306 +-2.724771,52.717037 +-2.409989,52.987508 +-2.150239,52.413558 +-2.470105,52.717773 +-2.65658,52.79168 +-1.944199,52.114156 +-2.358344,52.487556 +-2.362266,52.770659 +-2.838574,52.909898 +-2.995863,52.498255 +-2.245298,52.184812 +-3.064869,52.889431 +-2.39527,52.794592 +-1.947086,52.092985 +-2.293312,52.308338 +-2.343668,52.145899 +-2.190756,52.215445 +-2.461302,52.671996 +-2.221597,52.201105 +-2.19127,52.212522 +-2.3022,52.125145 +-2.710309,52.692574 +-2.458659,52.680879 +-2.186758,52.193991 +-2.822815,52.719993 +-2.734115,52.712782 +-2.708516,52.059317 +-2.690011,52.808904 +-2.623776,52.902384 +-2.078016,52.401006 +-3.047834,52.865949 +-2.629264,51.860224 +-2.216549,52.137921 +-2.216611,52.192798 +-2.497313,52.864443 +-2.279445,52.339846 +-2.203701,52.191194 +-2.563363,52.138283 +-2.515447,52.190873 +-2.707564,52.032279 +-2.26052,52.378799 +-2.321019,52.003929 +-2.038449,52.013369 +-2.464054,52.694396 +-2.37854,52.775679 +-2.007787,52.304432 +-2.27096,52.339578 +-2.518546,52.70788 +-1.874817,52.375667 +-2.559255,52.828668 +-2.066769,52.340985 +-2.758508,52.682863 +-2.047288,52.378556 +-2.064364,52.332149 +-2.198045,52.202388 +-2.299465,52.124631 +-2.289237,52.146683 +-2.335945,52.730598 +-2.886376,52.794546 +-2.215132,52.195543 +-2.488006,52.31788 +-2.465399,52.841551 +-2.473184,52.626011 +-2.138277,52.052943 +-2.279825,52.38147 +-2.736762,52.07486 +-2.700819,52.292076 +-2.735228,52.046315 +-1.991097,52.380417 +-2.730327,52.133771 +-2.83598,52.458048 +-2.594776,52.082189 +-3.046735,52.852995 +-2.571758,52.598247 +-2.202549,52.362308 +-1.939738,52.238896 +-1.966947,52.358531 +-2.048201,52.339934 +-2.454474,52.695188 +-2.542009,52.7225 +-2.134352,52.241442 +-3.074923,52.089532 +-2.938134,52.10077 +-2.046346,52.334639 +-2.698645,52.752452 +-2.373775,52.362115 +-2.135857,52.249747 +-2.419471,52.675648 +-2.479838,52.851705 +-2.721051,52.688059 +-2.367769,52.204731 +-2.73644,52.70233 +-2.760175,52.711503 +-2.235367,52.165449 +-2.148737,52.268638 +-2.234831,52.388005 +-2.423624,52.696741 +-2.695542,52.056922 +-1.927968,52.282151 +-2.046247,52.380049 +-2.74268,52.0736 +-2.733189,52.042902 +-2.186952,52.177412 +-2.905072,52.911307 +-3.02809,52.850785 +-2.714618,52.061456 +-1.918482,52.218754 +-2.554304,52.594509 +-3.04156,52.881214 +-2.707545,52.059656 +-2.045992,52.333588 +-1.959474,52.308939 +-2.388291,52.362994 +-2.157921,52.399236 +-2.250532,52.376429 +-2.977706,52.199868 +-2.395767,52.46649 +-3.023206,52.886849 +-2.788232,52.53597 +-2.317125,52.530682 +-2.328334,52.716875 +-3.037595,52.894392 +-2.692428,52.809789 +-2.713528,52.983718 +-2.673987,52.384698 +-2.406805,52.678281 +-3.048133,52.926366 +-2.082365,52.313735 +-2.751678,52.073336 +-2.480735,52.696271 +-2.744214,52.858118 +-2.541396,52.69218 +-2.750029,52.30534 +-2.215738,52.163617 +-2.735141,52.7025 +-2.759348,52.682623 +-2.701017,52.750667 +-2.175637,52.185908 +-2.735838,52.231402 +-2.702809,52.131484 +-2.792933,51.999718 +-2.062894,52.361296 +-2.44896,52.675504 +-2.205769,52.37256 +-2.41885,52.036195 +-1.924845,52.30831 +-2.68839,52.05656 +-2.377372,52.544422 +-2.21747,52.191942 +-2.31806,52.572285 +-2.308479,52.050786 +-2.737905,52.463349 +-2.651981,52.870823 +-2.035172,52.382606 +-2.52553,52.705314 +-2.600287,52.425668 +-2.215367,52.192818 +-2.200969,52.130513 +-1.890163,52.400963 +-2.231722,52.181388 +-2.225572,52.272409 +-2.351883,52.718156 +-2.34708,52.030243 +-2.28512,52.106092 +-2.572975,52.200667 +-2.714922,52.05855 +-2.714316,52.65704 +-2.71376,52.057047 +-2.758941,52.677969 +-2.699629,52.705663 +-2.51175,52.659598 +-2.428181,52.657431 +-3.061181,52.210907 +-1.935034,52.109917 +-1.941045,52.113957 +-2.372608,52.782359 +-2.459293,52.722903 +-2.574358,52.095705 +-2.897813,52.909052 +-2.803248,52.538018 +-3.022184,52.198439 +-2.487447,52.706384 +-2.196767,52.211209 +-2.494636,52.500307 +-2.459093,52.703846 +-2.3472,52.682193 +-2.715922,52.368484 +-2.48582,52.69848 +-2.040713,52.353431 +-2.233957,52.314404 +-2.058168,52.341278 +-2.330109,52.102738 +-2.75699,52.707945 +-2.496148,52.900289 +-2.454645,52.681721 +-2.66538,52.966765 +-2.443112,52.677791 +-2.720476,52.740302 +-2.451926,52.716333 +-2.272143,52.106581 +-2.744126,52.70782 +-2.332842,52.443301 +-2.219064,52.393681 +-2.721306,52.039244 +-2.474901,52.674081 +-2.036031,52.014179 +-2.033106,52.195798 +-2.05309,52.341757 +-2.064686,52.33188 +-2.001293,52.381199 +-2.45615,52.08296 +-1.937186,52.262503 +-2.976875,52.824446 +-1.946453,52.305868 +-2.246556,52.390507 +-2.073962,52.306009 +-2.711053,52.060165 +-2.714458,52.984072 +-2.676329,51.923286 +-2.119994,52.287892 +-2.776144,52.21862 +-2.77027,52.033782 +-2.8424,52.296167 +-2.41815,52.672057 +-2.511148,52.848545 +-2.327013,52.114587 +-2.194729,52.063058 +-1.967977,52.087993 +-2.219301,52.334885 +-2.722037,52.738836 +-2.724831,52.717091 +-2.735839,52.726381 +-2.45488,52.695771 +-2.591398,51.920417 +-2.030034,52.388918 +-2.152624,52.218467 +-3.139857,52.812465 +-2.161748,52.251935 +-2.953483,52.192676 +-3.008867,52.200928 +-2.250514,52.650254 +-2.030975,52.389808 +-1.940986,52.114388 +-2.355579,52.710297 +-2.758958,52.679803 +-2.803047,52.70454 +-2.819085,52.715281 +-3.02283,52.848753 +-2.475524,52.704239 +-2.662792,52.78378 +-2.501571,52.691286 +-2.312199,52.318125 +-2.901142,52.092239 +-2.710396,52.05553 +-2.715468,52.173844 +-2.897128,52.904706 +-2.444613,52.707641 +-2.950609,52.360832 +-2.268291,52.415021 +-2.533164,52.717191 +-2.52751,52.703804 +-2.273572,52.184885 +-2.586235,52.310924 +-2.057673,52.355473 +-2.045968,52.380768 +-2.721511,52.349148 +-1.94553,52.304708 +-2.067579,52.314086 +-2.198095,52.213437 +-2.718817,52.253632 +-2.41395,52.22033 +-2.517719,52.694309 +-2.210047,52.370197 +-2.724671,51.983201 +-2.243726,52.649719 +-2.708545,52.059281 +-1.937121,52.090301 +-2.313529,52.128505 +-2.062377,52.172231 +-3.001708,52.19946 +-2.620816,52.143596 +-3.022462,52.206097 +-2.603802,51.915076 +-1.943104,52.079731 +-2.275463,52.346329 +-2.791238,52.549849 +-2.767086,52.42829 +-2.707308,52.074222 +-1.849032,52.394418 +-2.15293,52.218305 +-2.718515,52.057953 +-2.755221,52.691253 +-2.824261,52.520864 +-2.141973,52.045953 +-2.42659,52.655009 +-2.59369,52.311192 +-1.870502,52.071708 +-2.071686,52.395148 +-2.324108,52.12889 +-2.292191,52.17149 +-2.773947,52.069371 +-2.260531,52.393246 +-2.727257,52.092424 +-2.780425,52.077762 +-2.803913,52.502592 +-3.038351,52.87441 +-2.849544,52.077688 +-2.253074,52.186369 +-2.562964,51.930222 +-2.755497,52.718338 +-2.299813,52.65938 +-2.461947,52.649006 +-2.21795,52.062748 +-1.906684,52.309889 +-2.481761,52.669837 +-2.765831,52.222382 +-2.577971,51.935723 +-2.739594,52.722528 +-2.602196,51.881971 +-2.455551,52.622421 +-2.303141,52.031281 +-2.218447,52.1883 +-2.37289,52.669565 +-2.479941,52.627881 +-1.925468,52.084989 +-2.422111,52.733173 +-2.414596,52.77305 +-1.937736,52.267178 +-2.057795,52.336387 +-2.263286,52.20653 +-1.979895,52.364701 +-2.539263,52.09303 +-1.968898,52.086474 +-2.06248,52.348971 +-1.91924,52.366383 +-3.037239,52.895672 +-1.937897,52.278021 +-2.456048,52.082952 +-3.028624,52.783545 +-1.941089,52.280432 +-2.882676,52.90467 +-2.337714,52.735241 +-2.680439,52.924501 +-2.957412,52.467556 +-2.19309,52.220466 +-1.928334,52.282295 +-2.667958,52.86739 +-2.374096,52.059011 +-2.531892,52.084459 +-2.314196,52.376286 +-2.17224,52.151066 +-2.718108,52.15528 +-2.84847,52.305375 +-2.157025,52.275262 +-2.723567,52.710527 +-2.046613,52.379086 +-2.222823,52.191717 +-1.956003,52.064605 +-2.204548,52.18454 +-2.754932,52.683065 +-2.427273,52.412422 +-2.651994,52.017036 +-2.13376,52.239114 +-2.189678,52.398407 +-2.65811,52.935163 +-2.266903,52.333807 +-2.469284,52.634387 +-2.458259,52.666623 +-2.303158,52.104923 +-2.18432,52.173964 +-2.075439,52.355248 +-2.504029,52.694053 +-2.505544,52.695809 +-2.745631,52.858424 +-2.941322,52.634983 +-2.177813,52.086164 +-2.983291,52.46889 +-2.293562,52.648851 +-2.239584,52.364882 +-2.196751,52.114688 +-1.950693,52.091952 +-2.585896,52.072731 +-2.307802,52.666552 +-1.974281,52.295421 +-2.766525,52.283918 +-2.682602,52.058634 +-2.358737,52.694708 +-2.307692,52.427466 +-3.036512,52.896991 +-2.245749,52.186933 +-2.686687,52.058709 +-2.27075,52.401296 +-2.585186,51.912347 +-2.886619,52.344302 +-2.750191,52.03865 +-2.119427,52.284225 +-2.17979,52.192905 +-2.209861,52.185456 +-2.211576,52.428801 +-2.841727,52.015824 +-2.381915,52.163222 +-2.364647,52.293287 +-2.066847,52.334423 +-2.108437,52.087957 +-2.230618,52.34932 +-1.927507,52.313257 +-2.846449,52.782144 +-2.776938,52.628588 +-2.342767,52.125565 +-2.326187,52.153518 +-2.23519,52.383698 +-1.885046,52.373709 +-2.03606,52.408497 +-1.836211,52.033347 +-2.470593,52.709446 +-2.70448,52.060492 +-2.476357,52.716822 +-2.524337,52.884535 +-1.876182,52.344284 +-2.759061,52.67974 +-2.754879,52.689421 +-2.751389,52.706722 +-2.750033,52.751077 +-2.443968,52.719932 +-2.47205,52.708658 +-2.713242,52.065717 +-2.192332,52.224477 +-2.222301,52.213187 +-2.883909,52.339449 +-2.773953,52.070594 +-2.215969,52.163014 +-2.268766,52.398856 +-2.790439,52.035896 +-2.303727,52.558595 +-2.22059,52.065737 +-2.195632,52.202607 +-2.710957,52.051355 +-2.225517,52.40265 +-1.949834,52.363973 +-2.528783,52.878627 +-2.868999,52.659224 +-2.742624,52.225695 +-1.984045,52.091188 +-2.341444,52.368587 +-2.289306,52.267649 +-2.756462,52.29727 +-2.502635,52.696279 +-2.149753,52.152715 +-1.888649,52.366116 +-1.92786,52.303125 +-2.704701,52.978566 +-2.73615,52.688631 +-2.238636,52.406841 +-2.134178,52.047742 +-2.027052,52.390465 +-2.721259,52.0481 +-2.770134,52.219837 +-2.461093,52.67036 +-2.48843,52.68966 +-2.581766,51.916572 +-2.154193,52.257366 +-2.191847,52.203657 +-2.144825,52.268913 +-1.942796,52.240687 +-1.955633,52.085499 +-2.371207,52.666442 +-2.22478,52.16217 +-2.296761,52.555961 +-2.358472,52.761628 +-2.682513,52.309723 +-2.741584,52.228282 +-3.06581,52.171926 +-2.303441,52.112088 +-2.658299,52.084198 +-2.512937,52.233318 +-2.453733,52.704999 +-3.024849,52.849347 +-2.505274,52.695477 +-2.446609,52.153366 +-1.924201,52.299131 +-1.937108,52.255473 +-2.574042,51.926518 +-2.196844,52.139295 +-2.008374,52.380147 +-1.826096,52.02935 +-2.55681,52.591872 +-2.124775,52.345748 +-2.241713,52.192588 +-1.936795,52.093303 +-2.586219,51.905653 +-2.336903,52.093764 +-2.524534,52.718452 +-2.134483,52.241055 +-2.451439,52.702167 +-2.339592,52.736854 +-2.446022,52.674526 +-2.332715,52.303433 +-2.512531,52.699806 +-1.895892,52.302049 +-2.936421,52.783814 +-2.332363,52.72294 +-2.118118,52.392647 +-2.209559,52.201981 +-2.74354,52.707329 +-2.366353,52.363226 +-2.736145,51.986754 +-2.757205,52.705822 +-2.723568,52.738278 +-2.462261,52.924796 +-2.051067,52.343672 +-2.393719,52.456455 +-2.206574,52.211336 +-2.701681,52.061534 +-2.024187,52.391823 +-2.062987,52.334056 +-2.528964,52.696785 +-3.009784,52.143253 +-2.720619,52.046441 +-3.048354,52.863454 +-2.531859,51.953958 +-3.056243,52.097685 +-2.727737,51.973814 +-2.589295,52.122567 +-2.713101,52.056844 +-2.760249,52.035978 +-2.699049,52.968864 +-2.713319,52.042188 +-2.510572,52.698061 +-2.02419,52.343654 +-2.173813,52.261924 +-2.159279,52.274324 +-2.127096,52.269715 +-2.201836,52.205896 +-2.739376,52.722781 +-2.526953,52.871048 +-2.557065,52.194423 +-1.895303,52.303047 +-1.949526,52.091304 +-2.707119,52.287192 +-3.043447,52.919584 +-2.471302,52.384592 +-2.825637,52.503054 +-2.674735,52.968025 +-2.550116,51.91195 +-2.22594,52.192025 +-2.275502,52.653794 +-2.078053,52.314332 +-2.177283,52.000358 +-2.22326,52.197173 +-2.157266,52.272933 +-2.120264,52.019544 +-2.676499,51.930694 +-2.202403,52.227472 +-2.483208,52.676331 +-3.006577,52.900359 +-2.36638,52.639155 +-3.023203,52.84884 +-2.999171,52.925457 +-2.30292,52.387922 +-2.177927,52.191748 +-2.575343,52.09508 +-2.8283,52.024937 +-2.744965,52.095199 +-2.900679,52.161264 +-2.66419,52.211508 +-2.045193,52.355353 +-2.025865,52.07103 +-1.902503,52.310353 +-2.736335,52.069297 +-2.432725,52.460176 +-2.7802,52.071577 +-2.140191,52.230772 +-2.369754,52.293937 +-2.036677,52.020158 +-1.963113,52.359671 +-2.218007,52.140363 +-2.396584,52.790695 +-2.198428,52.212816 +-2.363987,52.774367 +-2.444189,52.719805 +-2.477436,52.769479 +-3.043208,52.919523 +-2.480482,52.852233 +-2.700078,52.062568 +-3.032808,52.850609 +-2.669319,52.074525 +-2.464982,52.69406 +-2.427657,52.655194 +-2.182874,52.092486 +-2.442839,52.812978 +-2.153956,52.412762 +-2.745571,52.743967 +-1.95001,52.364027 +-2.21787,52.193066 +-2.164448,52.249495 +-3.03265,52.849585 +-2.651174,51.867117 +-2.706198,52.967186 +-2.107298,52.305768 +-3.034839,52.869182 +-2.19802,52.11768 +-2.321406,52.130974 +-2.1488,52.151997 +-2.29216,52.418282 +-2.341951,52.57834 +-2.729437,52.058713 +-2.153426,52.183691 +-2.87225,52.747481 +-2.475207,52.717213 +-2.221103,52.192943 +-2.472996,52.731821 +-2.431316,52.195238 +-2.173242,52.23953 +-1.885957,52.37362 +-1.904953,52.310103 +-2.220106,52.405258 +-2.59489,52.120399 +-2.712473,52.057711 +-2.466391,52.676291 +-2.258369,52.10316 +-1.911591,52.364813 +-2.316297,52.193364 +-2.7453,52.707246 +-2.915774,52.762939 +-2.802439,52.689954 +-1.859896,52.099773 +-2.67636,51.846934 +-2.044681,52.357475 +-2.047802,52.350992 +-2.071912,52.299412 +-2.598279,51.915185 +-2.02364,52.385377 +-2.214375,52.178157 +-2.049457,52.387015 +-2.225002,52.200244 +-2.412735,52.640441 +-1.940477,52.090869 +-2.244867,52.385395 +-2.59532,52.120882 +-2.757819,52.293486 +-2.231653,52.182197 +-2.275749,52.342714 +-2.221488,52.193859 +-2.259015,52.392719 +-2.25278,52.183646 +-2.657184,52.016234 +-2.930035,52.098865 +-1.947581,52.094531 +-1.931386,52.299405 +-2.372164,52.660712 +-2.36608,52.627991 +-2.430434,52.539098 +-2.40762,52.680004 +-2.315013,52.127638 +-2.059829,52.364121 +-1.940141,52.113111 +-2.424588,52.449642 +-2.857293,52.713771 +-2.341357,52.577811 +-2.680847,52.661867 +-2.052828,52.392668 +-2.137341,52.047379 +-1.887334,52.403891 +-2.542722,52.885837 +-2.843615,52.377791 +-2.433933,52.685907 +-2.540842,52.739451 +-2.74854,52.809987 +-2.41257,52.759438 +-2.826017,52.716303 +-2.047594,52.335088 +-2.086704,52.110064 +-2.163005,52.211486 +-1.942448,52.113409 +-2.329282,52.111389 +-2.114909,52.079265 +-2.063656,52.126118 +-2.835696,52.44229 +-3.02861,52.870252 +-1.881325,52.298412 +-2.073018,52.107475 +-2.185676,52.176677 +-2.137197,52.048143 +-2.722198,52.03041 +-2.110465,52.411363 +-2.059229,52.322308 +-2.22208,52.195404 +-2.184373,52.094938 +-1.943504,52.283634 +-2.56912,52.699889 +-2.642787,52.143137 +-2.73199,52.01591 +-1.922186,52.092404 +-2.191409,52.421203 +-2.300473,52.380206 +-2.245951,52.392666 +-1.894652,52.287268 +-2.285086,52.119173 +-2.265598,52.15759 +-2.776637,52.706622 +-2.747721,52.715555 +-2.49188,52.901529 +-2.722709,52.696194 +-3.149926,52.808331 +-2.693858,52.364516 +-2.565617,52.692193 +-1.887363,52.334487 +-2.091239,52.434133 +-2.693841,51.911289 +-3.026363,52.888988 +-2.130795,52.42071 +-2.736476,52.701799 +-2.288564,52.381116 +-2.679255,52.963828 +-2.692803,52.906038 +-2.885122,52.577619 +-2.701524,52.795109 +-2.725483,52.855258 +-1.946954,52.093398 +-2.229498,52.209604 +-2.707472,52.315816 +-3.066375,52.809651 +-2.471273,52.38461 +-2.531019,52.692946 +-2.622922,52.76403 +-2.440179,52.678836 +-2.110889,52.328501 +-2.752868,52.260037 +-2.521737,52.180883 +-3.05628,52.859545 +-2.008623,52.379851 +-2.43444,52.67883 +-2.046836,52.354112 +-2.015833,52.369979 +-2.067999,52.338971 +-2.706725,52.967533 +-2.436469,52.538042 +-2.391297,52.453784 +-1.885957,52.37362 +-2.856098,52.07934 +-2.504026,52.187344 +-2.001204,52.381253 +-2.720696,52.048499 +-2.450321,52.08666 +-2.038903,52.365559 +-2.054888,52.406386 +-2.188034,52.208742 +-1.978821,52.305698 +-2.540442,52.743039 +-2.443751,52.673726 +-2.219924,52.019409 +-2.860601,52.019824 +-2.309222,52.114096 +-2.623462,52.540108 +-2.795987,52.557971 +-2.68485,52.970196 +-2.485831,52.628854 +-2.224257,52.235308 +-2.444076,52.637271 +-2.057508,52.341332 +-2.183852,52.22005 +-2.224024,52.197909 +-2.414269,52.694886 +-2.603545,52.624043 +-2.959546,52.661519 +-1.838769,52.031355 +-2.242825,52.165821 +-2.766315,52.674209 +-2.729101,52.732572 +-2.82399,52.71638 +-2.924003,52.681202 +-2.734027,52.226342 +-1.958668,52.386676 +-2.33149,52.127521 +-1.926225,52.298854 +-2.931737,52.644256 +-2.036362,52.382389 +-2.955377,52.246857 +-2.480284,52.706405 +-2.251931,52.129102 +-2.425555,52.042275 +-2.636293,52.075014 +-2.772114,52.219194 +-2.526085,52.893841 +-2.077514,52.383134 +-2.569284,52.844208 +-2.045774,52.378125 +-2.542486,52.886036 +-2.303476,52.558613 +-2.703065,51.951765 +-2.010238,52.374897 +-2.701768,52.979563 +-2.301111,52.115303 +-2.358722,52.293143 +-1.884148,52.385656 +-1.885613,52.301743 +-1.851802,52.110417 +-2.247865,52.390702 +-2.694423,52.685422 +-2.523915,52.717457 +-2.788683,52.28352 +-2.310586,52.114811 +-1.938133,52.308615 +-1.92092,52.297142 +-2.537444,52.6896 +-2.482915,52.90278 +-1.886279,52.374133 +-2.244559,52.385414 +-2.742085,52.041246 +-2.463184,52.315067 +-2.739294,52.702168 +-2.746022,52.707053 +-2.216057,52.421843 +-2.752308,52.711094 +-2.174844,52.296787 +-1.966854,52.047958 +-1.92785,52.28225 +-2.710713,52.691924 +-2.29257,52.324801 +-2.045211,52.373486 +-2.297377,52.356785 +-2.724749,52.697898 +-2.655616,52.783811 +-2.795484,52.557084 +-3.042086,52.877731 +-2.81773,52.793169 +-2.290998,52.067121 +-2.241388,52.372601 +-1.894543,52.103936 +-2.26659,52.188974 +-2.306925,52.109112 +-2.490817,52.695412 +-2.471534,52.384339 +-3.076874,52.780663 +-2.172795,52.3616 +-2.014337,52.375849 +-1.88887,52.306907 +-2.271931,52.402112 +-2.71259,52.057773 +-2.216696,52.138163 +-2.419383,52.621755 +-2.253959,52.326041 +-1.955942,52.26066 +-2.594527,52.314514 +-2.696488,52.060567 +-2.281326,52.349416 +-2.479825,52.185368 +-2.41947,52.675603 +-2.835546,52.66877 +-2.447708,52.680327 +-2.219245,52.18418 +-2.750739,52.711095 +-2.23667,52.196158 +-2.151149,52.219647 +-2.247446,52.389364 +-2.261203,52.372531 +-2.057091,52.416157 +-2.461109,52.643795 +-2.599556,52.125266 +-2.750515,52.077992 +-2.737846,52.075096 +-3.080781,52.136231 +-2.390093,52.809334 +-2.836009,52.458039 +-2.148657,52.415205 +-2.088099,52.312796 +-1.89364,52.299746 +-3.062576,52.866761 +-2.270597,52.340307 +-3.02066,52.884111 +-2.707975,52.236984 +-2.303741,52.558604 +-3.058917,52.849498 +-2.226614,52.203748 +-2.312033,52.123465 +-2.384032,52.621515 +-3.009752,52.143118 +-2.272053,52.352791 +-2.295897,52.190126 +-1.912437,52.315899 +-2.276345,52.341697 +-2.836082,52.457993 +-2.502138,52.1912 +-2.711574,52.064504 +-2.717564,52.055927 +-2.697455,52.066432 +-2.822015,52.227884 +-1.981068,52.298434 +-2.211888,52.1934 +-2.473139,52.639667 +-2.150976,52.413997 +-2.170309,52.192631 +-2.359154,52.079979 +-2.14434,52.272995 +-1.881592,52.396253 +-2.357608,52.293219 +-2.224352,52.198987 +-2.553951,52.779232 +-2.16466,52.275063 +-1.922752,52.297557 +-2.451201,52.06979 +-2.71079,52.056436 +-2.520092,52.22418 +-1.94214,52.238843 +-2.33596,52.730625 +-2.319643,52.101023 +-2.330198,52.102962 +-2.785583,52.151262 +-1.933663,52.306383 +-2.165172,52.282551 +-2.712684,52.074621 +-2.624128,52.31233 +-1.975477,52.280372 +-2.501644,52.696329 +-2.145181,52.054805 +-2.329962,52.120441 +-2.679902,52.967114 +-2.0586,52.33493 +-2.737429,52.710064 +-2.472084,52.186433 +-2.892037,52.428879 +-2.067352,52.338387 +-2.272846,52.340887 +-2.584712,52.31664 +-2.72973,52.738313 +-2.578918,52.675453 +-2.582971,52.090151 +-2.490056,52.901923 +-2.485051,52.909028 +-2.752535,52.7759 +-2.772607,52.621757 +-2.458798,52.540223 +-3.007862,52.633725 +-2.03061,52.329475 +-2.25251,52.190128 +-2.02023,52.192321 +-2.217134,52.063091 +-2.682999,51.841492 +-2.373745,52.362115 +-2.268795,52.398864 +-2.306631,52.378446 +-1.979745,52.305321 +-2.163639,52.212644 +-2.832904,52.679136 +-2.641673,52.682564 +-1.974513,52.118563 +-2.465205,52.841452 +-2.216385,52.16135 +-2.703456,52.217898 +-2.298597,52.645818 +-2.467702,52.623201 +-2.238516,52.010643 +-2.996225,52.839882 +-2.609882,51.868013 +-2.084443,52.334375 +-2.897649,52.126178 +-2.486749,52.284863 +-2.528685,52.489758 +-1.955629,52.2814 +-2.722287,52.071155 +-2.496734,52.900844 +-2.154112,52.267894 +-2.225082,52.198761 +-2.735854,52.726426 +-2.329089,52.28112 +-2.101855,52.31149 +-2.792091,52.706772 +-2.859915,52.214011 +-2.590257,52.839404 +-2.722256,52.689373 +-2.737389,52.800654 +-2.522927,52.112748 +-2.458974,52.703837 +-2.347642,52.113917 +-2.303594,52.558667 +-2.25912,52.400675 +-2.745484,52.703316 +-2.091356,52.43407 +-2.525288,52.320722 +-2.073378,52.325689 +-2.216149,52.160856 +-2.478553,52.332321 +-2.730518,52.075807 +-1.928174,52.308564 +-2.455775,52.716345 +-2.628736,52.421016 +-2.569513,52.291452 +-2.722076,52.689257 +-2.9226,52.023625 +-2.430192,52.714643 +-2.252599,52.388678 +-2.192279,52.181863 +-2.36656,52.754159 +-2.710309,52.692529 +-2.489366,52.687408 +-2.747406,52.039477 +-2.469672,52.049057 +-2.251924,52.388716 +-2.110646,52.295759 +-1.97339,52.338943 +-2.719462,52.048831 +-2.291519,52.23865 +-2.712246,52.770584 +-2.540276,52.738006 +-2.198414,52.212807 +-2.729968,52.043875 +-2.726148,52.710844 +-2.7718,52.705953 +-2.470635,52.049054 +-2.818612,52.659988 +-2.813748,52.415293 +-2.47338,51.907195 +-2.424236,52.036967 +-2.460276,52.665851 +-2.215596,52.155328 +-2.236233,52.185397 +-1.884913,52.373772 +-2.412073,52.533895 +-2.698705,52.064303 +-1.928129,52.29142 +-1.882242,52.350745 +-2.372096,52.671878 +-2.773639,52.70532 +-2.523968,52.542668 +-2.752793,52.771952 +-2.678219,52.968949 +-2.373366,52.770373 +-2.525237,52.106795 +-2.655272,52.787552 +-2.225462,52.20152 +-2.058139,52.363196 +-2.178126,52.263221 +-2.874284,52.329191 +-2.709524,52.068608 +-1.957361,52.109154 +-2.748267,52.893358 +-2.30652,52.107603 +-2.040962,52.195256 +-2.313588,52.128478 +-2.253995,52.386005 +-2.028824,52.201957 +-1.946734,52.094666 +-2.43902,52.71221 +-2.483468,52.705196 +-2.242682,52.166306 +-3.035099,52.883213 +-3.042459,52.865438 +-2.251401,52.24499 +-1.883871,52.300411 +-2.302996,52.220838 +-2.22686,52.323588 +-2.36433,52.363691 +-2.475482,52.76972 +-2.404852,52.348105 +-3.006864,52.872353 +-1.951405,52.080867 +-2.535972,51.929152 +-1.919284,52.366311 +-2.720277,52.741688 +-2.728574,52.71963 +-2.128934,52.417988 +-2.724668,52.736725 +-2.431539,52.707114 +-2.708507,52.727483 +-2.713697,52.04117 +-2.191647,52.22179 +-2.219016,52.194097 +-2.245504,52.391624 +-2.738436,52.724145 +-2.487137,52.687876 +-2.680473,52.956054 +-2.158024,52.399038 +-2.187609,52.208599 +-2.243782,52.385865 +-2.107939,52.298135 +-2.113038,52.187405 +-2.720408,52.046892 +-2.733608,52.830712 +-2.939146,52.89371 +-2.471151,52.681522 +-2.512287,52.709363 +-2.283877,52.643643 +-2.710523,52.311185 +-2.719241,52.374775 +-2.220081,52.193484 +-2.646763,52.784678 +-2.490264,52.693607 +-2.770142,52.70003 +-2.733724,52.067551 +-2.0456,52.436821 +-2.428461,52.654319 +-1.92284,52.297611 +-2.720632,52.056268 +-2.219885,52.399334 +-1.938849,52.278525 +-2.050995,52.344913 +-2.419773,52.687145 +-2.435065,52.722383 +-2.936144,52.924065 +-1.943108,52.306864 +-2.282644,52.056326 +-2.170016,52.360696 +-1.888469,52.402579 +-2.32168,52.385319 +-2.158654,52.41085 +-2.074839,52.348002 +-1.90067,52.309911 +-2.471889,52.678624 +-2.277797,52.341558 +-2.541081,52.745607 +-2.444693,52.706795 +-2.590837,52.753047 +-2.398271,52.588835 +-2.093387,52.309439 +-2.108591,52.288856 +-2.260215,52.181966 +-2.752764,52.771988 +-2.23255,52.188668 +-2.823961,52.71638 +-2.464871,52.675236 +-2.27888,52.338706 +-2.435004,52.683458 +-1.931823,52.301356 +-2.190133,52.199784 +-2.688189,52.072915 +-2.329706,52.111505 +-3.04276,52.92813 +-3.060478,52.862366 +-1.930296,52.302254 +-2.974657,52.785664 +-2.845483,52.859211 +-2.260448,52.386522 +-2.434321,52.029063 +-2.113316,52.187297 +-2.155602,52.258111 +-3.038896,52.87668 +-2.756686,52.682694 +-2.443138,52.687644 +-2.414537,52.250319 +-1.956382,52.305584 +-2.054981,52.032369 +-2.570521,51.927506 +-2.35147,52.745953 +-2.702074,52.06146 +-2.202277,52.167668 +-2.04629,52.379069 +-2.238469,52.370458 +-2.792377,52.706985 +-1.944526,52.29881 +-2.077646,52.383214 +-2.054101,52.340255 +-2.70272,52.051521 +-1.939859,52.083451 +-2.266608,52.652268 +-2.015526,52.415684 +-2.226398,52.253258 +-1.933926,52.306778 +-2.534495,52.692886 +-2.291957,52.311964 +-2.214944,52.193017 +-2.753907,52.701699 +-2.694317,52.614358 +-1.905864,52.31628 +-2.701081,52.688197 +-2.505813,52.696014 +-1.928022,52.303179 +-2.428844,52.720608 +-2.720174,52.054104 +-1.891572,52.311557 +-2.040149,52.378855 +-2.186426,52.177692 +-2.7206,52.044292 +-2.427215,52.669076 +-2.86096,52.060523 +-2.702605,52.363224 +-1.855879,52.041321 +-2.686115,51.985213 +-2.624498,51.90408 +-2.711135,52.041419 +-2.679643,51.932797 +-2.731026,52.727229 +-2.435444,52.708385 +-2.476632,52.607523 +-2.751255,52.022082 +-2.359753,52.027354 +-2.215156,52.133994 +-2.340262,52.672639 +-2.217124,52.187043 +-2.490995,52.692786 +-1.946726,52.113402 +-2.482537,52.679921 +-2.241773,52.397197 +-2.214138,52.134805 +-2.734132,52.040846 +-2.2411,52.3735 +-2.876867,52.332957 +-1.868511,52.332454 +-2.101923,52.302815 +-2.107055,52.089855 +-2.80931,51.937767 +-2.064887,52.358311 +-2.470475,52.717771 +-2.358666,52.69514 +-2.456698,52.716908 +-1.942279,52.289558 +-2.437315,52.698615 +-2.376448,52.770265 +-3.03626,52.870851 +-2.424681,52.778201 +-2.901544,51.988292 +-2.442709,52.677442 +-2.146409,52.269189 +-2.702407,52.054769 +-2.414262,52.670641 +-2.775182,52.581852 +-2.85437,52.314691 +-2.423955,52.642343 +-2.241933,52.168448 +-2.318126,52.119583 +-2.722227,52.068387 +-2.391572,52.75114 +-2.331589,52.125084 +-2.245661,52.186888 +-2.521762,52.713214 +-2.322174,52.002478 +-2.101908,52.302815 +-2.712036,52.05775 +-2.048406,52.379652 +-2.754301,52.701346 +-1.874938,52.395176 +-3.05763,52.839333 +-2.319187,52.19243 +-2.584474,52.088975 +-2.775734,52.639824 +-2.190178,52.104135 +-2.268692,52.360108 +-2.242819,52.167439 +-2.149699,52.267126 +-2.153893,52.267966 +-2.302831,52.121323 +-2.399837,52.595419 +-2.074706,52.130023 +-2.30727,52.542251 +-1.946086,52.29374 +-2.671093,52.26062 +-2.679164,52.949454 +-2.843986,52.267782 +-1.914974,52.285451 +-2.342015,52.453784 +-2.722107,52.067263 +-2.714835,52.054964 +-3.003577,52.492877 +-2.708667,52.895094 +-2.516575,52.227612 +-2.73421,51.976192 +-2.727192,52.045322 +-2.492703,52.11313 +-1.930293,52.30452 +-2.713853,52.07474 +-1.937883,52.077516 +-1.85824,52.046115 +-1.952129,52.086091 +-2.226549,52.40619 +-2.215074,52.192702 +-2.234537,52.188359 +-2.232343,52.42068 +-1.992942,52.034207 +-2.433218,52.72417 +-2.265899,52.332775 +-2.05779,52.310127 +-2.721526,52.349184 +-2.274232,52.348948 +-2.516523,52.378056 +-2.704289,52.371206 +-2.599106,52.691588 +-2.330746,52.104031 +-1.887449,52.300729 +-2.745091,52.22701 +-2.639886,52.21389 +-2.688522,52.038622 +-2.542678,52.191497 +-2.300583,52.370469 +-1.946821,52.094864 +-2.753507,52.715393 +-2.782131,52.780428 +-2.755148,52.710168 +-2.993105,52.602601 +-2.726235,52.045615 +-2.92338,52.919149 +-2.481345,52.378564 +-2.911235,52.094714 +-2.366361,52.677568 +-2.784104,52.080398 +-1.898975,52.35878 +-2.722261,52.068647 +-2.703872,51.950331 +-2.794646,52.64699 +-2.704743,52.978431 +-2.284399,52.350236 +-3.059174,52.850934 +-2.72605,52.090912 +-2.518839,51.931521 +-2.93185,52.858483 +-2.673029,52.897494 +-2.204498,52.345574 +-1.945035,52.301579 +-3.043579,52.849589 +-2.648928,52.786733 +-3.05497,52.857579 +-2.710869,52.364811 +-2.835737,52.442901 +-3.032914,52.892599 +-2.409626,52.737864 +-2.015752,52.430788 +-2.66401,52.742052 +-1.344916,52.43374 +-1.242941,52.373472 +-1.786222,52.257364 +-1.45437,52.530957 +-1.544895,52.275264 +-1.534874,52.27625 +-1.512929,52.2231 +-1.460152,52.527082 +-1.568835,52.286664 +-1.511553,52.2218 +-1.494289,52.515626 +-1.575724,52.657519 +-1.422889,52.406655 +-1.460862,52.526914 +-1.262701,52.374146 +-1.249626,52.38638 +-1.28569,52.374143 +-1.475126,52.52225 +-1.775533,52.343354 +-1.426169,52.364542 +-1.507418,52.528852 +-1.525034,52.571096 +-1.541958,52.218901 +-1.283024,52.365496 +-1.288374,52.348806 +-1.48728,52.460613 +-1.491611,52.521656 +-1.36965,52.512538 +-1.789487,52.347695 +-1.754065,52.122023 +-1.277348,52.20732 +-1.450341,52.500597 +-1.473474,52.513783 +-1.403167,52.122379 +-1.245129,52.251019 +-1.496221,52.461272 +-1.469879,52.511276 +-1.534738,52.266837 +-1.418028,52.447581 +-1.255749,52.371792 +-1.679104,52.199745 +-1.53831,52.288382 +-1.614873,52.632049 +-1.484326,52.487975 +-1.531251,52.282079 +-1.531237,52.282034 +-1.396692,52.297786 +-1.474397,52.475885 +-1.503207,52.465653 +-1.538878,52.470796 +-1.710103,52.526276 +-1.535511,52.284083 +-1.544743,52.284362 +-1.247453,52.372449 +-1.895133,52.282009 +-1.557068,52.565098 +-1.719706,52.515691 +-1.704438,52.476422 +-1.511501,52.523529 +-1.462671,52.529646 +-1.562908,52.559393 +-1.742135,52.533317 +-1.474308,52.499465 +-1.486177,52.514989 +-1.537487,52.580962 +-1.879691,52.224699 +-1.731228,52.154896 +-1.5474,52.282547 +-1.243431,52.373197 +-1.725584,52.209923 +-1.722548,52.163974 +-1.275616,52.38656 +-1.864002,52.333626 +-1.915584,52.187654 +-1.537804,52.470656 +-1.412897,52.393048 +-1.729038,52.190664 +-1.25701,52.371934 +-1.724813,52.516845 +-1.722548,52.163965 +-1.540006,52.290214 +-1.529003,52.279859 +-1.495106,52.463551 +-1.569688,52.316667 +-1.50168,52.538375 +-1.61938,51.962701 +-1.47793,52.526928 +-1.467899,52.51543 +-1.547805,52.264406 +-1.414982,52.225038 +-1.503431,52.461473 +-1.604346,52.162541 +-1.503366,52.218206 +-1.569645,52.334702 +-1.385692,52.252319 +-1.595982,52.274101 +-1.780176,52.292118 +-1.574423,52.291035 +-1.625928,52.600468 +-1.576815,52.293831 +-1.540571,52.364539 +-1.729556,52.208997 +-1.417405,52.339713 +-1.460206,52.191144 +-1.400627,52.3821 +-1.720896,52.194421 +-1.266425,52.362158 +-1.581448,52.561132 +-1.628663,52.149592 +-1.547559,52.279859 +-1.637356,52.299247 +-1.531681,52.285794 +-1.899614,52.264698 +-1.594415,52.591527 +-1.419434,52.47606 +-1.4532,52.527868 +-1.749542,52.321743 +-1.521627,52.001733 +-1.203984,52.356432 +-1.512172,52.550789 +-1.270438,52.363693 +-1.880598,52.296146 +-1.430009,52.437049 +-1.243244,52.391878 +-1.516556,52.280096 +-1.510047,52.156379 +-1.625773,52.611749 +-1.466405,52.486673 +-1.620326,52.613116 +-1.24884,52.394619 +-1.41325,52.437354 +-1.588346,52.482836 +-1.480954,52.529296 +-1.43923,52.50673 +-1.473426,52.490651 +-1.474888,52.480454 +-1.630106,52.150127 +-1.526029,52.301702 +-1.528615,52.279102 +-1.5931,52.247903 +-1.646156,52.07408 +-1.698729,52.190519 +-1.486439,52.252962 +-1.577153,52.34309 +-1.721857,52.543925 +-1.476508,52.510182 +-1.577144,52.626743 +-1.455266,52.500233 +-1.568763,52.48718 +-1.547869,52.237903 +-1.611339,52.281183 +-1.728287,52.536541 +-1.532167,52.284187 +-1.543343,52.283619 +-1.474177,52.494331 +-1.71055,52.480536 +-1.638143,52.607077 +-1.543477,52.578279 +-1.499251,52.317289 +-1.484029,52.479361 +-1.26475,52.371974 +-1.424912,52.407087 +-1.546777,52.283282 +-1.426811,52.405739 +-1.270703,52.355657 +-1.539945,52.293324 +-1.596802,52.272666 +-1.614275,52.592483 +-1.713641,52.201066 +-1.709947,52.192992 +-1.461971,52.193984 +-1.477415,52.513225 +-1.230549,52.361336 +-1.482274,52.487175 +-1.359936,52.405126 +-1.656074,52.470574 +-1.343155,52.349285 +-1.432114,52.395686 +-1.570772,52.307753 +-1.714113,52.195879 +-1.693727,52.188285 +-1.816274,52.359292 +-1.576604,52.586224 +-1.267786,52.362481 +-1.523335,52.540056 +-1.269086,52.361077 +-1.899628,52.264689 +-1.531748,52.469842 +-1.497012,52.215688 +-1.253928,52.372607 +-1.261933,52.375328 +-1.281136,52.350651 +-1.584455,52.512948 +-1.48595,52.459852 +-1.894985,52.282701 +-1.364777,52.293106 +-1.342894,52.349086 +-1.670728,52.473618 +-1.283318,52.458034 +-1.297569,52.392015 +-1.613427,52.260144 +-1.571544,52.335617 +-1.531679,52.283187 +-1.364256,52.273154 +-1.50117,52.520843 +-1.438524,52.439463 +-1.45221,52.188248 +-1.473931,52.52736 +-1.254518,52.369896 +-1.243094,52.367953 +-1.883577,52.356689 +-1.269147,52.360979 +-1.68383,52.327627 +-1.743365,52.557422 +-1.447908,52.514907 +-1.494038,52.461703 +-1.884475,52.243026 +-1.566335,52.291986 +-1.543234,52.478022 +-1.850949,52.156043 +-1.445747,52.54611 +-1.604866,52.229377 +-1.590657,52.324051 +-1.608348,52.667879 +-1.696714,52.567659 +-1.218603,52.414984 +-1.650853,52.302272 +-1.588684,52.283624 +-1.470042,52.199244 +-1.205272,52.399207 +-1.48887,52.115229 +-1.531733,52.469868 +-1.40472,52.437185 +-1.610255,52.284407 +-1.501837,52.350879 +-1.615112,52.020947 +-1.715267,52.196134 +-1.748933,52.130715 +-1.894812,52.275221 +-1.584158,52.564675 +-1.808571,52.347646 +-1.449145,52.383981 +-1.423776,52.480693 +-1.258808,52.321492 +-1.402133,52.388095 +-1.700784,52.56366 +-1.633519,52.601984 +-1.359922,52.405099 +-1.596813,52.590762 +-1.526385,52.457944 +-1.610271,52.284254 +-1.431284,52.437415 +-1.474766,52.514157 +-1.227222,52.38201 +-1.33959,52.438781 +-1.570903,52.292713 +-1.774099,52.57862 +-1.461279,52.525298 +-1.663175,52.533551 +-1.312326,52.309454 +-1.582409,52.626195 +-1.639418,52.602838 +-1.897192,52.272589 +-1.550848,52.279324 +-1.432499,52.529443 +-1.390811,52.336361 +-1.464372,52.52186 +-1.774517,52.312318 +-1.61775,52.48644 +-1.472297,52.522237 +-1.67898,52.092965 +-1.698258,52.538338 +-1.422216,52.476109 +-1.533304,52.286205 +-1.518258,52.316406 +-1.265839,52.401073 +-1.255305,52.404307 +-1.492431,52.463198 +-1.574272,52.191979 +-1.69473,52.193466 +-1.497726,52.208229 +-1.522031,52.284785 +-1.405003,52.497043 +-1.869799,52.162979 +-1.277591,52.388002 +-1.721742,52.529361 +-1.864619,52.33334 +-1.78055,52.28766 +-1.244612,52.410721 +-1.629086,52.149747 +-1.365519,52.274023 +-1.58601,52.468165 +-1.533158,52.286169 +-1.822136,52.160543 +-1.264723,52.379786 +-1.388074,52.252745 +-1.492859,52.461824 +-1.707709,52.480404 +-1.752947,52.35585 +-1.892413,52.267065 +-1.47613,52.522146 +-1.625155,52.062517 +-1.497612,52.464496 +-1.511,52.301461 +-1.52404,52.488411 +-1.711919,52.200279 +-1.534164,52.283871 +-1.432918,52.459035 +-1.529989,52.289186 +-1.437525,52.469404 +-1.319025,52.473061 +-1.476097,52.507582 +-1.509068,52.466801 +-1.525373,52.571214 +-1.575256,52.302078 +-1.568909,52.28661 +-1.495089,52.463721 +-1.449123,52.528523 +-1.447258,52.257325 +-1.532053,52.123635 +-1.73718,52.204069 +-1.530866,52.290807 +-1.638558,52.084486 +-1.613762,52.258715 +-1.751437,52.559372 +-1.53191,52.286316 +-1.242958,52.37679 +-1.367396,52.435436 +-1.535722,52.297497 +-1.881679,52.159827 +-1.90398,52.149094 +-1.637911,52.306773 +-1.610152,52.286106 +-1.665987,52.286726 +-1.545744,52.281102 +-1.492953,52.371572 +-1.678342,52.556131 +-1.577764,52.346697 +-1.464916,52.477029 +-1.906383,52.271626 +-1.574189,52.504847 +-1.453752,52.491641 +-1.523041,52.302679 +-1.645998,52.599873 +-1.643934,52.517465 +-1.351217,52.267877 +-1.722317,52.189309 +-1.65139,52.595817 +-1.241354,52.34695 +-1.473509,52.456561 +-1.757293,52.124646 +-1.714114,52.478235 +-1.6903,52.506367 +-1.723036,52.539334 +-1.757426,52.564778 +-1.440784,52.248988 +-1.338147,52.249069 +-1.57679,52.347269 +-1.493803,52.461675 +-1.620353,52.258881 +-1.502049,52.329357 +-1.861912,52.179611 +-1.534748,52.282714 +-1.495325,52.462464 +-1.912102,52.269823 +-1.274878,52.367901 +-1.588464,52.482782 +-1.816201,52.359283 +-1.57756,52.062464 +-1.519733,52.526916 +-1.424242,52.434782 +-1.426698,52.364536 +-1.473758,52.486301 +-1.465224,52.48442 +-1.531471,52.28484 +-1.728705,52.190124 +-1.551071,52.264544 +-1.63238,52.269671 +-1.660015,52.337181 +-1.599308,52.295393 +-1.562531,52.282208 +-1.266322,52.371058 +-1.52567,52.572357 +-1.442489,52.356044 +-1.468855,52.286535 +-1.707547,52.478183 +-1.567218,52.506566 +-1.571065,52.530637 +-1.624244,52.261383 +-1.647809,51.980717 +-1.467327,52.512721 +-1.375671,52.246198 +-1.483789,52.458405 +-1.476576,52.526769 +-1.366479,52.49429 +-1.538838,52.523854 +-1.686609,52.467961 +-1.795292,52.202971 +-1.431699,52.43828 +-1.693786,52.570726 +-1.673128,52.545176 +-1.639201,52.60593 +-1.836641,52.183427 +-1.265845,52.371477 +-1.726429,52.2105 +-1.236678,52.392537 +-1.674255,52.216634 +-1.525407,52.517373 +-1.50319,52.281174 +-1.609041,52.260795 +-1.525038,52.276454 +-1.889359,52.257919 +-1.266756,52.37498 +-1.586696,52.569394 +-1.581791,52.560738 +-1.280766,52.389693 +-1.42755,52.395152 +-1.606541,52.137464 +-1.497499,52.240054 +-1.888922,52.286112 +-1.262218,52.370547 +-1.264884,52.3754 +-1.233629,52.361581 +-1.303746,52.363678 +-1.57516,52.566135 +-1.724997,52.513285 +-1.488851,52.524557 +-1.59008,52.530722 +-1.566925,52.326268 +-1.551957,52.47152 +-1.554016,52.080178 +-1.484102,52.51596 +-1.552989,52.267554 +-1.475314,52.527582 +-1.533242,52.296283 +-1.629684,52.211585 +-1.558297,52.270244 +-1.575961,52.323451 +-1.726868,52.537041 +-1.597738,52.277739 +-1.613516,52.258382 +-1.577868,52.346607 +-1.46624,52.521005 +-1.497528,52.240046 +-1.473976,52.522352 +-1.509112,52.476052 +-1.473604,52.4807 +-1.475538,52.480196 +-1.697162,52.566914 +-1.288101,52.362155 +-1.26478,52.371929 +-1.875273,52.302038 +-1.26121,52.385194 +-1.916524,52.193777 +-1.416036,52.436936 +-1.494152,52.530073 +-1.617663,52.467615 +-1.480515,52.523946 +-1.554053,52.24038 +-1.542317,52.189621 +-1.54288,52.280165 +-1.671259,52.041211 +-1.475158,52.514617 +-1.266166,52.369816 +-1.705993,52.193684 +-1.504443,52.522043 +-1.510211,52.313172 +-1.383288,52.312686 +-1.362861,52.409214 +-1.596562,52.273195 +-1.59271,52.609761 +-1.468368,52.514425 +-1.499116,52.455225 +-1.278547,52.359032 +-1.508304,52.552535 +-1.482498,52.465555 +-1.547072,52.57743 +-1.434082,52.471617 +-1.43887,52.155657 +-1.462542,52.529322 +-1.73645,52.198835 +-1.615425,52.334068 +-1.540006,52.288812 +-1.726473,52.210482 +-1.539977,52.290223 +-1.269414,52.383079 +-1.266366,52.371058 +-1.260498,52.367128 +-1.62858,52.094552 +-1.535909,52.293641 +-1.513222,52.351591 +-1.339606,52.225782 +-1.555909,52.34641 +-1.788454,52.207103 +-1.512529,52.525214 +-1.617794,52.198565 +-1.459286,52.530413 +-1.397903,52.247419 +-1.512778,52.525332 +-1.468303,52.197842 +-1.476821,52.522284 +-1.550025,52.516634 +-1.428925,52.540214 +-1.336084,52.379354 +-1.472326,52.522291 +-1.285825,52.424085 +-1.706871,52.475799 +-1.364748,52.293106 +-1.537023,52.293673 +-1.666884,52.579149 +-1.565628,52.557362 +-1.737565,52.553121 +-1.5041,52.527679 +-1.197937,52.391183 +-1.251326,52.389268 +-1.397056,52.310941 +-1.264191,52.385276 +-1.261909,52.379409 +-1.481438,52.468104 +-1.431074,52.477644 +-1.563041,52.654407 +-1.492354,52.473761 +-1.532624,52.288162 +-1.401133,52.314243 +-1.853927,52.17071 +-1.247104,52.382642 +-1.270611,52.371947 +-1.634942,52.519596 +-1.474633,52.514228 +-1.586903,52.605399 +-1.473117,52.268367 +-1.614341,52.286578 +-1.580532,52.283793 +-1.564181,52.25599 +-1.468605,52.514273 +-1.257789,52.387654 +-1.531344,52.292751 +-1.588711,52.171298 +-1.707167,52.500009 +-1.559934,52.473258 +-1.495208,52.462355 +-1.386938,52.411589 +-1.446132,52.379373 +-1.692611,52.20166 +-1.519418,52.569257 +-1.386628,52.48163 +-1.629104,52.29006 +-1.707698,52.477662 +-1.465723,52.533202 +-1.717279,52.169545 +-1.881575,52.160348 +-1.802802,52.159164 +-1.576423,51.974431 +-1.52193,52.269635 +-1.390833,52.235255 +-1.353478,52.401495 +-1.530381,52.290868 +-1.783268,52.1659 +-1.574712,52.306814 +-1.50289,52.564343 +-1.856084,52.336224 +-1.280365,52.389979 +-1.264973,52.376237 +-1.530806,52.28402 +-1.38441,52.38724 +-1.712375,52.193088 +-1.566631,52.35785 +-1.617102,52.031967 +-1.589761,52.290811 +-1.613195,52.621274 +-1.54951,52.324603 +-1.326426,52.436675 +-1.708093,52.547038 +-1.559212,52.269529 +-1.613352,52.589972 +-1.566541,52.326437 +-1.261431,52.376349 +-1.852397,52.297364 +-1.494758,52.360082 +-1.504415,52.462961 +-1.789984,52.341996 +-1.665782,52.286663 +-1.53521,52.515758 +-1.605905,52.237652 +-1.468239,52.525114 +-1.501074,52.462911 +-1.377992,52.436149 +-1.259958,52.37305 +-1.420301,52.536729 +-1.536401,52.232437 +-1.535007,52.276215 +-1.471634,52.519744 +-1.722651,52.584003 +-1.547833,52.2861 +-1.338845,52.253361 +-1.509987,52.462229 +-1.571657,52.285955 +-1.715631,52.31558 +-1.462408,52.478708 +-1.39191,52.433794 +-1.577996,52.29459 +-1.730132,52.533749 +-1.495208,52.462364 +-1.534031,52.28396 +-1.656563,52.587453 +-1.511827,52.24755 +-1.640417,52.154618 +-1.247075,52.382633 +-1.543585,52.280123 +-1.277869,52.390736 +-1.711388,52.19866 +-1.704004,52.193553 +-1.394762,52.374806 +-1.322566,52.256496 +-1.267699,52.357949 +-1.823692,52.207098 +-1.394631,52.375803 +-1.568099,52.324708 +-1.628685,52.264697 +-1.484619,52.459154 +-1.500548,52.474353 +-1.534591,52.570145 +-1.591929,52.649395 +-1.628633,52.598336 +-1.522094,52.541597 +-1.822013,52.191371 +-1.503008,52.564389 +-1.702928,52.192588 +-1.814853,52.323284 +-1.265208,52.364739 +-1.231175,52.365899 +-1.504796,52.456543 +-1.526268,52.276494 +-1.711957,52.194472 +-1.729061,52.535374 +-1.574903,52.28531 +-1.670361,52.473509 +-1.664756,52.18933 +-1.591458,52.283166 +-1.46754,52.112249 +-1.571092,52.256401 +-1.59873,52.257119 +-1.875147,52.305311 +-1.729042,52.209328 +-1.474743,52.480265 +-1.91987,52.163356 +-1.441034,52.16963 +-1.32339,52.34093 +-1.414482,52.469841 +-1.495878,52.465577 +-1.343104,52.343846 +-1.39497,52.254129 +-1.656161,52.587919 +-1.266118,52.370939 +-1.221511,52.393454 +-1.284173,52.418015 +-1.709218,52.194842 +-1.550232,52.29385 +-1.70372,52.280381 +-1.722841,52.163813 +-1.750724,52.247019 +-1.589306,52.590098 +-1.614518,52.018877 +-1.521964,52.285629 +-1.694189,52.570062 +-1.648211,52.598225 +-1.548013,52.281416 +-1.416814,52.382387 +-1.582635,52.28149 +-1.623377,52.263448 +-1.395228,52.385911 +-1.277602,52.359404 +-1.502646,52.218436 +-1.533004,52.284064 +-1.546854,52.585646 +-1.484609,52.232645 +-1.275554,52.206059 +-1.232713,52.366097 +-1.490344,52.212639 +-1.737937,52.22474 +-1.57594,52.297945 +-1.463338,52.194673 +-1.402395,52.315329 +-1.631751,52.20047 +-1.702503,52.306648 +-1.402424,52.315383 +-1.402383,52.242066 +-1.275079,52.386161 +-1.670666,52.57275 +-1.69126,52.506019 +-1.547234,52.293074 +-1.861228,52.1643 +-1.538907,52.290138 +-1.652917,52.47336 +-1.594147,52.490902 +-1.265421,52.383746 +-1.210111,52.398224 +-1.608618,52.148853 +-1.48595,52.458594 +-1.612104,52.260679 +-1.279177,52.37449 +-1.455911,52.477833 +-1.41916,52.263906 +-1.269208,52.369745 +-1.896536,52.28371 +-1.581716,52.28101 +-1.258749,52.387355 +-1.569995,52.318305 +-1.495782,52.277798 +-1.542247,52.575991 +-1.475115,52.50961 +-1.263063,52.371855 +-1.525406,52.517454 +-1.704348,52.476575 +-1.53234,52.320724 +-1.473154,52.504755 +-1.49996,52.216447 +-1.556916,52.5187 +-1.353205,52.292351 +-1.261765,52.386268 +-1.534284,52.268246 +-1.389468,52.49023 +-1.890966,52.259916 +-1.445685,52.546415 +-1.22157,52.393481 +-1.564071,52.255279 +-1.502993,52.564371 +-1.296051,52.401536 +-1.475729,52.481492 +-1.798976,52.346327 +-1.370665,52.386691 +-1.492184,52.462954 +-1.390119,52.337553 +-1.520629,52.281632 +-1.418638,52.437012 +-1.585664,52.344945 +-1.343016,52.343854 +-1.395372,52.483949 +-1.573841,52.333314 +-1.404893,52.238384 +-1.596155,52.193791 +-1.584271,52.655769 +-1.691361,52.098833 +-1.686644,52.205348 +-1.58984,52.19795 +-1.834106,52.208444 +-1.748071,52.244684 +-1.731213,52.154932 +-1.602809,52.195683 +-1.573078,52.35924 +-1.571902,52.283304 +-1.552663,52.237327 +-1.537076,52.302672 +-1.711799,52.198553 +-1.458922,52.516783 +-1.55797,52.326657 +-1.537337,52.293126 +-1.553413,52.289546 +-1.69695,52.522647 +-1.441466,52.20634 +-1.254352,52.371001 +-1.490471,52.467271 +-1.521008,52.276329 +-1.903669,52.279688 +-1.349653,52.273569 +-1.542732,52.499426 +-1.670427,52.573082 +-1.595521,52.623678 +-1.614818,52.597933 +-1.648966,52.442594 +-1.488881,52.464702 +-1.556531,52.35026 +-1.398645,52.357141 +-1.336349,52.344024 +-1.520299,52.468124 +-1.518542,52.276715 +-1.465487,52.52111 +-1.475784,52.497944 +-1.299919,52.215368 +-1.454337,52.509857 +-1.452617,52.53441 +-1.473268,52.497681 +-1.230593,52.361328 +-1.658859,52.239363 +-1.542585,52.499425 +-1.472781,52.52241 +-1.518067,52.560621 +-1.757382,52.564751 +-1.441886,52.170488 +-1.565571,52.470438 +-1.567612,52.658523 +-1.430483,52.475565 +-1.496939,52.453813 +-1.364867,52.490667 +-1.782137,52.280974 +-1.27678,52.348574 +-1.474655,52.49997 +-1.5499,52.573575 +-1.275671,52.375089 +-1.629216,52.097134 +-1.881456,52.194314 +-1.654356,52.590305 +-1.596339,52.273563 +-1.48557,52.486174 +-1.282,52.376161 +-1.485485,52.459347 +-1.458319,52.283808 +-1.547707,52.289812 +-1.51161,52.557619 +-1.522647,52.133091 +-1.242541,52.36768 +-1.709797,52.328467 +-1.535608,52.260727 +-1.508871,52.525487 +-1.595565,52.623705 +-1.64898,52.44263 +-1.70998,52.522464 +-1.725047,52.514634 +-1.406111,52.478151 +-1.855674,52.173122 +-1.28388,52.35527 +-1.766251,52.213211 +-1.248146,52.397411 +-1.634927,52.519605 +-1.536982,52.294841 +-1.504238,52.462987 +-1.508013,52.462355 +-1.359123,52.349625 +-1.370448,52.177393 +-1.484572,52.521122 +-1.368962,52.239006 +-1.606441,52.59528 +-1.626634,52.600784 +-1.633296,52.614605 +-1.485921,52.504011 +-1.415867,52.475296 +-1.477455,52.480016 +-1.680271,52.558635 +-1.74272,52.518872 +-1.704794,52.193555 +-1.615592,52.141774 +-1.764706,52.259292 +-1.619262,52.259731 +-1.68504,52.206693 +-1.554077,52.337386 +-1.686512,52.205438 +-1.50644,52.066116 +-1.712468,52.190077 +-1.240014,52.380574 +-1.253184,52.374095 +-1.717222,52.194655 +-1.643682,52.115502 +-1.697275,52.355056 +-1.48571,52.457676 +-1.73491,52.535909 +-1.4322,52.395822 +-1.77017,52.565253 +-1.472221,52.522425 +-1.591335,52.283831 +-1.551539,52.47213 +-1.428697,52.437258 +-1.653648,52.592155 +-1.59914,52.583227 +-1.214144,52.395365 +-1.870837,52.213614 +-1.565653,52.864953 +-1.655088,53.328722 +-1.534333,52.769878 +-1.456799,52.896112 +-1.330133,53.018611 +-1.343782,53.100525 +-1.448819,52.90529 +-1.466568,53.05195 +-1.467092,52.910101 +-1.322328,53.255772 +-1.271822,52.886178 +-1.949962,53.431967 +-1.582441,52.763989 +-1.744203,53.008509 +-1.557273,53.142168 +-1.943748,53.234726 +-1.258272,53.17982 +-1.439368,52.924456 +-1.876306,53.196275 +-1.46926,52.917689 +-1.688242,53.208831 +-1.281598,53.308775 +-1.446344,53.059705 +-1.459249,52.956029 +-1.491824,52.950473 +-1.389566,53.179136 +-1.630812,52.765911 +-1.412845,53.168394 +-1.523055,52.909314 +-1.579759,53.163454 +-1.415845,53.168876 +-1.504587,52.928934 +-1.483292,52.925796 +-1.543667,52.910483 +-1.408271,53.252967 +-1.216901,53.224043 +-1.509109,53.314755 +-1.43496,53.223738 +-1.34624,53.119686 +-1.666637,52.879887 +-1.499341,52.918152 +-1.357798,53.014737 +-1.501325,53.230452 +-1.365627,53.262231 +-1.365779,53.306628 +-1.463752,52.880745 +-1.268821,53.185072 +-1.969593,53.467622 +-1.269458,52.898632 +-1.321898,53.20616 +-1.950503,53.432579 +-1.762177,52.940417 +-1.437838,53.238467 +-1.440419,53.247342 +-1.457067,52.925778 +-1.565332,52.867361 +-1.477506,52.910939 +-1.453017,52.891879 +-1.362212,53.092481 +-1.573356,53.063887 +-1.292871,52.910523 +-1.638538,52.765288 +-1.426273,53.238295 +-1.75577,53.074145 +-1.313409,52.914131 +-1.550347,52.839672 +-1.478271,52.919041 +-1.480031,52.90499 +-1.376381,53.088421 +-1.465929,52.915247 +-1.829944,53.496169 +-1.437881,52.917581 +-1.735211,52.884923 +-1.51293,52.930479 +-1.556965,53.143012 +-1.342258,53.106459 +-1.311264,53.323045 +-1.296906,53.316076 +-1.4375,52.919404 +-1.477994,52.91735 +-1.429109,53.233481 +-1.802045,53.300913 +-1.285099,52.901226 +-1.284358,52.906463 +-1.472356,52.926009 +-1.914153,53.252884 +-1.637269,53.031936 +-1.411104,52.912561 +-1.749252,52.980797 +-1.936959,53.4413 +-1.602575,53.188666 +-1.641363,53.233931 +-1.559149,53.109275 +-1.422583,53.251994 +-1.424496,53.269136 +-1.482172,52.926124 +-1.436409,53.012618 +-1.529394,52.766056 +-1.455576,53.023297 +-1.723177,53.008003 +-1.542825,53.144154 +-1.447253,52.836657 +-1.428546,53.251007 +-1.638765,53.34675 +-1.630911,53.022046 +-1.98424,53.329911 +-1.730312,53.018258 +-1.398036,52.923076 +-1.436863,53.233932 +-1.448791,52.889873 +-1.434945,53.223747 +-1.487212,52.913768 +-1.617078,53.144739 +-1.445392,52.92683 +-1.448178,53.252286 +-1.336566,53.025839 +-1.482063,52.951501 +-1.544832,52.78076 +-1.485592,53.02788 +-1.58922,53.101364 +-1.547244,52.939613 +-1.498639,52.98405 +-1.758493,52.885925 +-1.181597,53.283744 +-1.392212,53.073303 +-1.40483,52.93637 +-1.622876,52.878156 +-1.534249,53.149146 +-1.389073,53.08944 +-1.579413,52.781391 +-1.451552,53.26743 +-1.479415,52.950177 +-1.439419,53.233252 +-1.655291,53.180272 +-1.586756,52.768427 +-1.286962,52.884616 +-1.330554,53.018389 +-1.556071,53.136932 +-1.436565,53.238371 +-1.565477,52.782914 +-1.414963,53.02341 +-1.319565,53.10474 +-1.289118,52.918133 +-1.392345,53.071299 +-1.479639,52.950061 +-1.360902,53.138535 +-1.478036,52.910132 +-1.40974,52.892571 +-1.392816,53.08874 +-1.446568,53.256261 +-1.916284,53.259223 +-1.355201,53.013959 +-1.807337,53.34546 +-1.299543,52.90711 +-1.953576,53.443483 +-1.469799,52.921036 +-1.8234,53.493041 +-1.469179,52.90967 +-1.576786,52.786335 +-1.424903,53.233165 +-1.305316,53.232582 +-1.378933,53.081306 +-1.599084,52.765638 +-1.904337,53.259366 +-1.47667,52.887697 +-1.426104,53.234141 +-1.437169,53.235785 +-1.515582,52.904744 +-1.460911,52.936053 +-1.529605,52.761562 +-1.596995,53.108447 +-1.389485,53.257537 +-1.242223,53.220188 +-1.47121,53.02983 +-1.47873,52.909254 +-1.732334,53.019018 +-1.474738,52.909866 +-1.477733,52.910571 +-1.308992,52.97393 +-1.343381,53.192536 +-1.427298,52.895641 +-1.651091,53.144655 +-1.455054,52.934462 +-1.424292,53.235211 +-1.417415,53.05172 +-1.30934,52.97644 +-1.418892,53.180316 +-1.308599,52.986468 +-1.49764,52.934056 +-1.87194,53.225044 +-1.48421,52.923616 +-1.423291,52.914185 +-1.39755,53.068341 +-1.213014,53.263686 +-1.466775,52.9093 +-1.561743,53.121555 +-1.648476,53.069427 +-1.323164,53.196072 +-1.524427,52.914435 +-1.750283,52.977473 +-1.359061,53.233099 +-1.584559,52.798399 +-1.477734,52.901815 +-1.34806,53.317166 +-1.377026,53.233931 +-1.294897,52.924055 +-1.353997,53.301765 +-1.541797,52.924202 +-1.309147,52.977293 +-1.421911,53.230669 +-1.36901,53.254419 +-1.559301,52.769011 +-1.571536,52.946328 +-1.517737,52.866 +-1.732816,53.0183 +-1.549894,53.14294 +-1.487703,52.985603 +-1.257152,53.18571 +-1.583445,52.854499 +-1.395446,53.042765 +-1.368536,53.25608 +-1.346873,53.192231 +-1.499333,52.887903 +-1.452813,52.891545 +-1.458039,52.936139 +-1.544744,53.137986 +-1.365545,53.30722 +-1.761176,53.278636 +-1.972898,53.457637 +-1.478437,52.907689 +-1.491081,52.855182 +-1.476947,52.914118 +-1.596226,53.265445 +-1.469079,52.908159 +-1.420375,53.230149 +-1.290817,52.91247 +-1.463592,52.90693 +-1.486256,52.882705 +-1.325403,53.019861 +-1.431211,52.897673 +-1.561631,52.779079 +-1.423137,53.010829 +-1.466194,52.91061 +-1.591404,52.848198 +-1.900504,53.263534 +-1.464666,52.999543 +-1.281853,52.90242 +-1.356456,53.191969 +-1.297058,52.949517 +-1.534665,52.769295 +-1.456013,53.120121 +-1.521266,52.901684 +-1.598519,52.886562 +-1.205826,53.20414 +-1.746663,53.300718 +-1.415588,52.98048 +-1.579456,52.772303 +-1.529683,53.151069 +-1.510268,52.919888 +-1.500227,52.885093 +-1.301203,53.207263 +-1.425928,52.900354 +-1.466954,52.920142 +-1.422148,53.243102 +-1.527505,53.151995 +-1.408569,53.071281 +-1.349792,53.311854 +-1.409715,52.950229 +-1.598272,52.752375 +-1.409923,53.065041 +-1.311173,52.974473 +-1.507755,52.918493 +-1.754655,52.88394 +-1.486394,52.921333 +-1.808474,53.245804 +-1.445463,53.266386 +-1.573611,52.788023 +-1.35003,53.013903 +-1.331197,53.018204 +-1.561547,52.77267 +-1.500755,52.945216 +-1.484501,52.910412 +-1.348971,53.270114 +-1.408988,53.076623 +-1.429131,53.237455 +-1.422788,52.918515 +-1.306589,52.978024 +-1.460159,52.924759 +-1.42112,53.271529 +-1.328078,53.152719 +-1.323259,53.185313 +-1.422137,53.230544 +-1.458321,52.895607 +-1.47241,52.921578 +-1.47244,52.921551 +-1.303401,53.326478 +-1.258375,53.179893 +-1.889732,53.284307 +-1.322119,53.280338 +-1.266025,52.900301 +-1.299475,52.962988 +-1.386599,53.097563 +-1.448624,53.024829 +-1.27695,53.282715 +-1.432309,52.894424 +-1.222032,53.219492 +-1.434816,52.927904 +-1.438477,52.861103 +-1.428471,53.044834 +-1.479278,52.916879 +-2.000321,53.363152 +-1.357957,53.0181 +-1.516668,52.972861 +-1.588882,53.161949 +-1.809718,53.194974 +-1.544082,52.907788 +-1.372521,53.084904 +-1.431575,53.222608 +-1.602515,53.188639 +-1.477178,52.917212 +-1.564985,52.735573 +-1.546497,52.768828 +-1.454095,52.92323 +-1.293673,52.905143 +-1.300263,52.913192 +-1.528539,52.765576 +-1.285668,53.209616 +-1.425329,52.889393 +-1.737916,53.015498 +-1.928433,53.444432 +-1.295705,52.962256 +-1.815955,53.346382 +-1.562873,53.139816 +-1.971614,53.235967 +-1.213509,53.212173 +-1.225114,53.220501 +-1.796518,53.340076 +-1.902517,53.235347 +-1.38333,53.307169 +-1.417413,52.88681 +-1.438322,52.868518 +-1.81695,53.30677 +-1.289279,53.285468 +-1.45061,52.888317 +-1.678058,52.874597 +-1.337906,53.102911 +-1.466413,52.904875 +-1.416678,52.917164 +-1.562345,52.732947 +-1.330351,53.146952 +-1.407042,53.274633 +-1.58096,52.853456 +-1.865327,53.323068 +-1.434567,53.224033 +-1.469934,53.032926 +-1.424523,53.171004 +-1.387884,53.094333 +-1.429094,53.261617 +-1.770314,53.154482 +-1.416678,52.917164 +-1.361085,53.262162 +-1.350595,53.1896 +-1.473923,52.897322 +-1.266038,52.893388 +-1.447243,52.940359 +-1.38069,53.074277 +-1.416075,53.058113 +-1.673872,52.985046 +-1.55799,53.123195 +-1.869778,53.24648 +-1.353854,53.311247 +-1.486093,52.885176 +-1.308783,52.977705 +-1.330509,53.018362 +-1.555374,52.774795 +-1.464594,52.924608 +-1.392393,52.999969 +-1.473833,53.258766 +-1.434429,53.257193 +-1.503677,52.940842 +-1.438911,53.312217 +-1.376119,53.184019 +-1.368758,53.260342 +-1.271638,52.899814 +-1.808587,53.344617 +-1.406775,53.045429 +-1.489879,52.896879 +-1.754149,52.884073 +-1.48999,52.910265 +-1.906716,53.330514 +-1.403467,52.883936 +-1.308682,52.977542 +-1.366183,53.100638 +-1.635994,52.873109 +-1.482322,52.922268 +-1.396929,53.256928 +-1.431222,53.20292 +-1.422241,53.238365 +-1.947031,53.428622 +-1.742138,52.884542 +-1.984897,53.467993 +-1.327619,53.105496 +-1.467104,52.934606 +-1.896886,53.321868 +-1.271181,52.899569 +-1.871745,53.225008 +-1.407329,53.050726 +-1.428718,52.897284 +-1.513468,52.922337 +-1.822375,52.909311 +-1.480555,52.925748 +-1.27211,52.886701 +-1.403329,53.208411 +-1.662546,53.098538 +-1.32376,53.112495 +-1.464076,52.907535 +-1.566332,52.787897 +-1.703643,52.881019 +-1.723458,53.003734 +-1.747543,52.99034 +-1.51485,53.023481 +-1.295002,53.28677 +-1.597727,53.154896 +-1.422817,52.918569 +-1.478839,52.895276 +-1.48362,52.936981 +-1.434678,53.226937 +-1.634861,52.767245 +-1.502139,52.892032 +-1.481586,53.300706 +-1.575769,53.241968 +-1.353107,53.310982 +-1.43766,53.217684 +-1.398368,53.075006 +-1.500844,52.90774 +-1.403623,53.254112 +-1.564827,52.852518 +-1.310318,53.094547 +-1.286492,52.937678 +-1.537117,52.771507 +-1.984857,53.454906 +-1.327803,53.100373 +-1.587941,53.161784 +-1.452456,52.89985 +-1.413717,53.148254 +-1.452559,52.929434 +-1.275969,52.900443 +-1.477014,52.990016 +-1.368436,53.00993 +-1.634861,52.767236 +-1.35875,53.013897 +-1.421967,53.230921 +-1.776255,53.052674 +-1.398762,53.04244 +-1.467947,52.91558 +-1.663584,53.277394 +-1.428156,53.217288 +-1.949351,53.439274 +-1.353539,53.012502 +-1.580635,53.263774 +-1.419046,53.181072 +-1.325264,53.197702 +-1.466564,52.910764 +-1.476609,52.908876 +-1.465181,52.915558 +-1.507853,52.912497 +-1.32999,53.147075 +-1.30162,53.328922 +-1.980644,53.44571 +-1.270123,52.899715 +-1.427652,52.89584 +-1.891023,53.278106 +-1.508227,53.229465 +-1.324578,53.253772 +-1.484913,52.814163 +-1.575235,52.86034 +-1.302245,52.898155 +-1.537043,52.771426 +-1.337824,53.021576 +-1.434432,53.256986 +-1.476021,53.062231 +-1.679035,52.873098 +-1.621275,53.294795 +-1.523628,52.996729 +-1.416939,53.057147 +-1.724167,53.240704 +-1.394495,53.053124 +-1.438965,53.278284 +-1.509338,53.091516 +-1.42908,53.261572 +-1.47676,52.912329 +-1.356007,53.090983 +-1.339277,53.018222 +-1.272474,52.895145 +-1.300933,52.915011 +-1.41455,53.157373 +-1.338712,53.026867 +-1.428589,52.919577 +-1.674238,53.278556 +-1.533139,53.208774 +-1.405014,53.049807 +-1.563832,52.868821 +-1.601549,52.859182 +-1.296328,52.961505 +-1.423171,53.240545 +-1.46175,52.904396 +-1.820398,53.135691 +-1.49347,52.906342 +-1.716315,53.031826 +-1.928597,53.445079 +-1.306689,52.981081 +-1.862129,53.495617 +-1.546247,52.76872 +-1.485322,52.905157 +-1.288483,52.883375 +-1.837666,53.419949 +-1.305813,53.090521 +-1.504011,52.906468 +-1.318612,53.31035 +-1.846766,53.248942 +-1.941321,53.33397 +-1.487711,52.901706 +-1.333102,53.297398 +-1.352544,53.192316 +-1.269222,52.896761 +-1.523049,52.912613 +-1.208425,53.201208 +-1.425385,53.234111 +-1.471133,52.917715 +-1.278564,53.271516 +-1.327949,53.02001 +-1.487116,52.924402 +-1.488322,52.901628 +-1.578849,53.014745 +-1.485809,52.885328 +-1.551227,53.135565 +-1.493129,52.902466 +-1.579496,53.274448 +-1.557657,52.900459 +-1.780523,53.375112 +-1.927635,53.444432 +-1.288713,53.229167 +-1.558621,53.13171 +-1.361806,53.017878 +-1.94897,53.443184 +-1.393723,53.334135 +-1.487925,52.986998 +-1.297531,52.889066 +-1.343752,53.100507 +-1.481861,52.898633 +-1.429905,52.892957 +-1.493198,52.91053 +-1.614745,53.320167 +-1.43487,52.971754 +-1.214089,53.204185 +-1.324824,53.198086 +-1.319562,53.276108 +-1.908937,53.260179 +-1.73329,52.99457 +-1.651093,53.330688 +-1.405599,52.830163 +-1.466912,52.924825 +-1.43874,52.861383 +-1.433935,52.869972 +-1.324624,53.113596 +-1.315688,53.108062 +-1.4695,52.921151 +-1.388893,53.225444 +-1.324219,53.16325 +-1.945483,53.37905 +-1.425676,53.220161 +-1.980326,53.45122 +-1.434568,53.256933 +-1.563171,53.119268 +-1.33023,53.147059 +-1.449814,52.914778 +-1.48033,52.916039 +-1.264379,53.27587 +-1.351914,53.192412 +-1.208015,53.206383 +-1.424946,52.921771 +-1.469715,52.921835 +-1.348586,53.014741 +-1.535192,52.886745 +-1.348358,53.123833 +-1.313091,52.973702 +-1.60305,53.18909 +-1.284918,52.901342 +-1.32094,53.096146 +-1.732948,53.018588 +-1.370277,53.071894 +-1.320734,53.32514 +-1.474934,52.904689 +-1.404966,53.051155 +-1.29991,53.251724 +-1.481975,52.919013 +-1.347465,53.093013 +-1.301529,52.915833 +-1.437906,52.937411 +-1.504452,52.928997 +-1.426161,52.913111 +-1.350556,53.013583 +-1.487756,52.901715 +-1.524504,52.827165 +-1.476064,52.917018 +-1.44847,52.921028 +-1.319648,52.989543 +-1.494817,52.903049 +-1.512859,52.902351 +-1.489182,53.200971 +-1.426641,53.221955 +-1.468413,52.924868 +-1.521337,53.285663 +-1.467132,52.916529 +-1.349721,53.092917 +-1.269466,53.304666 +-1.48122,53.005792 +-1.32768,52.967313 +-1.626329,53.257112 +-1.940141,53.243183 +-1.585037,52.782508 +-1.477111,53.310844 +-1.368071,53.066579 +-1.475798,53.062149 +-1.321599,53.198544 +-1.427904,52.895905 +-1.986435,53.318774 +-1.380114,53.048906 +-1.209554,53.285479 +-1.517129,53.131863 +-1.671176,52.880816 +-1.394804,53.052353 +-1.724782,53.259267 +-1.543777,52.885861 +-1.353858,53.092913 +-1.393786,52.915332 +-1.375985,53.090028 +-1.488683,53.128383 +-1.688475,52.755891 +-1.492275,52.988239 +-1.555603,53.135905 +-1.256296,53.195449 +-1.476145,52.904173 +-1.476755,52.918927 +-1.466968,52.896014 +-1.440057,53.234909 +-1.506671,52.905211 +-1.443787,52.881381 +-1.296487,52.889275 +-1.528024,52.89683 +-1.484314,52.923643 +-1.329947,53.146985 +-1.638932,52.735569 +-1.478291,52.905009 +-1.782887,53.092778 +-1.397079,53.042252 +-1.42352,53.006713 +-1.447017,52.916041 +-1.355839,53.23416 +-1.248642,53.17603 +-1.867445,53.274028 +-1.463593,53.027234 +-1.224766,53.202412 +-1.428728,53.260977 +-1.5872,52.892277 +-1.5872,52.892277 +-1.636387,53.01977 +-1.47427,53.305043 +-1.872044,53.225089 +-1.510147,52.900245 +-1.625285,53.242834 +-1.32186,53.197161 +-1.483461,52.929087 +-1.480471,53.022257 +-1.601564,52.859209 +-1.393434,53.199803 +-1.438777,52.924147 +-1.303676,53.326219 +-1.405733,53.219749 +-1.51958,52.931783 +-1.751891,52.883799 +-1.934209,53.340258 +-1.581241,52.784112 +-1.434735,53.223773 +-1.340609,53.260064 +-1.454403,52.925955 +-1.324805,53.253602 +-1.218312,53.214838 +-1.9228,53.478873 +-1.316429,52.984877 +-1.559476,53.081599 +-1.43833,52.86094 +-1.410421,52.877418 +-1.434818,53.037412 +-1.578998,53.014745 +-1.48029,52.923113 +-1.518779,52.974497 +-1.361779,53.070231 +-1.489807,52.885318 +-1.345476,53.016351 +-1.476742,52.904004 +-1.476965,52.918784 +-1.465856,53.301113 +-1.308972,52.974281 +-1.48319,52.910631 +-1.250047,53.176119 +-1.446494,52.916255 +-1.41602,53.167007 +-1.24456,53.276348 +-1.650367,53.32949 +-1.296355,52.95799 +-1.454776,52.89382 +-1.504692,52.928809 +-1.549713,53.14169 +-1.487803,52.901464 +-1.458445,52.933381 +-1.470644,52.92495 +-1.482086,52.914689 +-1.402323,52.916365 +-1.494636,53.169991 +-1.907222,53.311656 +-1.604371,53.247171 +-1.423414,53.240295 +-1.569966,52.769743 +-1.406203,53.050163 +-1.408188,53.220912 +-1.472078,52.914618 +-1.319844,52.913467 +-1.377409,52.913477 +-1.308191,52.986807 +-1.294712,52.917105 +-1.289883,52.923234 +-1.826998,53.245329 +-1.376504,53.045831 +-1.573334,52.749609 +-1.382581,53.200871 +-1.327512,53.022291 +-1.934581,53.253283 +-1.501037,52.907741 +-1.331304,53.139478 +-1.630218,52.732684 +-1.343502,53.016816 +-1.337687,53.269675 +-1.483451,52.946149 +-1.414573,52.969625 +-1.470531,52.934172 +-1.491541,52.919989 +-1.454098,52.913494 +-1.48784,52.931174 +-1.484835,53.018842 +-1.4773,53.07866 +-1.42659,52.899746 +-1.311534,52.914237 +-1.631897,53.189946 +-1.267714,53.227188 +-1.741593,53.347709 +-1.21458,53.263345 +-1.36218,53.092598 +-1.754475,52.884137 +-1.546714,52.923448 +-1.270757,53.276439 +-1.943823,53.234798 +-1.377008,53.034651 +-1.363037,53.012248 +-1.403844,53.260864 +-1.27449,52.898204 +-1.512695,53.296397 +-1.462898,52.943865 +-1.902413,53.261477 +-1.827361,53.345131 +-1.502327,52.94569 +-1.752617,53.061715 +-1.395088,53.018213 +-1.325339,53.10035 +-1.750605,52.978552 +-1.442114,52.892493 +-1.422443,52.918675 +-1.443668,53.000957 +-1.50778,52.912371 +-1.581382,52.757 +-1.418236,53.125857 +-1.480223,52.908766 +-1.928709,53.251752 +-1.774821,53.193259 +-1.401426,53.088083 +-1.474995,53.316965 +-1.615097,53.245894 +-1.443818,52.856885 +-1.472142,52.917918 +-1.977806,53.315456 +-1.392788,52.88034 +-1.504131,52.88679 +-1.372452,52.941642 +-1.664941,53.39346 +-1.709389,53.001714 +-1.539725,53.08867 +-1.439941,53.275915 +-1.500093,53.027151 +-1.323076,52.996134 +-1.385783,53.20727 +-1.438497,53.24416 +-1.524186,53.13297 +-1.312067,52.985661 +-1.364663,52.906506 +-1.904432,53.438959 +-1.492793,52.923608 +-1.56466,53.140505 +-1.479005,52.897533 +-1.454143,52.893349 +-1.436347,53.231053 +-1.373298,53.257408 +-1.452982,52.898207 +-1.533666,52.79065 +-1.819822,53.305489 +-1.646688,53.271349 +-1.355141,53.013005 +-1.477865,52.965173 +-1.469803,52.896369 +-1.36293,53.088323 +-1.30805,52.967686 +-1.327111,52.911845 +-1.555008,52.816487 +-1.485727,52.921177 +-1.434765,53.223773 +-1.46395,52.912856 +-1.473115,52.857342 +-1.464112,52.935959 +-1.615212,53.319998 +-1.427218,53.047075 +-1.428219,53.017613 +-1.49028,53.184095 +-1.370437,53.088516 +-1.534824,52.91141 +-1.48767,52.898937 +-1.998052,53.375601 +-1.736654,53.378997 +-1.75328,53.139112 +-1.753294,53.139139 +-1.381443,52.871454 +-1.382436,53.098323 +-1.734591,53.345617 +-1.389765,53.292622 +-1.429664,53.221025 +-1.784015,53.293834 +-1.353792,53.059401 +-1.266398,52.900213 +-1.352882,53.013541 +-1.434445,52.90044 +-1.409358,52.950227 +-1.905518,53.260797 +-1.580589,53.191782 +-1.436177,53.215474 +-1.456813,52.8545 +-1.445117,52.878511 +-1.373533,53.084101 +-1.416926,53.000559 +-1.955839,53.439664 +-1.506203,52.89933 +-1.450305,52.904155 +-1.753294,53.139148 +-1.723078,53.130596 +-1.606706,52.779885 +-1.315009,52.897555 +-1.308991,52.960033 +-1.324824,53.198095 +-1.506556,52.904905 +-1.409225,53.189051 +-1.444665,52.882455 +-1.509737,53.045825 +-1.496029,52.920287 +-1.667947,52.982683 +-1.327645,53.106728 +-1.506831,52.905589 +-1.423317,53.233031 +-1.403617,52.920704 +-1.427231,53.24176 +-1.650556,53.273239 +-1.451191,52.889335 +-1.300371,52.928636 +-1.306527,53.102741 +-1.6022,53.106155 +-1.585118,53.010712 +-1.285652,53.209625 +-1.433024,52.922727 +-1.754818,53.289032 +-1.462622,52.938497 +-1.432454,52.935624 +-1.3053,53.232618 +-1.593014,52.768071 +-1.753309,53.139148 +-1.589142,53.101777 +-1.508115,53.086081 +-1.475662,52.918293 +-1.482031,52.886849 +-1.376044,52.91427 +-1.65338,53.274515 +-1.481206,52.888751 +-1.438215,53.269139 +-1.32282,53.325214 +-1.891625,53.259167 +-1.482093,52.809261 +-1.532377,52.869366 +-1.291104,52.906728 +-1.746218,53.299962 +-1.753339,53.139166 +-1.675921,53.127143 +-1.716521,53.175427 +-1.211854,53.263993 +-1.404953,53.042291 +-1.430077,52.888876 +-1.377262,53.047049 +-1.508393,52.914666 +-1.46341,52.897589 +-1.327541,52.911965 +-1.406552,53.048628 +-1.285528,52.879654 +-1.521356,52.794871 +-1.493731,52.86608 +-1.449971,52.870632 +-1.346698,53.237238 +-1.495513,52.893074 +-1.382183,52.976158 +-1.518536,52.766893 +-1.362928,53.092512 +-1.561502,52.847984 +-1.405485,53.050258 +-1.530233,52.766599 +-1.433404,53.2497 +-1.416245,53.233087 +-1.537219,52.771669 +-1.301334,52.915967 +-1.36103,53.016939 +-1.928791,53.256085 +-1.949974,53.240958 +-1.296245,52.904214 +-1.907916,53.330892 +-1.426722,53.270873 +-1.474783,52.900022 +-1.465878,53.06553 +-1.506321,52.911161 +-1.378002,53.208965 +-1.424029,52.913541 +-1.430634,52.908827 +-1.476693,52.912985 +-1.375248,53.260412 +-1.493767,52.92425 +-1.45287,53.047456 +-1.557299,52.774982 +-1.427265,53.238021 +-1.311272,52.977584 +-1.416075,53.058113 +-1.722164,53.374137 +-1.47174,52.931427 +-1.452733,53.232442 +-1.558404,53.298516 +-1.47774,52.906328 +-1.296752,53.287068 +-1.636701,52.736731 +-1.339551,53.01292 +-1.438418,52.861022 +-1.451205,52.889398 +-1.506314,53.004623 +-1.557157,52.781643 +-1.477502,52.90381 +-1.361746,53.092659 +-1.408743,53.073835 +-1.571549,53.28642 +-1.399314,53.203276 +-1.418179,53.128994 +-1.952083,53.405596 +-1.486097,52.920019 +-1.554296,52.765712 +-1.928759,53.30306 +-1.304364,52.978389 +-1.494894,52.921999 +-1.211405,53.202801 +-1.674175,53.213836 +-1.583365,53.008603 +-1.427253,53.24123 +-1.753155,52.883685 +-1.296245,52.977604 +-1.485816,52.921196 +-1.449277,52.934822 +-1.342986,53.022315 +-1.745573,53.29739 +-1.297282,53.286801 +-1.492873,52.893781 +-1.624683,52.763384 +-1.58239,53.245272 +-1.451551,52.937385 +-1.416272,53.170451 +-1.559562,52.772536 +-1.338782,53.23661 +-1.44153,53.24377 +-1.360725,53.119225 +-1.473731,53.303755 +-1.584534,53.262196 +-1.458208,52.892783 +-1.966051,53.317854 +-1.295001,53.286815 +-1.360115,52.863916 +-1.643274,53.267123 +-1.32781,53.323921 +-1.262873,53.275357 +-1.812471,52.944039 +-1.987039,53.458843 +-1.553455,53.139826 +-1.44704,52.893164 +-1.390141,53.246161 +-1.365078,52.870981 +-1.297449,52.905174 +-1.394048,53.22636 +-1.830127,52.911866 +-1.479636,52.906858 +-1.320328,52.885387 +-1.325756,53.196887 +-1.512534,52.920724 +-1.485696,53.172012 +-1.499604,52.927637 +-1.465555,52.915362 +-1.329887,53.126822 +-1.415444,53.267681 +-1.618572,53.144861 +-1.264766,53.275144 +-1.400066,53.118207 +-1.420744,52.900014 +-1.285549,53.207718 +-1.44953,53.050866 +-1.47795,52.902428 +-1.302387,52.977245 +-1.413572,52.886198 +-1.308381,52.960011 +-1.486682,53.03157 +-1.414692,53.220629 +-1.452855,52.925984 +-1.501764,52.881962 +-1.815319,53.493667 +-1.409431,53.066072 +-1.753244,52.883667 +-1.779377,53.171775 +-1.421612,52.948678 +-1.542396,52.901282 +-1.393368,53.257467 +-1.701152,52.880239 +-1.66398,52.879511 +-1.892826,53.210619 +-1.899488,53.326131 +-1.470827,52.896499 +-1.40892,52.918968 +-1.797779,53.340186 +-1.576072,53.241564 +-1.433555,53.223534 +-1.453288,53.065095 +-1.463758,53.051155 +-1.559734,52.774578 +-1.453736,52.85472 +-1.322633,53.109118 +-1.285667,53.209625 +-1.987643,53.347242 +-1.954705,53.443519 +-1.570273,52.866435 +-1.477155,53.30848 +-1.268806,53.18509 +-1.690051,53.173896 +-1.508683,52.873244 +-1.53746,52.762887 +-1.569763,52.867018 +-1.625601,53.270126 +-1.457763,53.231521 +-1.438376,52.86086 +-1.992134,53.432921 +-1.584563,53.262214 +-1.469291,52.917599 +-1.306747,52.92808 +-1.562466,52.763827 +-1.477323,52.911324 +-1.427504,52.895849 +-1.440968,52.936545 +-1.438433,52.861013 +-1.483216,52.929715 +-1.584519,53.262187 +-1.343796,53.200655 +-1.587981,52.850676 +-1.662597,53.385642 +-1.474585,52.921326 +-1.447729,53.115894 +-1.599394,53.166956 +-1.435617,52.940727 +-1.390122,52.95173 +-1.275954,52.900434 +-1.307435,52.962343 +-1.387238,53.09566 +-1.47896,52.897524 +-1.272607,52.898741 +-1.638372,53.27421 +-1.462043,52.924021 +-1.247746,53.276782 +-1.940246,53.242958 +-1.868972,53.495517 +-1.222116,53.273543 +-1.540896,52.770128 +-1.396362,53.089333 +-1.468117,52.907733 +-1.484299,52.923652 +-1.431016,52.894409 +-1.484454,52.908074 +-1.465137,53.300984 +-1.585133,53.010704 +-1.536403,52.969721 +-1.347805,53.268912 +-1.992837,53.368896 +-1.461578,52.903928 +-1.496862,52.890787 +-1.396241,53.089414 +-1.356939,53.139664 +-1.890811,53.278762 +-1.267203,53.222915 +-1.568472,52.761871 +-1.527628,53.094403 +-1.459741,52.898562 +-1.437042,53.233996 +-1.434558,53.226954 +-1.212411,53.26387 +-1.910168,53.25929 +-1.634699,52.767173 +-1.461717,52.944318 +-1.387394,53.185597 +-1.471538,52.917483 +-1.444212,52.892314 +-1.448068,53.197956 +-1.291425,52.881613 +-1.508698,52.873244 +-1.454991,52.969143 +-1.940063,53.245601 +-1.516337,53.131788 +-1.323728,53.100251 +-1.468238,52.925811 +-1.47212,52.896514 +-1.573455,53.082576 +-1.541738,52.924238 +-1.886224,53.3118 +-1.372297,53.301224 +-1.596714,52.771886 +-1.408465,53.038524 +-1.213763,53.260455 +-1.478896,52.89542 +-1.605875,52.763629 +-1.896621,53.263863 +-1.498131,52.91857 +-1.328095,53.106596 +-1.427727,53.25397 +-1.381414,53.096709 +-1.674761,53.132353 +-1.722195,53.374029 +-1.753228,52.883919 +-1.43472,53.223791 +-1.403606,52.912829 +-1.285652,53.209634 +-1.731843,53.01419 +-1.909053,53.247999 +-1.428016,52.896427 +-1.374719,53.091892 +-1.442665,52.869249 +-1.517701,52.912079 +-1.41883,53.05854 +-1.625007,53.226555 +-1.449544,53.050974 +-1.25673,52.890975 +-1.48651,52.885106 +-1.484432,52.923698 +-1.551618,52.778197 +-1.439383,52.924447 +-1.375257,53.075327 +-1.573447,53.06368 +-1.455191,53.311393 +-1.483379,52.812098 +-1.486164,53.20548 +-1.424565,52.860704 +-1.432964,53.237644 +-1.487815,52.986215 +-1.39171,53.049622 +-1.640243,52.973739 +-1.456534,52.951773 +-1.351984,53.003873 +-1.713903,53.006462 +-1.446536,52.998049 +-1.473634,52.928568 +-1.555545,52.942755 +-1.613432,53.189564 +-1.5332,53.295472 +-1.711472,53.013369 +-1.480899,53.008937 +-1.383698,53.258649 +-1.450717,52.832744 +-1.477002,52.921885 +-1.486242,52.981921 +-1.295127,52.925477 +-1.989761,53.348473 +-1.407344,53.050726 +-1.548811,53.13508 +-1.552572,52.940946 +-1.427521,53.25591 +-1.200282,53.293624 +-1.32144,53.19724 +-1.307272,52.967906 +-1.481606,52.92623 +-1.4514,52.8893 +-1.861108,53.336996 +-1.584524,53.094283 +-1.51478,52.920697 +-1.979754,53.450753 +-1.388744,53.240077 +-1.824031,53.204911 +-1.325255,53.197369 +-1.542183,52.83822 +-1.524864,52.909852 +-1.374027,53.257781 +-1.549655,52.836262 +-1.345555,53.161823 +-1.347887,53.163894 +-1.461431,53.207834 +-1.913032,53.258861 +-1.213887,53.259449 +-1.476725,52.918936 +-1.287086,52.892428 +-1.325753,53.236187 +-1.753043,53.138599 +-1.446109,52.905601 +-1.413178,53.151667 +-1.692397,52.746094 +-1.442924,52.862895 +-1.324839,53.198095 +-1.21275,53.26256 +-1.483367,52.908231 +-1.963078,53.458856 +-1.75922,53.239719 +-1.558705,53.298409 +-1.242282,53.220243 +-1.306562,52.975022 +-1.949395,53.401774 +-1.288084,52.925893 +-1.401505,52.982136 +-1.289593,52.923664 +-1.422471,52.918846 +-1.395995,53.214639 +-1.435831,53.217864 +-1.422466,53.233926 +-1.447907,52.906849 +-1.323846,53.102275 +-2.022624,53.368318 +-1.425671,52.913046 +-1.395205,52.910602 +-1.478989,52.897596 +-1.308669,52.977416 +-1.559557,52.762738 +-2.003116,53.357876 +-1.460057,52.883892 +-1.310084,52.923101 +-1.533809,52.768941 +-1.634309,52.734072 +-1.484849,52.902341 +-1.482103,53.265364 +-1.515566,53.197701 +-1.436761,53.238345 +-1.724965,52.883623 +-1.441332,53.050306 +-1.422261,53.161168 +-1.376594,53.260617 +-1.47884,53.308155 +-1.559049,52.767572 +-1.303822,52.898065 +-1.460537,52.92432 +-1.652845,53.32014 +-1.916213,53.441943 +-1.778391,53.14833 +-1.457527,53.266783 +-1.478308,52.917226 +-1.946663,53.228175 +-1.512,52.870219 +-1.451952,53.232609 +-1.916838,53.484091 +-1.450899,53.232901 +-1.804336,53.190156 +-1.462609,53.087188 +-1.949165,53.44331 +-1.404951,53.051155 +-1.45116,52.889461 +-1.476035,52.917 +-1.303887,53.326166 +-1.221747,53.271545 +-1.422198,53.237134 +-1.48417,53.04463 +-1.469502,53.160462 +-1.50553,52.928417 +-1.292041,52.926789 +-1.445013,52.878483 +-1.984444,53.431365 +-1.211823,53.289332 +-1.486008,52.909978 +-1.635899,53.113094 +-1.544535,53.019104 +-1.411583,53.026395 +-1.554519,52.774306 +-1.48071,52.922747 +-1.367911,52.867149 +-1.416395,53.049935 +-1.458895,52.973682 +-1.892841,53.258647 +-1.47105,52.896464 +-1.354577,53.120729 +-1.368419,53.278228 +-1.305434,52.975743 +-1.174618,53.280083 +-1.504711,52.916736 +-1.50146,52.767075 +-1.270034,52.899714 +-1.268685,52.895966 +-1.764878,53.147567 +-1.54703,52.820377 +-1.434101,52.886909 +-1.570669,52.740421 +-1.420906,52.902334 +-1.507755,53.132095 +-1.246743,53.254519 +-1.407126,53.050294 +-1.551896,52.777173 +-1.351335,53.235753 +-1.324041,53.102177 +-1.47796,52.897906 +-1.479367,52.910758 +-1.42934,53.237474 +-1.39092,53.09612 +-1.428064,52.915421 +-1.952169,53.450008 +-1.379639,53.206582 +-1.34131,53.120585 +-1.218664,53.216908 +-1.543233,52.913583 +-1.496905,52.926844 +-1.483068,52.919629 +-1.498854,52.924272 +-1.927944,53.484395 +-1.482509,53.005205 +-1.289518,52.882797 +-1.427755,53.219263 +-1.577926,52.729768 +-1.398192,52.915049 +-1.314104,53.307879 +-1.297254,52.925462 +-1.388294,53.180163 +-1.992747,53.365516 +-1.432366,53.229578 +-1.456227,52.895444 +-1.501316,52.908092 +-1.449871,52.934914 +-2.008796,53.358819 +-1.501335,52.907697 +-1.48245,52.929065 +-1.398803,53.198042 +-1.553822,52.841033 +-1.306636,52.967651 +-1.474492,52.996558 +-1.302092,52.974259 +-1.492898,52.921001 +-1.846616,53.248951 +-1.206563,53.284174 +-1.368169,52.911819 +-1.53299,52.880129 +-1.47865,53.306437 +-1.440599,52.860034 +-1.877917,53.493486 +-1.292272,52.960078 +-1.448441,53.05087 +-1.446589,53.266292 +-1.482028,52.923238 +-1.671612,52.984455 +-1.274173,52.893105 +-1.438491,52.861112 +-1.376088,52.914324 +-1.438431,52.861175 +-1.950807,53.337956 +-1.34244,52.867829 +-1.449018,52.884929 +-1.612609,53.317365 +-1.949437,53.442447 +-1.474404,53.043041 +-1.912754,53.329269 +-1.420144,52.890401 +-1.728292,53.019467 +-1.430753,52.9088 +-1.304753,52.984747 +-1.629491,52.870841 +-1.985007,53.32539 +-1.573231,53.147503 +-1.205675,53.204219 +-1.290879,52.912327 +-1.483682,52.904277 +-1.422965,53.241389 +-1.423281,53.251296 +-1.323503,53.196425 +-1.459996,52.955807 +-1.740328,53.278979 +-1.409716,52.950166 +-1.22695,53.205869 +-1.43935,52.928195 +-1.614297,52.939148 +-1.437111,53.236782 +-1.32141,53.19724 +-1.82044,53.405012 +-1.419963,53.097487 +-1.426286,53.008309 +-1.376977,53.034714 +-1.399787,53.1179 +-1.578852,52.795035 +-1.54637,52.906484 +-1.431546,52.891346 +-1.499379,52.905783 +-1.989577,53.302101 +-1.267435,53.235654 +-1.576895,53.068178 +-1.420967,53.238422 +-1.603119,52.985056 +-1.341811,53.213004 +-1.443693,52.820198 +-1.282982,53.223389 +-1.578863,53.014763 +-1.74471,53.318817 +-1.992134,53.432903 +-1.399357,53.203393 +-1.350678,53.26633 +-1.628387,53.022559 +-1.761781,52.936766 +-1.426022,53.237988 +-1.372326,53.084966 +-1.275097,53.222865 +-1.461203,52.94614 +-1.467279,53.301281 +-1.395117,53.216397 +-1.233938,53.189294 +-1.561664,52.716683 +-1.423759,52.89237 +-1.523636,52.914665 +-1.511201,52.905634 +-1.437395,53.235669 +-1.277314,53.22286 +-1.329129,52.958341 +-1.488469,52.911849 +-1.2987,52.907771 +-1.41774,52.92561 +-1.385322,52.866099 +-1.509963,52.923114 +-1.49486,52.926242 +-1.216606,53.263233 +-1.472365,53.030465 +-1.49137,52.909183 +-1.41577,53.057546 +-1.467439,52.919425 +-1.471813,52.921755 +-1.404462,53.07474 +-1.343224,53.199852 +-1.440227,52.933997 +-1.545468,52.883333 +-1.264618,52.896499 +-1.915305,53.254062 +-1.4794,53.040609 +-1.416641,53.0571 +-1.452073,52.901916 +-1.423919,53.236144 +-1.34178,53.213031 +-1.423587,53.052055 +-1.450281,52.906087 +-1.352504,53.262583 +-1.465875,53.230964 +-1.482778,52.887796 +-1.289671,52.915295 +-1.459976,53.235414 +-1.408295,53.069509 +-1.483994,52.924271 +-1.496372,52.926697 +-1.421998,53.230876 +-1.449466,52.915253 +-1.37516,53.305518 +-1.346375,53.016059 +-1.211478,53.26408 +-1.903385,53.262377 +-1.494398,53.219538 +-1.581515,52.744694 +-1.314592,53.10846 +-1.373826,52.87528 +-1.485801,52.921205 +-1.458144,52.930071 +-1.448926,52.889837 +-1.611399,52.762388 +-1.382293,53.048873 +-1.495681,52.878547 +-1.85774,53.293001 +-1.416334,53.195684 +-1.365988,53.078362 +-1.306963,52.951823 +-1.472401,52.925973 +-1.427427,53.255119 +-1.973505,53.451273 +-1.409257,53.183496 +-1.495111,52.903374 +-1.440744,52.832608 +-1.491679,53.222708 +-1.452811,52.946021 +-1.709011,53.28163 +-1.388338,53.04227 +-1.444214,52.892206 +-1.339803,53.246216 +-1.769807,53.285601 +-1.87182,53.225008 +-1.889456,53.333295 +-1.432279,52.894442 +-1.98324,53.469494 +-1.454875,52.894233 +-1.740853,53.147365 +-1.75339,52.881555 +-1.467343,52.934536 +-1.422412,52.918828 +-1.284698,52.930952 +-1.305048,52.966356 +-1.503929,52.916248 +-1.565635,52.86676 +-1.496164,52.918984 +-1.796435,53.496207 +-1.812723,52.944157 +-1.333272,52.939666 +-1.51285,52.921732 +-1.468731,52.915934 +-1.463059,52.924844 +-1.671236,53.126132 +-1.766266,52.902373 +-1.459449,52.892223 +-1.909619,53.484589 +-1.511086,52.923774 +-1.613994,52.966511 +-1.344029,53.126496 +-1.349861,53.267791 +-1.4117,53.299052 +-1.48825,52.901457 +-1.476987,52.914469 +-1.432767,53.260484 +-1.504587,52.928889 +-1.440148,52.892835 +-1.394712,53.052577 +-1.3551,53.139645 +-1.572164,52.788925 +-2.024082,53.368462 +-1.992597,53.365534 +-1.471994,53.052289 +-1.558776,53.139881 +-1.376502,53.233901 +-1.299493,53.332289 +-1.773105,53.274569 +-1.824674,53.20519 +-1.484961,52.901748 +-1.300165,52.92299 +-1.596719,53.155513 +-1.476767,52.921633 +-1.988227,53.355017 +-1.467525,52.896655 +-1.416951,53.135811 +-1.482856,52.90991 +-1.470136,52.91043 +-1.439138,52.919223 +-1.477482,53.308706 +-1.331765,53.111686 +-1.634891,52.767209 +-1.432862,52.9363 +-1.468265,52.924867 +-1.425099,52.971986 +-1.496157,52.933636 +-1.262864,53.274998 +-1.318974,53.105294 +-1.937822,53.250804 +-1.41768,52.93895 +-1.446893,52.916454 +-1.418383,53.127161 +-1.423822,53.236719 +-1.375083,53.260375 +-1.478281,53.308449 +-1.336956,53.246182 +-1.369485,52.972756 +-1.449586,52.915172 +-1.37223,53.082314 +-1.349451,53.091028 +-1.541859,53.286912 +-1.383377,53.298666 +-1.40654,53.048394 +-1.475181,52.901525 +-1.202508,53.20463 +-1.918984,53.258155 +-1.466931,52.914739 +-1.366335,53.078112 +-1.590689,52.848537 +-1.489239,52.90707 +-1.478127,52.916137 +-1.387474,53.181013 +-1.508158,52.914404 +-1.295328,53.287904 +-1.307043,52.931911 +-1.91535,53.254071 +-1.475026,52.926641 +-1.718055,52.936284 +-1.291316,52.922928 +-1.213182,53.26597 +-1.295057,53.226912 +-1.392448,53.137127 +-1.428808,52.897266 +-1.452827,52.891644 +-1.528858,52.855509 +-1.607811,52.762493 +-1.50249,53.163516 +-1.378841,53.038886 +-1.393281,53.200072 +-1.415264,52.916168 +-1.520542,52.909331 +-1.717922,53.025412 +-1.558597,53.139827 +-1.917295,53.333668 +-1.406379,52.885093 +-1.438701,52.869042 +-1.618304,52.867453 +-1.409432,52.950254 +-1.225899,53.220164 +-1.451873,52.890624 +-1.308717,52.995854 +-1.492585,52.896828 +-1.522627,52.929323 +-1.211901,53.196989 +-1.478866,52.909129 +-1.279276,53.22289 +-1.427051,53.266452 +-1.428778,52.897257 +-1.447861,53.253651 +-1.494847,53.076794 +-1.416212,53.170487 +-1.964684,53.337278 +-1.478915,52.897595 +-2.004306,53.390154 +-1.480377,52.915841 +-1.884241,53.306899 +-1.434601,52.828992 +-1.361183,52.906523 +-1.500458,52.871448 +-1.432084,52.930983 +-1.293444,53.238409 +-1.467488,52.905743 +-1.53069,52.894899 +-1.427371,52.895731 +-1.40733,53.050654 +-1.455843,52.891739 +-1.308572,52.976948 +-1.363739,52.870057 +-1.297171,53.286198 +-1.485203,52.921436 +-1.418416,53.183397 +-1.307449,52.96708 +-1.514094,52.90357 +-1.208995,53.227155 +-1.45812,52.957048 +-1.326207,53.198696 +-1.318015,52.990118 +-1.345363,52.895658 +-1.409715,52.950247 +-1.561271,52.761782 +-1.457954,52.896432 +-1.321569,53.198553 +-1.358679,53.058879 +-1.738782,53.015311 +-1.426567,53.192695 +-1.451784,52.931894 +-1.446607,52.985509 +-1.469587,52.896943 +-1.507157,52.905681 +-1.449278,52.905453 +-1.485526,52.921788 +-1.566896,52.771413 +-1.899848,53.26214 +-1.43239,52.950788 +-1.413576,53.248642 +-1.282209,53.24903 +-1.486702,52.885206 +-1.214235,53.203584 +-1.599034,52.879139 +-1.291367,53.284348 +-1.456095,52.891749 +-1.779727,53.217332 +-1.57986,52.784314 +-1.290902,53.227238 +-1.443771,53.256958 +-1.445,52.90395 +-1.45961,52.955761 +-1.515162,53.197691 +-1.182546,53.270178 +-1.940171,53.243129 +-1.492858,52.896397 +-1.470546,52.920733 +-1.675062,53.383438 +-1.577704,52.784873 +-1.480978,52.889181 +-1.489239,52.907043 +-1.431659,52.997431 +-1.365079,53.067102 +-1.329601,53.148089 +-1.416037,53.183394 +-1.534619,52.769439 +-1.622073,52.878288 +-1.182069,53.270795 +-1.37153,53.080144 +-1.575033,52.785124 +-1.425281,53.237373 +-1.967244,53.288712 +-1.900519,53.263498 +-1.482691,52.915096 +-1.447893,52.937234 +-1.472011,52.917728 +-1.359427,52.911646 +-1.309146,52.977392 +-1.522751,52.90863 +-1.49588,52.920331 +-1.470859,52.918272 +-1.401396,53.088055 +-1.471214,52.920889 +-1.682145,52.864189 +-1.478677,52.917416 +-1.339187,53.236586 +-1.548791,53.245347 +-1.501315,52.908119 +-1.423226,53.230873 +-1.433854,52.985692 +-1.450345,52.881007 +-1.598635,53.166603 +-1.411969,53.222593 +-1.439699,53.2451 +-1.500652,52.884304 +-1.352653,53.316202 +-1.423668,52.937334 +-1.932815,53.318981 +-1.26507,52.892618 +-1.286073,52.885366 +-1.489889,52.921357 +-1.379252,52.930198 +-1.513877,52.92028 +-1.57024,52.865347 +-1.498829,52.887721 +-1.478136,52.917863 +-1.504145,52.820394 +-1.423868,52.89202 +-1.35312,52.974673 +-1.324622,53.175729 +-1.495877,52.882117 +-1.322926,53.197932 +-1.526525,52.970267 +-1.368469,53.012807 +-1.453539,52.934275 +-1.306009,53.227705 +-1.557295,53.081752 +-1.538042,52.76947 +-1.3215,53.197195 +-1.651859,53.19211 +-1.247356,53.276833 +-1.482744,52.929363 +-1.550893,52.770841 +-1.541813,53.019974 +-1.905245,53.262136 +-1.510404,53.025108 +-1.714361,53.128967 +-1.470243,52.921244 +-1.601931,52.879184 +-1.481324,52.888814 +-1.736453,53.013499 +-1.504204,52.906486 +-1.288315,52.924501 +-1.422215,53.238113 +-1.285418,52.889955 +-1.385107,52.861297 +-1.339827,53.200759 +-1.402689,52.912447 +-1.30381,53.291208 +-1.467413,52.920342 +-1.424182,52.901972 +-1.649298,53.190493 +-1.532859,52.904688 +-1.403955,52.88411 +-1.566063,52.782071 +-1.443984,53.237075 +-1.474035,52.89547 +-1.486111,53.306245 +-1.385765,53.22523 +-1.305477,52.966565 +-1.595699,52.844626 +-1.568501,52.773963 +-1.551368,52.87895 +-1.45382,52.893024 +-1.432223,53.193972 +-1.532908,52.89462 +-1.383371,53.262612 +-1.352897,53.013542 +-1.86869,53.224834 +-1.34994,53.312997 +-1.361865,52.947114 +-1.457522,52.916809 +-1.292059,53.229753 +-1.495805,52.892239 +-1.489747,52.885354 +-1.435487,53.111737 +-1.549415,53.14159 +-1.417285,53.227096 +-1.962553,53.335228 +-1.480506,53.103717 +-1.581602,53.005909 +-1.432989,52.915211 +-1.423386,53.240151 +-1.503027,52.889797 +-1.919494,53.322335 +-1.369312,52.911906 +-1.478728,52.895815 +-1.478702,52.917839 +-1.326732,53.138409 +-1.502921,52.943239 +-1.426153,53.237153 +-1.436441,52.888718 +-1.463861,52.912873 +-1.376545,53.093636 +-1.592326,52.767179 +-1.591637,53.087421 +-1.289786,52.89186 +-1.422561,52.916563 +-1.517996,52.919038 +-1.210268,53.226399 +-1.446463,52.997923 +-1.654709,53.062577 +-1.393436,53.092438 +-1.431967,52.890971 +-1.35183,53.242669 +-1.444468,53.203135 +-1.459308,53.124262 +-1.897315,53.268062 +-1.359919,53.184554 +-1.428667,53.22725 +-1.442363,52.903219 +-1.429188,53.260197 +-1.485405,53.021011 +-1.478152,52.927734 +-1.284727,52.931896 +-1.553289,52.764108 +-1.484773,52.902493 +-1.495789,52.892275 +-1.307546,52.967503 +-1.271474,52.899822 +-1.445505,52.933078 +-1.476252,53.075203 +-1.414745,53.195847 +-1.461932,52.965336 +-1.457503,53.03847 +-1.419379,53.182988 +-1.396146,53.083399 +-1.287949,53.208398 +-1.465279,52.845998 +-1.585133,53.010695 +-1.332797,53.000486 +-1.309717,53.091964 +-1.477545,52.915137 +-1.94954,53.419482 +-1.41672,52.935107 +-1.51348,53.063109 +-1.505711,53.161732 +-1.24929,53.176591 +-1.893111,53.264624 +-1.434052,52.951183 +-1.336314,53.0267 +-1.315986,52.972416 +-1.329356,53.249151 +-1.503854,52.916301 +-1.48079,52.918549 +-1.490336,52.93274 +-1.288343,52.888328 +-1.248686,53.176057 +-1.460214,52.969355 +-1.424312,53.237009 +-1.444211,53.250785 +-1.329391,52.957758 +-1.422894,53.251133 +-1.274938,52.894512 +-1.265358,53.168808 +-1.305152,52.984057 +-1.490023,52.90613 +-1.214108,53.20237 +-1.431768,52.93233 +-1.450768,53.246716 +-1.569228,53.096215 +-1.301306,52.898302 +-1.461541,52.940451 +-1.432926,52.89841 +-1.485382,52.921374 +-1.386539,53.097598 +-1.351471,53.013237 +-1.971865,53.471506 +-1.415095,52.915439 +-1.47398,52.897529 +-1.724054,53.008401 +-1.325537,53.095372 +-1.390457,53.247124 +-1.473661,52.916495 +-1.543963,53.142603 +-1.914822,53.255752 +-1.478211,52.916623 +-1.657626,53.150085 +-1.810156,53.190633 +-1.481905,52.89866 +-1.571038,52.781289 +-1.463502,52.93593 +-1.530405,52.86214 +-1.289959,52.914011 +-1.472587,52.918054 +-1.750518,52.978112 +-1.915183,53.323275 +-1.480365,52.898177 +-1.339853,53.100558 +-1.746918,53.064112 +-1.318266,53.276496 +-1.466668,52.882861 +-1.390135,53.089365 +-1.316044,53.109188 +-1.446494,53.002543 +-1.477942,52.906814 +-1.4563,52.895624 +-1.467718,52.91245 +-1.53724,52.89959 +-1.480913,53.311652 +-1.376445,52.913283 +-1.427069,53.242613 +-1.294177,52.909785 +-1.893558,53.2716 +-1.624484,53.245295 +-1.289007,52.92313 +-1.570638,53.287487 +-1.441515,52.925275 +-1.441577,52.949367 +-1.629839,53.025351 +-1.51751,52.962778 +-1.375211,53.0785 +-1.534631,52.769663 +-1.312717,52.95974 +-1.224466,53.203255 +-1.808573,53.344581 +-1.451978,52.902365 +-1.915574,53.323213 +-1.453318,52.891547 +-1.331068,53.13927 +-1.388025,53.182274 +-1.218629,53.279723 +-1.46119,53.235428 +-1.439789,53.001299 +-1.25819,52.901223 +-1.521678,52.797965 +-1.445867,52.880249 +-1.463143,53.015385 +-1.949596,53.422691 +-1.570783,52.897603 +-1.404351,53.170338 +-1.586446,53.245735 +-1.467842,52.955699 +-1.530235,52.886141 +-1.562297,52.848688 +-1.424089,53.236936 +-1.810777,53.195857 +-1.316429,52.959375 +-1.4275,52.901773 +-1.634876,52.767236 +-1.396347,53.087203 +-1.024928,53.089765 +-1.009838,53.203913 +-1.238668,53.059781 +-0.816593,53.176873 +-0.920949,53.064354 +-0.814968,53.044063 +-1.090207,52.982913 +-1.141303,52.946507 +-1.198643,52.984466 +-1.231021,52.976328 +-1.112072,53.170164 +-0.816824,53.372707 +-1.213046,52.925447 +-1.128984,52.930003 +-1.131647,52.875725 +-0.80738,53.07848 +-1.191577,53.008734 +-1.229599,53.05965 +-1.049315,53.362209 +-1.14032,52.946536 +-0.813755,53.063235 +-1.047043,53.180233 +-1.131097,53.362697 +-0.809607,53.074062 +-1.163874,53.149576 +-1.173381,52.829744 +-1.16612,53.28904 +-1.170374,52.929876 +-1.025057,53.41707 +-1.190051,53.168104 +-1.088671,52.967412 +-1.147391,52.991876 +-1.23307,53.123811 +-1.198576,53.138497 +-1.209222,52.831535 +-1.157764,52.970205 +-1.238374,53.167829 +-1.085636,53.049121 +-1.146416,52.945349 +-1.177586,52.963799 +-1.142629,52.951722 +-1.169755,52.990974 +-1.117675,53.001836 +-1.124857,53.291719 +-1.142631,52.9561 +-1.23263,53.165266 +-1.150884,52.961858 +-0.804765,53.081807 +-1.15617,52.968737 +-1.177208,52.963293 +-1.153913,52.918784 +-1.139775,52.953787 +-1.123804,52.959657 +-1.193158,53.008646 +-1.191503,53.135411 +-1.281301,53.126009 +-0.781341,53.096582 +-1.209842,52.922513 +-1.092341,52.976304 +-1.194442,53.14691 +-1.212871,53.106357 +-1.207449,52.818047 +-1.234969,53.15658 +-1.274048,52.923723 +-1.120947,52.922851 +-0.890053,52.942521 +-1.194372,53.149858 +-1.088715,53.078531 +-1.295753,53.015177 +-1.059238,53.052924 +-1.139786,52.962947 +-1.140276,52.946518 +-1.131161,52.871029 +-1.1402,52.954087 +-1.270221,53.062783 +-1.301135,53.111043 +-1.187675,53.160087 +-1.142738,53.125937 +-0.789564,53.056887 +-0.88064,53.029264 +-1.272341,52.957225 +-0.80295,53.065976 +-1.119234,52.901713 +-1.15314,52.944723 +-1.189906,52.904445 +-1.209148,53.032414 +-0.970159,53.448565 +-1.151169,52.891796 +-1.175477,52.971336 +-0.874279,53.293205 +-0.81893,53.071557 +-1.247293,53.001522 +-1.072144,53.35517 +-0.960732,52.965185 +-0.878161,52.964443 +-1.120908,53.329885 +-1.091387,52.867594 +-1.118116,53.391699 +-1.309228,53.006779 +-1.170663,52.918651 +-1.159363,52.98681 +-1.233895,52.978037 +-0.823298,53.294286 +-1.1848,53.195764 +-1.206433,53.139637 +-1.232477,53.123529 +-1.163822,52.968809 +-1.056649,53.023212 +-1.137321,53.302255 +-0.814874,53.083392 +-1.115147,53.296951 +-1.244161,53.070792 +-0.975783,53.317905 +-1.044345,53.416462 +-1.235028,53.12884 +-1.257578,53.131553 +-1.243919,53.097362 +-1.150484,52.96102 +-0.805314,53.088393 +-1.14936,52.988726 +-1.120117,52.985052 +-1.181502,52.940121 +-0.964309,53.284627 +-1.216319,53.137752 +-0.875953,53.032339 +-1.280819,53.153989 +-1.210232,53.031827 +-1.188801,52.948468 +-1.030997,53.315831 +-1.226184,52.937804 +-1.159807,52.967774 +-1.174625,52.951193 +-1.198825,53.006024 +-1.185334,52.990389 +-1.196194,53.032147 +-1.220821,52.914127 +-1.193391,52.982533 +-1.153709,53.32116 +-1.22282,53.025851 +-1.185921,53.011491 +-1.266876,53.120923 +-1.145735,52.982156 +-1.152809,52.971554 +-1.183765,52.939246 +-1.030352,53.344294 +-0.895988,53.232065 +-1.140377,52.951166 +-1.233252,52.989998 +-1.258375,52.858973 +-1.272346,53.121747 +-1.151778,52.951931 +-1.16804,52.946877 +-1.257625,52.997712 +-1.288172,53.054658 +-1.218743,52.929584 +-1.213998,53.005918 +-1.163463,52.966586 +-1.178818,53.141419 +-1.186679,53.012396 +-1.131413,52.956585 +-0.942092,53.077911 +-1.105084,52.95131 +-1.124559,53.309965 +-1.226065,52.937812 +-1.018822,53.197299 +-0.958724,52.944644 +-1.185058,52.894991 +-1.238309,53.14612 +-1.166721,52.967472 +-1.209883,52.970895 +-0.924525,53.255491 +-1.254304,53.106579 +-1.110415,53.093995 +-1.122506,52.969311 +-1.200537,52.997243 +-1.169078,52.991338 +-1.100196,53.006829 +-1.119484,52.901849 +-1.21707,53.136723 +-1.26428,52.917316 +-1.115663,53.397604 +-0.947558,52.88471 +-1.204691,52.916294 +-1.245903,52.955568 +-1.175724,52.91607 +-1.270629,53.142897 +-1.152405,52.951882 +-1.162931,52.955552 +-1.127955,52.925698 +-1.068984,52.961299 +-1.167749,52.969798 +-1.264767,52.920205 +-1.156597,52.987357 +-1.19287,53.140661 +-1.098585,52.921002 +-1.27435,53.139423 +-1.212195,53.005115 +-0.890755,53.226452 +-1.157222,53.137286 +-1.245669,52.998105 +-1.032809,52.852353 +-1.126264,52.938766 +-1.131941,52.945046 +-1.157885,52.955562 +-1.185759,53.137997 +-1.173578,52.989724 +-1.139733,53.319649 +-1.176063,52.957766 +-1.091989,52.968956 +-1.276826,53.088065 +-1.067015,53.370582 +-1.183852,53.14397 +-1.203053,53.136496 +-1.147279,52.980144 +-1.177493,52.963996 +-1.154023,52.971922 +-1.154839,52.968242 +-1.130679,53.303475 +-1.169709,52.946763 +-1.131074,53.000936 +-1.169487,52.962215 +-1.160096,52.998178 +-1.157565,52.981206 +-1.198233,52.971186 +-1.190108,53.012356 +-1.140323,52.992167 +-1.134332,52.992285 +-1.074254,53.417264 +-1.099484,53.015273 +-1.151113,53.32791 +-1.172606,52.989942 +-1.244632,53.139391 +-0.788259,53.09543 +-1.07119,53.392817 +-1.19052,52.945684 +-1.142801,52.955813 +-1.12099,52.999289 +-1.140022,53.307489 +-0.966963,53.371691 +-1.06787,53.094712 +-1.185621,52.972754 +-1.126809,52.958286 +-1.176794,53.17453 +-1.049511,52.921924 +-1.194885,53.143992 +-1.151734,52.947355 +-1.18334,52.95867 +-0.947174,52.950826 +-1.208717,53.147123 +-1.148145,52.945208 +-0.980825,53.392296 +-0.95187,53.066842 +-1.228609,52.97047 +-1.158003,53.142424 +-1.138321,52.951259 +-1.173786,53.218978 +-1.182129,52.955785 +-1.143955,52.907116 +-1.102762,53.302306 +-0.873444,53.211395 +-1.171941,52.946788 +-1.122165,52.983962 +-0.88407,53.293423 +-1.197607,52.984108 +-1.190309,53.122593 +-1.151103,52.957536 +-1.180006,52.939733 +-1.092076,53.300985 +-1.036055,53.240525 +-1.18623,52.955417 +-1.010739,53.203804 +-0.783721,53.094809 +-1.202993,52.932617 +-0.981484,52.94885 +-1.127821,53.321495 +-1.201473,53.143479 +-1.164346,52.98948 +-1.224584,52.989861 +-1.182188,52.955839 +-1.240468,52.985396 +-1.135628,52.96245 +-1.173369,53.010029 +-1.132858,52.933456 +-1.115647,52.964685 +-1.273073,53.145079 +-1.218489,52.972624 +-0.788369,53.093103 +-1.199165,53.16226 +-0.942851,53.319577 +-1.20736,53.029049 +-1.223334,52.966489 +-0.832404,53.440026 +-1.172369,52.94697 +-1.151849,53.128474 +-1.116629,52.901118 +-1.047178,53.151199 +-1.128284,52.96485 +-1.146209,53.12651 +-1.193369,53.005321 +-1.158173,53.142902 +-0.815396,53.077958 +-1.294466,53.014576 +-1.14924,52.948569 +-1.189714,53.000748 +-1.180748,52.965088 +-1.161082,52.986517 +-1.164225,52.930148 +-1.166844,52.957225 +-0.980387,53.355258 +-1.14181,52.90658 +-1.158003,53.142451 +-1.282359,53.113592 +-1.168524,52.929396 +-1.038857,52.946928 +-1.090275,53.096611 +-1.18106,52.985622 +-1.181762,52.984692 +-0.89052,53.129967 +-1.183958,52.947203 +-1.211562,53.00467 +-0.806283,53.079279 +-1.164911,52.96639 +-1.292604,53.013576 +-1.191796,53.047273 +-1.132469,53.303254 +-1.16385,53.194684 +-1.153742,52.955829 +-1.171162,52.984394 +-1.142859,52.944604 +-1.104696,52.960009 +-1.116981,53.098592 +-1.143571,52.967308 +-1.170151,53.18697 +-1.152346,52.972378 +-0.946958,53.318013 +-1.28841,53.054695 +-1.267263,53.112215 +-1.079999,52.93474 +-0.783851,53.055229 +-1.092337,53.248293 +-1.190718,52.950234 +-1.127212,53.313805 +-1.294126,53.069193 +-1.136544,52.975509 +-1.165785,52.922482 +-0.866968,53.365328 +-1.238256,53.160934 +-0.954682,52.951198 +-1.209728,52.929578 +-1.037839,52.820965 +-1.130396,52.938275 +-1.173792,52.992548 +-1.151756,53.207569 +-1.173566,53.004394 +-1.280626,52.998024 +-1.00291,53.204395 +-1.117104,53.122523 +-0.797452,53.076358 +-1.205561,52.867064 +-0.736971,53.139908 +-1.176776,52.938227 +-1.084437,53.380955 +-1.148136,52.955483 +-1.138928,52.931972 +-0.930107,53.294932 +-1.065052,52.965502 +-1.209138,53.147 +-0.819341,53.063632 +-0.97228,52.9761 +-1.21615,52.980088 +-1.272283,52.919874 +-1.172469,52.933936 +-1.25027,52.829419 +-1.15842,52.970955 +-1.206256,53.148401 +-1.124489,53.309731 +-1.098794,53.098438 +-1.240826,53.170434 +-1.002499,53.207915 +-1.143027,53.310351 +-1.274367,52.92955 +-0.96611,52.97192 +-1.175326,52.953463 +-0.985984,53.280193 +-1.170363,52.965448 +-1.238684,53.120674 +-1.137657,53.218471 +-1.201452,52.988827 +-1.149271,52.988689 +-1.180953,52.941609 +-1.169035,52.953977 +-1.185792,52.972369 +-1.036149,53.125509 +-1.296902,53.111404 +-1.086024,52.980642 +-0.849007,53.444008 +-1.173519,53.010013 +-1.140198,52.945205 +-1.180305,52.995578 +-1.159469,52.960607 +-1.202372,52.932397 +-1.166254,52.912812 +-1.233581,53.07574 +-1.165964,52.985185 +-1.253852,53.14131 +-1.210214,53.003385 +-1.059529,53.421104 +-1.150062,52.949132 +-0.96071,52.98222 +-1.14552,52.955312 +-1.173615,53.13598 +-1.029699,53.310184 +-1.111439,53.000728 +-1.133588,52.975137 +-1.045264,53.179491 +-1.169693,52.99109 +-1.14133,52.954931 +-1.155085,53.204267 +-1.146474,52.99907 +-1.267711,52.961691 +-1.167026,52.958611 +-1.190872,52.897287 +-1.142159,52.844473 +-1.122558,53.294822 +-0.816627,53.083679 +-1.015192,53.384252 +-1.194211,52.964057 +-0.77352,53.04492 +-0.976686,53.339127 +-1.143706,53.211809 +-1.137191,52.932526 +-1.268712,52.960601 +-1.238761,52.905334 +-1.193149,53.146506 +-1.237974,52.9595 +-0.782236,53.096115 +-1.204506,52.926379 +-1.189935,53.171887 +-1.140248,52.95095 +-1.07766,53.421875 +-1.269633,53.088713 +-1.151841,52.963178 +-1.153012,53.206149 +-1.246547,53.129911 +-1.045652,52.983067 +-1.255204,52.835122 +-1.122787,53.104694 +-0.815309,53.070253 +-1.107149,53.302753 +-1.197238,52.996808 +-1.162374,52.962848 +-0.948839,53.325167 +-1.255107,52.996888 +-1.14317,53.001923 +-1.282769,53.143717 +-1.215053,53.04226 +-1.122744,52.953905 +-1.210216,52.927289 +-1.238611,53.167957 +-1.17896,52.964357 +-0.938763,53.317977 +-1.193456,52.955035 +-1.122181,52.983917 +-1.108147,52.931197 +-0.991786,53.28284 +-1.247589,53.130996 +-1.184675,52.969242 +-1.255885,53.076421 +-0.938648,53.326821 +-1.157251,52.979766 +-1.131337,52.938075 +-1.148207,52.945074 +-1.141502,52.954528 +-0.90201,53.091419 +-0.981545,53.205643 +-0.998037,53.204677 +-0.822442,53.382668 +-1.189911,53.178737 +-1.124513,52.926725 +-1.167958,52.965872 +-1.265216,53.121883 +-1.19255,52.978932 +-1.046837,53.15579 +-1.177232,52.994199 +-0.939042,53.320631 +-1.037801,53.142566 +-1.194675,53.004 +-1.077118,52.958962 +-1.091123,52.966208 +-1.112182,53.322 +-1.168135,52.972965 +-1.088635,53.337823 +-1.186911,52.942109 +-1.088161,52.966869 +-1.178856,52.896701 +-1.131857,53.01466 +-1.079285,52.973983 +-0.984698,52.912623 +-1.174581,52.907369 +-1.139782,52.921883 +-1.196836,52.999187 +-1.180576,52.995409 +-0.977165,52.950243 +-0.800331,53.073744 +-1.064421,53.112583 +-1.204776,53.039027 +-1.151604,52.913644 +-1.241015,53.068048 +-1.249873,53.067601 +-0.790131,53.091485 +-1.180811,53.003492 +-1.131883,53.325506 +-1.177041,52.955669 +-1.152985,52.925951 +-1.06799,52.936912 +-1.191418,53.165434 +-1.181536,52.984826 +-1.201457,53.026564 +-1.20489,52.984166 +-1.177064,52.962267 +-1.121493,53.304315 +-0.991485,52.971257 +-1.161781,52.857882 +-0.895796,53.238374 +-1.072587,53.021809 +-1.308391,53.01722 +-1.138418,52.953148 +-1.311995,53.017393 +-1.112208,53.006847 +-1.293489,53.094458 +-1.175522,52.971318 +-1.198187,53.228386 +-1.204395,52.970562 +-1.155443,52.957135 +-1.116528,53.302733 +-1.096962,53.19015 +-1.117895,52.911295 +-1.175149,52.965095 +-1.154471,52.986362 +-1.258421,53.126857 +-1.186868,53.118075 +-1.084139,52.973993 +-1.180236,52.899219 +-1.30873,53.00718 +-1.188423,53.013963 +-1.164983,52.958021 +-0.987351,52.986324 +-1.270363,53.129421 +-1.039606,52.947401 +-1.265329,53.113497 +-1.217143,53.150756 +-1.178848,53.139028 +-1.094173,53.386189 +-1.159604,52.986695 +-1.260281,53.116909 +-1.035926,53.188225 +-1.191334,52.956279 +-0.935641,53.32879 +-1.109559,53.043585 +-1.109579,53.234948 +-1.302752,53.017465 +-1.122746,53.047944 +-0.9481,53.325278 +-1.144306,52.930087 +-1.106524,53.003487 +-0.940481,53.32254 +-1.278188,52.947588 +-1.192599,52.968289 +-1.210962,52.929631 +-1.186018,52.973062 +-1.133163,52.948696 +-1.121178,52.893088 +-1.17433,52.833706 +-1.303583,53.017668 +-1.140168,52.945223 +-1.050221,52.930946 +-1.250047,53.132315 +-0.799232,53.101996 +-0.837494,53.416812 +-0.947398,53.044562 +-1.23806,52.957172 +-1.123897,52.951361 +-1.161455,52.955713 +-0.798409,53.06505 +-0.777771,53.046519 +-1.304669,53.129968 +-1.173972,52.96283 +-1.272556,52.940884 +-1.281746,52.994256 +-1.170228,52.991166 +-1.249722,52.936139 +-1.176391,52.950657 +-1.19087,52.967612 +-1.150198,53.209113 +-1.214597,52.963878 +-0.974584,52.97754 +-1.146242,53.004067 +-1.188301,52.967217 +-1.181955,52.959505 +-1.267591,52.93617 +-1.189818,52.944205 +-1.23089,53.135411 +-1.198936,52.961356 +-1.134246,52.998847 +-1.132403,53.000092 +-1.212777,53.030469 +-0.798743,53.095393 +-0.783483,53.094779 +-1.187613,52.97452 +-1.233192,53.139615 +-1.144615,52.983829 +-1.263191,52.921903 +-1.179563,53.139204 +-1.18897,53.166739 +-0.835924,53.112735 +-1.200413,53.037021 +-1.171397,52.966678 +-0.809886,53.057434 +-1.165444,52.970394 +-1.169386,52.901436 +-1.12369,52.95349 +-1.30791,53.020255 +-1.002477,53.008027 +-1.151162,52.962876 +-0.990267,53.015232 +-1.167434,53.119361 +-0.90436,53.346521 +-1.243027,53.105645 +-1.140196,53.092308 +-1.197895,52.992704 +-1.183749,52.982027 +-1.15362,52.968162 +-0.843144,53.437021 +-1.170512,52.961592 +-1.22229,53.099255 +-1.220082,53.130496 +-1.222365,52.99061 +-1.148803,53.200923 +-1.167729,53.004911 +-1.162116,52.918375 +-1.190743,52.947295 +-1.149867,52.959846 +-1.135127,53.15818 +-1.221876,52.991335 +-0.796524,53.258781 +-0.973653,52.951471 +-1.174581,52.907351 +-0.805173,53.067617 +-1.194603,53.047903 +-0.811848,53.069113 +-1.118594,52.985976 +-1.13715,52.961535 +-1.080338,53.035883 +-1.184932,52.989586 +-1.133247,52.948984 +-0.94586,53.104517 +-1.17485,52.951096 +-0.941693,53.085054 +-1.189263,53.120995 +-1.194737,52.987055 +-1.124641,52.93736 +-1.110747,52.990889 +-1.156411,52.977018 +-1.133684,52.95243 +-0.787119,53.093468 +-1.290203,53.05822 +-1.184162,52.967979 +-0.953172,53.321709 +-1.101998,53.178377 +-0.917847,52.94089 +-1.074286,53.417156 +-0.995089,52.93016 +-1.154023,52.971904 +-1.241195,52.866443 +-1.175996,53.142811 +-1.153697,52.939036 +-1.170142,52.974679 +-1.047905,53.374926 +-1.185289,52.984887 +-1.146005,52.962408 +-1.291717,52.985829 +-0.953786,53.326685 +-1.176002,52.968013 +-1.195226,52.969538 +-1.08988,52.871493 +-1.159691,52.986795 +-1.173249,52.964821 +-1.162496,52.994249 +-0.695901,53.224839 +-1.071272,52.971925 +-1.221438,53.135691 +-0.983998,52.912662 +-1.106864,53.298463 +-1.275544,53.141291 +-1.028349,52.992141 +-1.160436,52.941439 +-1.13699,52.943375 +-1.149963,52.960243 +-1.178999,52.908838 +-0.95267,53.269244 +-1.151094,52.95572 +-1.249437,53.094404 +-1.160153,53.148714 +-1.267763,53.113557 +-1.279697,52.940046 +-1.179524,52.987257 +-1.14947,52.961102 +-1.152654,52.955893 +-1.173825,52.9807 +-1.216977,52.973872 +-1.173382,52.951598 +-1.125286,52.979904 +-1.115555,52.949519 +-1.122963,53.307266 +-1.09718,52.994212 +-1.168111,52.927658 +-1.179235,52.982859 +-1.171099,52.95578 +-1.193084,52.935067 +-0.875965,53.089783 +-1.181459,52.911633 +-1.05584,53.418504 +-1.170397,52.910756 +-1.195847,53.036379 +-1.120543,52.938364 +-1.14846,52.960232 +-1.147342,52.94745 +-1.119452,52.901238 +-1.142822,53.310826 +-1.163234,52.98922 +-1.216814,52.952405 +-1.207941,53.007091 +-1.121139,53.317176 +-1.120698,52.916763 +-1.141375,52.954913 +-1.179318,52.964332 +-1.159874,52.9881 +-1.169634,53.080372 +-1.208202,52.978974 +-1.023696,53.233152 +-1.09948,53.177117 +-1.198605,52.971233 +-1.109378,52.916175 +-1.22315,52.990876 +-1.12274,53.304235 +-1.134076,52.986485 +-1.210997,53.0226 +-1.140382,52.940415 +-1.226811,52.937691 +-1.157229,53.133825 +-1.264385,52.920796 +-1.142753,52.944666 +-0.964818,53.06522 +-1.102806,53.302325 +-1.143701,52.984829 +-1.227602,53.017756 +-0.780595,53.088628 +-0.778379,53.337369 +-1.190806,52.95028 +-1.145036,52.957223 +-1.153001,52.944964 +-1.206712,53.034303 +-1.252586,53.080715 +-1.181575,52.940202 +-1.233998,53.132132 +-1.133152,53.129976 +-0.783581,53.094996 +-1.154887,52.964287 +-1.145811,52.982111 +-1.193381,53.005483 +-1.236185,53.059279 +-1.130925,52.96753 +-1.105244,52.970235 +-1.276276,52.929292 +-1.184532,52.967326 +-1.128162,53.162372 +-1.231559,53.092016 +-1.203965,52.986677 +-1.188989,53.024322 +-0.927083,53.262292 +-1.189754,52.944429 +-1.055334,53.381547 +-1.219919,53.026336 +-1.267144,53.111306 +-1.143757,52.956396 +-1.155434,52.954528 +-1.27154,52.942873 +-1.147339,52.955136 +-1.266903,53.13518 +-0.938378,52.984872 +-1.154519,52.972456 +-1.192684,52.978906 +-1.195587,53.145668 +-1.167763,52.964414 +-1.14585,52.94761 +-1.182965,52.909027 +-0.995965,53.319541 +-1.130365,53.028834 +-0.783567,53.094439 +-1.138336,52.994697 +-1.007732,53.012206 +-1.133309,52.937667 +-1.142476,53.042173 +-1.19154,52.955606 +-1.177457,53.172737 +-1.041984,52.911813 +-1.264845,53.109476 +-1.246024,52.954571 +-1.027423,53.296098 +-1.222015,53.129421 +-1.131737,53.015432 +-1.156108,52.975748 +-1.091092,52.87179 +-1.108638,52.956569 +-1.175363,52.979704 +-1.27754,53.087377 +-0.894554,53.406199 +-1.206595,52.98051 +-1.282694,53.143753 +-1.142173,52.957445 +-1.164673,52.966343 +-1.098966,52.966394 +-0.932856,53.101885 +-1.196441,53.13913 +-1.116941,52.95744 +-1.23687,52.921557 +-1.174502,52.970951 +-1.108526,53.317334 +-1.193773,52.954822 +-1.212413,53.043061 +-1.206355,53.135727 +-1.132303,52.951503 +-1.115628,53.162397 +-1.178278,52.964226 +-1.122898,53.120525 +-1.186825,52.967306 +-0.807527,53.187075 +-1.232216,52.91394 +-1.066243,53.42237 +-1.168816,53.118948 +-1.018604,52.998111 +-1.255759,53.081103 +-1.231143,52.955213 +-0.941736,53.0851 +-1.203098,53.14295 +-1.173271,52.901193 +-1.109642,52.957682 +-0.998234,53.204589 +-1.225951,53.143236 +-1.258454,52.998041 +-1.261378,52.998716 +-1.140351,53.035056 +-1.138018,52.955275 +-1.211987,52.939527 +-1.215263,52.932033 +-1.126854,52.958259 +-1.164189,52.921976 +-1.149933,52.97619 +-1.240882,53.145175 +-1.268126,52.921214 +-1.278698,52.947357 +-1.216652,52.963002 +-1.0492,53.035854 +-1.209882,52.983237 +-1.268735,53.107361 +-0.926205,53.157802 +-0.965779,53.4125 +-1.1515,52.973756 +-1.03471,52.907933 +-1.216652,52.939135 +-0.900375,53.233931 +-1.24857,52.906413 +-1.229539,53.165013 +-1.248596,53.131551 +-1.177738,52.995812 +-1.187891,53.014507 +-1.200564,53.036968 +-1.155699,52.987567 +-1.170344,52.975795 +-1.167662,52.977439 +-1.215991,53.137696 +-1.197395,53.132853 +-1.064482,53.113194 +-1.198377,52.984356 +-1.131859,52.943239 +-1.170784,52.961352 +-1.066981,53.399643 +-1.207613,52.955013 +-1.150778,52.952841 +-1.160495,52.961468 +-1.131059,52.968278 +-1.223851,52.990836 +-1.267798,53.114178 +-0.93538,53.329021 +-1.08538,53.409242 +-1.154879,53.235287 +-1.167524,52.959019 +-1.150587,52.952732 +-1.055596,52.932103 +-1.080087,52.962869 +-1.175212,53.091585 +-1.203791,52.994523 +-1.020132,53.201553 +-1.242546,53.079483 +-1.206627,52.98042 +-1.252859,53.131344 +-1.129606,52.965786 +-1.141465,52.954878 +-1.219082,52.993429 +-1.127412,52.95491 +-0.915542,53.246187 +-1.210719,53.037818 +-1.279907,53.085989 +-1.212668,53.042999 +-0.80627,53.079224 +-1.144625,52.907858 +-0.998719,53.204324 +-1.03304,52.943492 +-1.131181,53.32534 +-1.160189,53.126142 +-1.309579,53.052941 +-1.190886,52.963531 +-1.14917,52.997642 +-1.239372,53.131645 +-1.137761,53.234212 +-1.119996,52.99102 +-1.169813,52.998822 +-1.167543,52.977393 +-1.199609,52.984616 +-1.212101,52.83239 +-1.188286,53.004613 +-1.159398,52.987314 +-1.155464,52.974413 +-0.961911,52.979345 +-0.795814,53.263781 +-1.187415,53.118376 +-1.164307,52.923568 +-1.250335,52.935945 +-1.12833,53.30975 +-1.26143,52.913478 +-0.808785,53.073559 +-0.851333,52.958191 +-1.048466,53.180883 +-1.199583,53.047236 +-1.279337,53.003815 +-1.134406,52.936389 +-1.197416,52.996854 +-1.254586,52.832206 +-1.088251,52.954122 +-1.123289,53.300904 +-1.127983,52.925806 +-1.186603,52.907713 +-1.249816,52.935897 +-1.252291,53.005509 +-1.278528,53.00319 +-0.903136,53.091762 +-1.153107,52.964679 +-1.244686,53.113269 +-1.150582,52.961344 +-0.867118,53.365347 +-1.291498,53.070211 +-0.809489,53.07887 +-1.148012,52.945171 +-1.022128,53.360407 +-1.1301,52.973772 +-1.171878,53.131456 +-1.185024,52.938788 +-1.197633,52.970669 +-1.175317,52.97974 +-0.803823,53.082391 +-1.226624,52.973216 +-1.148932,52.964245 +-1.214811,53.095799 +-0.823819,53.082222 +-1.142609,52.956468 +-1.167705,52.965852 +-1.07308,52.966779 +-0.805885,53.057502 +-0.814163,53.127155 +-1.208267,53.00312 +-0.805021,53.141554 +-1.276756,53.139438 +-1.158311,53.15422 +-0.991277,53.01472 +-1.204023,52.978659 +-1.315942,53.070399 +-1.281874,53.096078 +-1.159486,52.987405 +-1.181954,53.048644 +-0.948287,53.299373 +-1.129397,52.933898 +-0.954085,53.19647 +-0.996984,53.350373 +-1.211529,53.031018 +-1.205811,52.929858 +-1.282764,53.029033 +-1.197176,52.996915 +-0.97943,52.970363 +-0.898394,53.347805 +-1.193327,52.994759 +-0.953271,53.106309 +-1.118686,53.391766 +-1.195109,53.00634 +-0.835244,53.071007 +-1.199159,53.162583 +-1.152467,52.946381 +-1.205095,53.038697 +-1.174532,52.970951 +-1.117543,52.963719 +-1.151426,53.204547 +-1.203773,53.140375 +-1.021154,53.408805 +-1.168291,53.143072 +-1.0031,53.008176 +-1.284406,53.057772 +-0.866969,53.365301 +-1.153462,52.970884 +-1.144929,52.907537 +-0.992316,53.186255 +-1.197863,52.971084 +-1.059714,53.416818 +-1.169031,52.919224 +-1.17345,52.935516 +-1.267085,52.92208 +-1.278522,52.91948 +-1.173364,52.913509 +-1.179567,53.062795 +-1.193479,52.975432 +-1.078293,53.226 +-1.120272,52.904067 +-1.156487,52.976893 +-1.12603,52.931168 +-0.903366,53.384077 +-1.179168,52.964394 +-1.163268,52.930411 +-0.994298,52.996362 +-1.240678,52.985317 +-1.159933,52.942802 +-1.254196,53.130939 +-1.116501,52.911069 +-1.180748,52.965079 +-1.075416,53.351879 +-1.169978,52.991029 +-1.127839,52.992921 +-1.150277,53.211937 +-0.799462,53.086213 +-1.076422,52.985323 +-1.198318,52.984347 +-1.137073,53.303422 +-1.169672,53.010849 +-1.187913,53.01813 +-0.784084,53.091468 +-1.149987,53.314338 +-1.277349,52.928301 +-1.1442,52.943022 +-1.272034,53.094194 +-1.171806,52.952306 +-1.24576,52.903842 +-1.165748,52.922868 +-1.213952,52.924716 +-1.155509,52.954484 +-1.050279,52.930991 +-1.204122,52.926233 +-1.214684,53.146227 +-0.807276,53.168635 +-0.799109,53.075817 +-1.208165,52.961463 +-1.11397,52.94984 +-1.205399,53.149501 +-1.167984,52.92959 +-1.052233,53.132793 +-1.190842,52.961912 +-1.24498,52.971815 +-1.122127,53.10699 +-1.266397,53.063901 +-0.828628,53.435558 +-1.156168,52.968818 +-0.794298,53.086673 +-1.23538,52.989274 +-1.216788,53.007393 +-1.171635,52.965115 +-1.110517,53.115111 +-1.131171,52.956772 +-1.159495,52.955438 +-1.140023,52.990043 +-0.913518,53.389851 +-1.242178,53.129344 +-1.127682,53.160985 +-1.153997,52.975536 +-1.248438,53.031697 +-1.265914,52.939449 +-0.866953,53.365345 +-0.783178,53.076474 +-0.983877,53.185572 +-1.121644,52.961161 +-1.151323,52.963048 +-1.16237,52.919114 +-1.076578,52.963327 +-1.177773,53.191409 +-1.268407,53.131126 +-0.796283,53.087215 +-1.19878,53.007659 +-1.119805,53.09855 +-1.118146,53.391699 +-1.166715,53.16041 +-1.137261,52.954443 +-1.16829,52.97498 +-1.271733,52.955307 +-0.804338,53.089669 +-1.1998,53.099151 +-0.807409,53.078508 +-1.19834,52.97106 +-1.231063,53.100615 +-1.153754,52.96738 +-1.144829,52.907284 +-1.157227,52.954955 +-1.286069,53.034752 +-1.138455,52.951296 +-1.006476,52.951318 +-1.198232,52.981739 +-1.145701,52.940831 +-1.171871,53.283309 +-1.148819,52.957852 +-1.14231,52.956547 +-1.236863,52.905871 +-1.206784,53.001933 +-1.169497,52.976472 +-1.119885,52.901115 +-1.10788,53.006392 +-1.152429,53.053391 +-0.916992,53.325251 +-0.850177,53.446977 +-0.968825,53.448284 +-1.074074,52.96275 +-1.258595,53.100277 +-1.120413,53.113387 +-1.171994,53.183765 +-1.111711,52.965689 +-1.128779,53.00616 +-0.740814,53.082083 +-1.120259,52.96338 +-1.196064,52.982956 +-1.166107,52.963782 +-0.804175,53.012536 +-1.131022,52.946361 +-1.136127,52.92245 +-1.173698,52.980313 +-1.138987,52.940252 +-1.181724,53.140342 +-1.056068,53.383045 +-1.214053,52.936367 +-1.09932,53.266908 +-1.142702,52.946518 +-0.819361,53.06561 +-1.148854,53.140112 +-1.254119,53.102569 +-1.21613,53.137418 +-0.781852,53.055235 +-1.151782,53.204711 +-1.176036,52.957604 +-1.168466,52.954153 +-1.157793,52.943425 +-1.205427,53.023085 +-1.169902,52.969328 +-1.090747,53.294296 +-1.17792,53.157135 +-1.041769,53.178528 +-1.06135,52.976953 +-1.142067,52.988404 +-1.19786,53.174521 +-1.227526,53.155462 +-1.240731,53.145308 +-1.159254,52.987043 +-1.181427,53.010292 +-1.173338,52.964848 +-1.152967,53.202328 +-1.198963,52.981654 +-1.091721,52.983859 +-1.192944,52.976148 +-1.151761,52.953585 +-0.759676,53.065758 +-1.240045,53.126562 +-1.238129,53.125884 +-1.217592,52.975288 +-0.837022,53.060417 +-0.804766,53.07262 +-1.322102,53.067773 +-1.098907,52.926983 +-0.812581,53.172077 +-0.942912,53.325007 +-1.104227,52.97047 +-0.767799,53.048888 +-0.95139,53.320336 +-1.146696,52.957558 +-1.180535,52.898367 +-1.28492,53.003255 +-1.194516,53.121381 +-1.322102,53.067773 +-1.238787,53.125861 +-1.188114,52.90722 +-1.121645,52.954517 +-1.044921,53.168656 +-1.194352,52.967725 +-1.130757,52.958863 +-1.062505,53.387725 +-1.164245,53.193644 +-1.038528,52.946997 +-1.165118,53.297356 +-1.000961,52.951659 +-1.135781,52.954738 +-1.283761,53.007518 +-1.209407,52.96842 +-1.106523,53.302568 +-1.19095,52.963333 +-1.269264,53.106132 +-1.229526,53.056189 +-1.149241,52.958377 +-1.062193,53.213559 +-1.142326,52.957239 +-1.031955,52.8507 +-1.121482,53.311408 +-0.785069,53.057534 +-0.806939,53.074997 +-1.171954,53.131402 +-0.88445,53.220622 +-1.16004,52.963434 +-1.253157,53.114123 +-0.961651,53.411511 +-1.079835,53.22745 +-0.806652,53.447305 +-1.172543,52.95188 +-1.29831,53.128591 +-1.120941,52.893041 +-1.24328,53.07164 +-1.209711,52.927268 +-0.788301,53.062556 +-0.990314,53.015143 +-1.252241,53.065296 +-1.13659,52.933573 +-1.170982,52.898031 +-0.864682,53.213712 +-0.84321,53.308081 +-1.231065,52.972157 +-1.180892,52.938516 +-1.027015,53.198436 +-1.151218,52.953195 +-0.984232,52.94971 +-1.170276,52.993351 +-1.070999,53.41127 +-1.190432,52.943984 +-1.155763,52.955223 +-1.149573,52.976358 +-1.167566,52.959154 +-1.180459,53.105446 +-1.152789,52.983995 +-0.801401,53.093793 +-1.159323,53.333424 +-1.202219,53.16859 +-1.087699,52.966883 +-1.250303,53.133045 +-1.196534,53.138996 +-1.194319,52.980688 +-1.190678,52.962702 +-0.796244,53.07898 +-1.086723,52.96657 +-1.157781,52.981621 +-1.123461,53.163372 +-1.181258,52.98459 +-1.173726,52.969472 +-1.207486,52.924484 +-1.156569,53.120966 +-1.136307,52.959731 +-1.231923,53.091721 +-1.13465,53.024802 +-1.143731,52.907205 +-1.220981,53.16182 +-1.157795,53.130908 +-1.227528,53.134526 +-1.252361,53.099762 +-1.188591,53.243126 +-1.248377,53.099494 +-0.808769,53.073586 +-1.036412,53.352002 +-1.020795,53.122489 +-1.261996,53.125801 +-1.150771,52.991199 +-1.167029,52.991755 +-0.804963,53.081666 +-1.185837,53.011221 +-1.148222,52.960221 +-0.962874,53.087128 +-0.934507,53.094897 +-0.79822,53.069686 +-1.22361,53.161999 +-0.817144,53.08336 +-1.149566,53.127523 +-1.077583,52.882483 +-0.932058,53.306905 +-1.111288,53.308671 +-1.19584,52.954907 +-0.774475,53.077535 +-1.17966,52.97221 +-1.145197,52.954338 +-1.137045,53.303323 +-1.200083,53.045226 +-1.151605,52.963095 +-1.102365,52.998548 +-1.236858,52.906203 +-1.150413,52.990469 +-0.944955,52.980238 +-1.06449,52.966028 +-1.154961,52.954345 +-1.139708,53.311927 +-1.20857,53.141297 +-1.264399,52.963819 +-1.246307,53.099157 +-0.994807,53.116807 +-1.116002,52.968445 +-1.281762,53.000458 +-1.040636,53.101175 +-1.072741,53.087639 +-1.138333,53.000854 +-0.983514,53.230012 +-1.174942,52.950971 +-1.155998,52.958452 +-0.917148,53.33034 +-1.196922,53.16388 +-1.136488,52.986539 +-1.131658,53.362458 +-0.97746,53.024167 +-0.932312,53.308777 +-0.987395,52.98637 +-1.160472,52.941871 +-1.153682,52.996227 +-1.111825,53.004444 +-1.138576,53.341313 +-1.148689,52.959919 +-0.770347,53.030099 +-1.064031,53.193789 +-1.188582,53.018989 +-1.161137,52.969833 +-1.117452,53.170456 +-1.217679,53.038079 +-1.136357,52.996822 +-1.231454,52.955269 +-1.146592,52.955283 +-0.986452,53.18616 +-1.158124,52.914122 +-1.153077,53.007343 +-1.083092,52.87421 +-0.761318,53.148947 +-1.167825,52.965844 +-1.192582,53.037121 +-1.205458,53.023022 +-1.011233,53.012918 +-0.978186,52.827856 +-1.027271,53.132187 +-1.123912,53.168391 +-1.197169,52.996511 +-0.879336,53.025503 +-1.137725,52.929581 +-1.322117,53.067773 +-1.094293,53.1783 +-1.161032,53.009071 +-1.1827,53.054151 +-0.866146,53.318172 +-1.074224,53.417246 +-1.152663,52.951596 +-1.250927,52.936147 +-1.22629,52.961897 +-1.131146,52.964709 +-1.299851,53.128492 +-1.110059,53.119216 +-1.186779,52.983262 +-1.15686,52.978433 +-1.206021,52.982582 +-1.127298,52.932481 +-1.126772,52.987448 +-1.235776,52.908533 +-1.146471,52.981082 +-1.170161,52.95581 +-1.079959,52.958373 +-1.00542,53.352601 +-1.194916,53.003858 +-0.961476,53.366151 +-1.15205,52.954783 +-0.780881,53.088577 +-1.185559,53.148576 +-1.256179,53.13034 +-0.836731,53.063992 +-1.154798,52.968044 +-1.072826,53.270355 +-1.121069,53.316906 +-1.201121,52.932487 +-1.135446,52.94242 +-1.154827,53.329177 +-1.158896,53.137253 +-1.017029,53.201725 +-1.143587,52.944645 +-1.196756,53.002701 +-1.155043,53.235315 +-0.809608,53.066978 +-1.287569,52.987162 +-1.322222,53.067756 +-1.147566,52.959533 +-1.128623,52.930225 +-1.155534,52.953199 +-1.200757,52.989361 +-1.068188,52.936689 +-1.085221,52.960149 +-1.180536,53.139903 +-1.213774,53.157593 +-1.160979,52.857903 +-1.142362,52.986258 +-1.220282,53.156602 +-1.277079,53.128212 +-1.169294,53.007259 +-1.256315,53.128516 +-1.269039,53.123804 +-1.113875,53.292465 +-1.072505,52.962334 +-1.026308,52.882757 +-1.120866,52.89305 +-1.220656,52.973825 +-1.081994,52.959989 +-1.170642,52.985901 +-1.136376,52.918146 +-1.172208,53.131386 +-1.258277,53.131791 +-1.192729,52.944513 +-1.166121,52.966155 +-1.074748,52.964688 +-1.255784,52.99646 +-1.334851,53.056896 +-1.040703,53.02899 +-0.997054,53.117823 +-1.17805,52.902413 +-1.179673,52.896779 +-0.869488,53.173916 +-1.22124,52.973658 +-1.263513,53.100883 +-1.246574,53.132635 +-1.21065,53.036675 +-1.139833,52.953868 +-1.163798,52.975425 +-1.184641,53.163923 +-1.174525,52.970502 +-1.156482,53.325206 +-1.13601,53.302552 +-1.198765,53.146786 +-1.250946,52.903173 +-1.120314,53.113872 +-1.215474,53.028923 +-1.160854,52.935194 +-1.120698,52.893255 +-0.989383,53.310946 +-0.95286,53.330794 +-1.243511,53.139375 +-1.19335,53.143766 +-1.193254,53.005887 +-1.234049,52.854657 +-1.20256,53.160673 +-0.797808,53.076433 +-1.100702,52.932228 +-1.102629,52.918192 +-1.176076,52.968032 +-1.148717,52.948646 +-1.167817,52.989522 +-1.109417,52.916427 +-1.170919,52.95586 +-0.835502,53.403238 +-1.118116,53.391699 +-1.159751,52.986795 +-1.24152,53.171804 +-1.192857,53.140526 +-1.200811,53.161444 +-1.156758,52.956111 +-1.20622,52.941646 +-1.210538,53.004412 +-1.007223,53.118772 +-1.169709,52.946745 +-0.760434,53.144865 +-1.198031,53.132444 +-1.207247,53.03846 +-0.938013,53.210792 +-1.175758,53.068486 +-1.233812,52.977659 +-1.198165,52.970888 +-1.195756,53.030067 +-1.127643,53.003347 +-1.161896,53.154434 +-1.164372,52.978117 +-1.119205,53.163026 +-1.267093,52.922512 +-1.236478,52.91003 +-1.232797,52.945866 +-1.264943,53.059883 +-1.121217,52.984449 +-1.075075,53.040733 +-1.259268,53.117586 +-1.123687,53.308574 +-1.180939,52.941582 +-1.248778,53.132235 +-0.802578,53.219136 +-1.23394,52.975475 +-1.255055,53.129695 +-1.16603,52.92216 +-1.244729,52.93751 +-1.141859,52.955276 +-1.177325,52.831507 +-1.19324,53.146435 +-1.15581,52.974982 +-1.24255,53.091133 +-1.174355,52.963004 +-1.191008,52.995282 +-1.249168,52.936342 +-1.114077,53.121493 +-1.106849,52.966795 +-0.815872,53.082359 +-1.086387,52.980411 +-0.977295,52.913134 +-1.228219,52.920432 +-1.218263,53.145073 +-1.153697,52.955838 +-1.225722,53.126865 +-1.240468,53.010899 +-1.171204,52.979091 +-1.288426,52.980317 +-1.191433,53.202847 +-1.154186,52.971977 +-0.870736,53.404142 +-0.963809,53.318287 +-1.202692,52.987055 +-1.235783,52.990086 +-1.234997,53.128039 +-1.144721,52.907481 +-1.079711,52.963028 +-1.273856,52.955679 +-0.81733,53.084729 +-1.02304,52.847634 +-1.178699,52.944318 +-1.250197,53.121143 +-1.105534,52.971333 +-1.180793,53.003635 +-1.308991,53.017888 +-1.125632,52.931722 +-1.303021,53.127486 +-1.039722,52.911911 +-1.145611,52.982425 +-0.885531,53.05991 +-0.834977,53.064299 +-1.138551,52.951683 +-1.18948,53.16748 +-1.175657,52.955641 +-1.200583,52.985099 +-1.282815,53.14369 +-1.140908,52.95295 +-1.181217,53.148878 +-0.938822,53.326463 +-1.160074,52.921705 +-1.171667,52.961106 +-1.064615,53.195142 +-0.973384,52.949626 +-1.238289,53.126101 +-1.135418,52.942339 +-1.181647,52.948203 +-1.220593,53.131182 +-1.193226,53.14318 +-1.163087,52.999125 +-1.138018,52.955275 +-1.122453,52.992531 +-1.143555,52.969654 +-1.220318,53.003389 +-1.162219,52.967764 +-1.24111,52.991244 +-1.171254,52.910294 +-1.147444,52.947567 +-1.194314,53.149777 +-1.139495,52.95365 +-1.140207,52.946248 +-1.151667,52.992608 +-1.148302,52.95615 +-1.19825,53.117469 +-1.17645,53.254243 +-1.300277,53.128009 +-1.171908,53.131456 +-1.165814,52.922563 +-1.197804,53.037821 +-1.159587,52.98754 +-1.242616,53.078872 +-1.263886,53.100903 +-1.228522,53.12744 +-0.817188,53.374247 +-1.106265,53.322099 +-1.137558,52.941015 +-1.19261,53.005262 +-1.262696,53.125967 +-1.195278,52.981989 +-1.17532,52.979587 +-1.270506,52.99994 +-1.120266,52.95279 +-1.148476,52.956394 +-1.178992,52.964249 +-1.269592,53.10084 +-1.14941,53.005887 +-1.200816,53.04266 +-1.002775,53.118555 +-1.182653,52.987234 +-1.150602,52.954988 +-1.14716,52.980152 +-0.857197,53.403052 +-1.269599,53.088965 +-1.269668,53.100813 +-1.151929,52.95489 +-1.143587,52.955208 +-1.173445,52.998272 +-1.063729,53.292109 +-1.211987,53.155549 +-1.152702,52.925976 +-1.214221,53.143734 +-1.253776,53.141409 +-1.148832,52.927612 +-1.207358,53.029183 +-1.128267,52.949442 +-1.145873,52.946441 +-1.158102,53.137382 +-1.179831,52.943525 +-1.140243,52.947408 +-1.147667,52.955156 +-1.238833,53.097869 +-1.275777,53.124753 +-1.134717,52.936454 +-1.087305,53.118397 +-0.720726,53.213665 +-1.163392,53.149761 +-1.136142,52.922432 +-1.158265,52.968195 +-1.061662,53.387098 +-1.270227,52.959909 +-1.217881,53.136477 +-1.146251,52.951424 +-1.150413,52.95932 +-1.253565,52.973937 +-1.293372,53.014048 +-1.289886,53.002107 +-1.110597,53.308684 +-1.123231,52.983529 +-1.245789,53.128818 +-1.103361,53.302374 +-1.192776,52.995546 +-1.208316,53.029774 +-1.206005,53.002152 +-1.129291,53.003656 +-1.306176,53.023328 +-1.130021,53.310751 +-1.176688,52.938182 +-1.148149,52.948768 +-0.807426,53.080063 +-1.206439,52.974414 +-0.863789,53.043497 +-1.149053,53.140635 +-0.810783,53.068734 +-1.145363,52.953441 +-1.080522,53.228265 +-1.238733,52.99086 +-0.816714,53.083797 +-1.16907,52.946705 +-1.098517,53.328576 +-1.147086,52.954424 +-1.173308,52.96483 +-0.80467,53.071774 +-1.193278,52.955016 +-0.793954,53.093088 +-0.776615,53.099474 +-0.952171,53.092563 +-1.316731,53.144052 +-1.125443,52.930031 +-1.03004,52.990474 +-1.054904,53.183442 +-1.137305,53.326885 +-1.189855,52.993998 +-1.203892,52.999549 +-1.125013,53.003724 +-1.157137,52.954972 +-1.205685,52.921299 +-1.196674,53.000687 +-1.150385,52.99721 +-1.259655,52.926061 +-1.140798,53.319674 +-1.141059,52.949823 +-1.225186,52.917841 +-1.130606,53.001275 +-0.807799,53.08493 +-0.77458,53.077518 +-1.219832,53.136049 +-1.142815,52.955831 +-1.280794,52.997765 +-1.208464,53.040418 +-1.197943,52.970815 +-1.156225,52.976585 +-1.196545,53.006808 +-1.190565,52.955213 +-1.168102,52.946716 +-1.184751,53.143105 +-1.271912,52.930497 +-1.215489,53.153774 +-0.937921,53.317403 +-1.25683,53.128151 +-1.177738,53.092267 +-0.835441,53.442375 +-1.20345,52.998477 +-1.160085,53.008714 +-1.174513,52.972704 +-1.204127,52.926736 +-0.792024,53.065488 +-1.002662,53.196365 +-1.109403,53.299749 +-1.201916,53.150241 +-1.119012,52.985925 +-1.097677,53.08686 +-0.769419,53.047529 +-1.191913,52.953155 +-1.182847,52.939788 +-1.228394,52.951554 +-1.217217,52.926805 +-1.190329,52.944721 +-1.121513,53.304091 +-0.802126,53.083839 +-1.15957,53.002993 +-0.878255,53.41509 +-1.068806,53.29321 +-1.139958,52.885971 +-0.946881,52.950661 +-1.208416,53.007211 +-1.153012,52.955842 +-1.13574,52.951573 +-1.148827,52.957448 +-1.181714,52.939142 +-1.175397,52.905891 +-1.116234,52.949066 +-1.20927,52.954746 +-1.132006,52.96414 +-1.14415,52.955329 +-1.112351,52.978037 +-1.244291,52.983146 +-1.16455,52.957317 +-1.167347,52.958954 +-1.137647,52.955246 +-1.212651,53.138025 +-1.148579,52.945068 +-0.836629,53.130352 +-1.312792,53.033866 +-1.137278,52.953562 +-0.785137,53.056725 +-1.119712,53.302621 +-1.120983,53.324744 +-1.129516,52.956166 +-0.973764,53.414519 +-1.117142,53.300634 +-1.202845,53.002221 +-1.176477,52.960241 +-1.202134,53.004365 +-1.201936,53.249913 +-1.195173,52.982033 +-1.273226,53.142212 +-1.135988,53.002635 +-1.121687,53.310223 +-1.003115,53.007529 +-1.180757,52.992174 +-1.231094,53.056963 +-1.036232,52.828558 +-1.121511,53.304181 +-1.082406,52.970744 +-1.197212,53.141068 +-1.220851,53.111129 +-1.130538,53.158794 +-1.300421,53.076781 +-1.17332,52.962637 +-1.304194,53.010273 +-0.784762,53.056784 +-1.180281,52.986606 +-1.153952,52.967912 +-1.268965,53.107011 +-1.175668,52.964424 +-1.112209,53.006793 +-0.85917,53.228977 +-1.145723,52.982048 +-1.110477,53.308683 +-1.056363,53.420018 +-1.216782,53.136946 +-1.204361,52.933471 +-1.197914,52.993297 +-1.032689,52.850428 +-1.126359,52.931089 +-1.224024,52.95789 +-1.233173,52.989377 +-1.243808,52.90409 +-1.1848,52.967319 +-0.855114,53.107976 +-1.159483,52.943779 +-1.14024,52.9408 +-1.140744,52.954432 +-1.192427,53.13957 +-1.180544,52.964835 +-1.096037,52.996154 +-1.147765,52.943309 +-1.177785,52.944662 +-1.240778,52.937961 +-1.17148,52.967029 +-1.174868,52.989283 +-1.09124,52.966299 +-1.138238,52.955466 +-1.131243,53.022989 +-1.02701,53.201277 +-1.132834,53.070761 +-1.13605,52.938271 +-1.176823,52.961618 +-1.233209,52.98988 +-1.143359,53.216454 +-1.25478,52.996832 +-1.152931,53.053628 +-1.190829,52.947457 +-1.133759,52.949428 +-1.151262,52.963084 +-1.213184,53.004798 +-1.222136,53.159122 +-1.213497,52.927671 +-1.191265,52.9568 +-1.161723,52.955679 +-1.264373,52.855649 +-0.831019,53.188351 +-1.276193,53.089293 +-1.136454,52.992714 +-1.150223,52.953062 +-1.127369,53.332593 +-1.242569,53.079025 +-1.181319,52.980536 +-1.298598,53.129276 +-1.170145,52.955837 +-1.033964,52.844469 +-0.773356,53.081182 +-1.086416,52.980429 +-1.129515,52.938394 +-1.10179,52.871008 +-1.144891,52.984927 +-1.195076,52.824374 +-0.977327,52.827768 +-1.227253,53.035634 +-1.12995,53.002034 +-1.176191,52.963547 +-1.113978,53.391102 +-1.06641,53.422273 +-1.254996,52.992051 +-1.163742,52.921973 +-1.038291,52.910021 +-1.097961,53.031829 +-1.157536,53.296845 +-1.124689,53.362309 +-1.202813,52.96344 +-1.085071,53.106774 +-1.079936,52.962949 +-1.194953,53.14197 +-1.138941,53.124516 +-1.227741,52.953968 +-1.157408,52.995436 +-1.157715,52.938274 +-1.257171,53.114408 +-1.150922,52.955377 +-1.135403,52.955032 +-1.223292,52.974687 +-1.155252,52.953925 +-1.149624,52.95935 +-1.232218,53.002927 +-1.102556,53.030992 +-1.028241,52.946482 +-0.904086,53.34668 +-1.151955,52.95205 +-0.952929,52.952297 +-1.174145,52.97325 +-1.1476,52.991833 +-1.268831,53.100835 +-1.093134,52.903512 +-1.195994,53.145491 +-1.026579,53.134375 +-0.981723,52.949455 +-1.114862,53.02134 +-1.281894,52.952959 +-1.248435,53.121069 +-1.236289,52.803979 +-0.580189,53.194804 +-0.163217,52.782818 +-0.503713,52.976907 +-0.304765,53.497791 +-0.65871,53.233857 +-0.590669,53.035289 +-0.078041,52.916672 +0.334197,53.140683 +-0.676182,53.331353 +-0.157518,52.759767 +-0.11616,53.229986 +-0.376062,53.376945 +-0.304006,53.287232 +-0.046043,52.950116 +-0.575534,53.063256 +-0.048564,52.975467 +0.214676,53.096358 +-0.613852,53.215778 +-0.474053,53.295193 +-0.01529,52.980004 +-0.017012,52.978181 +-0.509744,53.240978 +-0.382927,52.827462 +0.17613,53.184315 +-0.54441,52.817873 +-0.035321,52.950551 +0.100114,53.109592 +0.113353,52.776775 +0.334294,53.143846 +0.269002,53.246075 +0.117763,52.783323 +-0.395125,53.197984 +-0.470549,52.980152 +-0.076403,52.973421 +-0.24743,53.318463 +-0.038705,53.268564 +-0.778934,53.408866 +-0.578315,52.917032 +-0.575066,53.201243 +-0.205693,52.725631 +-0.520699,53.239227 +-0.518214,53.242621 +-0.559102,53.175916 +-0.487548,53.129603 +-0.54064,53.231849 +-0.482236,53.119584 +-0.073691,52.988185 +-0.067147,53.505008 +-0.140066,52.79508 +-0.089905,52.695087 +-0.015998,52.982767 +-0.756951,53.37288 +-0.60247,53.022698 +-0.664119,52.916014 +-0.639972,52.91867 +-0.370128,52.750994 +-0.414589,53.005365 +0.342485,53.152577 +-0.554097,52.954641 +0.165855,53.205846 +-0.187759,53.110017 +-0.717799,52.971227 +-0.562913,53.210077 +-0.529132,52.952474 +-0.357189,53.204245 +-0.005406,52.816368 +-0.139609,52.79466 +-0.51233,53.272267 +0.203165,53.314498 +-0.025171,52.974343 +-0.730137,53.433428 +-0.415605,52.998375 +0.336895,53.237139 +0.098631,53.17391 +-0.594488,53.182811 +-0.666048,53.184784 +-0.677804,52.918369 +0.006484,53.08304 +-0.466376,52.710121 +-0.545989,53.214583 +-0.611252,53.064469 +-0.538133,53.196786 +-0.701409,53.426764 +-0.540714,53.301888 +-0.755976,53.393437 +-0.018456,52.978196 +0.0772,52.994607 +-0.648383,52.769216 +-0.142782,53.088313 +-0.556425,53.221344 +-0.54611,53.215438 +0.01644,53.403334 +-0.65624,52.902925 +-0.535731,53.2308 +0.093007,53.365812 +-0.028049,53.339438 +-0.546344,53.232413 +-0.025,52.974187 +-0.155075,52.787753 +-0.284685,52.671956 +-0.557696,53.233423 +-0.653389,52.901832 +-0.052612,52.928476 +-0.022741,52.982871 +-0.546322,53.214488 +-0.712511,52.970262 +-0.523562,53.238318 +-0.632835,52.903935 +-0.145286,52.790568 +-0.636472,52.904588 +-0.363493,53.034259 +-0.618578,53.178724 +-0.054135,52.926703 +-0.527827,53.190438 +-0.495068,53.247545 +-0.632937,52.887934 +0.143188,52.773227 +-0.522935,53.249134 +-0.505422,53.264818 +-0.02475,52.685181 +-0.006383,52.989053 +-0.581914,53.199706 +-0.26761,52.699409 +-0.379693,52.80148 +-0.744354,52.894486 +-0.480239,52.652356 +-0.351103,53.470374 +-0.24773,53.32067 +-0.147057,53.148696 +-0.060517,52.918401 +0.08379,53.056852 +0.156329,53.438648 +-0.56707,53.211161 +-0.338369,53.387862 +-0.186706,52.766016 +-0.034979,53.13683 +-0.20229,53.370131 +-0.090269,53.259647 +-0.145991,52.785157 +-0.752213,53.014124 +0.250121,53.295001 +-0.165842,53.109654 +-0.630903,52.90438 +-0.097059,52.873706 +-0.502725,52.647158 +-0.066458,53.477083 +-0.026474,52.932018 +-0.702363,52.967032 +-0.530299,53.230635 +-0.222874,53.18414 +-0.288468,53.379776 +-0.645159,52.93688 +-0.529528,53.284149 +-0.190901,53.434209 +0.009862,53.32469 +-0.421697,53.012328 +-0.633565,52.927065 +-0.545504,53.217858 +0.260744,53.339565 +-0.3764,52.788732 +0.003169,53.38341 +-0.596022,53.16974 +-0.24008,52.838052 +-0.524533,53.244956 +0.096522,53.169326 +0.04572,53.473624 +-0.180709,52.781523 +-0.408214,52.99958 +-0.536184,53.230707 +-0.650472,52.904334 +-0.503874,53.203894 +0.336488,53.144333 +-0.437622,53.051807 +-0.581751,53.194203 +-0.691617,53.215021 +-0.533016,53.244926 +0.001224,52.825985 +-0.561582,53.206906 +0.057953,53.15218 +-0.51383,53.254091 +-0.539921,53.23051 +-0.539882,53.204368 +-0.027903,52.973885 +-0.203337,52.907008 +-0.490232,53.233334 +-0.306902,52.67304 +-0.002776,53.366581 +-0.638462,53.155651 +0.196305,53.182255 +-0.227204,53.148109 +-0.058728,52.928459 +-0.706642,52.968823 +-0.689232,52.912293 +-0.641825,52.936438 +-0.011544,53.266037 +-0.423504,53.011839 +-0.50775,53.234544 +0.326607,53.149094 +-0.629658,52.863245 +-0.654623,52.895131 +-0.658463,52.90509 +0.003976,53.382345 +-0.54306,53.224112 +-0.571299,53.206474 +0.320866,53.150519 +0.153763,53.212566 +-0.542218,53.225513 +-0.145681,52.785117 +-0.646338,52.904809 +-0.551704,53.231634 +-0.411685,52.745804 +-0.037857,52.863877 +0.136923,52.763063 +-0.027754,52.944771 +-0.55208,53.203618 +-0.053456,53.424667 +-0.358806,53.08462 +-0.305023,53.497768 +-0.548765,53.230366 +-0.311626,52.675571 +-0.358059,52.995149 +-0.585848,53.111492 +-0.704748,52.967939 +-0.294218,52.771917 +-0.64739,52.912103 +-0.0403,52.944124 +-0.36259,52.718479 +-0.047284,52.974439 +0.175479,53.294957 +-0.448248,53.013073 +0.214435,53.141388 +-0.347134,52.702774 +-0.556623,53.045947 +-0.138656,52.809353 +-0.156988,52.753699 +0.042721,52.750868 +-0.632938,52.888374 +-0.617669,53.21024 +-0.53468,53.196213 +-0.505936,53.167404 +0.046185,52.986919 +-0.166316,52.777166 +-0.410279,52.999338 +-0.577447,53.247325 +-0.608765,52.91919 +-0.487213,53.296853 +0.186255,53.058717 +-0.654677,52.815084 +-0.128285,53.043503 +-0.637371,52.918614 +-0.028262,52.981362 +-0.669056,52.90974 +-0.089026,53.364128 +-0.666921,52.937603 +-0.021899,53.507171 +-0.313259,53.043914 +-0.136139,52.789444 +-0.456612,53.21247 +-0.538372,53.250915 +-0.362614,52.718623 +-0.577275,53.205045 +-0.632828,52.87487 +-0.423029,53.270158 +-0.647313,52.919357 +0.191423,52.765108 +-0.022259,52.976794 +-0.741723,53.404021 +-0.458613,53.212217 +-0.590815,53.190301 +-0.259641,53.424155 +-0.517828,53.251201 +-0.591038,53.221407 +-0.053103,52.770183 +0.340139,53.144927 +-0.617178,53.208301 +0.082657,53.378265 +-0.547845,53.397299 +-0.02612,53.365261 +-0.478685,53.319802 +0.287612,53.130115 +-0.610974,52.775644 +-0.018768,52.980818 +-0.308768,53.045091 +-0.023677,52.983255 +-0.773999,53.400501 +-0.036709,52.981349 +0.350592,53.199386 +-0.626688,52.850526 +-0.223253,53.343547 +-0.004705,53.367764 +-0.12954,52.787704 +-0.59884,53.199421 +-0.537446,53.250832 +0.088334,53.165236 +-0.637847,52.90722 +-0.627835,53.067215 +-0.628723,53.17449 +-0.639985,52.918707 +-0.458088,53.134206 +-0.114567,53.20896 +0.237225,53.094812 +-0.518678,53.250457 +-0.537654,53.230231 +-0.480281,53.116556 +-0.495056,52.656555 +0.072865,53.034449 +-0.60987,53.174523 +0.206865,53.073315 +-0.057368,52.80788 +-0.632923,53.214641 +-0.036778,52.885815 +-0.013796,52.970359 +-0.175676,52.954119 +-0.026227,52.966539 +-0.280598,53.131002 +-0.361369,52.686671 +-0.223298,53.343548 +-0.574433,53.301909 +-0.495376,53.248169 +-0.359379,52.661605 +-0.110585,52.976442 +-0.482192,53.119583 +-0.563494,52.799388 +-0.205915,53.153724 +-0.55226,53.196032 +-0.741437,52.978222 +0.030631,53.297547 +-0.600494,53.186334 +-0.046793,53.097853 +-0.024934,52.982808 +-0.555099,53.215781 +0.336566,53.144107 +0.183371,53.183374 +-0.071954,53.383721 +-0.005283,53.363764 +-0.483774,53.19688 +-0.403971,52.909702 +-0.610317,52.760892 +-0.650373,53.185462 +-0.095882,52.969042 +-0.201172,52.819605 +0.11711,52.784836 +-0.158011,52.786693 +-0.557719,53.219813 +-0.580993,53.194481 +0.281179,53.12862 +-0.004836,53.375579 +-0.511707,53.112584 +0.01255,53.317354 +0.037642,53.385191 +-0.389833,53.138615 +-0.549373,53.208835 +-0.011893,53.494761 +0.241537,53.183165 +-0.539263,53.264366 +-0.470482,52.6549 +-0.599204,53.204325 +-0.163634,52.940727 +-0.038412,52.975003 +-0.305327,53.555889 +-0.031438,52.987537 +-0.011546,52.985642 +-0.729382,53.43351 +0.011341,53.110352 +-0.028209,52.967156 +0.317065,53.224858 +-0.464625,53.348883 +-0.305084,53.497732 +-0.554217,53.201944 +-0.016526,53.386706 +-0.053819,52.794992 +-0.361046,52.681066 +-0.408478,52.99525 +-0.681138,52.918775 +-0.557321,53.220078 +-0.027828,52.965396 +-0.529138,53.235223 +-0.588557,53.111803 +0.208607,53.321329 +-0.458009,52.985969 +0.311242,53.197693 +-0.628912,53.156369 +-0.546205,53.214837 +-0.34164,52.891587 +-0.538732,53.256179 +-0.551798,53.203965 +-0.696207,53.259155 +-0.629315,52.862819 +0.051899,53.261932 +-0.548671,53.235372 +-0.576756,53.150192 +-0.026198,52.931528 +-0.017368,52.982116 +-0.033318,52.758555 +-0.522565,53.243331 +0.044241,52.735539 +-0.109776,52.689355 +-0.536802,53.21785 +0.0022,52.813327 +-0.248244,53.319842 +-0.159325,52.945137 +0.339701,53.149521 +-0.416129,53.01175 +0.014333,52.763447 +-0.116704,53.208392 +-0.090361,53.259603 +-0.61527,52.919976 +-0.066408,53.498065 +-0.596747,53.414937 +-0.54693,53.231036 +-0.561418,52.761595 +0.198229,53.370042 +-0.610429,52.790903 +-0.526764,53.218823 +-0.041201,52.872761 +0.274651,53.278523 +-0.110803,52.975555 +-0.400575,52.995387 +-0.495172,53.247987 +-0.411114,53.00219 +-0.146865,52.91559 +-0.584388,53.294953 +-0.535461,53.230824 +-0.698561,53.370694 +0.335391,53.143132 +-0.5264,53.026698 +0.130769,52.780608 +0.064597,53.274335 +-0.543682,53.22963 +-0.523498,53.254544 +-0.401983,52.765596 +-0.41256,52.674817 +-0.003836,53.367066 +0.333031,53.131858 +0.236263,53.335351 +-0.189849,53.3576 +-0.110464,53.208275 +0.314952,53.225133 +0.130738,52.780591 +0.287446,53.216431 +-0.058664,52.99204 +0.172884,53.18406 +-0.167793,52.784363 +-0.409595,53.395664 +0.178778,53.256875 +0.188508,53.183135 +-0.524784,53.032557 +-0.067327,52.972878 +-0.634672,52.91976 +-0.571982,53.243574 +-0.367636,53.141298 +-0.616434,52.952039 +-0.009694,52.976656 +-0.545026,53.219138 +-0.027269,52.965243 +-0.505272,53.264808 +-0.651625,52.902145 +-0.6454,52.901993 +-0.592495,53.222198 +-0.48945,53.290444 +-0.046535,53.41934 +-0.084544,52.889967 +-0.532584,53.218581 +-0.167672,52.784415 +-0.632969,52.911973 +-0.367284,52.730375 +-0.023435,52.983341 +-0.497437,52.654787 +-0.600743,52.897178 +-0.59882,53.232161 +-0.61063,53.222303 +0.262118,53.342829 +-0.39847,53.349075 +0.334689,53.212844 +-0.487519,53.129585 +-0.624732,53.178121 +-0.556955,53.257246 +0.257055,53.304409 +0.177787,53.053271 +-0.243441,53.081085 +-0.626897,53.182488 +-0.507099,53.234311 +-0.610561,52.79468 +-0.018792,53.366075 +-0.641365,52.910757 +-0.55916,53.243824 +-0.395245,53.072405 +0.01315,52.805589 +0.327372,53.153835 +-0.611377,52.803509 +-0.514059,53.254427 +-0.305209,53.499137 +-0.568732,53.209797 +-0.162875,52.671506 +-0.482221,53.119593 +0.210328,52.761718 +0.2058,53.075277 +-0.76443,52.997108 +-0.546719,53.392809 +-0.716552,52.879041 +-0.026354,53.364411 +-0.539232,53.264392 +0.164669,53.202209 +-0.285125,53.588044 +-0.624403,52.928866 +-0.478244,53.224111 +0.14415,52.74665 +0.236581,53.335103 +-0.550269,53.207128 +-0.032046,53.33776 +-0.596433,53.406186 +-0.422857,52.991954 +-0.633129,53.07631 +-0.15713,52.819837 +-0.055156,52.925155 +0.348466,53.176654 +-0.525676,52.919276 +-0.131684,52.814162 +-0.553918,53.201482 +-0.151955,52.794879 +-0.004892,52.973878 +-0.640326,52.91542 +0.345465,53.166625 +-0.465984,52.659643 +0.062114,52.985106 +-0.58326,52.909503 +-0.405331,53.001384 +-0.570056,53.211871 +-0.641859,52.91159 +-0.375662,52.755583 +-0.140443,52.654308 +0.010184,52.810756 +-0.039803,52.949861 +-0.550701,53.219189 +-0.454635,53.059176 +0.264046,53.171762 +-7E-05,52.76289 +-0.154464,52.672787 +-0.490713,52.656428 +-0.031031,52.975843 +0.04168,52.777068 +-0.494071,53.247766 +-0.636942,52.905259 +-0.39037,52.998962 +-0.226138,52.818398 +-0.139894,53.078064 +-0.651248,53.218158 +-0.640534,52.909273 +-0.439678,53.01386 +-0.441461,52.973077 +-0.325527,52.849915 +-0.546507,53.23202 +0.100805,53.368192 +-0.690584,53.16785 +-0.634339,52.926571 +-0.12238,52.74457 +-0.755501,53.399914 +-0.617868,53.261276 +-0.540504,53.286028 +-0.267007,53.426591 +-0.418516,53.509913 +-0.632505,52.912076 +-0.63457,52.926331 +-0.172683,52.70407 +-0.623133,52.817365 +-0.546255,53.232367 +-0.452076,53.248568 +-0.210759,53.259439 +-0.050063,53.124617 +0.023426,53.305429 +0.041486,52.982999 +0.258777,53.340996 +-0.543164,53.224122 +-0.414451,53.139566 +-0.670099,52.90238 +-0.552265,53.203458 +-0.35498,53.048292 +0.078854,53.15945 +-0.170239,53.102521 +-0.404771,53.275615 +-0.463433,53.298023 +0.105357,53.056931 +-0.43026,53.405889 +0.150166,53.250176 +0.33739,53.179641 +-0.035632,52.861179 +0.258403,53.180851 +-0.187388,52.968809 +-0.021366,52.972868 +-0.390974,53.015162 +-0.020616,52.977225 +-0.578418,52.917042 +-0.542446,53.225426 +0.050949,52.967983 +-0.539116,53.25417 +-0.027198,52.974646 +0.167253,53.199707 +-0.752187,53.256509 +-0.454525,53.234665 +-0.409204,52.999395 +-0.645626,53.308483 +-0.775449,53.392434 +-0.166056,52.816487 +-0.0121,52.803336 +-0.63519,52.935454 +-0.68854,52.959797 +-0.006652,52.967668 +-0.596274,53.188136 +-0.444185,53.038165 +-0.653995,53.265734 +-0.656544,52.910399 +-0.43204,53.268155 +-0.684357,52.919566 +-0.146964,53.228941 +-0.058545,52.972429 +-0.058724,52.972432 +-0.17681,52.781841 +0.056048,53.466281 +-0.250002,53.572217 +0.152355,53.046577 +-0.425263,52.731627 +-0.532553,52.832849 +-0.536654,53.22878 +-0.507798,53.234454 +-0.306685,52.743263 +-0.629044,52.859642 +-0.06591,52.805304 +-0.540438,53.226759 +0.344151,53.212775 +-0.277451,52.69868 +0.03143,52.810079 +-0.642185,52.909247 +0.310991,53.197761 +0.179306,52.767049 +-0.055341,52.925014 +0.184981,53.368182 +-0.426518,52.652311 +-0.695593,52.964387 +-0.189009,52.891156 +-0.110022,52.979103 +-0.42477,53.015138 +0.201776,53.39275 +0.232422,53.178553 +0.323974,53.183122 +0.331114,53.180663 +-0.563368,53.336943 +-0.120989,53.02191 +-0.533988,53.236236 +-0.408227,52.99842 +0.023505,53.305194 +-0.500772,53.221556 +-0.673161,53.155558 +-0.253231,53.235913 +0.149024,53.186102 +-0.547076,52.980258 +-0.484504,52.806335 +-0.041141,53.433896 +-0.752128,53.256455 +-0.196016,53.08158 +0.32985,53.148213 +-0.069786,52.692585 +-0.014052,52.828876 +-0.154344,53.166016 +0.230077,53.350364 +-0.410369,52.999339 +-0.03592,52.981345 +-0.534523,53.222767 +0.001631,53.373394 +-0.54737,53.391361 +-0.376774,52.795812 +-0.634222,52.895761 +-0.556275,53.219544 +0.042054,53.091929 +-0.339881,53.112748 +-0.520651,52.738762 +-0.394438,53.0913 +-0.552624,53.234566 +0.114489,53.192699 +-0.195424,53.152118 +0.061152,53.155568 +-0.151068,52.794821 +-0.020267,52.835498 +-0.646952,52.918516 +0.182838,53.238865 +0.220484,53.086746 +-0.23092,53.168653 +-0.093066,53.19978 +-0.4775,52.946403 +-0.411194,52.994729 +-0.403442,52.906701 +-0.495374,53.248223 +-0.783066,53.408531 +-0.022063,52.979776 +-0.149693,52.785979 +-0.302588,53.486622 +0.101096,53.190976 +-0.017162,53.209096 +-0.518053,53.247716 +-0.448948,53.262542 +-0.535263,53.231801 +0.254043,53.164201 +-0.092993,53.318701 +0.351341,53.174224 +-0.116908,52.891968 +-0.48781,53.26848 +-0.110756,52.975599 +-0.163675,52.788489 +-0.358966,53.530532 +-0.778678,53.40889 +-0.11358,52.97301 +-0.212669,53.383592 +-0.628462,52.80271 +-0.161894,52.758262 +-0.064984,53.4694 +0.282643,53.155951 +-0.225123,53.148878 +0.246274,53.286883 +0.195931,53.18254 +-0.281477,53.052746 +0.175507,53.29492 +0.250016,53.163864 +-0.414576,53.005311 +-0.482847,52.65559 +-0.129646,52.694579 +-0.340052,53.398313 +-0.53935,53.254326 +-0.631921,53.156287 +-0.550997,53.233917 +-0.54493,53.214911 +-0.153943,53.234929 +-0.025299,52.666453 +-0.783112,53.408486 +0.27693,53.237859 +-0.548483,53.210361 +-0.389982,53.138635 +-0.314523,53.497327 +0.224225,53.329445 +-0.632648,52.908949 +-0.697829,52.965275 +-0.561992,53.21074 +-0.53431,53.219348 +-0.110788,52.975564 +-0.487445,53.129575 +-0.312203,52.676352 +-0.549967,53.430433 +-0.032898,52.857915 +-0.065703,52.968887 +-0.380242,52.802261 +-0.552242,53.232566 +-0.092836,52.902894 +-0.404583,52.885778 +0.201398,53.20862 +-0.028569,52.967746 +-0.0723,52.806739 +-0.316613,53.097561 +-0.147357,52.764158 +-0.056413,52.969167 +0.24938,53.160576 +0.212703,52.760901 +-0.476906,53.423663 +-0.452634,53.306199 +-0.025789,52.801137 +-0.541063,53.220267 +-0.058592,52.972385 +0.338593,53.190748 +-0.378567,52.664539 +-0.400061,53.140569 +-0.267752,53.276696 +-0.415723,52.703503 +-0.627609,52.797279 +-0.535627,53.230799 +-0.741423,53.403991 +-0.50156,53.162063 +-0.425631,53.022206 +-0.133016,52.683915 +-0.122701,53.026801 +-0.545487,53.217903 +0.307324,53.155394 +-0.019795,53.492456 +-0.00385,53.367094 +-0.576031,53.212779 +-0.026869,53.363368 +-0.561434,53.211318 +-0.477153,53.017681 +-0.569962,53.333768 +0.18278,53.28247 +-0.629658,52.863713 +-0.04715,53.443353 +0.264737,53.340649 +-0.70189,52.88236 +-0.53909,53.203881 +-0.271202,52.783362 +-0.400917,52.765159 +-0.537774,53.230205 +-0.466614,53.402702 +-0.067034,53.214006 +-0.237958,52.796925 +-0.532996,53.168801 +-0.629421,52.864169 +-0.157084,52.678726 +-0.532498,53.035925 +-0.517168,53.240378 +-0.522058,53.254589 +-0.648359,53.208587 +-0.54682,53.213478 +-0.083535,52.890265 +-0.036739,52.98135 +-0.629302,52.862774 +0.136892,53.094067 +-0.362324,52.71808 +-0.598965,53.198335 +-0.00359,52.97659 +-0.357169,52.915699 +0.236504,53.335077 +-0.377414,52.914035 +0.009486,53.017951 +-0.420862,53.013162 +-0.609641,53.171419 +-0.104856,53.173834 +-0.649225,52.90619 +0.227523,53.182493 +0.018116,53.117835 +-0.064879,53.434283 +-0.353208,53.205377 +-0.491847,53.01954 +-0.67311,53.155764 +-0.317698,52.675397 +-0.033958,53.365418 +-0.434045,53.096125 +-0.709065,52.879436 +0.131859,52.780472 +-0.125852,52.745146 +-0.111389,53.207336 +-0.065855,52.934779 +0.015408,53.039132 +-0.650452,52.904487 +-0.045207,53.467631 +0.104816,53.209449 +-0.645869,52.904129 +-0.586213,53.19235 +-0.09478,52.966668 +0.350402,53.196189 +-0.53712,53.224354 +-0.473184,52.652463 +-0.028487,53.339058 +-0.379625,52.8013 +0.079767,53.15947 +0.02531,53.479177 +-0.711365,53.258601 +-0.376101,53.378276 +-0.546593,53.213997 +-0.489261,52.920671 +-0.372452,53.0336 +-0.682843,52.9474 +-0.678554,53.07534 +-0.406644,53.138419 +-0.543958,53.234272 +-0.781972,53.403099 +-0.521038,53.254585 +0.143202,53.247901 +-0.633811,53.068425 +-0.035179,53.385594 +-0.674431,53.246815 +-0.097236,52.801054 +-0.626949,52.850718 +-0.617351,53.208033 +-0.6708,52.895502 +-0.409181,53.345856 +0.20493,53.316407 +-0.649269,53.201558 +-0.778704,53.399551 +-0.167596,52.784459 +0.016144,53.064185 +-0.425326,52.649706 +-0.364774,53.487462 +-0.089319,52.883148 +-0.321977,53.494105 +0.336392,53.222943 +-0.20659,53.383357 +-0.591999,53.202136 +-0.754882,52.980423 +-0.541229,53.226858 +-0.577117,53.205295 +0.296687,53.225091 +-0.070795,53.437616 +-0.030998,53.435114 +-0.444411,53.197073 +-0.434644,52.922247 +0.344869,53.145005 +0.22958,53.182329 +-0.027409,52.965767 +0.033043,53.265213 +0.119169,53.037346 +0.075583,53.361405 +-0.531564,53.254509 +0.279718,53.31848 +-0.052318,53.035378 +0.324583,53.149547 +-0.468115,52.798618 +-0.495872,53.248544 +-0.467989,52.653906 +-0.451909,52.921134 +-0.108726,52.898572 +0.307294,53.140335 +-0.00548,53.363732 +-0.016246,53.386593 +0.339785,53.14969 +-0.51926,53.230552 +-0.072073,53.38375 +-0.641263,52.912581 +0.177168,53.05313 +-0.380634,52.913828 +-0.692638,53.075585 +-0.653357,52.914858 +-0.045843,52.950275 +0.220194,53.086626 +-0.450371,52.795385 +-0.684284,52.972488 +0.268963,53.246472 +-0.492986,53.288862 +-0.024781,52.980288 +0.245648,53.161294 +0.111481,53.166212 +-0.304696,52.952254 +-0.383268,53.009951 +0.193787,52.767024 +0.265082,53.337801 +0.124743,52.789024 +-0.084308,52.889252 +-0.536373,53.229559 +-0.489857,53.249106 +-0.162026,52.670585 +-0.497147,53.24296 +-0.552504,53.231886 +-0.77573,53.399431 +-0.691849,52.962629 +-0.039751,53.365279 +-0.478059,53.175222 +-0.548382,53.230631 +-0.23866,53.454745 +-0.003996,53.360434 +-0.772854,53.39327 +-0.450867,53.272501 +0.337414,53.179533 +-0.545781,53.233117 +-0.54783,53.24294 +-0.644756,52.902139 +-8.4E-05,52.762908 +-0.615255,52.898984 +-0.645521,52.909564 +0.331113,53.148062 +-0.436077,52.994717 +0.209312,53.263749 +-0.740736,52.931612 +-0.140636,52.787618 +0.335167,53.143406 +0.262074,53.340007 +0.102575,53.189997 +-0.122963,52.840232 +-0.543002,53.224057 +-0.543938,53.222504 +-5.7E-05,52.762854 +-0.628421,53.174585 +-0.296228,52.696119 +-0.304932,53.497784 +-0.054985,52.973432 +-0.095812,52.968951 +-0.321704,53.124477 +0.270005,53.244357 +-0.057817,52.937174 +-0.442901,53.173878 +-0.073655,53.30504 +-0.132972,52.788585 +-0.008848,53.348226 +-0.09153,53.252537 +-0.21311,53.203008 +-0.396588,52.736943 +0.082329,52.800862 +-0.051468,53.43687 +0.335342,53.151045 +0.244205,53.338142 +-0.08477,52.889898 +-0.637196,52.918495 +-0.594093,53.054738 +-0.544491,53.221666 +-0.53963,53.223656 +-0.46025,53.064921 +0.169103,53.183877 +-0.63567,53.068626 +-0.761549,53.393127 +-0.542744,53.22943 +-0.288618,53.067215 +-0.027521,52.965265 +-0.00461,53.375584 +-0.055212,52.973355 +-0.386181,52.774489 +-0.487458,53.129611 +0.243888,53.103453 +-0.014498,52.96415 +-0.32699,52.686542 +-0.383322,53.285232 +-0.136871,53.151495 +-0.067855,53.511996 +0.307312,53.275828 +-0.387226,53.023337 +-0.455249,52.986904 +-0.021689,52.977872 +-0.038042,53.42731 +0.268033,53.168215 +0.345011,53.164611 +-0.375777,53.385994 +-0.681119,52.918936 +-0.135561,53.141342 +0.348415,53.17518 +-0.682633,52.949411 +-0.404597,53.141232 +0.00018,52.987594 +-0.538546,53.252428 +0.274916,53.232674 +-0.458068,52.985979 +0.249565,53.182124 +0.074386,52.997462 +-0.564446,53.046213 +-0.756449,53.372039 +-0.465093,53.191795 +-0.12731,52.833756 +0.032156,52.757865 +-0.057862,52.929865 +-0.298411,52.980402 +0.349052,53.184357 +-0.643711,53.150893 +-0.466658,53.402712 +0.135119,52.774362 +0.040606,53.034171 +-0.584715,52.995312 +0.186536,53.183217 +-0.602203,53.227652 +-0.669636,52.901467 +-0.16327,52.785426 +-0.629408,52.860824 +-0.414406,53.139556 +0.101828,53.329749 +-0.042387,52.95296 +-0.026597,52.974097 +-0.028128,52.973529 +-0.777932,53.402357 +-0.500832,53.250728 +-0.050851,52.880248 +0.222952,53.087698 +0.327279,53.197992 +-0.51663,53.252022 +-0.778788,53.409763 +0.134374,52.774294 +-0.135166,53.14219 +0.099604,53.191677 +0.001363,53.418313 +-0.41396,52.940771 +0.202657,53.194922 +-0.595434,53.234 +-0.63987,52.884408 +-0.609126,53.206329 +0.107851,53.167247 +-0.091856,53.166021 +-0.033078,52.977009 +-0.018965,52.97816 +-0.573072,53.243227 +0.201505,53.13912 +-0.092002,52.879909 +-0.114426,52.939884 +-0.770106,53.402519 +0.348418,53.175234 +0.040173,53.405708 +-0.307749,53.212966 +-0.069808,52.906819 +0.343583,53.156269 +-0.629466,53.174184 +-0.622082,52.944796 +0.012937,53.072538 +0.232965,53.343801 +-0.405501,52.921904 +0.324511,53.149612 +-0.024932,52.980237 +-0.776749,53.403765 +-0.107706,52.898106 +-0.250034,52.7917 +-0.372341,52.767549 +-0.506649,52.659524 +-0.05372,52.927325 +-0.275957,53.21776 +-0.629638,52.934581 +-0.693703,52.963872 +-0.617852,53.238064 +-0.550322,53.226861 +-0.534395,53.235279 +-0.026631,52.965844 +0.277001,53.237795 +-0.6412,53.179739 +-0.362317,52.761324 +0.126458,52.781908 +-0.020131,53.391 +-0.634218,52.926614 +-0.678026,52.916457 +-0.356244,53.050755 +-0.541906,53.163687 +-0.601296,53.22836 +0.341274,53.152583 +-0.510711,53.242491 +0.12004,53.373839 +0.346673,53.192873 +-0.061223,53.155924 +-0.703887,53.177138 +-0.213004,53.556712 +-0.698958,53.076392 +-0.059959,52.972443 +-0.565448,53.149401 +-0.282758,53.079807 +-0.120252,53.209095 +0.338957,53.13996 +-0.427224,53.020213 +-0.547675,53.230695 +-0.663844,53.291761 +-0.028359,53.41701 +0.35013,53.192589 +0.16413,53.32663 +0.070339,53.200074 +-0.393009,53.077949 +-0.540901,53.151404 +-0.640919,52.916425 +-0.159192,52.786469 +-0.507725,53.243461 +-0.16455,52.668592 +-0.539272,53.265418 +-0.511348,53.242275 +0.283967,53.129331 +-0.605476,52.926649 +-0.590231,53.189853 +-0.584906,52.895507 +-0.626611,52.900474 +0.008679,53.331156 +-0.202331,53.097364 +-0.41816,52.671296 +-0.553244,53.149001 +-0.408531,53.1173 +-0.017502,52.982136 +-0.543239,53.224141 +0.326215,53.199092 +-0.562596,53.056088 +-0.725825,52.922616 +-0.670018,53.116894 +-0.634099,52.89495 +-0.03657,52.981455 +-0.216616,52.980471 +-0.674811,52.893155 +-0.373737,52.999033 +0.196747,52.766043 +0.061365,52.796733 +-0.333998,53.386965 +0.255707,53.301612 +-0.637635,52.909717 +0.249244,53.11219 +0.007265,52.799252 +-0.534495,53.219197 +-0.542699,53.229438 +-0.65146,53.216182 +-0.548748,53.209618 +-0.29149,52.771923 +-0.639782,52.909543 +-0.117759,53.125833 +-0.153924,53.112689 +0.260062,53.159178 +-0.514281,53.25451 +0.092117,52.798631 +0.251919,53.347689 +-0.640195,52.911526 +-0.369946,52.751504 +-0.278821,53.072603 +-0.322117,52.986736 +-0.039047,52.977414 +0.3446,53.150764 +-0.520835,53.239201 +-0.465749,52.654956 +-0.764366,53.014485 +-0.673489,53.155588 +-0.363084,52.766972 +-0.174682,52.785935 +-0.617619,53.20854 +-0.236524,53.412156 +-0.493497,53.288428 +-0.359017,53.03471 +-0.549348,53.23085 +-0.597937,53.018123 +-0.410344,52.999608 +-0.628147,53.174726 +-0.005742,53.346852 +-0.073782,52.943269 +0.230062,53.350356 +-0.174772,53.428363 +-0.151985,52.79488 +-0.481345,52.660533 +-0.282487,53.069375 +0.058489,53.465044 +-0.629638,52.934572 +-0.538316,53.254331 +0.106452,52.791688 +-0.540674,53.22953 +-0.645477,53.184103 +-0.624708,52.918297 +-0.358218,53.13421 +-0.124,52.797201 +-0.391221,52.869326 +-0.490142,52.807171 +-0.546116,53.215249 +-0.065369,52.946009 +-0.549948,53.226839 +-0.506935,53.234291 +-0.497048,53.282989 +-0.443535,52.708457 +-0.494148,53.247713 +-0.782807,53.407054 +-0.658889,52.9168 +-0.546186,53.214963 +-0.02126,52.972902 +0.202362,53.21896 +-0.385982,53.044671 +-0.701486,53.42672 +-0.018103,52.971915 +-0.15616,52.808386 +-0.30219,53.508281 +-0.383527,52.829286 +-0.466432,53.402745 +-0.538308,53.240046 +0.322857,53.144168 +-0.60925,52.803691 +-0.149162,52.937409 +-0.59735,53.026108 +-0.020524,53.334225 +-0.712487,52.970082 +0.225063,53.168504 +-0.521158,53.230692 +-0.694793,52.964253 +-0.036323,52.981316 +-0.131171,53.177729 +-0.61627,52.955292 +-0.670066,53.156988 +-0.531978,53.247223 +0.06055,53.275628 +-0.559329,53.200865 +-0.529051,53.461631 +-0.534351,53.230855 +-0.267583,52.699345 +-0.634072,53.213836 +-0.081769,52.898292 +0.076794,53.269134 +-0.143293,53.097959 +-0.637465,52.911324 +0.195311,53.338135 +-0.572572,53.174909 +-0.440799,52.830789 +-0.685253,52.971987 +-0.160121,53.127475 +-0.610934,53.100793 +0.133902,53.177266 +-0.028668,53.479909 +-0.608559,52.927018 +-0.065002,53.469337 +0.267419,53.335132 +-0.459475,53.292524 +-0.390697,52.98897 +-0.304949,53.124896 +-0.775435,53.392407 +-0.539783,53.274198 +-0.783452,53.410279 +-0.415772,53.14104 +-0.313374,52.674373 +-0.063853,53.465777 +-0.610668,52.787121 +0.015696,53.038597 +-0.072079,52.938377 +-0.344556,52.895044 +-0.399011,53.012717 +-0.585233,53.43589 +-0.675334,52.909136 +-0.709887,52.969389 +0.295316,53.195259 +0.109001,52.790725 +-0.537559,53.251013 +-0.440726,53.013748 +-0.05373,52.927101 +-0.540364,53.282664 +-0.644102,53.167924 +0.316658,53.216774 +-0.273195,53.424694 +0.345466,53.14635 +-0.06254,52.775984 +-0.027423,52.973949 +0.010786,53.320404 +-0.016333,53.386649 +-0.623487,52.919281 +-0.666258,52.91415 +-0.581037,52.861928 +0.024418,52.951868 +-0.079037,52.794602 +-0.091175,52.694811 +-0.224559,52.851658 +-0.339464,52.6744 +-0.008451,52.987487 +0.333397,53.143863 +-0.030177,52.665203 +-0.156529,52.779325 +-0.211444,53.092647 +-0.577429,53.20493 +-0.459318,53.291884 +-0.541646,53.22956 +-0.106998,53.054737 +-0.173765,52.766042 +-0.690036,53.350186 +-0.299761,53.085544 +-0.629173,52.837141 +-0.281433,53.052719 +-0.571159,53.241712 +-0.772766,53.396317 +-0.76332,53.399474 +-0.366029,52.99676 +-0.536244,53.223246 +-0.637993,52.907302 +-0.504913,53.264794 +-0.53164,52.984788 +-0.013032,52.775731 +-0.534283,53.219258 +0.053323,52.962458 +-0.564089,53.176695 +-0.322597,52.724708 +0.069436,52.805826 +-0.542883,53.235931 +-0.46275,52.801425 +-0.567849,53.202594 +-0.090031,53.29056 +-0.551642,53.455551 +-0.487562,53.12963 +-0.377398,52.914044 +-0.477652,52.654049 +0.232897,53.17618 +-0.513294,52.730345 +-0.062213,52.770989 +0.010796,53.320296 +-0.304295,53.497856 +0.260421,53.341414 +0.245361,53.105349 +-0.321384,53.453779 +-0.027462,52.965255 +-0.601711,52.973326 +-0.398495,53.139658 +-0.568884,53.213799 +-0.011117,53.382741 +-0.566117,53.200677 +-0.687583,52.958483 +-0.073968,52.765309 +-0.150212,52.787723 +-0.619717,52.81559 +-0.022781,53.482706 +-0.062016,52.805456 +-0.000116,52.762855 +-0.663604,53.297045 +-0.637431,52.911485 +0.117189,53.033165 +0.023831,53.375842 +-0.54289,53.330537 +-0.310709,52.674434 +-0.749372,53.279519 +-0.576739,53.194134 +-0.003243,53.367218 +-0.191233,53.085266 +0.000611,53.03913 +-0.174154,52.952091 +-0.533868,53.219549 +0.014697,53.428203 +-0.027907,53.416373 +-0.144013,52.782141 +-0.011701,52.729459 +-0.219319,52.804064 +-0.371153,52.755296 +-0.142471,53.085827 +0.000656,53.365742 +-0.304963,53.49774 +-0.611019,52.764443 +0.017037,52.806539 +-0.190624,53.179132 +-0.578299,52.917049 +-0.476553,53.423424 +0.031776,53.29511 +-0.250212,52.791712 +0.005459,53.013758 +-0.567278,52.934178 +-0.520541,53.239899 +0.330388,53.144345 +-0.159523,52.758962 +-0.39575,52.765827 +-0.132945,52.847043 +-0.541891,53.148225 +-0.098671,52.805222 +-0.191737,53.151226 +0.272654,53.323146 +-0.680535,52.917087 +-0.563315,53.177917 +-0.073492,53.15918 +-0.611229,52.761128 +0.046947,53.0339 +-0.649278,53.201729 +-0.508355,52.660229 +0.093139,52.797363 +0.342864,53.141142 +0.345414,53.146217 +-0.315736,53.226987 +-0.312981,53.494392 +0.099999,53.172205 +-0.350542,53.429266 +-0.361952,53.110303 +-0.429054,53.234647 +-0.579547,53.150828 +-0.385007,52.774554 +-0.18985,53.357582 +-0.714668,52.970843 +-0.407491,53.274662 +-0.214233,52.979743 +-0.339894,53.112793 +0.170738,53.056124 +0.021019,52.96293 +-0.337125,52.772158 +-0.422744,53.011002 +-0.609667,52.759896 +-0.646775,52.90654 +0.343118,53.151009 +-0.687759,52.887698 +0.292748,53.132803 +-0.643597,53.112272 +-0.032042,52.97817 +0.040206,52.809281 +-0.40105,52.765188 +-0.174362,52.75849 +-0.745477,53.390954 +-0.021679,52.973512 +0.283846,53.129297 +0.334758,53.141931 +0.007498,53.015917 +-0.21993,52.804361 +-0.16873,52.665546 +-0.003966,53.002363 +-0.667978,53.142779 +-0.581973,53.199716 +-0.622034,52.944894 +0.076888,52.802801 +-0.379028,52.846477 +-0.297984,52.675322 +-0.144135,53.107556 +-0.644472,53.14905 +-0.278529,52.779198 +-0.545703,53.233188 +-0.05091,52.880258 +-0.035788,52.800143 +-0.154459,53.112769 +0.26056,53.120256 +0.117603,53.373199 +-0.02603,52.970527 +-0.548116,53.211022 +-0.505106,53.26485 +-0.635843,52.904257 +-0.419292,53.038574 +-0.380197,52.840586 +-0.54013,53.141955 +-0.532687,53.218609 +-0.131337,52.959454 +-0.251122,53.08092 +-0.205018,53.133626 +-0.509699,53.240978 +-0.64222,52.914318 +-0.702066,52.949598 +0.254488,53.346273 +-0.57998,53.202937 +-0.568119,53.202589 +-0.612391,52.926281 +-0.578269,53.189055 +-0.642393,53.153808 +-0.627995,53.174823 +-0.615562,53.239368 +-0.544661,53.229031 +-0.586606,52.904473 +-0.300033,52.960692 +0.166908,53.205045 +-0.56103,53.211754 +-0.127069,53.093911 +-0.473408,53.035945 +0.1806,53.426295 +-0.468256,52.653874 +-0.038609,52.977559 +0.099217,53.028242 +-0.599544,53.204014 +-0.035999,52.949717 +-0.521215,53.110671 +-0.406751,53.108475 +-0.12972,52.812899 +-0.688359,52.920509 +0.081736,53.005569 +0.012652,53.368318 +-0.522152,53.238813 +-0.663673,53.069987 +-0.157841,52.786511 +-0.505301,53.264835 +-0.782577,53.405613 +-0.447948,53.045118 +-0.215536,53.14424 +-0.028902,52.97614 +-0.018102,52.971951 +-0.682935,53.191427 +-0.420078,53.035033 +-0.295988,52.696188 +-0.138275,52.768601 +-0.386051,53.044025 +-0.057998,53.494377 +-0.005466,52.816351 +-0.617587,53.177894 +-0.416783,52.993869 +-0.662228,52.909789 +-0.027009,52.964079 +-0.205023,53.132799 +-0.540325,53.222173 +0.053653,52.815972 +-0.536189,53.186622 +-0.536539,53.228203 +-0.009892,52.98111 +-0.700203,53.409545 +-0.08324,52.889892 +-0.001211,52.810454 +-0.541296,53.29714 +-0.289519,52.6883 +0.340098,53.150493 +-0.587351,53.182762 +-0.029257,52.970958 +-0.531257,53.108853 +-0.417966,52.994514 +-0.642696,52.912885 +0.020047,52.789226 +-0.688609,52.920602 +-0.478193,52.9207 +-0.125364,52.765818 +-0.156736,53.113335 +0.21683,52.758414 +-0.690279,52.92196 +-0.634835,53.068599 +-0.134265,52.795457 +-0.615762,52.810249 +0.156596,53.123417 +-0.046003,52.950341 +-0.525086,53.226696 +0.332751,53.151797 +-0.152585,52.79577 +0.076791,53.176829 +-0.681156,52.918703 +-0.54133,53.229619 +-0.683146,52.927122 +-0.665128,52.903493 +-0.611784,53.214414 +-0.406403,53.138479 +-0.581107,53.188316 +0.272149,53.323534 +-0.551513,53.204429 +-0.545247,53.21879 +-0.376543,53.022337 +-0.379858,52.80222 +-0.616226,52.810587 +-0.487893,52.649909 +-0.018673,52.982263 +-0.006686,52.990883 +-0.629679,52.835214 +-0.658024,52.910137 +-0.433319,53.406136 +-0.244719,53.409715 +-0.464064,53.087769 +-0.549882,53.231009 +-0.339581,52.852891 +0.117643,52.784529 +-0.125487,52.76573 +0.137256,53.160457 +-0.227703,52.715299 +-0.618374,53.200449 +-0.122602,52.797988 +-0.032966,52.98046 +-0.555779,53.232978 +-0.360112,52.995627 +-0.125889,52.764981 +0.038093,52.857347 +-0.391004,52.766697 +-0.157335,52.796734 +-0.689916,53.164733 +0.101752,53.329733 +-0.413788,53.066621 +0.294816,53.134031 +-0.369002,52.76013 +0.343763,53.148029 +0.180413,53.288421 +-0.527673,53.245156 +-0.29001,53.070867 +-0.714298,52.970758 +-0.389,53.019333 +-0.500715,53.232199 +-1.239569,52.63527 +-1.376938,52.732532 +-1.121617,52.581683 +-1.11159,52.595858 +-1.46379,52.726844 +-1.144985,52.450013 +-1.115229,52.624069 +-1.283847,52.611273 +-0.969505,52.746144 +-1.106715,52.625039 +-1.168625,52.62059 +-1.195755,52.405283 +-1.118236,52.639824 +-1.182188,52.64181 +-1.111712,52.62629 +-1.189644,52.582213 +-1.412567,52.584832 +-1.122214,52.588745 +-1.111269,52.611678 +-0.999672,52.793824 +-1.00802,52.803648 +-1.354251,52.548748 +-1.094024,52.663689 +-1.227609,52.773142 +-1.087384,52.670111 +-1.162482,52.621266 +-1.135261,52.619542 +-1.300649,52.854097 +-1.2957,52.705513 +-0.926848,52.664361 +-1.439354,52.756037 +-1.034382,52.672838 +-1.019901,52.642512 +-1.163556,52.685012 +-1.156131,52.601982 +-1.191608,52.583755 +-1.121029,52.651621 +-1.131453,52.647787 +-0.888089,52.766985 +-1.124034,52.660274 +-0.887483,52.610282 +-1.121639,52.628566 +-1.111239,52.664224 +-1.289718,52.791374 +-1.162429,52.647246 +-1.278673,52.674486 +-1.289109,52.578177 +-1.161976,52.620678 +-0.678181,52.594152 +-1.122318,52.650013 +-1.200799,52.76802 +-1.127685,52.718286 +-1.145969,52.62567 +-0.895255,52.762018 +-1.130727,52.579997 +-1.145492,52.659307 +-1.279207,52.776837 +-1.046501,52.635807 +-1.359416,52.578937 +-1.205987,52.66193 +-1.207753,52.768651 +-1.122945,52.633458 +-1.191469,52.611353 +-1.144791,52.627028 +-1.141765,52.596664 +-1.276982,52.835032 +-1.389882,52.754759 +-1.345744,52.654693 +-1.131273,52.634481 +-1.156251,52.553436 +-1.420748,52.583434 +-0.956706,52.751741 +-0.94388,52.580367 +-1.126768,52.719717 +-1.147893,52.630826 +-1.36732,52.726863 +-1.1897,52.422908 +-1.102001,52.624374 +-0.884594,52.764525 +-1.153183,52.669071 +-1.365849,52.557531 +-1.369899,52.542539 +-1.114719,52.623705 +-1.163317,52.581311 +-0.893863,52.773062 +-1.302175,52.828396 +-1.139239,52.650227 +-0.952166,52.7526 +-1.309533,52.813651 +-0.813849,52.818183 +-1.324009,52.501382 +-0.823047,52.796295 +-1.154992,52.626651 +-1.193305,52.623952 +-1.129102,52.66566 +-1.373172,52.519767 +-1.166105,52.632708 +-1.477607,52.598891 +-1.069371,52.654868 +-1.529129,52.585532 +-1.133151,52.659082 +-1.117208,52.646828 +-1.079128,52.647797 +-1.161466,52.620314 +-1.152369,52.634724 +-0.871343,52.812721 +-1.122272,52.637561 +-1.19763,52.7711 +-1.27889,52.598387 +-1.358184,52.552141 +-0.968704,52.767533 +-1.205672,52.768997 +-1.130854,52.733861 +-1.128744,52.646464 +-1.054993,52.70802 +-1.134009,52.634366 +-1.141482,52.633791 +-1.115222,52.63171 +-1.167013,52.612128 +-0.973846,52.744249 +-1.340872,52.786905 +-1.152394,52.624988 +-1.185758,52.600796 +-1.13679,52.665716 +-1.166478,52.745219 +-1.152213,52.625193 +-1.154019,52.623453 +-1.155304,52.625799 +-1.325702,52.540003 +-1.111708,52.641078 +-1.089471,52.623064 +-1.148935,52.752242 +-1.395389,52.688758 +-1.338003,52.50636 +-1.265158,52.660244 +-1.11708,52.656896 +-1.271022,52.52979 +-1.100174,52.637827 +-1.193413,52.614063 +-1.139883,52.60227 +-1.37133,52.545559 +-1.087361,52.809544 +-1.089442,52.610208 +-1.116511,52.58605 +-1.15189,52.661016 +-1.272413,52.732621 +-1.069266,52.722427 +-1.051525,52.546935 +-1.009982,52.75449 +-1.084468,52.615025 +-1.124629,52.630476 +-1.136079,52.61027 +-0.933166,52.477512 +-1.089246,52.662349 +-1.127429,52.71253 +-1.145269,52.606264 +-1.144596,52.648377 +-1.130552,52.637307 +-1.271916,52.689502 +-1.189919,52.623344 +-1.13627,52.620808 +-1.144084,52.65188 +-1.103259,52.613415 +-1.363265,52.542459 +-0.885003,52.763046 +-1.161653,52.585749 +-1.109685,52.711589 +-1.370694,52.533329 +-1.067186,52.653322 +-1.269514,52.465142 +-1.091448,52.645285 +-1.489335,52.720259 +-1.218318,52.662776 +-1.1685,52.642749 +-1.448474,52.749562 +-1.135465,52.650424 +-1.4735,52.732101 +-1.111453,52.584349 +-1.09374,52.605881 +-1.017611,52.563246 +-1.304074,52.872096 +-1.380744,52.547271 +-1.24195,52.668503 +-1.142361,52.611502 +-1.13247,52.626264 +-1.111373,52.635727 +-0.679994,52.703225 +-1.216911,52.662901 +-1.135196,52.65658 +-1.349236,52.832528 +-1.206216,52.759426 +-1.197533,52.546217 +-1.401419,52.808126 +-1.11015,52.641399 +-1.092769,52.642194 +-1.046739,52.584071 +-1.136964,52.641894 +-1.119356,52.653991 +-1.122228,52.591712 +-1.323936,52.501336 +-1.138613,52.618128 +-1.129979,52.636377 +-1.066698,52.738678 +-1.189457,52.632331 +-1.159176,52.635716 +-1.107806,52.654939 +-1.169096,52.634707 +-1.235162,52.536244 +-0.887476,52.753225 +-1.138609,52.773968 +-1.086724,52.634371 +-0.913728,52.65678 +-1.108373,52.645234 +-0.935781,52.491201 +-0.891671,52.763063 +-1.02135,52.560984 +-1.224432,52.726689 +-1.398587,52.725182 +-0.944914,52.611077 +-1.143799,52.605894 +-1.48919,52.720078 +-1.192299,52.449627 +-1.177815,52.646455 +-1.140328,52.63612 +-1.113295,52.632055 +-1.081513,52.646827 +-0.887913,52.768062 +-0.821109,52.714331 +-1.073349,52.650602 +-1.160884,52.588171 +-1.065474,52.641397 +-1.216344,52.772268 +-1.09902,52.561582 +-1.06468,52.743022 +-1.372572,52.536045 +-1.285771,52.675491 +-1.359118,52.579161 +-1.253295,52.750724 +-1.125123,52.661316 +-1.111355,52.658516 +-0.945584,52.552377 +-1.288631,52.780715 +-1.115862,52.610966 +-0.926164,52.749536 +-0.900817,52.617464 +-1.152243,52.625175 +-1.101817,52.69827 +-1.16763,52.618515 +-1.280881,52.837123 +-1.088701,52.631689 +-0.72277,52.588932 +-1.187171,52.588264 +-1.068065,52.591073 +-1.095588,52.698942 +-1.08944,52.610298 +-0.829488,52.561491 +-1.156516,52.624235 +-1.121899,52.608161 +-1.102787,52.654541 +-1.125581,52.679074 +-1.161496,52.62027 +-0.839979,52.906812 +-1.041742,52.576299 +-0.75518,52.526075 +-1.122543,52.649834 +-1.128897,52.724318 +-1.216293,52.635478 +-1.20864,52.625583 +-1.31261,52.867831 +-1.073418,52.606758 +-1.371169,52.546547 +-1.430728,52.798247 +-0.936107,52.599671 +-1.099493,52.653006 +-1.200072,52.734843 +-0.897188,52.770531 +-1.365244,52.696466 +-1.100373,52.653354 +-1.15837,52.569903 +-1.112462,52.695114 +-1.206443,52.620399 +-1.132837,52.660024 +-1.211735,52.761531 +-1.111428,52.629389 +-1.198192,52.465445 +-1.13972,52.637015 +-1.225562,52.784096 +-1.103379,52.658142 +-1.050588,52.648381 +-1.519285,52.743218 +-1.121324,52.61845 +-1.120009,52.658266 +-1.151459,52.62597 +-1.151697,52.640427 +-1.31478,52.725178 +-1.161768,52.575052 +-0.968529,52.529924 +-1.136499,52.639221 +-1.167455,52.682252 +-1.153795,52.623586 +-1.376857,52.535339 +-1.072401,52.640912 +-1.089666,52.635023 +-1.163423,52.575738 +-0.957494,52.61928 +-1.054915,52.58135 +-1.253849,52.451424 +-1.124659,52.630477 +-1.183532,52.653012 +-1.112069,52.630545 +-1.40311,52.697517 +-1.451975,52.64163 +-1.154946,52.626741 +-0.821681,52.649113 +-1.071961,52.609309 +-1.366488,52.722948 +-1.126884,52.699041 +-1.21191,52.772409 +-1.386661,52.524782 +-1.118087,52.639867 +-1.155824,52.621803 +-1.128081,52.627805 +-0.918492,52.469467 +-1.206584,52.620805 +-1.158993,52.622185 +-0.879766,52.605984 +-1.349166,52.832258 +-1.517105,52.746175 +-1.105059,52.590325 +-1.123363,52.629505 +-0.839142,52.570216 +-1.102337,52.654897 +-1.143402,52.626253 +-1.373137,52.532578 +-1.068006,52.659936 +-1.081311,52.596526 +-1.106709,52.668865 +-1.128175,52.64165 +-1.140338,52.662011 +-1.199556,52.456778 +-1.150805,52.675032 +-1.117745,52.620177 +-1.193557,52.433138 +-1.401708,52.686452 +-1.223055,52.762504 +-1.133291,52.629551 +-1.133926,52.631084 +-1.37838,52.5371 +-0.967669,52.623145 +-1.134941,52.579579 +-1.48996,52.704799 +-1.250531,52.512491 +-1.18734,52.567139 +-1.168407,52.616498 +-1.102096,52.673864 +-1.168044,52.645757 +-1.14534,52.754239 +-0.600758,52.598432 +-0.937095,52.674747 +-1.151362,52.600419 +-1.108613,52.651573 +-1.284109,52.694836 +-1.046974,52.780549 +-1.115561,52.600248 +-1.104648,52.671996 +-1.106661,52.631286 +-1.140618,52.598679 +-0.887907,52.768287 +-1.097956,52.616342 +-1.068102,52.592827 +-1.260473,52.731953 +-1.108502,52.627974 +-1.074074,52.635172 +-1.136049,52.63955 +-1.265686,52.743403 +-1.055251,52.613762 +-1.115116,52.629687 +-1.302447,52.825341 +-1.122338,52.589914 +-1.117222,52.616802 +-1.315077,52.725134 +-0.916474,52.763921 +-0.867678,52.773894 +-0.971176,52.690915 +-0.933657,52.591108 +-1.224737,52.529676 +-0.988399,52.7971 +-1.158321,52.641778 +-1.074028,52.633823 +-1.129066,52.641432 +-1.123577,52.616579 +-0.978009,52.534322 +-1.23315,52.757266 +-1.111115,52.641164 +-1.087454,52.613475 +-1.151651,52.573991 +-1.048858,52.653177 +-1.147429,52.742073 +-1.125875,52.63098 +-1.13428,52.624344 +-1.168227,52.645444 +-1.081646,52.598147 +-1.000004,52.649808 +-1.177147,52.650586 +-1.110195,52.641382 +-1.356097,52.513337 +-1.123369,52.634423 +-0.902834,52.769999 +-1.106408,52.669114 +-1.402869,52.530619 +-1.120764,52.627976 +-0.834894,52.938406 +-1.115789,52.610947 +-1.121001,52.638271 +-1.080742,52.648394 +-1.392507,52.560458 +-1.131747,52.688919 +-0.712159,52.573219 +-1.124921,52.646975 +-1.211737,52.588817 +-1.355418,52.605032 +-1.337432,52.842576 +-1.099732,52.616131 +-1.056065,52.761248 +-1.181235,52.411477 +-1.113907,52.598078 +-1.194162,52.645668 +-1.121179,52.651532 +-1.089585,52.610434 +-1.283281,52.609786 +-1.147263,52.503477 +-1.143407,52.63358 +-1.147051,52.666555 +-1.308426,52.574425 +-1.177118,52.652114 +-1.119928,52.631386 +-0.889844,52.753337 +-1.206827,52.778848 +-1.175912,52.617988 +-1.196293,52.674585 +-1.423983,52.693485 +-1.129016,52.636532 +-1.206909,52.774354 +-0.614223,52.737761 +-0.901065,52.492412 +-1.159731,52.591309 +-1.116447,52.657476 +-1.171401,52.575209 +-1.089902,52.680604 +-1.393565,52.547859 +-1.286483,52.839512 +-1.049037,52.631332 +-0.885485,52.776068 +-1.168225,52.633892 +-1.501697,52.746292 +-0.514377,52.655324 +-0.606462,52.725668 +-1.133643,52.58926 +-1.379795,52.604083 +-1.014777,52.788197 +-1.106947,52.635424 +-1.316005,52.575728 +-1.062309,52.644276 +-1.145249,52.595907 +-1.337097,52.561689 +-0.88833,52.774988 +-1.375693,52.544638 +-1.075013,52.64318 +-1.163123,52.490689 +-1.301478,52.681976 +-1.226485,52.530856 +-1.25103,52.53951 +-1.149494,52.628275 +-1.178554,52.516149 +-1.144143,52.664017 +-0.923617,52.470593 +-1.147026,52.629831 +-1.178743,52.569282 +-1.381902,52.727119 +-1.160177,52.652939 +-1.115159,52.71172 +-0.603803,52.597839 +-1.093887,52.684635 +-1.371645,52.724728 +-1.51724,52.713858 +-1.111404,52.583117 +-1.029558,52.630186 +-1.314038,52.70171 +-1.187217,52.521873 +-0.985675,52.812179 +-1.318088,52.569897 +-1.074459,52.637917 +-1.168965,52.610433 +-0.99036,52.773248 +-1.508441,52.706495 +-1.133311,52.658454 +-1.086665,52.658508 +-1.272491,52.790173 +-1.169479,52.661275 +-1.281415,52.737206 +-1.096392,52.699442 +-1.133361,52.633507 +-1.125307,52.644641 +-1.134413,52.733618 +-0.729247,52.671173 +-1.102745,52.64218 +-1.195468,52.425105 +-1.135634,52.634378 +-1.217138,52.728799 +-1.294542,52.625811 +-1.196323,52.777654 +-0.605522,52.613457 +-1.131426,52.596904 +-1.223687,52.768621 +-1.134531,52.637831 +-1.149511,52.631197 +-1.394744,52.553322 +-1.133104,52.601636 +-1.294004,52.695974 +-1.38524,52.626496 +-1.088763,52.657131 +-1.145269,52.594892 +-1.146804,52.667857 +-0.894423,52.774371 +-1.186193,52.597203 +-0.748712,52.683517 +-1.094576,52.447031 +-1.134993,52.618146 +-1.070215,52.649885 +-1.132117,52.629138 +-0.870261,52.748567 +-1.149853,52.644055 +-1.29465,52.485657 +-1.152306,52.631873 +-1.216463,52.468579 +-1.303259,52.700182 +-1.11272,52.621757 +-1.148679,52.594152 +-1.178299,52.681384 +-0.893371,52.772024 +-1.127024,52.640095 +-1.129513,52.641255 +-1.162544,52.490145 +-1.047061,52.779965 +-1.154847,52.62265 +-1.176999,52.650567 +-1.069252,52.643045 +-1.24153,52.54745 +-1.126749,52.646494 +-1.180443,52.667959 +-1.19275,52.738389 +-1.159859,52.619359 +-1.11024,52.618727 +-1.198564,52.469268 +-1.188693,52.629737 +-1.272834,52.790058 +-1.078775,52.657593 +-1.142043,52.608893 +-1.168557,52.631961 +-1.129359,52.596889 +-1.340566,52.709007 +-1.048107,52.554954 +-0.932529,52.71642 +-1.133368,52.629417 +-1.223498,52.533039 +-1.099566,52.638649 +-1.157113,52.650804 +-1.344266,52.674417 +-1.183873,52.630674 +-1.321052,52.864688 +-0.834121,52.720438 +-1.132773,52.659484 +-1.152562,52.633916 +-1.121108,52.607121 +-1.323267,52.564128 +-1.059253,52.557965 +-1.357435,52.825112 +-1.014546,52.5585 +-1.115845,52.611802 +-1.550929,52.683695 +-1.270232,52.741723 +-1.216261,52.624843 +-1.104912,52.448863 +-1.142524,52.612969 +-1.180516,52.74707 +-1.127903,52.636776 +-0.875105,52.69274 +-1.47098,52.726112 +-1.095469,52.550605 +-1.065117,52.590897 +-1.274804,52.854391 +-1.10617,52.586512 +-1.130305,52.636362 +-1.129136,52.641612 +-1.102317,52.551107 +-1.24683,52.582456 +-1.232316,52.77942 +-1.211575,52.766294 +-1.119462,52.653857 +-1.10697,52.630659 +-1.124458,52.630161 +-1.341287,52.823225 +-1.078702,52.657548 +-1.204306,52.77074 +-1.222306,52.533751 +-1.05956,52.75377 +-1.0916,52.64151 +-1.148452,52.647731 +-0.930479,52.474179 +-0.924401,52.616467 +-1.348838,52.715121 +-1.062308,52.644312 +-1.070947,52.643283 +-1.179426,52.63148 +-1.188669,52.631022 +-1.481042,52.570588 +-1.343079,52.728934 +-1.12933,52.63559 +-1.23437,52.665623 +-1.148274,52.588351 +-1.118236,52.639842 +-1.211883,52.761541 +-1.183671,52.542211 +-1.189794,52.509979 +-1.377422,52.812947 +-1.413772,52.569779 +-0.941515,52.537597 +-1.299921,52.830135 +-1.299398,52.830357 +-0.98558,52.771634 +-1.101889,52.665907 +-0.934931,52.807393 +-1.230486,52.538075 +-1.117116,52.651412 +-1.197969,52.485851 +-1.190589,52.450604 +-1.176235,52.529843 +-1.324563,52.743708 +-1.210245,52.774286 +-0.927942,52.483443 +-1.298677,52.625953 +-1.391764,52.736655 +-1.145771,52.633579 +-0.866113,52.808473 +-1.081416,52.711419 +-1.089991,52.665636 +-0.888532,52.758314 +-1.200541,52.453593 +-1.130257,52.63353 +-1.319292,52.563611 +-1.361775,52.721304 +-1.132259,52.625723 +-1.149319,52.625892 +-1.091322,52.615707 +-1.378184,52.556248 +-1.355694,52.721991 +-1.129506,52.663955 +-1.213686,52.632539 +-1.097848,52.664707 +-1.126016,52.60909 +-0.936912,52.676184 +-1.151474,52.659574 +-1.135414,52.57951 +-1.125724,52.645992 +-1.097966,52.669743 +-1.020702,52.667538 +-1.108776,52.732214 +-1.134825,52.656667 +-1.123971,52.637574 +-1.051602,52.546801 +-1.352194,52.658369 +-1.18548,52.643631 +-1.176507,52.594124 +-1.150614,52.639116 +-1.151732,52.669151 +-1.096685,52.552458 +-1.376877,52.533946 +-1.359683,52.514975 +-1.087162,52.663052 +-0.749631,52.788532 +-1.552831,52.758227 +-0.513276,52.655085 +-1.168568,52.666438 +-1.121992,52.633082 +-1.097364,52.652297 +-1.15686,52.633227 +-1.376351,52.539876 +-1.146211,52.633735 +-1.15146,52.625952 +-1.122619,52.649745 +-1.325191,52.861251 +-1.046897,52.6448 +-1.108649,52.624379 +-0.770972,52.936189 +-1.288303,52.864406 +-1.107592,52.629136 +-1.130264,52.655555 +-0.627859,52.635969 +-1.067889,52.710594 +-0.949312,52.812717 +-1.322461,52.702522 +-1.340573,52.570923 +-1.172355,52.661655 +-1.377945,52.536604 +-1.18344,52.642044 +-1.05683,52.646813 +-1.176465,52.745829 +-1.24125,52.764375 +-1.13059,52.631644 +-0.600137,52.733595 +-0.944112,52.539958 +-1.274207,52.75658 +-1.0764,52.510524 +-1.104911,52.448908 +-1.192236,52.481272 +-1.160902,52.626603 +-1.364531,52.602833 +-1.089247,52.662304 +-1.178334,52.599036 +-1.119259,52.603601 +-1.139295,52.639799 +-1.095651,52.642171 +-1.122694,52.649701 +-1.131472,52.661722 +-1.126789,52.644472 +-1.372425,52.608404 +-1.167938,52.742443 +-1.410688,52.733649 +-1.160795,52.616759 +-1.301607,52.854552 +-1.093819,52.58062 +-1.153837,52.621429 +-1.169515,52.577444 +-1.225812,52.761623 +-1.134276,52.6283 +-1.136995,52.640321 +-1.152858,52.626232 +-1.150886,52.667032 +-1.374657,52.721148 +-1.135684,52.639323 +-1.201522,52.756833 +-1.004343,52.536793 +-1.305498,52.493498 +-1.136453,52.611504 +-1.182931,52.530474 +-1.510885,52.726148 +-1.07145,52.612523 +-1.200373,52.698166 +-1.345564,52.713305 +-1.105669,52.654608 +-1.10355,52.58829 +-1.117113,52.629567 +-1.137797,52.599468 +-1.116827,52.662108 +-1.14517,52.634088 +-1.101974,52.622081 +-1.211735,52.662957 +-0.97663,52.707594 +-1.064069,52.631074 +-1.182543,52.626737 +-1.142047,52.658554 +-1.147612,52.647599 +-1.476691,52.762365 +-1.333738,52.85595 +-0.975154,52.827372 +-1.374642,52.732565 +-1.235629,52.755304 +-1.294011,52.622122 +-1.093976,52.612356 +-1.115848,52.610912 +-1.163612,52.623971 +-1.135508,52.631788 +-1.392555,52.807632 +-1.280519,52.670182 +-0.8777,52.753088 +-1.165864,52.773488 +-1.144295,52.652466 +-0.953347,52.681634 +-1.106651,52.497423 +-1.159472,52.751328 +-1.070756,52.650878 +-0.914077,52.6188 +-1.199525,52.610958 +-1.089473,52.672779 +-1.408225,52.576315 +-1.18316,52.530026 +-1.18339,52.54149 +-1.309983,52.578615 +-1.098694,52.655904 +-1.283959,52.839569 +-0.923815,52.480574 +-1.254707,52.761763 +-0.972773,52.752106 +-1.1371,52.61996 +-1.275705,52.768995 +-1.09357,52.635592 +-1.144479,52.631655 +-1.179203,52.631541 +-1.151554,52.582845 +-0.905428,52.722691 +-1.171318,52.575703 +-1.138787,52.63557 +-1.363944,52.531135 +-1.19744,52.62807 +-1.197971,52.76463 +-1.115788,52.610965 +-1.168484,52.776024 +-1.1196,52.627113 +-1.335145,52.505355 +-0.970777,52.531517 +-0.79681,52.954164 +-1.38583,52.753147 +-1.123518,52.638065 +-1.216726,52.63602 +-1.197217,52.628159 +-1.1504,52.711169 +-1.404403,52.722155 +-1.113486,52.622572 +-1.341214,52.823207 +-1.215076,52.765328 +-1.295917,52.632202 +-1.16056,52.617476 +-1.17392,52.397761 +-1.123364,52.629478 +-1.255685,52.639058 +-1.128395,52.515206 +-0.898918,52.616592 +-1.345296,52.664894 +-1.173598,52.658472 +-1.230636,52.76961 +-1.179153,52.404855 +-1.152414,52.633933 +-1.056241,52.783949 +-1.146245,52.647221 +-1.103038,52.761451 +-0.864049,52.853465 +-1.241762,52.43975 +-1.219918,52.772175 +-1.2121,52.761848 +-1.151941,52.625506 +-1.195891,52.656153 +-1.151428,52.62757 +-0.895434,52.614177 +-0.941783,52.578595 +-1.109208,52.582265 +-1.263853,52.500034 +-1.132913,52.62624 +-1.457756,52.694004 +-1.254423,52.613339 +-1.160008,52.61927 +-1.200309,52.653082 +-1.154989,52.626786 +-1.103629,52.642303 +-1.20217,52.542607 +-1.191328,52.606992 +-1.102052,52.636331 +-1.119284,52.642843 +-1.281567,52.54752 +-1.034754,52.652568 +-1.118462,52.602831 +-1.096626,52.652247 +-1.261529,52.800911 +-1.09588,52.695573 +-1.186549,52.601925 +-1.369595,52.759103 +-1.202766,52.468919 +-1.086935,52.642014 +-1.36687,52.747716 +-1.324875,52.824122 +-1.112549,52.621442 +-1.15255,52.634545 +-1.108916,52.625774 +-1.153837,52.621411 +-1.185481,52.643586 +-1.304251,52.679673 +-1.221231,52.766717 +-1.191139,52.492907 +-0.897361,52.828203 +-1.274029,52.789526 +-1.198265,52.576428 +-0.688994,52.580562 +-1.137918,52.63844 +-1.34928,52.849474 +-1.396672,52.54178 +-1.122217,52.643989 +-1.235587,52.571236 +-1.367348,52.545627 +-1.174857,52.638703 +-1.079052,52.647886 +-1.199919,52.63393 +-0.917158,52.481817 +-1.100102,52.616133 +-1.142678,52.625529 +-1.084246,52.673098 +-1.079276,52.647798 +-0.936962,52.530769 +-1.395799,52.535572 +-1.125827,52.637093 +-1.387219,52.542945 +-1.365775,52.557576 +-1.088147,52.626336 +-1.062524,52.677783 +-1.108694,52.636696 +-1.368103,52.544373 +-1.095475,52.697278 +-1.185393,52.751689 +-1.135032,52.597425 +-1.199071,52.775739 +-0.956679,52.765271 +-1.086764,52.594815 +-1.105183,52.642171 +-1.167932,52.614247 +-1.187759,52.67219 +-0.582814,52.616874 +-0.887443,52.771969 +-0.852617,52.777301 +-1.09713,52.642137 +-1.161671,52.632767 +-1.400962,52.529935 +-1.287113,52.701147 +-1.099347,52.652897 +-1.292974,52.768875 +-1.142975,52.629217 +-1.349204,52.715348 +-1.186266,52.597248 +-1.075642,52.721982 +-1.110716,52.595267 +-1.102403,52.673327 +-1.062583,52.598941 +-1.109471,52.667582 +-1.145689,52.634001 +-1.12739,52.625372 +-1.209107,52.767581 +-1.287287,52.763132 +-1.275114,52.751012 +-1.487382,52.729015 +-1.185525,52.643586 +-1.140452,52.633559 +-1.334569,52.840448 +-1.099075,52.637342 +-0.970997,52.745708 +-1.496812,52.745956 +-0.602075,52.610405 +-1.472903,52.615636 +-1.081343,52.665524 +-1.16146,52.636092 +-1.208726,52.575689 +-1.01185,52.62923 +-0.522662,52.670487 +-1.224009,52.783888 +-1.316302,52.760426 +-1.138274,52.60527 +-1.11122,52.595855 +-1.133443,52.629328 +-1.183202,52.595294 +-1.101986,52.498647 +-0.712543,52.758917 +-0.665578,52.712458 +-1.503677,52.708903 +-0.800252,52.597609 +-0.977939,52.534177 +-0.600781,52.736614 +-1.159908,52.647678 +-1.111487,52.641077 +-1.11,52.728852 +-1.138746,52.633906 +-1.367326,52.562528 +-1.126924,52.741564 +-1.074558,52.629718 +-1.284893,52.719293 +-1.067702,52.611658 +-1.197894,52.485895 +-1.064901,52.743069 +-1.204116,52.724262 +-0.919331,52.690364 +-1.162264,52.621039 +-1.127894,52.629781 +-1.253979,52.613381 +-1.175736,52.603738 +-1.142889,52.610922 +-1.28104,52.548191 +-1.27881,52.553797 +-1.134937,52.628529 +-1.337401,52.51701 +-1.273101,52.760691 +-1.195771,52.553846 +-0.629378,52.667768 +-0.908032,52.547092 +-1.411958,52.534395 +-0.744947,52.760613 +-1.20588,52.635229 +-1.136108,52.610288 +-1.063092,52.609706 +-0.906924,52.754655 +-1.117809,52.589791 +-0.776426,52.84828 +-1.209544,52.6246 +-0.988516,52.811215 +-1.426098,52.749995 +-1.146531,52.632479 +-0.844062,52.728042 +-0.888619,52.766541 +-1.154696,52.622828 +-1.155476,52.602274 +-1.21395,52.570735 +-1.098512,52.640313 +-1.110194,52.6414 +-1.143128,52.662993 +-1.037476,52.572309 +-1.320904,52.864687 +-1.017284,52.788847 +-1.108185,52.592641 +-0.826438,52.532062 +-1.37126,52.617523 +-1.234763,52.75822 +-1.163937,52.661146 +-1.273325,52.528681 +-1.093443,52.645318 +-1.146534,52.632344 +-1.160542,52.653166 +-1.149453,52.634208 +-1.123013,52.500558 +-1.134774,52.633023 +-1.159729,52.591444 +-0.955985,52.760185 +-1.175221,52.654708 +-1.213939,52.779075 +-0.600916,52.737021 +-1.141742,52.650694 +-1.044185,52.535189 +-1.202216,52.77158 +-1.185751,52.597155 +-1.095654,52.620505 +-1.296256,52.762961 +-1.185225,52.673251 +-1.011399,52.613179 +-1.389809,52.664457 +-1.103087,52.582084 +-1.071738,52.595417 +-1.120118,52.652828 +-1.132756,52.660338 +-1.065897,52.644457 +-1.128227,52.665069 +-0.935049,52.807421 +-1.123815,52.637977 +-1.133389,52.658275 +-1.229362,52.488577 +-1.125021,52.644189 +-1.130347,52.636452 +-1.14745,52.630841 +-1.344034,52.63558 +-1.121559,52.650996 +-1.210971,52.77101 +-1.048286,52.710169 +-1.335752,52.850478 +-1.157552,52.620287 +-1.361652,52.541776 +-1.492365,52.707956 +-1.109257,52.62717 +-1.138146,52.638127 +-1.22843,52.781193 +-1.146983,52.635854 +-1.267741,52.740089 +-1.186774,52.601747 +-1.107051,52.6303 +-1.182206,52.624999 +-1.162928,52.621089 +-1.205218,52.46765 +-1.538819,52.702887 +-1.124299,52.610022 +-1.19285,52.467791 +-1.478367,52.746191 +-1.538329,52.693221 +-0.970922,52.531608 +-1.472731,52.746751 +-1.112362,52.586828 +-1.271135,52.002671 +-1.275906,52.008491 +-0.677674,52.364922 +-0.692491,52.412252 +-0.725513,52.305534 +-0.678369,52.3121 +-0.746234,52.451971 +-0.547212,52.353681 +-0.723616,52.222024 +-0.457877,52.470896 +-0.799793,52.422947 +-0.693341,52.304787 +-0.597462,52.293231 +-0.701401,52.385199 +-0.592949,52.30839 +-0.533688,52.599518 +-0.538919,52.386539 +-0.738759,52.47666 +-0.609217,52.29292 +-0.706087,52.49623 +-0.544294,52.561088 +-0.660374,52.475529 +-0.734433,52.440643 +-0.806042,52.420781 +-0.660534,52.327526 +-0.717225,52.314723 +-0.55535,52.493488 +-0.590498,52.524255 +-0.703089,52.4935 +-0.612529,52.292024 +-0.711698,52.398429 +-0.650804,52.290894 +-0.683253,52.491339 +-0.699566,52.496069 +-0.595679,52.289325 +-0.652871,52.495556 +-0.566032,52.259838 +-0.697898,52.380917 +-0.715804,52.280668 +-0.687903,52.393429 +-0.548395,52.351178 +-0.698189,52.300534 +-0.723136,52.39528 +-0.612422,52.303432 +-0.665734,52.485236 +-0.628761,52.363205 +-0.699177,52.304824 +-0.700925,52.261148 +-0.840231,52.408489 +-0.690007,52.500009 +-0.738864,52.459597 +-0.713607,52.409113 +-0.59584,52.289336 +-0.694487,52.307703 +-0.751343,52.388344 +-0.462022,52.452941 +-0.658004,52.335499 +-0.525707,52.390987 +-0.678603,52.292386 +-0.556196,52.366819 +-0.920668,52.080937 +-0.945933,52.210112 +-0.894773,52.234117 +-0.931357,52.289971 +-0.88937,52.262846 +-1.041391,52.257435 +-0.809152,52.252768 +-0.773125,52.211472 +-0.997815,52.139195 +-0.880227,52.237792 +-0.845365,52.239812 +-0.961308,52.165205 +-0.898854,52.252038 +-0.829511,52.256253 +-1.13608,52.042092 +-0.845876,52.277102 +-0.975167,52.235265 +-0.882229,52.232713 +-0.846896,52.255902 +-0.93834,52.237628 +-0.912593,52.235946 +-0.843874,52.269008 +-0.877517,52.241893 +-1.165788,52.266911 +-0.931401,52.289972 +-0.90707,52.029995 +-0.899103,52.252031 +-0.894261,52.24411 +-0.980655,52.146484 +-0.926783,52.240787 +-0.84894,52.277105 +-0.860261,52.268296 +-0.885866,52.042707 +-0.856473,52.324379 +-0.813608,52.25871 +-0.905807,52.224861 +-0.901228,52.234816 +-0.893466,52.234267 +-1.008128,52.207073 +-0.880159,52.260286 +-0.936666,52.242728 +-0.890944,52.243773 +-0.846567,52.275922 +-0.900642,52.242506 +-0.80921,52.244011 +-0.929355,52.245288 +-1.024796,52.301955 +-1.183174,52.255399 +-0.904616,52.236376 +-0.876156,52.069444 +-0.891927,52.356561 +-1.034349,52.383919 +-0.912555,52.216508 +-0.894101,52.189831 +-0.896354,52.231147 +-0.938258,52.24045 +-0.816862,52.250409 +-1.20491,52.321195 +-0.904569,52.207946 +-0.900122,52.267091 +-1.184851,52.255006 +-0.876314,52.251817 +-0.905239,52.222967 +-0.870202,52.057951 +-0.878804,52.219312 +-1.112643,52.284307 +-1.169921,52.251962 +-0.949754,52.220018 +-0.885549,52.217074 +-0.935323,52.252363 +-0.86424,52.252528 +-0.652875,52.265653 +-0.697525,52.48488 +-0.761854,52.360898 +-0.730021,52.412446 +-0.706826,52.318682 +-0.812433,52.412268 +-0.713787,52.502922 +-0.593589,52.289579 +-0.647969,52.280468 +-0.74921,52.390515 +-0.693245,52.485696 +-0.615839,52.289348 +-0.607985,52.2934 +-0.732206,52.395711 +-0.708327,52.491184 +-0.879578,52.405291 +-0.678456,52.363807 +-0.712031,52.397075 +-0.782691,52.255564 +-0.534231,52.389214 +-0.583706,52.300169 +-0.729822,52.424482 +-0.698365,52.501324 +-0.687793,52.221524 +-0.734654,52.440106 +-0.719999,52.456931 +-0.765179,52.412261 +-0.647475,52.472667 +-0.705345,52.292008 +-0.6869,52.490049 +-0.726574,52.4091 +-0.668415,52.356826 +-0.649796,52.505059 +-0.596681,52.291028 +-0.588945,52.293606 +-0.695004,52.3754 +-0.738897,52.386801 +-0.81858,52.439715 +-0.595973,52.516193 +-0.724323,52.375487 +-0.701026,52.304323 +-0.717661,52.473089 +-0.659205,52.34916 +-0.54688,52.34768 +-0.66,52.481521 +-0.689687,52.32422 +-0.686037,52.308769 +-0.597388,52.289067 +-0.59047,52.287151 +-0.702176,52.355241 +-0.729492,52.493724 +-0.895113,52.487151 +-0.883532,52.405319 +-0.590949,52.28962 +-0.691718,52.490498 +-0.695346,52.376249 +-0.719138,52.292167 +-0.661329,52.489178 +-0.461988,52.42221 +-0.599143,52.289214 +-0.736701,52.458028 +-0.685616,52.490152 +-0.716552,52.47376 +-0.719451,52.30875 +-0.719451,52.30875 +-0.580617,52.551397 +-0.591227,52.321055 +-0.533894,52.599538 +-0.714961,52.409541 +-0.525103,52.376927 +-0.719378,52.308749 +-0.580589,52.287599 +-0.693425,52.369692 +-0.606828,52.330258 +-0.745882,52.412031 +-0.70264,52.49622 +-0.696404,52.421637 +-0.720223,52.405543 +-0.732103,52.383392 +-0.706856,52.318664 +-0.499599,52.418108 +-0.723748,52.490156 +-0.661038,52.476435 +-0.677053,52.300128 +-0.684242,52.492285 +-0.684475,52.306513 +-0.723121,52.401403 +-0.592525,52.319443 +-0.826015,52.426753 +-0.69867,52.484021 +-0.685274,52.294394 +-0.534185,52.347109 +-0.701892,52.467109 +-0.681931,52.290436 +-0.69004,52.49048 +-0.688833,52.38586 +-0.650608,52.291063 +-0.572684,52.335991 +-0.628038,52.298355 +-0.667837,52.50289 +-0.862727,52.463802 +-0.718954,52.413297 +-0.74065,52.343781 +-0.736303,52.4601 +-0.719829,52.291087 +-0.820658,52.456656 +-0.690119,52.304625 +-0.723561,52.499666 +-0.684205,52.492024 +-0.674503,52.464432 +-0.72675,52.308946 +-0.725355,52.392733 +-0.535396,52.397069 +-0.538891,52.386494 +-0.7151,52.294893 +-0.726953,52.308525 +-0.759702,52.255648 +-0.690622,52.287575 +-0.693133,52.511345 +-0.744121,52.406204 +-0.69784,52.50113 +-0.729556,52.267294 +-0.684443,52.376857 +-0.698555,52.490915 +-0.705666,52.492 +-0.704446,52.407646 +-0.68257,52.201119 +-0.826392,52.480097 +-0.699794,52.507813 +-0.657513,52.483426 +-0.714844,52.372597 +-0.539456,52.389405 +-0.801954,52.423491 +-0.564928,52.33213 +-0.726902,52.304173 +-0.75188,52.403697 +-0.688908,52.301438 +-0.651699,52.495839 +-0.668225,52.356815 +-0.694627,52.481297 +-0.686138,52.308798 +-0.623582,52.317678 +-0.688999,52.385718 +-0.719916,52.291097 +-0.736531,52.388888 +-0.52318,52.394067 +-0.709116,52.409351 +-0.662091,52.325053 +-0.71954,52.33718 +-0.475893,52.490639 +-0.696616,52.490723 +-0.698605,52.303847 +-0.476164,52.489609 +-0.730529,52.394209 +-0.730192,52.493983 +-0.576906,52.265715 +-0.713394,52.39976 +-0.581556,52.286217 +-0.667242,52.368492 +-0.521178,52.563679 +-0.617074,52.300996 +-0.708457,52.298938 +-0.761075,52.254745 +-0.749883,52.394272 +-0.711818,52.392272 +-0.607166,52.330703 +-0.743471,52.392873 +-0.650278,52.473454 +-0.600157,52.289127 +-0.495783,52.385917 +-0.737215,52.459103 +-0.676689,52.299054 +-0.412562,52.506053 +-0.719451,52.30875 +-0.517394,52.603702 +-0.570181,52.34034 +-0.651585,52.279664 +-0.781057,52.368021 +-0.811297,52.482365 +-0.459929,52.486782 +-0.682656,52.355915 +-0.616079,52.300922 +-0.690637,52.302968 +-0.681938,52.488052 +-0.671515,52.368027 +-0.729928,52.411591 +-0.698145,52.497294 +-0.776711,52.372202 +-0.47435,52.477763 +-0.669301,52.317537 +-0.737978,52.386584 +-0.710241,52.328879 +-0.696144,52.307227 +-0.918555,52.442856 +-0.735208,52.442863 +-0.724549,52.395691 +-0.547071,52.35082 +-0.617018,52.301373 +-0.685224,52.484052 +-0.711678,52.284471 +-0.699716,52.294949 +-0.731041,52.293806 +-0.534705,52.346477 +-0.606508,52.554015 +-0.64616,52.499678 +-0.510829,52.396852 +-0.5239,52.383053 +-0.641568,52.334951 +-0.73535,52.401921 +-0.492559,52.423602 +-0.685351,52.487685 +-0.748525,52.39031 +-0.459929,52.486782 +-0.683623,52.288253 +-0.716079,52.402954 +-0.738555,52.476604 +-0.703912,52.358155 +-0.459929,52.486764 +-0.716031,52.407638 +-0.723893,52.408766 +-0.723973,52.391738 +-0.698129,52.502841 +-0.709502,52.310907 +-0.688827,52.392019 +-0.713074,52.403685 +-0.800838,52.422904 +-0.692072,52.30257 +-0.699605,52.345296 +-0.735142,52.47548 +-0.6859,52.437623 +-0.656124,52.346185 +-0.73173,52.409749 +-0.695621,52.286102 +-0.706405,52.495928 +-0.734823,52.403372 +-0.819192,52.435531 +-0.929525,52.400566 +-0.737914,52.39035 +-0.599455,52.289074 +-0.593512,52.317459 +-0.751597,52.406975 +-0.754501,52.442681 +-0.734988,52.405828 +-0.696503,52.485085 +-0.7838,52.374019 +-0.589441,52.289997 +-0.474782,52.488692 +-0.737925,52.475968 +-0.59972,52.296953 +-0.686576,52.510841 +-0.70624,52.481973 +-0.727248,52.308456 +-0.681618,52.373031 +-0.645788,52.281342 +-0.75221,52.424828 +-0.712334,52.401331 +-0.626895,52.354714 +-0.733678,52.417187 +-0.59288,52.319834 +-0.692071,52.303577 +-0.710247,52.328681 +-0.689515,52.347424 +-0.818771,52.414957 +-0.702683,52.481745 +-0.855606,52.227109 +-0.727969,52.407605 +-0.72665,52.308855 +-0.700228,52.347083 +-0.684128,52.361236 +-0.684587,52.28936 +-0.805498,52.40283 +-0.655037,52.345256 +-0.467459,52.513753 +-0.761795,52.360907 +-0.805921,52.418217 +-0.58369,52.300232 +-0.736701,52.458037 +-0.647487,52.380027 +-0.73479,52.460003 +-0.823282,52.413411 +-0.695176,52.312719 +-0.523243,52.317726 +-0.465801,52.322919 +-0.475679,52.489162 +-0.591256,52.351535 +-0.792689,52.4402 +-0.698015,52.485245 +-0.701594,52.313967 +-0.699458,52.307776 +-0.795149,52.483757 +-0.693956,52.496978 +-0.723192,52.401476 +-0.718042,52.278831 +-0.702928,52.299956 +-0.693039,52.302113 +-0.59972,52.296962 +-0.727392,52.308575 +-0.784009,52.373374 +-0.70881,52.404223 +-0.70903,52.331158 +-0.72452,52.395673 +-0.64424,52.282107 +-0.596045,52.516248 +-0.686177,52.388231 +-0.821588,52.414068 +-0.546883,52.345351 +-0.699191,52.305849 +-0.584988,52.494808 +-0.706161,52.496213 +-0.696592,52.386333 +-0.696388,52.484985 +-0.709902,52.283508 +-0.712085,52.283046 +-0.75007,52.39546 +-0.525895,52.42021 +-0.728353,52.49542 +-0.770347,52.380263 +-0.6954,52.37643 +-0.717581,52.472288 +-0.603686,52.294869 +-0.57625,52.330999 +-0.684642,52.365711 +-0.789323,52.456186 +-0.698944,52.396806 +-0.736916,52.458255 +-0.724538,52.401193 +-0.724608,52.395701 +-0.774913,52.482767 +-0.701137,52.396686 +-0.506868,52.626622 +-0.702765,52.483985 +-0.54832,52.353461 +-0.606272,52.287248 +-0.52927,52.389926 +-0.687803,52.310524 +-0.659766,52.481474 +-0.476767,52.481956 +-0.575665,52.265098 +-0.72272,52.464611 +-0.594393,52.306321 +-0.751194,52.388442 +-0.544737,52.375381 +-0.700335,52.310384 +-0.547339,52.353395 +-0.783493,52.304967 +-0.733162,52.299107 +-0.704806,52.489707 +-0.701223,52.3131 +-0.679165,52.361702 +-0.502484,52.502172 +-0.59739,52.286684 +-0.697668,52.289289 +-0.71305,52.300346 +-0.724578,52.39571 +-0.822842,52.439308 +-0.734529,52.30929 +-0.708112,52.302737 +-0.523467,52.390752 +-0.751329,52.406559 +-0.70387,52.480455 +-0.538063,52.284697 +-0.733793,52.431151 +-0.752619,52.407193 +-0.653125,52.495945 +-0.730126,52.402126 +-0.676308,52.29807 +-0.765988,52.434916 +-0.753604,52.408255 +-0.723073,52.400998 +-0.685296,52.493978 +-0.688184,52.364132 +-0.688366,52.293466 +-0.72631,52.402417 +-0.746863,52.264692 +-0.726761,52.404625 +-0.727922,52.407721 +-0.679863,52.492902 +-0.786085,52.357122 +-0.668195,52.356832 +-0.706001,52.408769 +-0.442393,52.474964 +-0.545851,52.368751 +-0.828214,52.428132 +-0.426261,52.562653 +-0.599991,52.296255 +-0.592907,52.319898 +-0.740958,52.458433 +-0.720044,52.496993 +-0.774047,52.335798 +-0.713984,52.371338 +-0.625788,52.319844 +-0.57826,52.285215 +-0.537359,52.358144 +-0.731008,52.493776 +-0.728105,52.402365 +-0.690839,52.287191 +-0.629956,52.296543 +-0.724486,52.395861 +-0.720514,52.377163 +-0.525059,52.391051 +-0.614757,52.289722 +-0.714865,52.509416 +-0.644077,52.282168 +-0.540325,52.392472 +-0.474839,52.488729 +-0.474711,52.488592 +-0.706993,52.402513 +-0.699002,52.305793 +-0.783001,52.255486 +-0.569131,52.341945 +-0.740628,52.468966 +-0.587074,52.299419 +-0.750413,52.389027 +-0.79821,52.422751 +-0.837022,52.480166 +-0.528415,52.366997 +-0.786211,52.339124 +-0.573054,52.429806 +-0.789876,52.352189 +-0.58204,52.549355 +-0.488932,52.321014 +-0.685147,52.439179 +-0.8057,52.366474 +-0.93689,52.233353 +-0.880946,52.251132 +-0.860413,52.146238 +-0.884509,52.201906 +-0.934659,52.402239 +-0.860433,52.255297 +-1.130866,52.213039 +-0.883129,52.245282 +-0.862576,52.249995 +-0.868681,52.22247 +-0.894281,52.200253 +-0.870018,52.252862 +-1.139622,52.243878 +-1.113546,52.297107 +-0.936172,52.21131 +-0.91579,52.241163 +-0.8991,52.169253 +-0.846794,52.276769 +-0.870492,52.229599 +-0.870041,52.055063 +-1.182252,52.269669 +-1.262728,52.037314 +-0.920328,52.252119 +-0.878048,52.252184 +-0.880511,52.250948 +-0.962953,52.216476 +-0.892161,52.200782 +-0.87915,52.241612 +-0.887877,52.237595 +-0.892148,52.261892 +-1.173885,52.249095 +-0.839288,52.282441 +-0.844535,52.276261 +-0.894815,52.263652 +-0.883526,52.24115 +-0.860171,52.177488 +-1.164344,52.258773 +-0.847846,52.258231 +-0.855806,52.274564 +-0.900691,52.259508 +-0.896227,52.273456 +-0.916793,52.240246 +-0.944142,52.256659 +-0.873042,52.249142 +-0.801836,52.187708 +-0.995264,52.362016 +-0.837997,52.246582 +-1.081117,52.237881 +-1.105243,52.236826 +-1.137928,52.213415 +-0.814937,52.233577 +-1.184378,52.255236 +-1.143982,52.347588 +-0.925691,52.224144 +-0.900456,52.238774 +-0.837933,52.247345 +-0.91957,52.174118 +-0.913633,52.249136 +-0.862033,52.234013 +-0.93418,52.23706 +-1.192108,52.333731 +-1.040423,52.198349 +-1.178528,52.333979 +-0.995087,52.225978 +-0.824388,52.261057 +-0.91204,52.196229 +-0.926001,52.246471 +-0.85871,52.244833 +-0.88438,52.240942 +-0.925232,52.224338 +-0.835863,52.250328 +-0.892043,52.256101 +-0.812589,52.269993 +-0.911824,52.236847 +-1.176202,52.328811 +-0.854537,52.288532 +-0.897028,52.272493 +-0.897255,52.237952 +-0.883651,52.237915 +-0.93958,52.208329 +-0.950905,52.202227 +-1.079,52.239016 +-0.843287,52.282525 +-1.031991,52.38425 +-0.84428,52.321572 +-0.89613,52.234894 +-0.923632,52.096024 +-0.905123,52.401286 +-1.152319,52.35075 +-0.903722,52.143609 +-1.073595,52.111584 +-1.002805,52.129051 +-1.01285,52.162366 +-1.057305,52.070421 +-1.18025,52.254237 +-1.023667,52.177138 +-0.990891,52.128761 +-0.869145,52.06686 +-0.981136,52.352482 +-0.945193,52.236422 +-1.035893,52.192666 +-0.863085,52.255871 +-0.909892,52.220637 +-0.928413,52.240011 +-0.839569,52.258213 +-0.905149,52.24031 +-0.912271,52.196375 +-0.834841,52.254687 +-0.911867,52.236892 +-0.930845,52.241786 +-0.846006,52.263095 +-0.806383,52.238561 +-0.992057,52.08744 +-0.848925,52.260714 +-0.892586,52.243708 +-0.894542,52.268756 +-0.886005,52.254435 +-1.047417,52.240087 +-0.919243,52.240673 +-0.882027,52.178353 +-0.870451,52.239263 +-0.900594,52.258671 +-0.91343,52.21666 +-0.89823,52.242313 +-0.85055,52.264147 +-0.897819,52.248288 +-0.86407,52.278096 +-0.884686,52.242761 +-0.86506,52.239904 +-0.916908,52.199411 +-1.122124,52.306737 +-0.898468,52.155779 +-1.175547,52.3254 +-0.76767,52.255219 +-1.189931,52.251975 +-0.902224,52.235373 +-0.921346,52.216148 +-0.889243,52.243299 +-1.063128,52.224245 +-0.910735,52.268772 +-0.896476,52.236875 +-0.876226,52.248363 +-0.860126,52.233554 +-1.276761,52.13344 +-0.913522,52.242284 +-1.288387,52.073076 +-0.852921,52.272225 +-1.199756,52.349894 +-1.101815,52.236872 +-0.721771,52.189412 +-0.900086,52.203391 +-1.160187,52.36787 +-0.875815,52.09288 +-0.828958,52.268897 +-0.801354,52.25348 +-1.033319,52.395418 +-0.900796,52.236871 +-0.919509,52.243598 +-0.87947,52.219021 +-1.217188,52.052152 +-0.919753,52.240777 +-0.853632,52.272502 +-0.812493,52.269165 +-0.981037,52.146379 +-1.169764,52.35839 +-0.918803,52.255189 +-0.865202,52.069924 +-0.892114,52.202094 +-0.898582,52.187284 +-1.077457,52.233618 +-1.159896,52.19481 +-0.965024,52.158818 +-0.846279,52.275155 +-1.019803,52.23114 +-0.844731,52.276039 +-0.903486,52.226943 +-0.937735,52.205921 +-1.116052,52.236709 +-0.883144,52.245264 +-0.879913,52.294485 +-0.864748,52.25844 +-0.899917,52.26414 +-0.843394,52.226055 +-0.901711,52.303617 +-1.134428,52.026453 +-1.045592,52.248703 +-0.846723,52.276121 +-1.154348,52.352877 +-0.918157,52.406234 +-0.861402,52.236902 +-0.863669,52.26627 +-0.881828,52.072474 +-0.83802,52.24794 +-0.921532,52.28037 +-0.882221,52.207962 +-0.905916,52.224574 +-0.911937,52.217833 +-1.18317,52.083911 +-0.870853,52.249409 +-0.99573,52.215635 +-0.855128,52.227482 +-1.025122,52.178822 +-0.899178,52.251978 +-0.902018,52.234814 +-0.897564,52.158027 +-0.909843,52.24359 +-0.897094,52.235002 +-1.002243,52.232638 +-0.908359,52.27303 +-1.165588,52.264293 +-0.90069,52.214492 +-1.191297,52.343561 +-1.185032,52.269104 +-0.90794,52.225033 +-0.953013,52.205293 +-0.827517,52.251837 +-0.860389,52.255305 +-0.93718,52.208946 +-0.894752,52.240267 +-0.900498,52.2691 +-0.880711,52.239505 +-1.20488,52.321213 +-0.911897,52.236839 +-0.889929,52.182905 +-1.001695,52.28904 +-0.963734,52.257723 +-0.980422,52.222571 +-0.881653,52.213701 +-1.154965,52.35441 +-0.882525,52.236699 +-0.867595,52.253666 +-0.866076,52.069393 +-1.148658,52.334964 +-1.044952,52.214362 +-1.157057,52.261374 +-0.935995,52.253035 +-0.885102,52.242558 +-1.087758,52.14746 +-0.897482,52.245929 +-0.996963,52.14006 +-0.88413,52.241021 +-0.866455,52.258151 +-1.168645,52.290459 +-1.135491,52.042357 +-0.88015,52.250765 +-0.87744,52.070032 +-1.016905,52.229767 +-0.849388,52.237154 +-0.915965,52.241192 +-0.822671,52.341354 +-0.891949,52.331001 +-0.788673,52.34734 +-0.832024,52.254282 +-0.869573,52.251357 +-0.882794,52.252202 +-1.049605,52.23569 +-1.099092,52.345304 +-0.905676,52.224832 +-0.824826,52.26223 +-0.869039,52.229711 +-0.779155,52.237635 +-1.131718,52.240611 +-0.842578,52.264725 +-0.833635,52.25597 +-0.879618,52.236393 +-0.88961,52.239742 +-0.87059,52.257444 +-1.109829,52.293043 +-0.893736,52.190394 +-0.873995,52.242759 +-0.870302,52.260148 +-0.810058,52.261597 +-0.87218,52.225965 +-0.801461,52.253292 +-0.889615,52.235408 +-0.87845,52.25021 +-0.857233,52.240737 +-1.255133,51.996053 +-1.111796,52.168187 +-0.946893,52.108803 +-0.86277,52.256164 +-0.881848,52.430072 +-0.831714,52.13773 +-0.840584,52.260282 +-0.873906,52.242776 +-0.89784,52.217855 +-1.205474,52.324067 +-0.866224,52.069286 +-1.113537,52.285788 +-0.996613,52.140012 +-1.136804,52.32114 +-1.26024,52.067975 +-0.88095,52.192162 +-0.869484,52.24677 +-0.88045,52.232445 +-1.049636,52.241102 +-0.90028,52.171215 +-0.809299,52.245612 +-1.171553,52.248494 +-0.879083,52.208786 +-0.947899,52.235933 +-1.02481,52.302009 +-0.844561,52.252715 +-0.791345,52.255203 +-0.885648,52.242366 +-1.163024,52.250241 +-1.140521,52.038573 +-0.906363,52.192094 +-1.003333,52.128957 +-1.174104,52.273586 +-0.989404,52.099555 +-1.134671,52.025925 +-0.902002,52.314957 +-0.917878,52.23479 +-0.892713,52.23862 +-0.882835,52.245909 +-0.875131,52.252866 +-0.871244,52.258799 +-0.881338,52.329858 +-0.894951,52.24168 +-0.917075,52.419206 +-0.915216,52.240061 +-1.136383,52.0415 +-0.903353,52.190142 +-0.881894,52.256545 +-0.926517,52.224493 +-1.10563,52.288956 +-0.894055,52.184589 +-0.94082,52.105656 +-0.900159,52.240128 +-0.913426,52.216812 +-0.936181,52.208514 +-0.882545,52.246391 +-0.883629,52.252785 +-0.938877,52.22002 +-1.034312,52.307437 +-1.315249,52.172132 +-0.919332,52.243668 +-1.109619,52.236949 +-1.051495,52.396267 +-1.204865,52.321231 +-0.927385,52.400322 +-0.841574,52.19697 +-0.835718,52.265943 +-1.250625,52.074145 +-1.161453,52.352209 +-1.073083,52.11167 +-0.890198,52.216749 +-0.925381,52.224258 +-0.883696,52.244298 +-0.844973,52.252656 +-0.899775,52.234353 +-0.925884,52.254364 +-0.851667,52.164674 +-0.844329,52.276304 +-0.916879,52.219874 +-0.91377,52.232109 +-1.034127,52.140505 +-0.911867,52.236865 +-0.919384,52.222217 +-0.94395,52.252405 +-0.882245,52.246676 +-0.992649,52.141507 +-0.915442,52.228393 +-0.890936,52.243521 +-1.160171,52.079173 +-0.868213,52.230548 +-0.904605,52.236798 +-0.900024,52.253316 +-0.883587,52.244531 +-0.899912,52.264338 +-1.214642,52.201453 +-1.163651,52.351649 +-0.916538,52.252525 +-0.909109,52.24245 +-0.897327,52.236811 +-0.854249,52.245707 +-0.870048,52.252854 +-0.811567,52.250113 +-1.161438,52.26056 +-0.822293,52.303616 +-0.879991,52.250647 +-1.168231,52.264797 +-0.897794,52.243379 +-0.854802,52.250963 +-0.925049,52.257404 +-1.30767,52.167718 +-1.16857,52.290504 +-0.993242,52.217583 +-0.851653,52.26342 +-0.898572,52.155115 +-0.923331,52.256957 +-0.895836,52.203046 +-0.894451,52.237054 +-1.178764,52.276811 +-0.869758,52.264242 +-0.897842,52.2432 +-0.769933,52.211502 +-1.164048,52.351607 +-0.878732,52.204144 +-0.89724,52.216096 +-1.146078,52.079036 +-1.026195,52.231444 +-1.057887,52.396327 +-0.911098,52.195294 +-0.898366,52.242746 +-1.065007,52.336876 +-1.214867,52.170392 +-0.878178,52.233116 +-0.853465,52.271583 +-1.002906,52.138915 +-0.897822,52.246984 +-0.887378,52.251094 +-1.156992,52.096125 +-1.174492,52.247993 +-1.148869,51.996673 +-1.247404,52.091252 +-1.016648,52.230826 +-0.970363,52.276409 +-0.908904,52.236496 +-0.922576,52.208283 +-0.937062,52.233499 +-0.903775,52.233077 +-0.956805,52.133311 +-0.888136,52.240088 +-0.909885,52.236469 +-1.11775,52.301724 +-0.914932,52.234286 +-0.904489,52.226062 +-0.911099,52.268865 +-0.883139,52.237874 +-0.939763,52.244321 +-0.896351,52.22952 +-0.912042,52.241111 +-0.893635,52.256296 +-1.147511,52.068887 +-0.912748,52.224781 +-0.966726,52.154733 +-0.93143,52.289981 +-0.847585,52.241731 +-0.850294,52.23665 +-0.878328,52.23354 +-1.015326,52.229691 +-0.914439,52.238885 +-0.900292,52.26854 +-0.975737,52.235324 +-0.833959,52.260936 +-0.897419,52.222445 +-1.072812,52.24429 +-0.898896,52.252119 +-0.899103,52.252049 +-0.855678,52.254486 +-1.15188,52.341478 +-0.936145,52.22289 +-0.88629,52.237805 +-0.82629,52.258936 +-0.999385,52.258147 +-0.909477,52.26805 +-0.937006,52.253628 +-0.898039,52.252399 +-1.066097,52.227154 +-0.863791,52.243147 +-0.858358,52.250547 +-0.963784,52.422025 +-0.870564,52.229644 +-0.872124,52.187115 +-1.139004,52.040917 +-0.900944,52.23502 +-1.144288,52.325663 +-1.042574,52.237188 +-0.940716,52.252268 +-0.889205,52.235432 +-0.904339,52.235735 +-0.948318,52.245485 +-0.871376,52.066917 +-0.826923,52.314334 +-1.129349,52.307798 +-0.834036,52.263032 +-0.992426,52.135194 +-0.934752,52.238252 +-0.857544,52.079578 +-0.93821,52.24125 +-0.896054,52.233815 +-0.909153,52.194053 +-0.759995,52.256173 +-0.922726,52.240795 +-0.855863,52.234762 +-1.153906,52.351418 +-1.045207,52.115008 +-0.901496,52.259525 +-0.809956,52.258845 +-1.101917,52.236891 +-0.895045,52.249098 +-0.900252,52.239338 +-0.896272,52.036385 +-0.836641,52.25644 +-0.920082,52.252576 +-1.237307,52.217677 +-0.914302,52.242102 +-0.865952,52.232504 +-1.011237,52.260809 +-0.816195,52.309561 +-0.904544,52.242273 +-1.192969,52.385567 +-0.855391,52.2742 +-0.899712,52.265316 +-0.897214,52.242555 +-0.838832,52.244333 +-0.889514,52.235372 +-1.044622,52.404905 +-0.840039,52.262084 +-0.904289,52.281767 +-0.729386,52.417636 +-0.938295,52.237708 +-1.001023,52.128371 +-0.846562,52.276092 +-0.898163,52.242681 +-0.846937,52.276887 +-0.926828,52.240742 +-0.843023,52.264532 +-1.123962,52.309502 +-0.915649,52.270975 +-0.851084,52.251421 +-0.845419,52.277789 +-1.128006,52.305981 +-0.893948,52.057313 +-0.870937,52.244941 +-0.839879,52.153563 +-0.898678,52.205293 +-1.044357,52.238704 +-0.952241,52.241861 +-0.884141,52.239403 +-0.830311,52.316598 +-0.9005,52.258347 +-1.075213,52.253488 +-1.175624,52.257252 +-0.870922,52.244959 +-1.034656,52.0883 +-0.904576,52.236816 +-1.146546,52.258574 +-0.899733,52.242543 +-0.899118,52.25204 +-0.884942,52.253616 +-1.053364,52.352166 +-1.028711,52.217467 +-0.837824,52.248153 +-0.870532,52.229725 +-0.872121,52.243892 +-0.863877,52.266173 +-0.917172,52.199387 +-0.897936,52.242958 +-0.858339,52.289504 +-0.883862,52.25285 +-0.93084,52.194458 +-1.255793,52.175683 +-1.313532,52.08315 +-0.893905,52.037802 +-0.85646,52.324343 +-0.829229,52.339819 +-0.938327,52.240649 +-0.897215,52.233052 +-0.935144,52.252497 +-0.829213,52.257005 +-0.817683,52.264703 +-1.057658,52.331828 +-0.869932,52.231446 +-0.86744,52.260884 +-0.8048,52.234814 +-0.922575,52.208319 +-0.880456,52.238001 +-1.155991,52.028444 +-1.00279,52.129051 +-0.919203,52.222422 +-1.160054,52.253942 +-1.171348,52.308216 +-0.880068,52.245262 +-0.897238,52.235102 +-0.834943,52.24407 +-0.914633,52.256167 +-0.901611,52.235296 +-1.18096,52.351662 +-1.003238,52.12865 +-0.899551,52.259381 +-1.156996,52.262236 +-0.903747,52.233005 +-1.215148,52.051258 +-0.871827,52.088949 +-1.298236,52.06284 +-0.890219,52.26405 +-0.936428,52.242888 +-0.899712,52.265307 +-1.025035,52.178767 +-0.900783,52.236799 +-0.903341,52.214399 +-0.904217,52.22641 +-0.889242,52.239783 +-0.868543,52.249216 +-0.909766,52.088155 +-0.937873,52.208125 +-0.892631,52.278385 +-0.826769,52.314063 +-0.811837,52.26575 +-0.8781,52.232117 +-0.892854,52.199386 +-1.137993,52.319638 +-1.08752,52.293394 +-1.153555,52.346758 +-0.950413,52.252903 +-0.888857,52.239951 +-0.835833,52.250345 +-1.17418,52.344423 +-0.845951,52.277039 +-0.888192,52.236681 +-0.834599,52.243213 +-0.868335,52.248755 +-0.883253,52.245013 +-0.855416,52.228806 +-1.150087,52.337743 +-0.900488,52.241624 +-0.801368,52.25348 +-0.835253,52.254592 +-0.713526,52.194268 +-0.835632,52.250757 +-0.895615,52.214921 +-0.961381,52.165214 +-1.101619,52.324168 +-0.892447,52.183972 +-1.212045,52.287053 +-0.902341,52.198557 +-0.997501,52.140811 +-0.901511,52.259516 +-0.979532,52.403633 +-0.884837,52.240848 +-1.154582,52.255881 +-0.897462,52.219532 +-0.89237,52.195902 +-0.876166,52.248426 +-0.873075,52.243218 +-1.149032,52.021111 +-0.900125,52.236766 +-1.078084,52.233722 +-1.258804,52.033091 +-0.832901,52.226446 +-1.036635,52.232798 +-0.917793,52.403093 +-0.87959,52.241589 +-0.853111,52.272218 +-0.858549,52.228261 +-0.975533,52.23525 +-0.981905,52.223006 +-0.900264,52.171278 +-0.89247,52.196586 +-0.897388,52.233773 +-0.893557,52.234106 +-0.832773,52.255323 +-0.869168,52.244214 +-0.885307,52.240187 +-0.935307,52.234058 +-1.1893,52.381334 +-0.83662,52.289697 +-1.037211,52.23594 +-0.896448,52.036351 +-1.065295,52.226348 +-0.716587,52.195173 +-1.056566,52.217486 +-0.843148,52.264803 +-1.130555,52.315853 +-0.908378,52.193417 +-1.199349,52.278085 +-0.988643,52.28403 +-1.161466,52.352263 +-1.10261,52.27444 +-1.073227,52.244077 +-1.068663,52.394794 +-0.934489,52.233934 +0.133001,52.2043 +0.054108,52.182852 +0.136524,52.213057 +-0.24741,52.588084 +0.133148,52.215933 +0.127417,52.207818 +0.156718,52.198419 +-0.408165,52.570655 +-0.251488,52.583559 +0.111095,52.213632 +0.149818,52.20644 +-0.220854,52.577133 +0.133659,52.204899 +-0.064495,52.560843 +-0.152918,52.292599 +-0.240619,52.560094 +0.13078,52.202227 +-0.207713,52.57582 +-0.087705,52.333497 +0.215842,52.11786 +-0.304622,52.520119 +0.165754,52.6603 +-0.183102,52.327909 +0.141949,52.221456 +-0.297784,52.632128 +0.067403,52.183114 +-0.240801,52.570292 +0.040015,52.453861 +0.342161,52.34614 +0.166326,52.658707 +-0.268626,52.423034 +0.137896,52.098573 +0.080311,52.074723 +-0.171174,52.350967 +-0.043702,52.332831 +-0.45204,52.619058 +0.077367,52.211407 +-0.246116,52.585736 +-0.295186,52.571969 +-0.224802,52.544069 +-0.374687,52.534219 +-0.206808,52.337937 +-0.208935,52.615362 +0.132974,52.204345 +-0.427678,52.584501 +0.262467,52.399649 +0.123237,52.18 +-0.014158,52.272804 +0.146664,52.197182 +-0.091256,52.389068 +-0.071814,52.402527 +-0.224006,52.575822 +0.0498,52.244682 +-0.237594,52.583281 +-0.147695,52.22197 +-0.370632,52.292081 +0.129823,52.196606 +-0.204301,52.389302 +-0.270257,52.596826 +-0.245472,52.595949 +0.230046,52.218277 +0.121346,52.091661 +0.312988,52.43498 +-0.259773,52.54654 +0.057403,52.121101 +0.132988,52.204327 +0.284868,52.397617 +0.215215,52.349632 +0.120412,52.21315 +-0.259003,52.541781 +0.146788,52.218886 +0.11887,52.197361 +0.152059,52.390381 +0.119855,52.467239 +-0.263273,52.60879 +0.144288,52.218338 +-0.25421,52.51873 +-0.322668,52.531992 +0.290848,52.373439 +-0.241266,52.560885 +0.242853,52.392029 +0.035798,52.245365 +0.137413,52.64526 +0.216618,52.215869 +0.127746,52.198775 +0.100885,52.161355 +0.136524,52.21428 +0.136424,52.149027 +-0.284006,52.5291 +-0.08727,52.194121 +-0.179422,52.56976 +-0.18693,52.330845 +-0.059986,52.28771 +0.131584,52.219036 +0.13065,52.201959 +-0.239322,52.589169 +0.112041,52.221842 +0.336978,52.334445 +0.10972,52.200357 +-0.186551,52.616928 +-0.281067,52.585835 +-0.2363,52.561837 +-0.267831,52.532902 +0.160398,52.185593 +-0.263124,52.598376 +-0.309454,52.541685 +0.0984,52.421648 +-0.247058,52.603202 +-0.262508,52.598997 +0.340103,52.333304 +-0.48609,52.637911 +-0.215309,52.590104 +-0.264858,52.598582 +-0.13986,52.220274 +0.121615,52.198777 +0.143345,52.228867 +0.307728,52.362995 +0.103269,52.581547 +-0.272256,52.43438 +-0.24299,52.643213 +0.17375,52.159405 +0.122282,52.204781 +0.072395,52.65484 +-0.077849,52.327232 +-0.269686,52.518346 +-0.107275,52.30656 +0.13571,52.208297 +-0.184564,52.343468 +0.06486,52.337727 +-0.106862,52.228534 +0.151783,52.189257 +-0.246221,52.576828 +-0.276072,52.44554 +-0.265386,52.529108 +0.314308,52.219253 +0.116117,52.231813 +0.168533,52.215072 +-0.240464,52.557682 +-0.256643,52.382308 +-0.132319,52.354523 +-0.25659,52.521903 +-0.25121,52.585353 +0.145596,52.673525 +0.164744,52.176872 +-0.378918,52.580256 +0.108946,52.139802 +-0.221834,52.575898 +0.117757,52.202281 +-0.112389,52.444155 +-0.235449,52.55767 +0.172319,52.183755 +0.358077,52.318272 +0.224075,52.369059 +-0.123433,52.55708 +0.148956,52.179471 +0.149412,52.113371 +-0.078542,52.332917 +-0.28131,52.584904 +0.174928,52.065047 +-0.069697,52.218427 +-0.106891,52.228525 +-0.136883,52.467975 +0.252805,52.409095 +0.328065,52.21945 +0.152965,52.356133 +-0.348327,52.345341 +0.246121,52.219141 +-0.221596,52.577405 +0.215795,52.120154 +0.149578,52.30237 +-0.22971,52.558429 +-0.174906,52.31381 +-0.251292,52.589958 +0.037072,52.100035 +0.17474,52.065087 +-0.142326,52.11271 +-0.238019,52.548753 +-0.235491,52.576489 +-0.070283,52.319322 +-0.077023,52.329017 +-0.30463,52.539063 +0.127103,52.208291 +0.157981,52.199709 +-0.246646,52.567654 +-0.239697,52.557688 +-0.191751,52.650597 +-0.20208,52.604577 +-0.251505,52.348353 +-0.491529,52.638754 +-0.287736,52.566602 +-0.294678,52.571755 +0.301387,52.252786 +-0.33247,52.545653 +-0.297623,52.637798 +-0.28853,52.219835 +0.11129,52.250459 +0.087577,52.551371 +-0.228522,52.553844 +0.125019,52.214614 +-0.247758,52.574549 +-0.068825,52.22031 +-0.410711,52.584706 +0.078126,52.214496 +0.321374,52.218044 +0.127626,52.225959 +-0.277811,52.242598 +-0.292631,52.538585 +0.12977,52.224572 +-0.265958,52.546019 +0.111875,52.243642 +0.152739,52.19209 +-0.231484,52.569344 +-0.256379,52.593449 +0.115015,52.213562 +-0.156985,52.222143 +-0.338083,52.659348 +-0.256442,52.533831 +0.300989,52.408823 +-0.28432,52.564907 +-0.062804,52.217038 +0.170198,52.196077 +-0.258534,52.546908 +0.13534,52.194483 +0.140764,52.099924 +0.391987,52.436771 +-0.414642,52.585388 +0.078023,52.213221 +0.241801,52.391285 +-0.469893,52.629423 +-0.104943,52.4325 +0.112205,52.232702 +-0.388786,52.296916 +0.145499,52.176639 +-0.091035,52.304221 +-0.101767,52.229198 +0.381877,52.203431 +0.357877,52.32555 +0.111905,52.210021 +-0.239911,52.588836 +0.110255,52.253022 +0.175708,52.18336 +0.045114,52.352924 +-0.277449,52.650984 +-0.271795,52.55024 +0.148552,52.17929 +0.151029,52.102668 +-0.015167,52.276472 +-0.251124,52.579724 +0.329153,52.282167 +0.224153,52.129295 +0.001402,52.621283 +-0.252748,52.232582 +-0.118956,52.322364 +-0.264735,52.535527 +-0.25382,52.361874 +0.071642,52.086358 +0.193391,52.308326 +-0.277344,52.538093 +-0.281978,52.604828 +-0.150159,52.316221 +-0.26164,52.226869 +-0.085357,52.403116 +-0.180042,52.5523 +-0.249663,52.581923 +-0.014164,52.273659 +-0.262526,52.543298 +0.29644,52.370507 +0.158087,52.667957 +-0.171613,52.613452 +-0.177403,52.172908 +-0.243599,52.580035 +0.354159,52.297812 +0.111489,52.21946 +-0.069331,52.40655 +0.177654,52.484802 +0.127209,52.207749 +0.170569,52.678078 +0.186952,52.189491 +0.140272,52.191148 +0.151301,52.197143 +0.132347,52.201956 +-0.141961,52.468351 +-0.247962,52.332117 +0.236366,52.115558 +-0.210195,52.549676 +-0.266343,52.590134 +0.125309,52.21486 +-0.12934,52.559017 +0.113213,52.198119 +-0.183168,52.331318 +-0.275103,52.543734 +-0.164465,52.29384 +-0.196967,52.533794 +0.149008,52.179353 +0.384991,52.31176 +-0.311823,52.552202 +0.146373,52.17718 +-0.488671,52.638897 +0.4388,52.236376 +-0.272947,52.622292 +0.107435,52.156697 +0.111741,52.237125 +-0.348353,52.345431 +-0.007883,52.067264 +0.327506,52.349739 +-0.107171,52.448127 +-0.454425,52.620564 +0.147797,52.218562 +-0.288128,52.582674 +0.331843,52.283409 +-0.257707,52.22824 +-0.277998,52.587688 +-0.143657,52.560942 +0.152436,52.186727 +0.183848,52.196014 +-0.126165,52.559767 +-0.245052,52.561391 +0.138194,52.185655 +-0.241074,52.576383 +-0.25506,52.578721 +-0.203284,52.630705 +0.151398,52.237011 +-0.004703,52.269561 +0.176697,52.351967 +-0.049671,52.108732 +-0.11837,52.26213 +-0.25884,52.275228 +-0.293639,52.571892 +0.148167,52.197101 +0.155682,52.237778 +-0.285419,52.228394 +-0.198871,52.329166 +0.297684,52.369566 +0.170491,52.195775 +0.155055,52.655316 +-0.222916,52.57613 +0.35928,52.322681 +0.13563,52.198398 +0.168435,52.184501 +0.14089,52.702814 +0.110925,52.215901 +0.11818,52.201941 +0.338507,52.332266 +-0.258714,52.535294 +-0.246485,52.587234 +-0.242113,52.566634 +-0.102891,52.228937 +-0.038584,52.081842 +-0.290217,52.554419 +-0.445427,52.58933 +-0.116034,52.560721 +-0.248011,52.58375 +0.333084,52.177492 +-0.268517,52.230773 +-0.257276,52.599504 +-0.293189,52.213249 +-0.226044,52.58604 +0.130135,52.196088 +0.111676,52.220006 +0.273793,52.40007 +0.179542,52.15705 +0.327722,52.27725 +0.307937,52.362775 +0.306756,52.188225 +-0.228088,52.605608 +-0.09568,52.379141 +0.089938,52.224439 +0.135921,52.196523 +-0.300046,52.614179 +0.138216,52.199521 +0.108097,52.216167 +-0.242308,52.56545 +-0.081515,52.222433 +0.145286,52.090409 +0.155383,52.238566 +-0.284584,52.564947 +0.133032,52.204335 +-0.264602,52.600574 +0.123048,52.203967 +0.124244,52.161234 +0.3276,52.270994 +0.134184,52.191735 +0.13699,52.179149 +0.059372,52.59006 +-0.347953,52.272246 +-0.075326,52.404257 +0.121486,52.206522 +-0.10083,52.224049 +-0.149728,52.616134 +-0.006505,52.192775 +0.092068,52.212748 +0.222816,52.220671 +-0.407165,52.358484 +-0.341849,52.34347 +-0.038566,52.081914 +-0.386337,52.581607 +-0.178896,52.329193 +-0.243611,52.566072 +-0.10349,52.229316 +0.122153,52.197482 +0.03947,52.281017 +-0.28102,52.576097 +0.136242,52.204745 +-0.013634,52.273065 +-0.240695,52.587679 +0.059561,52.60857 +-0.120165,52.577627 +-0.072404,52.292814 +0.132287,52.219041 +0.031076,52.610617 +-0.257506,52.536391 +-0.248761,52.56569 +-0.265478,52.599697 +-0.061255,52.220006 +-0.146915,52.315568 +0.242669,52.391889 +-0.263659,52.53552 +0.156432,52.237836 +-0.261473,52.597165 +-0.183447,52.629809 +0.135079,52.216195 +-0.407178,52.360166 +-0.097337,52.283121 +0.122575,52.194974 +0.133094,52.204406 +0.112011,52.221825 +0.133156,52.219763 +0.119269,52.202371 +0.110844,52.214823 +0.088057,52.549978 +0.224585,52.266299 +-0.249088,52.555238 +0.155985,52.195978 +0.176899,52.290009 +-0.147637,52.221951 +-0.221941,52.598763 +0.041314,52.223186 +-0.248186,52.565672 +-0.19036,52.297863 +-0.122168,52.620186 +-0.266112,52.252659 +0.101696,52.218556 +0.264642,52.394176 +0.176571,52.127305 +0.245389,52.331654 +-0.042704,52.359411 +-0.256897,52.59975 +-0.195216,52.333157 +-0.284109,52.563888 +0.158439,52.200708 +0.158892,52.659679 +0.153933,52.213442 +0.025492,52.075498 +0.167391,52.669469 +-0.258618,52.595074 +0.186918,52.221881 +0.093225,52.363294 +0.494018,52.289886 +-0.267064,52.216932 +0.023866,52.389238 +0.261324,52.400003 +0.149277,52.246779 +-0.253731,52.541955 +0.111996,52.202996 +0.120486,52.213185 +-0.24772,52.585508 +0.114707,52.221561 +0.132245,52.206247 +-0.267151,52.216574 +0.135357,52.215587 +0.153024,52.170432 +-0.437627,52.61147 +0.138838,52.207305 +-0.207409,52.353564 +0.171839,52.539856 +-0.458392,52.370987 +0.147066,52.645274 +-0.110707,52.447356 +0.322016,52.352572 +-0.324642,52.454887 +-0.241353,52.600384 +-0.296102,52.628633 +0.035879,52.100128 +-0.212514,52.578626 +-0.273198,52.438143 +-0.239705,52.579959 +-0.112461,52.28188 +0.074375,52.627625 +0.177687,52.545386 +0.147425,52.175021 +0.29973,52.451029 +0.142527,52.209145 +-0.168569,52.340461 +0.250626,52.218489 +0.127247,52.207011 +-0.076421,52.324979 +-0.241543,52.575356 +-0.256876,52.332356 +0.117747,52.202381 +0.209423,52.185044 +-0.393009,52.52182 +-0.2599,52.368627 +-0.143281,52.616986 +-0.229287,52.605545 +0.139839,52.207422 +0.105295,52.252238 +-0.265565,52.54515 +-0.270217,52.622962 +0.16411,52.212312 +-0.276247,52.227029 +0.158495,52.200671 +0.210742,52.117534 +0.110669,52.24539 +-0.144385,52.38513 +-0.171363,52.613431 +-0.4173,52.591088 +0.095821,52.164664 +-0.081447,52.219572 +0.156001,52.196005 +-0.221212,52.578136 +0.070336,52.557374 +-0.311987,52.551773 +0.11219,52.243186 +-0.460352,52.372496 +0.163324,52.662593 +-0.136705,52.224315 +0.338078,52.331636 +-0.251948,52.581255 +0.167718,52.663223 +0.124168,52.191565 +0.156234,52.532265 +0.191159,52.265494 +-0.392382,52.522063 +0.134135,52.299072 +-0.259216,52.562472 +-0.257348,52.5828 +-0.262498,52.543262 +0.124928,52.166679 +-0.233303,52.224047 +-0.241649,52.567895 +0.06979,52.533871 +0.108593,52.167593 +0.134142,52.20124 +-0.265102,52.54642 +-0.11603,52.656808 +0.179542,52.157041 +0.1238,52.20318 +0.177904,52.230078 +0.143821,52.151788 +0.154583,52.191795 +0.115598,52.215673 +-0.240435,52.587918 +-0.266458,52.41456 +-0.247609,52.574592 +-0.264479,52.546123 +-0.003841,52.287763 +0.223227,52.215124 +-0.279423,52.543392 +0.059789,52.592975 +0.068752,52.557879 +0.055709,52.118882 +0.238416,52.219072 +-0.238027,52.584645 +0.148241,52.197108 +0.132156,52.208056 +-0.234095,52.572296 +0.087412,52.532357 +0.156487,52.212982 +0.129937,52.108042 +0.245386,52.405172 +-0.168197,52.312852 +0.331353,52.345266 +-0.253557,52.556752 +0.361518,52.320325 +-0.243685,52.57751 +0.349293,52.32502 +0.29892,52.405797 +-0.274655,52.532606 +-0.145478,52.616732 +-0.211823,52.548432 +-0.248679,52.586988 +0.242069,52.391351 +0.111369,52.219103 +0.137703,52.186393 +0.053199,52.475303 +-0.158431,52.361874 +0.12744,52.199095 +0.164196,52.66228 +0.086311,52.536809 +0.08794,52.550007 +-0.175864,52.613176 +-0.080802,52.21824 +-0.060318,52.621716 +-0.253864,52.535646 +-0.082758,52.329092 +0.139455,52.19912 +-0.237563,52.583326 +0.141281,52.674817 +0.185752,52.061727 +0.158559,52.200778 +0.06789,52.230483 +-0.210471,52.588916 +0.108022,52.15612 +-0.242343,52.564579 +0.285854,52.46216 +0.320517,52.224068 +-0.180842,52.331839 +0.073993,52.194283 +-0.457724,52.37078 +-0.302069,52.54389 +-0.189973,52.335738 +-0.261494,52.597399 +-0.009701,52.269241 +-0.29566,52.573063 +-0.235988,52.59499 +0.214881,52.349414 +0.157448,52.200492 +-0.090852,52.304047 +-0.266633,52.601853 +0.146185,52.179036 +-0.083342,52.185084 +-0.099807,52.373021 +0.057028,52.067902 +0.215134,52.214584 +-0.197167,52.342924 +-0.27546,52.612843 +-0.060413,52.21984 +0.073586,52.18867 +-0.267253,52.228264 +-0.198856,52.329175 +-0.138679,52.223663 +-0.148294,52.632268 +-0.286666,52.563385 +-0.263848,52.228457 +0.07324,52.494734 +-0.472929,52.631341 +0.059369,52.481301 +0.333206,52.349231 +-0.190804,52.651698 +0.023395,52.406897 +-0.114583,52.308223 +-0.259004,52.595385 +0.154094,52.202262 +0.125205,52.214835 +-0.28389,52.236905 +-0.240976,52.595029 +-0.246142,52.60246 +0.117747,52.202381 +-0.360319,52.559753 +-0.272846,52.378635 +0.33307,52.349144 +0.148704,52.179116 +-0.489819,52.638624 +-0.263817,52.516192 +0.217167,52.213952 +0.086323,52.551681 +-0.1303,52.557935 +-0.325273,52.530941 +-0.180318,52.343889 +0.007471,52.613475 +0.119614,52.207472 +-0.168109,52.318893 +-0.195476,52.163573 +0.193771,52.389533 +0.125883,52.200814 +0.148776,52.65392 +-0.300227,52.320607 +0.186236,52.241685 +0.125452,52.201298 +-0.238182,52.581869 +-0.063038,52.560774 +-0.246392,52.586235 +0.302661,52.18487 +0.145152,52.184009 +0.086373,52.53688 +-0.238639,52.306704 +-0.27605,52.545546 +-0.268006,52.535215 +0.141756,52.197973 +0.05857,52.607293 +-0.216038,52.544153 +-0.257448,52.578414 +-0.233259,52.575466 +-0.25304,52.417761 +0.111721,52.220032 +-0.207895,52.341181 +0.003831,52.266071 +-0.250006,52.335384 +-0.030141,52.062441 +0.140203,52.20889 +-0.271739,52.60494 +0.041546,52.458322 +0.459879,52.275073 +-0.261951,52.230155 +-0.260599,52.562205 +0.146181,52.673388 +-0.006973,52.068058 +0.048863,52.648632 +-0.23519,52.574794 +0.299248,52.457872 +0.097041,52.548156 +-0.271826,52.622626 +0.028118,52.087709 +-0.046299,52.221531 +0.158623,52.20904 +0.159809,52.673779 +-0.244357,52.582842 +0.117806,52.167284 +-0.255068,52.56403 +-0.330575,52.543918 +-0.098404,52.282509 +-0.412404,52.57626 +-0.252852,52.583399 +-0.243538,52.57454 +-0.249834,52.594692 +-0.259242,52.601682 +0.051616,52.348424 +0.055632,52.49844 +-0.253069,52.41777 +-0.159663,52.293316 +0.127565,52.225925 +-0.179101,52.327775 +0.105323,52.41631 +0.087498,52.544107 +-0.234548,52.592613 +-0.264739,52.556368 +0.108799,52.203467 +0.120331,52.126892 +-0.26191,52.597711 +-0.240062,52.18678 +-0.27145,52.227642 +0.154555,52.664101 +0.193345,52.308282 +0.143626,52.174191 +0.178688,52.671491 +-0.235665,52.575448 +0.017065,52.386082 +0.088093,52.550436 +0.331608,52.345081 +0.112113,52.22212 +-0.114143,52.414089 +0.138169,52.199467 +0.116639,52.181207 +-0.282244,52.540997 +0.074965,52.198798 +-0.376416,52.579665 +-0.251618,52.581017 +-0.248247,52.326025 +0.320847,52.268276 +0.225264,52.22307 +-0.2823,52.543335 +-0.239036,52.578987 +0.238125,52.219104 +-0.251818,52.590478 +-0.164101,52.29379 +-0.25593,52.591015 +0.036735,52.451346 +-0.435225,52.585221 +0.110037,52.152056 +0.048805,52.608487 +-0.233955,52.580907 +-0.227785,52.603985 +0.308851,52.457136 +-0.193979,52.64316 +0.126154,52.214458 +0.416522,52.343311 +-0.069556,52.62229 +0.158618,52.200795 +-0.176154,52.349129 +0.148742,52.358998 +0.13529,52.197101 +0.210605,52.386127 +0.165618,52.311249 +0.144115,52.175531 +0.306713,52.188253 +0.111617,52.210125 +0.465905,52.227818 +0.14188,52.225495 +0.197051,52.255116 +-0.189587,52.225785 +0.319575,52.22397 +0.176809,52.493647 +0.124487,52.638434 +-0.249145,52.589018 +-0.240942,52.560485 +0.284687,52.381876 +-0.06825,52.321546 +-0.26882,52.59659 +-0.179096,52.360405 +-0.089654,52.302922 +-0.280453,52.459621 +-0.190146,52.6089 +-0.258459,52.594981 +0.15029,52.656743 +0.199698,52.322209 +-0.407005,52.584342 +-0.272455,52.605508 +-0.116761,52.266223 +0.084897,52.551787 +0.127334,52.393634 +0.406681,52.237485 +-0.289157,52.48948 +0.069564,52.255757 +-0.310921,52.550328 +-0.232725,52.580664 +0.111991,52.672024 +0.292552,52.398952 +-0.259636,52.579085 +-0.234607,52.578292 +0.177698,52.291065 +-0.36127,52.559973 +-0.120792,52.620911 +0.127345,52.207837 +0.361432,52.319823 +-0.106366,52.448375 +0.221342,52.219889 +-0.056677,52.621549 +-0.178561,52.363427 +-0.256604,52.54091 +0.177901,52.127623 +0.134731,52.201004 +-0.287277,52.22273 +0.061416,52.627321 +0.331135,52.235 +-0.183889,52.612365 +-0.104591,52.22856 +-0.181953,52.353427 +-0.360562,52.559963 +-0.132956,52.354389 +0.071819,52.186543 +-0.031974,52.184571 +0.140095,52.188678 +-0.110093,52.454135 +0.063301,52.305483 +-0.257737,52.228223 +0.163172,52.212284 +0.112261,52.286598 +0.209493,52.341494 +-0.31661,52.531942 +-0.239499,52.568888 +0.052565,52.608035 +0.27504,52.421159 +-0.24652,52.586713 +0.140524,52.230789 +0.135972,52.214973 +-0.087058,52.465381 +-0.247797,52.332213 +0.14677,52.192999 +-0.088267,52.37662 +0.14361,52.228584 +0.258236,52.217858 +0.097541,52.163618 +0.035359,52.251775 +-0.250345,52.594457 +0.076125,52.184759 +0.211852,52.213926 +-0.46108,52.609826 +-0.255618,52.379614 +-0.111797,52.280269 +0.035086,52.100654 +-0.300585,52.516653 +0.226054,52.126103 +0.141719,52.094268 +-0.023486,52.134507 +0.282172,52.242108 +0.122517,52.218939 +0.310914,52.082988 +0.063719,52.485505 +0.17166,52.250658 +0.139771,52.205706 +0.144795,52.197567 +-0.228341,52.608866 +-0.152226,52.368377 +-0.07537,52.29948 +0.135617,52.179192 +0.137911,52.208716 +0.116219,52.209952 +-0.237252,52.587025 +0.133196,52.204395 +-0.367184,52.534593 +0.098972,52.13685 +0.150615,52.205059 +0.104796,52.196804 +0.131506,52.195074 +0.079805,52.25073 +0.175253,52.104148 +-0.266038,52.601593 +0.320187,52.159016 +-0.229117,52.575719 +0.178068,52.271402 +-0.053348,52.348797 +0.086514,52.517456 +-0.277753,52.242588 +-0.103462,52.229279 +-0.180162,52.570436 +-0.250634,52.547897 +0.259184,52.409054 +0.267986,52.317186 +-0.07271,52.225598 +-0.255318,52.592301 +0.157352,52.200035 +-0.222964,52.605962 +-0.087045,52.465345 +-0.413696,52.313878 +0.203678,52.629902 +0.104793,52.21842 +0.06895,52.232497 +0.056911,52.265401 +-0.256065,52.518424 +-0.182108,52.632873 +-0.228035,52.549467 +0.154343,52.665499 +-0.23503,52.25138 +-0.234104,52.593371 +-0.331278,52.6101 +-0.272786,52.579826 +0.11092,52.171031 +0.067675,52.214832 +-0.060222,52.293055 +-0.227308,52.552504 +-0.056724,52.259063 +-0.309185,52.657582 +-0.289778,52.238798 +0.110024,52.264212 +-0.185624,52.611105 +-0.227425,52.572655 +-0.247285,52.603052 +-0.30599,52.604814 +-0.190804,52.31107 +0.079839,52.553674 +-0.252132,52.588145 +0.163613,52.297222 +0.100593,52.197049 +-0.148569,52.291398 +-0.255052,52.592288 +-0.273345,52.438514 +0.268031,52.42329 +-0.281199,52.538311 +-0.353676,52.27443 +0.15398,52.665631 +0.143873,52.229793 +0.210801,52.343286 +0.145894,52.67779 +-0.25083,52.331233 +-0.270986,52.514903 +0.059219,52.607254 +0.123944,52.093187 +-0.295698,52.573226 +0.134329,52.146484 +0.052436,52.303685 +-0.236959,52.572249 +-0.235017,52.571743 +0.157238,52.493196 +-0.270202,52.516483 +-0.103099,52.228878 +-0.250191,52.560892 +0.352699,52.335266 +0.156718,52.212932 +-0.302487,52.534968 +-0.300138,52.320246 +0.200032,52.427344 +0.099302,52.080447 +-0.192925,52.386809 +0.277998,52.385233 +0.129228,52.234662 +0.11176,52.227953 +0.242466,52.391659 +-0.211467,52.58876 +0.480512,52.276763 +-0.033035,52.55965 +0.135614,52.204774 +0.1479,52.301645 +-0.128461,52.561296 +0.261654,52.395834 +-0.049434,52.184402 +-0.247104,52.572094 +0.169953,52.216871 +-0.185944,52.613016 +0.383669,52.195068 +-0.235144,52.577041 +0.267292,52.406022 +0.063323,52.606607 +0.137028,52.229971 +0.319403,52.455716 +0.409273,52.279912 +-0.266644,52.616554 +0.055575,52.182295 +0.277769,52.239648 +0.026646,52.404054 +-0.229008,52.591236 +0.085802,52.383126 +0.090916,52.254598 +-0.260711,52.562728 +0.12933,52.641063 +-0.182538,52.329851 +0.360431,52.225695 +0.395473,52.310811 +0.074255,52.087625 +-0.178238,52.331287 +-0.263833,52.535226 +0.121763,52.205258 +0.171117,52.217317 +0.098243,52.163309 +0.137805,52.189124 +-0.12017,52.577852 +0.083321,52.523168 +-0.249797,52.606362 +-0.237027,52.557694 +0.020394,52.053079 +0.132552,52.192178 +0.395445,52.310829 +-0.226966,52.546358 +-0.242448,52.56636 +0.076454,52.136862 +-0.221939,52.576583 +-0.243448,52.579367 +-0.330933,52.544193 +0.459971,52.279648 +0.306707,52.293749 +-0.269991,52.515833 +0.177349,52.259123 +0.110117,52.264309 +0.127627,52.285683 +0.111146,52.209459 +0.161533,52.646081 +0.130428,52.218428 +-0.012671,52.273283 +-0.19579,52.341779 +-0.218648,52.299732 +-0.234389,52.582244 +0.19109,52.30658 +-0.000273,52.219807 +-0.241815,52.574092 +0.133046,52.204335 +0.087784,52.510672 +0.086101,52.076536 +0.128566,52.499488 +0.118204,52.208604 +-0.293058,52.502852 +-0.168982,52.337195 +0.130587,52.202788 +-0.180832,52.635847 +0.270654,52.411658 +0.196409,52.262591 +-0.015108,52.27648 +-0.222547,52.639591 +0.131767,52.214591 +0.139296,52.199159 +-0.264284,52.60003 +-0.106346,52.421391 +-0.256229,52.590552 +0.12223,52.204926 +-0.04266,52.359419 +0.188674,52.151882 +0.251626,52.21133 +-0.272627,52.554955 +0.131815,52.194502 +0.111607,52.229367 +0.150019,52.662673 +0.122106,52.197402 +0.362636,52.319826 +-0.264468,52.555006 +-0.068482,52.323959 +-0.226186,52.557289 +-0.24221,52.565305 +-0.249821,52.600581 +-0.217013,52.223928 +0.232464,52.360628 +-0.286361,52.482984 +0.305044,52.457813 +0.268166,52.397552 +-0.203565,52.63035 +-0.234158,52.592769 +-0.247121,52.575726 +0.184985,52.238588 +-0.15127,52.479143 +0.109856,52.15286 +-0.274425,52.558011 +0.135588,52.189875 +0.120481,52.197395 +0.151201,52.365787 +0.232781,52.145228 +0.176955,52.104315 +0.164819,52.227486 +0.105411,52.252218 +-0.296553,52.211409 +0.13333,52.218195 +-0.031257,52.131256 +-0.208298,52.341034 +0.172793,52.21957 +0.004211,52.61388 +0.117847,52.16722 +-0.235336,52.582546 +-0.240489,52.576977 +0.168841,52.162184 +0.259017,52.206405 +-0.230804,52.558374 +0.502674,52.288148 +-0.230432,52.224463 +0.318353,52.462615 +0.163092,52.212456 +0.112034,52.200406 +-0.131378,52.312077 +0.120501,52.213184 +0.078888,52.214186 +-0.266001,52.601404 +0.156963,52.670045 +0.111571,52.219648 +-0.06914,52.340191 +-0.289919,52.578375 +0.059109,52.481089 +0.005421,52.091307 +-0.076316,52.332467 +0.17141,52.250924 +-0.317721,52.534116 +-0.265185,52.582448 +-0.230546,52.203901 +0.061769,52.566596 +0.118283,52.201643 +0.050707,52.45275 +0.282125,52.242046 +0.146361,52.219137 +-0.414292,52.584448 +-0.071645,52.224825 +0.276843,52.431591 +-0.144216,52.560977 +-0.25256,52.547674 +0.021395,52.183066 +0.14972,52.139811 +0.1528,52.182144 +-0.264986,52.219176 +-0.265761,52.604493 +0.12424,52.284755 +0.063356,52.564563 +0.221627,52.22001 +0.163488,52.172102 +0.146869,52.226339 +-0.255782,52.518501 +-0.19654,52.538077 +-0.246591,52.614155 +-0.271393,52.576218 +-0.242117,52.576479 +0.095077,52.580613 +0.059788,52.592948 +-0.299879,52.670701 +-0.270012,52.582429 +0.111677,52.220024 +-0.221698,52.592376 +-0.260519,52.605225 +-0.264191,52.584456 +0.32752,52.271427 +-0.221582,52.575921 +0.159152,52.241374 +0.194815,52.561435 +0.14718,52.65394 +-0.256548,52.605931 +0.062272,52.606868 +0.129766,52.203063 +0.146606,52.197201 +0.144599,52.209916 +-0.23283,52.58392 +0.313863,52.438191 +0.062026,52.177876 +0.387364,52.311704 +-0.025035,52.278382 +-0.098341,52.317529 +-0.239694,52.579878 +0.145914,52.190128 +0.151129,52.19238 +-0.157028,52.222152 +0.004922,52.076596 +0.130902,52.202333 +-0.263765,52.582526 +-0.224916,52.313529 +0.145969,52.22043 +0.125814,52.160126 +0.133976,52.2051 +0.225325,52.17596 +0.158151,52.667749 +-0.058632,52.327385 +-0.220619,52.589132 +-0.265167,52.606462 +-0.241793,52.59603 +-0.236247,52.574198 +-0.210607,52.59862 +-0.224117,52.576373 +0.078203,52.656653 +-0.012,52.272885 +0.168252,52.330623 +-0.24975,52.332566 +0.460284,52.279201 +-0.239101,52.578844 +-0.230372,52.22448 +0.146928,52.197204 +0.143401,52.176515 +-0.302421,52.284746 +0.143612,52.1742 +-0.183884,52.333891 +0.138336,52.197145 +0.054291,52.117585 +0.111153,52.217623 +0.171544,52.672378 +0.05494,52.499064 +-0.294588,52.219527 +0.009186,52.18546 +-0.256057,52.294212 +0.131433,52.202431 +-0.102805,52.228199 +-0.249758,52.332719 +-0.24364,52.577536 +-0.074437,52.323697 +-0.32018,52.53344 +0.009837,52.218376 +0.111745,52.21005 +0.164944,52.662752 +-0.138629,52.617668 +-0.241749,52.596011 +-0.240065,52.588308 +-0.358737,52.559443 +0.094628,52.459336 +0.126856,52.208025 +-0.252408,52.518083 +-0.255816,52.572681 +-0.245806,52.60348 +0.148837,52.179428 +-0.120362,52.30996 +-0.251716,52.59044 +0.215149,52.214592 +0.110273,52.195977 +0.09997,52.162091 +-0.010336,52.433257 +-0.220126,52.320273 +0.058291,52.572033 +0.217037,52.347017 +-0.09619,52.065378 +-0.270374,52.515856 +-0.259783,52.227929 +0.02207,52.589543 +0.103478,52.211358 +-0.090837,52.304047 +-0.169419,52.318805 +-0.209852,52.59904 +-0.266569,52.61657 +-0.256942,52.362046 +0.14507,52.197517 +-0.180207,52.331596 +-0.241019,52.580338 +-0.251105,52.579085 +0.116518,52.22455 +0.268463,52.397888 +0.11122,52.266556 +0.263681,52.217547 +0.151058,52.169991 +0.267281,52.396337 +-0.080368,52.178733 +0.150797,52.645395 +-0.318471,52.532625 +0.206328,52.392015 +-0.34743,52.584766 +0.112202,52.170918 +0.131407,52.202485 +-0.251323,52.593635 +0.086063,52.183316 +-0.248216,52.603416 +-0.191508,52.61098 +0.086945,52.543029 +0.375491,52.443012 +-0.270523,52.227763 +0.170637,52.161522 +-0.258728,52.539781 +0.160851,52.185575 +-0.132872,52.336189 +-0.184646,52.327825 +-0.242262,52.564011 +0.097703,52.464271 +0.148528,52.63319 +-0.02128,52.616934 +0.152956,52.196582 +0.264383,52.402615 +-0.252965,52.572396 +0.136014,52.189319 +0.285764,52.462135 +-0.107613,52.449842 +-0.34531,52.481854 +0.121689,52.198794 +-0.241704,52.596037 +-0.30418,52.540774 +0.154569,52.191796 +0.150505,52.205214 +-0.220074,52.320128 +0.137682,52.204566 +0.150705,52.232681 +0.1473,52.187603 +0.157073,52.186112 +0.111311,52.205535 +0.146184,52.197245 +-0.176293,52.613156 +0.11386,52.234866 +-0.08409,52.29046 +0.013166,52.216233 +-0.232615,52.576805 +-0.199208,52.329181 +0.177604,52.157473 +0.139255,52.199214 +-0.242469,52.570263 +0.154191,52.191254 +-0.061562,52.320798 +-0.220975,52.586539 +-0.307625,52.43811 +0.087097,52.535042 +-0.142043,52.346413 +0.136698,52.200214 +0.127431,52.216998 +0.118675,52.201267 +0.231604,52.144189 +-0.284607,52.573821 +-0.26826,52.229097 +-0.344076,52.268119 +0.148507,52.202031 +0.13595,52.20475 +0.298668,52.460599 +-0.263712,52.230055 +0.354174,52.407488 +0.171306,52.183971 +-0.238033,52.575295 +-0.270942,52.596324 +-0.208537,52.340912 +-0.154618,52.402617 +0.155832,52.196134 +0.173792,52.346616 +-0.234159,52.576586 +0.194696,52.078124 +-0.221226,52.57597 +-0.172226,52.351802 +-0.358917,52.559383 +-0.055614,52.217081 +-0.244237,52.569965 +0.127192,52.199423 +-0.249711,52.577014 +-0.2553,52.590889 +-0.249688,52.243002 +0.03259,52.104204 +-0.348588,52.272498 +0.32811,52.219458 +0.103942,52.583873 +0.192888,52.24559 +-0.268985,52.596143 +-0.264283,52.600057 +0.315008,52.087656 +0.134748,52.102362 +-0.261149,52.582973 +-0.266034,52.545957 +0.142095,52.229672 +-0.144534,52.28549 +-0.219609,52.550663 +-0.07579,52.324636 +-0.269147,52.590544 +0.158454,52.200726 +0.13113,52.195171 +-0.257035,52.578426 +0.162774,52.663421 +-0.278084,52.602812 +-0.251439,52.347408 +-0.176863,52.349005 +-0.361187,52.580803 +-0.269955,52.613878 +0.207937,52.186646 +-0.269746,52.583944 +-0.089422,52.330783 +-0.32163,52.536383 +-0.274131,52.444756 +-0.142917,52.429533 +-0.248811,52.599604 +0.306027,52.132865 +0.156824,52.199398 +-0.250298,52.591193 +-0.076445,52.315628 +0.05933,52.590106 +-0.086169,52.308908 +0.169573,52.633787 +0.305923,52.215946 +-0.117338,52.437823 +0.227924,52.388319 +-0.279598,52.509112 +0.256414,52.117738 +0.14888,52.17941 +-0.188396,52.334113 +-0.110608,52.334378 +-0.058465,52.630875 +0.233416,52.123455 +-0.090127,52.201541 +-0.261336,52.247409 +-0.065775,52.334219 +-0.285412,52.228565 +-0.433132,52.6083 +0.148602,52.212181 +-0.188644,52.52215 +0.161247,52.235042 +0.160944,52.667707 +-0.111402,52.446918 +-0.042735,52.359376 +0.322311,52.464812 +-0.274459,52.626279 +-0.178717,52.33142 +-0.122247,52.111951 +0.136418,52.213608 +0.170989,52.281009 +-0.182793,52.631319 +-0.261843,52.39882 +0.158705,52.077773 +-0.149354,52.214129 +0.162839,52.211454 +-0.176815,52.173357 +-0.227932,52.555679 +-0.194827,52.610365 +0.1622,52.185335 +0.069111,52.550149 +0.325405,52.349717 +-0.266644,52.517375 +-0.487928,52.638159 +-0.233924,52.303918 +0.117881,52.167328 +-0.31762,52.53175 +-0.263032,52.601063 +0.241976,52.166203 +0.082229,52.620006 +0.173667,52.187084 +0.162838,52.668023 +-0.28568,52.544418 +-0.126442,52.498551 +0.242728,52.234915 +0.110659,52.220177 +0.112633,52.173545 +-0.246616,52.587263 +0.154581,52.665539 +-0.111749,52.240337 +0.078111,52.094274 +0.074507,52.189922 +0.328065,52.21945 +-0.297288,52.22318 +-0.227877,52.555597 +-0.139045,52.617612 +0.175506,52.674436 +0.133001,52.2043 +-0.19526,52.333148 +-0.17012,52.194303 +-0.061106,52.621603 +-0.175457,52.345019 +0.161316,52.165595 +-0.289159,52.58312 +-0.220506,52.5788 +-0.149401,52.292526 +-0.017477,52.382629 +-0.302409,52.538141 +0.260097,52.104782 +0.02036,52.085936 +0.180201,52.229721 +0.067659,52.214806 +0.179685,52.265221 +-0.266723,52.560658 +-0.170916,52.350811 +-0.04642,52.220769 +0.069532,52.633023 +-0.133351,52.355834 +-0.194587,52.309311 +-0.249282,52.557794 +0.141232,52.23029 +-0.306775,52.544623 +-0.198441,52.543878 +-0.269328,52.228348 +-0.249959,52.600799 +0.061997,52.46035 +0.16145,52.667167 +0.134164,52.216966 +0.14203,52.660489 +0.003991,52.613929 +0.198114,52.114694 +0.124029,52.727762 +-0.152156,52.186101 +0.44092,52.270197 +-0.248476,52.575414 +0.079548,52.25087 +0.176377,52.104442 +-0.210158,52.598406 +0.479549,52.183325 +1.713865,52.649969 +1.476352,52.663317 +1.276044,52.640537 +1.274985,52.58799 +1.075985,52.6087 +1.282909,52.860436 +1.548265,52.518732 +1.723949,52.563483 +1.389837,52.820815 +0.954251,52.671279 +1.218836,52.643645 +1.317623,52.647636 +0.804291,52.570071 +1.248281,52.62899 +1.254508,52.610544 +1.241245,52.686328 +1.061923,52.605332 +1.286046,52.628614 +1.275492,52.625246 +0.214952,52.624603 +1.001084,52.744554 +1.316673,52.662817 +1.248614,52.628909 +1.372319,52.586335 +1.033152,52.527365 +1.004175,52.392254 +1.245201,52.628526 +1.147681,52.534589 +1.286096,52.666925 +1.027676,52.580835 +1.258584,52.756918 +0.987505,52.529382 +0.80802,52.670601 +0.840324,52.824718 +1.637971,52.682224 +0.827924,52.574491 +1.33676,52.751227 +1.42053,52.631405 +1.726813,52.613395 +1.334731,52.664135 +0.868589,52.501678 +1.288537,52.65629 +1.637157,52.703746 +1.323817,52.606684 +1.045649,52.855828 +1.203957,52.624982 +0.765291,52.463186 +0.426432,52.756846 +0.735731,52.423362 +0.391013,52.527403 +0.389093,52.563175 +1.4583,52.637053 +0.854523,52.547917 +0.41955,52.672491 +0.410746,52.710858 +1.186139,52.739022 +1.302299,52.63639 +0.736222,52.653883 +1.294366,52.812993 +1.267969,52.648234 +1.403719,52.709704 +1.733682,52.613709 +1.134449,52.538475 +1.222615,52.602154 +1.687224,52.691863 +1.171119,52.459326 +1.309524,52.634381 +1.222516,52.690041 +1.08413,52.729481 +1.300117,52.644716 +1.278902,52.625592 +1.058588,52.577198 +1.364808,52.587952 +1.410324,52.79769 +1.451783,52.634077 +1.203506,52.647919 +1.273482,52.616739 +1.297737,52.759118 +1.5046,52.64661 +1.218924,52.646259 +0.454927,52.762293 +1.300987,52.539052 +1.716732,52.590865 +1.260119,52.629573 +1.287323,52.872823 +0.679569,52.487569 +1.287761,52.640842 +0.463105,52.577646 +1.19166,52.551244 +1.061106,52.8557 +1.267479,52.648401 +1.483126,52.623706 +1.234653,52.608966 +0.394332,52.603272 +1.298733,52.637722 +1.108441,52.680787 +1.0972,52.691927 +0.868674,52.496865 +1.290615,52.635331 +1.277611,52.573519 +0.846337,52.861047 +0.194694,52.738784 +1.298709,52.646626 +1.26497,52.501343 +1.216304,52.624261 +1.287835,52.635516 +1.259087,52.634782 +1.216935,52.644344 +0.41101,52.755623 +1.697007,52.655597 +1.298749,52.629294 +1.279654,52.633458 +1.263798,52.38505 +1.275697,52.920864 +1.359235,52.777465 +1.200551,52.923633 +1.259266,52.502328 +1.279091,52.657145 +0.197548,52.700095 +1.080869,52.671893 +1.504583,52.635125 +1.296556,52.636694 +0.420028,52.757102 +1.397306,52.8292 +0.715402,52.621441 +1.400615,52.570379 +0.981592,52.861079 +1.299519,52.63618 +0.41396,52.72643 +1.235565,52.644142 +1.275181,52.64066 +1.298928,52.629316 +0.413514,52.649946 +1.263368,52.633513 +0.398223,52.758103 +0.493999,52.937885 +1.499406,52.505986 +1.216753,52.785671 +1.272131,52.6507 +1.352395,52.820036 +0.831964,52.91065 +1.726128,52.581341 +0.462127,52.602592 +1.729963,52.599524 +1.58364,52.660001 +1.504394,52.522172 +1.293829,52.613585 +0.628172,52.459371 +0.404994,52.748111 +1.259106,52.634242 +0.752254,52.414219 +1.263389,52.664756 +1.727396,52.639182 +1.714873,52.611126 +1.257549,52.762514 +0.738394,52.839991 +0.391523,52.592377 +0.568625,52.802173 +0.428763,52.76837 +1.299326,52.616732 +0.391283,52.612919 +0.939169,52.748453 +1.231573,52.605057 +1.282455,52.401936 +1.272868,52.630085 +1.382752,52.7688 +1.556899,52.479437 +0.744179,52.403076 +0.845119,52.447667 +1.281725,52.612752 +1.245149,52.642594 +0.397756,52.598374 +0.855122,52.570547 +0.407995,52.757662 +1.162723,52.57455 +1.262975,52.664947 +1.016846,52.681635 +0.941035,52.682643 +0.213906,52.595975 +0.669702,52.653737 +1.29213,52.635432 +0.735383,52.406814 +1.729427,52.606602 +1.718981,52.583599 +1.087099,52.904757 +1.019481,52.516591 +1.282022,52.6479 +0.758491,52.434505 +1.298058,52.64329 +1.26845,52.619397 +0.495843,52.92908 +0.677254,52.650761 +0.208318,52.552686 +1.301029,52.610119 +1.373299,52.627706 +1.54624,52.475134 +1.136274,52.623368 +1.247331,52.507369 +1.236199,52.490667 +1.715147,52.581569 +1.187016,52.586894 +1.292317,52.594623 +1.286517,52.642774 +0.687883,52.866099 +0.594052,52.479962 +1.300523,52.397754 +0.448507,52.718402 +1.720981,52.604394 +0.94391,52.681177 +0.604195,52.561614 +1.034466,52.488472 +0.387116,52.593068 +1.306685,52.617912 +1.715821,52.572436 +1.289061,52.640428 +0.946404,52.677347 +0.789487,52.875777 +1.219548,52.643679 +1.731617,52.590495 +1.14962,52.655066 +1.392093,52.823089 +1.285339,52.631997 +0.690377,52.477594 +1.554851,52.638096 +0.73575,52.40918 +1.301447,52.65745 +0.68544,52.647779 +0.398336,52.758272 +1.086494,52.670884 +1.196084,52.764754 +0.447543,52.754317 +0.960528,52.709612 +1.292251,52.685622 +1.728834,52.582596 +1.687185,52.692619 +1.281102,52.633059 +0.660128,52.653126 +1.328577,52.634953 +1.297739,52.759145 +0.742592,52.412573 +0.646913,52.89993 +0.913074,52.674071 +1.333379,52.858219 +1.22278,52.67916 +1.285655,52.618866 +1.362544,52.45961 +1.337773,52.634379 +0.234035,52.61055 +1.149214,52.654969 +0.745989,52.429122 +1.72852,52.574034 +0.735121,52.408997 +1.234353,52.637142 +1.309451,52.634392 +1.258563,52.50259 +1.232736,52.788572 +0.537088,52.708698 +1.271652,52.634786 +1.237834,52.869715 +1.18403,52.923582 +1.312539,52.637507 +0.840276,52.824656 +1.714591,52.602383 +1.293239,52.627172 +0.48798,52.749519 +1.721458,52.611935 +1.287226,52.539067 +1.113266,52.56989 +1.298759,52.630409 +1.727311,52.614557 +0.775175,52.656978 +1.296615,52.596401 +1.312596,52.609122 +0.390204,52.572487 +1.205944,52.647097 +1.33583,52.574472 +0.425374,52.759421 +0.720477,52.405441 +1.388122,52.721295 +1.343687,52.632656 +1.712902,52.598487 +1.725349,52.590423 +1.27893,52.619835 +0.411174,52.756456 +1.329059,52.660346 +0.940198,52.662933 +1.040041,52.454613 +1.233513,52.938819 +1.721061,52.561451 +1.261666,52.678752 +1.357805,52.628227 +1.252934,52.659611 +1.235501,52.644081 +0.66194,52.758545 +1.06657,52.537592 +1.38777,52.829922 +1.331171,52.65526 +0.951963,52.872647 +0.425133,52.756944 +0.691168,52.658476 +1.296394,52.638857 +0.873986,52.747902 +1.061908,52.605333 +1.302078,52.62895 +1.269701,52.649041 +0.245777,52.749795 +0.497534,52.924584 +1.264076,52.63647 +1.285181,52.601495 +1.214097,52.669333 +0.750174,52.415059 +1.50022,52.627699 +1.109226,52.721388 +1.28121,52.600939 +1.720792,52.6053 +1.219277,52.449633 +1.384053,52.821655 +1.359897,52.628906 +0.799354,52.72566 +1.235547,52.489615 +0.548943,52.735042 +1.123968,52.554553 +1.204763,52.621039 +0.383662,52.740341 +0.853142,52.823682 +0.722971,52.404394 +0.391773,52.736968 +1.455272,52.811192 +1.32811,52.659744 +1.122537,52.568468 +1.299093,52.930513 +1.261928,52.636808 +1.261264,52.652116 +1.64393,52.544748 +1.271018,52.731376 +0.871458,52.50838 +1.35245,52.652896 +0.8544,52.548064 +1.333032,52.858544 +0.403469,52.744105 +1.33427,52.66002 +1.285256,52.601511 +1.584568,52.705808 +0.703836,52.427369 +1.466276,52.636397 +1.074447,52.587174 +1.280032,52.665366 +0.823207,52.571366 +1.113564,52.569927 +1.275972,52.89161 +1.370777,52.584724 +1.238809,52.494706 +0.414057,52.737568 +1.22254,52.602138 +0.840884,52.842617 +1.724259,52.616371 +1.234876,52.641022 +0.404257,52.756533 +1.349095,52.711486 +1.165278,52.652967 +1.245644,52.695138 +1.031025,52.500557 +1.192317,52.536531 +1.297551,52.888899 +1.705412,52.677128 +0.639014,52.941703 +1.71199,52.578637 +0.877297,52.783963 +1.709789,52.578625 +1.14965,52.62402 +0.28442,52.579934 +0.701796,52.772885 +1.727722,52.60653 +1.724793,52.609267 +1.472184,52.511061 +1.389896,52.624246 +1.301791,52.659662 +0.686283,52.705644 +0.380654,52.742776 +1.124285,52.914279 +1.119274,52.566369 +0.41683,52.656182 +0.900143,52.842649 +1.020839,52.746507 +0.8356,52.899593 +1.522706,52.48807 +1.22394,52.656753 +1.258619,52.629875 +1.249064,52.654906 +1.190664,52.650262 +1.219981,52.62926 +1.291232,52.933213 +1.214062,52.549505 +1.371903,52.431417 +1.244614,52.633363 +1.275712,52.597135 +1.276608,52.597865 +1.147713,52.706693 +1.282965,52.629904 +1.516367,52.773887 +1.263015,52.623018 +0.742528,52.422665 +0.987488,52.627208 +1.090265,52.558901 +1.185092,52.650295 +1.166092,52.755585 +1.717382,52.555306 +0.380702,52.545298 +1.341637,52.649964 +0.9867,52.937766 +1.29331,52.66096 +1.26839,52.619389 +0.911673,52.807655 +1.230466,52.610277 +1.727888,52.62777 +1.100875,52.666938 +0.824878,52.56844 +1.359359,52.674321 +1.116962,52.8635 +1.723857,52.609908 +1.727486,52.608273 +0.860216,52.570576 +1.342149,52.641172 +1.242745,52.629889 +1.521738,52.635947 +0.217476,52.62309 +1.305765,52.599833 +1.378137,52.62585 +1.231049,52.611169 +0.18948,52.683206 +0.579167,52.960272 +0.981869,52.496915 +0.24815,52.52533 +1.291129,52.610089 +1.364987,52.55619 +1.28625,52.628581 +1.236592,52.491205 +0.987266,52.579047 +0.854479,52.547918 +0.756634,52.90986 +0.961388,52.864625 +0.789725,52.842212 +1.217225,52.598352 +1.431032,52.632243 +1.311289,52.622334 +0.764359,52.624076 +1.625404,52.537106 +0.755597,52.419249 +0.499247,52.866238 +1.041945,52.63378 +1.014501,52.519002 +1.240572,52.702804 +1.015364,52.822294 +0.941002,52.67401 +0.747517,52.654548 +1.277148,52.646605 +1.098194,52.657907 +1.281108,52.64913 +0.829789,52.570669 +1.194058,52.409918 +1.271663,52.647602 +0.276458,52.710448 +1.691961,52.694665 +0.400812,52.753708 +0.401417,52.749361 +1.285698,52.609584 +1.284453,52.603413 +1.735639,52.605291 +1.283742,52.392736 +1.222896,52.676108 +1.082805,52.434377 +0.775158,52.656943 +1.389134,52.820934 +1.214805,52.644734 +1.121413,52.695635 +1.210148,52.94332 +1.529153,52.629987 +1.476457,52.636332 +1.218269,52.734278 +1.381137,52.515994 +1.384667,52.627345 +0.279662,52.618501 +0.98124,52.881951 +0.400457,52.751035 +1.28562,52.627861 +0.419628,52.771803 +1.426051,52.631686 +1.256489,52.628864 +1.231707,52.606475 +1.281082,52.643654 +1.284491,52.657562 +1.279801,52.652017 +1.733056,52.608619 +1.723811,52.59979 +1.304821,52.632588 +0.694166,52.693739 +1.312715,52.661533 +1.203304,52.364825 +1.244593,52.697739 +0.43587,52.721737 +0.581512,52.493923 +1.274327,52.723928 +1.601552,52.62366 +1.303186,52.610698 +1.268623,52.622513 +0.420159,52.696361 +1.238091,52.636105 +1.72868,52.609801 +1.727667,52.621526 +1.099197,52.620667 +1.497148,52.526911 +0.912859,52.676846 +1.360665,52.673987 +0.661913,52.758582 +1.354587,52.671714 +0.848546,52.830123 +0.41311,52.648785 +0.187704,52.639963 +1.029742,52.951541 +1.413621,52.624679 +1.07858,52.546714 +0.883278,52.752388 +1.298546,52.650354 +1.161137,52.624272 +0.391128,52.674282 +0.999849,52.510804 +0.399432,52.756919 +1.259669,52.647573 +1.276362,52.645178 +0.416362,52.757276 +1.064256,52.732722 +1.444585,52.550948 +1.550249,52.640419 +1.326087,52.91823 +0.785514,52.778745 +1.372808,52.825213 +1.24075,52.639485 +0.427226,52.756731 +0.489514,52.646673 +1.242821,52.601143 +1.334633,52.648093 +1.181272,52.652673 +1.184926,52.651873 +1.109019,52.566603 +0.992514,52.774087 +1.738864,52.627514 +0.484239,52.824876 +1.260213,52.752134 +1.223449,52.675985 +1.705086,52.669079 +1.334578,52.88933 +0.464701,52.751623 +1.409658,52.712178 +0.744984,52.555554 +1.294289,52.633079 +1.537923,52.476301 +0.283623,52.746698 +0.417604,52.665661 +1.728056,52.638775 +1.220914,52.600716 +1.267059,52.623941 +1.174798,52.708785 +1.517275,52.585127 +1.010756,52.631609 +1.292294,52.63505 +1.166948,52.60059 +0.420639,52.754743 +0.686611,52.647114 +0.580155,52.496174 +0.840929,52.842625 +0.601151,52.590699 +0.380528,52.742374 +1.289981,52.626499 +1.712332,52.596994 +1.386528,52.898057 +1.306,52.669752 +1.224283,52.676269 +1.284917,52.631694 +1.513963,52.77037 +1.030799,52.574316 +1.554698,52.6373 +0.758504,52.457068 +0.779609,52.430602 +1.644259,52.544981 +1.712463,52.596972 +0.989754,52.541429 +1.279988,52.651355 +1.717153,52.616748 +0.686562,52.648482 +0.315923,52.688841 +0.427047,52.74126 +1.22661,52.810413 +1.119679,52.623375 +0.830529,52.678284 +0.586943,52.684034 +1.413695,52.78314 +1.296762,52.402923 +1.731422,52.630726 +1.191573,52.605504 +1.231811,52.479455 +1.404807,52.569611 +1.72374,52.611656 +1.303572,52.619357 +0.641825,52.628654 +1.330088,52.681066 +1.266242,52.653417 +1.296588,52.638888 +1.257462,52.637381 +1.275948,52.649534 +1.729095,52.577496 +0.393671,52.736183 +1.726396,52.577878 +1.10762,52.721916 +0.582462,52.492544 +1.045572,52.68063 +1.289121,52.640436 +1.098355,52.545568 +1.045799,52.659014 +0.502672,52.851923 +1.726193,52.619306 +0.986845,52.502059 +0.386459,52.602991 +1.682246,52.549507 +1.260148,52.682203 +1.730082,52.60266 +1.311692,52.622772 +1.54802,52.78013 +1.560646,52.464195 +1.37031,52.680881 +1.39885,52.701552 +1.428038,52.541203 +1.363425,52.736613 +0.335822,52.757478 +0.365684,52.603614 +1.228321,52.633718 +1.372025,52.632464 +1.720013,52.614229 +1.242018,52.700939 +0.866683,52.453136 +0.745193,52.404491 +1.081646,52.662754 +0.59028,52.746132 +1.717313,52.616725 +1.262133,52.622476 +0.449879,52.755806 +0.922829,52.71401 +1.319483,52.592749 +1.342052,52.699175 +0.748467,52.654615 +1.308904,52.721259 +0.877982,52.570505 +0.384614,52.745034 +0.256759,52.673267 +1.261465,52.625615 +1.282793,52.646952 +0.682785,52.642813 +1.71371,52.601574 +0.416467,52.757292 +0.95576,52.660334 +1.27925,52.650773 +1.396433,52.825816 +0.417417,52.757309 +1.49631,52.526945 +0.401437,52.749451 +1.285451,52.63212 +1.479547,52.770225 +1.247134,52.507096 +1.090932,52.378324 +0.689464,52.644694 +1.366476,52.677213 +1.274023,52.622192 +1.418908,52.795707 +1.728724,52.60702 +1.023665,52.891543 +1.180361,52.652347 +1.40356,52.481857 +1.722587,52.575102 +0.692264,52.617842 +1.397142,52.640883 +0.205776,52.727941 +1.438773,52.622575 +1.542337,52.641853 +1.64892,52.702053 +1.371564,52.728045 +1.685811,52.673513 +1.351693,52.72663 +0.691477,52.648587 +0.320905,52.736156 +0.307195,52.598744 +1.726696,52.602802 +0.837245,52.828262 +0.621856,52.45738 +1.728267,52.631869 +1.282382,52.68131 +1.257775,52.67081 +0.444043,52.613074 +1.338528,52.660386 +0.417558,52.665896 +1.302611,52.643271 +1.193054,52.898618 +1.185884,52.629274 +1.286309,52.642969 +1.29625,52.394087 +1.312599,52.633989 +1.466722,52.736307 +1.249207,52.7952 +0.725516,52.40537 +1.706553,52.653742 +1.41553,52.649168 +1.027839,52.491304 +1.235856,52.602638 +0.366901,52.603455 +1.291409,52.638816 +1.729471,52.619103 +0.497814,52.912134 +1.248063,52.628843 +1.244527,52.679088 +0.736598,52.413854 +0.976998,52.534494 +0.975035,52.394359 +1.302991,52.399295 +1.286008,52.651755 +1.218506,52.719612 +1.728051,52.662161 +1.343413,52.634876 +0.375936,52.602833 +1.086032,52.742346 +1.114329,52.662475 +1.215804,52.517449 +0.546591,52.695698 +1.724818,52.607476 +1.281863,52.84934 +1.237139,52.649639 +1.184366,52.63258 +1.273215,52.638097 +0.835498,52.899631 +1.116549,52.839913 +1.165681,52.679001 +1.725045,52.583534 +1.719326,52.642359 +1.708132,52.580332 +1.272896,52.588686 +0.314616,52.723978 +1.001713,52.944123 +1.720586,52.578844 +0.967781,52.587154 +1.30004,52.636031 +1.089023,52.899195 +0.626673,52.86648 +1.176453,52.458985 +1.299762,52.635679 +0.433887,52.746757 +1.215511,52.658367 +1.386344,52.63183 +1.25922,52.632791 +1.105828,52.383267 +1.039025,52.386848 +1.514062,52.770313 +0.496054,52.928347 +1.62955,52.683121 +1.277068,52.656401 +1.272086,52.631887 +1.482284,52.654212 +1.072966,52.454742 +1.248042,52.617 +1.284656,52.629201 +1.729398,52.606783 +1.250807,52.661451 +1.593232,52.663137 +1.677822,52.672655 +0.85516,52.534781 +0.74911,52.834726 +1.244266,52.937699 +1.378186,52.626109 +1.727798,52.627584 +1.427221,52.789719 +1.308982,52.634648 +1.710933,52.575045 +1.725517,52.60597 +1.717791,52.554205 +0.384707,52.601461 +0.509283,52.950997 +1.035067,52.4803 +1.449019,52.63333 +1.543001,52.60528 +0.745042,52.404423 +0.432152,52.756315 +1.28077,52.689997 +1.340372,52.576539 +1.00844,52.521557 +0.805364,52.921866 +1.244518,52.638654 +1.503948,52.773634 +1.263598,52.613379 +1.091022,52.533376 +1.131493,52.941788 +1.291216,52.638615 +1.715188,52.597399 +1.358831,52.767799 +0.822444,52.565701 +1.710629,52.651222 +1.222719,52.602367 +0.404959,52.743184 +1.259083,52.634323 +0.397186,52.597657 +0.570452,52.802457 +1.726523,52.577811 +1.394214,52.858832 +0.4171,52.740627 +1.598889,52.478066 +1.210574,52.696723 +1.223632,52.618602 +0.465387,52.599629 +0.428239,52.74164 +1.118743,52.374032 +1.59681,52.692269 +1.274723,52.922545 +0.712743,52.961514 +0.595269,52.712644 +1.533135,52.597058 +0.398129,52.598978 +1.108071,52.373773 +1.050097,52.531867 +1.713358,52.653934 +1.292218,52.685372 +1.323614,52.606735 +0.747481,52.416228 +1.728075,52.610162 +1.306373,52.652762 +1.358808,52.620482 +0.725617,52.40534 +0.970363,52.698988 +1.261468,52.682436 +0.928451,52.525436 +1.260566,52.533806 +1.732793,52.604481 +0.537704,52.561278 +0.749963,52.643349 +1.119237,52.561477 +0.249947,52.525584 +1.655976,52.71843 +0.715155,52.942738 +1.277599,52.647294 +1.690915,52.697001 +1.206608,52.646863 +0.744969,52.416034 +1.278789,52.633563 +1.73551,52.597361 +1.236456,52.630582 +0.940283,52.951478 +1.21425,52.650065 +1.327884,52.636915 +1.292235,52.637813 +0.755164,52.71122 +1.00589,52.891015 +1.294177,52.402959 +0.378729,52.687848 +0.457275,52.765022 +1.18439,52.740031 +1.241861,52.637719 +0.614765,52.464408 +1.721878,52.612524 +1.73256,52.605397 +1.283599,52.915375 +1.357573,52.907883 +0.164886,52.684611 +1.379785,52.625569 +1.296344,52.570372 +0.419511,52.757122 +0.758099,52.418103 +0.220351,52.684241 +1.24148,52.639357 +1.261057,52.623117 +1.277164,52.656893 +1.327208,52.877755 +1.391516,52.488058 +0.848694,52.828761 +1.404484,52.606379 +1.178026,52.594276 +1.245324,52.696819 +1.273726,52.658382 +0.232534,52.609796 +0.729296,52.446343 +1.386326,52.821284 +1.654089,52.721897 +0.760509,52.694576 +1.052072,52.914269 +1.211756,52.645294 +1.500042,52.635097 +1.230566,52.642111 +0.938335,52.746639 +1.520003,52.770613 +1.256047,52.769201 +0.457747,52.617736 +1.627422,52.622474 +0.949107,52.672883 +1.727309,52.57785 +0.958703,52.393492 +1.28072,52.704721 +1.729413,52.627623 +0.43585,52.755906 +1.327441,52.659502 +1.466322,52.636413 +1.21195,52.642896 +1.57831,52.648362 +1.179039,52.397615 +1.33753,52.782413 +0.378548,52.601441 +1.222619,52.67617 +1.60641,52.696483 +1.20021,52.92366 +1.192058,52.551243 +1.727275,52.614477 +1.240813,52.702456 +0.895817,52.754412 +0.37651,52.602795 +1.215105,52.624041 +0.448497,52.753883 +0.411236,52.75703 +0.84637,52.717778 +0.732696,52.842424 +1.398213,52.890582 +0.933401,52.817174 +1.038981,52.586966 +1.310993,52.651859 +0.377642,52.535333 +1.232516,52.634485 +1.730235,52.603761 +1.505804,52.805733 +0.448776,52.754642 +1.080714,52.611032 +1.241128,52.639403 +0.688701,52.649612 +1.297094,52.400278 +1.482067,52.504061 +1.270035,52.733076 +1.601225,52.623823 +1.511469,52.532108 +1.302383,52.616125 +1.10851,52.9441 +1.716745,52.556325 +1.198965,52.923729 +1.198075,52.624368 +0.426634,52.729822 +0.931464,52.813319 +0.890006,52.628746 +1.702841,52.564874 +1.306027,52.627805 +1.365303,52.66792 +0.688537,52.65609 +1.102669,52.378035 +1.297897,52.629363 +0.983733,52.883183 +0.401995,52.748819 +1.191721,52.64812 +1.225248,52.60362 +1.02131,52.642987 +0.688324,52.663702 +1.386427,52.757309 +0.399533,52.756863 +1.293825,52.64205 +0.850301,52.831753 +0.680706,52.556102 +1.086989,52.670781 +1.292495,52.621986 +1.353337,52.83707 +1.044882,52.941756 +1.246736,52.619715 +1.350286,52.72238 +1.302984,52.92786 +1.56189,52.720244 +1.288972,52.50128 +0.739956,52.395908 +0.871969,52.831392 +1.554072,52.72611 +1.505167,52.514288 +0.9589,52.789841 +1.717606,52.578875 +0.398971,52.604383 +1.310281,52.651645 +1.280018,52.633385 +0.276965,52.678941 +1.03666,52.952101 +1.056366,52.533594 +1.715145,52.600206 +1.369464,52.541258 +1.259135,52.632838 +0.993109,52.773893 +1.056657,52.855608 +1.578189,52.630593 +0.241501,52.74155 +1.291355,52.621181 +1.302032,52.653252 +1.08292,52.729746 +1.359325,52.674268 +1.280412,52.643591 +1.057921,52.538572 +1.091053,52.907227 +1.370888,52.68127 +1.222885,52.602614 +1.733134,52.609876 +1.240469,52.639484 +1.087697,52.895389 +0.323706,52.756781 +1.403071,52.709174 +1.214795,52.743437 +0.93397,52.682557 +0.747846,52.416174 +1.559501,52.636004 +0.42359,52.739838 +0.855414,52.680763 +1.29703,52.62668 +1.325191,52.636298 +1.275653,52.632337 +1.618237,52.680544 +1.207224,52.624786 +0.735148,52.847655 +0.493887,52.812166 +0.686377,52.656795 +1.356363,52.628115 +0.40278,52.604639 +0.935333,52.733062 +0.233055,52.56544 +0.993664,52.436947 +1.082802,52.953125 +1.168921,52.654066 +1.72497,52.570826 +1.378131,52.791443 +1.357782,52.589528 +0.688671,52.647194 +1.307734,52.630051 +1.688373,52.568187 +0.863178,52.831146 +0.418242,52.736899 +0.61512,52.669253 +1.228344,52.642657 +1.725315,52.564105 +1.318783,52.690827 +1.28407,52.616257 +0.433857,52.746749 +0.749059,52.416047 +0.62668,52.866588 +1.113832,52.421998 +1.273187,52.727305 +0.683883,52.900926 +0.409781,52.752689 +0.401279,52.744689 +1.228515,52.654812 +0.542968,52.70823 +1.299904,52.635207 +0.391902,52.592558 +1.278151,52.655058 +1.569478,52.480874 +0.696001,52.611102 +1.277663,52.624439 +0.281158,52.725895 +0.688622,52.629768 +1.035264,52.658529 +1.286333,52.61096 +0.757981,52.561178 +1.283545,52.612 +1.719069,52.615293 +1.308256,52.669069 +1.386429,52.830248 +1.055423,52.546982 +1.196374,52.601642 +1.204175,52.647775 +1.298228,52.631989 +0.412988,52.648707 +1.312466,52.634002 +1.295879,52.664036 +1.25569,52.784473 +1.080027,52.937127 +1.273302,52.616699 +1.342274,52.641249 +1.70827,52.585986 +1.733249,52.625982 +1.290541,52.624307 +1.223373,52.936991 +0.940457,52.681973 +1.28517,52.62817 +1.270073,52.63501 +1.349345,52.632802 +1.32391,52.635777 +0.379281,52.742866 +1.263748,52.613411 +1.22836,52.642675 +1.228295,52.556078 +1.148058,52.828343 +1.446609,52.526893 +1.19099,52.643769 +1.269564,52.654342 +1.455157,52.641803 +0.511949,52.716409 +1.71089,52.571737 +1.30349,52.646502 +0.624909,52.90861 +1.010711,52.5457 +1.133764,52.826545 +1.263056,52.633494 +0.679254,52.554309 +0.403806,52.672668 +1.145134,52.601855 +0.577601,52.903164 +0.98618,52.530063 +1.28536,52.628147 +1.186001,52.652024 +0.854346,52.570637 +1.261647,52.651898 +0.413141,52.648812 +1.307912,52.617527 +1.340243,52.667352 +1.28909,52.635499 +1.715399,52.666651 +1.29924,52.63581 +1.36729,52.657601 +0.684002,52.516811 +1.319275,52.410558 +0.911117,52.525072 +0.724254,52.405174 +1.723328,52.612029 +1.606357,52.623136 +0.944966,52.491077 +1.12196,52.568438 +1.270808,52.620699 +1.451291,52.750275 +1.419536,52.66052 +1.556491,52.640268 +1.49322,52.48524 +1.282412,52.857005 +0.982764,52.579709 +1.480751,52.536065 +0.418283,52.736826 +1.098158,52.657818 +1.118623,52.564263 +0.936631,52.707419 +1.725178,52.595196 +1.296559,52.621801 +1.728769,52.605292 +0.417787,52.666566 +1.329414,52.867369 +0.513073,52.716385 +1.275941,52.594664 +0.219373,52.601592 +0.718727,52.862483 +1.727124,52.605577 +0.615867,52.515244 +0.747895,52.76608 +1.204946,52.547908 +1.011125,52.857582 +0.921001,52.397119 +1.709751,52.593018 +0.723415,52.414231 +0.208423,52.594711 +1.271271,52.801941 +1.529062,52.718736 +0.556593,52.744255 +1.300025,52.634466 +1.228307,52.711737 +1.713918,52.598806 +1.305997,52.627806 +1.21367,52.603854 +1.360589,52.734041 +1.280291,52.618664 +0.429507,52.774281 +1.22361,52.676161 +0.750769,52.420612 +0.813618,52.77648 +0.497308,52.922989 +1.315579,52.64173 +0.418057,52.737028 +1.714407,52.578759 +1.205078,52.547905 +0.919456,52.448265 +1.02557,52.512532 +1.108451,52.376875 +1.300717,52.650123 +1.282152,52.638597 +0.411206,52.757021 +1.260309,52.653194 +1.217111,52.939652 +1.3988,52.700915 +1.014446,52.954034 +0.407184,52.738122 +1.280029,52.665321 +1.062241,52.535789 +0.944565,52.682339 +1.278805,52.633572 +1.231279,52.490487 +1.270057,52.662126 +1.080662,52.611132 +1.721134,52.605847 +1.474986,52.846348 +1.271533,52.638926 +0.3936,52.754618 +0.229563,52.618475 +1.329788,52.680436 +1.113289,52.581869 +1.288655,52.905729 +1.101366,52.877326 +0.942304,52.683483 +1.307243,52.611403 +0.480624,52.750455 +1.275708,52.643955 +1.3128,52.66109 +1.410956,52.71268 +1.713875,52.598996 +1.261908,52.538383 +1.208974,52.640216 +1.137854,52.578747 +1.380951,52.779797 +1.722331,52.610378 +1.161222,52.624225 +1.351675,52.671175 +1.276481,52.658036 +1.51545,52.771711 +1.276496,52.645399 +0.960022,52.691432 +0.978441,52.576266 +0.616197,52.515336 +0.904633,52.562858 +1.324164,52.572085 +1.300628,52.749918 +1.130329,52.8341 +1.267074,52.468917 +1.351373,52.726127 +1.261683,52.67877 +0.664351,52.884101 +1.22963,52.810115 +1.294396,52.632734 +1.731588,52.590496 +1.194874,52.674718 +1.529768,52.475627 +1.398488,52.827223 +1.589562,52.627226 +1.119288,52.571764 +1.732756,52.605436 +1.710855,52.619869 +0.836223,52.826254 +0.863284,52.83118 +1.296781,52.638703 +1.342009,52.661034 +1.342142,52.641469 +1.712546,52.607898 +0.410449,52.751381 +1.280012,52.651472 +1.221192,52.56487 +1.080767,52.611156 +1.311122,52.659635 +1.2819,52.61272 +1.12018,52.370657 +0.840049,52.824598 +1.305187,52.568821 +1.656417,52.567326 +1.282876,52.860392 +0.567703,52.699847 +1.187545,52.943066 +1.302821,52.649587 +1.378339,52.818616 +1.289851,52.635397 +0.689159,52.570073 +1.298744,52.631777 +1.08814,52.907051 +1.483465,52.481498 +0.910723,52.807652 +1.723764,52.585499 +1.547083,52.72998 +1.223511,52.676029 +0.312776,52.756923 +1.715104,52.564319 +1.333061,52.686486 +0.853054,52.844528 +0.462016,52.60272 +1.273034,52.629532 +1.560213,52.574525 +1.116567,52.378604 +1.288545,52.656397 +1.285407,52.628173 +1.50163,52.832811 +1.221524,52.625306 +1.102121,52.374002 +1.185704,52.653219 +1.690146,52.620525 +0.950092,52.89478 +1.187531,52.778366 +1.278109,52.618932 +1.727063,52.609384 +1.24056,52.686868 +1.409891,52.712315 +1.718812,52.584045 +1.018711,52.660616 +1.154698,52.704592 +0.954668,52.869819 +1.287802,52.607097 +1.722332,52.610396 +1.328437,52.636603 +0.496559,52.910227 +1.31085,52.651729 +1.200818,52.54775 +1.321216,52.735124 +1.709995,52.573546 +1.72256,52.590448 +1.202563,52.622079 +0.500765,52.915857 +1.276258,52.560722 +1.310971,52.634169 +0.736826,52.405657 +1.431968,52.878737 +0.908658,52.398988 +1.715426,52.600216 +1.26441,52.621109 +0.734713,52.419509 +1.292842,52.640971 +0.199311,52.695414 +1.26044,52.653163 +0.427551,52.766309 +1.284739,52.664606 +1.063967,52.693124 +0.623178,52.521925 +0.273352,52.711065 +1.220689,52.606712 +1.306551,52.628483 +0.444724,52.754789 +1.399296,52.840223 +1.076113,52.539071 +1.184783,52.649917 +1.28089,52.401854 +1.237659,52.644462 +0.380655,52.742803 +1.311577,52.896566 +1.375545,52.582016 +1.317655,52.665811 +1.320954,52.6077 +0.432841,52.777962 +1.249683,52.728564 +1.328554,52.680354 +0.400245,52.750671 +0.963502,52.484975 +0.787132,52.609235 +1.603357,52.694651 +1.29732,52.617768 +1.300718,52.650132 +1.522766,52.774704 +1.140987,52.942769 +1.275254,52.63037 +1.713265,52.598943 +0.403689,52.744064 +1.293289,52.626461 +1.286781,52.63389 +0.819707,52.571333 +1.18494,52.396251 +0.733176,52.408223 +1.276358,52.560881 +0.255807,52.704441 +NULL,NULL +0.304262,52.723937 +0.940783,52.681543 +1.718033,52.614759 +1.25526,52.657677 +1.160224,52.365581 +0.410213,52.640994 +1.716926,52.592289 +1.280411,52.633312 +1.196262,52.935907 +0.904009,52.841161 +0.433077,52.771294 +0.845448,52.410528 +1.300102,52.6345 +1.080661,52.611114 +1.241882,52.631207 +0.899063,52.502571 +1.380203,52.652062 +1.304774,52.628245 +0.378609,52.601476 +1.284531,52.62674 +1.186261,52.65173 +1.426312,52.631615 +1.390747,52.625885 +1.727028,52.574548 +1.460159,52.63663 +1.303231,52.62836 +1.233445,52.639865 +0.555755,52.771186 +0.772462,52.425716 +1.264286,52.652779 +1.281262,52.626309 +1.354812,52.423575 +1.73056,52.596474 +1.286206,52.627206 +1.728148,52.605977 +1.276058,52.644881 +0.580183,52.496137 +0.558581,52.522729 +0.783854,52.433047 +1.244397,52.813291 +0.497927,52.923407 +0.49906,52.890897 +1.67213,52.558933 +0.512588,52.843324 +1.721041,52.605796 +1.216541,52.624272 +0.743119,52.83321 +1.233498,52.485192 +1.269068,52.612823 +1.2784,52.625192 +1.020966,52.746405 +0.753744,52.41619 +1.725982,52.61352 +1.279913,52.657257 +0.510334,52.74733 +1.156618,52.551429 +1.278881,52.801713 +0.39885,52.604341 +1.280434,52.647035 +0.431677,52.529838 +1.307511,52.845534 +1.662258,52.62141 +1.240014,52.627931 +1.279054,52.622476 +1.66527,52.553668 +1.433959,52.556195 +0.393964,52.752884 +1.368698,52.542422 +1.283504,52.638874 +0.932326,52.595709 +1.249798,52.637888 +0.178721,52.645101 +0.408114,52.741286 +1.167199,52.590556 +1.161228,52.58906 +1.198584,52.923803 +0.871067,52.799257 +0.749573,52.834778 +0.619962,52.901805 +0.849815,52.681356 +1.228088,52.711779 +1.300103,52.65336 +1.287374,52.635286 +0.845725,52.410494 +0.84047,52.824678 +1.023214,52.660079 +1.639832,52.680935 +1.401293,52.825686 +0.569446,52.959071 +1.297386,52.618054 +0.439169,52.66887 +0.391887,52.592558 +1.277362,52.624169 +0.219819,52.697666 +1.593196,52.614578 +1.511959,52.610955 +1.310554,52.65153 +1.284368,52.591624 +1.369909,52.662222 +1.708102,52.580333 +1.226268,52.603628 +1.276082,52.58805 +0.41759,52.66567 +0.734609,52.407381 +1.243228,52.639004 +1.297269,52.644193 +1.733516,52.613669 +1.726665,52.602785 +1.723958,52.609878 +1.249611,52.655305 +1.340596,52.649886 +1.34058,52.649679 +0.379578,52.594281 +1.26293,52.664948 +0.836224,52.826263 +1.723985,52.611766 +1.090262,52.727586 +1.219634,52.643443 +0.941726,52.751429 +0.948624,52.66856 +0.940249,52.682185 +0.470366,52.77867 +1.238932,52.635884 +0.769582,52.601967 +1.288111,52.622449 +0.410003,52.752415 +0.413598,52.772151 +1.238629,52.683575 +1.275833,52.63396 +1.036712,52.679185 +0.415236,52.738264 +0.408841,52.73968 +1.305808,52.627847 +1.566124,52.559326 +1.103358,52.388071 +0.640965,52.935617 +0.375008,52.512493 +0.24841,52.748846 +1.297638,52.624154 +0.480669,52.750454 +1.733111,52.609958 +1.047767,52.680277 +1.28912,52.640427 +1.714615,52.57878 +0.688534,52.644724 +1.118702,52.37888 +1.728108,52.638692 +1.682378,52.698301 +1.126299,52.717386 +0.620506,52.462167 +0.775113,52.839902 +1.708072,52.580325 +1.72756,52.622699 +1.111904,52.376874 +1.458089,52.825716 +1.26841,52.653942 +1.621921,52.687141 +0.555456,52.522724 +1.214425,52.715064 +0.407532,52.741478 +0.329168,52.728594 +0.895973,52.542072 +1.716797,52.603141 +0.914976,52.899298 +0.808053,52.842463 +1.0152,52.518229 +0.978111,52.570087 +1.724908,52.617925 +1.380429,52.765233 +0.558416,52.522418 +0.981703,52.580168 +0.743945,52.412326 +1.221696,52.676501 +1.358393,52.674852 +0.381861,52.704879 +1.338786,52.572186 +1.393026,52.83658 +1.404316,52.547662 +1.279575,52.633398 +1.332234,52.403951 +0.448779,52.754417 +0.581242,52.664151 +1.152935,52.052514 +0.63136,52.445938 +1.295646,51.999461 +0.664391,52.388734 +1.136231,52.068331 +1.097741,52.289164 +1.143556,52.061471 +1.482766,52.215213 +0.999135,52.187433 +1.329675,51.960062 +1.506275,52.421947 +0.699585,52.255103 +1.709703,52.478489 +0.71476,52.170285 +1.25618,52.03508 +1.142597,52.038257 +1.433287,52.459726 +0.956931,52.215794 +1.201257,52.030353 +0.618376,52.444877 +1.165137,52.052394 +1.131514,52.074968 +1.746887,52.515382 +0.701406,52.258056 +0.462634,52.317864 +1.129084,52.055453 +0.391193,52.270307 +1.725477,52.517804 +0.895354,52.233851 +0.913345,52.364366 +1.099763,52.036343 +0.637978,52.13844 +0.730096,52.041591 +0.698637,52.288947 +1.702544,52.484461 +1.134992,52.061484 +1.568698,52.199394 +1.313001,52.114335 +1.207471,52.025903 +0.51119,52.325393 +0.863777,51.971406 +1.275167,52.234177 +0.715184,52.244916 +1.53104,52.278206 +1.670236,52.384701 +0.682698,52.087331 +1.592224,52.16333 +1.712219,52.471808 +1.463982,52.341877 +1.58998,52.280438 +1.124162,52.027793 +1.15097,52.056102 +1.145945,52.059959 +1.073495,52.020555 +1.614837,52.331363 +0.881356,52.333775 +1.208652,52.045847 +0.614896,52.44303 +1.715214,52.454219 +1.602012,52.154864 +1.023475,52.185597 +0.77072,52.268598 +1.191262,52.065243 +1.290032,52.298637 +1.392657,52.105169 +1.463999,52.191778 +1.092866,52.178104 +1.733783,52.494407 +1.714263,52.454123 +1.593066,52.160174 +0.672747,52.392753 +1.566486,52.455016 +1.167695,52.051237 +1.167106,52.014449 +1.118734,52.064784 +0.673475,52.373673 +1.523155,52.335134 +1.596051,52.328015 +1.007927,51.986931 +1.165945,52.051239 +0.704109,52.239865 +1.118832,52.050077 +0.729251,52.251156 +0.537203,52.061687 +0.710451,52.26052 +0.404314,52.244358 +1.448134,52.345993 +1.199048,51.991037 +1.432177,52.135127 +0.744085,52.047588 +0.746246,52.020523 +0.533941,52.336732 +1.72001,52.484704 +0.535171,52.340536 +0.751558,52.042702 +1.155068,52.052772 +0.695063,52.234172 +1.136067,52.047685 +1.743275,52.470504 +1.343528,51.962502 +1.141817,52.05291 +0.679809,52.395768 +1.066766,52.012978 +1.142861,52.061553 +0.95166,52.054494 +0.914178,52.333284 +1.278798,52.038661 +0.87626,52.237565 +1.130253,52.074255 +1.279271,52.064821 +1.163258,52.056573 +1.178947,52.058479 +1.162435,52.05297 +1.083076,52.127519 +1.006087,52.082679 +1.172818,52.053743 +1.659868,52.456873 +0.725331,52.229286 +1.277991,52.059901 +1.568868,52.462076 +1.008322,51.985868 +1.17957,52.035627 +1.536517,52.284562 +1.109112,52.103757 +1.25842,52.023775 +0.83109,52.233972 +0.842481,52.132093 +0.761213,52.156382 +0.712867,52.251354 +1.331204,51.978124 +0.564945,52.349165 +1.096574,52.033882 +1.005058,52.179799 +1.725847,52.482299 +1.313277,52.104658 +1.181337,52.035867 +1.133037,52.072535 +0.721745,52.247031 +0.764078,52.169571 +0.432383,52.088088 +0.510772,52.346003 +1.750942,52.480794 +1.312236,52.119186 +1.164711,52.052774 +0.696916,52.242511 +1.167066,52.067488 +1.2531,52.077186 +1.759829,52.489812 +0.742173,52.244733 +1.320963,51.964517 +1.751344,52.486214 +0.744268,52.244486 +0.640273,52.252489 +1.159802,52.061756 +1.18239,52.056012 +0.393621,52.239198 +1.096018,52.039545 +1.36507,52.102515 +1.100504,52.271608 +1.168575,52.059335 +0.503673,52.363024 +0.726906,52.038068 +1.153082,52.059166 +0.548862,52.072227 +0.39173,52.260962 +1.720828,52.464737 +1.743337,52.485272 +1.107244,52.102727 +1.437306,52.456317 +0.744146,52.244408 +1.119271,52.030216 +0.718552,52.050824 +1.043763,51.996406 +0.92544,52.230519 +1.118564,52.030522 +0.625483,52.444126 +1.315867,51.960964 +1.134323,52.072969 +0.418537,52.107113 +1.151201,52.069739 +1.278005,52.059892 +0.891286,52.230093 +1.099913,52.036609 +1.31876,52.348271 +1.749385,52.47756 +1.107167,52.046365 +0.635459,52.260249 +1.165638,52.044637 +0.5353,52.2681 +1.119612,52.039291 +1.18804,52.05934 +1.730945,52.454128 +0.674236,52.346138 +1.717473,52.450802 +0.707424,52.26424 +1.105489,52.043423 +1.22369,52.208488 +1.279604,52.064794 +0.996121,52.088626 +1.140214,52.045452 +1.740481,52.521027 +1.3387,52.124897 +1.644885,52.37498 +1.24395,52.023887 +0.744111,52.047543 +1.169192,52.059606 +1.149403,52.055406 +1.168235,52.085435 +1.203959,52.061993 +1.164779,52.045892 +0.850271,52.2871 +0.396406,52.267512 +0.732868,52.037309 +1.740662,52.481876 +1.696454,52.461571 +1.184869,52.276835 +1.132581,52.071855 +1.201022,52.050929 +1.728739,52.451544 +1.715666,52.478104 +1.150838,52.059415 +1.037125,52.176343 +1.748056,52.47199 +0.476872,52.332925 +0.990373,52.194446 +1.135288,52.058013 +1.116129,52.081024 +1.134113,52.064151 +1.673722,52.443247 +1.753439,52.481057 +1.704974,52.485141 +0.403337,52.242805 +1.146238,52.050427 +0.70762,52.248696 +1.719498,52.456315 +1.558702,52.454522 +1.193605,52.201149 +1.188455,52.037932 +0.830675,52.007362 +1.146193,52.050626 +1.568785,52.459227 +1.185383,52.040677 +1.148494,52.045177 +0.627241,52.440517 +1.144406,52.064228 +0.984425,52.193265 +1.121876,52.045832 +1.561122,52.448036 +1.235188,52.05013 +1.169013,52.05068 +0.743828,52.047693 +1.279023,52.012455 +1.139611,52.080527 +0.476809,52.302901 +0.922573,52.043582 +1.09489,52.030401 +1.134944,52.057681 +0.719566,52.254995 +1.732988,52.486589 +1.598383,52.4569 +1.173186,52.057277 +0.400197,52.245153 +1.180766,52.047943 +1.670349,52.369244 +1.197727,52.032986 +1.166052,52.050067 +1.562768,52.458195 +0.514222,52.366945 +1.20195,52.054717 +1.502408,52.214173 +0.806632,52.246535 +1.063145,51.960189 +0.492499,52.373268 +0.996687,51.992686 +0.825697,52.242915 +1.697192,52.46457 +1.149473,52.361704 +0.818251,52.081144 +1.162898,52.071287 +1.107034,52.105584 +1.149416,52.055586 +1.117162,52.069665 +0.833887,52.09523 +0.639819,52.252481 +1.27621,52.066669 +0.752431,52.040532 +1.174567,52.092361 +1.198929,52.061032 +1.670268,52.412701 +1.112014,52.036362 +1.111629,52.105705 +1.207452,52.035824 +1.432045,52.052426 +0.674123,52.255683 +1.747823,52.482755 +1.493386,52.22384 +1.040471,51.995565 +1.671552,52.38904 +1.562315,52.335325 +0.954658,52.049733 +0.700127,52.264983 +1.349591,51.963957 +1.035797,52.049603 +1.203305,52.062029 +0.727808,52.31762 +1.167533,52.0407 +1.184263,52.068193 +1.402337,52.168929 +1.732134,52.455125 +0.438527,52.092349 +1.133913,52.065245 +1.271089,52.148244 +1.596986,52.438512 +1.679439,52.325525 +1.699369,52.454725 +1.115854,52.043977 +1.10709,52.121717 +1.674022,52.338449 +0.991358,52.071767 +0.750929,52.047168 +0.7483,52.023829 +1.144837,52.060394 +1.114541,52.086508 +0.762021,52.026242 +1.707558,52.449854 +0.675309,52.102418 +1.554774,52.245715 +1.319809,52.229772 +1.442086,52.215194 +1.026227,52.197668 +0.406592,52.246119 +0.864719,52.145692 +1.729575,52.463867 +0.501627,52.379307 +0.824264,52.306808 +1.198793,52.032192 +0.99917,52.18209 +1.144151,52.084462 +1.235704,52.273823 +1.617289,52.44632 +1.75125,52.48476 +0.861858,52.367811 +1.198197,52.024662 +1.711549,52.45616 +0.73553,52.037202 +0.723931,52.234652 +1.142028,52.061737 +0.860209,51.974596 +0.733067,52.037709 +1.126667,52.067011 +1.08297,52.186682 +1.129256,52.069398 +0.89657,52.121567 +0.36943,52.255 +1.696951,52.514886 +1.141486,52.060042 +0.835692,52.301291 +1.096874,52.297965 +1.204427,52.069553 +1.730611,52.482715 +0.69892,52.287582 +1.742352,52.493102 +1.277051,52.060224 +1.313194,52.104921 +0.817158,52.287086 +1.708431,52.466359 +0.743178,52.033032 +1.727144,52.410191 +0.359455,52.267762 +1.150023,52.062755 +1.032384,51.967749 +1.132632,52.071755 +0.642655,52.259027 +1.63643,52.338812 +1.69268,52.448341 +1.024507,52.201651 +1.085244,52.352608 +0.564571,52.349029 +1.740756,52.482808 +1.13434,52.348194 +0.587519,52.356523 +1.352014,51.964419 +1.250266,52.027544 +1.259675,52.142508 +1.288001,52.083924 +1.13949,52.062578 +0.393919,52.26732 +1.726872,52.46899 +1.134928,52.065578 +0.780155,52.316974 +0.809968,52.02294 +1.34138,51.969048 +1.749703,52.472819 +1.619219,52.446342 +1.140651,52.063743 +1.743025,52.48091 +0.471324,52.267622 +0.515049,52.37244 +1.494145,52.249703 +1.106177,52.103547 +1.182453,52.052395 +1.160199,52.067789 +0.5285,52.062836 +1.62854,52.44638 +0.553673,52.344931 +0.921028,52.215528 +1.499366,52.151094 +1.135064,52.058766 +1.57755,52.206079 +0.902815,52.111782 +1.12467,52.081455 +1.212573,52.049058 +1.737185,52.478406 +0.842812,52.091157 +1.187406,52.03877 +0.923602,52.156855 +1.201823,52.037857 +1.568234,52.465154 +1.140398,52.062212 +1.196728,52.161258 +0.809958,52.023021 +1.684211,52.413031 +1.031186,52.053454 +1.171413,52.054087 +0.85879,52.089871 +0.831748,52.006815 +0.793757,52.267345 +1.126266,52.01135 +1.164711,52.04575 +1.162445,52.056621 +1.125001,52.080546 +1.34281,52.280074 +1.181344,52.082141 +1.537788,52.178847 +0.776744,52.059611 +1.12297,52.051892 +1.157202,52.058201 +1.467974,52.191886 +1.187009,52.1061 +0.977284,52.188014 +0.774869,52.244679 +1.700693,52.466287 +1.686803,52.454641 +0.918318,52.223321 +1.157051,52.119517 +1.562008,52.191159 +1.720761,52.482963 +0.836235,52.236789 +1.190475,52.037418 +0.527954,52.407252 +1.080705,52.146522 +0.735815,52.037088 +1.101308,52.040754 +0.962645,52.048318 +1.024707,52.186932 +1.159176,52.055378 +0.950424,52.047024 +1.714439,52.477 +1.733504,52.502412 +0.916712,52.059286 +0.763918,52.275413 +1.588247,52.445254 +1.739007,52.485985 +1.110452,52.080617 +0.741974,52.237705 +0.775089,51.972884 +1.145486,52.052399 +1.153058,52.059436 +1.146109,52.053165 +1.27458,52.202337 +1.351,52.101684 +0.772733,52.039615 +1.197751,52.029028 +1.197803,52.061207 +0.621665,52.44698 +1.034965,52.164383 +0.750239,52.0357 +0.745374,52.189316 +0.775157,51.986219 +1.193543,52.060198 +1.341374,52.114738 +1.466072,52.222532 +0.486194,52.308603 +1.159682,52.054069 +1.584405,52.206311 +1.181275,52.035203 +0.823691,52.284205 +0.995664,51.99308 +1.163765,52.18661 +0.694854,52.304663 +1.137072,52.058065 +1.241373,52.252271 +0.752691,52.027917 +1.122228,52.335546 +1.206607,52.20202 +0.397582,52.263487 +0.751959,52.02762 +1.128163,52.04187 +1.134484,52.034237 +1.10039,52.040554 +1.320285,52.092831 +1.703253,52.467475 +0.413632,52.090937 +1.141605,52.049894 +1.56877,52.459228 +1.096642,52.106748 +0.793678,52.093888 +1.132788,52.057513 +1.331005,51.977599 +1.104758,52.081657 +1.152264,52.071159 +1.108576,52.041876 +1.159759,52.057431 +1.099058,52.035426 +1.200431,52.057349 +1.034518,52.050103 +1.257686,52.106056 +1.154031,52.044058 +1.190546,52.059506 +1.734183,52.495645 +1.234251,52.211589 +1.713928,52.47671 +1.749619,52.477724 +1.15288,52.052354 +1.187861,52.038398 +0.712585,52.248654 +1.131649,52.055835 +1.455072,52.273386 +1.197166,52.033298 +0.986663,52.037504 +1.150835,52.115501 +1.025148,52.110224 +1.273898,52.047243 +0.467049,52.316252 +1.723801,52.503753 +0.425418,52.081325 +1.313853,51.994426 +1.134401,52.06409 +0.99847,52.178636 +1.722463,52.480786 +1.125966,52.078695 +1.340221,52.317563 +1.152403,52.059472 +1.151607,52.05604 +1.125595,52.079451 +1.748666,52.474651 +1.106278,52.3564 +0.711388,52.242485 +1.113775,52.069431 +1.743984,52.480745 +1.260417,52.104451 +0.84668,52.303347 +0.706232,52.239852 +1.51118,52.264803 +0.740411,52.251078 +0.384242,52.264522 +0.698056,52.08564 +1.097658,52.193366 +1.081471,52.356843 +1.474058,52.456915 +1.592862,52.161448 +0.78382,52.156885 +0.694402,52.294079 +0.959864,52.055898 +1.14671,52.047401 +0.963952,52.046684 +0.780525,52.037102 +1.6671,52.337315 +0.973289,52.209042 +1.102463,52.210877 +0.723401,52.199681 +1.100056,52.040787 +1.704087,52.419911 +0.892944,52.008915 +1.031914,52.053444 +1.064726,51.995295 +1.181834,52.05251 +1.243801,52.066505 +1.098397,51.996572 +0.929105,52.008534 +0.65293,52.298085 +0.436514,52.084612 +0.65642,52.20442 +1.148166,52.059792 +0.655542,52.134205 +1.055626,52.167536 +1.38872,52.154526 +0.891939,51.98589 +0.724132,52.04807 +0.60149,52.324319 +0.51058,52.325514 +1.61208,52.448144 +0.798218,52.164512 +1.187974,52.056167 +0.638583,52.191169 +1.258407,52.054868 +1.274417,52.047759 +1.420792,52.265975 +0.629122,52.446653 +1.152073,52.071146 +0.889814,52.095518 +0.999813,52.179681 +0.505754,52.268919 +1.27091,52.068822 +0.925456,52.045732 +1.35137,51.967693 +0.985716,52.167556 +1.562736,52.466732 +1.202911,52.029013 +0.899003,52.227592 +1.013052,52.187465 +0.712128,52.066135 +1.715211,52.454192 +1.011405,52.185825 +1.140045,52.06509 +1.280398,52.061489 +0.526982,52.332601 +0.513637,52.354575 +1.163673,52.022393 +1.582317,52.204926 +1.176409,52.0478 +1.37303,52.369515 +1.735053,52.486622 +1.027601,52.16879 +0.529627,52.340116 +0.723528,52.034792 +1.306519,52.104335 +1.328373,52.103396 +1.243222,51.969708 +1.622484,52.445945 +0.838374,52.294824 +1.116627,52.071622 +0.599361,52.175484 +1.156058,52.059365 +1.108758,52.065282 +1.332626,51.965303 +0.39773,52.11074 +1.200974,52.05719 +1.339601,51.956497 +1.002562,52.227627 +0.74123,52.253666 +0.61515,52.364304 +1.253353,52.025282 +0.579841,52.076741 +0.907931,52.139643 +0.752979,52.04042 +1.559141,52.173248 +1.294562,52.375184 +1.097409,52.035407 +1.4742,52.273876 +0.58651,52.078996 +1.4027,52.16909 +1.114432,52.086205 +1.719709,52.454095 +1.121048,52.045251 +1.600865,52.186812 +0.374565,52.260598 +1.320872,51.957576 +1.748682,52.474668 +1.15973,52.056406 +0.962647,52.048345 +1.742947,52.470622 +1.561774,52.440425 +0.406973,52.244502 +1.73382,52.477289 +0.972599,52.217999 +1.15114,52.054784 +1.277166,52.066175 +1.163507,52.052869 +1.140879,52.050147 +0.82951,52.238138 +0.99192,52.180448 +1.189324,52.037036 +0.613598,52.263325 +0.702914,52.211286 +1.708305,52.469934 +1.014947,52.172865 +0.744301,52.244314 +1.566771,52.455628 +1.533113,52.095336 +0.436777,52.078717 +1.123352,52.046701 +0.528867,52.394437 +1.742041,52.470714 +1.742205,52.480963 +1.34402,51.968721 +0.520512,52.230126 +1.341156,51.960366 +0.834211,52.005892 +1.310867,52.365464 +1.130298,52.074272 +0.735067,52.192559 +1.268617,52.044035 +0.682772,52.087338 +0.43586,52.071794 +1.173383,52.049573 +0.89022,52.325401 +1.147727,52.059777 +1.012764,52.296688 +1.226546,52.12285 +1.187936,52.059325 +1.328543,51.960309 +1.473588,52.188627 +0.888748,52.349197 +1.201269,52.050715 +1.11119,52.077377 +1.628591,52.445569 +1.335857,51.952349 +0.787103,52.272961 +1.118061,52.06518 +0.688141,52.252927 +0.976689,52.052218 +0.827514,52.238545 +1.182417,52.061731 +0.998757,52.037799 +1.710255,52.417505 +0.722201,52.084923 +1.180406,52.069368 +1.556062,52.189837 +0.660639,52.261527 +1.32959,52.20371 +1.54565,52.45352 +1.233892,52.058233 +1.097337,51.989234 +1.569891,52.45306 +1.322173,52.276493 +1.268971,52.06965 +1.414175,52.128886 +1.714876,52.453708 +1.114128,52.238431 +1.184143,52.046818 +1.752351,52.474858 +0.475414,52.100141 +0.813302,52.247294 +1.730666,52.492752 +0.400681,52.247876 +1.239165,52.026267 +0.719634,52.254913 +1.127083,52.066901 +1.24365,52.113315 +1.103273,52.033535 +0.578205,52.401868 +0.711241,52.247768 +1.343469,51.977938 +1.084738,51.968502 +1.342856,52.102923 +0.730934,52.037156 +1.724052,52.518038 +0.663348,52.389728 +1.145223,52.060698 +1.743519,52.470595 +0.368656,52.254216 +0.632938,52.258767 +1.01811,52.183288 +1.387186,52.080789 +1.158472,52.055523 +1.127109,52.066865 +0.398722,52.237647 +1.609738,52.344453 +1.217752,52.059413 +1.238178,52.034389 +1.20995,52.350515 +1.177155,52.052772 +1.732404,52.488046 +1.158625,52.05873 +1.124471,52.027838 +1.318718,52.093172 +0.892536,52.355255 +1.244115,52.110064 +1.137938,52.054804 +0.813287,52.247294 +1.191921,52.051779 +0.976753,52.187946 +1.72559,52.461142 +1.338429,51.972451 +0.784058,52.375839 +1.159857,52.057365 +0.434824,52.086005 +0.739764,52.239878 +1.235188,52.05013 +0.707075,52.244545 +1.317555,51.989519 +1.15289,52.03138 +1.075131,52.149635 +1.082222,52.143712 +1.723439,52.447357 +1.602764,52.436996 +0.798924,52.199973 +0.730532,52.052094 +1.28124,52.100015 +0.828415,52.237517 +1.101838,52.117413 +1.748364,52.512124 +1.179418,52.061822 +0.3979,52.09321 +0.511566,52.153602 +1.242875,52.339641 +0.703891,52.092809 +1.717693,52.482394 +0.994716,52.190045 +1.169253,52.036355 +0.480706,52.093942 +0.908723,52.225959 +0.99025,52.193918 +0.692925,52.131064 +0.716456,52.075901 +0.408174,52.245574 +1.101075,52.26635 +1.376023,52.139978 +1.095322,52.041712 +1.140038,52.065405 +0.505295,52.362872 +0.960813,52.094042 +0.878708,52.360575 +1.664322,52.514867 +1.563844,52.456759 +0.41119,52.245 +1.193244,52.035347 +1.543283,52.41049 +0.528733,52.400051 +1.56374,52.452004 +1.33157,51.97913 +1.424151,52.303051 +1.149068,52.05582 +1.350811,52.10169 +0.731856,52.038655 +1.106589,52.06095 +1.039505,52.180571 +1.132305,52.065 +0.680903,52.309279 +1.300274,52.389496 +0.741191,52.240214 +0.525807,52.408288 +1.245169,52.051169 +0.444155,52.078591 +1.102656,52.11615 +1.720602,52.47131 +0.512102,52.325697 +1.750461,52.474279 +0.7473,52.046263 +1.19945,52.061387 +1.034108,52.050294 +1.308039,52.105129 +1.137535,52.06737 +1.258676,52.023687 +1.049763,52.175899 +1.121997,52.045883 +1.162669,52.053602 +1.169244,52.056825 +1.595668,52.320039 +0.806592,52.246374 +0.855394,52.005353 +1.539725,52.28819 +0.814333,52.315841 +1.566481,52.462238 +0.958459,52.055825 +1.74101,52.463596 +1.281219,52.100123 +1.492957,52.213527 +1.114863,52.323096 +1.195681,52.034147 +1.451089,52.271388 +1.606836,52.331194 +1.153933,52.051157 +1.755051,52.484235 +0.965767,51.983126 +1.226265,52.049988 +1.333852,52.104203 +0.990611,52.17773 +1.718721,52.479384 +0.881903,52.234909 +1.44677,52.228585 +1.149506,52.033638 +0.658708,52.087479 +1.233705,52.11598 +0.647023,52.258551 +0.715583,52.251679 +0.781573,52.239898 +1.746298,52.479025 +0.669381,52.100952 +1.750142,52.47348 +1.080733,52.146503 +1.163508,52.127141 +0.931999,52.063457 +1.730561,52.492557 +0.719009,52.050418 +1.095702,52.050588 +0.711807,52.240947 +0.644284,52.195745 +1.450589,52.450524 +1.0061,52.241405 +1.703959,52.419618 +0.397464,52.244462 +1.536245,52.451166 +0.712497,52.058257 +0.917969,52.148091 +1.706672,52.456997 +1.248665,52.18261 +1.158228,52.067779 +1.714943,52.519305 +1.734716,52.468391 +1.365597,52.103121 +0.420602,52.240276 +1.062757,52.278242 +1.111626,52.070018 +1.238971,52.06027 +1.238854,52.060067 +1.155132,52.049955 +1.075325,52.096667 +0.688076,52.438403 +0.511752,52.350587 +0.605941,52.43616 +0.706475,52.251061 +1.02454,52.056359 +1.468362,52.191803 +1.716405,52.468177 +1.464143,52.191747 +1.468474,52.191727 +1.494028,52.226978 +0.974682,52.206021 +1.099076,52.036748 +0.704214,52.248334 +1.147258,52.050625 +1.26406,52.068158 +0.711667,52.244907 +1.180885,52.082252 +0.751538,52.236502 +1.092717,52.112913 +1.151048,52.054939 +0.731717,52.071033 +0.397155,52.264539 +1.308809,52.382943 +0.667624,52.289733 +1.671853,52.44237 +1.202125,52.029637 +1.539684,52.288218 +1.27641,52.220841 +0.513995,52.375106 +0.433289,52.258251 +0.766799,52.306362 +1.143951,52.061281 +1.735057,52.469118 +0.741191,52.244243 +0.728432,52.318945 +0.495585,52.11646 +0.399135,52.25235 +1.333111,51.974769 +1.199682,52.040137 +1.207227,51.989295 +1.146807,52.048568 +0.974514,52.017288 +1.587219,52.361069 +0.764298,52.187974 +1.72994,52.46382 +1.476937,52.217076 +1.096455,52.033642 +1.16409,52.052035 +1.143426,52.061484 +1.207025,52.037392 +0.540241,52.370057 +1.298058,52.096163 +0.528333,52.33339 +1.092452,52.027398 +1.182435,52.054797 +1.203958,52.062191 +1.062872,51.963236 +1.377658,52.168137 +1.095338,52.050382 +1.141063,52.063993 +1.448034,52.449097 +1.737472,52.525871 +1.660827,52.435966 +1.15441,52.314302 +1.071976,52.036883 +1.590996,52.287918 +1.097416,51.989538 +1.564709,52.457992 +1.058821,52.15015 +1.093728,52.179359 +1.182438,52.068593 +1.259976,52.063585 +1.178581,52.061754 +0.398249,52.243538 +0.568682,52.157362 +1.442386,52.265221 +1.726777,52.493459 +1.182392,52.05871 +1.107283,52.102654 +1.123478,52.044126 +1.565253,52.45597 +1.133873,52.057592 +1.568506,52.453237 +1.140398,52.127669 +1.731574,52.487119 +0.678062,52.261475 +1.096782,52.296015 +1.179902,52.069453 +0.624895,52.447107 +1.215662,52.350495 +1.743788,52.466656 +1.318255,52.093617 +0.97247,52.143276 +1.099398,52.200075 +1.525277,52.450424 +0.393223,52.267721 +1.253898,52.050838 +1.733826,52.456681 +1.403733,52.032552 +1.139966,52.02382 +1.15974,52.054068 +1.75427,52.487516 +0.677829,52.229151 +1.603756,52.452742 +1.094923,52.062526 +1.741028,52.491048 +1.048166,52.157468 +1.207576,52.028589 +0.53547,52.447278 +1.107326,52.102635 +0.504174,52.092996 +1.147633,52.032933 +0.666545,52.102131 +1.032286,52.177465 +1.264332,52.079078 +1.074361,52.353872 +1.335922,51.952437 +0.49478,52.303719 +1.151609,52.074909 +0.735783,52.224206 +1.352611,52.092014 +1.313153,52.114807 +1.717997,52.489661 +1.72649,52.525759 +1.105987,52.107122 +1.10195,52.256209 +1.743079,52.470618 +1.14462,52.047538 +1.351155,51.97145 +1.106998,52.046037 +1.098735,52.040031 +1.150309,52.062676 +1.315365,52.095794 +1.434653,52.45741 +0.770765,52.268606 +1.133701,52.070755 +0.62671,52.441734 +1.177029,52.057983 +1.15854,52.058552 +1.165506,52.026877 +0.728151,52.218915 +1.502373,52.343595 +1.750437,52.477986 +1.578902,52.45035 +0.408581,52.245242 +1.714423,52.476983 +1.147442,52.059883 +1.344815,52.222023 +1.587694,52.332677 +1.531124,52.278167 +1.209884,52.203414 +1.104055,52.033469 +1.209175,51.990051 +1.086059,52.138746 +1.253131,52.077212 +1.164721,52.052495 +1.14826,52.060311 +1.057849,52.150688 +1.577434,52.188803 +0.844838,52.232976 +0.684886,52.265744 +1.138065,52.120249 +1.098782,52.035227 +0.744141,52.047551 +0.999076,52.187434 +0.582741,52.422371 +0.704511,52.239253 +0.977422,52.200592 +1.715873,52.455754 +1.153744,52.051791 +1.185517,52.04071 +1.15576,52.057619 +1.185228,52.040744 +0.742535,52.045871 +0.893137,52.235353 +1.095927,52.039079 +0.388543,52.266827 +1.190616,52.066204 +1.716014,52.470348 +1.147837,52.0599 +1.139178,52.065833 +0.471176,52.314745 +1.09186,51.975717 +1.133722,52.01564 +1.538532,52.45215 +1.287813,52.082562 +1.229045,52.065472 +1.125912,52.214143 +1.044605,52.049564 +1.735049,52.49613 +0.743534,52.032178 +0.618936,52.187003 +1.317264,51.989914 +1.192703,52.062946 +1.179607,52.035122 +0.787061,52.27298 +1.757999,52.486156 +1.147273,52.050633 +1.056668,52.00127 +1.135624,52.068842 +1.560226,52.20896 +1.532038,52.346363 +1.180279,52.061825 +1.197011,52.051551 +0.793954,52.090366 +1.289031,51.996094 +1.624827,52.315288 +1.135105,52.057685 +0.40329,52.268775 +1.032967,52.051546 +0.967264,52.337924 +1.503764,52.257765 +0.620875,52.446566 +1.404555,52.031862 +1.185073,52.07587 +1.55678,52.450406 +0.746958,52.031666 +1.288601,52.084348 +1.443437,52.44602 +0.958811,52.051445 +0.743855,52.047648 +1.703304,52.419873 +1.721248,52.45733 +0.732549,52.052155 +1.155682,52.067685 +1.180276,52.039619 +1.127855,52.079409 +1.721014,52.48944 +1.110885,52.106561 +1.50345,52.379838 +0.716408,52.243854 +1.750307,52.485456 +0.732095,52.036824 +0.541065,52.378016 +0.391219,52.270252 +1.237924,52.239927 +1.729207,52.450288 +1.140385,52.062239 +1.346215,51.960663 +0.701252,52.163383 +1.321578,51.98561 +0.514851,52.344397 +0.632505,52.259128 +1.182804,52.033525 +1.33282,52.234316 +0.510581,52.34652 +0.720419,52.233258 +1.726131,52.527093 +1.322356,51.976647 +1.269585,52.069462 +0.67384,52.373152 +1.119447,52.068525 +1.197317,52.061139 +1.121598,52.045606 +-0.476234,52.108156 +-0.466857,52.139297 +-0.484515,51.915756 +-0.392478,51.886814 +-0.416503,51.879191 +-0.346474,52.045382 +-0.536928,51.86844 +-0.159773,52.106797 +-0.46931,51.893845 +-0.434949,52.118261 +-0.470325,51.915743 +-0.416051,51.896593 +-0.292098,52.120648 +-0.540567,51.997792 +-0.494802,52.105329 +-0.42612,51.883384 +-0.426882,51.884042 +-0.466287,51.892996 +-0.44821,51.900114 +-0.470406,52.110337 +-0.468773,52.140113 +-0.437609,51.89439 +-0.48402,51.888577 +-0.552064,51.937584 +-0.428064,51.880955 +-0.403349,51.888805 +-0.413414,51.8877 +-0.518871,51.904792 +-0.481164,52.11606 +-0.432073,51.971141 +-0.42842,51.88533 +-0.439722,51.889185 +-0.274465,52.092725 +-0.514229,51.908456 +-0.470938,51.897256 +-0.611743,51.980688 +-0.674996,51.910556 +-0.417194,51.860345 +-0.520798,52.093259 +-0.489784,51.91951 +-0.472168,52.124162 +-0.450159,52.128235 +-0.388339,51.903383 +-0.265613,52.005502 +-0.485545,51.916705 +-0.514184,51.90851 +-0.443766,51.888645 +-0.424247,51.870888 +-0.45558,51.890779 +-0.477397,52.135307 +-0.299086,52.127799 +-0.471313,51.911054 +-0.396962,52.068487 +-0.634954,52.05583 +-0.484892,52.147389 +-0.434264,51.866454 +-0.418121,51.898491 +-0.497895,52.007974 +-0.356847,52.160447 +-0.502079,51.904418 +-0.630093,52.056448 +-0.512859,51.882579 +-0.48082,52.106849 +-0.589873,51.88555 +-0.485505,51.899314 +-0.358801,52.064365 +-0.501971,51.873584 +-0.414052,51.902195 +-0.487057,51.895495 +-0.488488,52.149539 +-0.475602,52.108292 +-0.423581,52.019788 +-0.618776,51.950389 +-0.430346,51.870502 +-0.425321,51.986426 +-0.550443,52.150056 +-0.423792,52.022102 +-0.477596,51.952236 +-0.46125,52.159104 +-0.424989,51.882056 +-0.460503,52.08836 +-0.603904,52.025345 +-0.260771,52.021777 +-0.389248,52.123517 +-0.482966,51.860762 +-0.588249,51.932251 +-0.449197,51.897196 +-0.519851,51.904589 +-0.255516,52.078536 +-0.46629,51.892897 +-0.4175,51.884725 +-0.392835,51.869456 +-0.431547,51.920313 +-0.516497,51.886824 +-0.435568,51.904614 +-0.514963,52.129159 +-0.435445,51.864635 +-0.481893,52.119127 +-0.373006,52.061667 +-0.520714,51.885852 +-0.510652,51.897477 +-0.398568,51.872843 +-0.460262,51.892387 +-0.484518,52.139031 +-0.580242,51.993763 +-0.446964,51.943815 +-0.574563,51.923957 +-0.421014,51.886472 +-0.427479,51.858181 +-0.482785,52.120801 +-0.508773,51.887527 +-0.506283,51.877595 +-0.251423,52.021909 +-0.408809,52.137827 +-0.422359,51.854273 +-0.629728,52.032616 +-0.303711,52.06791 +-0.449092,52.065938 +-0.660613,52.04742 +-0.217283,52.126815 +-0.666839,51.901733 +-0.426792,51.993891 +-0.506819,51.887709 +-0.43423,52.142123 +-0.599023,52.025296 +-0.566545,51.917728 +-0.256138,52.091034 +-0.508578,51.906137 +-0.409106,51.887498 +-0.599139,52.025307 +-0.465703,52.100575 +-0.657934,51.914247 +-0.511663,51.887114 +-0.484384,52.0982 +-0.439733,51.85151 +-0.512549,52.114806 +-0.472885,52.12284 +-0.436983,51.919145 +-0.47687,52.11435 +-0.454774,51.905362 +-0.457424,51.906943 +-0.452851,52.193466 +-0.458215,52.130994 +-0.291552,52.02676 +-0.52156,51.954351 +-0.427206,51.918044 +-0.307077,52.118158 +-0.500153,52.122966 +-0.440712,51.889558 +-0.472419,51.887438 +-0.431331,51.89062 +-0.491838,51.898991 +-0.466982,52.138634 +-0.411295,51.880218 +-0.43239,51.890266 +-0.48607,52.004801 +-0.513712,51.881394 +-0.417735,51.865207 +-0.583005,51.928825 +-0.408016,51.878042 +-0.484355,51.89029 +-0.475422,52.128106 +-0.393597,52.027674 +-0.215016,52.12688 +-0.42413,51.879635 +-0.43864,51.894827 +-0.497543,51.99673 +-0.558407,52.061805 +-0.478747,52.13688 +-0.474862,52.135112 +-0.449073,51.891925 +-0.519732,52.086655 +-0.658207,51.942645 +-0.403924,51.901689 +-0.440231,51.895468 +-0.510797,51.887813 +-0.298127,52.197783 +-0.476996,51.892605 +-0.422428,51.902091 +-0.447144,51.943674 +-0.623123,51.952876 +-0.469267,51.914354 +-0.488893,52.072785 +-0.484032,51.889522 +-0.489374,52.08359 +-0.56376,51.915698 +-0.473765,52.141122 +-0.491163,52.13266 +-0.205383,52.082297 +-0.443063,51.883349 +-0.657122,51.901488 +-0.40171,51.89157 +-0.240269,52.008273 +-0.547312,52.063881 +-0.42474,51.870499 +-0.478617,52.136833 +-0.249193,52.080483 +-0.484621,51.890599 +-0.62805,52.249049 +-0.514576,51.912462 +-0.589837,52.023074 +-0.506482,52.169135 +-0.496233,51.901448 +-0.548079,52.068566 +-0.466731,52.138711 +-0.555777,51.856337 +-0.531897,51.987192 +-0.662677,51.942534 +-0.43624,51.86559 +-0.286747,52.026627 +-0.297685,52.198253 +-0.466206,52.134865 +-0.425602,51.912339 +-0.417012,51.874234 +-0.522187,52.175303 +-0.414638,51.87645 +-0.504281,51.899815 +-0.41865,51.868115 +-0.431092,51.894564 +-0.306512,52.001574 +-0.507923,51.901318 +-0.328652,52.037245 +-0.390919,52.149714 +-0.51992,51.885231 +-0.65069,51.923578 +-0.485588,51.896393 +-0.513307,51.885741 +-0.416062,51.901673 +-0.43202,51.895053 +-0.517113,51.991214 +-0.519742,52.08679 +-0.44516,51.890795 +-0.432151,51.891692 +-0.254651,52.093593 +-0.380937,51.876387 +-0.457049,52.136841 +-0.466816,52.2587 +-0.450732,51.887236 +-0.465669,52.122837 +-0.454288,51.88481 +-0.400516,51.892049 +-0.521412,51.882291 +-0.512791,51.874531 +-0.467072,52.132602 +-0.656036,51.913533 +-0.433454,51.883491 +-0.525896,51.889559 +-0.394447,51.893935 +-0.552931,52.028129 +-0.408105,51.877171 +-0.433537,51.922048 +-0.47762,52.114189 +-0.427519,51.882423 +-0.492171,52.140891 +-0.495189,51.927465 +-0.5255,51.889239 +-0.446298,51.89865 +-0.459934,51.905816 +-0.222447,52.126632 +-0.676633,51.918657 +-0.43763,51.887926 +-0.37383,51.889354 +-0.456254,51.889331 +-0.521468,52.142719 +-0.601921,52.026293 +-0.509779,52.100196 +-0.584849,52.0218 +-0.551763,52.248974 +-0.272405,52.093153 +-0.478574,52.107188 +-0.452791,52.161052 +-0.420736,51.896449 +-0.301996,52.053885 +-0.430269,51.926105 +-0.492134,51.89449 +-0.473221,51.898077 +-0.416751,51.860563 +-0.521906,51.888052 +-0.433821,52.114623 +-0.418553,51.874606 +-0.472179,51.860244 +-0.508763,51.887383 +-0.474312,52.134521 +-0.52471,51.967455 +-0.414829,51.876408 +-0.452797,52.137261 +-0.484407,52.124239 +-0.418133,51.877882 +-0.291924,52.206154 +-0.205209,52.08117 +-0.417454,51.864538 +-0.448182,51.900078 +-0.433657,51.922365 +-0.469586,51.914817 +-0.427126,51.857879 +-0.41172,51.882184 +-0.513263,51.888824 +-0.41923,51.887599 +-0.437899,52.141255 +-0.465454,52.138874 +-0.457358,51.924134 +-0.440797,52.159105 +-0.375088,52.032824 +-0.593142,51.895795 +-0.563864,51.915645 +-0.47669,52.127349 +-0.470227,52.13819 +-0.3061,52.184734 +-0.417241,51.882591 +-0.473688,52.122419 +-0.441733,52.154919 +-0.28591,52.031003 +-0.461723,51.899815 +-0.312902,52.052046 +-0.420959,51.883468 +-0.469282,52.13335 +-0.243225,52.071169 +-0.310594,52.117849 +-0.435697,51.885823 +-0.609916,52.027008 +-0.50922,51.953027 +-0.424124,51.878556 +-0.403115,51.875296 +-0.605505,52.030579 +-0.483789,52.146736 +-0.495656,52.003063 +-0.512543,51.888195 +-0.431986,52.112395 +-0.532562,51.949436 +-0.46844,52.132332 +-0.49114,52.147172 +-0.515023,51.845561 +-0.669455,51.920447 +-0.46827,52.1194 +-0.355048,52.028311 +-0.511761,52.009867 +-0.498916,52.016663 +-0.206249,52.012229 +-0.473013,52.122509 +-0.466925,51.902014 +-0.262731,52.09115 +-0.4852,51.891524 +-0.472885,52.12668 +-0.663741,51.920912 +-0.603627,52.025351 +-0.463028,52.138456 +-0.500793,51.918141 +-0.648105,51.966536 +-0.435399,51.906563 +-0.507341,51.914492 +-0.457775,51.917495 +-0.247164,52.045484 +-0.458697,52.131431 +-0.286514,52.072373 +-0.52307,51.887563 +-0.413057,51.875979 +-0.413148,51.879991 +-0.522107,51.886787 +-0.533336,51.919009 +-0.557147,52.060639 +-0.427489,51.884949 +-0.515255,51.957994 +-0.495789,52.000835 +-0.300687,52.168256 +-0.528778,51.891645 +-0.484597,52.24858 +-0.612076,51.899203 +-0.493095,51.923968 +-0.470626,52.131227 +-0.459864,51.892139 +-0.430218,51.925906 +-0.521628,51.888552 +-0.620985,51.991253 +-0.43425,51.882324 +-0.457704,51.913619 +-0.272341,52.128794 +-0.404533,51.892283 +-0.63498,52.055452 +-0.511021,52.097092 +-0.481915,52.109425 +-0.4854,51.913241 +-0.464653,51.90256 +-0.456536,51.882375 +-0.427382,51.857613 +-0.411526,51.880679 +-0.452367,51.894199 +-0.410495,51.881879 +-0.603963,52.025301 +-0.428506,51.921613 +-0.612935,52.028806 +-0.428854,52.025272 +-0.264653,52.086385 +-0.491261,52.132806 +-0.454562,52.018607 +-0.430202,51.925933 +-0.507762,51.914084 +-0.241644,52.078366 +-0.240726,52.089465 +-0.294439,52.132803 +-0.215502,52.030542 +-0.474821,51.899338 +-0.438831,51.874211 +-0.501681,51.901967 +-0.402735,51.893832 +-0.274404,52.123061 +-0.449789,52.119527 +-0.455749,51.902785 +-0.504344,51.89488 +-0.495343,52.230124 +-0.310705,52.154311 +-0.669262,51.916147 +-0.509111,52.188913 +-0.496934,52.13919 +-0.555163,52.221404 +-0.426627,51.984484 +-0.428046,51.858575 +-0.47662,51.89385 +-0.495567,52.003107 +-0.478178,52.143706 +-0.447219,51.899355 +-0.427442,51.918784 +-0.410024,51.89358 +-0.467281,51.892829 +-0.513349,52.092931 +-0.42768,51.884889 +-0.426561,51.857026 +-0.47291,52.139205 +-0.42352,51.90662 +-0.455522,51.903043 +-0.505502,52.104107 +-0.256954,52.046466 +-0.518421,52.129293 +-0.535058,51.896048 +-0.477456,52.135317 +-0.417072,51.874163 +-0.489179,52.072519 +-0.395073,51.902459 +-0.457147,51.887868 +-0.384228,51.904136 +-0.690882,51.906193 +-0.433752,51.864882 +-0.446956,51.913306 +-0.408653,51.875623 +-0.252515,52.094838 +-0.386876,52.030954 +-0.440125,51.902327 +-0.458849,51.897161 +-0.251747,52.02257 +-0.629402,52.222748 +-0.517908,51.892066 +-0.442328,52.140396 +-0.526328,52.072495 +-0.212143,52.127133 +-0.465493,52.134766 +-0.476218,52.10821 +-0.603275,52.026821 +-0.458558,51.892077 +-0.438772,52.158916 +-0.490987,51.894026 +-0.451702,51.903829 +-0.57435,52.125513 +-0.604396,52.02545 +-0.487577,52.004587 +-0.424702,52.147095 +-0.4337,52.117228 +-0.505246,51.950441 +-0.479844,52.016985 +-0.498473,51.917509 +-0.549194,52.060712 +-0.514178,51.906486 +-0.543441,52.14114 +-0.484135,51.889918 +-0.655752,51.948866 +-0.293245,52.071104 +-0.498349,51.940858 +-0.552779,51.909476 +-0.6278,52.249568 +-0.469555,51.934526 +-0.463607,51.901692 +-0.599546,52.268521 +-0.60361,52.025881 +-0.489164,51.921508 +-0.554402,51.909649 +-0.42544,51.855015 +-0.649018,51.901772 +-0.466793,51.893084 +-0.4197,52.123659 +-0.427333,51.918558 +-0.420242,51.884025 +-0.41109,51.884378 +-0.51647,52.220969 +-0.281478,52.12258 +-0.398792,51.87308 +-0.488819,52.072802 +-0.387562,51.908453 +-0.375211,51.884913 +-0.493128,51.920372 +-0.469439,52.15351 +-0.464209,52.130478 +-0.485589,51.891628 +-0.426633,52.122574 +-0.474906,52.107716 +-0.424917,52.124412 +-0.425202,52.009758 +-0.466077,52.119452 +-0.535096,51.995351 +-0.418127,51.879716 +-0.296946,52.016003 +-0.481833,51.908627 +-0.421303,51.890234 +-0.473362,52.121705 +-0.52617,51.978848 +-0.659569,51.923796 +-0.423164,51.879002 +-0.435152,52.040695 +-0.475459,52.135174 +-0.466204,52.134901 +-0.298427,52.137797 +-0.565887,52.006339 +-0.429575,52.144417 +-0.468618,52.138646 +-0.418612,51.874589 +-0.545855,52.069672 +-0.214099,52.028075 +-0.507108,52.162678 +-0.457082,52.131671 +-0.478659,52.136879 +-0.428874,51.885669 +-0.465396,51.887149 +-0.604221,52.025448 +-0.390582,51.870729 +-0.430189,51.88628 +-0.458622,52.08829 +-0.642793,51.961691 +-0.461995,52.139612 +-0.470545,52.131037 +-0.431368,52.145799 +-0.410427,51.882166 +-0.397216,51.881043 +-0.428182,51.921312 +-0.480519,52.144923 +-0.464477,51.902594 +-0.468665,52.136848 +-0.41823,51.869314 +-0.422865,51.879231 +-0.458933,51.941005 +-0.470069,52.135131 +-0.38908,51.887954 +-0.489058,51.921623 +-0.393946,51.896977 +-0.408216,51.892944 +-0.494085,51.89438 +-0.488938,52.07275 +-0.413802,51.881214 +-0.398814,51.875337 +-0.64508,52.013733 +-0.492321,51.920595 +-0.482321,52.010966 +-0.42448,51.870873 +-0.411729,51.885619 +-0.424113,51.881766 +-0.272594,52.122648 +-0.43009,52.124787 +-0.424898,51.882181 +-0.465666,52.136953 +-0.443114,52.14047 +-0.38375,51.887063 +-0.484267,51.889866 +-0.529411,51.892282 +-0.413752,51.883065 +-0.229434,52.017372 +-0.646234,51.902037 +-0.469758,52.140351 +-0.535209,51.882464 +-0.416516,51.860632 +-0.447213,51.924379 +-0.554365,51.909873 +-0.477585,51.898826 +-0.604309,52.02544 +-0.44624,51.89865 +-0.483837,51.888413 +-0.501165,52.013914 +-0.473617,51.905266 +-0.660899,51.91723 +-0.390056,51.888309 +-0.397511,51.87522 +-0.452191,51.894655 +-0.378324,51.876729 +-0.243313,52.071899 +-0.418005,51.880686 +-0.532481,51.919817 +-0.56516,51.863078 +-0.462107,52.128293 +-0.48573,52.148128 +-0.463586,51.921042 +-0.405445,51.877207 +-0.488516,51.897069 +-0.452876,52.16028 +-0.547542,52.068496 +-0.329501,52.116895 +-0.428999,51.92331 +-0.475866,51.862873 +-0.53014,52.236155 +-0.478563,52.019091 +-0.616926,51.908341 +-0.448864,51.900546 +-0.387693,51.889365 +-0.297321,52.197807 +-0.496636,51.98164 +-0.248309,51.999042 +-0.477008,52.114595 +-0.242427,52.004538 +-0.441059,52.052804 +-0.477164,52.11172 +-0.310329,52.026698 +-0.635322,51.934011 +-0.511109,51.933323 +-0.283672,52.133141 +-0.486329,52.147686 +-0.456762,51.885103 +-0.514268,52.011157 +-0.388327,51.892359 +-0.455227,52.214384 +-0.371002,52.033325 +-0.453239,51.89207 +-0.484063,51.889477 +-0.484108,52.122707 +-0.419758,51.888721 +-0.510361,52.19221 +-0.553347,51.904915 +-0.533339,51.8935 +-0.465771,52.138159 +-0.405303,51.892293 +-0.437131,51.87632 +-0.456205,51.889492 +-0.371481,51.848598 +-0.452149,51.892074 +-0.436473,51.870179 +-0.577315,52.075972 +-0.471332,51.898061 +-0.452548,51.884265 +-0.469741,51.891423 +-0.460919,51.905047 +-0.505345,52.103997 +-0.532628,51.918892 +-0.508411,51.895381 +-0.442757,51.904385 +-0.414209,51.887414 +-0.525419,52.151427 +-0.458315,51.887722 +-0.435074,51.882434 +-0.510546,51.908176 +-0.469822,51.915548 +-0.44909,51.877503 +-0.417704,51.86527 +-0.393103,51.869675 +-0.45858,52.131016 +-0.556946,52.060987 +-0.465298,52.152359 +-0.535139,51.939559 +-0.481077,52.145272 +-0.302267,52.071378 +-0.469467,51.892219 +-0.466858,52.139279 +-0.26827,52.092121 +-0.552851,51.910385 +-0.476269,51.905076 +-0.484957,52.147623 +-0.506397,51.877642 +-0.558279,51.90253 +-0.289554,52.023736 +-0.525653,52.082791 +-0.651229,51.907049 +-0.500449,52.016575 +-0.470789,52.126895 +-0.409476,51.883178 +-0.440714,52.116296 +-0.404024,51.879166 +-0.397339,51.869823 +-0.640443,51.919549 +-0.427863,52.029449 +-0.435143,51.903475 +-0.377099,51.890172 +-0.487152,51.915601 +-0.452711,51.884609 +-0.4896,52.139582 +-0.469142,51.891091 +-0.317849,52.00304 +-0.421357,51.877898 +-0.448228,51.867529 +-0.377146,51.889679 +-0.613279,52.084591 +-0.46418,52.130469 +-0.374884,51.888739 +-0.422961,52.146298 +-0.486607,52.122685 +-0.519204,51.887137 +-0.413072,51.860289 +-0.468223,51.905718 +-0.464084,51.902606 +-0.434293,51.898653 +-0.495489,52.035852 +-0.437423,51.894316 +-0.435643,52.141845 +-0.433929,51.882787 +-0.454169,51.92046 +-0.307199,52.119176 +-0.446892,51.891114 +-0.204124,52.125644 +-0.506342,51.973077 +-0.554274,51.909548 +-0.401426,51.892205 +-0.422776,51.903364 +-0.547512,52.068496 +-0.617818,52.064279 +-0.485462,52.147405 +-0.531719,51.883454 +-0.522189,51.885628 +-0.446688,51.947183 +-0.419025,51.887659 +-0.52147,51.882283 +-0.458322,52.125375 +-0.437966,51.946115 +-0.502152,52.105161 +-0.243443,52.071936 +-0.515607,52.01166 +-0.471591,52.141022 +-0.451367,51.884394 +-0.671852,51.940246 +-0.691069,51.90624 +-0.633111,52.034013 +-0.467111,51.911494 +-0.433109,51.867077 +-0.452127,51.894843 +-0.263385,52.014128 +-0.52641,51.851621 +-0.522108,51.888963 +-0.406387,51.877679 +-0.360735,52.034639 +-0.446693,51.892676 +-0.504461,51.879083 +-0.422671,51.8769 +-0.455068,51.891725 +-0.466319,51.877108 +-0.565314,51.858701 +-0.413786,51.853609 +-0.485551,51.899666 +-0.41378,51.896706 +-0.381408,51.894827 +-0.432243,51.971278 +-0.528111,51.982721 +-0.370645,51.883789 +-0.260034,52.088071 +-0.47358,51.904636 +-0.443407,51.87634 +-0.49115,52.120495 +-0.47547,52.108299 +-0.460202,52.126767 +-0.489735,52.120882 +-0.437842,51.880546 +-0.50146,52.147564 +-0.476184,52.137476 +-0.522683,52.142671 +-0.469638,52.030781 +-0.484111,52.124352 +-0.274125,52.092459 +-0.474726,52.107426 +-0.603712,52.025882 +-0.4691,51.893608 +-0.4152,51.875775 +-0.304393,52.185402 +-0.422715,51.880614 +-0.665589,51.901755 +-0.511711,51.904594 +-0.474846,51.888306 +-0.443386,51.886185 +-0.510027,52.113776 +-0.608768,52.026877 +-0.48493,52.14801 +-0.349344,52.061697 +-0.422007,51.879687 +-0.422892,51.903374 +-0.660116,51.923002 +-0.427027,51.880303 +-0.527215,52.144823 +-0.427845,51.858509 +-0.477316,51.931282 +-0.519693,51.885066 +-0.494004,52.11645 +-0.659189,51.917012 +-0.395864,51.870477 +-0.466978,52.121721 +-0.440381,51.879798 +-0.420059,51.875579 +-0.428236,52.150073 +-0.473788,52.143002 +-0.243172,52.074018 +-0.430438,52.121519 +-0.470851,51.897255 +-0.517982,52.128433 +-0.416558,51.896662 +-0.417327,51.882637 +-0.274201,52.091624 +-0.47449,52.127609 +-0.453822,51.892024 +-0.418043,51.909837 +-0.437833,51.914346 +-0.502571,52.105284 +-0.418277,51.877506 +-0.243342,52.071917 +-0.502133,51.94604 +-0.554272,51.90962 +-0.438698,51.894827 +-0.426571,51.888345 +-0.561156,51.913922 +-0.424241,52.008486 +-0.263212,52.086283 +-0.406978,51.878226 +-0.457814,52.131195 +-0.41582,51.900708 +-0.442058,51.90443 +-0.47385,52.129219 +-0.506491,52.101584 +-0.462661,52.1398 +-0.522541,52.175667 +-0.424335,51.881238 +-0.414896,51.992563 +-0.528189,52.230943 +-0.458143,51.906737 +-0.499747,52.115471 +-0.459917,51.90587 +-0.481546,52.146096 +-0.464818,51.910079 +-0.494898,52.11549 +-0.446045,51.898818 +-0.475786,52.149115 +-0.432319,51.881857 +-0.445527,51.899099 +-0.577021,51.924886 +-0.465326,52.154068 +-0.452257,51.903737 +-0.45583,51.902984 +-0.499201,51.891748 +-0.379865,51.884384 +-0.532425,52.222823 +-0.419616,51.876185 +-0.451453,51.887389 +-0.504823,51.88789 +-0.555224,51.882217 +-0.415918,51.896663 +-0.38196,51.894816 +-0.536567,51.897029 +-0.438113,51.919672 +-0.438333,51.868045 +-0.469642,51.914853 +-0.41389,51.876242 +-0.472421,52.12359 +-0.656538,51.912792 +-0.556566,52.012564 +-0.464217,52.137024 +-0.475517,52.107778 +-0.463519,51.891476 +-0.520479,51.904507 +-0.298282,52.196041 +-0.51931,52.111303 +-0.305504,52.183494 +-0.474713,52.13948 +-0.424007,51.881908 +-0.666475,51.901747 +-0.331454,52.042266 +-0.571633,52.018512 +-0.410339,51.88221 +-0.496628,52.117895 +-0.255931,52.079477 +-0.421692,51.879539 +-0.437735,51.901244 +-0.420582,51.896717 +-0.483974,52.15421 +-0.40861,51.872718 +-0.530284,52.094213 +-0.420886,51.873109 +-0.503839,52.102746 +-0.489703,51.921497 +-0.214058,52.127827 +-0.414051,51.874563 +-0.421516,51.896603 +-0.46274,51.903677 +-0.523447,51.965596 +-0.495379,51.906553 +-0.458493,52.130979 +-0.538063,51.896158 +-0.396852,51.869627 +-0.436836,51.899065 +-0.332475,52.03088 +-0.470033,51.896102 +-0.467704,52.132511 +-0.45666,52.138805 +-0.263681,52.017378 +-0.43508,52.118281 +-0.494851,52.105176 +-0.421016,51.885977 +-0.501708,51.921254 +-0.530563,51.886803 +-0.446824,51.897327 +-0.4751,52.139692 +-0.301004,52.149559 +-0.421419,51.883195 +-0.496969,52.113826 +-0.524128,52.167028 +-0.511266,52.098057 +-0.288196,52.118425 +-0.466567,51.910812 +-0.455038,51.891734 +-0.43981,52.024168 +-0.495421,52.057404 +-0.404697,51.887241 +-0.449606,52.070908 +-0.484607,51.890581 +-0.498116,51.903387 +-0.563352,52.015893 +-0.24421,52.076201 +-0.603322,52.026723 +-0.658253,51.917208 +-0.487139,51.906043 +-0.536259,52.243361 +-0.502387,52.115567 +-0.416133,51.860375 +-0.463414,51.892437 +-0.42888,51.859233 +-0.427107,51.979913 +-0.521024,51.886153 +-0.395161,51.886122 +-0.532341,51.894234 +-0.531426,51.914283 +-0.535833,51.912431 +-0.23453,52.017134 +-0.672982,51.91377 +-0.679884,51.911429 +-0.453765,51.892005 +-0.435413,51.895683 +-0.295952,52.135279 +-0.497083,52.113908 +-0.449703,51.884201 +-0.475285,52.136844 +-0.602912,52.026304 +-0.495499,52.110633 +-0.476412,52.108068 +-0.242633,52.071762 +-0.466201,52.134568 +-0.426526,51.974888 +-0.491841,52.120378 +-0.481335,52.106747 +-0.446892,51.891123 +-0.419751,51.910445 +-0.383196,51.889951 +-0.507966,52.008326 +-0.473093,52.122304 +-0.499039,52.142633 +-0.510134,51.912702 +-0.449361,51.89201 +-0.457518,51.91269 +-0.498677,52.104722 +-0.572525,52.179393 +-0.42712,51.85805 +-0.214417,52.02852 +-0.605813,51.942791 +-0.510997,51.887501 +-0.519158,52.11764 +-0.471414,51.898215 +-0.424926,52.000592 +-0.298604,52.194877 +-0.297549,52.041952 +-0.416959,51.883189 +-0.46409,52.214608 +-0.41721,51.876863 +-0.409866,51.882842 +-0.298035,52.203635 +-0.497443,51.937043 +-0.374018,51.850323 +-0.531816,51.919719 +-0.381807,51.895048 +-0.42194,52.015064 +-0.474905,52.13514 +-0.444203,51.890314 +-0.521575,51.903433 +-0.245136,52.084577 +-0.427523,51.889391 +-0.526958,52.096788 +-0.459883,51.892409 +-0.537891,52.095513 +-0.426628,52.143434 +-0.242523,52.07346 +-0.473922,52.135675 +-0.487294,52.122217 +-0.481996,52.125098 +-0.467194,51.911603 +-0.537058,51.877865 +-0.463339,52.139189 +-0.468612,51.890014 +-0.479385,52.144306 +-0.304629,52.185343 +-0.406385,51.877733 +-0.444258,52.14329 +-0.455069,51.891249 +-0.4352,51.892623 +-0.395916,51.890224 +-0.518221,52.117287 +-0.548129,52.062974 +-0.46863,52.138745 +-0.421631,52.126868 +-0.502569,51.904091 +-0.456907,51.887245 +-0.30284,52.126648 +-0.461787,51.871564 +-0.409894,51.88286 +-0.409191,51.876035 +-0.539611,51.996279 +-0.471531,51.905473 +-0.656757,51.937134 +-0.438746,51.903532 +-0.52641,52.162588 +-0.500795,52.116015 +-0.534306,51.941482 +-0.424731,51.884463 +-0.424896,51.882235 +-0.453423,52.121283 +-0.520319,51.88547 +-0.486252,52.113752 +-0.463914,52.130537 +-0.475718,51.893874 +-0.435039,51.895165 +-0.526677,51.980275 +-0.4408,51.889541 +-0.410293,51.882263 +-0.436156,51.905673 +-0.446968,51.85139 +-0.482522,51.890338 +-0.421187,51.887742 +-0.475577,52.149247 +-0.424042,51.853045 +-0.432008,51.909161 +-0.497048,51.917967 +-0.595969,52.075791 +-0.498917,52.114543 +-0.455657,52.139924 +-0.21776,52.033894 +-0.368372,52.135944 +-0.450805,51.911307 +-0.45949,52.126227 +-0.236949,52.074564 +-0.462126,52.140467 +-0.377452,51.876735 +-0.437841,52.158787 +-0.464761,52.130557 +-0.485048,51.890856 +-0.443436,51.914168 +-0.475399,52.135218 +-0.472359,52.137382 +-0.486196,52.147729 +-0.421114,51.896058 +-0.511741,52.127644 +-0.437316,51.887751 +-0.540989,52.125393 +-0.632567,51.911239 +-0.668188,51.916089 +-0.653229,51.909203 +-0.470876,52.126897 +-0.49384,51.889531 +-0.450063,51.901586 +-0.286079,52.027723 +-0.442048,52.155111 +-0.471496,52.125871 +-0.423909,51.853943 +-0.521024,51.904298 +-0.288029,52.170798 +-0.424286,51.881813 +-0.609519,52.067967 +-0.470934,52.129055 +-0.545323,52.140768 +-0.603485,52.270474 +-0.289108,52.119013 +-0.414393,51.871448 +-0.490815,52.028312 +-0.547881,51.852148 +-0.416883,51.876651 +-0.387552,51.882745 +-0.464971,52.125714 +-0.420995,51.879125 +-0.608361,52.026387 +-0.657723,51.919864 +-0.339522,52.1483 +-0.554441,52.011594 +-0.484092,51.889477 +-0.535458,51.882404 +-0.498973,52.055453 +-0.423487,51.853973 +-0.423937,52.024172 +-0.532021,51.919676 +-0.571054,51.899836 +-0.667066,51.916167 +-0.471672,51.887177 +-0.443591,51.887834 +-0.412441,51.886455 +-0.442015,51.879612 +-0.479886,51.947338 +-0.458031,52.158325 +-0.470526,51.893564 +-0.397819,51.87268 +-0.659979,51.919791 +-0.455512,51.902926 +-0.509231,52.031648 +-0.534983,51.995241 +-0.484416,52.133869 +-0.446076,51.898782 +-0.302027,52.125359 +-0.464272,51.875373 +-0.457747,52.131437 +-0.423646,52.144293 +-0.52847,52.104099 +-0.631879,51.919998 +-0.470417,51.893356 +-0.524068,51.966162 +-0.466122,52.122402 +-0.461652,52.141082 +-0.676925,51.911683 +-0.443668,51.888554 +-0.493617,51.92098 +-0.439794,51.882928 +-0.474916,52.140355 +-0.525298,51.907831 +-0.429243,51.869651 +-0.420172,51.883943 +-0.480342,51.912744 +-0.283726,52.113118 +-0.526202,51.901072 +-0.435892,51.871421 +-0.465251,52.124378 +-0.476536,52.134855 +-0.438743,51.903604 +-0.638897,51.915386 +-0.441739,51.885912 +-0.470377,51.900503 +-0.435937,51.915337 +-0.428016,52.153819 +-0.536696,51.891258 +-0.532289,51.987673 +-0.495737,51.92803 +-0.472972,51.905869 +-0.457515,52.130975 +-0.464278,51.877738 +-0.434105,51.985105 +-0.459574,51.897647 +-0.545949,52.003865 +-0.497635,51.997028 +-0.481567,52.145898 +-0.531656,51.885836 +-0.403793,51.892273 +-0.470786,51.897029 +-0.421886,51.878157 +-0.480167,52.146663 +-0.581851,51.928047 +-0.400499,51.896634 +-0.498981,51.908407 +-0.204735,52.011828 +-0.510389,51.889615 +-0.410427,51.893703 +-0.46023,52.143743 +-0.494267,51.925889 +-0.408094,51.884472 +-0.46914,51.891145 +-0.258486,52.023938 +-0.49253,52.119865 +-0.462009,52.128157 +-0.463535,51.892295 +-0.477394,51.850295 +-0.389006,52.131021 +-0.280389,52.157694 +-0.44892,52.114256 +-0.526996,52.099621 +-0.599304,52.092302 +-0.426921,51.888736 +-0.482951,51.909972 +-0.474811,52.140866 +-0.435406,51.864922 +-0.467079,51.893195 +-0.472372,52.141275 +-0.435641,52.183592 +-0.484137,52.146822 +-0.509685,51.90652 +-0.291695,52.206403 +-0.617122,51.949263 +-0.437679,51.904516 +-0.232336,52.016211 +-0.533565,52.146376 +-0.50963,51.897617 +-0.494233,51.968176 +-0.392907,51.886595 +-0.65811,51.917117 +-0.42795,51.972471 +-0.506896,52.102156 +-0.436402,51.950509 +-0.473686,52.137435 +-0.46166,52.097141 +-0.523596,51.881258 +-0.380892,51.876413 +-0.484712,51.891347 +-0.642402,51.963063 +-0.453496,52.043599 +-0.504576,52.102522 +-0.52258,51.887881 +-0.630988,51.999444 +-0.603027,52.027762 +-0.224317,52.043902 +-0.450606,51.903994 +-0.387977,51.890763 +-0.443973,52.132596 +-0.421143,51.896472 +-0.418105,51.869555 +-0.413931,51.853602 +-0.483134,51.9028 +-0.511048,51.879355 +-0.263396,52.016457 +-0.430815,51.97214 +-0.604315,52.02571 +-0.410719,52.162561 +-0.49683,51.920994 +-0.482402,52.145415 +-0.437449,51.889793 +-0.41186,51.880675 +-0.21378,52.127841 +-0.496291,52.22636 +-0.284099,52.074855 +-0.461502,52.097067 +-0.459622,51.940834 +-0.457625,52.124818 +-0.4521,51.894771 +-0.4075,51.892638 +-0.492194,51.920908 +-0.554996,52.0667 +-0.426916,51.90636 +-0.498499,52.009959 +-0.669242,51.916326 +-0.4271,51.980138 +-0.410843,51.875734 +-0.422688,51.903381 +-0.456093,51.889788 +-0.428262,51.881129 +-0.518553,51.886607 +-0.233737,52.058349 +-0.465247,52.125771 +-0.609619,52.026707 +-0.410928,52.021938 +-0.425233,51.986434 +-0.595804,52.024745 +-0.430319,51.860017 +-0.268049,52.091794 +-0.510051,51.887975 +-0.424804,52.007801 +-0.424469,51.886123 +-0.297921,52.203948 +-0.470601,52.131092 +-0.473873,52.120435 +-0.521202,51.88602 +-0.470309,51.91577 +-0.233612,52.122484 +-0.227589,52.049301 +-0.450114,51.878164 +-0.441132,52.11605 +-0.475297,52.135199 +-0.504827,52.102453 +-0.528808,51.983682 +-0.274258,52.088262 +-0.487069,52.125001 +-0.390373,51.887972 +-0.449951,51.901486 +-0.506817,52.114563 +-0.300516,52.039864 +-0.573777,52.076639 +-0.420473,51.884064 +NULL,NULL +-0.473359,52.1295 +-0.423118,51.911875 +-0.434364,51.96432 +-0.396706,51.883967 +-0.554798,52.168595 +-0.125382,51.739284 +-0.012588,51.686615 +-0.370276,51.715411 +-0.032675,51.729829 +-0.023326,51.773482 +-0.043039,51.705794 +-0.463381,51.674494 +-0.084226,51.795937 +0.161854,51.872044 +-0.190806,51.981448 +-0.220904,51.925599 +-0.324602,51.758569 +-0.36477,51.747661 +-0.01205,51.763904 +-0.341676,51.747742 +-0.410945,51.782949 +0.121408,51.795104 +-0.368163,51.658274 +-0.226053,51.918565 +-0.345949,51.636634 +-0.261471,51.662273 +-0.195556,51.799623 +-0.055181,51.709854 +-0.423812,51.756084 +-0.242593,51.760726 +-0.350845,51.637899 +-0.450572,51.747214 +-0.312895,51.759337 +-0.029411,52.061134 +-0.476528,51.740836 +-0.287065,51.967161 +-0.237425,51.764686 +-0.156534,51.910312 +-0.034168,51.699738 +-0.418072,51.826188 +0.108676,51.953796 +-0.352735,51.812477 +-0.183001,51.864757 +-0.279499,51.653942 +-0.467648,51.747744 +-0.234124,51.733775 +-0.176521,51.898934 +0.00623,51.915535 +-0.385779,51.665819 +-0.598768,51.763407 +-0.396495,51.69938 +-0.21939,51.70592 +-0.193631,51.796608 +-0.487765,51.739624 +-0.039695,51.70814 +-0.034383,51.69913 +-0.032988,51.811286 +-0.003405,51.801498 +-0.22025,51.984396 +-0.414911,51.713999 +-0.206264,51.902475 +-0.416346,51.764508 +0.134306,51.801678 +-0.294938,51.943438 +0.166493,51.869728 +-0.234395,51.749479 +-0.276386,51.973838 +-0.224375,51.692085 +-0.382534,51.70658 +-0.147596,51.79002 +-0.13217,51.912346 +-0.337363,51.75474 +-0.30154,51.731379 +0.177318,51.868593 +-0.415905,51.812266 +-0.061315,51.706898 +-0.415941,51.812483 +-0.261334,51.657937 +-0.200949,51.795308 +-0.317817,51.684558 +-0.568893,51.749469 +-0.177319,51.691445 +-0.177843,51.798648 +-0.422092,51.847363 +-0.30234,51.731274 +-0.388592,51.725097 +-0.27724,51.679213 +-0.092345,51.709681 +-0.015884,51.759752 +-0.172401,51.686036 +0.140731,51.806866 +-0.510309,51.660478 +-0.389912,51.727057 +-0.118534,51.743743 +-0.451052,51.746744 +-0.498886,51.743597 +-0.450237,51.713391 +-0.337452,51.753518 +-0.407768,51.693185 +-0.385358,51.651624 +-0.494447,51.68583 +-0.22454,51.955435 +-0.481337,51.757255 +-0.323736,51.695055 +-0.24482,51.751875 +-0.325678,51.810162 +-0.415216,51.766552 +-0.03435,51.703896 +-0.399197,51.655581 +-0.275263,51.953429 +-0.389383,51.727284 +-0.40674,51.678352 +-0.360386,51.760324 +-0.289237,51.71934 +-0.221767,51.778136 +-0.045884,51.687129 +-0.244614,51.755693 +-0.204174,51.686661 +-0.032807,51.683421 +-0.085308,51.815576 +-0.202735,51.879797 +-0.379844,51.708143 +-0.073976,51.822396 +-0.395262,51.831049 +-0.285379,51.714554 +-0.279991,51.644777 +-0.203148,51.686268 +-0.17724,51.723654 +-0.457917,51.759971 +-0.292612,51.957953 +-0.299136,51.727145 +-0.393699,51.681484 +-0.313182,51.676147 +-0.254055,51.958044 +-0.416038,51.685474 +-0.336193,51.730607 +-0.3109,51.949989 +-0.216255,51.935375 +-0.432215,51.708386 +-0.01382,51.765499 +-0.331453,51.747633 +-0.209089,51.908552 +-0.219462,51.929696 +-0.320596,51.758746 +-0.029152,51.70995 +-0.012249,51.759052 +-0.204513,51.963494 +-0.203871,51.985739 +-0.401996,51.809318 +-0.441953,51.70215 +-0.175406,51.701235 +-0.383022,51.666105 +-0.044741,51.691813 +-0.206037,51.773787 +-0.227429,51.800854 +-0.252949,51.65828 +-0.24228,51.746396 +-0.332181,51.754226 +-0.249427,51.656627 +-0.213935,51.821907 +-0.387296,51.802571 +-0.034448,51.692954 +-0.413647,51.773679 +-0.253944,51.656469 +0.122802,51.883402 +-0.509387,51.638346 +-0.232732,51.971024 +-0.317133,51.752528 +0.137423,51.805632 +-0.319576,51.640944 +-0.164696,51.777034 +-0.262442,51.655049 +-0.467195,51.635618 +-0.403371,51.661042 +-0.185862,51.849964 +-0.225179,51.75399 +-0.455283,51.679144 +-0.343868,51.655677 +-0.46297,51.643916 +-0.475109,51.753739 +-0.366977,51.645021 +-0.337722,51.753261 +-0.223319,51.771469 +-0.014796,51.686391 +-0.177225,51.723662 +-0.029036,51.685966 +-0.486706,51.739232 +0.02315,51.826735 +-0.26072,51.807115 +-0.186897,51.987736 +-0.388975,51.627889 +-0.418206,51.825281 +-0.29039,51.763589 +-0.384124,51.711511 +-0.314818,51.754374 +-0.182035,51.801168 +-0.639137,51.791899 +-0.44444,51.652412 +-0.211127,51.931179 +-0.045664,51.690884 +-0.39504,51.742117 +-0.334824,51.751305 +-0.107356,51.94576 +-0.406016,51.654496 +-0.398225,51.654857 +-0.125174,52.017395 +-0.253495,51.738057 +-0.261743,51.807292 +-0.191739,51.905463 +-0.487084,51.778208 +-0.337446,51.758005 +-0.446646,51.694011 +-0.40813,51.747987 +-0.401275,51.661436 +-0.218234,51.67675 +-0.183604,51.860621 +-0.337952,51.757644 +-0.288493,51.963324 +-0.357451,51.816014 +-0.04527,51.690302 +-0.20213,51.795129 +-0.165687,51.850865 +-0.499598,51.726935 +-0.414541,51.770103 +-0.050288,51.817842 +-0.285732,51.956333 +-0.229804,51.684191 +-0.24586,51.762051 +-0.187213,51.679566 +-0.385366,51.693697 +-0.336378,51.749232 +-0.033692,51.702716 +-0.131083,51.911574 +-0.044288,51.690915 +-0.299251,51.795045 +-0.224016,51.980847 +-0.037577,51.707915 +-0.473739,51.739802 +-0.275252,51.661478 +-0.191344,51.697857 +-0.397822,51.669158 +-0.528634,51.647338 +-0.44713,51.708189 +-0.217366,51.734197 +-0.072891,51.796471 +-0.457656,51.766756 +-0.439291,51.70759 +-0.24442,51.69529 +-0.307485,51.759843 +-0.359184,51.663508 +-0.336492,51.754404 +-0.363901,51.800575 +-0.404619,51.653505 +-0.055283,51.700387 +-0.208758,51.832448 +0.013057,52.005367 +-0.407615,51.618324 +-0.536713,51.768468 +-0.345402,51.732194 +0.024034,51.781048 +-0.20473,51.963893 +-0.201574,51.888889 +-0.224839,51.920228 +-0.27455,51.94092 +-0.171041,51.914674 +-0.397902,51.654997 +-0.106093,51.726035 +-0.26338,51.939326 +-0.207473,51.910074 +-0.380559,51.703531 +-0.210713,51.91452 +-0.422058,51.653372 +-0.371441,51.714421 +-0.209947,51.897217 +-0.253982,51.656605 +-0.560019,51.758865 +-0.450863,51.749727 +-0.320243,51.752257 +-0.228771,51.686207 +-0.413519,51.685512 +-0.252882,51.935043 +-0.265455,51.743809 +-0.501944,51.643197 +-0.353005,51.663233 +-0.323535,51.751378 +-0.252475,51.906209 +-0.221364,51.778067 +-0.278051,51.688316 +-0.415096,51.819629 +-0.352479,51.725558 +-0.026071,51.724529 +-0.012003,51.758706 +-0.344201,51.732959 +-0.239008,51.768333 +-0.201625,51.888332 +-0.399283,51.654386 +-0.342924,51.751635 +-0.031587,51.764521 +-0.090797,51.794866 +-0.320591,51.642793 +0.024546,51.928989 +-0.361294,51.71642 +-0.162029,51.915676 +-0.286018,51.963719 +-0.574825,51.748795 +-0.238106,51.673426 +-0.397465,51.657158 +-0.310181,51.72993 +-0.232919,51.77245 +-0.305859,51.662688 +-0.25749,51.945272 +0.141061,51.807085 +-0.009842,51.763363 +-0.397009,51.65369 +-0.307499,51.759862 +0.060087,51.825833 +-0.220156,51.92869 +-0.158222,51.905662 +-0.338028,51.631945 +-0.335244,51.74775 +-0.230497,51.686827 +-0.207027,51.801462 +-0.487452,51.746391 +-0.23277,51.681232 +-0.331292,51.766146 +-0.173647,51.898475 +-0.26648,51.743537 +-0.224149,51.779134 +-0.311849,51.742696 +-0.382373,51.661977 +-0.337475,51.758015 +-0.347137,51.826705 +-0.044409,51.691474 +-0.30723,51.748465 +-0.386616,51.719575 +-0.346686,51.637031 +-0.327403,51.759625 +-0.339381,51.751459 +-0.218673,51.734855 +-0.37241,51.651112 +-0.227062,51.754 +-0.207633,51.904609 +-0.027546,51.80901 +-0.228133,51.976152 +-0.314575,51.678738 +-0.279764,51.946085 +-0.462011,51.675231 +-0.161373,51.915729 +-0.01727,51.750927 +-0.363578,51.660728 +-0.338173,51.7528 +-0.274066,51.675956 +-0.362168,51.666148 +-0.193858,51.810882 +-0.265392,51.743952 +-0.371352,51.827636 +-0.281663,51.666293 +-0.236318,51.759984 +-0.245402,51.760408 +-0.357005,51.640188 +0.160702,51.868018 +-0.233685,51.791435 +-0.345863,51.636615 +-0.183615,51.861412 +-0.19847,51.698066 +-0.198051,51.796694 +-0.33262,51.75095 +-0.438734,51.771677 +-0.020743,51.685709 +-0.462218,51.759623 +-0.448011,51.653646 +-0.421593,51.644266 +-0.378219,51.775812 +-0.448754,51.757162 +-0.355516,51.648197 +-0.661768,51.788095 +-0.344504,51.732999 +-0.187756,51.86679 +-0.36367,51.649768 +-0.365323,51.667298 +0.057857,51.784543 +-0.413523,51.80077 +-0.071073,51.795569 +-0.432114,51.708808 +-0.472248,51.746626 +-0.29667,51.723413 +-0.453784,51.777882 +-0.329574,51.710605 +-0.105801,51.726094 +-0.509562,51.63744 +-0.320477,51.752189 +-0.49021,51.743153 +-0.02926,51.946825 +-0.23566,51.69096 +-0.47737,51.744219 +-0.283394,51.950868 +-0.045846,51.691022 +-0.28259,51.944086 +-0.174594,51.899146 +-0.364176,51.720803 +-0.281018,51.691731 +-0.193094,51.695699 +-0.176017,51.923932 +-0.389962,51.618794 +-0.389311,51.798103 +-0.400744,51.639155 +-0.046041,51.691538 +-0.275341,51.656084 +-0.335256,51.766337 +-0.232483,51.688592 +-0.285921,51.962819 +-0.33192,51.758538 +-0.27459,51.661765 +-0.342542,51.826146 +-0.006492,51.762416 +-0.377659,51.917803 +-0.451761,51.742941 +-0.452475,51.702963 +-0.386304,51.654712 +-0.218861,51.928707 +-0.468128,51.758378 +-0.236962,51.692103 +-0.570056,51.762189 +-0.405376,51.654604 +-0.186662,51.991401 +-0.372279,51.674148 +-0.513253,51.744993 +-0.65831,51.799088 +-0.360199,51.664215 +-0.218571,51.927965 +-0.515965,51.717027 +-0.492484,51.781442 +-0.381353,51.706824 +-0.396508,51.671981 +0.166575,51.869637 +-0.208805,51.907297 +-0.11375,51.70767 +-0.017303,51.813666 +-0.416748,51.757562 +-0.378364,51.709454 +-0.233038,51.769026 +-0.030051,51.75321 +-0.410734,51.720848 +-0.395235,51.68181 +-0.470312,51.738346 +-0.24884,51.659109 +-0.165791,51.862592 +-0.179469,51.912665 +-0.098742,51.82421 +-0.189364,51.783675 +-0.044604,51.691648 +-0.257202,51.664251 +-0.196028,51.735795 +-0.204817,51.964263 +-0.195052,51.693778 +-0.184784,51.808917 +-0.158673,51.698833 +-0.045466,51.69178 +-0.317253,51.739923 +-0.455385,51.679128 +-0.39412,51.797035 +0.17618,51.875709 +-0.032859,51.683548 +-0.384126,51.664321 +-0.186495,51.888019 +-0.361859,51.821696 +-0.370104,51.715787 +-0.306152,51.941999 +-0.340479,51.824651 +-0.684613,51.789764 +-0.452913,51.679931 +-0.202247,51.878567 +-0.44721,51.691483 +-0.265543,51.939439 +-0.050095,51.713025 +-0.392012,51.683771 +-0.342912,51.745637 +-0.395291,51.83104 +-0.170961,51.686571 +-0.422778,51.756241 +-0.283717,51.643321 +-0.417629,51.705808 +0.176592,51.89205 +-0.158855,51.809422 +-0.01257,51.767231 +-0.006149,51.762968 +-0.363067,51.668499 +-0.411169,51.787295 +-0.51459,51.766923 +-0.372815,51.715258 +-0.250636,51.759587 +-0.358963,51.668415 +-0.061323,51.745619 +-0.314264,51.678167 +-0.27219,51.771172 +-0.101997,51.801666 +-0.205289,51.737475 +-0.265168,51.953298 +-0.042866,51.702743 +-0.000839,51.787373 +-0.348821,51.75402 +-0.599638,51.761502 +-0.384536,51.698721 +-0.41352,51.685485 +-0.049063,51.70942 +-0.208839,51.907909 +-0.421902,51.676174 +-0.383227,51.643663 +-0.375192,51.653758 +-0.032311,51.762546 +-0.413623,51.68545 +-0.318835,51.700812 +-0.410651,51.644316 +-0.015539,51.786444 +-0.379828,51.708197 +-0.263204,51.655914 +-0.496075,51.654164 +-0.273006,51.715596 +-0.236562,51.770104 +-0.433172,51.707923 +-0.511139,51.619269 +-0.399931,51.660213 +0.087171,51.930386 +-0.123362,51.699587 +-0.215787,51.978331 +-0.394286,51.653841 +-0.250234,51.774103 +0.069388,51.839752 +0.173201,51.849785 +-0.25556,51.705483 +-0.287812,51.961704 +-0.397909,51.668736 +-0.267209,51.649436 +-0.344837,51.733004 +-0.5102,51.624113 +-0.443858,51.699342 +-0.519984,51.694149 +-0.362315,51.668093 +-0.07768,51.796064 +-0.029773,51.685987 +-0.034254,51.69876 +-0.169579,51.686415 +-0.380256,51.705937 +-0.02937,51.946314 +-0.271897,51.660359 +-0.569631,51.749505 +-0.171517,51.906904 +-0.366848,51.644974 +-0.201787,51.686301 +-0.330828,51.759467 +-0.35016,51.637664 +-0.019778,52.048392 +-0.356647,51.821785 +-0.313784,51.738173 +-0.214887,51.76734 +-0.380164,51.704866 +-0.249211,51.65737 +-0.344457,51.744185 +-0.193505,51.965771 +-0.45198,51.734842 +-0.255474,51.643354 +-0.136342,52.039387 +-0.375768,51.716072 +0.152539,51.860435 +-0.340756,51.823027 +-0.182926,51.893296 +-0.123271,51.699694 +-0.462408,51.742064 +-0.247469,51.957128 +-0.312336,51.764211 +-0.032962,51.684503 +-0.447747,51.711281 +-0.19251,51.81158 +-0.394467,51.642577 +-0.330441,51.934757 +-0.337008,51.757693 +-0.252739,51.934987 +-0.034234,51.683202 +-0.457548,51.760164 +-0.132979,51.716259 +-0.492374,51.781288 +-0.123344,51.699668 +-0.180581,51.7854 +-0.387713,51.682633 +-0.448331,51.765258 +-0.495449,51.732394 +-0.462243,51.732854 +-0.188063,51.794049 +-0.337278,51.734956 +-0.407064,51.634898 +-0.298463,51.644372 +-0.455038,51.732229 +-0.525544,51.620494 +0.072033,51.854983 +-0.495397,51.762309 +-0.192472,51.919771 +-0.354088,51.735454 +-0.090712,51.714429 +-0.384654,51.662899 +-0.404432,51.658008 +-0.156904,51.894186 +-0.14132,51.894273 +-0.225482,51.768049 +-0.511507,51.618626 +-0.405618,51.702076 +-0.238289,51.97893 +-0.260462,51.919231 +-0.494551,51.656527 +-0.364448,51.720483 +-0.232388,51.993445 +-0.349542,51.741792 +-0.127175,52.01589 +-0.211475,51.983499 +-0.297238,51.648131 +-0.290922,51.665781 +-0.194596,51.890751 +-0.285807,51.957036 +-0.211308,51.828881 +-0.254005,51.948089 +-0.35911,51.668363 +-0.330285,51.675546 +-0.040412,51.709635 +-0.446083,51.633101 +-0.058982,51.946959 +-0.050471,51.82101 +-0.070223,51.95119 +-0.044404,51.690917 +-0.236738,51.926818 +-0.182768,51.690144 +-0.26696,51.755593 +0.138419,51.804912 +-0.177643,51.811522 +-0.088201,51.79727 +-0.243139,51.760473 +-0.313633,51.774139 +0.003545,51.918585 +-0.457974,51.771895 +-0.198644,51.899643 +-0.466024,51.639496 +-0.184708,51.808628 +-0.034966,51.684339 +-0.379334,51.651127 +-0.524472,51.623259 +-0.022742,52.053271 +-0.043503,51.714147 +-0.365458,51.667147 +-0.341004,51.63392 +-0.402475,51.66103 +-0.351768,51.656282 +-0.321239,51.642865 +-0.444188,51.699437 +-0.014867,51.765436 +-0.201135,51.698736 +-0.444899,51.653362 +-0.036585,51.825985 +-0.465232,51.763466 +-0.463685,51.632595 +-0.434452,51.706906 +-0.290275,51.985721 +-0.021791,51.788375 +0.167208,51.86467 +-0.015542,51.78639 +-0.17381,51.880116 +-0.393781,51.681206 +-0.052688,51.703194 +-0.235763,51.793192 +-0.345882,51.755157 +-0.24811,51.68255 +-0.234694,51.690154 +-0.022451,51.811082 +-0.198261,51.89542 +-0.399796,51.664041 +-0.361553,51.667965 +-0.69603,51.830758 +-0.21817,51.733642 +-0.233119,51.667425 +-0.436586,51.75371 +-0.280551,51.655189 +-0.421971,51.740746 +-0.211113,51.93117 +-0.448674,51.768374 +-0.384763,51.660248 +-0.36681,51.66535 +-0.328585,51.750362 +-0.337489,51.758033 +-0.503508,51.696637 +-0.270555,51.715317 +-0.373741,51.630062 +-0.04926,51.709549 +-0.202433,51.815599 +-0.24929,51.657191 +0.019151,51.883968 +-0.50017,51.646168 +-0.177979,51.693757 +-0.388617,51.725205 +-0.008741,51.784764 +-0.401439,51.660485 +-0.557927,51.759946 +-0.167627,51.791296 +-0.165647,51.813988 +-0.014182,51.786313 +-0.201738,51.894952 +-0.254961,51.921577 +-0.092174,51.855334 +-0.320694,51.741662 +-0.212657,51.896332 +-0.174258,51.899546 +-0.388055,51.802411 +-0.206298,51.946868 +-0.164537,51.744866 +-0.074751,51.797761 +-0.333252,51.804605 +-0.113057,51.772979 +-0.380086,51.705827 +-0.223338,51.699721 +-0.35651,51.753732 +-0.199008,52.003855 +-0.159929,51.898388 +-0.6248,51.786085 +-0.510765,51.637311 +-0.412029,51.684278 +-0.226993,51.686531 +-0.237199,51.674455 +-0.269952,51.653334 +-0.203033,51.777536 +-0.225263,51.796919 +-0.234063,51.750931 +-0.499931,51.646831 +-0.198862,51.802173 +-0.257318,51.643894 +-0.246029,51.752819 +-0.03435,51.698896 +-0.228295,51.762084 +-0.223504,51.764161 +-0.391558,51.652896 +-0.441835,51.647009 +-0.278321,51.717814 +-0.228796,51.754116 +-7E-05,51.762154 +-0.193047,51.966286 +0.075781,51.831654 +-0.279141,51.717952 +-0.370391,51.671523 +-0.334853,51.756413 +-0.662331,51.793586 +-0.416307,51.690207 +-0.463508,51.839379 +-0.335701,51.891653 +-0.078175,51.794651 +-0.422773,51.756394 +-0.344333,51.732125 +-0.044882,51.691905 +-0.245464,51.924952 +-0.045564,51.786183 +-0.399143,51.652622 +-0.435111,51.65004 +-0.273866,51.947357 +-0.252351,51.979392 +-0.415472,51.767535 +0.005416,51.769533 +-0.450394,51.781201 +-0.068946,51.701026 +-0.326683,51.744994 +-0.314748,51.687733 +-0.247716,51.756396 +-0.465211,51.740132 +-0.204925,51.799604 +-0.4674,51.747794 +-0.435747,51.619799 +-0.273405,51.947242 +-0.196284,51.783916 +-0.282355,51.944163 +-0.396394,51.672331 +-0.201152,51.876149 +-0.013922,51.7863 +-0.189387,51.677289 +-0.081364,51.804919 +-0.323359,51.685689 +-0.41799,51.705417 +-0.692136,51.812902 +-0.223527,51.972235 +-0.184059,51.866634 +-0.306245,51.758926 +-0.231514,51.685232 +-0.173843,51.68542 +-0.045233,51.688458 +-0.391955,51.653117 +-0.186826,51.681647 +-0.41247,51.795261 +-0.370447,51.669986 +-0.351496,51.816201 +-0.293104,51.943861 +-0.61317,51.783323 +-0.344255,51.733068 +-0.338627,51.752267 +-0.17975,51.794164 +-0.438691,51.758207 +-0.354674,51.648311 +-0.241292,51.761758 +-0.182363,51.695552 +-0.32358,51.694981 +0.133325,51.80701 +-0.050169,51.711623 +-0.227933,51.801311 +-0.208196,51.737924 +0.158503,51.873059 +-0.464,51.633975 +-0.392331,51.681303 +-0.153724,51.807192 +-0.385689,51.693576 +-0.106312,51.791781 +-0.002697,51.775202 +-0.470593,51.738161 +-0.432731,51.830313 +-0.054829,52.045901 +-0.454168,51.764517 +-0.226014,51.72824 +-0.035255,51.710062 +-0.242255,51.668632 +-0.192442,51.923053 +0.01333,51.897097 +-0.190715,51.808603 +-0.078451,51.741395 +-0.362365,51.665513 +-0.127378,51.713769 +-0.219229,51.927498 +-0.344828,51.709454 +-0.146747,51.89801 +-0.013355,52.061349 +-0.459959,51.676481 +-0.286867,51.663267 +-0.399912,51.664025 +-0.443133,51.701068 +-0.47323,51.641811 +-0.394524,51.939065 +-0.330237,51.753497 +0.089326,51.78531 +-0.413565,51.773975 +0.131017,51.862931 +-0.36281,51.665591 +-0.232056,51.687291 +-0.242484,51.835897 +-0.260462,51.919231 +-0.203436,51.899402 +-0.208685,51.9209 +-0.477631,51.637714 +-0.395346,51.673755 +-0.265939,51.659614 +-0.027424,51.941597 +-0.413549,51.685494 +-0.210704,51.797606 +-0.059511,51.720968 +-0.21787,51.766675 +-0.216746,51.898039 +-0.360464,51.647682 +-0.044829,51.691805 +-0.234772,51.76247 +0.000729,52.050051 +-0.464925,51.837841 +0.158214,51.871283 +-0.446832,51.688133 +-0.028518,51.860183 +-0.237921,51.67372 +-0.148845,51.8887 +-0.03148,51.810937 +-0.018879,51.946318 +-0.175357,51.876723 +-0.352984,51.659438 +-0.172338,51.921411 +-0.41226,51.751666 +-0.230297,51.696787 +-0.336264,51.631192 +-0.378423,51.709428 +-0.369752,51.664761 +-0.22924,51.826068 +-0.396647,51.681964 +-0.481587,51.735956 +0.004446,51.885586 +-0.444508,51.700223 +-0.225569,51.786888 +-0.256029,51.663928 +-0.411111,51.781935 +-0.012583,52.060662 +-0.181336,51.895951 +-0.278691,51.716066 +0.15062,51.867394 +-0.017217,51.81728 +-0.239378,51.986797 +-0.410563,51.687306 +-0.396926,51.672841 +-0.044548,51.690937 +-0.434679,51.775777 +-0.034348,51.814708 +0.004953,51.885559 +-0.078283,51.794159 +-0.015061,51.686297 +-0.412555,51.624551 +-0.37817,51.700315 +-0.401136,51.675255 +-0.032981,51.684413 +-0.206626,51.90471 +-0.454275,51.726995 +-0.504221,51.630223 +-0.436475,51.638531 +-0.02352,51.733209 +-0.215654,51.740528 +-0.316414,51.6822 +-0.461623,51.737045 +-0.40139,51.654469 +-0.417411,51.758498 +-0.398577,51.666605 +-0.247312,51.985027 +-0.206071,51.685872 +-0.320576,51.73819 +-0.396277,51.672365 +-0.325514,51.698641 +-0.235478,51.786741 +-0.24633,51.752545 +-0.174525,51.698676 +-0.186209,51.899092 +-0.325938,51.685177 +-0.198266,51.840048 +-0.209051,51.987328 +-0.169515,51.686576 +-0.286389,51.669437 +-0.270266,51.65913 +-0.497782,51.651497 +-0.195811,51.685589 +-0.411498,51.831162 +-0.368617,51.670986 +-0.31762,51.684402 +-0.117701,51.860565 +-0.045483,51.691735 +-0.396396,51.672277 +-0.226968,51.687547 +-0.190708,51.808406 +-0.513207,51.614781 +-0.510194,51.607999 +-0.419408,51.756492 +-0.229974,51.97636 +-0.008142,52.05128 +-0.123393,51.699525 +-0.209014,51.830383 +-0.433468,51.748363 +-0.198532,51.802087 +-0.397871,51.696863 +-0.033412,51.712171 +-0.480154,51.744147 +-0.646517,51.798206 +-0.272461,51.657301 +-0.344475,51.733008 +-0.313053,51.681945 +-0.351768,51.742723 +-0.378215,51.709587 +-0.475002,51.740142 +-0.200585,51.904915 +-0.193298,51.899201 +0.152434,51.88682 +-0.354829,51.814332 +-0.045304,51.690176 +-0.362099,51.749009 +-0.221429,51.778976 +-0.416772,51.75812 +-0.276881,51.653976 +-0.260155,51.657011 +-0.175622,51.898515 +-0.447938,51.765738 +-0.479393,51.765502 +-0.497948,51.798947 +-0.1813,51.683809 +-0.333186,51.748566 +-0.077111,51.717696 +-0.377341,51.699629 +0.133244,51.876226 +-0.023579,51.733192 +-0.48352,51.671698 +-0.372347,51.665795 +-0.177233,51.695022 +-0.097627,51.782109 +-0.475079,51.753757 +-0.343059,51.766564 +-0.08774,51.795832 +-0.045454,51.690727 +-0.221947,51.985294 +0.104973,51.854785 +-0.446577,51.739536 +-0.222814,51.79244 +-0.192001,51.793867 +-0.354119,51.812317 +-0.123135,51.869589 +-0.203129,51.905278 +-0.420356,51.676962 +-0.024721,51.754154 +-0.432231,51.657258 +-0.102444,51.854196 +-0.274811,51.656337 +-0.307281,51.741668 +-0.207608,51.904492 +-0.497956,51.746768 +-0.416593,51.707287 +-0.343805,51.732702 +-0.028414,51.946874 +-0.192951,51.920156 +-0.272047,51.71568 +-0.265627,51.930079 +-0.118899,51.701809 +-0.171399,51.89728 +-0.386162,51.718517 +-0.33539,51.749703 +-0.359378,51.668133 +-0.04977,51.795892 +-0.361093,51.667087 +-0.527093,51.769706 +-0.282549,51.947448 +0.122586,51.82358 +-0.219682,51.708433 +-0.208807,51.907972 +-0.344213,51.733031 +-0.435248,51.752181 +-0.511437,51.74426 +-0.045499,51.818194 +-0.422925,51.756189 +-0.20067,52.010372 +-0.435247,51.752217 +-0.342391,51.819984 +-0.446366,51.829236 +-0.115326,52.023559 +-0.229115,51.787427 +-0.318706,51.73123 +-0.321967,51.749917 +-0.023035,51.783792 +-0.074637,51.797021 +-0.210711,51.913108 +-0.025687,51.947008 +-0.276112,51.945708 +-0.025946,51.73271 +-0.479072,51.763421 +-0.432434,51.762745 +-0.395102,51.831065 +-0.078583,51.794253 +-0.191894,51.905564 +-0.011931,52.060561 +0.026236,51.780354 +-0.447201,51.691303 +0.047936,51.874676 +-0.491165,51.745377 +-0.471891,51.758931 +-0.218059,51.930969 +-0.19603,51.891969 +-0.201963,51.910448 +-0.333883,51.64648 +-0.045424,51.690745 +-0.246056,51.752864 +0.167719,51.871073 +-0.196657,51.908245 +-0.662853,51.79503 +-0.178532,51.692588 +-0.075906,51.850995 +-0.479339,51.734776 +-0.505946,51.640163 +0.174285,51.887929 +-0.397735,51.638431 +-0.417143,51.759933 +-0.406299,51.629519 +-0.405184,51.6539 +-0.375589,51.696431 +-0.448454,51.765484 +-0.369374,51.670448 +-0.178785,51.692421 +-0.462096,51.732924 +-0.181463,51.895701 +-0.407543,51.618323 +-0.387584,51.628823 +-0.302936,51.731624 +-0.221782,51.778855 +-0.40456,51.683178 +-0.221474,51.77894 +-0.39689,51.663192 +-0.477646,51.762719 +-0.35931,51.663618 +-0.246844,51.755735 +-0.395572,51.649336 +-0.384707,51.629287 +-0.327271,51.754561 +-0.218003,51.766596 +-0.176048,51.805751 +-0.218071,51.676478 +-0.519541,51.629195 +-0.423117,51.756506 +-0.173586,51.794167 +-0.254235,51.644757 +-0.140795,51.7364 +-0.265978,51.743763 +-0.218107,51.930853 +-0.280587,51.715311 +-0.437809,51.753115 +-0.443502,51.646861 +-0.392672,51.794543 +-0.397105,51.682097 +-0.44979,51.712495 +-0.030956,51.685737 +-0.48938,51.750695 +-0.384615,51.669283 +-0.196788,51.901719 +-0.344434,51.744427 +-0.055631,51.826527 +-0.189534,51.909313 +0.163693,51.857406 +-0.282248,51.905821 +-0.028655,51.743672 +-0.040839,51.714822 +-0.344515,51.733485 +-0.208269,51.80416 +-0.249581,51.846766 +-0.062843,51.706689 +-0.453819,51.7565 +-0.195726,51.820775 +-0.290132,51.98526 +-0.294138,51.668714 +-0.187571,51.923769 +-0.302269,51.731255 +-0.321084,51.819403 +-0.197206,51.784065 +-0.198649,51.89735 +-0.040694,51.70277 +-0.401363,51.661014 +-0.386993,51.62797 +-0.250539,51.964627 +-0.398035,51.80198 +-0.393773,51.634402 +-0.225481,51.687479 +-0.370388,51.670822 +-0.210597,51.792983 +-0.087299,51.79596 +-0.219083,51.927505 +-0.172945,51.685811 +0.142562,51.865032 +-0.233082,51.769026 +-0.166634,51.884366 +-0.221265,51.928231 +-0.169564,51.686415 +-0.109343,52.02751 +-0.195108,51.783601 +-0.01113,51.785497 +-0.146628,51.703212 +-0.363708,51.663158 +-0.169986,51.685279 +-0.211976,51.917497 +-0.041639,51.708388 +-0.268887,51.669145 +0.100078,51.883441 +-0.177105,51.694984 +-0.275017,51.8741 +-0.354217,51.812408 +-0.19359,51.904259 +-0.205727,51.908644 +-0.26099,51.651808 +0.160474,51.869318 +-0.072814,51.796929 +-0.256829,51.9567 +0.175558,51.88751 +-0.205157,51.885391 +0.146227,51.811101 +-0.496628,51.74837 +-0.375746,51.689617 +-0.442021,51.701863 +-0.301995,51.78567 +-0.529979,51.701369 +-0.181667,51.983833 +-0.204279,51.795791 +-0.369528,51.671817 +-0.336956,51.753997 +-0.205775,51.77381 +-0.369269,51.623436 +-0.406094,51.657608 +-0.044376,51.691231 +-0.385923,51.665839 +-0.492861,51.75752 +-0.277111,51.942405 +-0.405565,51.811776 +0.14094,51.832689 +-0.026427,51.692747 +-0.043414,51.700774 +-0.189693,51.813111 +-0.033656,51.718227 +-0.298588,51.643735 +-0.436663,51.753594 +-0.372013,51.714213 +-0.388757,51.654431 +-0.054383,51.714301 +-0.192281,51.92055 +-0.475241,51.754128 +-0.244197,51.766432 +-0.060959,51.831533 +0.082199,51.886142 +-0.338515,51.752166 +-0.341521,51.748019 +-0.312156,51.759335 +-0.364463,51.748142 +-0.401181,51.675201 +-0.227134,51.687756 +-0.331553,51.709904 +-0.36701,51.719287 +-0.329187,51.93482 +-0.206976,51.773127 +-0.063417,51.79351 +-0.392372,51.715257 +-0.163829,51.907899 +-0.034702,51.689424 +0.162947,51.85456 +-0.334724,51.736278 +-0.338371,51.768719 +-0.201971,51.795486 +-0.32016,51.758784 +-0.231117,51.980612 +-0.331024,51.72941 +-0.328051,51.753061 +-0.523984,51.623621 +0.157858,51.843503 +-0.357615,51.662515 +-0.227713,51.688116 +0.004028,51.885009 +-0.445292,51.757557 +-0.224991,51.909008 +-0.353948,51.815803 +-0.150418,51.787322 +-0.412315,51.655003 +-0.20185,51.82077 +-0.432645,51.768782 +-0.491179,51.745377 +-0.034347,51.689283 +-0.339766,51.750844 +-0.414993,51.65325 +-0.036114,51.706614 +-0.402828,51.701157 +-0.302177,51.730606 +-0.259859,51.937817 +-0.448034,51.765065 +-0.2104,51.912528 +-0.202322,51.89889 +0.148536,51.81542 +-0.462218,51.759596 +-0.195221,51.915416 +-0.376086,51.772645 +-0.026032,51.727406 +-0.412578,51.796315 +-0.220644,51.921145 +0.149714,51.876421 +-0.019086,51.746857 +-0.353935,51.74367 +-0.069545,51.84323 +-0.212298,51.825506 +-0.00081,51.787372 +-0.273204,51.72254 +-0.437868,51.756865 +-0.076385,51.851345 +-0.472987,51.757371 +-0.472925,51.745906 +-0.062766,51.793481 +-0.262987,51.925005 +-0.408844,51.692597 +-0.447512,51.762523 +-0.225445,51.689871 +-0.192346,51.799735 +-0.079447,51.812144 +0.163704,51.857325 +-0.191884,51.920302 +-0.330181,51.674061 +-0.211069,51.931169 +-0.227473,51.727947 +-0.411608,51.650831 +-0.334079,51.758938 +-0.4728,51.756901 +-0.079673,51.793174 +-0.044658,51.71154 +-0.394919,51.653517 +-0.207493,51.904841 +-0.233841,51.978729 +-0.048477,51.805349 +-0.074451,51.796272 +-0.186055,51.90257 +-0.191768,51.907253 +-0.235466,51.783701 +-0.446065,51.829124 +-0.402519,51.702133 +-0.236143,51.783433 +-0.398488,51.714235 +-0.217137,51.974044 +-0.034568,51.701202 +0.17931,51.874932 +-0.392496,51.65825 +-0.181356,51.800726 +-0.412484,51.777494 +-0.190472,51.774808 +-0.355151,51.67185 +-0.443609,51.755511 +-0.388175,51.620307 +-0.480197,51.744148 +-0.274596,51.653232 +-0.029623,51.686102 +-0.019415,51.746934 +-0.275355,51.808652 +-0.40133,51.714094 +-0.454068,51.756414 +-0.229389,51.97939 +-0.032228,51.80577 +-0.472466,51.753049 +-0.211905,51.90355 +-0.381098,51.70504 +-0.387208,51.72247 +-0.576472,51.758625 +-0.169594,51.686397 +-0.275967,51.952531 +-0.274857,51.940861 +0.130505,51.857931 +-0.279382,51.716939 +-0.207365,51.984686 +-0.431129,51.683716 +-0.3133,51.685824 +-0.181282,51.80077 +-0.298724,51.67253 +-0.199484,51.736667 +-0.359631,51.711577 +-0.070252,51.797822 +-0.187062,51.905723 +-0.509521,51.636918 +-0.278463,51.717132 +-0.424369,51.756307 +-0.285387,51.714329 +-0.320497,51.642621 +-0.013034,51.756664 +-0.488392,51.788943 +-0.314172,51.73826 +-0.205015,51.885317 +-0.476683,51.759478 +-0.206671,51.836741 +-0.107032,51.955879 +-0.467541,51.740621 +-0.281147,51.656628 +-0.339212,51.648193 +-0.222112,51.778213 +-0.114907,51.747372 +-0.381889,51.73602 +-0.036774,51.776244 +-0.18896,51.681464 +-0.011859,51.763955 +-0.379551,51.702178 +-0.372172,51.802461 +-0.378832,51.676118 +-0.269702,51.953851 +-0.460802,51.675917 +-0.423929,51.756472 +-0.351606,51.800062 +-0.044841,51.69185 +-0.357337,51.65779 +-0.444361,51.701147 +-0.251413,51.655362 +-0.472148,51.739287 +-0.209172,51.891135 +-0.429715,51.75592 +-0.262216,51.85305 +-0.366259,51.644876 +NULL,NULL +-0.270706,51.65821 +-0.410157,51.662555 +-0.178193,51.803995 +-0.3225,51.685848 +-0.488038,51.743134 +-0.444547,51.74887 +-0.363827,51.662647 +-0.193935,51.811135 +-0.557867,51.709942 +-0.416158,51.755801 +-0.082488,51.793823 +-0.201457,52.012911 +-0.022894,51.936081 +-0.204591,51.963378 +-0.414422,51.664231 +-0.407112,51.648773 +-0.399329,51.742481 +-0.080802,51.794254 +-0.421004,51.65334 +0.029889,51.903305 +-0.32151,51.642959 +-0.373436,51.712479 +-0.1924,51.91977 +-0.357193,51.816748 +-0.49251,51.756302 +-0.187913,51.790567 +-0.39327,51.658863 +-0.395009,51.646855 +-0.439158,51.719872 +-0.123436,51.699535 +-0.509545,51.637503 +-0.413608,51.752476 +-0.436969,51.638456 +-0.097897,51.798785 +-0.073562,51.796734 +-0.314042,51.770944 +-0.43551,51.690087 +-0.441391,51.699121 +-0.268631,51.654232 +-0.291125,51.944623 +-0.32526,51.698071 +-0.207289,51.960677 +-0.302109,51.771842 +-0.239041,51.969042 +-0.011358,51.761519 +0.02093,51.948528 +-0.442772,51.746158 +-0.43082,51.68346 +-0.230985,51.980628 +-0.263478,51.939408 +-0.380976,51.706855 +-0.498373,51.650686 +-0.34974,51.826939 +-0.396763,51.740899 +-0.416215,51.814186 +-0.411605,51.780674 +-0.022478,51.738182 +-0.342519,51.755991 +-0.416065,51.762175 +-0.186814,51.681592 +-0.087596,51.946465 +-0.192365,51.703817 +-0.475165,51.727124 +-0.20989,51.830972 +-0.227267,51.796113 +-0.411129,51.72321 +-0.033184,51.683392 +-0.462348,51.759606 +-0.523336,51.625331 +-0.044898,51.691878 +-0.243644,51.700746 +-0.435571,51.764657 +-0.394903,51.691589 +-0.194995,51.905459 +-0.385914,51.666099 +-0.252585,51.90863 +-0.168306,51.893276 +-0.158298,51.905583 +0.096422,51.78575 +-0.193004,51.965907 +0.148498,51.815537 +-0.036473,51.702331 +-0.24507,51.977926 +-0.34288,51.745727 +-0.210804,51.902733 +-0.199433,51.818071 +-0.191533,51.697482 +-0.031476,51.719755 +-0.275889,51.946595 +-0.383636,51.654945 +-0.337287,51.753669 +-0.035295,51.689443 +-0.35489,51.726545 +-0.393335,51.939759 +-0.380409,51.915323 +-0.391741,51.696734 +-0.43307,51.652621 +-0.400816,51.682705 +-0.209325,51.825461 +-0.43988,51.703507 +-0.074191,51.911897 +-0.199526,51.817551 +-0.035284,51.685342 +-0.170091,51.80422 +-0.451261,51.674515 +-0.238265,51.672691 +-0.478951,51.74504 +-0.171808,51.687457 +-0.403036,51.658654 +-0.433174,51.652532 +-0.377214,51.699529 +-0.466966,51.634284 +-0.207427,51.980209 +-0.198156,51.712871 +-0.331206,51.637118 +-0.516305,51.632292 +-0.432449,51.657225 +-0.023865,51.685447 +-0.043321,51.708632 +-0.05859,51.80057 +-0.46267,51.83926 +-0.017261,51.685939 +-0.048786,51.713156 +-0.227938,51.766045 +-0.232463,51.790067 +-0.204952,51.885056 +-0.221896,51.778183 +-0.297302,51.649112 +-0.384068,51.698059 +-0.208351,51.904458 +-0.344894,51.732222 +-0.02336,51.73389 +-0.009983,51.778284 +0.164219,51.861102 +-0.221556,51.761389 +-0.335607,51.765865 +-0.397048,51.677168 +-0.033729,51.726906 +-0.073005,51.796527 +-0.204385,51.772305 +-0.246891,51.752652 +-0.178492,51.692857 +-0.281835,51.905599 +-0.35648,51.888538 +-0.208459,51.91088 +-0.017042,51.68598 +-0.386852,51.65677 +-0.551235,51.756231 +-0.415706,51.811329 +-0.298696,51.986014 +-0.494448,51.656589 +-0.106431,51.725906 +-0.251582,51.647964 +-0.449151,51.773469 +-0.286883,51.66324 +-0.314902,51.745905 +-0.300946,51.731397 +-0.494218,51.655237 +-0.25775,51.654503 +-0.311819,51.950326 +-0.186253,51.899093 +-0.398113,51.741628 +-0.361946,51.667917 +-0.358083,51.644349 +-0.475621,51.75745 +-0.19509,51.889679 +-0.244941,51.75586 +-0.18886,51.989618 +-0.506439,51.743846 +-0.352116,51.825462 +-0.211343,51.917686 +-0.272493,51.955456 +-0.364253,51.737529 +-0.399106,51.665147 +-0.621832,51.787849 +-0.403615,51.745812 +-0.336398,51.744349 +-0.456338,51.678745 +0.182895,51.871574 +-0.395509,51.657257 +-0.043645,51.780261 +-0.319174,51.65806 +-0.167352,51.796642 +-0.376332,51.918719 +-0.270017,51.742321 +-0.376938,51.646571 +-0.504997,51.628138 +-0.336225,51.648447 +-0.346163,51.673253 +-0.472611,51.754768 +-0.022077,51.734749 +-0.55237,51.722553 +-0.412586,51.624488 +-0.225492,51.796976 +-0.308644,51.746687 +-0.20838,51.701041 +-0.227234,51.927349 +-0.028444,51.723238 +-0.341597,51.747939 +-0.178567,51.684154 +-0.344463,51.732153 +-0.030413,52.061231 +-0.49053,51.647016 +-0.172223,51.686861 +-0.370245,51.671584 +-0.68372,51.814445 +-0.128627,51.916435 +-0.187705,51.885403 +-0.194848,51.890629 +-0.039907,51.742737 +-0.357746,51.817889 +-0.281354,51.666046 +-0.020387,51.812163 +-0.453237,51.770556 +-0.406786,51.813348 +-0.412332,51.794648 +0.144259,51.809068 +-0.376854,51.716078 +-0.350518,51.761121 +-0.199689,51.784696 +-0.372624,51.675007 +-0.430285,51.683435 +-0.56492,51.76147 +-0.349718,51.719872 +-0.229402,51.979418 +-0.370275,51.715447 +-0.372958,51.768942 +-0.15537,51.815895 +-0.062803,51.799381 +-0.223014,51.723483 +-0.289433,51.810378 +-0.132936,51.71625 +-0.248554,51.660157 +-0.448077,51.742658 +-0.256172,51.737 +-0.090617,51.878715 +-0.256577,51.956445 +-0.508569,51.747802 +-0.270003,51.742303 +-0.490349,51.709867 +-0.324725,51.698459 +-0.453114,51.764826 +-0.217444,51.78887 +-0.441863,51.715313 +-0.418515,51.820592 +-0.034289,51.689282 +-0.210473,51.802342 +-0.117982,52.021381 +-0.304942,51.748045 +-0.381939,51.705816 +-0.387115,51.628187 +-0.013136,51.765577 +-0.470424,51.686095 +-0.390825,51.730702 +-0.169581,51.686361 +-0.485237,51.722084 +-0.191775,51.697207 +-0.44463,51.685685 +-0.270301,51.953797 +-0.36873,51.645297 +-0.44864,51.770639 +-0.273891,51.929275 +-0.32063,51.685147 +-0.248909,51.657698 +-0.221687,51.7134 +-0.269798,51.754862 +-0.452956,51.680373 +-0.245172,51.756619 +-0.321289,51.711916 +-0.281999,51.65281 +-0.514741,51.63416 +-0.402189,51.807549 +-0.197864,51.992445 +-0.201678,51.876805 +-0.182507,51.907281 +-0.026845,51.724695 +-0.391104,51.654697 +-0.358195,51.662874 +-0.281911,51.649805 +-0.039409,51.704385 +-0.186171,51.88055 +-0.280189,51.669715 +-0.195258,51.800895 +-0.296708,51.997324 +-0.265776,51.805005 +-0.348091,51.648875 +-0.029045,51.945437 +-0.219471,51.988601 +-0.403859,51.745861 +-0.291658,51.666223 +-0.376133,51.689308 +-0.366073,51.713546 +-0.268647,51.940051 +-0.528821,51.740639 +-0.196393,51.779736 +-0.188819,51.805958 +-0.345988,51.736392 +-0.34113,51.858254 +-0.236598,51.987142 +0.02125,51.946589 +-0.178306,51.688852 +-0.044995,51.692644 +-0.376287,51.918755 +-0.257941,51.7584 +-0.22058,51.7781 +0.153283,51.824002 +-0.232891,51.770202 +-0.166494,51.736264 +-0.044462,51.6909 +-0.417098,51.820879 +-0.202197,51.898762 +-0.17835,51.720191 +-0.495004,51.736192 +-0.415447,51.7674 +-0.375147,51.69138 +-0.406526,51.653963 +-0.353745,51.815801 +-0.15027,51.719294 +-0.177702,51.811496 +-0.205827,51.917808 +-0.293779,51.812464 +-0.397029,51.657619 +-0.242895,51.760397 +-0.230746,51.991882 +-0.379918,51.708108 +-0.208758,51.986982 +-0.231123,51.967889 +-0.193806,51.695251 +-0.2897,51.762688 +-0.333886,51.757487 +-0.214578,51.8218 +-0.274121,51.927075 +-0.427431,51.792046 +-0.213029,51.894998 +-0.28215,51.943809 +-0.192731,51.914776 +-0.372201,51.71542 +-0.191821,51.905572 +-0.439308,51.707537 +-0.390579,51.730276 +-0.208465,51.81677 +-0.498496,51.674507 +-0.239154,51.671769 +-0.238345,51.741041 +-0.269794,51.74248 +-0.027982,51.687918 +-0.500973,51.61173 +-0.320447,51.738152 +-0.410098,51.655981 +-0.467075,51.747979 +0.139755,51.807397 +-0.159959,51.89837 +-0.174595,51.899102 +-0.021823,52.042357 +-0.381479,51.670436 +-0.218537,51.904199 +-0.35129,51.658308 +0.151725,51.811405 +-0.420102,51.839109 +-0.290428,51.665477 +-0.352498,51.652912 +-0.381063,51.636674 +-0.446471,51.621309 +-0.454594,51.777075 +-0.459746,51.768816 +-0.422689,51.821979 +-0.336833,51.647215 +-0.347958,51.808616 +-0.419224,51.833487 +-0.191763,51.905571 +-0.005979,51.930427 +-0.026403,51.805618 +-0.624596,51.786578 +-0.472772,51.755588 +-0.199455,51.800411 +-0.086807,51.796627 +-0.298352,51.796956 +-0.354319,51.812392 +-0.077023,51.741255 +-0.370886,51.645651 +-0.255857,51.936346 +-0.468081,51.74007 +-0.327322,51.754373 +-0.404403,51.627138 +-0.222473,51.713655 +-0.106477,51.795111 +-0.034498,51.702495 +-0.01793,51.750425 +-0.013464,51.75481 +-0.260542,51.739735 +-0.403906,51.649926 +-0.466273,51.641981 +-0.194019,51.694625 +-0.388729,51.942439 +-0.345162,51.732442 +-0.357512,51.736509 +-0.09899,51.818306 +-0.564398,51.761958 +-0.221393,51.682526 +-0.39544,51.698925 +-0.396948,51.677949 +-0.411091,51.703238 +-0.486208,51.635316 +-0.409051,51.748593 +-0.206296,51.800156 +-0.211917,51.796267 +-0.220079,51.777571 +-0.161054,51.715066 +-0.34124,51.933804 +-0.357909,51.746325 +-0.195397,51.80069 +-0.425761,51.7438 +-0.49815,51.757084 +-0.467653,51.74073 +-0.476646,51.729994 +-0.414553,51.657165 +-0.03608,51.720084 +0.173358,51.888279 +-0.040036,51.742775 +-0.011641,51.761676 +-0.011565,51.762403 +-0.044852,51.691931 +0.460386,51.759773 +0.258992,51.479004 +0.86666,51.868945 +0.791182,51.86487 +0.247801,51.493339 +0.825958,51.715529 +0.280776,51.887297 +0.014058,51.679048 +0.030282,51.629103 +0.115108,51.766154 +-0.002138,51.684405 +0.387144,51.758397 +0.209889,51.755687 +0.463056,51.550025 +0.349191,51.479534 +0.789025,51.880013 +0.893613,51.887549 +0.042203,51.757039 +0.104523,51.764168 +1.280638,51.936921 +0.842526,51.877652 +0.360341,51.510264 +1.278027,51.853805 +0.042134,51.680955 +0.425394,51.631631 +0.258444,51.81952 +0.102607,51.629251 +0.079718,51.72015 +0.473446,51.531496 +0.696596,51.562623 +0.384026,51.750637 +0.707134,51.579702 +0.473443,51.570257 +0.713076,51.533319 +0.562016,51.825499 +0.708775,51.540299 +0.37503,51.463203 +0.721043,51.532963 +0.606286,51.652953 +-0.011248,51.686808 +0.511029,51.837445 +0.579333,51.872001 +0.014924,51.691065 +1.171445,51.817424 +0.576952,51.842547 +-0.008154,51.687106 +0.517915,51.66329 +0.715784,51.5553 +0.305024,51.477632 +0.354754,51.478496 +0.257359,51.494351 +0.503359,51.741527 +0.368876,51.460576 +0.704971,51.567107 +0.191633,51.861862 +0.722069,51.544829 +1.017336,51.825386 +0.721488,51.548872 +0.452984,51.720809 +0.473884,51.738149 +0.134522,51.709761 +0.498883,51.591247 +0.761386,51.537156 +0.710009,51.553788 +0.700455,51.927711 +0.295434,51.676996 +0.428685,51.528699 +0.642317,51.94709 +0.952211,51.938904 +1.25704,51.938377 +0.2888,51.631784 +0.382415,51.873529 +0.127812,51.756159 +0.131372,51.684648 +0.296755,51.584128 +0.908034,51.863073 +0.723346,51.540132 +1.14995,51.802416 +0.770929,51.535186 +0.630626,51.807418 +0.675736,51.731566 +0.939885,51.880583 +1.222925,51.914763 +0.706135,51.540773 +0.992484,51.926383 +0.098841,51.748847 +1.165625,51.880495 +0.544839,51.887106 +0.571235,51.771762 +0.063528,51.763312 +0.441177,51.625755 +0.092714,51.765485 +0.806143,51.830321 +0.18451,51.724004 +0.66319,51.731995 +1.205711,51.925451 +0.723187,51.85195 +0.921242,51.884627 +0.520081,51.756718 +0.665842,51.562786 +0.372433,51.722121 +0.52752,51.760444 +0.114332,51.784584 +0.641772,51.566739 +0.643478,51.548894 +0.357401,51.463631 +0.560283,51.627075 +0.595041,51.776131 +0.757967,51.927627 +0.835925,51.864195 +1.171413,51.878073 +0.616137,51.644496 +0.552179,51.567374 +0.257521,51.641499 +0.558511,51.880388 +0.523503,51.611351 +0.284399,51.509574 +0.181386,51.72408 +0.959253,51.856416 +0.293044,51.791656 +0.196433,52.008825 +0.680956,51.561183 +0.115011,51.649576 +0.208455,52.047293 +0.444598,51.748124 +0.120413,51.75658 +0.69883,51.536265 +0.618542,51.785646 +0.257197,51.626245 +0.487862,51.782172 +0.646909,51.873575 +0.691492,51.55023 +0.422425,51.728241 +0.826816,51.886422 +0.560626,51.573377 +0.908839,51.897804 +0.790229,51.535735 +0.083875,51.641104 +0.418722,51.713668 +0.87431,51.870908 +0.488526,51.646335 +1.243353,51.9304 +0.421457,51.519378 +0.270096,51.496983 +0.726748,51.850077 +0.639065,51.801375 +0.721614,51.536476 +1.029065,51.842262 +1.062209,51.94433 +0.699218,51.778038 +0.696434,51.541842 +0.481133,51.562792 +0.582323,51.867898 +0.595463,51.970866 +0.964431,51.943498 +0.7317,51.822272 +0.109718,51.682845 +0.918475,51.89037 +1.100969,51.85959 +1.065301,51.852431 +0.306551,51.509608 +0.16307,51.713178 +0.315798,51.498994 +0.502575,51.867967 +0.574193,51.906126 +0.532261,51.570953 +0.721591,51.796614 +0.039355,51.635528 +0.253578,51.883352 +0.933253,51.884058 +0.435664,51.573529 +0.031337,51.624894 +0.67999,51.782129 +0.704428,51.548223 +0.544699,51.883089 +0.035331,51.679248 +0.307531,51.477097 +0.083496,51.640715 +0.039415,51.635581 +0.629263,51.843799 +0.543395,51.883666 +0.423146,51.694332 +0.299807,51.478148 +0.000987,51.689658 +0.659917,51.673289 +0.470953,51.652273 +1.068689,51.82241 +0.470228,51.736725 +0.286923,51.486602 +0.908182,51.873466 +0.868589,51.890114 +0.738699,51.85605 +0.517462,51.702852 +0.803949,51.885629 +0.518625,51.754241 +0.917581,51.914477 +-0.003303,51.686538 +0.315898,51.498407 +0.866288,51.844375 +0.059458,51.637776 +0.250248,51.504713 +0.785662,51.90129 +0.684292,51.545556 +1.184953,51.798252 +0.714742,51.549442 +0.525745,51.616348 +0.701399,51.556019 +0.119487,51.761246 +0.913613,51.88353 +0.033233,51.637568 +0.901204,51.893253 +0.749716,51.675932 +0.285267,51.482875 +0.382148,51.510561 +0.044539,51.75038 +0.068989,51.60841 +0.273307,51.590691 +0.477466,51.732939 +0.326574,51.477728 +0.350465,51.85955 +0.754023,51.876988 +0.59877,51.966882 +1.162331,51.818246 +0.782393,51.662005 +0.116762,51.68065 +1.077895,51.799271 +0.275901,51.590299 +0.534878,51.877968 +0.22742,51.981706 +0.466855,51.683565 +0.920461,51.786921 +0.657755,51.619809 +0.707064,51.576825 +0.58793,51.77448 +0.265194,51.606073 +0.112571,51.773888 +0.812023,51.632789 +0.31431,51.47672 +0.601812,51.523996 +0.90736,51.889989 +0.571014,51.9024 +0.310135,51.618533 +0.267717,51.509727 +0.702921,51.930272 +0.267396,51.485551 +0.046611,51.678557 +0.63875,51.573112 +0.506487,51.56415 +0.528672,51.869388 +0.422109,51.513465 +0.72076,51.536424 +1.115939,51.855084 +0.371424,51.663814 +0.611249,51.59943 +0.69722,51.832979 +0.607172,51.554212 +0.525824,51.720704 +0.65811,51.53983 +0.358796,51.652053 +0.895582,51.896926 +0.527042,51.720471 +0.697138,51.541547 +0.926765,51.9222 +0.917962,51.89256 +0.588753,51.68497 +0.673148,51.875518 +0.657581,51.560186 +0.683944,51.656922 +1.148191,51.802787 +0.092877,51.765563 +0.714006,51.539494 +1.129383,51.782171 +0.080232,51.651501 +0.115943,51.731634 +0.504693,51.742596 +0.40148,51.684156 +0.355059,51.589141 +0.826443,51.862877 +0.187807,51.895853 +0.087248,51.689676 +0.896545,51.914818 +0.581285,51.881473 +0.636091,51.547873 +0.893588,51.887397 +0.258638,51.820208 +0.57606,51.532623 +0.908351,51.881709 +0.696716,51.541728 +0.768843,51.870588 +0.724226,51.847024 +0.288987,51.635773 +0.71478,51.536032 +0.416484,51.48099 +0.475748,51.728542 +0.519902,51.564852 +0.181955,51.655878 +0.553747,51.876319 +0.29936,52.046759 +1.186547,51.890283 +0.748955,51.545776 +0.451802,51.56795 +0.012807,51.735632 +1.276273,51.933921 +0.133259,51.694308 +1.176534,51.923463 +0.047018,51.625017 +0.299937,51.566826 +0.927831,51.781602 +1.127394,51.803711 +0.566367,51.865504 +1.137638,51.800604 +0.196904,52.019049 +0.468235,51.582804 +0.629256,51.576662 +0.915411,51.894907 +0.506214,51.719298 +0.608561,51.84007 +0.126556,51.767035 +0.14787,51.758986 +0.063873,51.685026 +0.042645,51.667574 +0.92415,51.874131 +0.577356,51.529276 +0.869855,51.889921 +0.934477,51.883218 +0.531454,51.621585 +0.666048,51.564095 +0.099344,51.755942 +0.788174,51.906168 +0.038908,51.68031 +0.766202,51.799386 +0.187351,51.627118 +0.499726,51.725048 +0.85145,51.889622 +1.183726,51.803475 +0.991626,51.897742 +0.425932,51.515698 +0.792818,51.774006 +0.132108,51.696604 +0.16497,51.777781 +0.183605,51.815142 +0.69771,51.543665 +0.097209,51.76741 +0.598195,51.576167 +1.147943,51.793394 +0.919578,51.797276 +0.649148,51.548658 +1.028935,51.842284 +0.592693,51.774114 +0.544518,51.883219 +0.77946,51.533203 +0.723626,51.53588 +0.942396,51.918338 +0.796241,51.883672 +0.489509,51.72174 +0.787029,51.880644 +0.464857,51.686998 +0.128018,51.779032 +0.462677,51.737971 +0.110877,51.7789 +0.589317,51.856377 +0.039575,51.678428 +0.351952,51.860492 +0.078649,51.622591 +0.920027,51.898174 +0.058854,51.650934 +0.714339,51.540494 +0.67113,51.55307 +0.012379,51.73545 +0.099554,51.671714 +0.592905,51.776547 +0.100563,52.042028 +0.480594,51.713358 +0.875595,51.869177 +0.602993,51.584604 +0.473726,51.740563 +0.512047,51.837225 +0.167372,51.919728 +0.473228,51.571349 +0.366092,51.660845 +0.834489,51.887101 +0.115297,51.776708 +0.010345,51.714083 +0.178292,51.658491 +0.178411,51.809726 +0.695361,51.54077 +1.25105,51.834802 +0.269252,51.612154 +0.403699,51.874895 +0.310958,51.600045 +0.028657,51.723129 +0.590911,51.945975 +0.598878,51.660941 +0.210109,51.812678 +0.300079,51.566769 +1.147023,51.790595 +0.560256,51.626851 +0.249447,51.868144 +0.714573,51.5512 +0.495126,51.579079 +0.459554,51.55678 +0.315611,51.498143 +0.601512,51.587497 +0.027194,51.628554 +0.830907,51.810661 +0.028285,51.679882 +0.66435,51.547396 +0.367173,51.481636 +0.528303,51.852974 +0.147541,51.633167 +0.125556,51.763951 +0.972114,51.925658 +0.283921,51.513271 +0.382303,51.506619 +0.634122,51.551245 +0.464601,51.570865 +0.829026,51.890137 +0.287303,51.48699 +0.519147,51.753726 +0.099159,51.759453 +0.127864,51.779133 +0.706997,51.551888 +0.506247,51.564767 +0.932237,51.884749 +0.314221,51.575025 +0.473119,51.763139 +0.908628,51.807648 +0.345679,51.931956 +0.056104,51.753011 +0.458397,51.744248 +0.08536,51.652058 +0.267678,51.507767 +1.161296,51.79166 +0.595949,51.522822 +0.087324,51.753243 +1.206524,51.906046 +0.439437,51.516497 +0.331835,51.482048 +0.601832,51.857324 +0.560274,51.626913 +0.469816,51.740591 +0.460066,51.735769 +0.124588,51.727594 +0.917063,51.90761 +0.598083,51.66827 +0.31859,51.495521 +0.708306,51.534347 +0.324655,51.746467 +0.522796,51.68842 +0.48318,51.591356 +0.408894,51.573569 +0.469444,51.848425 +0.100057,51.749446 +0.136047,51.792788 +0.147026,51.784864 +0.319364,51.494292 +0.289593,51.4752 +0.913907,51.841783 +0.520967,51.756753 +0.000673,51.666786 +0.429776,51.520492 +0.140406,51.728619 +0.656053,51.566651 +0.0613,51.643994 +0.075262,51.648091 +0.17869,51.886157 +0.030957,51.630953 +0.541993,51.56612 +0.606799,51.601157 +0.890978,51.916447 +0.676207,51.562136 +0.471369,51.571919 +0.808221,51.940351 +0.113873,51.784386 +0.368347,51.475947 +0.672252,51.780003 +0.63612,51.944162 +0.596038,51.522856 +0.27456,52.001245 +0.404413,51.538165 +0.926204,51.881823 +0.730031,51.540498 +0.351663,51.579029 +0.286344,51.486838 +0.294883,51.631476 +0.709675,51.549622 +0.449455,51.730783 +0.924102,51.884367 +0.508163,51.745345 +0.614468,51.928413 +0.699371,51.5571 +0.460102,51.571733 +0.576283,51.562611 +0.567702,51.522221 +0.895016,51.89739 +0.63832,51.808982 +1.140017,51.860676 +0.275067,51.472974 +0.331936,51.489393 +0.291274,51.513325 +0.445785,51.517947 +0.901539,51.887174 +0.765486,51.973002 +0.910973,51.897544 +0.593841,51.594241 +0.417286,51.480901 +0.472865,51.762722 +0.818916,51.844243 +0.633825,51.550586 +0.641463,51.541753 +0.485287,51.574404 +0.640992,51.945105 +0.664542,51.554128 +0.265547,51.610553 +0.018092,51.683556 +0.702491,51.566651 +0.635234,51.548018 +0.071733,51.64836 +0.604813,51.518479 +0.847619,51.918899 +0.445371,51.572617 +0.463627,51.714695 +0.717766,51.540154 +0.818373,51.770473 +0.932234,51.882923 +0.337297,51.54293 +0.732723,51.540651 +0.086032,51.636138 +0.904176,51.885931 +0.367026,51.471279 +1.164912,51.808067 +0.554647,51.861182 +0.451721,51.692372 +0.670863,51.818823 +0.542582,51.653423 +0.680361,51.561376 +0.497005,51.57938 +1.15505,51.804599 +1.158448,51.914075 +0.754905,51.544467 +0.268467,51.611774 +0.864728,51.893401 +0.718103,51.543869 +0.391319,51.584082 +0.676236,51.566561 +0.324982,51.576045 +0.465473,51.728929 +0.588915,51.684769 +0.329598,51.576565 +0.116415,51.756607 +0.921491,51.795223 +0.59056,51.571362 +0.997968,51.84779 +0.125303,52.020381 +0.272278,51.661736 +0.72112,51.55407 +0.565421,51.541643 +0.666248,51.539897 +0.379614,51.507015 +0.298686,51.619531 +0.116649,51.680706 +0.756951,51.544671 +0.113359,51.619642 +1.029014,51.817504 +1.148331,51.803961 +0.890504,51.896853 +0.534681,51.87808 +0.70045,51.586502 +0.066866,51.656099 +0.322051,51.478861 +0.58222,51.868386 +0.890326,51.896795 +0.433563,51.824164 +0.084265,51.611476 +0.780136,51.87891 +0.450719,51.722034 +0.586201,51.856499 +0.3204,51.502491 +1.064248,51.830747 +1.036385,51.869037 +0.919437,51.783861 +0.903155,51.883159 +0.342931,51.484686 +0.517261,51.579991 +0.214202,51.983277 +0.535643,51.736266 +0.47995,51.724874 +0.242381,51.700495 +0.451377,51.569164 +1.147704,51.804742 +0.508564,51.744483 +0.241502,52.023685 +0.57887,51.520096 +0.106161,51.695966 +0.472481,51.726794 +0.833259,51.884648 +0.300281,51.625642 +0.630432,51.945926 +0.128689,51.775108 +0.656933,51.547843 +0.714974,51.548492 +0.428291,51.519678 +0.519471,51.753818 +1.279726,51.936982 +1.084642,51.918984 +0.893739,51.897196 +1.00559,51.894804 +0.498985,51.715036 +0.927228,51.888858 +0.96405,51.881433 +1.159058,51.802792 +0.920268,51.920706 +0.895626,51.897159 +0.737515,51.5299 +0.069008,51.629785 +0.623745,51.79384 +1.272402,51.935522 +0.094609,51.672666 +0.652674,51.805628 +0.416469,51.638245 +0.352977,51.648555 +0.912891,51.834604 +0.11433,51.701089 +0.433121,51.56726 +0.599579,51.525296 +0.931218,51.923339 +0.281258,51.502666 +0.002295,51.693394 +0.797976,51.883991 +0.596758,51.880665 +0.335965,51.483962 +0.469723,51.751888 +0.345202,51.631516 +0.09705,51.767727 +0.897539,51.88962 +0.51553,51.703757 +0.456847,51.739433 +0.864001,51.8934 +0.020689,51.688925 +0.059945,51.609935 +0.03355,51.639181 +0.904249,51.885929 +0.299351,51.614671 +1.109221,51.844235 +0.196524,51.818544 +1.171627,51.919692 +1.054895,51.871823 +0.109755,51.765414 +0.297105,51.519497 +1.11922,51.786407 +0.303439,51.618089 +0.638643,51.804577 +0.562656,51.88046 +0.561376,51.880425 +0.031761,51.625345 +0.319613,51.868499 +0.664539,51.621418 +0.473524,51.736862 +0.100786,51.67145 +0.331849,51.487416 +0.175498,51.836884 +0.896199,51.892504 +0.71808,51.543249 +0.701201,51.556086 +0.451358,51.569362 +0.934127,51.920892 +0.030282,51.629112 +0.891681,51.867874 +1.149077,51.863311 +0.499329,51.592011 +0.594955,51.594027 +0.285256,51.482929 +0.711147,51.541377 +0.806956,51.881412 +0.715402,51.547934 +0.325258,51.626112 +0.317732,51.494216 +0.573555,51.519916 +0.067904,51.76837 +0.553266,51.877579 +0.631527,51.65265 +0.441475,51.58313 +0.573634,51.530527 +0.58186,51.867926 +0.699896,51.535026 +0.001154,51.689835 +0.539178,51.672437 +0.288916,51.494189 +0.018228,51.689543 +0.090581,51.753814 +0.109784,51.765413 +0.556562,51.573736 +0.415403,51.482334 +0.11664,51.770703 +0.287778,52.021311 +0.642075,51.56675 +0.51556,51.703522 +0.486117,51.574018 +0.702144,51.837389 +0.546588,51.765266 +0.709663,51.574409 +0.745724,51.655395 +0.547838,51.76559 +0.425212,51.624962 +0.28706,51.486752 +0.231739,51.713629 +0.813871,51.782911 +0.171637,51.655071 +0.905276,51.889915 +0.235228,51.48812 +0.667974,51.546954 +0.297858,51.667444 +0.565276,51.535485 +0.782463,51.661958 +0.08466,51.775007 +0.376212,51.490653 +-0.004741,51.658776 +0.097477,51.771919 +0.539972,51.566101 +0.579359,51.773149 +0.692726,51.784167 +0.192758,51.652655 +0.58988,51.881347 +0.376318,51.872511 +0.706308,51.545635 +0.788019,51.834871 +0.097227,51.767796 +0.411412,51.585973 +1.078928,51.80527 +0.673379,51.584514 +0.473674,51.776734 +0.471658,51.573532 +0.282078,51.682365 +0.288727,51.48868 +0.556583,51.885592 +0.507938,51.734226 +0.369363,51.464694 +0.461337,51.736776 +0.288811,51.495252 +0.900534,51.922337 +0.637729,51.9448 +0.035826,51.678043 +0.897011,51.91325 +0.705338,51.87274 +0.890862,51.896539 +0.081802,51.610683 +0.73815,51.541685 +0.655594,51.56819 +0.373586,51.504997 +0.495869,51.569188 +1.100295,51.800786 +0.094669,51.672719 +-0.00834,51.680554 +1.127438,51.803728 +0.372647,51.481085 +0.089284,51.77059 +0.355504,51.501701 +0.90595,51.885482 +0.451517,51.724733 +0.519339,51.696256 +0.553402,52.051274 +0.782557,51.783486 +0.607502,51.584189 +0.517069,51.703328 +0.608959,51.780661 +0.91779,51.914571 +0.539121,51.672447 +0.866704,51.890421 +0.04539,51.64054 +0.559911,51.614573 +0.445314,51.820071 +0.582023,51.914884 +1.088521,51.781975 +0.62715,51.790796 +0.629613,51.715449 +0.705775,51.533245 +0.537751,52.022197 +0.451801,51.725977 +0.292862,51.79121 +0.655601,51.55988 +0.445485,51.581455 +0.831568,51.886865 +0.551144,51.56745 +0.473682,51.773964 +0.686146,51.613469 +0.37363,51.504447 +-0.010037,51.649424 +0.565638,52.01179 +0.654344,51.563326 +0.585836,51.881274 +0.631559,51.652695 +0.504871,51.561532 +0.582567,51.868351 +0.039566,51.655371 +0.49496,51.742893 +0.60655,51.779617 +0.14748,51.746197 +0.894743,51.886136 +0.344204,51.64552 +0.704337,51.559333 +0.818905,51.889589 +0.453301,51.56255 +0.036526,51.77514 +0.6033,51.646751 +0.36976,51.628037 +0.331096,51.636554 +0.854169,51.883684 +0.482557,51.726473 +0.584724,51.989943 +0.624123,51.846297 +0.615743,51.641932 +0.778775,51.531178 +0.039979,51.772643 +0.921651,51.795453 +0.566632,51.88495 +0.573704,51.598938 +0.907722,51.86138 +0.48033,51.738427 +0.175433,51.782525 +0.609473,51.551076 +1.155667,51.804088 +0.442762,51.588814 +0.368645,51.881038 +0.618313,51.827748 +0.689736,51.871309 +0.330659,51.576714 +1.231331,51.935596 +0.075959,51.619986 +1.230218,51.929016 +0.425267,51.525703 +0.893934,51.892317 +0.602843,51.774151 +0.626817,51.939109 +0.899199,51.887627 +0.537621,51.901893 +0.915649,51.871878 +0.216518,51.766182 +0.563677,52.015979 +0.334711,51.489014 +0.560114,51.659985 +1.058598,51.88635 +0.561074,51.629054 +0.556927,51.513103 +0.224174,51.929396 +0.237472,51.485703 +0.682027,51.550941 +0.778737,51.524164 +0.649491,51.730057 +0.311593,51.479661 +0.843331,51.888803 +0.33936,52.010928 +0.34856,51.468098 +0.267368,51.488187 +0.73702,51.541361 +0.908333,51.889974 +1.043692,51.851805 +0.108259,51.762239 +0.660481,51.871138 +0.001582,51.686104 +0.263867,51.609012 +0.354856,51.478521 +0.310901,51.499306 +0.276493,51.484556 +0.70537,51.545629 +0.917234,51.890284 +0.205622,51.723717 +0.451575,51.591895 +0.455584,51.55886 +0.68091,51.561624 +1.043737,51.851831 +0.572985,51.615349 +0.708918,51.537849 +0.539136,51.672465 +0.086718,51.68947 +0.749706,51.548187 +0.354753,51.478478 +0.213531,51.970269 +0.883222,51.860779 +0.65547,51.656608 +1.172927,51.79453 +0.120938,51.70561 +0.921314,51.890902 +0.116995,51.731211 +0.62669,51.533163 +0.772879,51.679776 +0.45273,51.522173 +0.470437,51.736828 +0.856522,51.890075 +1.124619,51.803029 +0.60323,51.555415 +0.057604,51.643447 +0.568892,51.534399 +0.208204,51.872514 +0.516059,51.703637 +0.56499,51.597051 +1.144068,51.790863 +0.740434,51.536001 +0.112007,51.6624 +0.103584,51.685958 +0.242832,51.486617 +0.585956,51.621917 +0.650551,51.950259 +0.929419,51.86399 +0.214686,52.054451 +0.342089,51.489901 +0.552644,52.022639 +0.633437,51.795655 +0.197444,51.790928 +1.246877,51.934062 +0.7215,51.548827 +0.985298,51.925945 +0.322338,51.682358 +0.60791,51.554007 +0.88326,51.860697 +1.153237,51.79962 +1.228938,51.841079 +0.785211,51.884366 +0.918748,51.884725 +0.683773,52.013267 +0.888049,51.887587 +0.532889,51.933273 +0.656733,51.690305 +0.648406,51.558981 +0.615844,51.587169 +0.52021,51.694222 +0.291685,51.629947 +0.74774,51.813975 +0.173659,51.846926 +0.461602,51.723254 +0.03212,51.759983 +0.276389,51.505314 +0.702429,51.558055 +0.509697,51.567931 +0.90275,51.775569 +0.575429,51.532691 +0.539168,51.601912 +0.551467,51.87403 +0.473922,51.734866 +0.842357,51.888565 +0.301804,51.476031 +0.932117,51.884689 +0.924151,51.904583 +0.409905,51.485685 +0.568469,51.631816 +0.457891,51.570071 +0.247731,51.877134 +0.560377,51.628746 +0.061653,51.763507 +0.584965,51.608053 +0.272817,51.488836 +1.155065,51.807513 +0.512688,51.598876 +0.216074,52.039462 +0.699547,51.537166 +0.314609,51.497974 +0.637453,51.790916 +0.456286,51.754733 +0.74586,51.601187 +0.519117,51.753457 +0.665261,51.594286 +0.520345,51.799691 +0.145454,51.704958 +0.539387,51.763236 +0.921765,51.891575 +0.594816,51.522928 +0.332735,51.791361 +0.612253,51.552255 +0.486777,51.574202 +0.34764,51.59786 +0.61542,51.580541 +0.679568,51.930437 +0.913386,51.889894 +0.212066,51.972437 +0.306302,51.620434 +0.917519,51.924516 +0.430855,51.825353 +0.084876,51.606528 +0.586596,51.604464 +0.237724,51.725484 +0.91521,51.879911 +0.895242,51.886889 +0.461565,51.723911 +0.498379,51.579963 +0.535623,51.585459 +0.88291,51.860903 +1.189615,51.861571 +0.602724,51.591274 +0.404058,51.727333 +0.308051,51.635526 +0.285804,51.513171 +0.994878,51.881065 +0.270099,51.612624 +0.053642,51.645971 +0.258074,52.011795 +0.470463,51.527799 +0.13741,51.734798 +0.322246,51.625704 +0.450641,51.692745 +0.489185,51.721908 +0.190225,51.663368 +0.56535,51.718354 +0.28846,51.494854 +0.927873,51.915535 +1.175062,51.905919 +0.081431,51.752385 +0.852186,51.89367 +0.612685,51.84184 +0.885435,51.921638 +0.514652,51.751592 +1.04553,51.885035 +0.078197,51.776623 +0.330484,51.475051 +0.441509,51.583219 +0.89359,51.887424 +0.459342,51.74457 +0.688257,51.5448 +0.846707,51.891851 +0.568714,51.534556 +0.761917,51.938884 +0.91968,51.877129 +0.827452,51.88682 +0.43106,51.577312 +0.716692,51.551169 +0.642152,51.800091 +0.78591,51.53752 +0.502637,51.782973 +0.109293,51.781941 +0.28744,51.596414 +0.592978,51.934886 +0.441201,51.578558 +0.827416,51.886246 +0.452651,51.635156 +0.361998,51.581259 +0.475077,51.701675 +0.349005,51.491615 +0.074849,51.74029 +0.421189,51.860795 +0.208343,51.983486 +0.683674,51.656749 +0.468878,51.596793 +0.658744,51.541552 +0.182142,51.978067 +0.466702,51.744326 +0.573499,51.879234 +0.678294,51.967167 +0.488876,51.95235 +0.248948,51.528641 +0.779806,51.532008 +0.725343,51.554233 +0.318625,51.495071 +1.168983,51.793098 +0.80819,51.940325 +0.668104,51.54696 +0.659357,51.602964 +0.50523,51.753619 +0.805214,51.662721 +0.687171,51.611251 +0.628627,51.940445 +0.448028,51.58472 +0.001461,51.683031 +0.160484,51.657075 +0.435937,51.64957 +0.285562,51.482437 +0.112888,51.681313 +1.011259,51.851327 +0.245275,51.715115 +0.692607,51.536876 +0.095892,51.75336 +0.612231,51.567977 +0.356946,51.651218 +0.701633,51.556553 +0.727211,51.829877 +0.283578,51.605491 +0.731557,51.533223 +0.067101,51.647273 +0.089525,51.673143 +0.615288,51.580508 +0.559157,51.563921 +0.112189,51.75734 +0.555593,51.900155 +-0.006294,51.655017 +0.473635,51.737049 +0.616451,51.586175 +0.631062,51.79721 +0.401555,51.733931 +0.160901,51.631187 +0.052415,51.63191 +0.376325,51.872645 +0.279604,51.496106 +0.228742,51.86951 +0.350836,51.64742 +0.346116,51.648108 +0.343678,51.76804 +0.482165,51.726706 +0.709283,51.558562 +0.367222,51.462003 +0.057029,51.649248 +0.693653,51.826972 +0.601797,51.589946 +0.24388,52.028388 +0.532948,51.761622 +0.313851,51.488429 +0.26258,51.712014 +0.25778,51.486258 +0.291096,51.488517 +0.115538,51.667102 +1.150909,51.797659 +0.541909,51.565906 +0.768648,51.525886 +0.832215,51.807221 +0.654279,51.550817 +0.617955,51.712894 +0.864842,51.893362 +0.267761,51.508584 +0.454793,51.63548 +0.723532,51.85285 +0.452956,51.978716 +1.094254,51.93269 +0.111308,51.622458 +0.631478,51.815304 +0.668948,51.781994 +1.178668,51.927309 +0.684728,51.547318 +0.570472,51.771599 +0.935541,51.923168 +0.909084,51.889902 +0.061943,51.617382 +0.062037,51.65354 +0.709249,51.573762 +0.1333,51.694253 +1.185193,51.889627 +0.913488,51.889909 +0.364985,51.469693 +0.922027,51.891577 +0.597378,51.957919 +0.072938,51.656396 +0.775635,51.532197 +0.364924,51.475746 +0.2687,51.500787 +0.313001,51.498105 +0.45989,51.567538 +0.142856,51.756236 +0.828809,51.890142 +0.104986,51.765724 +0.400551,51.567796 +0.542205,51.565792 +0.627794,51.876639 +0.337299,51.618337 +0.10382,51.760898 +0.561024,51.629208 +0.707258,51.5745 +0.70755,51.574548 +0.71458,51.55835 +0.327602,51.612351 +1.148152,51.793065 +0.470655,51.59707 +1.227177,51.841622 +0.678542,51.545886 +0.138507,51.657073 +0.826461,51.86293 +0.409712,51.489124 +0.486147,51.753619 +0.144163,51.687446 +1.102226,51.774401 +0.739377,51.54842 +0.600535,51.576447 +0.469965,51.732422 +0.597743,51.71766 +0.814456,51.779965 +0.932965,51.887222 +1.154788,51.787769 +0.326242,51.495837 +0.468312,51.75047 +0.463615,51.714732 +0.490647,51.578994 +0.037634,51.633238 +0.440961,51.584858 +0.095795,51.639462 +0.648124,51.540722 +0.09464,51.67271 +0.635366,51.602435 +0.562677,51.536702 +0.119281,51.776959 +0.055991,51.648367 +0.098689,51.748382 +0.722024,51.544794 +0.399128,51.681542 +0.274092,51.485799 +0.530636,51.608454 +0.07181,51.64594 +0.468156,51.687 +0.123323,51.786158 +0.402492,51.625105 +0.80807,51.940508 +1.078872,51.805298 +0.591925,51.553237 +0.276404,51.866915 +0.783762,51.879975 +0.234795,52.014577 +0.735999,51.551988 +0.641043,51.575569 +0.211161,52.006679 +0.184347,51.655105 +0.091516,51.753978 +0.127634,51.756378 +0.868873,51.909857 +0.597275,51.880573 +0.161399,51.71275 +0.211393,51.858758 +0.376137,51.491707 +1.24642,51.926331 +0.826481,51.657732 +0.085416,51.639404 +0.894412,51.898628 +1.233286,51.927583 +1.120148,51.782416 +0.529525,51.728646 +0.535656,51.589667 +0.310405,51.623267 +0.242694,51.492915 +0.598419,51.5768 +0.285652,51.483659 +0.610213,51.588661 +0.633267,51.786018 +0.709772,51.553685 +0.90733,51.918338 +0.673485,51.618759 +0.48069,51.727016 +0.128766,51.767184 +0.267884,51.488132 +0.74643,51.90473 +0.081139,51.638806 +0.376449,51.872517 +0.838804,51.878309 +0.892169,51.893583 +0.083934,51.640806 +0.671001,51.553082 +0.492707,51.725656 +0.786955,51.539977 +0.262367,51.983648 +0.662753,51.604982 +0.583922,51.716238 +0.025031,51.666261 +0.266813,51.48308 +0.305336,51.574571 +0.283833,51.510368 +0.557184,51.888241 +-0.000334,51.653782 +1.247726,51.845894 +0.134666,51.663932 +0.78221,51.879778 +0.729771,51.546269 +0.423143,51.722984 +0.45055,51.722388 +0.46539,51.743643 +0.489557,51.721829 +0.64348,51.565595 +0.550792,51.888793 +0.936696,51.891841 +0.176307,51.806402 +0.867932,51.907874 +0.59032,51.720513 +0.359979,51.561784 +1.022412,51.818609 +0.401595,51.683875 +0.615389,51.641544 +0.902986,51.886851 +1.14823,51.794178 +0.462488,51.715313 +1.279002,51.855028 +0.720353,51.532997 +0.09662,51.769084 +0.07215,51.648317 +0.427647,51.695426 +1.155056,51.806146 +0.471232,51.721406 +0.518118,51.861979 +0.082146,51.750934 +0.298898,51.57512 +0.346404,51.578361 +0.736101,51.876166 +0.382103,51.510247 +0.362674,51.461744 +0.696844,51.907766 +0.921117,51.795943 +0.253837,51.516695 +0.631496,51.943474 +0.363438,51.460092 +0.781322,51.533708 +0.744623,51.876534 +0.89132,51.912958 +0.667434,51.589479 +0.57252,51.563683 +0.35032,51.502894 +0.61236,51.896885 +0.127802,51.773209 +0.102408,51.688992 +0.716515,51.541666 +0.117648,51.764687 +0.079275,51.726264 +0.123767,51.729857 +0.840364,51.891995 +0.640232,51.567071 +0.854246,51.688349 +0.039857,51.680509 +0.657065,51.562976 +0.540428,51.782037 +0.282079,51.591725 +0.286383,51.486747 +0.264909,51.607022 +0.434921,51.74114 +0.3057,51.621372 +0.484078,51.728591 +0.085743,51.650639 +1.020012,51.832179 +1.164042,51.803521 +0.571694,51.526028 +0.827574,51.891089 +0.480833,51.554111 +0.289559,51.989111 +0.280814,51.47994 +0.054364,51.642425 +0.092125,51.779694 +0.540259,51.615234 +0.566167,51.628403 +0.128374,51.774583 +0.477192,51.859692 +0.683015,51.735852 +0.178143,51.859217 +0.686211,51.613351 +0.586561,51.643226 +0.202528,51.668084 +0.37,51.644013 +0.485247,51.646647 +1.050661,51.952365 +0.582382,51.867906 +0.932263,51.882913 +1.149275,51.798359 +0.524988,51.614943 +0.246214,52.022588 +0.575164,51.585443 +0.133244,51.70938 +0.362553,51.461639 +0.288512,51.988852 +0.495888,51.580079 +0.420874,51.519804 +0.463773,51.582781 +0.701485,51.550405 +0.201615,51.871459 +0.925467,51.909839 +0.888151,51.811418 +0.113655,51.695625 +0.579378,51.532145 +0.577799,51.87896 +0.567377,51.545404 +0.254007,51.491241 +0.450042,51.96723 +0.486268,51.561442 +0.845274,51.675877 +0.582544,51.868199 +0.521896,51.720896 +1.184268,51.804584 +0.108053,51.754392 +1.084023,51.800855 +0.586401,51.716301 +0.080755,51.638615 +0.49525,51.58002 +0.586693,51.579496 +0.267866,51.506909 +0.714305,51.550819 +1.075198,51.890208 +0.691439,51.599156 +0.705848,51.540555 +0.574246,51.717692 +0.272139,51.485333 +0.600804,51.576873 +1.159074,51.802818 +0.369877,51.468784 +1.190382,51.892292 +0.597052,51.620394 +0.896267,51.900785 +0.72105,51.946896 +0.376598,51.529352 +0.376584,51.529371 +0.480291,51.725289 +0.967261,51.881424 +1.154767,51.804706 +0.341087,51.955509 +0.32797,51.978187 +0.453255,51.521748 +0.706635,51.582465 +0.055786,51.613785 +0.611478,51.588822 +0.48098,51.726749 +0.630491,51.955385 +0.851896,51.868441 +0.468931,51.687146 +0.426068,51.731098 +0.039762,51.641375 +1.269588,51.935232 +0.813373,51.901781 +0.461397,51.738942 +0.280379,51.637317 +0.344086,51.645477 +0.631757,51.796691 +0.107593,51.753861 +0.773067,51.535729 +0.691703,51.745303 +0.480218,51.568252 +0.687025,51.55643 +0.68948,51.556239 +0.142641,51.673292 +0.926605,51.915045 +0.688749,51.541146 +0.894102,51.900812 +0.617546,51.567813 +0.066442,51.655675 +0.38434,51.761278 +0.347489,51.598016 +1.068081,51.894126 +0.496717,51.875511 +0.333311,51.486704 +0.05332,51.632749 +0.912302,51.88528 +1.075272,51.890224 +0.701802,51.837991 +0.736708,51.546962 +0.560011,51.559613 +0.772382,51.524692 +0.123371,51.756302 +0.017953,51.701579 +0.121446,51.786336 +0.909305,51.88995 +0.641847,51.566297 +0.376581,51.529308 +0.475253,51.730342 +0.639795,51.818086 +0.704947,51.548472 +0.630192,51.543634 +0.664991,51.870757 +0.481305,51.731113 +0.050311,51.629807 +0.579848,51.631917 +0.92421,51.890723 +1.188328,51.815852 +1.188315,51.81587 +0.881034,51.919911 +0.822668,51.890029 +0.814249,51.628121 +0.06727,51.762428 +0.552223,51.567391 +0.580476,51.609375 +0.242884,51.482992 +0.572871,51.533358 +0.463345,51.70605 +0.539874,51.763397 +0.40757,51.637789 +0.638302,51.809171 +0.181102,51.723887 +0.695368,51.557722 +0.795466,51.691823 +0.918212,51.894613 +0.850158,51.701813 +0.469196,51.734804 +0.10985,51.781437 +0.723354,51.551617 +0.419986,51.575616 +0.613519,51.575583 +0.095951,51.619019 +0.770582,51.877849 +0.911874,51.827165 +0.378955,51.890281 +0.62215,51.550002 +0.505952,51.611331 +0.091049,51.689573 +0.29341,52.021418 +0.755852,51.536036 +0.932378,51.884691 +1.198345,51.911278 +0.695123,51.877085 +0.496655,51.569045 +0.642621,51.792733 +0.126424,51.792298 +0.483504,51.574271 +0.417028,51.609905 +0.851086,51.88571 +0.540073,51.867271 +0.685728,51.559652 +0.345005,51.57838 +0.158686,51.793121 +0.531279,51.865105 +0.456377,51.587504 +0.480277,51.725298 +1.112267,51.800416 +0.493215,51.609283 +0.315899,51.498416 +0.52115,51.602255 +0.288544,51.486174 +0.482214,51.722065 +0.757944,51.544387 +0.525027,51.849969 +0.340491,51.489079 +0.267883,51.496522 +0.351036,52.011271 +0.273863,51.611642 +0.480186,51.727854 +0.727333,51.543124 +0.266795,51.483602 +0.59258,51.521125 +1.062565,51.939734 +0.682724,51.987454 +1.052466,51.945087 +0.651206,51.78655 +0.485974,51.57456 +0.783506,51.534043 +1.135389,51.785347 +0.685308,51.550794 +0.641057,51.575578 +0.196399,51.872924 +0.705897,51.568353 +1.101719,51.859507 +1.120377,51.801892 +0.114499,51.78102 +0.051874,51.644267 +0.428151,51.638058 +0.182959,51.889378 +0.162603,51.64084 +0.520605,51.617709 +0.469678,51.805479 +0.124984,51.671176 +1.118351,51.799238 +0.470637,51.730421 +0.921682,51.891865 +1.006323,51.906658 +1.254481,51.928563 +0.726754,51.66671 +0.929607,51.902847 +0.737758,51.742404 +0.485984,52.062572 +0.324073,51.492553 +1.034292,51.880235 +0.145305,51.78405 +0.420888,51.519804 +0.095047,51.779858 +0.174356,51.657215 +0.244298,51.763182 +0.903881,51.925285 +0.865,51.85107 +0.717823,51.533119 +0.0359,51.626128 +0.57181,51.8774 +0.416787,51.629551 +0.90033,51.89752 +1.155013,51.805734 +0.665576,51.562927 +0.697965,51.551385 +0.455727,51.523495 +0.638816,51.560313 +0.620381,51.895079 +0.35336,51.484693 +0.941222,51.919069 +0.298239,51.600097 +0.495264,51.579489 +0.427725,51.513376 +0.912807,51.778423 +0.132687,51.757833 +0.979428,51.931094 +0.982914,51.950963 +0.92834,51.918914 +0.561042,51.629271 +0.889128,51.887641 +0.483162,51.591284 +1.062451,51.939764 +0.560908,51.880381 +0.902035,51.886982 +0.711505,51.842426 +0.52235,51.612437 +0.281125,51.503756 +0.110671,51.75493 +0.665324,51.547266 +0.4955,51.559294 +0.589478,51.936016 +0.000783,51.686676 +0.244623,51.709831 +0.321478,51.575539 +0.451886,51.568434 +0.130436,51.765418 +0.568049,51.865953 +0.460352,51.593465 +0.638617,51.80464 +0.267014,51.482501 +0.296747,51.522984 +1.02332,51.812227 +0.828226,51.889886 +0.781183,51.538747 +0.196153,51.868171 +0.083602,51.642728 +0.019626,51.75082 +0.618368,51.765127 +0.013995,51.685128 +0.683427,51.553149 +1.248379,51.838636 +0.489663,51.725864 +0.634347,51.943707 +0.398545,51.915081 +0.441766,51.708515 +0.142664,51.748812 +0.35652,51.633259 +0.482339,51.591814 +0.500262,51.819194 +0.486425,51.717533 +0.1141,51.669772 +1.020884,51.809429 +0.410188,51.867181 +0.813555,51.902595 +0.500306,51.819723 +0.546697,51.567412 +-0.006249,51.687308 +0.266569,51.867762 +1.267516,51.935955 +0.560736,51.628711 +1.017727,51.831671 +0.294397,51.500899 +0.468687,51.73343 +0.703715,51.533535 +0.475573,51.733806 +0.278529,51.638477 +0.09814,51.672099 +0.479072,51.591749 +0.529492,51.786886 +0.665745,51.726182 +0.275604,51.497074 +0.468794,51.727951 +1.110394,51.773852 +0.922328,51.891507 +0.460633,51.527322 +0.368152,51.870014 +0.191691,51.873812 +0.894378,51.898772 +0.665281,51.726174 +0.109749,51.682871 +0.963137,51.857398 +0.133952,51.749618 +0.780418,51.879011 +0.656306,51.544746 +0.637253,51.792953 +0.175031,51.79889 +0.326179,51.951497 +0.976789,51.925513 +0.926647,51.909656 +0.264016,51.673811 +0.642577,51.567692 +0.502375,51.59227 +0.091616,51.766484 +0.324527,51.478838 +0.418872,51.641577 +0.484912,51.737719 +0.384525,51.761211 +0.09192,51.771802 +0.463663,51.71482 +1.216665,51.928704 +0.318627,51.61252 +1.094571,51.775889 +0.590335,51.774958 +0.31983,51.494687 +0.657415,51.544235 +0.540275,51.604145 +0.563137,51.619009 +0.447791,51.728138 +0.415547,51.742106 +0.720832,51.533049 +0.724272,51.535344 +1.177899,51.825399 +1.157788,51.788777 +0.291823,51.520815 +0.582412,51.867923 +1.101224,51.858225 +0.473818,51.753115 +0.344535,51.646332 +0.193588,51.703053 +0.401953,51.634604 +0.92274,51.891371 +0.424073,51.471732 +0.851681,51.93158 +0.455626,51.732156 +0.702247,51.556206 +0.214362,51.974417 +0.60279,51.591668 +0.79189,51.552038 +1.084698,51.9232 +0.904226,51.886253 +0.136647,51.739812 +0.315039,51.49793 +0.640718,51.566988 +0.671611,51.553886 +0.485738,51.563108 +0.219413,51.913974 +0.714476,51.550779 +0.677879,51.538526 +0.272355,51.485329 +0.809826,51.887117 +0.612844,51.842079 +0.522869,51.755768 +0.483375,51.588843 +1.020778,51.809369 +0.735053,51.854129 +0.214633,51.703368 +0.306205,51.480199 +1.287203,51.946487 +0.521895,51.761185 +0.831941,51.710942 +0.485591,51.79097 +0.298798,51.67488 +0.72027,51.809362 +0.560492,51.627448 +0.56762,51.770906 +0.381823,51.666319 +0.147706,51.783611 +0.675345,51.72984 +0.296368,51.499691 +0.732984,51.739646 +0.445692,51.571873 +0.002102,51.736237 +1.115252,51.800993 +0.736382,51.552357 +1.144858,51.898393 +0.055684,51.74024 +0.719767,51.836407 +0.903404,51.882739 +0.505354,51.595228 +0.302601,51.574427 +0.522761,51.720823 +0.398307,51.550935 +0.703307,51.582344 +0.633443,51.998531 +0.702539,51.566722 +0.522683,51.715519 +0.118797,51.70501 +0.569142,51.519896 +0.386349,51.756237 +0.434848,51.741132 +0.703531,51.582231 +0.756327,51.877132 +0.481278,51.726383 +0.864724,51.89859 +0.513878,51.56499 +1.198262,51.805724 +0.099686,51.671739 +1.152643,51.786136 +1.014873,51.899271 +0.438824,51.568122 +0.505242,51.696746 +0.216338,52.019746 +0.212138,51.870389 +0.364672,51.659111 +0.269014,51.478973 +0.49711,51.563928 +0.617386,51.574571 +0.443299,51.710632 +0.402617,51.685149 +1.08826,51.779652 +0.665542,51.547297 +0.030432,51.629217 +0.113384,51.619561 +0.615325,51.57512 +0.312357,51.617059 +0.36611,51.51228 +0.131507,51.677964 +0.813541,51.902605 +0.341069,51.955167 +0.689133,51.720091 +0.559676,51.585494 +0.502695,51.564717 +0.453557,51.730041 +0.674592,51.777899 +0.267974,51.491682 +0.176976,51.807954 +1.138858,51.834849 +0.714074,51.554215 +0.681226,51.556949 +0.928343,51.916935 +0.460909,51.761129 +1.261781,51.926715 +0.423788,51.723141 +0.193823,51.82059 +0.906183,51.878965 +0.672267,51.780012 +0.133322,51.693812 +0.285941,51.60308 +0.781103,51.538866 +0.282485,51.776394 +0.46946,51.647682 +0.240115,51.806894 +0.714836,51.541328 +0.53327,51.577155 +0.563622,51.547869 +0.380816,51.498285 +0.268457,51.498795 +0.955539,51.943263 +0.591001,51.606256 +-0.002581,51.703594 +0.219392,51.739384 +0.610713,51.781162 +0.368805,51.481999 +0.010459,51.679757 +0.269904,51.612483 +0.511469,51.750626 +0.651144,51.569837 +0.203022,51.647877 +0.059413,51.772233 +0.306298,51.876 +0.58612,51.858372 +0.13591,51.689143 +0.498599,51.586334 +0.246959,52.042096 +0.409847,51.836631 +0.315944,51.783204 +0.92607,51.871259 +0.487017,51.719086 +0.604908,51.924092 +0.76262,51.679038 +0.903824,51.92034 +0.054183,51.755688 +0.68055,51.73679 +0.670723,51.553753 +0.446547,51.642047 +0.817982,51.93777 +1.011811,51.872637 +0.210672,51.812631 +1.035879,51.849453 +0.525962,51.6798 +0.534925,51.664147 +0.891191,51.887411 +1.16971,51.795813 +0.603783,51.554998 +0.430613,51.621666 +0.934216,51.922257 +0.415998,51.638102 +0.56304,51.883374 +0.459101,51.696372 +1.090419,51.845963 +0.089373,51.689009 +0.469272,51.751592 +0.547074,51.897588 +0.887539,51.917701 +0.069696,51.630618 +0.536177,51.720705 +0.063715,51.622998 +0.271728,51.611117 +1.157877,51.887719 +0.126486,51.767414 +0.001893,51.694795 +1.227174,51.852127 +0.571014,51.771713 +0.803885,51.552849 +0.560946,51.628841 +1.133095,51.82483 +0.501154,51.740432 +0.783324,51.684961 +0.673793,51.729803 +0.733161,51.54074 +0.494159,51.576185 +0.473959,51.738741 +0.818877,51.795526 +0.638015,51.947186 +0.517644,51.702209 +0.588141,51.552151 +0.682572,51.655479 +0.184459,51.851384 +0.201324,51.979922 +0.493377,51.572973 +0.418838,51.518659 +0.880059,51.950342 +0.589837,51.881357 +1.220834,51.911969 +0.377883,51.494523 +0.381266,51.507188 +0.517085,51.600049 +0.713902,51.535332 +0.715714,51.553647 +1.032951,51.812392 +0.08914,51.75366 +1.15087,51.798964 +0.549829,51.567425 +0.439007,51.585834 +0.349233,51.505002 +0.825676,51.890487 +0.752145,51.917358 +0.483521,51.563982 +0.158784,51.793048 +0.323094,51.478408 +1.206536,51.813333 +0.692369,51.829771 +0.951606,51.880918 +0.56712,51.586168 +0.319779,51.479211 +1.103757,51.869913 +0.689066,51.674064 +0.356692,51.654416 +0.546442,51.654698 +0.084064,51.640813 +0.644267,51.570451 +0.561605,51.562807 +0.276233,51.484543 +0.52337,51.599051 +0.372407,51.681798 +0.343287,51.602777 +0.111852,51.776805 +0.773919,51.815437 +0.884226,51.860349 +0.631667,51.843197 +0.739735,51.806634 +0.231356,51.499678 +0.92023,51.894797 +0.381783,51.668865 +0.911163,51.817496 +0.315854,51.497536 +1.117838,51.801473 +1.025584,51.818518 +0.077081,51.761796 +0.713381,51.53699 +0.701072,51.547096 +0.882524,51.879835 +0.263986,51.622445 +0.28688,51.486603 +0.828697,51.887213 +0.575564,51.894504 +0.114178,51.681371 +0.896222,51.888564 +0.421867,51.572988 +0.549013,51.877663 +1.15432,51.787503 +1.253921,51.942736 +0.281512,51.482094 +0.053519,51.645794 +0.66265,51.672786 +0.876576,51.870664 +0.311284,51.710733 +0.69048,51.897138 +0.642762,51.785976 +0.413042,51.72419 +0.709544,51.549598 +0.050878,51.684634 +1.266901,51.848187 +0.066909,51.656089 +-0.006708,51.65283 +0.921946,51.910925 +0.467049,51.740586 +0.622638,51.714013 +0.794652,51.828769 +0.434645,51.701792 +0.258758,51.681503 +0.214801,51.954383 +0.911345,51.888227 +0.700496,51.54004 +0.705117,51.540392 +0.495191,51.88415 +0.08405,51.640822 +0.364803,51.469238 +1.152157,51.794954 +0.350149,52.014643 +0.692005,51.550128 +0.843858,51.796057 +0.464836,51.574683 +0.680163,51.735638 +0.430729,51.46609 +0.313531,51.498598 +0.091606,51.774416 +0.585955,51.580232 +0.326338,51.576324 +0.073114,51.653606 +1.285286,51.93859 +0.695059,51.746198 +0.918114,51.892655 +0.271079,51.613171 +0.270931,51.867264 +0.453196,51.562489 +0.187473,51.844961 +0.896274,51.892547 +0.173836,51.795441 +0.809417,51.843499 +0.905408,51.88992 +0.654935,51.570246 +0.087767,51.642762 +1.135359,51.7822 +0.477818,51.728786 +0.314874,51.625913 +0.621719,52.064378 +0.752824,51.862843 +0.460186,51.672356 +0.746491,51.815389 +0.517628,51.702183 +0.10413,51.775038 +0.453122,51.726291 +0.003634,51.680809 +0.313387,51.64695 +0.14415,51.687464 +0.552744,51.863499 +0.107607,51.782466 +1.284662,51.938418 +0.582591,51.773896 +0.709795,51.571771 +0.528314,51.760391 +0.419471,51.520256 +0.410183,51.692216 +0.69332,51.544063 +0.505939,51.720095 +0.980594,51.869674 +1.147313,51.787682 +0.075146,51.737281 +0.339272,51.643487 +0.098547,51.752818 +0.744679,51.777452 +0.757863,51.538768 +0.1077,51.696694 +0.369608,51.502766 +0.35962,51.861876 +0.397754,51.841518 +0.618151,51.642328 +0.614982,51.640007 +0.23522,51.914277 +0.625044,51.617514 +0.474313,51.74654 +0.59255,51.55763 +0.184569,51.880023 +0.480628,51.585861 +0.483752,51.585687 +0.552364,51.879865 +0.672049,51.745896 +0.47739,51.518354 +0.560871,51.628789 +0.33722,51.618213 +0.338977,51.631577 +0.808129,51.940515 +0.119516,51.621581 +0.481449,51.625009 +0.826405,51.654891 +0.48372,51.566046 +0.680918,51.561516 +0.304131,51.622635 +0.609953,51.588424 +1.14846,51.794981 +0.274708,51.487469 +1.260266,51.934501 +0.264074,51.887206 +0.611237,51.599476 +0.419656,51.693747 +0.696096,51.928279 +0.194606,51.724688 +0.344331,51.627801 +0.924253,51.924942 +0.488039,51.775639 +0.699363,51.927943 +0.551141,51.966763 +0.462887,51.738102 +0.214454,51.983965 +0.438978,51.526255 +0.336511,51.496605 +0.476446,51.730712 +0.655279,51.656567 +0.598681,51.580634 +0.269316,51.89117 +0.139939,51.69665 +0.599143,51.69966 +0.341171,51.866291 +0.288813,51.494128 +0.575658,51.59903 +0.321805,51.62413 +1.015074,51.848441 +0.956478,51.943383 +0.599357,51.578065 +0.691677,51.55019 +0.484746,51.56687 +0.296261,51.492418 +0.266509,51.481602 +0.100799,51.75294 +0.191791,51.830745 +0.533967,51.869516 +0.189715,51.824453 +0.918086,51.892664 +0.107523,51.753898 +0.598692,51.777102 +0.681921,51.559434 +0.669116,51.545273 +0.937581,51.899617 +0.153237,51.94798 +0.626521,51.846586 +0.297022,51.477177 +0.504916,51.58387 +0.934531,51.920621 +0.273042,51.614293 +0.619773,51.643128 +0.701582,51.556428 +0.550837,51.563779 +0.108698,51.781916 +0.89379,51.891205 +0.928094,51.878484 +0.484996,51.574095 +0.148697,51.636815 +0.36975,51.580716 +0.838163,51.892579 +0.043018,51.625393 +0.212733,51.971507 +0.866484,51.868698 +0.266482,51.900685 +0.484005,51.753934 +0.716031,51.553882 +0.137849,51.741957 +0.300724,51.965396 +0.267817,51.493151 +1.129645,51.803957 +0.293751,51.574087 +0.269176,51.487756 +0.276785,51.663376 +0.331451,51.631349 +0.356005,51.579527 +0.023542,51.69062 +0.58985,51.88133 +0.672493,51.742864 +0.307261,51.671495 +0.503478,51.563486 +0.053438,51.685254 +0.293469,51.490746 +0.482093,51.726726 +0.067192,51.648 +0.034465,51.678328 +0.0039,51.673071 +0.489429,51.574397 +0.917815,51.891403 +0.588943,51.578206 +0.407747,51.623388 +0.445383,51.728323 +0.579079,51.716866 +0.519541,51.695721 +0.834169,51.887324 +0.465129,51.551285 +0.329961,51.613851 +0.234146,51.687864 +0.048544,51.73193 +0.317598,51.647613 +0.457363,51.557617 +0.504878,51.563744 +0.701201,51.556572 +0.905743,51.860872 +0.456951,51.743766 +1.15471,51.788725 +0.244596,51.70958 +0.481663,51.726276 +0.290682,51.490323 +0.782442,51.879773 +0.134818,51.744647 +0.106027,51.656905 +0.50057,51.724859 +0.494844,51.734478 +0.704143,51.872912 +0.965419,51.91678 +1.270714,51.848891 +0.755294,51.54399 +0.593854,51.974778 +0.313854,51.637399 +1.166855,51.79482 +0.744462,51.549254 +0.463091,51.577903 +0.801701,51.88499 +0.863811,51.893378 +0.787379,51.5521 +0.015186,51.744161 +0.777256,51.529451 +0.544278,51.764642 +1.063292,51.854929 +0.834212,51.88708 +0.680876,51.545589 +0.418609,51.518133 +0.114302,51.701116 +0.11663,51.668503 +0.29099,51.490713 +0.573963,51.526904 +0.045251,51.683032 +0.495587,51.735352 +0.916492,51.914963 +0.409665,51.632045 +0.499773,51.956211 +0.451408,51.993046 +0.692923,51.880391 +0.49703,51.737885 +0.916277,51.882475 +0.10188,51.628832 +0.808131,51.940542 +0.451288,51.668828 +0.972065,51.92557 +0.678396,51.822518 +0.633662,51.76144 +0.086093,51.649122 +0.266665,51.85812 +0.498158,51.750972 +0.071975,51.644804 +0.918846,51.892511 +0.103972,51.763233 +0.36563,51.503017 +0.721474,51.547919 +0.048872,51.624472 +1.01125,51.89206 +0.318664,51.501518 +0.45714,51.733366 +0.675403,51.583083 +0.126223,51.671387 +1.048221,51.948794 +0.641778,51.943621 +0.711339,51.536849 +0.47242,51.737083 +0.639659,51.547954 +0.519652,51.695368 +0.639907,51.790213 +0.711323,51.536822 +0.241239,51.826045 +0.304553,51.622411 +0.911343,51.817806 +1.116918,51.932217 +0.239119,52.022381 +-0.007126,51.687116 +0.665888,51.816903 +1.163816,51.883701 +0.474067,51.694826 +0.723655,51.537571 +0.103556,51.77485 +0.891395,51.916383 +0.45253,51.970119 +0.582477,51.994183 +0.589944,51.716474 +0.438952,51.566212 +0.905966,51.897677 +0.54158,51.719446 +0.418037,51.517138 +0.483994,51.73683 +0.033532,51.639082 +0.92095,51.892 +0.492623,52.05602 +0.196505,51.873021 +0.091179,51.768003 +0.560724,51.522976 +0.50275,51.745965 +0.093418,51.765346 +0.450549,51.722361 +0.290565,51.990836 +0.266633,51.479756 +0.458525,51.530739 +0.922977,51.875536 +0.346555,51.503643 +1.090853,51.77283 +0.053228,51.61249 +1.158924,51.789052 +0.492831,51.566672 +1.055235,51.871481 +0.498994,51.718616 +0.517451,51.702906 +1.142416,51.797976 +0.326394,51.481553 +0.91423,51.842072 +0.46278,51.574294 +0.625069,51.714741 +0.956308,51.943891 +0.273371,51.485786 +1.121354,51.777824 +0.091301,51.758109 +0.087706,51.61217 +1.262507,51.934709 +0.2393,52.01986 +0.679778,51.545561 +0.191253,52.028965 +0.573855,51.869451 +1.120734,51.775565 +0.126917,51.759934 +0.48445,51.565932 +0.313963,51.616254 +0.465491,51.550774 +0.245401,51.703908 +1.151544,51.811124 +0.128011,51.678684 +0.913618,51.873043 +0.274559,51.510233 +0.79066,51.535473 +0.71616,51.574196 +0.584301,51.581609 +0.493702,51.573371 +0.46017,51.672338 +0.662236,51.566034 +0.936037,51.897119 +0.532082,51.589789 +0.438381,51.525872 +0.272897,51.614575 +0.183679,51.882045 +0.699397,51.564843 +0.185435,51.847544 +0.244919,51.707325 +0.58011,51.520096 +0.147998,51.670649 +0.576492,51.738093 +0.362097,51.719947 +0.326131,51.497602 +0.337755,51.619632 +0.863362,51.892715 +0.89463,51.901113 +0.364473,51.468705 +0.7225,51.543353 +0.0522,51.644432 +0.469276,51.732806 +0.614234,51.782621 +0.715613,51.843851 +0.744572,51.538144 +0.122483,51.777225 +0.680575,51.575059 +0.512072,51.59137 +0.066197,51.662046 +0.395401,51.677527 +0.369749,51.486036 +0.068201,51.770109 +0.168714,51.661087 +0.486355,51.755558 +0.678251,51.967177 +0.043965,51.682443 +0.514939,51.706161 +0.655887,51.541526 +0.559119,51.586621 +0.864584,51.893422 +0.522661,51.56464 +1.156338,51.797495 +0.696755,51.541664 +0.131353,51.783351 +0.296216,51.492373 +0.086152,51.634661 +0.718118,51.654598 +0.782706,51.681496 +0.477702,51.731693 +0.697868,51.557791 +0.723575,51.532608 +0.688577,51.556331 +0.315856,51.498417 +0.265272,51.487445 +0.130714,51.678015 +0.160126,51.666569 +0.429255,51.466804 +0.830029,51.890589 +0.617827,51.645231 +0.267086,51.482778 +1.033465,51.881551 +0.132894,51.692705 +0.635893,51.812894 +0.913569,51.885312 +0.4646,51.692921 +0.583959,51.551416 +1.127452,51.803718 +0.672806,52.071539 +0.697137,51.541529 +0.706733,51.541866 +0.110926,51.770941 +1.157977,51.826125 +0.641249,51.800768 +0.161789,51.665657 +0.363659,51.970965 +0.273198,51.486068 +0.122699,51.764227 +0.732934,51.548975 +0.601574,51.522616 +0.016101,51.717546 +0.913581,51.884601 +0.210224,51.721895 +0.561003,51.628822 +0.282293,51.485028 +0.535804,51.78568 +0.376359,51.722725 +0.592711,51.520375 +0.524499,51.610565 +1.043763,51.851794 +0.02508,51.689416 +0.651836,51.799001 +0.326849,51.866009 +0.36679,51.549857 +0.67946,51.546296 +0.063099,51.607191 +0.655392,51.691369 +0.463456,51.70701 +0.802558,51.885222 +0.353131,51.653489 +0.694132,51.539737 +0.475818,51.791779 +1.115003,51.774881 +1.278463,51.857399 +0.528669,51.757919 +0.598806,51.580812 +0.71068,51.541541 +0.718634,51.541887 +0.350292,51.578751 +0.001434,51.708004 +0.120682,51.675067 +0.60418,51.521039 +0.58615,51.915837 +0.323305,51.486525 +0.433014,51.776549 +0.44612,51.518282 +0.161293,51.768497 +0.688562,51.556323 +0.369106,51.59385 +0.730113,51.540424 +0.429476,51.741711 +0.54787,51.655152 +0.641032,51.732019 +0.195409,52.005175 +0.252648,51.835107 +0.694696,51.655354 +0.817862,51.852471 +0.128588,51.763096 +0.554848,51.863192 +0.244587,51.708807 +0.431714,51.587946 +0.473982,51.740216 +0.49997,51.560566 +0.602072,51.575316 +-0.002327,51.680776 +0.998178,51.912289 +0.58865,51.716386 +0.499561,51.718379 +0.306227,51.672208 +0.07343,51.653249 +0.422999,51.572308 +0.692153,51.891083 +0.526797,51.618897 +0.614138,51.782461 +0.392744,51.583181 +0.4083,51.587989 +0.452974,51.817114 +0.896796,51.913076 +0.602762,51.590922 +0.10249,51.686688 +0.923518,51.902009 +0.366185,51.458364 +0.064331,51.626072 +0.463921,51.773342 +0.462609,51.736992 +0.962718,51.866267 +0.355643,51.498803 +0.107289,51.782804 +0.895581,51.896908 +0.66585,51.562921 +0.863957,51.893393 +0.429505,51.73011 +0.493483,51.723706 +0.375023,51.491055 +0.550016,51.747403 +0.319686,51.590242 +0.20948,51.643331 +0.523473,51.610803 +0.471162,51.729151 +0.708091,51.53776 +0.752419,51.546531 +0.324855,51.629529 +0.576965,51.77285 +0.711253,51.550206 +1.150923,51.812625 +0.396505,51.844241 +0.680046,51.811689 +0.68045,51.735353 +0.621316,51.848204 +0.136825,51.744197 +0.146443,52.046686 +0.391485,51.785405 +0.422412,51.581079 +0.456257,51.739518 +0.720632,51.554585 +0.824595,51.894111 +0.62589,51.549082 +0.347383,51.479111 +0.691699,51.53883 +0.621193,51.723821 +0.114556,51.776658 +0.731471,51.945243 +0.620365,51.578686 +0.833003,51.93508 +0.184284,51.830066 +0.203937,51.871119 +0.640064,51.799859 +0.464178,51.582521 +0.454232,51.749983 +0.275411,51.510253 +0.201532,51.870939 +0.514224,51.611514 +0.135445,51.771757 +0.589636,51.881398 +0.263142,51.482243 +0.106845,51.683895 +0.172884,51.656055 +0.230736,51.824653 +0.297982,51.574418 +0.908498,51.86575 +0.531945,51.715194 +0.051964,51.644328 +0.736917,51.548288 +0.444317,51.664261 +0.366369,51.474719 +0.463132,51.715182 +0.131183,51.695398 +0.402564,51.483048 +0.372625,51.540566 +0.308763,51.655233 +0.952583,51.939695 +0.474947,51.5658 +0.505056,51.563569 +0.910754,51.832076 +0.462747,51.574214 +0.663211,51.81923 +0.136473,51.676219 +0.52594,51.866784 +0.234481,51.490814 +0.593031,51.77622 +0.136228,51.74258 +0.262279,51.983631 +0.521192,51.756371 +0.888168,51.886046 +0.193584,51.904333 +0.904005,51.920893 +0.13102,51.688854 +0.200273,51.870747 +0.592813,51.520157 +0.918108,51.89458 +0.56347,51.548259 +0.498989,52.054563 +0.291796,51.779621 +0.344346,51.645472 +0.498183,51.739874 +1.225698,51.933341 +0.519812,51.746148 +0.02071,51.677045 +0.450682,51.748906 +0.918733,51.884716 +0.268695,51.48067 +0.204767,51.631702 +0.194831,52.002002 +0.000717,51.677954 +0.127931,51.779024 +1.084318,51.800919 +1.152344,51.795147 +0.94935,51.85224 +0.12653,51.767099 +0.842278,51.891454 +0.365854,51.48955 +0.481543,51.726998 +0.296069,51.493177 +0.561672,51.605056 +1.167373,51.802406 +0.925529,51.884403 +0.843347,51.891356 +0.901919,51.891949 +0.260065,51.881735 +1.16088,51.790897 +0.2335,51.487551 +0.715511,51.547814 +0.571298,51.525919 +0.249188,51.875757 +0.597775,51.717713 +0.742471,51.857896 +1.054597,51.88328 +0.581828,51.561662 +0.471818,51.581784 +0.753005,51.876976 +0.677519,51.70611 +1.159145,51.802798 +0.031853,51.752111 +-0.003257,51.661287 +0.2984,51.477357 +0.249869,51.490583 +0.470889,51.597128 +0.587004,51.530331 +0.158285,51.638177 +0.080867,51.773536 +0.705901,51.680575 +0.555287,51.883759 +0.692312,51.880369 +1.17941,51.802971 +0.462005,51.725341 +0.581783,51.517307 +0.894114,51.915462 +0.897213,51.871443 +0.459775,51.549104 +0.585576,51.919518 +0.569646,52.002881 +0.269359,51.666973 +0.485586,51.570638 +0.496862,51.719857 +0.310291,51.623296 +0.310268,51.798378 +0.178978,51.721571 +1.265101,51.934961 +0.323527,51.683252 +0.473775,51.75764 +0.579834,51.866289 +0.90797,51.828754 +0.140282,52.020901 +0.5096,51.566179 +0.741559,51.876326 +0.693456,51.536847 +0.463402,51.584722 +0.708295,51.533187 +0.051416,51.685011 +0.90123,51.88666 +1.153201,51.789143 +0.357564,51.637509 +0.670228,51.717977 +0.45596,51.878923 +0.92509,51.910082 +0.62945,51.80141 +1.149397,51.791574 +0.709042,51.540176 +0.528574,51.716004 +0.242276,52.026035 +0.297132,51.510881 +0.110362,51.682366 +0.099951,51.651213 +0.49968,51.757019 +0.681872,51.728306 +0.704524,51.54037 +0.169241,51.785823 +0.630818,51.548225 +0.298569,51.619489 +1.077167,51.931969 +0.492018,51.573452 +0.170519,51.782238 +0.64267,51.797795 +0.635247,51.602374 +0.504316,51.563243 +0.450966,51.722317 +1.149305,51.802532 +0.363577,51.465845 +0.449038,51.721997 +0.571728,51.898347 +0.41292,51.688436 +0.308076,51.655085 +0.505719,51.563042 +0.480274,51.733437 +0.343975,51.877188 +1.239971,51.837402 +0.453424,51.99447 +0.152472,51.669228 +0.896709,51.901332 +0.544535,51.718951 +0.2975,51.963274 +0.577407,51.842133 +0.418943,51.51845 +0.211109,51.64205 +0.118277,51.65172 +0.537775,51.878832 +0.320157,51.478134 +0.895032,51.900357 +0.187299,51.626948 +0.59266,51.521267 +0.517824,51.702323 +0.504438,51.563097 +0.681547,51.717179 +0.118977,51.672004 +0.532991,51.761612 +0.897586,51.903217 +0.141113,51.725504 +1.073558,51.81909 +0.582472,51.867967 +0.660891,51.718755 +0.613199,51.619802 +0.93642,51.89362 +0.547649,51.876658 +0.292945,51.492357 +0.985961,51.920154 +0.260899,51.694861 +0.542191,51.589319 +0.407814,51.875233 +1.14869,51.795371 +0.09836,51.711888 +0.354271,51.590938 +0.328225,51.630451 +0.592756,51.977455 +1.002213,51.855938 +0.065779,51.607702 +0.657478,51.560404 +0.802982,51.66263 +0.06794,51.76756 +0.814247,51.653754 +0.067919,51.752507 +0.918042,51.89513 +0.425527,51.628975 +0.469325,51.733173 +0.687485,51.881549 +0.836022,51.75833 +0.750331,51.538459 +0.723684,51.536608 +0.295811,51.492624 +0.424501,51.614059 +0.815522,51.653111 +0.459862,51.721609 +0.299069,51.613391 +0.14273,51.712543 +0.377864,51.858586 +0.285829,51.513683 +0.672357,51.717991 +0.299817,51.582179 +0.519346,51.696372 +0.495824,51.609973 +0.097737,51.767841 +0.679473,51.743811 +0.517627,51.702686 +0.634624,51.778451 +0.433219,51.645786 +0.528704,51.618389 +0.495705,51.733542 +0.192753,52.026545 +0.619104,51.764319 +0.69879,51.831324 +0.100698,51.671415 +0.290292,51.615208 +0.815459,51.631555 +0.921523,51.795501 +1.10031,51.862674 +1.162053,51.794176 +0.73605,51.551861 +0.514239,51.714927 +0.46506,51.55081 +0.29299,51.508183 +0.68648,51.881752 +0.131705,51.684957 +0.505972,51.744241 +0.480756,51.727168 +1.118677,51.849533 +0.134955,51.745382 +0.894235,51.860589 +0.111001,51.69766 +0.079941,51.755586 +0.040159,51.771813 +0.930333,51.885417 +0.428635,51.519635 +0.64439,51.793224 +0.10049,51.738782 +0.112344,51.774926 +0.103969,51.775004 +1.187978,51.80514 +0.891456,51.897639 +0.559491,51.810131 +0.506178,51.565605 +0.94013,51.919942 +0.501075,51.789329 +0.106499,51.723171 +0.877493,51.930268 +0.376024,51.861429 +0.137722,51.67572 +0.600557,51.588975 +0.59276,51.594534 +0.455828,51.530993 +0.105472,51.765886 +0.06657,51.76994 +0.727293,51.543422 +0.448478,51.568658 +1.000887,51.896436 +0.910883,51.816981 +0.893658,51.887341 +1.272825,51.935528 +0.034294,51.730001 +0.196063,52.006934 +0.197566,52.016501 +0.169369,51.786378 +1.142351,51.804544 +0.541652,51.868217 +0.285669,51.483703 +0.453325,51.879617 +0.150014,51.670163 +0.500635,51.747817 +0.895633,51.907429 +0.082526,51.62585 +0.513566,51.712972 +1.161949,51.804926 +0.422921,51.55917 +0.925074,51.910064 +0.711203,51.553967 +0.737784,51.541595 +0.681344,51.56165 +0.654174,51.808436 +1.067013,51.869483 +0.302347,51.617634 +0.964113,51.869362 +0.37486,51.862495 +0.373539,51.763961 +0.420043,51.619601 +0.470924,51.752933 +0.468272,51.750534 +0.644449,51.944011 +0.81233,51.86228 +0.780389,51.534242 +0.764854,51.916134 +0.671794,51.5388 +1.123244,51.842298 +0.611843,51.94884 +0.109131,51.776288 +0.578328,51.584222 +0.353777,51.501178 +0.281768,51.869302 +0.195797,51.651519 +0.439465,51.750731 +0.696646,51.707408 +1.065028,51.8559 +0.132931,51.788816 +0.269522,51.494998 +0.587657,51.568773 +0.683641,51.739093 +0.148859,51.636884 +0.48792,51.780057 +0.445482,51.580322 +0.199787,51.897688 +0.994822,51.881103 +0.70032,51.542427 +0.420119,51.689403 +0.363548,51.461106 +0.515279,51.939397 +0.483909,51.672135 +0.519111,51.616284 +1.123538,51.789081 +0.927074,51.781549 +0.348575,51.502866 +0.495766,51.570989 +0.461878,51.725398 +0.895852,51.894797 +0.804842,51.63493 +0.619979,51.550383 +0.148597,51.785591 +0.73474,51.945158 +0.246403,51.696686 +0.626742,51.577123 +1.101752,51.868221 +0.23062,51.499953 +0.567361,51.880906 +0.115142,51.680949 +0.37626,51.872521 +0.918747,51.775883 +0.523241,51.731785 +1.054638,51.883252 +0.582283,51.867701 +0.495779,51.919668 +0.896518,51.908765 +1.160157,51.826372 +0.530852,51.613117 +1.148427,51.794928 +0.648125,51.540731 +0.23365,51.487377 +0.451777,51.570981 +0.842168,51.891331 +0.289089,51.520346 +0.419684,51.513938 +0.683834,51.656772 +0.611373,51.590263 +0.543366,51.883666 +0.539562,51.605087 +0.477842,51.715457 +0.001328,51.690839 +0.267632,51.508002 +0.914646,51.896113 +0.081821,51.645799 +0.505751,51.747052 +0.218887,52.002343 +0.368725,51.651997 +0.272057,51.49788 +0.239823,51.494885 +0.177419,51.886612 +0.561068,51.521143 +0.506389,51.564989 +0.894268,51.886895 +0.141105,51.77098 +0.551414,51.859247 +0.443685,51.529601 +0.296451,51.605879 +0.707696,51.535242 +0.568052,51.588603 +0.758726,51.874774 +0.114978,51.690169 +0.560948,51.566526 +0.268114,51.487821 +0.265914,51.648082 +0.473492,51.56477 +0.46565,51.658986 +0.066909,51.688156 +0.188729,51.859479 +0.675554,52.069669 +0.627495,51.791004 +0.644997,51.570849 +1.134731,51.792794 +0.556004,51.559682 +0.056787,51.642949 +0.676601,51.754516 +0.55531,51.571488 +0.056859,51.642956 +0.780333,51.534037 +1.15363,51.80712 +0.256368,51.874945 +0.470652,51.552041 +0.066488,51.640467 +0.506245,51.711491 +0.486287,51.75537 +0.326153,51.479364 +0.130762,51.7665 +0.093062,51.765487 +-0.745243,52.031494 +-1.326378,51.606167 +-1.185566,51.876551 +-0.535205,51.489007 +-1.123959,51.603878 +-1.105253,51.42251 +-0.740152,52.012441 +-0.772084,51.998311 +-0.787962,51.352425 +-0.645365,51.52397 +-0.717744,51.623371 +-0.615139,51.522503 +-0.623152,51.483823 +-1.24405,51.749905 +-0.734651,51.527027 +-1.059036,51.724105 +-1.231368,51.796398 +-1.317051,51.406554 +-0.762071,51.423758 +-0.730841,52.004698 +-0.988826,51.447388 +-0.741869,51.511467 +-1.6234,51.790151 +-0.977118,51.452304 +-0.772773,51.632842 +-1.223595,51.725442 +-1.670388,51.676707 +-0.553967,51.500139 +-1.243769,51.750254 +-0.774082,51.811321 +-0.53881,51.49023 +-1.377394,52.049484 +-0.938652,51.449696 +-0.653652,51.520109 +-0.762487,51.631709 +-0.772401,51.634304 +-1.61934,51.626256 +-0.583692,51.508882 +-0.778434,51.616294 +-1.610907,51.752447 +-0.604221,51.526483 +-1.337764,52.123091 +-0.997162,51.738339 +-0.685409,51.890478 +-1.210788,51.696791 +-0.511727,51.561521 +-1.356991,52.045562 +-1.196738,51.762233 +-0.905047,51.438336 +-1.274225,51.40546 +-0.732222,52.01615 +-1.212603,51.956162 +-0.722476,51.489182 +-1.267931,51.783432 +-0.835093,51.825986 +-0.799457,51.807366 +-0.760171,51.808163 +-0.674096,51.67609 +-0.740871,51.458808 +-0.687833,52.1844 +-0.8098,51.642997 +-0.872757,51.519748 +-0.964429,51.450817 +-1.417889,51.612581 +-0.954812,51.453528 +-1.539932,51.943977 +-1.354309,52.057649 +-0.596906,51.507449 +-1.066672,51.439114 +-1.480682,51.997766 +-1.101059,51.708312 +-1.330358,51.41582 +-0.957439,51.446852 +-0.816109,51.819511 +-0.771983,51.387157 +-1.318138,51.955076 +-0.715627,51.518143 +-0.525394,51.560479 +-1.043264,51.4577 +-0.861458,51.449143 +-0.614269,51.704803 +-1.213778,51.734673 +-1.272176,51.582367 +-0.629471,51.479599 +-0.933356,51.862964 +-1.304438,51.77655 +-0.966734,51.751077 +-0.76139,51.953522 +-0.801486,51.65632 +-1.363272,51.374524 +-1.249864,51.733866 +-0.983944,51.778795 +-0.833609,51.808186 +-0.829755,51.723934 +-1.027527,51.446403 +-1.217121,51.758262 +-1.210432,51.72976 +-0.690625,52.014418 +-1.492038,51.775128 +-1.361533,52.03995 +-0.877443,51.428724 +-1.304766,51.620068 +-0.930018,51.457054 +-0.755264,52.090051 +-0.949507,51.415616 +-0.822712,51.448823 +-0.731243,52.025517 +-0.796363,51.392949 +-0.982928,51.453155 +-0.601814,51.487869 +-0.758486,51.807714 +-0.773127,51.850244 +-0.931437,51.440675 +-0.732725,52.015886 +-1.025276,51.959319 +-0.596174,51.508295 +-1.196564,51.762241 +-0.639082,51.520553 +-0.722014,51.891528 +-0.588235,51.498479 +-1.31552,51.750109 +-0.723575,51.522033 +-1.277085,51.67589 +-1.27637,51.673548 +-0.988422,51.389423 +-0.979597,51.412096 +-1.240022,51.736168 +-0.790346,51.816093 +-0.615619,51.524271 +-0.522516,51.48678 +-1.300861,51.815695 +-0.612352,51.508433 +-0.741126,51.394014 +-1.071998,51.534774 +-1.230426,51.770812 +-0.888325,51.425464 +-0.977632,51.413787 +-1.257759,51.595557 +-0.777152,51.413774 +-0.975871,51.456564 +-1.542909,51.726505 +-0.798082,52.048453 +-1.304255,51.471902 +-1.038344,51.452804 +-0.693049,51.47814 +-0.812448,51.827423 +-0.991452,51.458821 +-0.929105,51.444412 +-0.552552,51.588864 +-1.215339,51.729856 +-0.757692,52.061467 +-0.766183,51.61746 +-1.294811,51.787831 +-1.077748,51.988774 +-1.219999,51.751852 +-1.013979,51.505545 +-0.892762,51.445423 +-1.155479,51.900714 +-0.724244,51.633683 +-0.765547,51.606825 +-0.556718,51.501989 +-0.642701,51.520001 +-1.232509,51.741091 +-0.96018,51.424982 +-0.723923,51.634848 +-1.25575,51.605426 +-0.716661,51.97633 +-1.357879,51.475472 +-1.469383,51.480336 +-0.596043,51.508347 +-1.590979,51.841651 +-0.980497,51.455004 +-0.751392,52.048858 +-1.282778,51.66794 +-1.135809,51.891131 +-0.560731,51.475664 +-0.79915,51.413875 +-0.813541,51.817292 +-0.730165,51.645194 +-0.733386,52.062638 +-0.54402,51.587535 +-0.517329,51.485941 +-0.696959,52.044196 +-0.746437,51.401652 +-0.533542,51.587468 +-0.952879,51.925916 +-0.713354,52.03739 +-1.255441,51.723121 +-0.687943,51.602279 +-0.933372,51.86291 +-1.354547,51.599276 +-1.367602,51.82643 +-0.75438,51.524063 +-1.238242,51.915907 +-1.129508,51.808051 +-0.758121,52.053892 +-0.733534,51.662269 +-0.557616,51.565718 +-1.248761,51.752354 +-0.940895,51.418047 +-0.71429,52.020011 +-0.715175,51.523461 +-0.535297,51.580934 +-1.25681,51.725324 +-0.850665,52.055928 +-0.804573,51.796556 +-0.908544,51.459455 +-0.817023,51.815627 +-0.967628,51.451277 +-0.693005,51.478148 +-0.61377,51.516812 +-0.896315,51.449036 +-0.679723,51.527689 +-0.70077,51.992196 +-1.531539,51.961998 +-1.270001,51.777358 +-1.287475,51.82376 +-1.283852,51.607147 +-0.804294,52.034247 +-0.538345,51.492625 +-0.768437,51.636097 +-0.951208,51.453163 +-1.389676,51.451355 +-1.211804,51.723295 +-0.973103,51.41506 +-1.351499,51.413619 +-1.318361,51.400645 +-0.893121,51.657632 +-0.672393,51.572512 +-1.161948,51.460191 +-1.196511,51.76278 +-0.814881,51.398884 +-1.518735,51.410189 +-1.345609,52.053196 +-0.610435,51.522654 +-1.324775,51.752132 +-1.187837,51.514053 +-0.61513,51.519463 +-1.360991,52.012471 +-0.998696,51.454702 +-1.00343,51.459391 +-0.754092,52.042997 +-1.671085,51.804176 +-0.938582,51.85135 +-1.266307,51.760188 +-1.241506,51.735719 +-0.874501,51.895387 +-0.718715,51.382289 +-1.00265,51.455518 +-0.669592,51.753278 +-1.088796,51.764027 +-0.93278,51.478705 +-1.198636,51.867785 +-0.68723,51.522306 +-0.779099,51.421635 +-0.498386,51.561863 +-0.547166,51.503777 +-1.320969,51.539922 +-1.255024,51.406832 +-0.995579,51.454433 +-0.528747,51.482929 +-1.269109,51.734734 +-1.319453,51.3929 +-0.578992,51.57471 +-1.472194,51.85106 +-0.648987,51.599329 +-0.990156,51.458199 +-1.217048,51.857146 +-0.616802,51.529455 +-1.134926,51.452046 +-0.96031,51.486424 +-0.971385,51.796947 +-0.606106,51.511488 +-0.72232,52.001064 +-1.380503,51.774458 +-0.617199,51.529199 +-0.746787,52.082085 +-0.593282,51.513772 +-1.269956,51.786421 +-0.779642,51.57552 +-0.956288,51.448128 +-0.564766,51.500811 +-0.717978,51.995478 +-0.709993,51.64759 +-1.297684,51.752216 +-0.852333,51.441186 +-1.255179,51.849122 +-0.744589,51.511613 +-0.692575,51.602897 +-0.810129,51.814659 +-0.810321,51.511965 +-0.962756,51.94787 +-1.318418,51.621856 +-0.752793,51.409507 +-0.971961,51.736485 +-0.869318,51.502622 +-0.716883,51.583186 +-0.756216,52.109868 +-0.645577,51.524135 +-0.859897,51.626042 +-1.201054,51.867361 +-0.601112,51.506114 +-0.776556,51.743497 +-0.752137,52.049324 +-1.375488,52.014635 +-1.271135,51.608615 +-0.796097,51.411308 +-1.358212,52.039761 +-0.950762,51.453123 +-0.791195,51.801725 +-1.202321,51.95826 +-0.619279,51.49714 +-1.312424,52.073587 +-0.734329,51.745253 +-0.498556,51.51989 +-0.753913,51.62456 +-0.542333,51.496766 +-1.346528,51.443561 +-0.978429,51.456092 +-0.977685,51.464925 +-0.885333,51.422522 +-1.218368,51.928409 +-0.744382,52.04142 +-1.28214,51.66898 +-0.788915,51.77042 +-0.7247,51.627232 +-1.182398,51.762755 +-1.344573,51.842524 +-0.758532,52.025358 +-0.641434,51.577121 +-0.750124,51.997577 +-0.940055,51.450644 +-1.274203,51.801795 +-0.618606,51.514145 +-0.778823,52.04563 +-0.61536,51.524259 +-0.844429,51.415113 +-1.170419,51.886552 +-1.004616,51.644846 +-1.239348,51.606184 +-1.304019,51.668922 +-0.778598,51.570869 +-0.744731,52.041963 +-0.960588,51.769518 +-1.197486,51.737171 +-1.526405,51.871817 +-0.819964,51.43707 +-0.657175,51.559597 +-0.959997,51.451425 +-1.234573,51.73811 +-1.306711,51.466647 +-1.393431,51.945157 +-0.535926,51.574387 +-0.726214,52.036324 +-0.977283,51.465541 +-0.666844,51.717199 +-0.523678,51.540424 +-0.603117,51.511219 +-1.249038,51.403593 +-1.00206,51.458157 +-1.201932,51.729783 +-1.311026,51.45537 +-1.316311,51.445564 +-0.772266,51.387322 +-0.758838,51.504311 +-1.224234,51.813299 +-1.58514,51.919456 +-0.749892,52.013237 +-0.735088,51.630833 +-1.294617,51.822608 +-0.628537,51.393066 +-1.233911,51.721553 +-0.849056,51.645115 +-0.729772,52.025492 +-0.735945,51.494337 +-0.747637,52.063725 +-0.617129,51.503436 +-0.489849,51.560864 +-0.716219,51.523256 +-0.727671,51.622759 +-0.77901,52.067642 +-1.311411,51.667788 +-0.535205,51.489025 +-0.912255,51.446226 +-0.706765,52.076771 +-1.265785,51.611765 +-0.593504,51.517327 +-0.712971,51.797478 +-1.331017,52.053707 +-0.970234,51.41348 +-1.024458,51.451997 +-1.334202,52.062195 +-1.512353,51.780941 +-0.716528,52.042639 +-0.836136,51.40817 +-0.975918,51.444156 +-0.528469,51.5555 +-0.787919,51.539926 +-0.71193,51.502069 +-1.378067,52.120739 +-1.234238,51.726177 +-1.51588,51.775129 +-0.701861,52.054167 +-1.299616,51.39968 +-0.957861,51.451694 +-1.019996,51.508491 +-0.815567,51.82027 +-0.607154,51.517768 +-0.962044,51.489362 +-1.432252,51.443809 +-0.697221,51.374579 +-1.47693,51.845758 +-0.662347,51.484052 +-0.706312,51.804661 +-0.61237,51.665181 +-0.949624,51.456935 +-1.249854,51.400334 +-0.499467,51.580284 +-1.016212,51.711364 +-1.413203,51.694811 +-0.701752,52.154461 +-0.625819,51.483729 +-1.248398,51.72795 +-0.808015,52.121255 +-0.578378,51.57124 +-0.771835,51.577147 +-0.738743,52.066678 +-0.560971,51.498255 +-1.202636,51.729249 +-0.731775,51.973698 +-1.311099,51.395971 +-1.339778,52.072781 +-0.612312,51.706344 +-0.981257,51.755232 +-0.770316,52.029897 +-0.72983,52.025502 +-1.017655,51.444423 +-1.263501,51.604737 +-0.745582,52.033961 +-0.959676,51.454147 +-0.534875,51.462449 +-0.610642,51.479863 +-0.727732,52.004386 +-1.322105,51.995944 +-0.970702,51.505264 +-0.976822,51.466841 +-0.574075,51.505375 +-0.752586,51.418721 +-1.202787,51.866294 +-0.972174,51.457134 +-0.537506,51.490942 +-1.410004,51.430688 +-1.047121,51.742702 +-0.995473,51.702125 +-1.293676,51.754665 +-1.100546,51.685299 +-1.083713,51.518609 +-0.796453,51.364301 +-0.683965,51.587029 +-1.292977,51.500176 +-1.147331,51.915005 +-1.59319,51.579611 +-1.563056,51.662564 +-0.621683,51.483347 +-0.776002,51.455754 +-0.720362,51.517385 +-1.468481,51.675455 +-1.452043,51.652272 +-0.976201,51.455344 +-0.736973,52.0089 +-0.879131,51.655701 +-0.977556,51.455257 +-1.236526,51.747654 +-1.434046,51.789258 +-0.745644,52.010404 +-0.913173,51.422082 +-0.826288,51.823093 +-1.046198,51.476454 +-0.741403,52.032738 +-1.567754,51.654975 +-0.976303,51.450786 +-1.545967,51.941313 +-0.797394,51.404065 +-0.995048,51.477969 +-0.604448,51.696639 +-1.228319,51.749893 +-1.424792,51.588581 +-0.776912,51.571867 +-1.229896,51.732919 +-0.741613,51.394604 +-1.484823,51.783791 +-0.758813,51.632911 +-0.755197,52.027391 +-0.589688,51.497165 +-1.243845,51.75003 +-1.254902,51.403702 +-0.806681,51.810083 +-0.621773,51.49136 +-1.214062,51.724129 +-0.962817,51.4337 +-1.265998,51.753326 +-1.619427,51.626229 +-0.61582,51.47291 +-0.720211,51.522752 +-1.217912,51.455119 +-1.19475,51.764 +-1.259963,51.761866 +-0.780333,52.023905 +-0.878586,51.45081 +-0.71641,51.626098 +-1.126323,51.594311 +-0.962725,51.435201 +-1.059829,51.536206 +-1.437461,51.955104 +-0.481368,51.559954 +-1.452586,51.637178 +-0.819577,51.817838 +-1.243818,51.749913 +-0.762345,51.634289 +-0.774198,52.068617 +-0.738115,52.011304 +-0.53531,51.488874 +-0.82633,51.375026 +-1.204031,51.459638 +-1.163283,51.891356 +-0.768362,52.031504 +-0.648814,52.039248 +-1.330314,51.415847 +-0.98145,51.456154 +-1.25478,51.605609 +-0.941491,51.475016 +-1.015557,51.420892 +-1.480322,51.790676 +-0.937776,51.448969 +-0.783481,51.822137 +-0.961638,51.429823 +-1.008231,51.462318 +-1.219463,51.654248 +-0.604971,51.51562 +-1.026169,51.452785 +-0.598632,51.583164 +-1.084396,51.384466 +-1.005324,51.453032 +-0.592518,51.50442 +-0.984362,51.448195 +-1.13269,51.890874 +-0.765237,51.625678 +-0.774453,51.812116 +-0.727658,51.622696 +-1.088126,51.465736 +-0.804563,51.415846 +-0.723575,51.635384 +-1.055831,51.44087 +-0.993593,51.620502 +-0.802763,51.644607 +-0.555347,51.608141 +-0.955858,51.442981 +-1.219628,51.732186 +-0.829748,51.412827 +-1.070708,51.436646 +-1.161246,51.914134 +-1.396539,51.639088 +-0.879684,52.02579 +-0.699977,52.060782 +-1.256988,51.750662 +-0.813416,51.800521 +-0.60216,51.506217 +-0.963101,51.45353 +-1.319424,51.623202 +-0.799614,51.823849 +-1.043947,51.456716 +-0.73141,51.496824 +-1.223428,51.861019 +-1.323186,51.829339 +-0.722345,51.489235 +-0.766615,51.578566 +-0.986902,52.00048 +-0.713004,51.65149 +-0.73664,51.627505 +-0.772071,51.998275 +-0.700633,51.606925 +-1.228287,51.653056 +-0.55345,51.501454 +-1.228601,51.732479 +-0.696866,51.603296 +-1.282663,51.797846 +-0.769823,51.493375 +-0.816759,51.423028 +-0.694481,51.502632 +-1.357216,52.060416 +-0.608294,51.505436 +-1.170541,51.683863 +-0.966913,51.450443 +-1.369788,51.819519 +-1.048619,51.461844 +-0.699381,52.01599 +-0.498509,51.561622 +-1.349201,52.117077 +-0.993057,51.451974 +-1.092258,51.435214 +-0.532798,51.56398 +-1.015133,51.407149 +-1.550443,51.466935 +-0.767562,51.630531 +-1.258465,51.754205 +-0.974132,51.426282 +-0.722221,51.529221 +-1.062317,51.465587 +-1.547783,51.941517 +-0.776603,51.51616 +-0.80898,51.815861 +-0.957039,51.453683 +-1.128929,51.880201 +-0.754559,51.997857 +-0.611769,51.705645 +-0.840046,51.432622 +-0.803015,51.813229 +-0.654469,51.754679 +-0.730412,51.586651 +-0.587927,51.86464 +-1.32077,51.396136 +-0.772581,51.565501 +-0.967277,51.436833 +-1.14789,51.893889 +-1.323797,51.453116 +-0.53499,51.488978 +-0.615697,51.545475 +-0.763677,51.618252 +-0.742291,51.76262 +-0.787531,51.78748 +-1.303934,51.618732 +-1.300351,51.806476 +-0.795734,52.027866 +-0.831789,51.410608 +-1.319026,52.073122 +-0.698054,51.523857 +-0.616774,51.503737 +-0.776847,51.335144 +-0.658391,51.536916 +-0.744527,51.514931 +-0.7131,52.007626 +-0.99054,51.455801 +-0.961904,51.453645 +-0.686759,51.412301 +-1.213732,51.759885 +-0.786671,51.370828 +-1.014169,51.462665 +-0.754166,51.631136 +-0.99733,51.479607 +-0.659082,51.541348 +-0.802772,52.066141 +-0.708603,52.034802 +-0.734385,52.080451 +-0.806609,51.416784 +-0.846542,51.377987 +-0.74592,51.627317 +-1.228331,51.653029 +-1.5826,51.628145 +-0.794982,51.36675 +-0.614433,51.687603 +-1.247238,51.395021 +-1.158838,51.913074 +-1.260039,51.758099 +-1.235718,51.613408 +-1.345087,52.038952 +-1.255953,51.605409 +-0.648994,51.53188 +-0.876559,51.428418 +-1.130988,51.58815 +-0.492858,51.560615 +-1.331128,51.732918 +-0.752967,51.631132 +-1.599089,51.793074 +-1.236554,51.747699 +-1.225926,51.894006 +-1.60181,51.64026 +-1.295691,51.667902 +-0.716017,51.998882 +-0.905156,51.541447 +-1.509438,51.771776 +-1.50496,51.78626 +-0.647482,51.613033 +-0.604643,51.496157 +-0.95115,51.445609 +-0.751117,52.049322 +-0.837698,51.982856 +-0.948317,51.433643 +-0.676087,51.56608 +-1.19638,51.762779 +-1.147924,51.392372 +-1.048103,51.524683 +-1.145444,51.904859 +-0.904369,51.789994 +-0.906899,51.453577 +-0.986129,51.455448 +-0.715999,51.998495 +-0.75857,52.046641 +-0.520652,51.493177 +-1.016249,51.890948 +-1.318418,51.746188 +-1.378046,51.778185 +-1.196962,51.762693 +-0.727079,51.659925 +-1.17728,51.681519 +-0.791628,51.802332 +-0.922818,51.754405 +-0.765143,51.625947 +-0.97586,51.418448 +-0.653749,52.012312 +-1.380384,51.686793 +-1.109828,51.740874 +-1.592532,51.782172 +-0.607058,51.681851 +-1.201907,51.957816 +-0.806823,51.416867 +-0.825878,51.425809 +-0.964626,51.457374 +-1.265291,51.787075 +-0.741605,52.082156 +-0.616863,51.522208 +-1.009138,51.4457 +-1.255967,51.605391 +-0.70937,51.898152 +-1.224473,51.727453 +-1.202038,51.729532 +-0.634984,51.478719 +-0.680372,52.043471 +-0.820061,51.810425 +-0.945374,51.453974 +-0.954684,51.453446 +-0.833864,51.464113 +-0.830932,51.420545 +-1.218913,51.737531 +-0.498615,51.522922 +-1.426912,51.588763 +-1.228819,51.732408 +-0.716917,51.503536 +-0.993834,51.451981 +-1.233452,51.72218 +-0.825385,51.823228 +-1.553143,51.745759 +-1.132356,51.618615 +-0.72007,51.412526 +-0.684656,52.018731 +-1.526122,51.778381 +-0.894206,51.424926 +-0.831787,51.876386 +-0.52341,51.550914 +-0.769546,51.434088 +-0.732059,51.997168 +-0.947106,51.455051 +-0.756966,52.048728 +-0.77738,51.611976 +-0.533131,51.565279 +-0.766022,51.974574 +-1.166564,51.9002 +-1.183719,51.858988 +-0.75133,52.029113 +-0.913751,51.372218 +-0.700336,52.057971 +-0.626724,51.483802 +-0.746199,52.081728 +-0.777885,51.621117 +-0.792109,51.628907 +-1.526043,51.871689 +-0.772623,51.998344 +-0.744844,51.397876 +-0.731716,51.982499 +-0.618938,51.699274 +-0.692402,52.033931 +-1.481115,51.797423 +-0.765269,51.635174 +-1.142851,51.915881 +-0.763253,51.469468 +-0.995791,51.478209 +-1.391746,51.692778 +-0.65879,51.599333 +-1.198299,51.684685 +-0.768249,51.636086 +-0.678061,52.033321 +-0.717102,51.627158 +-0.574466,51.485436 +-0.655349,51.520255 +-0.637452,51.520588 +-0.97699,51.458678 +-0.800751,51.815436 +-0.946407,51.42788 +-0.897838,51.455713 +-1.30967,52.065803 +-0.759207,51.421705 +-0.752243,52.049199 +-0.724158,51.522849 +-1.05034,51.423292 +-0.793839,51.613243 +-0.93057,51.961428 +-0.897759,51.45422 +-0.775588,51.627567 +-0.612832,51.706386 +-0.732196,51.509529 +-1.318818,51.821671 +-0.804222,52.034247 +-0.691543,52.02992 +-0.998345,51.3944 +-0.850555,51.969225 +-1.312486,51.66935 +-0.975257,51.444762 +-0.609794,51.521477 +-1.265166,51.777822 +-1.260291,51.411883 +-0.830397,51.724282 +-1.256357,51.746711 +-1.242081,51.404402 +-0.749458,51.40895 +-0.918031,51.459974 +-0.729806,51.497526 +-1.411425,51.82182 +-0.689685,52.026159 +-1.264538,51.776335 +-1.21033,51.733922 +-0.623788,51.600888 +-0.730781,51.413119 +-0.674166,51.59788 +-0.947498,51.473029 +-0.890849,51.864738 +-0.589569,51.503333 +-0.520908,51.542691 +-0.596918,51.844534 +-1.483736,51.795169 +-1.234559,51.738056 +-0.72616,51.622536 +-0.608002,51.511682 +-0.615711,51.480319 +-1.090585,51.481833 +-0.531465,51.596847 +-0.866318,51.423743 +-1.347493,52.059014 +-0.774897,51.554492 +-1.225666,51.763569 +-0.719976,51.620527 +-1.618488,51.564078 +-0.972213,51.461154 +-0.847847,51.801565 +-0.761405,51.953504 +-1.294106,51.53436 +-1.310481,51.599421 +-0.89115,51.43772 +-1.371019,52.116116 +-1.223865,51.726567 +-0.946522,51.425372 +-0.609635,51.512007 +-0.981175,51.454956 +-0.534821,51.582277 +-0.761698,51.633104 +-1.335909,52.062132 +-0.804959,52.009313 +-1.147895,51.392363 +-1.351952,51.789535 +-0.971393,52.002198 +-0.659176,51.520469 +-0.997685,51.773608 +-0.62575,51.834453 +-1.1439,51.914243 +-1.325303,51.392862 +-1.158644,51.914898 +-0.977682,51.436726 +-0.784964,51.410888 +-0.591374,51.519117 +-0.739318,52.010993 +-1.179592,51.589561 +-1.496999,52.052024 +-0.763969,51.602718 +-0.930367,51.442104 +-1.494059,51.415741 +-1.378417,51.869303 +-1.484816,51.7895 +-0.808605,51.778345 +-1.1972,51.763136 +-0.74123,51.99269 +-0.768545,51.61557 +-0.751021,51.592006 +-0.765056,52.059962 +-0.892243,51.474597 +-0.98795,51.550768 +-0.828103,51.379855 +-0.782276,51.579575 +-0.588799,51.507765 +-1.02679,51.994226 +-0.637692,51.534744 +-0.963552,51.446979 +-0.728719,52.072361 +-0.962367,51.432608 +-0.716387,51.99867 +-1.061742,51.481012 +-0.787962,51.352398 +-0.580023,51.530931 +-0.781287,51.822276 +-0.706991,52.048739 +-0.707223,51.559926 +-0.987395,51.455495 +-0.821962,51.731867 +-0.605199,51.51145 +-1.32384,52.066388 +-0.774372,51.811333 +-1.424354,51.680318 +-0.753666,51.630924 +-0.678895,52.033232 +-0.870423,51.477761 +-0.678803,52.03288 +-0.761668,51.396598 +-0.53633,51.579338 +-1.320604,52.036404 +-0.761277,51.397242 +-1.495422,51.780968 +-1.316962,51.406688 +-1.556274,51.481722 +-0.617018,51.502338 +-0.614891,51.517869 +-0.752951,51.633308 +-0.837003,51.55293 +-0.608614,51.484506 +-0.863239,51.726375 +-1.207404,51.389525 +-0.711159,51.503841 +-0.7741,51.382701 +-0.671706,51.543119 +-1.231192,51.746181 +-0.734569,51.49514 +-1.254786,51.752393 +-1.233458,51.725264 +-0.762555,51.925472 +-1.194902,51.762787 +-0.975968,51.463174 +-0.563695,51.486293 +-0.744932,52.016556 +-0.718712,51.919222 +-0.765585,51.368027 +-0.929705,51.712496 +-0.780415,51.755631 +-1.403965,52.072341 +-0.731357,51.973558 +-0.939355,51.434246 +-0.763954,52.098297 +-0.57111,51.503883 +-1.549006,51.478439 +-1.553705,51.480831 +-0.734268,52.044845 +-1.067065,51.479877 +-0.76381,51.629278 +-0.683636,51.589427 +-0.525427,51.518865 +-1.657471,51.734636 +-1.353602,51.412354 +-1.229576,51.747501 +-0.80346,51.514746 +-0.785671,52.0539 +-0.811372,51.466018 +-0.911113,51.45733 +-1.29723,51.40435 +-0.766358,51.608318 +-0.988058,51.472379 +-0.756266,51.638369 +-1.412092,51.681184 +-0.735088,51.994098 +-0.93526,51.447633 +-0.835853,51.448154 +-1.263551,51.773757 +-1.310415,51.458712 +-0.762608,51.63154 +-1.150128,51.896989 +-0.760142,51.637709 +-0.963886,51.416949 +-1.541962,51.921796 +-0.79272,51.815201 +-0.744389,51.519938 +-1.010218,51.920757 +-0.695757,52.012317 +-0.741321,51.640548 +-0.927605,51.441476 +-1.457974,51.447914 +-1.235475,51.739546 +-0.813393,51.421376 +-0.842128,51.410585 +-1.389282,51.790895 +-0.775906,51.556661 +-1.358148,51.768782 +-1.237267,51.751813 +-1.011568,51.369775 +-0.706424,51.649053 +-0.775251,51.633129 +-1.243992,51.749887 +-1.332133,51.403511 +-1.526231,51.871762 +-1.543843,51.728595 +-0.595306,51.566507 +-0.962017,51.453727 +-0.628415,51.508568 +-0.702691,52.035573 +-0.950937,51.969892 +-1.476498,51.451244 +-1.166302,51.902545 +-1.193602,51.722713 +-1.55121,51.64986 +-1.448549,51.75079 +-0.837289,51.412569 +-1.345741,52.0651 +-1.366235,51.788399 +-0.761087,52.06634 +-0.740146,51.393608 +-0.542459,51.50228 +-0.774885,51.554393 +-1.310216,51.599761 +-1.246846,51.690635 +-0.624677,51.516428 +-0.621697,51.529198 +-1.094572,51.740388 +-0.789955,52.065921 +-0.76286,52.03649 +-1.274749,51.752418 +-1.211731,51.759934 +-0.849912,51.623274 +-0.75664,52.059415 +-0.624585,51.600772 +-0.910388,51.70562 +-0.531654,51.516596 +-0.738478,51.535655 +-1.22912,51.732599 +-1.354021,51.470361 +-0.852335,52.04769 +-1.20077,51.880135 +-1.31902,51.641479 +-0.608603,51.66305 +-0.782966,51.616386 +-1.205376,51.748068 +-1.438679,51.954301 +-1.087797,51.787702 +-0.622861,51.486796 +-0.668164,51.526605 +-0.955,51.453476 +-1.2624,51.687811 +-0.887761,51.465284 +-1.280477,51.741988 +-0.968802,51.459874 +-1.066348,51.443031 +-0.74334,52.0094 +-1.002596,51.372118 +-1.053743,51.4556 +-0.586022,51.50436 +-1.266536,51.753222 +-0.593254,51.51049 +-0.571162,51.507273 +-1.315491,51.750073 +-1.018265,51.450893 +-1.200069,51.76151 +-1.092848,51.521647 +-1.328711,51.396694 +-1.345874,52.11188 +-0.550973,51.531844 +-0.715144,51.930116 +-0.754878,51.666877 +-0.735652,52.023713 +-1.527113,51.541617 +-0.633564,51.690759 +-1.001258,51.458006 +-1.524053,51.77937 +-0.612364,51.510411 +-1.270981,51.604685 +-1.070968,51.436576 +-0.980796,51.421548 +-0.675136,51.403511 +-0.832198,51.823476 +-1.240519,51.748822 +-1.197129,51.763054 +-1.243992,51.749914 +-0.708247,51.523771 +-1.019889,51.452993 +-0.956967,51.453673 +-1.287966,51.752994 +-1.150066,51.912579 +-0.650062,52.01379 +-1.496557,51.676235 +-0.96479,51.444409 +-0.975053,51.745782 +-0.77377,51.613548 +-0.778064,51.51595 +-0.738572,51.764019 +-0.808048,51.826992 +-0.534457,51.582821 +-1.236893,51.775736 +-0.660902,51.431585 +-0.98093,51.456267 +-0.601956,51.502069 +-1.296635,51.665767 +-0.739284,51.53623 +-0.748756,52.052381 +-1.351938,52.122756 +-0.788547,51.372142 +-1.22533,51.73912 +-1.520255,51.50262 +-0.95863,51.45394 +-0.974979,51.461709 +-1.104229,51.624716 +-0.908685,51.440258 +-0.897893,51.537099 +-1.314564,51.538159 +-0.622675,51.506343 +-1.3507,51.830285 +-1.506053,51.919826 +-0.626758,51.512892 +-0.787549,51.531604 +-0.645526,51.522929 +-0.9844,51.424412 +-1.296336,51.752253 +-1.115924,51.692681 +-0.530786,51.486236 +-0.751467,51.991207 +-0.495801,51.500243 +-0.91607,51.392643 +-0.923471,51.77876 +-0.763618,51.787142 +-1.257563,51.402739 +-1.512589,51.636444 +-0.976364,51.749291 +-0.560925,51.522111 +-1.488053,51.795565 +-1.137025,51.591009 +-0.941524,51.451179 +-0.972843,51.413817 +-1.481753,51.786043 +-0.75476,51.400095 +-1.310502,51.409896 +-1.0157,51.444335 +-0.497074,51.560516 +-0.748838,52.083384 +-0.836092,51.408205 +-0.791037,52.031783 +-1.231539,51.749644 +-0.731933,52.032061 +-0.73104,51.772156 +-0.977481,51.464383 +-0.815727,51.353285 +-0.707049,52.162333 +-0.964754,51.738166 +-0.855239,51.797753 +-1.25957,51.755732 +-0.542224,51.443693 +-1.316966,51.373616 +-0.729533,51.398466 +-1.277015,51.805516 +-0.966053,51.455399 +-0.772811,51.632492 +-1.288769,52.123408 +-1.494131,51.415742 +-0.764594,51.632352 +-1.26187,51.604664 +-0.56566,51.594348 +-1.298083,51.804997 +-0.80072,51.807855 +-0.978171,51.747536 +-1.081388,51.436379 +-0.756914,51.63157 +-1.483409,51.79719 +-0.955129,51.453513 +-0.534615,51.58285 +-1.208612,51.56506 +-0.796036,51.364899 +-0.961794,51.412173 +-0.52166,51.493208 +-0.964713,51.454812 +-0.724004,51.499989 +-0.690691,52.033642 +-0.907699,51.519557 +-0.764649,51.989548 +-1.274672,51.916218 +-0.5721,51.630664 +-1.06833,51.631809 +-1.208173,51.756269 +-1.321815,52.072014 +-0.785218,52.053905 +-1.588387,51.761325 +-1.533988,51.644947 +-1.357426,51.368252 +-1.222912,51.746684 +-0.82935,51.414891 +-0.525086,51.551726 +-0.974563,51.44748 +-0.662447,51.484098 +-1.233537,51.765968 +-0.815128,52.053454 +-1.218622,51.752733 +-0.762495,51.396877 +-0.58977,51.503371 +-0.874172,51.485161 +-1.159152,51.897036 +-0.881991,51.636397 +-0.626147,51.471377 +-1.006602,51.445886 +-0.806319,52.052385 +-0.607576,51.674376 +-0.582856,51.654119 +-0.962574,51.436153 +-0.937493,51.455584 +-0.941964,51.742306 +-1.206269,51.739253 +-0.70139,52.123681 +-0.731692,52.025621 +-0.69702,51.496941 +-0.941514,51.459119 +-0.966814,51.4625 +-0.604934,51.520619 +-0.667613,51.521285 +-0.628177,51.581706 +-0.693427,51.606423 +-0.799122,51.413857 +-1.353631,52.079403 +-0.813963,51.81396 +-0.790152,52.052139 +-1.138351,51.887364 +-0.766997,51.711558 +-1.383296,51.872557 +-0.808689,51.815912 +-0.817121,51.82078 +-1.256538,51.74718 +-0.953611,51.676952 +-0.533167,51.591968 +-0.627474,51.507766 +-0.958691,51.453796 +-1.269913,51.788147 +-1.504805,51.674499 +-0.770674,52.055112 +-1.001018,51.490078 +-0.724068,51.522964 +-0.679193,51.429841 +-0.7664,51.617436 +-0.972531,51.990663 +-0.728276,51.622802 +-0.997963,51.454651 +-1.281957,51.402855 +-0.752851,51.633253 +-0.719255,51.999754 +-0.954671,51.442656 +-0.720367,51.52439 +-0.633339,51.522185 +-0.900784,51.43791 +-0.534599,51.582445 +-0.700131,51.443266 +-0.984966,51.455322 +-0.744111,52.041731 +-0.815422,51.820269 +-1.485566,51.783443 +-1.311924,51.861803 +-1.234195,51.818714 +-1.217107,51.758271 +-0.957584,51.450612 +-1.502205,51.782409 +-0.682538,51.464075 +-0.724637,51.623787 +-1.266588,51.750003 +-1.004061,51.458803 +-1.202624,51.942006 +-1.203008,51.746829 +-0.784515,51.620601 +-1.230797,51.848714 +-1.150165,51.487045 +-0.615202,51.521865 +-0.802157,51.793583 +-1.223609,51.725451 +-1.386506,51.787068 +-0.769746,51.613326 +-0.830712,51.379521 +-0.952366,51.417611 +-0.734424,51.391056 +-0.889868,51.41994 +-1.277226,51.807757 +-1.593579,51.757594 +-0.719108,51.719552 +-1.263302,51.822856 +-0.716402,51.932899 +-1.506493,51.7906 +-1.017199,51.464336 +-0.595998,51.5084 +-1.227725,51.766856 +-0.859361,52.060957 +-1.256544,51.752134 +-0.996174,51.45683 +-0.666769,51.526985 +-0.975795,51.467678 +-0.623259,51.661307 +-1.334317,51.42737 +-0.905179,51.467741 +-1.240571,51.609941 +-1.01504,51.454301 +-1.245886,51.606415 +-1.188876,51.720631 +-0.814797,51.827483 +-0.608568,51.483651 +-1.107112,51.740502 +-1.003172,51.454048 +-0.50759,51.551298 +-1.348599,51.416309 +-1.597659,51.792412 +-0.568511,51.486109 +-0.612573,51.512563 +-0.589648,51.518063 +-1.367718,51.496997 +-0.749293,51.9971 +-0.740927,51.393958 +-0.725556,51.621405 +-0.591233,51.714932 +-0.979945,51.748504 +-0.985061,51.989145 +-0.667345,51.521111 +-0.986576,51.453492 +-0.655489,51.407226 +-0.7785,51.488313 +-1.354121,52.060588 +-0.709582,52.081279 +-1.214887,51.735005 +-0.94805,51.455904 +-0.700945,52.038458 +-1.225367,51.763262 +-1.214003,51.397743 +-0.885802,51.640119 +-0.59956,51.519584 +-0.974657,51.475445 +-0.578493,51.520814 +-0.778376,51.616293 +-1.356969,52.061323 +-1.529048,51.510604 +-0.743759,51.467382 +-0.940531,51.445604 +-0.599633,51.519558 +-1.026287,51.469537 +-0.628574,51.451911 +-1.220253,51.733736 +-1.275044,51.788268 +-0.827665,52.048122 +-0.908151,51.472885 +-0.931421,51.440711 +-0.807373,51.826715 +-0.961962,51.39331 +-1.061857,51.391131 +-1.301881,51.618864 +-1.609608,51.753539 +-0.553781,51.488707 +-0.943321,51.454378 +-1.316896,51.39668 +-1.248851,51.385204 +-1.373642,51.866958 +-1.343498,51.666632 +-0.779633,51.616252 +-1.065438,51.394504 +-1.204162,51.913443 +-1.001223,51.741979 +-0.948175,51.449216 +-0.734525,52.045054 +-0.623359,51.531951 +-1.21431,51.759133 +-0.753391,51.486907 +-1.548528,51.724873 +-0.71718,51.61877 +-0.529131,51.50768 +-0.536521,51.489302 +-0.843345,51.830158 +-0.721416,51.447763 +-1.305132,51.584733 +-0.629148,51.524969 +-0.782757,51.640409 +-0.547008,51.447116 +-1.260305,51.761293 +-0.678562,51.661295 +-0.978279,51.464759 +-0.833999,51.625275 +-0.623727,51.601922 +-0.702436,52.159594 +-0.825475,51.823121 +-0.661603,51.97373 +-1.403294,51.789348 +-0.773434,51.359216 +-0.946102,51.428614 +-1.320249,51.396402 +-0.606808,51.677263 +-0.481957,51.560042 +-0.729065,51.497751 +-0.898777,51.363374 +-1.368038,51.371664 +-1.225067,51.729084 +-0.634432,51.657086 +-0.973497,51.435988 +-0.978134,51.600695 +-0.784882,51.610102 +-0.622043,51.52922 +-0.58892,51.625957 +-0.959698,51.451944 +-1.296862,51.644558 +-0.971664,51.479798 +-1.228977,51.732481 +-0.617072,51.502464 +-0.701764,52.151018 +-0.901073,51.66 +-0.762149,51.598472 +-0.769589,51.61059 +-0.527317,51.493324 +-0.876393,51.430503 +-0.962971,51.453556 +-0.644102,51.509227 +-0.819696,51.817704 +-0.798262,51.345697 +-1.286995,51.67471 +-0.966577,51.483188 +-0.792018,51.409477 +-0.535285,51.492812 +-1.286142,51.795133 +-0.771739,52.025299 +-0.987362,51.449821 +-1.231022,51.767282 +-1.494131,51.415724 +-1.086874,51.671014 +-1.346823,52.069952 +-0.872946,51.54071 +-0.84166,51.413728 +-0.983591,51.455049 +-0.530213,51.493324 +-1.294393,51.531655 +-1.117687,51.860004 +-1.359483,51.479176 +-1.336899,52.081972 +-0.748289,51.628385 +-0.770715,52.030207 +-0.785564,52.053531 +-0.608263,51.477101 +-1.280702,51.752482 +-0.513949,51.48535 +-0.596539,51.507669 +-1.134239,51.470869 +-0.818982,51.410983 +-1.390555,51.824456 +-1.000195,51.456558 +-0.650681,51.520165 +-0.734513,51.996933 +-1.267361,51.73359 +-1.103493,51.5968 +-1.147855,51.892702 +-0.751507,52.048931 +-0.772737,51.63366 +-0.731864,52.012334 +-1.313783,51.849407 +-0.901225,51.791088 +-1.213312,51.907337 +-1.431382,51.599511 +-0.5877,51.530709 +-0.793959,51.822047 +-0.77831,52.105595 +-0.737424,51.625796 +-0.970404,51.426385 +-1.321594,52.066357 +-1.593661,51.758125 +-1.584878,51.652492 +-0.950782,51.439096 +-0.690632,52.03366 +-0.737646,51.428021 +-0.819063,51.8175 +-0.992205,51.456661 +-1.598021,51.763076 +-0.543003,51.500156 +-0.874575,51.438335 +-0.597682,51.675374 +-1.636419,51.811824 +-0.96276,51.433673 +-1.351519,51.84606 +-1.235301,51.747304 +-0.75168,51.389128 +-0.975918,51.418439 +-0.75069,52.012328 +-1.240122,51.566707 +-0.681552,51.490816 +-0.772949,51.850386 +-1.237261,51.747865 +-1.309014,51.745477 +-0.660148,52.089755 +-0.757296,51.417917 +-0.729044,52.025458 +-0.775465,52.039921 +-0.73711,51.664169 +-0.701808,52.157555 +-1.013638,51.46258 +-0.720565,51.524518 +-0.733952,51.997197 +-0.881293,51.783312 +-0.723664,51.623453 +-0.617286,51.721212 +-0.940214,51.425702 +-1.199994,51.868154 +-0.984177,51.464316 +-0.584713,51.868018 +-1.48314,51.372812 +-0.672122,51.984297 +-0.638301,51.498405 +-1.194964,51.8912 +-0.639204,51.405105 +-0.790942,51.78623 +-0.754979,52.023145 +-1.257377,51.402693 +-1.041753,51.459072 +-0.806987,52.050827 +-0.613461,51.512744 +-0.930917,51.441992 +-0.780003,51.639635 +-0.869028,51.481182 +-1.385423,51.451944 +-1.148314,51.800654 +-1.263016,51.76211 +-1.205776,51.752539 +-1.323289,51.982132 +NULL,NULL +-1.216722,51.737777 +-0.904141,51.707828 +-0.846552,51.415916 +-0.62623,51.475335 +-0.959769,51.424088 +-1.365633,51.826105 +-0.529675,51.534645 +-0.932671,51.4229 +-0.536833,51.489468 +-0.730073,51.610188 +-0.699495,51.468689 +-0.814285,51.459718 +-0.978065,51.447897 +-0.690588,52.033668 +-1.21134,51.734154 +-1.195114,51.759048 +-0.907718,51.706512 +-1.287965,51.753012 +-1.256719,51.749366 +-0.981595,51.743402 +-0.728644,51.388026 +-0.535262,51.489026 +-1.014789,51.463273 +-0.580513,51.507764 +-1.246394,51.837944 +-1.254891,51.848976 +-0.817917,51.405991 +-1.152909,51.684582 +-0.773749,51.384001 +-0.678484,52.044691 +-1.099138,51.554192 +-1.273507,51.788259 +-0.968307,51.459474 +-0.719672,51.517315 +-1.214391,51.397764 +-0.81717,51.815566 +-0.78077,52.037837 +-0.595077,51.727315 +-0.589806,51.520861 +-0.925857,51.441145 +-0.726127,52.002427 +-1.286185,52.017158 +-1.321899,51.400494 +-1.29985,51.806095 +-0.678327,52.032704 +-0.590028,51.509938 +-0.777916,51.613519 +-0.941207,51.454935 +-1.277564,51.944387 +-1.185238,51.885064 +-0.732863,51.643811 +-0.691136,51.522826 +-0.620205,51.520845 +-0.741448,51.710595 +-0.599871,51.517906 +-1.416639,51.924712 +-1.364064,52.079397 +-0.683164,52.053132 +-0.745122,51.711704 +-0.532407,51.563121 +-1.038563,51.373111 +-1.214438,51.433624 +-1.054853,51.742108 +-0.531732,51.493109 +-1.007981,51.577366 +-0.690745,52.035261 +-0.724777,51.522352 +-0.787436,51.409861 +-1.093192,51.636311 +-1.421408,51.791111 +-1.282562,51.798744 +-0.733763,51.635881 +-1.176366,51.736674 +-0.63467,51.527821 +-0.725362,51.522556 +-0.495717,51.52426 +-0.733604,52.062667 +-0.612342,51.512551 +-1.510548,51.418859 +-0.595824,51.595126 +-0.976838,51.466769 +-0.740826,51.409675 +-0.969228,51.454995 +-0.703967,51.795419 +-0.708806,51.421359 +-0.550753,51.531517 +-0.964816,51.416498 +-0.707749,51.704115 +-0.625985,51.834366 +-0.817239,51.354792 +-0.887172,51.959543 +-0.745383,52.016597 +-0.647172,51.532579 +-1.284826,51.752768 +-0.740899,52.078714 +-0.744252,52.041373 +-0.902167,51.660199 +-0.693937,52.040799 +-0.976168,51.45038 +-1.206287,51.891861 +-0.748711,51.40842 +-0.733814,51.624705 +-0.977197,51.464857 +-0.735479,52.035543 +-1.341197,52.063574 +-0.749616,51.626897 +-0.832296,52.0461 +-1.051284,51.481171 +-1.342316,51.683367 +-1.244795,51.611245 +-0.749862,51.702538 +-0.61237,51.50927 +-1.515271,51.415543 +-0.988695,51.474183 +-0.909135,51.456394 +-0.705793,51.523915 +-1.256369,51.752187 +-0.611764,51.479903 +-0.770138,52.017244 +-1.11614,51.897467 +-0.708531,51.658859 +-0.780582,52.001322 +-0.941202,51.475085 +-1.047811,51.464013 +-0.732432,51.699672 +-0.90284,51.547225 +-1.109431,51.602492 +-0.772581,51.427655 +-1.175397,51.620328 +-0.707635,51.532163 +-1.142018,51.401537 +-1.503204,51.630515 +-1.586173,51.762585 +-1.320901,52.001422 +-1.255188,51.775539 +-1.368671,51.635489 +-0.540705,51.490892 +-0.717473,51.381987 +-1.231796,51.718249 +-0.692827,51.6062 +-0.644903,51.876675 +-0.555191,51.564842 +-1.490242,51.784003 +-0.721523,52.074513 +-0.967447,51.454836 +-0.579452,51.515476 +-1.324248,51.395203 +-1.313212,51.632768 +-1.494636,51.778699 +-0.611353,51.699364 +-0.824633,51.417721 +-0.700833,51.656041 +-1.331542,51.448988 +-0.962899,51.453564 +-1.109589,51.62098 +-0.893278,51.516302 +-0.854214,51.418877 +-0.746892,51.389751 +-0.715295,51.896787 +-0.90078,51.537557 +-0.740814,51.971718 +-0.714824,51.508279 +-0.76769,52.018846 +-0.622224,51.710219 +-1.447503,51.975138 +-1.216371,51.932874 +-1.231032,51.75304 +-0.705577,52.075463 +-0.734139,51.994178 +-0.612705,51.569403 +-0.752006,52.085971 +-0.925227,51.553735 +-0.537316,51.498664 +-0.949949,51.452801 +-0.66789,51.599698 +-1.442712,51.807209 +-0.754239,51.38857 +-1.128953,51.600975 +-1.023868,51.833027 +-0.492821,51.55824 +-0.813751,51.349173 +-0.952112,51.45327 +-0.815824,52.053632 +-0.694255,51.606738 +-0.624145,51.717013 +-0.988589,51.417713 +-1.012146,51.454358 +-0.747434,51.403587 +-1.246874,51.690644 +-0.666244,51.448218 +-0.54444,51.492126 +-1.2183,51.397835 +-0.677944,52.032835 +-0.896366,51.657969 +-0.645876,51.716941 +-0.692718,52.102052 +-1.320697,51.43801 +-0.888151,51.421389 +-1.38399,52.019454 +-0.974643,51.45034 +-1.326318,51.407902 +-0.560961,51.499469 +-1.522069,51.873867 +-1.09382,51.553971 +-0.737726,51.519057 +-0.733581,52.033581 +-1.012921,51.455129 +-0.576869,51.504942 +-0.686867,51.506359 +-1.596795,51.76416 +-0.960749,51.486158 +-0.533818,51.490492 +-0.746213,52.05988 +-0.739205,52.066836 +-0.546729,51.495337 +-0.650438,51.520108 +-1.198349,51.759646 +-1.351727,52.074834 +-0.625804,51.606811 +-0.750385,52.084425 +-0.742061,52.079409 +-0.701184,51.52176 +-0.788901,51.770411 +-1.340419,52.059973 +-1.390596,51.684644 +-0.757928,51.630933 +-0.599754,51.518435 +-1.279763,51.670233 +-0.954869,51.453547 +-1.457191,51.9794 +-0.766199,51.607794 +-0.587376,51.466627 +-1.165349,51.651529 +-1.142597,51.916203 +-0.592318,51.504373 +-1.376423,51.672872 +-1.28052,51.405544 +-0.956774,51.443205 +-0.653626,51.725042 +-0.589101,51.518029 +-0.914644,51.463189 +-0.709805,52.002636 +-0.934637,51.455244 +-0.697884,52.057504 +-1.47262,51.60294 +-0.857783,52.061068 +-0.727757,52.054368 +-1.018953,51.441601 +-1.552603,51.584624 +-0.75185,51.627083 +-1.048154,51.46202 +-0.616417,51.528371 +-1.219187,51.654336 +-1.540591,51.780893 +-0.935222,51.436906 +-0.804542,51.815834 +-0.798708,52.009879 +-0.698612,51.37517 +-1.285445,51.746559 +-1.366818,51.777802 +-0.773344,52.057738 +-0.918613,51.478008 +-0.967518,51.439559 +-0.741996,52.025651 +-0.664057,52.035573 +-1.265342,51.778605 +-0.641934,51.520127 +-0.807039,51.826739 +-0.734476,52.075174 +-0.954233,51.430989 +-1.349356,51.7029 +-0.761535,51.631645 +-1.218598,51.732287 +-1.292905,51.817976 +-0.741997,52.025615 +-0.729474,51.74431 +-0.659022,51.536051 +-0.787999,52.01528 +-1.209828,51.758555 +-0.815404,51.820412 +-1.424369,51.6803 +-0.49198,51.527404 +-1.626636,51.902081 +-0.979213,51.387374 +-0.731367,51.413737 +-0.516949,51.476351 +-1.137617,51.629893 +-0.752572,51.630256 +-1.310455,51.454099 +-0.752032,51.416863 +-1.49213,51.773384 +-1.274323,51.586165 +-0.730924,51.528326 +-1.247853,51.752034 +-1.111027,51.378359 +-1.565708,51.770702 +-0.623038,51.537783 +-1.009681,51.420581 +-0.717419,51.510798 +-0.897717,51.454156 +-0.654809,51.519008 +-0.787382,51.426028 +-1.234817,51.721928 +-1.60031,51.768029 +-0.748642,52.042903 +-0.812665,51.816959 +-0.759723,51.411675 +-1.363658,51.625041 +-1.004464,51.978395 +-1.014257,51.462612 +-1.26339,51.748895 +-0.525106,51.518968 +-0.739705,52.021598 +-1.277235,51.452514 +-1.01402,51.462889 +-1.197391,51.741756 +-0.72517,51.534099 +-0.806263,52.015053 +-1.281136,51.788072 +-0.829881,51.82276 +-0.547795,51.493966 +-1.083318,51.668819 +-1.485253,51.793107 +-0.740221,52.03955 +-1.256385,51.746774 +-1.554784,51.988242 +-0.531667,51.57401 +-0.983033,51.403691 +-1.209854,51.726339 +-0.579775,51.52734 +-1.321764,51.72007 +-0.737358,51.428027 +-1.259057,51.728629 +-1.132945,51.750568 +-1.268997,51.752464 +-0.680313,52.043471 +-0.821259,52.108648 +-0.774984,52.052702 +-1.104825,51.600281 +-1.206554,51.892366 +-1.545271,51.797023 +-1.195342,51.7266 +-1.302435,51.477969 +-1.343667,51.841908 +-0.743245,51.697954 +-0.957551,51.429904 +-1.361826,52.081803 +-1.211354,51.75745 +-1.252864,51.377928 +-0.755556,51.529039 +-0.76354,52.044086 +-0.776957,51.621781 +-1.334572,52.061819 +-1.204484,51.722131 +-0.64486,51.405899 +-0.950759,51.438835 +-0.988821,51.461955 +-1.296109,51.752863 +-1.276879,51.752387 +-0.758025,51.636922 +-0.800197,51.653096 +-0.974382,51.391953 +-0.561279,51.605984 +-0.679523,52.033167 +-0.71182,52.037481 +-1.268683,51.784426 +-1.220339,51.725366 +-1.04398,51.463398 +-1.271524,51.779084 +-1.270423,51.603504 +-0.56121,51.837116 +-0.694491,52.040311 +-1.328982,51.870947 +-0.974066,51.733698 +-0.968102,51.393832 +-0.601339,51.513275 +-0.806117,51.616471 +-1.232244,51.767847 +-1.310437,52.018812 +-0.805124,51.615813 +-0.510186,51.545981 +-0.69801,51.501142 +-0.817147,51.42136 +-1.260557,51.752977 +-0.944114,51.456229 +-0.67659,51.410892 +-1.267212,51.751769 +-0.812787,52.052648 +-1.473257,52.042201 +-0.911982,51.825499 +-1.053355,51.479893 +-0.612657,51.512627 +-0.908382,51.845373 +-0.626271,51.594668 +-0.979646,51.748277 +-1.299837,52.030384 +-0.750279,51.41314 +-0.626596,51.483747 +-0.759742,51.631168 +-0.498856,51.561618 +-1.283201,51.797741 +-0.978842,51.990422 +-0.832906,52.048434 +-1.170924,51.883624 +-0.842427,51.399303 +-0.612299,51.482203 +-1.440246,51.480785 +-1.295216,51.620191 +-1.023853,51.58355 +-1.236889,51.737325 +-1.213187,51.734517 +-0.701961,52.020514 +-0.61182,51.702544 +-0.518017,51.486049 +-1.248098,51.968199 +-1.287565,51.66975 +-0.713489,51.616499 +-0.726053,52.036341 +-0.721202,51.518248 +-1.483076,51.453701 +-0.639739,51.585554 +-1.318882,52.072033 +-0.75733,51.636978 +-0.63357,51.51976 +-1.410783,51.590256 +-0.614168,51.703848 +-1.249644,51.835402 +-0.539066,51.534052 +-0.979217,51.422056 +-0.626738,51.48382 +-1.421981,51.963975 +-1.098987,51.561141 +-0.728115,51.646152 +-1.124441,51.602084 +-0.612969,51.527971 +-1.309963,51.602187 +-0.731335,51.623473 +-1.30264,51.618356 +-0.806945,51.562313 +-0.690576,52.026088 +-0.563873,51.587843 +-1.202641,51.729788 +-0.725598,51.551809 +-0.751013,51.410998 +-1.210637,51.728799 +-1.489721,51.771081 +-0.814057,51.819769 +-1.287233,51.456451 +-1.364159,51.372695 +-1.302655,51.768052 +-1.265135,51.699364 +-0.994654,51.451979 +-0.640273,51.498464 +-1.135924,51.479226 +-0.649688,51.520118 +-1.220454,51.725385 +-0.978587,51.431609 +-1.169731,51.910499 +-0.71649,52.062275 +-0.654158,51.52007 +-0.52688,51.537694 +-1.267182,51.752695 +-0.681763,52.052685 +-1.545953,51.941259 +-1.609901,51.79694 +-0.960686,51.424249 +-0.536113,51.493038 +-0.704115,51.689994 +-0.627984,51.581407 +-0.773758,51.55502 +-1.235702,51.76047 +-1.329761,51.627532 +-0.692294,52.102092 +-0.7529,51.415613 +-1.281526,51.619101 +-1.360909,52.009081 +-0.741746,51.39448 +-1.327057,51.914299 +-0.817724,51.821002 +-1.25773,51.616813 +-0.72652,51.622603 +-1.250571,51.605995 +-0.977393,51.465093 +-1.440324,52.013855 +-1.259933,51.615505 +-0.715555,52.011968 +-1.526244,51.475292 +-0.531629,51.54876 +-1.311776,52.017022 +-1.411979,51.680967 +-1.257413,51.752985 +-1.30228,51.679513 +-0.941832,51.45905 +-1.284247,51.406268 +-0.703194,51.757646 +-0.829262,52.061768 +-0.571852,51.544185 +-1.235733,51.747442 +-0.744071,51.404063 +-1.482678,51.765943 +-0.510505,51.48099 +-0.588764,51.49862 +-0.78414,51.632988 +-1.076382,51.482018 +-0.616788,51.503765 +-1.335349,51.838031 +-1.408539,51.683027 +-1.056109,51.451096 +-0.77959,51.612484 +-0.692024,51.523016 +-1.278838,51.809475 +-1.256427,51.752196 +-0.754258,51.806932 +-1.397711,51.45101 +-1.322727,51.417413 +-0.608073,51.47343 +-0.905165,51.467714 +-0.724167,51.614808 +-0.877415,51.428723 +-1.59226,51.644813 +-0.745106,51.563079 +-0.819439,51.817558 +-0.507199,51.494031 +-0.949175,51.453945 +-0.630508,51.506057 +-1.034749,51.421924 +-0.991099,51.455896 +-1.206122,51.897129 +-0.654377,51.45587 +-0.851767,51.481509 +-0.641858,51.518795 +-0.827763,52.091181 +-1.468386,52.012744 +-1.237462,51.747984 +-0.771475,52.020567 +-1.32679,51.914622 +-0.794028,51.367523 +-1.286781,51.669943 +-0.966985,51.450426 +-1.004521,51.452234 +-1.325833,51.394933 +-0.754653,52.040135 +-1.228822,51.883586 +-1.161247,51.914107 +-1.29695,51.680012 +-0.617618,51.513944 +-1.40979,51.455127 +-0.983598,51.47092 +-1.411005,51.616683 +-0.596034,51.516611 +-0.615687,51.50252 +-0.606905,51.471591 +-0.935529,51.452797 +-0.695967,51.468704 +-0.750471,51.412404 +-1.659128,51.591024 +-1.549481,51.478414 +-1.162303,51.38334 +-0.693262,51.6916 +-1.241013,51.750461 +-1.487984,51.909166 +-0.956716,51.443222 +-0.734327,52.044846 +-1.567914,51.654931 +-1.504791,51.674463 +-1.287332,51.79328 +-1.191629,51.674982 +-0.975842,51.456591 +-0.824624,51.41693 +-0.721193,51.619371 +-0.969141,51.455031 +-0.991512,51.458714 +-0.830785,51.379486 +-0.79417,52.044286 +-0.769452,51.615651 +-1.32101,51.437256 +-0.991909,51.747897 +-0.997358,51.460589 +-0.555776,51.527668 +-0.735744,52.006504 +-0.822857,52.056256 +-0.735219,51.630798 +-0.758776,51.996005 +-1.293225,51.670261 +-0.964461,51.444325 +-0.687199,51.687135 +-0.60742,51.718129 +-1.088509,51.383563 +-0.906894,51.54051 +-1.306755,51.623172 +-1.636505,51.808327 +-0.977875,51.434498 +-0.602686,51.511178 +-0.84985,51.835114 +-1.402854,51.670941 +-0.775341,51.41264 +-0.761643,52.052571 +-0.592192,51.511727 +-1.531295,51.507844 +-1.637127,51.806747 +-0.532341,51.593846 +-1.147894,51.892936 +-0.712495,51.997234 +-1.336792,51.732824 +-1.059539,51.439659 +-1.220577,51.752782 +-0.981493,51.454905 +-1.651362,51.805927 +-0.740221,51.99285 +-0.735425,51.994021 +-1.524827,51.794038 +-0.568113,51.48044 +-1.147529,51.910664 +-0.741613,51.410322 +-1.289196,51.657891 +-0.86394,51.422776 +-1.194466,51.723771 +-0.744163,51.762002 +-0.53723,51.554441 +-0.815252,52.038854 +-0.969587,51.455044 +-0.61295,51.663218 +-0.735736,52.006765 +-0.586865,51.531598 +-0.968522,51.453775 +-1.217923,51.462879 +-0.751089,51.637424 +-0.713401,51.581277 +-1.127165,51.600836 +-1.626719,51.850033 +-0.728481,52.054547 +-0.642977,51.419968 +-0.904628,51.443251 +-1.20243,51.729427 +-1.266901,51.458852 +-1.347133,51.789913 +-1.427146,51.612564 +-1.373522,52.022878 +-0.789941,52.051858 +-0.648023,51.526699 +-1.250118,51.752597 +-0.902936,51.534817 +-1.147566,51.691026 +-0.739376,52.077852 +-0.81003,51.808499 +-0.812363,51.410638 +-1.269022,51.752698 +-0.806546,52.068481 +-1.057323,51.46623 +-1.256276,51.786955 +-1.285087,51.608467 +-0.552947,51.579175 +-0.84166,51.413719 +-0.840556,51.731827 +-0.769668,51.808839 +-0.634816,51.520036 +-1.550335,51.48383 +-1.280427,51.669383 +-1.293701,51.502752 +-1.05908,51.724087 +-0.731834,51.55524 +-0.75236,51.400051 +-1.030275,51.398193 +-0.786271,51.997262 +-1.386673,51.866721 +-0.50238,51.567184 +-1.10852,51.738148 +-1.259081,51.77238 +-1.485487,51.786545 +-0.820414,51.424621 +-0.735137,51.642577 +-1.036191,51.756729 +-0.555495,51.497388 +-1.324992,52.052855 +-0.707813,52.062189 +-0.912731,51.445583 +-1.208893,51.735783 +-1.348644,51.703066 +-0.586567,51.582174 +-0.879548,51.454398 +-1.60401,51.770909 +-0.941079,51.45488 +-0.579734,51.508735 +-0.779766,52.106266 +-0.814682,51.401022 +-0.634685,51.484902 +-1.22398,51.770625 +-1.222464,51.739883 +-0.880926,51.425133 +-0.612536,51.513768 +-0.809061,51.817183 +-0.97577,51.45659 +-1.030162,52.057919 +-0.712078,51.504984 +-0.52087,51.560306 +-0.498685,51.527374 +-0.784949,51.629237 +-0.712254,51.628481 +-1.394997,51.889287 +-0.518138,51.536937 +-1.562132,51.857237 +-1.493446,51.796919 +-1.050581,51.48103 +-0.75189,51.661953 +-0.868947,52.033699 +-0.70733,51.412017 +-0.893169,52.007954 +-0.745111,52.036725 +-1.178652,51.661648 +-0.719511,51.412448 +-1.14468,51.732887 +-0.574999,51.529773 +-0.778755,51.610767 +-1.54494,51.496326 +-0.735234,51.630772 +-1.275415,51.752423 +-0.821331,51.818458 +-0.7847,51.628264 +-0.70239,52.011213 +-0.692087,51.605796 +-0.73676,51.664264 +-0.772509,51.566031 +-0.940506,51.475286 +-0.654009,51.434617 +-0.832633,51.725743 +-0.788043,52.015263 +-0.970653,51.452436 +-1.254413,51.403708 +-0.940686,51.434545 +-0.590017,51.51358 +-0.7277,51.776535 +-1.604672,51.6351 +-0.626695,51.48382 +-0.750641,52.063236 +-1.267946,51.783405 +-0.968659,51.430416 +-0.750866,52.012798 +-1.40129,51.593166 +-0.583548,51.508862 +-0.955473,51.453561 +-1.23806,51.75117 +-0.632246,51.718168 +-0.707693,51.532137 +-0.892384,51.865499 +-1.214305,51.730991 +-1.212493,51.860173 +-0.746938,51.415936 +-0.833966,51.824698 +-0.569131,51.481495 +-0.841519,51.427835 +-0.787245,51.461087 +-1.257617,51.752033 +-1.285044,51.670058 +-1.357043,52.067356 +-1.511452,51.783868 +-1.581819,51.763415 +-0.682605,51.587653 +-0.896994,51.435815 +-0.992843,51.448619 +-1.244007,51.749896 +-1.261671,51.470769 +-1.060508,51.741119 +-0.767433,51.586218 +-1.482012,51.452339 +-1.156326,51.398179 +-0.802699,51.368834 +-0.503868,51.494556 +-0.72006,51.521464 +-0.752745,51.63345 +-0.708006,52.03377 +-1.454949,51.749786 +-0.771946,51.41969 +-1.268978,51.752697 +-1.586402,51.654889 +-1.50552,51.781461 +-0.615184,51.520084 +-0.757964,52.046922 +-0.944353,51.452068 +-0.543029,51.500237 +-0.63316,51.515655 +-0.523934,51.536075 +-0.805897,52.068205 +-0.720253,51.524362 +-0.582674,51.51011 +-0.787339,51.426028 +-0.630065,51.392427 +-0.757176,52.039056 +-0.5793,51.522227 +-0.687791,52.022128 +-1.04776,51.398624 +-0.710623,51.577947 +-0.655992,51.403788 +-1.129498,51.406759 +-1.322043,51.994281 +-0.953505,51.453373 +-0.807482,51.817644 +-0.825647,51.822655 +-1.045725,51.445995 +-0.612238,51.508881 +-0.901001,51.437876 +-0.833878,51.464122 +-1.285004,52.114062 +-0.771463,51.524522 +-1.300295,51.806377 +-0.564009,51.500577 +-1.000527,51.457847 +-0.627691,51.472708 +-0.658475,51.538454 +-1.212626,51.939907 +-0.733478,52.028967 +-1.260646,51.753742 +-1.266486,51.752709 +-0.824152,51.420774 +-1.146925,51.756695 +-0.614982,51.51912 +-0.541498,51.505299 +-0.959826,51.442504 +-0.723271,51.523109 +-0.692076,51.563436 +-0.708597,51.70889 +-0.817201,52.051191 +-0.659617,51.546686 +-0.82085,51.363515 +-0.730076,51.971494 +-1.188833,51.787732 +-1.21654,51.959038 +-1.492083,51.587426 +-0.810023,52.023849 +-1.007336,51.445847 +-0.737652,51.76427 +-0.623206,51.483941 +-0.737514,51.536598 +-1.405086,51.789735 +-0.968445,51.453352 +-0.964853,51.46581 +-0.800748,52.036046 +-0.764065,52.030344 +-0.859805,51.755232 +-0.759854,52.050835 +-1.244195,51.749915 +-0.953344,51.441556 +-1.098053,51.776497 +-0.751496,51.628923 +-1.042041,51.457663 +-0.512206,51.520757 +-0.610934,51.707848 +-1.667143,51.711053 +-0.899078,51.446049 +-0.578035,51.517931 +-1.2035,51.955813 +-0.565066,51.521065 +-0.695251,51.496337 +-0.948587,51.416228 +-1.193228,51.736395 +-0.700303,51.703358 +-1.239285,51.750738 +-1.290461,51.747227 +-0.477512,51.559652 +-0.960296,51.486433 +-0.792647,51.430381 +-1.002048,51.446845 +-0.706315,51.578196 +-0.805132,51.416094 +-0.765874,51.62457 +-1.265929,51.64579 +-0.913876,51.698962 +-0.685559,51.507235 +-0.499947,51.534143 +-0.753972,51.405814 +-0.823855,51.822376 +-0.578472,51.51871 +-0.71707,51.51092 +-0.918897,51.773018 +-1.31268,51.665134 +-0.629269,51.470973 +-1.309646,51.461027 +-0.588101,51.530318 +-0.684917,51.58606 +-1.186646,51.466802 +-0.621628,51.514774 +-0.599593,51.51945 +-0.852436,51.418114 +-0.949965,51.452756 +-0.715957,52.044215 +-1.471988,51.786764 +-0.647512,51.532771 +-0.54346,51.562611 +-0.833533,51.827409 +-1.341718,51.790387 +-0.534659,51.582365 +-0.617737,51.529538 +-0.733679,52.063109 +-0.97838,51.688778 +-1.556019,51.781878 +-1.192748,51.725135 +-0.882295,51.94672 +-1.370912,51.981398 +-0.704423,51.500062 +-1.360832,51.826016 +-0.581517,51.508397 +-1.196792,51.763268 +-0.797675,51.806188 +-1.200384,51.877309 +-0.67526,52.036842 +-0.977136,51.455361 +-1.259725,51.755139 +-1.116082,51.878945 +-0.761667,51.413162 +-1.297431,51.619889 +-0.998205,51.452135 +-1.057966,51.991081 +-1.28197,51.371717 +-0.590391,51.516867 +-0.552728,51.588785 +-0.975867,51.467696 +-0.725743,51.646189 +-1.317694,51.709625 +-0.930386,51.447472 +-0.533333,51.48857 +-1.465872,51.904357 +-1.207132,51.761144 +-0.97363,51.453811 +-1.14933,51.799861 +-1.284792,51.794325 +-0.712108,51.49932 +-0.635979,51.596876 +-0.759617,52.064634 +-0.802437,52.033401 +-1.330528,52.057148 +-0.751602,51.62664 +-1.232724,51.741254 +-0.713549,51.651127 +-0.564723,51.500792 +-0.750989,51.627406 +-1.318501,51.39891 +-0.961931,51.45119 +-0.55991,51.507234 +-0.67667,51.421081 +-0.503737,51.520128 +-1.044836,51.456184 +-1.219351,51.706208 +-0.633352,51.52224 +-0.729769,51.532558 +-0.644821,51.477691 +-1.068551,51.377822 +-0.50935,51.484599 +-0.961645,51.444138 +-0.63257,51.53392 +-1.216853,51.736052 +-1.531235,51.718556 +-1.311742,52.072387 +-0.599049,51.510424 +-0.687822,52.184283 +-0.993128,51.451993 +-0.833703,51.706089 +-0.971785,51.752524 +-0.615697,51.504102 +-1.243704,51.967227 +-0.581453,51.567501 +-0.812708,51.819207 +-0.724669,51.676758 +-0.778361,51.616302 +-1.496285,51.785504 +-1.275094,51.678323 +-0.704021,52.148309 +-1.090003,51.849552 +-0.81972,52.097808 +-0.746127,52.031161 +-1.0015,51.741937 +-0.608236,51.522933 +-0.861578,51.650093 +-0.956058,51.491017 +-1.125141,51.599472 +-1.152131,51.415934 +-0.607886,51.712397 +-0.720307,51.895862 +-0.96114,51.45496 +-1.505012,51.781522 +-1.302694,51.478025 +-0.759561,52.042956 +-1.4228,51.528149 +-0.982351,51.857976 +-1.292467,51.753264 +-0.588507,51.50974 +-1.209374,51.596023 +-1.414921,51.798362 +-1.224648,51.710424 +-0.912809,51.69942 +-0.962553,51.436467 +-0.782048,51.590255 +-0.612772,51.716861 +-0.970049,51.414027 +-0.779338,51.79021 +-0.777591,51.644969 +-1.608302,51.738798 +-0.727416,51.643222 +-0.725032,51.989701 +-1.233416,51.746582 +-0.962927,51.433908 +-0.72809,51.73222 +-0.712187,51.883994 +-0.763436,51.636656 +-0.728399,51.537228 +-0.603236,51.683353 +-0.746271,52.059889 +-0.963488,51.454882 +-0.930578,51.442339 +-0.9366,51.75177 +-1.145851,51.569116 +-0.88013,51.430035 +-0.652012,51.478511 +-0.647832,51.484956 +-0.755584,51.759291 +-0.75871,51.59064 +-0.813568,51.800253 +-0.748833,52.01934 +-0.759688,51.42198 +-0.500278,51.516172 +-1.086203,51.5929 +-1.235272,51.747313 +-1.339975,52.061436 +-0.855424,51.586749 +-1.010801,51.869044 +-1.26081,51.764982 +-1.202489,51.729409 +-1.311886,51.609652 +-0.73284,51.42912 +-1.357851,51.475409 +-1.252909,51.73884 +-1.349237,51.789799 +-1.485508,51.784747 +-1.298969,51.751567 +-0.747488,52.035662 +-1.213203,51.716067 +-1.591543,51.703739 +-0.8156,51.43226 +-1.236875,51.73898 +-0.782961,51.639809 +-0.586828,51.582133 +-0.806187,51.810096 +-0.935284,51.850807 +-0.74057,51.393874 +-0.652069,51.391495 +-0.902243,51.844129 +-0.849591,51.494185 +-1.231687,51.606683 +-1.071511,51.43676 +-0.731012,52.078473 +-0.942278,51.452831 +-0.634043,51.519874 +-0.977645,51.464798 +-0.742669,52.059851 +-1.328507,51.898924 +-0.783502,51.529306 +-0.996189,51.992971 +-1.516041,51.7926 +-0.659346,51.52057 +-0.707599,52.031689 +-1.052768,51.451204 +-0.890163,51.454669 +-1.31614,51.851947 +-1.293428,51.669291 +-0.970127,51.42462 +-0.616632,51.407979 +-1.204287,51.749059 +-1.319271,52.072341 +-0.784783,52.039326 +-0.599759,51.51688 +-1.284746,51.819275 +-0.763157,51.417071 +-1.550364,51.483821 +-0.854759,51.414917 +-0.953006,51.472044 +-1.14392,51.687215 +-1.294829,51.575258 +-1.191806,51.674831 +-1.027316,51.651177 +-1.432597,51.812304 +-0.700474,51.992328 +-0.738766,52.021822 +-1.371296,51.522822 +-0.649861,51.520129 +-0.622964,51.529258 +-0.728545,51.520594 +-0.530458,51.599847 +-0.937322,51.454297 +-1.362359,52.076178 +-1.190026,51.902414 +-0.724075,51.985977 +-0.635208,51.752956 +-1.027267,51.945301 +-0.681736,51.561315 +-0.581981,51.482281 +-1.032067,51.452896 +-1.489238,51.756108 +-1.298056,51.615883 +-0.961693,51.42486 +-0.823865,51.423531 +-0.527573,51.483579 +-0.611473,51.698745 +-1.271834,51.752562 +-1.326586,51.384813 +-0.971832,51.435821 +-1.600042,51.64243 +-1.071659,51.398213 +-0.54088,51.510686 +-0.933421,51.45677 +-0.986537,52.001169 +-0.966373,51.744016 +-0.591852,51.846389 +-0.541634,51.585401 +-0.970471,51.413788 +-1.22943,51.74759 +-0.579732,51.575492 +-1.212819,51.956325 +-0.819624,51.360922 +-0.63466,51.398856 +-1.585962,51.765066 +-1.503906,51.648213 +-1.26831,51.752837 +-0.500483,51.516058 +-0.694197,51.665112 +-0.767854,51.612802 +-1.257356,51.752067 +-0.722827,51.637309 +-0.683902,51.411136 +-0.971916,51.451953 +-0.932585,51.688506 +-0.74936,51.628855 +-0.692658,52.101619 +-0.722787,51.989281 +-0.767079,51.609953 +-0.771227,52.043995 +-0.491291,51.494583 +-1.250625,51.752609 +-1.252994,51.609688 +-0.609392,51.491601 +-0.615246,51.521353 +-1.300052,51.672019 +-0.710919,51.444932 +-1.227737,51.742346 +-0.947078,51.473133 +-0.978886,51.4524 +-0.990339,51.766352 +-0.682382,51.464002 +-0.753823,51.508564 +-1.116546,51.742426 +-0.875302,51.404029 +-0.968328,51.433605 +-0.497578,51.562734 +-0.797277,51.404154 +-0.816971,52.042234 +-0.512958,51.469754 +-0.769775,51.613344 +-1.175169,51.664789 +-1.236114,51.746338 +-1.205522,51.751315 +-0.941274,51.475059 +-0.757983,52.030981 +-0.748216,51.62842 +-0.731365,51.413296 +-1.427171,51.790573 +-0.584157,51.462236 +-0.968921,51.41301 +-0.985065,51.39826 +-0.534363,51.583063 +-0.64686,51.532377 +-0.735503,52.035732 +-1.218447,51.731818 +-1.266971,51.788083 +-0.609377,51.511959 +-0.622948,51.486303 +-0.832108,51.410513 +-0.71086,52.082012 +-0.89106,51.474703 +-0.838078,51.881996 +-0.914688,51.4243 +-1.239518,51.397741 +-1.458537,51.476924 +-1.365708,51.992141 +-0.71731,51.412487 +-0.79184,51.416264 +-1.310117,52.018766 +-0.813129,51.815327 +-0.825754,51.823007 +-0.864457,51.446618 +-0.743665,51.613247 +-1.189949,51.862996 +-0.766163,52.032506 +-1.434007,51.493874 +-1.314757,51.706677 +-1.161292,51.914036 +-1.014924,51.444985 +-0.615249,51.562132 +-0.564098,51.500524 +-0.965714,51.465935 +-0.934644,51.444427 +-0.815529,52.062584 +-1.594778,51.91655 +-0.599973,51.468019 +-0.973003,51.413738 +-1.282827,51.752738 +-0.759713,51.631195 +-0.694323,52.040075 +-1.496194,51.775451 +-0.98096,51.415444 +-0.95686,51.447 +-0.696683,51.667693 +-1.579896,51.789518 +-1.303935,51.618696 +-0.719102,51.521687 +-0.618523,51.514045 +-0.740163,52.012045 +-1.289469,51.753192 +-0.626127,51.521894 +-1.054677,51.470264 +-1.099362,51.774817 +-1.232808,51.735447 +-0.755863,52.039626 +-1.358578,52.123125 +-1.244195,51.749915 +-0.868332,51.369558 +-0.551627,51.598905 +-0.542251,51.502952 +-1.200462,51.878614 +-0.980851,51.45141 +-0.716581,51.649722 +-0.642771,51.511828 +-0.938365,51.43537 +-0.949487,51.403315 +-1.398309,51.554416 +-0.795094,51.410641 +-0.770653,51.810458 +-1.330421,51.407557 +-1.266506,51.781031 +-0.952579,51.449812 +-1.319119,51.441516 +-0.977306,51.389102 +-1.310192,52.067874 +-0.869635,51.942742 +-0.496832,51.501767 +-0.771545,51.61142 +-1.076945,51.436956 +-0.837902,51.679443 +-1.588947,51.758693 +-0.559595,51.623147 +-0.665556,51.485644 +-0.814564,51.81482 +-1.265573,51.752766 +-0.722206,51.529239 +-1.250674,51.403801 +-0.876296,51.412743 +-1.322184,52.049539 +-0.751017,51.627425 +-0.974861,51.456663 +-0.855399,51.797719 +-0.625991,51.476078 +-0.727821,52.00436 +-1.167342,51.91157 +-0.715195,51.78914 +-0.767061,51.635678 +-1.192702,51.661017 +-0.776429,51.785198 +-1.302696,51.75506 +-0.802258,52.012261 +-0.90956,51.456686 +-0.899636,51.530551 +-0.741049,52.033409 +-0.906876,51.451535 +-0.808581,51.417811 +-0.970429,51.452147 +-0.615884,51.463209 +-0.75334,52.054858 +-0.707743,52.048954 +-0.672215,52.033822 +-0.591761,51.674619 +-0.796263,52.011409 +-0.972139,51.457413 +-1.330094,52.061794 +-1.337166,51.427278 +-0.649044,51.599329 +-0.828497,52.048624 +-0.62078,51.481278 +-1.181913,51.90011 +-0.813492,51.800378 +-1.301305,51.806733 +-0.769589,51.612757 +-1.262786,51.771792 +-1.248535,51.75371 +-0.77268,51.998362 +-0.918031,51.460001 +-0.839799,51.73877 +-0.797985,51.987366 +-1.229854,51.732874 +-0.900127,51.405982 +-0.681551,51.490861 +-1.107429,51.577921 +-0.977514,51.452586 +-0.537138,51.504687 +-0.871994,51.721919 +-0.623095,51.483337 +-1.082161,51.432249 +-1.232015,51.767693 +-0.896455,51.453407 +-1.197949,51.868005 +-1.200427,51.873264 +-0.757936,51.587242 +-1.23697,51.770324 +-1.375183,51.672586 +-1.248746,51.752372 +-1.147499,51.891513 +-0.963229,51.451085 +-0.918157,51.548994 +-0.619763,51.637429 +-1.288669,51.791229 +-1.490571,51.463076 +-1.023925,51.58356 +-0.622489,51.529234 +-1.415743,51.589607 +-0.775469,51.419691 +-1.225547,51.741684 +-0.975675,51.432518 +-0.612151,51.508431 +-0.748174,51.584243 +-0.829882,51.823848 +-0.766356,51.995284 +-1.364854,52.075131 +-0.637266,51.602116 +-1.267994,51.75083 +-0.972711,51.40112 +-0.805874,52.067989 +-0.503562,51.554484 +-0.720567,51.620596 +-0.721824,51.679164 +-1.424961,52.034765 +-0.828855,51.616358 +-0.749913,51.868001 +-0.773993,52.008959 +-1.268368,51.722294 +-1.326667,51.396862 +-0.659784,51.545942 +-0.764347,51.410834 +-0.528381,51.607815 +-0.912361,51.762752 +-1.586028,51.762567 +-1.287052,51.601043 +-0.746707,51.401241 +-0.968212,52.003663 +-1.515228,51.415588 +-0.767283,51.853708 +-0.609304,51.710508 +-0.583818,51.47135 +-0.700756,52.059549 +-1.394097,51.824358 +-1.065308,51.438293 +-0.720846,52.044089 +-1.366616,52.031032 +-0.593701,51.512815 +-0.572258,51.504481 +-1.291199,51.519129 +-0.746611,52.084223 +-0.744344,51.416664 +-1.155207,51.901252 +-0.767777,51.635928 +-0.510153,51.484717 +-1.588049,51.94964 +-1.202435,51.866498 +-1.129847,51.406563 +-0.760984,51.42301 +-1.282821,51.455156 +-0.702042,52.153547 +-0.872316,51.518935 +-0.944964,51.436805 +-0.733326,52.017834 +-0.708914,51.877053 +-0.521442,51.53643 +-0.77898,52.067669 +-1.235642,51.750247 +-1.217091,51.857165 +-0.660987,52.172878 +-0.890401,51.645891 +-0.753194,52.087314 +-0.507283,51.544793 +-0.74235,51.695813 +-0.974364,51.419109 +-0.760325,52.034863 +-1.050355,51.722479 +-0.614285,51.703814 +-0.675424,51.629582 +-1.22147,51.735354 +-0.830062,51.410672 +-1.483163,51.453674 +-0.941296,51.454854 +-0.527515,51.487643 +-1.390918,52.039341 +-1.092272,51.43525 +-0.565141,51.486572 +-0.592319,51.673421 +-1.459193,51.783756 +-0.612552,51.511825 +-0.736334,51.993824 +-1.090519,51.431532 +-0.749399,51.408499 +-1.203507,51.865813 +-1.320654,51.396261 +-0.742478,52.059894 +-0.662077,51.527237 +-1.238918,51.768232 +-0.907754,51.438272 +-1.378979,51.889671 +-1.13721,51.472923 +-0.760234,52.030223 +-0.759005,51.790941 +-1.378374,51.869276 +-0.815816,51.799125 +-0.665654,51.524698 +-1.296368,51.755787 +-0.772201,51.576395 +-1.296263,51.487904 +-1.206164,51.739469 +-0.628337,51.535165 +-0.534331,51.567452 +-0.77473,51.412912 +-1.310233,51.628201 +-0.750281,51.632138 +-0.647542,51.612962 +-1.296192,51.615008 +-1.143184,51.902199 +-0.897102,51.43667 +-0.6316,51.60998 +-0.755298,51.415774 +-0.641636,51.485064 +-0.60694,51.614942 +-0.611694,51.709511 +-0.702605,52.054661 +-1.236171,51.74811 +-0.771242,51.781871 +-0.808356,51.819712 +-1.206344,51.895215 +-1.335199,52.061796 +-0.952054,51.453279 +-0.761392,51.953468 +-0.85413,52.061302 +-0.596184,51.674708 +-0.987408,51.455531 +-0.986646,51.455498 +-0.977701,51.436501 +-1.355953,52.127948 +-0.929073,51.913069 +-1.357782,52.076863 +-1.351595,51.983101 +-1.244021,51.749896 +-1.258287,51.770388 +-0.752094,52.046177 +-0.721465,51.991182 +-1.02095,51.467317 +-0.806882,51.800284 +-0.734003,51.537387 +-0.510646,51.493464 +-0.858938,51.431314 +-1.278922,51.68135 +-0.822446,51.432329 +-0.495435,51.524481 +-0.995896,51.99367 +-1.327121,52.062631 +-1.046028,51.454216 +-0.768421,51.636133 +-1.2393,51.744642 +-1.286683,51.683528 +-0.775954,51.571003 +-1.245944,51.606415 +-0.975726,51.417997 +-1.019147,51.442628 +-0.742938,52.019592 +-0.645997,51.524553 +-0.772124,52.035211 +-0.734955,51.630948 +-1.195382,51.762719 +-1.497284,51.785634 +-0.556088,51.609822 +-0.581946,51.501065 +-0.844614,51.415186 +-1.316966,51.406427 +-0.702641,52.046875 +-0.710344,52.008234 +-0.804425,52.034285 +-0.615841,51.529794 +-0.960426,51.671762 +-1.45801,51.918724 +-0.582044,51.512764 +-0.812276,51.827331 +-0.582326,51.486943 +-0.943651,51.42951 +-0.752423,51.398811 +-1.481407,51.458747 +-1.649022,51.886793 +-0.735405,52.075859 +-0.643479,51.508869 +-0.609773,51.707483 +-1.144302,51.884656 +-0.594794,51.669638 +-0.785177,51.625032 +-1.25173,51.755008 +-1.518054,51.410708 +-0.657183,51.629357 +-1.606875,51.738011 +-0.817023,51.815654 +-0.966927,51.450452 +-1.553928,51.88372 +-0.831456,51.824134 +-0.801992,52.006927 +-0.907912,51.423778 +-0.98072,51.451472 +-0.557627,51.61868 +-0.663258,51.507073 +-0.758456,51.4181 +-0.714659,52.007121 +-1.065164,51.438283 +-0.692353,51.690484 +-1.137522,51.887394 +-1.149846,51.896529 +-0.778377,51.616266 +-0.949668,51.456926 +-0.711668,52.007269 +-0.974041,51.467581 +-1.204755,51.951479 +-1.299736,51.670003 +-0.615505,51.524224 +-1.583241,51.645006 +-0.741934,51.527429 +-0.976377,51.450679 +-0.622515,51.523596 +-0.566167,51.666685 +-0.738565,51.523121 +-0.962027,51.431067 +-0.963514,51.416864 +-0.704742,52.077594 +-0.852522,51.458327 +-0.841675,51.413728 +-0.876133,51.839845 +-0.811541,51.799037 +-1.142909,51.91589 +-0.831944,51.863584 +-0.568917,51.481429 +-1.30467,51.831191 +-0.774172,51.811241 +-0.815699,51.82742 +-1.262886,51.771901 +-1.294206,51.505489 +-0.744971,52.041741 +-0.71707,51.510902 +-1.058898,51.535938 +-1.291175,51.68396 +-1.003518,51.458628 +-1.331925,52.059359 +-0.736308,51.625415 +-1.345608,52.053223 +-0.788619,51.618368 +-1.202173,51.730046 +-0.777416,52.022886 +-0.693234,52.040414 +-0.748639,52.011668 +-0.517086,51.485884 +-0.779746,51.9935 +-0.756933,51.630868 +-1.204306,51.748807 +-1.061655,51.873696 +-0.722814,51.519345 +-1.33443,52.05272 +-0.752086,52.041223 +-1.244267,51.749934 +-1.07648,51.604701 +-0.825725,51.820759 +-1.246254,51.727127 +-0.984527,52.003741 +-0.597327,51.527524 +-0.488697,51.553853 +-0.965477,51.457318 +-0.711665,51.504809 +-0.622,52.086708 +-1.17974,51.775099 +-0.742238,51.515338 +-0.770454,51.57323 +-1.285104,51.793868 +-0.491746,51.560663 +-0.576445,51.465371 +-0.493463,51.526147 +-1.278237,51.808015 +-0.870478,51.858151 +-1.015955,51.453895 +-1.219305,51.72232 +-1.295236,51.670237 +-1.199805,51.762515 +-1.305499,51.621286 +-1.274392,51.368505 +-0.705675,51.603276 +-1.052966,51.828193 +-1.416929,52.029124 +-0.995387,51.448092 +-0.689729,52.026142 +-0.896096,51.439035 +-1.074015,51.536993 +-0.982432,51.447603 +-0.73751,51.625824 +-0.761308,51.630978 +-0.889901,51.422152 +-0.535462,51.573104 +-0.527993,51.484421 +-0.896984,51.79318 +-0.859693,51.475535 +-0.528005,51.501479 +-0.701888,52.054221 +-1.566502,51.76647 +-0.783871,52.060014 +-1.410862,51.722528 +-1.038316,51.459611 +-0.881434,51.941578 +-0.59248,51.507522 +-1.371199,51.660615 +-0.753314,51.618484 +-1.203985,51.946493 +-0.791823,51.380889 +-1.332791,51.863848 +-0.973704,51.469781 +-0.907809,51.661232 +-0.820643,51.817021 +-0.567302,51.672417 +-0.763511,52.038781 +-0.745085,51.627748 +-0.67197,51.410543 +-0.789094,51.371581 +-0.992509,51.457248 +-0.753174,51.617773 +-0.664339,52.034947 +-1.33935,52.060291 +-0.762183,51.631742 +-0.745625,52.016276 +-0.961766,51.412155 +-0.684284,51.587977 +-1.34494,52.071021 +-1.705147,51.784864 +-0.963655,51.482461 +-0.8254,51.823219 +-0.848634,51.834454 +-0.619695,51.496228 +-0.998872,51.451934 +-0.767676,51.407866 +-0.765771,51.617735 +-0.980885,51.694465 +-1.616791,51.783 +-0.614256,51.703805 +-0.706614,51.607342 +-1.257426,51.751303 +-1.41486,51.413098 +-0.619499,51.481748 +-1.19804,51.735358 +-0.757801,51.630293 +-0.528992,51.487841 +-0.953172,51.480516 +-0.819793,51.817894 +-0.862814,51.412532 +-0.762083,52.045086 +-0.865889,51.47707 +-1.021944,51.444387 +-0.977864,51.436296 +-1.338747,52.059604 +-0.584296,51.531684 +-1.198107,51.74221 +-1.386644,51.866694 +-0.780727,51.625579 +-1.547014,51.793793 +-0.717297,51.624355 +-0.700977,51.605985 +-1.095389,51.740116 +-0.750624,51.638579 +-1.482554,51.789472 +-0.814533,51.814892 +-0.749867,51.627215 +-1.06196,51.480933 +-0.781659,51.634455 +-1.251598,51.60593 +-0.817553,52.061588 +-0.72837,51.388059 +-1.267099,51.77306 +-0.810797,51.818487 +-0.97959,51.455014 +-1.433849,52.107777 +-0.835593,51.825182 +-0.981087,51.453103 +-1.503349,51.782495 +-0.692674,52.101566 +-1.016383,51.449412 +-0.968414,51.459817 +-1.294654,51.396107 +-0.970555,51.438228 +-0.978049,51.742652 +-0.796023,51.414661 +-0.970291,51.413507 +-0.799982,51.345814 +-0.779953,51.791583 +-1.237391,51.747938 +-0.772966,51.640164 +-1.103509,51.765938 +-0.624389,51.483406 +-0.654252,51.403327 +-0.580636,51.507982 +-1.20629,51.753748 +-0.77231,51.387313 +-1.207213,51.952359 +-1.089629,51.485728 +-0.94871,51.452871 +-0.728124,51.431623 +-1.004458,51.451802 +-0.582502,51.508679 +-0.812761,51.815539 +-1.201986,51.729981 +-0.792275,52.013391 +-0.784743,51.813545 +-1.016311,51.442703 +-1.305633,52.099404 +-0.600953,51.663552 +-1.206409,51.94766 +-0.577906,51.721264 +-0.577449,51.517771 +-0.960167,51.412258 +-0.965684,51.445613 +-0.59928,51.506183 +-0.822745,51.815388 +-0.713487,51.616544 +-1.597094,51.764646 +-1.670604,51.595013 +-0.981265,51.725237 +-0.813994,51.69717 +-1.038834,51.83217 +-0.749483,52.042526 +-1.183727,51.397141 +-0.74944,52.046176 +-0.622611,51.408993 +-1.676846,51.683828 +-1.233496,51.722162 +-1.199368,51.742956 +-0.997131,51.478823 +-1.261412,50.913833 +-1.375302,50.823889 +-1.07769,50.815622 +-0.983992,50.849457 +-1.525302,50.924043 +-1.019882,50.925023 +-1.482837,51.126207 +-1.400842,50.904956 +-1.376927,51.181091 +-0.950777,51.311698 +-1.363257,50.897347 +-1.405709,50.918119 +-1.09545,50.791228 +-1.697712,50.76134 +-1.799788,50.845972 +-1.373657,50.918185 +-1.336952,51.348635 +-0.888644,51.291207 +-1.165823,50.787877 +-1.112848,51.249077 +-1.117521,51.243717 +-0.895124,51.248259 +-1.309912,50.894967 +-1.483882,51.205513 +-1.49946,50.925815 +-1.105913,51.254284 +-1.374332,50.923009 +-1.273112,50.927036 +-1.168941,50.651037 +-1.39136,50.938467 +-1.437751,50.912936 +-1.005911,51.151641 +-0.821501,51.342058 +-1.37228,50.97929 +-1.390436,50.919811 +-0.988559,51.172948 +-1.431947,50.923519 +-1.491709,50.917688 +-1.388013,51.214654 +-1.516768,50.9156 +-1.074579,50.822908 +-1.089833,51.273251 +-1.05896,50.795445 +-0.745086,51.277042 +-1.550158,50.760019 +-1.139989,51.357147 +-1.323926,51.176778 +-1.166955,50.852668 +-1.037854,50.84691 +-0.858764,51.124661 +-0.945548,51.110072 +-0.995817,50.912013 +-1.079883,50.793571 +-1.287548,50.693189 +-1.180045,50.854793 +-1.094396,50.781139 +-1.529956,50.771144 +-1.088288,50.815183 +-1.044332,50.841351 +-1.557954,50.936095 +-1.133319,51.26529 +-1.44474,50.943615 +-1.066864,50.794699 +-1.300462,50.851854 +-1.349667,50.8981 +-0.842746,51.277184 +-1.332,51.087154 +-0.773667,51.247139 +-0.922025,51.317182 +-1.297914,50.704403 +-1.091716,51.360946 +-0.904868,51.036733 +-1.063951,50.80982 +-1.655463,50.761043 +-1.454778,50.916532 +-1.249866,50.865712 +-0.89778,51.307947 +-1.784514,50.939709 +-1.128014,51.332007 +-1.263129,50.728182 +-1.070579,50.847022 +-1.178387,50.630915 +-1.082238,50.791422 +-1.043758,51.266364 +-1.325248,50.898339 +-1.066667,50.794635 +-1.028728,50.865026 +-1.137417,50.843614 +-1.3628,50.887111 +-1.452351,50.934218 +-1.269337,50.739893 +-1.04573,50.808998 +-1.010385,50.864935 +-1.078458,50.801842 +-1.149727,50.791466 +-1.091633,50.841046 +-1.180976,50.847858 +-1.582327,50.822115 +-1.266144,50.914106 +-0.956693,51.350704 +-1.168052,50.721391 +-1.080006,51.270018 +-0.853738,51.097922 +-1.219576,50.986185 +-1.492443,50.912943 +-1.30514,50.981509 +-0.805179,51.272904 +-1.063527,50.803333 +-1.184989,50.727437 +-1.40265,50.914758 +-1.17399,51.095866 +-1.05194,50.846467 +-1.364217,50.895824 +-1.078732,50.810243 +-1.339433,50.938994 +-1.320207,50.895935 +-1.166102,50.723508 +-0.978789,50.861381 +-1.246175,50.923637 +-1.085652,50.79751 +-1.493192,50.912083 +-1.252215,51.052699 +-1.294626,50.942113 +-1.081309,50.787413 +-0.762184,51.236677 +-1.09568,50.799899 +-0.854494,51.264801 +-1.071689,50.836932 +-1.254493,50.8696 +-1.395371,50.919963 +-1.077153,50.847892 +-1.102279,50.790957 +-1.115133,50.862332 +-0.847214,51.169006 +-1.209046,51.317584 +-1.348476,50.874407 +-0.84022,51.282411 +-1.133191,51.262214 +-1.482495,50.918574 +-1.591498,51.205362 +-1.069109,50.803108 +-1.392011,50.960582 +-0.755654,51.247228 +-1.402861,50.870471 +-1.071907,50.834524 +-1.367579,51.085149 +-1.05574,50.80809 +-1.090665,50.790688 +-1.232321,50.918214 +-1.070803,50.807833 +-1.595265,50.916852 +-1.11197,51.249313 +-1.038045,51.031502 +-1.311491,50.896865 +-0.766132,51.261547 +-1.123988,50.848568 +-1.087733,50.830521 +-1.459139,50.942883 +-0.75022,51.30919 +-1.788606,50.884674 +-1.45344,50.925123 +-1.127875,51.334038 +-1.162438,50.822511 +-1.056723,50.783233 +-1.383357,51.319889 +-1.18633,50.854478 +-1.303759,50.912879 +-1.166219,50.728896 +-1.241525,51.191694 +-1.107727,50.869937 +-1.08143,50.796452 +-1.034736,50.877567 +-0.910133,51.015344 +-1.145936,51.231033 +-1.188237,50.727253 +-1.046141,50.866132 +-1.395199,50.932174 +-1.053901,50.79375 +-1.156456,50.655498 +-1.305105,50.724698 +-1.090666,50.790625 +-1.288772,51.097097 +-1.401861,50.917514 +-0.752714,51.304522 +-0.780833,51.297445 +-1.172861,50.823988 +-1.408035,50.898455 +-1.236978,50.633651 +-1.166582,50.650067 +-1.397842,51.365499 +-1.250138,50.724547 +-1.053574,50.853477 +-1.744337,50.851179 +-1.373664,50.890083 +-1.019014,50.932444 +-1.273573,50.744542 +-1.578273,50.744189 +-1.320299,51.055506 +-1.223083,51.19571 +-1.482113,50.899185 +-1.076826,50.803978 +-1.780057,50.773916 +-0.755394,51.094813 +-1.347954,50.662922 +-1.417061,51.228443 +-1.516599,50.929142 +-1.787313,50.918942 +-1.17294,50.801021 +-1.070414,50.83962 +-0.9999,50.945168 +-1.406583,50.850427 +-1.456671,50.92137 +-1.186923,50.835867 +-1.265888,50.877028 +-1.265902,50.877046 +-1.65135,50.747919 +-1.067432,50.814632 +-1.043307,50.81503 +-1.48271,50.918431 +-1.156356,50.893734 +-1.339673,51.230074 +-1.534096,51.116135 +-1.150704,50.854997 +-1.405144,50.947908 +-1.48429,51.19467 +-1.512767,51.205618 +-1.044484,50.82343 +-0.808568,51.32477 +-1.552414,50.768723 +-1.10621,50.798371 +-1.788579,50.780478 +-1.2235,50.626125 +-1.497692,50.919593 +-1.052563,50.803055 +-1.015976,50.898372 +-0.983033,50.863549 +-1.258102,50.866062 +-1.29509,51.090121 +-1.329728,51.068536 +-1.497187,50.906993 +-1.195169,50.795673 +-1.344929,50.935823 +-1.513315,51.027019 +-1.406107,50.943866 +-1.070704,51.283486 +-1.318057,51.095473 +-0.852419,51.19268 +-1.245275,50.677141 +-1.319288,50.869222 +-1.367669,50.971631 +-1.652498,50.753651 +-1.278458,50.701497 +-1.084676,50.784256 +-1.293634,50.702687 +-1.561101,50.754152 +-1.398519,50.914116 +-1.130937,50.796399 +-0.737232,51.275374 +-1.129579,50.794645 +-1.069553,51.270196 +-1.098954,50.849547 +-1.032379,50.892565 +-1.155462,50.812586 +-0.919377,51.003443 +-1.238994,51.093312 +-1.449837,50.947138 +-1.380497,50.936611 +-1.054428,50.801353 +-1.404939,50.921613 +-1.405579,50.907048 +-1.433728,50.943185 +-1.575275,50.867107 +-1.383277,50.982523 +-1.102982,50.795756 +-1.465356,51.22443 +-1.415385,50.906585 +-1.131188,50.798901 +-1.390426,50.969638 +-1.071838,50.838003 +-1.086712,50.802788 +-0.831987,51.292112 +-1.082621,50.788529 +-1.084323,51.267021 +-1.492114,50.901387 +-1.124374,50.883319 +-1.446506,50.921916 +-1.505581,51.121333 +-0.734279,51.273769 +-1.406475,50.912709 +-1.453319,50.93666 +-1.4539,50.924685 +-0.779309,51.302438 +-0.962912,51.035005 +-1.165487,50.925381 +-1.23643,50.93405 +-1.182845,50.865281 +-1.368149,50.909963 +-1.426536,50.868224 +-1.251803,50.705403 +-1.294915,50.957807 +-0.760614,51.259411 +-0.898715,51.059228 +-0.975171,51.147761 +-1.166807,50.652514 +-1.213733,50.809765 +-0.996254,50.849338 +-0.994892,50.853877 +-1.366743,50.947553 +-1.239743,50.86428 +-1.077322,50.801869 +-1.32799,51.02789 +-1.290973,50.864953 +-1.155618,50.901489 +-0.830493,51.342462 +-1.302966,50.923063 +-0.860818,51.287882 +-1.358949,51.362074 +-1.295304,50.698048 +-1.082095,51.257274 +-0.90056,51.304493 +-0.79765,51.327374 +-1.098662,50.79244 +-0.950238,51.156541 +-1.388797,50.830912 +-1.081531,50.815922 +-1.463243,50.947353 +-1.056939,50.798585 +-1.205139,50.867871 +-1.40562,50.90275 +-0.963891,51.026912 +-1.496867,51.209274 +-1.05725,51.273901 +-1.371548,50.885675 +-1.087073,50.803232 +-1.415041,50.92375 +-1.144345,50.93307 +-1.581763,50.920221 +-1.142676,50.81627 +-1.08971,50.803324 +-1.006081,50.884251 +-0.895479,51.045889 +-0.955122,50.867502 +-0.998086,50.920954 +-1.304108,51.044854 +-0.982995,50.865941 +-0.995979,51.132268 +-1.518012,51.191397 +-1.199447,50.991875 +-0.836584,51.30374 +-1.490847,50.913242 +-1.204869,51.350016 +-1.418883,50.934012 +-1.283088,50.675527 +-1.194271,50.90642 +-1.41956,50.927666 +-1.133413,50.790617 +-1.303615,50.922518 +-1.383703,50.916917 +-1.387825,50.999524 +-1.402741,50.903266 +-0.971312,51.359007 +-1.337093,50.970463 +-1.161076,50.732825 +-0.878311,51.085742 +-1.03175,50.870087 +-1.472761,50.946569 +-1.223637,51.004934 +-0.977135,51.135872 +-1.045333,50.828482 +-0.966708,51.158603 +-0.980019,51.0087 +-1.340765,51.098372 +-1.125571,51.324633 +-1.323201,50.897302 +-1.458769,50.918287 +-1.149755,51.35328 +-1.39785,50.905354 +-1.08269,50.787136 +-1.307158,51.06417 +-1.028675,51.061594 +-1.477472,51.226786 +-0.755366,51.246748 +-1.208237,50.821715 +-1.393501,50.939035 +-1.79118,50.849437 +-1.344703,50.893144 +-1.163579,50.821404 +-1.071925,50.788472 +-0.754125,51.279413 +-1.36303,50.891114 +-1.708181,50.755908 +-1.029363,51.165803 +-1.392048,50.900936 +-0.788448,51.289845 +-1.403248,50.912513 +-0.833657,51.235802 +-1.086629,50.809244 +-1.433843,50.93493 +-1.2979,51.064834 +-1.176603,50.834824 +-0.803151,51.294114 +-1.404679,50.908536 +-1.48549,51.206428 +-1.09325,50.801553 +-1.935811,50.986128 +-1.042186,50.835165 +-1.410172,50.916127 +-1.261442,51.111198 +-1.313698,51.063875 +-1.315664,50.916763 +-0.932346,51.004704 +-0.803187,51.271211 +-1.189599,51.017328 +-1.079776,51.270043 +-1.08022,50.794464 +-1.472205,51.006986 +-1.405765,50.906986 +-1.070998,50.853824 +-1.190385,50.968909 +-1.395523,50.900567 +-1.074717,50.818809 +-1.447826,50.930591 +-1.455108,50.887039 +-1.086167,50.792928 +-0.734706,51.274925 +-0.739402,51.297159 +-1.297506,50.710849 +-1.452747,50.915066 +-1.388012,50.944105 +-1.1523,50.792006 +-0.764506,51.288506 +-1.470039,50.924327 +-1.411957,51.243434 +-1.496894,50.907774 +-1.345761,50.702613 +-1.076137,50.792147 +-1.098854,51.266459 +-1.08492,50.816821 +-0.992232,50.85603 +-1.20415,50.859187 +-1.308457,50.685599 +-1.035789,51.057112 +-1.405902,50.905188 +-0.979975,51.158738 +-1.131681,51.241907 +-1.197828,51.250661 +-1.395766,50.916953 +-1.219129,50.918477 +-1.127677,50.905123 +-1.076795,50.804095 +-1.043019,50.835369 +-1.344489,51.04908 +-1.116644,50.847065 +-1.449989,50.884713 +-1.404681,50.910587 +-1.144698,50.791834 +-1.497869,50.990328 +-1.040424,50.865699 +-1.087566,51.250906 +-0.939682,50.852147 +-1.578252,50.888483 +-1.118663,50.858267 +-1.210717,50.851426 +-1.05581,50.816589 +-1.495279,50.987422 +-1.369213,50.968015 +-1.401408,50.937305 +-1.416654,50.929073 +-1.38857,50.899398 +-1.40427,50.904892 +-1.341216,51.165106 +-1.315857,51.262839 +-1.38688,50.963109 +-1.516908,51.210743 +-0.996807,50.915583 +-1.135422,51.2418 +-1.477723,51.22106 +-1.362571,50.895572 +-1.247902,50.906544 +-1.219281,50.599999 +-0.754368,51.110656 +-1.183042,50.845066 +-1.373344,50.685723 +-1.228878,50.850198 +-1.068323,50.846932 +-1.565803,50.962805 +-1.505256,51.207961 +-1.166561,50.79906 +-0.826126,51.257623 +-1.276707,51.288042 +-1.073648,50.800338 +-1.522471,51.212672 +-1.304518,50.715522 +-1.407657,50.906933 +-1.333868,51.245309 +-1.559848,51.21307 +-1.393354,50.938333 +-1.549576,50.758578 +-1.517925,50.67356 +-1.322994,51.067392 +-1.783757,50.826493 +-1.255128,50.868156 +-1.132219,50.799152 +-0.765942,51.324823 +-1.549062,51.063815 +-0.836556,51.303713 +-1.234666,50.847224 +-1.086887,50.782169 +-1.337517,50.914595 +-0.859311,51.117535 +-1.31653,51.066329 +-1.152651,50.854175 +-1.507463,50.917054 +-1.287638,50.690969 +-1.401297,50.899392 +-1.181807,50.943203 +-1.436906,50.921627 +-1.09943,50.784919 +-1.420075,50.914855 +-0.960112,51.144112 +-1.512709,51.19624 +-1.632765,51.173056 +-0.852943,51.263778 +-1.111473,51.250568 +-1.295062,51.090094 +-0.748522,51.238151 +-1.144937,50.673633 +-1.248803,50.858467 +-1.350779,50.70221 +-1.321134,50.94852 +-1.41294,50.934701 +-1.438443,51.198955 +-1.206548,50.933877 +-1.077316,50.801437 +-1.103376,50.850084 +-1.491894,50.91768 +-1.083245,50.803777 +-1.084247,50.80329 +-1.783033,50.841923 +-1.09357,50.846618 +-1.211151,50.845889 +-1.319566,51.063685 +-1.328463,50.875516 +-1.372278,50.914949 +-1.292586,50.701799 +-1.107206,51.279985 +-1.059036,50.790257 +-1.200371,50.850834 +-1.424008,50.93731 +-1.303055,50.760684 +-1.338527,50.914592 +-1.477708,51.184444 +-1.094133,50.795526 +-1.320708,51.072441 +-1.368768,50.969344 +-1.200187,50.911461 +-0.750164,51.280108 +-0.760817,51.25186 +-0.767263,51.252998 +-1.402477,50.853806 +-1.489834,51.212247 +-1.076933,50.799276 +-1.000038,50.864379 +-1.408504,50.909671 +-1.05415,50.834822 +-1.055538,50.846263 +-1.403245,50.905004 +-1.169705,50.830602 +-1.046227,50.806205 +-1.422732,50.913951 +-1.320692,51.152498 +-1.01064,50.850216 +-1.418686,50.918966 +-1.344159,51.107779 +-0.853692,51.245774 +-1.157439,50.813149 +-1.489302,50.988115 +-1.39105,50.928393 +-1.076755,50.804688 +-1.148951,50.720894 +-1.067417,50.813993 +-1.080194,50.813169 +-1.404643,50.909094 +-1.084198,50.930599 +-1.164462,50.728119 +-0.767633,51.292208 +-1.244441,50.855831 +-1.323644,50.889355 +-1.08458,50.785532 +-1.286704,50.702168 +-0.75346,51.29392 +-1.601082,50.72364 +-1.11746,51.264173 +-1.402,50.912255 +-1.068415,50.803057 +-1.149521,50.80364 +-0.796781,51.293671 +-1.2911,51.070898 +-0.812621,51.086253 +-1.78079,50.841541 +-1.200286,50.911461 +-1.475394,50.934 +-1.369117,50.948807 +-1.431346,50.921475 +-1.245567,51.214111 +-1.38442,50.939114 +-1.145976,50.723219 +-1.002777,50.856534 +-0.953841,51.158453 +-1.281361,50.865389 +-1.318799,51.037144 +-1.088519,50.829538 +-1.172424,50.851107 +-1.178989,50.631288 +-1.360228,50.908778 +-1.790463,50.796866 +-1.030553,50.871615 +-1.076854,50.82057 +-1.428579,50.918529 +-1.678212,50.881967 +-1.22612,50.840036 +-0.826717,51.342443 +-1.34615,50.987789 +-0.862628,51.281938 +-1.06142,51.076618 +-1.349506,51.347257 +-1.084932,51.257269 +-1.102693,50.799756 +-1.16651,50.862521 +-1.194596,50.840578 +-1.176208,50.834641 +-1.106202,51.275607 +-1.48366,50.914847 +-1.464264,50.920488 +-1.166807,50.724476 +-1.341844,51.336901 +-1.108365,50.851408 +-1.13149,51.232266 +-1.415992,50.927388 +-1.071404,50.82978 +-1.220847,50.850469 +-1.179089,51.04255 +-1.186545,51.205569 +-1.584397,50.923261 +-1.621416,51.198206 +-1.385452,50.934227 +-1.124575,50.85591 +-1.086424,50.803011 +-0.972503,50.974049 +-1.168298,50.853865 +-1.311011,50.898525 +-1.233998,50.918342 +-0.820352,51.276035 +-1.082452,50.790596 +-1.547298,50.997364 +-1.068822,50.846819 +-1.303903,50.913708 +-1.081605,50.787523 +-0.805526,51.30153 +-1.411007,50.848795 +-1.167884,50.853997 +-0.836206,51.107938 +-1.092794,51.269938 +-1.387242,50.912844 +-1.288513,50.702386 +-1.530641,50.946321 +-1.400953,50.900685 +-0.768331,51.290795 +-1.014192,50.875777 +-1.161111,51.046775 +-1.498899,51.00455 +-0.792706,51.268001 +-1.361016,50.960336 +-1.468904,51.136288 +-0.832481,51.270374 +-1.003041,51.012585 +-1.073069,50.838202 +-1.082086,50.847671 +-1.0802,51.0207 +-0.76014,51.288757 +-1.190245,51.360958 +-1.207153,50.682661 +-0.982521,50.858967 +-1.250341,50.860041 +-1.07682,50.798538 +-1.830503,50.86004 +-1.526858,50.891236 +-1.317996,50.896372 +-1.36131,50.895214 +-1.079148,50.814365 +-1.098898,50.849501 +-1.058486,50.814093 +-1.455387,51.239193 +-1.214435,50.83218 +-1.142622,50.792088 +-1.391134,50.948132 +-1.482273,50.707427 +-1.146254,50.700883 +-1.508774,51.185388 +-0.984671,50.851585 +-0.756886,51.293479 +-1.254512,50.868431 +-1.468292,50.986421 +-1.16625,50.787781 +-1.072406,50.853026 +-0.749569,51.274023 +-1.295054,50.692048 +-1.048129,50.825708 +-0.849695,51.296847 +-1.315001,51.069368 +-0.821916,51.323637 +-0.833758,51.269173 +-1.473265,50.987603 +-0.749502,51.274382 +-1.311004,51.057925 +-1.066124,50.82687 +-1.54166,50.76343 +-1.66069,50.749907 +-1.482017,50.916746 +-1.287896,50.693542 +-1.306379,50.928956 +-1.560303,50.754563 +-1.144539,51.288617 +-0.756428,51.273781 +-0.776638,51.303075 +-1.79146,50.847136 +-1.11378,51.304196 +-0.771927,51.313511 +-1.399764,50.679729 +-1.418639,50.914803 +-1.073271,50.78136 +-0.961519,50.985633 +-0.943705,51.005994 +-1.404926,50.910318 +-1.032171,50.89367 +-1.254467,50.917602 +-1.090991,50.825816 +-1.302407,51.050752 +-0.750864,51.270152 +-1.400422,50.909962 +-1.409823,50.908913 +-1.175024,50.633238 +-1.448574,50.934722 +-1.431503,50.910891 +-1.175488,50.850535 +-1.353148,50.872643 +-1.50892,51.214738 +-1.077329,51.277739 +-1.257515,51.333735 +-1.334729,50.890615 +-1.419407,50.70169 +-1.264271,50.870462 +-1.409521,51.10231 +-1.156188,50.812466 +-0.924272,51.274464 +-1.7461,50.793199 +-1.293234,50.884571 +-1.108475,51.265544 +-1.077419,50.815683 +-1.400884,50.905019 +-1.318299,51.069307 +-1.439058,50.874014 +-1.0768,50.798124 +-1.200229,50.911497 +-1.079045,50.810201 +-1.048856,50.846559 +-1.171587,50.80852 +-1.421156,50.930894 +-1.361142,50.904413 +-1.039571,50.885745 +-1.198188,50.866313 +-1.055203,50.791098 +-1.242975,50.848087 +-1.77301,50.884969 +-1.077141,50.800231 +-1.071294,50.803134 +-1.320491,50.895946 +-1.154473,50.66275 +-1.632466,50.759255 +-1.65718,50.770571 +-1.477996,50.968525 +-1.248329,50.887078 +-1.599282,50.776897 +-1.151942,50.850168 +-1.29444,50.888526 +-1.727638,50.94763 +-1.332912,50.92331 +-1.583748,50.745261 +-1.341805,51.102578 +-1.539488,50.6813 +-1.071584,50.834314 +-1.299984,50.963439 +-0.930511,51.260727 +-1.133179,51.255209 +-1.071306,51.284912 +-0.827081,51.119123 +-1.095135,50.792854 +-1.60353,50.911808 +-1.354993,50.919145 +-1.148815,50.803428 +-0.962485,51.226377 +-1.337353,51.294902 +-1.004295,51.079824 +-1.207139,50.596059 +-1.074985,50.684359 +-1.317611,51.066587 +-1.087761,50.8058 +-0.766708,51.312818 +-1.002407,50.873896 +-1.485689,50.916583 +-0.930838,51.008305 +-1.415414,50.918959 +-1.357571,50.957161 +-1.044042,50.81518 +-1.082063,50.848138 +-1.215346,51.033402 +-1.257197,50.973085 +-1.532755,50.988261 +-1.254438,50.86951 +-1.08848,50.782694 +-1.40104,50.902781 +-1.49201,50.912258 +-0.78319,51.292901 +-1.51603,50.69964 +-1.404488,50.950197 +-1.183951,50.899622 +-1.304814,50.963306 +-0.805634,51.078125 +-0.773494,51.324687 +-1.462568,50.984956 +-1.400827,50.90501 +-1.177548,50.850567 +-1.372981,50.897526 +-1.290284,50.700463 +-1.063872,50.809523 +-1.291608,51.069445 +-0.962272,51.281658 +-1.313165,50.923249 +-1.369285,50.940634 +-1.492436,50.917538 +-1.116564,51.289182 +-1.072383,50.795454 +-1.008399,50.86544 +-1.177144,50.820178 +-0.765193,51.291229 +-1.441846,50.926192 +-1.159917,50.679552 +-1.443531,50.922055 +-1.105085,51.136633 +-1.13649,51.252131 +-1.344447,51.108599 +-1.417116,50.914867 +-1.366628,50.901475 +-1.07262,50.836499 +-1.017276,51.124122 +-1.710176,50.756569 +-0.989286,50.870078 +-1.371394,50.89713 +-1.046342,50.891142 +-0.979101,50.816465 +-1.058947,50.795373 +-1.770842,50.851557 +-1.440605,50.913354 +-1.080438,50.797829 +-1.077032,50.799268 +-1.151658,50.814933 +-0.903286,51.305058 +-0.843427,51.195172 +-1.39209,50.898769 +-1.094147,50.850543 +-1.65856,50.746538 +-1.453243,51.210967 +-0.977238,51.136997 +-0.926122,51.256568 +-1.375974,51.337393 +-1.480753,51.206335 +-1.625722,50.760402 +-1.157517,50.693455 +-1.183132,50.703845 +-1.383737,50.834527 +-1.181303,50.607122 +-1.404819,50.948814 +-1.39106,50.901452 +-1.088099,50.846027 +-1.214754,50.822515 +-1.731039,50.853847 +-1.071188,50.797756 +-1.321705,51.052097 +-0.996658,50.84775 +-0.986139,50.863162 +-1.249179,50.858919 +-1.448009,50.9224 +-1.506946,51.2092 +-1.156516,50.860417 +-1.105595,50.852871 +-1.331406,50.901306 +-1.420756,50.933284 +-1.655973,50.755352 +-1.103734,50.846939 +-0.98444,50.848472 +-1.11617,51.261925 +-1.253378,50.873576 +-1.347288,50.914668 +-1.23147,50.918073 +-0.804376,51.070441 +-1.088179,51.267726 +-1.298058,51.051562 +-1.143152,50.683081 +-1.64289,50.801687 +-1.346174,51.154307 +-1.484427,50.912351 +-1.49039,50.915974 +-0.809377,51.12916 +-1.173312,50.857111 +-1.187272,50.627335 +-0.844958,51.220357 +-1.093268,50.683918 +-1.056406,50.846198 +-1.36751,50.896246 +-1.454666,50.923708 +-1.08126,50.822466 +-1.425726,50.911052 +-1.263102,50.596085 +-1.426189,50.930091 +-1.370398,51.353549 +-1.066569,50.794562 +-1.065678,50.848494 +-1.344463,50.935542 +-1.491611,51.294027 +-1.112361,51.27515 +-1.345697,50.912492 +-1.570119,50.871512 +-1.213086,50.824617 +-1.144866,50.673633 +-1.159326,50.923008 +-0.768565,51.260053 +-1.163608,51.08796 +-1.3597,50.908919 +-1.770995,50.843536 +-0.783463,51.254894 +-1.350928,51.007841 +-1.283275,50.654844 +-1.085188,50.835078 +-1.222014,50.631304 +-1.057772,50.793161 +-1.427015,50.917308 +-1.379084,51.115191 +-1.355314,50.998891 +-1.367133,50.981726 +-1.033418,50.880829 +-1.293557,50.965685 +-1.439939,50.959338 +-1.351285,50.877884 +-1.443434,50.91352 +-1.383063,51.236875 +-1.299072,51.068501 +-1.59655,50.744892 +-1.339338,50.914606 +-1.354651,51.176969 +-1.164664,50.811547 +-1.377506,50.970883 +-1.395155,50.919063 +-0.75438,51.295971 +-1.33451,51.041605 +-0.76704,51.2924 +-1.168312,50.853847 +-1.768801,50.824675 +-1.46965,50.923489 +-1.072184,50.795434 +-1.066683,51.262575 +-1.040812,50.907698 +-0.933811,51.006705 +-1.337049,51.174443 +-0.954851,51.328127 +-0.957759,51.277689 +-1.07494,50.822596 +-1.366582,50.886026 +-1.311742,51.073603 +-0.837181,51.102111 +-0.948878,51.315053 +-1.161158,50.729831 +-0.740377,51.300344 +-1.559045,50.972824 +-1.032364,50.892583 +-1.207238,50.682644 +-1.068923,51.26235 +-1.077391,50.801249 +-1.191049,51.012698 +-1.147673,50.802206 +-1.054829,51.21296 +-1.042318,51.263259 +-1.015825,50.902858 +-1.451747,50.980778 +-1.517002,51.211301 +-1.363072,50.897355 +-1.305159,50.96597 +-1.493119,51.218223 +-0.903286,51.305058 +-1.051866,50.801755 +-0.931528,50.860211 +-1.079636,50.793839 +-0.946309,50.860651 +-1.174564,50.856203 +-0.986098,50.848018 +-1.361203,50.965409 +-1.131655,51.22654 +-1.186901,50.683268 +-1.087379,50.802056 +-1.558303,50.748701 +-1.131692,50.855946 +-1.065138,50.853453 +-1.344094,50.882862 +-0.776595,51.303093 +-1.254404,50.875184 +-1.355395,50.976599 +-1.176843,50.826813 +-1.128931,50.67365 +-1.085903,50.849355 +-1.265472,50.671667 +-1.055104,50.791062 +-1.336578,51.191328 +-1.366608,50.703484 +-0.9085,51.31025 +-1.564829,50.917723 +-1.33898,51.175461 +-1.099101,51.257478 +-0.950451,51.342331 +-1.030702,50.878109 +-1.317508,50.896729 +-1.523896,50.965654 +-1.307435,51.060907 +-1.363149,50.97827 +-0.934645,50.86122 +-1.16691,50.916597 +-1.051449,51.17468 +-1.387626,50.912792 +-1.298612,51.102758 +-1.439616,50.669406 +-1.176858,50.858269 +-1.510798,51.094136 +-1.065079,50.820854 +-1.150481,50.792946 +-0.909978,51.01528 +-1.082135,50.793786 +-1.219589,50.833923 +-1.029982,50.881305 +-1.058779,50.782575 +-1.051716,51.277372 +-0.875025,51.118785 +-1.376533,50.92329 +-1.406751,50.917836 +-1.415317,50.678747 +-1.375327,50.917726 +-1.928655,50.988714 +-1.402174,50.914198 +-1.255055,50.868228 +-1.298087,51.051508 +-1.366892,50.889346 +-1.395258,50.907823 +-1.44112,50.920236 +-1.310251,51.061544 +-1.517031,51.211265 +-1.373496,50.9757 +-1.143394,50.977899 +-1.268675,50.914167 +-1.404775,50.911037 +-1.328212,51.038143 +-1.019582,51.068461 +-1.524728,50.683786 +-0.846393,51.152029 +-1.189887,50.618324 +-1.136395,50.661718 +-1.283087,50.67559 +-1.444961,50.974074 +-1.067583,50.843428 +-1.321252,51.072309 +-1.551893,50.772759 +-1.758846,50.957662 +-1.150986,50.8042 +-1.116429,51.27305 +-1.073547,50.83201 +-1.462012,51.210297 +-1.000783,51.333284 +-0.977736,51.144241 +-1.104585,51.252548 +-1.408282,50.699107 +-0.988354,50.856671 +-0.734985,51.275224 +-0.976276,51.148193 +-1.428691,50.918656 +-1.300625,51.050705 +-0.790156,51.30344 +-1.595959,51.23542 +-0.752085,51.238818 +-1.09144,50.793922 +-1.132665,51.082762 +-1.417417,50.686284 +-1.034314,51.017551 +-1.412656,50.915465 +-1.415168,50.936349 +-1.387965,51.182633 +-1.165196,51.357033 +-0.992043,50.786307 +-1.365526,50.896802 +-1.244588,50.886316 +-1.077201,50.800078 +-1.404939,50.921613 +-1.41281,50.908892 +-1.594726,50.724688 +-0.978556,50.81414 +-0.958886,50.861178 +-1.436236,50.921795 +-0.985965,50.864618 +-1.198176,50.807357 +-1.072256,50.809014 +-1.198791,50.991062 +-1.658953,50.743149 +-1.090949,50.841139 +-1.325352,51.367074 +-1.492997,51.217566 +-1.371791,50.897213 +-1.372536,50.901021 +-1.174377,50.82577 +-1.312775,50.923634 +-1.047627,50.853177 +-1.429275,50.922121 +-1.159149,50.815895 +-1.048586,50.785064 +-1.036004,50.879484 +-1.328418,51.067315 +-1.792272,50.849736 +-1.565449,50.962687 +-1.443348,50.913511 +-1.043355,51.296844 +-1.60168,51.203176 +-1.076428,50.795351 +-1.318694,51.058905 +-1.054619,50.816525 +-0.750823,51.308135 +-1.21542,50.595935 +-1.247803,50.906516 +-0.779084,51.330923 +-1.087284,50.802559 +-1.050836,50.853266 +-1.321854,51.063392 +-0.750672,51.307369 +-1.362603,50.897388 +-1.435098,50.912356 +-1.244552,51.191228 +-1.387832,50.94807 +-1.425619,50.916294 +-1.022138,50.90292 +-1.283582,50.676546 +-1.124767,50.85173 +-1.325598,51.060087 +-1.083015,51.266498 +-1.00881,50.907709 +-0.765014,51.286138 +-1.542444,51.200945 +-1.233941,50.850672 +-1.387791,50.927342 +-1.534179,50.954105 +-1.135178,50.79956 +-1.080765,50.815889 +-1.150918,50.804073 +-1.377093,50.935712 +-1.036565,51.134489 +-1.021179,50.878102 +-1.268129,50.721954 +-1.600981,50.785509 +-1.033441,50.878321 +-1.024516,50.869398 +-1.300737,51.087763 +-1.476744,51.21905 +-1.406685,50.938707 +-1.297302,50.659085 +-1.174377,50.852326 +-1.15795,50.656579 +-1.303949,50.890543 +-1.122711,51.23373 +-1.481912,51.207617 +-1.351789,50.87947 +-1.342391,50.930072 +-1.054752,51.260779 +-1.480613,51.193287 +-0.981627,50.951512 +-1.512303,50.781818 +-1.10812,51.266144 +-1.49224,51.225224 +-1.21176,50.839239 +-1.396696,50.919799 +-1.099857,51.248123 +-0.985734,50.790093 +-1.459386,50.871133 +-0.821955,51.259892 +-1.122855,50.846824 +-1.068488,51.275358 +-1.014413,50.873378 +-1.311054,50.898526 +-1.155491,51.322434 +-1.250997,51.141435 +-1.13563,51.262061 +-1.271485,50.607675 +-1.077699,50.809363 +-1.534394,51.214375 +-1.104412,51.265918 +-1.31271,50.899084 +-0.955953,50.779344 +-1.092853,50.821307 +-0.850313,51.296835 +-0.751661,51.269307 +-0.743032,51.241959 +-0.75474,51.245555 +-1.256741,51.36121 +-1.098355,51.271473 +-1.35642,51.364191 +-1.394483,50.866687 +-1.096124,51.248526 +-0.870922,51.074349 +-1.168455,50.853794 +-1.406286,50.90519 +-1.082295,50.7827 +-0.933303,51.254664 +-1.403579,50.912227 +-1.08218,51.257293 +-1.141855,50.93458 +-1.362358,50.895544 +-1.163925,50.852143 +-1.404489,50.950188 +-1.472947,50.946453 +-1.079705,50.817103 +-1.087237,50.803512 +-1.078661,50.810252 +-1.613969,50.925782 +-1.177962,50.825337 +-1.082604,50.789375 +-1.485399,51.213279 +-1.113944,51.263625 +-1.789376,50.928208 +-1.402815,50.955243 +-0.763531,51.248445 +-1.193851,50.811221 +-0.973535,50.874797 +-0.99191,50.849867 +-1.369165,50.921065 +-1.118131,51.234316 +-1.076674,50.779292 +-1.183952,50.899532 +-1.383405,50.702234 +-1.164733,50.81402 +-1.15811,50.866571 +-1.395343,50.918812 +-0.825906,51.321357 +-1.144009,50.789194 +-1.141768,50.934678 +-1.220771,50.853364 +-1.43061,50.921093 +-1.772276,50.851686 +-1.146639,50.8029 +-1.138566,50.791986 +-1.571957,50.8167 +-1.036098,50.879737 +-0.765039,51.313555 +-1.086185,50.809475 +-1.418436,50.934504 +-1.091222,50.798552 +-1.357417,50.962178 +-0.85686,51.346194 +-1.071102,51.282941 +-1.3427,51.141159 +-1.222986,50.613558 +-1.306411,50.93731 +-1.40161,50.864952 +-0.9992,50.864354 +-0.860125,51.118694 +-0.860522,51.320719 +-1.193937,51.08784 +-1.146005,50.723174 +-1.116724,51.263673 +-0.782239,51.135651 +-1.344498,50.905723 +-0.90978,51.181035 +-1.078395,50.81873 +-1.073874,50.849926 +-1.355589,50.98624 +-1.303186,51.066367 +-1.399132,50.906332 +-1.024728,51.16652 +-0.950794,51.156627 +-1.40717,50.940796 +-1.330388,51.167193 +-1.171601,50.829393 +-1.383043,50.933477 +-0.98582,50.856253 +-1.087508,50.80855 +-1.056669,51.267224 +-1.096219,51.25903 +-1.435193,50.959792 +-1.094832,50.787968 +-1.774857,50.958853 +-1.392232,50.926151 +-1.172001,50.808361 +-1.125717,51.245181 +-0.949939,51.342101 +-1.39684,50.906473 +-1.743229,50.851185 +-1.057261,50.820638 +-1.489513,51.010417 +-0.847905,51.097038 +-0.885326,51.219723 +-1.076586,50.78662 +-1.709466,50.756729 +-1.064134,50.794291 +-0.916612,51.345323 +-1.391586,50.926598 +-1.163766,50.794256 +-1.063585,51.227382 +-1.389796,50.969833 +-1.093761,50.795676 +-1.64916,51.18021 +-1.220747,50.835154 +-1.389528,50.909879 +-1.400229,50.677681 +-1.503441,51.016933 +-1.579213,50.768922 +-1.053588,51.288843 +-1.397802,50.907971 +-1.406266,50.914542 +-1.536914,51.214304 +-0.770026,51.111154 +-1.46269,50.92986 +-1.476337,51.218338 +-1.094175,50.856443 +-0.753529,51.273895 +-0.760559,51.289688 +-0.927291,51.182267 +-1.08341,51.272598 +-0.952545,51.003304 +-1.402721,50.907043 +-1.050392,51.187836 +-1.388135,50.825081 +-1.082257,50.788248 +-1.060578,50.782671 +-1.286618,50.702194 +-1.408812,50.899997 +-1.347136,51.011974 +-0.81788,51.339926 +-1.080852,50.931409 +-1.088836,50.796492 +-1.365694,50.82363 +-1.282932,50.931521 +-1.372374,50.917306 +-1.07571,50.840408 +-1.354515,50.686934 +-1.350683,51.008047 +-1.202156,50.821152 +-1.104333,51.255189 +-0.956913,51.159856 +-1.076956,50.820436 +-1.005376,51.189836 +-1.085063,50.815329 +-1.10304,51.262742 +-1.088216,51.011087 +-1.072705,50.836517 +-1.154665,51.219721 +-1.338636,50.923999 +-1.138969,51.259783 +-1.395443,50.920962 +-1.133518,51.240977 +-1.409327,50.847986 +-1.107948,51.265387 +-0.747714,51.274246 +-0.763531,51.248445 +-1.179927,50.710657 +-1.033719,51.325405 +-1.437638,50.701168 +-1.121082,51.278669 +-1.192223,50.793692 +-0.838867,51.220594 +-1.434379,50.959932 +-1.353577,50.647009 +-1.644618,50.770264 +-1.248758,50.852405 +-0.876823,51.348374 +-1.392792,50.92575 +-1.19556,50.865459 +-1.338596,50.969932 +-1.007724,50.899948 +-1.026192,50.867388 +-1.435941,50.934401 +-1.341438,50.876624 +-1.264121,51.009881 +-0.983106,51.267364 +-1.076699,50.786648 +-1.152505,50.805739 +-0.836297,51.219732 +-1.345226,51.135391 +-1.22692,50.681355 +-1.434895,50.924423 +-1.050779,50.853301 +-1.350622,50.97053 +-0.854326,51.137693 +-1.406784,50.938744 +-0.979757,50.87299 +-1.183773,50.9464 +-1.183644,50.84392 +-1.196996,51.289429 +-1.386881,50.974952 +-1.189017,50.852698 +-0.868362,51.164033 +-1.298158,50.966549 +-1.379644,51.331343 +-1.027654,50.840171 +-1.456587,50.962735 +-1.397375,50.897007 +-1.435485,50.923851 +-1.39957,50.910947 +-1.095621,51.263935 +-1.298222,50.699855 +-1.074608,50.822855 +-0.95045,51.342367 +-1.122706,51.254348 +-1.11292,50.84719 +-1.376309,50.934772 +-1.110275,51.26215 +-1.408275,50.962536 +-1.404318,50.905585 +-1.462939,50.827823 +-1.372149,51.086118 +-1.078689,50.810279 +-1.344052,50.882781 +-0.977687,50.866299 +-1.121082,51.278669 +-1.400985,50.956951 +-1.337523,51.296 +-1.578979,50.768202 +-1.185126,50.852608 +-1.063411,50.794222 +-1.475552,50.921178 +-1.375009,50.897923 +-1.066418,50.846278 +-1.098129,50.787661 +-1.008083,50.909789 +-1.400364,50.931058 +-1.082288,50.807699 +-1.152668,50.858726 +-1.168615,50.863175 +-1.460817,51.160538 +-0.988865,50.795533 +-1.00446,51.015574 +-1.087138,51.261666 +-1.48446,50.915795 +-1.412839,50.678842 +-1.382721,50.963213 +-0.838613,51.183435 +-1.151064,51.227878 +-1.058244,50.899503 +-1.087123,50.855264 +-1.486769,50.945165 +-0.844472,51.234074 +-1.387787,50.927639 +-1.568366,51.240617 +-1.492356,51.213346 +-1.068463,50.847005 +-1.219719,50.833789 +-1.147728,50.683636 +-1.069188,50.839124 +-1.372779,50.97289 +-0.951411,51.124332 +-1.454423,51.148567 +-1.047183,50.794073 +-1.320638,50.623314 +-1.250897,50.848381 +-1.477034,51.221272 +-1.573636,50.919131 +-1.353083,51.005632 +-1.16128,50.732521 +-0.832109,51.291259 +-1.374145,50.933781 +-1.771808,50.84861 +-1.28019,50.862972 +-1.092607,51.272885 +-1.141894,50.673629 +-1.074154,50.796979 +-1.087209,50.80352 +-1.309223,50.741422 +-1.400974,50.91903 +-1.31104,50.89849 +-1.327469,50.929753 +-1.388774,50.906611 +-1.161047,51.090603 +-1.13382,50.859927 +-1.34632,50.90862 +-1.077976,50.864517 +-1.347858,50.907523 +-1.219531,50.83912 +-1.068506,50.846996 +-1.209696,50.859746 +-1.556106,50.768234 +-0.917848,51.17558 +-0.745755,51.245603 +-1.30334,50.7119 +-1.788806,50.846672 +-1.590603,50.869346 +-0.978592,50.850858 +-1.011807,51.07567 +-1.077302,50.8007 +-1.250879,51.190217 +-1.484841,50.916084 +-1.288742,50.965799 +-1.505456,51.170528 +-0.970125,51.152186 +-1.069284,51.038248 +-1.523882,50.682082 +-1.17611,50.728795 +-0.804356,51.307363 +-0.976999,50.788559 +-1.716195,50.809191 +-1.401553,50.907136 +-1.077271,50.808038 +-1.384939,50.91597 +-1.774104,50.843839 +-1.599577,51.164971 +-1.772134,50.845967 +-1.070108,51.271117 +-1.041086,50.846577 +-1.013387,50.93005 +-1.46328,51.214493 +-1.305052,51.236123 +-1.077618,50.815675 +-1.304193,50.937135 +-0.87481,51.118828 +-1.010002,50.864932 +-1.376253,51.173759 +-1.073371,50.799284 +-1.107516,50.857166 +-0.864256,51.110488 +-1.294945,50.751283 +-1.490846,50.913296 +-0.983238,50.847562 +-1.360166,50.907096 +-0.931661,51.323655 +-1.401117,50.911198 +-1.375228,50.917735 +-1.380293,50.895182 +-0.970385,50.868123 +-1.043521,51.111876 +-0.766069,51.325436 +-1.36229,50.97028 +-1.076619,50.795784 +-0.987949,50.848475 +-1.422282,50.967498 +-0.88229,51.347356 +-1.548699,50.756929 +-1.070025,50.862053 +-1.066271,51.258129 +-1.367999,50.889495 +-1.082884,50.819287 +-1.286671,50.753759 +-0.977786,50.833126 +-1.194228,50.90642 +-1.406054,50.908867 +-0.750367,51.110703 +-0.982896,50.865931 +-1.787194,50.923168 +-1.364334,50.915428 +-1.352607,50.889105 +-1.078304,50.803855 +-1.073737,50.837479 +-0.937281,50.847791 +-1.147049,50.803002 +-1.316105,50.918743 +-1.131531,50.667716 +-1.086381,50.803019 +-1.042689,50.834153 +-1.401026,50.905011 +-1.179312,50.861713 +-0.977701,50.866281 +-0.811501,51.310691 +-1.057444,50.808059 +-1.416836,50.851864 +-1.650253,51.194564 +-1.303025,50.922938 +-1.073901,50.780358 +-0.978564,50.850839 +-1.167104,50.828389 +-1.507529,50.766357 +-1.209501,50.951055 +-1.094652,50.786987 +-1.367985,50.889486 +-1.13859,50.848605 +-0.768306,51.260086 +-1.040013,50.865632 +-1.254015,50.871117 +-1.150858,50.802679 +-1.065145,50.786988 +-1.477752,50.920387 +-0.913863,51.295148 +-1.415466,50.913672 +-1.381082,51.060825 +-1.079545,50.821626 +-1.350086,50.97014 +-1.312193,50.995894 +-1.144897,50.817509 +-1.411311,50.902527 +-1.082322,51.266736 +-1.074126,50.787644 +-1.760906,50.849973 +-1.215322,50.595908 +-0.739573,51.237992 +-1.164944,50.82448 +-1.559647,51.21307 +-1.080466,50.797856 +-1.343085,50.907109 +-1.451466,51.219501 +-1.172164,50.812832 +-1.062201,51.285612 +-1.28731,51.181012 +-1.351565,50.967262 +-1.514631,50.700767 +-1.211135,50.808084 +-1.193404,50.798466 +-1.332298,50.919485 +-1.367254,50.896263 +-1.407832,50.907716 +-1.523795,50.682334 +-0.973392,51.34239 +-1.28861,50.697827 +-1.415105,50.925477 +-1.432665,50.944034 +-1.40134,50.899365 +-1.463194,51.214556 +-1.048095,51.290966 +-1.485289,50.997989 +-1.064756,50.818558 +-1.179329,50.645049 +-1.165567,50.803882 +-1.059577,50.782402 +-0.964015,50.8484 +-1.155063,50.783546 +-1.356116,50.969751 +-1.33896,51.052664 +-1.275896,51.18265 +-1.40255,50.91482 +-1.363271,50.897365 +-1.303674,50.712244 +-1.232892,50.960482 +-1.263703,51.243954 +-0.989449,50.939404 +-0.805891,51.11916 +-1.052787,50.841816 +-1.38632,50.92345 +-1.349979,50.975814 +-1.076289,50.795943 +-1.226585,50.724968 +-1.452882,50.859853 +-0.978339,51.275469 +-1.49768,50.945806 +-1.15648,50.812756 +-1.549913,50.881606 +-1.111118,50.8508 +-1.177457,50.629919 +-1.079606,50.794684 +-1.528183,50.683701 +-1.31569,50.919865 +-1.422674,50.910596 +-1.246928,50.686171 +-1.339228,50.905298 +-1.782997,50.83427 +-1.473231,50.937776 +-1.360756,50.969983 +-1.172529,50.983208 +-1.502368,51.015949 +-1.055049,50.790989 +-1.462174,51.214848 +-1.397329,50.897222 +-1.069407,50.800241 +-1.310201,51.040844 +-1.208072,50.855805 +-1.284767,50.657237 +-1.078549,50.810206 +-1.319128,51.037092 +-1.071464,50.813891 +-1.10205,50.846621 +-1.394616,50.834476 +-1.405109,50.910499 +-1.327574,50.86517 +-1.037665,51.322703 +-1.254731,50.869835 +-1.060986,51.285423 +-1.213786,50.825188 +-0.75329,51.293315 +-1.155321,50.904544 +-1.450182,51.204748 +-1.484082,51.213283 +-1.05553,50.852306 +-0.990337,50.871418 +-0.972832,50.869953 +-1.768692,50.904276 +-1.37971,50.940159 +-1.368562,50.902529 +-1.042148,50.808564 +-1.182698,50.622033 +-1.432187,50.934167 +-1.063937,50.8091 +-1.40432,50.863077 +-0.832838,51.289657 +-1.070094,50.794968 +-0.850849,51.245441 +-1.312614,50.897815 +-1.18991,50.820016 +-1.180477,50.932223 +-1.082643,50.80335 +-1.162738,50.727054 +-0.993526,50.906778 +-0.988998,50.848574 +-0.945435,51.109396 +-0.988139,51.187557 +-1.337587,50.969809 +-1.076953,50.798997 +-1.180492,50.932205 +-0.764316,51.313764 +-1.259777,50.638699 +-1.45968,50.930574 +-1.630075,50.906032 +-1.180838,50.838711 +-1.379659,50.981434 +-1.361258,50.898991 +-1.403245,50.904977 +-0.966582,51.269791 +-1.35465,50.921373 +-1.083095,51.262471 +-1.399751,50.909042 +-0.994048,51.099438 +-1.094566,51.244701 +-1.258858,50.884762 +-1.054854,51.296353 +-1.127878,50.693786 +-1.425336,50.938144 +-1.662114,50.758832 +-1.314839,51.233932 +-0.777881,51.327034 +-1.139212,50.807045 +-1.123829,51.257108 +-0.756929,51.293489 +-0.973487,50.873762 +-1.098433,50.794012 +-1.454925,50.939257 +-1.550129,50.760055 +-1.521449,50.972362 +-1.147133,50.723497 +-1.053917,50.802059 +-1.168529,50.914387 +-1.43621,51.213017 +-1.313724,50.76412 +-1.343878,51.055929 +-1.36274,50.633579 +-0.977529,51.275156 +-1.218361,50.854742 +-1.447072,50.935425 +-1.284122,50.702449 +-1.315271,50.866978 +-0.812941,51.324374 +-1.352578,50.962987 +-1.066895,51.263386 +-1.17875,50.816053 +-1.08175,51.031017 +-1.597307,51.203997 +-1.750461,50.850868 +-1.45164,50.926976 +-1.181745,50.840417 +-1.41241,51.188774 +-1.348117,50.894062 +-1.492677,50.912405 +-1.530446,50.88938 +-1.116707,50.675698 +-1.378705,50.939704 +-1.227665,51.006984 +-1.173615,50.941221 +-1.31378,50.991676 +-1.489405,50.916293 +-1.059162,50.795995 +-1.339242,50.905298 +-1.518488,50.912964 +-1.071373,50.798413 +-1.076201,50.82632 +-1.396622,50.904637 +-1.187807,51.362362 +-1.061578,50.914755 +-1.285121,50.70009 +-1.582606,50.805237 +-0.804356,51.307381 +-1.322425,50.883215 +-1.147212,50.676159 +-1.403897,50.918487 +-1.082391,50.789409 +-1.42079,50.912259 +-1.042815,50.814091 +-1.097126,51.275672 +-0.995815,51.145143 +-1.057785,50.793206 +-1.031103,50.856017 +-1.295019,50.917971 +-1.1893,50.819949 +-1.268585,50.737245 +-1.292591,51.06767 +-1.517255,50.682388 +-1.088709,51.267775 +-1.411468,50.869795 +-1.295803,51.179472 +-1.069763,50.834516 +-1.256023,51.189818 +-1.783212,50.836932 +-1.066711,51.262575 +-1.311174,50.958794 +-0.950183,51.325126 +-1.298101,51.051526 +-1.077371,50.808713 +-1.492834,50.912334 +-1.098019,50.783802 +-1.02159,50.894436 +-1.065706,50.848503 +-1.503565,51.209419 +-1.424113,50.914974 +-1.063908,50.809838 +-1.361219,50.923729 +-1.024475,50.871394 +-0.951098,51.157089 +-1.244186,51.092798 +-1.133273,50.855733 +-1.034347,51.031058 +-1.337936,51.074455 +-1.058281,51.2599 +-1.25878,51.337196 +-1.506106,50.983448 +-0.860274,51.108579 +-0.924201,51.318605 +-1.296863,50.963645 +-1.114093,51.261873 +-1.484161,50.99177 +-1.337059,50.92783 +-1.106946,51.266054 +-1.573365,50.872414 +-1.29244,50.709631 +-1.32095,51.036374 +-0.89979,51.303074 +-1.58766,50.985437 +-1.535389,50.954145 +-1.417785,50.931893 +-1.095721,50.79927 +-0.962806,50.816402 +-1.194627,50.811532 +-1.063075,50.80823 +-1.16564,50.81971 +-1.061221,51.285838 +-0.7533,51.289799 +-1.315449,50.920781 +-0.979369,50.830217 +-1.111296,51.259001 +-0.996059,50.913355 +-1.588246,50.872288 +-1.334644,50.890641 +-1.100181,50.788675 +-1.038536,50.875242 +-0.969661,51.133235 +-1.050389,50.846581 +-1.787688,50.848846 +-1.47279,50.675289 +-0.940542,50.855581 +-1.407442,50.940698 +-1.344846,50.901211 +-1.390602,50.922348 +-1.119766,50.671072 +-1.36521,50.896 +-1.076833,50.805813 +-1.380219,50.896449 +-1.230828,50.959614 +-1.075725,50.821658 +-1.512257,50.81491 +-1.146653,50.8029 +-1.26393,50.62815 +-1.079822,50.811844 +-1.17743,51.209417 +-1.617617,51.19894 +-1.123899,50.847209 +-1.328972,50.994381 +-1.786175,50.890767 +-1.507992,51.023409 +-1.378075,50.992306 +-0.766399,51.24727 +-1.453268,50.863272 +-0.868651,51.319853 +-1.196492,50.933566 +-1.327674,51.028995 +-1.315766,50.903967 +-1.079087,50.824671 +-1.111885,50.854547 +-1.172345,50.726179 +-1.453108,50.704227 +-1.546187,51.217658 +-1.478713,51.205733 +-1.397555,50.91501 +-1.14463,50.699108 +-1.148222,51.261614 +-1.401269,50.907125 +-1.269839,50.914327 +-1.427607,50.917733 +-1.646856,51.1953 +-1.415811,50.906623 +-1.257507,50.881201 +-1.082537,50.816703 +-1.027923,50.864795 +-1.150589,50.85505 +-1.290486,51.071848 +-1.08804,50.805307 +-1.46195,50.945953 +-1.482993,51.209492 +-1.630303,50.905997 +-1.334729,50.890651 +-1.458528,50.984425 +-1.311489,50.898915 +-0.74135,51.251616 +-1.288644,50.702162 +-0.804333,51.335868 +-1.593234,50.744862 +-1.381633,50.966823 +-1.167914,50.809124 +-0.738472,51.258356 +-1.521067,50.929098 +-0.977663,51.149464 +-1.33139,50.914291 +-1.079125,50.782333 +-0.998937,50.879298 +-1.191033,51.208405 +-1.03458,50.873438 +-0.929644,51.039139 +-1.385453,51.366011 +-1.303903,50.912727 +-1.305857,51.054774 +-0.743032,51.241941 +-1.117608,51.259409 +-1.29487,50.953256 +-1.403201,50.905112 +-1.085134,50.793513 +-1.014158,50.87673 +-1.498895,50.995602 +-1.307765,50.738419 +-0.976452,50.868168 +-1.452352,50.919615 +-1.133555,50.793703 +-1.142094,50.801581 +-1.353755,50.967499 +-1.730285,50.772624 +-1.246821,50.685775 +-1.079983,51.275476 +-1.208859,50.647645 +-1.24407,50.590855 +-0.953538,50.867776 +-1.219998,50.600193 +-1.300485,51.050515 +-1.073126,50.838202 +-1.395397,50.92124 +-1.402678,50.907051 +-1.043421,50.815031 +-1.400981,50.901818 +-1.397405,50.921134 +-1.481844,51.071845 +-1.443396,50.913098 +-1.499522,50.706054 +-1.046524,51.267088 +-0.800959,51.290729 +-1.476546,51.206226 +-0.9941,51.132593 +-1.319709,51.071464 +-1.532294,51.06392 +-1.399894,50.911174 +-1.132774,50.966059 +-1.072336,50.828619 +-1.416734,50.905549 +-1.150991,51.346986 +-1.05017,50.85737 +-1.066568,51.262556 +-0.812455,51.132293 +-1.086602,50.813525 +-1.407357,50.907048 +-1.244103,50.855666 +-1.357553,50.969858 +-1.246903,50.685937 +-1.460797,50.920058 +-1.071626,51.272586 +-1.311712,50.691491 +-0.864881,51.268499 +-0.752951,51.282539 +-1.064641,50.812263 +-1.785083,50.936734 +-1.042753,50.835214 +-1.737587,50.851595 +-1.36302,50.899126 +-1.143471,50.805404 +-1.406647,50.906955 +-1.161219,51.090586 +-1.349173,51.009018 +-1.397512,50.915046 +-1.107264,51.268871 +-0.843594,51.259954 +-1.438576,50.925961 +-1.154246,50.731292 +-1.152463,50.805721 +-1.070534,50.814962 +-1.67677,50.740843 +-1.257591,50.91255 +-1.65241,51.193213 +-1.08829,50.790282 +-1.082633,50.78933 +-1.128451,50.846119 +-1.419673,50.965489 +-0.948782,51.204232 +-1.080037,51.374658 +-1.4719,50.954757 +-1.567323,50.792718 +-1.058483,50.791673 +-1.152787,50.806623 +-1.340941,51.34382 +-1.33819,51.343418 +-1.403798,50.918469 +-1.511254,50.916441 +-0.946422,50.860715 +-1.292602,50.88784 +-1.176515,50.809949 +-1.262609,50.975799 +-1.418524,50.914856 +-0.753041,51.294059 +-1.002977,50.848514 +-0.840547,51.282504 +-1.455391,50.916436 +-0.965541,51.150023 +-1.410782,50.910654 +-1.231029,50.633396 +-0.889734,51.042741 +-1.015953,50.91026 +-1.152177,51.296693 +-1.246483,50.685656 +-1.49457,50.98714 +-1.00053,50.907171 +-0.882307,51.34723 +-0.778884,51.330894 +-1.0721,50.803257 +-1.244016,51.149627 +-1.082091,50.848183 +-1.21711,51.066695 +-1.004714,51.015702 +-1.090291,51.262419 +-1.208834,51.317366 +-1.05832,50.791978 +-1.260481,50.635322 +-1.371765,50.94883 +-1.283221,50.875661 +-1.141874,50.801174 +-0.825612,51.323305 +-1.092294,50.790844 +-0.989957,50.916621 +-1.063815,50.802418 +-1.459462,50.943235 +-0.75074,51.307487 +-1.197531,51.075689 +-1.099406,50.792833 +-1.349107,50.921962 +-1.306457,50.733879 +-1.216338,50.650439 +-1.099449,51.250656 +-1.244796,50.684944 +-0.937806,50.850916 +-1.484413,50.912333 +-1.040772,51.053457 +-0.910105,51.015344 +-1.082939,50.799827 +-1.133763,50.859927 +-1.534827,50.751883 +-1.563849,50.917539 +-1.066666,51.257719 +-1.790659,50.813457 +-1.138949,50.847573 +-1.38375,50.92519 +-1.155269,50.726371 +-1.07667,50.840685 +-1.788579,50.780541 +-1.211947,50.851767 +-1.39724,50.909658 +-1.786585,50.888204 +-1.123,50.846717 +-1.237162,50.723608 +-1.063715,51.227302 +-1.150822,50.655727 +-1.430462,50.930903 +-1.448691,50.914004 +-1.38458,50.916229 +-0.944454,51.274602 +-1.091461,50.797933 +-1.488864,50.998211 +-1.401633,50.908656 +-1.032968,51.262814 +-1.441448,50.934481 +-1.545318,50.956406 +-1.249791,50.848248 +-1.577762,51.112264 +-0.760084,51.289215 +-1.012643,50.907373 +-0.983724,50.852665 +-1.09008,50.79893 +-1.415898,50.905311 +-0.761958,51.24993 +-1.474703,50.905554 +-1.401394,50.69847 +-1.086849,50.845289 +-1.146738,50.80291 +-0.952507,50.996137 +-1.194461,51.207161 +-0.858093,51.295976 +-0.871043,51.324714 +-0.759233,51.242572 +-1.390322,50.920935 +-1.302924,50.701691 +-1.338692,50.97219 +-1.446178,50.92204 +-1.173917,51.211325 +-1.207993,50.976979 +-1.078872,50.818302 +-1.181136,50.847616 +-1.139084,50.844139 +-1.323337,50.909505 +-1.349871,50.826223 +-1.69925,50.76245 +-1.252324,50.632491 +-1.391977,50.898777 +-1.15207,50.858775 +-1.335761,51.174472 +-1.148272,50.849701 +-1.055345,51.260496 +-1.021057,50.878505 +-0.986161,50.856247 +-1.362532,50.962952 +-1.455219,51.210877 +-1.140602,50.800113 +-1.112539,50.850019 +-1.26431,51.09342 +-1.248111,50.822851 +-1.173601,50.813409 +-1.358752,50.894103 +-1.127565,50.889808 +-1.365021,51.217715 +-1.406727,50.938699 +-1.013188,50.902441 +-1.27543,51.007685 +-0.835399,51.287084 +-1.066823,51.26343 +-1.248974,50.922099 +-1.382777,51.051321 +-1.561949,51.159027 +-1.458225,51.078977 +-1.222452,51.174529 +-0.739341,51.241784 +-1.404031,50.900242 +-1.073411,50.824509 +-0.884712,51.317373 +-1.18788,51.202925 +-1.217134,50.682522 +-1.2685,50.737253 +-1.161863,50.921965 +-1.769792,50.874522 +-1.056099,50.787455 +-1.117488,51.261961 +-1.488358,50.987122 +-1.088375,51.265083 +-0.834467,51.316506 +-1.272359,50.596799 +-1.587516,50.726111 +-0.976583,50.813466 +-1.041434,50.812227 +-1.450109,50.897456 +-1.041608,50.80927 +-1.605597,50.779796 +-1.402055,50.915699 +-1.334615,50.890614 +-1.366835,50.96909 +-1.378213,50.940322 +-0.875576,51.228469 +-1.259711,50.861369 +-1.389584,50.969733 +-1.728847,50.854588 +-1.356483,51.015317 +-1.704328,50.89262 +-0.919392,51.003425 +-1.043009,50.787923 +-1.318232,51.069045 +-1.237436,50.862017 +-1.074091,50.795881 +-1.168956,50.820813 +-1.202553,51.364297 +-1.339877,50.969993 +-1.088247,50.790264 +-1.090748,51.327875 +-0.977561,50.831757 +-0.959835,51.122735 +-1.087211,50.797576 +-0.890658,51.042903 +-1.43347,50.922303 +-0.761084,51.273912 +-1.020148,51.26518 +-0.856387,51.230702 +-1.293582,51.07193 +-0.975829,50.800555 +-0.959192,51.270751 +-0.938542,50.861067 +-1.475209,50.945384 +-1.182052,50.673144 +-1.364576,50.945662 +-1.79059,50.812918 +-1.393838,50.847367 +-1.078475,51.272029 +-1.586426,51.239523 +-0.851878,51.281806 +-1.286844,50.705065 +-1.403782,50.911958 +-1.357071,50.876756 +-1.162025,50.85588 +-0.995639,50.86409 +-1.091481,51.153227 +-1.383557,50.804005 +-1.211234,50.846016 +-0.955305,51.286668 +-1.371989,50.949101 +-1.568832,50.722689 +-1.367353,50.896272 +-0.944373,51.161659 +-0.968493,50.865616 +-0.998373,50.897656 +-1.38947,50.899043 +-0.949726,50.850242 +-1.431895,50.911361 +-0.86236,51.113824 +-1.028719,50.915412 +-1.404031,50.900242 +-1.081124,51.256367 +-1.080571,51.288384 +-1.064389,50.794311 +-1.187335,50.646634 +-1.176239,50.728751 +-1.778789,50.850377 +-1.342066,51.35547 +-1.390501,50.920324 +-0.999551,50.870526 +-1.145988,50.709307 +-1.385576,50.898869 +-0.851533,51.142548 +-1.380188,50.938444 +-1.409273,50.866879 +-1.084886,50.813448 +-1.388219,50.912039 +-1.398199,50.902577 +-1.394276,50.924283 +-1.187673,50.987226 +-1.32843,50.899589 +-1.319401,50.869286 +-1.495083,50.987097 +-0.777909,51.299528 +-1.478659,51.007231 +-1.080523,50.823881 +-1.091273,50.798858 +-1.425776,50.913912 +-1.146555,50.71629 +-1.159788,50.654281 +-0.770874,51.311567 +-0.986966,51.14772 +-0.915231,51.027801 +-1.271799,51.093935 +-1.063886,50.809559 +-1.249478,51.330114 +-1.036588,50.835973 +-0.979866,50.861507 +-1.022509,51.165935 +-0.827151,51.119178 +-0.953296,50.895094 +-0.918869,51.283532 +-1.400118,50.899296 +-1.07139,50.855544 +-1.079983,50.793509 +-1.09235,50.780611 +-1.078175,50.800329 +-1.376251,50.972081 +-0.994889,50.854713 +-1.107472,51.063185 +-0.778703,51.081651 +-1.450698,50.944147 +-1.401245,50.956682 +-1.066593,50.846774 +-1.081132,51.257393 +-1.257804,50.734308 +-0.974048,51.135198 +-0.862386,51.102287 +-1.281125,51.025615 +-1.470591,51.222412 +-1.242286,50.701061 +-1.042342,51.263475 +-1.153921,50.727306 +-1.063493,50.836273 +-1.562279,51.157356 +-1.390543,50.920334 +-0.952699,51.266296 +-1.388983,50.925397 +-1.188156,51.203467 +-1.033192,50.880738 +-1.343596,50.906141 +-1.257854,50.875475 +-0.848035,51.254864 +-1.052739,50.846303 +-1.183937,50.899586 +-1.156048,50.851718 +-1.559876,51.213116 +-1.022283,50.957075 +-1.130303,51.235207 +-1.152409,50.858877 +-1.790543,50.845686 +-1.416995,50.918868 +-1.3724,50.978841 +-1.68071,50.794981 +-1.384984,50.98487 +-1.350373,50.971059 +-1.172429,50.791386 +-1.076391,51.256573 +-1.266808,50.946987 +-1.032664,50.880841 +-1.440725,50.959135 +-1.450131,51.201789 +-0.952444,51.028662 +-1.34597,50.931621 +-1.07987,50.793517 +-1.461821,50.99782 +-1.14718,50.813713 +-1.268439,50.868384 +-1.201797,50.802211 +-1.039845,51.054133 +-1.327075,51.034944 +-1.340348,51.174776 +-1.063965,50.809838 +-1.391026,50.900822 +-1.294812,50.712955 +-1.333792,50.902479 +-1.361219,50.963206 +-1.304981,50.922491 +-1.045468,50.828123 +-1.637892,50.757995 +-1.176758,50.834906 +-1.578924,51.162039 +-0.78083,51.297544 +-1.276572,50.755073 +-1.084754,51.284289 +-1.54296,50.758111 +-0.749072,51.308683 +-0.766019,51.316569 +-1.488389,51.108751 +-0.879967,51.189143 +-0.906726,51.01658 +-1.138206,50.847847 +-1.112211,50.854603 +-1.466393,50.923393 +-1.043703,51.203356 +-0.769692,51.284398 +-1.087843,50.78697 +-1.415188,51.18975 +-1.562605,51.112253 +-1.146704,50.816479 +-1.652869,50.939077 +-1.086726,50.799191 +-1.278861,50.880067 +-1.088701,51.251463 +-1.37515,50.923543 +-1.348474,50.907211 +-1.055394,50.788636 +-1.205891,50.995822 +-1.552329,50.752311 +-1.296301,50.700491 +-1.30462,50.71537 +-1.084706,51.286006 +-1.155535,50.812452 +-1.22629,51.040813 +-1.076906,50.797028 +-1.390336,50.919874 +-1.15017,50.865614 +-0.763967,51.249267 +-1.071243,50.847243 +-0.936831,51.003018 +-1.475251,50.937803 +-1.709268,50.756702 +-1.446433,50.922105 +-1.226867,50.725051 +-1.496422,51.202906 +-1.086651,50.789928 +-1.395129,50.92328 +-1.072748,50.836509 +-0.92831,51.009766 +-1.172621,50.726576 +-0.959001,51.030088 +-1.069814,51.284963 +-1.400792,50.91214 +-1.458456,51.199787 +-1.351273,50.731115 +-0.73608,51.275533 +-1.372874,50.977495 +-1.215367,50.704453 +-1.071588,50.837696 +-1.387674,50.981755 +-0.753231,51.296048 +-1.440972,50.933787 +-0.999095,50.893813 +-1.366226,50.920672 +-1.293914,51.071725 +-1.406395,50.935738 +-1.335888,51.236356 +-1.071322,50.837514 +-1.339219,51.1737 +-1.394983,50.923585 +-1.085342,50.783578 +-1.076736,50.795569 +-1.081444,50.796434 +-1.225434,50.840293 +-1.419037,50.910191 +-0.770202,51.313637 +-1.155294,50.793557 +-1.068673,50.84644 +-1.571759,50.822824 +-1.446763,50.92662 +-1.261083,50.876188 +-1.194276,50.646844 +-1.422659,50.910632 +-0.999537,50.870517 +-1.434472,50.921768 +-1.0799,50.813679 +-1.506605,50.918885 +-1.398887,50.975006 +-1.790833,50.847638 +-1.012,50.876603 +-1.096027,50.864263 +-1.463765,50.890802 +-1.354077,50.912368 +-1.299961,50.706709 +-0.969613,51.268847 +-1.161115,50.729849 +-1.080181,50.813087 +-1.184013,50.792592 +-1.068541,50.809533 +-1.778049,50.850501 +-1.335169,50.921623 +-1.190193,50.646591 +-1.435302,50.923733 +-1.318115,50.858991 +-1.399535,50.899311 +-1.183245,50.844816 +-1.283987,50.707592 +-1.344038,50.689069 +-1.089366,51.267888 +-1.331783,51.097314 +-1.036057,51.031783 +-0.996463,50.870734 +-1.081212,50.804669 +-1.075449,51.277814 +-1.431278,50.931654 +-1.354501,50.686933 +-1.338893,50.899793 +-1.189643,50.806696 +-0.75458,51.234474 +-0.879096,51.110002 +-1.141057,51.238479 +-1.299298,50.757865 +-1.785025,50.936913 +-1.164428,50.650312 +-1.419435,50.91022 +-1.073068,51.263605 +-1.028067,51.308327 +-1.058853,51.307005 +-1.655348,50.755449 +-0.973182,50.85983 +-1.157207,50.813408 +-1.197989,50.8075 +-1.200398,50.850924 +-1.189287,50.727179 +-1.392314,50.938382 +-1.372108,50.978273 +-0.803196,51.077435 +-0.84848,51.2445 +-1.392119,50.898751 +-1.102239,50.799734 +-1.044389,51.267754 +-1.327536,50.867858 +-0.912307,51.297912 +-1.172644,50.808141 +-1.655739,50.754344 +-1.323309,50.909496 +-1.000447,50.864518 +-1.480367,51.199859 +-1.340561,50.914622 +-0.999523,50.869834 +-0.737645,51.275972 +-1.399534,50.919256 +-1.384262,50.981296 +-0.95622,51.239315 +-1.55692,50.75705 +-1.567627,51.224753 +-1.530139,50.946697 +-1.413325,51.188842 +-1.522223,50.694899 +-1.189629,50.820643 +-1.273647,50.914638 +-1.106121,50.692821 +-1.388862,50.940126 +-0.93507,51.168787 +-1.21582,51.18095 +-0.750907,51.308226 +-1.301142,51.050474 +-1.066276,51.263516 +-1.063774,50.809477 +-1.186387,50.799677 +-1.390544,50.920316 +-0.797248,51.327388 +-1.324419,50.884917 +-0.818052,51.339955 +-1.308877,51.235102 +-1.728878,50.770696 +-1.188274,50.793161 +-1.002483,51.327679 +-1.014186,50.87673 +-1.322355,51.063242 +-1.353159,50.962172 +-1.32611,51.051304 +-1.12706,50.855938 +-1.210832,50.836157 +-0.976125,51.146618 +-1.173233,50.815789 +-0.909376,51.301743 +-1.402943,50.95527 +-1.359621,50.916742 +-1.327333,51.028939 +-1.352361,50.963247 +-0.932397,51.137127 +-0.91385,51.29513 +-1.314994,51.063119 +-1.053314,51.288895 +-1.429058,50.932893 +-1.19008,50.820017 +-1.418762,50.851163 +-0.908206,51.309915 +-1.308567,50.680024 +-1.094047,51.263815 +-0.976093,51.148048 +-1.037853,50.865615 +-1.328565,51.055203 +-1.340723,51.103327 +-1.306849,51.060975 +-1.267401,50.869331 +-1.405792,50.897059 +-1.403139,50.916613 +-1.390968,50.924877 +-1.076086,50.80408 +-1.418474,50.918884 +-1.064619,50.809789 +-1.382962,50.991226 +-1.178883,50.710389 +-1.148152,50.723505 +-0.989599,51.135819 +-1.258535,51.358613 +-1.381912,50.832953 +-0.753271,51.289799 +-1.29238,50.862156 +-1.653682,50.750642 +-1.289489,50.691205 +-1.319532,50.6098 +-1.333792,51.082713 +-1.150437,50.793009 +-1.786319,50.850031 +-1.435255,50.912339 +-1.32152,50.926904 +-1.540776,50.762455 +-1.484248,50.918249 +-0.934494,51.003626 +-1.416191,50.914862 +-1.361658,50.89786 +-0.843455,51.280347 +-0.971685,50.869106 +-1.486391,51.206486 +-1.065165,50.822249 +-1.082621,50.788502 +-1.0766,50.786647 +-1.782635,50.897019 +-1.593214,50.743882 +-1.375863,50.925571 +-0.934692,50.84542 +-1.353712,50.970583 +-1.082748,50.788557 +-1.385113,50.938407 +-1.448443,50.931385 +-0.899546,51.059092 +-1.383916,50.916954 +-1.146209,51.315335 +-1.302535,51.047956 +-0.947135,51.015638 +-0.984655,50.850344 +-0.777224,51.090115 +-0.842082,51.27965 +-0.944167,50.847916 +-1.036888,50.880741 +-1.097172,50.788733 +-1.199643,50.924064 +-1.088719,50.787903 +-1.314371,50.892493 +-1.176561,50.83476 +-1.651407,50.747865 +-1.535316,50.764043 +-1.465632,51.215367 +-0.862814,51.310436 +-1.167737,50.803916 +-1.095419,50.91111 +-1.590946,50.942195 +-1.384215,50.938456 +-1.339424,50.914561 +-1.261992,51.239879 +-1.076385,51.274755 +-1.332816,50.920018 +-0.966963,51.280918 +-1.469539,50.92196 +-1.275314,50.915386 +-1.431194,50.943271 +-1.421666,50.932245 +-1.069714,50.786224 +-1.178757,50.873894 +-1.077198,50.800213 +-0.982744,50.848097 +-1.102791,50.799792 +-1.42004,50.870683 +-1.398208,50.919483 +-1.239191,51.152653 +-1.239348,51.152681 +-0.883924,51.291881 +-1.478342,51.205596 +-1.418881,50.934146 +-0.785324,51.329971 +-1.792517,50.845789 +-1.367087,50.910659 +-0.830359,51.262467 +-1.090238,51.267256 +-1.231015,50.85157 +-1.036908,50.881164 +-1.153933,50.810768 +-1.340366,50.908245 +-1.160032,50.732566 +-1.337161,51.073758 +-0.764051,51.295821 +-0.742876,51.250302 +-0.945873,50.860468 +-1.14381,50.802394 +-1.535483,50.95322 +-1.563301,50.787388 +-1.107206,51.271109 +-1.133791,50.859945 +-1.072544,50.826031 +-1.071345,50.812028 +-1.45288,50.91825 +-1.181198,50.869253 +-1.771441,50.92098 +-1.071024,51.283246 +-1.056965,50.786733 +-1.070715,50.782257 +-1.317825,50.896425 +-1.108818,50.698426 +-1.172487,50.791324 +-1.230565,50.725076 +-1.349075,50.909948 +-1.385373,50.925135 +-0.76215,51.25825 +-0.900961,51.282268 +-1.738855,50.782059 +-1.188728,50.949573 +-1.034123,50.852194 +-1.083761,50.804231 +-1.179972,50.639001 +-1.548819,51.220932 +-1.356775,50.899281 +-1.322399,51.071992 +-1.087859,50.80804 +-1.115416,51.287016 +-1.33752,51.348054 +-1.563835,51.112078 +-1.483447,51.221445 +-1.281052,50.86884 +-1.016438,50.897378 +-1.111512,50.72074 +-1.358048,50.929799 +-1.059976,50.797873 +-1.439082,50.925298 +-0.826244,51.342402 +-1.034408,50.852151 +-1.111549,51.275629 +-1.42036,50.914829 +-1.0776,50.784839 +-0.999057,50.849155 +-1.084191,51.261409 +-0.857612,51.29571 +-1.105483,51.253553 +-1.344734,51.119661 +-1.365353,50.915775 +-1.710773,50.756337 +-1.165238,50.788053 +-1.162683,50.811164 +-1.426891,50.911192 +-0.770056,51.296541 +-1.069947,51.2883 +-1.120988,51.261763 +-1.506793,50.673109 +-1.463908,51.209703 +-0.995833,50.933785 +-1.016481,50.952045 +-1.579256,50.768922 +-1.499822,51.004832 +-1.133107,51.344355 +-1.680653,50.794998 +-1.372703,51.14439 +-1.374989,50.987587 +-1.397848,50.914364 +-1.496307,51.202896 +-1.25003,51.126124 +-0.740373,51.251723 +-1.08504,50.804834 +-1.200269,50.916596 +-1.500468,51.005716 +-1.301391,50.886661 +-1.518842,50.913109 +-0.977033,50.787669 +-1.069091,50.814025 +-0.978921,50.830573 +-1.408914,50.912137 +-1.375841,50.925094 +-1.529734,50.945931 +-1.201262,50.68361 +-0.983639,50.810776 +-1.32178,50.96676 +-1.397529,50.937977 +-1.515488,50.929219 +-0.975994,50.810547 +-1.348015,50.933934 +-1.473332,50.935106 +-1.716642,50.862023 +-0.962104,51.147088 +-1.000098,50.913363 +-1.122741,50.840034 +-1.566023,50.870355 +-1.088952,50.840134 +-1.334658,50.890632 +-1.133026,50.88743 +-0.976484,50.790713 +-1.40398,50.90088 +-1.097149,51.275942 +-1.390691,50.92974 +-1.295075,51.090157 +-1.322618,51.063802 +-1.677324,50.744765 +-1.285985,50.705662 +-1.367296,50.896272 +-1.204869,50.990591 +-1.395707,50.917096 +-1.433878,50.922683 +-1.654719,50.752264 +-0.97839,50.853617 +-1.034962,50.836337 +-1.425944,50.916466 +-1.771581,50.848627 +-1.384186,50.83497 +-0.765126,51.243444 +-1.373037,50.89758 +-1.006487,50.867816 +-1.482157,51.21385 +-1.455725,50.91704 +-0.987919,50.869518 +-0.783906,51.088494 +-1.364246,50.976153 +-1.07269,50.836562 +-1.056999,50.828046 +-1.078371,50.817039 +-1.398324,50.633984 +-1.442878,50.882629 +-1.423337,50.91443 +-1.213855,50.857418 +-1.660092,50.773844 +-1.112023,50.851041 +-1.332267,51.087462 +-1.191639,50.84813 +-1.155377,50.662001 +-1.453801,50.92463 +-1.374531,50.996217 +-1.328031,50.899641 +-1.075702,51.028973 +-1.201398,51.200887 +-1.044906,50.825016 +-1.362937,50.979213 +-1.407747,50.898777 +-1.649369,50.74928 +-0.765429,51.316122 +-1.279341,50.610521 +-1.082072,50.847679 +-1.9055,50.997609 +-1.061235,50.806552 +-1.369122,50.921074 +-0.853809,51.097959 +-1.769243,50.850304 +-1.036803,50.835903 +-1.095636,50.79998 +-1.332549,50.901897 +-1.434019,50.922746 +-1.104451,51.255037 +-1.556766,50.749307 +-1.235714,50.852599 +-1.068161,50.830798 +-1.474983,50.933837 +-1.011002,50.865309 +-1.209104,50.950963 +-1.370724,50.812767 +-0.828453,51.259642 +-0.999151,50.903805 +-1.336269,50.876325 +-1.295062,51.090112 +-0.838351,51.26724 +-1.156941,50.859692 +-1.606601,50.910263 +-1.173839,50.813626 +-1.105812,51.258771 +-1.183949,50.899685 +-1.247803,50.906498 +-1.395356,50.920008 +-1.368104,50.964772 +-1.181904,50.827271 +-1.161318,51.090614 +-1.313404,50.89827 +-1.35215,50.893383 +-1.318054,50.896355 +-1.295096,50.698712 +-1.306146,50.908262 +-1.392019,50.898813 +-0.998884,50.873164 +-1.473164,50.955014 +-1.09035,50.801827 +-1.089297,50.807817 +-1.085607,50.783787 +-0.952836,51.028387 +-1.450199,50.671974 +-0.76295,51.297851 +-1.467844,51.19742 +-1.296806,50.963618 +-1.380496,51.18165 +-1.404292,50.921034 +-1.484452,50.988624 +-1.149041,50.656379 +-1.067506,50.833014 +-1.031608,50.872146 +-1.227775,51.16845 +-1.382763,50.963232 +-1.321277,50.893738 +-0.966254,51.221761 +-1.552457,50.768724 +-1.267392,50.862676 +-1.10193,51.276338 +-1.115445,51.286989 +-1.392119,50.898724 +-1.062325,50.793917 +-1.355349,51.003576 +-1.081912,50.818901 +-1.037928,50.846811 +-1.213713,50.867552 +-1.191555,50.848066 +-1.571534,50.872264 +-1.065266,50.794444 +-1.106075,51.272512 +-1.426972,50.917335 +-1.170403,50.647531 +-1.104983,51.280021 +-1.096126,50.792951 +-1.076387,50.809703 +-1.066344,50.830055 +-1.617915,50.942583 +-1.159582,50.674549 +-1.387026,50.976895 +-1.340438,51.266747 +-1.476632,51.206209 +-1.655831,50.755342 +-1.784903,50.938766 +-1.048498,50.82572 +-1.064402,50.803592 +-0.939053,50.861089 +-0.742203,51.257111 +-1.293678,51.071274 +-1.508485,50.920053 +-1.136767,51.357429 +-1.403262,50.912531 +-1.367301,50.889582 +-1.659877,50.895386 +-0.842446,51.281111 +-1.344787,50.914547 +-0.988803,51.176196 +-0.970092,50.847213 +-0.943316,50.996755 +-1.307856,50.738941 +-1.239817,50.86411 +-1.30439,50.713642 +-1.123214,50.846647 +-1.08589,50.851486 +-1.288074,51.0914 +-1.386187,50.925958 +-1.077995,50.845543 +-1.367173,50.994514 +-1.421761,50.921131 +-1.12361,50.855858 +-1.202431,50.851648 +-0.961032,51.276882 +-1.202617,50.713107 +-1.468238,50.948778 +-0.933618,51.229291 +-1.477324,51.220914 +-1.321225,50.991135 +-1.408926,50.908927 +-1.120865,50.842367 +-1.387181,50.925082 +-1.266007,50.703622 +-1.447051,51.120585 +-1.588567,50.743695 +-1.223387,51.322301 +-1.571981,50.817195 +-0.962818,51.27268 +-1.095637,50.799917 +-1.082481,50.873878 +-0.998413,50.849357 +-1.043415,50.87298 +-1.380961,50.939185 +-1.05373,50.85346 +-0.988705,50.869318 +-1.050879,50.853257 +-1.562615,50.746811 +-1.094762,50.800423 +-1.472756,50.921804 +-1.083328,50.816934 +-0.836597,51.237926 +-1.394085,50.918176 +-1.368945,50.821526 +-1.306366,50.749643 +-1.358805,51.084706 +-1.773753,50.848829 +-1.353097,50.932794 +-1.094608,51.262236 +-0.981654,51.137045 +-1.101968,50.848653 +-0.94877,51.245012 +-1.391004,51.098519 +-0.759916,51.289087 +-0.809289,51.309113 +-1.050334,50.846508 +-1.356052,50.914582 +-1.144791,50.932812 +-1.11968,51.316757 +-1.788621,50.780505 +-0.983997,50.847955 +-1.056192,50.826502 +-1.523481,50.965859 +-0.844754,51.122051 +-1.094856,51.284646 +-1.4154,50.906522 +-1.17056,50.852056 +-0.968196,51.008344 +-1.265127,50.729966 +-1.129971,51.261929 +-1.081688,50.787623 +-1.6621,50.758823 +-1.376547,50.924432 +-0.82691,51.279742 +-1.39806,50.826104 +-0.999835,50.864567 +-1.055215,50.789759 +-1.373624,50.941853 +-1.479246,51.206679 +-1.329488,50.994196 +-1.024058,50.870248 +-1.399704,50.911568 +-1.530073,50.987144 +-1.395334,50.92284 +-1.136984,50.810868 +-0.805861,51.24937 +-1.345541,50.922608 +-1.571535,50.827121 +-1.000588,50.907126 +-0.74929,51.293785 +-1.594409,50.7959 +-1.651364,50.747856 +-1.044345,50.841387 +-1.395111,50.923568 +-1.443487,50.702275 +-1.538549,50.919627 +-1.34469,50.688992 +-1.436949,50.921637 +-1.087849,50.802707 +-1.371405,51.35127 +-1.129099,50.798337 +-1.118233,51.220738 +-1.170555,50.812281 +-1.450787,50.923276 +-0.767233,51.25307 +-1.415086,50.906548 +-0.907634,51.031939 +-1.097617,50.845229 +-0.828531,51.264481 +-1.076918,50.79861 +-0.748511,51.239068 +-1.311488,50.925056 +-1.078186,50.786768 +-1.454009,50.915423 +-0.870938,51.074251 +-1.056222,50.897518 +-1.086405,50.811275 +-1.589444,50.920455 +-1.467766,50.948992 +-0.763715,51.265073 +-1.089654,51.271442 +-1.294485,50.928821 +-1.160561,50.652973 +-1.523942,51.030867 +-1.411297,50.86983 +-1.400464,51.100276 +-1.068337,50.846941 +-1.073618,50.801147 +-0.998877,50.913946 +-1.334042,50.733176 +-1.051315,50.803738 +-1.586296,50.784262 +-1.405499,50.868695 +-1.003984,50.886598 +-1.385573,50.979064 +-1.1664,50.726658 +-1.298395,50.922397 +-1.390363,50.92 +-1.384468,50.938709 +-1.088261,51.250533 +-1.353687,50.825435 +-0.952116,50.996412 +-1.399635,51.014225 +-1.099956,50.849123 +-0.734814,51.276751 +-0.834814,51.320376 +-1.277559,50.929311 +-1.068103,50.846553 +-1.013173,50.849321 +-1.213158,50.95367 +-1.396899,50.93711 +-1.17522,50.85047 +-1.087197,50.849302 +-1.321078,50.89568 +-1.368171,50.972434 +-1.222386,50.91769 +-1.534262,51.206174 +-0.923124,51.01274 +-0.830193,51.342406 +-0.761017,51.294521 +-1.170486,50.632414 +-0.757595,51.272508 +-0.812056,51.121678 +-0.9062,51.011647 +-1.415783,50.9361 +-1.364464,50.964365 +-1.403281,50.916622 +-1.160775,50.794073 +-1.310315,50.895644 +-1.536903,51.039623 +-1.201032,50.93268 +-1.146039,50.719748 +-1.256736,51.200613 +-1.484022,50.992777 +-1.391694,50.919386 +-0.746496,51.277389 +-1.418981,50.934129 +-1.180428,50.623321 +-1.188799,50.899638 +-1.031214,50.878086 +-0.929867,51.289694 +-0.981284,50.853156 +-1.077293,50.842948 +-1.383212,50.969088 +-1.428934,50.929061 +-1.290377,50.91636 +-1.359224,50.904222 +-1.379779,50.97344 +-1.375805,50.973482 +-1.376184,50.898307 +-1.28895,50.701552 +-1.16553,50.925372 +-1.319277,50.902144 +-1.328214,50.899777 +-1.57839,51.039987 +-1.064115,50.811593 +-1.47687,51.209213 +-1.393202,50.939052 +-0.950795,51.156582 +-1.450153,51.202356 +-1.435823,50.921838 +-1.251081,50.860828 +-0.981143,51.144657 +-1.173208,50.81801 +-0.900516,51.209607 +-0.985751,50.856792 +-1.456806,50.954985 +-0.756396,51.098438 +-1.292315,51.093279 +-1.476309,51.218284 +-1.106271,50.854666 +-1.079764,50.811888 +-1.091967,51.245706 +-1.349295,50.914599 +-1.385616,51.085875 +-1.345704,50.702604 +-1.120018,51.245048 +-1.033758,51.345439 +-0.765688,51.293617 +-1.314439,51.059141 +-0.761627,51.247831 +-0.875138,51.118273 +-1.132816,50.966095 +-0.875012,51.091681 +-1.426955,50.940751 +-1.388767,50.839733 +-1.312026,50.921363 +-1.023879,50.842045 +-1.293578,51.060968 +-1.066393,50.829758 +-1.250658,51.322002 +-1.178183,50.632073 +-0.785295,51.32998 +-1.137723,50.672654 +-1.070598,50.838911 +-1.076602,50.805245 +-0.959817,51.29829 +-0.997144,50.864166 +-0.746059,51.293418 +-1.497748,51.198047 +-1.299006,50.853248 +-1.201426,50.903016 +-1.4353,50.863852 +-1.052611,51.288943 +-1.463053,51.215598 +-1.092424,50.800225 +-1.488259,50.987103 +-1.435679,50.921918 +-1.178747,50.646007 +-1.391646,50.927398 +-1.091787,51.266495 +-1.104728,51.265884 +-1.397409,50.919659 +-1.40576,50.905188 +-1.310796,50.896771 +-1.132844,50.966104 +-1.235665,51.192978 +-1.012018,50.865012 +-1.453798,50.983207 +-1.143801,50.680082 +-1.161602,51.091506 +-1.072644,50.820258 +-0.791479,51.118437 +-1.654424,50.736606 +-1.421656,50.959429 +-1.07735,50.817022 +-1.44655,50.957832 +-1.496772,50.907252 +-1.338773,51.095843 +-1.462891,50.933485 +-1.404803,50.921117 +-0.985931,50.942782 +-1.125664,51.277462 +-1.361609,50.980446 +-1.417017,51.228461 +-0.762146,51.29572 +-1.204714,50.871097 +-1.093891,51.263741 +-1.458128,50.917169 +-1.078297,50.810015 +-1.349451,50.98707 +-1.372295,50.922125 +-1.229117,50.633599 +-1.144617,50.699018 +-1.123686,50.797901 +-1.402507,50.914847 +-1.360576,50.825203 +-1.322092,50.859095 +-1.07948,50.795285 +-1.070467,50.831958 +-1.337252,51.061323 +-1.440011,50.917785 +-1.207611,50.949999 +-0.991754,50.86501 +-1.093311,51.272819 +-1.611894,51.161254 +-1.328027,50.914721 +-1.289784,50.699768 +-1.056966,50.786679 +-1.362596,50.995793 +-1.144201,50.794222 +-1.117442,50.712737 +-0.988109,51.184391 +-1.064664,50.814619 +-1.304347,50.913503 +-1.650483,50.790047 +-1.656992,50.784581 +-1.08752,50.806481 +-1.173355,50.857129 +-1.404923,50.918339 +-1.382208,50.934237 +-1.250827,51.321347 +-1.259083,50.724208 +-1.317501,50.894301 +-0.777908,51.250924 +-1.426451,50.916855 +-1.237973,51.154534 +-1.354051,50.921423 +-0.985997,50.855922 +-1.120561,50.850233 +-1.020889,50.870249 +-1.360193,50.981877 +-1.156076,50.812357 +-1.186088,51.345913 +-1.54879,51.220905 +-1.068131,50.841553 +-1.377201,50.924445 +-0.975152,50.890494 +-1.34301,51.008336 +-1.303426,51.095063 +-1.567491,50.792997 +-1.181176,50.682005 +-1.079437,50.795303 +-1.350569,50.969208 +-1.507688,50.933511 +-1.415097,50.925027 +-1.099889,51.28099 +-1.415442,50.906513 +-1.076965,50.798386 +-1.181032,50.863316 +-1.596487,51.248685 +-1.177107,50.858658 +-1.364834,50.964385 +-1.504317,51.208757 +-1.428464,50.91861 +-1.274452,50.868278 +-0.740854,51.242484 +-1.535073,50.782891 +-1.761193,50.810523 +-0.978939,50.966317 +-1.191452,50.864666 +-1.106331,51.265986 +-1.280949,50.916176 +-0.827528,51.263356 +-1.320491,50.895937 +-1.063347,50.806686 +-1.081333,51.374506 +-1.299019,51.098462 +-1.007071,50.854368 +-0.76832,51.238127 +-1.483962,51.171514 +-1.22866,51.167709 +-0.737665,51.276296 +-1.148531,50.782347 +-1.40138,50.937322 +-1.121018,50.851657 +-1.742715,50.789459 +-1.790505,50.927239 +-1.182673,50.866988 +-1.366304,50.915915 +-1.071928,50.834173 +-1.002914,50.856769 +-1.388902,50.939245 +-0.818109,51.080976 +-1.293597,51.070985 +-0.970652,51.358974 +-1.171354,50.678707 +-1.012015,50.904112 +-1.488543,50.923573 +-1.279467,50.589361 +-0.979254,50.860243 +-1.250357,50.677048 +-1.351151,50.91415 +-0.797688,51.336357 +-1.09714,51.275663 +-1.218985,50.867587 +-1.396906,50.906842 +-1.179482,50.975865 +-1.300398,50.853311 +-0.940845,51.004512 +-1.243777,50.705153 +-1.150149,50.658491 +-1.075105,50.845844 +-1.453733,50.672288 +-1.241495,50.590172 +-1.656786,50.768151 +-1.400113,50.916327 +-1.122374,51.320671 +-1.488146,50.706445 +-1.228668,50.724973 +-1.286218,50.937197 +-1.336038,50.927563 +-1.17898,50.639903 +-1.302898,50.711133 +-1.399505,50.911594 +-1.189054,50.821062 +-1.074559,51.253627 +-1.211721,50.83905 +-1.578413,50.889527 +-0.95549,51.100602 +-1.443873,50.656414 +-0.761329,51.249869 +-1.273266,50.875123 +-1.242847,50.856045 +-1.456294,50.917025 +-1.056491,50.827898 +-1.16458,50.854423 +-1.395464,50.918273 +-1.091123,50.799279 +-1.342231,50.67351 +-0.830709,51.29558 +-1.218188,50.654876 +-1.286958,50.703141 +-1.552611,50.749597 +-1.127586,51.259996 +-0.968672,51.153225 +-0.910191,51.015326 +-1.179008,50.828069 +-1.200315,50.913098 +-1.304014,50.718972 +-1.355513,51.363269 +-0.767338,51.292007 +-1.379287,50.968708 +-1.180645,50.727937 +-1.540894,51.21431 +-0.759415,51.249633 +-1.065841,50.904312 +-1.017193,50.895955 +-0.931782,51.055956 +-1.096774,51.085673 +-1.343323,50.882075 +-0.822264,51.341957 +-1.321797,50.699958 +-1.005069,50.885717 +-1.201189,50.992499 +-1.322794,51.176924 +-0.776873,51.295857 +-1.572051,50.964752 +-1.328424,51.075777 +-0.836611,51.275406 +-0.973897,50.87319 +-1.446065,51.199522 +-1.500131,50.704744 +-1.481356,51.195925 +-1.260878,50.641566 +-1.347118,51.011183 +-1.095391,51.259608 +-1.313907,50.720533 +-1.150324,50.792963 +-1.358832,50.967959 +-1.439509,50.87665 +-0.848989,51.25856 +-1.166112,50.801143 +-1.307093,50.892378 +-1.065793,50.848423 +-1.29996,50.707743 +-1.57843,51.23195 +-1.316489,50.889601 +-1.290903,50.887389 +-1.37443,50.916741 +-1.09615,50.792439 +-0.835721,51.28679 +-1.307082,51.060608 +-0.743635,51.282925 +-1.150438,50.792982 +-1.405794,50.92927 +-0.954289,51.266373 +-1.251228,50.920837 +-1.456609,50.938923 +-1.001249,50.933364 +-1.071728,51.272497 +-1.464149,50.934237 +-1.249621,50.8783 +-1.023106,50.842345 +-1.405097,50.906965 +-1.194738,50.843835 +-1.073373,50.792719 +-1.184217,51.205265 +-1.254058,50.691802 +-1.463456,51.215375 +-1.552471,50.768697 +-1.12183,50.893893 +-1.068042,51.138511 +-1.194809,50.843853 +-1.17769,50.936178 +-1.332894,51.06172 +-1.138485,51.252676 +-1.435544,50.874275 +-1.463365,51.214574 +-0.902316,51.346341 +-1.618915,51.168273 +-1.597515,50.762943 +-1.470793,50.92559 +-1.433075,50.924298 +-1.036349,51.114659 +-1.434287,50.92291 +-1.412931,50.904873 +-1.043457,50.872999 +-1.177102,50.820169 +-1.380175,50.939379 +-1.135034,51.284644 +-1.069247,50.846867 +-0.937788,50.850484 +-0.963165,51.152062 +-1.139737,51.233955 +-0.750588,51.306757 +-1.085691,50.8326 +-1.016793,50.864324 +-1.28377,50.915852 +-1.157326,51.218302 +-0.998995,50.908435 +-1.129219,50.797942 +-1.211919,50.858502 +-1.667586,51.196251 +-1.087205,50.80156 +-1.260784,51.130095 +-0.829514,51.281063 +-1.33763,50.914623 +-0.97086,51.358661 +-1.073956,50.837912 +-1.036204,50.880799 +-1.656427,50.755254 +-0.969839,50.977307 +-1.444673,50.9217 +-1.179529,51.208073 +-1.08531,50.813541 +-0.962004,50.890369 +-0.775888,51.261694 +-1.074207,51.276842 +-0.773159,51.309801 +-1.265174,50.978387 +-1.106194,51.2812 +-1.234079,50.927245 +-1.102089,50.849004 +-1.63792,50.758004 +-1.177056,50.712831 +-1.139837,50.792329 +-1.36741,50.896255 +-1.077115,51.076977 +-1.041271,50.873592 +-0.752525,51.110672 +-0.928493,51.01358 +-1.582648,51.123333 +-1.269454,50.721432 +-1.10593,51.280721 +-1.133384,50.885751 +-1.258755,50.724341 +-1.210371,50.839077 +-1.557548,50.878335 +-1.13857,50.848137 +-1.196504,51.307724 +-1.559178,50.752158 +-1.187484,50.852615 +-1.073227,50.808734 +-1.340715,51.016417 +-1.476781,51.21075 +-1.295182,50.880796 +-1.027779,51.117951 +-1.535494,50.953597 +-1.304367,51.044712 +-1.137092,50.799637 +-1.393781,50.847394 +-1.271785,50.878018 +-1.063894,51.258731 +-1.394038,50.919641 +-1.073174,50.781279 +-0.755377,51.094884 +-0.766,51.324788 +-0.737523,51.291429 +-0.765848,51.324579 +-0.741667,51.242645 +-0.438187,51.331001 +-0.250642,51.268863 +-0.324032,51.308803 +-0.066869,51.290218 +-0.626416,51.310231 +-0.44372,51.195422 +-0.507047,51.43514 +-0.331515,51.208417 +-0.472889,51.427065 +-0.786925,51.229509 +-0.366467,51.370741 +-0.540808,51.40143 +-0.214636,51.27171 +-0.192565,51.256551 +-0.463753,51.445146 +-0.525891,51.373071 +-0.362627,51.285006 +-0.323835,51.390165 +-0.374993,51.158382 +-0.570917,51.309396 +-0.49714,51.430175 +-0.349477,51.393334 +-0.323585,51.250569 +-0.310833,51.379871 +-0.549088,51.324613 +-0.482584,51.224853 +-0.152926,51.209286 +-0.690989,51.339152 +-0.041602,51.195344 +-0.499079,51.436845 +-0.767462,51.207481 +-0.301233,51.293268 +-0.49791,51.430806 +-0.210413,51.1833 +-0.573423,51.317898 +-0.609119,51.338497 +-0.542091,51.32485 +-0.473666,51.443037 +-0.270093,51.329196 +-0.811023,51.210297 +-0.505299,51.336993 +-0.170457,51.235461 +-0.761622,51.190379 +-0.124005,51.25791 +-0.113609,51.158883 +-0.575174,51.309062 +-0.077024,51.304621 +-0.770728,51.330997 +-0.478846,51.44823 +-0.473946,51.442842 +-0.263954,51.334789 +-0.753993,51.314499 +-0.553978,51.322461 +0.010643,51.292986 +-0.152283,51.26326 +-0.563377,51.250826 +-0.6887,51.35248 +-0.34706,51.385018 +-0.749585,51.126962 +-0.266681,51.283005 +-0.348165,51.378272 +-0.768509,51.333986 +-0.405615,51.382781 +-0.659686,51.354121 +-0.687222,51.369018 +-0.575224,51.31256 +-0.091344,51.277948 +-0.402137,51.383597 +-0.092773,51.237872 +-0.598977,51.376872 +-0.759306,51.229723 +-0.178404,51.167689 +-0.576124,51.248212 +-0.557417,51.245735 +-0.024584,51.266238 +-0.704372,51.146289 +-0.763143,51.335494 +-0.554286,51.308122 +-0.429821,51.386804 +-0.565137,51.39576 +-0.418007,51.387634 +-0.166039,51.241741 +-0.327069,51.216564 +-0.512943,51.428147 +-0.398842,51.269563 +-0.244334,51.346699 +-0.51279,51.390314 +-0.434276,51.353529 +-0.801596,51.217727 +-0.431255,51.120346 +-0.291551,51.2415 +0.005045,51.320879 +-0.601971,51.191997 +-0.263173,51.334175 +-0.587172,51.258472 +-0.323155,51.270257 +-0.55808,51.255258 +-0.574346,51.317747 +-0.459084,51.38802 +-0.543202,51.195912 +-0.154382,51.292062 +-0.049797,51.25783 +-0.309727,51.166144 +-0.217012,51.226611 +-0.571916,51.248089 +-0.290004,51.277808 +-0.598417,51.175193 +-0.442994,51.36663 +-0.569088,51.258414 +-0.46178,51.371896 +-0.735123,51.24253 +-0.525048,51.382772 +-0.515098,51.173922 +-0.691675,51.364473 +-0.643993,51.216196 +-0.20298,51.232035 +-0.571344,51.24203 +-0.13099,51.246816 +0.001693,51.256052 +-0.325813,51.363917 +-0.149519,51.253549 +-0.792534,51.214397 +-0.505639,51.346853 +-0.60831,51.340573 +-0.58389,51.349399 +-0.499487,51.436689 +0.033279,51.192322 +-0.374866,51.276688 +-0.432902,51.365183 +-0.546145,51.245614 +-0.128894,51.267745 +-0.578355,51.272528 +-0.652115,51.171417 +-0.32167,51.303149 +-0.509732,51.279076 +-0.565027,51.40342 +-0.585181,51.327986 +-0.576521,51.188453 +-0.615158,51.239023 +-0.236554,51.296458 +-0.362571,51.341011 +-0.483669,51.29901 +-0.249656,51.363775 +-0.541761,51.342965 +-0.158658,51.17434 +-0.439402,51.149115 +-0.126915,51.149204 +-0.113082,51.157435 +-0.28556,51.310899 +-0.53452,51.277797 +-0.534364,51.320985 +-0.5397,51.422674 +-0.450197,51.391149 +-0.323884,51.376245 +-0.132989,51.23638 +-0.604167,51.194173 +-0.580727,51.336951 +-0.329322,51.376844 +-0.511452,51.170755 +-0.371893,51.402856 +-0.2712,51.307001 +-0.45158,51.321602 +-0.47554,51.398396 +0.00179,51.168827 +-0.615405,51.319049 +-0.483676,51.224723 +-0.153747,51.274282 +-0.765507,51.228152 +-0.530367,51.319883 +-0.229863,51.286204 +-0.116425,51.152597 +-0.612077,51.320898 +-0.39718,51.306203 +-0.232656,51.325868 +-0.460111,51.372414 +-0.449833,51.391297 +-0.561949,51.392456 +-0.158378,51.293635 +-0.453796,51.366251 +-0.677404,51.158955 +-0.192652,51.256526 +-0.676608,51.354457 +-0.531333,51.245537 +-0.355501,51.288998 +-0.558679,51.194817 +-0.737904,51.313608 +-0.474776,51.427863 +-0.578257,51.246413 +-0.778624,51.218479 +-0.498698,51.437056 +-0.2585,51.321471 +-0.266024,51.232285 +-0.571376,51.24793 +-0.441511,51.153972 +-0.379142,51.396266 +-0.540201,51.302129 +-0.163498,51.194381 +-0.536681,51.424435 +-0.147325,51.2657 +-0.600213,51.196661 +-0.506573,51.336236 +-0.499646,51.436232 +-0.736365,51.226995 +-0.589889,51.198696 +-0.16729,51.204125 +-0.577157,51.237038 +-0.627978,51.111318 +-0.446906,51.389873 +-0.333087,51.384344 +-0.510195,51.38878 +-0.59423,51.264366 +-0.41345,51.338627 +-0.506822,51.387774 +-0.406102,51.416743 +-0.565351,51.333302 +-0.325938,51.295863 +-0.101873,51.292787 +-0.784229,51.222584 +-0.711086,51.136741 +-0.472416,51.343277 +-0.539351,51.309915 +-0.735494,51.242057 +-0.745016,51.339024 +-0.463995,51.312989 +-0.392351,51.37457 +-0.434785,51.37777 +-0.505494,51.394565 +-0.388485,51.380326 +-0.666063,51.17932 +-0.162721,51.237633 +-0.377143,51.359729 +-0.336861,51.222558 +-0.744987,51.339033 +-0.199178,51.223739 +-0.661803,51.25773 +-0.532743,51.393803 +-0.579711,51.2476 +-0.166077,51.218459 +-0.448701,51.323578 +-0.522132,51.276013 +-0.35049,51.340779 +-0.05806,51.311349 +-0.620449,51.262322 +-0.180159,51.177617 +-0.457978,51.323826 +-0.347737,51.400954 +-0.721214,51.341572 +-0.205907,51.266873 +-0.553386,51.260505 +-0.148277,51.291938 +-0.238542,51.345704 +-0.175887,51.238712 +-0.120847,51.16132 +-0.590781,51.266995 +-0.535321,51.437277 +-0.241503,51.309607 +-0.040961,51.19796 +-0.269052,51.263409 +-0.43481,51.388417 +-0.267838,51.341411 +-0.539478,51.309989 +-0.210606,51.184598 +-0.742175,51.317979 +-0.342625,51.397185 +-0.729542,51.344145 +-0.544282,51.432829 +-0.514916,51.173812 +-0.516686,51.429381 +-0.465441,51.434261 +-0.002254,51.257576 +-0.260807,51.336379 +-0.442644,51.393477 +-0.343002,51.403072 +-0.750499,51.137043 +-0.646783,51.147355 +-0.100783,51.230197 +-0.106135,51.281228 +-0.116093,51.227773 +-0.472208,51.341314 +-0.321732,51.297512 +-0.39361,51.371862 +-0.517119,51.338187 +-0.268754,51.341883 +-0.52209,51.433559 +-0.559482,51.307575 +-0.497624,51.360545 +-0.493216,51.371018 +-0.575051,51.235178 +-0.50654,51.407455 +-0.468419,51.310691 +-0.487571,51.394065 +-0.265655,51.263035 +-0.593127,51.232879 +-0.486889,51.427364 +-0.418207,51.297596 +-0.581157,51.326732 +-0.642425,51.136549 +-0.441643,51.148363 +-0.610196,51.320471 +-0.50473,51.375653 +-0.26353,51.374485 +-0.604726,51.104029 +-0.026864,51.182839 +-0.578819,51.23562 +-0.57485,51.313059 +-0.293809,51.321361 +-0.50891,51.434507 +-0.747158,51.316791 +-0.220245,51.290536 +-0.463076,51.313435 +-0.19259,51.256651 +-0.204975,51.222345 +-0.479438,51.390956 +-0.456727,51.373484 +-0.449027,51.423182 +-0.503798,51.466796 +-0.267138,51.331797 +-0.583719,51.24772 +-0.274275,51.326389 +-0.606012,51.242565 +-0.047197,51.227192 +-0.816256,51.206654 +0.006558,51.160678 +-0.169917,51.267836 +-0.312229,51.300055 +-0.468973,51.444378 +-0.370822,51.399415 +-0.553727,51.248729 +-0.801503,51.214165 +-0.815838,51.206209 +-0.324068,51.193509 +-0.592698,51.408719 +-0.53351,51.158121 +-0.189219,51.209296 +-0.538134,51.325619 +0.003978,51.146702 +-0.392723,51.344666 +-0.351758,51.256932 +-0.490897,51.367266 +-0.727457,51.248777 +-0.396581,51.368657 +-0.804868,51.206385 +-0.161783,51.174524 +-0.694159,51.183468 +-0.509313,51.375685 +-0.276609,51.36252 +-0.599672,51.240925 +-0.327891,51.311979 +-0.460096,51.372413 +-0.51608,51.43387 +-0.486223,51.145747 +-0.501117,51.436548 +-0.172172,51.266289 +-0.303118,51.305552 +-0.494609,51.415252 +-0.559877,51.315115 +-0.236631,51.296701 +-0.326635,51.280235 +-0.007261,51.259442 +-0.448024,51.369143 +-0.581167,51.235666 +-0.800493,51.214451 +-0.538133,51.402368 +-0.647684,51.172796 +-0.101379,51.257806 +-0.553119,51.394452 +-0.505628,51.404548 +-0.282751,51.360767 +-0.199666,51.261868 +-0.57133,51.38892 +-0.421666,51.428734 +-0.087992,51.143395 +-0.448905,51.422974 +-0.57144,51.239837 +-0.328811,51.37628 +-0.469711,51.428337 +-0.5758,51.238766 +-0.493954,51.381351 +-0.260873,51.365741 +-0.567903,51.247654 +-0.071723,51.258229 +-0.578428,51.386678 +-0.729939,51.348492 +-0.752333,51.100832 +-0.250016,51.347558 +-0.59208,51.409161 +-0.248246,51.360832 +-0.169724,51.211349 +-0.390224,51.307367 +-0.201813,51.33904 +-0.063295,51.259601 +-0.011094,51.25466 +-0.743353,51.338961 +-0.422682,51.41971 +-0.170733,51.235016 +-0.451581,51.321584 +-0.248505,51.344999 +-0.407716,51.393862 +-0.06325,51.257954 +-0.537639,51.436335 +-0.295303,51.293065 +-0.562084,51.261952 +-0.247871,51.348065 +-0.460603,51.324302 +-0.42715,51.417738 +-0.048137,51.220202 +-0.515537,51.434645 +-0.442954,51.433011 +-0.735083,51.245542 +-0.128924,51.216873 +-0.044077,51.307141 +-0.538651,51.265079 +-0.41854,51.387183 +-0.339588,51.359581 +-0.723653,51.112779 +-0.505123,51.337998 +-0.248058,51.345056 +-0.168185,51.26851 +-0.434828,51.336495 +-0.53996,51.419026 +-0.511281,51.465992 +-0.327138,51.26125 +-0.744365,51.227738 +-0.545213,51.25883 +-0.666911,51.232754 +-0.577946,51.234683 +-0.096114,51.257585 +-0.446703,51.320683 +-0.489972,51.372236 +-0.569886,51.425105 +-0.533391,51.414421 +-0.579206,51.317437 +-0.493849,51.462433 +-0.476838,51.430282 +-0.441905,51.318713 +-0.733146,51.316011 +-0.35085,51.340757 +-0.539395,51.300842 +-0.508664,51.388571 +-0.652722,51.165822 +-0.637985,51.325581 +-0.749088,51.311776 +-0.003287,51.230408 +-0.539833,51.418063 +-0.7391,51.314466 +-0.540024,51.415215 +-0.198232,51.323464 +-0.569411,51.332461 +-0.252854,51.360523 +-0.473161,51.443075 +-0.409123,51.367803 +-0.173591,51.295951 +-0.261914,51.349992 +-0.57173,51.246666 +-0.077212,51.285712 +-0.205486,51.258908 +-0.687107,51.369026 +-0.688139,51.369101 +-0.488019,51.457628 +-0.251068,51.35011 +-0.456558,51.263927 +-0.794227,51.212625 +-0.817063,51.199189 +-0.267022,51.245735 +-0.475034,51.451624 +-0.098954,51.288792 +-0.683397,51.355604 +-0.492658,51.142179 +-0.548324,51.302914 +-0.400226,51.386089 +-0.534654,51.161282 +-0.570092,51.108071 +-0.328129,51.233935 +-0.368447,51.281841 +-0.501172,51.371111 +-0.412102,51.418299 +-0.733113,51.110068 +-0.300504,51.163735 +-0.734895,51.242473 +-0.200731,51.158556 +-0.331243,51.232181 +-0.440689,51.148692 +-0.01844,51.298761 +-0.559814,51.401405 +-0.365517,51.369163 +-0.426269,51.312254 +-0.3345,51.225699 +-0.579219,51.317456 +-0.41601,51.388884 +-0.346896,51.384387 +-0.572674,51.2347 +-0.487936,51.37167 +-0.262043,51.263422 +-0.411248,51.329236 +-0.577731,51.429544 +-0.646579,51.294487 +-0.418446,51.370752 +-0.243408,51.334842 +-0.523173,51.335197 +-0.71248,51.254081 +-0.661677,51.363676 +-0.402955,51.385308 +-0.425339,51.333554 +-0.801659,51.208681 +-0.334883,51.316206 +-0.711623,51.227292 +-0.167415,51.317752 +-0.711404,51.349909 +-0.289904,51.277789 +-0.539244,51.110576 +-0.167291,51.180654 +-0.56339,51.247643 +-0.771868,51.330757 +-0.429776,51.386848 +-0.088391,51.301057 +-0.400527,51.116414 +-0.317733,51.236583 +-0.000273,51.243442 +-0.265726,51.253144 +-0.54447,51.432796 +-0.752257,51.32984 +-0.525304,51.372137 +-0.280373,51.334114 +-0.389331,51.378755 +-0.537018,51.43371 +-0.72263,51.274587 +-0.509296,51.434997 +-0.053789,51.249847 +-0.331191,51.315929 +-0.568426,51.238641 +-0.001344,51.206498 +-0.467853,51.325116 +-0.067141,51.26836 +-0.190806,51.327981 +-0.600548,51.251726 +-0.555329,51.395477 +-0.061347,51.227212 +-0.541233,51.434158 +-0.615269,51.312132 +-0.589821,51.251544 +0.002962,51.168141 +-0.578779,51.317792 +-0.717102,51.255319 +-0.568745,51.145203 +-0.751321,51.194541 +-0.454229,51.373019 +-0.505015,51.434367 +-0.680468,51.226487 +-0.503161,51.432123 +-0.324143,51.390007 +-0.510639,51.164019 +-0.502019,51.325747 +-0.553555,51.248745 +-0.513484,51.435419 +-0.148285,51.266084 +-0.531928,51.39275 +-0.589137,51.40855 +-0.578691,51.406005 +-0.511459,51.374624 +-0.192563,51.256614 +-0.20287,51.322294 +-0.429242,51.126183 +-0.349822,51.387737 +-0.704759,51.3075 +-0.693184,51.37306 +-0.550742,51.246138 +-0.43543,51.27745 +-0.332395,51.315964 +-0.54046,51.348659 +-0.645966,51.14302 +-0.15219,51.263412 +-0.240619,51.358964 +-0.086582,51.284193 +-0.485554,51.344563 +-0.237241,51.26279 +-0.713155,51.34893 +-0.146437,51.265686 +-0.644192,51.362342 +-0.422175,51.33664 +-0.244404,51.355001 +-0.573759,51.434684 +-0.434809,51.335767 +-0.560335,51.286264 +-0.593652,51.255133 +-0.249382,51.21335 +-0.794356,51.217545 +-0.481247,51.426616 +-0.172179,51.232871 +-0.470916,51.434881 +-0.331592,51.315575 +-0.469589,51.231059 +-0.435108,51.347227 +-0.479083,51.30583 +-0.244816,51.311501 +-0.483721,51.253005 +-0.16618,51.248641 +-0.303289,51.309485 +-0.707369,51.299373 +-0.419283,51.420689 +-0.050387,51.164222 +-0.154861,51.290495 +-0.610607,51.278329 +-0.386476,51.3087 +-0.172393,51.252776 +-0.58579,51.205876 +-0.646736,51.341815 +-0.575795,51.238919 +-0.450901,51.425626 +-0.435345,51.39212 +-0.473004,51.427076 +-0.461925,51.371871 +-0.465027,51.324629 +-0.30694,51.294484 +-0.212967,51.155353 +-0.434903,51.351136 +-0.258247,51.331943 +-0.530504,51.268862 +-0.57698,51.245085 +0.004932,51.257031 +-0.570214,51.348621 +-0.540646,51.408784 +-0.605936,51.239867 +-0.571327,51.242111 +-0.529405,51.390749 +-0.506362,51.102472 +-0.688093,51.36919 +-0.72198,51.263393 +-0.128132,51.172489 +-0.567899,51.237168 +-0.645634,51.172458 +-0.335801,51.315437 +-0.564034,51.427777 +-0.523014,51.324961 +-0.499568,51.436843 +-0.343134,51.401401 +-0.508167,51.398115 +-0.128494,51.202765 +-0.7769,51.233253 +-0.757835,51.332192 +-0.299837,51.309318 +-0.323693,51.237343 +-0.511593,51.290268 +-0.405824,51.390814 +-0.454297,51.373119 +-0.191497,51.257479 +-0.354469,51.364368 +-0.602632,51.312477 +-0.502103,51.436318 +-0.57038,51.235229 +-0.776958,51.233254 +-0.565082,51.23886 +-0.586931,51.237831 +-0.54927,51.240581 +-0.494493,51.415295 +-0.395649,51.36984 +-0.472574,51.432627 +-0.151481,51.263581 +-0.097991,51.240583 +-0.593655,51.265357 +-0.533435,51.39418 +-0.514586,51.281952 +-0.75482,51.32636 +-0.791964,51.212107 +-0.291487,51.292713 +-0.754614,51.314893 +-0.463775,51.197899 +-0.571578,51.246044 +-0.679211,51.354865 +-0.451503,51.336672 +-0.511709,51.436449 +-0.171009,51.239607 +-0.469225,51.4377 +-0.496576,51.350442 +-0.226691,51.3462 +-0.488625,51.407441 +-0.514876,51.290283 +-0.397602,51.306029 +-0.812458,51.214061 +-0.245858,51.31166 +-0.50255,51.347794 +-0.319412,51.302514 +-0.321233,51.219538 +-0.227477,51.327309 +-0.377901,51.159483 +-0.417934,51.387678 +-0.571316,51.388929 +-0.318549,51.372815 +-0.607933,51.256275 +-0.445628,51.310049 +-0.322455,51.302863 +-0.445975,51.368117 +-0.651449,51.170726 +-0.528283,51.444976 +-0.711079,51.299558 +-0.022017,51.267283 +-0.079868,51.308327 +-0.596365,51.245543 +-0.2495,51.358072 +-0.528969,51.390896 +-0.596202,51.250433 +-0.546317,51.333283 +-0.643226,51.136999 +-0.264872,51.368642 +-0.100136,51.242416 +-0.164002,51.195369 +-0.649096,51.168514 +-0.565693,51.301176 +0.017832,51.254786 +-0.57285,51.263721 +-0.559096,51.268138 +-0.638978,51.335206 +-0.796027,51.214397 +-0.163293,51.219692 +-0.755079,51.337486 +-0.386504,51.349212 +-0.538922,51.242071 +-0.750686,51.3195 +-0.127902,51.199365 +-0.406675,51.394881 +-0.496299,51.429481 +-0.431847,51.118061 +-0.556688,51.431751 +-0.575844,51.437497 +-0.52332,51.139989 +-0.492684,51.380651 +-0.610752,51.19837 +-0.329639,51.232976 +-0.364605,51.370184 +-0.515683,51.391061 +-0.545284,51.318298 +-0.768134,51.183361 +-0.440053,51.283608 +0.008383,51.213212 +-0.500181,51.338097 +-0.53133,51.290166 +-0.21744,51.292589 +-0.545802,51.399451 +-0.232448,51.242007 +-0.343082,51.402848 +-0.462421,51.44539 +-0.604687,51.374791 +-0.642687,51.113972 +-0.28478,51.347191 +-0.744409,51.338128 +-0.361238,51.401287 +-0.503487,51.337977 +-0.05947,51.312622 +-0.416835,51.308692 +-0.505536,51.336789 +-0.539789,51.407244 +-0.555561,51.267043 +-0.11609,51.172062 +-0.725569,51.286497 +-0.60889,51.275844 +-0.311698,51.252746 +-0.140928,51.261192 +-0.49984,51.436873 +-0.539415,51.418075 +-0.245911,51.333954 +-0.595244,51.250359 +-0.261024,51.371228 +-0.509277,51.429422 +-0.710146,51.088369 +-0.699301,51.297557 +-0.435275,51.424933 +-0.497128,51.359891 +-0.43971,51.37325 +-0.060963,51.30512 +-0.455303,51.436259 +-0.527226,51.44338 +-0.511458,51.432228 +-0.508564,51.335057 +-0.25682,51.338919 +-0.312847,51.248761 +-0.30007,51.309231 +-0.374642,51.346386 +-0.527373,51.333154 +-0.377901,51.159483 +-0.611065,51.184651 +-0.327333,51.282718 +-0.047484,51.150999 +-0.574871,51.159837 +-0.756409,51.316962 +-0.06129,51.227184 +-0.357811,51.37454 +-0.342642,51.403489 +-0.612187,51.229681 +-0.076119,51.310487 +-0.557498,51.400989 +-0.202847,51.337572 +-0.676519,51.354061 +-0.555074,51.306315 +-0.57043,51.206346 +-0.544528,51.325869 +-0.445258,51.320124 +-0.711948,51.253625 +-0.176791,51.249895 +-0.3244,51.136976 +-0.31432,51.374912 +-0.17059,51.215868 +-0.48929,51.292941 +-0.529971,51.443055 +-0.797629,51.215573 +-0.400412,51.382809 +-0.439427,51.149214 +-0.495699,51.369773 +-0.53293,51.137169 +-0.336511,51.36165 +-0.478355,51.372031 +-0.152003,51.265225 +-0.314661,51.237546 +-0.811141,51.206827 +-0.321733,51.302215 +-0.514664,51.119745 +-0.739445,51.230095 +-0.786409,51.220286 +-0.71111,51.251314 +-0.206774,51.327812 +-0.387121,51.383985 +-0.346999,51.384334 +-0.438805,51.317458 +-0.750588,51.319445 +-0.396337,51.368653 +-0.55453,51.396196 +-0.260147,51.276433 +-0.470273,51.351136 +-0.397335,51.40095 +-0.596017,51.326588 +-0.575658,51.237326 +-0.800421,51.214478 +-0.590139,51.204571 +-0.393517,51.33796 +-0.597104,51.406632 +-0.128196,51.203039 +-0.077889,51.310022 +-0.418066,51.38759 +-0.015638,51.263272 +-0.487358,51.226012 +0.029847,51.170564 +-0.513425,51.435463 +-0.354595,51.328373 +-0.344949,51.390573 +-0.43438,51.36522 +-0.650893,51.187329 +-0.164652,51.24636 +-0.582414,51.320435 +-0.529534,51.269614 +-0.331121,51.315892 +-0.069764,51.274888 +-0.485559,51.372296 +-0.164362,51.254008 +-0.215516,51.313 +-0.755424,51.321025 +-0.023012,51.181902 +-0.442074,51.366231 +-0.233113,51.3252 +-0.211056,51.321052 +-0.482672,51.440914 +-0.62447,51.359477 +-0.488832,51.350118 +-0.642814,51.171526 +-0.613623,51.312463 +-0.088818,51.286981 +-0.566086,51.308825 +-0.604595,51.312572 +-0.485346,51.140637 +-0.278705,51.2832 +-0.177331,51.239885 +-0.513416,51.433503 +-0.330325,51.315287 +-0.488177,51.294077 +-0.544414,51.432759 +-0.342053,51.360119 +-0.039088,51.259252 +-0.550277,51.254109 +-0.543773,51.435718 +-0.19562,51.22355 +-0.467758,51.436386 +-0.56275,51.319629 +-0.499714,51.436773 +-0.799502,51.214001 +-0.387006,51.385602 +-0.450176,51.391346 +-0.442162,51.366178 +-0.468194,51.298925 +-0.374202,51.27925 +-0.704378,51.307765 +-0.337998,51.37373 +-0.242924,51.337362 +-0.003711,51.255029 +-0.181766,51.237481 +-0.435245,51.392101 +-0.186773,51.237289 +-0.155566,51.286873 +-0.174427,51.230712 +-0.20939,51.257673 +-0.439362,51.149034 +-0.605732,51.243281 +-0.316845,51.298574 +-0.573517,51.315777 +-0.192621,51.256579 +-0.465133,51.401381 +-0.319029,51.236413 +-0.066994,51.144335 +-0.787222,51.219854 +-0.272608,51.325672 +-0.774854,51.220229 +-0.571116,51.302996 +-0.065737,51.26117 +-0.727829,51.301755 +-0.417056,51.383971 +-0.542613,51.326043 +-0.590716,51.381035 +-0.597215,51.32635 +-0.178638,51.251039 +-0.57217,51.297686 +-0.715999,51.337595 +-0.736744,51.101087 +-0.161623,51.260503 +-0.758347,51.332881 +-0.782597,51.217657 +-0.348871,51.363057 +-0.378164,51.223317 +-0.166549,51.199006 +-0.367187,51.277327 +-0.499475,51.350929 +-0.014236,51.186681 +-0.442218,51.366233 +-0.210746,51.322388 +-0.167945,51.324972 +-0.330412,51.315252 +-0.192619,51.256642 +-0.078869,51.308527 +-0.273686,51.355445 +-0.380231,51.401263 +-0.534472,51.141298 +-0.570201,51.258095 +-0.607938,51.366602 +-0.317588,51.392368 +-0.626842,51.313267 +-0.315024,51.298548 +-0.760931,51.336073 +-0.466957,51.371748 +-0.785006,51.234408 +-0.418069,51.332071 +-0.668975,51.353715 +-0.345735,51.239482 +-0.333248,51.387044 +-0.195548,51.334061 +-0.549864,51.398287 +-0.63619,51.203093 +-0.00494,51.259088 +-0.506826,51.369961 +-0.562616,51.398247 +-0.053332,51.163561 +-0.410857,51.41813 +-0.211492,51.317597 +-0.164749,51.180182 +-0.452082,51.33909 +-0.625634,51.303766 +-0.301754,51.308302 +-0.595853,51.241212 +-0.540932,51.432761 +-0.462816,51.313486 +-0.156236,51.169428 +-0.413848,51.418557 +-0.47308,51.309043 +-0.5664,51.432625 +-0.244673,51.348332 +-0.426162,51.385793 +-0.05672,51.310131 +-0.333675,51.298069 +-0.188591,51.229682 +-0.493578,51.220606 +-0.266909,51.283422 +-0.711235,51.08928 +-0.420335,51.384303 +-0.40281,51.128936 +-0.471434,51.326179 +-0.567642,51.249116 +-0.322437,51.386341 +-0.526611,51.388699 +-0.24757,51.213539 +-0.133946,51.269381 +-0.500871,51.386476 +-0.610403,51.178096 +-0.255338,51.36207 +-0.575746,51.394369 +-0.172682,51.240406 +-0.269568,51.340465 +-0.203577,51.336531 +-0.404942,51.265213 +-0.359749,51.373399 +-0.77152,51.330897 +-0.472165,51.431102 +-0.341143,51.238509 +-0.472287,51.427012 +-0.514385,51.429811 +-0.581733,51.426176 +-0.348505,51.390794 +-0.642998,51.265139 +-0.495642,51.419284 +-0.534734,51.292241 +-0.559997,51.323668 +-0.462508,51.445364 +-0.317402,51.172595 +-0.534543,51.161164 +0.020989,51.245055 +-0.710175,51.347674 +-0.68556,51.258386 +-0.372959,51.277516 +-0.526025,51.334441 +-0.157971,51.230328 +-0.471693,51.230664 +-0.049995,51.245009 +-0.575079,51.42971 +-0.57363,51.236654 +-0.594394,51.246761 +-0.01923,51.268081 +-0.673338,51.123721 +-0.249765,51.344335 +-0.325837,51.241033 +-0.327651,51.289377 +-0.321424,51.236321 +-0.316727,51.386457 +-0.359815,51.400898 +-0.740691,51.317675 +-0.032188,51.172749 +-0.557022,51.421603 +-0.352825,51.406178 +-0.491207,51.134939 +-0.243173,51.147726 +-0.038586,51.305692 +-0.749903,51.338807 +-0.733308,51.226189 +-0.499769,51.436423 +-0.646939,51.361258 +-0.245286,51.346939 +-0.580274,51.25257 +-0.555038,51.315694 +-0.24208,51.283978 +-0.12217,51.199525 +-0.173551,51.231139 +-0.028981,51.263983 +-0.597234,51.244304 +-0.744922,51.333529 +-0.211095,51.238464 +-0.697206,51.183996 +-0.444096,51.319686 +-0.199063,51.222668 +-0.366453,51.370741 +-0.539218,51.310489 +-0.032573,51.243306 +-0.363382,51.347668 +-0.624541,51.250563 +0.02526,51.270863 +-0.370894,51.4075 +-0.318538,51.368795 +-0.419934,51.419331 +-0.568608,51.422734 +-0.245334,51.360356 +-0.606405,51.177374 +-0.517568,51.460361 +-0.26231,51.279514 +-0.327725,51.216636 +-0.214875,51.312873 +-0.071525,51.297534 +-0.479779,51.340316 +-0.795066,51.217219 +-0.571133,51.2479 +-0.417849,51.384305 +-0.571528,51.239776 +-0.603363,51.345577 +-0.499551,51.436483 +-0.167555,51.177241 +-0.41446,51.286844 +-0.710436,51.22674 +-0.320389,51.225803 +-0.275083,51.364908 +-0.739278,51.318964 +-0.515657,51.434503 +-0.333827,51.313691 +-0.167011,51.263051 +-0.593397,51.429499 +-0.596563,51.194307 +-0.584713,51.249405 +-0.070469,51.297408 +-0.744558,51.315334 +-0.285475,51.304711 +-0.663255,51.349936 +-0.483587,51.420226 +-0.579514,51.378499 +-0.616042,51.251578 +-0.162161,51.316366 +-0.170794,51.234927 +-0.324,51.355339 +-0.458577,51.35306 +-0.78312,51.225 +-0.708691,51.233797 +-0.463777,51.324667 +-0.553782,51.322764 +-0.06561,51.259072 +-0.05114,51.257924 +-0.127091,51.261331 +-0.699662,51.355867 +-0.510455,51.375016 +-0.434689,51.397039 +-0.568634,51.218545 +-0.55439,51.396077 +-0.093429,51.286103 +-0.498586,51.436956 +-0.049148,51.235912 +-0.711947,51.22699 +-0.374666,51.276667 +-0.581686,51.235574 +-0.447196,51.422888 +-0.347078,51.378931 +-0.565978,51.237666 +-0.573824,51.249398 +-0.163545,51.182034 +-0.160037,51.17563 +-0.518502,51.432848 +-0.563739,51.332509 +-0.101511,51.255299 +-0.248086,51.312296 +-0.201091,51.263184 +-0.263052,51.136917 +-0.264329,51.332438 +-0.280056,51.286943 +-0.618194,51.335583 +-0.263662,51.333777 +-0.493072,51.380207 +-0.197928,51.290923 +-0.490107,51.227774 +-0.065432,51.258206 +-0.342255,51.349349 +-0.016683,51.271635 +-0.499902,51.219869 +-0.261879,51.263581 +-0.4999,51.436361 +-0.346963,51.38374 +-0.296355,51.316956 +-0.530892,51.332173 +-0.535857,51.243831 +-0.109847,51.240748 +-0.16659,51.246633 +-0.570256,51.305737 +-0.549791,51.398304 +-0.017502,51.272269 +-0.68987,51.106561 +-0.155124,51.16825 +-0.464151,51.18875 +-0.590197,51.204545 +-0.310745,51.295933 +-0.154424,51.166441 +-0.616403,51.156891 +-0.329038,51.246808 +-0.222464,51.350048 +-0.585285,51.248054 +-0.626133,51.180764 +-0.05752,51.20481 +-0.316883,51.172704 +-0.53072,51.443451 +-0.502277,51.3685 +-0.317864,51.392282 +-0.382562,51.344922 +-0.135632,51.234444 +-0.573663,51.315715 +-0.758526,51.317731 +-0.800323,51.216563 +-0.538864,51.43581 +-0.457355,51.220836 +-0.063024,51.258895 +-0.440567,51.317958 +-0.189862,51.173173 +-0.423771,51.385949 +-0.468618,51.434779 +-0.205128,51.258912 +-0.498571,51.369361 +-0.530739,51.443316 +-0.563225,51.319563 +-0.082696,51.257654 +-0.044267,51.140153 +-0.057464,51.310863 +-0.724154,51.225226 +-0.452089,51.320988 +-0.263902,51.367683 +-0.262289,51.263344 +-0.018311,51.174097 +-0.326633,51.234507 +-0.310208,51.237886 +-0.431654,51.215674 +-0.496455,51.28699 +-0.409482,51.340012 +-0.249922,51.357925 +-0.337772,51.291472 +-0.513166,51.423501 +-0.230885,51.316336 +-0.169788,51.253401 +-0.600601,51.37637 +-0.634855,51.36672 +-0.72585,51.250963 +-0.47242,51.340571 +-0.762962,51.231173 +-0.004382,51.313981 +-0.521705,51.437439 +-0.545189,51.256384 +-0.626215,51.305436 +-0.152948,51.251661 +-0.626458,51.310762 +-0.816595,51.206289 +-0.672438,51.129691 +-0.512967,51.435835 +-0.757696,51.33202 +-0.528236,51.334892 +-0.447653,51.324868 +-0.604144,51.195863 +-0.559059,51.42955 +-0.199048,51.327892 +-0.492386,51.370028 +-0.281211,51.360448 +-0.358512,51.374244 +-0.539778,51.419339 +-0.259767,51.349439 +-0.171099,51.217477 +-0.157005,51.191041 +-0.362571,51.340993 +-0.46754,51.372367 +-0.416093,51.403129 +-0.468066,51.437074 +-0.562421,51.242416 +-0.431895,51.407703 +-0.341756,51.319829 +-0.211541,51.317067 +-0.614028,51.309483 +-0.471486,51.438944 +-0.437471,51.423379 +-0.333299,51.386433 +-0.632008,51.227315 +-0.567499,51.310901 +-0.101609,51.292926 +-0.184678,51.237742 +-0.593679,51.25516 +-0.126806,51.193916 +-0.578531,51.239393 +-0.304381,51.304779 +-0.321811,51.257981 +-0.456872,51.31615 +-0.715189,51.086222 +-0.619874,51.316458 +-0.474239,51.442684 +-0.162897,51.235379 +-0.269091,51.331403 +-0.384647,51.410146 +-0.68078,51.296702 +-0.334063,51.284181 +-0.534742,51.194601 +-0.733577,51.084741 +0.007253,51.271821 +-0.75377,51.322752 +-0.174192,51.227597 +-0.492038,51.352641 +-0.793852,51.203934 +-0.564495,51.239743 +-0.390166,51.126748 +-0.585002,51.206829 +-0.182084,51.261749 +-0.545259,51.399336 +-0.474549,51.443318 +-0.532912,51.247247 +-0.075903,51.281347 +-0.573109,51.249345 +-0.223497,51.292114 +-0.514869,51.247829 +-0.251309,51.343764 +-0.377196,51.159195 +-0.005262,51.259597 +-0.322242,51.235505 +-0.115889,51.26081 +-0.050305,51.154967 +-0.364049,51.349098 +-0.46375,51.445227 +-0.35708,51.374917 +-0.32679,51.295291 +-0.605108,51.197125 +-0.635009,51.304487 +-0.027105,51.303448 +-0.586408,51.247393 +-0.205699,51.242778 +-0.241585,51.309698 +-0.505232,51.347882 +-0.574341,51.193247 +-0.212001,51.316669 +-0.533127,51.364241 +-0.567833,51.448883 +-0.688098,51.36098 +-0.601264,51.323494 +-0.552758,51.250857 +-0.539974,51.419953 +-0.367519,51.407813 +-0.560826,51.332473 +-0.50176,51.245144 +-0.7241,51.32192 +-0.151193,51.25256 +-0.441024,51.365857 +-0.810507,51.23199 +-0.618707,51.229092 +-0.570949,51.424669 +-0.607217,51.347278 +-0.166037,51.218369 +-0.71991,51.256401 +-0.743596,51.314316 +-0.359658,51.400869 +-0.144166,51.260857 +-0.694759,51.360101 +-0.540904,51.363169 +-0.261499,51.32263 +-0.184734,51.237788 +-0.234595,51.261527 +-0.589183,51.266742 +-0.369334,51.402461 +-0.275182,51.348498 +-0.509247,51.429431 +-0.411754,51.325394 +-0.559294,51.39371 +-0.573876,51.248167 +-0.196845,51.191815 +-0.254684,51.361503 +-0.6119,51.243516 +-0.618743,51.285295 +-0.171202,51.315275 +-0.228655,51.285538 +-0.556538,51.246363 +-0.494412,51.382724 +-0.534077,51.194359 +-0.504918,51.337231 +-0.504214,51.424547 +-0.178303,51.167714 +-0.352527,51.406084 +-0.430514,51.419042 +-0.26705,51.333378 +-0.4212,51.428898 +-0.483953,51.298636 +-0.098301,51.287927 +-0.472236,51.427246 +-0.431141,51.21225 +-0.071381,51.295139 +-0.234299,51.327583 +-0.520226,51.380787 +-0.197911,51.323576 +-0.065973,51.261713 +-0.519332,51.400046 +-0.331547,51.31561 +-0.256855,51.334962 +-0.19132,51.266721 +-0.33132,51.31593 +-0.451982,51.339079 +-0.354341,51.401604 +-0.444296,51.367223 +-0.475354,51.370257 +-0.425718,51.335483 +-0.426986,51.312273 +-0.462552,51.313671 +-0.611976,51.248616 +-0.483072,51.334073 +-0.591656,51.204571 +-0.163522,51.19126 +-0.261881,51.255551 +-0.210386,51.327931 +-0.722885,51.272647 +-0.54936,51.264106 +-0.331356,51.305446 +-0.5415,51.323583 +-0.684064,51.36089 +-0.402997,51.369212 +-0.222973,51.293437 +-0.512436,51.425164 +-0.554834,51.313974 +-0.400455,51.38281 +-0.362222,51.340332 +-0.31829,51.172949 +-0.63286,51.227568 +-0.549596,51.303064 +-0.549128,51.323345 +-0.433427,51.399469 +-0.476324,51.43407 +-0.638911,51.329693 +-0.563259,51.198938 +-0.737891,51.144947 +-0.782336,51.225396 +-0.097674,51.284014 +-0.805356,51.208 +-0.553504,51.320216 +-0.47494,51.451434 +-0.622802,51.198908 +-0.17606,51.168381 +-0.363856,51.363384 +-0.49623,51.230604 +-0.43865,51.391292 +-0.492236,51.389908 +-0.18881,51.229928 +-0.516892,51.338103 +-0.080967,51.31223 +-0.49732,51.374677 +-0.170869,51.216412 +-0.262008,51.263583 +-0.622921,51.227092 +-0.010572,51.313861 +-0.188308,51.228122 +-0.066094,51.165193 +-0.417967,51.41257 +-0.445478,51.396787 +-0.521122,51.433214 +-0.536885,51.400041 +-0.580372,51.302902 +-0.421151,51.384412 +-0.61573,51.374508 +-0.524546,51.139195 +-0.377651,51.368117 +-0.439694,51.421889 +-0.498238,51.369446 +-0.504946,51.466019 +-0.004642,51.318239 +-0.170586,51.301902 +-0.486573,51.440003 +-0.564458,51.295685 +-0.596587,51.242965 +-0.610475,51.248976 +-0.363865,51.343358 +-0.520755,51.430341 +-0.512129,51.436373 +-0.226468,51.288715 +-0.558831,51.322395 +-0.477507,51.42619 +-0.797837,51.213075 +-0.718038,51.336556 +-0.348646,51.378494 +-0.487904,51.355195 +-0.487846,51.371336 +-0.666158,51.080763 +-0.458273,51.430947 +-0.523738,51.372135 +0.02124,51.295555 +-0.333698,51.315272 +-0.541885,51.295586 +-0.418933,51.379554 +-0.027105,51.29575 +-0.391931,51.334871 +-0.584955,51.237807 +-0.572751,51.236832 +-0.34914,51.398716 +-0.459449,51.400254 +-0.342604,51.398165 +0.010064,51.290909 +-0.515217,51.382387 +-0.352361,51.387071 +-0.459607,51.395122 +-0.38577,51.22041 +-0.564956,51.40341 +-0.75343,51.314655 +-0.389029,51.379164 +-0.465524,51.433084 +-0.714266,51.348744 +-0.274758,51.279833 +-0.485387,51.430159 +-0.324294,51.237765 +-0.63882,51.172621 +-0.794779,51.213395 +-0.499762,51.43796 +-0.577535,51.248005 +-0.211782,51.317143 +-0.031656,51.209746 +-0.437487,51.217623 +-0.457867,51.354093 +-0.719268,51.088452 +-0.539029,51.281198 +-0.435741,51.392315 +-0.092626,51.257375 +-0.205273,51.240092 +-0.162922,51.172159 +-0.319594,51.369781 +-0.586865,51.328303 +-0.685998,51.340499 +-0.266039,51.362067 +-0.169745,51.236448 +-0.609193,51.322788 +-0.054198,51.309369 +-0.332196,51.391471 +-0.339734,51.374618 +-0.549697,51.187782 +-0.465375,51.312494 +-0.405676,51.395093 +-0.447608,51.32493 +-0.412028,51.339048 +-0.339932,51.349262 +-0.169955,51.267252 +-0.515177,51.462633 +-0.493076,51.37438 +-0.52282,51.433658 +-0.210399,51.327616 +-0.203029,51.25798 +-0.058195,51.250703 +-0.338439,51.381812 +-0.560376,51.313404 +-0.502464,51.368493 +-0.065495,51.258738 +-0.264874,51.335882 +-0.506932,51.400266 +-0.568798,51.258527 +-0.676664,51.354521 +-0.29116,51.292627 +-0.733463,51.327444 +-0.564974,51.403284 +-0.166206,51.247994 +-0.205276,51.241477 +-0.572983,51.448046 +-0.719398,51.083219 +-0.726331,51.292648 +-0.510557,51.377643 +-0.730023,51.346488 +-0.561313,51.2127 +-0.171756,51.309627 +-0.640262,51.364104 +-0.322158,51.235837 +-0.476004,51.342461 +-0.633315,51.214147 +-0.462744,51.324662 +-0.560733,51.401892 +-0.688121,51.370728 +-0.384748,51.39995 +-0.530276,51.434894 +-0.222573,51.292262 +-0.488695,51.386139 +-0.267849,51.238994 +-0.414554,51.333246 +-0.481573,51.332084 +-0.248919,51.268172 +-0.463775,51.432476 +-0.129633,51.175355 +-0.154668,51.294944 +-0.405569,51.395262 +-0.725609,51.332196 +-0.411845,51.322329 +-0.434788,51.425717 +-0.473443,51.447979 +-0.596399,51.312654 +-0.321812,51.235904 +-0.57399,51.309335 +-0.220271,51.240141 +-0.489265,51.37014 +-0.698141,51.334008 +-0.516818,51.433294 +-0.334327,51.225336 +-0.014082,51.185941 +-0.031855,51.304086 +-0.587882,51.163655 +-0.139264,51.264763 +-0.573229,51.291746 +-0.538904,51.171164 +-0.514936,51.435456 +0.004026,51.25434 +-0.11601,51.171916 +-0.22126,51.286901 +-0.091996,51.263579 +-0.507058,51.235059 +-0.422707,51.419809 +-0.5645,51.239591 +-0.657297,51.174265 +-0.47539,51.370905 +-0.32483,51.244715 +-0.188292,51.223796 +-0.156007,51.252573 +-0.668045,51.377866 +-0.507273,51.375236 +-0.32962,51.321248 +-0.035002,51.260622 +-0.063006,51.258984 +0.001854,51.256139 +-0.604406,51.197602 +-0.81748,51.201882 +-0.545921,51.333557 +-0.639598,51.336571 +-0.435126,51.346292 +-0.626411,51.179589 +-0.555588,51.320557 +-0.526376,51.388849 +-0.45576,51.377041 +-0.514547,51.433679 +-0.807301,51.201419 +-0.611937,51.248966 +-0.537834,51.243406 +-0.456801,51.355491 +-0.492331,51.300363 +-0.532845,51.337548 +-0.805146,51.208906 +-0.602096,51.240351 +-0.421709,51.371111 +-0.549471,51.4307 +-0.534128,51.14088 +-0.159512,51.268509 +-0.377035,51.36765 +-0.549772,51.25466 +-0.446899,51.42274 +-0.570014,51.317236 +-0.597574,51.250549 +-0.174555,51.309959 +-0.497969,51.43559 +-0.573705,51.412833 +-0.176171,51.239498 +-0.561564,51.252432 +-0.303459,51.183391 +-0.741306,51.090876 +-0.409193,51.30607 +-0.789415,51.23288 +-0.245105,51.347179 +-0.195985,51.188924 +-0.325603,51.23487 +-0.569049,51.431642 +-0.511897,51.465208 +-0.573751,51.256843 +-0.5764,51.387651 +-0.6325,51.264846 +-0.195267,51.18019 +-0.07428,51.300933 +-0.211015,51.269344 +-0.356767,51.33227 +-0.663824,51.158764 +-0.364077,51.312805 +-0.467974,51.130806 +-0.513117,51.435648 +-0.4743,51.340595 +-0.246043,51.266906 +-0.50457,51.425082 +-0.331691,51.351187 +-0.576325,51.243098 +-0.446249,51.320524 +-0.451612,51.370512 +-0.629243,51.10913 +-0.689806,51.351971 +-0.683762,51.354916 +-0.571328,51.226365 +-0.55848,51.31392 +-0.346135,51.401515 +-0.449404,51.32401 +-0.468657,51.310865 +-0.158128,51.181176 +-0.745537,51.313087 +-0.706208,51.091356 +-0.407359,51.376834 +-0.522225,51.284746 +-0.537611,51.322663 +-0.755096,51.327829 +-0.649455,51.21206 +-0.494354,51.383604 +-0.471331,51.42762 +-0.299343,51.309508 +-0.070995,51.297165 +-0.206715,51.327839 +-0.410771,51.306901 +-0.367761,51.312505 +-0.737405,51.118756 +-0.502846,51.300345 +-0.506376,51.367455 +-0.693187,51.350741 +-0.070211,51.258402 +-0.285873,51.23121 +-0.280424,51.214863 +-0.537019,51.428728 +-0.608102,51.366388 +-0.343277,51.402221 +-0.658382,51.381551 +-0.560094,51.314165 +-0.542826,51.258153 +-0.505675,51.248557 +-0.16759,51.204499 +-0.462253,51.324332 +-0.672647,51.24048 +-0.457139,51.373211 +-0.543936,51.260217 +-0.001293,51.26881 +-0.365784,51.369337 +-0.493346,51.299603 +-0.528951,51.333633 +-0.71652,51.345675 +-0.735417,51.242245 +-0.656369,51.257326 +-0.433416,51.390539 +-0.567921,51.239686 +-0.529128,51.215402 +-0.774905,51.138407 +-0.381934,51.386404 +-0.265158,51.368673 +-0.74838,51.317758 +-0.049556,51.173741 +-0.493127,51.370649 +0.03775,51.282265 +-0.066099,51.301032 +-0.624331,51.228295 +-0.514204,51.351081 +-0.510269,51.435612 +-0.157018,51.19105 +-0.588121,51.248079 +-0.57062,51.135892 +-0.366454,51.370705 +-0.794964,51.217263 +-0.510334,51.334027 +-0.505725,51.338482 +-0.343586,51.403215 +-0.516185,51.38266 +-0.154461,51.269338 +-0.670385,51.234475 +-0.099021,51.296194 +-0.512093,51.116592 +-0.572654,51.449814 +0.030064,51.288127 +-0.513988,51.433609 +-0.33044,51.319227 +-0.436101,51.376277 +-0.06768,51.318729 +-0.483871,51.141157 +-0.498572,51.436938 +-0.265523,51.333895 +-0.41738,51.384164 +-0.477983,51.44865 +-0.539434,51.436447 +-0.407763,51.374726 +-0.412507,51.397478 +-0.644288,51.132488 +-0.090798,51.28731 +-0.423522,51.311174 +-0.539296,51.299456 +-0.466771,51.371728 +-0.006715,51.251843 +-0.57153,51.247572 +-0.323217,51.303225 +-0.115323,51.172976 +-0.071171,51.311098 +-0.576005,51.238634 +-0.732185,51.327979 +-0.545349,51.178619 +-0.55425,51.302861 +-0.733784,51.306379 +-0.21837,51.153583 +-0.058521,51.212659 +-0.003311,51.246416 +-0.735809,51.242564 +0.029546,51.270852 +-0.56778,51.249307 +-0.48229,51.349925 +-0.509366,51.43507 +-0.127705,51.174901 +-0.522029,51.380126 +-0.349614,51.385144 +-0.439729,51.329969 +-0.458858,51.29499 +-0.525331,51.387829 +-0.442467,51.421108 +-0.322173,51.235828 +-0.155519,51.286603 +-0.165389,51.232154 +-0.483081,51.377299 +-0.448904,51.146301 +-0.55769,51.394427 +-0.182926,51.263659 +-0.55566,51.395454 +-0.645396,51.140046 +-0.40573,51.341813 +-0.192762,51.256644 +-0.800656,51.216998 +-0.673269,51.35424 +-0.182805,51.236202 +-0.493185,51.374147 +-0.322901,51.227619 +-0.465561,51.23374 +-0.45594,51.323395 +-0.347176,51.383815 +-0.123333,51.216334 +-0.049507,51.174226 +-0.464951,51.390075 +-0.627219,51.183223 +-0.43202,51.406563 +-0.095241,51.299505 +-0.571601,51.246233 +-0.521167,51.43004 +-0.528683,51.423121 +-0.324429,51.2447 +-0.284055,51.324312 +-0.482505,51.350387 +-0.6,51.345204 +-0.406979,51.387764 +-0.794346,51.212437 +-0.363414,51.342731 +-0.497615,51.435406 +-0.283363,51.291326 +-0.754261,51.122093 +-0.232615,51.325831 +-0.028624,51.26395 +-0.548594,51.320731 +-0.280875,51.25272 +-0.59587,51.261337 +-0.463246,51.433243 +-0.472767,51.444949 +-0.519817,51.431318 +-0.754138,51.314474 +-0.054363,51.25287 +-0.691097,51.362578 +-0.147452,51.217248 +-0.35119,51.385274 +-0.34674,51.314917 +-0.021872,51.161072 +-0.481158,51.339866 +-0.782068,51.225771 +-0.567431,51.317222 +-0.092944,51.140148 +-0.013128,51.228417 +-0.493024,51.380341 +-0.480937,51.152585 +-0.628458,51.317323 +-0.250999,51.356439 +-0.335543,51.361007 +-0.575035,51.429727 +-0.572499,51.309739 +-0.591672,51.169761 +-0.534997,51.415916 +-0.578133,51.350741 +-0.409496,51.367826 +-0.518166,51.277186 +-0.167591,51.243069 +-0.615101,51.311995 +-0.546784,51.435576 +-0.511952,51.335936 +-0.470526,51.443994 +-0.575857,51.268011 +-0.502957,51.248846 +-0.672388,51.353394 +-0.475627,51.451542 +-0.368118,51.399459 +-0.554584,51.332873 +-0.56665,51.316961 +-0.331618,51.315242 +-0.431481,51.365137 +-0.453888,51.43258 +0.011001,51.23618 +-0.501653,51.391566 +-0.060423,51.16125 +-0.446834,51.163243 +-0.131719,51.146377 +-0.412863,51.328601 +-0.071869,51.275974 +-0.413294,51.390952 +-0.196266,51.324189 +-0.793978,51.21282 +-0.426884,51.33495 +-0.570746,51.424738 +-0.576506,51.317486 +-0.484783,51.338348 +-0.120818,51.17399 +-0.456518,51.361773 +-0.554535,51.431607 +-0.329682,51.302553 +-0.318584,51.366772 +-0.662271,51.165509 +-0.52012,51.353772 +-0.16377,51.187892 +-0.234164,51.288841 +-0.021602,51.162039 +-0.017722,51.17647 +-0.537521,51.133018 +-0.038645,51.139565 +-0.563138,51.319606 +-0.546663,51.439387 +-0.266231,51.338348 +-0.593748,51.232725 +-0.557179,51.25611 +-0.799448,51.215547 +-0.510948,51.326157 +-0.165144,51.232186 +0.030003,51.19139 +-0.04328,51.306993 +-0.326814,51.296226 +-0.189616,51.235301 +-0.351426,51.313895 +-0.041525,51.167438 +-0.562771,51.308379 +-0.423067,51.246143 +-0.616623,51.179186 +-0.466669,51.311531 +-0.283448,51.323665 +-0.75073,51.327944 +-0.482595,51.224952 +-0.595323,51.317812 +-0.450018,51.391326 +-0.681878,51.342467 +-0.505124,51.33709 +-0.504671,51.263607 +-0.540761,51.412391 +-0.526479,51.272336 +-0.498337,51.361579 +-0.146078,51.265707 +-0.423036,51.333316 +-0.266128,51.367329 +-0.301385,51.29345 +-0.58043,51.220037 +-0.457334,51.431933 +-0.310237,51.375366 +0.02043,51.25618 +-0.176871,51.241011 +-0.346988,51.384622 +-0.43523,51.335629 +-0.572997,51.310798 +-0.167924,51.180583 +-0.354981,51.400183 +-0.090261,51.285727 +-0.067592,51.291102 +-0.158088,51.172488 +-0.039945,51.310166 +-0.548913,51.255108 +-0.492884,51.378496 +-0.708877,51.233817 +-0.494915,51.432215 +-0.189067,51.223745 +-0.150934,51.268653 +-0.372721,51.399774 +-0.281596,51.290652 +-0.723105,51.344309 +-0.475819,51.429351 +-0.453554,51.37257 +-0.71993,51.08827 +-0.17389,51.169714 +-0.523198,51.38711 +-0.16917,51.242626 +-0.703056,51.185095 +-0.65574,51.195334 +-0.40651,51.386381 +-0.425324,51.310524 +-0.070715,51.260047 +-0.498608,51.377445 +-0.645403,51.0885 +-0.509587,51.37433 +-0.525578,51.247173 +-0.444512,51.320141 +-0.794584,51.21208 +-0.559719,51.321093 +-0.34769,51.378697 +-0.522553,51.340207 +-0.605059,51.322325 +-0.176162,51.168328 +-0.610153,51.302899 +-0.045256,51.308447 +-0.192733,51.327156 +-0.320573,51.386611 +-0.737356,51.242041 +-0.590555,51.248135 +-0.065759,51.15883 +-0.596206,51.262061 +-0.659598,51.167421 +-0.333376,51.299207 +-0.174749,51.323514 +-0.35281,51.406205 +-0.675056,51.374924 +-0.708138,51.138921 +-0.701188,51.312523 +-0.530435,51.319974 +-0.287195,51.335185 +-0.152198,51.265372 +-0.321886,51.297631 +-0.456066,51.355985 +-0.448481,51.321174 +-0.381171,51.400692 +-0.609455,51.27756 +-0.258066,51.363999 +-0.467207,51.449418 +-0.525227,51.37406 +-0.117884,51.151883 +-0.178696,51.287271 +-0.470043,51.433898 +-0.748139,51.339291 +-0.626407,51.310564 +-0.409302,51.326979 +-0.566922,51.201285 +-0.536496,51.435637 +-0.700213,51.148815 +-0.451761,51.322198 +-0.175771,51.168457 +-0.704,51.246308 +-0.344526,51.361647 +-0.711976,51.226972 +-0.178439,51.228508 +-0.546951,51.43984 +-0.46212,51.374202 +-0.443968,51.390041 +-0.582342,51.349299 +-0.528302,51.388397 +-0.54876,51.39456 +-0.246614,51.197994 +-0.529134,51.270014 +-0.477965,51.437077 +-0.015339,51.14535 +-0.051939,51.249538 +-0.539934,51.40766 +-0.555509,51.319432 +-0.622843,51.228269 +-0.597179,51.242352 +-0.337547,51.349705 +-0.544749,51.200868 +-0.564725,51.250303 +-0.349332,51.393386 +-0.511952,51.335927 +-0.603514,51.347207 +-0.111297,51.245915 +-0.338249,51.303295 +-0.564148,51.240333 +-0.31151,51.300512 +-0.239266,51.33317 +-0.172522,51.222391 +-0.723892,51.321675 +-0.332913,51.362229 +-0.509247,51.42944 +-0.14397,51.265368 +-0.37532,51.40597 +-0.209278,51.227716 +-0.316765,51.172397 +-0.59677,51.242122 +-0.155399,51.174981 +-0.171059,51.267971 +-0.286699,51.361589 +-0.571923,51.244609 +-0.26404,51.263676 +-0.359011,51.339361 +-0.60703,51.189855 +-0.455059,51.429008 +-0.33989,51.225164 +-0.494387,51.357194 +-0.56726,51.317193 +-0.522393,51.433527 +-0.607189,51.239639 +-0.652106,51.21736 +-0.579302,51.247397 +-0.436047,51.421283 +-0.224826,51.291118 +-0.268021,51.352942 +-0.174799,51.179656 +-0.336752,51.233923 +-0.473288,51.454785 +-0.327376,51.290632 +-0.734703,51.104689 +-0.153929,51.281551 +-0.717995,51.255679 +-0.59657,51.31271 +-0.496906,51.297751 +-0.5727,51.428952 +-0.348118,51.378792 +-0.07665,51.303958 +-0.613199,51.320327 +-0.242838,51.305077 +-0.469143,51.457797 +-0.321901,51.303107 +-0.747082,51.186708 +-0.408821,51.375694 +-0.762147,51.3357 +-0.016837,51.297358 +-0.507215,51.375235 +-0.59206,51.247659 +-0.735421,51.24211 +-0.596058,51.250468 +-0.326707,51.230497 +-0.539573,51.31918 +-0.576178,51.241379 +-0.352134,51.293726 +-0.441282,51.329469 +-0.403433,51.371151 +-0.271594,51.328202 +-0.309189,51.380027 +-0.513815,51.419453 +-0.682022,51.34246 +-0.312336,51.382761 +-0.335023,51.232244 +-0.562353,51.125008 +-0.576003,51.238688 +-0.747025,51.311143 +-0.479064,51.305946 +-0.531035,51.251306 +-0.234878,51.300893 +-0.426341,51.312228 +-0.516265,51.373534 +-0.574442,51.323899 +-0.598864,51.231212 +-0.362057,51.153777 +-0.196625,51.240706 +-0.794194,51.212768 +-0.487476,51.226319 +-0.483372,51.351954 +-0.413347,51.38026 +-0.317431,51.172577 +-0.665887,51.080741 +-0.503105,51.365579 +-0.589486,51.247475 +-0.755064,51.337513 +-0.205326,51.241307 +-0.585362,51.206285 +-0.315117,51.381767 +-0.741109,51.120738 +-0.241013,51.309645 +-0.727712,51.330906 +-0.572588,51.231443 +-0.193139,51.256911 +-0.567147,51.317138 +-0.261719,51.304666 +-0.607993,51.196377 +-0.22723,51.152225 +-0.434391,51.39691 +-0.486606,51.285577 +-0.561726,51.260086 +-0.512915,51.379813 +-0.120355,51.262015 +-0.196765,51.327551 +-0.063123,51.317548 +-0.605779,51.243624 +-0.165995,51.23996 +-0.257258,51.334941 +-0.379355,51.1698 +-0.810326,51.210667 +-0.474461,51.434297 +-0.36165,51.348714 +-0.199298,51.223984 +-0.309217,51.286396 +-0.724487,51.253619 +-0.605178,51.239804 +-0.545443,51.131534 +-0.427872,51.33544 +-0.492506,51.379939 +-0.238767,51.289989 +-0.570401,51.247945 +-0.453475,51.32329 +-0.444153,51.406185 +-0.692294,51.253902 +-0.188865,51.24457 +-0.615992,51.191166 +-0.565692,51.268057 +-0.331127,51.29475 +-0.319279,51.301856 +-0.332407,51.306144 +-0.322214,51.235865 +-0.320226,51.222419 +-0.453264,51.397808 +-0.335008,51.382887 +-0.42666,51.385952 +-0.52507,51.322613 +-0.030922,51.262514 +-0.021353,51.163186 +-0.599873,51.313073 +-0.448414,51.423039 +-0.046183,51.311619 +-0.493468,51.355897 +-0.618873,51.283345 +-0.525888,51.401342 +-0.413806,51.215074 +0.003537,51.260877 +-0.616673,51.18514 +-0.683522,51.359256 +-0.732961,51.224738 +-0.143954,51.265422 +-0.809174,51.213146 +-0.261343,51.277773 +-0.377664,51.223292 +-0.414451,51.418574 +-0.512771,51.390458 +-0.53424,51.318115 +-0.327309,51.290109 +-0.455258,51.32362 +-0.510501,51.27922 +-0.684082,51.356763 +-0.315649,51.298719 +-0.220882,51.29855 +-0.322401,51.302773 +-0.337569,51.229951 +-0.465299,51.32466 +-0.503707,51.363851 +-0.160832,51.177216 +-0.774421,51.331908 +-0.533339,51.363902 +-0.163605,51.182332 +-0.330107,51.29639 +-0.467446,51.457748 +-0.495613,51.143197 +-0.499915,51.436361 +-0.331942,51.307891 +-0.513832,51.463704 +-0.672759,51.351015 +-0.599982,51.240623 +-0.424077,51.413434 +-0.441047,51.421835 +-0.462037,51.432831 +-0.797601,51.215546 +-0.573219,51.261054 +-0.536561,51.399354 +-0.460879,51.34907 +-0.236393,51.345186 +-0.2656,51.368742 +-0.323187,51.190978 +-0.261593,51.348621 +-0.735586,51.238677 +-0.754758,51.325487 +-0.731284,51.349703 +-0.419393,51.419981 +-0.537734,51.3152 +-0.363256,51.351182 +-0.729311,51.08045 +-0.301576,51.293318 +-0.376205,51.346039 +-0.429948,51.38686 +-0.650088,51.34403 +-0.155676,51.168385 +-0.195848,51.23456 +-0.409473,51.376377 +-0.260669,51.277403 +-0.635123,51.285658 +-0.540395,51.430218 +-0.63964,51.227359 +-0.362395,51.407535 +-0.462888,51.446484 +-0.266829,51.332377 +-0.759227,51.317837 +-0.474166,51.339865 +-0.589662,51.288105 +-0.104065,51.150293 +-0.396203,51.368373 +-0.505046,51.425052 +-0.273984,51.363947 +-0.204822,51.204932 +-0.330229,51.362182 +-0.493369,51.35585 +-0.065018,51.258838 +-0.069591,51.286863 +-0.32331,51.254594 +-0.37426,51.279233 +-0.571296,51.252371 +-0.245144,51.346909 +-0.43021,51.138102 +-0.576669,51.237977 +-0.539761,51.41942 +-0.267157,51.245188 +-0.260386,51.336508 +-0.199232,51.282517 +-0.417926,51.332051 +-0.759335,51.229714 +-0.508443,51.375485 +-0.387122,51.308268 +-0.095687,51.296697 +-0.521706,51.433419 +-0.422192,51.333233 +-0.264153,51.351167 +0.030114,51.285348 +-0.37591,51.360486 +-0.474626,51.425874 +-0.317418,51.17255 +-0.117792,51.220876 +-0.443049,51.415828 +-0.070571,51.144277 +-0.573384,51.295542 +-0.618338,51.184036 +-0.323144,51.303251 +-0.435143,51.392567 +-0.211948,51.31434 +-0.744048,51.3403 +-0.699485,51.356018 +-0.542405,51.341669 +-0.11367,51.158794 +-0.384931,51.270155 +-0.43276,51.388282 +-0.130342,51.221464 +-0.571214,51.30262 +-0.652666,51.383427 +-0.550432,51.398052 +-0.708511,51.089134 +-0.56132,51.237276 +-0.063623,51.259642 +-0.524639,51.387892 +-0.163599,51.241145 +-0.474971,51.308249 +-0.577796,51.236749 +-0.66182,51.352365 +-0.273426,51.355486 +-0.741937,51.108139 +-0.553756,51.260132 +-0.606968,51.356438 +-0.714337,51.133945 +-0.691717,51.363529 +-0.539791,51.134441 +0.016146,51.253916 +-0.157201,51.306566 +-0.364123,51.370402 +-0.494986,51.098702 +-0.573373,51.294976 +0.007642,51.299485 +-0.715143,51.08632 +-0.742584,51.314566 +-0.001527,51.259785 +-0.197173,51.220804 +-0.531882,51.392389 +-0.581157,51.427607 +-0.511377,51.278755 +-0.502069,51.29029 +-0.60132,51.238058 +-0.553599,51.249168 +-0.446695,51.407549 +-0.721697,51.089413 +-0.105949,51.258905 +-0.254377,51.340501 +-0.723139,51.349291 +-0.435821,51.33177 +-0.396509,51.368647 +-0.450274,51.322466 +-0.578611,51.246561 +-0.066526,51.253988 +-0.249107,51.344649 +-0.358517,51.339929 +-0.773557,51.332564 +-0.324414,51.193433 +-0.264377,51.33422 +-0.186361,51.185816 +-0.57531,51.332003 +-0.379778,51.241802 +-0.313962,51.311896 +-0.469215,51.402279 +-0.330676,51.232416 +-0.448727,51.395949 +0.030556,51.285286 +-0.619444,51.183392 +-0.191893,51.257251 +-0.50857,51.375549 +-0.480947,51.374475 +-0.035216,51.283495 +-0.403288,51.329874 +-0.730488,51.276075 +-0.571605,51.245613 +-0.240372,51.192406 +-0.464097,51.402284 +-0.038357,51.300652 +-0.166997,51.240002 +-0.505895,51.368564 +-0.460162,51.314755 +-0.529133,51.443611 +-0.254436,51.338928 +-0.367702,51.367916 +-0.54481,51.323759 +-0.528903,51.389834 +-0.771349,51.33032 +-0.644682,51.369595 +-0.490599,51.353153 +-0.577201,51.245348 +-0.490724,51.367264 +-0.307682,51.294989 +-0.211599,51.27018 +-0.419381,51.421581 +-0.179828,51.227784 +-0.540272,51.414211 +-0.206164,51.319521 +-0.196843,51.32739 +-0.550261,51.321579 +-0.442472,51.397278 +-0.476946,51.306216 +-0.120932,51.250315 +-0.583969,51.247984 +-0.053879,51.163471 +0.003152,51.268186 +-0.172743,51.232008 +-0.391374,51.34463 +-0.314601,51.385653 +-0.211721,51.318338 +-0.406078,51.406689 +-0.743787,51.339353 +-0.626633,51.311619 +-0.421092,51.419527 +-0.553226,51.320375 +-0.22142,51.312469 +-0.756119,51.098633 +-0.061344,51.227266 +-0.20516,51.242626 +-0.334873,51.226459 +-0.746637,51.339617 +-0.520807,51.433174 +-0.195824,51.237726 +-0.590254,51.233627 +-0.721815,51.08928 +-0.595937,51.241249 +-0.434888,51.377709 +-0.596468,51.247343 +-0.537496,51.436288 +-0.744635,51.315128 +-0.454312,51.317627 +-0.584122,51.248121 +-0.519026,51.283888 +-0.508077,51.428283 +-0.167085,51.201352 +-0.419944,51.33724 +-0.167115,51.201326 +-0.737771,51.231606 +-0.602365,51.191741 +-0.014621,51.253272 +-0.329652,51.30338 +-0.528013,51.246313 +-0.389863,51.323018 +-0.541354,51.322772 +-0.633342,51.29927 +-0.573649,51.236978 +-0.507869,51.375001 +-0.511403,51.333366 +-0.399886,51.39665 +-0.423939,51.419961 +-0.434367,51.365184 +-0.278114,51.32543 +-0.349024,51.398751 +-0.554709,51.318397 +-0.407178,51.374179 +-0.429556,51.427698 +-0.364373,51.370235 +-0.326414,51.382513 +-0.527948,51.13877 +-0.086329,51.283379 +-0.163634,51.191325 +-0.789963,51.215773 +-0.537873,51.434404 +-0.711693,51.25043 +-0.402889,51.377681 +-0.724208,51.24608 +-0.124039,51.264466 +-0.762145,51.33364 +-0.288281,51.335714 +-0.559195,51.268175 +-0.292419,51.338697 +-0.020107,51.252007 +-0.267992,51.33582 +-0.369172,51.378719 +-0.542685,51.326062 +-0.332287,51.213617 +-0.607226,51.341298 +-0.442765,51.218224 +-0.25288,51.322475 +-0.220952,51.286338 +-0.454727,51.377001 +-0.455966,51.431106 +-0.242721,51.170148 +-0.547533,51.429668 +-0.151057,51.267729 +-0.433731,51.356039 +-0.173316,51.296001 +-0.093192,51.139325 +-0.067917,51.273103 +-0.462968,51.345878 +-0.336929,51.231812 +-0.743787,51.314651 +-0.511187,51.432594 +-0.095348,51.284084 +-0.065993,51.300824 +-0.490247,51.227883 +-0.290815,51.168549 +-0.545709,51.371556 +-0.34283,51.395911 +-0.518652,51.428192 +-0.603839,51.199322 +-0.736509,51.086625 +-0.540411,51.406236 +-0.500912,51.436653 +-0.639171,51.263674 +-0.749478,51.165332 +-0.45704,51.355207 +-0.252611,51.31329 +-0.345028,51.390754 +-0.363107,51.35618 +-0.569916,51.222454 +-0.658218,51.169626 +-0.575037,51.235187 +-0.193756,51.246642 +-0.461807,51.347941 +-0.744192,51.313999 +-0.249779,51.358301 +-0.553323,51.239219 +-0.519311,51.384669 +-0.462443,51.369701 +-0.16725,51.170159 +-0.56454,51.239681 +-0.250074,51.33094 +-0.435783,51.392333 +-0.578201,51.23661 +-0.780305,51.223118 +-0.828631,51.190583 +-0.688093,51.369199 +-0.620833,51.370108 +-0.659908,51.362774 +-0.776531,51.23422 +-0.013573,51.224396 +-0.281509,51.141821 +-0.612601,51.173986 +-0.510377,51.334019 +-0.703591,51.203239 +-0.57232,51.426367 +-0.441886,51.153042 +-0.447619,51.390018 +-0.204474,51.1557 +-0.365579,51.36946 +-0.071399,51.298134 +-0.648295,51.157741 +-0.564955,51.236017 +-0.228897,51.285596 +-0.124067,51.168305 +-0.561074,51.30942 +-0.644933,51.296329 +-0.424821,51.240942 +-0.330277,51.29999 +-0.672717,51.138408 +-0.553969,51.412168 +-0.4621,51.313872 +-0.244354,51.349173 +-0.597729,51.406882 +-0.211222,51.23852 +-0.532415,51.402243 +-0.394014,51.150533 +-0.801272,51.234638 +-0.419344,51.420564 +-0.564482,51.239725 +-0.543752,51.338125 +-0.46531,51.434304 +-0.460554,51.314634 +-0.53322,51.364035 +-0.363008,51.371052 +-0.561842,51.243065 +-0.269317,51.331514 +-0.499467,51.435978 +-0.765077,51.221718 +-0.171253,51.21792 +-0.405946,51.406346 +-0.378697,51.368591 +-0.57844,51.235363 +-0.050253,51.191802 +-0.407112,51.394294 +-0.224191,51.348464 +-0.524934,51.387644 +-0.616227,51.228712 +-0.576489,51.421373 +-0.272513,51.334691 +-0.537637,51.306054 +0.00734,51.245532 +-0.55418,51.4319 +-0.482575,51.13927 +-0.263788,51.253628 +-0.417309,51.384145 +-0.200325,51.225915 +-0.579768,51.2476 +-0.199985,51.220676 +-0.386292,51.388749 +-0.058335,51.258601 +-0.15493,51.284849 +-0.210729,51.327981 +-0.575027,51.172392 +-0.574954,51.318501 +-0.707548,51.351719 +-0.171748,51.219537 +-0.328475,51.294335 +0.040603,51.272872 +-0.440496,51.390705 +-0.476887,51.30456 +-0.173998,51.227441 +-0.224583,51.348335 +-0.498997,51.389284 +-0.398227,51.366341 +-0.582539,51.236699 +-0.777642,51.23229 +-0.553422,51.305459 +-0.522958,51.450358 +-0.323886,51.302974 +-0.559809,51.254478 +-0.202009,51.234143 +-0.240699,51.309622 +-0.51285,51.359651 +-0.728364,51.303155 +-0.172453,51.185798 +-0.286727,51.361589 +-0.592195,51.409181 +-0.43914,51.336337 +-0.419195,51.385699 +-0.097006,51.240504 +-0.533613,51.377817 +-0.317369,51.299553 +-0.517618,51.100664 +-0.175801,51.179294 +-0.509326,51.434962 +-0.163034,51.172206 +-0.396982,51.367871 +-0.65119,51.183025 +-0.579336,51.236058 +-0.16002,51.249327 +-0.793273,51.212399 +-0.481779,51.301944 +-0.049519,51.25796 +-0.174588,51.298278 +-0.195088,51.178541 +-0.220257,51.285024 +-0.167409,51.204019 +-0.519144,51.432119 +-0.531004,51.424301 +-0.512006,51.432649 +-0.260431,51.331149 +-0.254514,51.314199 +-0.330723,51.316183 +-0.591597,51.146874 +-0.579205,51.247288 +-0.803635,51.205365 +-0.408795,51.335416 +-0.389354,51.378503 +-0.175036,51.234876 +-0.744465,51.348163 +-0.206167,51.319458 +-0.535747,51.405953 +-0.218744,51.257789 +-0.533022,51.331571 +-0.314697,51.381473 +-0.525731,51.384327 +-0.201728,51.339758 +-0.365892,51.277453 +-0.613065,51.184756 +-0.393524,51.269149 +-0.265092,51.333916 +-0.250394,51.35875 +-0.582829,51.247763 +-0.363121,51.356189 +-0.419734,51.420516 +-0.19706,51.222978 +-0.527864,51.402051 +-0.483124,51.425094 +-0.201241,51.240633 +-0.250297,51.335656 +-0.201469,51.240663 +-0.504602,51.343864 +-0.456463,51.380486 +-0.416832,51.330885 +-0.327739,51.312597 +-0.433278,51.390366 +-0.57347,51.404683 +-0.154432,51.214229 +-0.667625,51.241736 +-0.782197,51.217626 +-0.535312,51.247925 +-0.268396,51.338056 +-0.550963,51.397627 +-0.436797,51.277306 +-0.269892,51.353977 +-0.316078,51.315604 +-0.492801,51.300027 +-0.482769,51.224864 +-0.48118,51.450328 +-0.163767,51.188692 +-0.264493,51.368007 +-0.741103,51.317311 +-0.419223,51.419924 +-0.320418,51.274175 +-0.265017,51.368599 +-0.432393,51.387666 +-0.739451,51.295397 +-0.791478,51.212075 +-0.165698,51.277329 +-0.543476,51.338688 +-0.472189,51.309076 +-0.501654,51.39153 +-0.752112,51.124399 +-0.662759,51.178302 +-0.500539,51.345178 +-0.569963,51.269467 +-0.534958,51.436922 +-0.355287,51.34956 +-0.471203,51.435766 +-0.739897,51.210928 +-0.780025,51.219626 +-0.538963,51.404276 +-0.319839,51.302214 +-0.481428,51.33995 +-0.665976,51.110436 +-0.28818,51.241217 +-0.270473,51.324823 +-0.168688,51.251522 +-0.587429,51.37765 +-0.493409,51.142395 +-0.600255,51.376419 +-0.248402,51.345079 +-0.63024,51.224147 +-0.271392,51.354952 +-0.545437,51.396452 +-0.580618,51.235804 +-0.563811,51.33251 +-0.099955,51.295822 +-0.596098,51.244929 +-0.567218,51.229103 +-0.383925,51.395145 +-0.070813,51.275507 +-0.164069,51.315658 +-0.205808,51.266845 +-0.479881,51.340263 +-0.467177,51.311789 +-0.518167,51.365788 +-0.215683,51.279846 +-0.246414,51.354653 +-0.205595,51.240664 +-0.538833,51.433175 +-0.727233,51.302045 +-0.535115,51.396045 +-0.438626,51.396642 +-0.688617,51.36041 +-0.557968,51.394287 +-0.100564,51.215337 +-0.173243,51.177779 +-0.347014,51.384703 +-0.484954,51.338809 +-0.285516,51.276268 +-0.110989,51.153004 +-0.415031,51.389743 +-0.265116,51.346955 +-0.581342,51.235569 +-0.253356,51.351106 +-0.486529,51.440011 +-0.17692,51.167963 +-0.427351,51.417759 +-0.499986,51.436371 +-0.328535,51.232619 +-0.086045,51.185621 +-0.583923,51.302172 +-0.734209,51.309701 +-0.75145,51.225764 +-0.597432,51.193975 +-0.209846,51.327796 +-0.566742,51.304804 +-0.184571,51.297587 +-0.495195,51.386888 +-0.090748,51.14451 +-0.60579,51.241861 +-0.587393,51.280272 +-0.199418,51.20806 +-0.693761,51.361835 +-0.483551,51.206314 +-0.064579,51.159341 +-0.033677,51.314818 +-0.735328,51.235041 +-0.069843,51.318819 +-0.046586,51.150588 +-0.499838,51.387739 +-0.45962,51.407153 +-0.326915,51.142956 +-0.414114,51.390909 +-0.173559,51.230923 +-0.609073,51.250785 +-0.38275,51.278362 +0.029957,51.271051 +-0.141711,51.265215 +-0.433263,51.365133 +-0.558312,51.298199 +-0.067747,51.144114 +-0.552767,51.32402 +-0.412469,51.322976 +-0.221863,51.299149 +-0.203097,51.322351 +-0.736267,51.118024 +-0.359704,51.380673 +-0.328076,51.313213 +-0.609873,51.373396 +-0.366991,51.283664 +-0.571502,51.239694 +-0.538113,51.402107 +-0.377792,51.313283 +-0.503334,51.337831 +-0.457119,51.293394 +-0.187723,51.325343 +-0.739188,51.335877 +-0.606991,51.255688 +-0.503083,51.248938 +-0.735867,51.242556 +-0.031981,51.304142 +-0.118174,51.239264 +-0.515916,51.434065 +-0.455632,51.323616 +-0.20246,51.319203 +-0.366657,51.371463 +-0.457698,51.446757 +-0.318504,51.369738 +-0.275313,51.288366 +0.424134,51.072534 +0.528264,51.326641 +0.577804,51.343297 +0.199688,51.244656 +0.158287,51.397977 +1.406468,51.347596 +0.349738,51.135777 +0.394796,51.432368 +0.303688,51.445112 +0.747521,51.297291 +0.466023,51.398577 +0.800768,51.409956 +0.595669,51.237018 +0.522326,51.400958 +0.514974,51.359466 +0.543794,51.375338 +0.178025,51.435491 +0.494289,51.393563 +0.585415,51.101832 +0.495057,51.109939 +1.061271,51.269751 +0.332185,51.443451 +0.547518,51.272837 +0.489248,51.289264 +0.158321,51.143253 +1.129359,51.278312 +0.956854,51.217859 +0.333814,51.437033 +0.239349,51.42786 +0.511322,51.314226 +1.114224,51.296255 +0.659962,51.078547 +0.280359,51.412473 +1.213548,51.313897 +0.347055,51.431463 +0.21373,51.130877 +1.24436,51.111676 +0.86427,51.129356 +0.418086,51.289406 +1.381912,51.379053 +1.285895,51.380025 +0.89715,51.169344 +0.30018,51.398218 +1.430783,51.344286 +0.398796,51.435667 +1.119643,51.371873 +0.476387,51.291749 +1.407879,51.352088 +0.630004,51.373389 +1.317549,51.344115 +0.507561,51.387047 +0.129851,51.227278 +0.461722,51.362118 +0.260009,51.141656 +0.529939,51.255591 +1.19789,51.226816 +0.370042,51.176891 +1.338301,51.379424 +0.273115,51.136042 +0.33896,51.162092 +0.188156,51.390346 +0.59682,51.234564 +1.074085,51.295653 +0.767681,51.176366 +0.273876,51.135227 +0.302196,51.396857 +1.392284,51.391787 +1.421581,51.33798 +0.77042,51.440349 +1.069646,51.271493 +1.383379,51.385299 +0.530529,51.274951 +0.525675,51.379804 +0.174326,51.286238 +0.900497,51.139013 +0.432061,51.287336 +1.02903,51.260912 +0.518631,51.364847 +0.200337,51.244437 +0.873756,51.323032 +0.284456,51.201266 +0.713866,51.356627 +0.209834,51.384129 +0.505909,51.387343 +1.178861,51.089496 +0.527362,51.383042 +0.263928,51.115967 +1.39458,51.385712 +0.76781,51.222926 +1.087554,51.120602 +0.776685,51.077576 +0.227589,51.442815 +0.527218,51.252241 +0.620545,51.168262 +0.555902,51.11322 +0.157446,51.361472 +0.794335,51.419545 +1.388689,51.379919 +0.332918,51.444579 +0.627755,51.448986 +0.332905,51.43331 +0.859905,51.321662 +0.34493,51.24984 +1.181824,51.092492 +1.385554,51.387682 +1.412842,51.361452 +1.083778,51.276752 +1.122522,51.298651 +1.389373,51.371875 +0.193026,51.131933 +0.502615,51.297945 +0.859452,51.301697 +0.310018,51.143925 +1.394441,51.339958 +0.853287,51.151517 +0.757643,51.438465 +0.663202,51.33062 +1.409388,51.327335 +0.908205,51.139721 +0.735506,51.342749 +0.757982,51.438601 +0.728831,51.347141 +0.73292,51.343934 +0.29834,51.140234 +0.276726,51.431088 +0.732843,51.140867 +1.091331,51.128139 +0.164553,51.297076 +0.373759,51.191034 +1.290633,51.28056 +0.518018,51.39399 +0.458028,51.34759 +0.182013,51.411073 +0.231757,51.445946 +1.08081,51.275687 +1.402874,51.371367 +0.588373,51.367481 +1.297839,51.150459 +0.628958,51.313478 +0.558565,51.340526 +1.129044,51.365793 +0.547836,51.370754 +1.186053,51.08482 +0.21873,51.412343 +0.488683,51.395427 +0.292423,51.207469 +0.304503,51.390975 +0.521074,51.264884 +0.903524,51.199515 +0.500074,51.349632 +0.939192,50.985488 +0.518052,51.271748 +0.612902,51.221812 +0.449386,51.367845 +0.525819,51.344052 +0.429212,51.214565 +1.39947,51.342699 +0.247889,51.455602 +0.268862,51.141709 +1.402224,51.338193 +0.266719,51.137371 +0.245155,51.367558 +0.259992,51.142178 +0.193697,51.288251 +1.138239,51.352757 +0.995771,51.25451 +0.999016,51.3426 +0.505499,51.058658 +0.300333,51.314983 +0.172853,51.40198 +0.224556,51.416217 +0.497479,51.39434 +0.227507,51.449993 +0.44222,51.29851 +1.394273,51.221621 +0.527521,51.356444 +0.60333,51.365207 +1.395057,51.360521 +0.65786,51.325129 +1.395146,51.388304 +0.497616,51.395263 +1.0298,51.098548 +0.185258,51.438702 +1.166427,51.095231 +0.499843,51.430291 +0.521832,51.381272 +1.110693,51.363224 +0.546502,51.379848 +0.803052,51.417439 +0.522881,51.26123 +0.476331,51.291768 +0.380342,51.423903 +0.443709,51.332466 +1.089871,51.283562 +0.176022,51.437237 +0.409558,51.311445 +0.311081,51.424795 +0.8801,51.320267 +0.532149,51.276759 +0.53378,51.357154 +1.402112,51.338431 +0.373829,51.441446 +1.063833,51.295966 +0.211705,51.445265 +1.139665,51.087534 +1.172492,51.092008 +0.299523,51.443566 +1.27354,51.278989 +0.36056,51.123184 +1.089242,51.290846 +0.552015,51.154677 +1.394682,51.36574 +0.542549,51.37595 +1.061284,51.289782 +0.495264,51.395889 +0.195548,51.288576 +0.433151,51.304959 +0.345038,51.433671 +1.350445,51.158192 +1.427624,51.383139 +1.366606,51.384559 +0.794163,51.419558 +0.279316,51.434284 +0.224369,51.306234 +1.301762,51.27914 +0.504942,51.363306 +0.503008,51.331537 +1.10471,51.293252 +0.512179,51.313362 +0.314214,51.244884 +0.469544,51.117002 +0.876493,51.134668 +0.514677,51.334624 +1.349931,51.312339 +0.174979,51.150005 +0.89315,51.213057 +0.529225,51.270257 +1.180136,51.198903 +1.020994,51.248762 +1.28964,51.154828 +0.341917,51.406969 +0.359138,51.437857 +0.60641,51.019952 +1.351178,51.213446 +0.516201,51.41458 +0.266525,51.129029 +1.304996,51.119529 +0.544341,51.386496 +0.289452,51.156795 +1.059106,51.277516 +0.75098,51.420265 +0.578776,51.078793 +0.526699,51.278577 +0.90285,51.173538 +1.398613,51.334808 +0.453002,51.313187 +1.181684,51.09192 +1.308608,51.207778 +1.408882,51.344116 +1.404302,51.386347 +1.414361,51.362163 +0.220831,51.4444 +1.058595,51.26983 +1.297039,51.133823 +0.187488,51.391402 +0.58351,51.336992 +0.873868,51.145103 +0.48876,51.174325 +0.284142,51.431222 +1.172338,51.208137 +1.008387,51.252352 +0.21537,51.305281 +0.196438,51.25943 +0.488229,51.17404 +0.618265,51.171191 +0.771035,51.421024 +0.698793,51.101509 +0.062127,51.205055 +0.378308,51.426291 +0.44321,51.182535 +1.093922,51.285146 +0.267096,51.340263 +0.545241,51.326031 +0.578558,51.34265 +1.049328,51.299853 +0.766319,51.29737 +1.367634,51.157329 +0.261217,51.445957 +0.217234,51.443821 +1.333104,51.14524 +0.873248,51.151001 +0.074851,51.181394 +0.066838,51.268032 +0.507734,51.337641 +0.269058,51.189434 +1.030805,51.283524 +1.02639,51.323672 +0.447982,51.083216 +1.13001,51.358257 +1.136994,51.093866 +0.501057,51.282743 +0.514076,51.335185 +0.340595,51.429497 +0.357854,51.128428 +0.482873,51.267868 +1.11412,51.296204 +0.362983,51.438194 +0.416488,51.308146 +0.895127,51.132715 +0.7979,51.428696 +1.066107,51.084864 +0.23548,51.43761 +0.223071,51.382953 +1.069228,51.282639 +1.130319,51.356683 +0.516057,51.275137 +0.458041,51.347833 +0.429339,51.22379 +0.1633,51.280201 +0.262669,51.428159 +0.277003,51.149393 +0.503366,51.402893 +0.282341,51.127165 +1.310064,51.126645 +0.297015,51.157321 +0.291843,51.155992 +0.516763,51.271254 +0.366771,51.435464 +0.308693,51.430211 +0.551881,51.331867 +1.061764,51.269828 +0.737205,51.337286 +0.524863,51.271763 +1.41011,51.382103 +0.521466,51.357357 +0.29208,51.210659 +0.758164,51.343899 +1.41735,51.35658 +0.633094,51.253369 +0.338474,51.422614 +1.306912,51.373685 +0.736097,51.348338 +0.515379,51.271122 +0.650516,51.271701 +1.408385,51.334911 +0.893969,51.396412 +0.50324,51.384 +0.87798,51.301989 +0.809625,51.191745 +0.250437,51.443898 +1.297785,51.153312 +0.423202,51.072994 +0.392861,51.433064 +0.535547,51.400321 +0.744791,51.340238 +1.272928,51.350597 +1.388341,51.379884 +0.1561,51.344122 +1.303473,51.144039 +0.237599,51.437984 +0.353643,51.42669 +0.262576,51.15087 +1.063717,51.281506 +0.541894,51.229115 +0.483178,51.292666 +1.166462,51.272717 +0.671,51.336333 +1.239672,51.10452 +0.482918,51.26552 +0.452466,51.302865 +0.226771,51.417407 +0.615563,51.039165 +0.508116,51.348839 +0.587891,51.279146 +0.500159,51.392601 +1.341486,51.274945 +1.251101,51.321081 +0.579973,51.368098 +0.548649,51.366509 +0.214604,51.134503 +0.315338,51.411401 +0.551448,51.371358 +0.754649,51.336778 +0.439017,51.288684 +0.366622,51.122126 +0.853152,51.140304 +0.398625,51.175166 +1.081827,51.282308 +1.113942,51.368112 +0.394127,51.199352 +0.140103,51.201271 +0.279329,51.431937 +0.247352,51.45492 +0.190273,51.304008 +0.585167,51.367957 +0.541329,51.250577 +0.515429,51.271499 +1.403769,51.350706 +0.617891,51.283435 +0.278882,51.452441 +0.21228,51.44315 +0.552599,51.287413 +0.60818,51.363336 +0.109165,51.285119 +1.162614,51.36982 +0.727318,51.341492 +0.511944,51.362634 +0.877429,51.224121 +0.919957,51.281342 +1.34053,51.269683 +1.160213,51.313893 +0.205086,51.38582 +1.172497,51.317392 +0.364887,51.442445 +0.795046,51.415166 +1.399344,51.387337 +0.760525,51.439009 +0.260905,51.128085 +0.75061,51.345327 +1.075473,51.28359 +0.236424,51.463115 +0.216709,51.446645 +0.258535,51.134013 +1.409804,51.360209 +0.541945,51.373346 +0.249121,51.45753 +1.370136,51.383891 +1.077725,51.080241 +0.769521,51.407641 +0.77225,51.245324 +0.527042,51.400703 +0.527143,51.295808 +0.508082,51.337706 +0.314661,51.430462 +0.108051,51.276137 +0.575775,51.333745 +1.057226,51.293045 +1.137517,51.087448 +1.415708,51.362888 +0.364958,51.433531 +1.378393,51.379083 +0.417389,51.311086 +1.112311,51.367579 +0.370942,51.308636 +0.457994,51.373519 +0.257001,51.209489 +0.531816,51.276191 +0.747621,51.160983 +1.087435,51.284445 +0.531935,51.293474 +0.179279,51.436736 +0.900936,51.306297 +0.238631,51.371945 +0.556126,51.119862 +0.407252,51.402192 +0.212557,51.445905 +0.309202,51.450004 +0.265987,51.452178 +0.683953,51.064561 +0.531334,51.257512 +1.172556,51.205684 +1.395388,51.222371 +1.339851,51.276521 +0.523549,51.363887 +0.799688,51.121315 +0.251533,51.427546 +1.390723,51.367195 +0.303283,51.38357 +0.090374,51.163329 +0.507562,51.3855 +0.491918,51.395969 +0.274663,51.195126 +1.084144,51.273864 +0.317944,51.435064 +0.296195,51.316602 +0.434732,51.30069 +0.546226,51.284719 +0.757,51.041147 +0.538501,51.377585 +1.271788,51.150966 +1.130141,51.35828 +0.15526,51.34733 +0.547419,51.369701 +0.740893,51.341814 +0.531289,51.345067 +0.229758,51.449509 +0.546784,51.377432 +1.053863,51.180079 +1.0815,51.275498 +0.288765,51.288427 +0.556771,51.385659 +0.380762,51.422563 +0.496178,51.410574 +1.290456,51.352246 +1.341179,51.150523 +0.664442,51.22244 +0.79434,51.42388 +0.876722,51.249979 +0.507599,51.048134 +0.139328,51.292926 +0.549087,51.388345 +0.502895,51.331575 +0.888632,51.266226 +0.305274,51.444883 +0.587944,51.379749 +1.214644,51.159299 +0.1823,51.401705 +0.883312,51.105754 +0.725725,51.215595 +0.764839,51.287547 +0.21219,51.428484 +0.522842,51.269415 +0.210879,51.405513 +0.361816,51.439269 +0.27899,51.124416 +0.845092,51.146869 +1.174002,51.100701 +1.024152,51.330458 +1.104343,51.352824 +0.868156,51.145001 +0.280364,51.448095 +0.920802,51.133839 +0.120717,51.199952 +0.898543,50.94718 +1.312118,51.12718 +1.063542,51.34262 +0.166492,51.294387 +0.402244,51.20486 +0.671673,51.357777 +0.552968,51.380094 +0.844366,51.00123 +0.513543,51.301299 +0.545832,51.310009 +0.783509,51.070901 +1.282716,51.141917 +0.416367,51.308031 +0.367826,51.428599 +1.383012,51.377987 +0.864372,51.12938 +0.547065,51.39723 +0.825702,51.175419 +1.320347,51.279505 +0.276285,51.451457 +0.503227,51.331604 +0.794455,50.973635 +1.377756,51.334728 +0.862423,51.136003 +0.714545,51.170138 +0.559037,51.372443 +0.31405,51.430042 +0.474913,51.376032 +0.595901,51.351477 +0.65132,51.164322 +0.482386,51.399149 +1.369463,51.216924 +0.283764,51.430852 +0.232728,51.370826 +1.285832,51.142702 +0.543125,51.326706 +0.475493,51.376388 +1.294818,51.276107 +0.383114,51.421328 +0.485177,51.291706 +0.288978,51.190548 +1.142837,51.082087 +0.736458,51.354383 +0.734617,51.337949 +0.551362,51.386101 +1.101222,51.097412 +0.866879,51.159693 +0.867538,51.148407 +0.221341,51.16944 +0.573122,51.370183 +0.303818,51.141439 +0.452313,51.374501 +0.764777,51.44032 +1.399576,51.380782 +1.404439,51.386838 +1.365836,51.384059 +0.197366,51.441848 +1.289203,51.15431 +0.526868,51.40068 +1.090251,51.073218 +1.427064,51.337181 +0.514265,51.111623 +0.474506,51.377272 +1.427302,51.371715 +0.159496,51.325642 +0.289815,51.447146 +1.421224,51.338008 +0.837736,51.241784 +1.28845,51.187352 +0.246538,51.301278 +0.494275,51.357373 +0.580577,51.368364 +0.179743,51.435612 +0.167985,51.287102 +0.210176,51.384069 +0.613328,51.360901 +0.591177,51.243009 +0.325049,51.393051 +0.484005,51.339856 +0.373091,51.337219 +0.341722,51.2981 +0.437315,51.298532 +0.489778,51.37747 +0.546798,51.377413 +1.110645,51.366328 +0.555327,51.384512 +1.0998,51.290207 +0.760873,51.398258 +1.282769,51.148904 +1.379096,51.377309 +0.286994,51.325793 +1.399712,51.335496 +0.260404,51.135407 +0.368758,51.177528 +0.284494,51.155156 +0.540671,51.383302 +0.481452,51.382944 +0.527385,51.338838 +0.243627,51.452635 +0.485382,51.111225 +0.557756,51.372651 +0.281326,51.442851 +0.748226,51.361896 +0.493147,51.268036 +0.743275,51.358855 +0.51327,51.296314 +0.754739,51.394994 +1.082799,51.281832 +0.762031,51.131394 +0.399597,51.424328 +1.066446,51.358797 +1.216934,51.173691 +0.596405,51.342103 +0.908882,51.406197 +0.7695,51.407777 +0.217949,51.459167 +1.092657,51.277417 +0.854004,51.110539 +0.333574,51.424969 +0.292042,51.292023 +0.174565,51.438064 +0.169651,51.389629 +0.546649,51.38793 +0.512734,51.264425 +0.848838,51.1464 +0.679011,51.099086 +1.388921,51.348636 +0.330206,51.138803 +0.513109,51.230304 +1.132309,51.371939 +0.191426,51.387785 +0.982502,51.301926 +0.238957,51.437211 +0.683753,51.348929 +1.154752,51.21105 +0.646934,51.126934 +1.143978,51.23577 +0.926042,51.30194 +0.51832,51.274306 +0.854338,51.108768 +0.218194,51.437804 +1.385256,51.343156 +0.23287,51.42569 +0.701148,51.068149 +1.302492,51.132715 +0.274659,51.197095 +0.87489,51.150745 +1.44341,51.35981 +0.169977,51.398949 +0.267199,51.446723 +1.111889,51.256651 +1.318328,51.125268 +1.047655,51.283257 +0.178608,51.394813 +0.353764,51.42345 +0.391697,51.433906 +0.520016,51.370447 +0.329093,51.236477 +1.098095,51.289604 +0.513016,51.262764 +1.17124,51.078108 +1.007969,51.339402 +0.064505,51.235797 +0.365529,51.342876 +0.373231,51.153748 +0.802392,51.419577 +0.515062,51.088411 +0.37348,51.442478 +0.597646,51.373176 +0.758251,51.41441 +1.204417,51.27824 +0.358381,51.307415 +1.186151,51.081481 +0.577609,51.364121 +0.729109,51.371382 +1.194937,51.112381 +0.6125,51.261736 +0.544672,51.107763 +0.660046,51.449589 +0.194432,51.288642 +0.535165,51.420961 +0.270095,51.143826 +0.420426,51.292731 +1.316159,51.126517 +0.436681,51.281673 +0.398748,51.175055 +0.558462,51.122563 +0.552133,51.288566 +0.331119,51.404154 +0.275828,51.147887 +0.268891,51.128605 +0.283821,51.181484 +0.364182,51.44245 +0.193901,51.268462 +0.281183,51.216142 +0.210982,51.451736 +1.133698,51.256104 +0.534262,51.378899 +1.400193,51.223428 +1.137938,51.087346 +0.896919,51.143059 +1.086559,51.272244 +0.412595,51.2703 +1.001436,51.030947 +0.403674,51.403047 +1.300675,51.219192 +0.853955,51.110666 +1.112847,51.09354 +1.180453,51.088751 +0.179225,51.436512 +1.067789,51.286014 +0.233961,51.180433 +1.355098,51.379744 +0.234641,51.426007 +1.424401,51.333822 +1.386281,51.38857 +0.193763,51.28843 +0.374199,51.441366 +0.578442,51.388916 +1.332256,51.378714 +0.444621,51.298865 +1.061272,51.269769 +0.179549,51.286294 +1.168602,51.180219 +0.427556,51.279956 +0.175082,51.438046 +0.551454,51.38645 +0.510369,51.358 +1.023741,51.286252 +0.510578,51.296399 +1.424059,51.339625 +0.425215,51.400382 +0.793352,51.209277 +0.598749,51.36575 +0.634407,51.094424 +0.255646,51.444751 +0.551368,51.371729 +0.242841,51.393125 +0.480024,51.402256 +0.492083,51.429664 +1.294156,51.127481 +0.499672,51.375227 +0.271034,51.360089 +0.542505,51.375933 +0.506445,51.067442 +0.353508,51.423222 +1.416961,51.362348 +0.59228,51.276621 +0.875528,51.175023 +0.558456,51.372591 +1.395112,51.205783 +0.908267,51.298119 +0.876987,51.243677 +0.317324,51.185861 +0.959274,50.996063 +0.671089,51.336385 +0.873573,51.150948 +1.118897,51.371883 +1.075555,51.280746 +0.756832,51.414254 +1.407468,51.360286 +1.163631,51.087544 +0.373815,51.441446 +0.711366,51.344201 +0.202609,51.421623 +1.103175,51.262189 +0.55402,51.169483 +0.262786,51.129731 +1.300837,51.375341 +0.559044,51.372569 +0.886286,51.39769 +1.090469,51.269829 +1.093986,51.254517 +0.911659,51.289149 +0.241714,51.370061 +1.35536,51.377425 +0.978178,51.346145 +0.910393,50.934706 +0.179795,51.412526 +0.297456,51.398649 +0.339512,51.42209 +0.554025,51.327566 +0.14345,51.29027 +0.891746,51.315096 +1.408069,51.345552 +0.192872,51.299238 +1.024928,51.355101 +0.160579,51.404212 +0.359301,51.367545 +0.361216,51.181422 +0.279404,51.44877 +1.180663,51.189516 +1.080079,51.070968 +0.389787,51.379661 +0.487209,51.23932 +0.933771,51.299605 +1.134415,51.306006 +1.178833,51.083047 +0.545132,51.394277 +0.569004,51.371065 +1.287587,51.141852 +0.478611,51.384902 +0.25902,51.134282 +0.579716,51.36787 +0.524609,51.387337 +0.524917,51.273804 +0.550048,51.277864 +0.514199,51.294666 +1.10814,51.094286 +0.482704,51.396795 +0.517311,51.37431 +0.562428,51.371928 +0.216885,51.446732 +0.905214,51.128975 +0.536906,51.390588 +0.634107,51.094674 +0.517557,51.271363 +0.524577,51.246407 +0.332578,51.233431 +0.238863,51.450586 +0.889268,51.30056 +0.517987,51.3772 +0.506278,51.381201 +1.423793,51.338563 +0.48232,51.273042 +0.221933,51.38319 +1.407313,51.329761 +0.430301,51.298003 +0.326961,51.139101 +0.514072,51.046988 +1.353893,51.381533 +0.147525,51.282317 +1.390811,51.378103 +1.402059,51.338486 +1.430739,51.384028 +0.773328,51.106662 +1.144136,51.087971 +1.310224,51.367997 +1.389482,51.389871 +0.371892,51.441836 +0.215741,51.433489 +0.175854,51.4334 +1.159876,51.313794 +0.884712,51.301131 +1.076509,51.274631 +0.852895,51.105988 +1.084895,51.278008 +1.186632,51.192421 +0.793138,50.973055 +0.572791,51.275306 +0.62528,51.169505 +0.253636,51.420014 +0.528911,51.379069 +0.339432,51.224534 +0.718834,51.352212 +0.886399,51.39766 +0.797906,51.429488 +0.640858,51.356992 +0.129486,51.238301 +0.888374,51.310314 +0.98701,51.325826 +0.497561,51.297073 +0.679787,51.310985 +1.391677,51.224503 +1.043554,51.116117 +0.578981,51.078626 +0.503463,51.038366 +0.490376,51.272727 +0.805669,51.194952 +1.367511,51.18842 +1.162688,51.090052 +0.215858,51.382972 +0.669023,51.327267 +0.535117,51.345991 +1.044072,51.347877 +0.547008,51.374729 +0.592326,51.448849 +0.506902,51.387888 +0.543221,51.334924 +0.491194,51.392172 +1.104972,51.293083 +1.293054,51.121225 +0.608836,51.267412 +0.21632,51.427318 +0.367773,51.428132 +1.06941,51.284937 +0.556488,51.372589 +0.203941,51.130927 +0.548389,51.183861 +1.039889,51.096874 +0.274438,51.194923 +0.255389,51.13223 +0.350895,51.424713 +0.692525,51.083863 +0.873611,51.302339 +1.100565,51.093786 +0.515955,51.414549 +0.192529,51.388924 +0.195902,51.288479 +1.289175,51.154328 +1.199142,51.228131 +0.482118,51.267695 +0.23604,51.277728 +0.277711,51.448282 +0.28294,51.413763 +0.501216,51.188755 +0.18536,51.433906 +1.271771,51.194764 +0.246089,51.427434 +0.429172,51.258419 +0.223027,51.442218 +0.4523,51.29356 +0.49555,51.41119 +0.770099,51.334165 +0.516342,51.41401 +0.515672,51.3625 +0.492455,51.26797 +0.251566,51.404514 +1.384482,51.390106 +0.85334,51.140336 +1.289408,51.154987 +1.180996,51.089168 +0.141755,51.293907 +0.659077,51.327062 +1.217647,51.268694 +0.847564,51.148005 +1.385127,51.37315 +1.411593,51.337498 +0.665412,51.100323 +1.414255,51.339111 +0.551667,51.286642 +0.252286,51.357124 +0.174862,51.435235 +0.603978,51.366497 +0.898365,51.126662 +0.518092,51.284554 +0.477705,51.301839 +0.607475,51.291978 +0.335516,51.437674 +0.193835,51.28814 +0.34323,51.438545 +0.286324,51.191571 +0.704945,51.350519 +0.525822,51.345401 +0.397456,51.208601 +1.012256,51.106 +0.893682,51.311649 +0.527511,51.379225 +0.214587,51.445336 +0.758144,51.414304 +0.173585,51.130056 +0.54452,51.384271 +0.561568,51.269194 +0.898974,51.126566 +0.260978,51.132518 +0.51719,51.39515 +0.578443,51.388934 +0.463466,51.423498 +0.522634,51.271901 +0.525109,51.27103 +0.55242,51.158122 +0.519079,51.271924 +1.229748,51.186695 +0.501403,51.268526 +0.674416,51.339025 +1.132738,51.372971 +0.905196,51.147135 +0.438674,51.219117 +0.479945,51.318906 +0.920705,51.283185 +0.764718,51.435294 +0.492482,51.426166 +0.902893,51.312976 +0.530679,51.294104 +0.926696,51.301168 +0.357746,51.430385 +1.430367,51.364277 +1.21639,51.174722 +0.692114,51.056377 +0.521494,51.361269 +0.308174,51.446184 +0.259858,51.15612 +0.361021,51.174249 +1.372196,51.15359 +0.743386,51.337393 +0.561139,51.393613 +1.30713,51.117598 +1.217138,51.277001 +0.496093,51.232179 +0.509827,51.382753 +0.579375,51.378148 +1.356887,51.332307 +0.326474,51.440966 +0.255701,51.462808 +0.934305,51.309333 +0.549299,51.39424 +0.767385,51.42013 +1.035448,51.350385 +0.310553,51.443691 +0.164771,51.296829 +0.790709,51.421412 +0.759505,51.438556 +0.777099,51.422104 +0.218911,51.443384 +1.19851,51.095634 +1.402503,51.352227 +0.515857,51.294298 +1.081944,51.275918 +0.660711,51.328257 +0.637731,51.096373 +0.550513,51.288322 +0.924106,51.311198 +1.115728,51.370933 +1.100319,51.244896 +0.258839,51.140824 +1.380248,51.217899 +1.385119,51.387254 +0.521328,51.276858 +0.511626,51.085355 +0.271732,51.429908 +0.629282,51.341217 +0.460919,51.187785 +0.908516,51.297969 +0.575193,51.369706 +0.526406,51.278197 +0.246799,51.456271 +0.114369,51.203862 +1.345942,51.370291 +0.892883,51.132492 +0.195568,51.261632 +1.352557,51.38292 +1.400514,51.387024 +1.330149,51.346149 +0.997985,51.330987 +1.200507,51.239535 +1.402017,51.349353 +0.732651,51.300301 +0.518288,51.271869 +0.330477,51.383329 +0.582933,51.33848 +1.423984,51.337469 +0.655242,51.332491 +0.762892,51.437927 +0.787345,51.338217 +1.078894,51.291416 +0.563199,51.108753 +1.123545,51.360786 +0.8941,51.144172 +0.800149,51.409944 +0.758405,51.336204 +0.551286,51.377505 +0.326066,51.317298 +1.076858,51.282636 +0.193206,51.288188 +0.860154,51.165209 +0.385326,51.438946 +1.021375,51.356992 +0.890808,51.133371 +1.081385,51.275699 +0.453633,51.297309 +0.322,51.393318 +0.373839,51.25021 +0.525405,51.273802 +1.288861,51.143273 +0.611234,51.261153 +0.77911,51.297265 +0.929874,51.305334 +0.407165,51.335354 +0.279197,51.448361 +0.182183,51.375996 +0.282085,51.407565 +0.546038,51.371242 +0.209666,51.240268 +0.195483,51.28542 +0.546717,51.378036 +1.028173,51.339834 +0.602112,51.339926 +1.402801,51.337655 +1.102031,51.288835 +0.157702,51.310656 +0.548876,51.257473 +0.6985,51.217027 +0.21905,51.200673 +0.39063,51.43221 +0.712528,51.103583 +0.218625,51.412256 +0.891033,51.317677 +0.194533,51.288649 +0.461342,51.373781 +0.739641,51.287348 +1.426764,51.341435 +0.550187,51.383833 +0.953769,51.115264 +0.542139,51.386958 +0.667061,51.327852 +0.585127,51.335877 +1.290969,51.169677 +0.393875,51.221544 +0.508347,51.350183 +0.887295,51.16572 +0.402751,51.111127 +1.333082,51.334309 +1.000288,51.046943 +0.726274,51.170819 +0.255959,51.369617 +1.027659,51.043484 +1.086533,51.293022 +0.431285,51.295446 +1.366335,51.14775 +0.561071,51.393677 +1.189789,51.241815 +0.235995,51.437834 +1.383857,51.381444 +1.077768,51.280373 +1.20413,51.227967 +0.650587,51.320986 +0.576428,51.380705 +0.758692,51.433431 +0.257009,51.462765 +1.047551,51.127346 +1.157311,51.091214 +1.087592,51.26861 +1.181663,51.081423 +0.246134,51.443603 +1.047999,51.091167 +0.855193,51.161076 +0.619474,51.0809 +1.229333,51.136955 +0.891262,51.317672 +1.079832,51.268787 +0.506598,51.37891 +1.429272,51.365199 +1.37329,51.386696 +0.417291,51.288748 +1.119569,51.338442 +1.287386,51.143045 +0.162194,51.383274 +0.575808,51.091926 +0.112248,51.285738 +1.305847,51.131847 +0.865156,51.313565 +0.434114,51.399829 +0.539222,51.252134 +0.986954,51.250733 +1.027989,51.35468 +0.733672,51.341614 +1.162411,51.316001 +0.702293,51.242176 +1.270476,51.16052 +0.54727,51.310068 +0.520734,51.274658 +1.021135,51.346582 +0.294555,51.139166 +0.166345,51.284264 +0.51715,51.292228 +0.490402,51.267915 +0.35668,51.40492 +0.507242,51.377799 +0.21565,51.441719 +0.240387,51.453488 +1.114094,51.365481 +0.453146,51.313202 +0.874657,51.145839 +0.306277,51.441374 +0.239154,51.438889 +1.070646,51.310764 +0.522163,51.415495 +0.905135,50.95128 +0.517642,51.291525 +0.391231,51.434356 +0.507898,51.277488 +0.223699,51.377221 +0.376066,51.410509 +0.187501,51.380529 +0.281593,51.178964 +0.266626,51.277167 +0.453449,51.413734 +1.320562,51.27474 +1.363308,51.228948 +0.552408,51.157133 +0.19777,51.447569 +1.330919,51.143701 +0.50821,51.350294 +0.170265,51.264586 +0.511707,51.382704 +0.473671,51.407094 +0.484503,51.373742 +1.164229,51.083957 +0.519781,51.401228 +0.531294,51.375375 +0.273718,51.146858 +1.021746,51.350623 +1.03393,51.316336 +1.337018,51.286101 +1.346713,51.137268 +0.471335,51.351501 +1.132259,51.37016 +0.218694,51.45909 +0.655766,51.134396 +0.593279,51.21312 +0.882843,51.312276 +0.531041,51.257393 +0.748088,51.430082 +0.918281,51.104985 +1.290349,51.382409 +0.565574,51.106479 +1.356952,51.332413 +0.360965,51.43729 +1.052387,51.062593 +0.508783,51.406231 +0.254368,51.427581 +1.113282,51.368552 +1.243923,51.279184 +1.382933,51.220322 +0.440572,51.298545 +0.193544,51.401109 +0.441979,51.301807 +0.344349,51.419934 +0.231459,51.425654 +0.334076,51.302911 +0.474911,51.293102 +0.235784,51.442065 +1.126116,51.295173 +0.348614,51.30664 +0.530598,51.270974 +0.736328,51.235242 +0.616147,51.262851 +0.412411,51.185998 +1.329659,51.378186 +1.31204,51.12909 +1.417791,51.390254 +0.071771,51.267108 +1.40554,51.344187 +0.395562,51.309691 +0.364377,51.429235 +1.129638,51.090061 +0.442428,51.31134 +0.201144,51.251131 +0.546867,51.24757 +1.2912,51.143396 +1.221679,51.134629 +0.222058,51.426391 +0.461171,51.130453 +0.545521,51.382639 +0.495259,51.39633 +0.140864,51.34165 +0.616441,51.329057 +0.781937,51.194026 +1.398468,51.339067 +1.093796,51.287533 +0.753657,51.334598 +1.370476,51.386166 +0.291488,51.137554 +0.694772,51.347012 +1.397705,51.357475 +0.661563,51.329083 +0.524527,51.41691 +0.727491,51.338601 +0.516187,51.414589 +0.166916,51.268065 +0.35848,51.443518 +1.418698,51.365598 +0.868039,51.147954 +0.377343,51.155841 +1.177454,51.082518 +1.041601,51.105761 +0.847354,51.130192 +0.733375,51.358331 +0.873897,51.149033 +1.082609,51.287765 +0.479462,51.393203 +0.796938,51.328805 +0.741947,51.121748 +0.23505,51.422016 +0.220173,51.426687 +0.407237,51.402174 +0.282844,51.181107 +0.718663,51.339139 +0.84584,51.128583 +0.266906,51.276739 +0.389893,51.435193 +0.218804,51.412684 +0.706283,51.351532 +1.068428,51.306343 +1.42163,51.364074 +0.272183,51.146753 +1.041961,51.266126 +0.581599,51.273583 +1.40564,51.372824 +0.546968,51.375557 +1.364821,51.227888 +0.278963,51.431818 +0.641171,51.13917 +0.659918,51.327699 +0.175081,51.311936 +1.189913,51.338344 +0.354193,51.422003 +0.502692,51.333369 +0.964969,50.952599 +0.260921,51.132519 +0.62178,51.259568 +1.097881,51.364976 +1.071559,51.070599 +1.317568,51.343583 +0.192729,51.121425 +0.534013,51.207953 +1.414557,51.338734 +0.862101,51.156905 +1.163783,51.086847 +0.876165,51.311055 +0.40892,51.429272 +0.871337,51.146263 +0.83942,51.135773 +1.295389,51.137755 +1.185252,51.217644 +1.407284,51.360129 +0.477043,51.331909 +0.384871,51.11572 +0.306392,51.246631 +0.925735,51.131593 +0.558022,51.269631 +0.562414,51.241888 +0.50834,51.379484 +0.492657,51.395288 +0.681162,51.358909 +0.49461,51.394716 +1.306585,51.125565 +0.882488,51.019697 +0.457723,51.39876 +0.524631,51.338888 +0.46692,51.393081 +1.195713,51.303655 +0.8962,51.027138 +0.545929,51.391013 +0.513109,51.383645 +0.50558,51.33999 +0.516076,51.414654 +0.691816,51.072636 +0.518142,51.279949 +0.32055,51.430273 +1.151207,51.192059 +0.435043,51.230372 +1.41113,51.361034 +1.432345,51.360369 +0.468709,51.254776 +1.14731,51.073934 +1.054806,51.249898 +0.874829,51.259614 +0.371394,51.441945 +0.375121,51.43168 +0.28655,51.208564 +1.407416,51.380859 +0.757939,51.337519 +1.399501,51.209578 +0.407577,51.433005 +1.146868,51.09539 +0.225584,51.449814 +1.089283,51.282921 +0.737962,51.334561 +1.169086,51.182481 +0.525147,51.341755 +0.528045,51.381336 +1.118936,51.297398 +1.102309,51.278061 +1.383696,51.216279 +0.54043,51.330398 +0.284775,51.218995 +0.346196,51.426228 +0.753209,51.34461 +0.451392,51.14119 +0.878294,51.125692 +0.579915,51.359646 +1.400794,51.219921 +0.060842,51.252561 +1.086789,51.275458 +0.251456,51.15979 +0.580278,51.368155 +0.476143,51.375655 +0.221872,51.383416 +0.53524,51.399195 +0.19237,51.387101 +0.831059,51.406512 +0.854932,51.151756 +0.370611,51.412103 +0.485523,51.325713 +0.622571,51.342149 +1.296634,51.137567 +0.547632,51.354399 +1.394766,51.361249 +0.52272,51.270335 +0.338689,51.312091 +0.513051,51.270489 +0.309848,51.442553 +0.40894,51.294703 +0.659029,51.327477 +0.743239,51.098441 +0.525407,51.379891 +0.573335,51.371671 +0.534097,51.378777 +0.5844,51.336739 +0.825482,51.217428 +1.294398,51.13468 +1.194906,51.229641 +0.771906,51.220068 +1.299569,51.134624 +0.895543,51.171102 +1.364781,51.383982 +0.880005,51.219498 +1.397375,51.387736 +0.528705,51.381844 +1.286064,51.377376 +1.299919,51.134317 +0.334755,51.435998 +0.531367,51.379825 +1.310006,51.132224 +0.549899,51.377364 +0.205809,51.446239 +0.965841,51.246252 +0.235037,51.411737 +0.510315,51.383004 +0.488652,51.365731 +0.535378,51.419607 +0.697715,51.318884 +1.084385,51.066591 +0.265525,51.1813 +0.400209,51.403883 +1.335902,51.379051 +0.537323,51.192106 +0.699521,51.036014 +0.435373,51.399974 +1.109541,51.294464 +0.223368,51.382839 +0.911618,51.304134 +1.381275,51.376256 +1.290033,51.154124 +1.42755,51.346576 +0.701222,51.32312 +0.497251,51.237433 +0.263555,51.181977 +1.314869,51.123873 +0.346526,51.441078 +0.197059,51.44054 +0.306044,51.165732 +0.354615,51.421257 +0.387454,51.413254 +0.73564,51.332709 +0.526837,51.429577 +1.101446,51.271212 +0.47474,51.377087 +0.524714,51.380617 +0.233925,51.172897 +0.514707,51.400977 +0.498465,51.386836 +0.289338,51.156806 +1.043901,51.306084 +0.758461,51.437708 +0.260306,51.143926 +0.507072,51.324975 +0.380898,51.414952 +0.550072,51.396247 +0.477854,51.411323 +0.997708,51.027112 +0.535923,51.325729 +0.244256,51.452839 +0.260257,51.143801 +1.15566,51.08605 +0.526424,51.277737 +0.909236,51.134514 +0.64689,51.224817 +0.598694,51.301077 +1.312611,51.132671 +0.259075,51.162053 +0.419634,51.214341 +0.253902,51.211122 +0.245174,51.443091 +1.303646,51.129048 +0.578949,51.358309 +0.878867,51.156952 +1.2956,51.15296 +0.579562,51.367433 +0.218254,51.412002 +0.446711,51.363485 +0.529074,51.272464 +1.356165,51.165844 +0.400286,51.430061 +0.26473,51.446555 +0.471744,51.29423 +1.08367,51.282196 +0.971372,51.241569 +0.699638,51.346244 +0.507248,51.026305 +1.13387,51.37187 +1.439448,51.358901 +0.851446,51.4076 +0.38598,51.180488 +1.282083,51.144894 +1.159185,51.128312 +0.873597,51.150866 +1.423892,51.374541 +0.518204,51.264568 +0.158493,51.309176 +0.712622,51.222906 +0.531057,51.257419 +0.086678,51.142611 +0.284549,51.328871 +0.155462,51.346436 +0.166054,51.281742 +0.562321,51.380555 +0.796249,51.436291 +0.38669,51.179277 +1.027402,51.354713 +0.839934,51.13227 +0.505444,51.058695 +0.162202,51.274223 +0.214002,51.443945 +0.488665,51.365703 +0.155519,51.346426 +0.888327,51.305692 +0.098964,51.215803 +0.074509,51.271259 +1.292506,51.363801 +0.513438,51.296229 +0.769253,51.297255 +0.245396,51.455245 +0.437186,51.304218 +1.038071,51.360283 +0.269527,51.189659 +0.543564,51.353048 +0.43473,51.419539 +0.190564,51.305594 +1.203491,51.112507 +0.818652,51.217683 +0.295247,51.258775 +1.289704,51.131412 +0.118593,51.223849 +0.508054,51.052847 +0.35874,51.414492 +1.410898,51.361005 +0.434648,51.419612 +0.373568,51.251079 +0.553209,51.373326 +1.387527,51.38812 +0.368975,51.439979 +0.393525,51.443006 +0.710241,51.3434 +0.688564,51.319724 +0.379624,51.117338 +0.78973,51.212845 +0.178878,51.155058 +1.09744,51.068207 +0.580944,51.298735 +0.54418,51.406906 +0.239018,51.440223 +0.184626,51.414918 +1.310796,51.129683 +0.767038,51.438198 +0.257033,51.126074 +0.942478,50.986755 +1.051405,51.08086 +0.753071,51.335115 +0.215472,51.468378 +1.311909,51.137045 +0.511117,51.335689 +0.877095,51.315826 +0.253762,51.211179 +1.123732,51.253726 +0.54401,51.37224 +1.38919,51.391949 +1.358565,51.271002 +1.266232,51.356415 +1.132214,51.371402 +0.536595,51.400281 +0.394242,51.214 +0.239283,51.447098 +1.032438,51.339607 +1.385075,51.378089 +0.21244,51.237464 +0.278808,51.420022 +0.528969,51.393143 +0.401298,51.428511 +0.55041,51.373881 +0.483041,51.265931 +0.508696,51.298714 +1.355576,51.236483 +1.374917,51.333812 +0.481846,51.386515 +1.253173,51.353585 +0.523394,51.377533 +0.449562,51.375719 +0.789935,51.175963 +0.907751,51.183652 +0.330737,51.202107 +1.134216,51.37294 +1.063264,51.281608 +1.172035,51.104109 +1.402841,51.200494 +1.005117,51.050344 +1.166444,51.095482 +1.084398,51.273596 +0.99233,51.32838 +0.507137,51.325387 +0.786783,51.410802 +0.3668,51.437433 +0.420673,51.310515 +1.392351,51.38279 +1.041601,51.282164 +0.492126,51.396361 +0.743511,51.387783 +0.235624,51.437905 +0.874743,51.322746 +1.427497,51.35452 +0.366494,51.43484 +1.031337,51.353172 +0.924894,51.300583 +0.194383,51.263534 +0.537181,51.192136 +0.312871,51.443141 +0.50358,51.433116 +0.238978,51.440583 +0.286896,51.430773 +0.441391,51.15596 +0.467555,51.395532 +0.691083,51.134524 +0.549858,51.365763 +1.410593,51.353233 +0.315509,51.430436 +0.868882,51.148635 +0.789011,51.120347 +0.257888,51.437694 +0.355346,51.435748 +0.567015,51.381487 +0.517325,51.382152 +0.500798,51.392192 +1.385863,51.372409 +1.177949,51.085977 +1.168162,51.081124 +1.379506,51.388523 +0.522634,51.381471 +1.102777,51.291603 +0.657809,51.079351 +0.542298,51.373752 +1.118914,51.334726 +0.882047,51.071642 +0.165305,51.402596 +0.495595,51.44764 +0.511246,51.23002 +0.209189,51.240484 +1.186627,51.082169 +0.594182,51.362235 +0.552811,51.39017 +1.375924,51.386737 +0.908297,51.138918 +0.709154,51.351492 +0.513252,51.412736 +0.235907,51.436919 +0.360399,51.418218 +0.494299,51.395856 +0.225002,51.309244 +0.934304,51.309756 +0.480108,51.264707 +0.757963,51.271655 +0.874171,50.98529 +0.773698,51.438868 +0.193197,51.438625 +0.064466,51.235258 +1.438579,51.359196 +0.559898,51.226501 +0.552689,51.439871 +1.169971,51.082101 +1.170424,51.094762 +0.192313,51.29924 +0.804919,51.065865 +0.257643,51.159958 +0.158381,51.309547 +0.513624,51.268912 +1.071624,51.283512 +0.699637,51.346217 +0.736257,51.351024 +1.149584,51.086808 +0.47679,51.374859 +0.511594,51.276906 +1.161526,51.09584 +0.40262,51.111076 +0.651584,51.206066 +0.896892,51.143087 +1.125349,51.371253 +0.659254,51.276521 +0.577038,51.068074 +1.302302,51.132846 +0.148504,51.30114 +1.081083,51.245701 +1.413931,51.354844 +1.379021,51.387026 +1.079793,51.276344 +0.514725,51.296157 +0.486996,51.267493 +0.560461,51.269407 +0.260144,51.134764 +0.614282,51.250706 +1.188388,51.26175 +0.371438,51.441962 +0.954252,50.985234 +0.23864,51.432487 +0.869764,51.138881 +0.240289,51.451773 +0.571195,51.224634 +0.120804,51.199968 +0.79497,51.17569 +0.059289,51.245709 +0.522654,51.270174 +0.52753,51.253476 +0.867144,51.16189 +0.720866,51.244165 +0.775411,51.335577 +1.30943,51.369944 +0.666655,51.331737 +1.051717,51.095351 +0.279915,51.431278 +1.068278,51.322591 +0.042054,51.194966 +1.201504,51.124066 +0.203793,51.413336 +1.194373,51.326287 +0.454277,51.189642 +0.541106,51.105521 +0.513265,51.301998 +0.535423,51.280754 +0.523696,51.24523 +0.394614,51.199369 +0.398143,51.284618 +0.106725,51.284453 +0.645431,51.349856 +0.478624,51.302395 +0.44037,51.298513 +0.530196,51.392972 +0.278735,51.413359 +0.177445,51.435699 +1.376378,51.38139 +1.400186,51.341905 +1.148018,51.100963 +0.634225,51.373825 +1.371868,51.332964 +0.54478,51.383006 +1.267781,51.35639 +0.656305,51.308912 +1.41735,51.338247 +0.890016,51.135558 +0.751288,51.441195 +0.372907,51.436977 +0.87776,51.156403 +0.147698,51.333341 +0.895815,51.162883 +0.867436,51.151153 +0.390894,51.335823 +0.440794,51.32651 +1.091149,51.36295 +0.606915,51.019796 +1.074257,51.360229 +0.515552,51.210492 +1.15936,51.116218 +0.211306,51.445344 +0.225767,51.437894 +1.156352,51.085726 +1.133754,51.370587 +1.32814,51.141243 +0.876609,51.155838 +1.185619,51.087243 +0.418976,51.222818 +0.343826,51.306727 +0.951101,51.296453 +0.530963,51.257008 +0.317404,51.185473 +0.504066,51.049281 +0.510118,51.334748 +0.524813,51.387647 +0.238615,51.434331 +0.176985,51.435402 +1.416015,51.336325 +0.517068,51.414399 +1.158551,51.219061 +0.732882,51.346435 +1.12755,51.369809 +0.384463,51.40773 +1.261941,51.164042 +1.110542,51.294842 +0.23159,51.391442 +1.381601,51.217392 +0.535221,51.352294 +0.188749,51.312994 +1.302369,51.127384 +0.522438,51.415282 +1.213074,51.316762 +0.218275,51.444224 +0.460009,51.416978 +1.049917,51.135263 +1.060919,51.290124 +0.265067,51.448724 +1.418285,51.372402 +0.548128,51.387646 +0.578218,51.342982 +0.535689,51.377672 +1.183977,51.268652 +0.525207,51.247716 +1.178116,51.211362 +0.523252,51.416469 +1.171042,51.209071 +0.71376,51.308152 +1.311498,51.122107 +0.505348,51.389954 +0.268126,51.36055 +0.236663,51.425888 +0.148628,51.281982 +1.187947,51.083707 +0.380843,51.443498 +0.609013,51.363839 +0.171963,51.41992 +1.395769,51.391092 +0.509641,51.361505 +1.413965,51.338301 +1.074923,51.283092 +0.16519,51.296291 +0.252398,51.354433 +0.144981,51.285565 +1.260785,51.27912 +0.062804,51.202894 +1.11122,51.072086 +0.975061,51.167936 +1.203651,51.112539 +0.222465,51.426185 +1.077069,51.282784 +0.824884,51.407587 +0.527369,51.382115 +1.081438,51.275428 +0.676188,51.241967 +1.090424,51.264667 +0.471494,51.410729 +0.322137,51.429783 +0.248279,51.181804 +0.512798,51.303951 +0.582192,51.298978 +0.487438,51.323172 +0.548172,51.375504 +0.23873,51.43727 +0.736283,51.337478 +0.305463,51.397485 +1.091695,51.094219 +1.133982,51.083962 +0.546743,51.325162 +0.46645,51.296087 +0.528655,51.283904 +0.636211,51.252993 +0.331194,51.121246 +1.379657,51.385703 +0.781988,51.33749 +1.110341,51.366076 +0.714935,51.343597 +0.405128,51.282703 +0.528356,51.261489 +1.427026,51.343595 +0.239213,51.455372 +1.069383,51.362758 +1.143501,51.088078 +0.765821,51.436401 +0.541503,51.419564 +0.155558,51.356435 +0.522465,51.280341 +0.20943,51.241028 +1.175057,51.10651 +0.752847,51.340256 +0.157111,51.279389 +0.579545,51.368908 +1.309442,51.126546 +0.367291,51.41324 +0.228795,51.446587 +0.798178,51.423113 +0.55236,51.245076 +0.469621,51.300921 +1.37367,51.216083 +0.269793,51.203512 +0.278685,51.197755 +0.784289,51.440038 +0.738396,51.372424 +0.522717,51.270281 +0.160061,51.308652 +0.32139,51.424123 +0.496329,51.301074 +0.599225,51.365541 +0.569139,51.330347 +0.476042,51.292808 +0.13169,51.278838 +0.780287,51.421768 +0.413295,51.27436 +0.177548,51.373699 +0.546753,51.377387 +1.031329,51.081311 +0.507167,51.026387 +0.879888,51.157502 +0.233243,51.420647 +1.033426,51.348045 +0.470567,51.290208 +1.070632,51.283915 +1.085768,51.277985 +0.189558,51.382981 +0.159175,51.30017 +0.277216,51.441519 +1.176553,51.202598 +0.374738,51.441221 +0.158552,51.33092 +0.514469,51.299337 +1.09203,51.277478 +0.62786,51.376342 +0.560882,51.326184 +0.553279,51.289314 +0.739907,51.364034 +1.353432,51.33926 +0.248982,51.130393 +0.202066,51.359724 +0.898438,51.126921 +0.356749,51.169857 +0.72216,51.346289 +0.800271,51.419933 +1.111585,51.092836 +0.577405,51.275502 +0.609517,51.307249 +1.118862,51.073627 +0.234979,51.437944 +0.545209,51.358885 +1.10489,51.362605 +0.731779,51.330065 +1.128627,51.250456 +0.417998,51.289381 +0.580095,51.333452 +1.140576,51.234836 +1.198596,51.09564 +0.744668,51.071685 +0.795611,51.419712 +0.568232,51.276863 +0.911496,51.31082 +0.445795,51.341452 +1.362793,51.172193 +0.569729,51.276444 +0.543983,51.318602 +0.753262,51.435726 +0.832622,51.104349 +0.84688,51.407477 +1.172451,51.158329 +0.889204,51.298403 +0.641123,51.139315 +0.34396,51.335539 +0.650535,51.355163 +0.476325,51.291669 +1.260783,51.279094 +0.503687,51.38981 +0.869233,51.144848 +0.732596,51.369619 +0.268817,51.135846 +0.739003,51.33951 +1.071408,51.287367 +0.397542,51.089712 +0.254931,51.183241 +0.260967,51.24427 +0.238451,51.428911 +0.379015,51.244151 +1.156266,51.370702 +0.908608,51.298066 +0.251175,51.181038 +0.868432,51.113945 +0.174868,51.397491 +1.348876,51.210733 +0.610671,51.265887 +1.355579,51.330725 +1.38189,51.210007 +0.874283,51.311479 +0.964147,50.956245 +1.085147,51.276203 +0.437497,51.283554 +1.022333,51.350806 +0.35075,51.41825 +0.292579,51.366387 +0.686237,51.023638 +0.417953,51.212856 +0.583368,51.221794 +1.302635,51.115089 +0.506071,51.388985 +1.040156,51.34752 +0.375087,51.431582 +0.146219,51.239219 +0.52883,51.381769 +0.172225,51.397828 +0.132672,51.199995 +0.727059,51.177816 +1.0421,51.260636 +1.175776,51.098458 +0.417253,51.379988 +0.203957,51.130945 +0.322622,51.412956 +0.522699,51.400941 +0.418182,51.224345 +0.231173,51.458754 +0.339547,51.423906 +1.024488,51.361498 +1.386685,51.389952 +1.181592,51.090987 +0.617045,51.361583 +0.491725,51.172275 +0.551168,51.225855 +0.515229,51.391118 +0.597408,51.237114 +0.551459,51.420634 +0.660573,51.243016 +0.176445,51.434945 +1.384498,51.38273 +0.55727,51.236191 +0.482206,51.392902 +0.59981,51.362173 +0.23852,51.402371 +0.333216,51.22312 +1.415891,51.363027 +0.536246,51.288659 +0.3781,51.240303 +1.410506,51.342396 +1.43361,51.380715 +0.506134,51.342514 +1.379864,51.334686 +0.242311,51.45338 +1.366557,51.38447 +0.608137,51.306938 +0.660167,51.327037 +0.784805,51.33137 +0.201061,51.431005 +1.31626,51.377352 +1.431639,51.368791 +1.107436,51.07207 +1.1582,51.095031 +0.891443,51.13483 +1.252988,51.358268 +0.800936,51.419998 +0.513052,51.214278 +0.482614,51.270239 +0.704735,51.350362 +0.562157,51.424942 +0.238277,51.437431 +0.802292,51.284767 +1.405273,51.348719 +1.289373,51.154692 +0.276925,51.204138 +0.523069,51.276964 +1.396671,51.381927 +0.877171,51.15613 +0.924529,51.301384 +0.69221,51.023105 +1.135005,51.088531 +1.337165,51.354342 +0.401745,51.277233 +0.246597,51.439547 +0.32023,51.366571 +0.270908,51.152237 +0.215906,51.413125 +0.612214,51.179304 +0.529093,51.095096 +0.483834,51.295521 +1.130382,51.091129 +0.834851,51.419695 +0.215635,51.444678 +0.34353,51.438494 +1.046186,51.363724 +0.394242,51.405534 +0.527181,51.265679 +0.284477,51.148429 +0.740763,51.341799 +0.932225,51.31024 +0.592167,51.204286 +0.515697,51.414824 +1.379231,51.335648 +0.485224,51.396588 +0.36991,51.183809 +0.523275,51.381106 +1.417681,51.356588 +0.468276,51.295643 +1.087137,51.271878 +0.776433,51.42203 +0.828917,51.29814 +0.294314,51.230815 +0.641281,51.139339 +0.155813,51.322409 +0.21742,51.432225 +0.555941,51.119614 +1.025545,51.063147 +0.50722,51.026314 +0.236819,51.441146 +0.3219,51.307839 +0.231807,51.462025 +0.862748,51.122773 +0.372161,51.425094 +0.273554,51.194131 +0.860604,51.136416 +0.882551,51.301445 +1.346772,51.24824 +1.115876,51.362735 +0.369708,51.344006 +0.762937,51.436775 +0.350431,51.135349 +0.51644,51.414475 +0.229821,51.13585 +0.3587,51.417065 +1.131318,51.072017 +0.730563,51.385918 +0.548809,51.386714 +0.12968,51.226993 +0.907098,51.130529 +1.052077,51.269713 +1.395901,51.208135 +1.323018,51.347045 +0.868565,51.137759 +0.509543,51.406196 +0.589984,51.208256 +0.238015,51.321892 +1.177715,51.078193 +0.228875,51.152119 +1.214898,51.362927 +0.521141,51.273175 +1.289506,51.154751 +1.418789,51.332313 +0.156776,51.404687 +0.357196,51.420818 +0.620113,51.258742 +0.529661,51.294639 +0.554023,51.253881 +0.799529,51.435097 +0.436747,51.109074 +0.56134,51.292421 +0.291369,51.292027 +1.111878,51.072104 +0.153007,51.13014 +1.18331,51.080443 +1.17488,51.106227 +0.179911,51.394403 +0.263775,51.136223 +0.374411,51.429086 +0.23382,51.285756 +0.218328,51.170136 +0.359925,51.443633 +0.679829,51.21438 +0.737802,51.350187 +1.123861,51.37113 +1.29527,51.152735 +0.23903,51.437237 +0.515134,51.271092 +1.102477,51.291404 +0.135402,51.288996 +0.919357,51.133371 +0.518914,51.272044 +0.499077,51.35084 +0.541472,51.389455 +1.025661,51.062964 +0.594389,51.340988 +1.103536,51.364251 +0.73178,51.236338 +1.389738,51.364174 +0.405359,51.270117 +0.495687,51.411052 +0.962871,50.969976 +1.064029,51.281453 +0.85278,51.140997 +1.174769,51.106482 +1.357894,51.234087 +1.158014,51.219372 +1.104347,51.292326 +0.488676,51.394249 +0.263732,51.136503 +1.32413,51.1348 +1.40373,51.388909 +1.374464,51.386635 +0.281463,51.444746 +0.799635,51.327823 +0.899434,51.155355 +0.474813,51.401872 +1.376532,51.358493 +0.25006,51.406647 +1.103274,51.094991 +0.532257,51.344389 +0.429248,51.29816 +0.522953,51.266993 +1.413528,51.33996 +0.302077,51.394485 +0.396786,51.429701 +0.193528,51.27748 +0.170897,51.389525 +0.26093,51.145289 +1.070605,51.284141 +0.061562,51.230848 +1.074535,51.274917 +0.193099,51.288955 +0.331664,51.444819 +1.128924,51.358142 +0.885121,51.136155 +1.176937,51.079348 +0.551751,51.270299 +0.235079,51.437933 +0.519816,51.271773 +0.279018,51.448823 +0.351845,51.425845 +0.389168,51.289631 +0.19798,51.277028 +0.33671,51.439926 +0.871731,51.062524 +0.250196,51.450998 +0.873148,51.143412 +0.376494,51.437615 +0.35933,51.437943 +0.370388,51.432513 +0.518039,51.269689 +1.420223,51.338074 +0.871728,51.136431 +0.867744,51.149661 +1.213295,51.1763 +0.921771,51.302235 +0.569027,51.239711 +0.678707,51.09903 +0.333462,51.425313 +0.902763,51.301602 +1.297964,51.154216 +1.086852,51.275321 +0.510054,51.405808 +0.594461,51.348874 +0.519185,51.364466 +0.536965,51.229087 +0.522121,51.336334 +0.504358,51.031961 +0.63399,51.252755 +0.540787,51.385126 +1.131974,51.364096 +0.457886,51.373926 +0.554559,51.364006 +0.282268,51.134955 +0.556849,51.422882 +0.573646,51.379012 +0.279036,51.44831 +0.529841,51.284337 +0.449619,51.368172 +0.503664,51.403076 +1.073713,51.275712 +0.38528,51.194631 +1.365512,51.383943 +1.396015,51.384123 +0.499474,51.375294 +0.497631,51.038428 +0.598069,51.34766 +1.266826,51.356488 +1.103237,51.364294 +0.190918,51.440017 +0.270411,51.452578 +0.091179,51.163431 +0.268281,51.348865 +0.519579,51.383425 +0.554443,51.245174 +0.461271,51.394432 +0.336847,51.300679 +0.554197,51.3779 +0.87078,51.144199 +0.458038,51.415104 +1.385137,51.390015 +0.429234,51.223702 +1.049663,51.363723 +0.601084,51.238795 +0.181685,51.389693 +0.666354,51.166552 +0.263642,51.13234 +0.897159,51.148036 +0.222648,51.130555 +1.337537,51.148019 +1.244668,51.171908 +0.895235,51.132613 +0.867539,51.151186 +0.28253,51.153027 +0.547145,51.284492 +0.238486,51.42758 +0.557943,51.243416 +0.525629,51.197863 +1.394292,51.221693 +1.105423,51.260672 +1.434851,51.352388 +0.106293,51.28411 +0.924542,51.301356 +0.355657,51.131871 +0.329789,51.306072 +0.430765,51.304891 +1.178265,51.080598 +0.541392,51.374266 +1.102425,51.35909 +0.492141,51.400075 +0.461638,51.390548 +0.540058,51.376903 +0.775351,51.335533 +0.340135,51.303285 +0.530446,51.362335 +0.226029,51.450372 +0.367742,51.438952 +0.584883,51.366749 +1.048593,51.099543 +0.334522,51.179863 +1.400925,51.380553 +0.967492,51.224479 +0.762421,51.439908 +1.31445,51.125612 +0.858091,51.152434 +0.408935,51.429281 +1.269146,51.356792 +0.546574,51.36873 +0.526125,51.390587 +0.375413,51.441198 +0.152619,51.278393 +1.08193,51.287486 +0.499078,51.399675 +1.422147,51.337873 +0.355674,51.435679 +1.328419,51.130621 +0.808128,51.4282 +0.394249,51.199232 +1.401625,51.223027 +1.304202,51.146438 +0.159904,51.310193 +1.025404,51.209404 +1.060088,51.280855 +1.177778,51.077652 +0.369441,51.20731 +0.659647,51.146198 +1.072662,51.274364 +0.537136,51.35576 +0.528828,51.262765 +0.476066,51.290047 +0.207127,51.244705 +0.609282,51.341529 +1.039316,51.08704 +1.415704,51.36341 +1.170919,51.106173 +0.291028,51.322063 +0.86259,51.17543 +0.491915,51.394593 +0.494606,51.356053 +0.205563,51.430093 +1.410686,51.34231 +0.869264,51.149956 +1.337246,51.257022 +0.405125,51.432894 +0.360551,51.419761 +1.130922,51.359204 +0.314015,51.311107 +0.275392,51.19656 +0.525703,51.38475 +0.594585,51.247034 +0.527649,51.417957 +0.135834,51.2912 +1.180976,51.198223 +0.708853,51.332765 +0.50671,51.335712 +1.116439,51.310731 +0.145304,51.331883 +0.155859,51.341447 +0.166216,51.414279 +0.508318,51.352001 +0.279411,51.448033 +0.747161,51.268923 +1.345561,51.286216 +1.307701,51.131173 +0.826469,51.121759 +0.279824,51.266001 +1.05298,51.357638 +0.5396,51.251973 +1.031168,51.067283 +0.506097,51.29841 +0.494842,51.356695 +1.139496,51.234964 +0.308881,51.30315 +1.266434,51.14705 +0.2354,51.438026 +0.613643,51.263177 +1.050502,51.15106 +1.42411,51.368418 +0.225671,51.443022 +0.543128,51.173812 +0.532866,51.095914 +1.060812,51.34109 +1.329201,51.128782 +0.506743,51.055798 +0.435156,51.312211 +0.2988,51.140297 +1.090248,51.285962 +0.869721,51.14695 +1.348241,51.315536 +0.43501,51.419398 +0.226866,51.451615 +1.25502,51.167338 +0.063479,51.195247 +1.173416,51.085488 +0.279314,51.448403 +0.746047,51.41261 +0.880169,51.219377 +0.525438,51.261066 +0.7772,51.427093 +0.24323,51.452175 +0.258242,51.464117 +0.760126,51.409968 +0.504259,51.064764 +0.38788,51.407615 +0.175857,51.252485 +0.867178,51.127153 +0.237596,51.39934 +1.049594,51.092186 +0.708628,51.363277 +0.693217,51.082992 +0.910145,51.398916 +0.897591,51.142836 +0.510372,51.358054 +1.427185,51.366106 +0.380379,51.311053 +1.07501,51.276883 +0.881003,51.1653 +1.092658,51.284477 +1.099371,51.29002 +0.510623,51.223585 +0.439801,51.418336 +1.179175,51.199927 +0.529318,51.261783 +1.098797,51.369818 +0.687191,51.068219 +1.383794,51.381176 +1.25368,51.33926 +1.084021,51.276952 +0.212784,51.445838 +0.215729,51.437707 +0.237271,51.449807 +1.103011,51.095547 +0.493292,51.394798 +0.511546,51.242892 +0.570236,51.267808 +0.38264,51.419953 +1.413548,51.336946 +0.527386,51.400687 +0.334416,51.444315 +1.406427,51.357294 +0.174379,51.279465 +1.400266,51.223633 +0.355247,51.442207 +0.649947,51.143622 +0.579078,51.360096 +1.075678,51.28193 +0.43698,51.305742 +1.392175,51.217059 +0.247319,51.455703 +1.330802,51.366028 +1.319393,51.127963 +1.403005,51.386502 +1.265618,51.263559 +1.035185,51.26382 +0.266953,51.446692 +1.171337,51.360059 +0.555602,51.384551 +0.295115,51.450091 +0.514778,51.295031 +0.865694,51.152113 +0.771107,51.431015 +0.574082,51.275818 +1.214921,51.274426 +0.387924,51.41096 +0.870857,51.136219 +0.507151,51.335639 +0.356058,51.435608 +0.509929,51.406422 +0.35285,51.434764 +0.281221,51.449113 +0.245392,51.184243 +0.481275,51.383128 +0.277549,51.43868 +1.094114,51.28523 +0.473634,51.397886 +0.603069,51.364916 +0.55455,51.395079 +1.172332,51.092183 +0.246428,51.118696 +0.174534,51.419548 +0.557655,51.372653 +0.844247,51.306394 +0.508818,51.383234 +0.276475,51.131408 +0.66461,51.1008 +1.292059,51.157467 +0.659661,51.308872 +0.197498,51.447592 +0.510779,51.270106 +0.241518,51.185504 +0.587757,51.1514 +0.502667,51.317361 +0.378863,51.439743 +0.540596,51.376748 +1.129061,51.368788 +0.509513,51.356274 +0.285692,51.202231 +0.626499,51.26163 +1.039094,51.345578 +0.524595,51.382895 +0.50425,51.3988 +1.213472,51.117747 +0.563513,51.339905 +0.352157,51.334683 +0.552869,51.379853 +0.616174,51.169377 +1.098121,51.289559 +0.164913,51.401605 +0.324783,51.446764 +0.50898,51.073405 +0.959004,51.116688 +1.284401,51.117933 +0.19346,51.444412 +1.298629,51.150104 +0.785588,51.035864 +0.888535,51.312423 +0.513814,51.401473 +1.148964,51.310796 +1.289096,51.120041 +0.642358,51.317664 +0.286099,51.449683 +1.084951,51.275425 +1.066421,51.35949 +0.226283,51.378647 +0.399035,51.301733 +0.139538,51.292815 +0.548545,51.374201 +0.898886,51.126542 +0.242032,51.43771 +0.491425,51.392715 +0.4822,51.274268 +1.381191,51.217476 +0.325404,51.428666 +0.506311,51.322599 +0.455655,51.41438 +0.04057,51.21127 +0.718149,51.239399 +0.645575,51.110164 +1.169258,51.119683 +1.15356,51.26774 +0.773181,51.106594 +0.509447,51.334565 +0.894897,51.210774 +0.768809,51.297257 +0.25864,51.182998 +0.515041,51.23368 +0.428234,51.221573 +0.502636,51.333658 +0.489691,51.306207 +1.105746,51.145909 +0.260883,51.444435 +0.178942,51.130001 +0.474332,51.383904 +0.398681,51.430463 +1.402055,51.33863 +0.873505,51.151237 +0.812645,50.9875 +1.38522,51.347142 +0.39811,51.42587 +0.334797,51.424693 +0.533786,51.273684 +0.502406,51.049199 +0.239168,51.455931 +0.24907,51.18365 +0.250926,51.347833 +1.392386,51.348689 +0.725599,51.343502 +0.155816,51.340521 +1.108805,51.36483 +0.195586,51.436242 +0.757623,51.336321 +1.31739,51.344488 +1.063454,51.359604 +1.114246,51.278355 +0.516259,51.414335 +0.681129,51.374568 +0.554022,51.253854 +0.37404,51.441361 +1.056917,51.358731 +1.39844,51.359244 +0.321402,51.307912 +0.511791,51.382666 +0.194209,51.280957 +0.775402,51.424959 +0.508541,51.414681 +0.579134,51.342944 +1.388407,51.390298 +0.359878,51.438256 +0.166604,51.403615 +0.874436,51.148957 +0.193579,51.27765 +0.278507,51.437393 +0.507344,51.319707 +0.740457,51.340286 +0.476897,51.184956 +0.733391,51.340748 +1.394233,51.222243 +0.510369,51.369548 +0.591183,51.225785 +0.534504,51.378597 +0.210772,51.130888 +1.394908,51.375385 +0.343648,51.430974 +0.534215,51.081665 +0.577395,51.109682 +0.240145,51.148909 +0.336717,51.439764 +0.485245,51.325089 +0.285755,51.449996 +0.306437,51.162145 +1.302124,51.129757 +0.552481,51.287353 +1.260754,51.352718 +0.180528,51.286069 +0.472703,51.184145 +0.237904,51.440982 +0.518858,51.266038 +0.286195,51.153684 +0.71239,51.238201 +0.869622,51.136366 +0.514397,51.087742 +1.325249,51.125701 +0.635035,51.155687 +0.513052,51.260793 +1.361384,51.359604 +0.286501,51.291637 +0.289382,51.133431 +1.393094,51.380988 +1.053978,51.364438 +0.208055,51.241045 +1.17794,51.095008 +1.387795,51.382409 +0.661624,51.329405 +1.075565,51.072437 +1.381387,51.208421 +0.520873,51.272209 +1.064622,51.359447 +1.177103,51.166909 +0.316868,51.308766 +0.495437,51.265317 +0.278557,51.381725 +0.529078,51.392772 +0.173466,51.255578 +0.608201,51.262767 +0.342627,51.438575 +0.512851,51.270502 +0.198626,51.447409 +0.506334,51.270093 +0.274509,51.146663 +0.440542,51.108689 +0.901137,51.127106 +0.883547,51.158833 +0.63438,51.094452 +0.518674,51.279721 +0.396261,51.224742 +0.538601,51.375235 +0.307804,51.261082 +1.363199,51.229023 +0.184089,51.392787 +1.302835,51.1247 +1.129772,51.091838 +1.165552,51.076356 +1.017114,51.350302 +0.579734,51.174971 +1.005797,51.100481 +0.634017,51.157895 +1.155643,51.086015 +0.439545,51.323793 +0.285273,51.135904 +0.410896,51.24304 +1.334429,51.334073 +1.418164,51.356322 +1.384368,51.382724 +1.103148,51.291782 +1.134541,51.368021 +0.529289,51.272468 +0.612937,51.265144 +1.403972,51.370867 +0.441908,51.29858 +0.443057,51.319942 +0.177055,51.436876 +1.395302,51.212839 +0.287975,51.203806 +1.142234,51.366627 +0.878373,51.221804 +0.774356,51.301461 +1.181942,51.091301 +0.697393,51.225048 +0.742647,51.319 +0.508822,51.298649 +0.801902,51.327346 +0.5227,51.27494 +0.4937,51.295725 +0.82927,51.406654 +0.516113,51.294256 +0.237757,51.404409 +0.515268,51.329422 +0.618927,51.259047 +0.506458,51.341617 +0.50986,51.269028 +1.128889,51.086582 +0.252428,51.353874 +0.374385,51.308908 +0.536146,51.096347 +0.901489,51.306203 +1.367661,51.385023 +0.460157,51.302074 +0.233476,51.219824 +0.546778,51.388449 +0.443152,51.305254 +0.868171,51.136708 +0.548881,51.396794 +0.277989,51.45128 +0.385625,51.145888 +1.161242,51.081213 +0.391217,51.423349 +1.318097,51.343146 +0.918629,51.194768 +0.515432,51.383281 +0.574302,51.369968 +0.911643,51.132781 +1.407305,51.359634 +0.549817,51.377438 +1.371573,51.224626 +0.525816,51.343998 +1.166278,51.097223 +1.392109,51.380881 +0.528389,51.159913 +1.384068,51.207102 +1.386852,51.37587 +0.469408,51.382677 +0.505662,51.384129 +0.522324,51.379238 +1.102288,51.26286 +0.517189,51.292164 +0.210103,51.404629 +1.289064,51.154574 +0.930163,51.305803 +0.854544,51.156604 +0.241915,51.426498 +0.255763,51.369422 +0.282486,51.199938 +0.648538,51.320043 +1.170729,51.076683 +0.692299,51.022905 +0.152617,51.280182 +1.145939,51.087599 +1.427508,51.345048 +0.622713,51.342119 +0.195598,51.286318 +1.189713,51.34229 +0.634492,51.252258 +0.963787,51.115055 +0.531923,51.37609 +0.552581,51.367961 +0.196337,51.377198 +0.550954,51.395553 +1.062661,51.360416 +0.362901,51.429903 +0.529927,51.379506 +0.580182,51.359037 +0.543798,51.372298 +0.236742,51.423377 +0.593821,51.352539 +0.499428,51.396331 +0.509796,51.296784 +0.546982,51.375296 +0.485212,51.305619 +0.706355,51.351539 +0.260965,51.139857 +0.518322,51.363415 +1.394648,51.219128 +0.524939,51.369568 +0.711488,51.348461 +0.57853,51.370792 +0.539806,51.405301 +0.276316,51.185687 +0.564405,51.331962 +1.14222,51.361384 +1.1621,51.077673 +1.291303,51.15327 +0.454467,51.39864 +0.500172,51.363579 +1.309496,51.363889 +0.577113,51.385735 +0.322972,51.292124 +0.646667,51.470847 +1.151219,51.086485 +0.196676,51.392965 +0.564153,51.35625 +0.333698,51.429661 +0.399035,51.301733 +0.443961,51.312378 +0.771621,51.409561 +0.613902,51.362157 +0.282888,51.217035 +0.929245,51.300636 +0.24064,51.440722 +0.704086,51.349838 +0.528648,51.273328 +1.110612,51.362669 +1.137671,51.237406 +0.560844,51.391164 +0.25735,51.464413 +1.12693,51.087399 +0.567732,51.436107 +0.158861,51.39705 +0.442871,51.311295 +0.581042,51.338809 +0.173175,51.279488 +0.544714,51.340369 +0.288453,51.132568 +0.274012,51.337278 +0.710386,51.344395 +0.528917,51.19701 +0.426521,51.254607 +0.584072,51.34699 +0.529679,51.380491 +0.174441,51.435144 +1.188218,51.208334 +0.521613,51.271582 +0.328855,51.446179 +0.748841,51.33785 +1.168138,51.097262 +0.873889,51.153504 +0.585304,51.335954 +1.357138,51.377958 +0.509469,51.336534 +0.544313,51.375102 +0.502553,51.347699 +0.497179,51.36903 +0.374292,51.252332 +0.360401,51.267084 +0.287183,51.188991 +0.52565,51.384832 +1.123772,51.25368 +0.195407,51.436713 +0.386588,51.410978 +0.592822,51.276564 +1.072969,51.27423 +1.133469,51.305599 +0.647809,51.319601 +1.143939,51.30951 +0.756762,51.442236 +1.146247,51.088985 +0.26354,51.13317 +0.279055,51.124585 +0.520833,51.33772 +1.127143,51.09753 +0.361052,51.437288 +0.543285,51.379109 +0.286374,51.202704 +0.466146,51.243831 +1.038386,51.362443 +0.359053,51.30876 +1.003811,51.342144 +1.272747,51.300509 +0.348017,51.404779 +0.767611,51.297384 +1.085871,51.266685 +0.547524,51.396176 +0.330236,51.426088 +0.352223,51.234656 +0.153858,51.28435 +1.281315,51.343535 +0.457108,51.453525 +1.418527,51.358299 +1.384591,51.383213 +0.385254,51.21297 +1.2871,51.118496 +0.16589,51.268804 +1.401828,51.390782 +1.357733,51.338579 +1.410575,51.375595 +1.416751,51.335413 +0.384912,51.438999 +0.373173,51.437115 +0.268517,51.188896 +1.089462,51.283015 +1.163269,51.315951 +1.311626,51.12929 +1.14486,51.357562 +0.543369,51.360418 +0.521663,51.336092 +0.317515,51.186811 +0.977756,51.122283 +0.741357,51.341893 +0.243701,51.442687 +1.076097,51.281559 +0.267954,51.149452 +0.57894,51.358147 +0.44485,51.332325 +0.348271,51.29796 +0.710867,51.351803 +0.465348,51.386306 +0.395263,51.426989 +0.330027,51.221511 +0.564963,51.260656 +1.012105,51.340285 +0.508977,51.334629 +1.421524,51.335292 +0.594519,51.200789 +1.132726,51.086299 +0.479888,51.385388 +0.926526,51.301415 +0.530922,51.373063 +0.845778,51.14687 +0.62663,51.261672 +0.588722,51.345655 +0.578951,51.174539 +1.239982,51.279222 +0.220958,51.459173 +0.815615,50.985476 +1.40925,51.334571 +0.512434,51.229212 +1.074266,51.288713 +0.510864,51.269034 +0.509353,51.365954 +0.900992,51.127074 +0.19681,51.280153 +0.475231,51.237434 +0.567022,51.381343 +1.38347,51.38517 +1.059629,51.363418 +0.560497,51.393699 +1.366551,51.383031 +0.291007,51.402517 +0.888253,51.316388 +0.245712,51.1708 +0.486224,51.396216 +0.585117,51.335949 +1.333892,51.383039 +0.064072,51.234446 +1.389704,51.359435 +0.594497,51.36221 +0.386892,51.217784 +0.507509,51.351928 +0.767237,51.420062 +0.416317,51.08195 +0.347253,51.136106 +1.001923,51.288855 +0.68637,51.277008 +0.544102,51.327755 +0.244247,51.184517 +0.732565,51.213079 +0.550106,51.375651 +0.545525,51.359139 +0.513613,51.30048 +1.395946,51.20817 +1.155428,51.08558 +0.518257,51.279964 +0.537831,51.365476 +0.417257,51.30831 +0.769541,51.435801 +0.408529,51.430863 +0.729887,51.340991 +0.768786,51.433552 +0.215244,51.310418 +0.578592,51.379308 +0.537274,51.288052 +0.437417,51.331302 +0.556141,51.238833 +0.274363,51.194853 +0.871547,51.143883 +0.399846,51.430178 +1.383006,51.382377 +0.266408,51.129274 +0.555462,51.137343 +0.554694,51.395085 +1.14893,51.310923 +1.346932,51.297574 +0.23789,51.442169 +1.412954,51.343062 +0.351563,51.442218 +1.331088,51.357897 +0.228893,51.418455 +1.416689,51.340758 +0.217964,51.437799 +0.752631,51.411115 +0.347388,51.323662 +1.12603,51.359946 +1.074371,51.295438 +0.352814,51.370499 +0.503738,51.330442 +0.256615,51.36892 +0.560356,51.040748 +0.310606,51.444751 +0.521866,51.271234 +0.522644,51.281776 +1.414135,51.362026 +0.561328,51.393654 +0.51619,51.299066 +0.231598,51.419959 +0.356087,51.435329 +0.499909,51.406987 +0.518024,51.279897 +0.520128,51.279555 +0.424342,51.08879 +0.510593,51.374445 +0.623371,51.259065 +0.495208,51.274063 +0.213789,51.446988 +0.418288,51.079508 +0.460126,51.289699 +1.136734,51.087693 +1.057238,51.293009 +0.521073,51.271683 +0.360629,51.419598 +0.767401,51.434925 +1.397865,51.381929 +0.508621,51.270233 +0.55273,51.245032 +0.550872,51.287298 +0.944602,50.987655 +1.077805,51.271494 +0.694829,51.347002 +0.284744,51.431184 +1.423128,51.367583 +0.514495,51.300613 +0.288452,51.232485 +0.175331,51.437843 +1.421747,51.33829 +1.060006,51.21489 +0.260327,51.14084 +1.3061,51.129582 +0.591684,51.355392 +0.960809,50.983242 +0.515194,51.390732 +0.218681,51.44784 +0.296516,51.399972 +0.872929,51.143337 +1.312689,51.127569 +0.327099,51.377937 +1.22237,51.134907 +0.17727,51.30149 +0.492668,51.430902 +1.021355,51.347512 +0.728028,51.341359 +0.765518,51.440438 +0.482539,51.271788 +0.822602,51.322181 +0.864184,51.135591 +0.974542,51.244735 +0.716711,51.359061 +1.2952,51.158377 +1.259681,51.339831 +0.758629,51.350679 +1.414194,51.339257 +0.496849,51.173631 +1.383626,51.379103 +0.484592,51.255618 +0.549459,51.38652 +0.687546,51.348447 +0.316232,51.428812 +0.527734,51.271306 +0.887322,51.300644 +0.18224,51.393505 +0.521865,51.328002 +0.537432,51.16648 +0.521025,51.271594 +1.404443,51.22782 +0.840817,51.141531 +0.75492,51.340567 +0.18492,51.312733 +0.712245,51.355441 +0.448487,51.278791 +0.215575,51.438384 +0.940208,51.311649 +0.236694,51.40943 +0.955455,51.115042 +1.004151,51.288483 +0.535826,51.386393 +0.497308,51.394883 +0.885845,51.397764 +0.455574,51.302773 +0.431585,51.225632 +0.612388,51.123394 +1.380481,51.387901 +1.034452,51.047436 +0.729172,51.34153 +1.388313,51.214202 +0.551495,51.364972 +0.7397,51.339395 +0.373546,51.251484 +1.416043,51.36295 +1.339838,51.276539 +0.307475,51.291423 +0.219139,51.426716 +0.599929,51.354625 +0.471042,51.292653 +1.394529,51.366005 +0.209724,51.384833 +1.083299,51.273454 +0.248163,51.12352 +1.104037,51.093811 +1.329941,51.127141 +0.304624,51.391098 +1.113206,51.3685 +0.53177,51.375932 +0.433224,51.304984 +0.361908,51.098613 +0.189209,51.262956 +1.396912,51.211164 +0.522917,51.384271 +0.548286,51.395152 +0.547104,51.387839 +0.764645,51.432885 +0.608334,51.36327 +0.516802,51.292955 +1.41975,51.36564 +1.230681,51.309756 +0.564676,51.389246 +1.430238,51.358703 +0.520661,51.371468 +0.513783,51.296762 +0.238911,51.433624 +0.578445,51.342941 +0.55765,51.423836 +1.408123,51.348213 +0.175636,51.425184 +1.420085,51.368787 +0.545702,51.389264 +0.53833,51.377345 +0.273509,51.327989 +0.099341,51.215572 +1.146219,51.091306 +1.159972,51.340857 +0.588388,51.367499 +0.760595,51.438971 +1.064468,51.267806 +1.075434,51.28172 +0.53124,51.293615 +0.207788,51.429385 +0.848088,51.146058 +0.859938,51.157084 +1.075153,51.072474 +0.851871,51.104439 +0.596786,51.351889 +0.208038,51.44591 +0.155364,51.313128 +1.110072,51.093488 +0.960786,51.088463 +0.187965,51.250326 +0.948437,51.120175 +1.394,51.388553 +1.018289,51.340207 +0.369358,51.256147 +0.402445,51.37495 +0.395941,51.210044 +0.532726,51.359147 +0.925719,51.300922 +0.512493,51.309398 +0.555222,51.247847 +0.690371,51.070628 +1.35671,51.332438 +0.485938,51.393326 +0.509272,51.406508 +0.27874,51.186395 +0.387034,51.43169 +0.197348,51.431884 +0.299403,51.363223 +1.097942,51.296274 +0.291694,51.450752 +0.648335,51.319769 +0.282298,51.127157 +1.072508,51.286016 +1.391306,51.219647 +0.079553,51.260396 +1.12327,51.253883 +0.508581,51.351833 +0.343686,51.426935 +0.615409,51.262724 +0.529175,51.38151 +0.545493,51.339902 +0.482727,51.392972 +1.007467,51.034426 +1.379685,51.187538 +0.192004,51.270476 +0.858226,51.155534 +0.86214,51.124956 +1.409115,51.360598 +0.868081,51.156246 +1.309859,51.126174 +0.870346,51.130286 +0.876431,51.150905 +0.49769,51.231794 +0.331854,51.425948 +1.049604,51.363698 +0.315642,51.140882 +0.369484,51.432855 +0.497743,51.319193 +0.582322,51.267038 +0.501986,51.381293 +0.301118,51.237417 +0.548053,51.247508 +0.723943,51.361825 +0.260882,51.153079 +0.558953,51.371698 +0.661806,51.32932 +0.284673,51.152409 +1.051055,51.155768 +0.764782,51.123837 +1.409819,51.377416 +0.518657,51.364792 +0.259972,51.118948 +0.077144,51.267687 +1.37917,51.336379 +1.011694,51.287363 +1.172639,51.078304 +0.494535,51.402308 +1.236865,51.194701 +1.289123,51.157406 +0.516079,51.401353 +0.259606,51.115538 +0.492754,51.410539 +0.709145,51.351349 +1.125023,51.355917 +1.423267,51.338056 +0.927519,51.301012 +0.356845,51.363088 +0.707286,51.351733 +0.139497,51.292851 +0.631407,51.36753 +0.50405,51.336956 +0.762823,51.268294 +0.333233,51.158286 +1.381694,51.209878 +0.433599,51.399597 +0.752305,51.441351 +1.066626,51.286854 +0.324416,51.308778 +1.088795,51.29039 +0.75267,51.340656 +0.499179,51.399673 +0.469623,51.161861 +0.260121,51.427848 +0.52939,51.392963 +1.386471,51.349112 +0.501537,51.349861 +0.639535,51.317242 +1.12895,51.176673 +0.759466,51.132489 +0.520678,51.382232 +0.894247,51.314935 +1.293645,51.364255 +1.070703,51.273156 +1.387385,51.20742 +0.170078,51.398938 +0.512178,51.30731 +0.82761,51.406784 +1.060191,51.216172 +0.815158,51.108495 +0.873675,51.150748 +0.495551,51.354423 +0.069597,51.279656 +0.606511,51.341024 +0.139679,51.292767 +0.860705,51.156309 +1.420924,51.33244 +0.482857,51.26571 +0.282371,51.430052 +0.241646,51.370134 +1.103909,51.278189 +0.901681,51.144659 +1.083116,51.274574 +1.067167,51.271522 +0.252183,51.183519 +1.137786,51.312707 +0.192828,51.273941 +0.255255,51.162325 +0.258946,51.126909 +1.396287,51.384115 +0.375567,51.153287 +0.50735,51.026338 +0.500403,51.401284 +1.058464,51.206538 +0.249997,51.123925 +0.370436,51.421774 +0.558595,51.372498 +0.45903,51.414552 +0.259371,51.445579 +0.086968,51.270948 +1.076413,51.281137 +1.122748,51.278317 +0.518097,51.269697 +0.227974,51.450119 +0.445833,51.337314 +0.266496,51.362443 +0.662397,51.34126 +0.512509,51.375303 +0.957227,50.995044 +1.134042,51.371236 +0.177032,51.440626 +0.241255,51.438004 +0.573671,51.353074 +0.420883,51.249867 +0.433228,51.399658 +0.577727,51.384381 +0.903778,51.150273 +0.557896,51.387793 +0.24415,51.452724 +1.098564,51.289754 +0.330171,51.221517 +1.422317,51.334567 +1.346931,51.380293 +1.020595,51.247936 +0.615378,51.26294 +0.518309,51.284064 +1.402526,51.352154 +0.465309,51.300769 +1.103691,51.277934 +1.298442,51.279243 +0.270206,51.190653 +0.3996,51.216247 +0.270013,51.137793 +0.520037,51.281572 +0.312623,51.144557 +0.540163,51.228901 +0.612851,51.261099 +0.405169,51.40415 +0.837613,51.241643 +1.171434,51.082196 +0.549656,51.375579 +1.17453,51.092987 +0.471409,51.398221 +1.309418,51.126807 +1.26693,51.355928 +0.474041,51.376922 +0.769253,51.297255 +0.151793,51.407567 +0.590423,51.367157 +0.549756,51.288393 +0.476922,51.292628 +0.460834,51.394585 +1.317283,51.343412 +0.52124,51.279441 +0.19095,51.269713 +0.869608,51.138912 +0.525492,51.343321 +0.51386,51.33519 +0.730661,51.329848 +0.647099,51.126337 +0.562509,51.369255 +0.911901,50.951309 +0.967508,50.946184 +0.582205,51.388339 +0.243296,51.283345 +0.367197,51.438145 +0.425672,51.308433 +0.722595,51.304457 +0.844938,51.175043 +1.135598,51.085682 +0.252589,51.351587 +0.690534,51.069743 +0.470335,51.115753 +0.156458,51.345932 +1.17438,51.367694 +1.364948,51.383518 +1.019449,51.056784 +0.183679,51.276621 +0.534267,51.421376 +0.1375,51.345875 +0.21401,51.440842 +0.284252,51.195407 +0.380931,51.3023 +0.492715,51.358261 +0.275053,51.33974 +0.549222,51.394143 +0.261083,51.128819 +1.19402,51.09412 +0.551232,51.385834 +0.528742,51.379657 +0.491928,51.301681 +0.99809,51.289466 +1.439408,51.358947 +0.395012,51.167847 +0.2406,51.451956 +0.258714,51.126842 +0.733108,51.346619 +0.552665,51.367923 +0.16682,51.293752 +1.061707,51.269839 +0.910771,51.137561 +0.387956,51.412938 +1.391519,51.382427 +0.737918,51.336964 +1.412431,51.381613 +1.261419,51.279364 +1.401309,51.351236 +0.570699,51.38772 +0.178299,51.436709 +0.881309,51.138075 +0.483044,51.262262 +0.35623,51.416566 +0.823648,51.176458 +0.582009,51.298793 +0.889544,51.295597 +0.512923,51.310954 +0.427755,51.313372 +0.879125,51.301718 +0.513883,51.401697 +0.808616,51.424186 +0.328751,51.427152 +0.395344,51.279882 +1.123923,51.371192 +0.659091,51.327062 +0.546948,51.375719 +0.590692,51.352321 +1.300401,51.13406 +1.402818,51.371395 +1.173249,51.081166 +0.544086,51.327729 +1.080753,51.279764 +0.611956,51.26504 +0.671028,51.243416 +0.793303,51.20918 +0.866109,51.316653 +1.339318,51.377596 +0.179255,51.436538 +0.363228,51.438746 +0.318155,51.434673 +0.370945,51.429381 +0.550923,51.288484 +0.478585,51.278491 +0.177346,51.250623 +0.396376,51.431211 +0.279409,51.448581 +0.857754,51.152532 +0.48858,51.374465 +0.208528,51.445918 +0.778892,51.337815 +0.128653,51.287572 +0.771682,51.403903 +1.102863,51.262242 +0.598527,51.345842 +0.765035,51.348306 +1.113994,51.135885 +0.862045,51.131983 +0.379773,51.420695 +0.796969,51.413681 +1.40278,51.384826 +1.295304,51.137766 +1.292204,51.140022 +1.046924,51.058526 +0.558724,51.243039 +0.16677,51.267996 +0.179359,51.389449 +0.513829,51.270823 +0.552341,51.278353 +0.695063,51.367881 +0.326757,51.428127 +0.499689,51.375011 +0.357484,51.442046 +0.297471,51.44312 +0.304176,51.430515 +1.38797,51.346658 +1.078576,51.283671 +0.272655,51.193006 +0.863063,51.045809 +0.510739,51.333503 +1.158176,51.093835 +0.514642,51.413696 +0.507526,51.352503 +0.908984,51.311269 +0.231099,51.197907 +1.394568,51.361668 +0.571843,51.171493 +0.57758,51.342627 +0.354216,51.434467 +0.472032,51.263286 +0.364994,51.441454 +0.225045,51.439023 +0.866642,51.151955 +1.046371,51.12896 +1.383451,51.378874 +0.173101,51.403891 +0.911667,51.398653 +0.569526,51.330339 +0.331821,51.430103 +0.536958,51.289615 +1.388489,51.39044 +1.009313,51.034738 +0.508818,51.411599 +0.268146,51.135284 +0.471886,51.29367 +0.339409,51.429943 +0.237683,51.426147 +0.495516,51.435383 +1.387732,51.346736 +1.392558,51.380922 +0.3609,51.430169 +1.134324,51.08881 +0.287812,51.450252 +0.534903,51.375414 +0.876543,51.1511 +1.348361,51.370159 +0.694913,51.338168 +0.769857,51.334198 +0.505797,51.384755 +0.741061,51.34127 +1.1251,51.252754 +0.059914,51.212549 +0.480182,51.327283 +1.142223,51.091342 +1.087226,51.293508 +0.243191,51.452257 +0.22009,51.430619 +1.127435,51.371908 +0.445121,51.341727 +0.534166,51.398229 +0.066215,51.193076 +1.010256,51.07698 +0.270991,51.189163 +1.265366,51.201159 +1.049142,51.356964 +0.707803,51.350507 +1.395158,51.205818 +1.341235,51.150504 +0.759749,51.409914 +0.266657,51.27722 +0.691378,51.24223 +0.186997,51.384432 +1.065085,51.361423 +0.516441,51.414233 +0.479965,51.392671 +0.263412,51.134944 +1.331204,51.143891 +0.26738,51.142979 +0.543165,51.397692 +0.760582,51.433521 +0.855522,51.161545 +1.383614,51.378932 +0.629367,51.097488 +0.912157,51.13777 +0.286507,51.288579 +0.522445,51.265322 +0.824232,51.407981 +0.252226,51.168553 +0.534082,51.378759 +1.052961,51.269852 +0.475657,51.376241 +0.495918,51.296685 +1.074502,51.287951 +1.401041,51.389473 +0.861875,51.13616 +0.340324,51.421669 +0.540558,51.373987 +0.191172,51.448942 +0.252568,51.352325 +1.357663,51.332716 +0.541689,51.376256 +0.066286,51.273626 +0.641155,51.139135 +0.849015,51.130232 +0.521134,51.27724 +0.370504,51.416422 +0.565981,51.377894 +0.42348,51.307956 +0.350974,51.442221 +0.956249,51.289047 +0.567448,51.296478 +0.384717,51.174029 +1.190627,51.225152 +0.491327,51.359693 +1.123449,51.371204 +0.387492,51.438254 +0.593066,51.338148 +0.2728,51.135148 +0.324443,51.211586 +1.303906,51.116879 +1.259763,51.165011 +0.152607,51.30298 +0.224873,51.213971 +0.536211,51.288543 +0.555082,51.165412 +0.691432,51.347863 +0.35605,51.433216 +1.089837,51.067428 +0.578192,51.343036 +1.075505,51.259601 +0.218135,51.41222 +1.295036,51.138026 +1.126742,51.090957 +1.137391,51.101627 +0.386586,51.413703 +0.354642,51.421769 +0.518235,51.265395 +1.400989,51.336646 +0.212393,51.231124 +0.513154,51.263453 +1.088488,51.271069 +0.500585,51.349 +0.718636,51.339176 +0.278952,51.184601 +0.940181,50.985814 +0.595929,51.234008 +1.28042,51.284157 +0.530835,51.275304 +1.093655,51.270087 +1.149012,51.310867 +1.139623,51.234511 +1.06493,51.350939 +0.626152,51.359814 +0.867964,51.150897 +0.561026,51.393651 +0.538059,51.229972 +1.14579,51.078248 +0.506284,51.322374 +1.102625,51.262545 +1.330637,51.144743 +0.443886,51.332822 +1.16556,51.108881 +0.793913,51.20885 +0.508903,51.045588 +0.71287,51.355804 +1.048136,51.30091 +0.359347,51.437709 +0.521337,51.278324 +0.235049,51.441459 +1.069293,51.280398 +0.369374,51.432947 +1.03453,51.361922 +0.504171,51.379196 +1.124411,51.301749 +0.952669,51.337401 +0.447561,51.23762 +0.389437,51.441066 +0.831927,51.301359 +0.290447,51.15638 +0.563529,51.168366 +0.387654,51.334801 +0.06985,51.2668 +0.867515,51.148263 +1.409908,51.367213 +0.78126,51.216284 +0.399196,51.419696 +1.276703,51.147267 +0.875338,51.117913 +1.29176,51.177553 +0.277569,51.203847 +0.330826,51.445025 +0.446196,51.299084 +0.575071,51.330406 +0.863348,51.122534 +1.358071,51.375188 +0.460933,51.187775 +0.705095,51.350624 +0.187218,51.414977 +0.71303,51.346366 +1.066628,51.359359 +0.872938,51.143022 +0.32767,51.157452 +0.52749,51.39214 +0.742137,51.378525 +0.49611,51.394792 +0.506484,51.388644 +1.044584,51.282806 +0.405698,51.174724 +0.73781,51.331543 +0.508623,51.044362 +0.767345,51.401145 +1.171839,51.092691 +0.540597,51.25134 +1.164664,51.083855 +0.249448,51.213169 +0.255325,51.183404 +0.539523,51.272148 +0.591988,51.276789 +1.139416,51.085966 +0.455394,51.371397 +1.080108,51.278917 +0.529331,51.379132 +0.236474,51.452952 +0.771211,51.409193 +0.549092,51.347577 +0.745124,51.341499 +0.187951,51.170294 +0.669168,51.448788 +0.240707,51.451792 +0.603309,51.379274 +0.259865,51.134896 +0.333675,51.444465 +0.253875,51.211159 +0.290152,51.156205 +0.278832,51.438439 +0.638835,51.366031 +0.629903,51.338774 +0.503876,51.390903 +0.547576,51.382109 +0.42482,51.309143 +1.303403,51.124845 +0.77173,51.340008 +1.1195,51.338272 +0.502718,51.333333 +1.120738,51.254382 +1.290168,51.120847 +1.309839,51.126498 +0.525364,51.27044 +0.592159,51.224289 +1.399738,51.35524 +0.587764,51.267457 +1.118569,51.306591 +0.254968,51.460493 +1.137675,51.237262 +1.339777,51.384491 +0.881043,51.157906 +0.529973,51.380872 +0.551335,51.288664 +0.770744,51.297229 +0.545338,51.382697 +0.499623,51.368519 +0.999261,51.253737 +0.574411,51.379589 +1.119513,51.36298 +0.500311,51.39249 +0.222728,51.443761 +0.507988,51.405906 +1.307416,51.130399 +0.892937,51.315786 +1.345697,51.3488 +0.641306,51.138529 +1.017998,51.350198 +0.5795,51.065115 +0.25877,51.132381 +0.380419,51.258297 +0.066172,51.205227 +1.217341,51.174408 +1.183635,51.320499 +0.238227,51.424914 +1.001204,51.101031 +1.00312,51.33574 +0.246976,51.427318 +0.543063,51.379257 +0.620426,51.360923 +0.235196,51.437985 +0.550207,51.396343 +0.485415,51.273795 +0.551367,51.385669 +1.187799,51.09276 +0.361551,51.433852 +0.240777,51.454111 +0.706458,51.311856 +0.492122,51.394688 +1.228541,51.136671 +1.10989,51.116943 +0.29762,51.140131 +0.525215,51.380057 +0.554478,51.32305 +0.262075,51.145025 +1.058953,51.26983 +0.496507,51.395755 +1.061686,51.271252 +1.385424,51.347379 +0.625031,51.448913 +1.290145,51.140619 +1.325494,51.136668 +0.235708,51.422821 +1.087654,51.260351 +0.582071,51.337968 +0.731373,51.339176 +0.186413,51.43368 +0.556357,51.029782 +1.102317,51.262859 +1.394646,51.362341 +0.757367,51.442725 +1.179525,51.200017 +1.416569,51.362674 +1.157469,51.112599 +0.772089,51.421323 +0.77275,51.440078 +1.113623,51.255795 +0.743744,51.282548 +0.466554,51.398566 +0.172616,51.397587 +0.259574,51.132446 +0.364576,51.431983 +0.531034,51.378987 +0.202591,51.385633 +0.532681,51.398414 +0.194436,51.343149 +0.30314,51.186106 +0.606451,51.268841 +0.768429,51.407658 +0.176964,51.251035 +1.007997,51.287854 +0.171553,51.282189 +0.692569,51.304288 +1.185778,51.111561 +1.123022,51.072005 +0.488753,51.376593 +1.134807,51.180743 +0.88355,51.217558 +0.675062,51.241579 +0.322035,51.312207 +0.524512,51.382959 +0.964826,51.043558 +0.857236,51.155261 +1.294612,51.1399 +1.414777,51.364283 +1.169734,51.10661 +0.324059,51.244896 +0.195477,51.285286 +0.193016,51.244449 +0.322456,51.448267 +1.272777,51.3507 +1.305036,51.375168 +1.291808,51.133853 +1.18155,51.092463 +0.489696,51.374909 +0.368757,51.441315 +0.311141,51.439389 +0.44766,51.31016 +0.263308,51.130773 +0.259435,51.135165 +0.239247,51.451082 +0.322788,51.373391 +1.03123,51.261881 +0.442974,51.331069 +1.356005,51.165615 +0.430831,51.30695 +1.402022,51.338379 +0.583301,51.429227 +0.592964,51.338123 +0.498869,51.048969 +0.510033,51.316376 +0.513024,51.230063 +1.231428,51.36016 +0.50295,51.334686 +1.403688,51.38059 +0.26017,51.141437 +1.318399,51.125257 +1.012042,51.088214 +0.150905,51.28069 +1.054709,51.076609 +0.865678,51.134313 +0.418642,51.28962 +1.412244,51.361334 +0.282443,51.428611 +0.732614,51.333247 +0.790749,51.32996 +1.070288,51.15289 +0.822511,51.137235 +1.395876,51.357996 +0.966785,50.979088 +1.093445,51.287434 +1.409597,51.385824 +0.421799,51.298098 +0.440569,51.153387 +0.232749,51.440316 +1.418138,51.332827 +1.214958,51.273931 +0.791494,51.415655 +0.721016,51.172155 +1.278424,51.106785 +0.771034,51.421015 +0.527836,51.264549 +0.48184,51.399943 +0.543233,51.398383 +1.411137,51.333301 +0.264567,51.115594 +0.167555,51.400324 +0.546951,51.375521 +0.640468,51.144124 +0.481793,51.149291 +0.73144,51.341027 +0.13348,51.315588 +0.900623,51.228513 +0.186691,51.379824 +1.138768,51.361539 +0.869313,51.145899 +0.39728,51.224226 +1.082224,51.24711 +0.756516,51.431944 +1.045733,51.096245 +0.506828,51.324197 +0.258516,51.159087 +0.213054,51.44666 +0.966316,50.978209 +0.268196,51.188488 +0.705299,51.33872 +1.418163,51.33297 +1.303887,51.15323 +0.754805,51.336747 +0.888505,51.300291 +0.28834,51.382505 +0.578871,51.44304 +0.732053,51.339016 +0.524328,51.351935 +0.743849,51.427528 +0.320481,51.139878 +0.550684,51.386574 +0.246331,51.452008 +0.243635,51.283221 +0.501642,51.39185 +0.248845,51.427597 +1.402724,51.217346 +1.289103,51.141053 +0.507547,51.387056 +0.903009,51.313001 +1.40561,51.369902 +0.578779,51.3586 +0.757991,51.178232 +0.265817,51.135599 +0.213568,51.449861 +1.102766,51.26229 +0.340323,51.439386 +0.243289,51.452498 +0.584938,51.36798 +0.978516,51.321465 +0.239063,51.427893 +0.309099,51.444547 +0.269285,51.347371 +0.741449,51.339111 +0.342085,51.438667 +0.873528,51.137565 +1.410951,51.329628 +0.234136,51.139059 +0.559777,51.242639 +0.357625,51.183401 +0.770235,51.431818 +0.257066,51.427439 +1.170729,51.076683 +0.258957,51.151722 +1.248697,51.178938 +0.591349,51.213685 +0.507164,51.26717 +0.638248,51.248774 +1.331369,51.143787 +1.302429,51.124612 +1.411422,51.335389 +0.549303,51.338695 +0.5477,51.109577 +0.553054,51.303871 +1.204423,51.112553 +0.566634,51.296028 +0.462132,51.254258 +0.754529,51.414695 +0.379704,51.439573 +1.125251,51.09088 +0.527095,51.417826 +0.580825,51.368421 +0.192351,51.278357 +1.413735,51.385227 +1.404219,51.350189 +0.191664,51.385847 +0.074688,51.272039 +0.880211,51.149372 +0.365604,51.432097 +1.433043,51.353764 +1.21737,51.174407 +0.762959,51.279398 +0.224357,51.443227 +1.056438,51.197138 +0.393505,51.436576 +0.31162,51.433202 +0.733707,51.365843 +1.071513,51.288506 +0.805561,51.42058 +0.94149,51.321808 +-0.856667,51.023727 +0.54886,50.874797 +0.735959,50.953497 +-0.627754,50.827448 +-0.278972,50.991925 +-0.36217,50.834824 +0.164505,51.060858 +-0.294104,51.074693 +-0.249884,50.842241 +0.23908,50.829321 +-0.39635,50.829939 +-0.379206,50.808334 +-0.319809,51.066136 +-0.79985,50.833338 +-0.498347,51.054447 +0.291538,50.97904 +0.542815,50.873427 +-0.213833,50.832611 +0.560188,50.854276 +-0.55959,50.812049 +0.250259,50.905221 +0.434926,50.873462 +-0.379786,51.083583 +0.549967,50.878155 +-0.569819,50.845674 +-0.18644,51.119252 +-0.130796,50.822002 +-0.1411,50.924287 +-0.728528,50.852907 +0.525954,50.92989 +-0.530892,50.812833 +0.002496,51.136556 +0.183804,51.049428 +-0.268159,51.002592 +0.05179,50.790514 +0.089805,50.903447 +0.278707,50.796769 +-0.143584,50.85684 +-0.377758,50.817765 +-0.109987,50.816945 +-0.111599,51.000247 +-0.379848,50.825888 +0.195013,50.822622 +0.285238,50.977526 +-0.405841,50.828971 +0.546203,50.891261 +-0.75558,50.828774 +0.195721,50.863108 +0.170505,50.964507 +-0.883023,50.889209 +-0.611237,50.871589 +-0.159383,51.124144 +-0.641089,50.855717 +0.241279,51.115063 +-0.196774,50.986575 +-0.740684,50.984855 +-0.154011,50.919842 +-0.201461,50.847818 +-0.100792,50.997185 +0.475162,50.854582 +-0.172693,50.836597 +-0.725548,50.786524 +0.56708,50.857659 +-0.141283,51.012828 +-0.152675,50.824887 +-0.16699,50.833153 +-0.78449,50.836974 +-0.141619,50.824765 +-0.116624,50.816423 +-0.413548,50.835758 +0.414213,50.904778 +-0.112476,50.831978 +-0.322568,50.825547 +-0.217777,50.833076 +0.472271,50.855786 +-0.022944,50.796184 +-0.310446,51.067323 +-0.153968,50.826661 +0.283638,50.767802 +0.301619,50.781335 +-0.118178,50.844517 +-0.328684,50.837164 +-0.141049,50.961257 +0.581415,50.859403 +-0.198336,50.989638 +-0.017153,50.866928 +-0.01429,51.128479 +-0.00721,51.129266 +-0.279609,50.84584 +0.075207,51.011989 +0.2506,50.857412 +-0.011524,50.893669 +-0.106001,51.105071 +-0.676308,50.791021 +0.10102,50.771425 +0.56379,50.887826 +-0.568059,50.808026 +-0.668243,50.820193 +-0.021493,51.012345 +-0.913865,50.983725 +-0.32338,50.825459 +-0.403108,50.914837 +-0.119465,50.828044 +0.10115,50.769893 +0.120832,50.780779 +0.450423,50.898726 +-0.404664,51.070517 +-0.668574,50.837004 +-0.170841,50.831298 +-0.167781,50.863374 +0.041702,50.859195 +0.113746,50.850106 +-0.147056,50.830167 +-0.767666,50.826528 +0.797699,50.935169 +-0.278809,50.832841 +-0.221586,50.843477 +-0.159353,51.141428 +-0.670073,50.815717 +-0.065226,51.093936 +-0.378564,50.817867 +0.312839,50.885857 +0.082267,50.93532 +-0.125501,50.837944 +-0.778203,50.840614 +-0.243564,51.063558 +0.242437,50.93247 +-0.187338,50.84313 +-0.183446,51.143855 +0.471156,50.852176 +-0.708678,50.789693 +0.255247,50.77993 +-0.686552,50.874502 +-0.420031,50.841026 +0.002297,51.075774 +-0.404896,50.825019 +-0.777452,50.907369 +-0.100302,50.995936 +-0.150288,50.958463 +0.555697,50.897655 +0.000722,50.798092 +0.468077,50.845801 +-0.134991,50.826107 +0.274503,50.880243 +0.583122,50.862774 +-0.81498,50.901452 +-0.203791,50.839319 +-0.772545,50.837533 +-0.133561,50.954429 +0.49063,50.959448 +-0.354668,50.816759 +0.58097,50.882986 +-0.10958,50.853039 +-0.362999,50.818432 +-0.199248,50.838143 +-0.115197,51.140617 +0.278907,50.762085 +-0.574263,50.808425 +-0.688803,50.793698 +-0.45408,50.917825 +-0.378562,51.064268 +0.017447,50.788064 +0.306906,50.786142 +-0.203048,50.83241 +0.288688,50.794254 +-0.357391,51.108792 +-0.104293,51.002198 +0.601654,50.868631 +-0.618295,50.802498 +0.550722,50.858396 +-0.13163,50.819246 +0.160085,50.837089 +-0.428292,50.912597 +-0.297559,51.069636 +-0.117404,50.817506 +-0.129007,50.832658 +-0.691371,50.801848 +-0.537066,50.807407 +-0.199458,51.110046 +-0.258073,50.989519 +-0.030187,50.797746 +-0.540477,50.84005 +-0.437968,50.91422 +-0.135117,50.850751 +0.001981,51.075735 +-0.505751,50.962239 +-0.773739,50.734468 +-0.340619,50.99225 +0.555805,50.867423 +0.598451,50.865743 +-0.100401,50.995605 +-0.170982,50.840032 +-0.104484,50.82209 +-0.430266,50.839923 +-0.307345,50.839329 +-0.131766,50.830786 +0.037181,51.06035 +-0.196922,50.853917 +-0.308399,51.073759 +0.405652,50.889359 +-0.31669,51.049436 +0.54445,50.876314 +-0.613751,50.972168 +0.442607,51.031596 +-0.319071,51.075469 +-0.174763,50.83412 +-0.379435,50.808301 +-0.505019,50.810481 +0.156915,50.809006 +0.551522,50.870188 +-0.190534,51.102237 +-0.55309,50.853814 +-0.285706,50.84458 +-0.475718,50.992247 +-0.308687,51.071722 +-0.398155,50.849389 +-0.076041,51.091443 +0.289338,50.772412 +-0.447715,50.838844 +-0.157368,51.108329 +0.116487,50.775354 +0.052313,50.79501 +0.142172,50.969347 +-0.117259,50.82004 +-0.727579,50.77964 +-0.66551,50.799019 +-0.08494,51.099341 +-0.048244,51.105857 +-0.293304,51.074709 +0.484481,50.852396 +-0.429665,51.046233 +-0.373396,50.824827 +-0.677993,50.784574 +-0.807387,50.839027 +-0.135022,51.115853 +-0.183014,50.862659 +-0.353787,51.067465 +-0.111977,50.843994 +-0.417266,50.835836 +0.238353,50.828949 +-0.160605,50.901276 +-0.784686,50.827749 +0.237593,50.960821 +-0.299931,50.874907 +-0.664692,50.84214 +-0.41248,50.80862 +-0.457977,50.918704 +0.191204,51.045692 +-0.21025,50.830875 +0.038229,50.816698 +-0.398899,50.835136 +0.575835,50.855613 +-0.323764,51.092569 +-0.113368,50.847893 +-0.733876,50.824853 +-0.419919,50.963655 +-0.58169,50.857033 +-0.398744,50.838839 +0.473762,50.838863 +0.44162,50.915306 +-0.822306,50.858513 +0.29376,50.773225 +-0.148143,50.829627 +-0.122274,50.820318 +0.582337,50.855766 +0.232303,50.879223 +0.167566,50.908378 +-0.126376,50.834882 +-0.280827,50.845552 +-0.018306,50.948609 +-0.399303,50.806309 +-0.542732,50.82693 +-0.214651,51.100603 +0.468251,50.845599 +-0.143538,50.823636 +0.494567,50.910382 +-0.163875,51.12256 +-0.442578,50.840403 +-0.172216,51.111098 +-0.348798,51.016728 +-0.341492,51.065654 +-0.183744,50.833262 +-0.116912,50.845612 +-0.192713,50.834157 +0.534838,50.894341 +-0.491728,50.956384 +0.561336,50.875495 +-0.674494,50.7819 +0.033391,51.097927 +-0.119068,51.046386 +-0.179441,50.839086 +-0.157402,50.868912 +-0.199646,51.121749 +-0.170928,51.113326 +-0.165202,51.146412 +0.274807,50.821363 +0.528397,50.961793 +0.545161,50.876056 +0.491635,50.913269 +0.470248,51.018162 +-0.089758,51.028491 +0.088345,51.022952 +-0.574423,50.967144 +0.600294,50.867699 +0.484873,50.845606 +-0.204266,51.106883 +-0.105965,50.814956 +-0.151443,50.844581 +-0.30071,51.052577 +0.55216,50.875355 +-0.18375,50.8331 +0.194803,50.822671 +-0.279671,50.934451 +-0.503084,50.815969 +0.291727,50.771088 +-0.394487,50.818024 +0.00482,50.840786 +0.483673,50.952635 +-0.758401,50.988822 +-0.203164,51.125005 +-0.553648,50.816463 +0.261102,50.86185 +-0.133344,50.83288 +-0.115319,50.819217 +-0.117715,50.81895 +0.251271,50.852759 +-0.100257,50.99563 +-0.144597,50.833096 +-0.135156,50.822693 +0.577701,50.909007 +0.457492,50.841177 +-0.489672,50.81853 +-0.293491,51.085548 +0.0466,50.903223 +0.087981,50.944032 +-0.49704,50.803931 +-0.373983,50.826337 +0.467903,50.840615 +-0.097068,50.960351 +-0.167432,51.124414 +-0.053634,51.03088 +0.165964,51.049922 +-0.775441,50.840836 +0.352392,50.827091 +-0.279639,50.975423 +-0.2637,50.829731 +-0.18228,50.835847 +-0.163803,51.122577 +0.170943,51.05358 +0.10606,51.081226 +-0.099634,50.958549 +-0.400668,51.054365 +-0.123756,50.83859 +0.292443,50.799369 +-0.802139,50.833775 +0.117774,50.848702 +0.243232,50.850449 +-0.11356,50.955735 +0.162441,50.826612 +-0.728097,50.835294 +0.601261,50.976876 +-0.667151,50.806682 +0.57652,50.854393 +-0.311057,51.063096 +-0.198999,51.122225 +-0.046587,50.976974 +-0.253424,50.835324 +-0.184838,50.833252 +0.086092,50.853769 +-0.141646,50.824802 +0.436709,50.932156 +-0.100113,50.995664 +-0.334888,50.826883 +-0.147017,51.133886 +0.266977,50.786934 +-0.132461,50.822272 +-0.284938,51.085153 +0.445892,50.8687 +-0.912567,50.857446 +-0.673549,50.791224 +0.004507,50.868942 +-0.650998,50.797872 +-0.173298,51.130378 +0.548636,50.851687 +0.594745,50.886782 +-0.80714,50.78352 +-0.249862,50.84171 +-0.178869,51.114116 +-0.414806,50.840983 +0.259567,50.789497 +0.579498,50.855829 +-0.406288,50.852117 +-0.552822,50.853738 +-0.393682,50.841476 +-0.370595,50.809455 +-0.257282,51.08817 +0.241826,50.819052 +-0.013944,51.129876 +-0.145682,50.869132 +-0.401379,50.829459 +-0.301939,50.992423 +-0.817274,50.846241 +-0.330349,51.065145 +-0.181228,50.902346 +0.295843,50.801263 +0.537156,50.980365 +0.528331,50.95271 +0.470261,51.019484 +0.076774,50.930228 +0.284997,50.762793 +-0.214951,51.094294 +-0.16405,51.159605 +-0.132224,50.830335 +-0.75515,50.829974 +0.516031,50.871525 +-0.412539,50.83579 +-0.616721,50.807264 +-0.152059,51.000661 +0.017395,50.787516 +0.152606,50.775161 +-0.208551,51.117992 +-0.126526,50.834677 +-0.12568,50.83559 +-0.139416,51.120653 +0.554684,50.871351 +-0.576073,50.808178 +-0.206117,51.109627 +-0.201912,50.900742 +0.133959,50.887997 +-0.488304,50.818234 +-0.163188,51.147091 +0.082616,50.964453 +0.559262,50.875514 +-0.202185,51.053738 +-0.164391,50.887081 +-0.436349,51.056611 +-0.321059,51.07458 +-0.132935,50.843135 +-0.11953,50.843037 +-0.131559,50.819244 +0.243608,50.865093 +-0.297449,50.863053 +-0.500794,51.04321 +-0.206351,50.832173 +-0.423241,50.812364 +0.568751,50.862713 +0.01282,50.875184 +-0.787921,50.763654 +-0.085469,51.103478 +-0.013727,50.919437 +0.291885,50.798697 +0.313094,50.795085 +-0.358899,50.819966 +-0.702601,50.855454 +-0.44714,50.817208 +-0.183376,50.829569 +-0.225029,51.135806 +-0.002402,51.032624 +-0.147981,50.821143 +-0.799524,50.833317 +0.242986,50.819839 +-0.313465,50.83779 +-0.507196,50.810329 +-0.704666,51.019722 +-0.911828,50.845236 +-0.817784,50.836174 +-0.840302,51.045831 +-0.190248,51.113591 +0.556236,50.892948 +0.45745,50.841195 +-0.771388,50.837269 +0.218466,51.000246 +0.118929,50.948097 +-0.115704,50.976652 +-0.147422,51.115546 +-0.172029,50.833232 +0.218813,50.979428 +0.292909,50.771191 +0.553735,50.872964 +-0.195848,51.114703 +0.128355,51.039695 +-0.171761,50.838992 +-0.199197,51.122264 +0.55118,50.88214 +0.382018,50.997114 +-0.340489,50.991879 +-0.778773,50.74578 +-0.141952,50.827109 +-0.36094,50.835085 +-0.20178,50.845817 +-0.181733,50.838959 +-0.296446,50.825834 +-0.821509,50.923361 +-0.109681,50.863545 +-0.165156,50.844797 +-0.510214,50.814064 +-0.597507,50.805254 +-0.36598,51.06331 +-0.417843,51.085894 +-0.537614,50.805328 +0.282568,50.798259 +-0.000965,50.79116 +-0.101873,50.85741 +0.28143,50.767603 +-0.318844,50.83159 +0.246727,50.912808 +-0.381607,50.830463 +-0.165061,50.842152 +0.246995,50.912461 +-0.127898,50.821686 +0.238413,50.826051 +0.210916,50.859592 +-0.133608,50.836949 +0.034605,50.790149 +-0.642183,50.856719 +-0.449352,51.012926 +0.033583,51.095487 +-0.374653,50.814808 +-0.729782,50.783684 +0.165304,50.837244 +-0.591735,50.805616 +-0.143187,50.859667 +-0.387172,50.937127 +0.342932,50.82193 +-0.18731,50.826249 +-0.200627,50.850674 +-0.144462,50.821465 +-0.739941,50.985468 +-0.678817,50.78354 +-0.351977,50.81699 +-0.131395,50.915777 +-0.348632,50.864311 +-0.298452,51.069415 +-0.263503,51.023837 +0.456758,50.852084 +0.592183,50.856259 +-0.202959,50.851717 +-0.425466,50.823869 +-0.451035,50.917398 +0.242551,50.847216 +-0.153506,50.867871 +-0.371217,50.833997 +-0.452672,51.085749 +-0.544037,50.847055 +0.243392,50.737033 +-0.553371,50.849779 +-0.251822,50.991288 +-0.349304,51.046637 +-0.783103,50.867338 +-0.486441,50.955228 +-0.476624,50.991144 +0.530303,50.962543 +-0.373211,50.824024 +0.528912,50.948731 +-0.120542,50.834114 +-0.273878,51.121439 +0.297823,50.776823 +-0.015558,51.040151 +-0.511567,50.957143 +-0.034799,50.86604 +-0.145608,50.831952 +-0.667226,50.804039 +-0.255438,50.841874 +-0.674414,50.786233 +-0.669427,50.811006 +-0.227398,51.082883 +-0.348546,51.064738 +-0.126087,50.835363 +-0.788977,50.732639 +-0.082537,50.864954 +-0.200412,51.118218 +-0.178076,50.841313 +-0.22638,50.851131 +0.287883,50.765282 +-0.122303,50.826318 +0.555552,50.867734 +0.547744,50.880929 +-0.486906,50.95536 +-0.133229,50.831853 +-0.746664,50.888625 +-0.396336,50.846513 +0.238858,50.827932 +0.482788,50.844868 +0.559263,50.862814 +-0.173089,50.969983 +-0.165132,51.136294 +-0.136618,50.83161 +-0.530152,50.815162 +-0.173674,51.109979 +-0.404397,50.830067 +-0.170367,50.832522 +-0.640951,50.831641 +-0.278716,50.850017 +-0.307919,50.839176 +-0.133308,50.824183 +0.422649,51.006361 +-0.175444,50.838888 +-0.80182,50.826245 +-0.871531,50.769232 +-0.642563,51.046463 +0.24836,51.030405 +-0.136556,51.149457 +-0.141395,50.82826 +-0.194588,51.086913 +0.269321,50.784073 +-0.166301,50.83298 +-0.662081,50.842065 +-0.131767,50.827909 +-0.794456,50.792419 +0.292774,50.815687 +0.558242,50.889072 +-0.141605,50.859803 +-0.128755,50.832933 +-0.338551,50.816072 +-0.429991,50.811726 +0.267898,50.877727 +0.010492,50.974602 +-0.529115,50.82014 +0.049756,50.793328 +0.296946,50.80465 +-0.203261,51.081228 +-0.32826,51.06926 +0.465575,50.90231 +-0.063918,50.815938 +0.549882,50.860708 +0.044408,50.793674 +-0.4215,50.840848 +-0.221502,50.838952 +0.269025,50.772378 +0.347226,50.844131 +-0.274104,50.831783 +-0.139314,51.121065 +0.21633,50.881749 +-0.125736,50.835627 +0.012689,50.881698 +-0.798282,50.832998 +0.130795,50.844193 +-0.109791,50.863627 +-0.460413,50.938862 +0.521014,50.850353 +-0.109292,50.862981 +-0.214641,50.838595 +0.0944,50.952236 +-0.070984,50.806747 +-0.31536,51.068005 +-0.22343,50.842785 +-0.358459,50.816326 +0.199095,50.886788 +-0.103408,50.830419 +0.26781,50.772473 +0.452651,50.865068 +-0.035699,51.118048 +-0.13851,50.825471 +0.282623,50.797044 +-0.681895,50.802721 +0.274111,50.800915 +0.575821,50.855623 +0.153925,51.049389 +0.582813,50.862583 +-0.337909,50.824174 +-0.184033,50.834588 +-0.139874,50.82436 +-0.16678,51.134728 +-0.373533,50.834794 +-0.368823,50.815087 +-0.196975,51.120988 +0.256025,50.862056 +-0.164946,50.83277 +-0.730486,50.801165 +-0.378274,50.815165 +-0.206795,51.127542 +-0.213744,50.830487 +0.465639,50.845637 +-0.125016,50.836569 +-0.300841,50.879579 +-0.228479,50.85798 +0.568381,50.866841 +-0.264683,50.83962 +-0.023043,50.866795 +-0.502357,50.965928 +0.528464,50.944154 +0.27728,50.812959 +-0.316193,51.081228 +-0.344597,51.044232 +0.256987,50.967832 +0.471633,50.841319 +-0.704791,50.810217 +0.484379,50.917813 +0.047373,50.793352 +0.444178,50.842455 +-0.651126,50.8555 +0.559509,50.856674 +-0.140872,50.957127 +-0.790401,50.785164 +-0.09638,51.011665 +-0.244101,50.838152 +-0.806922,50.804355 +-0.15485,50.852909 +-0.132093,50.819388 +-0.234964,50.834507 +0.288528,50.76919 +-0.13401,50.829006 +-0.490411,50.812326 +0.080705,50.969496 +-0.138882,50.833598 +-0.136527,50.822849 +-0.155506,50.867983 +-0.442138,51.086076 +0.000167,51.123691 +-0.132145,50.844409 +-0.262168,51.01682 +-0.43912,50.983086 +0.197815,50.762832 +-0.671983,50.855479 +-0.140376,51.122377 +0.288799,50.79391 +-0.690579,50.797171 +0.306223,50.786101 +-0.194307,51.11503 +-0.73488,50.990809 +-0.687821,50.781645 +0.593543,50.858234 +0.1612,51.054867 +0.582229,50.857424 +0.482435,50.918448 +-0.777643,50.838656 +-0.187756,51.116304 +-0.393797,50.830272 +-0.284702,50.845249 +-0.146393,50.913192 +-0.488644,50.818274 +0.573334,50.865418 +0.469591,50.840579 +-0.185642,51.12138 +-0.259789,51.09328 +-0.136487,50.819575 +0.29518,50.803956 +-0.904013,50.844758 +-0.219196,50.831254 +0.477124,50.847624 +-0.143117,50.837839 +0.224756,50.973514 +0.256466,50.966781 +0.541798,50.925517 +-0.089469,50.811827 +-0.560113,50.851814 +-0.126061,51.016272 +-0.12237,50.820401 +-0.444754,50.838184 +-0.430634,50.82259 +0.406531,50.844892 +-0.534077,50.820814 +-0.154867,50.825119 +-0.196515,50.834629 +-0.13218,50.83037 +-0.136806,50.830462 +-0.124324,50.957168 +0.330994,50.799765 +0.190539,50.763104 +-0.615404,50.821106 +-0.239306,50.841003 +-0.163319,50.826836 +-0.553245,50.852934 +0.296527,50.774987 +-0.170178,51.126517 +-0.126035,50.831702 +0.292597,50.76974 +-0.293947,51.0747 +-0.129688,50.955158 +-0.591653,50.810678 +-0.152621,50.825174 +0.267298,50.864482 +-0.142098,50.823433 +-0.758599,50.843419 +-0.869368,50.857755 +-0.158364,50.904703 +0.57658,50.857531 +-0.249252,50.842438 +-0.167615,50.827353 +0.299015,50.77278 +0.14536,50.964333 +-0.725264,50.82252 +-0.588947,50.805807 +-0.792822,50.836008 +-0.181582,51.098492 +-0.122442,51.112846 +-0.247439,50.949134 +-0.864747,50.966657 +-0.415727,50.819223 +0.103622,50.772817 +0.441572,51.055046 +0.101537,50.983576 +-0.169988,51.126253 +0.589564,50.863359 +-0.340638,50.992511 +-0.301391,50.992594 +-0.751357,50.815158 +0.556266,50.877396 +0.261992,51.106471 +-0.09216,50.992215 +-0.114885,50.868746 +0.17923,50.892836 +-0.175235,50.857708 +-0.096296,50.999792 +0.574054,50.884947 +-0.634842,50.94506 +-0.17489,50.838889 +0.290717,50.769579 +-0.775262,50.812426 +0.532769,50.924876 +-0.388644,50.809616 +0.288226,50.771715 +-0.111519,50.862711 +0.55563,50.867849 +-0.110419,50.85057 +-0.412621,50.840899 +-0.103331,51.00622 +-0.181404,50.832821 +0.241237,50.881435 +-0.284713,50.845708 +0.555493,50.85652 +-0.272726,50.99051 +-0.674925,50.785726 +0.197157,51.089469 +-0.755614,50.841895 +-0.748272,50.881151 +-0.134549,50.822611 +0.541198,50.867238 +-0.153426,50.851546 +-0.698035,50.789782 +-0.114916,50.846497 +0.237843,50.951193 +-0.245429,50.888669 +-0.0822,50.964883 +-0.396641,50.906807 +0.02922,51.088791 +-0.617009,50.802816 +-0.042346,50.800865 +-0.206916,50.854485 +0.471731,51.015208 +0.546418,50.875642 +-0.537139,50.842787 +-0.352247,50.812938 +-0.139233,50.923646 +0.000854,50.793881 +0.581188,50.856314 +-0.392039,50.830599 +0.434006,50.845438 +-0.103056,50.997231 +-0.783835,50.859441 +-0.122276,50.840095 +0.2727,50.808678 +-0.856392,50.849778 +-0.1061,51.000176 +-0.343255,50.973843 +0.282442,50.802668 +-0.732805,50.793609 +-0.500365,51.041892 +-0.009528,50.796343 +-0.13487,50.843049 +-0.171105,50.827812 +-0.114547,50.836976 +-0.433226,50.84017 +0.553705,50.872946 +-0.166028,50.864228 +-0.285597,51.038363 +-0.456679,50.838333 +0.121498,51.070074 +-0.199199,51.119287 +0.233566,50.821198 +-0.104556,50.822056 +-0.141735,50.827573 +-0.474762,51.092649 +0.477317,51.000447 +0.448525,51.049424 +-0.164248,50.82667 +0.114648,51.123951 +-0.227319,50.84735 +-0.682557,50.783205 +-0.185793,50.849635 +-0.135471,50.97643 +-0.151347,50.842322 +0.233395,50.966819 +-0.178894,50.940279 +-0.206134,51.110302 +0.008098,50.839714 +-0.829017,50.793634 +-0.542151,50.846942 +-0.188356,51.11447 +-0.162806,50.865931 +0.218666,50.738351 +0.560094,50.855942 +-0.134991,51.088235 +0.099508,50.976175 +-0.065195,50.833146 +-0.133258,50.856388 +-0.757273,50.830249 +-0.313953,50.822293 +0.053068,50.853995 +0.219982,51.003931 +-0.187841,51.043975 +-0.135115,50.83298 +-0.172359,50.831321 +-0.329924,50.83228 +-0.149864,50.848936 +-0.186212,51.130912 +0.373673,50.844621 +0.628786,50.909513 +-0.009177,50.857673 +-0.31827,50.837284 +0.641743,50.992292 +-0.108442,51.006384 +-0.120305,50.833984 +-0.130341,50.820241 +-0.193357,50.95751 +-0.133582,50.837956 +0.575225,50.854089 +-0.141383,50.957171 +-0.150755,50.824623 +-0.130838,50.82203 +-0.311243,50.989698 +0.090777,51.030742 +-0.148151,50.83085 +-0.397551,51.095456 +-0.271074,50.835002 +-0.186729,51.134859 +-0.129467,50.821873 +0.19905,50.864709 +0.277036,50.813189 +-0.351527,50.966684 +0.079861,51.006393 +-0.668539,50.834738 +-0.191685,51.108254 +-0.471227,50.920299 +-0.022191,51.020388 +-0.226662,50.857934 +-0.167077,50.863939 +-0.164698,50.829681 +-0.169922,51.126117 +0.176442,50.895577 +-0.754009,50.835493 +-0.771988,50.837113 +-0.871729,50.841744 +-0.153233,50.857515 +0.349316,51.084369 +0.314527,50.79279 +-0.19924,51.122264 +0.159593,51.056515 +-0.199622,50.828436 +-0.297142,51.069702 +0.28267,50.800047 +-0.155099,50.82247 +-0.786825,50.845497 +-0.434459,50.93144 +0.146476,50.965059 +0.099207,50.975496 +0.053434,50.983181 +-0.133831,50.870166 +-0.034714,50.972395 +-0.606441,50.826971 +-0.165142,50.840453 +-0.406205,50.910796 +0.626946,50.889219 +-0.564537,50.859027 +0.641793,50.992183 +-0.61437,50.996834 +-0.619347,50.823617 +0.548052,50.891256 +0.313387,50.794693 +0.275804,50.821137 +0.445818,51.054652 +-0.078135,51.141839 +-0.506062,51.023116 +-0.184944,51.125335 +-0.218012,50.850032 +-0.684283,50.790967 +0.099402,50.773298 +-0.500867,50.819592 +0.546449,50.908785 +-0.143006,50.820228 +-0.107166,50.903866 +-0.306211,51.073862 +-0.186463,50.833457 +-0.358942,51.061746 +-0.07338,51.089493 +0.562494,50.852552 +0.663826,50.875637 +0.666884,50.915233 +-0.168597,51.125296 +-0.288235,50.829041 +-0.415386,51.07212 +0.053113,50.800644 +-4.9E-05,51.123649 +0.055978,50.796061 +0.297173,50.883307 +-0.551914,50.811927 +-0.194453,51.100652 +0.306996,50.785942 +-0.106747,50.817387 +-0.411568,50.827566 +-0.116876,50.816157 +-0.31422,50.880285 +0.764058,50.9442 +0.160906,51.05561 +0.167211,50.908709 +0.085363,50.960923 +-0.142753,51.132946 +-0.009237,51.074793 +-0.21407,51.100108 +0.469441,50.844459 +0.594593,50.872287 +-0.187396,50.843086 +-0.179626,50.848576 +0.735634,50.955232 +0.460482,50.983984 +0.050715,50.792214 +-0.130614,50.956208 +0.602969,50.875905 +-0.675512,50.785517 +-0.457371,50.918534 +0.124796,51.132698 +0.296145,50.781956 +0.575036,50.914076 +-0.198155,50.976659 +-0.094265,50.935241 +-0.680581,50.78839 +-0.541618,50.821206 +-0.175257,51.108979 +-0.385932,51.091609 +-0.122448,50.824476 +0.60023,50.876766 +-0.378499,50.811552 +0.021275,50.877097 +-0.780317,50.833064 +0.241114,50.88124 +-0.155162,50.869129 +-0.666889,50.802929 +-0.444986,50.82137 +-0.274158,50.946528 +0.558063,50.867112 +0.560734,50.883172 +0.714703,50.925967 +-0.00932,50.886338 +0.154392,50.775146 +-0.366404,50.83518 +-0.04853,51.105844 +-0.170165,51.113827 +-0.155264,51.118108 +0.545092,50.879475 +-0.155292,50.831619 +-0.189233,50.880392 +-0.793442,50.735905 +0.3535,50.81383 +-0.658096,50.792324 +-0.175239,50.857618 +-0.27278,50.833805 +-0.183816,50.829585 +-0.669921,50.976841 +-0.693466,50.800495 +-0.41207,50.811942 +-0.170854,50.970308 +0.60576,50.865301 +-0.749341,50.866162 +0.284071,50.760392 +0.269237,50.820122 +-0.806233,50.853656 +-0.203783,50.832493 +-0.733972,51.017912 +-0.784438,50.733348 +-0.16067,50.835706 +-0.80759,50.853912 +0.568548,50.852824 +-0.556996,50.8529 +-0.194922,50.855676 +-0.282968,50.830546 +-0.730527,50.80121 +0.552915,50.874349 +0.255661,50.846864 +-0.197832,50.988309 +0.285674,50.767663 +0.370986,50.826355 +0.46826,50.84577 +0.29081,50.817039 +-0.812434,50.785625 +-0.329991,50.818872 +0.178354,50.887483 +0.244173,50.821813 +-0.449262,50.91982 +0.562877,50.857716 +-0.211719,50.838497 +-0.127176,50.818446 +0.250633,50.959545 +0.407817,50.845307 +-0.423254,50.812391 +-0.228373,50.837914 +-0.170913,50.828709 +-0.511115,50.908449 +-0.817397,50.846431 +-0.187927,51.125444 +-0.208261,50.846843 +-0.155047,50.853326 +-0.120327,51.133999 +0.001468,50.790974 +-0.239985,50.974212 +-0.742682,50.971028 +-0.134719,50.827596 +-0.135143,50.822665 +-0.417717,50.820814 +-0.142866,50.833068 +-0.178681,50.838912 +-0.130518,50.819021 +-0.104181,50.997969 +-0.065112,51.030262 +0.543587,50.929093 +-0.363299,50.815531 +0.590474,50.855937 +-0.543924,50.939133 +0.736566,50.949777 +0.544215,50.911658 +-0.462359,50.818911 +-0.315587,50.837254 +0.305764,50.804449 +-0.515671,50.814332 +-0.16873,51.12519 +0.105545,50.776479 +-0.434649,51.044816 +-0.757223,50.83907 +-0.240371,50.841028 +0.4452,50.841912 +-0.114901,50.819381 +-0.114885,50.846919 +-0.16961,50.838437 +-0.186275,51.130409 +-0.140136,50.864232 +-0.671528,50.792954 +-0.148208,51.159858 +-0.14636,50.820857 +0.547305,50.874174 +-0.126554,50.834687 +-0.020529,50.867076 +-0.198507,51.122019 +-0.103572,51.009048 +0.389781,50.827069 +-0.089517,50.833619 +-0.721239,50.782763 +-0.084973,50.863088 +0.409776,50.845284 +-0.540798,50.845225 +-0.316605,50.881956 +-0.119091,50.86912 +-0.016481,50.79433 +-0.20072,51.127215 +-0.786606,50.825449 +-0.199466,51.121971 +0.520354,50.934769 +0.603426,50.86753 +-0.141407,50.828305 +0.520122,50.934954 +0.447651,50.845845 +-0.194311,51.100623 +0.298429,50.898149 +0.288795,50.771182 +-0.778747,50.745681 +-0.136619,50.82125 +-0.505295,50.81651 +-0.196413,51.114127 +-0.272395,50.834617 +-0.792193,50.880175 +0.25715,51.05281 +-0.190783,50.838165 +-0.77255,50.836822 +-0.545244,50.833347 +0.556973,50.876805 +0.150469,50.795364 +-0.467746,50.81829 +0.298659,50.783175 +-0.154414,50.828674 +-0.231324,50.990358 +0.051651,50.844028 +0.627946,50.874652 +-0.077583,50.836148 +0.584248,50.873371 +-0.543997,50.81959 +-0.132786,51.130566 +-0.1338,50.832842 +-0.135946,50.831375 +-0.793765,50.832493 +0.239208,50.82931 +0.075712,51.134623 +-0.558643,50.813764 +0.259778,50.780049 +-0.173824,50.834537 +0.139828,50.837957 +-0.135174,50.824384 +0.256722,50.794364 +-0.298453,50.825305 +0.580104,50.855213 +0.196891,50.955955 +-0.076417,50.854484 +-0.404299,50.861254 +0.541134,50.86187 +-0.762605,50.82999 +0.748646,50.942145 +0.238597,50.739328 +-0.678467,50.880445 +-0.433369,50.840154 +-0.369126,50.826746 +0.281819,50.760139 +0.248831,50.807638 +-0.064697,50.818406 +-0.198711,50.834393 +-0.246091,50.990986 +-0.155854,50.827087 +-0.437954,50.914202 +-0.096829,51.136416 +-0.71081,50.783359 +0.280287,50.773552 +0.039394,51.134371 +-0.085598,51.103462 +-0.242898,50.831218 +-0.582699,50.883737 +-0.509642,50.842304 +-0.142347,50.820379 +-0.304461,51.06863 +-0.121657,50.964697 +0.238006,50.94985 +-0.297721,50.866493 +0.561961,50.882992 +-0.164653,51.127824 +-0.133075,51.085119 +-0.080921,50.903968 +-0.264582,50.839645 +0.30396,50.787405 +-0.192468,50.967937 +-0.023895,50.866809 +0.297957,50.776956 +-0.203922,51.106185 +0.081084,50.853931 +-0.208509,50.987439 +0.563649,50.971691 +-0.54252,50.846946 +-0.790716,50.993729 +-0.771081,50.837589 +-0.183155,50.850259 +0.436934,50.913848 +-0.783183,50.865369 +-0.411158,50.955406 +0.287933,50.793918 +-0.578901,50.968341 +0.591977,50.863558 +-0.737267,50.833361 +-0.37861,50.818596 +-0.027593,51.037899 +0.47632,50.9967 +-0.138776,50.971087 +-0.490469,50.818451 +0.248133,50.856048 +-0.408057,50.872331 +0.024625,50.789684 +-0.179195,50.860387 +-0.373809,50.813771 +0.552643,50.87457 +-0.090874,50.967993 +-0.77884,50.809118 +-0.117105,50.827052 +0.247123,50.813742 +-0.409292,50.95458 +-0.186021,50.837524 +-0.676784,50.787222 +0.482794,50.918242 +-0.204355,51.106452 +-0.379713,50.824052 +0.179018,50.824298 +-0.367276,50.834194 +-0.066306,50.865001 +-0.74401,50.845098 +-0.145092,50.845694 +0.573718,50.865428 +-0.299134,50.871397 +-0.184218,51.123453 +-0.15198,50.860463 +-0.431501,50.815802 +-0.14202,50.833261 +-0.26826,50.988754 +0.596468,50.972171 +-0.68003,50.805461 +-0.575914,50.808284 +-0.911033,50.845211 +-0.332406,50.818025 +0.244344,50.816773 +0.468749,50.850185 +-0.156936,50.822688 +-0.783179,50.867159 +-0.188325,51.116718 +-0.185386,51.122095 +-0.171262,50.852493 +0.16957,51.059002 +0.460982,50.843531 +0.388249,50.849082 +-0.016114,50.929542 +-0.797751,50.834324 +-0.202547,51.055812 +-0.023527,50.867091 +-0.242565,51.097078 +-0.121166,50.961677 +-0.475913,50.991962 +-0.188819,50.967638 +-0.219102,51.134925 +-0.123686,50.870075 +0.241633,51.031983 +-0.189576,51.101161 +-0.009535,51.126051 +-0.393812,50.84226 +-0.130676,50.841003 +0.475162,50.854033 +0.113148,50.778994 +-0.138487,50.833538 +-0.147522,51.126978 +-0.320699,51.066778 +-0.907958,50.844921 +-0.634723,50.801244 +0.756219,50.965226 +-0.183709,50.833073 +-0.200453,51.126357 +-0.111864,50.866152 +-0.553856,50.812932 +0.562337,50.863943 +-0.543565,50.808361 +-0.37808,50.830621 +-0.793413,50.735914 +-0.156388,50.868303 +-0.100116,50.834898 +-0.135224,50.843433 +-0.773796,50.835333 +-0.163864,51.159233 +-0.138807,50.828354 +-0.158368,50.825633 +-0.13709,50.821195 +-0.172307,50.831554 +-0.106448,50.820207 +-0.126411,50.83508 +-0.244577,50.848915 +0.543013,50.925355 +-0.136522,50.819756 +0.096483,51.040244 +0.167671,51.056537 +-0.208261,50.846825 +-0.403706,50.813294 +0.513588,50.870777 +-0.454565,50.81977 +-0.21259,51.101812 +-0.138835,50.826933 +0.213391,50.99393 +-0.37824,50.817808 +-0.13374,50.839695 +0.054227,50.853525 +0.569826,50.853066 +0.73384,50.952333 +-0.214252,50.987796 +0.582008,50.854964 +-0.164716,51.116134 +-0.136726,50.819624 +-0.23522,50.83335 +0.558609,50.875537 +-0.064663,51.031468 +-0.313066,50.892976 +-0.248359,50.842002 +-0.264826,51.081178 +-0.405811,50.828998 +-0.226051,51.046422 +-0.544761,50.821506 +0.256551,50.86559 +-0.37351,50.824011 +-0.677081,50.798818 +-0.160629,50.823376 +-0.665461,50.799738 +-0.453929,51.019335 +-0.158038,50.837625 +-0.186202,51.130804 +-0.16865,51.107337 +0.108421,51.131573 +-0.11856,50.819107 +-0.788135,50.767479 +-0.398038,50.825429 +-0.013775,51.129153 +-0.555545,51.034871 +-0.34945,51.088672 +0.284861,50.766699 +0.243134,50.856405 +0.050287,50.790873 +-0.394121,50.815878 +-0.009801,50.855355 +0.218999,50.979145 +-0.584096,50.857359 +-0.124685,50.871035 +-0.099861,50.985092 +-0.51284,50.842678 +-0.133838,50.829048 +-0.094515,51.012642 +-0.111188,50.849449 +-0.189104,51.113618 +-0.784054,50.863004 +-0.435325,51.044654 +-0.13458,50.826802 +-0.37838,50.817855 +-0.117343,50.980501 +-0.340642,50.82719 +-0.43428,50.823106 +-0.175924,50.828382 +0.458308,51.051745 +-0.755108,50.842249 +0.173027,50.808725 +0.111985,50.774914 +-0.284709,50.846607 +-0.203989,51.106312 +0.285186,50.765811 +-0.223176,51.10326 +0.459155,50.854435 +-0.346428,51.015624 +-0.164615,51.116519 +0.248927,50.807852 +-0.34564,51.044184 +-0.643025,50.793382 +-0.609724,50.990663 +-0.011953,50.797032 +-0.151732,50.821796 +-0.396601,50.977888 +0.084032,50.782333 +-0.027613,50.939953 +0.179286,50.892835 +-0.756702,50.940414 +-0.081518,50.83543 +0.55834,50.873222 +-0.194585,51.101284 +-0.19048,51.102174 +0.290747,50.769614 +0.118572,50.775037 +-0.779696,50.855234 +-0.547811,50.815177 +-0.448965,50.856811 +0.534315,50.923206 +-0.13067,50.831569 +-0.409756,50.885061 +0.593875,50.866007 +0.162344,50.958992 +-0.91924,50.856411 +-0.136604,50.820917 +-0.169924,51.126072 +0.532841,50.924884 +-0.124348,50.837655 +-0.129798,50.818919 +-0.201305,51.120983 +-0.746686,50.888877 +0.089133,51.076943 +0.47834,50.993419 +0.551499,50.876277 +-0.771144,50.841682 +-0.481677,50.830406 +0.386513,51.045805 +-0.198272,50.989458 +-0.215623,51.117273 +0.254145,51.027353 +0.547065,50.859357 +-0.147907,51.122731 +-0.184808,50.847569 +0.284033,50.760482 +-0.147768,50.824746 +-0.783067,50.803757 +-0.602066,50.993243 +0.18852,51.11251 +0.26562,51.098558 +0.589727,50.87092 +0.553199,50.901388 +-0.192288,51.106707 +0.268712,50.981905 +-0.279025,50.832368 +0.288168,50.821668 +0.292925,50.816745 +0.28532,50.766528 +-0.411481,50.827636 +0.477194,50.840895 +-0.11025,50.815016 +-0.184955,51.104291 +-0.101415,50.828093 +-0.136579,50.821195 +-0.210084,50.850046 +-0.367173,50.827807 +-0.77007,50.830681 +0.739199,50.953151 +0.389417,50.978841 +-0.893587,50.843545 +0.286437,50.775185 +-0.175229,50.834199 +0.242102,50.818875 +-0.541408,50.897167 +0.576776,50.865477 +-0.779823,50.833463 +-0.775115,51.049932 +0.286106,50.763734 +0.011156,50.870536 +0.29864,50.773812 +-0.618078,50.794941 +0.561635,50.860981 +0.294845,50.769309 +-0.072018,51.090298 +-0.194266,51.114975 +-0.721156,50.993501 +-0.150871,50.823833 +0.019563,50.973888 +0.289468,50.770719 +-0.154589,50.866737 +0.587635,50.866253 +0.129702,50.933682 +-0.064097,51.033419 +-0.198776,51.121718 +-0.295019,50.842001 +-0.186623,50.826031 +-0.060579,50.937223 +-0.119853,50.843132 +0.535368,50.861681 +-0.129754,50.832103 +-0.17197,50.834022 +-0.331823,51.115841 +0.24949,50.875691 +-0.182458,51.109666 +-0.221235,50.838876 +-0.087472,51.003308 +0.538986,50.892947 +-0.187345,51.124976 +-0.087981,50.862517 +0.698876,50.969669 +0.73257,50.951805 +-0.135297,50.827344 +-0.40241,50.856677 +-0.136076,50.820261 +-0.123515,50.831499 +-0.134563,50.822611 +-0.329587,51.062139 +0.445719,50.916705 +-0.106289,50.999028 +-0.412413,50.835716 +0.172766,50.901833 +-0.621333,50.845862 +-0.749214,50.867708 +0.397254,50.845992 +-0.29772,50.864577 +-0.712378,50.855383 +-0.370784,50.820726 +-0.412125,50.827888 +-0.710177,50.85534 +-0.531589,50.809614 +-0.015627,51.126622 +-0.140045,50.824344 +0.55617,50.865778 +-0.183099,51.113004 +-0.748566,50.874428 +-0.089971,51.02782 +-0.009491,50.799886 +-0.203142,51.083205 +0.274963,50.821369 +0.268377,50.75254 +0.509437,50.845368 +0.579713,50.953349 +0.266254,50.877526 +-0.314098,50.942345 +-0.652205,50.792409 +-0.480757,50.818082 +-0.647607,51.077051 +-0.162771,50.828491 +-0.017635,50.794565 +0.049392,50.85504 +0.021514,51.136058 +0.534311,50.859491 +-0.173202,50.857002 +-0.064214,50.997385 +0.031562,50.862934 +0.485006,50.845442 +-0.265406,50.833129 +0.550673,50.886405 +0.068041,50.991593 +-0.065045,50.99659 +0.275443,50.819561 +-0.099646,50.958604 +-0.880287,50.857447 +-0.641927,51.045295 +0.187001,50.890253 +-0.397996,50.825411 +0.360884,51.050481 +-0.743244,50.839244 +-0.797794,50.834324 +-0.410449,50.819133 +-0.193545,51.101223 +0.26282,50.761373 +-0.543256,50.808249 +-0.143905,50.822976 +0.550692,50.863064 +-0.693748,50.80057 +-0.198956,50.828389 +-0.313856,51.072867 +-0.737028,50.861668 +0.024831,51.068722 +-0.332701,50.839236 +-0.204113,51.106413 +0.69022,50.940673 +-0.167075,51.010592 +-0.147042,51.133616 +0.534057,50.852967 +-0.232852,50.888507 +0.559162,50.863059 +-0.12153,51.136033 +-0.276175,50.831849 +-0.640663,51.042169 +-0.133474,50.819293 +-0.110222,50.815007 +-0.37343,50.833668 +-0.011876,50.793496 +-0.343252,50.837677 +-0.516249,50.812217 +-0.272624,50.989816 +-0.270794,50.839522 +0.817167,50.929915 +0.375083,50.955353 +-0.171863,51.113512 +0.551677,50.891501 +-0.535818,51.06843 +-0.308294,51.071536 +-0.085485,51.103424 +-0.472489,50.817371 +-0.754294,50.84189 +0.513959,50.902753 +0.320687,50.789961 +-0.235644,51.097297 +0.553836,50.872728 +-0.143831,50.823047 +-0.541954,51.066645 +-0.444394,50.814419 +-0.651718,50.855687 +-0.209325,51.130117 +-0.187417,50.9063 +-0.140223,50.836659 +-0.191656,51.04639 +-0.420341,50.831417 +-0.42389,50.814998 +-0.377352,51.027452 +0.604516,50.974447 +-0.389445,50.926556 +-0.737213,50.833244 +0.490872,50.849148 +-0.75955,50.842908 +-0.114556,50.818072 +-0.690082,50.782453 +-0.424738,50.823994 +-0.369031,50.826223 +-0.561839,50.852492 +-0.13328,50.822384 +-0.125,50.836614 +0.286396,50.775204 +-0.104116,50.857438 +-0.754898,50.829846 +-0.800624,50.856862 +0.006645,50.790265 +0.173334,51.001931 +0.468259,50.845752 +-0.165174,50.880537 +0.58476,50.855128 +0.6088,50.872402 +-0.201182,51.101323 +-0.562344,50.852696 +-0.505866,50.810195 +-0.474547,50.818271 +0.301658,50.788476 +-0.213427,51.100494 +-0.136519,50.831609 +-0.734239,50.84082 +-0.131881,50.861681 +0.216969,51.095831 +-0.358455,51.062206 +0.441577,50.915298 +-0.763196,51.079096 +-0.209924,51.104272 +-0.081286,51.01193 +-0.180894,50.829117 +-0.365129,50.994241 +-0.775003,50.83424 +-0.162477,50.896341 +-0.125744,50.86839 +0.193444,51.051118 +-0.185887,50.84281 +0.316692,50.793521 +-0.152455,50.825432 +-0.152601,50.833969 +-0.121676,50.840868 +-0.068776,51.084479 +0.338716,51.087117 +-0.169059,51.120842 +-0.169962,51.126189 +0.266605,51.059993 +-0.868033,50.852437 +-0.171024,50.834952 +-0.410098,50.840748 +-0.136662,50.820891 +-0.156193,50.867499 +0.158469,51.091251 +-0.497882,50.840939 +-0.034742,50.972413 +-0.164533,50.826657 +-0.63639,50.987506 +0.089701,50.987152 +-0.407815,50.909892 +-0.006966,51.116663 +0.270892,50.783692 +0.597855,50.867546 +-0.121504,50.837744 +-0.221951,50.833482 +0.181613,51.04258 +-0.334279,50.818835 +-0.5449,50.82934 +-0.131374,50.833838 +-0.165523,50.832905 +-0.135716,50.82432 +0.380266,50.822308 +-0.338318,50.841429 +-0.72992,50.870674 +0.230843,50.821259 +-0.078479,51.009492 +-0.397967,50.825437 +0.553106,50.901507 +-0.184853,51.107608 +-0.182634,51.11064 +-0.321307,51.061031 +-0.931256,50.846621 +0.315768,50.801238 +-0.190506,51.11284 +-0.695655,50.801374 +0.101891,50.783254 +-0.159633,51.094102 +-0.199453,51.121926 +-0.219669,51.101606 +0.582165,50.85729 +-0.782996,50.857274 +-0.374411,50.814814 +-0.300477,50.880212 +0.555881,50.883359 +-0.314189,50.826775 +0.179215,50.892836 +-0.33792,51.102402 +-0.293071,51.07716 +-0.067792,50.82389 +-0.64508,50.85677 +-0.126087,50.835354 +-0.099959,51.026292 +-0.44031,51.102653 +-0.408583,50.873165 +-0.392603,50.809212 +-0.361575,50.812476 +-0.206503,50.834531 +-0.634234,50.987679 +-0.138836,50.828327 +-0.135724,50.824473 +0.242635,50.737515 +0.469262,50.837025 +-0.337716,51.079431 +-0.073309,51.089483 +-0.182071,50.82587 +0.084133,50.782367 +0.104512,50.977829 +-0.792236,50.880193 +-0.239326,50.840868 +-0.180302,51.120928 +-0.293886,51.075185 +0.516193,50.901185 +-0.18912,51.124536 +-0.154866,50.825137 +-0.326717,50.827063 +0.478721,50.96821 +-0.198027,50.844033 +0.466179,50.902432 +0.306433,50.785746 +0.531775,50.92595 +-0.104595,50.814789 +-0.715828,50.896833 +-0.213456,51.100468 +-0.181697,50.829291 +-0.144024,51.148281 +-0.134043,50.83281 +-0.151399,51.101814 +0.112705,51.108626 +-0.159868,50.823238 +0.343472,50.828746 +0.113337,50.781293 +-0.126096,50.950649 +-0.197691,50.828064 +-0.224841,51.1161 +-0.139654,50.822405 +0.163925,50.803417 +-0.217071,50.83856 +-0.104001,50.857139 +0.578895,50.863182 +-0.680616,50.958824 +-0.928474,50.874446 +-0.182971,50.831964 +-0.124728,50.917415 +0.530387,50.962505 +-0.744331,50.969544 +0.493566,50.910817 +-0.290938,50.853407 +-0.391605,50.825476 +-0.378104,51.05409 +-0.228652,51.097893 +0.602955,50.875923 +-0.518834,50.867332 +-0.745872,50.849282 +0.310641,50.799442 +-0.005175,50.795243 +-0.545496,50.809707 +0.629673,50.907578 +-0.325844,50.832015 +-0.186051,51.135397 +-0.17447,51.13474 +0.05541,51.035965 +0.096498,51.040253 +-0.244297,50.834818 +0.390672,50.913384 +0.041753,50.859069 +-0.316399,51.05864 +-0.315943,51.058229 +-0.172763,50.836607 +-0.757934,50.998304 +-0.414083,51.024188 +-0.213023,50.836709 +0.55243,50.86443 +-0.157775,51.118921 +0.343524,50.821568 +-0.336485,50.837059 +-0.654347,50.792407 +0.231536,50.878959 +-0.141073,50.823129 +-0.410762,50.827896 +-0.273981,50.985115 +-0.112083,50.946871 +-0.114319,50.926789 +-0.485575,50.840295 +-0.629523,50.8029 +-0.125947,51.016271 +-0.708409,50.990708 +-0.169104,51.131266 +-0.37219,50.809288 +-0.172217,50.838964 +-0.011558,50.893535 +0.261197,50.789753 +0.585301,50.859523 +-0.405053,50.824986 +-0.126147,51.133229 +-0.641849,50.832011 +-0.105882,51.000623 +0.213347,50.993903 +-0.143977,50.82045 +0.3221,50.816447 +-0.119991,50.816702 +-0.401461,50.919733 +-0.17212,50.837793 +0.553931,50.863299 +0.184641,50.890882 +-0.424987,50.823764 +-0.272807,50.832312 +-0.858284,51.029273 +-0.25921,51.001012 +0.073385,50.897219 +-0.178703,50.828867 +-0.488982,50.937005 +0.062599,50.79884 +-0.195898,51.02275 +0.37927,51.036698 +-0.381527,51.05456 +0.040532,50.792663 +-0.152998,50.822104 +-0.240812,50.84402 +-0.151816,51.138638 +-0.540466,50.809878 +-0.391741,50.833895 +0.240206,50.828499 +-0.141507,50.820087 +-0.656644,50.846427 +-0.184917,50.829737 +-0.283627,50.837382 +-0.193401,51.096859 +-0.707392,50.990894 +-0.136605,50.831583 +-0.159566,50.871339 +-0.18915,51.11647 +-0.151317,50.9616 +-0.135206,50.825706 +-0.408672,51.035239 +0.576456,50.85426 +-0.285961,50.839961 +-0.230976,50.858081 +-0.786252,50.773925 +-0.103178,50.832582 +0.313391,50.88581 +-0.549746,50.895194 +-0.106513,50.986873 +-0.361365,50.815648 +-0.727267,50.781723 +-0.035464,50.801855 +-0.605559,50.819415 +-0.230203,50.849993 +-0.426927,50.958551 +0.258715,50.77301 +-0.275825,50.845982 +-0.327476,50.819726 +0.538242,50.875865 +0.154534,50.775134 +-0.134791,50.832912 +-0.126214,50.829717 +-0.301061,50.881335 +-0.167703,50.824386 +-0.095686,50.99346 +0.285922,50.792833 +-0.15796,51.116792 +-0.798537,50.835789 +-0.514216,50.847192 +-0.186986,51.112614 +0.280166,50.791183 +-0.109657,50.985962 +-0.215791,51.111061 +-0.113523,50.831734 +-0.391592,50.826267 +-0.123086,50.964567 +-0.177559,50.832347 +-0.368008,50.827864 +0.30674,50.803225 +-0.512233,50.815304 +-0.378241,50.815299 +-0.144843,50.84409 +-0.42736,51.004331 +0.485498,50.915846 +0.535548,50.890395 +-0.361813,50.8349 +0.234121,50.972454 +-0.124578,50.832973 +-0.563184,50.849873 +0.040918,50.912181 +-0.152706,50.848567 +-0.753874,50.842173 +-0.785089,50.828104 +0.024853,50.864858 +-0.135551,50.820981 +0.238769,51.049503 +-0.110465,50.848727 +0.007035,50.792435 +-0.442737,51.034618 +0.299594,50.778803 +-0.195281,51.114964 +0.48511,50.866639 +0.206996,50.760545 +-0.264879,50.833166 +-0.171027,50.83997 +-0.671851,50.79508 +0.336555,50.804844 +-0.245934,50.990983 +-0.311068,51.063177 +-0.096633,50.96056 +-0.136917,50.821956 +0.464033,51.030831 +0.564606,50.852191 +0.756114,50.965138 +-0.121377,50.831357 +0.033364,51.097316 +-0.385187,50.828759 +-0.375035,50.828744 +-0.70497,50.908925 +0.473099,50.840298 +-0.162497,50.824628 +-0.843776,50.778556 +-0.180869,50.838901 +-0.813544,50.907606 +-0.19857,51.121858 +-0.770577,50.841631 +0.603703,50.873271 +-0.842998,50.838801 +-0.107831,51.005978 +-0.18925,51.134718 +-0.071734,50.850225 +0.755116,50.959343 +-0.748314,50.881161 +-0.444473,50.921762 +-0.517868,51.019534 +-0.173453,50.932019 +-0.322987,50.826542 +-0.340808,51.000913 +0.609001,50.872424 +-0.185906,50.82986 +0.349947,50.849095 +-0.341121,50.988948 +-0.404523,50.807217 +-0.279193,50.827802 +0.294122,50.809877 +0.282666,50.76765 +-0.137223,50.832106 +-0.119102,50.819755 +-0.109741,51.107596 +-0.143249,50.836303 +0.502752,50.868555 +-0.255467,50.841848 +-0.141604,50.824792 +-0.452558,50.918236 +-0.80448,50.834959 +-0.137015,50.831986 +0.477084,50.839638 +-0.651027,50.855508 +-0.177668,50.901355 +-0.299688,50.873356 +-0.287104,50.84443 +0.252387,50.862945 +-0.303594,51.053293 +-0.136568,50.821114 +0.233969,50.808823 +0.408158,50.901557 +0.281897,50.772828 +-0.114967,50.920972 +-0.799284,50.83326 +-0.142654,51.132917 +0.240191,50.819884 +-0.473121,50.995397 +0.518832,50.849393 +0.257483,50.861659 +-0.009162,50.857673 +0.044512,50.797054 +0.017649,50.875748 +-0.40914,50.908147 +-0.200805,51.047736 +-0.195394,50.938368 +0.552033,50.875375 +-0.143816,50.823082 +-0.186861,50.826125 +0.293833,50.777621 +-0.121484,50.860165 +-0.124258,50.819712 +-0.138728,50.843902 +0.22659,51.078776 +0.238813,50.830568 +-0.15107,50.821678 +-0.396713,50.847121 +0.612696,50.888423 +0.287908,50.768105 +0.544521,50.885433 +0.572336,50.853496 +-0.150009,51.157729 +0.081063,51.009367 +-0.128595,50.831959 +0.301651,50.807696 +-0.295144,50.826102 +-0.480704,50.810941 +0.102365,51.057361 +0.730395,50.946513 +0.215694,50.739649 +-0.299975,51.094051 +-0.609434,50.991784 +0.554686,50.871378 +-0.036419,50.803103 +-0.099522,50.995123 +-0.407294,50.909732 +0.104604,50.997505 +-0.136511,50.831447 +0.002839,50.801482 +-0.214661,51.099964 +0.598202,50.956267 +-0.180997,51.102494 +0.301193,50.788539 +-0.403866,50.812343 +-0.098892,50.921934 +-0.717625,50.820485 +-0.132158,50.840173 +0.456996,50.846341 +-0.192986,51.130567 +-0.370178,50.809602 +0.552176,50.891526 +-0.393968,50.830248 +0.057737,50.796713 +0.240637,50.810818 +-0.340103,50.823567 +-0.77087,50.854808 +-0.49684,50.81856 +-0.540756,50.958068 +-0.22369,50.91184 +0.444961,50.869394 +0.255374,50.971874 +0.432187,50.845152 +-0.170866,50.83137 +-0.142809,51.132974 +0.033563,50.789664 +-0.188469,51.119634 +0.583838,50.855158 +0.491634,50.91326 +-0.666519,50.804444 +-0.85827,51.029291 +-0.215731,50.913508 +0.470156,50.845622 +-0.540085,50.80937 +-0.776498,50.731367 +0.480348,50.849219 +-0.746154,50.983286 +-0.155572,50.8238 +-0.36744,50.812001 +-0.134064,51.158429 +0.469688,50.839984 +-0.540632,50.846014 +0.454484,50.901024 +-0.789535,50.829679 +-0.675846,50.791277 +-0.152391,50.822013 +-0.238004,50.926797 +-0.823321,50.836824 +0.102327,50.772417 +-0.199695,51.084456 +-0.434488,50.82792 +-0.144105,50.824013 +-0.564362,50.918846 +0.016297,51.054642 +0.07748,50.997137 +-0.737506,50.833463 +-0.138012,50.82085 +-0.376169,50.809964 +-0.281554,50.991846 +-0.528327,50.820373 +0.080675,50.779587 +-0.476408,51.009055 +0.04247,50.899536 +0.597805,50.867152 +-0.107124,50.903857 +0.459899,50.849391 +-0.027096,51.134514 +-0.333058,50.817648 +0.308265,50.787527 +-0.13459,50.82691 +-0.35473,50.812964 +0.198168,50.887048 +0.014138,51.006511 +0.306891,50.785827 +-0.248694,50.991115 +-0.139707,50.822504 +0.244686,50.812656 +-0.154109,50.856207 +-0.134598,50.827063 +-0.135282,50.82559 +-0.13777,50.825504 +-0.204501,51.106733 +0.249581,50.879053 +-0.194278,50.964593 +-0.799665,50.833345 +-0.381275,51.087974 +-0.380369,50.829286 +0.543767,50.856209 +-0.011999,51.126911 +-0.889017,50.971306 +0.078874,50.935821 +0.773291,50.939781 +0.224767,50.80515 +-0.134297,50.832491 +0.094797,50.99242 +-0.670616,50.813115 +0.70561,50.920341 +-0.203297,51.075518 +0.218706,51.097803 +-0.081327,51.011976 +-0.789675,50.829753 +-0.193961,50.961395 +-0.119795,51.134063 +-0.153317,51.121791 +-0.204256,51.07065 +-0.073297,51.089428 +-0.182699,50.846628 +0.480149,50.858577 +-0.153538,51.159259 +-0.826516,50.831712 +-0.33206,50.818155 +-0.079434,51.048817 +-0.35196,51.031305 +-0.094586,51.014747 +-0.788166,50.767362 +-0.409528,50.815307 +-0.304446,51.078027 +0.586814,50.882731 +0.43551,51.054543 +0.244903,50.866309 +-0.155444,50.825236 +-0.119229,50.819424 +-0.172582,50.831073 +0.154241,51.044518 +0.267878,50.973575 +0.581877,50.91558 +-0.371205,50.813528 +0.494851,50.848101 +-0.345066,51.044265 +-0.154967,50.826893 +-0.796461,50.994193 +-0.141102,50.82312 +0.40876,51.046419 +0.30231,50.784425 +-0.553314,50.849769 +-0.192142,50.826521 +-0.795896,50.731389 +-0.630615,50.80294 +-0.30011,50.825033 +-0.801061,50.833737 +-0.188027,51.124708 +-0.10428,50.817995 +0.46859,51.026948 +-0.155934,50.823266 +-0.132292,50.822233 +0.433554,50.844395 +0.175246,50.898603 +0.23918,50.82932 +-0.212461,50.883385 +-0.351655,50.836609 +-0.323157,50.823765 +0.224773,51.09982 +-0.541805,50.808834 +0.477369,51.001157 +-0.344523,51.013466 +0.02328,50.788772 +-0.32273,50.836467 +0.349777,50.866915 +0.23652,50.761754 +-0.312162,50.838104 +-0.617334,50.803323 +-0.823913,50.795723 +-0.344523,51.013475 +0.07983,51.070373 +-0.321221,50.889199 +0.714128,50.92562 +-0.385427,50.9374 +0.606527,50.870897 +0.301294,50.775864 +-0.202565,51.057188 +-0.492468,50.975324 +-0.112707,50.831892 +0.366822,50.977448 +0.025691,51.084166 +-0.08743,51.04036 +0.411893,51.005117 +-0.184825,51.10759 +0.702713,50.921181 +-0.146494,50.823916 +-0.584985,50.806362 +-0.775945,50.836255 +-0.172209,51.114174 +0.28512,50.766775 +0.000762,50.791067 +-0.768184,50.826263 +-0.20895,51.091406 +-0.353087,50.906453 +0.466017,50.836643 +-0.568554,50.854508 +-0.508834,50.812832 +-0.178119,50.841322 +-0.774268,50.841166 +-0.391167,50.815064 +-0.283582,50.840151 +0.397867,50.963108 +-0.17179,50.825907 +-0.208144,50.846931 +-0.3415,50.992316 +0.100152,51.051654 +-0.104499,50.822064 +-0.611159,50.986022 +-0.306305,50.991083 +0.554346,50.878689 +-0.159175,50.825691 +-0.228118,51.098029 +0.290414,50.800246 +0.455784,50.841392 +-0.575404,50.890339 +-0.125893,50.83169 +-0.172571,51.164001 +-0.141614,50.82776 +-0.621636,50.794579 +-0.171916,51.162111 +-0.578128,50.855974 +-0.164402,50.82384 +-0.750505,50.863009 +-0.796124,50.802049 +0.303992,50.783438 +-0.117362,50.989558 +-0.530696,50.813667 +-0.123485,50.999908 +0.487208,50.846762 +-0.01634,51.129665 +-0.455633,50.819695 +-0.155628,50.867401 +0.405835,50.829419 +0.09169,50.988906 +-0.031567,51.114067 +0.334959,50.986364 +0.254094,50.79106 +0.302162,50.776207 +-0.118327,50.869395 +-0.272006,50.878598 +-0.135854,51.158736 +0.162795,50.826588 +-0.688502,50.79633 +-0.492741,50.841377 +-0.793662,50.787995 +0.296814,50.802548 +0.724567,50.950822 +-0.144715,50.824041 +-0.401737,50.813582 +-0.016816,50.794452 +-0.276028,50.837387 +0.546265,50.87596 +-0.384905,50.808134 +0.285032,50.766426 +-0.132942,50.977694 +0.350787,50.814361 +-0.084334,50.834991 +-0.099722,50.843543 +-0.715827,50.89686 +-0.020879,50.966477 +0.073725,50.897501 +-0.412011,50.891495 +-0.924235,50.858526 +-0.378094,50.83063 +-0.536655,50.811476 +-0.787336,50.761067 +0.308513,50.787666 +0.557056,50.859624 +-0.167385,50.831783 +-0.576557,50.887025 +-0.12578,51.115094 +-0.754698,50.830437 +-0.134097,50.822541 +-0.340286,51.077418 +-0.644863,50.925483 +-0.167743,50.83026 +-0.20377,50.832457 +0.470183,51.01802 +0.291956,50.770841 +0.024378,50.86537 +-0.391766,50.818292 +0.055682,50.795796 +-0.843725,50.849051 +0.558318,50.872305 +0.284168,50.760624 +0.530336,50.869795 +-0.148476,51.154935 +-0.379978,51.048226 +-0.106346,50.814665 +-0.796731,50.833666 +0.156635,50.920254 +0.070134,50.792402 +0.000222,50.791041 +0.123399,50.781704 +-0.152719,50.848594 +0.581344,50.855033 +0.430709,50.833679 +-0.666041,50.803773 +0.334195,50.986478 +-0.529655,50.80521 +-0.401195,50.825302 +0.290707,50.770245 +0.472382,51.014043 +0.265298,50.786831 +0.004719,50.971212 +-0.098621,51.003589 +-0.360603,50.818749 +-0.790408,50.829967 +-0.726434,50.77951 +-0.773821,50.83546 +-0.201957,50.90067 +-0.803678,50.815221 +-0.167222,51.146309 +-0.206379,51.102868 +0.346422,50.816778 +-0.541949,50.811039 +-0.487292,50.980311 +-0.143186,50.824287 +-0.34412,51.044 +0.295272,50.77252 +-0.21576,50.9135 +0.481905,50.838672 +-0.778028,50.73463 +-0.135509,50.822752 +-0.130509,50.831675 +0.314291,50.792885 +-0.169287,50.975032 +-0.181088,51.120545 +-0.392384,50.827582 +-0.06426,50.996622 +-0.215446,50.913522 +-0.151853,50.835648 +-0.836731,50.790366 +-0.387843,50.829578 +-0.036227,51.07221 +0.554318,50.878698 +-0.157895,50.867949 +-0.126485,50.831799 +0.433394,50.845154 +0.584059,50.857617 +0.090098,50.780309 +0.590685,50.856148 +-0.130541,50.819138 +-0.755181,50.830406 +-0.150723,50.840873 +-0.184762,50.967944 +0.27336,50.786899 +-0.798959,50.83261 +0.107688,50.977178 +-0.755126,50.829839 +-0.191667,50.834033 +-0.147582,50.824069 +-0.655717,50.847532 +-0.767121,50.836441 +0.447151,50.867783 +-0.222791,50.923122 +-0.187934,51.124176 +-0.143567,50.836506 +-0.790107,50.785575 +-0.370889,50.813227 +0.508111,50.84501 +-0.753891,50.842092 +-0.173394,50.828091 +-0.740691,50.812166 +-0.412388,50.90383 +-0.144381,50.823865 +-0.195706,50.933975 +0.287869,50.765282 +-0.421953,50.911163 +-0.369749,50.81947 +-0.00725,51.129321 +-0.62363,50.985864 +0.604412,50.875531 +-0.200089,51.122862 +0.22577,50.973566 +-0.167664,51.145983 +-0.342394,50.980009 +0.474391,50.918358 +0.543095,50.88693 +-0.191056,51.130214 +-0.850654,50.854362 +0.470249,50.840925 +-0.710901,50.787272 +-0.296092,50.861685 +-0.156658,50.868325 +0.056277,51.028476 +-0.217293,50.84914 +-0.144792,50.820652 +-0.869841,50.952175 +-0.134434,51.115915 +-0.077728,50.836078 +-0.199281,51.122328 +-0.222536,50.839031 +-0.023398,50.867115 +-0.456549,51.011258 +-0.085213,51.122107 +-0.360863,50.814175 +-0.542069,50.808108 +-0.342128,51.061032 +0.26996,50.847612 +-0.150609,51.115903 +-0.130215,50.86285 +0.086063,50.853761 +-0.37431,50.909664 +-0.483892,50.829094 +-0.445035,50.921554 +-0.163259,50.890562 +-0.140222,50.836686 +0.577329,50.855652 +-0.779567,50.835124 +-0.141762,50.834759 +-0.790263,50.783904 +-0.516159,50.84281 +-0.318352,50.837366 +0.422175,51.048678 +-0.140039,51.121149 +0.301332,50.780981 +-0.165759,51.123345 +-0.134069,50.822522 +0.5081,51.024658 +0.494509,50.848342 +-0.151267,50.981142 +-0.178104,50.841322 +0.611282,50.983821 +-0.170008,51.126487 +-0.447244,50.815347 +-0.132142,50.830271 +-0.155575,50.867669 +0.563179,50.854417 +0.024433,50.867626 +-0.214139,51.10091 +-0.765491,50.989041 +0.241466,50.890659 +-0.203028,50.855486 +-0.265247,50.829754 +0.596375,50.972038 +0.2846,50.977314 +-0.655533,50.841072 +0.585692,50.89354 +-0.190505,51.102246 +-0.19277,50.844815 +-0.315904,50.837115 +-0.408239,51.081996 +0.520883,50.850293 +-0.929921,50.884486 +-0.66609,50.783126 +-0.376586,51.100751 +-0.385257,50.829606 +-0.104793,51.009157 +0.177875,50.967392 +0.234067,50.972509 +0.161577,51.057144 +0.285143,50.773664 +0.104157,50.775253 +-0.344272,51.044938 +-0.68629,50.792258 +0.258,50.86853 +0.238104,50.970561 +-0.325816,51.072922 +-0.799765,50.773489 +-0.145469,50.82077 +-0.546287,50.808934 +0.410398,50.845226 +-0.461378,50.946708 +-0.165982,51.146226 +-0.10595,50.825163 +-0.878496,50.867538 +-0.37332,50.824161 +-0.516329,50.812379 +-0.364374,50.834342 +0.105328,50.777013 +-0.341335,50.986532 +-0.525957,50.819903 +-0.384865,50.807657 +-0.153376,50.834116 +0.259117,50.772507 +-0.141055,50.820008 +-0.134492,50.822619 +-0.864511,51.039387 +-0.450005,50.846024 +-0.736999,50.861686 +-0.487778,50.979841 +-0.036249,51.11822 +-0.759084,50.814413 +-0.136308,50.822999 +-0.391749,50.838635 +0.589713,50.865785 +-0.239539,51.099298 +-0.205954,51.126765 +-0.832101,50.792271 +0.710497,50.972557 +-0.152227,50.982434 +-0.13497,50.844804 +-0.135878,50.833074 +-0.77111,50.865162 +-0.034293,50.798984 +-0.540757,50.833345 +0.297567,51.041392 +-0.514069,50.842873 +-0.54393,50.819922 +0.262787,51.022662 +0.069618,50.852975 +0.304145,50.7799 +-0.351649,51.069008 +-0.162091,51.118188 +-0.343877,50.992791 +0.208878,50.760159 +-0.154925,50.826874 +-0.185882,50.83343 +-0.365121,51.067021 +-0.465508,50.835446 +-0.103971,50.997867 +0.009343,50.874659 +-0.361963,50.9939 +0.278992,50.762092 +0.104331,50.773775 +-0.154133,51.075489 +-0.153463,51.159339 +-0.295955,50.841655 +-0.193954,51.100977 +0.159256,51.060011 +-0.147564,50.822728 +0.585058,50.892871 +-0.136513,50.831393 +0.028085,50.864343 +-0.332429,51.062863 +0.487869,50.851452 +0.250895,50.869144 +0.237754,50.960917 +-0.364475,50.834298 +-0.235451,50.840405 +-0.014268,50.793977 +0.287766,50.765212 +-0.154938,51.15965 +0.233832,50.972666 +0.552677,50.874417 +0.139448,50.865035 +-0.168008,51.126833 +0.290777,50.776917 +-0.259238,51.122013 +-0.46853,50.818201 +-0.148245,50.821309 +-0.297704,50.866969 +0.302197,51.105407 +-0.756098,50.846684 +-0.515429,51.062858 +-0.096228,50.998676 +-0.750287,50.863214 +-0.665788,50.842071 +0.238932,50.827993 +-0.480733,50.81836 +-0.913708,50.984344 +-0.171152,50.827678 +-0.188889,51.111816 +-0.317818,51.08367 +-0.391213,50.838528 +-0.22793,51.097351 +-0.354385,51.049811 +-0.77826,50.840596 +0.276334,50.96733 +-0.32295,51.069661 +0.10625,51.081322 +0.448433,51.049291 +-0.371473,50.815609 +0.353116,51.016578 +0.455402,50.841409 +-0.717654,50.820458 +0.243078,50.850803 +-0.04563,50.975681 +-0.79778,50.834315 +0.183003,50.891425 +-0.161042,50.873206 +-0.20124,50.987876 +-0.544778,50.821416 +-0.617079,50.802843 +-0.262727,51.091857 +-0.021945,50.915539 +-0.75109,50.823546 +0.203902,50.97292 +0.481552,50.925644 +-0.78274,50.830508 +-0.5283,50.820337 +-0.72587,50.895171 +-0.136645,50.820954 +-0.3934,50.812892 +-0.42639,50.828468 +-0.636414,50.795814 +0.198077,51.084766 +0.242095,50.91707 +-0.166524,50.834899 +-0.075292,50.837981 +-0.154384,51.121196 +0.066897,50.797181 +0.132046,51.133402 +-0.147084,51.133644 +-0.156778,50.857355 +-0.149289,50.82433 +-0.116362,51.042386 +0.009693,51.006569 +-0.346076,50.993056 +-0.391403,50.927545 +-0.620234,50.802206 +-0.284673,50.843324 +-0.127153,50.957645 +-0.155013,51.159552 +0.259727,50.775157 +-0.312771,51.067356 +-0.201296,51.107592 +-0.266705,50.833346 +-0.543878,50.820209 +-0.148499,50.828148 +-0.377066,50.829969 +0.234206,50.972434 +0.052519,50.852161 +0.297822,50.776814 +0.290802,50.769577 +-0.708525,50.789611 +0.55728,50.869945 +0.500067,50.954848 +-0.100933,51.000371 +-0.380625,50.823948 +0.048118,50.980882 +0.219393,51.044737 +0.010979,50.870395 +-0.484162,50.818135 +-0.13042,50.862692 +0.236743,50.969516 +0.268193,50.858628 +-0.531239,50.813548 +-0.412087,50.831539 +-0.163152,50.895821 +0.221817,51.008924 +-0.149882,50.92779 +0.564576,50.852938 +-0.201857,50.900678 +-0.267274,50.83294 +0.24548,50.861765 +-0.180619,50.846065 +-0.295642,51.079842 +0.434396,50.836282 +-0.199696,50.98912 +0.256176,50.777727 +-0.67693,50.786055 +0.250125,50.803539 +0.020881,50.791044 +0.009019,50.839005 +-0.209019,51.09147 +0.061519,51.038627 +-0.260511,50.989466 +0.453179,50.838021 +0.568163,50.886408 +0.470321,50.840942 +-0.337295,50.835461 +-0.110811,50.864768 +-0.40879,50.812788 +-0.020623,50.867221 +-0.10208,50.999158 +-0.367965,50.814841 +-0.123578,50.820735 +0.553423,50.87351 +0.235282,51.108046 +-0.541123,50.897209 +-0.230195,51.024902 +-0.16291,51.159848 +-0.079552,51.014924 +-0.122767,50.839878 +-0.520815,50.810566 +-0.352394,51.026302 +-0.105983,51.005849 +-0.750387,50.961452 +-0.209188,51.129971 +-0.919212,50.874235 +-0.057467,50.946668 +0.203163,50.868139 +-0.151251,50.843319 +-0.014432,50.905545 +0.012811,50.872001 +0.168529,50.825618 +0.600102,50.876257 +0.475078,50.853523 +-0.136436,50.827992 +-0.125558,50.835804 +-0.216888,51.111878 +-0.340885,51.066662 +-0.793522,50.806123 +0.584463,50.861071 +0.196849,50.955983 +0.356623,51.016562 +-0.54081,50.844407 +-0.146463,51.064531 +-0.109028,50.946732 +0.035007,50.79025 +0.30593,50.786485 +0.038664,50.885977 +-0.41093,50.883566 +0.498567,50.853292 +-0.160698,50.835707 +-0.770117,50.838083 +-0.037452,50.806556 +-0.040883,50.807324 +-0.284694,50.846625 +0.27935,50.767994 +-0.215223,51.102059 +-0.300385,50.960816 +-0.309791,50.990036 +0.102275,50.978778 +-0.778304,50.840552 +-0.29502,50.8412 +0.1589,50.827424 +0.448133,51.048757 +-0.784127,50.902267 +-0.26001,50.845351 +0.032878,50.862146 +0.114011,50.850002 +0.051651,50.790273 +-0.058968,50.830227 +-0.145257,51.144632 +-0.353429,51.013592 +-0.378427,50.818144 +-0.185241,51.112659 +-0.234919,51.127593 +-0.387492,50.818341 +-0.395979,50.830005 +-0.198871,51.122214 +-0.73503,50.861467 +0.125232,51.071517 +-0.797808,50.834333 +-0.22217,50.942394 +0.555289,50.867857 +-0.110854,51.030147 +-0.138613,50.821803 +-0.204699,50.828973 +0.474038,50.978454 +0.187007,51.070764 +-0.112611,51.110088 +-0.512824,50.842714 +0.231621,50.878948 +0.288212,50.771733 +0.267948,50.836301 +-0.165945,50.837354 +0.304604,50.78723 +0.037829,50.791523 +0.617417,50.882597 +0.280632,50.758192 +0.249418,50.809804 +-0.161346,51.118599 +-0.091122,51.026526 +-0.447449,50.814748 +-0.139184,50.822091 +-0.307906,51.059867 +-0.397865,50.816389 +-0.435229,50.829549 +-0.205613,50.836244 +-0.321171,51.067558 +-0.171118,51.162054 +-0.25888,50.835999 +0.095144,50.951386 +-0.392514,50.838699 +0.22687,50.87948 +-0.247623,50.833969 +-0.136233,50.83879 +-0.198302,51.087249 +0.031824,51.091524 +0.378157,50.963952 +-0.48544,50.840491 +-0.016102,51.126207 +-0.418201,50.924071 +0.239086,50.820525 +-0.130809,50.829494 +-0.20581,50.835915 +0.576514,50.856858 +-0.376807,50.833329 +-0.142358,50.859806 +0.294055,50.771132 +0.552018,50.875358 +-0.558333,50.814129 +-0.67561,50.854333 +-0.078456,51.141682 +0.256724,50.788806 +-0.678078,50.88062 +-0.697837,50.785166 +-0.410745,50.819595 +0.597457,50.862941 +-0.219817,51.099593 +-0.147094,51.133743 +-0.136524,50.819711 +-0.06263,50.80418 +-0.365394,50.810425 +-0.333542,51.111746 +-0.740349,50.977756 +-0.797793,50.834333 +0.260453,51.007508 +0.235401,51.108421 +0.555934,50.890283 +-0.17452,51.0341 +-0.201241,50.987858 +-0.424595,50.823587 +0.325824,51.099408 +0.295824,50.770468 +-0.780105,50.744157 +-0.174407,50.831974 +0.543363,50.886897 +-0.499633,50.96869 +-0.018391,50.948628 +0.19011,50.895915 +0.481212,50.964442 +0.014936,50.922247 +-0.157365,51.119184 +-0.335551,51.009615 +-0.078118,50.861158 +-0.093629,51.136364 +-0.675215,50.803086 +-0.105244,51.099133 +-0.308112,51.074591 +-0.837695,50.848721 +-0.717652,50.820521 +-0.069631,51.085564 +-0.666196,50.857157 +0.291912,50.770824 +-0.205192,50.854989 +-0.285126,50.839859 +-0.679889,50.794344 +-0.546545,50.812508 +-0.161203,50.828295 +-0.176941,50.859156 +0.47486,50.983995 +-0.541081,50.808824 +-0.147304,50.821033 +0.609775,50.875852 +-0.161808,50.873955 +0.554231,50.878664 +-0.165005,50.842133 +-0.18535,50.828107 +0.291896,50.798912 +-0.292769,50.961146 +-0.335803,50.837481 +0.583907,50.865661 +-0.141071,50.946788 +-0.743547,50.983825 +-0.90545,50.936273 +-0.544326,50.82132 +0.281953,50.79873 +-0.134673,50.822703 +-0.14357,50.823537 +0.257825,50.794864 +0.281378,50.776742 +-0.667076,50.785367 +-0.1363,50.822837 +-0.680195,50.794033 +-0.125876,51.016251 +-0.123376,50.837811 +0.002936,50.898611 +0.117106,50.783078 +-0.109481,50.861104 +-0.407858,50.909883 +0.117496,50.775399 +0.466319,50.857989 +0.527185,50.853332 +-0.105153,50.835376 +-0.279711,50.889395 +-0.136392,50.819816 +0.463332,50.873288 +0.461461,50.836155 +0.438529,50.835198 +-0.188264,51.119748 +-0.754653,50.842244 +-0.402461,50.829393 +-0.169118,51.125861 +-0.688385,50.779736 +-0.143569,50.822152 +-0.16878,51.162215 +-0.204924,51.067027 +-0.435198,51.017099 +-0.037098,51.119754 +0.536954,50.850835 +-0.558306,50.814102 +-0.135466,50.82098 +-0.576732,50.886884 +0.004928,50.872136 +-0.194165,51.114983 +-0.125552,50.954616 +0.018249,50.974459 +0.113642,51.12102 +-0.202498,51.058923 +-0.147315,50.83259 +0.187031,51.048567 +0.228616,50.82131 +-0.233294,51.042773 +-0.146464,51.127006 +0.096497,51.040244 +-0.002157,50.791495 +-0.181028,50.861459 +0.318058,50.798485 +0.083964,50.941756 +-0.134315,50.831313 +-0.010238,50.793306 +-0.180976,50.902234 +0.014147,50.788535 +-0.668697,50.796231 +-0.165845,50.897132 +0.29878,50.783037 +-0.073523,50.837475 +-0.544581,50.80992 +0.58152,50.856153 +0.571083,50.865585 +-0.683682,50.784072 +0.554322,50.866034 +0.100831,50.979928 +-0.21991,50.84534 +-0.103873,50.816846 +-0.262698,50.836452 +-0.37536,50.811608 +-0.208336,51.115785 +0.571861,50.85339 +-0.106675,50.817404 +-0.783216,50.735673 +0.552121,50.878548 +-0.487225,50.815171 +-0.654334,50.792388 +-0.191906,50.918565 +-0.278467,50.832477 +-0.201702,50.900657 +0.278769,50.76975 +-0.170066,51.13585 +0.391536,50.861957 +-0.165199,50.840454 +-0.269896,50.832683 +-0.757026,50.813897 +-0.139537,50.823194 +0.447029,50.857307 +-0.095435,50.993321 +0.507999,50.946916 +-0.020125,50.93729 +-0.408585,50.828451 +-0.134487,50.830569 +0.195272,50.762727 +0.19905,50.886753 +-0.471507,51.090889 +-0.136516,50.819558 +-0.296871,51.105858 +-0.35085,50.813503 +-0.20665,50.829192 +0.473982,50.842213 +-0.359818,51.067244 +-0.177423,50.833298 +-0.203382,51.106851 +0.45318,50.838056 +-0.214427,51.10086 +-0.159824,50.831934 +-0.690802,50.807489 +-0.081926,50.83621 +-0.14207,50.823432 +-0.543448,50.823081 +-0.187582,51.125493 +-0.156888,50.868599 +0.052025,50.794916 +-0.202229,51.050762 +0.006912,50.874962 +0.118765,51.103372 +-0.128693,50.83518 +-0.770512,50.814381 +-0.647401,51.076788 +-0.306324,51.087983 +-0.788995,51.040689 +-0.138616,50.821732 +-0.754067,50.832256 +-0.125879,50.952139 +-0.650614,50.855512 +-0.766543,50.826021 +-0.134683,50.84346 +0.301539,50.77595 +-0.071025,50.806765 +0.165421,51.057559 +-0.467065,50.943464 +-0.046721,50.865395 +-0.8785,50.842475 +-0.79618,50.802095 +-0.33466,51.110054 +-0.139557,51.121411 +-0.211976,51.122163 +0.609227,50.872923 +-0.11024,50.851125 +-0.528714,50.815756 +-0.826442,51.048427 +-0.168998,51.127074 +-0.136508,50.819746 +0.543205,50.864676 +0.277984,50.768192 +0.579252,50.858056 +-0.145747,51.103136 +-0.308102,51.074843 +-0.235397,50.829045 +-0.640581,51.042537 +-0.467561,50.818305 +-0.388553,50.814309 +-0.747119,50.982892 +-0.138035,50.823836 +-0.143442,50.832861 +-0.147909,50.833373 +0.27353,50.807942 +0.259527,50.965867 +0.404821,50.889232 +0.161136,51.050416 +-0.471272,51.093691 +-0.545336,51.048 +0.524462,50.849478 +0.243046,50.850129 +0.733811,50.952333 +-0.19831,50.982965 +-0.124348,50.837637 +-0.178778,50.956357 +0.035866,51.11266 +-0.158398,50.825589 +-0.14728,50.83098 +0.563543,50.864681 +-0.254644,50.841818 +0.024865,50.864813 +-0.453512,50.917772 +-0.416454,50.823747 +-0.683427,50.791614 +-0.365057,50.820484 +-0.391962,50.827072 +-0.449412,51.018394 +-0.14102,50.945564 +0.721365,50.952066 +0.485134,50.845439 +-0.200423,51.053549 +-0.284751,50.846626 +0.5518,50.878654 +0.609289,50.873776 +-0.36329,50.909555 +-0.280528,50.845574 +-0.829529,50.872498 +-0.600129,50.972356 +-0.667873,50.989659 +0.093202,50.777375 +0.302056,50.788207 +-0.031538,51.114075 +-0.159629,50.844108 +-0.078879,50.860964 +-0.148795,50.869127 +-0.80345,50.814139 +-0.017056,51.126952 +0.04585,51.055648 +-0.081439,50.997184 +0.389996,50.886308 +-0.249908,50.920159 +-0.69749,50.796637 +-0.833323,50.84803 +-0.219452,50.854362 +-0.216115,51.118971 +-0.43088,50.8161 +0.482255,50.91855 +0.327514,50.786002 +-0.16454,51.116239 +-0.147857,51.14112 +-0.204725,51.092096 +0.283937,50.768111 +-0.140788,50.828538 +-0.765269,50.840972 +-0.199943,50.89536 +-0.349366,51.064174 +-0.558838,50.814333 +0.102128,50.773024 +0.464019,51.030831 +-0.475363,50.992647 +-0.781476,50.831637 +0.471962,50.855855 +-0.616544,50.808467 +-0.136181,50.823347 +0.235582,50.876166 +-0.651047,50.855787 +-0.215516,50.91355 +-0.110797,51.032601 +-0.197528,51.118164 +-0.023643,50.867057 +-0.278602,50.84578 +-0.310912,51.070612 +-0.417338,50.910507 +-0.526606,50.820927 +-0.472366,50.828099 +-0.783068,50.857778 +-0.207975,51.103342 +0.60994,50.866089 +-0.234002,50.84041 +0.243529,50.829092 +-0.352334,51.027174 +-0.20787,50.854068 +-0.282741,50.845265 +-0.235674,50.840525 +-0.745586,50.857831 +-0.364702,50.952463 +0.107986,51.019604 +-0.231324,50.990349 +-0.155211,50.86716 +-0.412489,50.827641 +0.066075,50.990315 +-0.858469,50.764051 +0.256924,50.789431 +-0.410777,50.820765 +-0.265925,50.832938 +-0.31582,51.08285 +-0.427891,50.818865 +-0.754179,50.841942 +-0.142747,50.924358 +-0.391879,50.818321 +-0.316727,50.88212 +0.332577,50.9866 +-0.120625,50.830266 +-0.326373,50.836672 +-0.017811,50.794757 +-0.329478,51.075465 +-0.294161,51.111565 +0.286584,50.997673 +-0.776743,50.833422 +-0.353577,50.906675 +-0.681871,50.789447 +-0.730274,50.852944 +0.446562,50.857335 +-0.611672,50.820073 +-0.758669,50.896451 +-0.687241,50.874231 +0.041056,51.095222 +0.595387,50.859713 +-0.12624,50.836508 +0.255738,50.967038 +0.428309,51.041023 +-0.651297,50.796832 +0.254436,50.866233 +0.385295,50.885298 +-0.409564,50.895284 +0.256233,50.861369 +-0.333554,50.817664 +-0.390751,50.813134 +0.290816,50.769577 +-0.216348,50.83854 +-0.48933,50.818112 +-0.187555,51.125456 +-0.176286,51.132179 +-0.720451,50.797602 +-0.212967,51.100937 +-0.431104,50.820015 +-0.561424,50.853044 +-0.405139,50.831651 +0.226564,51.123708 +-0.200045,51.105226 +-0.186205,51.116496 +-0.775998,50.834772 +0.099629,50.976334 +-0.122508,50.817678 +0.27898,50.772642 +-0.023124,50.867219 +-0.100893,50.956645 +-0.219016,51.082153 +-0.30034,51.073966 +-0.07691,50.836271 +-0.142881,50.941358 +-0.143213,50.824323 +-0.170165,51.130464 +-0.324249,50.894351 +0.732458,50.950863 +0.282745,50.77568 +0.572994,50.85358 +0.555349,50.89831 +0.100858,50.853226 +-0.139679,50.950255 +0.268407,50.769575 +-0.121393,50.837671 +-0.678325,50.802996 +-0.161467,50.836016 +-0.671766,50.795061 +-0.11392,51.005924 +0.525532,50.930241 +0.552451,50.880682 +-0.297058,51.107381 +-0.197725,50.984449 +-0.185497,50.848479 +-0.392225,50.822705 +0.265949,50.782097 +-0.437361,50.833741 +-0.530982,50.90674 +-0.411359,50.827878 +-0.137522,50.832461 +-0.545416,51.003523 +-0.399954,50.840429 +-0.280112,50.834866 +-0.554477,50.818119 +-0.228952,50.839506 +-0.040067,50.806474 +-0.373139,50.824059 +-0.111587,50.81529 +-0.160468,51.018321 +-0.714469,50.795809 +-0.668597,50.78275 +-0.278538,50.832469 +0.018217,50.923422 +0.552943,50.864194 +-0.1474,51.132183 +-0.755154,50.841593 +0.258035,50.864554 +0.004364,50.790691 +-0.36715,51.073857 +-0.11842,50.839538 +-0.138716,50.834198 +0.219828,51.006983 +-0.489864,50.8416 +0.556547,50.889541 +0.476986,50.846889 +0.117649,50.775639 +-0.835573,50.848376 +-0.173763,51.122598 +0.294119,50.777652 +-0.647719,51.077142 +-0.166816,51.145745 +0.294196,50.811405 +0.013127,51.116741 +-0.651845,50.854232 +-0.42852,51.086407 +-0.490673,50.841638 +-0.356511,50.908174 +0.492104,50.911937 +-0.379828,50.81497 +-0.778004,50.840611 +-0.134494,50.822556 +-0.174505,50.825096 +-0.372795,50.820053 +0.548703,50.906037 +0.195451,50.822578 +-0.394854,50.830107 +0.550193,50.875011 +-0.679388,50.835769 +0.000487,50.801909 +0.243852,50.817187 +0.179287,50.892844 +0.101743,50.770773 +0.257482,50.863099 +0.577317,50.857505 +-0.143088,51.132421 +-0.798575,50.832669 +-0.508326,50.810497 +0.29815,50.772221 +0.55991,50.853356 +-0.618097,50.802478 +-0.875283,50.842183 +0.096159,50.775308 +-0.779396,50.847659 +-0.174821,50.846469 +-0.321223,51.067685 +-0.126788,50.966363 +-0.121237,50.841553 +-0.3654,50.826937 +-0.272249,50.93158 +-0.617996,50.802557 +-0.20404,51.101304 +-0.205109,51.120169 +-0.860202,50.841497 +-0.496348,50.816629 +-0.17169,50.966076 +-0.738141,50.988272 +-0.881799,50.842911 +-0.145336,50.844187 +-0.142207,50.83572 +-0.416536,50.812525 +0.171354,50.903595 +0.468258,50.845725 +-0.617663,50.809011 +-0.328327,51.068992 +-0.43427,50.822117 +-0.608618,50.98619 +0.577014,50.859221 +-0.292649,50.842731 +-0.379161,50.813324 +-0.15722,50.852632 +-0.16996,51.125893 +0.23886,50.827986 +-0.145795,50.844069 +-0.28294,50.840223 +-0.666542,50.802637 +0.132583,51.04014 +-0.212676,50.840598 +-0.198232,50.98202 +-0.511045,50.810702 +-0.17513,50.838928 +-0.660528,50.842218 +0.314097,50.792421 +3.5E-05,50.796971 +0.3144,50.792811 +-0.133438,50.835517 +-0.121873,50.840583 +0.520768,50.85026 +0.244273,50.822413 +0.013327,50.869455 +0.248954,50.806647 +-0.686411,50.795515 +-0.118789,50.840273 +-0.147729,51.12896 +0.39903,51.048364 +-0.090031,50.988529 +0.512456,50.9039 +-0.152746,50.824879 +-0.21667,51.100085 +-0.790742,50.733962 +0.575166,50.884734 +-0.056686,50.803443 +-0.824778,50.837036 +-0.142262,50.835748 +-0.148279,51.12092 +-0.438011,50.914203 +-0.194716,50.840393 +0.305066,50.885381 +0.238341,50.925417 +-0.141689,50.828715 +-0.177971,50.838919 +-0.142795,50.844156 +0.306464,50.7858 +-0.023284,50.939997 +-0.504477,50.815475 +-0.121859,50.840574 +-0.001392,50.796788 +-0.799493,50.83284 +-0.407609,50.90925 +0.315276,50.795015 +-0.115222,50.984352 +-0.139071,51.149138 +0.464439,50.840652 +-0.275741,50.949124 +-0.376999,50.813465 +-0.180882,50.838928 +-0.19483,51.100856 +-0.717154,50.848538 +-0.153282,50.857363 +-0.68676,50.849369 +-0.316433,51.067544 +-0.208646,51.117759 +-0.170137,51.12648 +-0.744116,51.083586 +0.267661,50.795789 +-0.103011,50.818847 +0.291293,50.808053 +-0.774436,50.826078 +-0.324339,51.070724 +0.046606,50.794292 +-0.328044,51.069716 +0.563777,50.887836 +-0.679048,50.780863 +-0.185793,51.125186 +0.737174,50.956976 +0.558298,50.871407 +0.575892,50.85563 +0.555083,50.89864 +-0.174076,51.132414 +0.470886,50.856211 +-0.204859,51.100426 +-0.015196,51.129016 +0.551888,50.875324 +0.46653,50.846095 +-0.178663,50.828794 +-0.140333,50.925309 +-0.108477,50.823054 +0.050731,50.792259 +-0.807038,50.853826 +-0.206132,51.105185 +-0.27571,50.834459 +-0.287311,50.827903 +-0.544114,50.819924 +0.272501,50.822415 +0.559304,50.862795 +0.241949,50.818941 +-0.382717,50.813131 +-0.141351,51.131548 +0.290994,50.79875 +-0.125807,50.948621 +-0.112978,50.83186 +-0.367002,50.828614 +-0.173212,50.900377 +0.550036,50.854417 +-0.850719,50.839579 +-0.166982,50.833378 +-0.241602,50.831324 +0.046411,50.794718 +0.036418,50.955393 +0.102658,50.77189 +-0.707706,50.99088 +0.026559,51.085419 +0.187856,50.889994 +-0.617181,50.802755 +-0.149133,50.924082 +0.016413,51.069785 +0.484258,50.845251 +-0.187017,51.119494 +-0.215488,51.116695 +-0.690435,50.797242 +-0.676444,50.784665 +-0.376954,50.813518 +-0.359204,50.99941 +-0.373165,50.824123 +-0.604781,50.992529 +-0.737169,50.98997 +-0.577388,50.82984 +-0.173169,50.86041 +-0.135433,50.827508 +-0.540446,50.837855 +-0.556829,50.817339 +-0.117543,51.113181 +0.2812,50.765781 +0.508333,50.945983 +-0.34946,50.85496 +-0.187255,50.843065 +0.671577,50.917428 +-0.785951,50.738966 +-0.536653,50.811539 +0.099652,50.772214 +-0.17353,50.959477 +-0.462576,51.013505 +-0.723397,51.067616 +-0.153768,50.856921 +-0.137478,50.821435 +0.257098,50.82249 +-0.17453,51.135029 +-0.455354,50.918858 +-0.370154,50.815186 +-0.136306,51.153185 +0.10549,50.775895 +0.2908,50.76955 +-0.362335,50.824844 +-0.492024,50.956505 +-0.510819,50.810663 +0.548434,50.860218 +-0.129745,50.857195 +0.103473,50.991725 +0.628903,50.90907 +-0.210314,50.880042 +0.55703,50.876804 +-0.370536,51.064821 +0.306484,50.80466 +0.397961,50.845653 +-0.716228,50.784947 +-0.184958,50.871134 +-0.392107,50.830294 +0.078677,50.933972 +-0.380944,51.086405 +0.477046,50.997764 +-0.239218,50.831261 +-0.133286,50.826863 +-0.1526,50.833996 +-0.780246,50.826498 +0.543377,50.886897 +-0.193562,51.100045 +0.296166,50.774275 +-0.440713,51.02523 +-0.285354,50.959868 +0.556077,50.871347 +-0.285514,50.959789 +0.456798,50.846363 +-0.073796,50.837398 +-0.033354,50.798699 +0.261491,50.876638 +0.179117,51.055038 +-0.740759,50.984712 +0.102399,50.772425 +-0.178999,51.098074 +-0.003732,51.127049 +-0.197109,50.97497 +-0.272544,50.834035 +-0.152787,50.824943 +-0.120978,50.825712 +0.469175,50.916849 +0.553534,50.850824 +-0.170938,50.831344 +0.389117,50.861619 +-0.51436,50.842652 +-0.561385,50.852945 +0.315987,50.793328 +-0.667075,50.785385 +-0.757589,50.923679 +-0.763774,50.81422 +-0.403397,50.835242 +0.626991,50.889263 +-0.205107,50.836857 +0.278076,50.76658 +-0.762824,50.838869 +-0.217431,51.119306 +-0.177958,50.838883 +-0.430638,50.813174 +-0.794484,50.792446 +-0.174287,50.832512 +-0.558354,50.813913 +0.510829,50.870216 +-0.136437,50.819754 +0.684911,50.918948 +0.238761,50.838079 +-0.161531,50.823921 +-0.391744,50.82474 +0.485116,50.961796 +0.09985,50.772219 +-0.621907,50.802253 +-0.187235,51.127043 +-0.667986,50.807249 +-0.358488,50.812676 +0.46666,51.029004 +0.079753,50.783093 +-0.193645,50.853417 +-0.157802,51.017955 +-0.914301,50.979709 +0.290296,50.767932 +-0.144784,50.824087 +-0.106597,50.861093 +-0.129703,50.871017 +-0.15177,50.821914 +-0.455739,50.838429 +-0.150936,50.834401 +-0.597931,50.857454 +-0.310866,50.838598 +0.078135,50.995524 +0.238136,50.823826 +-0.141059,50.823129 +0.562276,50.852449 +-0.087087,50.991863 +0.165596,50.82605 +0.237878,50.820521 +-0.152027,50.826199 +-0.928459,50.874464 +-0.378146,51.054127 +0.204994,50.76079 +-0.751466,50.830214 +-0.251815,50.844941 +-0.367186,50.827816 +-0.434099,50.820442 +-0.033424,51.113415 +-0.795255,50.859001 +-0.333566,51.087646 +0.309965,50.800705 +-0.274978,50.837353 +0.543925,50.875813 +-0.161091,50.835839 +-0.542635,50.82504 +-0.371645,50.815171 +0.600053,50.8672 +-0.410241,50.840714 +-0.122773,50.847865 +-0.132285,50.840202 +-0.503578,51.022751 +-0.316779,50.882256 +0.282594,50.797044 +-0.224176,50.839226 +0.116052,50.942132 +-0.771651,51.048205 +-0.684971,50.795247 +-0.320866,50.831826 +-0.206995,51.10357 +-0.171136,50.827741 +0.533132,50.924743 +-0.667712,50.841824 +-0.120268,51.134025 +-0.254583,50.844614 +0.261936,51.106481 +0.017169,50.830051 +0.454658,50.901083 +-0.13548,50.820971 +-0.551606,50.820961 +-0.675278,50.781774 +-0.506278,50.908477 +-0.217344,50.838493 +-0.487714,50.841339 +0.531281,50.868353 +0.084297,50.941885 +-0.00921,50.857566 +0.251254,50.781257 +0.433765,50.844912 +0.001129,50.867723 +0.048886,50.793227 +-0.185967,50.848819 +0.213006,50.741256 +-0.73145,50.798585 +-0.03477,50.972432 +0.124365,50.967406 +-0.025713,51.134095 +-0.667228,50.803967 +0.242311,50.811676 +0.096683,50.972277 +0.219492,51.044709 +0.066888,50.796669 +-0.408317,50.909746 +0.238887,50.827949 +-0.399739,50.829661 +0.266247,50.776245 +-0.023587,50.867038 +0.351066,50.876981 +-0.214618,50.834368 +-0.167063,50.863911 +-0.092575,51.136608 +-0.338213,50.833613 +-0.202816,51.124765 +0.379093,50.848108 +-0.206872,51.103415 +-0.634951,50.799735 +-0.462629,50.996824 +-0.694017,50.855053 +0.262841,50.864002 +-0.05308,51.080163 +-0.295617,50.84156 +-0.021781,50.944891 +-0.007813,50.883003 +-0.670006,50.790599 +0.334111,50.986498 +-0.147538,51.126951 +-0.488373,50.820501 +-0.852676,50.771306 +0.708303,50.924811 +-0.585928,50.806148 +-0.518726,50.823642 +-0.124861,50.82769 +-0.184873,50.82613 +-0.136632,50.83162 +-0.20006,51.122853 +0.536298,50.929576 +-0.131705,50.85898 +-0.570841,50.965527 +-0.783088,50.828605 +-0.810606,50.801236 +-0.10529,51.518451 +-0.074474,51.514334 +-0.10447,51.514256 +-0.072841,51.51035 +-0.112736,51.518256 +-0.074051,51.514471 +-0.078872,51.5208 +-0.089625,51.51013 +-0.105321,51.518415 +-0.107699,51.517707 +-0.106919,51.511148 +-0.107544,51.511023 +-0.100602,51.515075 +-0.078502,51.517934 +-0.075188,51.511081 +-0.094785,51.511141 +-0.093541,51.512289 +-0.092712,51.512123 +-0.079356,51.509639 +-0.093033,51.517551 +-0.107553,51.517759 +-0.099483,51.519463 +-0.078865,51.520953 +-0.095725,51.512784 +-0.07772,51.513227 +-0.08598,51.510781 +-0.078729,51.521112 +-0.081951,51.516129 +-0.081846,51.516217 +-0.077374,51.511531 +-0.083235,51.510611 +-0.104876,51.516628 +-0.10434,51.512518 +-0.089108,51.516282 +-0.086009,51.510791 +-0.096801,51.520166 +-0.104444,51.514193 +-0.101777,51.513862 +-0.098658,51.515376 +-0.102509,51.512201 +-0.080324,51.509583 +-0.096718,51.514553 +-0.08516,51.510741 +-0.096145,51.520335 +-0.080318,51.517604 +-0.088144,51.512462 +-0.089487,51.51342 +-0.077176,51.511096 +-0.075514,51.512238 +-0.091282,51.510472 +-0.090669,51.51307 +-0.110843,51.513828 +-0.102218,51.513986 +-0.105042,51.516801 +-0.074342,51.514395 +-0.090499,51.517474 +-0.088839,51.5134 +-0.099046,51.515409 +-0.094532,51.510993 +-0.093931,51.511585 +-0.081677,51.516134 +-0.09358,51.51756 +-0.098167,51.511258 +-0.104249,51.512643 +-0.079621,51.518411 +-0.080451,51.508614 +-0.103514,51.518179 +-0.104383,51.51358 +-0.080006,51.517833 +-0.080288,51.517622 +-0.097297,51.51485 +-0.081649,51.516124 +-0.082287,51.515667 +-0.097448,51.521588 +-0.081494,51.516032 +-0.093312,51.510514 +-0.108539,51.516219 +-0.099534,51.513376 +-0.09019,51.517621 +-0.099602,51.515544 +-0.104431,51.510335 +-0.10211,51.511035 +-0.087121,51.509352 +-0.075529,51.512229 +-0.090163,51.517594 +-0.083584,51.516381 +-0.102139,51.51867 +-0.081259,51.509949 +-0.083861,51.514245 +-0.076012,51.513757 +-0.085176,51.511749 +-0.090039,51.510227 +-0.090349,51.513487 +-0.077405,51.511486 +-0.084183,51.511013 +-0.104746,51.515942 +-0.104302,51.513093 +-0.100752,51.514601 +-0.078879,51.52062 +-0.078973,51.520451 +-0.080153,51.509535 +-0.083051,51.510527 +-0.099119,51.513306 +-0.100002,51.51565 +-0.086894,51.510994 +-0.081895,51.516101 +-0.085574,51.511197 +-0.103871,51.514112 +-0.104343,51.513157 +-0.081337,51.513583 +-0.106933,51.511149 +-0.101996,51.511024 +-0.08944,51.515586 +-0.080212,51.517728 +-0.103741,51.516879 +-0.104743,51.515672 +-0.084744,51.517578 +-0.093668,51.517534 +-0.102988,51.516615 +-0.093548,51.517631 +-0.079873,51.518244 +-0.104326,51.512518 +-0.07584,51.513385 +-0.087783,51.511099 +-0.088487,51.50942 +-0.081122,51.516988 +-0.105396,51.514154 +-0.104743,51.515663 +-0.080327,51.509502 +-0.08838,51.512673 +-0.10843,51.513637 +-0.088284,51.509803 +-0.10518,51.51728 +-0.104763,51.51588 +-0.086709,51.510596 +-0.105767,51.51425 +-0.109085,51.515922 +-0.098645,51.515349 +-0.108002,51.514223 +-0.084525,51.5094 +-0.105334,51.518443 +-0.093189,51.510701 +-0.09579,51.512605 +-0.093255,51.515333 +-0.10097,51.513849 +-0.081693,51.516089 +-0.081587,51.510053 +-0.078135,51.51434 +-0.081702,51.517249 +-0.102817,51.511019 +-0.086726,51.510857 +-0.081806,51.517188 +-0.102922,51.519258 +-0.103016,51.516643 +-0.084419,51.515369 +-0.078047,51.51299 +-0.07967,51.515193 +-0.075556,51.512257 +-0.097875,51.511335 +-0.083696,51.514377 +-0.107625,51.517751 +-0.081481,51.513595 +-0.107539,51.51114 +-0.080141,51.509481 +-0.088268,51.512599 +-0.098649,51.519755 +-0.088938,51.51966 +-0.084493,51.512915 +-0.103119,51.511051 +-0.08514,51.511919 +-0.100093,51.512063 +-0.082551,51.513504 +-0.091297,51.510463 +-0.083912,51.51439 +-0.075721,51.513132 +-4.39855,50.473275 +-3.778104,50.724355 +-3.081432,50.896067 +-4.98927,50.522505 +-5.18235,50.172132 +-4.863919,50.51696 +-4.188529,50.405075 +-5.100136,50.162492 +-3.171291,50.711304 +-4.330732,50.584682 +-3.407286,50.677172 +-5.016452,50.350566 +-3.469337,50.737929 +-3.652888,50.725668 +-4.660389,50.448565 +-3.495358,50.726833 +-4.113555,50.417911 +-3.767715,50.28816 +-3.189605,50.817514 +-4.124464,50.37606 +-4.293695,50.508013 +-5.12958,50.237978 +-5.224143,50.248758 +-4.158705,50.405011 +-3.481951,50.736132 +-4.14723,51.106674 +-3.837211,51.018799 +-5.294771,50.116159 +-5.256455,50.227183 +-4.144878,51.107095 +-4.111774,51.177468 +-3.935603,50.814408 +-3.546876,50.645949 +-5.399866,50.201084 +-4.291568,50.653816 +-4.063326,50.359559 +-5.129444,50.237837 +-4.126672,50.414083 +-4.924781,50.344966 +-4.177776,50.396768 +-3.568367,50.765345 +-4.181098,50.405664 +-4.147968,50.491789 +-4.780177,50.341383 +-4.105098,50.646183 +-3.981567,50.741237 +-3.301821,50.940355 +-3.137771,50.795702 +-3.456311,50.751096 +-3.500298,50.546389 +-4.162733,50.369211 +-4.564772,50.455724 +-4.695397,50.450557 +-4.967513,50.300758 +-3.51095,50.72173 +-4.78677,50.333957 +-4.338772,50.62576 +-4.135364,50.400154 +-4.140199,50.391592 +-3.060634,50.704503 +-4.040196,51.10101 +-5.081474,50.412143 +-4.143049,50.422957 +-4.330584,50.554788 +-4.129879,50.476121 +-4.12532,50.370036 +-5.027512,50.345627 +-3.517281,50.729598 +-4.120851,50.366943 +-4.133358,50.372407 +-4.940564,50.382898 +-3.42027,50.654846 +-4.032828,50.737171 +-3.39407,50.650054 +-5.523717,50.127323 +-5.077887,50.405897 +-5.350474,50.163665 +-4.168771,50.375197 +-4.158918,50.38647 +-4.385847,50.459766 +-4.425016,50.460287 +-4.134447,50.401349 +-4.01426,50.742404 +-4.928205,50.300092 +-4.782901,50.358148 +-3.310635,50.936425 +-4.152698,50.389859 +-4.126301,51.094835 +-5.056271,50.25472 +-3.528153,50.719681 +-3.386977,50.897701 +-4.395628,50.801556 +-4.765348,50.436366 +-4.704635,50.456657 +-4.086802,50.391825 +-5.049062,50.260468 +-3.535951,50.703858 +-4.240835,51.016366 +-3.798014,50.833914 +-3.501557,50.704909 +-3.115918,50.858701 +-4.499706,50.491212 +-4.931164,50.447362 +-4.234296,50.417615 +-3.715978,50.359755 +-4.111077,50.369774 +-4.227011,50.40787 +-5.11439,50.263367 +-3.994951,50.896185 +-4.480296,50.595902 +-4.671186,50.456908 +-3.503215,50.804047 +-4.197109,50.407395 +-4.718727,50.469955 +-5.233382,50.242653 +-3.49174,50.599443 +-4.833847,50.406562 +-3.568614,50.487299 +-4.151422,50.369745 +-4.142148,50.551663 +-4.163818,50.412822 +-4.4091,50.626242 +-3.56128,50.445254 +-5.268882,50.111548 +-5.53512,50.117413 +-4.17821,50.380741 +-3.01688,50.778006 +-4.55407,50.456868 +-5.237647,50.237074 +-4.709331,50.457726 +-3.281713,50.717597 +-4.136158,50.415933 +-4.681731,50.34537 +-4.122904,50.41292 +-5.516207,50.127776 +-4.636464,50.65134 +-4.456846,50.459745 +-4.71638,50.466142 +-3.233919,50.696592 +-3.555855,50.900995 +-4.934947,50.511385 +-4.431317,50.467477 +-5.0432,50.290443 +-4.109068,50.933813 +-4.258321,50.430831 +-4.948095,50.353714 +-3.549799,50.483136 +-4.139939,51.19371 +-4.649415,50.515072 +-4.648407,50.517227 +-4.903829,50.549532 +-3.923228,51.164992 +-4.111685,50.367964 +-3.505193,50.689744 +-4.108611,51.005464 +-4.085649,50.508105 +-5.242146,50.230831 +-3.517908,50.713483 +-5.029461,50.398515 +-3.535252,50.723194 +-3.516294,50.546083 +-5.08882,50.411894 +-4.110719,50.433595 +-3.18808,50.79994 +-4.297768,50.431237 +-4.97087,50.281602 +-3.561241,50.415818 +-5.24332,50.111294 +-3.514634,50.395452 +-3.798444,50.437647 +-4.077475,50.382836 +-3.590476,50.456154 +-4.182858,50.408446 +-4.533243,50.459734 +-4.831398,50.342107 +-4.194144,50.407505 +-4.365369,50.361918 +-3.530564,50.728022 +-3.769857,50.825756 +-3.627939,50.54238 +-3.549739,50.483002 +-5.18217,50.265848 +-3.448051,50.68554 +-5.29438,50.222595 +-4.536924,50.78227 +-4.082737,51.071877 +-5.495212,50.18911 +-4.150753,51.141629 +-3.685545,50.90932 +-4.593513,50.45827 +-5.523537,50.126771 +-3.210295,50.793605 +-4.107608,50.450749 +-4.417839,50.572787 +-3.462061,50.582867 +-5.290242,50.256565 +-5.311689,50.235021 +-3.61348,50.533066 +-4.160512,51.107212 +-4.138646,50.419917 +-4.051713,50.355007 +-4.037523,50.465417 +-4.121637,51.20873 +-3.53553,50.473873 +-4.150766,50.54126 +-5.393134,50.201802 +-3.544357,50.46925 +-4.436264,50.993079 +-5.301254,50.218181 +-3.563014,50.444457 +-4.172511,50.415781 +-3.564332,50.762575 +-3.657927,50.568821 +-3.66773,50.358262 +-5.2481,50.185558 +-3.99978,50.739559 +-3.513874,50.729391 +-4.111983,50.3734 +-4.7866,50.405428 +-3.419307,50.653383 +-4.315593,50.984374 +-3.486658,50.90294 +-5.077619,50.150308 +-3.609873,50.725263 +-3.916598,50.380806 +-4.098091,50.398962 +-4.2177,50.382378 +-4.082067,51.088742 +-4.553583,50.570922 +-4.185583,50.4071 +-4.120954,50.566972 +-5.573846,50.133508 +-5.04103,50.26721 +-4.112922,50.427736 +-5.10027,50.156344 +-4.387311,50.983091 +-4.207841,51.015456 +-5.274231,50.105891 +-4.783394,50.366574 +-4.321625,50.489101 +-4.146621,50.369932 +-4.187363,50.405106 +-4.380658,50.624146 +-4.06334,50.359559 +-5.238123,50.231267 +-4.051598,51.083993 +-5.268122,50.224723 +-4.092766,50.485015 +-3.704025,50.512601 +-5.060834,50.256515 +-4.775417,50.498408 +-4.691422,50.492691 +-4.133329,50.37239 +-4.435195,50.466154 +-5.258052,50.228802 +-3.604715,50.534672 +-4.008485,50.901385 +-4.023983,50.722341 +-5.254476,50.229011 +-5.075378,50.261637 +-3.741408,50.647898 +-3.521999,50.726938 +-3.687469,50.810636 +-4.080823,51.066119 +-4.223211,51.010686 +-4.99605,50.429723 +-5.044585,50.263321 +-3.915342,50.847965 +-4.913258,50.418919 +-4.117326,50.439978 +-5.154449,50.164698 +-4.225911,50.515526 +-3.477974,50.72325 +-5.027406,50.346404 +-3.561735,50.418446 +-4.961302,50.431648 +-3.355236,50.917265 +-4.089429,50.360379 +-5.694988,50.071223 +-5.540872,50.118389 +-4.411388,50.984413 +-3.521714,50.684484 +-3.983487,50.981072 +-3.172253,50.808823 +-4.595566,50.458198 +-3.940227,50.824935 +-4.939743,50.400999 +-3.94873,50.859985 +-4.11095,50.513117 +-4.103217,50.415895 +-5.049148,50.260502 +-4.148505,50.369916 +-4.09379,50.404822 +-4.923057,50.39515 +-3.648796,50.787438 +-5.033862,50.314706 +-5.188715,50.224332 +-4.04633,51.071405 +-3.831357,50.285385 +-4.146537,50.369952 +-3.497405,50.547298 +-4.04943,50.392067 +-5.181958,50.229411 +-3.656469,50.513153 +-5.179066,50.238639 +-3.489221,50.725437 +-5.546306,50.116936 +-4.193588,50.401858 +-3.466195,50.739416 +-3.088599,50.867404 +-4.177325,50.397055 +-5.258359,50.081635 +-3.809578,51.214747 +-4.844862,50.416097 +-4.772175,50.357712 +-3.5174,50.463102 +-3.582037,50.622705 +-5.327325,50.103211 +-4.147113,50.377721 +-4.097225,50.358305 +-4.339703,50.615748 +-3.649634,50.568327 +-3.767963,50.489235 +-3.604903,50.531467 +-5.046471,50.436383 +-4.772518,50.315831 +-4.864049,50.507458 +-4.102939,50.39658 +-3.524243,50.722745 +-4.224814,50.417752 +-3.150511,50.827951 +-4.25353,50.434018 +-5.347606,50.207956 +-4.11262,50.372849 +-4.171939,50.395285 +-4.078073,51.087563 +-5.297501,50.089516 +-3.478561,50.718504 +-5.532303,50.12134 +-5.125117,50.26558 +-4.515665,50.789287 +-5.274973,50.223414 +-4.18537,50.401257 +-4.137685,50.36855 +-4.593586,50.458314 +-3.64752,50.55913 +-3.541655,50.730088 +-4.946068,50.352309 +-5.044717,50.416962 +-4.316205,50.520672 +-3.391145,50.923506 +-5.275019,50.223467 +-3.579433,50.352103 +-4.027386,51.071357 +-4.16553,50.378441 +-4.08312,50.365286 +-4.820162,50.519432 +-4.189627,50.400485 +-4.441584,50.438902 +-3.824253,50.412628 +-3.779447,50.283907 +-3.329601,50.64176 +-3.534544,50.727538 +-3.529805,50.481179 +-3.542234,50.648879 +-4.207705,50.946226 +-4.164623,50.456727 +-4.127646,50.369535 +-4.024461,50.38656 +-4.626399,50.456489 +-4.13363,50.396651 +-3.794506,50.846118 +-5.261829,50.101635 +-4.29583,50.969924 +-3.279334,50.699943 +-5.059433,50.418321 +-3.500188,50.695726 +-5.307879,50.123838 +-4.106263,50.424277 +-5.269082,50.220926 +-3.536893,50.71318 +-4.180601,50.383511 +-3.798621,50.314039 +-4.12165,50.429906 +-4.000052,50.739627 +-4.385457,50.901608 +-3.613174,50.428483 +-4.224811,51.131268 +-4.142597,50.366778 +-4.152213,50.397774 +-3.007279,50.768197 +-3.203233,50.799829 +-3.177271,50.797828 +-3.355511,50.83316 +-5.29237,50.215401 +-3.533105,50.716891 +-5.440104,50.1841 +-4.940924,50.427784 +-5.191808,50.253205 +-3.462322,50.913301 +-5.135392,50.351195 +-4.099317,50.505917 +-3.535969,50.481323 +-4.097361,50.472898 +-4.71628,50.36182 +-4.128813,51.072737 +-4.113565,51.205674 +-2.999274,50.77984 +-4.411319,50.984468 +-4.191882,51.030452 +-4.12636,50.525824 +-4.147008,50.412127 +-3.424633,50.707835 +-4.243915,50.526333 +-4.093456,50.493916 +-4.528489,50.815768 +-4.933894,50.365543 +-4.130105,50.369175 +-4.096106,50.367373 +-3.572802,50.545881 +-3.503838,50.735447 +-4.484208,50.875659 +-4.086328,50.390647 +-4.170874,50.369815 +-3.596698,50.564695 +-5.060303,50.401899 +-4.152041,50.369751 +-3.514725,50.389928 +-3.552227,50.549458 +-4.556884,50.446084 +-3.505366,50.689832 +-4.170285,50.373846 +-4.671334,50.456284 +-5.103311,50.148391 +-4.129541,51.043504 +-5.47987,50.182023 +-4.77727,50.337333 +-3.543493,50.701069 +-4.213399,51.040533 +-5.283699,50.228367 +-3.540622,50.716728 +-3.535647,50.720131 +-3.534684,50.727509 +-5.40152,50.196159 +-5.061508,50.402911 +-4.073529,51.072499 +-4.136782,50.4154 +-5.411922,50.186183 +-4.178681,50.395941 +-3.711414,50.402498 +-4.787429,50.405399 +-4.824787,50.51395 +-3.526298,50.393725 +-4.693847,50.598639 +-4.140263,50.373962 +-5.082612,50.223294 +-4.837435,50.322422 +-4.134581,50.400582 +-4.119235,50.404209 +-4.747155,50.506653 +-5.024098,50.466976 +-4.177102,50.406314 +-5.090254,50.164734 +-4.848526,50.343641 +-5.306596,50.191229 +-3.575951,50.438751 +-5.090759,50.415297 +-4.120388,51.072054 +-5.030129,50.457472 +-3.457653,50.745018 +-4.12972,50.419892 +-3.527033,50.471259 +-4.895024,50.370413 +-3.514412,50.390688 +-5.434397,50.119612 +-4.186886,50.477537 +-4.133016,50.393937 +-4.118075,50.772303 +-3.531992,50.469485 +-4.231243,50.413167 +-5.48921,50.128906 +-3.323219,50.952048 +-3.536407,50.72343 +-3.35656,50.688988 +-5.037471,50.292644 +-4.160643,51.0653 +-4.671317,50.406479 +-3.527319,50.471831 +-4.173275,50.391878 +-4.431145,50.874078 +-4.515713,50.45783 +-3.501271,50.736272 +-3.411234,50.617669 +-3.586459,50.546973 +-3.85073,50.871932 +-5.137942,50.312687 +-4.116396,50.422276 +-4.114232,50.392985 +-5.371103,50.206412 +-4.127802,50.381818 +-4.940525,50.434973 +-5.101475,50.218806 +-5.125788,50.26576 +-4.729362,50.622323 +-4.054139,51.081745 +-5.133683,50.164316 +-5.446502,50.175471 +-5.091542,50.1656 +-4.638187,50.336319 +-4.213989,51.029865 +-3.635606,50.537147 +-4.148992,50.489819 +-3.514398,50.390688 +-3.545581,50.47999 +-4.044064,50.51155 +-3.920466,51.159102 +-4.569662,50.560386 +-3.539044,50.722181 +-3.398125,50.704657 +-3.519869,50.714546 +-4.788985,50.351121 +-4.569616,50.560333 +-5.372965,50.169032 +-5.490663,50.134647 +-3.590542,50.456873 +-4.252783,50.516394 +-4.55531,50.388903 +-3.990938,51.187205 +-3.549228,50.477738 +-4.349419,50.407907 +-4.12786,50.381844 +-5.072117,50.328867 +-4.007846,50.796207 +-5.304653,50.208125 +-3.613822,50.471536 +-4.462837,50.479316 +-3.743154,50.465182 +-4.764157,50.435261 +-5.03512,50.271611 +-3.827157,51.024541 +-3.590939,50.451489 +-4.062395,51.075079 +-4.083135,50.365313 +-4.192615,51.031176 +-5.03461,50.272191 +-4.453356,50.99425 +-3.994356,50.751326 +-4.038286,51.100783 +-5.56944,50.116262 +-4.142514,50.394266 +-4.11865,51.059315 +-3.516508,50.7254 +-3.574363,50.438017 +-3.545162,50.714789 +-4.539312,50.835473 +-4.470904,50.933953 +-4.124916,50.373902 +-5.147792,50.34629 +-4.062449,51.075007 +-4.059052,51.078223 +-4.976666,50.509011 +-4.148747,50.3955 +-4.154211,50.819739 +-4.14453,50.395902 +-4.134252,50.408926 +-4.70436,50.370311 +-4.210358,51.017117 +-5.348643,50.209959 +-5.075591,50.261676 +-3.325802,50.850669 +-4.67185,50.457702 +-3.646772,50.495528 +-3.321222,50.697982 +-4.096606,50.32224 +-3.861539,51.018189 +-3.564877,50.710892 +-4.096682,50.638887 +-4.290112,50.49255 +-3.617167,50.428724 +-5.299932,50.218929 +-4.061316,51.083228 +-4.063926,51.076428 +-3.810972,50.835521 +-3.539097,50.492128 +-4.98209,50.53172 +-5.048796,50.417548 +-5.281979,50.245167 +-5.093723,50.311022 +-4.163162,50.392561 +-5.03519,50.271609 +-4.562715,50.565603 +-3.469663,50.726584 +-3.612423,50.411756 +-5.106539,50.303339 +-4.101119,50.36624 +-5.078063,50.150683 +-3.48964,50.909916 +-3.591213,50.451665 +-4.548565,50.412653 +-3.533134,50.484742 +-3.562207,50.421228 +-4.361846,50.635583 +-3.525471,50.505932 +-3.628231,50.78234 +-5.183098,50.164842 +-4.166418,51.175407 +-4.470615,50.85223 +-3.561735,50.435984 +-4.837753,50.341898 +-3.206043,50.794899 +-5.095077,50.130583 +-4.31403,50.497851 +-4.001577,51.088557 +-4.127972,50.93794 +-5.28966,50.215541 +-3.478717,50.723016 +-3.301639,50.707691 +-4.107959,50.511841 +-3.384846,50.624542 +-4.932862,50.227632 +-4.612546,50.482508 +-3.579132,50.414578 +-3.330565,50.69838 +-3.021535,50.777488 +-5.153278,50.165423 +-3.392747,50.856121 +-4.951465,50.221871 +-5.28884,50.218713 +-4.927485,50.300254 +-4.001677,51.146058 +-5.162094,50.279089 +-3.522985,50.620956 +-4.589422,50.710455 +-3.469858,50.999817 +-4.129267,51.043761 +-5.20828,50.282005 +-5.561371,50.108971 +-3.58864,50.428685 +-3.129588,50.712246 +-3.761089,51.012813 +-4.919935,50.54401 +-5.107093,50.135687 +-4.965676,50.304412 +-4.124487,50.374045 +-3.583092,50.419372 +-4.160645,50.384243 +-3.557959,50.42991 +-5.19789,50.103838 +-4.088787,50.392176 +-5.268468,50.228959 +-4.206061,51.005588 +-4.069842,50.865813 +-4.085379,50.704593 +-3.20586,50.794946 +-4.938312,50.378547 +-3.972184,50.385165 +-4.174197,50.367441 +-4.48439,50.356134 +-4.058283,50.810518 +-3.565664,50.4296 +-4.791872,50.283137 +-4.862733,50.517178 +-5.134581,50.192998 +-3.520232,50.728813 +-4.136031,50.371477 +-5.01622,50.27526 +-3.193321,50.798465 +-4.610114,50.67468 +-4.35383,50.408034 +-4.14579,50.370523 +-4.325276,50.673735 +-5.472631,50.205424 +-4.143189,50.36835 +-4.17659,50.53505 +-4.195805,50.407492 +-5.43988,50.174174 +-3.58985,50.421915 +-3.772374,50.281695 +-4.15388,50.662442 +-3.69057,50.582067 +-5.053628,50.425688 +-2.984448,50.795838 +-5.072865,50.327606 +-4.102089,51.181285 +-3.645402,50.537647 +-4.085049,50.412795 +-4.131506,50.400413 +-5.124015,50.199859 +-3.473663,50.911621 +-4.458191,50.454697 +-3.728718,50.457627 +-4.694564,50.351073 +-3.591638,50.426126 +-4.713624,50.350512 +-4.186614,50.401981 +-3.072904,50.708501 +-4.061041,51.085401 +-4.075212,51.141961 +-4.815423,50.287318 +-3.576101,50.415716 +-3.588414,50.440434 +-4.139744,50.411172 +-5.128576,50.146381 +-4.115301,51.178582 +-5.216437,50.239751 +-3.595967,50.546403 +-3.508822,50.547691 +-3.488733,50.909136 +-3.498503,50.682393 +-4.944021,50.425043 +-5.145563,50.257894 +-3.504589,50.538428 +-3.19456,50.798066 +-3.499048,50.463304 +-3.722161,50.36899 +-4.132935,50.400288 +-3.50633,50.468121 +-3.55589,50.48533 +-3.580011,50.590536 +-4.86448,50.54833 +-3.377205,50.920254 +-4.599786,50.458076 +-5.079798,50.414086 +-5.183775,50.054676 +-3.539868,50.490274 +-4.806614,50.36517 +-3.456337,50.754666 +-4.583532,50.456118 +-4.234281,50.417597 +-4.46597,50.450143 +-4.435299,50.585429 +-3.696235,50.451854 +-5.291876,50.260117 +-3.622926,50.486771 +-4.544613,50.829007 +-5.268228,50.085522 +-4.13204,50.371244 +-5.183942,50.238145 +-5.094873,50.264501 +-3.535983,50.708741 +-4.802645,50.401129 +-3.494444,50.54561 +-3.587054,50.435551 +-4.917239,50.253771 +-4.359361,50.804581 +-3.961556,51.055601 +-3.363076,50.881265 +-3.967311,50.384339 +-4.269614,50.516724 +-4.934206,50.381313 +-4.156602,50.371088 +-5.478203,50.215153 +-3.780696,50.289158 +-4.532765,50.374537 +-3.625063,50.78055 +-3.894164,50.284063 +-3.728338,51.024948 +-3.475367,50.704766 +-4.544632,50.828575 +-4.149903,50.950192 +-4.14434,50.403856 +-4.143869,50.388431 +-4.062779,50.500175 +-4.15419,50.402289 +-5.22417,50.229838 +-4.036827,50.384275 +-5.006994,50.271416 +-4.947753,50.3525 +-3.372198,50.886931 +-4.96037,50.372914 +-3.501507,50.719289 +-4.689385,50.400693 +-5.091257,50.264147 +-4.098228,50.408439 +-5.096401,50.264469 +-4.139074,50.545199 +-5.228067,50.231061 +-3.536923,50.472073 +-3.533392,50.725673 +-3.541887,50.726784 +-3.533814,50.722124 +-4.233088,51.008546 +-4.145308,51.116692 +-3.664738,50.574975 +-3.339828,50.754094 +-4.224584,50.408042 +-4.207766,50.554718 +-4.066475,51.074369 +-4.304345,50.644884 +-3.71526,50.962702 +-3.982944,51.056544 +-3.194841,50.797946 +-5.101857,50.169382 +-3.741914,50.436798 +-4.733914,50.469114 +-4.0349,50.390839 +-4.456681,50.777117 +-4.682589,50.499794 +-3.57967,50.969669 +-3.393036,50.830523 +-5.170898,50.236254 +-4.159377,50.386677 +-5.213425,50.209365 +-3.603219,50.52801 +-3.566211,50.437219 +-3.546837,50.720082 +-4.702186,50.477717 +-4.115954,50.422482 +-3.378035,50.888652 +-5.480794,50.212233 +-4.728337,50.471385 +-5.073383,50.396103 +-4.671214,50.457168 +-4.874536,50.558849 +-4.077407,51.087053 +-4.354505,50.812998 +-3.482777,50.688251 +-6.298642,49.917742 +-4.127442,50.443202 +-3.850879,50.902579 +-3.387193,50.638957 +-4.465214,50.453748 +-5.281172,50.203817 +-5.284125,50.233951 +-4.500922,50.353414 +-4.455524,50.363718 +-4.16557,50.369752 +-4.011432,51.097795 +-5.163314,50.279065 +-5.326116,50.215806 +-4.89916,50.289675 +-3.590123,50.506947 +-5.070407,50.237381 +-4.729251,50.471355 +-3.591676,50.524589 +-4.161585,51.109998 +-3.874242,50.887592 +-5.441181,50.119186 +-4.336992,50.53507 +-3.510039,50.716328 +-4.124552,50.415777 +-3.538861,50.664698 +-4.47888,50.81784 +-3.614491,50.348347 +-4.883824,50.382628 +-4.118319,50.369147 +-3.127552,50.849192 +-5.15832,50.163945 +-3.946688,50.39842 +-3.510926,50.476587 +-4.141181,50.37435 +-3.526108,50.729123 +-4.158954,50.393782 +-3.547335,50.625474 +-3.906153,51.013341 +-3.166363,50.814512 +-3.548966,50.719766 +-4.360305,50.637575 +-3.774584,50.478557 +-5.0532,50.365204 +-3.534269,50.474078 +-4.106299,51.202676 +-5.102868,50.16877 +-4.193848,50.997508 +-4.071528,50.38001 +-4.065449,51.210482 +-5.40287,50.112867 +-3.212433,50.699615 +-4.375106,50.482445 +-4.513143,50.335394 +-4.1442,50.373323 +-4.167427,50.379332 +-3.591214,50.451683 +-3.31477,50.660167 +-4.087898,50.361693 +-4.949218,50.484389 +-4.214019,50.414171 +-4.091462,50.393172 +-4.031192,50.397253 +-3.58705,50.449771 +-3.588626,50.428254 +-4.081398,50.355486 +-4.21575,50.607533 +-3.592843,50.601927 +-3.568292,50.437964 +-4.601613,50.441296 +-3.581277,50.545641 +-4.093826,51.180174 +-5.269845,50.099817 +-3.926758,50.392375 +-4.102502,51.01821 +-5.241494,50.075576 +-5.48046,50.145444 +-3.97078,51.046659 +-3.565097,50.473434 +-3.475575,50.736636 +-3.650313,50.438916 +-4.357266,50.626304 +-5.101254,50.305657 +-4.148587,50.412187 +-4.130614,50.370793 +-4.182702,50.481564 +-4.174541,50.411552 +-3.619842,50.521079 +-4.134521,50.402697 +-3.181136,50.773841 +-3.649537,50.917586 +-4.432148,50.467199 +-3.506053,50.751058 +-3.413474,50.618847 +-5.509957,50.15975 +-4.084968,50.492324 +-3.830464,50.83716 +-5.08157,50.154701 +-4.095322,50.359149 +-4.069042,50.375575 +-5.079288,50.406219 +-3.540589,50.702358 +-5.311552,50.182865 +-5.033691,50.428819 +-4.701601,50.377679 +-3.600647,50.599131 +-3.392801,50.85603 +-3.463397,50.712831 +-3.600056,50.610875 +-4.721123,50.474127 +-5.077138,50.159389 +-3.151569,50.715637 +-3.545615,50.479756 +-5.285634,50.248941 +-4.11783,50.396049 +-5.112856,50.176131 +-5.300609,50.212693 +-5.12266,50.187058 +-5.044727,50.41689 +-3.539195,50.467385 +-3.511831,50.520833 +-3.500936,50.732454 +-4.037229,50.315165 +-4.169045,50.956142 +-4.894723,50.412797 +-3.35524,50.762981 +-3.5012,50.736291 +-4.136373,50.41539 +-3.551131,50.477749 +-3.531462,50.525442 +-4.794307,50.389295 +-5.334427,50.210134 +-4.528475,50.815768 +-5.139089,50.122438 +-3.173417,50.807687 +-4.874407,50.369054 +-5.237708,50.225152 +-4.806745,50.528716 +-3.20728,50.795561 +-4.130763,50.381341 +-5.617202,50.129537 +-4.209027,50.60642 +-5.061847,50.248905 +-4.788676,50.35881 +-3.64582,50.555718 +-3.238784,50.693141 +-4.084187,50.356264 +-3.565578,50.941108 +-3.904764,50.934178 +-4.064092,51.08049 +-5.195217,50.152527 +-5.156197,50.257012 +-3.721731,50.531713 +-5.08246,50.413458 +-4.705484,50.358906 +-4.551077,50.81837 +-3.066527,50.776312 +-3.188411,50.79901 +-3.459949,50.710824 +-4.190723,51.142164 +-3.83836,50.417074 +-4.076374,50.703702 +-4.208284,51.017867 +-4.15142,50.375303 +-3.456337,50.587337 +-3.647444,50.333495 +-4.136406,51.09439 +-5.189531,50.059519 +-5.290673,50.215198 +-4.127106,50.413725 +-4.199966,50.376697 +-5.26254,50.121766 +-4.8191,50.425117 +-3.279938,50.700251 +-4.396668,50.629242 +-4.332258,50.582115 +-3.329607,50.817099 +-3.168683,50.812483 +-5.108915,50.401886 +-4.704008,50.356691 +-4.36862,50.952083 +-3.388542,50.851818 +-4.613507,50.536923 +-4.100542,50.408559 +-3.534611,50.719632 +-4.083572,50.391649 +-5.428719,50.182629 +-5.099947,50.264402 +-4.912865,50.50925 +-3.522367,50.697219 +-3.25242,50.698508 +-4.678162,50.402319 +-3.834428,51.231132 +-4.141437,50.397218 +-4.044893,51.073454 +-3.681473,50.43042 +-3.324585,50.873372 +-5.081935,50.386071 +-3.23687,50.688737 +-5.175219,50.256295 +-4.706386,50.534647 +-4.127487,50.367541 +-4.047813,51.053266 +-4.135309,50.401126 +-3.147011,50.796367 +-4.196889,51.02203 +-5.252302,50.229215 +-3.584887,50.419167 +-3.587914,50.531466 +-5.055826,50.401882 +-5.315159,50.218531 +-3.54968,50.482499 +-4.14699,50.393994 +-3.57276,50.432571 +-5.105353,50.303901 +-3.595606,50.523591 +-4.465299,50.411759 +-4.880379,50.375688 +-3.508904,50.904768 +-3.313329,50.906782 +-4.144225,51.150383 +-5.108872,50.172378 +-4.92898,50.353802 +-4.953255,50.525809 +-4.08439,51.072126 +-3.581277,50.545659 +-4.028457,50.748174 +-3.574188,50.593412 +-3.52108,50.481194 +-4.065986,50.361554 +-3.956652,50.385121 +-3.566987,50.435131 +-4.529856,50.336768 +-5.114081,50.186992 +-5.200342,50.291742 +-3.192801,50.699377 +-5.17256,50.165797 +-3.786814,50.304094 +-4.478443,50.966774 +-3.621764,50.50964 +-3.989532,50.740544 +-3.565206,50.473756 +-3.529947,50.481213 +-3.651482,50.35594 +-5.239854,50.056856 +-3.801927,50.276662 +-4.192239,51.030482 +-4.168417,50.369285 +-3.013285,50.721256 +-5.127325,50.16796 +-4.756553,50.345562 +-3.396004,50.855758 +-4.912702,50.400448 +-3.562013,50.410645 +-3.467494,50.711611 +-4.786568,50.288707 +-5.309562,50.174151 +-5.20706,50.264704 +-3.558583,50.447205 +-5.080302,50.155679 +-3.52604,50.485069 +-4.065302,50.501111 +-4.204343,51.018643 +-3.703266,50.536968 +-3.293978,50.806906 +-4.512637,50.347908 +-4.148245,50.417375 +-3.986705,50.382885 +-3.619021,50.9594 +-3.528407,50.461429 +-5.480693,50.211228 +-4.991627,50.482829 +-5.641343,50.113316 +-4.364134,50.361395 +-4.102474,50.424858 +-4.093943,50.419453 +-5.137186,50.315073 +-3.63947,50.916136 +-3.373692,50.622606 +-3.350193,50.633843 +-5.325307,50.196326 +-3.393114,50.628751 +-3.543847,50.715292 +-3.757162,50.516128 +-4.206244,50.407717 +-4.782701,50.35809 +-5.04965,50.240474 +-5.142675,50.303509 +-4.133746,50.384812 +-5.128196,50.169718 +-5.060362,50.401952 +-5.063982,50.344833 +-4.209588,51.018913 +-3.469634,50.726567 +-3.704802,50.238841 +-3.704669,50.365884 +-5.280065,50.229964 +-3.96291,50.74113 +-3.661798,50.790824 +-3.548941,50.50904 +-3.11596,50.858701 +-4.138258,50.370356 +-4.840156,50.316923 +-3.553146,50.712497 +-4.60096,50.702148 +-4.220642,50.407704 +-3.583945,50.447043 +-3.545614,50.700969 +-3.540622,50.716737 +-3.980368,50.748093 +-4.12413,50.381795 +-3.278689,50.911195 +-3.604986,50.534758 +-3.780662,50.284122 +-4.551149,50.751945 +-4.710334,50.459483 +-3.559952,50.486669 +-3.632838,50.783858 +-3.070046,50.781352 +-5.100302,50.264464 +-3.403497,50.825182 +-3.511739,50.730408 +-4.43099,50.415216 +-5.155396,50.302814 +-5.045738,50.256103 +-5.128296,50.169967 +-3.332926,50.904698 +-4.11736,50.552009 +-3.465815,50.716785 +-3.54465,50.700505 +-3.622428,50.576291 +-3.525538,50.506255 +-3.798395,50.437467 +-4.365666,50.966794 +-5.308692,50.151235 +-4.092005,50.728722 +-3.209813,50.742503 +-5.286753,50.227498 +-3.954172,50.865416 +-4.116661,50.698543 +-3.534146,50.470716 +-5.258367,50.081553 +-4.131684,51.179517 +-4.496514,50.457407 +-4.17848,50.392464 +-4.060037,50.389434 +-3.566225,50.711396 +-3.60324,50.534017 +-4.301872,50.645806 +-5.295022,50.212591 +-5.017039,50.450625 +-5.3527,50.108642 +-3.514325,50.721408 +-3.512177,50.740493 +-5.442347,50.173211 +-3.51534,50.732672 +-3.190554,50.800679 +-3.465718,50.581445 +-4.457628,50.755142 +-4.22151,50.410331 +-4.14871,50.370101 +-5.218179,50.224175 +-4.145862,50.395499 +-4.970492,50.47021 +-5.140695,50.232325 +-3.224868,50.709494 +-5.133447,50.268486 +-5.175242,50.31188 +-5.09742,50.362235 +-4.130063,50.369176 +-3.876911,50.39346 +-4.18631,50.402418 +-4.475865,50.595762 +-3.41031,50.632636 +-4.014634,50.335571 +-3.532418,50.722745 +-4.184581,50.401542 +-4.683717,50.659246 +-4.129921,50.370716 +-5.456664,50.150348 +-3.510417,50.734697 +-3.531673,50.679038 +-5.302494,50.107006 +-4.09382,50.640999 +-3.366695,50.906816 +-5.078346,50.339353 +-4.183598,50.421177 +-4.223813,50.410809 +-4.342852,50.391481 +-3.542242,50.490863 +-4.041475,51.065212 +-4.054275,51.09865 +-3.439061,50.722955 +-4.381403,50.897967 +-3.490241,50.685682 +-3.835751,51.013255 +-4.185256,50.401224 +-5.037193,50.42127 +-3.208535,50.748478 +-4.093211,50.395515 +-4.139338,50.420912 +-3.080189,50.734019 +-5.123741,50.194379 +-3.547084,50.46603 +-3.422345,50.616761 +-5.074884,50.152845 +-4.259418,50.418685 +-3.912703,50.373513 +-4.139716,50.411173 +-3.982436,50.887144 +-4.063612,50.359347 +-4.062597,51.081866 +-5.267427,50.221531 +-5.018466,50.270147 +-4.030462,51.073804 +-3.135142,50.843534 +-3.918097,50.788706 +-5.29775,50.089481 +-4.063669,50.704962 +-3.524213,51.00413 +-2.996967,50.782072 +-4.085502,51.067025 +-4.05287,51.08112 +-5.398124,50.197869 +-3.592164,50.520661 +-3.519304,50.473708 +-5.138925,50.132554 +-5.292434,50.21531 +-4.172284,50.406198 +-3.469642,50.575442 +-4.13646,50.415451 +-4.123071,50.378873 +-4.139121,50.38922 +-4.238633,51.008548 +-4.528618,50.815792 +-4.088008,50.391417 +-4.096926,50.395214 +-4.258991,50.923462 +-5.075319,50.396663 +-4.968255,50.400068 +-3.474918,50.91576 +-4.26127,50.507154 +-3.798004,50.297319 +-3.573748,50.429643 +-3.319691,50.736742 +-3.528354,50.464596 +-3.497206,50.703031 +-5.533051,50.119905 +-3.534173,50.674554 +-3.593096,50.551253 +-3.425422,50.908641 +-4.080275,51.071723 +-3.564365,50.549413 +-4.128318,50.387691 +-5.151798,50.287699 +-4.701051,50.430106 +-5.059824,50.218436 +-5.077079,50.290405 +-3.534961,50.722532 +-3.574763,50.416112 +-3.560843,50.445269 +-3.513291,50.395271 +-4.10521,50.35924 +-3.363657,50.683752 +-4.714324,50.350469 +-5.498686,50.195798 +-3.502934,50.712526 +-4.806903,50.247046 +-3.808758,50.410451 +-4.173352,50.412924 +-4.051886,50.396485 +-3.577709,50.475943 +-4.140907,50.426963 +-3.549704,50.482364 +-4.408737,50.565744 +-4.800428,50.399564 +-5.461867,50.192098 +-4.134388,50.383451 +-5.252186,50.167955 +-3.592708,50.45634 +-3.583428,50.445485 +-3.938852,50.739968 +-3.324903,50.681366 +-4.140066,50.378949 +-4.165263,50.93452 +-3.712517,50.536796 +-4.876083,50.381642 +-3.893248,50.844737 +-3.743381,50.465224 +-4.066031,51.082354 +-3.445965,50.599229 +-3.580779,50.448408 +-3.554902,50.470692 +-3.531429,50.466012 +-5.153949,50.3448 +-5.425822,50.183839 +-3.412833,50.615356 +-5.162904,50.279022 +-3.517458,50.692517 +-3.658384,50.790594 +-5.082913,50.336524 +-4.619274,50.438462 +-5.433133,50.164865 +-3.530356,50.461601 +-4.864374,50.547748 +-3.509307,50.745566 +-3.90265,50.788123 +-5.283364,50.217986 +-4.462806,50.943676 +-3.411137,50.748891 +-4.238509,51.008631 +-5.034177,50.409987 +-3.541927,50.45867 +-4.106716,50.958282 +-3.500756,50.39261 +-3.584475,50.42876 +-5.526194,50.126375 +-3.567628,50.438324 +-3.597856,50.42891 +-4.705762,50.350705 +-4.220998,50.815851 +-3.092049,50.879422 +-4.213805,51.038277 +-4.016561,51.069278 +-4.048339,51.064544 +-3.529806,50.461582 +-3.298701,50.894769 +-3.570338,50.486584 +-4.795547,50.374504 +-4.837231,50.4062 +-4.108418,50.399251 +-4.866347,50.515821 +-4.956618,50.429923 +-4.137962,50.370011 +-4.871223,50.565902 +-3.382374,50.870012 +-3.189152,50.799695 +-4.141808,50.393272 +-3.903982,50.787723 +-3.683047,50.433527 +-4.527914,50.370055 +-4.087806,51.072533 +-3.967523,50.38402 +-3.517683,50.69246 +-5.078035,50.150684 +-5.188439,49.995632 +-4.741505,50.465868 +-3.923438,51.16489 +-4.141083,51.09979 +-3.716837,50.44352 +-4.649931,50.452996 +-4.159148,50.420339 +-4.135655,50.400679 +-4.113347,50.383206 +-3.481356,50.736616 +-3.628141,50.512977 +-5.443087,50.175132 +-4.569435,50.428933 +-3.24685,50.847645 +-3.777859,50.286495 +-4.090209,51.0682 +-3.514718,50.54622 +-3.517141,50.729645 +-3.40022,50.849925 +-3.712598,50.994091 +-3.465317,50.712645 +-4.357329,50.409042 +-4.791175,50.333824 +-4.06669,50.973414 +-4.177469,50.412154 +-5.313505,50.104002 +-5.219944,50.040821 +-3.782743,50.281977 +-3.488289,50.729981 +-4.752184,50.478667 +-5.404684,50.137833 +-4.752821,50.475063 +-3.501292,50.731622 +-3.551824,50.716229 +-5.081622,50.152028 +-5.281063,50.233471 +-4.42548,50.474309 +-4.749053,50.439532 +-4.641224,50.336592 +-5.306362,50.095956 +-5.086206,50.413682 +-3.549224,50.478044 +-3.365516,50.908305 +-3.594965,50.561463 +-3.549026,50.720727 +-3.086743,50.882933 +-3.208452,50.794236 +-3.868754,50.84569 +-4.403777,50.47046 +-4.21662,50.410191 +-3.489451,50.732664 +-5.082286,50.413588 +-5.546283,50.117 +-4.360285,50.643935 +-3.47177,50.725101 +-5.128142,50.32774 +-4.455671,50.356223 +-5.100332,50.305943 +-4.964158,50.500066 +-3.469532,50.726019 +-5.284543,50.264283 +-4.906744,50.403817 +-5.300732,50.222388 +-4.698173,50.449332 +-4.884845,50.41728 +-5.299776,50.21403 +-3.485304,50.696088 +-4.236937,50.375065 +-3.507714,50.474866 +-3.573052,50.432432 +-4.161247,51.111335 +-4.120118,51.072086 +-4.067472,51.075601 +-3.455195,50.708689 +-5.191852,50.253239 +-4.174039,50.370124 +-5.109323,50.263989 +-5.173546,50.165671 +-4.165503,51.058725 +-4.076285,50.83521 +-4.051235,50.912648 +-4.738842,50.34411 +-4.67993,50.45856 +-4.869903,50.553018 +-3.574511,50.43779 +-4.212202,51.03757 +-3.948091,50.957421 +-4.059198,50.389565 +-3.524119,50.722854 +-4.138636,50.732372 +-4.224673,50.417754 +-4.296555,50.765802 +-4.704123,50.442259 +-4.418406,50.425444 +-5.153158,50.289165 +-3.598018,50.556969 +-3.514019,50.679368 +-4.022626,50.377804 +-4.472146,50.632098 +-3.383984,50.858132 +-3.508408,50.52764 +-3.782508,50.282448 +-4.223953,50.78241 +-3.541416,50.504454 +-4.136501,50.376316 +-3.664998,50.561112 +-3.920842,50.389082 +-4.980808,50.364187 +-4.822783,50.341894 +-3.936294,50.790969 +-5.145112,50.256584 +-3.08663,50.882943 +-3.797299,50.654657 +-4.108429,50.394745 +-3.368567,50.684648 +-3.582989,50.498554 +-4.383493,50.671246 +-3.559102,50.463837 +-4.445905,50.608781 +-4.238227,50.672499 +-3.495698,50.724607 +-4.316375,50.504271 +-5.234467,50.286811 +-3.950409,50.389993 +-4.108633,50.376186 +-4.142357,50.376109 +-3.991871,51.065043 +-5.060154,50.14692 +-3.194232,50.803024 +-4.331942,50.981368 +-4.232612,51.126748 +-4.797696,50.334774 +-4.681808,50.401335 +-4.836313,50.516557 +-4.946947,50.535297 +-4.699264,50.428411 +-4.818893,50.289969 +-5.278734,50.233258 +-3.925857,50.907679 +-4.180809,50.937333 +-3.872962,50.900347 +-3.821267,51.043438 +-4.211563,51.174364 +-4.046121,50.715695 +-5.267368,50.094876 +-3.528331,50.705136 +-4.259418,50.902893 +-3.085795,50.717851 +-3.001678,50.777472 +-3.410907,50.623294 +-5.280046,50.243377 +-4.076908,50.94127 +-3.732249,50.459427 +-3.315337,50.660197 +-4.048535,51.121945 +-3.616995,50.417484 +-3.753961,50.321854 +-4.008778,51.102139 +-4.352215,50.981069 +-3.37764,50.925339 +-4.574942,50.484201 +-4.180451,50.397104 +-5.06826,50.154136 +-4.328858,50.856747 +-5.096423,50.214632 +-3.331266,50.69865 +-4.172843,50.37012 +-4.227223,50.895886 +-3.928902,51.173811 +-3.983464,51.056706 +-4.357493,50.637057 +-4.198519,51.184961 +-4.089498,50.392344 +-5.085694,50.414253 +-3.380451,50.62892 +-3.748236,50.947761 +-5.052235,50.381493 +-5.123091,50.183358 +-5.391067,50.208439 +-5.289761,50.25692 +-4.083802,51.0654 +-3.467989,50.580427 +-5.047681,50.257752 +-5.069209,50.261071 +-4.086113,51.157658 +-4.271905,50.503035 +-5.216345,50.239636 +-3.715046,50.995143 +-4.167051,50.372629 +-4.727481,50.444043 +-4.112807,50.968865 +-5.043744,50.252125 +-5.12586,50.164824 +-3.602929,50.533608 +-4.822789,50.402387 +-3.52493,50.733429 +-3.383917,50.666552 +-3.144721,50.796147 +-3.946835,50.782402 +-4.692391,50.63896 +-4.054578,51.081324 +-5.478119,50.210343 +-5.119117,50.204273 +-4.040929,50.719446 +-4.844434,50.573666 +-3.52645,50.686473 +-3.323914,50.962004 +-3.596963,50.901204 +-4.127132,50.370309 +-4.392225,50.815783 +-4.139013,50.3887 +-3.006929,50.768371 +-5.086642,50.413679 +-3.450935,50.595417 +-3.032301,50.774966 +-3.266099,50.70221 +-4.708475,50.555592 +-4.118944,50.370854 +-4.925154,50.456805 +-4.209705,50.407678 +-3.400356,50.850211 +-4.768152,50.425532 +-4.065621,50.362217 +-3.525173,50.458585 +-3.55593,50.396804 +-4.12416,50.379015 +-5.066661,50.147099 +-4.692716,50.399374 +-3.58232,50.429572 +-4.136386,50.371569 +-5.042946,50.256329 +-4.390423,50.612622 +-4.164315,50.38574 +-3.382733,50.751426 +-4.328398,50.667314 +-4.096374,50.396087 +-3.99994,50.729672 +-4.650666,50.363803 +-4.09631,50.474626 +-4.138545,50.370162 +-5.128604,50.146381 +-3.564112,50.401299 +-5.555549,50.129132 +-4.153148,50.368103 +-3.932614,51.169181 +-4.099728,50.702743 +-4.992263,50.402501 +-4.104405,50.367097 +-5.07064,50.237078 +-3.461101,50.711421 +-4.488629,50.454023 +-3.486737,50.704703 +-3.923115,51.091079 +-4.856777,50.290941 +-4.445904,50.609581 +-5.096848,50.213613 +-4.137797,50.370734 +-4.082792,50.346566 +-3.461091,50.711565 +-4.194942,50.998036 +-4.17806,50.410929 +-3.568776,50.431311 +-4.375575,50.811932 +-3.846659,50.719881 +-5.191743,50.253287 +-4.204621,51.017891 +-3.957743,50.387711 +-5.692021,50.074997 +-3.495608,50.926144 +-3.532677,50.466706 +-3.80046,51.020055 +-3.590944,50.452038 +-4.96276,50.3641 +-2.984553,50.795459 +-4.556714,50.456009 +-4.941774,50.380852 +-5.536747,50.118047 +-5.295318,50.215264 +-4.336762,50.6106 +-3.124469,50.69011 +-5.062238,50.336297 +-5.187196,50.218166 +-5.186372,50.120591 +-3.504055,50.692223 +-3.512503,50.682401 +-3.515233,50.382924 +-4.5282,50.829598 +-5.047122,50.26284 +-3.415276,50.618582 +-5.068086,50.295761 +-4.457421,50.754706 +-4.141458,50.368328 +-5.045755,50.263632 +-3.535506,50.665939 +-3.508214,50.708438 +-4.754612,50.341183 +-4.055232,50.388295 +-4.136854,50.400117 +-4.182792,50.408537 +-4.093517,51.179991 +-5.289167,50.148669 +-4.321401,50.653144 +-2.96889,50.825708 +-3.640515,50.478915 +-3.549797,50.45289 +-3.586292,50.436371 +-4.109879,50.389043 +-5.441412,50.17385 +-5.061714,50.418108 +-4.093707,51.180077 +-5.553858,50.124064 +-4.836452,50.516752 +-4.314875,50.416461 +-4.122099,50.43176 +-4.152755,50.389867 +-5.060205,50.401911 +-5.419878,50.185166 +-3.660819,50.79082 +-4.076875,50.393901 +-4.073404,50.385292 +-3.080399,50.780051 +-4.227691,51.010762 +-5.289877,50.215643 +-5.425754,50.183877 +-4.171303,50.379197 +-4.836067,50.515978 +-3.533335,50.725674 +-3.669289,50.449123 +-5.398255,50.188275 +-5.049109,50.260548 +-4.148793,50.40274 +-3.692401,50.594542 +-4.333896,50.533252 +-4.657982,50.637035 +-4.715493,50.471074 +-4.798979,50.337945 +-4.785274,50.541033 +-3.364021,50.910193 +-4.533089,50.790853 +-3.491685,50.720036 +-5.676205,50.121474 +-3.385171,50.65338 +-3.591477,50.451554 +-3.532376,50.721046 +-3.544621,50.700497 +-3.59897,50.542539 +-4.084874,50.681074 +-4.332426,50.38946 +-5.52924,50.126489 +-4.136435,50.415209 +-5.284114,50.233987 +-4.338322,50.62665 +-4.127014,51.200826 +-4.161161,51.119602 +-4.14645,50.376124 +-4.676952,50.621921 +-4.132042,50.400458 +-5.052728,50.422428 +-4.19677,51.031593 +-4.194538,50.597268 +-4.127651,50.443153 +-5.417038,50.189352 +-3.524644,50.726795 +-4.354371,50.627514 +-4.185074,50.401245 +-5.258862,50.0361 +-4.219721,50.410285 +-5.085206,50.263022 +-4.42776,50.412621 +-5.421441,50.184103 +-3.559925,50.363338 +-4.068365,50.845936 +-3.475718,50.567406 +-4.34098,50.627208 +-3.188138,50.799993 +-3.37674,50.620007 +-4.446477,50.458938 +-5.176171,50.320959 +-5.677202,50.121703 +-4.677634,50.414915 +-5.233501,50.248344 +-3.520874,50.400092 +-3.506322,50.690961 +-4.117695,50.402798 +-3.377461,50.882202 +-5.103611,50.304758 +-4.110233,50.933459 +-4.14422,50.37406 +-3.519489,50.475522 +-5.054857,50.404327 +-3.457428,50.813036 +-3.939615,50.736133 +-5.094602,50.265084 +-4.089307,50.387697 +-5.041039,50.262514 +-4.106914,50.367862 +-3.363177,50.926606 +-4.109586,50.384039 +-3.608962,50.448768 +-5.420579,50.18322 +-4.44364,50.373818 +-3.420085,50.863201 +-5.480021,50.145754 +-4.728829,50.475287 +-3.522773,50.392143 +-4.196431,51.056682 +-3.914845,51.129391 +-4.085446,50.96665 +-3.524477,50.919107 +-4.259884,50.419009 +-4.180039,50.381669 +-4.49644,50.457876 +-4.103457,50.620516 +-3.666897,50.982522 +-3.883323,51.104624 +-3.467489,50.579345 +-4.152642,50.368418 +-5.048768,50.260485 +-4.525972,50.592302 +-5.098298,50.264509 +-5.391585,50.166726 +-4.06426,51.07368 +-3.950468,50.390064 +-5.239974,50.066928 +-4.36116,50.547363 +-3.935126,51.050403 +-4.10271,50.415257 +-5.53906,50.094594 +-3.399007,50.704809 +-3.558596,50.44716 +-4.463435,50.801708 +-3.504793,50.764816 +-4.134739,50.384371 +-3.591882,50.450613 +-5.063104,50.263688 +-3.714504,50.362547 +-4.692462,50.459395 +-3.526116,50.462925 +-4.135292,50.395424 +-3.488616,50.697844 +-3.744457,50.520852 +-3.117842,50.793584 +-4.544828,50.829309 +-3.966498,51.136466 +-4.228126,50.405834 +-5.107639,50.226719 +-4.141523,50.411598 +-3.929236,51.173589 +-3.48796,50.907627 +-3.597725,50.52617 +-3.546126,50.473364 +-3.936941,51.171735 +-3.54385,50.731336 +-3.091878,50.787517 +-4.983095,50.353343 +-4.147006,50.412091 +-4.299191,50.503281 +-5.396029,50.124529 +-5.167739,50.035665 +-3.644175,50.586329 +-5.524762,50.126689 +-4.991773,50.28004 +-3.61565,50.532155 +-5.289182,50.213701 +-3.582353,50.442379 +-5.008056,50.353851 +-4.414715,50.530191 +-4.418347,50.469591 +-4.145001,50.373623 +-5.116686,50.380898 +-3.519877,50.45994 +-4.162901,50.377546 +-5.072221,50.417084 +-4.024175,51.014116 +-4.145396,50.370207 +-4.968016,50.433842 +-5.072046,50.231679 +-4.174419,50.371053 +-3.310699,50.936667 +-4.762383,50.365114 +-4.100917,50.503828 +-4.150908,50.379837 +-5.071404,50.15578 +-3.562219,50.421174 +-3.936883,51.171709 +-3.276707,50.900093 +-4.220932,50.50472 +-4.097729,50.396504 +-4.114482,50.42419 +-5.223946,50.175805 +-4.328655,50.488133 +-3.551199,50.714448 +-4.175391,50.968237 +-4.118158,50.5928 +-4.129027,50.381841 +-3.588528,50.440478 +-5.034901,50.416904 +-3.6282,50.501177 +-3.086233,50.882983 +-4.093715,50.641189 +-4.459826,50.791369 +-5.180018,50.009078 +-4.350637,50.629469 +-4.208365,50.529181 +-4.820577,50.428653 +-3.401633,50.619952 +-5.299976,50.110469 +-4.969159,50.434101 +-3.590421,50.425513 +-5.134508,50.192964 +-3.620067,50.779657 +-3.956142,50.767119 +-3.998599,50.381745 +-3.994974,50.730864 +-3.159246,50.819466 +-3.540637,50.716764 +-5.545682,50.123064 +-4.351546,50.406812 +-3.251011,50.780675 +-3.660191,50.375882 +-3.457447,50.939838 +-3.499544,50.727463 +-3.812298,51.024908 +-4.368287,50.629229 +-5.677486,50.131978 +-3.897987,50.349398 +-4.095914,50.395538 +-4.24774,51.010549 +-5.30707,50.086751 +-4.150877,50.543389 +-4.129929,50.370887 +-3.858776,50.799425 +-4.36256,50.391397 +-4.018022,50.529292 +-5.539566,50.118132 +-4.315456,50.503084 +-3.50442,50.706724 +-4.234649,50.760979 +-4.123122,51.209584 +-5.404938,50.19417 +-5.092462,50.230543 +-4.130612,50.370749 +-5.480147,50.212783 +-4.057926,50.759754 +-5.478985,50.215112 +-3.867971,50.915293 +-5.064801,50.240938 +-5.129091,50.172699 +-4.199538,51.014732 +-5.20993,50.24791 +-3.78395,50.665637 +-3.541368,50.651814 +-4.732766,50.465839 +-3.533838,50.482978 +-4.142007,50.380208 +-4.049103,50.507396 +-5.099941,50.155795 +-4.141325,50.396599 +-4.052741,50.913242 +-4.134112,50.366016 +-4.287491,50.487915 +-4.120227,50.349478 +-5.238433,50.238122 +-4.10647,51.060111 +-4.106487,50.511094 +-3.725874,50.542768 +-4.160591,50.387069 +-4.943851,50.352374 +-3.304544,50.690913 +-5.290269,50.256555 +-3.3049,50.749121 +-3.507599,50.466827 +-4.156678,50.36873 +-4.252466,50.367975 +-3.495026,50.678993 +-3.6152,50.533025 +-4.138103,50.415987 +-4.863046,50.280298 +-4.784387,50.340059 +-4.124738,50.443845 +-4.41132,50.984477 +-4.177465,50.374629 +-4.522255,50.594667 +-3.514548,50.730066 +-4.57602,50.441812 +-4.118921,50.381063 +-4.133882,50.406018 +-4.187668,51.016385 +-3.849362,50.721259 +-3.54579,50.466964 +-5.302012,50.086598 +-4.973884,50.367468 +-5.368308,50.206538 +-3.442447,50.676346 +-3.573413,50.517166 +-4.129277,50.543921 +-5.374213,50.111599 +-3.234611,50.881184 +-5.543109,50.114011 +-3.381792,50.625487 +-4.217813,50.382384 +-4.138428,50.377576 +-4.712144,50.357095 +-3.075039,50.869121 +-4.147359,50.397181 +-3.614667,50.410286 +-4.131892,50.39304 +-5.162406,50.279549 +-4.445696,50.390532 +-5.488801,50.134631 +-5.086967,50.324911 +-3.948546,50.394305 +-4.109799,50.375203 +-4.055029,51.081199 +-5.073089,50.231975 +-4.02045,50.379578 +-5.268221,50.072892 +-4.142714,50.402123 +-3.83712,50.307105 +-4.08763,50.390506 +-5.297673,50.214243 +-4.224548,50.928062 +-4.824761,50.237086 +-3.646033,50.667514 +-3.357892,50.768886 +-4.398204,50.473417 +-4.147507,50.363395 +-3.397003,50.846879 +-4.455153,50.35626 +-3.698704,50.280699 +-3.593237,50.526114 +-5.399367,50.186173 +-4.340348,50.489113 +-3.98215,50.886753 +-3.593965,50.525133 +-5.056354,50.255581 +-4.731103,50.471213 +-5.539818,50.133481 +-5.340778,50.107592 +-4.10034,50.624818 +-4.727666,50.350957 +-4.044769,51.074211 +-3.182381,50.814197 +-3.614695,50.410285 +-3.414027,50.620306 +-5.498358,50.151464 +-5.569425,50.116254 +-4.765348,50.436375 +-4.242749,51.017022 +-4.856446,50.277681 +-3.507618,50.547976 +-4.101042,50.384544 +-3.105712,50.824895 +-3.465025,50.72917 +-3.392907,50.671004 +-3.574844,50.44061 +-5.199172,50.096435 +-4.145528,50.537507 +-4.024876,51.19816 +-4.265258,50.812509 +-3.548903,50.466923 +-4.037743,50.376758 +-3.410199,50.633177 +-3.576813,50.355322 +-5.056388,50.254797 +-3.918672,50.389685 +-4.176803,50.535064 +-4.144511,50.395794 +-5.202274,50.300649 +-3.536185,50.716652 +-3.567699,50.437064 +-4.269247,50.480547 +-3.616508,50.589414 +-3.540465,50.728359 +-3.52353,50.460927 +-4.776681,50.355904 +-5.121361,50.173374 +-4.856408,50.314545 +-3.516478,50.546098 +-3.534256,50.474132 +-5.588662,50.103892 +-3.832287,50.427144 +-3.190589,50.803196 +-3.617497,50.428899 +-3.745558,50.522778 +-3.899254,50.920157 +-4.05274,51.081095 +-3.471052,50.733393 +-5.245631,50.055489 +-4.768511,50.33872 +-4.900459,50.344002 +-3.204284,50.80373 +-4.733316,50.470243 +-4.122443,51.191079 +-5.077886,50.289196 +-4.12153,50.876747 +-3.474726,50.568678 +-5.056552,50.418406 +-3.610295,50.558464 +-3.935692,50.740659 +-3.175976,50.732111 +-3.392993,50.671048 +-5.267263,50.108112 +-3.859792,50.882139 +-4.200094,51.018364 +-4.234365,50.417299 +-3.574394,50.425785 +-3.54019,50.484118 +-3.515452,50.732617 +-3.506283,50.69107 +-5.556533,50.113906 +-5.127026,50.29642 +-3.470244,50.727494 +-5.432983,50.165697 +-5.172539,50.28099 +-3.502101,50.73609 +-5.160785,50.281779 +-3.622272,50.779851 +-3.493032,50.908353 +-5.094554,50.265202 +-4.709679,50.468493 +-4.163886,50.420197 +-5.432134,50.165381 +-4.791722,50.371645 +-4.802988,50.335141 +-3.54106,50.63893 +-3.508903,50.526771 +-4.162327,50.367716 +-3.507498,50.711748 +-4.12031,50.350709 +-5.262167,50.228489 +-4.16258,50.369259 +-3.534421,50.73245 +-5.406016,50.17861 +-3.517503,50.732959 +-4.381091,50.659854 +-3.494217,50.545559 +-5.163231,50.041879 +-3.599841,50.528245 +-3.410363,50.634407 +-4.095716,50.388184 +-3.593652,50.57945 +-5.508522,50.167882 +-3.536164,50.480376 +-2.986112,50.777856 +-4.550624,50.752982 +-3.30736,50.935365 +-4.540891,50.824277 +-4.125916,50.525365 +-4.415408,50.821826 +-4.133382,50.380457 +-4.108389,50.39668 +-3.501789,50.736067 +-3.520391,50.472012 +-3.9514,51.048567 +-4.306868,50.644124 +-5.119508,50.264363 +-4.049622,50.390985 +-4.128959,50.37372 +-3.582984,50.352342 +-3.507145,50.916346 +-5.156015,50.285228 +-4.140341,50.440339 +-3.51299,50.710732 +-4.50512,50.354906 +-3.584781,50.419367 +-4.424895,50.433674 +-4.246241,50.516476 +-5.090503,50.372215 +-5.215765,50.026795 +-4.887611,50.389146 +-4.57815,50.549549 +-4.158468,50.419308 +-4.523898,50.841717 +-3.468252,50.911437 +-3.460121,50.76738 +-3.203718,50.795526 +-4.0504,50.38749 +-4.12705,50.398633 +-3.591901,50.524981 +-4.202924,51.016395 +-4.180121,50.964929 +-3.623688,50.41356 +-3.539826,50.490283 +-3.502091,50.708751 +-3.70027,50.423348 +-4.107072,50.36794 +-4.780077,50.350003 +-5.217045,50.247722 +-3.9947,51.099304 +-5.061101,50.148154 +-4.738519,50.56115 +-5.056398,50.418419 +-3.956455,50.334172 +-4.04279,50.513408 +-5.180546,50.163311 +-3.542928,50.463027 +-4.15957,50.37544 +-4.127569,50.398912 +-3.497188,50.812164 +-3.552481,50.509901 +-3.879807,51.028149 +-3.54014,50.395386 +-3.589549,50.429743 +-5.300484,50.21007 +-3.412342,50.618789 +-5.203466,50.311681 +-4.117154,50.475562 +-4.077775,50.357845 +-5.137286,50.194931 +-3.674107,50.432766 +-4.266234,50.88802 +-4.027218,51.103754 +-4.576497,50.731267 +-3.414044,50.860784 +-4.870112,50.369655 +-3.357323,50.917097 +-4.074961,50.353937 +-3.987894,51.155358 +-4.024713,50.378604 +-5.147611,50.296161 +-5.052104,50.420394 +-3.771127,50.485607 +-4.528447,50.815787 +-3.785208,50.9682 +-4.157814,50.953463 +-4.683705,50.659282 +-3.859239,50.883587 +-3.077199,50.708066 +-3.751555,51.004575 +-4.912538,50.418892 +-4.088254,50.954638 +-5.22626,50.231705 +-4.05943,51.078073 +-5.305463,50.218214 +-3.538878,50.658735 +-4.534477,50.786074 +-3.390121,50.62411 +-3.295241,50.825904 +-3.780508,50.289035 +-4.233525,51.042264 +-3.208178,50.758276 +-4.1322,50.393304 +-4.00153,50.798186 +-3.53496,50.590608 +-4.357236,50.644626 +-4.125537,50.415462 +-4.715556,50.360722 +-4.136429,51.1596 +-4.099715,50.552049 +-4.104592,50.428489 +-4.344113,50.918068 +-4.132671,50.407866 +-4.451097,50.349033 +-4.053285,50.506585 +-4.437264,50.432948 +-4.758028,50.523072 +-5.071788,50.151515 +-3.517399,50.475828 +-4.090924,50.488637 +-3.494005,50.70077 +-4.901939,50.299105 +-3.981956,51.183976 +-3.655751,50.789939 +-5.091545,50.364676 +-4.742242,50.622803 +-3.908328,50.388542 +-5.518448,50.129507 +-5.43614,50.16519 +-3.559854,50.712336 +-3.836001,51.230343 +-5.081595,50.154655 +-3.982,51.184002 +-3.541676,50.459195 +-3.446957,50.696453 +-3.688711,50.797452 +-3.538328,50.6895 +-5.053452,50.26307 +-3.540229,50.642934 +-4.84827,50.392185 +-4.125476,51.179252 +-4.938743,50.207648 +-3.599876,50.528847 +-4.159539,50.397675 +-4.099261,50.384684 +-3.998108,50.348637 +-5.101765,50.210315 +-5.546971,50.109665 +-3.855891,50.726227 +-4.191583,51.035917 +-3.887572,50.865289 +-5.472473,50.198232 +-3.616165,50.537328 +-4.233623,51.023249 +-3.829262,50.537043 +-4.699281,50.35789 +-3.699354,50.28516 +-3.790835,50.451318 +-5.598433,50.09112 +-3.531184,50.724003 +-4.17354,50.369675 +-5.125791,50.164628 +-4.201364,51.029519 +-5.077553,50.262065 +-5.2602,50.252465 +-4.475837,50.595763 +-3.687856,50.434132 +-5.360129,50.100673 +-3.556629,50.455038 +-3.483068,50.974731 +-4.391892,50.971314 +-3.512436,50.722575 +-3.526965,50.727152 +-4.156263,50.367649 +-5.655247,50.123 +-4.819353,50.328125 +-4.152934,51.106758 +-4.324777,50.675086 +-3.179502,50.707201 +-3.622873,50.576915 +-4.70159,50.377742 +-4.073136,50.444587 +-5.565073,50.109469 +-5.077038,50.336293 +-4.175465,50.393609 +-4.140936,50.38548 +-3.51754,50.692426 +-3.920353,50.390197 +-3.611678,50.531544 +-5.079814,50.262527 +-5.238619,50.23962 +-4.130845,50.394462 +-3.527461,50.49023 +-4.070933,50.39058 +-3.392749,50.856184 +-3.973308,50.953356 +-4.163387,50.380505 +-3.520806,50.480982 +-4.562108,50.454658 +-4.741376,50.665009 +-5.297259,50.214327 +-4.134425,50.384269 +-3.479116,50.721743 +-4.201436,50.332812 +-4.330573,50.587465 +-4.047694,51.085168 +-3.70886,50.23075 +-3.605609,50.662673 +-4.13918,50.394597 +-4.152658,50.381522 +-3.555086,50.511062 +-3.526106,50.390364 +-3.502476,50.731409 +-3.59728,50.543066 +-4.69605,50.451378 +-5.303924,50.085725 +-4.170761,51.032637 +-4.869615,50.370746 +-4.035064,51.183792 +-5.097811,50.152955 +-4.213182,51.030006 +-3.561572,50.452004 +-3.669005,50.44946 +-3.399116,50.612311 +-3.508297,50.391748 +-3.543182,50.731264 +-4.096475,50.394871 +-4.762889,50.549995 +-3.539934,50.701791 +-3.344278,50.917616 +-4.150366,50.415734 +-5.462264,50.188866 +-5.017544,50.275775 +-5.400843,50.19886 +-3.764937,50.429957 +-3.219011,50.701551 +-5.066012,50.188344 +-4.339348,50.81253 +-4.362461,50.391399 +-3.534224,50.726418 +-5.380647,50.13679 +-4.02488,50.378565 +-3.575894,50.48239 +-4.854803,50.383363 +-3.428863,50.646656 +-4.334771,50.536113 +-3.918304,50.384762 +-4.049309,51.112308 +-4.136009,50.373501 +-3.52959,50.719869 +-4.131026,50.420776 +-3.535544,50.71479 +-4.800109,50.429723 +-3.460084,50.594296 +-4.632985,50.337553 +-3.565093,50.442145 +-3.889291,50.864218 +-4.148802,50.369964 +-4.177498,50.381492 +-4.131727,50.410672 +-4.766294,50.328636 +-3.580518,50.545759 +-3.547334,50.71494 +-3.830767,51.228401 +-4.151885,50.37158 +-4.181547,50.397992 +-4.149343,50.369792 +-4.408024,50.573908 +-4.103666,51.093625 +-4.169416,50.373916 +-4.208153,51.171263 +-3.537174,50.691017 +-4.779842,50.341184 +-5.444744,50.177323 +-4.768942,50.344917 +-4.132549,50.372233 +-3.444448,50.692203 +-3.678073,50.363312 +-4.129926,50.389343 +-4.339255,50.829126 +-5.078673,50.412793 +-4.215421,50.93875 +-4.11423,50.400207 +-3.473415,50.724252 +-4.107649,51.004986 +-3.312156,50.698346 +-4.710024,50.402048 +-4.128254,50.373049 +-4.048776,51.103495 +-4.200953,51.01663 +-5.059317,50.264589 +-4.036541,50.397295 +-4.544694,50.413961 +-3.536137,50.716905 +-3.112833,50.848515 +-4.3216,50.868827 +-5.183058,50.287359 +-4.108662,50.700801 +-3.59095,50.617044 +-4.166914,50.386897 +-4.725498,50.474222 +-3.549342,50.477764 +-3.630489,50.446831 +-4.833971,50.51773 +-4.053486,51.092782 +-3.885053,51.063209 +-5.261512,50.236145 +-4.180357,50.382796 +-4.138461,50.373618 +-3.508014,50.708395 +-4.322883,50.637015 +-4.183091,50.413506 +-4.42919,50.467773 +-3.802376,50.432171 +-3.894006,50.788731 +-4.212694,51.034116 +-3.530728,50.709152 +-4.750483,50.343916 +-5.541902,50.11206 +-4.011456,51.098028 +-5.225082,50.234203 +-4.112282,50.430131 +-3.525479,50.461962 +-3.40562,50.820687 +-3.669416,50.432699 +-3.117478,50.857391 +-5.016627,50.311853 +-3.402576,50.705287 +-4.158216,51.180532 +-3.904023,50.787696 +-3.47906,50.740189 +-3.590939,50.441812 +-3.541902,50.486928 +-3.497917,50.831391 +-4.257538,50.432438 +-4.114129,50.590211 +-5.115226,50.205007 +-4.136417,50.531073 +-4.12752,50.376148 +-3.593468,50.524178 +-4.085419,51.064859 +-5.553753,50.118112 +-3.464201,50.686363 +-3.499221,50.737755 +-4.734392,50.468122 +-4.160827,50.386696 +-3.390243,50.859352 +-5.239889,50.20396 +-3.644947,50.665578 +-4.192468,50.407474 +-4.236515,51.035632 +-4.207231,51.021224 +-4.404244,50.392143 +-3.06808,50.704372 +-4.120307,50.431037 +-4.799131,50.33814 +-4.430134,50.565506 +-5.164625,50.212055 +-5.542478,50.129514 +-3.79069,50.45794 +-5.191767,50.253224 +-4.306175,50.37472 +-4.151996,50.367827 +-3.60085,50.540553 +-4.085769,50.357396 +-3.519017,50.716679 +-5.086579,50.413789 +-3.419615,50.61808 +-3.47273,50.734486 +-3.07417,50.712482 +-3.497475,50.54728 +-3.632099,50.725952 +-4.196259,50.375922 +-5.066035,50.405229 +-3.533636,50.699733 +-3.990739,51.064613 +-4.237734,50.374672 +-5.076403,50.415129 +-4.200093,50.989719 +-3.525127,50.461967 +-4.513247,50.457838 +-5.090059,50.140658 +-3.700732,50.90606 +-4.324948,50.636164 +-5.144447,50.253094 +-4.074018,51.143394 +-4.667042,50.628678 +-4.107084,50.565974 +-3.991883,50.731483 +-3.913995,51.136492 +-4.947569,50.337959 +-4.056634,51.080046 +-3.515838,50.479005 +-4.949684,50.515393 +-4.352677,50.810526 +-4.054379,51.093279 +-4.764429,50.408755 +-4.045744,50.715818 +-4.323853,50.814953 +-3.375469,50.74492 +-3.431387,50.817442 +-5.275881,50.225809 +-4.043783,50.391294 +-5.625193,50.072158 +-4.057716,50.80407 +-5.1441,50.071232 +-5.240036,50.056653 +-5.128026,50.328112 +-4.09825,50.396179 +-5.300198,50.209997 +-4.157424,50.385482 +-3.423478,50.899006 +-4.953569,50.479772 +-3.547165,50.549598 +-4.178088,50.410919 +-3.590694,50.456781 +-3.643631,50.794301 +-4.177852,50.967265 +-4.406344,50.61242 +-4.125612,50.370282 +-4.633314,50.395293 +-4.168364,50.379827 +-4.163871,51.176327 +-4.742817,50.602317 +-5.533196,50.12188 +-5.394483,50.20107 +-3.601159,50.557151 +-3.238093,50.683571 +-4.191564,50.930269 +-3.620311,50.529815 +-3.542895,50.457685 +-4.127844,50.372697 +-3.692581,50.43356 +-4.02466,50.384299 +-3.492304,50.914028 +-4.332222,50.488997 +-4.13515,50.399771 +-3.490814,50.548669 +-4.802242,50.334889 +-5.127901,50.206132 +-4.150921,50.542498 +-3.595715,50.525127 +-5.285323,50.206704 +-3.694407,50.273126 +-3.541612,50.716257 +-3.587821,50.434489 +-3.526012,50.729664 +-5.479727,50.21491 +-3.711252,50.402285 +-3.987243,50.382983 +-4.116599,50.367767 +-4.583898,50.36689 +-3.485356,50.559126 +-5.118934,50.322105 +-3.56313,50.42448 +-4.14994,50.419691 +-5.582524,50.120591 +-4.134135,50.420405 +-4.22897,51.039796 +-3.545127,50.456145 +-4.303918,50.504483 +-3.191955,50.798848 +-4.575783,50.661656 +-4.142334,50.953101 +-4.052183,50.355475 +-4.20588,50.378366 +-3.573374,50.431969 +-3.961077,50.95572 +-3.712271,50.404015 +-3.630837,50.585455 +-4.136374,50.376309 +-5.553844,50.128023 +-4.06334,50.359559 +-4.804652,50.529828 +-5.28824,50.218955 +-4.469047,50.853468 +-5.48066,50.212318 +-3.542945,50.731384 +-4.154932,50.400027 +-3.430898,50.730331 +-4.111876,50.373519 +-4.140392,50.372458 +-3.53321,50.48492 +-4.136571,51.069475 +-5.464922,50.125145 +-5.682131,50.129761 +-3.201354,50.794633 +-4.287753,50.488684 +-3.511368,50.712732 +-4.095191,51.043253 +-3.536254,50.71702 +-3.442966,50.689605 +-3.832432,51.016572 +-3.544353,50.833142 +-3.691688,50.435363 +-3.582981,50.720208 +-4.34569,50.636054 +-3.935334,50.855621 +-4.457319,50.497116 +-3.70093,50.431163 +-4.539022,50.829597 +-5.268862,50.086206 +-4.108847,50.406061 +-5.151045,50.345959 +-4.12577,50.370351 +-4.153685,50.377483 +-4.242026,50.985782 +-3.826205,50.330104 +-3.85571,51.037527 +-4.147351,50.377699 +-4.409947,50.423012 +-4.035337,51.025497 +-3.774989,50.429912 +-4.140891,50.953613 +-5.541333,50.119319 +-4.007337,50.347156 +-4.32785,50.387105 +-4.148468,50.371913 +-5.230593,50.235021 +-4.822443,50.522903 +-4.073356,50.39096 +-3.00506,50.771166 +-3.515008,50.708763 +-4.107393,50.451293 +-4.179275,50.405212 +-3.589227,50.428561 +-3.665232,50.451502 +-3.555558,50.477789 +-5.089359,50.049412 +-3.317459,50.650586 +-3.516645,50.734463 +-3.526494,50.461553 +-3.937312,51.008404 +-5.193296,50.303523 +-4.352354,50.807771 +-4.443768,50.478819 +-3.372305,50.888135 +-4.181745,51.03236 +-4.861848,50.376056 +-4.956323,50.402818 +-4.786562,50.289571 +-3.567669,50.439142 +-5.096484,50.172071 +-3.535244,50.689586 +-3.532333,50.724941 +-3.380813,50.751673 +-4.134782,50.384397 +-3.99725,51.102462 +-4.282229,50.643863 +-4.043805,51.070478 +-4.518782,50.844328 +-4.081436,50.38657 +-4.169878,51.174749 +-3.536837,50.727912 +-5.041877,50.280492 +-5.22212,50.230003 +-4.799126,50.505854 +-4.062022,51.081121 +-3.346419,50.856719 +-4.135225,51.157688 +-5.046488,50.144895 +-3.879038,51.096869 +-3.237309,50.679038 +-3.52825,50.467502 +-4.694111,50.459662 +-3.87595,50.341652 +-4.725613,50.474274 +-4.466237,50.449301 +-4.219858,50.614641 +-4.174875,50.537322 +-4.871114,50.513005 +-4.026377,50.396852 +-5.08787,50.21916 +-3.615854,50.901321 +-3.472583,50.582798 +-3.771567,50.486464 +-5.184082,50.242972 +-4.173492,50.370162 +-3.381598,50.875939 +-4.239193,50.415191 +-5.260803,50.2311 +-4.152712,50.389841 +-4.709499,50.463119 +-4.73372,50.470881 +-4.765349,50.436384 +-3.596818,50.552363 +-4.135043,50.378609 +-3.510978,50.721748 +-3.838506,50.899366 +-3.567806,50.435192 +-3.50648,50.721519 +-4.225056,50.345989 +-5.027424,50.346025 +-4.123346,50.368336 +-3.758175,51.011922 +-5.265993,50.101383 +-3.138683,50.712895 +-4.240972,50.40905 +-4.935842,50.433958 +-4.060856,51.063883 +-3.528092,50.754809 +-3.537578,50.720249 +-3.57494,50.431192 +-3.642667,50.726298 +-4.080278,50.385511 +-3.609676,50.530745 +-4.101026,51.073204 +-4.838952,50.341968 +-3.948178,50.779565 +-4.13363,50.381603 +-3.604486,50.528334 +-4.953272,50.208908 +-4.114798,50.379465 +-4.694238,50.459165 +-3.559163,50.644076 +-4.248862,50.41487 +-4.128733,50.399457 +-4.376096,50.831978 +-5.276948,50.225428 +-4.587478,50.456381 +-4.553067,50.387216 +-3.7204,50.365778 +-3.004013,50.769961 +-4.033695,50.890794 +-4.123987,50.370105 +-3.49305,50.719731 +-4.163662,50.390573 +-4.664098,50.507766 +-4.238612,51.008413 +-3.48153,50.733143 +-5.192697,50.292492 +-5.15555,50.321035 +-4.774768,50.355158 +-3.565875,50.486329 +-3.210634,50.793574 +-4.050476,51.205718 +-4.185285,50.401241 +-5.541107,50.118157 +-4.212047,51.177287 +-3.473597,50.724178 +-3.573818,50.431765 +-4.154245,50.374315 +-6.315645,49.914329 +-4.803461,50.362979 +-3.5278,50.389244 +-4.20066,50.544617 +-5.24812,50.186061 +-3.506209,50.719238 +-4.138265,50.3705 +-3.483006,50.727809 +-5.242586,50.027955 +-2.589172,51.462502 +-2.673224,51.505704 +-2.596916,51.454793 +-2.562053,51.470764 +-2.566503,51.458082 +-2.619338,51.411121 +-2.590217,51.462101 +-2.559936,51.44129 +-2.564032,51.470143 +-2.613872,51.468858 +-2.563632,51.470361 +-2.550873,51.470071 +-2.607023,51.478929 +-2.606696,51.456451 +-2.54476,51.491139 +-2.58535,51.465282 +-2.620212,51.501159 +-2.56919,51.465829 +-2.627921,51.506441 +-2.558057,51.4618 +-2.596613,51.458005 +-2.579725,51.456525 +-2.599919,51.455515 +-2.563476,51.475199 +-2.596627,51.457996 +-2.589031,51.452702 +-2.615407,51.471656 +-2.560603,51.462822 +-2.563717,51.471412 +-2.572937,51.461576 +-2.613857,51.468823 +-2.566548,51.47567 +-2.57919,51.466562 +-2.56211,51.42148 +-2.55436,51.435913 +-2.598224,51.473381 +-2.584874,51.488869 +-3.132234,51.022382 +-3.102247,51.025303 +-3.133142,51.02802 +-3.024341,51.002245 +-3.090196,50.949186 +-3.00761,51.126477 +-3.000426,51.13064 +-2.971991,51.19075 +-2.993337,51.137282 +-2.998256,51.23406 +-3.008327,51.128557 +-2.931181,51.108425 +-2.501595,51.115131 +-2.284154,51.270057 +-2.8879,51.270045 +-2.999625,51.115395 +-3.022128,51.127727 +-3.074472,51.149181 +-2.98124,51.153876 +-2.934915,51.156117 +-2.948374,51.233666 +-2.332071,51.226059 +-2.956018,51.16984 +-3.00431,51.089637 +-2.995181,51.23825 +-2.643503,50.932054 +-2.644567,50.951382 +-2.962162,50.870682 +-2.729138,50.96467 +-2.964196,50.872841 +-2.546273,51.464616 +-2.589233,51.444941 +-2.610195,51.465191 +-2.625736,51.412157 +-2.582186,51.506245 +-2.524148,51.535004 +-2.471099,51.458774 +-2.492405,51.500578 +-2.488259,51.499598 +-2.658248,51.565232 +-2.558858,51.522651 +-2.507045,51.477561 +-2.557726,51.550324 +-2.987592,51.237037 +-2.738689,51.127542 +-2.766445,50.971418 +-2.652568,51.210017 +-2.631611,50.948135 +-2.993932,51.234106 +-3.058705,51.145584 +-3.014598,51.03643 +-2.764449,50.940065 +-2.963303,50.872948 +-2.688848,51.008609 +-3.000765,51.131752 +-2.99683,51.24426 +-3.105743,51.019416 +-2.655374,51.207052 +-3.10332,51.021849 +-2.986076,51.237149 +-2.960111,51.112741 +-2.662636,51.028633 +-3.091629,51.015817 +-2.66226,51.1991 +-2.828987,51.296402 +-3.09948,51.019844 +-3.081545,51.010084 +-2.649144,50.945754 +-2.31856,51.22508 +-2.650506,50.943391 +-3.077357,51.018189 +-2.961953,51.114075 +-2.717945,50.969226 +-2.854279,51.224832 +-2.986507,51.207723 +-3.118688,51.015219 +-2.806733,50.940006 +-3.127715,51.014188 +-3.108675,51.013211 +-2.773867,50.950084 +-3.081102,51.014323 +-2.678911,51.017209 +-3.439725,51.186746 +-2.803081,50.874214 +-3.087786,51.021563 +-2.936758,50.933324 +-3.091989,51.027477 +-3.072454,51.010213 +-2.654822,50.995253 +-3.467936,51.197348 +-3.031939,51.062032 +-2.793625,50.975913 +-2.739128,51.126397 +-2.64886,50.942707 +-2.996318,50.964818 +-2.954663,51.225387 +-2.883953,51.046871 +-2.952401,51.110871 +-2.663797,50.93319 +-2.751213,50.983315 +-2.663718,50.933604 +-2.965843,50.87138 +-3.000949,51.1297 +-3.073419,51.00631 +-2.9346,51.15612 +-2.481464,51.189095 +-2.652978,51.268319 +-2.620345,51.075805 +-2.954427,50.881609 +-2.624258,50.943336 +-3.102801,51.015011 +-2.741669,50.967325 +-3.236804,51.030413 +-2.637423,51.016004 +-2.951098,51.237231 +-3.462287,51.206987 +-2.332478,51.217021 +-2.646825,51.208826 +-3.278134,51.16822 +-3.091066,51.135656 +-2.825503,50.865848 +-2.964642,51.118369 +-2.711859,51.126143 +-2.991473,51.14299 +-3.119975,51.027806 +-3.065113,51.035099 +-3.763736,51.155303 +-2.644107,50.945863 +-2.961076,51.11312 +-2.385584,51.235975 +-2.902026,51.213971 +-2.753409,51.123221 +-2.647603,50.948524 +-3.456053,51.194062 +-2.996324,51.124632 +-2.952434,50.945562 +-2.260475,51.252506 +-3.024353,51.002137 +-2.807944,51.23088 +-3.455956,51.194153 +-3.099465,51.019826 +-2.539562,51.206529 +-2.362084,51.242128 +-2.693499,51.028976 +-2.916807,50.914544 +-2.397033,51.266419 +-3.115012,51.061674 +-2.815622,50.883507 +-2.733447,51.140362 +-3.019544,51.062942 +-3.041813,51.018754 +-2.315658,51.225772 +-2.629067,51.223031 +-2.517605,51.260238 +-3.103548,51.017036 +-2.986566,51.16027 +-2.992836,51.10192 +-2.98411,51.137576 +-2.740979,50.967779 +-2.584413,51.046073 +-2.378289,51.209364 +-2.663704,51.022512 +-2.537497,51.169293 +-2.520285,51.14342 +-2.778274,50.890938 +-2.284989,51.270702 +-3.256905,51.002753 +-3.038215,51.133287 +-2.259868,51.25426 +-2.716293,51.14768 +-2.995331,51.237862 +-3.084546,51.01591 +-3.077487,50.993044 +-2.823686,50.910311 +-3.053772,50.97274 +-2.320668,51.231657 +-2.717708,51.14857 +-2.712365,51.130241 +-2.290962,51.274599 +-3.455566,51.194059 +-2.997337,51.237889 +-3.243659,51.001995 +-2.824065,50.9792 +-2.712237,50.933103 +-2.983275,51.236795 +-2.938945,51.163782 +-2.747021,50.95025 +-2.988086,51.163135 +-3.097868,51.014958 +-2.505753,51.089054 +-2.860419,51.021679 +-2.418403,51.149557 +-2.583539,51.196543 +-3.100959,51.032339 +-3.071348,51.033369 +-2.738812,51.278338 +-2.546823,51.186272 +-3.190598,51.039832 +-2.61542,50.944489 +-2.997486,51.235523 +-3.088501,51.016755 +-2.440069,51.241834 +-2.400273,51.05184 +-3.007453,51.260985 +-2.98369,51.104362 +-2.736805,51.247895 +-2.99503,51.238521 +-2.773779,51.169893 +-3.179215,50.990901 +-2.717902,51.147211 +-3.18222,51.152701 +-2.950244,51.246527 +-2.814068,51.221621 +-3.216124,50.970406 +-2.645338,50.935047 +-2.88392,51.030882 +-2.887514,51.270057 +-2.666195,50.955604 +-3.310618,51.103654 +-3.162593,51.024197 +-2.644064,50.945872 +-3.104751,51.02626 +-2.801691,50.941425 +-2.619129,50.94937 +-3.247001,51.021402 +-2.654954,50.947934 +-3.003889,51.128218 +-2.645307,50.939022 +-3.288043,51.173237 +-2.895755,51.225781 +-3.026367,51.123014 +-2.980344,51.139973 +-2.660493,51.163565 +-2.321538,51.231196 +-2.28147,51.23673 +-2.629266,50.956852 +-3.140328,51.01581 +-3.124632,50.960991 +-2.673783,51.056868 +-2.643175,51.187328 +-2.71406,51.234503 +-3.12645,51.0167 +-2.848219,51.253516 +-2.829689,51.037359 +-2.998655,51.127373 +-3.101147,51.143655 +-3.469551,51.198632 +-3.117616,51.025193 +-2.630498,51.197774 +-2.635451,50.94368 +-3.095326,51.032311 +-3.245245,50.975 +-3.101038,51.03687 +-2.936061,51.178112 +-2.994913,51.132125 +-3.116528,51.028585 +-2.935477,50.933344 +-2.976549,51.124718 +-2.997104,51.13565 +-2.985417,51.131828 +-3.233382,50.978858 +-2.655513,51.206737 +-2.542822,51.228139 +-2.994364,51.131869 +-2.940781,50.935963 +-2.720907,50.945315 +-2.311632,51.233965 +-2.392078,51.191191 +-2.337091,51.229147 +-3.098474,51.031562 +-2.893133,50.942578 +-3.028788,51.126491 +-2.976226,51.219139 +-2.645848,50.934946 +-3.050462,51.139526 +-2.997475,51.132283 +-3.016001,51.082315 +-3.575647,51.026253 +-2.979625,51.047187 +-2.766144,50.984279 +-2.730744,50.976215 +-3.160486,51.042626 +-3.218542,50.989302 +-3.068522,51.027065 +-2.535533,51.186207 +-2.301588,51.224766 +-2.961965,50.871457 +-2.997875,51.24489 +-3.090934,51.01594 +-3.117981,51.016683 +-3.015278,51.134702 +-2.959286,50.873889 +-2.741166,50.967894 +-3.097107,51.026206 +-2.76703,50.928241 +-2.547992,51.143662 +-2.970755,51.163927 +-2.748498,51.115565 +-3.115966,51.007575 +-2.575448,51.121481 +-3.60718,51.204223 +-2.306771,51.228943 +-3.593805,51.209487 +-2.850659,50.88635 +-3.072117,51.01044 +-2.666107,51.20879 +-2.790321,51.287317 +-3.077419,51.011003 +-2.394437,51.189205 +-3.251932,51.177262 +-2.709999,51.093396 +-2.420557,51.222888 +-2.955658,50.879242 +-3.277784,51.161758 +-2.99815,51.103952 +-2.336664,51.231387 +-2.305266,51.228749 +-3.191483,51.057079 +-2.821583,51.068521 +-2.326219,51.244967 +-2.912881,50.917489 +-3.135263,51.029052 +-2.881568,50.882712 +-2.652993,51.268364 +-3.009286,51.133225 +-3.124631,50.960946 +-2.741143,50.967337 +-2.934514,51.156121 +-3.09359,51.143851 +-3.106571,51.014076 +-2.480333,51.270225 +-2.477308,51.008262 +-3.062851,51.01727 +-3.102918,51.012114 +-2.945511,51.286086 +-3.19631,50.971933 +-2.581864,51.161276 +-3.098328,50.940288 +-3.014851,51.125623 +-3.060405,51.015646 +-2.321867,51.23115 +-2.955858,51.169706 +-2.805639,50.940921 +-3.090665,51.016042 +-2.750236,50.95808 +-2.545371,51.218443 +-3.402465,51.097201 +-2.311732,51.240295 +-2.721662,50.959105 +-2.507956,51.185773 +-3.003385,51.138554 +-2.881498,50.897856 +-2.273146,51.282375 +-2.385613,51.23602 +-2.822679,51.176923 +-2.316482,51.239437 +-2.85339,51.278926 +-2.794839,50.885152 +-2.733991,51.128677 +-3.190476,50.972703 +-2.63445,50.954863 +-3.001405,51.125658 +-3.486488,51.207231 +-2.578489,51.236646 +-3.097727,51.025922 +-3.254983,50.976407 +-2.489662,51.205228 +-2.661888,50.927977 +-3.085327,51.015165 +-3.112879,51.023305 +-2.728379,51.142578 +-2.999291,51.12904 +-2.549413,51.18867 +-2.27523,51.285517 +-3.098284,50.940235 +-2.993736,51.127882 +-2.661366,50.928312 +-2.449981,51.243181 +-3.009695,51.30508 +-2.504116,51.14724 +-3.100631,51.143596 +-2.979433,51.218447 +-3.458,51.124705 +-2.425852,51.193015 +-2.475896,51.066654 +-3.033665,51.048529 +-2.751531,51.127253 +-2.318212,51.228624 +-2.567763,51.128587 +-3.203451,50.982075 +-2.988765,51.134686 +-2.976521,51.124736 +-2.575569,51.024248 +-2.999046,51.124285 +-2.789156,51.281247 +-2.410363,51.279402 +-2.628139,50.914405 +-2.538027,51.201356 +-2.649501,50.957038 +-3.083723,51.019731 +-3.703449,51.217042 +-2.728938,50.974599 +-3.141708,51.179721 +-2.990125,51.148163 +-2.416262,51.08796 +-2.713469,51.148111 +-2.623732,50.904015 +-3.095323,51.011016 +-2.542731,51.227645 +-3.328045,51.177897 +-3.208625,51.074808 +-2.717858,51.147148 +-3.018262,51.13 +-3.321065,51.160962 +-2.998717,51.254666 +-2.995172,51.237836 +-2.561421,51.180673 +-2.9987,51.248605 +-2.919945,51.268953 +-2.456111,51.109635 +-2.97368,51.16563 +-3.050879,51.018673 +-2.351504,51.244903 +-3.100034,51.012528 +-2.996974,51.236355 +-2.324936,51.16461 +-2.730786,50.976197 +-3.090729,51.027858 +-2.637511,50.937159 +-2.96469,50.870598 +-2.743013,50.908712 +-2.484052,51.082348 +-3.000761,51.128955 +-3.479461,51.205485 +-3.062655,51.03737 +-2.32101,51.231494 +-2.320103,51.23075 +-2.635085,50.94192 +-2.331333,51.227059 +-2.962371,51.2283 +-2.948691,50.89313 +-3.207476,50.974687 +-2.816034,50.910293 +-3.011851,51.128968 +-2.655671,50.944252 +-2.531168,51.215955 +-2.477002,51.040986 +-2.668006,50.943894 +-2.526896,51.590649 +-3.219277,50.943413 +-2.75853,51.070332 +-2.803894,50.883453 +-2.964704,50.870598 +-2.276685,51.2628 +-2.992439,51.198671 +-2.670178,50.926643 +-2.974746,51.047857 +-2.741535,51.125905 +-2.935662,50.87302 +-3.198942,51.073522 +-3.106442,51.021802 +-2.999141,51.120768 +-3.271657,50.993933 +-2.977967,51.224942 +-2.485073,51.260251 +-2.682407,51.012558 +-2.864237,51.007712 +-2.618804,51.237258 +-2.810324,51.129054 +-2.422055,51.223809 +-2.748639,50.951768 +-3.089186,51.006461 +-2.323772,51.229121 +-2.620787,50.953067 +-2.828921,50.931946 +-2.728645,51.088614 +-2.673874,51.174063 +-2.987554,51.155613 +-2.79276,51.045538 +-2.390871,51.285233 +-3.115856,51.008916 +-3.069257,51.034845 +-2.795603,50.883285 +-2.464271,51.091546 +-2.712628,50.954952 +-2.623788,50.903934 +-2.716865,50.971256 +-2.91634,50.914692 +-3.157713,51.148701 +-2.289192,51.255145 +-2.990407,51.238074 +-2.899456,51.195988 +-2.780385,51.001828 +-2.663908,51.022853 +-3.307808,51.00455 +-2.99267,51.23605 +-3.002652,51.185195 +-2.818203,51.288439 +-2.994914,51.132188 +-2.631702,50.918054 +-2.66555,50.961255 +-2.769385,51.124151 +-2.615806,51.14889 +-2.881407,51.090053 +-3.139747,51.029323 +-3.133151,51.090356 +-2.435744,51.290406 +-3.105475,51.012351 +-2.810567,51.225296 +-2.751892,50.894798 +-3.36856,51.161459 +-2.988599,51.134958 +-3.097386,51.035628 +-2.938151,51.188059 +-3.096827,51.034914 +-3.339172,51.171376 +-2.452246,50.963886 +-2.969681,51.171364 +-3.069476,51.015231 +-3.225558,50.998707 +-3.279886,51.038699 +-2.419646,51.051718 +-2.949277,51.034389 +-3.446346,51.182519 +-2.975869,51.019863 +-3.100216,51.143555 +-2.745762,51.160309 +-2.550819,51.192619 +-2.970169,50.873017 +-3.152394,51.026357 +-3.130287,51.030836 +-2.895466,51.227869 +-2.648767,51.203393 +-2.976687,51.04722 +-2.973699,51.120362 +-3.010573,51.290155 +-2.437301,51.2294 +-2.786586,51.277667 +-3.090104,51.020669 +-2.997433,51.117752 +-3.035204,51.058721 +-2.425379,51.154073 +-2.664555,51.023191 +-2.646769,51.248796 +-2.467595,50.965102 +-2.560728,51.474259 +-2.939578,51.357908 +-2.413041,51.530979 +-2.601766,51.439447 +-2.493495,51.412123 +-2.643351,51.43785 +-2.594489,51.4397 +-2.54791,51.332053 +-2.910984,51.359383 +-2.513958,51.448182 +-2.56769,51.460936 +-2.597649,51.456893 +-2.533667,51.478584 +-2.541996,51.460869 +-2.578354,51.459652 +-2.407952,51.540681 +-2.591315,51.459021 +-2.595226,51.500731 +-2.644922,51.482925 +-2.633019,51.478216 +-2.316386,51.35687 +-2.403335,51.372222 +-2.530583,51.473365 +-2.398886,51.55259 +-2.442176,51.332895 +-2.585079,51.486917 +-2.437707,51.634642 +-2.697224,51.503523 +-2.590542,51.476073 +-2.955006,51.332524 +-2.558235,51.423315 +-2.56507,51.466721 +-2.670205,51.496334 +-2.573215,51.567441 +-2.616837,51.434684 +-2.555691,51.506365 +-2.445937,51.291564 +-2.590782,51.475694 +-2.566175,51.468739 +-2.504647,51.607156 +-2.593577,51.460349 +-2.5168,51.512495 +-2.554016,51.462134 +-2.552358,51.435716 +-2.588364,51.452283 +-2.592771,51.47144 +-2.557477,51.463862 +-2.615376,51.470478 +-2.554885,51.44126 +-2.550284,51.459427 +-2.505155,51.487621 +-2.555269,51.506052 +-2.541934,51.430099 +-2.606944,51.463194 +-2.617367,51.468615 +-2.552358,51.459561 +-2.51641,51.425764 +-2.546734,51.53446 +-2.359671,51.377004 +-2.924867,51.359823 +-2.590482,51.47922 +-2.547012,51.485509 +-2.572299,51.49795 +-2.510131,51.418526 +-2.957215,51.339322 +-2.579642,51.470444 +-2.591065,51.475378 +-2.558406,51.458553 +-2.583007,51.481397 +-2.94886,51.349048 +-2.596641,51.457987 +-2.967318,51.345974 +-2.591975,51.457767 +-2.458617,51.481519 +-2.588649,51.458809 +-2.547071,51.431496 +-2.628865,51.421141 +-2.605946,51.525852 +-2.538041,51.430531 +-2.375899,51.358601 +-2.392163,51.398039 +-2.513366,51.447978 +-2.357056,51.378855 +-2.618186,51.454647 +-2.583285,51.454637 +-2.538208,51.430072 +-2.544742,51.465433 +-2.593953,51.443874 +-2.690577,51.497484 +-2.541565,51.477919 +-2.570043,51.472991 +-2.550987,51.459226 +-2.474988,51.49512 +-2.584958,51.45943 +-2.605254,51.431192 +-2.530698,51.479596 +-2.429729,51.485998 +-2.5799,51.458961 +-2.60352,51.462276 +-2.545502,51.439848 +-2.600209,51.458939 +-2.525045,51.531493 +-2.550335,51.469615 +-2.527089,51.589875 +-2.590235,51.476865 +-2.5936,51.469826 +-2.552894,51.453885 +-2.604265,51.49252 +-2.579566,51.458774 +-2.652576,51.407785 +-2.598633,51.497971 +-2.611316,51.413348 +-2.439651,51.614485 +-2.746221,51.353293 +-2.590956,51.446884 +-2.369284,51.459157 +-2.365525,51.381454 +-2.613291,51.462091 +-2.588795,51.461164 +-2.600165,51.438016 +-2.485461,51.50335 +-2.532233,51.479121 +-2.604388,51.42555 +-2.559761,51.444654 +-2.530933,51.472545 +-2.608712,51.459777 +-2.548999,51.473514 +-2.902265,51.333024 +-2.519458,51.515585 +-2.942707,51.345923 +-2.562611,51.47514 +-2.607698,51.456051 +-2.59657,51.458023 +-2.715569,51.447673 +-2.62447,51.457464 +-2.426241,51.311024 +-2.57076,51.449744 +-2.617284,51.434726 +-2.544547,51.430924 +-2.514206,51.466425 +-2.530933,51.48249 +-2.590483,51.449215 +-2.582017,51.480566 +-2.927613,51.354253 +-2.562096,51.461331 +-2.538452,51.536351 +-2.584862,51.450817 +-2.52411,51.534204 +-2.456464,51.291676 +-2.493601,51.437929 +-2.560374,51.481787 +-2.786976,51.338225 +-2.304794,51.572348 +-2.596839,51.449974 +-2.689141,51.521625 +-2.61701,51.479551 +-2.546156,51.513882 +-2.652001,51.505743 +-2.975163,51.345559 +-2.626871,51.454097 +-2.51555,51.403028 +-2.645355,51.492148 +-2.453413,51.55785 +-2.39914,51.387036 +-2.586797,51.483833 +-2.605459,51.502189 +-2.6105,51.52796 +-2.570022,51.464422 +-2.571016,51.57504 +-2.563976,51.47026 +-2.579195,51.501036 +-2.867808,51.427564 +-2.573734,51.466553 +-2.44648,51.568684 +-2.669317,51.496708 +-2.685143,51.440589 +-2.604318,51.425667 +-2.609611,51.528252 +-2.590755,51.461406 +-2.594002,51.459834 +-2.928804,51.345711 +-2.600223,51.523643 +-2.585584,51.456631 +-2.59788,51.469112 +-2.58031,51.457259 +-2.483572,51.455576 +-2.59435,51.467736 +-2.551658,51.463548 +-2.618378,51.479499 +-2.42478,51.452468 +-2.963544,51.339243 +-2.476963,51.435894 +-2.551875,51.473222 +-2.616953,51.471054 +-2.603432,51.525371 +-2.515406,51.509039 +-2.530741,51.479569 +-2.450859,51.29623 +-2.60358,51.450461 +-2.611441,51.433462 +-2.583939,51.454004 +-2.548957,51.430435 +-2.594675,51.440733 +-2.758158,51.431768 +-2.608887,51.458841 +-2.379987,51.363164 +-2.566693,51.475759 +-2.375426,51.379814 +-2.843943,51.425877 +-2.502652,51.517996 +-2.571738,51.464621 +-2.563502,51.535721 +-2.588894,51.522486 +-2.526092,51.504748 +-2.538009,51.506133 +-2.600317,51.438681 +-2.577046,51.491704 +-2.581074,51.497007 +-2.381394,51.380325 +-2.620793,51.497262 +-2.606915,51.478354 +-2.579327,51.468243 +-2.382061,51.384585 +-2.582766,51.455719 +-2.537526,51.443059 +-2.975215,51.348651 +-2.602822,51.442112 +-2.486465,51.504218 +-2.59091,51.475612 +-2.507816,51.478205 +-2.896412,51.291957 +-2.446094,51.291455 +-2.54447,51.501787 +-2.626275,51.441063 +-2.59985,51.499637 +-2.6288,51.408067 +-2.582421,51.447871 +-2.596784,51.447987 +-2.629961,51.471578 +-2.542211,51.554182 +-2.599403,51.455698 +-2.597357,51.454395 +-2.568792,51.460454 +-2.56105,51.507463 +-2.58321,51.455555 +-2.597055,51.479798 +-2.507527,51.467767 +-2.608779,51.45939 +-2.59787,51.425359 +-2.512065,51.4629 +-2.579925,51.456434 +-2.596469,51.458041 +-2.612315,51.457951 +-2.54685,51.487614 +-2.595046,51.459263 +-2.569642,51.465134 +-2.614537,51.524756 +-2.618735,51.505878 +-2.596498,51.45805 +-2.585015,51.490865 +-2.510131,51.418526 +-2.50692,51.49745 +-2.530698,51.460974 +-2.501752,51.308629 +-2.549201,51.525008 +-2.590714,51.44595 +-2.5971,51.454567 +-2.351316,51.381633 +-2.862286,51.375686 +-2.62268,51.443303 +-2.586669,51.458172 +-2.609895,51.529069 +-2.540394,51.455616 +-2.58667,51.484032 +-2.563967,51.457879 +-2.602431,51.450638 +-2.548785,51.434078 +-2.586795,51.528539 +-2.403904,51.374809 +-2.602625,51.454395 +-2.547989,51.457667 +-2.625179,51.488283 +-2.484731,51.487447 +-2.595885,51.455203 +-2.559561,51.542321 +-2.556044,51.562569 +-2.891237,51.358726 +-2.550804,51.464325 +-2.542429,51.465812 +-2.499465,51.523054 +-2.549013,51.473496 +-2.608561,51.527376 +-2.574903,51.509149 +-2.597488,51.463296 +-2.590824,51.461136 +-2.613048,51.413879 +-2.56616,51.43386 +-2.588082,51.459478 +-2.584576,51.452041 +-2.36484,51.465007 +-2.635249,51.429334 +-2.508612,51.523887 +-2.393339,51.387641 +-2.580974,51.49476 +-2.576472,51.457629 +-2.649735,51.456778 +-2.358747,51.389325 +-2.922854,51.3254 +-2.573672,51.459288 +-2.594863,51.446333 +-2.435153,51.290058 +-2.590981,51.466647 +-2.412506,51.543524 +-2.591227,51.473417 +-2.609416,51.406731 +-2.677105,51.489533 +-2.524171,51.452893 +-2.376526,51.379019 +-2.575064,51.460091 +-2.495409,51.489335 +-2.5522,51.459607 +-2.470428,51.449534 +-2.591377,51.459389 +-2.592766,51.468859 +-2.518727,51.461423 +-2.583919,51.49301 +-2.597837,51.469121 +-2.603473,51.525236 +-2.585325,51.445329 +-2.580751,51.457967 +-2.508684,51.481177 +-2.588669,51.487178 +-2.501768,51.442786 +-2.551848,51.472143 +-2.441766,51.293324 +-2.586567,51.418798 +-2.366824,51.371398 +-2.585441,51.460075 +-2.737702,51.395105 +-2.591571,51.46775 +-2.579347,51.501647 +-2.894514,51.356624 +-2.554145,51.482329 +-2.32394,51.326386 +-2.449216,51.295454 +-2.557362,51.473295 +-2.378051,51.321647 +-2.967581,51.343445 +-2.609118,51.457877 +-2.362829,51.387577 +-2.604958,51.461046 +-2.617993,51.509632 +-2.362953,51.383261 +-2.544194,51.475038 +-2.574391,51.509682 +-2.604474,51.463692 +-2.56079,51.475733 +-2.548603,51.464515 +-2.589002,51.452639 +-2.673709,51.520016 +-2.911606,51.3632 +-2.598855,51.452311 +-2.443707,51.538717 +-2.555442,51.506069 +-2.608791,51.462474 +-2.447783,51.292663 +-2.596967,51.439912 +-2.607028,51.492308 +-2.307007,51.526099 +-2.590486,51.476235 +-2.538768,51.476466 +-2.479894,51.498634 +-2.537679,51.42913 +-2.365367,51.381428 +-2.42488,51.540702 +-2.637342,51.422669 +-2.607552,51.456941 +-2.567055,51.468959 +-2.551285,51.523353 +-2.613313,51.44221 +-2.560962,51.42876 +-2.570668,51.461955 +-2.579241,51.491037 +-2.619027,51.454049 +-2.608734,51.457142 +-2.570029,51.473081 +-2.978636,51.346141 +-2.371015,51.374496 +-2.977503,51.353605 +-2.591407,51.459506 +-2.518651,51.295841 +-2.767944,51.48516 +-2.494786,51.459747 +-2.390632,51.380222 +-2.689998,51.498251 +-2.516656,51.476871 +-2.568747,51.454493 +-2.709482,51.477382 +-2.596761,51.449561 +-2.59103,51.447027 +-2.6415,51.48637 +-2.409671,51.539362 +-2.547036,51.487523 +-2.50203,51.418157 +-2.565051,51.469841 +-2.601745,51.455344 +-2.553911,51.459419 +-2.4346,51.549846 +-2.59391,51.443839 +-2.631541,51.486892 +-2.389271,51.389246 +-2.604027,51.413485 +-2.587766,51.481895 +-2.979774,51.353721 +-2.609524,51.452669 +-2.471365,51.527855 +-2.798504,51.378701 +-2.777422,51.48356 +-2.569686,51.465134 +-2.972263,51.345538 +-2.616476,51.479428 +-2.597809,51.46913 +-2.909599,51.361229 +-2.622272,51.432371 +-2.616705,51.444081 +-2.963522,51.311494 +-2.6043,51.510404 +-2.941827,51.349203 +-2.614992,51.423669 +-2.571802,51.458254 +-2.615332,51.471458 +-2.358918,51.381772 +-2.574135,51.460662 +-2.59095,51.460857 +-2.493151,51.437616 +-2.601707,51.453555 +-2.603584,51.455146 +-2.613167,51.449584 +-2.348718,51.50478 +-2.585496,51.456469 +-2.482412,51.467001 +-2.510334,51.463897 +-2.382776,51.391056 +-2.597825,51.441733 +-2.57235,51.495117 +-2.979203,51.34512 +-2.583832,51.492966 +-2.589116,51.47715 +-2.576763,51.459066 +-2.594725,51.453384 +-2.544082,51.64326 +-2.864056,51.388792 +-2.606131,51.462659 +-2.582152,51.494565 +-2.60002,51.445633 +-2.566458,51.468405 +-2.606925,51.466116 +-2.576411,51.526981 +-2.566233,51.475797 +-2.54115,51.475745 +-2.466599,51.326569 +-2.592405,51.500997 +-2.609268,51.463685 +-2.52253,51.510761 +-2.60088,51.414733 +-2.57395,51.440207 +-2.552077,51.473194 +-2.597948,51.453331 +-2.603634,51.492694 +-2.585995,51.45724 +-2.558178,51.438709 +-2.345537,51.394724 +-2.599652,51.522944 +-2.597241,51.539168 +-2.57595,51.457344 +-2.930694,51.344724 +-2.597031,51.484528 +-2.590564,51.487852 +-2.600531,51.452824 +-2.557215,51.437608 +-2.418305,51.540707 +-2.58453,51.482244 +-2.692011,51.501782 +-2.588335,51.452328 +-2.604661,51.430971 +-2.570202,51.47308 +-2.554733,51.440569 +-2.60446,51.440799 +-2.500184,51.417625 +-2.95903,51.341007 +-2.795686,51.330541 +-2.590852,51.472214 +-2.53817,51.430494 +-2.591523,51.474 +-2.622732,51.443959 +-2.582209,51.456018 +-2.506933,51.486858 +-2.598661,51.419834 +-2.590351,51.476955 +-2.376333,51.378273 +-2.635409,51.484434 +-2.528341,51.481252 +-2.388927,51.385866 +-2.562096,51.461349 +-2.596604,51.450749 +-2.578786,51.466474 +-2.626858,51.44052 +-2.551407,51.488141 +-2.610691,51.465728 +-2.50537,51.299775 +-2.577011,51.469585 +-2.630755,51.463338 +-2.477034,51.591618 +-2.799228,51.464729 +-2.441385,51.48198 +-2.357306,51.383287 +-2.571178,51.463589 +-2.783308,51.480806 +-2.782992,51.339484 +-2.587374,51.482769 +-2.683654,51.478624 +-2.591095,51.439771 +-2.579521,51.506321 +-2.555456,51.461039 +-2.588684,51.487196 +-2.592911,51.468939 +-2.548079,51.434009 +-2.557164,51.426315 +-2.967813,51.342859 +-2.363402,51.358334 +-2.596549,51.444302 +-2.556539,51.458912 +-2.604311,51.42841 +-2.783147,51.336794 +-2.497264,51.478502 +-2.394752,51.379876 +-2.598581,51.452258 +-2.35703,51.379179 +-2.838366,51.439467 +-2.601452,51.510779 +-2.608638,51.527745 +-2.620655,51.525245 +-2.654375,51.490426 +-2.592502,51.457333 +-2.621924,51.49357 +-2.59351,51.444056 +-2.680365,51.43952 +-2.39605,51.538213 +-2.570199,51.46818 +-2.56663,51.539167 +-2.579444,51.468395 +-2.954911,51.330718 +-2.548888,51.45947 +-2.612022,51.439277 +-2.575618,51.469826 +-2.559178,51.480515 +-2.599414,51.441122 +-2.560519,51.44662 +-2.520202,51.539122 +-2.629272,51.457097 +-2.982002,51.340367 +-2.577472,51.464988 +-2.482112,51.528657 +-2.510816,51.56112 +-2.556636,51.474 +-2.482269,51.460275 +-2.546033,51.427671 +-2.600446,51.497872 +-2.746399,51.418078 +-2.527411,51.426803 +-2.583712,51.448646 +-2.522824,51.473562 +-2.593113,51.503322 +-2.612236,51.367081 +-2.550732,51.464398 +-2.56033,51.441747 +-2.532606,51.478985 +-2.607358,51.41202 +-2.600232,51.440992 +-2.957214,51.322031 +-2.564148,51.425805 +-2.580987,51.496918 +-2.971457,51.328487 +-2.599924,51.41855 +-2.787203,51.338062 +-2.567413,51.503539 +-2.590808,51.475496 +-2.390934,51.535164 +-2.619252,51.493045 +-2.757552,51.432492 +-2.540142,51.489138 +-2.49098,51.488671 +-2.714504,51.389629 +-2.591877,51.501386 +-2.566817,51.442768 +-2.420261,51.311306 +-2.368371,51.37623 +-2.693055,51.46331 +-2.490042,51.593155 +-2.547881,51.332017 +-2.623701,51.442218 +-2.591936,51.46809 +-2.617281,51.41855 +-2.580443,51.443879 +-2.623596,51.407007 +-2.589394,51.46635 +-2.585495,51.486726 +-2.460097,51.501204 +-2.574361,51.513001 +-2.844977,51.432838 +-2.668777,51.487333 +-2.760483,51.404562 +-2.571874,51.458272 +-2.576729,51.426606 +-2.579245,51.501548 +-2.597848,51.454492 +-2.554428,51.506766 +-2.630956,51.367296 +-2.576034,51.441176 +-2.590401,51.461804 +-2.563156,51.442228 +-2.494844,51.513003 +-2.559956,51.474703 +-2.551909,51.487932 +-2.592507,51.421016 +-2.596795,51.443266 +-2.598263,51.435652 +-2.492559,51.590969 +-2.963719,51.348252 +-2.369107,51.453358 +-2.591485,51.458849 +-2.515727,51.626592 +-2.612017,51.466917 +-2.594012,51.443919 +-2.591556,51.474359 +-2.580839,51.475114 +-2.617374,51.601213 +-2.553817,51.462342 +-2.599859,51.425663 +-2.529619,51.482181 +-2.581027,51.564615 +-2.556295,51.458976 +-2.573368,51.439634 +-2.609895,51.453521 +-2.366487,51.374159 +-2.969074,51.346185 +-2.632991,51.478252 +-2.667793,51.502804 +-2.506647,51.409127 +-2.605206,51.455893 +-2.573473,51.466437 +-2.591023,51.473211 +-2.433637,51.489526 +-2.596653,51.457771 +-2.623583,51.424056 +-2.593546,51.453471 +-2.55776,51.59787 +-2.57314,51.42951 +-2.499657,51.478716 +-2.488428,51.292815 +-2.593582,51.469592 +-2.535516,51.47783 +-2.523092,51.478119 +-2.65528,51.555466 +-2.485184,51.45414 +-2.837485,51.33301 +-2.947991,51.34383 +-2.530444,51.596549 +-2.536926,51.513322 +-2.400685,51.389549 +-2.97029,51.348 +-2.690695,51.321209 +-2.498649,51.472112 +-2.582809,51.447797 +-2.474419,51.620508 +-2.695797,51.421158 +-2.616318,51.479447 +-2.933006,51.344778 +-2.584877,51.489076 +-2.570703,51.449754 +-2.558621,51.467948 +-2.980466,51.345083 +-2.548224,51.434054 +-2.45849,51.289133 +-2.555791,51.506292 +-2.65914,51.380305 +-2.963276,51.34153 +-2.587547,51.459318 +-2.52598,51.505063 +-2.51741,51.425157 +-2.398237,51.393945 +-2.833311,51.395695 +-2.583275,51.448199 +-2.558947,51.538134 +-2.515538,51.424941 +-2.523095,51.482094 +-2.443882,51.510735 +-2.575518,51.459603 +-2.825995,51.391746 +-2.518371,51.522667 +-2.59212,51.477836 +-2.441823,51.481142 +-2.588261,51.521492 +-2.579545,51.460491 +-2.55619,51.505967 +-2.598227,51.456009 +-2.561381,51.50748 +-2.940431,51.35256 +-2.432626,51.540997 +-2.587962,51.49379 +-2.643322,51.432707 +-2.608566,51.500707 +-2.563088,51.457721 +-2.583764,51.459472 +-2.599571,51.523376 +-2.599717,51.445562 +-2.620389,51.43667 +-2.693882,51.498822 +-2.931979,51.344364 +-2.394115,51.38432 +-2.612386,51.457878 +-2.590096,51.462767 +-2.387731,51.380448 +-2.363397,51.381308 +-2.831958,51.424128 +-2.483216,51.496714 +-2.578556,51.490393 +-2.614073,51.475304 +-2.5281,51.465329 +-2.368549,51.367939 +-2.609034,51.458013 +-2.579217,51.441394 +-2.483534,51.389263 +-2.622133,51.508863 +-2.387772,51.380142 +-2.576529,51.45762 +-2.976788,51.343621 +-2.390146,51.395771 +-2.524913,51.472357 +-2.588914,51.459293 +-2.586324,51.463793 +-2.59051,51.479211 +-2.588873,51.452685 +-2.585265,51.48679 +-2.570804,51.462485 +-2.731774,51.450513 +-2.603489,51.525334 +-2.857017,51.364359 +-2.589833,51.445667 +-2.608651,51.457367 +-2.476542,51.494961 +-2.573938,51.465581 +-2.568689,51.46023 +-2.583293,51.455311 +-2.633533,51.416548 +-2.665258,51.498916 +-2.642224,51.486645 +-2.591528,51.474413 +-2.606028,51.364721 +-2.569488,51.458553 +-2.579387,51.420695 +-2.58471,51.533432 +-2.864753,51.396025 +-2.619205,51.510794 +-2.579514,51.485317 +-2.510952,51.519147 +-2.420684,51.550005 +-2.294207,51.588658 +-2.523698,51.461833 +-2.947477,51.332846 +-2.386974,51.452419 +-2.516454,51.441112 +-2.588857,51.459276 +-2.655741,51.502251 +-2.591406,51.45938 +-2.574223,51.460814 +-2.60679,51.450543 +-2.590955,51.452351 +-2.579572,51.485308 +-2.538482,51.476593 +-2.537293,51.477111 +-2.574657,51.494198 +-2.570482,51.501259 +-2.596478,51.442126 +-2.555238,51.440692 +-2.592335,51.457784 +-2.620237,51.509305 +-2.460708,51.39885 +-2.264327,51.518866 +-2.93386,51.35709 +-2.762869,51.425273 +-2.537713,51.58008 +-2.606483,51.4925 +-2.596519,51.455272 +-2.613757,51.449563 +-2.596533,51.416572 +-2.57492,51.44066 +-2.564027,51.514022 +-2.581562,51.45612 +-2.696788,51.424848 +-2.609917,51.452964 +-2.657191,51.492901 +-2.528497,51.481026 +-2.504314,51.48713 +-2.588292,51.452292 +-2.600852,51.439937 +-2.362395,51.389017 +-2.552576,51.533534 +-2.608509,51.460749 +-2.440217,51.451944 +-2.596612,51.457987 +-2.952472,51.348083 +-2.422901,51.529389 +-2.560823,51.474942 +-2.59082,51.447469 +-2.575714,51.49002 +-2.584833,51.605957 +-2.598703,51.44617 +-2.548612,51.473624 +-2.507084,51.451206 +-2.46624,51.465052 +-2.357425,51.381983 +-2.342949,51.528841 +-2.58251,51.448014 +-2.971786,51.345389 +-2.595941,51.456183 +-2.928135,51.363781 +-2.548618,51.534074 +-2.534721,51.480036 +-2.59113,51.467006 +-2.605959,51.405158 +-2.514394,51.45112 +-2.549344,51.443481 +-2.813276,51.371486 +-2.582105,51.456954 +-2.3097,51.402404 +-2.537867,51.452498 +-2.583881,51.437064 +-2.463201,51.445004 +-2.587805,51.411014 +-2.614168,51.469468 +-2.506917,51.480259 +-2.563195,51.427832 +-2.586138,51.487478 +-2.972134,51.345548 +-2.587975,51.4814 +-2.590902,51.460533 +-2.5454,51.474772 +-2.55062,51.455101 +-2.972909,51.34555 +-2.573111,51.429493 +-2.601621,51.453591 +-2.645023,51.482943 +-2.614775,51.458945 +-2.481274,51.460127 +-2.591829,51.44536 +-2.623032,51.448003 +-2.560147,51.478533 +-2.557428,51.481063 +-2.603221,51.45486 +-2.59042,51.453244 +-2.599765,51.452504 +-2.517442,51.4254 +-2.553811,51.459447 +-2.582761,51.457607 +-2.563953,51.457879 +-2.944703,51.350115 +-2.606102,51.432249 +-2.609493,51.487026 +-2.581895,51.460776 +-2.560664,51.446664 +-2.483931,51.621261 +-2.520522,51.462288 +-2.592166,51.461399 +-2.955066,51.331948 +-2.864042,51.357527 +-2.584921,51.470058 +-2.601981,51.46999 +-2.473151,51.28412 +-2.56962,51.454102 +-2.583227,51.455761 +-2.363524,51.384644 +-2.568119,51.547558 +-2.378721,51.387311 +-2.931838,51.345938 +-2.516971,51.50344 +-2.617449,51.418163 +-2.525122,51.481824 +-2.559764,51.41428 +-2.586701,51.465149 +-2.470626,51.502358 +-2.821537,51.387569 +-2.885408,51.374443 +-2.582789,51.447365 +-2.571866,51.516286 +-2.6249,51.415156 +-2.553522,51.459421 +-2.948076,51.343776 +-2.61147,51.433534 +-2.578288,51.4817 +-2.676145,51.508331 +-2.671511,51.53321 +-2.545975,51.44935 +-2.623464,51.41421 +-2.509212,51.498879 +-2.570702,51.406962 +-2.549366,51.533945 +-2.586606,51.410624 +-2.62769,51.483379 +-2.528948,51.477716 +-2.569903,51.437529 +-2.58094,51.496666 +-2.446022,51.291465 +-2.605025,51.50309 +-2.474236,51.410153 +-2.603722,51.492811 +-2.577315,51.505037 +-2.554482,51.506523 +-2.561362,51.473123 +-2.672792,51.504762 +-2.541894,51.463171 +-2.486257,51.484752 +-2.487702,51.287854 +-2.598423,51.422568 +-2.830927,51.440213 +-2.542069,51.47557 +-2.962343,51.338786 +-2.430591,51.386422 +-2.525717,51.473432 +-2.816497,51.385392 +-2.490782,51.442068 +-2.403065,51.388956 +-2.374779,51.407843 +-2.670833,51.495962 +-2.535283,51.524317 +-2.585124,51.445411 +-2.553795,51.544857 +-2.591653,51.458488 +-2.597408,51.421953 +-2.593738,51.443938 +-2.590303,51.459808 +-2.620518,51.436633 +-2.617453,51.416355 +-2.590023,51.462669 +-2.615175,51.490809 +-2.62304,51.555291 +-2.562008,51.434312 +-2.56153,51.443414 +-2.51891,51.496589 +-2.566263,51.434067 +-2.597763,51.462306 +-2.548088,51.483967 +-2.601767,51.453788 +-2.922188,51.358019 +-2.437241,51.541097 +-2.584275,51.474692 +-2.584909,51.445448 +-2.622072,51.411259 +-2.616904,51.489829 +-2.585658,51.456801 +-2.470659,51.491577 +-2.581974,51.480593 +-2.436678,51.527414 +-2.582789,51.438293 +-2.440028,51.539981 +-2.529433,51.476059 +-2.552579,51.551679 +-2.347029,51.557349 +-2.583303,51.438011 +-2.675328,51.487187 +-2.570589,51.4637 +-2.355746,51.391519 +-2.609481,51.464529 +-2.95026,51.348722 +-2.581806,51.456056 +-2.609238,51.463596 +-2.607924,51.456823 +-2.550689,51.459632 +-2.577201,51.466383 +-2.48491,51.4826 +-2.588414,51.48084 +-2.977429,51.327861 +-2.523677,51.452464 +-2.637762,51.472426 +-2.558513,51.507448 +-2.456707,51.291594 +-2.962334,51.350691 +-2.3969,51.37237 +-2.58457,51.449379 +-2.58611,51.463929 +-2.768868,51.486161 +-2.770133,51.486836 +-2.4105,51.530629 +-2.410589,51.530898 +-2.566328,51.53809 +-2.440883,51.308892 +-2.593661,51.470131 +-2.616507,51.479581 +-2.558495,51.451701 +-2.967593,51.343346 +-2.547309,51.487495 +-2.565535,51.450813 +-2.609874,51.50588 +-2.46789,51.494052 +-2.502001,51.306506 +-2.511416,51.467912 +-2.758897,51.434659 +-2.629616,51.460125 +-2.583438,51.448594 +-2.454903,51.455592 +-2.573734,51.466535 +-2.494058,51.412319 +-2.500979,51.494212 +-2.522917,51.519391 +-2.539939,51.490209 +-2.563747,51.351139 +-2.400017,51.368969 +-2.504143,51.487248 +-2.972461,51.333208 +-2.425041,51.344136 +-2.484652,51.352284 +-2.489393,51.396963 +-2.306631,51.403572 +-2.388884,51.38592 +-2.391761,51.396323 +-2.3593,51.386473 +-2.33035,51.401377 +-2.476719,51.279762 +-2.389533,51.38626 +-2.548035,51.397845 +-2.354332,51.381507 +-2.47513,51.289651 +-2.46019,51.28855 +-2.559539,51.352256 +-2.55265,51.401519 +-2.491486,51.409794 +-2.381961,51.38463 +-2.3866,51.380865 +-2.357494,51.377892 +-2.552906,51.320169 +-2.448178,51.293471 +-2.358234,51.377008 +-2.323325,51.398024 +-2.318002,51.333002 +-2.359354,51.376942 +-2.5099,51.412017 +-2.4619,51.405877 +-2.421863,51.310824 +-2.516975,51.424871 +-2.453806,51.29986 +-2.451862,51.277217 +-2.482759,51.285573 +-2.451909,51.277622 +-2.369371,51.362964 +-2.610771,51.327129 +-2.305077,51.394782 +-2.433318,51.312949 +-2.352901,51.376683 +-2.645044,51.346547 +-2.411374,51.328278 +-2.387176,51.384487 +-2.564032,51.374328 +-2.516314,51.424928 +-2.34151,51.39818 +-2.463359,51.32268 +-2.383567,51.384166 +-2.496131,51.348775 +-2.549715,51.367706 +-2.421201,51.318415 +-2.302295,51.404447 +-2.541354,51.36038 +-2.450312,51.30775 +-2.351186,51.379772 +-2.36196,51.377608 +-2.498848,51.417739 +-2.641401,51.330418 +-2.383748,51.373214 +-2.39642,51.406612 +-2.361746,51.388714 +-2.448627,51.293846 +-2.318269,51.367493 +-2.516696,51.419199 +-2.360232,51.358875 +-2.558676,51.408792 +-2.375641,51.3587 +-2.360163,51.430485 +-2.52663,51.296291 +-2.34889,51.393275 +-2.365842,51.381561 +-2.596418,51.455245 +-2.633832,51.469346 +-2.604018,51.462957 +-2.593057,51.4691 +-2.570176,51.45828 +-2.547169,51.457769 +-2.594894,51.411077 +-2.622149,51.486762 +-2.590495,51.445708 +-2.562739,51.475005 +-2.593349,51.425004 +-2.55195,51.43766 +-2.594728,51.41382 +-2.574155,51.457667 +-2.689816,51.495744 +-2.557532,51.460112 +-2.528853,51.480638 +-2.553336,51.473755 +-2.680977,51.494168 +-2.535761,51.476669 +-2.589439,51.468759 +-2.546042,51.473024 +-2.589737,51.443842 +-2.640722,51.486383 +-2.569359,51.426211 +-2.619719,51.464763 +-2.628949,51.459769 +-2.540856,51.489854 +-2.580828,51.457266 +-2.603497,51.45511 +-2.598134,51.456603 +-2.680598,51.510301 +-2.568881,51.451363 +-2.549574,51.488986 +-2.591599,51.455378 +-2.575559,51.466265 +-2.534334,51.428426 +-2.524498,51.470093 +-2.560257,51.463975 +-2.600276,51.402588 +-2.579751,51.466497 +-2.581991,51.455884 +-2.549146,51.464144 +-2.569604,51.453976 +-2.56321,51.460652 +-2.563489,51.426006 +-2.589427,51.491247 +-2.560822,51.44197 +-2.572116,51.425802 +-2.598479,51.404845 +-2.546932,51.453553 +-2.554515,51.459344 +-2.601565,51.466827 +-2.53243,51.427958 +-2.581989,51.480593 +-2.571841,51.453354 +-2.54412,51.426466 +-2.570206,51.47683 +-2.60197,51.453895 +-2.514058,51.474994 +-2.598197,51.452566 +-2.585482,51.423875 +-2.539328,51.476284 +-2.578999,51.426478 +-2.591958,51.455349 +-2.569736,51.454182 +-2.590917,51.472816 +-2.557892,51.464867 +-2.561254,51.456084 +-2.59483,51.410601 +-2.588235,51.405302 +-2.588333,51.453218 +-2.583405,51.448288 +-2.532983,51.477976 +-2.562623,51.47496 +-2.59094,51.459005 +-2.599243,51.452219 +-2.528563,51.471828 +-2.598764,51.406813 +-2.564025,51.457869 +-2.614586,51.424553 +-2.520687,51.459131 +-2.582239,51.44708 +-2.606957,51.492363 +-2.583397,51.454439 +-2.540574,51.461118 +-2.539798,51.489301 +-2.575375,51.415023 +-2.550675,51.45965 +-2.611217,51.458766 +-2.600996,51.453154 +-2.559387,51.451696 +-2.623354,51.464241 +-2.590931,51.446039 +-2.565815,51.471096 +-2.585898,51.485645 +-2.580482,51.408443 +-2.573201,51.496363 +-2.589847,51.464612 +-2.581079,51.461113 +-2.626758,51.440637 +-2.525885,51.454252 +-2.586051,51.457087 +-2.585734,51.486329 +-2.577941,51.425773 +-2.611155,51.479968 +-2.581322,51.440638 +-2.589016,51.452684 +-2.560477,51.454928 +-2.586522,51.477028 +-2.592057,51.40629 +-2.596134,51.503001 +-2.5342,51.458872 +-2.56176,51.443386 +-2.615798,51.506065 +-2.555543,51.474068 +-2.523442,51.452078 +-2.584052,51.458392 +-2.63319,51.467713 +-2.67764,51.520757 +-2.527993,51.454854 +-2.563688,51.474946 +-2.586852,51.483662 +-2.582788,51.438257 +-2.58629,51.410617 +-2.579499,51.48529 +-2.616605,51.48261 +-2.589626,51.464217 +-2.577768,51.425792 +-2.514164,51.466551 +-2.689167,51.505216 +-2.626793,51.408483 +-2.578345,51.444096 +-2.560751,51.474897 +-2.514876,51.463266 +-2.684754,51.494407 +-2.534768,51.464418 +-2.665101,51.499016 +-2.517228,51.477759 +-2.584346,51.455504 +-2.554783,51.457707 +-2.574303,51.460265 +-2.677369,51.526765 +-2.574644,51.426716 +-2.587518,51.483938 +-2.593112,51.503277 +-3.273546,50.949435 +-2.726696,51.147319 +-2.382017,51.201394 +-2.590982,51.264818 +-2.661175,51.210292 +-2.424916,51.268578 +-2.535402,51.177378 +-2.41991,51.282363 +-2.276765,51.264158 +-2.783989,51.169744 +-2.735671,51.130061 +-2.644291,51.211906 +-2.56709,51.175133 +-2.526435,51.156242 +-2.542334,51.227998 +-2.507554,51.284542 +-2.542866,51.228166 +-2.800096,51.172269 +-2.627628,51.223543 +-2.276187,51.26344 +-2.350975,51.244995 +-2.437201,51.241458 +-2.549025,51.190982 +-2.700697,51.161919 +-2.714228,51.143556 +-2.756692,51.127409 +-2.586767,51.2692 +-2.600697,51.197517 +-2.577211,51.276486 +-2.716498,51.156284 +-2.288217,51.255156 +-2.305792,51.310088 +-2.667037,51.208758 +-2.487099,51.188883 +-2.711762,51.150495 +-2.56486,51.192822 +-2.647601,51.144726 +-2.323259,51.227405 +-2.314745,51.209535 +-2.732113,51.115659 +-2.50635,51.144947 +-2.496344,51.195651 +-2.726784,51.142058 +-2.578473,51.236502 +-2.542604,51.184043 +-2.409946,51.27917 +-2.492987,51.269876 +-2.40511,51.275464 +-2.357935,51.29451 +-2.250138,51.251485 +-2.547165,51.189795 +-2.61911,51.07636 +-2.316358,51.225545 +-2.5403,51.247538 +-2.902945,51.359581 +-2.986077,51.352301 +-2.978568,51.337563 +-2.797507,51.471727 +-2.94053,51.352478 +-2.912598,51.363282 +-2.969767,51.318456 +-2.946526,51.344517 +-2.824988,51.310125 +-2.955647,51.335738 +-2.925558,51.360627 +-2.767875,51.479343 +-2.805507,51.392959 +-2.62344,51.401946 +-2.963077,51.345704 +-2.902747,51.359726 +-2.710782,51.372917 +-2.809831,51.370818 +-2.67732,51.469039 +-2.965753,51.350061 +-2.860461,51.441519 +-2.96368,51.334072 +-2.672329,51.443883 +-2.895795,51.292708 +-2.703827,51.387832 +-2.948961,51.353956 +-2.700504,51.381917 +-2.660322,51.380595 +-2.973002,51.346539 +-2.893336,51.296027 +-2.796814,51.394753 +-2.967253,51.343547 +-2.947691,51.343914 +-2.929193,51.345078 +-2.745245,51.394023 +-2.967762,51.343183 +-2.982423,51.35065 +-2.776579,51.39149 +-2.912185,51.3562 +-2.923279,51.349441 +-2.766977,51.457544 +-2.673122,51.400978 +-2.68497,51.440554 +-2.895795,51.292708 +-2.926221,51.325112 +-2.675554,51.399202 +-2.86148,51.390906 +-2.977001,51.34825 +-2.643273,51.413869 +-2.637597,51.420303 +-2.963262,51.341503 +-2.634045,51.436939 +-2.974201,51.327933 +-2.960029,51.322844 +-2.684675,51.419884 +-2.743705,51.411585 +-2.915436,51.35791 +-2.63768,51.436595 +-2.955561,51.335047 +-2.931482,51.358827 +-2.863107,51.430782 +-2.895795,51.292708 +-2.968713,51.346071 +-2.643158,51.413816 +-2.673122,51.400978 +-2.768666,51.483582 +-2.813943,51.445511 +-2.968063,51.343181 +-2.920385,51.334699 +-2.778791,51.389758 +-2.719857,51.476923 +-2.979251,51.350074 +-2.974619,51.350338 +-2.630991,51.437692 +-2.662054,51.461709 +-2.966369,51.345919 +-2.673692,51.400598 +-2.94133,51.3474 +-2.748935,51.453579 +-2.799074,51.451845 +-2.636054,51.437584 +-2.76154,51.485445 +-2.808893,51.373072 +-2.622948,51.403828 +-2.842506,51.427533 +-2.85147,51.423062 +-2.82507,51.372258 +-2.895635,51.292584 +-2.9601,51.338624 +-2.942471,51.34633 +-2.982703,51.236817 +-2.981558,51.157408 +-2.797713,51.211581 +-3.117088,51.15139 +-2.998291,51.190627 +-2.8106,51.319999 +-2.998208,51.111262 +-2.951843,51.154632 +-3.137399,51.099946 +-2.890088,51.269759 +-3.064954,51.15122 +-2.987726,51.165035 +-2.995174,51.238582 +-2.989013,51.149621 +-2.873513,51.274839 +-2.933328,51.25597 +-2.84938,51.132914 +-3.000848,51.128981 +-2.920697,51.158766 +-2.941447,51.169364 +-2.975107,51.221711 +-2.976187,51.12383 +-2.790292,51.287273 +-2.994061,51.135037 +-2.999483,51.109462 +NULL,NULL +-3.140636,51.146145 +-2.998827,51.238578 +-2.756123,51.286599 +-2.995191,51.101828 +-2.856599,51.183946 +-2.994651,51.289995 +-3.002434,51.127673 +-2.933006,51.257034 +-2.997193,51.129183 +-2.98101,51.124833 +-3.063727,51.151348 +-2.997738,51.176982 +-2.793186,51.134693 +-2.864722,51.137855 +-2.967283,51.168857 +-2.997495,51.235955 +-2.850503,51.133364 +-2.895387,51.099712 +-2.885929,51.152551 +-2.875527,51.097768 +-3.106926,51.180828 +-2.845905,51.137525 +-2.993726,51.171351 +-2.756138,51.287498 +-3.091094,51.135629 +-2.988865,51.237629 +-3.081355,51.108463 +-2.519561,51.511997 +-2.513251,51.4814 +-2.564424,51.507717 +-2.541582,51.576502 +-2.548486,51.54713 +-2.505919,51.459097 +-2.582962,51.504992 +-2.472454,51.505021 +-2.534047,51.532046 +-2.446211,51.539696 +-2.412275,51.538787 +-2.609508,51.530312 +-2.553935,51.546907 +-2.500403,51.494277 +-2.492646,51.591005 +-2.431141,51.455511 +-2.508642,51.4865 +-2.486873,51.453288 +-2.499614,51.478761 +-2.500397,51.504204 +-2.428805,51.531813 +-2.540588,51.529292 +-2.500367,51.504087 +-2.403936,51.516984 +-2.506314,51.525884 +-2.499405,51.48734 +-2.437952,51.497935 +-2.502327,51.568359 +-2.463602,51.511477 +-2.399229,51.583465 +-2.398708,51.629431 +-2.320552,51.580748 +-2.492819,51.500271 +-2.644244,51.563502 +-2.495962,51.439439 +-2.486802,51.512902 +-2.549186,51.525008 +-2.571657,51.526114 +-2.462351,51.45773 +-2.404362,51.516264 +-2.556232,51.548425 +-2.470543,51.491533 +-2.475067,51.45972 +-2.398177,51.572167 +-2.51019,51.450977 +-2.508834,51.440292 +-2.524956,51.608946 +-2.470997,51.510404 +-2.588369,51.522004 +-2.49775,51.528367 +-2.490822,51.597252 +-2.567552,51.508925 +-2.524954,51.608775 +-2.360846,51.486158 +-2.502185,51.445419 +-2.56413,51.510721 +-2.426253,51.630386 +-2.458044,51.481737 +-2.517983,51.513875 +-2.62026,51.520598 +-2.628369,51.522291 +-2.491725,51.474901 +-2.459499,51.627716 +-2.647568,51.564932 +-2.478449,51.50239 +-2.634393,51.520172 +-2.506815,51.467149 +-2.549845,51.527046 +-2.461961,51.508858 +-2.463167,51.61907 +-2.528123,51.523378 +-2.50674,51.481203 +-2.500246,51.489153 +-2.600163,51.530045 +-2.313026,51.567138 +-2.509284,51.488467 +-2.387003,51.452437 +-2.432962,51.527788 +-2.495719,51.511291 +-2.490165,51.505362 +-2.628369,51.522291 +-2.420587,51.622305 +-2.361177,51.455136 +-2.720786,50.958661 +-2.418874,51.050003 +-2.854181,51.057694 +-2.700671,50.991075 +-2.415073,50.996603 +-2.642637,50.951788 +-2.921951,50.881177 +-2.619184,50.89778 +-2.924823,50.940767 +-2.436557,51.046135 +-2.687754,50.945192 +-2.634701,50.94712 +-2.857151,51.059345 +-2.91288,50.917426 +-2.573713,51.030965 +-2.827983,51.037704 +-2.637455,51.05888 +-2.805197,50.875755 +-2.959541,50.842673 +-2.740814,51.054925 +-2.812436,51.056409 +-2.466719,51.041099 +-2.770859,50.948134 +-2.998522,50.901563 +-2.566477,50.982523 +-2.642451,50.951726 +-2.901491,50.876472 +-2.784856,50.903573 +-2.754092,50.951742 +-2.509347,51.076989 +-2.786955,50.880412 +-2.859001,50.886181 +-2.95074,50.841549 +-2.937843,50.933487 +-2.819515,50.883353 +-2.88147,50.897866 +-2.696462,51.026863 +-2.999031,50.902098 +-2.364318,50.987897 +-2.802182,50.941845 +-3.006295,50.91646 +-2.440649,51.041443 +-2.97124,50.878053 +-2.724725,50.909825 +-2.945964,50.937468 +-2.354214,51.067842 +-2.88234,50.939378 +-2.786128,50.871002 +-2.823285,50.931887 +-2.471041,51.015814 +-2.636037,50.944927 +-2.717378,51.051609 +-2.626794,51.021763 +-2.660941,50.955535 +-2.669761,50.943174 +-2.609356,50.947713 +-2.927942,50.873594 +-2.819143,51.039484 +-3.073819,51.009436 +-3.094304,51.021017 +-3.086209,50.999204 +-2.934065,51.041742 +-3.097643,51.025949 +-3.094412,51.015305 +-3.191432,51.055093 +-3.083781,51.019766 +-3.34896,51.040026 +-3.060209,51.017689 +-3.0842,50.909306 +-3.098327,50.940225 +-3.084271,50.909323 +-3.036074,51.055503 +-3.003977,51.048518 +-3.061702,51.017541 +-3.198469,51.066261 +-3.098241,50.940217 +-3.039625,50.945106 +-3.021431,51.000841 +-3.095396,51.028021 +-3.266165,50.953912 +-3.105856,51.027149 +-3.191432,51.055093 +-3.083939,51.017975 +-3.231925,50.976554 +-3.179314,50.990883 +-3.09252,51.032472 +-3.119886,51.067904 +-3.567229,51.100486 +-3.247647,51.176444 +-3.514931,51.121184 +-3.182191,51.152701 +-3.441342,51.190431 +-3.268793,51.168708 +-2.861734,51.390679 +-2.566476,51.47567 +-2.617109,51.41856 +-2.59734,51.497186 +-2.851443,51.433987 +-2.588988,51.452702 +-2.549755,51.521975 +-2.607301,51.412047 +-2.610078,51.465057 +-2.965762,51.348442 +-2.6157,51.434654 +-2.558127,51.541843 +-2.531546,51.52152 +-2.560544,51.522625 +-2.397257,51.441775 +-2.955323,51.33397 +-2.510821,51.436578 +-2.650102,51.409714 +-2.503539,51.514783 +-2.489754,51.536852 +-2.564732,51.431197 +-2.563162,51.457891 +-2.600734,51.439767 +-2.55429,51.474038 +-2.597773,51.475173 +-2.808807,51.373055 +-2.581931,51.480603 +-2.573849,51.466544 +-2.583979,51.459399 +-2.492922,51.467074 +-2.925472,51.360628 +-2.359907,51.48751 +-2.579464,51.483609 +-2.477706,51.44918 +-2.844601,51.4382 +-2.588996,51.448872 +-2.584592,51.452158 +-2.582828,51.493303 +-2.54808,51.434018 +-2.866773,51.373629 +-2.547032,51.465494 +-2.566985,51.450527 +-2.588696,51.521705 +-2.585394,51.46423 +-2.473108,51.620891 +-2.663968,51.498357 +-2.519862,51.315447 +-2.597116,51.453596 +-2.454934,51.45579 +-2.396406,51.406612 +-2.482206,51.284793 +-2.554535,51.506101 +-2.334019,51.510227 +-2.573154,51.429465 +-2.573657,51.424814 +-2.590416,51.476397 +-2.578243,51.490682 +-2.521161,51.466592 +-2.843901,51.432972 +-2.550675,51.509823 +-2.536505,51.466379 +-2.869309,51.430907 +-2.588203,51.459962 +-2.40812,51.393309 +-2.433408,51.542865 +-2.489966,51.50691 +-2.617436,51.418325 +-2.505205,51.485607 +-2.588946,51.452774 +-2.399188,51.58378 +-2.511245,51.462949 +-2.965507,51.349964 +-2.812071,51.384605 +-2.526948,51.526549 +-2.765619,51.486515 +-2.482284,51.469833 +-2.396362,51.371553 +-2.60981,51.421233 +-2.748365,51.394075 +-2.750443,51.423537 +-2.582778,51.497332 +-2.592114,51.471848 +-2.443143,51.545993 +-2.597072,51.453471 +-2.514445,51.619252 +-2.592208,51.531308 +-2.57786,51.342978 +-2.594295,51.456884 +-2.58531,51.486925 +-2.584568,51.449191 +-2.377642,51.357525 +-2.877825,51.36407 +-2.503046,51.493592 +-2.552414,51.4511 +-2.468917,51.311814 +-2.856054,51.365121 +-2.581265,51.440683 +-2.982024,51.336689 +-2.976351,51.345387 +-2.625267,51.5073 +-2.607732,51.451015 +-2.455059,51.63454 +-2.434127,51.516859 +-2.548079,51.433991 +-2.559268,51.412565 +-2.506804,51.358314 +-2.587993,51.459307 +-2.588864,51.425179 +-2.912564,51.356512 +-2.572814,51.439088 +-2.508964,51.614798 +-2.580991,51.42137 +-2.381232,51.379939 +-2.752921,51.327524 +-2.865842,51.387511 +-2.973872,51.350335 +-2.510222,51.612374 +-2.575582,51.415462 +-2.39325,51.365503 +-2.537895,51.476857 +-2.498556,51.447754 +-2.538052,51.506159 +-2.486801,51.512758 +-2.356563,51.490964 +-2.420261,51.311306 +-2.57685,51.496705 +-2.516528,51.484596 +-2.593122,51.446315 +-2.351357,51.385193 +-2.549472,51.638407 +-2.553557,51.413527 +-2.611454,51.440952 +-2.562288,51.522626 +-2.463478,51.530575 +-2.531775,51.47933 +-2.527418,51.590862 +-2.43835,51.623418 +-2.600633,51.440792 +-2.610897,51.432656 +-2.528371,51.574692 +-2.601137,51.439756 +-2.909354,51.352517 +-2.557561,51.522622 +-2.922808,51.338106 +-2.710693,51.476548 +-2.603512,51.455101 +-2.577246,51.531464 +-2.578316,51.48169 +-2.585605,51.504367 +-2.585603,51.450211 +-2.489965,51.353611 +-2.55618,51.458995 +-2.673963,51.500152 +-2.621257,51.519712 +-2.396086,51.598869 +-2.78439,51.348188 +-2.578303,51.443044 +-2.58269,51.447483 +-2.485998,51.47123 +-2.59001,51.449379 +-2.564762,51.431278 +-2.972797,51.350425 +-2.354911,51.452575 +-2.592941,51.468975 +-2.955648,51.335055 +-2.541426,51.491748 +-2.941806,51.346074 +-2.568809,51.466379 +-2.575267,51.448796 +-2.596637,51.42238 +-2.506213,51.442713 +-2.540842,51.489845 +-2.720636,51.477027 +-2.617305,51.508826 +-2.944017,51.350265 +-2.526396,51.504855 +-2.532986,51.497928 +-2.596641,51.457978 +-2.809832,51.37089 +-2.486327,51.453416 +-2.409661,51.539839 +-2.517825,51.512625 +-2.574689,51.440581 +-2.415953,51.325151 +-2.3098,51.402422 +-2.385953,51.370581 +-2.377285,51.357715 +-2.553649,51.462738 +-2.547311,51.439516 +-2.54205,51.493391 +-2.613956,51.429016 +-2.571582,51.499356 +-2.547392,51.19322 +-2.739706,51.131258 +-2.643182,51.212452 +-2.702045,51.380316 +-2.844963,51.433638 +-2.909538,51.362524 +-2.979074,51.355894 +-2.732921,51.318947 +-2.784216,51.322004 +-2.509065,51.614771 +-2.486845,51.512839 +-2.56867,51.546612 +-2.442252,51.636872 +-2.333976,51.510245 +-2.490757,51.49341 +-2.48473,51.487375 +-2.473906,51.440834 +-2.630568,50.94886 +-2.9595,50.869751 +-3.039278,50.907223 +-2.636272,50.942282 +-2.990764,51.022327 +-2.557575,51.80405 +-2.082463,51.893122 +-2.267269,51.874955 +-2.378893,51.994955 +-2.232877,51.735209 +-2.081429,51.89181 +-2.521266,51.841026 +-1.977659,51.870411 +-1.95855,51.864112 +-1.929916,51.964832 +-2.108628,51.703894 +-2.297654,51.876635 +-1.908674,51.687626 +-2.570419,51.83338 +-2.049779,51.903857 +-2.074258,51.896454 +-2.17643,51.709026 +-2.103438,51.90839 +-2.52447,51.72321 +-2.149121,51.932976 +-2.068823,51.905448 +-2.054378,52.004076 +-2.217599,51.747268 +-2.10839,51.918077 +-2.171974,51.816216 +-2.270323,51.827143 +-2.185792,51.888518 +-2.598978,51.751266 +-2.578358,51.857212 +-2.303885,51.962599 +-2.32628,51.76962 +-2.207374,51.737981 +-2.224789,51.870576 +-2.030303,51.861499 +-2.233632,51.858951 +-2.047656,51.902645 +-2.219301,51.844162 +-2.49855,51.823933 +-2.211183,51.741022 +-1.960422,51.866478 +-1.964539,51.875919 +-1.908127,51.686394 +-2.271929,51.835915 +-2.231709,51.874662 +-2.485578,51.755035 +-2.250734,51.858466 +-2.284212,51.772229 +-1.882243,51.772317 +-2.005717,51.742399 +-1.730751,51.699105 +-2.21801,51.74529 +-2.301865,51.665982 +-1.998447,51.711767 +-1.731254,51.912157 +-2.23975,51.865286 +-2.213137,51.863818 +-2.149448,52.000783 +-2.146394,51.841479 +-2.591879,51.815408 +-2.250846,51.85763 +-2.273797,51.825715 +-2.275145,51.82305 +-2.070908,51.9007 +-2.659947,51.640643 +-2.343919,51.735674 +-1.970105,51.938659 +-2.611768,51.761908 +-2.243109,51.860685 +-2.194928,51.790178 +-1.99846,51.780494 +-2.557735,51.804031 +-2.051494,51.941816 +-2.270347,51.828708 +-2.078622,51.882012 +-2.065732,51.899399 +-2.407324,51.699416 +-2.198324,51.612605 +-1.983411,51.869324 +-2.22506,51.852126 +-2.091637,51.909541 +-2.294935,51.907427 +-2.302088,51.862014 +-2.267087,51.819769 +-2.305905,51.720467 +-2.218603,51.694102 +-1.878107,51.962974 +-2.254755,51.842768 +-2.183169,51.929331 +-2.358249,51.718413 +-2.45593,51.929579 +-2.283133,51.731826 +-2.598427,51.795001 +-2.283009,51.746814 +-2.133358,51.895035 +-2.238307,51.864426 +-2.184663,51.861097 +-2.116866,51.901418 +-2.276766,51.827254 +-2.216499,51.735312 +-2.534168,51.725504 +-2.249936,51.745801 +-2.00088,51.75104 +-2.282442,51.755699 +-2.206032,51.71039 +-2.069915,51.916093 +-2.038237,51.783482 +-2.466854,51.66866 +-2.065209,51.899229 +-2.119766,51.909705 +-2.242388,51.840133 +-2.246328,51.851957 +-2.063728,51.879647 +-2.358498,51.685765 +-2.228291,51.853738 +-2.233143,51.733563 +-2.224193,51.67779 +-2.251988,51.838486 +-2.511019,51.834687 +-2.23209,51.852858 +-2.235656,51.86008 +-1.967456,51.717148 +-2.394009,52.004723 +-2.108007,51.916163 +-2.539217,51.730102 +-2.330254,51.764107 +-1.70348,51.990427 +-2.629887,51.67805 +-1.964688,51.72078 +-2.075415,51.892794 +-2.184736,51.86125 +-2.241924,51.859078 +-2.248084,51.643189 +-2.175594,51.885126 +-2.590472,51.852027 +-1.855292,51.806875 +-2.519643,51.737851 +-1.944496,51.742611 +-2.278826,51.613071 +-2.182717,51.717801 +-2.23987,51.879716 +-2.499388,51.814453 +-2.259499,51.83739 +-2.166785,51.856484 +-2.229803,51.740097 +-2.267039,51.880179 +-2.172354,51.851055 +-2.217935,51.841008 +-2.23831,51.873084 +-2.253226,51.854829 +-2.060873,51.89585 +-2.607063,51.6952 +-2.225341,51.850381 +-2.257101,51.831632 +-2.211543,51.873747 +-1.728653,51.940922 +-2.295329,51.816779 +-2.509731,51.735961 +-1.827381,51.701813 +-2.569172,51.80127 +-2.303062,51.713083 +-1.84331,51.832655 +-2.149107,51.88946 +-2.161076,52.001856 +-2.244142,51.866572 +-2.164873,51.833983 +-2.104923,51.896673 +-2.261253,51.854559 +-2.184882,51.861438 +-2.184868,51.861447 +-1.85014,51.707095 +-2.461432,51.823608 +-2.098346,51.839668 +-2.569273,51.801242 +-1.972177,51.951444 +-2.242071,51.851373 +-2.407222,51.935746 +-2.067852,51.888312 +-2.42231,51.920678 +-2.066934,51.915564 +-2.222616,51.7542 +-2.139076,51.850056 +-2.07296,51.929226 +-2.183713,51.770514 +-2.334068,51.748775 +-2.622578,51.810368 +-2.323562,51.76034 +-2.087343,51.884164 +-2.278354,51.689363 +-2.507372,51.816199 +-2.013906,51.714949 +-2.248104,51.855415 +-2.102448,51.894743 +-2.071045,51.904296 +-2.598754,51.722297 +-2.48563,51.755817 +-1.95065,51.97146 +-2.62801,51.802507 +-2.23647,51.854747 +-2.159099,51.900236 +-2.225491,51.854229 +-1.712223,51.960096 +-2.368634,51.697782 +-2.223613,51.697959 +-2.508271,51.811043 +-2.069479,51.963573 +-2.109321,51.918373 +-2.124615,51.922898 +-2.272103,51.835923 +-2.097309,51.843382 +-1.810508,51.889106 +-2.308908,51.962882 +-2.331693,51.752792 +-2.239604,51.865179 +-2.264818,51.875563 +-2.639086,51.737603 +-2.065467,51.936504 +-2.125806,51.657356 +-2.210389,51.86314 +-2.083643,51.894632 +-1.859347,51.934704 +-2.395763,51.697756 +-2.315737,51.752018 +-2.193149,51.709827 +-2.346862,51.981316 +-2.086767,51.916675 +-2.243573,51.868677 +-2.211468,51.851584 +-2.130262,51.89467 +-1.954828,51.708234 +-2.225405,51.86028 +-2.134467,51.852714 +-1.86884,51.901647 +-2.297928,51.748926 +-2.386238,51.995515 +-2.163871,51.941614 +-2.255236,51.80977 +-2.084963,51.670421 +-2.073382,51.902784 +-2.407801,51.933838 +-2.217816,51.768271 +-1.833161,51.660785 +-2.219927,51.8447 +-2.240612,51.847366 +-2.196622,51.879509 +-2.239758,51.744015 +-2.44173,51.822299 +-2.280877,51.816284 +-2.071876,51.978676 +-2.433465,51.683642 +-2.39731,51.870802 +-2.221332,51.90018 +-2.159933,52.028542 +-2.518844,51.719953 +-1.758368,51.884767 +-2.099305,51.906074 +-2.255081,51.861963 +-2.149135,51.932949 +-2.442234,51.811526 +-2.257111,51.835867 +-2.661533,51.755462 +-2.124007,52.002926 +-2.218132,51.884605 +-2.211384,51.855451 +-2.188708,51.925348 +-2.150215,51.842751 +-2.06639,51.931604 +-2.343653,51.761623 +-2.049105,51.91203 +-2.069638,51.91603 +-2.244704,51.833529 +-2.110853,51.88542 +-2.099235,51.894314 +-2.094727,51.844355 +-2.25104,51.858609 +-2.251118,51.851713 +-1.782863,51.703555 +-2.11213,51.8961 +-2.241289,51.84624 +-2.217474,51.856644 +-2.339289,51.647241 +-2.271194,51.728177 +-2.305611,51.781949 +-2.240837,51.875857 +-2.580329,51.702231 +-1.783247,52.049661 +-2.107642,51.879013 +-2.407325,51.699434 +-2.240842,51.860438 +-2.412645,51.665528 +-2.079854,51.896963 +-2.224719,51.868166 +-1.904307,51.858641 +-2.222925,51.596161 +-2.050128,51.9033 +-1.923678,51.694551 +-2.079022,51.902942 +-2.102421,51.831779 +-2.097957,51.841242 +-2.27119,51.836078 +-2.154488,51.84422 +-2.504398,51.739545 +-2.075819,51.873751 +-2.299077,51.870086 +-2.218205,51.884605 +-2.243588,51.868758 +-2.075791,51.883335 +-2.208082,51.831945 +-2.311611,51.668141 +-2.474218,51.710566 +-2.317638,51.756535 +-2.214609,51.834469 +-2.365356,51.712861 +-1.763092,51.887024 +-2.126228,51.813999 +-2.285104,51.748131 +-2.084125,51.895665 +-2.474174,51.710539 +-2.113068,51.916661 +-2.161506,51.878511 +-2.07728,51.878866 +-2.312066,51.753223 +-2.200936,51.86 +-2.070909,51.974622 +-2.153756,51.889094 +-2.072425,51.984889 +-2.178917,51.723238 +-2.424449,51.692432 +-1.95738,51.718224 +-1.889547,51.849871 +-2.405233,51.902199 +-2.202623,51.831496 +-2.488607,51.863751 +-2.122919,51.903705 +-2.065383,51.94884 +-2.014752,51.996985 +-2.389035,51.707876 +-2.172467,51.846326 +-2.116258,51.952837 +-2.257151,51.837908 +-2.19945,51.878614 +-2.245155,51.839156 +-2.219388,51.844233 +-2.097506,51.894216 +-1.685682,51.880298 +-1.848629,51.739245 +-2.227356,51.852634 +-1.823049,51.833193 +-2.174992,51.681614 +-2.280736,51.744527 +-2.126759,51.951055 +-2.625403,51.802773 +-2.053648,51.930046 +-2.507473,51.845842 +-2.137973,51.93093 +-1.975765,51.990132 +-2.105369,51.894902 +-2.016772,51.946196 +-1.823936,52.070982 +-2.107815,51.829976 +-2.239238,51.867382 +-2.03989,51.929917 +-2.089697,51.877311 +-1.834622,51.759942 +-2.256308,51.830079 +-2.458105,51.946069 +-2.23062,51.718715 +-2.087658,51.695424 +-2.525196,51.849424 +-1.964348,51.71222 +-1.79206,51.869142 +-2.529728,51.713565 +-2.187527,51.882779 +-1.809541,52.021754 +-2.216224,51.747397 +-2.274924,51.820201 +-2.077622,51.90003 +-2.364521,51.731493 +-2.203222,51.877304 +-1.703206,51.99004 +-2.240172,51.857274 +-2.273524,51.962511 +-2.076273,51.892919 +-2.401643,51.822335 +-2.286332,51.816298 +-2.210848,51.743918 +-2.353907,51.681436 +-2.167669,51.754687 +-2.276615,51.686418 +-2.628048,51.813629 +-2.234433,51.859354 +-2.235812,51.851053 +-2.642375,51.732604 +-2.222338,51.947857 +-1.891371,51.743033 +-2.078511,51.901477 +-1.963507,51.713973 +-2.390364,51.954171 +-2.248317,51.741121 +-2.47416,51.710557 +-2.235807,51.864036 +-2.614028,51.794912 +-2.299552,51.747043 +-2.212308,51.774045 +-2.068477,51.926496 +-2.081629,51.889949 +-2.183057,51.844709 +-1.995638,51.882758 +-2.073205,51.874166 +-1.753985,52.080711 +-2.145917,51.922856 +-2.342051,51.643627 +-2.156009,51.759343 +-2.184823,51.861178 +-2.267507,51.883172 +-2.239568,51.743584 +-2.074719,51.945822 +-2.198987,51.878975 +-2.259149,51.859707 +-2.375427,51.77717 +-2.638411,51.735989 +-2.279967,51.814614 +-1.782767,52.046441 +-2.362815,51.771581 +-2.242832,51.731071 +-2.117494,51.996918 +-2.077002,51.877796 +-2.360045,51.640076 +-2.503589,51.825611 +-2.11656,51.895341 +-2.174695,51.896833 +-2.110581,52.004944 +-2.156538,51.866038 +-1.978992,51.78274 +-2.219736,51.900669 +-2.330275,51.764979 +-2.111737,51.831735 +-2.089657,51.893638 +-2.113476,51.951716 +-2.10957,52.00258 +-1.835846,51.837896 +-2.112042,51.896073 +-2.280288,51.833557 +-2.104693,51.916534 +-2.183012,51.890698 +-2.622375,51.808247 +-2.159556,51.89814 +-2.171328,51.898025 +-1.826067,52.029278 +-1.776487,51.8229 +-1.978067,51.775107 +-1.91331,51.888705 +-1.837789,51.838591 +-1.992619,51.866879 +-2.22376,51.748201 +-2.263389,51.849753 +-2.238854,51.882676 +-2.146582,51.890479 +-1.846061,51.96237 +-1.897744,51.980695 +-2.235689,51.844085 +-2.227902,51.842859 +-2.298727,51.788692 +-2.322697,51.758913 +-2.100892,51.842597 +-2.10012,51.912897 +-1.944209,51.728846 +-2.081255,51.907922 +-2.216823,51.860269 +-2.429161,51.65681 +-2.228689,51.854888 +-2.009288,51.714392 +-2.110945,51.840196 +-2.1007,51.912492 +-2.215574,51.838927 +-2.35369,51.68141 +-2.245635,51.828618 +-2.084612,51.899702 +-2.111812,51.867734 +-2.21224,51.864566 +-2.024307,51.863847 +-2.476227,51.820429 +-2.240853,51.876073 +-2.071763,51.889793 +-2.156288,51.982209 +-2.200993,51.866258 +-2.038017,51.933505 +-2.338118,51.757746 +-2.345603,51.641243 +-2.086476,51.894153 +-2.217184,51.877836 +-2.001903,51.948714 +-2.200957,51.831985 +-2.272208,51.838971 +-2.508214,51.811071 +-2.655718,51.639039 +-2.224774,51.87062 +-2.472097,51.713982 +-2.199181,51.86039 +-2.198384,51.880639 +-2.134855,51.933577 +-2.053093,51.964562 +-2.241807,51.858997 +-2.242184,51.839981 +-2.10382,51.916185 +-2.245072,51.831919 +-2.224004,51.870541 +-2.527415,51.761094 +-2.36143,51.688876 +-2.184082,51.86108 +-2.097652,51.914823 +-2.245664,51.828663 +-2.488367,51.861666 +-2.103922,51.916346 +-2.297036,51.941587 +-1.861319,51.889545 +-2.503355,51.670434 +-1.913645,51.888453 +-1.957289,51.861657 +-2.218012,51.856787 +-2.385344,51.682272 +-2.072535,51.945006 +-2.251868,51.850803 +-2.072745,51.724862 +-2.568187,51.767953 +-1.768126,52.052347 +-2.52727,51.761086 +-2.158738,51.847433 +-2.15039,51.89069 +-1.831884,52.06016 +-2.06282,51.947367 +-2.14128,51.839966 +-2.073889,51.892714 +-2.0751,51.895375 +-1.814443,51.829601 +-1.714144,51.746791 +-2.45757,51.697298 +-2.257805,51.868503 +-2.281536,51.817281 +-1.9021,51.986228 +-2.489294,51.857419 +-2.264235,51.875196 +-2.434775,51.996236 +-2.228659,51.86904 +-1.911019,51.775768 +-2.065211,51.900802 +-1.674368,51.972486 +-2.128147,51.958067 +-1.96647,51.955776 +-2.091579,51.909407 +-2.20464,51.780343 +-1.703518,51.989115 +-2.252027,51.855973 +-2.477535,51.760265 +-1.902771,51.782864 +-2.571032,51.764865 +-2.1368,51.851129 +-2.431199,51.930266 +-1.697405,51.990772 +-2.209963,51.7342 +-2.49108,51.816115 +-2.088884,51.906631 +-1.958652,51.864103 +-2.193406,51.78697 +-2.058573,51.803883 +-1.724239,51.932298 +-2.271785,51.836086 +-2.416952,51.696865 +-2.373429,51.714274 +-2.139401,51.753537 +-2.156825,51.844315 +-2.228463,51.847588 +-2.49864,51.86228 +-1.924108,51.661976 +-2.054755,51.907613 +-2.325371,51.770207 +-1.898884,51.894349 +-1.684683,51.809077 +-2.052928,51.948495 +-2.338793,51.720161 +-2.378918,51.827095 +-2.288464,51.795811 +-1.771094,52.076547 +-2.20124,51.72642 +-2.124453,51.995904 +-2.079453,51.990171 +-2.312192,51.668553 +-2.155008,51.843572 +-2.073684,51.900365 +-2.263826,51.812871 +-2.552835,51.806571 +-1.867063,51.90284 +-2.205401,51.609581 +-2.275315,51.786798 +-2.153612,51.889688 +-2.129776,52.038316 +-2.237546,51.882436 +-2.180985,51.852786 +-1.830763,51.7223 +-1.994902,51.974185 +-2.229001,51.844988 +-2.14897,51.852418 +-2.054842,52.0027 +-2.2487,51.85562 +-2.07895,51.903032 +-2.293489,51.814815 +-2.336504,51.758955 +-2.557677,51.804022 +-2.608671,51.773972 +-2.242184,51.840017 +-1.674125,51.937664 +-2.202868,51.866462 +-1.707316,51.976142 +-2.210748,51.700518 +-1.908704,51.687338 +-2.231787,51.864457 +-2.09427,51.917092 +-2.158717,51.845725 +-2.01962,51.67571 +-2.43946,51.863325 +-2.233755,51.843486 +-1.848052,51.829218 +-2.512287,51.826158 +-1.960053,51.707633 +-2.235998,51.875445 +-2.274195,51.731236 +-2.223256,51.848479 +-2.155349,51.996937 +-2.250243,51.864176 +-2.286495,51.899086 +-2.475131,51.833498 +-1.984108,51.867886 +-2.621589,51.807001 +-2.273613,51.704344 +-1.951668,51.876976 +-2.102302,51.894671 +-2.100586,51.997904 +-2.360066,51.997414 +-2.083934,51.995904 +-1.703539,51.875444 +-2.498696,51.82137 +-1.70218,51.993256 +-2.238655,51.861503 +-2.450251,51.690223 +-1.963324,51.869922 +-2.207906,51.856725 +-2.105899,51.885479 +-2.011217,51.901161 +-2.169073,51.885792 +-2.23066,51.854327 +-2.347594,51.748349 +-1.745283,52.048182 +-2.183872,51.848799 +-2.094543,51.89483 +-2.537623,51.738561 +-2.016612,51.946402 +-2.105871,51.885731 +-1.966921,51.956127 +-2.218247,51.710332 +-2.250706,51.858592 +-2.379927,51.998458 +-2.236268,51.885298 +-2.481936,51.819732 +-2.312764,51.755595 +-1.797941,51.911553 +-2.602496,51.843506 +-2.258697,51.849368 +-2.133237,51.652556 +-2.235596,51.868055 +-2.048534,51.907958 +-2.234911,51.856512 +-1.907095,51.667646 +-2.267386,51.875009 +-1.95389,51.720335 +-2.248931,51.863181 +-2.458464,51.691252 +-2.311987,51.771107 +-2.149937,51.841879 +-2.088577,51.883578 +-2.158067,51.966329 +-2.064561,51.893799 +-2.161692,51.638745 +-2.126656,52.032997 +-2.50196,51.826526 +-2.2223,51.751746 +-2.431098,51.822564 +-2.173505,51.897302 +-1.968263,51.72168 +-2.098538,51.914247 +-2.302023,51.66581 +-2.385305,51.696344 +-2.065153,51.940748 +-2.080579,51.887468 +-2.215364,51.8618 +-2.238073,51.861271 +-2.080962,51.995285 +-2.102789,51.916986 +-1.946149,51.839454 +-2.161164,52.001856 +-2.130952,51.996957 +-2.020458,51.768454 +-2.083159,51.892132 +-2.228582,51.725031 +-2.066165,51.907266 +-2.095234,51.843725 +-2.318351,51.625064 +-2.053955,52.004247 +-2.066999,51.891469 +-1.870897,51.924306 +-2.206102,51.744799 +-2.114679,51.904351 +-2.070671,51.9162 +-1.970216,51.991174 +-2.197591,51.954662 +-2.258114,51.805781 +-2.197255,51.835039 +-2.075995,51.900688 +-2.212578,51.908432 +-2.355899,51.842901 +-2.489432,51.864818 +-2.210456,51.740538 +-2.251009,51.850455 +-2.250968,51.74134 +-1.760862,51.819893 +-2.172613,51.846703 +-2.108297,51.909653 +-2.402136,51.931331 +-1.957677,51.772728 +-2.137033,51.927785 +-2.243413,51.868695 +-2.200949,51.879079 +-2.241972,51.851822 +-2.357832,51.641746 +-2.345844,51.781019 +-2.361719,51.688866 +-2.638736,51.728209 +-2.242791,51.863698 +-2.222436,51.838347 +-1.918477,51.770927 +-2.175037,51.9586 +-2.213153,51.839408 +-2.466835,51.652836 +-2.079423,51.989811 +-2.232107,51.892643 +-2.17235,51.846299 +-2.49864,51.821541 +-2.159488,51.846011 +-2.240867,51.876019 +-1.775518,51.994354 +-2.203245,51.866344 +-2.212378,51.909017 +-1.946324,51.973562 +-2.543865,51.769876 +-1.944083,51.725348 +-2.116481,51.909762 +-2.002893,51.949119 +-2.249293,51.865707 +-2.131888,51.854479 +-2.361728,51.99758 +-2.264403,51.827058 +-2.230565,51.844194 +-2.143326,51.912762 +-2.248873,51.863163 +-2.257108,51.837908 +-2.042059,51.715212 +-2.040294,51.927084 +-2.49471,51.758117 +-1.925128,51.727747 +-1.917142,51.716647 +-2.298825,51.702656 +-2.25874,51.849269 +-2.290292,51.71468 +-2.191905,51.720196 +-2.102464,51.831779 +-2.079936,51.991483 +-2.223418,51.854907 +-2.321019,51.775668 +-2.238767,51.855182 +-2.248764,51.869817 +-2.09967,51.913482 +-2.321791,51.890121 +-2.386258,51.930206 +-2.159622,51.900316 +-1.938227,51.858466 +-1.976034,51.866841 +-2.213976,51.881457 +-1.891111,51.971959 +-2.100428,51.842768 +-2.05583,51.941904 +-2.299057,51.702754 +-2.163815,51.734517 +-1.960372,51.706455 +-2.066999,51.891531 +-2.379458,51.99462 +-2.225012,51.851209 +-2.072091,51.904475 +-1.951646,51.706866 +-2.289814,51.669393 +-1.983511,51.710363 +-2.283524,51.747946 +-2.288905,51.805889 +-2.554329,51.71436 +-2.352526,51.896039 +-1.861852,51.700753 +-2.267308,51.81788 +-2.234524,51.653395 +-2.535878,51.724453 +-2.576373,51.749616 +-2.137325,51.913884 +-2.199924,51.877373 +-2.098057,51.840405 +-1.836904,51.701431 +-2.230648,51.846154 +-2.210499,51.737337 +-2.235309,51.768489 +-2.069959,51.916165 +-2.292802,51.80507 +-2.069769,51.896924 +-2.214134,51.862791 +-2.050795,51.902643 +-2.122591,52.001866 +-2.116886,51.886448 +-2.228172,51.847543 +-2.159936,51.947652 +-2.184882,51.861465 +-2.154814,51.976924 +-2.216022,51.902141 +-1.944124,51.727101 +-2.560521,51.771434 +-2.25088,51.858493 +-2.222765,51.699165 +-2.163549,52.024752 +-2.229297,51.706139 +-2.472362,51.771363 +-2.133132,51.882277 +-2.084351,51.907982 +-2.321058,51.758666 +-2.155004,51.643727 +-2.062406,51.994874 +-2.254617,51.869849 +-1.785473,51.781909 +-2.323919,51.670526 +-2.631687,51.666037 +-2.002126,51.751211 +-2.400983,51.930948 +-2.091942,51.909559 +-2.210456,51.740574 +-1.944286,51.725132 +-2.047928,51.885265 +-2.361298,51.735873 +-2.170249,51.824112 +-2.227546,51.852858 +-2.213153,51.722821 +-2.159808,51.641427 +-2.253629,51.869753 +-2.227809,51.698032 +-1.824038,52.071036 +-1.684024,52.023517 +-2.193622,51.85754 +-1.700607,51.8861 +-2.09877,51.913923 +-2.072357,51.897786 +-2.236887,51.748805 +-2.222117,51.761583 +-2.238383,51.812791 +-2.298912,51.702781 +-2.236529,51.871398 +-1.826259,52.051161 +-2.079037,51.902951 +-2.272268,51.832012 +-2.053104,51.888356 +-1.703046,51.806878 +-2.166875,51.857464 +-2.255809,51.862231 +-2.199538,51.878749 +-2.242472,51.858421 +-1.960065,52.02396 +-2.201189,51.721349 +-2.297211,51.94155 +-2.441049,51.863948 +-1.914412,51.659785 +-2.330261,51.764997 +-2.083949,51.918079 +-2.197039,51.808839 +-2.323808,51.760366 +-2.112275,51.8961 +-2.607261,51.780175 +-2.272197,51.832246 +-2.202344,51.888994 +-1.724092,51.932622 +-2.250272,51.861461 +-2.081352,51.857159 +-2.075785,51.819311 +-2.08119,51.888241 +-2.079029,51.898483 +-2.264777,51.836471 +-2.493395,51.759804 +-2.298926,51.702709 +-2.193688,51.825739 +-2.298796,51.702692 +-2.108491,51.827656 +-2.252529,51.847116 +-2.279282,51.743658 +-2.229198,51.79231 +-2.2383,51.739424 +-2.241793,51.859078 +-2.032013,51.715224 +-1.794475,51.778661 +-2.168941,51.881629 +-2.330377,51.765014 +-2.390386,51.701748 +-2.244032,51.867642 +-2.509094,51.835127 +-2.010104,51.675055 +-2.502873,51.829085 +-2.079022,51.902978 +-2.246408,51.861254 +-2.138763,51.748395 +-2.277109,51.741227 +-2.107578,51.8949 +-2.502727,51.81853 +-2.188454,51.705079 +-2.129272,51.894195 +-2.252633,51.655605 +-2.092713,51.881615 +-2.071641,51.895656 +-1.728982,51.941768 +-2.273569,51.728288 +-2.593789,51.691401 +-2.169627,51.878733 +-1.766425,52.090527 +-1.806459,51.599595 +-1.982661,51.62384 +-2.096011,51.09528 +-2.297732,51.348116 +-1.775365,51.586718 +-1.994229,51.645421 +-2.198728,51.433999 +-2.253079,51.338115 +-1.770846,51.543955 +-2.206202,51.320718 +-1.907906,51.638462 +-1.778774,51.598071 +-1.977404,51.415742 +-1.806793,51.554818 +-1.785211,51.531215 +-1.995427,51.352128 +-1.813586,51.554946 +-1.78094,51.565032 +-2.158934,51.000955 +-1.855129,51.54462 +-2.228865,51.301325 +-2.239232,51.093726 +-2.113306,51.375002 +-2.007159,51.439212 +-1.816794,51.308348 +-2.02719,51.350722 +-2.197714,51.295654 +-1.797125,51.076935 +-1.988953,51.285013 +-2.122052,51.513886 +-1.745456,51.5614 +-1.724374,51.519444 +-1.728765,51.542049 +-1.711837,51.631149 +-2.173614,51.20679 +-2.01696,51.332309 +-2.133352,51.470265 +-2.127202,51.365798 +-2.134899,51.374934 +-2.167523,51.523225 +-1.864408,51.605619 +-2.212239,51.319718 +-2.084112,51.445062 +-2.258378,51.302748 +-2.053858,51.438471 +-1.751589,51.571592 +-2.184446,51.259565 +-1.659744,51.240802 +-1.839504,51.36592 +-1.928431,51.163197 +-1.728045,51.09977 +-2.200195,51.331905 +-1.753376,51.574607 +-1.78734,51.150158 +-1.771155,51.562784 +-2.006528,51.452133 +-1.745337,51.59313 +-2.164076,51.024319 +-1.742496,51.136122 +-2.127649,51.366733 +-2.029438,51.36215 +-1.737237,51.41786 +-1.938592,51.599828 +-1.775739,51.142529 +-1.856019,51.440473 +-1.808852,51.593548 +-2.332108,51.137668 +-2.038097,51.600035 +-1.815522,51.074016 +-1.916849,51.559695 +-1.737704,51.597528 +-1.979058,51.28654 +-1.798276,51.579099 +-1.769914,51.175501 +-2.117153,51.463772 +-1.754044,51.560528 +-1.735201,51.578605 +-1.919657,51.587445 +-1.789145,51.06435 +-1.890928,51.553353 +-1.969631,51.142182 +-1.776052,51.585047 +-1.840192,51.60594 +-1.904308,51.541937 +-2.079283,51.349107 +-2.033126,51.437364 +-1.746646,51.119486 +-1.814295,51.177342 +-2.123958,51.271199 +-1.654262,51.516956 +-1.858245,51.13845 +-1.765992,51.339945 +-1.837829,51.567768 +-1.772482,51.571625 +-2.213871,51.312809 +-1.800822,51.554665 +-1.983831,51.54014 +-1.827449,51.09076 +-1.7916,51.562183 +-1.989486,51.338604 +-1.742807,50.989856 +-1.732225,51.576566 +-1.972889,51.340427 +-1.920305,51.430832 +-2.182292,51.316208 +-2.085821,50.959623 +-1.798529,51.072406 +-2.19031,51.190795 +-1.753769,51.568701 +-1.766298,51.56192 +-2.044334,51.394102 +-2.010666,51.424016 +-1.853273,51.606127 +-1.775369,51.085986 +-1.762159,51.019796 +-1.843513,51.547033 +-2.171749,51.309498 +-2.00706,51.452079 +-1.783272,51.078376 +-2.224347,51.31627 +-2.122427,51.5142 +-1.777811,51.199309 +-1.741811,51.598742 +-2.229845,51.348198 +-1.887452,51.541868 +-1.806856,51.546645 +-2.207448,51.323224 +-1.774152,51.086856 +-2.091868,51.352191 +-1.718635,51.498768 +-1.770792,51.57199 +-1.770882,51.562747 +-2.214219,51.313492 +-2.200712,51.318812 +-2.235891,51.370755 +-1.739216,51.575395 +-1.787287,51.580599 +-2.056077,51.393728 +-1.76009,51.5437 +-1.988003,51.352415 +-1.77123,51.036468 +-1.637442,51.238712 +-1.774302,51.568374 +-1.793341,51.070634 +-1.760702,51.567286 +-2.25824,51.48981 +-1.814625,51.554813 +-1.789722,51.075654 +-1.828474,51.557864 +-2.240069,51.114621 +-1.724564,51.526107 +-2.087839,51.594758 +-1.663203,51.269316 +-1.794207,51.068585 +-1.900419,51.533284 +-1.793951,51.068297 +-1.834898,51.560346 +-2.207539,51.397496 +-2.143054,51.497317 +-2.140235,51.37687 +-1.7854,51.607435 +-1.707422,51.582891 +-1.982689,51.356425 +-2.175229,51.202544 +-2.19881,51.300274 +-1.830228,51.633106 +-1.759007,51.554964 +-1.983654,51.347442 +-2.052865,51.412873 +-1.811625,51.60017 +-1.892016,51.526317 +-2.28617,51.379814 +-1.856183,51.544279 +-1.769441,51.545238 +-1.744997,51.545413 +-1.778617,51.55618 +-2.16386,51.124618 +-1.808385,51.598159 +-2.202062,51.322218 +-1.573628,51.410492 +-1.869515,51.03955 +-1.782357,51.58246 +-2.206603,51.329979 +-1.900376,51.53314 +-2.093232,51.556765 +-2.004497,51.432936 +-1.77965,51.173757 +-2.176112,51.204997 +-1.902599,51.192177 +-1.721854,51.545117 +-2.256568,51.438436 +-1.663871,51.234726 +-2.236653,51.404337 +-2.246511,51.291354 +-1.973305,51.365936 +-1.751224,51.580366 +-1.863161,51.544585 +-2.143389,51.360843 +-1.767486,51.614774 +-1.90297,51.192861 +-2.123496,51.5256 +-1.827333,51.588847 +-1.814552,51.554867 +-1.766361,51.572242 +-1.848335,51.606139 +-1.789579,51.553027 +-1.758365,51.17652 +-1.837844,51.567723 +-1.923183,51.403949 +-2.252543,51.345165 +-2.116601,51.388207 +-1.893128,51.630474 +-2.293462,51.162895 +-2.132787,51.434569 +-1.783318,51.571546 +-2.132755,51.369047 +-2.137512,51.460567 +-2.180865,51.103101 +-1.75624,51.562664 +-2.150313,51.462107 +-1.810316,51.073091 +-1.912392,51.559854 +-1.753763,51.344802 +-1.854322,51.081408 +-1.745872,51.546206 +-1.830399,51.560106 +-1.79433,51.069817 +-1.581916,51.351392 +-1.795301,51.069612 +-2.102709,51.588623 +-1.855157,51.544926 +-1.782805,51.591515 +-1.791341,51.527296 +-1.972619,51.433742 +-1.784718,51.07114 +-2.144951,51.373483 +-1.794071,51.063855 +-1.773851,51.571969 +-1.803928,51.196577 +-1.88296,51.555809 +-1.843426,51.546997 +-2.161008,51.146868 +-1.684181,51.617007 +-2.150021,51.44755 +-1.754894,51.574071 +-1.713731,51.623988 +-1.800571,51.565894 +-1.846414,51.038227 +-1.801526,51.571956 +-1.725744,51.567335 +-1.765488,51.032527 +-1.833677,51.082055 +-2.114788,51.587865 +-1.80395,51.565082 +-2.160335,51.389109 +-1.830214,51.633133 +-1.761075,51.592435 +-1.843941,51.094964 +-2.068094,51.114489 +-2.070534,51.569486 +-2.226954,51.29196 +-1.841476,51.564473 +-1.780316,51.562747 +-2.07753,51.280609 +-1.766793,51.210149 +-2.127388,51.463644 +-2.143896,51.375984 +-1.79697,51.564603 +-1.636887,50.981077 +-1.813814,51.555459 +-1.786006,51.552283 +-1.818132,51.063607 +-1.792312,51.529402 +-1.763936,51.023639 +-1.77416,51.591193 +-1.814063,51.554668 +-1.976929,51.472964 +-1.618709,51.508358 +-1.746065,51.545208 +-1.826475,51.556243 +-1.753434,51.574608 +-1.795151,51.071285 +-1.773018,51.562446 +-2.285762,51.351383 +-2.210188,51.222619 +-1.97621,51.36083 +-2.049487,51.599438 +-1.645747,51.267079 +-1.672281,51.524372 +-1.788239,51.608798 +-1.80571,51.599054 +-2.101273,51.585738 +-2.168047,51.077673 +-1.804683,51.071795 +-1.743619,51.580341 +-1.732312,51.556956 +-2.14815,51.46531 +-1.732944,51.5548 +-2.111242,51.453905 +-2.002046,51.333614 +-1.781837,51.079839 +-1.624405,51.251241 +-1.76955,51.17675 +-1.822167,51.59953 +-1.775698,51.56906 +-1.918523,51.65656 +-1.799586,51.072218 +-1.746265,51.581875 +-2.013871,51.418809 +-2.045084,51.396142 +-1.839337,51.569667 +-1.993968,51.426597 +-1.935018,51.207837 +-2.170605,51.472617 +-1.768187,51.169104 +-1.785719,51.351924 +-1.805527,51.540313 +-2.262576,51.156089 +-1.777128,51.553813 +-1.928924,51.531182 +-1.646532,51.433771 +-1.766304,51.557946 +-2.198403,51.252708 +-2.206051,51.331823 +-2.18801,51.290042 +-1.813699,51.555306 +-1.803828,51.196559 +-1.732139,51.576548 +-1.790668,51.560851 +-1.649531,51.408459 +-2.295846,51.509871 +-1.8136,51.310726 +-1.855056,51.5448 +-1.765878,51.088198 +-1.771212,51.57164 +-1.667797,51.240465 +-1.781834,51.601359 +-1.760897,51.171005 +-1.932095,51.628677 +-1.7218,51.53974 +-1.853341,51.54451 +-2.238822,51.188547 +-1.805321,51.592139 +-2.118192,51.547823 +-2.005353,51.140442 +-1.814582,51.554723 +-1.956448,51.587824 +-1.778173,51.552538 +-1.67879,51.410422 +-1.841435,51.576495 +-1.812652,51.289783 +-1.67888,51.354296 +-2.16045,51.105676 +-2.022426,51.123274 +-1.796376,51.600819 +-1.711905,51.148414 +-1.764457,51.030519 +-2.116442,51.46157 +-1.728332,51.099591 +-2.242879,51.404414 +-1.787836,51.571168 +-1.800457,51.565544 +-1.988293,51.342812 +-2.186942,51.263634 +-2.086318,51.576686 +-1.860215,51.182019 +-2.059427,51.438801 +-2.213228,51.319437 +-2.007304,51.446216 +-1.709884,51.470405 +-2.164277,51.105221 +-1.819886,51.562905 +-2.149699,51.50292 +-2.114718,51.370972 +-1.751778,51.571367 +-1.806228,51.599586 +-2.209072,51.323851 +-2.140861,51.468287 +-1.77365,51.551477 +-1.991279,51.268244 +-2.19993,51.261149 +-1.770219,51.545339 +-2.206307,51.209704 +-2.264566,51.316221 +-1.775587,51.1708 +-1.723748,51.532426 +-1.749709,51.567218 +-1.666428,51.112703 +-1.81727,51.60373 +-2.023522,51.309622 +-2.012333,51.524505 +-2.238797,51.355094 +-1.74707,51.569478 +-1.772988,51.568452 +-2.178158,51.204931 +-2.194764,51.320531 +-1.794122,51.543504 +-1.824209,51.560349 +-1.823302,51.099979 +-1.744436,51.591483 +-2.122792,51.515692 +-2.109063,51.010517 +-2.131938,51.434489 +-1.777156,51.551089 +-2.302462,51.124269 +-2.273562,51.318566 +-2.126716,51.096213 +-1.72016,51.541589 +-2.225623,51.324827 +-1.78935,51.571548 +-1.796214,51.559449 +-1.779748,51.581898 +-1.857653,51.650801 +-1.775104,51.592894 +-1.988507,51.349052 +-1.84587,51.038802 +-1.859516,51.171938 +-2.137158,51.371173 +-2.1778,51.301288 +-2.212024,51.32291 +-2.19246,51.263742 +-2.119589,51.360312 +-1.716325,51.490319 +-1.948456,51.378373 +-2.002138,51.440839 +-2.201097,51.511439 +-1.778802,51.562538 +-1.845201,51.585023 +-1.659753,51.518896 +-2.287054,51.351272 +-2.120033,51.458716 +-1.795389,51.056214 +-1.882248,51.120007 +-1.758821,51.554703 +-1.794407,51.605131 +-1.771371,51.036747 +-1.862932,51.548954 +-2.131029,51.36824 +-2.138616,51.373527 +-1.8891,51.569806 +-1.923205,51.597337 +-1.748709,51.588885 +-1.831419,51.074912 +-1.975567,51.489571 +-1.86407,51.544604 +-1.88611,51.634531 +-2.258005,51.325758 +-1.77565,51.581701 +-1.916231,51.13222 +-2.086712,51.177537 +-1.799632,51.562908 +-1.886053,51.634567 +-1.807539,51.074965 +-1.75923,51.556394 +-2.14966,51.447334 +-1.85787,51.172196 +-1.816119,51.139443 +-2.106732,51.587001 +-2.012624,51.533001 +-1.632082,51.23901 +-2.19838,51.317171 +-1.901027,51.558757 +-1.784508,51.563987 +-1.736751,51.580038 +-2.182829,51.213116 +-2.178229,51.496676 +-1.905632,51.542882 +-2.32666,51.121227 +-2.244793,51.429047 +-1.787145,51.552249 +-2.195824,51.471337 +-2.184272,51.430525 +-2.195868,51.471364 +-1.707964,51.054644 +-2.188752,51.198341 +-2.137544,51.456916 +-2.151693,51.196651 +-1.582603,51.493804 +-1.899904,51.538121 +-2.251388,51.346634 +-2.246713,51.181796 +-1.79619,51.068715 +-1.816817,51.561947 +-2.160074,51.000828 +-1.857451,51.080774 +-1.815102,51.393992 +-1.675531,51.32421 +-1.7333,51.132315 +-2.053627,51.413124 +-2.218538,51.292497 +-1.748257,50.993761 +-1.681282,51.227329 +-2.22386,51.316405 +-2.096576,51.358292 +-1.739943,51.544125 +-1.784508,51.563978 +-2.028253,51.396382 +-1.807084,51.07456 +-1.802518,51.599364 +-1.753179,51.38949 +-2.006872,51.446351 +-1.815685,51.667341 +-1.971968,51.51177 +-2.002368,51.429321 +-1.761007,51.442763 +-1.783539,51.195489 +-1.997338,51.338452 +-1.747195,51.562519 +-1.980379,51.418296 +-2.059414,51.417815 +-1.757041,51.101668 +-1.786157,51.127487 +-2.086299,51.604712 +-1.921865,51.545295 +-1.707781,51.634961 +-1.809445,51.555093 +-1.754145,51.555116 +-1.844565,51.547178 +-2.228213,51.302963 +-1.832216,51.560171 +-1.873685,51.420271 +-1.711822,51.631131 +-1.769956,51.571854 +-2.256466,51.453596 +-2.165263,51.408668 +-2.11298,51.388481 +-1.788115,51.417819 +-1.939501,51.654513 +-2.235348,51.371421 +-1.734365,51.575897 +-1.999002,51.440156 +-2.002728,51.435175 +-1.786427,51.573341 +-1.904005,51.542116 +-2.205707,51.296657 +-2.009319,51.446845 +-1.770778,51.571972 +-2.01513,51.526491 +-2.203188,51.317252 +-1.953204,51.230631 +-2.063622,51.352479 +-2.070476,51.569468 +-1.948413,51.378274 +-2.159106,51.428422 +-2.151908,51.383185 +-1.753667,51.568863 +-1.996066,51.44609 +-1.729691,51.047754 +-1.773708,51.612403 +-2.223371,51.428092 +-2.13958,51.34112 +-1.778015,51.564352 +-2.136568,51.534676 +-1.846385,51.038263 +-2.278826,51.46696 +-1.722444,51.288687 +-2.164177,51.105239 +-1.68631,50.994807 +-2.118648,51.457467 +-2.251101,51.35176 +-1.747043,51.553599 +-1.79702,51.611753 +-1.806415,51.599712 +-2.159111,51.322347 +-1.743522,50.989435 +-1.785499,51.558945 +-2.113224,51.626214 +-2.14405,51.598407 +-1.619857,51.508856 +-2.206166,51.245492 +-1.826353,51.047749 +-1.734927,51.411947 +-2.250421,51.416708 +-2.294035,51.344817 +-1.972718,51.363967 +-2.133096,51.377472 +-1.915984,51.559812 +-1.830139,51.602734 +-2.150369,51.448323 +-2.177901,51.301279 +-1.777694,51.594644 +-1.713898,51.461621 +-2.213986,51.312881 +-2.176955,51.391027 +-1.883846,51.006582 +-2.138016,51.355751 +-1.778498,51.598565 +-1.766593,51.588931 +-2.052231,51.662555 +-2.129243,51.452978 +-2.184107,51.282198 +-2.277013,51.516939 +-1.734361,51.425334 +-1.774647,51.568491 +-1.930378,51.655731 +-2.193091,51.20221 +-1.777157,51.55384 +-2.12858,51.478012 +-1.729003,51.577368 +-1.807961,51.568433 +-1.885535,51.547009 +-1.966005,51.565429 +-2.161828,51.14024 +-1.936212,51.16187 +-1.812965,51.554981 +-2.32936,51.143214 +-2.171488,51.08166 +-1.747202,51.589943 +-1.657259,51.295699 +-1.744524,51.581008 +-1.646135,51.406893 +-1.918105,51.316969 +-2.13924,51.314307 +-1.797274,51.078644 +-2.061104,51.187193 +-1.78002,51.062688 +-1.752925,51.57012 +-1.834081,51.084987 +-1.789442,51.055646 +-1.775191,51.584038 +-1.981423,51.541174 +-1.777184,51.577865 +-1.758795,51.573261 +-1.773472,51.56402 +-1.773812,51.556549 +-1.83326,51.558707 +-1.85574,51.015444 +-1.609228,51.504964 +-1.797626,51.540291 +-1.755496,51.588306 +-2.098082,51.048079 +-2.03877,51.154688 +-1.775345,51.585108 +-1.788964,51.517635 +-1.939067,51.654495 +-1.934978,51.13421 +-2.248566,51.41129 +-2.019154,51.362377 +-1.831683,51.603041 +-2.275272,51.330889 +-2.116332,51.010241 +-1.899038,51.132063 +-1.776103,51.568827 +-1.73678,51.555024 +-2.166681,51.257182 +-2.196285,51.481505 +-1.849088,51.303719 +-2.135705,51.443431 +-1.753888,51.052654 +-2.201858,51.217077 +-1.775133,51.592913 +-1.752754,51.551067 +-1.924896,51.552642 +-1.848969,51.17348 +-1.796863,51.074714 +-2.143411,51.468841 +-1.775642,51.55105 +-1.724116,51.531069 +-1.897662,51.41231 +-1.769128,51.58426 +-1.9883,51.257777 +-2.212081,51.319646 +-1.76948,51.035691 +-2.135642,51.43675 +-1.798346,51.612394 +-2.104407,51.44813 +-1.775737,51.58154 +-1.853457,51.544321 +-2.185175,51.21643 +-1.690224,51.545946 +-1.723906,51.180913 +-1.811458,51.469299 +-1.73494,51.576204 +-2.248678,51.33656 +-1.717286,51.525937 +-1.721489,51.576658 +-1.995887,51.354151 +-1.775261,51.584533 +-1.727461,51.422162 +-1.722755,51.51302 +-1.788896,51.56974 +-1.772858,51.585931 +-2.006214,51.365948 +-1.775221,51.560328 +-1.652409,51.284606 +-1.812748,51.512892 +-1.79141,51.068535 +-2.127197,51.338337 +-1.632785,50.97914 +-1.991645,51.056195 +-1.78374,51.18915 +-1.763208,51.55981 +-1.665656,51.235531 +-2.120307,51.185124 +-1.748363,51.573158 +-2.010478,51.356749 +-1.8502,51.17332 +-1.724445,51.529173 +-2.262049,51.438397 +-1.886541,51.169656 +-1.973179,51.485947 +-2.122391,51.377016 +-1.784027,51.568239 +-2.003504,51.080869 +-2.289457,51.092038 +-1.964264,51.467008 +-1.808972,51.58551 +-1.794752,51.061473 +-1.783336,51.558671 +-1.950808,51.139451 +-1.783569,51.579441 +-1.782861,51.567652 +-2.151545,51.538137 +-1.804385,51.071363 +-2.170115,51.472483 +-1.746223,51.545415 +-2.168227,51.072044 +-2.186772,51.327746 +-1.808837,51.593548 +-2.127736,51.366849 +-1.823012,51.086194 +-1.765052,51.338495 +-1.93832,51.394175 +-1.810575,51.540088 +-2.051788,51.097116 +-1.83292,51.580655 +-2.195868,51.471346 +-1.782039,51.60376 +-1.759397,51.013514 +-1.746089,51.57719 +-1.73442,51.56392 +-1.998259,51.282262 +-2.213321,51.311677 +-1.938521,51.329687 +-1.82587,51.17682 +-1.846481,51.552153 +-2.145133,51.349304 +-1.781459,51.601187 +-2.11593,51.514998 +-2.191369,51.26333 +-1.752613,51.571747 +-1.844605,51.565152 +-2.123831,51.410166 +-2.243154,51.356011 +-1.772467,51.563038 +-1.77602,51.045766 +-1.856406,51.606194 +-2.292752,51.43408 +-1.968428,51.545874 +-2.19552,51.228345 +-2.188747,51.025361 +-1.74376,51.621872 +-1.807547,51.567417 +-1.806516,51.599613 +-2.096342,51.581156 +-1.774693,51.559221 +-2.14245,51.002541 +-2.185924,51.256595 +-1.80013,51.554637 +-2.172983,51.431315 +-2.00097,51.352533 +-1.778601,51.171723 +-1.742799,51.179482 +-2.134523,51.109602 +-1.808449,51.572516 +-1.807273,51.567533 +-1.858857,51.172252 +-1.628547,51.251182 +-2.196035,51.177621 +-1.674751,51.509489 +-1.760508,51.549222 +-1.729753,51.421385 +-1.778159,51.552538 +-1.778459,51.198501 +-2.213769,51.312486 +-1.991893,51.529351 +-2.092155,51.580386 +-1.826264,51.562581 +-2.196418,51.435226 +-1.817897,51.555349 +-1.875218,51.586336 +-2.028286,51.565907 +-1.775871,51.061835 +-1.753404,51.57494 +-2.126657,51.168536 +-2.014861,51.148678 +-1.775944,51.162177 +-1.807344,51.176917 +-2.121255,51.11021 +-2.243439,51.423259 +-1.601393,51.254672 +-2.1987,51.433999 +-1.745687,51.553623 +-1.777379,51.202752 +-1.853229,51.426721 +-1.773825,51.568436 +-1.876774,51.512581 +-1.774676,51.061113 +-2.199486,51.195086 +-1.999606,51.354034 +-1.753363,51.574482 +-1.840646,51.583381 +-1.800966,51.56799 +-1.780413,51.563629 +-1.8551,51.544854 +-1.925063,51.202948 +-1.782279,51.177503 +-1.76604,51.56174 +-1.774904,51.566172 +-1.823655,51.082086 +-2.201757,51.200478 +-1.80659,51.59581 +-1.808182,51.550145 +-2.239646,51.336138 +-1.723278,51.514855 +-2.079693,51.444067 +-2.004699,51.436811 +-1.990746,51.352631 +-2.185,51.201324 +-1.728497,51.538704 +-1.7317,51.420392 +-2.245758,51.338103 +-1.98018,51.34576 +-1.782327,51.567714 +-1.866159,51.589653 +-2.164505,51.105212 +-1.961622,51.372866 +-1.821846,51.084969 +-1.817007,51.53972 +-1.87399,51.30899 +-1.862128,51.629039 +-1.774227,51.577688 +-1.652537,51.345616 +-1.802146,51.568693 +-2.096622,51.093715 +-2.178187,51.204904 +-2.107557,51.184543 +-1.972943,51.544508 +-2.1672,51.088006 +-1.775337,51.348856 +-1.778566,51.56964 +-1.97276,51.340364 +-1.943817,51.600928 +-1.834472,51.175583 +-1.753266,51.573771 +-1.840316,51.549825 +-1.814166,51.600165 +-2.105617,51.39248 +-1.798211,51.571087 +-1.813843,51.55536 +-1.895835,51.158236 +-1.747155,51.569721 +-2.171518,51.155287 +-1.96801,51.442517 +-2.129822,51.367971 +-1.74234,51.556313 +-2.303199,51.092813 +-1.621534,51.255458 +-1.773657,51.062415 +-1.65269,51.115819 +-2.194193,51.212549 +-2.277746,51.466918 +-1.775697,51.569113 +-2.189938,51.16658 +-1.669991,51.111886 +-1.710691,51.472538 +-1.823644,51.564807 +-2.022697,51.123103 +-1.81402,51.557932 +-1.6135,50.973835 +-1.722454,51.541252 +-2.191692,51.261693 +-1.804614,51.558232 +-1.670435,51.228127 +-1.874033,51.4193 +-1.723949,51.417847 +-2.264929,51.364201 +-1.741731,51.096528 +-1.797709,51.067395 +-2.104634,51.58488 +-1.815624,51.600239 +-2.126693,51.420684 +-2.17987,51.261955 +-1.919671,51.587454 +-2.198977,51.50433 +-2.171288,51.332032 +-1.6331,51.238968 +-2.185196,51.2001 +-2.201146,51.355561 +-2.207658,51.318998 +-1.663499,51.234761 +-1.891081,51.543768 +-2.121587,51.458265 +-1.681978,51.22199 +-1.789321,51.608916 +-1.829227,51.081141 +-1.733853,51.542448 +-1.664692,51.639197 +-2.186413,51.164814 +-2.139247,51.003723 +-1.763114,51.563964 +-1.777254,51.569521 +-1.805394,51.554735 +-1.81131,51.070718 +-1.826665,51.559345 +-1.860449,51.185148 +-1.825082,51.551008 +-2.082727,51.514711 +-1.78048,51.552632 +-1.81509,51.600094 +-1.684152,51.616998 +-2.01348,51.455144 +-1.781834,51.177736 +-1.753338,51.573717 +-1.777099,51.565771 +-2.074289,51.359612 +-2.231704,51.192986 +-1.915916,51.557357 +-2.005706,51.438789 +-2.126454,51.474714 +-1.712746,51.525854 +-1.771271,51.562757 +-1.793945,51.57322 +-1.776101,51.061646 +-2.129879,51.367962 +-1.789861,51.063893 +-1.785473,51.046908 +-1.837285,51.103659 +-1.910978,51.559673 +-2.227612,51.494163 +-2.132204,51.451806 +-1.773666,51.556854 +-1.768791,51.562509 +-1.671388,51.353754 +-1.945004,51.429551 +-1.736827,51.097506 +-1.645675,51.267124 +-1.781657,51.559954 +-1.768794,51.584646 +-1.836249,51.36855 +-1.975037,51.351298 +-1.827778,51.555004 +-1.764647,51.594061 +-1.806922,51.554846 +-2.210766,51.314631 +-2.150773,51.041809 +-2.00845,51.192379 +-2.183489,51.26043 +-2.006583,51.052022 +-1.720285,51.554105 +-1.810167,51.537632 +-1.855332,51.430329 +-1.7931,51.076676 +-2.150374,51.546141 +-1.805224,51.591267 +-1.97398,51.29028 +-1.857293,51.414776 +-1.827787,51.606084 +-1.789527,51.068307 +-2.189169,51.327769 +-2.166737,51.106171 +-1.78059,51.081015 +-1.708099,51.641804 +-2.201131,51.381574 +-1.765455,51.518211 +-1.730942,51.368086 +-1.97099,51.507418 +-1.829521,51.078659 +-1.741632,51.183472 +-2.144154,51.375903 +-1.657668,51.429748 +-1.796798,51.554541 +-2.038369,51.461613 +-2.303231,51.348147 +-1.716336,51.637103 +-1.96513,51.369189 +-1.737954,51.544021 +-1.792652,51.610091 +-2.20703,51.383434 +-1.832539,51.601757 +-2.120234,51.376523 +-1.798564,51.087341 +-1.801307,51.569241 +-1.994454,51.453886 +-1.757928,50.991884 +-2.188773,51.206893 +-1.801923,51.563586 +-2.282748,51.437719 +-2.215926,51.102466 +-2.06778,51.114597 +-2.138247,51.093565 +-2.242172,51.515479 +-2.235486,51.233001 +-1.783134,51.555721 +-1.732268,51.557055 +-2.270229,51.090502 +-1.826665,51.559318 +-1.651754,51.282195 +-1.79762,51.561079 +-1.770881,51.542723 +-2.139923,51.194696 +-2.13804,51.354285 +-1.786043,51.127604 +-2.210265,51.358746 +-1.775066,51.583067 +-1.737753,51.009457 +-2.138155,51.354312 +-1.833655,51.581006 +-2.008469,51.445362 +-2.150241,51.361167 +-1.7678,51.163582 +-2.128798,51.514517 +-2.123719,51.416452 +-1.785343,51.530648 +-2.180319,51.20473 +-1.807298,51.557984 +-1.78702,51.064139 +-2.12561,51.109576 +-1.893724,51.124909 +-1.763168,51.380914 +-1.744263,51.545195 +-2.301972,51.128002 +-1.775071,51.365238 +-1.787403,51.558939 +-1.808632,51.072962 +-2.132654,51.368822 +-1.753744,51.570742 +-2.001033,51.535637 +-2.248113,51.465681 +-1.723165,51.540598 +-1.824729,51.198552 +-1.857946,51.635912 +-1.972761,51.363841 +-1.996174,51.352686 +-1.825515,51.077278 +-1.772129,51.080045 +-1.676186,51.324913 +-1.728579,51.57823 +-1.997674,51.536338 +-1.724359,51.519471 +-1.775272,51.585108 +-1.872854,51.169552 +-1.786574,51.0743 +-2.163891,51.105231 +-2.250988,51.346967 +-2.074663,51.439188 +-1.768611,51.532613 +-2.109314,51.454015 +-1.898287,51.558242 +-1.795457,51.55444 +-1.792013,51.553759 +-2.139635,51.34022 +-1.675879,51.182939 +-1.767179,51.090727 +-1.792431,51.553823 +-1.781203,51.594363 +-1.800966,51.069928 +-2.235104,51.514172 +-1.778144,51.552556 +-1.803131,51.571078 +-1.966925,51.469806 +-1.726217,51.526947 +-2.106989,51.340336 +-2.209581,51.303304 +-1.864478,51.606222 +-2.099863,51.080278 +-1.857409,51.641118 +-1.904694,51.564389 +-1.975721,51.361387 +-1.855922,51.649801 +-2.164291,51.10523 +-1.992298,51.348145 +-2.213413,51.319185 +-1.820464,51.061911 +-2.112333,51.452879 +-2.226482,51.309665 +-1.822695,51.07552 +-1.759344,51.556628 +-1.814624,51.554966 +-1.842178,51.557515 +-1.797248,51.07805 +-1.665149,51.248092 +-1.811764,51.06794 +-1.724507,51.554681 +-1.977589,51.360281 +-1.801974,51.568369 +-1.793959,51.069673 +-1.774473,51.577482 +-1.947274,51.482755 +-2.199059,51.579174 +-2.251642,51.343162 +-1.775037,51.58304 +-2.122564,51.463119 +-1.758106,51.550808 +-1.834099,51.175654 +-1.78168,51.603382 +-2.21172,51.319143 +-1.729744,51.527674 +-1.799681,51.09317 +-2.207832,51.31942 +-1.539045,51.428038 +-1.800969,51.586989 +-1.777293,51.552518 +-1.75821,51.011605 +-2.00067,51.433116 +-1.750263,51.584563 +-2.194464,51.263146 +-1.702915,51.103485 +-1.783956,51.540455 +-1.740019,51.581457 +-1.893316,51.116007 +-1.710781,51.101725 +-2.035131,51.350423 +-2.042724,51.039713 +-2.30758,51.079538 +-1.886024,51.634585 +-1.777915,51.584862 +-1.839323,51.174888 +-1.714154,51.482743 +-2.006339,51.439446 +-1.72351,51.540697 +-2.199939,51.335646 +-2.120595,51.458913 +-1.787016,51.55224 +-1.626885,51.387439 +-1.777334,51.594472 +-1.939053,51.654495 +-1.797981,51.554615 +-1.709145,51.525476 +-1.775174,51.584569 +-1.621634,51.255503 +-1.732327,51.556731 +-1.92698,51.203372 +-2.169344,51.11613 +-1.719329,51.617977 +-2.183609,51.333407 +-1.75341,51.544432 +-2.112108,51.419988 +-1.73819,50.992552 +-1.68421,51.617007 +-1.785452,51.562649 +-2.122127,51.007735 +-1.724185,51.526906 +-2.246471,51.181994 +-1.772093,51.560025 +-1.765062,51.032301 +-1.782793,51.557681 +-2.159326,51.322185 +-2.12115,51.516008 +-1.753345,51.569788 +-2.183933,51.324783 +-2.033429,51.045858 +-1.804764,51.069431 +-2.123207,51.514864 +-1.817062,51.074324 +-1.720112,51.455225 +-1.734969,51.576213 +-1.718741,50.990151 +-2.221857,51.311653 +-2.009745,51.355868 +-1.619328,51.475559 +-2.205038,51.317006 +-1.802647,51.599652 +-1.826686,51.59959 +-2.135345,51.370312 +-1.89152,51.168977 +-1.776557,51.596898 +-1.826364,51.630952 +-2.089225,51.108171 +-1.663638,51.266728 +-1.749494,51.55382 +-1.794259,51.063307 +-2.267986,51.156904 +-1.893746,51.002598 +-1.780695,51.558999 +-1.562884,51.362508 +-1.832061,51.559263 +-1.784456,51.192101 +-2.109399,51.411673 +-1.879173,51.498809 +-2.245792,51.336503 +-1.730029,51.445304 +-1.724481,51.528031 +-1.788895,51.569974 +-2.137772,51.4559 +-1.721691,51.545881 +-2.17392,51.204587 +-1.801712,51.615313 +-1.724119,51.521169 +-1.73537,51.410006 +-1.732239,51.564365 +-1.843786,51.542933 +-2.241733,51.339847 +-1.724338,51.523076 +-1.870545,51.544512 +-1.729416,51.4175 +-2.214885,51.305659 +-1.809893,51.617376 +-1.797278,51.077664 +-1.989567,51.426578 +-2.219055,51.349828 +-2.103246,51.399325 +-2.130301,51.374858 +-1.775513,51.568475 +-1.924854,51.163878 +-1.784781,51.063847 +-1.79413,51.063262 +-1.861477,51.171661 +-2.139304,51.467659 +-1.832629,51.57731 +-1.733219,51.418813 +-1.810272,51.286173 +-2.184929,51.201324 +-1.753279,51.571352 +-1.765507,51.589666 +-1.942849,51.160633 +-1.84459,51.565125 +-2.185783,51.217895 +-1.787685,51.563273 +-1.786881,51.100557 +-2.118735,51.45753 +-2.200423,51.252615 +-1.848494,51.078209 +-1.778453,51.613653 +-1.793978,51.068639 +-2.105622,51.357457 +-2.174677,51.449215 +-1.752101,51.525206 +-2.123268,51.468037 +-1.874413,51.632514 +-2.151031,51.470054 +-1.77733,51.565718 +-2.126628,51.418166 +-2.207661,51.272097 +-1.788355,51.55271 +-1.788899,51.118572 +-2.183374,51.20263 +-1.746702,51.591542 +-2.204837,51.323445 +-1.82619,51.631023 +-2.194545,51.180393 +-1.724295,51.527725 +-2.128591,51.48703 +-1.708096,51.085829 +-1.813149,51.584069 +-1.641788,51.249048 +-1.813319,51.581327 +-1.79365,51.238677 +-2.107498,51.1099 +-2.144966,51.373537 +-1.82981,51.093326 +-2.191284,51.191054 +-2.246346,51.314013 +-1.681758,51.482003 +-2.224176,51.348847 +-2.120284,51.613647 +-2.112218,51.552289 +-2.191283,51.187448 +-2.183724,51.333578 +-1.813089,51.581173 +-1.772016,51.07991 +-1.950023,51.56278 +-1.939038,51.654477 +-1.617635,51.324674 +-1.845481,51.540579 +-1.78702,51.064085 +-1.852877,51.069105 +-1.679881,51.011794 +-1.77882,51.137769 +-2.210472,51.294274 +-1.853428,51.647676 +-1.754504,51.574259 +-2.188858,51.20674 +-1.780397,51.563907 +-2.209978,51.314858 +-1.782009,51.177025 +-1.800439,51.069594 +-2.08735,51.347563 +-1.821055,51.584782 +-1.647648,51.093225 +-2.258924,51.361427 +-1.771417,51.559628 +-1.771204,51.561669 +-1.731357,51.577041 +-1.899878,51.166647 +-1.787671,51.5633 +-2.147347,51.448407 +-1.82337,51.564798 +-1.791703,51.523835 +-2.312223,51.10545 +-1.799655,51.290867 +-1.743976,51.568015 +-1.842226,51.606356 +-1.885083,51.663923 +-1.856347,51.128278 +-2.04411,51.340826 +-2.207592,51.317101 +-2.218434,51.312864 +-2.139258,51.452445 +-2.009078,51.323426 +-2.257486,51.330489 +-1.768906,51.562645 +-1.730791,51.420803 +-1.762464,51.56416 +-1.775344,51.585189 +-1.765893,51.088144 +-2.201988,51.432698 +-1.705289,51.168072 +-1.803339,51.562932 +-2.226834,51.325769 +-2.091267,51.180232 +-2.112952,51.458705 +-1.842291,51.48303 +-1.811694,51.544954 +-2.213785,51.318942 +-2.183176,51.325792 +-1.781222,51.1346 +-1.723829,51.614265 +-1.792394,51.062162 +-1.697285,51.020689 +-1.777835,51.565656 +-1.824166,51.075531 +-1.718269,51.497499 +-2.206809,51.318478 +-2.049559,51.162641 +-2.107325,51.452893 +-1.64542,51.117497 +-2.117839,50.98632 +-1.747012,51.569595 +-1.730837,51.42529 +-1.784319,51.601031 +-1.856362,51.128251 +-2.123571,51.46292 +-2.141777,51.448046 +-1.558734,51.428195 +-2.16806,51.414652 +-2.213811,51.312243 +-1.847763,51.656292 +-1.601238,51.362052 +-2.009045,51.301531 +-2.208298,51.320822 +-2.169432,51.509556 +-2.125622,51.413258 +-1.851497,51.606152 +-1.789456,51.068244 +-2.257515,51.330516 +-2.209638,51.303295 +-2.044176,51.393724 +-1.733596,51.576614 +-1.713926,51.461639 +-2.143879,51.44843 +-2.249964,51.417302 +-1.81854,51.56399 +-2.316586,51.356645 +-1.88968,51.544846 +-1.766534,51.572234 +-1.997725,51.341356 +-2.064016,51.438673 +-2.138306,51.370857 +-1.902691,51.543014 +-2.13459,51.465489 +-2.189641,51.250943 +-1.756272,51.17737 +-2.174277,51.204352 +-2.188688,51.021341 +-1.774522,51.555849 +-1.728064,51.577438 +-1.781822,51.561527 +-2.213045,51.103362 +-1.959598,51.156773 +-1.787923,51.540121 +-1.906844,51.166221 +-1.743023,51.588684 +-2.160374,51.445414 +-1.775359,51.585189 +-1.75054,51.570744 +-2.235446,51.370881 +-1.868556,51.045699 +-1.988535,51.352271 +-2.220275,51.100939 +-2.481541,50.96286 +-2.469655,50.636477 +-1.734142,50.735143 +-1.900565,50.758667 +-2.267619,50.912938 +-1.988234,50.715616 +-1.797383,50.751834 +-1.952752,50.729635 +-2.203215,50.815598 +-2.190319,50.824424 +-1.948107,50.741135 +-1.794201,50.740543 +-2.259264,51.009084 +-2.325098,50.957601 +-2.447301,50.521896 +-1.888944,50.816587 +-1.95315,50.71397 +-1.817759,50.753972 +-1.922994,50.72355 +-1.990854,50.714708 +-1.817307,50.768144 +-1.767138,50.753684 +-2.465949,50.714918 +-1.859427,50.737906 +-1.812128,50.821983 +-1.881465,50.900452 +-2.422601,50.706369 +-1.745167,50.737775 +-1.885513,50.756576 +-2.006973,50.716066 +-2.58614,50.922932 +-1.901727,50.752229 +-1.87561,50.733032 +-2.193074,50.941231 +-1.932851,50.725381 +-1.966133,50.741753 +-1.802654,50.745512 +-2.464719,50.676434 +-2.298416,51.004216 +-1.963327,50.723704 +-2.048105,50.7553 +-1.861197,50.724032 +-1.978013,50.732889 +-1.802069,50.743083 +-2.582795,50.715309 +-2.032871,50.742733 +-1.78348,50.735856 +-1.699323,50.751056 +-1.876023,50.748248 +-2.465223,50.921597 +-1.834507,50.72799 +-1.977928,50.732862 +-2.020291,50.787636 +-1.98607,50.751829 +-2.44201,50.707161 +-2.775803,50.835479 +-1.894339,50.728158 +-1.972954,50.609966 +-1.887755,50.767693 +-1.888894,50.717956 +-1.765585,50.740938 +-2.305954,50.928149 +-1.918918,50.770551 +-1.878828,50.743278 +-1.862409,50.726138 +-2.158879,50.872185 +-1.889488,50.826839 +-1.877625,50.748115 +-1.958596,50.609665 +-2.757036,50.723436 +-1.850177,50.736806 +-1.78758,50.734749 +-2.0165,50.77806 +-2.022184,50.622602 +-1.758014,50.736229 +-1.925248,50.72249 +-1.898403,50.761947 +-1.905733,50.818256 +-1.852598,50.755532 +-2.012051,50.740256 +-1.992881,50.611534 +-1.9653,50.736897 +-2.091998,50.713529 +-1.956204,50.78165 +-2.447588,50.711456 +-1.858305,50.734001 +-1.853962,50.736397 +-1.998997,50.843832 +-1.908602,50.781137 +-1.921717,50.733072 +-2.168543,50.742436 +-2.558696,50.823142 +-1.949585,50.723114 +-2.381126,50.687745 +-1.80855,50.735297 +-2.310782,50.702279 +-2.12065,50.888894 +-1.902523,50.757769 +-1.878175,50.749266 +-1.915449,50.728409 +-2.497654,50.621783 +-2.465635,50.6117 +-2.312378,50.960963 +-1.97084,50.738607 +-1.945901,50.748679 +-2.457499,50.724232 +-1.868779,50.748663 +-1.925447,50.811706 +-2.924959,50.749419 +-1.95393,50.742208 +-1.911123,50.752974 +-1.820376,50.773796 +-1.93951,50.802775 +-2.37309,50.702627 +-2.410081,50.724112 +-1.867508,50.74689 +-1.910244,50.723693 +-1.865525,50.736348 +-2.444627,50.70841 +-1.786449,50.734099 +-2.213554,51.009222 +-1.749849,50.744647 +-1.863291,50.725114 +-2.007568,50.716749 +-1.98067,50.749994 +-2.773314,50.763913 +-2.432437,50.701117 +-2.12279,50.789237 +-2.187927,51.009617 +-1.984507,50.720597 +-1.977822,50.777879 +-1.9428,50.745899 +-1.880632,50.736113 +-2.517241,50.713901 +-2.44664,50.708555 +-2.143306,50.836325 +-2.040594,50.92098 +-1.984515,50.739599 +-2.38411,50.737635 +-2.515561,50.945027 +-1.849974,50.733892 +-2.002148,50.806505 +-1.909332,50.814536 +-2.269158,51.006994 +-1.917295,50.741927 +-1.863587,50.740357 +-1.983941,50.719014 +-2.464088,50.632533 +-2.755668,50.724713 +-2.73962,50.742918 +-1.883769,50.716647 +-2.441459,50.714905 +-1.840648,50.751191 +-2.425966,50.71517 +-2.276212,50.667924 +-2.444842,50.542427 +-1.873517,50.731411 +-1.808582,50.77607 +-1.971009,50.739875 +-1.978949,50.76475 +-1.8614,50.72236 +-1.963685,50.792534 +-1.820336,50.836168 +-1.819454,50.744505 +-2.203324,50.687067 +-2.43929,50.71013 +-2.014828,50.73905 +-1.961478,50.732597 +-1.759821,50.770737 +-2.073842,50.786922 +-1.877061,50.719778 +-2.19689,50.820411 +-2.457705,50.615904 +-2.270254,51.036144 +-2.197913,50.686267 +-2.837646,50.781382 +-2.449001,50.69779 +-2.447378,50.699847 +-1.994294,50.735994 +-2.718767,50.732455 +-1.879333,50.717479 +-2.218432,50.991741 +-1.777731,50.737815 +-2.205182,50.811108 +-2.472204,50.586016 +-1.953231,50.718629 +-2.470963,50.642812 +-2.571567,50.970134 +-2.462115,50.630401 +-2.459758,50.604727 +-2.084978,50.747779 +-1.960621,50.723712 +-1.976507,50.742232 +-2.443256,50.849617 +-1.943226,50.745818 +-1.957929,50.723477 +-2.412497,50.700857 +-1.987262,50.800389 +-2.178287,50.744319 +-2.441238,50.707973 +-2.043835,50.75174 +-1.922308,50.804788 +-1.970075,50.737986 +-1.908693,50.778268 +-1.896345,50.852752 +-2.524575,50.944078 +-1.934712,50.772935 +-2.124116,50.743706 +-1.794834,50.721938 +-1.862225,50.726084 +-2.147609,50.836365 +-1.87941,50.880999 +-1.874663,50.742437 +-2.191541,51.004584 +-1.97578,50.610542 +-1.865871,50.754388 +-2.70494,50.839175 +-1.791553,50.727157 +-2.253312,50.905542 +-1.864059,50.724179 +-1.993525,50.762423 +-2.085981,50.746016 +-1.910103,50.745455 +-1.970883,50.737834 +-1.910469,50.746625 +-2.401956,50.731586 +-2.448831,50.721451 +-1.977079,50.876914 +-2.145929,50.871339 +-2.048313,50.627423 +-2.430877,50.723956 +-1.814249,50.806375 +-2.340067,50.995398 +-1.918611,50.726478 +-1.915959,50.728086 +-2.091238,50.737783 +-1.850201,50.751437 +-1.96691,50.725324 +-2.319056,50.752993 +-1.831684,50.831823 +-2.421396,50.722093 +-1.744327,50.740984 +-1.971149,50.812823 +-2.226752,50.66955 +-2.193305,50.897483 +-1.939001,50.746904 +-1.967309,50.721304 +-1.909536,50.723459 +-1.852049,50.723023 +-2.475881,50.594878 +-1.972608,50.720083 +-2.419239,50.710536 +-2.26805,51.034746 +-1.810554,50.832079 +-1.831076,50.728768 +-1.825699,50.730621 +-2.57312,50.711742 +-1.863016,50.722173 +-2.461453,50.571356 +-1.987941,50.866043 +-1.857804,50.754531 +-1.86107,50.747809 +-2.487059,50.926769 +-1.880325,50.745393 +-2.456875,50.614909 +-2.467767,50.861724 +-1.989985,50.739285 +-2.267675,50.781252 +-2.637031,50.847821 +-1.752806,50.737621 +-1.817317,50.72184 +-2.02423,50.616172 +-1.79829,50.741908 +-2.582635,50.865569 +-1.900879,50.75775 +-1.934589,50.739033 +-2.248668,50.70107 +-2.100297,50.706508 +-1.947794,50.741818 +-1.79097,50.72123 +-1.874081,50.721933 +-2.195969,50.820782 +-1.893221,50.720936 +-1.908702,50.781065 +-1.878784,50.848419 +-1.98912,50.804193 +-2.45058,50.695644 +-2.374142,50.701346 +-1.827402,50.729967 +-2.538722,50.712131 +-1.867918,50.742295 +-2.543181,50.713154 +-2.362519,50.756652 +-1.860891,50.731631 +-2.276211,51.037668 +-1.871922,50.718676 +-2.481865,50.609457 +-2.56448,50.687 +-1.968864,50.726484 +-1.893853,50.798831 +-1.956767,50.739862 +-2.403855,50.696975 +-1.87266,50.718101 +-2.753344,50.792659 +-2.155462,50.6825 +-1.813778,50.80704 +-1.951216,50.735282 +-2.572721,50.831122 +-1.886709,50.754464 +-1.878913,50.743269 +-2.834711,50.737627 +-1.931274,50.767637 +-1.904768,50.769327 +-1.912193,50.741806 +-1.809323,50.841438 +-2.26428,51.033865 +-1.929117,50.740765 +-2.074143,50.788343 +-1.898654,50.7438 +-1.92607,50.713363 +-2.463618,50.721195 +-1.948845,50.739831 +-1.911988,50.806049 +-1.991554,50.762648 +-2.005169,50.79101 +-2.129097,50.859039 +-2.027914,50.725424 +-1.884851,50.789785 +-1.853198,50.731531 +-2.185337,50.828281 +-1.982949,50.79886 +-1.953119,50.745382 +-1.865082,50.816696 +-1.87396,50.7616 +-1.910213,50.746975 +-1.848515,50.733746 +-2.471794,50.584588 +-1.878413,50.744887 +-2.011068,50.720724 +-1.866858,50.726314 +-1.939056,50.802721 +-2.459383,50.612606 +-2.442719,50.914374 +-1.974299,50.78858 +-2.678046,50.825791 +-1.931111,50.753374 +-1.815868,50.744437 +-1.82719,50.833642 +-1.960795,50.735547 +-1.90305,50.722042 +-2.060064,50.76203 +-1.977349,50.789902 +-1.868427,50.722287 +-2.236843,51.017459 +-1.945437,50.806483 +-1.875532,50.762276 +-1.948204,50.729849 +-1.807587,50.842334 +-1.914283,50.815996 +-2.133071,50.682807 +-1.87899,50.757361 +-1.851637,50.732204 +-2.514133,50.971714 +-2.513467,50.702983 +-2.592822,50.664665 +-1.861159,50.727494 +-1.978501,50.781656 +-2.475582,50.608584 +-1.900522,50.758739 +-1.879325,50.880981 +-2.013678,50.779022 +-2.810133,50.850578 +-2.036327,50.922492 +-2.514106,50.938316 +-1.925628,50.750979 +-2.711464,50.695575 +-1.841432,50.728953 +-1.936044,50.742334 +-1.803223,50.728085 +-1.862169,50.725976 +-1.986132,50.882445 +-1.921198,50.738899 +-1.85216,50.867965 +-2.534927,50.928367 +-2.40438,50.729986 +-2.462947,50.667493 +-1.888189,50.740527 +-1.872025,50.732974 +-1.819498,50.725666 +-1.948122,50.753023 +-1.813816,50.736493 +-1.905752,50.75217 +-2.113043,50.694977 +-1.756843,50.743331 +-1.91037,50.746499 +-1.954669,50.740715 +-1.917443,50.810891 +-1.874923,50.761925 +-1.913754,50.725414 +-1.796963,50.776968 +-1.891653,50.725422 +-1.963444,50.809853 +-2.033409,50.74241 +-2.18077,50.855104 +-2.466463,50.715339 +-1.941559,50.730125 +-1.921033,50.727046 +-1.984338,50.716766 +-2.487436,50.61519 +-2.610888,50.720058 +-2.193263,50.935368 +-1.87776,50.723268 +-2.065931,50.769706 +-1.918947,50.770533 +-2.464816,50.603133 +-1.87353,50.721366 +-2.411925,50.879218 +-1.827081,50.747853 +-1.939339,50.748577 +-2.059657,50.731689 +-1.819453,50.730027 +-2.462527,50.649275 +-2.490767,50.842395 +-1.837351,50.753614 +-1.760319,50.737007 +-1.899785,50.758801 +-2.266038,51.009717 +-1.838567,50.775324 +-1.866587,50.726835 +-1.8192,50.733228 +-1.851158,50.735755 +-1.809195,50.74037 +-2.151179,50.855559 +-1.888747,50.719934 +-1.875833,50.723563 +-2.019262,50.770101 +-1.971487,50.723122 +-2.273701,50.737273 +-2.454822,50.778369 +-1.977292,50.610489 +-2.0148,50.739005 +-1.88925,50.771363 +-1.861408,50.74878 +-1.802453,50.742877 +-1.80141,50.75488 +-2.527283,50.660862 +-2.383961,50.646566 +-1.85472,50.756991 +-2.028971,50.738436 +-1.8412,50.726246 +-1.962353,50.736123 +-2.429772,50.635687 +-1.885858,50.719706 +-2.584538,50.941474 +-1.892494,50.741538 +-1.925066,50.792839 +-1.810166,50.777107 +-1.769422,50.738941 +-2.41054,50.909213 +-1.977492,50.876671 +-2.545733,50.75967 +-1.991333,50.73245 +-1.879446,50.739807 +-1.83231,50.724381 +-1.938622,50.743738 +-1.984105,50.737395 +-1.911855,50.741005 +-1.796308,50.777569 +-1.767152,50.76524 +-1.831557,50.728921 +-1.920162,50.739429 +-1.981405,50.612045 +-1.91064,50.746499 +-1.888741,50.722623 +-2.15542,50.682518 +-1.874825,50.761493 +-2.470705,50.581571 +-2.549391,50.798393 +-1.893221,50.720954 +-1.890344,50.782605 +-2.44168,50.558915 +-2.484307,50.605023 +-1.775723,50.736966 +-1.876637,50.751999 +-2.391126,50.904163 +-2.053889,50.644561 +-1.880163,50.736472 +-1.873555,50.722472 +-1.872759,50.718065 +-1.869925,50.780165 +-2.347185,50.753596 +-2.254009,50.670178 +-1.873867,50.717086 +-2.938972,50.720763 +-2.050577,50.916714 +-2.498044,50.622573 +-1.986779,50.752369 +-1.967519,50.725036 +-1.91507,50.726422 +-1.942106,50.745629 +-1.993852,50.759455 +-2.215249,51.01528 +-1.950506,50.723043 +-1.716399,50.740182 +-1.865943,50.729118 +-1.967295,50.721322 +-1.863077,50.7255 +-2.024308,50.737835 +-2.475455,50.594618 +-1.87722,50.881303 +-1.972385,50.737699 +-1.826054,50.730469 +-1.821489,50.77217 +-1.822135,50.724986 +-2.476488,50.712214 +-2.092154,50.713466 +-2.454366,50.712356 +-1.869449,50.747225 +-2.538496,50.70974 +-1.826283,50.721971 +-1.845042,50.841608 +-2.218699,50.669278 +-2.040324,50.740483 +-2.111201,50.68827 +-1.981469,50.736451 +-1.994807,50.711417 +-1.930436,50.739489 +-2.610562,50.719987 +-1.833727,50.728097 +-1.951668,50.723466 +-1.90939,50.747946 +-2.470162,50.637608 +-1.873813,50.731753 +-2.135109,50.830373 +-1.880703,50.736131 +-1.855659,50.723846 +-1.869169,50.741001 +-1.90175,50.761519 +-1.879302,50.740814 +-1.88381,50.79758 +-2.116842,50.816239 +-2.449293,50.734264 +-2.01342,50.722989 +-2.518166,50.938631 +-2.45631,50.611988 +-1.983335,50.750704 +-2.514725,50.750576 +-1.877689,50.734356 +-1.836972,50.911792 +-1.869751,50.868498 +-1.984408,50.718673 +-2.270054,51.036073 +-1.978074,50.723807 +-1.97725,50.876869 +-2.93349,50.737876 +-2.820292,50.839347 +-1.874286,50.745638 +-1.984783,50.788617 +-2.205824,51.01161 +-2.021102,50.730632 +-1.999778,50.712226 +-2.755055,50.811694 +-1.9526,50.895152 +-1.978808,50.793571 +-1.866275,50.722033 +-2.184808,51.00669 +-1.807899,50.842398 +-1.831572,50.728651 +-1.813348,50.736672 +-2.02727,50.738203 +-1.969682,50.79803 +-2.757984,50.731307 +-2.502808,50.699324 +-2.153589,50.854126 +-2.110872,50.686904 +-1.91881,50.808671 +-1.95902,50.608883 +-1.89084,50.782767 +-1.865773,50.729199 +-2.203116,50.815689 +-1.861032,50.727188 +-1.79791,50.721692 +-2.101414,50.705545 +-2.431414,50.708396 +-1.768873,50.735298 +-1.914039,50.724452 +-1.979096,50.719328 +-1.893747,50.732843 +-2.019899,50.766189 +-1.873841,50.747904 +-1.889691,50.722444 +-1.937549,50.772541 +-1.846099,50.722916 +-1.984753,50.880701 +-1.877957,50.734644 +-1.827621,50.747431 +-1.770313,50.739275 +-1.91879,50.762557 +-1.966346,50.741654 +-1.751428,50.73813 +-1.865054,50.757453 +-2.037706,50.746032 +-2.211302,50.755181 +-1.890992,50.741797 +-1.877718,50.723232 +-2.12182,50.683682 +-2.471823,50.584615 +-2.784662,50.73364 +-2.186124,51.007803 +-2.601918,50.719808 +-1.948527,50.796997 +-1.858122,50.733884 +-1.925473,50.723614 +-2.45114,50.700849 +-1.785209,50.735868 +-1.876977,50.741244 +-1.942871,50.745989 +-2.014814,50.738682 +-2.164383,50.865361 +-1.759602,50.736052 +-1.86306,50.741021 +-2.431404,50.633298 +-1.950634,50.723088 +-2.45651,50.615153 +-1.958249,50.794087 +-2.459767,50.607047 +-2.775497,50.756983 +-2.278904,50.730462 +-1.835386,50.72774 +-2.433146,50.644388 +-2.383315,50.647198 +-2.446923,50.559515 +-1.901623,50.761249 +-2.033251,50.739028 +-2.280999,51.048789 +-2.28016,51.07289 +-1.950541,50.730444 +-2.258151,50.90867 +-1.933734,50.752746 +-1.942417,50.804647 +-2.07643,50.799043 +-1.982212,50.795685 +-1.919756,50.769572 +-2.460258,50.628376 +-1.879905,50.754529 +-2.34154,50.712319 +-1.960045,50.734683 +-1.905689,50.719985 +-2.463094,50.636476 +-2.026582,50.725604 +-1.907014,50.759356 +-1.974436,50.744732 +-2.031837,50.723067 +-1.915543,50.739228 +-2.050619,50.916732 +-1.866544,50.726817 +-1.889894,50.817289 +-1.887136,50.72424 +-1.941867,50.801679 +-2.72995,50.781828 +-2.166504,50.850485 +-2.169273,50.979404 +-2.781105,50.731928 +-2.233402,51.007907 +-1.976924,50.78742 +-1.870524,50.722109 +-1.841748,50.727532 +-2.466427,50.651724 +-1.992549,50.746902 +-1.889365,50.722416 +-1.87868,50.718044 +-1.991506,50.713799 +-1.71283,50.739786 +-2.408832,50.725492 +-2.197507,50.88584 +-2.230451,51.016402 +-2.427201,50.667153 +-1.941013,50.701672 +-2.15793,50.873319 +-2.466062,50.60632 +-2.445354,50.720817 +-2.193318,51.010282 +-1.753495,50.74398 +-1.951827,50.733628 +-1.994407,50.735823 +-1.956039,50.608028 +-1.813613,50.726906 +-1.855406,50.819949 +-1.985429,50.7636 +-2.0572,50.762139 +-1.72117,50.743368 +-2.575042,50.833943 +-1.819212,50.792669 +-1.814272,50.721638 +-1.759118,50.744729 +-2.01778,50.788374 +-1.831969,50.728535 +-1.821265,50.745236 +-1.907034,50.806782 +-1.994362,50.760103 +-1.994662,50.735787 +-2.680574,50.730112 +-1.741381,50.743198 +-2.456154,50.611944 +-1.903522,50.754479 +-1.86329,50.725491 +-2.1168,50.81623 +-2.545563,50.713394 +-2.162055,50.669209 +-2.451108,50.6178 +-1.975416,50.878352 +-2.239491,50.675838 +-2.463121,50.611881 +-1.916623,50.7693 +-1.860437,50.722341 +-2.027043,50.738212 +-1.901684,50.752202 +-2.58271,50.715301 +-1.981203,50.872022 +-2.006959,50.71594 +-1.94887,50.716666 +-1.882356,50.777606 +-1.877725,50.747737 +-2.454019,50.622141 +-2.908193,50.818372 +-1.890391,50.816993 +-2.434286,50.631452 +-2.027277,50.725523 +-1.976967,50.787519 +-1.898994,50.744044 +-2.287491,51.005287 +-2.55835,50.710771 +-2.014743,50.738942 +-1.966428,50.625666 +-1.931859,50.696784 +-2.457907,50.651254 +-2.827248,50.733921 +-1.77318,50.764685 +-2.415568,50.646197 +-1.800605,50.75425 +-2.452441,50.615304 +-2.396895,50.893551 +-2.004565,50.714492 +-2.02981,50.742941 +-2.498712,50.62418 +-1.810894,50.835982 +-1.90142,50.885021 +-1.936316,50.751228 +-2.454828,50.607813 +-2.160962,50.849989 +-1.897636,50.807863 +-1.888178,50.757073 +-1.909118,50.756669 +-1.909081,50.724394 +-1.776988,50.736312 +-2.933316,50.752661 +-1.977773,50.732269 +-1.861648,50.744185 +-1.940984,50.747723 +-1.902068,50.744891 +-2.889547,50.791097 +-2.419789,50.707072 +-1.862747,50.736786 +-2.153475,50.987699 +-2.933202,50.752644 +-2.451397,50.770307 +-1.847611,50.723988 +-1.801523,50.754917 +-1.918532,50.805298 +-2.437697,50.552626 +-1.869701,50.738178 +-2.760572,50.71085 +-1.939582,50.801966 +-1.877747,50.810065 +-2.474404,50.592689 +-2.470119,50.637626 +-2.363306,50.669708 +-1.807474,50.842163 +-1.891698,50.798217 +-1.911035,50.724845 +-1.948348,50.753752 +-1.820196,50.772788 +-2.446713,50.699922 +-2.382542,50.738234 +-1.809224,50.740334 +-2.099689,50.706958 +-1.976769,50.727017 +-2.415503,50.717231 +-2.286211,50.664725 +-1.993075,50.734546 +-1.895889,50.75083 +-2.45078,50.62049 +-2.187701,51.017099 +-2.42641,50.704827 +-2.004985,50.791316 +-1.891713,50.723956 +-1.962204,50.728281 +-2.033835,50.744028 +-1.7376,50.745285 +-1.931926,50.728384 +-1.911053,50.767902 +-2.459795,50.607056 +-2.529783,50.947715 +-1.895456,50.722647 +-2.237726,51.00895 +-2.178379,50.8392 +-1.817893,50.726778 +-2.544671,50.71339 +-1.9779,50.732817 +-1.881003,50.724036 +-1.947497,50.728401 +-1.855982,50.724574 +-1.946127,50.922971 +-2.197955,50.686275 +-1.787916,50.732474 +-1.949555,50.711757 +-1.794734,50.728691 +-2.440933,50.557533 +-1.945395,50.708023 +-1.923672,50.812487 +-1.861546,50.735516 +-1.78253,50.73902 +-1.950591,50.75012 +-2.01478,50.809525 +-2.229624,50.678214 +-1.909896,50.757218 +-2.471268,50.611102 +-1.907871,50.80663 +-1.866587,50.726871 +-2.480414,50.872887 +-2.715431,50.720902 +-1.947331,50.711855 +-1.834335,50.841179 +-2.112081,50.689303 +-1.889292,50.825705 +-1.861898,50.726506 +-2.691627,50.732098 +-1.977864,50.779732 +-2.460651,50.604993 +-2.486945,50.614167 +-2.520304,50.940186 +-2.763292,50.73442 +-2.381476,50.72045 +-1.997425,50.741668 +-1.916332,50.789704 +-1.902608,50.723615 +-1.899664,50.722327 +-2.387906,50.944523 +-1.831712,50.729092 +-1.972246,50.733499 +-1.853881,50.730507 +-1.844979,50.727348 +-1.942004,50.724972 +-1.873186,50.874941 +-2.023608,50.616001 +-1.846221,50.750497 +-1.910332,50.729188 +-2.512219,50.949169 +-1.913016,50.741537 +-1.854627,50.736605 +-1.946552,50.836986 +-1.813825,50.759316 +-1.869658,50.738169 +-1.862637,50.725706 +-1.899063,50.725042 +-1.86187,50.726533 +-1.832891,50.728285 +-2.066431,50.732683 +-2.446326,50.709806 +-2.198024,51.017522 +-1.904882,50.818372 +-1.889405,50.765743 +-1.877872,50.723745 +-2.488554,50.618 +-1.971637,50.756556 +-1.848302,50.725086 +-1.832345,50.738329 +-1.952679,50.731937 +-2.088615,50.73739 +-1.836648,50.829492 +-1.815609,50.85009 +-2.147613,50.869116 +-2.453615,50.606612 +-2.180064,50.834251 +-1.938098,50.743477 +-1.94562,50.734192 +-1.963516,50.606825 +-1.829589,50.728433 +-1.893916,50.733419 +-2.21889,50.728522 +-1.93145,50.753545 +-1.987789,50.73718 +-2.458291,50.613725 +-1.908886,50.817881 +-1.854156,50.870278 +-1.889242,50.744313 +-1.931394,50.753527 +-1.930494,50.757789 +-1.937608,50.749961 +-1.895081,50.769993 +-1.979152,50.786989 +-2.918345,50.783724 +-2.259848,50.909502 +-1.890224,50.766904 +-1.906847,50.786522 +-2.459582,50.731553 +-1.938029,50.731625 +-1.88659,50.815838 +-2.447696,50.713874 +-1.861479,50.743825 +-1.860436,50.732286 +-1.931719,50.724625 +-1.953584,50.719186 +-1.875581,50.73305 +-1.977526,50.713771 +-1.786692,50.736896 +-1.785743,50.736751 +-2.154933,50.865302 +-2.464181,50.712317 +-2.498267,50.743804 +-1.951529,50.73432 +-1.886008,50.751415 +-1.891259,50.736573 +-2.005524,50.7911 +-1.75934,50.742832 +-2.208932,50.760949 +-1.88731,50.71683 +-1.985293,50.882166 +-1.815627,50.80234 +-2.630975,50.723197 +-2.453949,50.648572 +-2.168619,50.732005 +-1.918748,50.770695 +-1.981872,50.871033 +-2.158115,50.873337 +-1.939367,50.74864 +-1.935865,50.718072 +-1.860568,50.750038 +-1.849949,50.732966 +-1.89393,50.733383 +-1.958101,50.609917 +-1.836452,50.726815 +-2.071884,50.786717 +-1.784899,50.741686 +-1.838211,50.726089 +-2.933988,50.738726 +-2.893368,50.83301 +-1.896124,50.721559 +-2.204811,51.011216 +-1.838768,50.729066 +-1.943302,50.753201 +-1.748719,50.727936 +-2.484701,50.836845 +-1.759386,50.744901 +-1.86653,50.726799 +-1.984817,50.727306 +-2.072497,50.733561 +-1.832486,50.774443 +-1.82787,50.729797 +-1.895257,50.716703 +-1.864264,50.874004 +-2.010351,50.742693 +-2.937622,50.724794 +-1.88299,50.716808 +-2.18165,50.683155 +-1.869641,50.729123 +-1.877098,50.781567 +-1.810286,50.733322 +-1.885398,50.716513 +-1.883767,50.797688 +-2.933322,50.72588 +-2.377959,50.958817 +-1.869344,50.728763 +-1.952419,50.723161 +-1.812096,50.74149 +-2.382558,50.964072 +-2.181267,51.012406 +-1.967199,50.798299 +-1.923721,50.729845 +-2.198505,51.020066 +-2.099816,50.70685 +-1.994648,50.735796 +-2.843351,50.805235 +-2.444709,50.538759 +-2.758315,50.73689 +-1.999693,50.737415 +-2.455631,50.62361 +-1.984399,50.746919 +-2.436238,50.715492 +-1.799111,50.742134 +-2.002812,50.768727 +-1.866132,50.72232 +-1.977914,50.732871 +-1.876512,50.84785 +-1.907742,50.749761 +-2.245502,50.791624 +-2.932171,50.724999 +-1.913288,50.724298 +-1.98342,50.750848 +-2.338419,50.685988 +-2.017294,50.740255 +-2.298119,50.933366 +-2.493757,50.929169 +-2.464123,50.595932 +-2.765082,50.812924 +-2.15525,50.985916 +-2.462582,50.679374 +-2.39938,50.645246 +-1.855721,50.735896 +-1.869669,50.729159 +-1.899317,50.88448 +-1.948685,50.730758 +-2.363085,50.886449 +-2.515375,50.898618 +-1.890553,50.802371 +-1.93788,50.801147 +-2.423673,50.872225 +-1.823783,50.731437 +-2.0572,50.762094 +-1.938953,50.728847 +-1.947821,50.742745 +-1.834204,50.725409 +-2.005146,50.71469 +-1.847129,50.724275 +-1.963578,50.728749 +-2.243061,50.706648 +-1.959516,50.722956 +-2.018962,50.728555 +-1.918566,50.736514 +-2.196773,51.008262 +-1.863746,50.739152 +-1.790664,50.73908 +-2.009672,50.752836 +-1.808168,50.728112 +-1.949571,50.723672 +-2.592136,50.779857 +-1.884831,50.73439 +-1.820378,50.732546 +-1.950831,50.724149 +-1.821065,50.73092 +-2.45984,50.723126 +-1.860393,50.732358 +-2.161231,50.964785 +-1.983222,50.750246 +-1.843725,50.733884 +-2.028971,50.73849 +-1.808627,50.740702 +-1.984385,50.747638 +-1.988248,50.715805 +-1.870148,50.720032 +-2.579208,50.840137 +-1.90235,50.752311 +-1.888306,50.750778 +-1.752664,50.737656 +-1.872772,50.813063 +-2.402566,50.957656 +-2.474859,50.712175 +-1.939242,50.746751 +-2.460746,50.607466 +-2.137085,50.743898 +-2.459653,50.606939 +-2.534011,50.753735 +-1.976517,50.721648 +-1.952316,50.824489 +-1.946148,50.743553 +-2.445832,50.716022 +-1.935266,50.751623 +-1.872007,50.718487 +-1.759857,50.735927 +-1.923377,50.723343 +-1.813827,50.808901 +-1.988305,50.715715 +-1.877534,50.739554 +-2.343285,50.919772 +-2.392264,50.734946 +-1.770199,50.739446 +-1.924503,50.728056 +-1.853019,50.729669 +-2.428906,50.709853 +-2.508432,50.949096 +-1.940026,50.742858 +-1.923073,50.727452 +-2.45801,50.724356 +-1.9459,50.922126 +-1.879991,50.720609 +-1.998814,50.764626 +-1.890651,50.802803 +-2.304826,50.934104 +-1.90709,50.749599 +-1.877478,50.744527 +-2.469071,50.621821 +-1.822705,50.73541 +-1.871092,50.861405 +-1.877367,50.749185 +-1.890723,50.74159 +-2.608296,50.720062 +-1.921789,50.749394 +-2.033864,50.744001 +-2.757505,50.737614 +-1.938321,50.898131 +-1.909378,50.717128 +-1.872961,50.732535 +-2.443609,50.645563 +-2.403442,50.696671 +-2.195913,50.746431 +-1.899961,50.722417 +-2.456729,50.68732 +-1.794716,50.72317 +-2.088312,50.764152 +-2.448671,50.623115 +-2.373076,50.702636 +-1.87823,50.7171 +-2.482638,50.618708 +-1.994022,50.759869 +-1.938953,50.72882 +-2.110788,50.68747 +-1.715819,50.739974 +-2.598581,50.874642 +-1.827392,50.747988 +-2.540717,50.654145 +-1.992535,50.746731 +-2.000628,50.713521 +-2.224793,51.016575 +-1.824522,50.73079 +-1.94629,50.743382 +-1.990766,50.735013 +-1.902971,50.719236 +-1.82143,50.836062 +-2.167328,50.977285 +-1.811194,50.726012 +-2.073162,50.7873 +-1.884106,50.781358 +-2.001529,50.953027 +-2.231417,50.654226 +-1.877935,50.781568 +-1.846291,50.75091 +-2.184333,51.001754 +-1.858762,50.912261 +-1.885293,50.742169 +-1.911589,50.746662 +-2.001431,50.614592 +-2.216807,50.685567 +-1.881912,50.77953 +-1.922074,50.766111 +-1.953361,50.74424 +-1.913806,50.766627 +-2.453156,50.566137 +-2.517708,50.760104 +-2.464281,50.646454 +-2.002868,50.751749 +-1.730106,50.749477 +-2.480358,50.600183 +-1.873644,50.731357 +-2.67762,50.692279 +-2.346574,50.992717 +-2.470662,50.614099 +-2.756677,50.723141 +-1.81389,50.839476 +-2.517517,50.957113 +-1.774381,50.753851 +-2.430072,50.643761 +-2.453134,50.713764 +-2.590837,50.734181 +-2.137635,50.858697 +-1.986615,50.730247 +-2.175266,50.743811 +-2.011186,50.739365 +-1.912099,50.74677 +-1.822697,50.72246 +-1.830026,50.729054 +-1.987718,50.73852 +-1.918739,50.726379 +-2.156129,50.895668 +-1.847143,50.724131 +-1.939013,50.802739 +-1.890015,50.741158 +-2.479505,50.620537 +-1.84982,50.729 +-1.850201,50.751464 +-1.954786,50.721813 +-2.196023,51.006061 +-2.458672,50.723922 +-1.863318,50.725527 +-1.882327,50.721061 +-1.861955,50.726452 +-2.453791,50.614624 +-1.849977,50.732984 +-2.364524,50.744659 +-2.430348,50.709533 +-2.106107,50.701791 +-2.455562,50.615049 +-2.244906,51.010788 +-1.89864,50.743737 +-2.002797,50.751776 +-1.892573,50.800251 +-2.076547,50.757829 +-1.889279,50.837378 +-1.923469,50.727749 +-1.931515,50.767691 +-1.85917,50.738751 +-1.883991,50.735819 +-1.867177,50.75858 +-1.898501,50.814932 +-1.990723,50.734986 +-1.977224,50.724993 +-2.022223,50.764201 +-1.845452,50.751728 +-1.993819,50.79208 +-2.005197,50.791037 +-1.987137,50.898191 +-1.881241,50.719288 +-2.13557,50.886243 +-1.81569,50.742872 +-1.914051,50.725495 +-2.208256,50.761823 +-1.920069,50.769527 +-1.939169,50.802757 +-1.919052,50.725687 +-1.90957,50.713019 +-1.873926,50.73196 +-1.69272,50.748575 +-1.856263,50.730015 +-1.99113,50.756811 +-2.545846,50.759706 +-1.855393,50.72282 +-2.520303,50.950257 +-1.881627,50.740565 +-2.020872,50.628879 +-1.901236,50.756177 +-1.876278,50.726504 +-2.330805,51.053379 +-1.814204,50.839171 +-2.158142,50.914765 +-2.487503,50.610738 +-2.450217,50.696095 +-2.431378,50.633531 +-2.099884,50.791768 +-2.272946,51.035463 +-1.966347,50.739019 +-1.867192,50.723437 +-1.798462,50.721675 +-1.847555,50.724006 +-1.912864,50.724226 +-2.211471,50.993247 +-1.935471,50.902365 +-1.760842,50.73735 +-1.876044,50.761665 +-2.470709,50.858952 +-1.96309,50.60928 +-1.956302,50.720959 +-1.881864,50.730601 +-2.762324,50.734139 +-1.816982,50.851396 +-1.992073,50.799418 +-1.979691,50.719643 +-1.882317,50.719478 +-1.930436,50.73948 +-2.471285,50.643925 +-1.847706,50.734096 +-1.991102,50.756712 +-1.919245,50.770075 +-1.960352,50.739719 +-1.972247,50.634454 +-1.965646,50.74901 +-2.168649,50.846534 +-1.920622,50.726929 +-2.567903,50.668018 +-1.886717,50.733826 +-2.163394,50.773531 +-1.902836,50.723013 +-1.95319,50.745094 +-1.879172,50.741929 +-1.897609,50.768188 +-1.891401,50.7424 +-2.23145,51.016508 +-1.990723,50.735076 +-1.933975,50.772656 +-2.460746,50.806754 +-1.964233,50.724055 +-2.456154,50.611989 +-2.279943,51.046327 +-2.765374,50.734379 +-1.864714,50.816561 +-2.049733,50.819965 +-1.869405,50.722324 +-1.906889,50.786594 +-1.827564,50.747422 +-1.907503,50.885773 +-1.838231,50.728535 +-1.867465,50.736926 +-1.81389,50.810925 +-1.953155,50.895062 +-1.939253,50.748667 +-1.866856,50.721997 +-1.976002,50.955408 +-1.926832,50.751753 +-1.953166,50.640554 +-1.979691,50.719652 +-2.765993,50.727163 +-2.292545,50.918246 +-1.886529,50.846637 +-2.473052,50.635384 +-1.905141,50.724894 +-1.873128,50.870292 +-1.947185,50.804739 +-1.85653,50.753918 +-1.903966,50.759299 +-2.470911,50.64042 +-2.002619,50.617307 +-1.930077,50.809757 +-1.932102,50.754067 +-2.06489,50.826792 +-1.991404,50.73254 +-1.834529,50.721857 +-2.471009,50.606363 +-2.923228,50.744306 +-1.880481,50.722884 +-2.484408,50.605211 +-2.066912,50.761729 +-1.958566,50.740465 +-2.468334,50.6515 +-1.92145,50.749205 +-1.759686,50.736196 +-1.94417,50.737959 +-1.961393,50.732417 +-2.462382,50.663341 +-1.899502,50.725051 +-2.246581,50.673053 +-2.197358,51.008441 +-2.462906,50.636009 +-2.085881,50.799396 +-1.979733,50.721748 +-2.471452,50.611065 +-1.947141,50.742789 +-1.901164,50.723236 +-1.864983,50.757453 +-2.442322,50.720774 +-2.462408,50.65156 +-1.851098,50.732482 +-1.957366,50.609242 +-1.904677,50.723419 +-2.491386,50.697071 +-2.008928,50.716497 +-2.481328,50.610845 +-1.990837,50.804724 +-1.922016,50.732371 +-1.929307,50.708185 +-1.836308,50.727453 +-1.827293,50.747844 +-1.740634,50.742504 +-1.865925,50.735269 +-1.864589,50.736806 +-1.845823,50.751027 +-1.878401,50.721884 +-1.828483,50.748161 +-1.902574,50.808281 +-1.747295,50.739938 +-2.183891,51.001773 +-2.289996,50.977332 +-1.820342,50.731009 +-2.312555,50.964082 +-1.810543,50.834849 +-2.02297,50.812743 +-1.84244,50.728424 +-1.867271,50.735496 +-2.456696,50.615404 +-2.511609,50.948066 +-2.475582,50.712208 +-1.869101,50.734554 +-1.827632,50.748142 +-1.972733,50.724273 +-1.98262,50.844038 +-2.463064,50.611863 +-1.782544,50.738957 +-1.898669,50.743818 +-2.473351,50.712874 +-2.149033,50.859672 +-1.8124,50.839357 +-1.849044,50.723423 +-2.464958,50.714913 +-2.092416,50.896842 +-1.929893,50.809667 +-2.074941,50.790644 +-2.558682,50.823187 +-1.880243,50.744134 +-1.84069,50.751541 +-1.865199,50.736492 +-2.442503,50.718939 +-1.873044,50.717661 +-1.886418,50.746091 +-2.46076,50.607438 +-1.872795,50.720682 +-1.788673,50.731297 +-2.237999,50.964861 +-1.942585,50.725027 +-2.004697,50.751407 +-2.433493,50.694306 +-1.880735,50.745609 +-2.437919,50.680009 +-1.937776,50.740653 +-1.868507,50.724032 +-2.479884,50.609178 +-2.115428,50.662942 +-2.561729,50.674712 +-1.817367,50.734331 +-1.802125,50.74668 +-2.381426,50.738633 +-1.861895,50.72772 +-1.882098,50.778595 +-2.339549,50.918533 +-2.450981,50.619329 +-2.477785,50.676768 +-1.926967,50.737707 +-1.953549,50.640284 +-1.880135,50.7364 +-1.736192,50.746145 +-1.881322,50.900533 +-1.794716,50.723188 +-2.44645,50.622971 +-1.879633,50.738998 +-1.878614,50.743655 +-2.430972,50.712688 +-1.813606,50.807507 +-1.87929,50.717865 +-2.44482,50.703346 +-1.882931,50.882666 +-2.586734,50.944115 +-1.935735,50.751174 +-1.906857,50.723862 +-1.92957,50.892631 +-2.414944,50.718186 +-1.717561,50.740122 +-1.95385,50.751677 +-1.977351,50.725308 +-1.872451,50.722273 +-2.213094,50.992956 +-1.905576,50.719868 +-1.905576,50.71985 +-1.905548,50.719859 +-1.907699,50.721083 +-1.818782,50.852523 +-1.748302,50.74235 +-1.90512,50.728285 +-2.265316,50.945567 +-1.921733,50.749367 +-1.949186,50.738968 +-1.897141,50.723017 +-1.756793,50.736568 +-2.489359,50.695533 +-3.470659,52.965002 +-3.224084,53.274531 +-3.758681,52.940545 +-3.13891,53.169795 +-2.995455,53.050605 +-3.261008,53.05321 +-2.980612,53.040786 +-3.994347,52.949113 +-4.398216,52.963108 +-3.519688,53.310449 +-4.078761,53.194164 +-4.141342,52.939784 +-2.736983,52.958908 +-3.930787,52.982538 +-4.140723,52.938393 +-3.469359,53.289442 +-3.108118,53.174293 +-3.46856,53.318632 +-3.791201,53.280241 +-3.413144,53.32029 +-3.202731,53.241505 +-3.312635,53.142135 +-3.812733,53.284671 +-3.220287,53.272853 +-3.418392,53.309684 +-3.291622,53.327979 +-3.229261,53.299189 +-3.830872,53.326116 +-4.400845,52.903316 +-3.012547,53.035125 +-3.641735,53.29132 +-3.741512,53.29991 +-4.179321,53.210734 +-3.407388,53.187259 +-3.218206,52.981343 +-3.0106,53.055197 +-3.50803,53.278226 +-2.915895,53.066796 +-3.311607,53.099562 +-3.831185,53.325006 +-4.012467,53.051094 +-3.031708,52.997546 +-3.050355,52.983709 +-2.989578,53.040865 +-4.085426,53.199469 +-3.484081,53.324184 +-4.206549,53.164991 +-3.020369,53.074612 +-3.008102,53.03768 +-3.045703,52.969349 +-4.413236,52.890809 +-3.036569,52.985898 +-3.03382,53.062827 +-3.455748,53.265499 +-2.965692,53.041915 +-2.906371,53.024736 +-3.825691,53.214207 +-3.317944,52.979416 +-2.973974,53.058604 +-3.033894,52.988025 +-3.783861,53.267513 +-2.987989,53.042496 +-4.355657,53.309738 +-3.219459,53.269598 +-3.370825,53.34004 +-3.221726,53.274429 +-3.392338,53.336482 +-3.393224,53.227232 +-3.502715,53.265662 +-3.141928,53.16795 +-3.885577,52.589611 +-3.495626,53.269186 +-2.938295,53.116135 +-3.076695,53.07069 +-3.518977,53.308625 +-3.806245,53.093657 +-4.17486,53.236493 +-3.70135,53.289989 +-3.605764,53.23111 +-4.160468,53.218522 +-3.042511,53.150803 +-4.328855,53.243148 +-3.463047,53.29308 +-3.441066,53.256949 +-3.449038,53.262165 +-3.797109,53.250889 +-3.097477,53.071507 +-3.27155,53.281657 +-3.051541,53.014146 +-4.036151,52.721427 +-3.394549,52.971647 +-2.961064,53.089965 +-3.03202,53.124232 +-3.819658,53.319114 +-4.126321,53.235562 +-3.587618,53.26787 +-3.319319,53.111442 +-4.267875,53.122768 +-3.535626,53.304123 +-2.988395,53.045909 +-3.787636,53.073126 +-3.145162,53.171992 +-3.482474,53.324609 +-3.778866,53.314425 +-3.8012,53.091243 +-4.10455,52.8256 +-2.980017,53.038903 +-3.067621,52.983205 +-2.934372,53.058571 +-4.507238,53.32418 +-3.152355,53.169081 +-3.726973,53.294763 +-4.35483,53.309701 +-3.055398,53.01093 +-3.043699,52.945508 +-3.031986,53.165844 +-3.422751,53.285962 +-3.088828,53.23078 +-3.313183,52.980089 +-4.566534,52.927139 +-4.118235,52.604729 +-3.828972,53.329777 +-2.998065,53.047976 +-3.102466,53.174983 +-2.989412,53.04599 +-3.468352,53.31868 +-4.281962,53.222972 +-3.025756,53.073262 +-3.043199,53.00941 +-2.996076,53.049728 +-3.420961,53.305698 +-3.028495,53.207476 +-4.156949,53.233447 +-3.048019,53.21545 +-2.939296,53.107228 +-3.405293,53.334461 +-4.120495,53.02166 +-3.20458,53.240651 +-3.003391,53.233355 +-3.245553,53.264006 +-3.329815,53.300762 +-3.580926,53.294146 +-3.472951,53.31927 +-2.986241,53.077614 +-3.002252,53.069633 +-2.97275,53.050002 +-3.798231,53.282634 +-3.56103,53.022959 +-4.126934,53.120615 +-3.486155,53.322936 +-3.000695,53.048844 +-3.230841,53.265427 +-3.677709,53.290468 +-3.470397,53.294769 +-3.856379,52.661596 +-2.97297,53.030619 +-3.838967,53.289492 +-3.796507,53.243679 +-2.966569,53.063078 +-4.065503,53.181196 +-3.853653,53.287692 +-3.816728,53.303507 +-2.989428,53.046682 +-3.046703,53.217341 +-2.942269,52.973918 +-3.899345,52.760948 +-3.341171,53.331271 +-3.139428,53.066231 +-2.884313,53.074622 +-2.912445,53.003079 +-3.475602,53.310814 +-3.50987,53.269141 +-3.327541,53.324196 +-3.003076,53.058209 +-3.039248,53.109786 +-3.023159,53.206605 +-4.21949,53.289227 +-3.080284,53.151419 +-3.809428,53.231653 +-4.209925,53.183809 +-3.794236,53.083949 +-4.051776,52.71927 +-4.270636,53.140266 +-3.261547,53.053258 +-2.989893,53.040961 +-4.258364,53.318202 +-3.810111,53.306754 +-4.149524,53.216238 +-3.126434,53.168134 +-4.131611,53.222889 +-3.46387,53.292557 +-4.226549,53.319933 +-3.59792,52.910829 +-4.225207,53.314915 +-3.582785,53.293303 +-3.625001,52.701219 +-3.116502,53.240726 +-3.142155,53.254192 +-4.232027,53.156649 +-3.827442,53.323148 +-3.01924,53.04385 +-3.074438,53.05559 +-3.805673,53.284086 +-3.678527,53.181931 +-3.665664,53.04878 +-4.150039,53.215761 +-3.210717,53.245164 +-4.121968,53.235109 +-3.0057,53.231501 +-3.02729,53.1878 +-4.297783,53.256276 +-2.998071,53.05408 +-3.125826,53.072276 +-3.327813,53.324255 +-3.000264,53.048237 +-4.621453,53.30766 +-3.050715,53.157931 +-3.012873,53.138051 +-3.047047,53.04894 +-2.777973,52.9419 +-3.004853,53.162048 +-3.060447,53.211727 +-3.816465,53.321014 +-4.230394,52.920001 +-4.481731,52.857342 +-3.354747,53.340781 +-3.888191,53.054059 +-3.082863,53.064899 +-3.885438,52.742999 +-4.278544,53.135718 +-3.183455,53.276065 +-3.249757,53.307884 +-2.985792,53.092594 +-3.116956,53.155674 +-3.438558,53.294304 +-3.060978,53.221107 +-3.474242,53.319713 +-3.494212,53.314637 +-2.970652,53.085419 +-2.99771,53.228719 +-4.225403,53.321573 +-3.762709,53.317964 +-3.02836,53.070417 +-3.865406,52.965943 +-4.694725,52.816493 +-3.169965,53.227979 +-3.598881,52.910268 +-3.505657,53.315239 +-3.643366,53.290056 +-2.96947,53.073311 +-3.511067,53.285667 +-4.11336,53.226137 +-3.239635,53.279188 +-3.582731,53.293052 +-4.193807,53.154519 +-2.979096,53.189599 +-3.000685,53.056144 +-4.081475,52.880357 +-3.060578,53.013689 +-3.867027,53.286476 +-3.914782,53.270786 +-4.037839,52.721093 +-3.050675,53.07602 +-3.434003,53.219224 +-4.50474,53.373521 +-2.930857,53.17777 +-3.889737,53.285399 +-4.102477,52.822031 +-3.344219,53.084932 +-3.788566,53.097727 +-3.079279,53.161424 +-4.200536,53.224342 +-3.565168,53.297752 +-3.457559,52.969515 +-3.081617,53.136053 +-3.914497,53.273811 +-4.242453,53.142014 +-4.118594,53.18742 +-4.624899,52.874897 +-3.796592,53.268248 +-4.027222,52.6141 +-3.075923,52.980406 +-3.762524,52.733535 +-3.18689,53.277711 +-3.30583,53.273519 +-3.458522,53.20955 +-3.252397,53.282723 +-2.999593,53.173203 +-3.468299,53.305331 +-4.240754,53.271522 +-4.385342,52.928876 +-3.787336,53.320601 +-3.582693,53.285942 +-3.498142,53.317554 +-2.880429,53.082526 +-4.105305,53.205187 +-3.841526,53.069651 +-2.983348,53.167451 +-4.106456,52.92016 +-3.028513,53.04618 +-3.790789,53.285092 +-3.081305,53.168247 +-3.216061,53.014196 +-3.42621,53.181669 +-3.19629,53.058706 +-2.954255,53.033935 +-3.488265,53.319736 +-3.08154,53.135964 +-3.09131,53.168128 +-3.73626,53.298449 +-3.564902,53.284729 +NULL,NULL +-4.376857,53.334106 +-4.125401,53.230588 +-3.828057,53.281344 +-3.199269,53.056366 +-3.695626,53.28865 +-3.447469,53.319124 +-2.92065,53.100092 +-4.280774,53.252467 +-3.423508,53.320877 +-3.915815,52.872699 +-4.127684,53.121887 +-3.033646,53.117862 +-4.136495,53.126575 +-3.409808,53.326119 +-3.535436,52.936179 +-3.015969,53.051915 +-4.152787,53.146888 +-4.085179,53.199311 +-3.225785,53.173041 +-3.054867,53.192422 +-3.317972,53.137743 +-3.49969,53.166319 +-3.792221,53.281313 +-3.566725,53.283303 +-3.217922,52.981301 +-4.00424,52.743352 +-3.131901,53.166653 +-4.158839,53.219477 +-3.450047,53.181623 +-2.736939,52.958963 +-4.098811,53.20835 +-4.097533,53.26156 +-4.550788,53.279118 +-2.966514,53.217766 +-4.211904,53.181848 +-3.885842,52.743092 +-3.133317,53.213024 +-3.843123,52.652641 +-4.288446,53.057594 +-3.244908,52.971331 +-4.453094,52.929771 +-3.10477,52.990201 +-3.141959,52.968337 +-3.178638,53.190336 +-2.961477,53.003294 +-3.079392,53.173694 +-2.951767,53.116621 +-4.168193,53.226149 +-2.992446,53.064447 +-3.516058,53.28554 +-3.640201,53.291637 +-2.98411,53.052929 +-3.55567,53.08818 +-4.07492,52.927926 +-4.005171,53.054292 +-3.403184,53.330602 +-2.793615,52.963173 +-3.197161,53.276548 +-4.11015,53.217536 +-3.136118,52.968168 +-3.078999,53.173517 +-3.128609,53.096476 +-2.954127,53.20423 +-3.507629,53.151692 +-4.092329,53.263063 +-3.052646,53.239213 +-3.797442,53.086706 +-3.064617,53.082665 +-3.773906,52.736979 +-3.155187,52.970205 +-4.514024,52.829282 +-3.170629,52.969649 +-3.720602,53.29081 +-3.215395,53.011739 +-3.818997,53.316984 +-3.411159,53.316098 +-3.041697,53.196215 +-3.60855,53.21908 +-4.263808,53.142913 +-3.859761,53.328133 +-4.117704,53.232191 +-2.96546,53.036865 +-3.489691,53.316707 +-4.631789,53.305338 +-4.179545,53.231948 +-3.450002,52.991076 +-3.212971,53.287229 +-3.820822,53.320022 +-3.624943,52.701255 +-4.209613,53.221396 +-4.384344,52.925075 +-3.690449,53.20234 +-2.998269,53.054231 +-3.743086,53.300246 +-3.006985,53.055012 +-2.966959,53.088479 +-3.494077,53.316769 +-4.282576,53.008382 +-3.174448,53.057746 +-3.355979,53.04438 +-3.058991,53.085187 +-3.443902,53.330835 +-4.266957,53.345748 +-3.051572,53.026444 +-4.359207,53.026603 +-3.859268,53.100338 +-3.145878,53.25608 +-3.238752,53.201934 +-3.997549,52.947872 +-3.035629,53.062353 +-4.06661,52.72955 +-4.635384,53.282312 +-2.982607,53.055692 +-2.93304,52.949907 +-2.995324,53.040376 +-3.219224,53.124709 +-2.940863,53.118811 +-4.074582,52.928022 +-4.098953,52.792944 +-3.787748,53.100328 +-3.059585,53.004213 +-4.131755,52.927018 +-3.929779,52.981629 +-4.149318,53.137313 +-3.783482,53.068342 +-3.764391,53.061749 +-3.311812,53.264653 +-3.13468,53.250416 +-3.554869,52.907553 +-4.317681,53.166179 +-3.064374,53.188319 +-2.967193,53.041669 +-4.171717,53.205793 +-3.870384,52.750565 +-3.490076,53.313538 +-3.032325,53.120103 +-3.077733,53.171371 +-3.776782,53.318088 +-4.078473,53.188523 +-2.924251,53.178819 +-4.514719,52.851594 +-3.315862,53.113198 +-3.494777,52.897563 +-3.013243,53.160737 +-3.049221,53.215584 +-3.056861,53.157256 +-3.272489,53.1238 +-4.392802,53.254819 +-3.792165,52.940908 +-4.008325,52.55009 +-3.167423,53.226503 +-3.932393,52.99081 +-4.133176,53.226647 +-3.390237,52.975563 +-4.466182,52.873905 +-3.406062,53.337319 +-2.989665,53.04339 +-3.41619,53.336094 +-4.096428,52.785787 +-4.524699,53.341146 +-3.79456,53.140862 +-3.269639,53.12295 +-3.712152,52.8223 +-3.824074,53.322687 +-3.438695,53.25375 +-3.52074,53.309663 +-4.071966,52.738169 +-3.026922,53.184891 +-3.01882,53.094959 +-4.281136,53.082208 +-3.129982,53.244447 +-3.462575,53.201032 +-4.08762,53.286737 +-3.637039,53.288975 +-3.743355,53.260794 +-4.492258,52.856195 +-3.025096,53.154783 +-3.537901,53.303114 +-3.19007,53.171326 +-3.740504,52.800508 +-3.022004,53.163098 +-3.511473,53.25382 +-2.956704,53.058987 +-3.739153,53.305023 +-3.044411,52.951561 +-4.117404,52.84543 +-3.002613,53.044046 +-4.174674,53.200012 +-3.050688,53.075939 +-2.927259,52.945449 +-4.126247,53.029469 +-3.813925,53.31352 +-3.049495,53.007216 +-3.823107,53.323251 +-4.184666,53.193347 +-3.572973,53.286781 +-3.000136,53.100709 +-3.380036,53.309927 +-2.978059,53.189437 +-3.090909,53.201869 +-3.808745,53.304959 +-3.459809,53.322165 +-3.935499,53.268267 +-3.081323,53.228421 +-3.341936,53.087852 +-2.982552,53.088684 +-4.123129,53.228282 +-3.005879,53.148996 +-3.006868,53.177196 +-3.025186,53.087003 +-3.04369,52.938955 +-3.767446,52.735458 +-4.271256,53.139831 +-3.085259,53.195089 +-3.475087,53.315028 +-3.562387,52.843309 +-3.987918,52.745722 +-3.057585,53.217119 +-2.922119,53.179204 +-3.488561,53.320461 +-3.042741,53.157201 +-3.049572,53.009768 +-2.996278,53.048126 +-3.030356,53.208305 +-3.83418,53.295059 +-3.861341,52.745924 +-3.169085,53.257805 +-3.795145,52.739806 +-3.727656,53.296443 +-3.847346,52.616045 +-3.188816,53.167626 +-4.556768,53.269486 +-4.400671,52.90394 +-3.792973,53.288539 +-3.83489,52.748288 +-3.607423,53.220201 +-2.995828,53.229589 +-3.540352,53.302399 +-3.044547,52.95351 +-3.977084,52.730933 +-4.34543,53.392008 +-3.577959,53.284072 +-4.344419,53.243266 +-3.397735,53.335736 +-3.152578,53.17797 +-3.177021,53.212169 +-3.043615,52.943882 +-3.574353,53.288003 +-3.791029,53.318801 +-3.472166,53.291664 +-3.708597,53.039243 +-2.94663,53.182679 +-3.179714,53.188653 +-3.142752,53.097627 +-3.120271,53.206595 +-3.838934,52.63138 +-4.188298,53.217906 +-3.02387,53.004445 +-4.380417,53.188381 +-4.099656,53.310062 +-3.328658,53.125551 +-3.032741,53.156156 +-4.288482,53.225005 +-3.409095,53.318154 +-3.343668,53.086421 +-4.057852,52.726609 +-3.807957,53.303712 +-3.078166,53.163583 +-2.922308,53.102192 +-4.28583,53.176901 +-2.97141,53.085233 +-3.570653,52.906509 +-3.628705,52.938991 +-3.009663,53.054027 +-3.695832,53.282867 +-4.099495,53.208248 +-3.695272,53.289563 +-3.734948,53.299394 +-4.090046,53.016382 +-3.817911,53.321118 +-3.795987,53.304945 +-4.15181,53.1719 +-3.090942,53.186065 +-3.781045,53.282029 +-3.331027,53.131107 +-4.454475,53.260991 +-3.017971,53.01976 +-3.448736,53.256325 +-3.098792,53.167637 +-3.605426,53.230063 +-3.823539,53.198453 +-3.027071,53.184872 +-4.122307,52.94312 +-3.003029,53.097907 +-3.569248,53.285032 +-4.12819,53.227922 +-3.140135,53.253205 +-2.995064,53.045287 +-3.140077,53.231847 +-3.794697,53.085345 +-3.133792,53.249678 +-3.657796,52.948289 +-3.492106,53.320524 +-3.004882,53.057601 +-3.842456,53.316858 +-4.128238,53.197165 +-4.519154,53.376508 +-3.054905,53.07565 +-3.901359,53.276512 +-4.35522,53.299623 +-4.108521,53.155394 +-4.311398,53.255743 +-3.761439,53.296596 +-3.548549,53.060368 +-3.521218,52.905004 +-2.988972,53.046317 +-4.639969,53.313114 +-3.468917,53.320722 +-4.460645,52.929363 +-3.826308,53.279357 +-3.473633,53.319451 +-4.418481,52.888086 +-4.072135,52.621136 +-2.999451,53.098827 +-3.512528,53.312995 +-3.329642,53.131752 +-3.052845,53.232676 +-3.080839,53.169339 +-4.206108,52.928601 +-2.937975,53.030711 +-2.983466,53.039064 +-3.026185,53.184771 +-4.123297,53.228648 +-4.182577,53.197017 +-3.087039,53.168437 +-3.096958,53.233528 +-3.00273,53.050391 +-2.96801,53.189133 +-3.556425,53.015154 +-2.991477,53.089823 +-3.086655,53.170985 +-3.952376,52.979974 +-3.120705,53.243276 +-3.014743,53.065158 +-4.18368,52.934104 +-3.381774,53.161462 +-3.303532,53.233982 +-4.139693,53.22065 +-4.642726,53.311075 +-4.185949,53.216196 +-3.412852,53.186368 +-3.41258,53.300475 +-3.795242,53.283614 +-3.136177,53.17339 +-3.000192,53.057379 +-2.973707,53.09175 +-3.201584,53.274355 +-3.001018,53.046019 +-2.990251,53.060483 +-3.543624,53.300775 +-4.117087,53.143761 +-3.44166,53.232247 +-2.911825,53.045783 +-3.063934,52.982878 +-4.520017,52.919387 +-3.029643,53.07668 +-3.093107,53.07046 +-3.489111,53.321605 +-3.488966,53.320887 +-3.130105,53.247978 +-3.08375,53.168503 +-2.78048,52.962982 +-2.992039,53.04284 +-3.410972,53.187451 +-4.079432,53.190088 +-3.041279,52.981667 +-3.175847,53.068565 +-3.874106,52.688128 +-3.812937,53.31215 +-3.566925,53.283426 +-3.391799,53.336525 +-3.033261,53.118665 +-4.076539,53.181328 +-3.473816,53.319538 +-2.865426,52.951489 +-4.232195,53.301244 +-3.032958,53.205658 +-3.001361,53.047949 +-4.235331,53.094415 +-4.622007,53.307621 +-4.13998,53.218289 +-2.903761,53.026086 +-2.995225,53.043874 +-3.196712,53.0185 +-3.723227,53.293397 +-3.000346,53.056299 +-3.519862,53.310276 +-3.046838,52.984253 +-3.142117,53.167778 +-3.748679,53.307104 +-2.809784,52.955998 +-4.464721,53.246736 +-3.113212,53.172223 +-3.490759,53.322789 +-4.126609,53.228967 +-3.409352,53.301359 +-3.087417,53.183374 +-4.532907,52.847889 +-3.176432,53.152944 +-3.834313,53.318107 +-3.823325,53.280823 +-4.104444,53.203494 +-3.48853,53.319589 +-4.25475,53.053616 +-3.405528,53.33568 +-2.976963,53.062768 +-2.898798,53.031203 +-3.055719,53.188738 +-4.335444,53.412055 +-3.902899,52.962831 +-3.132433,53.248756 +-3.200567,53.249312 +-4.316463,53.245988 +-3.78993,53.279981 +-2.969528,53.047349 +-3.394015,53.337721 +-3.131774,52.973451 +-3.813621,53.297855 +-2.956923,53.205421 +-4.281083,53.082047 +-3.529951,53.253261 +-3.21346,53.107373 +-3.489545,53.316394 +-3.752299,53.30902 +-3.695425,53.288491 +-3.835544,53.179479 +-2.940481,53.199826 +-4.190782,53.2249 +-3.010166,53.062158 +-3.562798,53.298179 +-3.163594,53.183068 +-3.157911,53.180992 +-3.818409,53.321174 +-3.155157,53.220465 +-3.81124,53.322065 +-3.911604,53.275179 +-3.053485,53.187949 +-3.724296,53.293498 +-3.372781,52.980683 +-4.110159,52.606312 +-3.001373,53.047814 +-3.052846,53.062831 +-3.407291,53.337682 +-3.58725,53.286268 +-4.265682,52.978117 +-3.199603,53.289297 +-2.793092,52.963051 +-3.029397,53.025667 +-3.049932,53.191378 +-3.001108,53.046045 +-3.488051,53.322634 +-3.83286,53.322741 +-3.136908,53.240021 +-4.202503,53.105259 +-3.385599,53.262937 +-3.540468,53.299791 +-3.053874,52.93917 +-3.598693,53.03589 +-3.052415,53.23713 +-3.391403,53.336844 +-3.520074,53.31075 +-4.266224,53.222526 +-2.984859,53.039951 +-3.407005,53.33676 +-3.068176,52.96585 +-3.972721,53.260176 +-4.13192,53.222785 +-3.436435,52.921658 +-2.957256,53.205544 +-4.07492,52.927944 +-3.4096,53.318436 +-3.557205,53.273557 +-3.215646,53.134013 +-2.983575,53.166235 +-4.511539,52.918137 +-3.515572,53.310376 +-3.131052,53.211149 +-2.996297,53.052198 +-3.581951,53.288595 +-3.829713,53.313764 +-2.979713,51.576008 +-3.21023,51.581976 +-3.233072,51.804767 +-3.205335,51.672357 +-2.981534,51.593535 +-3.223706,51.713835 +-3.000523,51.598374 +-2.749392,51.591183 +-3.196174,51.770819 +-2.964487,51.588183 +-3.035896,51.696031 +-3.195568,51.651821 +-3.211578,51.577295 +-3.044562,51.699766 +-3.175701,51.799465 +-2.998314,51.62009 +-2.950254,51.610283 +-2.998175,51.582173 +-2.973373,51.596013 +-2.962729,51.567139 +-3.213505,51.649048 +-2.85693,51.766346 +-3.071547,51.730921 +-3.014518,51.562953 +-3.021141,51.693588 +-2.93165,51.573405 +-3.105425,51.781122 +-3.039501,51.662029 +-3.217528,51.574222 +-3.05899,51.723339 +-3.294135,51.778494 +-3.090649,51.607642 +-2.955555,51.577331 +-3.129948,51.721167 +-3.270795,51.785654 +-2.768593,51.613529 +-3.171722,51.654795 +-2.970606,51.600316 +-2.972719,51.581605 +-2.937324,51.718609 +-3.228893,51.662186 +-3.041809,51.702722 +-3.227942,51.707235 +-3.20846,51.670779 +-3.014638,51.570298 +-3.223974,51.715154 +-2.972566,51.587316 +-3.083939,51.601752 +-2.717357,51.819655 +-3.221601,51.691018 +-3.03461,51.584366 +-3.019388,51.631652 +-3.218667,51.671734 +-3.15848,51.762385 +-2.978805,51.584081 +-3.003665,51.569322 +-3.234613,51.632229 +-2.79399,51.582483 +-3.229227,51.591193 +-3.038286,51.570235 +-3.164473,51.687813 +-3.042157,51.644175 +-3.194786,51.65013 +-3.013521,51.684726 +-3.239965,51.580488 +-3.222078,51.645344 +-2.991886,51.59094 +-3.073508,51.773325 +-3.226548,51.59194 +-2.983586,51.585614 +-3.220929,51.646147 +-3.222952,51.790999 +-3.175603,51.591374 +-3.054727,51.713127 +-3.280027,51.743024 +-3.203043,51.760417 +-3.204504,51.766337 +-3.13931,51.664501 +-3.134363,51.732139 +-3.174848,51.797298 +-2.979944,51.590087 +-3.239554,51.796283 +-3.218655,51.667526 +-3.260002,51.787991 +-3.239228,51.640893 +-3.27049,51.595519 +-3.191421,51.646379 +-3.206177,51.776327 +-2.672567,51.641956 +-2.703462,51.817095 +-3.096505,51.60435 +-3.082924,51.790062 +-3.183615,51.661276 +-3.143739,51.665286 +-2.974529,51.589296 +-3.051837,51.55535 +-2.935025,51.600038 +-3.137468,51.730643 +-2.993077,51.583341 +-3.288908,51.769029 +-3.010146,51.583078 +-3.038805,51.697965 +-3.215399,51.800743 +-3.020838,51.579739 +-3.16085,51.768934 +-3.002706,51.601098 +-3.051249,51.555499 +-3.046003,51.665604 +-2.68734,51.819672 +-2.949418,51.576428 +-3.029777,51.813863 +-3.218728,51.684789 +-3.222018,51.645282 +-3.010089,51.621509 +-3.014951,51.607647 +-3.17092,51.785621 +-3.229201,51.588613 +-2.687066,51.637439 +-3.05269,51.586004 +-2.998872,51.656672 +-3.126162,51.825639 +-2.977619,51.589369 +-2.71909,51.579171 +-3.238807,51.559684 +-3.000634,51.638233 +-3.313481,51.746871 +-3.027705,51.612229 +-3.015381,51.822683 +-3.207766,51.775592 +-2.977337,51.589668 +-3.035082,51.561955 +-3.084164,51.773461 +-3.187783,51.64156 +-2.98055,51.590055 +-3.059761,51.742699 +-2.688842,51.642131 +-2.97958,51.589254 +-2.946431,51.57781 +-3.045932,51.523653 +-3.05853,51.724107 +-2.858887,51.622739 +-3.216206,51.783318 +-3.294242,51.74526 +-3.114671,51.78571 +-2.750142,51.608649 +-2.954228,51.571839 +-3.040644,51.643757 +-2.842488,51.758862 +-2.790641,51.604921 +-3.034509,51.584385 +-2.985611,51.589797 +-3.14075,51.682129 +-3.235964,51.784326 +-2.994801,51.626576 +-3.276403,51.607657 +-3.138001,51.678613 +-3.134479,51.730987 +-3.191731,51.691792 +-3.075807,51.536888 +-2.671409,51.742449 +-3.245546,51.577165 +-2.905756,51.70215 +-3.075493,51.802538 +-3.251589,51.789942 +-3.111691,51.686283 +-3.261029,51.788448 +-3.035534,51.565314 +-2.989163,51.723264 +-3.205747,51.661158 +-3.013549,51.666563 +-2.989315,51.578247 +-2.981896,51.596922 +-3.011529,51.573211 +-2.937242,51.596946 +-2.834559,51.76809 +-2.968273,51.577487 +-2.981579,51.590271 +-2.991312,51.59107 +-2.8782,51.69745 +-2.711061,51.57699 +-3.212368,51.716362 +-2.973375,51.596094 +-2.719023,51.799477 +-2.886452,51.776854 +-3.013315,51.571793 +-3.029746,51.817594 +-2.679182,51.627172 +-2.901788,51.704186 +-2.675001,51.686125 +-2.947859,51.587518 +-2.959743,51.580893 +-3.265052,51.787649 +-3.195333,51.666489 +-3.284153,51.744489 +-2.773038,51.652459 +-2.682057,51.672454 +-2.984601,51.734524 +-2.926278,51.601609 +-2.947183,51.59594 +-3.228913,51.594505 +-3.252427,51.770494 +-2.673496,51.621765 +-3.150239,51.615894 +-2.99521,51.571975 +-3.0521,51.710318 +-3.026477,51.651263 +-2.996556,51.595207 +-3.025465,51.822649 +-3.159418,51.765639 +-2.972238,51.785976 +-3.040106,51.699149 +-3.188419,51.654807 +-3.006522,51.601965 +-2.93831,51.573829 +-2.982205,51.596524 +-3.03405,51.566046 +-2.671907,51.642238 +-3.000454,51.638585 +-2.845592,51.589055 +-3.070425,51.603656 +-2.832181,51.76799 +-3.135182,51.718563 +-2.925584,51.602972 +-3.221845,51.571084 +-3.230056,51.665105 +-3.183499,51.681265 +-3.215332,51.796626 +-3.038486,51.699802 +-3.272532,51.752582 +-2.991832,51.58184 +-3.001538,51.650373 +-2.988204,51.584227 +-2.993438,51.583976 +-2.995196,51.571957 +-3.027589,51.682508 +-3.22393,51.577788 +-3.207341,51.69014 +-3.242411,51.720805 +-2.937046,51.592352 +-3.225521,51.641721 +-3.031178,51.698491 +-3.008237,51.646117 +-3.218793,51.666743 +-3.02513,51.650511 +-3.00065,51.598913 +-2.762317,51.79122 +-2.964441,51.588066 +-3.285307,51.655477 +-2.977879,51.584673 +-3.231246,51.771832 +-3.028009,51.611642 +-2.665901,51.569631 +-2.948299,51.595463 +-3.055584,51.576995 +-3.192612,51.695011 +-3.002516,51.849659 +-3.024268,51.651373 +-3.010613,51.812546 +-2.721964,51.644827 +-2.871605,51.702876 +-2.916344,51.601597 +-2.936135,51.595084 +-3.18776,51.799758 +-3.059308,51.723345 +-3.226316,51.791521 +-3.326911,51.769173 +-3.183296,51.67625 +-2.90066,51.70424 +-2.969683,51.569842 +-3.299181,51.738183 +-3.000467,51.599094 +-3.022609,51.693908 +-3.051485,51.555722 +-2.756884,51.644122 +-3.140511,51.596027 +-3.006925,51.602537 +-3.235209,51.78481 +-3.14198,51.735014 +-2.96721,51.897815 +-3.139305,51.707535 +-3.311896,51.743652 +-3.235209,51.638193 +-2.968314,51.894416 +-2.947715,51.565337 +-2.97201,51.589649 +-2.684295,51.635774 +-3.16342,51.689055 +-2.997004,51.798635 +-3.019624,51.828715 +-3.156644,51.767645 +-3.241079,51.642025 +-2.973425,51.584962 +-2.936045,51.587181 +-2.717593,51.806221 +-3.088646,51.610799 +-2.966959,51.576123 +-3.230415,51.596675 +-2.702357,51.817866 +-3.076077,51.547694 +-3.23101,51.683232 +-2.976323,51.601644 +-2.98973,51.719411 +-2.99488,51.615659 +-3.100844,51.608212 +-2.981709,51.59027 +-3.191362,51.646307 +-3.184617,51.591031 +-2.685439,51.634967 +-3.17556,51.795681 +-3.230794,51.596814 +-3.230525,51.596476 +-2.973363,51.582058 +-3.207361,51.696326 +-3.256976,51.592365 +-3.207522,51.779496 +-2.986452,51.571977 +-2.864468,51.594861 +-3.049156,51.818808 +-3.15025,51.681991 +-3.19439,51.664188 +-3.069264,51.598478 +-3.270365,51.649984 +-3.129666,51.62326 +-2.746301,51.596355 +-3.02617,51.653667 +-3.16251,51.7664 +-3.002559,51.84965 +-3.013331,51.536159 +-3.188276,51.680857 +-3.013605,51.834665 +-3.033012,51.573725 +-3.006914,51.615125 +-3.031869,51.654471 +-3.020423,51.56764 +-3.005558,51.807662 +-3.078628,51.607951 +-2.937785,51.586151 +-3.247836,51.643347 +-2.77459,51.589122 +-3.229772,51.663706 +-2.726523,51.658781 +-3.326814,51.768823 +-3.231647,51.582985 +-3.145412,51.737876 +-3.224106,51.665905 +-2.988277,51.576961 +-3.010463,51.555759 +-2.975046,51.630967 +-3.008221,51.61024 +-2.96698,51.582542 +-3.004548,51.666901 +-3.068383,51.736111 +-3.219128,51.648531 +-2.715294,51.813086 +-3.187513,51.641158 +-2.759494,51.588412 +-3.008264,51.801515 +-3.227609,51.659619 +-3.017208,51.596208 +-3.240177,51.580845 +-3.032955,51.641828 +-2.919941,51.603808 +-3.219429,51.583248 +-3.015462,51.574247 +-2.980706,51.585935 +-3.187888,51.661062 +-3.218665,51.667922 +-2.98753,51.575798 +-3.008099,51.604073 +-3.20968,51.581892 +-2.898362,51.62765 +-2.987976,51.576406 +-3.22427,51.575941 +-3.003422,51.710123 +-3.022466,51.677275 +-2.82547,51.731371 +-2.962841,51.575203 +-2.945731,51.577501 +-2.777501,51.588869 +-3.14356,51.596132 +-3.219083,51.665687 +-3.045061,51.651666 +-2.99916,51.768901 +-3.06243,51.612495 +-2.985817,51.59332 +-2.988889,51.611124 +-3.056348,51.715594 +-3.276738,51.743491 +-3.223616,51.64183 +-3.013817,51.570979 +-3.001952,51.582609 +-3.278765,51.694734 +-2.964428,51.588129 +-2.985524,51.593106 +-3.008148,51.802838 +-3.03069,51.823359 +-2.670424,51.619139 +-3.203802,51.648896 +-2.685364,51.63477 +-3.135038,51.718618 +-2.966549,51.588085 +-3.256697,51.784367 +-2.977371,51.612749 +-2.963041,51.600351 +-3.128827,51.630165 +-3.294197,51.777117 +-3.003689,51.804486 +-3.024954,51.651025 +-2.974088,51.576783 +-3.137686,51.730668 +-3.235504,51.567659 +-3.225935,51.591704 +-3.222586,51.74261 +-3.171137,51.778345 +-3.074407,51.836158 +-3.06848,51.740831 +-2.97963,51.588228 +-2.990629,51.580241 +-3.201018,51.797124 +-3.022535,51.685475 +-3.239664,51.580041 +-3.138391,51.662451 +-3.042912,51.701597 +-2.834837,51.614937 +-3.236855,51.63921 +-3.002572,51.602259 +-3.174861,51.657686 +-3.139111,51.679645 +-2.999274,51.635502 +-2.702118,51.804345 +-3.245662,51.775862 +-2.685388,51.637332 +-3.069447,51.592731 +-2.976242,51.591134 +-3.04596,51.818629 +-3.06221,51.962847 +-3.204606,51.772855 +-3.015289,51.681635 +-2.91131,51.60187 +-2.950468,51.576257 +-2.979496,51.594101 +-3.135126,51.646379 +-3.137686,51.730668 +-3.217807,51.780325 +-2.839518,51.769034 +-3.204562,51.766318 +-2.696632,51.813558 +-3.022613,51.677373 +-2.987002,51.59072 +-2.992815,51.5872 +-2.998942,51.578318 +-3.023135,51.558643 +-2.882263,51.581169 +-3.055273,51.714174 +-3.188539,51.630672 +-2.936902,51.574128 +-3.03688,51.565509 +-3.178976,51.619017 +-2.672582,51.641965 +-3.024028,51.634938 +-3.145331,51.671079 +-3.190332,51.656101 +-3.226778,51.688284 +-3.022431,51.580004 +-2.95602,51.587784 +-2.664954,51.619413 +-3.02224,51.698686 +-3.001568,51.650418 +-2.984488,51.599966 +-2.86392,51.594901 +-3.01529,51.569762 +-2.699951,51.616494 +-2.697101,51.664228 +-3.18205,51.591687 +-2.857884,51.617801 +-3.239914,51.76765 +-3.170971,51.799917 +-3.237992,51.786364 +-2.97323,51.581915 +-2.72302,51.643949 +-3.019252,51.655876 +-3.033783,51.584185 +-3.023738,51.651575 +-2.963517,51.577104 +-3.107809,51.543712 +-3.166999,51.589661 +-3.021955,51.567771 +-3.017638,51.701882 +-3.088826,51.602048 +-3.054185,51.711585 +-3.21503,51.787556 +-3.020144,51.655041 +-3.028121,51.822689 +-3.010575,51.662236 +-3.051279,51.555526 +-3.056744,51.583459 +-3.073672,51.595624 +-3.022638,51.693899 +-3.032871,51.662285 +-3.241596,51.642433 +-2.902206,51.571594 +-2.906727,51.706576 +-3.189432,51.59466 +-2.823644,51.728102 +-3.049941,51.591352 +-3.026045,51.635991 +-2.978228,51.585434 +-3.229486,51.591136 +-3.086103,51.688177 +-3.027441,51.657441 +-3.013918,51.640996 +-3.142863,51.666661 +-3.018511,51.651207 +-2.976065,51.584895 +-3.010868,51.560332 +-3.20448,51.704439 +-3.247616,51.77157 +-2.971294,51.588549 +-2.757058,51.644157 +-2.99327,51.581595 +-3.009462,51.657696 +-3.019989,51.675795 +-3.140545,51.665326 +-3.005219,51.576952 +-3.193883,51.664688 +-3.138125,51.595853 +-3.009354,51.617685 +-2.673563,51.621396 +-2.714775,51.803154 +-3.247028,51.6434 +-2.954477,51.572673 +-3.113758,51.833966 +-2.690198,51.819692 +-2.945875,51.564947 +-3.040615,51.64373 +-3.2137,51.666633 +-3.020528,51.654777 +-2.967945,51.614347 +-2.770837,51.650487 +-3.009442,51.61772 +-3.047677,51.605291 +-3.051145,51.667239 +-2.999679,51.587547 +-3.25341,51.686654 +-3.135167,51.718563 +-3.211871,51.646304 +-3.022221,51.655455 +-2.981185,51.603456 +-2.982877,51.586879 +-3.018168,51.823378 +-3.236018,51.636063 +-3.059116,51.589255 +-3.277937,51.609816 +-3.21813,51.578388 +-3.036999,51.660702 +-3.0282,51.555532 +-3.053862,51.815906 +-3.237374,51.630671 +-3.232021,51.565861 +-3.062964,51.69649 +-2.963001,51.586163 +-3.229389,51.631376 +-3.001614,51.850251 +-3.246137,51.773132 +-3.110232,51.683995 +-3.032113,51.576718 +-3.234526,51.589627 +-3.150164,51.682028 +-3.036702,51.578638 +-2.995682,51.571773 +-3.076147,51.601985 +-2.88988,51.924418 +-3.014661,51.634147 +-3.037085,51.586556 +-3.077959,51.507726 +-2.92124,51.54243 +-3.166063,51.778872 +-3.021896,51.567726 +-3.006046,51.575192 +-3.006217,51.601895 +-3.223648,51.647306 +-3.178064,51.686976 +-3.203408,51.761628 +-2.841202,51.737229 +-3.288819,51.765901 +-2.969661,51.706334 +-2.986844,51.575436 +-3.111041,51.54262 +-3.113613,51.542245 +-3.18071,51.490398 +-3.261747,51.542598 +-3.305377,51.570085 +-3.340887,51.661689 +-3.947426,51.646046 +-3.941585,51.630118 +-3.540989,51.56568 +-3.942379,51.621652 +-3.52061,51.739949 +-3.205166,51.485438 +-3.233519,51.521515 +-3.228723,51.48683 +-3.87272,51.625203 +-3.83993,51.659245 +-3.168199,51.488932 +-3.797513,51.593575 +-3.22953,51.488449 +-3.698908,51.520067 +-3.163507,51.470968 +-3.599549,51.507202 +-3.967837,51.674778 +-3.185369,51.478464 +-3.230933,51.53093 +-3.507745,51.660636 +-3.176208,51.424604 +-3.571325,51.573865 +-3.551445,51.641381 +-3.461471,51.623527 +-3.137454,51.529113 +-3.360988,51.607777 +-4.06814,51.660141 +-3.733457,51.550774 +-3.817616,51.6407 +-3.330572,51.545928 +-3.439414,51.538232 +-3.22873,51.48656 +-3.168016,51.516143 +-3.958137,51.614529 +-3.268975,51.466987 +-3.58635,51.555724 +-3.960585,51.636124 +-3.435195,51.537942 +-3.264472,51.441085 +-3.242879,51.46983 +-3.170762,51.492863 +-3.538253,51.500847 +-3.271255,51.422623 +-3.395131,51.757997 +-3.874313,51.66032 +-3.79042,51.594196 +-3.228925,51.486315 +-3.989481,51.675906 +-3.781563,51.591795 +-3.801378,51.661291 +-3.27206,51.400853 +-3.1296,51.53444 +-3.268398,51.559808 +-3.176927,51.513536 +-3.312658,51.586891 +-3.348133,51.389491 +-3.161271,51.499719 +-3.303119,51.568824 +-3.233519,51.521515 +-3.988127,51.650624 +-3.187483,51.454506 +-3.252124,51.524573 +-3.359426,51.606734 +-3.54953,51.743663 +-3.832346,51.657628 +-3.270719,51.466546 +-3.940172,51.617669 +-3.176632,51.494261 +-3.236276,51.487614 +-3.639871,51.504469 +-3.546401,51.508725 +-3.447167,51.61937 +-3.9626,51.614185 +-3.945556,51.621276 +-3.615771,51.745738 +-3.794504,51.601472 +-3.647046,51.735017 +-3.198858,51.45029 +-3.168994,51.483421 +-3.113889,51.515753 +-3.312389,51.541988 +-3.533608,51.481808 +-3.335366,51.4584 +-3.170205,51.493021 +-3.181264,51.481212 +-3.39281,51.634936 +-3.544064,51.579362 +-3.826058,51.623475 +-3.269279,51.408437 +-3.574474,51.541811 +-3.158658,51.488154 +-4.050624,51.668002 +-3.185729,51.462338 +-3.13496,51.499536 +-3.963152,51.643698 +-3.187242,51.475163 +-3.25564,51.411254 +-3.197768,51.444951 +-3.161893,51.479976 +-3.997266,51.676988 +-3.700993,51.519173 +-3.935562,51.646449 +-3.350162,51.665332 +-3.79864,51.593216 +-3.202177,51.525626 +-3.42641,51.480617 +-3.209175,51.482366 +-3.441804,51.687586 +-3.376095,51.744258 +-3.441093,51.608682 +-3.288049,51.394321 +-3.182468,51.518255 +-3.587434,51.505641 +-3.204536,51.501953 +-3.335145,51.45824 +-3.389002,51.767439 +-3.258991,51.536791 +-3.268573,51.559878 +-3.191381,51.507447 +-3.261061,51.53864 +-3.874077,51.671438 +-3.17327,51.476086 +-3.342784,51.682825 +-3.580852,51.506539 +-3.167667,51.488407 +-3.204361,51.408942 +-3.630091,51.505379 +-3.881998,51.665385 +-3.188545,51.492028 +-3.330841,51.538345 +-3.879829,51.623822 +-3.199799,51.511407 +-3.25974,51.405563 +-3.238834,51.479961 +-3.15357,51.520512 +-3.84808,51.723421 +-3.210529,51.478558 +-3.157677,51.487526 +-3.304206,51.665195 +-3.332541,51.55702 +-3.978982,51.617237 +-3.972835,51.609714 +-3.946483,51.677337 +-3.184956,51.470843 +-3.253454,51.471686 +-3.331436,51.600679 +-3.689741,51.529416 +-3.555416,51.503912 +-3.570863,51.500172 +-3.188443,51.492541 +-3.945557,51.662137 +-3.588094,51.546987 +-3.72484,51.531171 +-3.890197,51.621605 +-3.163101,51.474254 +-3.82525,51.603362 +-3.577721,51.506014 +-3.204941,51.485629 +-3.176605,51.488174 +-3.349431,51.592039 +-3.188132,51.43514 +-3.183126,51.468551 +-3.159806,51.55435 +-3.257223,51.470495 +-3.447151,51.619343 +-3.322221,51.651237 +-3.942599,51.629499 +-3.106534,51.52146 +-3.470153,51.583755 +-3.691221,51.522273 +-3.159267,51.487726 +-3.235548,51.4143 +-3.364604,51.757573 +-3.530756,51.780425 +-3.22215,51.490945 +-3.999093,51.6738 +-3.154218,51.538724 +-3.770596,51.591565 +-3.957444,51.615548 +-3.39194,51.52243 +-3.1599,51.478611 +-3.175472,51.487798 +-3.40175,51.515651 +-3.207938,51.546689 +-3.23818,51.526501 +-3.267304,51.547951 +-4.040082,51.680226 +-3.185063,51.488313 +-3.568885,51.575517 +-3.121715,51.50344 +-3.113175,51.516605 +-3.50517,51.521293 +-3.191317,51.483448 +-3.998996,51.569066 +-3.993101,51.651295 +-3.242258,51.542311 +-3.9597,51.632029 +-3.634332,51.521623 +-4.075161,51.661267 +-3.343715,51.386844 +-3.446558,51.74182 +-3.125022,51.525969 +-3.551413,51.641292 +-3.333709,51.601867 +-3.222561,51.407216 +-3.981457,51.634577 +-3.240913,51.489696 +-3.31577,51.655598 +-3.167489,51.540633 +-3.949573,51.625687 +-3.150443,51.48507 +-3.249155,51.471354 +-3.178326,51.472807 +-3.256318,51.516687 +-3.869044,51.658767 +-3.991029,51.620513 +-3.541403,51.629941 +-3.358596,51.509693 +-3.512632,51.704013 +-3.328566,51.400667 +-3.981785,51.675559 +-3.448841,51.633395 +-3.422427,51.600574 +-3.170692,51.481687 +-3.167513,51.484074 +-3.316437,51.651679 +-3.466731,51.745292 +-3.526152,51.544428 +-3.289177,51.660434 +-3.317518,51.652072 +-3.713697,51.496283 +-3.45925,51.714975 +-3.694477,51.51719 +-3.576623,51.502172 +-3.566722,51.51091 +-3.161956,51.472827 +-3.646719,51.658661 +-3.903952,51.755413 +-3.647375,51.602586 +-3.225413,51.484248 +-3.180531,51.481246 +-3.42513,51.601584 +-3.131151,51.512099 +-3.989467,51.619146 +-3.262769,51.445572 +-3.44224,51.746782 +-3.213942,51.492127 +-3.201956,51.481667 +-3.775558,51.592552 +-3.224225,51.515705 +-3.449876,51.634587 +-3.483794,51.625864 +-3.14308,51.502209 +-3.189705,51.448063 +-3.964783,51.625254 +-3.260784,51.411136 +-3.902716,51.698764 +-3.499677,51.473875 +-3.921638,51.669941 +-3.222559,51.483621 +-3.522926,51.738193 +-3.419521,51.569443 +-3.238921,51.47996 +-3.978126,51.622116 +-3.183396,51.504021 +-3.128469,51.541195 +-3.486442,51.73947 +-3.485328,51.408451 +-3.813637,51.65942 +-3.261966,51.562467 +-3.248369,51.528498 +-3.430923,51.64989 +-3.188862,51.505881 +-3.265025,51.560411 +-3.658412,51.639155 +-3.149351,51.491483 +-3.770226,51.6121 +-3.177085,51.474393 +-3.553882,51.519803 +-3.187028,51.444709 +-3.941542,51.62065 +-3.795769,51.603511 +-3.817216,51.602147 +-3.933585,51.68014 +-3.931311,51.660367 +-3.128695,51.541571 +-3.272258,51.493937 +-3.415655,51.763776 +-3.449102,51.709984 +-3.977526,51.641199 +-3.145163,51.507719 +-3.982764,51.64531 +-3.965839,51.636315 +-3.144991,51.516379 +-3.323285,51.594954 +-3.547774,51.57684 +-3.499398,51.514074 +-3.949353,51.672424 +-3.661614,51.531788 +-3.243243,51.483754 +-3.308409,51.414202 +-3.375421,51.609892 +-3.265154,51.412114 +-3.334211,51.397554 +-3.464259,51.410092 +-3.447631,51.613978 +-3.964961,51.6324 +-3.242069,51.489845 +-3.455219,51.622733 +-3.942234,51.710535 +-3.202607,51.525532 +-3.35898,51.558416 +-4.019868,51.667743 +-3.585642,51.543639 +-3.288451,51.415781 +-3.952678,51.617587 +-3.954821,51.634826 +-3.368863,51.489746 +-3.21101,51.482572 +-3.754167,51.749868 +-3.469667,51.64291 +-3.201758,51.503151 +-3.616956,51.747682 +-3.261089,51.4034 +-3.918262,51.655069 +-3.806044,51.670265 +-3.288333,51.575561 +-3.168344,51.483904 +-3.133188,51.493718 +-3.995442,51.573254 +-3.980898,51.655899 +-3.673206,51.727705 +-3.270039,51.406801 +-3.86024,51.713481 +-3.543456,51.524779 +-3.335442,51.604356 +-3.425912,51.444339 +-3.421984,51.599788 +-3.434044,51.460939 +-3.171553,51.483252 +-3.252069,51.506248 +-3.329686,51.470963 +-3.907411,51.646613 +-3.197987,51.465378 +-3.578529,51.508539 +-3.965071,51.673349 +-3.171302,51.492003 +-3.18903,51.474156 +-4.042899,51.585629 +-3.461124,51.453366 +-3.543765,51.572667 +-3.183635,51.503218 +-3.355618,51.510348 +-4.000937,51.620461 +-3.410314,51.614603 +-3.209758,51.496783 +-3.504953,51.659719 +-3.429804,51.555947 +-3.285375,51.417883 +-4.03307,51.585989 +-3.291478,51.579599 +-3.942785,51.663262 +-3.296133,51.673665 +-3.460565,51.666376 +-3.169465,51.472024 +-3.177343,51.417256 +-3.284682,51.399313 +-3.251495,51.470574 +-3.568949,51.522039 +-3.702754,51.487144 +-3.290885,51.403669 +-3.995618,51.596371 +-3.37213,51.504041 +-3.953104,51.628515 +-4.012998,51.655011 +-3.470058,51.642923 +-3.332778,51.574498 +-3.227073,51.522455 +-3.177501,51.493335 +-3.560785,51.495747 +-3.363441,51.536334 +-3.132828,51.527414 +-3.169253,51.54138 +-3.218288,51.530846 +-3.474046,51.668752 +-3.157753,51.485385 +-3.163442,51.48202 +-3.371716,51.537263 +-3.83658,51.633625 +-3.417864,51.749183 +-3.247298,51.411703 +-3.528909,51.495888 +-3.191398,51.486019 +-4.002378,51.620068 +-3.246921,51.41846 +-3.762689,51.692631 +-3.144403,51.494049 +-3.678501,51.648194 +-3.358883,51.662975 +-3.202588,51.525361 +-3.401787,51.760975 +-3.560191,51.579958 +-3.507278,51.736264 +-3.254098,51.476256 +-3.310291,51.506619 +-4.039252,51.669162 +-3.581587,51.603437 +-3.378071,51.74731 +-3.464879,51.739543 +-3.390972,51.689592 +-3.806232,51.619726 +-3.203358,51.406318 +-3.418037,51.600096 +-3.19477,51.463487 +-3.399281,51.529627 +-3.918066,51.667886 +-3.166752,51.47571 +-3.206183,51.511935 +-3.638591,51.523425 +-3.421666,51.614125 +-3.272695,51.403553 +-3.487157,51.739182 +-3.541889,51.50356 +-3.351158,51.604527 +-4.054873,51.667936 +-3.39484,51.757956 +-3.113385,51.524039 +-3.318276,51.506188 +-3.439057,51.600011 +-3.922582,51.677191 +-3.812399,51.662101 +-3.169826,51.486119 +-3.169031,51.49333 +-3.199715,51.509844 +-3.956345,51.615854 +-3.263771,51.465713 +-3.950416,51.634216 +-3.125412,51.502029 +-3.359198,51.606359 +-3.363474,51.665161 +-3.294315,51.493524 +-3.337349,51.676566 +-3.956118,51.622656 +-3.926718,51.621631 +-3.435854,51.719418 +-3.346646,51.602826 +-3.221472,51.483381 +-3.101945,51.53019 +-3.235593,51.547552 +-3.366043,51.608752 +-3.428346,51.702623 +-3.137205,51.524889 +-3.93833,51.627663 +-3.642966,51.650846 +-3.210534,51.514103 +-3.679462,51.534528 +-3.321206,51.620829 +-3.171646,51.489113 +-3.446114,51.715659 +-3.415481,51.515549 +-3.803416,51.660162 +-3.213801,51.550783 +-3.311196,51.65288 +-3.278199,51.422035 +-3.792863,51.769264 +-3.129749,51.532335 +-3.309657,51.506599 +-3.380489,51.762477 +-3.309354,51.506603 +-3.427115,51.755905 +-3.09094,51.522748 +-3.20428,51.411883 +-3.357337,51.635927 +-3.309379,51.505946 +-3.956514,51.629187 +-3.322328,51.595324 +-3.970912,51.618011 +-3.446985,51.719838 +-3.344458,51.704161 +-3.999003,51.576467 +-3.923999,51.648851 +-3.333916,51.598583 +-3.321116,51.618699 +-3.459086,51.583875 +-3.221713,51.519301 +-3.364343,51.523582 +-3.325948,51.391183 +-3.975839,51.622011 +-3.430998,51.7009 +-3.703783,51.475727 +-3.42203,51.599437 +-3.278103,51.409312 +-3.246578,51.421692 +-3.416226,51.708848 +-3.304812,51.461585 +-3.59308,51.506382 +-3.168504,51.463689 +-3.490192,51.643434 +-3.141502,51.480554 +-3.461591,51.714856 +-3.462543,51.644276 +-3.264384,51.452982 +-3.539034,51.505629 +-3.642512,51.603886 +-3.625365,51.532107 +-4.163477,51.574358 +-4.058286,51.663479 +-3.153067,51.482338 +-3.459974,51.736106 +-3.381519,51.748735 +-3.332985,51.622026 +-3.599478,51.533128 +-3.212457,51.471991 +-3.176237,51.424622 +-3.34748,51.558324 +-3.934469,51.641845 +-3.580308,51.600694 +-4.059406,51.663621 +-3.463201,51.733332 +-3.442415,51.641693 +-3.55302,51.730111 +-3.119805,51.509546 +-3.785115,51.7661 +-3.393338,51.551701 +-3.123989,51.497475 +-3.580506,51.451151 +-3.955222,51.630053 +-3.46336,51.733339 +-3.419956,51.600514 +-3.601849,51.759219 +-3.972753,51.627485 +-3.886264,51.619789 +-3.269254,51.522141 +-3.958247,51.64895 +-3.166975,51.476005 +-3.173963,51.503064 +-3.930633,51.662114 +-3.628753,51.575294 +-3.419546,51.63458 +-3.409317,51.612242 +-3.889729,51.654147 +-3.41646,51.561954 +-3.141937,51.500844 +-3.146127,51.508213 +-3.366772,51.767448 +-3.94455,51.643692 +-3.360853,51.666 +-3.539653,51.570544 +-3.256644,51.422187 +-4.041166,51.649975 +-3.277909,51.394108 +-3.168081,51.47023 +-3.270219,51.548018 +-3.211589,51.5191 +-3.230069,51.413738 +-3.504901,51.653776 +-3.575412,51.570205 +-3.147099,51.492422 +-3.853494,51.720197 +-3.457758,51.725757 +-3.34649,51.687314 +-3.166574,51.484542 +-3.597135,51.492542 +-3.924526,51.657547 +-3.76645,51.586655 +-3.281687,51.402745 +-3.344306,51.759039 +-3.198771,51.444788 +-3.375824,51.767279 +-3.611078,51.532142 +-3.330673,51.529598 +-3.222489,51.407217 +-3.769385,51.579345 +-3.758536,51.579463 +-3.384005,51.685521 +-3.36035,51.668038 +-3.200094,51.526448 +-3.547873,51.509218 +-3.54037,51.485433 +-3.244403,51.467628 +-3.295461,51.666326 +-3.503744,51.80033 +-3.427151,51.697278 +-3.693643,51.529297 +-3.865817,51.708663 +-3.454484,51.718937 +-3.545318,51.544006 +-3.292837,51.673683 +-3.121827,51.501542 +-3.236923,51.481159 +-3.369883,51.678214 +-3.387528,51.553658 +-3.782968,51.678495 +-3.96088,51.63191 +-3.144554,51.493769 +-3.219578,51.422075 +-3.220387,51.493957 +-3.33204,51.54878 +-3.456108,51.725301 +-3.829489,51.66207 +-3.31475,51.701764 +-3.112187,51.525156 +-3.348825,51.549155 +-3.304889,51.572168 +-3.310647,51.588235 +-4.004489,51.639429 +-3.269019,51.474819 +-3.202588,51.44875 +-3.417568,51.772583 +-3.3614,51.51145 +-3.588497,51.519627 +-3.112023,51.525518 +-3.176251,51.424586 +-3.808174,51.615523 +-3.596822,51.749783 +-3.505185,51.521301 +-3.218758,51.495008 +-3.506915,51.660458 +-3.448765,51.662727 +-3.179513,51.49594 +-3.155924,51.467752 +-3.21905,51.514599 +-3.665489,51.608688 +-3.698235,51.714002 +-3.177188,51.474446 +-3.45973,51.583696 +-3.255269,51.533558 +-3.277443,51.566499 +-3.702543,51.522856 +-3.387997,51.611219 +-3.83838,51.628102 +-3.193661,51.464029 +-3.907394,51.658942 +-3.69163,51.486262 +-3.413608,51.398637 +-3.421317,51.756272 +-3.813856,51.648977 +-3.210246,51.482544 +-3.908098,51.621306 +-3.248754,51.413432 +-3.176979,51.53901 +-3.971312,51.701499 +-3.218467,51.51759 +-3.189964,51.436452 +-3.248718,51.474857 +-3.449984,51.7199 +-3.35713,51.72235 +-3.587198,51.566809 +-3.32715,51.636884 +-3.67781,51.488016 +-3.491074,51.574247 +-3.143461,51.514533 +-4.004857,51.62026 +-3.239848,51.423885 +-3.908301,51.684978 +-3.202812,51.432068 +-3.286705,51.569536 +-3.280111,51.563898 +-3.142209,51.496741 +-3.509416,51.740426 +-3.949933,51.614531 +-3.364035,51.457314 +-3.210476,51.509733 +-3.246018,51.465615 +-3.181192,51.454426 +-3.900813,51.675792 +-3.143668,51.503246 +-3.966012,51.636321 +-3.833363,51.657037 +-3.148389,51.544886 +-3.324797,51.593336 +-3.493303,51.520275 +-3.456563,51.720116 +-3.323701,51.616224 +-3.536959,51.674968 +-3.168121,51.483655 +-3.363964,51.760854 +-3.356663,51.604617 +-3.551698,51.68516 +-3.857497,51.6246 +-3.166749,51.481789 +-3.801971,51.749414 +-3.21053,51.482415 +-3.265154,51.562487 +-3.322879,51.506918 +-3.159668,51.4848 +-3.93897,51.626744 +-3.358725,51.51113 +-3.228764,51.486757 +-3.173848,51.503074 +-3.314826,51.652453 +-3.446159,51.619023 +-3.700577,51.521544 +-3.895753,51.669966 +-3.719071,51.698898 +-3.23821,51.474995 +-3.777227,51.596861 +-3.171468,51.49228 +-3.232087,51.483926 +-3.923578,51.66758 +-3.273809,51.464822 +-3.688467,51.531988 +-3.770098,51.612174 +-3.363431,51.734496 +-3.499281,51.576328 +-3.162401,51.481841 +-3.44184,51.604905 +-3.40557,51.754942 +-3.27714,51.407776 +-3.200646,51.517315 +-3.910778,51.680936 +-3.180193,51.483785 +-3.702262,51.489408 +-3.308425,51.57068 +-3.591927,51.506371 +-3.28768,51.570343 +-3.964965,51.630143 +-3.181523,51.481182 +-3.169645,51.493126 +-3.21866,51.516167 +-3.177743,51.46749 +-3.170304,51.476107 +-3.106946,51.527769 +-4.055073,51.649669 +-3.648631,51.507269 +-3.096259,51.53294 +-3.239163,51.479859 +-3.450489,51.665098 +-3.166148,51.478567 +-3.366099,51.526898 +-3.827768,51.658842 +-4.162959,51.574395 +-3.172713,51.439782 +-3.310699,51.652688 +-3.187909,51.481442 +-3.146337,51.48271 +-3.195527,51.481409 +-3.965476,51.627598 +-3.449349,51.619415 +-3.185007,51.517241 +-3.376369,51.731837 +-3.781657,51.677877 +-3.634468,51.58819 +-3.16814,51.483816 +-3.189641,51.502051 +-3.389206,51.750478 +-3.941458,51.627485 +-3.342315,51.600897 +-3.930294,51.650393 +-3.226979,51.474466 +-3.885989,51.666077 +-3.584367,51.54264 +-3.339377,51.66051 +-3.299875,51.581044 +-3.281702,51.402762 +-3.704988,51.48373 +-3.180714,51.479428 +-3.785573,51.598712 +-3.171575,51.492531 +-3.465498,51.582617 +-3.323303,51.423054 +-3.578155,51.561922 +-3.319753,51.564268 +-3.558716,51.745403 +-3.173336,51.485949 +-3.169701,51.490239 +-3.937824,51.618841 +-3.409225,51.612063 +-3.184351,51.469177 +-3.816623,51.610447 +-3.576716,51.501523 +-3.117951,51.512117 +-3.879383,51.78586 +-3.252173,51.410662 +-3.832806,51.657567 +-3.252973,51.471988 +-3.381058,51.61006 +-3.51248,51.735918 +-3.905216,51.650434 +-3.712989,51.478533 +-3.239205,51.471316 +-3.799536,51.679025 +-3.362842,51.670131 +-3.820718,51.629385 +-3.10632,51.503137 +-3.227282,51.484678 +-3.938084,51.671685 +-4.021584,51.617284 +-3.413337,51.53426 +-3.268266,51.393116 +-3.182295,51.487109 +-3.743562,51.564949 +-3.571398,51.573891 +-3.848644,51.654531 +-3.913723,51.677021 +-3.572662,51.541961 +-3.484183,51.674037 +-3.935931,51.671406 +-3.457184,51.62679 +-3.133376,51.493761 +-3.144167,51.512233 +-3.290069,51.576737 +-3.978318,51.607608 +-3.199698,51.443915 +-3.27218,51.520617 +-3.409135,51.60871 +-3.17772,51.477777 +-3.290456,51.413978 +-3.980635,51.635949 +-3.164548,51.48075 +-3.553063,51.574072 +-3.926343,51.621305 +-3.371118,51.675043 +-3.173804,51.476117 +-3.93882,51.623222 +-3.310843,51.652695 +-3.170262,51.490764 +-3.179839,51.535879 +-4.006072,51.679212 +-3.350558,51.588672 +-3.183154,51.48077 +-3.890761,51.621982 +-3.948886,51.654474 +-3.331079,51.530663 +-3.357574,51.669518 +-3.380576,51.737308 +-3.204209,51.481905 +-3.180677,51.481308 +-3.119771,51.531091 +-3.821102,51.629603 +-3.570926,51.502428 +-3.969962,51.650094 +-3.271422,51.404313 +-3.249275,51.4109 +-3.131233,51.528814 +-3.839952,51.639462 +-3.252444,51.488395 +-3.160865,51.486568 +-3.661787,51.610134 +-3.281164,51.46476 +-3.918914,51.737509 +-3.413844,51.615244 +-3.401413,51.517372 +-3.190058,51.546233 +-3.349877,51.718 +-3.312636,51.65272 +-3.837531,51.629977 +-3.238089,51.526332 +-3.366658,51.474279 +-3.240598,51.52849 +-3.441926,51.74738 +-3.312286,51.541917 +-3.733125,51.551516 +-3.431582,51.586372 +-3.19248,51.481098 +-3.360875,51.520907 +-4.068194,51.62416 +-3.252178,51.408756 +-3.981617,51.626985 +-3.247992,51.486779 +-3.2593,51.431429 +-3.31262,51.587071 +-3.329867,51.648264 +-3.433311,51.704945 +-3.66464,51.608358 +-3.434528,51.576337 +-3.175405,51.484094 +-3.983101,51.673901 +-3.139995,51.530428 +-4.008832,51.591191 +-3.77681,51.589511 +-3.354213,51.713886 +-3.844493,51.643806 +-3.970207,51.631727 +-3.2684,51.469637 +-3.133848,51.498837 +-3.95117,51.635966 +-3.321922,51.64544 +-3.341688,51.600194 +-3.303836,51.665397 +-3.300876,51.574658 +-3.288192,51.400434 +-3.937038,51.641757 +-3.803978,51.660136 +-3.288012,51.416037 +-3.423554,51.696099 +-3.925168,51.667572 +-3.783426,51.675062 +-3.591219,51.532791 +-3.278956,51.396084 +-3.269226,51.551212 +-3.93645,51.622874 +-3.157977,51.468658 +-3.145119,51.522061 +-3.381439,51.746587 +-3.659798,51.608256 +-3.285574,51.4178 +-3.11314,51.513988 +-3.941455,51.630111 +-3.941383,51.626731 +-3.630031,51.505326 +-3.691265,51.522299 +-3.416177,51.704038 +-3.423206,51.698827 +-3.486771,51.739339 +-3.969996,51.644203 +-3.81542,51.60418 +-3.329894,51.394933 +-3.389352,51.751924 +-3.177098,51.483259 +-3.367995,51.609305 +-3.433168,51.573926 +-3.817998,51.632907 +-3.94896,51.654509 +-3.960029,51.636969 +-3.388259,51.429325 +-3.301028,51.47177 +-3.186451,51.50569 +-3.647273,51.599386 +-3.182077,51.468076 +-3.982814,51.638178 +-3.329247,51.526665 +-3.808117,51.653679 +-3.394041,51.400454 +-3.199879,51.512252 +-3.680086,51.528746 +-3.165809,51.464723 +-3.954026,51.639192 +-3.388006,51.525795 +-3.150319,51.491591 +-3.571143,51.574021 +-3.174629,51.437623 +-3.140734,51.498266 +-3.275903,51.469682 +-3.482848,51.529895 +-3.26866,51.539142 +-3.420925,51.564939 +-3.201883,51.481623 +-3.088716,52.781067 +-4.504983,51.815746 +-4.055665,51.805678 +-3.792376,52.002009 +-4.487814,51.821191 +-4.664161,51.928545 +-3.930609,51.83883 +-4.018806,51.856943 +-4.327918,51.824944 +-4.178325,51.781005 +-4.158162,51.830278 +-4.083788,51.797125 +-4.114934,51.676051 +-4.001114,52.083557 +-4.481805,51.912704 +-4.475416,51.769752 +-4.081557,51.798756 +-4.369958,51.847844 +-4.160397,51.675781 +-3.988682,51.792595 +-4.161388,51.676239 +-4.04898,51.796146 +-4.065988,51.705923 +-4.3699,51.847837 +-3.968601,51.796314 +-3.873419,51.967082 +-4.12044,51.8012 +-4.013727,51.783509 +-4.266008,51.866557 +-4.123469,51.681652 +-4.127388,51.688712 +-4.32167,51.842 +-4.156685,51.741315 +-4.166054,51.667646 +-4.116236,51.816419 +-4.298631,52.029812 +-4.151812,51.678978 +-4.172561,51.690592 +-3.998652,51.843232 +-4.195668,51.74705 +-4.258813,51.792803 +-4.425822,51.977397 +-3.989658,51.794 +-4.319667,51.863182 +-4.408651,52.024817 +-4.290152,51.852888 +-4.286817,51.828071 +-4.263742,51.684148 +-4.152188,51.683557 +-4.065462,51.714089 +-4.116455,51.68106 +-4.012036,51.869558 +-4.134111,51.679373 +-4.157883,51.681331 +-4.349521,52.023062 +-4.440905,52.008658 +-4.111468,51.668713 +-4.063039,51.745434 +-4.063016,51.74557 +-4.13167,51.682844 +-4.554046,51.76297 +-4.301004,51.850968 +-3.851178,51.905659 +-4.3093,51.844546 +-4.461401,52.035866 +-3.907815,51.802011 +-3.845847,51.84797 +-4.288962,51.877209 +-4.138499,52.065165 +-4.329177,51.848498 +-3.987748,52.069199 +-4.210471,51.704561 +-4.236071,51.688635 +-4.184112,51.742643 +-4.450282,52.029578 +-3.852749,52.017215 +-4.593567,51.82458 +-4.470104,51.825603 +-4.310527,51.85802 +-4.142216,51.675502 +-4.093981,51.801143 +-4.177962,52.058228 +-4.086931,51.794848 +-4.161332,51.68053 +-4.078068,51.703606 +-4.628188,51.926072 +-4.089358,51.796828 +-4.088321,51.700583 +-4.316699,51.852629 +-4.048218,51.788929 +-4.23921,51.682478 +-4.423141,51.788298 +-4.063972,51.7462 +-4.157473,51.671788 +-3.992402,51.792092 +-4.351265,51.748526 +-4.171461,51.684228 +-4.320834,51.863006 +-4.125724,51.719569 +-4.5319,51.874199 +-4.30277,51.855699 +-4.133033,51.682612 +-3.962267,51.943199 +-4.179866,51.856531 +-4.411801,51.985832 +-4.383025,51.950511 +-4.314971,51.851503 +-4.505769,51.816574 +-4.289451,51.708515 +-4.3119,51.857588 +-4.117686,51.764416 +-4.576321,51.764237 +-4.381742,51.776203 +-4.261485,51.688212 +-4.468606,52.037738 +-3.858803,51.829763 +-3.85643,51.97236 +-3.989638,51.791905 +-4.39869,51.845328 +-3.79794,52.088083 +-4.471188,51.979348 +-4.063925,51.74612 +-4.18188,51.831819 +-4.366585,51.928775 +-4.119607,51.81839 +-4.477912,51.760815 +-4.309115,51.839523 +-4.271422,51.688155 +-3.999109,51.810628 +-4.267393,51.931591 +-4.055556,51.805527 +-4.113535,51.685761 +-4.173915,51.874069 +-4.227086,52.007933 +-4.145018,51.667763 +-4.326138,51.737992 +-4.042099,51.783154 +-3.99007,51.79446 +-4.696534,51.884981 +-4.560939,51.765428 +-4.158526,51.672938 +-4.444695,51.856467 +-3.998822,51.888011 +-4.316045,51.852066 +-4.311511,51.741725 +-4.48756,51.797626 +-4.384967,51.848584 +-4.419182,51.788298 +-4.134508,51.797492 +-3.802341,51.995491 +-4.443375,52.004506 +-4.119279,51.740881 +-4.230258,51.870622 +-4.068393,51.883409 +-4.009172,51.793874 +-3.992564,51.883207 +-4.25548,51.976243 +-3.717069,51.987108 +-4.110936,51.695826 +-3.995613,51.788638 +-4.085143,51.663266 +-4.135167,51.678778 +-4.241802,51.684866 +-3.945508,51.929459 +-4.198501,51.872964 +-4.151419,51.689309 +-4.315635,51.852551 +-4.612202,51.773922 +-4.156422,52.076519 +-4.047509,51.717542 +-4.111116,51.668593 +-4.050781,51.759128 +-4.077022,51.795375 +-3.992644,51.883044 +-4.083951,51.797194 +-4.181274,51.685224 +-4.240636,51.774258 +-4.145374,51.698223 +-4.115086,51.669376 +-4.114694,51.669356 +-4.166157,51.673121 +-3.971843,51.927663 +-4.282274,51.871377 +-4.073165,51.703675 +-4.499517,51.81713 +-4.082909,51.796628 +-3.937974,51.813621 +-3.780636,51.993996 +-4.160063,51.67424 +-4.190842,51.695819 +-4.093892,51.809868 +-4.129817,51.791831 +-4.126975,51.730185 +-3.995,51.847979 +-4.14523,51.815911 +-4.407467,51.844106 +-3.985316,51.794855 +-4.307352,51.848181 +-4.120423,51.744592 +-4.098293,51.877691 +-4.254479,51.691044 +-4.120601,51.673521 +-3.857914,51.839902 +-4.165194,51.771419 +-3.993085,51.798051 +-4.005276,51.788105 +-4.725254,52.029919 +-4.095977,51.842266 +-4.005239,51.889178 +-4.296477,51.733477 +-4.313398,51.856498 +-4.062054,51.707575 +-4.055273,51.805352 +-4.056851,51.80688 +-4.080398,51.7909 +-4.418834,51.788305 +-4.089514,51.878557 +-4.298931,51.86072 +-4.149749,51.688566 +-4.161386,51.680457 +-4.131359,51.68177 +-4.011125,51.866409 +-4.35455,51.916444 +-4.086285,51.691878 +-3.696556,51.980338 +-4.367413,51.932346 +-3.935752,51.903525 +-4.289872,51.832489 +-4.262794,52.019059 +-4.29738,51.747578 +-4.170427,51.677736 +-4.066272,51.796562 +-4.29738,51.747578 +-4.243957,51.840263 +-4.042704,51.824113 +-3.990836,51.791129 +-4.213176,51.74513 +-4.057962,51.712143 +-3.995442,51.788695 +-4.585489,51.824173 +-4.277865,51.810574 +-4.182434,51.739976 +-4.302735,51.781618 +-4.021318,52.075578 +-4.06698,51.721022 +-4.1635,51.6796 +-4.487533,51.9994 +-4.163574,51.682053 +-3.895849,51.957011 +-4.30135,51.853767 +-4.5964,51.830192 +-4.16402,51.681703 +-4.241579,51.996157 +-4.286693,51.867712 +-4.366261,51.766273 +-4.307414,51.850258 +-4.561148,51.910518 +-4.171195,51.685626 +-4.175516,51.684018 +-4.105257,51.813091 +-4.27804,51.810876 +-4.398129,51.858523 +-4.281652,51.73158 +-3.848126,51.988136 +-4.173063,51.858204 +-4.134447,51.676993 +-4.146916,51.675165 +-4.264058,51.960395 +-4.049133,51.921567 +-4.542811,52.032589 +-4.557146,51.788066 +-4.06812,52.105609 +-4.053885,51.803865 +-4.534257,51.79313 +-4.063065,51.802563 +-3.826011,51.805189 +-4.313295,51.904853 +-4.130853,51.870343 +-4.231889,51.839899 +-4.323705,51.858687 +-4.330972,51.850926 +-4.263826,51.859261 +-4.158586,51.688791 +-4.342588,51.827422 +-4.133478,51.682523 +-4.082787,51.79681 +-4.307758,51.849882 +-4.234277,51.870519 +-4.042836,51.844352 +-4.613922,51.806925 +-4.30135,51.853767 +-4.054687,51.713657 +-4.480618,51.823601 +-4.240648,51.734699 +-4.246992,51.682159 +-3.900331,51.801323 +-4.114161,51.676847 +-4.087241,52.249394 +-4.005656,52.370406 +-4.205092,52.212262 +-4.04468,52.355953 +-3.861866,52.324836 +-4.399516,52.142949 +-4.305238,52.18891 +-4.316434,52.188142 +-4.129794,52.177993 +-4.027752,52.442248 +-4.036816,52.42375 +-4.24125,52.178867 +-4.17603,52.28338 +-4.457465,52.06271 +-4.272433,52.083528 +-4.064812,52.320319 +-4.081657,52.120027 +-4.063298,52.374475 +-4.484399,52.065364 +-4.110956,52.256723 +-4.36176,52.151436 +-4.145265,52.09673 +-3.94993,52.406585 +-4.080525,52.119876 +-4.083923,52.419665 +-3.99042,52.324933 +-4.154648,52.260915 +-4.098155,52.127917 +-4.26311,52.240316 +-4.661537,52.083824 +-3.974656,52.513406 +-3.986985,52.394953 +-3.858879,52.409644 +-3.927432,52.38658 +-3.982509,52.388879 +-4.059034,52.245789 +-4.083128,52.413708 +-4.081866,52.414396 +-3.788181,52.431262 +-4.1366,52.104225 +-4.161961,52.187101 +-3.905488,52.412076 +-3.884925,52.2642 +-3.985803,52.495866 +-4.260724,52.138876 +-4.040768,52.306108 +-4.061174,52.405524 +-3.985244,52.456646 +-4.126535,52.105369 +-4.279166,52.105951 +-4.046755,52.413517 +-4.272679,52.083488 +-4.661247,52.082868 +-3.968312,52.523474 +-4.097517,52.12399 +-3.921817,52.427141 +-4.064863,52.366778 +-4.086239,52.272673 +-3.925613,52.554917 +-4.305417,52.195759 +-4.046259,52.356438 +-4.033494,52.400151 +-4.177129,52.281867 +-4.092491,52.129592 +-4.076299,52.400134 +-3.839897,52.411389 +-4.362734,52.151344 +-3.835148,52.416345 +-4.271692,52.225664 +-3.749597,52.358435 +-4.146493,52.095557 +-4.052868,52.505483 +-4.335494,52.16435 +-4.083894,52.419665 +-4.135647,52.236317 +-4.338791,52.057932 +-3.96167,52.247924 +-4.029457,52.438695 +-3.685596,52.368015 +-4.083226,52.413608 +-3.938125,52.54226 +-4.19457,52.199267 +-4.05847,52.423222 +-4.368783,52.094283 +-3.87271,52.205572 +-4.060773,52.418677 +-4.288144,52.208747 +-4.512323,52.114663 +-4.156828,52.183814 +-4.23107,52.093221 +-4.074246,52.416517 +-4.416128,52.094778 +-4.071911,52.400607 +-4.468154,52.130021 +-3.98801,52.241369 +-4.065057,52.418449 +-4.155562,52.091381 +-4.015902,52.275037 +-4.440894,52.118377 +-3.964175,52.527553 +-4.331002,52.205111 +-4.386936,52.170892 +-4.071232,52.330224 +-4.077373,52.112406 +-4.662635,52.080202 +-4.020792,52.515486 +-4.063834,52.418714 +-4.660076,52.107346 +-4.060664,52.411917 +-4.367919,52.092295 +-3.966844,52.525584 +-4.035489,52.517787 +-4.48177,52.075824 +-4.045161,52.249276 +-4.07253,52.416619 +-4.032264,52.429664 +-4.100126,52.354279 +-4.299655,52.202067 +-4.059277,52.417822 +-3.958868,52.528225 +-4.086956,52.41383 +-4.073021,52.401379 +-4.252967,52.245096 +-4.061671,52.459645 +-4.529695,52.047413 +-4.026976,52.443611 +-3.995457,52.438392 +-4.429018,52.161058 +-4.065408,52.404893 +-4.125977,52.325043 +-4.591095,52.075574 +-4.529016,52.068938 +-4.036988,52.408354 +-4.005635,52.28237 +-4.61862,52.071584 +-4.070125,52.346113 +-4.029181,52.439086 +-4.687488,51.81934 +-4.71717,51.777728 +-4.716063,51.726231 +-4.722726,51.674436 +-4.965783,51.80277 +-4.974266,51.913413 +-4.80303,51.691648 +-4.984424,51.784319 +-4.722725,51.722614 +-4.965235,51.802595 +-4.917733,51.678456 +-4.985367,51.989245 +-4.504775,51.816694 +-4.968819,51.735069 +-4.875265,51.804211 +-4.965361,51.802088 +-4.938161,51.806108 +-4.949193,51.709733 +-4.98851,51.77506 +-4.540478,51.969833 +-4.642345,51.967959 +-4.976318,51.797314 +-5.040364,51.806647 +-4.754565,51.771605 +-5.020877,51.755209 +-4.747309,51.912081 +-5.095452,51.852112 +-4.619832,51.932697 +-4.745141,51.987558 +-4.715049,51.701099 +-5.068398,51.726824 +-4.702524,51.675271 +-4.987866,51.777819 +-4.974081,51.785589 +-5.035766,51.713615 +-4.779647,51.80537 +-4.971849,51.835858 +-5.055442,51.714678 +-4.604531,52.002777 +-4.962855,51.811433 +-4.798605,51.667084 +-5.042406,51.955857 +-5.017381,51.729522 +-5.104185,51.830026 +-4.752889,51.718817 +-4.972281,51.800546 +-4.991341,51.768773 +-4.983005,51.716667 +-4.94274,51.942779 +-4.878681,51.804325 +-4.936705,51.69642 +-4.955418,51.707732 +-4.967314,51.776613 +-4.954767,51.868729 +-4.918662,51.676256 +-4.765722,51.688054 +-4.962156,51.719129 +-4.972206,51.73546 +-5.017969,51.936403 +-4.704073,51.712649 +-4.7985,51.756555 +-4.968385,51.80417 +-4.907133,51.673107 +-5.046181,51.773506 +-5.022152,51.764305 +-4.929295,51.694177 +-4.965412,51.82208 +-4.644459,51.781384 +-4.95987,51.740637 +-4.93642,51.659615 +-5.020717,51.755204 +-4.745206,51.812025 +-4.99004,51.987013 +-4.996037,51.794789 +-5.029109,51.718428 +-4.917748,51.678473 +-4.794712,51.654594 +-5.02108,51.821355 +-4.964725,51.876105 +-4.921367,51.685695 +-4.931714,51.640944 +-4.749648,51.692137 +-4.864347,51.738635 +-4.966174,51.996836 +-4.681858,51.744815 +-4.990991,51.785393 +-4.850113,51.810247 +-4.97942,51.802335 +-4.699289,51.670246 +-4.977686,51.791667 +-4.900329,52.011643 +-5.124625,51.854344 +-4.947541,51.695015 +-4.944768,51.705365 +-4.999471,51.780087 +-4.690028,51.941707 +-4.866676,51.688942 +-4.933098,51.830005 +-4.587937,52.046471 +-5.027049,51.797835 +-4.836781,51.691961 +-4.723209,51.666825 +-4.932424,51.69087 +-4.93984,51.693652 +-4.700709,51.712078 +-4.64114,51.979893 +-4.960088,51.987636 +-4.766159,51.688107 +-4.745489,51.987289 +-4.92625,51.693425 +-5.008826,51.931547 +-5.056928,51.6676 +-4.921525,51.685898 +-4.848048,51.800278 +-4.648501,51.976058 +-4.992635,51.741012 +-5.22106,51.88027 +-4.700508,51.819878 +-4.999716,51.982495 +-5.256114,51.886302 +-4.962201,51.813626 +-4.993938,51.755234 +-5.090856,51.684718 +-4.937764,51.637483 +-4.99056,51.76989 +-4.853299,52.014403 +-4.971415,51.804364 +-5.092189,51.783133 +-5.073608,51.836334 +-4.65703,51.757214 +-4.68494,52.08242 +-4.646059,51.75918 +-4.925264,51.674779 +-5.053989,51.714383 +-4.676404,51.734912 +-5.027038,51.716035 +-4.976449,51.802815 +-5.045379,51.770217 +-5.216835,51.879514 +-5.020707,51.755268 +-4.713259,51.678198 +-4.927637,51.842472 +-4.824356,51.727813 +-4.921668,51.674643 +-4.925651,51.693332 +-4.971148,51.72464 +-4.650572,51.947494 +-4.94702,51.705263 +-4.854578,52.014354 +-4.962753,51.739755 +-4.996354,51.794745 +-4.635246,51.761896 +-4.699313,51.711013 +-4.84642,51.800003 +-4.540478,51.969824 +-4.991091,51.785364 +-5.027784,51.71615 +-4.991727,51.800008 +-4.652081,51.946426 +-4.904586,51.689359 +-5.034326,51.71286 +-5.03324,51.727999 +-4.969175,51.797873 +-4.973618,51.798822 +-4.96262,51.812716 +-4.794773,51.801297 +-4.809428,51.694013 +-4.63503,51.76191 +-4.692638,52.023358 +-5.171544,51.876517 +-4.921835,51.661733 +-4.911499,51.842594 +-4.930497,51.690621 +-4.968015,51.802075 +-4.961198,51.730611 +-4.903171,51.687829 +-5.033999,51.722241 +-5.146801,51.932073 +-4.827892,52.014125 +-4.677363,51.745241 +-4.717957,51.67621 +-4.792524,52.017497 +-5.015961,51.819678 +-5.028927,51.667616 +-5.024907,51.717079 +-4.879562,51.669919 +-4.98536,51.782902 +-4.93364,51.672987 +-5.089523,51.737558 +-4.650812,51.947615 +-5.018989,51.726045 +-4.998716,51.939198 +-5.183159,51.731504 +-4.773531,51.885951 +-5.056442,51.78933 +-4.957443,51.661569 +-4.919068,51.676282 +-4.701014,51.717441 +-4.688327,52.078548 +-5.051477,51.713639 +-5.051225,51.747292 +-4.992219,51.738216 +-4.692624,52.023359 +-4.917785,51.676116 +-4.921682,51.686092 +-4.739614,51.799736 +-5.02598,51.680895 +-5.027142,51.716725 +-4.930794,51.701029 +NULL,NULL +-4.767444,51.688301 +-4.818593,51.69409 +-4.996871,51.971748 +-4.998613,51.731307 +-4.784373,51.698414 +-4.83668,51.800355 +-4.719706,51.723952 +-4.965129,51.798551 +-4.768327,52.017709 +-4.684889,51.818833 +-4.713098,51.678895 +-5.01607,51.678074 +-4.945787,51.877813 +-4.939339,51.695536 +-4.978691,51.79041 +-5.038017,51.713287 +-4.918385,51.691741 +-5.16829,51.875912 +-4.967737,51.793655 +-4.777088,51.773656 +-4.940279,51.691951 +-3.279916,52.520939 +-3.583503,52.591205 +-3.473587,51.912154 +-2.996196,52.265013 +-3.164161,52.686917 +-3.0835,52.218094 +-3.35148,52.090218 +-3.112951,52.659342 +-3.377062,52.238239 +-3.084134,52.218871 +-3.402485,51.847026 +-3.510307,52.300427 +-3.067836,52.336339 +-3.196461,52.55059 +-3.538309,52.446789 +-3.222282,52.021094 +-3.553831,52.462221 +-3.314093,52.52924 +-3.092817,52.680782 +-3.090177,52.750569 +-3.337343,52.172396 +-3.224507,52.750336 +-3.07526,52.756072 +-3.312852,52.548448 +-3.146599,52.237197 +-3.646624,51.860307 +-3.293756,52.545521 +-3.069305,52.69503 +-3.188733,52.653112 +-3.755485,51.778613 +-3.595134,52.598853 +-3.318137,52.076183 +-3.389393,52.220886 +-3.121848,52.629159 +-3.28418,52.436166 +-3.414948,52.158049 +-3.317794,52.510085 +-4.162067,51.677441 +-3.388596,51.946133 +-3.153864,52.668992 +-3.468362,51.853559 +-3.169951,52.05527 +-3.1633,52.630602 +-3.229072,52.677721 +-3.321453,52.509756 +-3.155088,52.696886 +-3.538945,52.443095 +-3.505728,52.512248 +-3.332945,52.506283 +-3.239815,52.546674 +-3.326898,52.298423 +-3.142385,52.661498 +-3.31546,52.324166 +-3.388253,51.945858 +-3.252333,52.535196 +-3.22544,52.019308 +-3.420376,52.512206 +-3.635248,52.511904 +-3.440682,52.516258 +-3.058274,52.697187 +-3.162694,52.631156 +-3.646581,51.860325 +-3.243669,52.00875 +-3.259468,52.286979 +-3.281149,51.885931 +-3.126638,52.70054 +-3.401248,52.250065 +-3.327209,52.081953 +-3.144386,52.661119 +-3.35076,52.658505 +-3.67229,51.96531 +-3.40658,52.515806 +-3.363124,51.843532 +-3.526156,52.700042 +-3.147589,52.560379 +-3.207416,52.573027 +-3.375225,52.282055 +-3.629584,51.949319 +-3.191067,52.217255 +-3.659902,52.16747 +-3.260303,51.940078 +-3.447501,52.466367 +-3.310112,52.271764 +-3.047345,52.499393 +-3.213879,51.842398 +-3.307979,52.614654 +-3.187082,51.942161 +-3.247491,51.894637 +-3.146155,52.127809 +-3.212932,51.967423 +-3.108028,52.324254 +-3.745051,52.160073 +-3.777074,51.771338 +-3.281667,51.993939 +-3.314573,52.512764 +-3.091475,52.747356 +-3.119321,52.672524 +-3.555871,52.280253 +-3.338486,52.48013 +-3.13475,51.861917 +-3.046662,52.747446 +-3.295534,52.06408 +-3.120157,52.731788 +-3.571671,51.930586 +-3.147047,52.657713 +-3.234741,52.231318 +-3.326406,52.65059 +-3.377474,52.243953 +-3.135289,52.631287 +-3.29915,52.558885 +-3.320145,52.357317 +-3.378945,52.240851 +-3.676932,51.835708 +-3.85574,52.59554 +-3.264145,52.002706 +-3.060834,52.34791 +-3.206571,52.573962 +-3.29447,52.511655 +-3.048118,52.343465 +-3.622145,51.951238 +-3.148982,52.660993 +-3.392771,51.996327 +-3.345596,52.666556 +-3.23398,52.528457 +-3.717811,52.56013 +-3.337656,52.799117 +-3.298259,52.665026 +-3.460629,51.834467 +-3.471284,51.864357 +-3.219889,51.839198 +-3.474303,52.254929 +-3.28296,52.664185 +-3.502039,52.455887 +-3.194284,51.902769 +-3.457251,51.829204 +-3.076745,52.277684 +-3.229788,52.559895 +-3.087099,52.270729 +-3.393496,52.156911 +-3.387088,52.226307 +-3.31959,52.655449 +-3.480094,51.872159 +-3.393513,52.156992 +-3.405563,52.193766 +-3.49607,51.890462 +-3.388186,52.151633 +-3.323965,52.336263 +-3.288726,52.511223 +-3.462093,51.836661 +-3.140962,52.628428 +-3.693662,52.366524 +-3.400663,51.953767 +-3.468633,51.82355 +-3.135174,52.664498 +-3.140177,52.657878 +-3.319259,52.506832 +-3.627296,52.611676 +-3.199674,52.304109 +-3.789837,52.606921 +-3.317209,52.511692 +-3.284127,51.99847 +-3.233548,51.883275 +-3.235838,52.811953 +-3.542428,52.566672 +-3.120888,51.848734 +-3.24842,51.8946 +-3.410333,51.945676 +-3.345735,52.414146 +-3.450333,52.856805 +-3.312139,52.812267 +-3.32112,52.500626 +-3.337796,52.366568 +-3.401342,51.945235 +-3.16427,52.629846 +-3.114227,52.322199 +-3.31385,52.513222 +-3.539281,52.331953 +-3.106843,52.672138 +-3.127031,51.853441 +-3.236949,52.549662 +-3.313679,52.810686 +-3.233023,51.874694 +-3.56346,51.866756 +-3.879234,52.579049 +-3.316881,52.512568 +-3.437086,52.481931 +-3.18835,52.665127 +-3.293775,52.775933 +-3.27242,52.536429 +-3.309822,52.51403 +-3.610811,51.952095 +-3.696424,51.801691 +-3.14774,52.562751 +-3.066264,52.30939 +-3.591607,52.598109 +-3.49408,52.455133 +-3.226302,52.64961 +-3.353768,52.507377 +-3.376123,52.248581 +-3.251044,52.238276 +-3.326779,52.08514 +-3.634092,52.109935 +-3.37233,52.158867 +-3.514094,52.457234 +-3.440923,52.289543 +-3.172535,51.874692 +-3.855901,52.598649 +-3.13609,51.858047 +-3.341605,52.485866 +-3.153336,52.638269 +-3.334381,52.50749 +-3.314149,52.708633 +-3.047217,52.312797 +-3.752529,51.787982 +-3.166912,52.236701 +-3.091929,52.682543 +-3.317859,52.509788 +-3.168411,52.693195 +-3.352859,52.507531 +-3.419972,52.149654 +-3.779157,51.767908 +-3.34454,52.453152 +-3.562577,52.139093 +-3.287379,52.769682 +-3.152082,52.63776 +-3.329325,52.637171 +-3.635406,52.306367 +-3.433516,52.676691 +-3.509888,52.300181 +-3.288649,52.008824 +-3.460054,52.532483 +-3.3634,52.12209 +-3.075175,52.280054 +-3.337773,52.274861 +-3.224658,51.850729 +-3.293207,52.554949 +-3.166957,51.871888 +-3.545637,52.32778 +-3.166566,52.626722 +-3.104904,51.840425 +-3.376762,52.819059 +-3.319654,52.470847 +-3.33795,52.274877 +-3.312785,52.543226 +-3.58916,52.406682 +-3.361678,52.133178 +-3.400094,51.941582 +-3.390403,51.947172 +-3.225275,51.841345 +-3.742284,52.624812 +-3.237599,52.504064 +-3.424387,52.510477 +-3.509414,52.300906 +-3.703533,52.611188 +-3.287681,52.663838 +-3.313561,52.658519 +-3.208125,52.030033 +-3.223913,52.564523 +-3.295297,52.523244 +-3.320427,52.554631 +-3.064694,52.302059 +-3.284697,52.046864 +-3.232077,52.650467 +-3.189879,52.602198 +-3.253781,52.75849 +-3.308925,52.514112 +-3.192821,52.592558 +-3.52871,52.134969 +-3.675597,51.789194 +-3.3699,52.256277 +-3.490675,51.874094 +-3.166957,51.871897 +-3.214664,52.009916 +NULL,NULL +-3.30894,52.514103 +-3.451998,52.23904 +-3.312951,52.54878 +-3.147596,52.150372 +-3.084279,52.686047 +-3.127767,52.638129 +-3.778116,51.775342 +-3.517145,52.552335 +-3.136969,51.858929 +-3.213495,52.56873 +-3.420187,52.51229 +-3.454708,52.278882 +-3.438091,52.678605 +-3.230649,52.558538 +-3.379406,52.240127 +-3.0355,52.74215 +-3.339689,51.938149 +-3.371204,51.941212 +-3.122116,52.71636 +-3.245142,51.908473 +-3.402472,52.147625 +-3.116671,52.67245 +-3.618631,52.608612 +-3.669132,51.848516 +-3.146807,52.657553 +-3.469731,52.690938 +-3.351199,51.946478 +-3.777328,51.771163 +-3.831336,52.591344 +-3.273742,52.280676 +-3.346385,52.424865 +-3.15231,51.867699 +-3.365179,52.519959 +-3.636695,51.953195 +-3.171621,51.874153 +-3.382851,52.517155 +-3.191095,52.217219 +-3.484888,52.454422 +-3.28816,52.007534 +-3.415074,52.238491 +-3.07609,52.278499 +-3.219406,52.649852 +-3.567993,51.956926 +-3.162238,55.928973 +-3.137465,55.906678 +-4.297283,55.880466 +-4.248553,55.859797 +-2.439462,55.533447 +-3.136743,55.947056 +-4.349884,55.829088 +-4.216091,55.864448 +-4.978253,55.08617 +-4.325161,55.84747 +-3.393044,56.133572 +-4.105931,57.510387 +-2.123206,57.177961 +-5.271219,56.102736 +-3.98315,55.755071 +-4.789277,56.889427 +-3.217789,56.149962 +-4.401217,55.545927 +-3.877356,55.78373 +-4.111718,55.854511 +-4.22897,55.858832 +-3.848356,56.13537 +-4.378795,55.737144 +-3.374699,56.312343 +-3.209178,55.924729 +-4.440255,55.846022 +-2.540282,56.692766 +-4.225774,55.866098 +-3.233992,55.978351 +-2.928907,56.427412 +-4.19832,55.855132 +-2.996369,56.480563 +-2.94499,56.499221 +-3.107036,55.014746 +-4.018985,55.865908 +-3.44565,55.300842 +-2.743482,56.496727 +-3.203001,55.965027 +-3.643075,55.432987 +-4.456359,55.895639 +-2.925949,56.426446 +-3.159705,55.877905 +-4.207455,55.882093 +-4.47457,55.877675 +-3.158082,55.97367 +-3.782306,55.598024 +-4.26677,55.869393 +-4.478785,55.60907 +-4.357351,55.884911 +-2.955822,58.952813 +-3.240689,55.916212 +-3.330031,55.972141 +-3.167385,55.921808 +-3.047151,55.872822 +-3.107169,55.871902 +-3.20771,55.971154 +-4.215187,55.817694 +-3.181425,55.978282 +-3.363152,55.93022 +-3.535106,55.836575 +-2.991217,55.884221 +-4.728131,55.645716 +-4.167422,55.762491 +-3.798302,57.57642 +-4.139578,56.132969 +-3.100748,56.152246 +-4.174052,55.765043 +-3.611688,55.06339 +-4.244901,55.835004 +-4.370593,55.908268 +-3.542706,55.902258 +-3.061254,56.530123 +-4.020243,55.852273 +-4.529829,55.399655 +-4.230245,55.882194 +-3.95146,55.954071 +-4.681223,55.640809 +-3.170973,56.125436 +-4.31748,55.863883 +-3.921793,57.759878 +-3.471953,56.442482 +-4.228293,55.840321 +-4.381635,55.810133 +-3.504566,55.918168 +-3.184322,55.958217 +-3.599598,55.100254 +-2.939626,56.548316 +-4.334518,55.893732 +-4.666957,55.925788 +-3.816813,54.920266 +-4.248035,56.858593 +-4.26822,55.870679 +-4.19023,55.877763 +-2.731789,56.725082 +-2.582754,55.50166 +-3.076601,55.872083 +-2.90571,56.394189 +-4.195694,55.766914 +-3.432417,56.397084 +-3.21959,57.634843 +-4.495508,55.60661 +-3.210866,56.139688 +-2.115295,57.149969 +-4.205871,55.862628 +-4.179946,55.872257 +-3.872948,56.083769 +-4.220272,55.813369 +-4.629754,55.405186 +-3.063425,56.364967 +-4.437561,55.84586 +-3.752218,55.991995 +-2.172266,57.522041 +-1.802774,57.494878 +-1.775218,57.510578 +-3.544414,55.919076 +-3.812003,56.027571 +-2.708065,56.501552 +-4.369992,55.818654 +-2.878962,56.646041 +-3.033996,56.477829 +-3.313163,55.047844 +-4.28409,55.886419 +-3.048739,55.942958 +-4.208501,55.853494 +-3.326033,56.161822 +-5.02321,55.80709 +-3.168242,55.968389 +-3.240364,55.915541 +-4.71373,55.725838 +-3.314456,55.923453 +-4.340787,55.49555 +-2.961984,56.469783 +-3.173776,56.19526 +-3.775172,55.673715 +-5.129351,56.678081 +-3.165472,55.973232 +-3.442965,55.986748 +-3.796556,56.012178 +-4.05219,55.823974 +-4.144979,57.475387 +-3.175639,55.972955 +-3.126377,55.903815 +-3.153347,55.963174 +-3.783142,55.997842 +-3.313725,55.926444 +-3.114426,55.933836 +-3.514925,55.904795 +-4.332291,55.877938 +-3.313995,55.926387 +-4.417106,55.790925 +-3.825881,56.023753 +-3.783833,56.002047 +-3.829068,55.825239 +-2.141691,57.15464 +-4.262918,55.858958 +-4.208015,55.868314 +-3.011785,55.939843 +-4.301899,55.818249 +-4.061529,55.092339 +-2.467945,56.722319 +-3.775982,55.975983 +-3.313826,55.949779 +-2.181539,57.237798 +-2.346214,57.382498 +-4.156358,55.772554 +-4.508935,55.825469 +-4.303476,55.821446 +-4.509322,55.77866 +-2.922267,56.477245 +-4.343071,55.782437 +-3.737046,56.288003 +-4.164593,55.848011 +-3.086833,55.901951 +-3.026657,55.902305 +-3.197022,55.952964 +-2.879221,56.644548 +-3.265047,55.931608 +-2.980905,55.956392 +-3.86481,56.619682 +-2.95704,56.46815 +-2.96276,56.462616 +-4.259731,55.455585 +-4.630771,55.615071 +-2.93355,56.491122 +-3.606994,55.900007 +-4.233195,55.890121 +-2.551886,56.709182 +-4.556943,55.824893 +-4.301155,55.8878 +-4.425085,55.602163 +-3.047666,55.842663 +-2.470579,56.712085 +-5.875947,56.520119 +-3.477116,56.407055 +-3.94758,56.098322 +-2.893943,56.488548 +-3.358015,56.525203 +-3.626379,55.976008 +-3.16091,55.957335 +-4.170282,55.861796 +-3.30018,55.933462 +-3.213091,55.940362 +-3.896154,55.778705 +-3.19618,55.980728 +-4.219536,55.767636 +-3.718088,55.106764 +-4.446855,55.844273 +-3.291389,57.64703 +-3.003215,56.19624 +-3.255652,57.692621 +-3.212371,55.833728 +-2.891566,56.485501 +-3.322783,55.093231 +-3.231202,55.972745 +-4.329576,55.891858 +-2.890169,56.359908 +-4.040264,55.771508 +-4.756698,55.943469 +-4.573643,55.855788 +-3.125384,55.913177 +-4.303298,55.821395 +-4.072358,55.87417 +-4.350411,55.88437 +-4.477326,55.880775 +-4.345456,55.84544 +-5.109642,56.819943 +-4.533631,55.566961 +-4.029661,55.777319 +-2.373037,57.282146 +-3.816496,56.026543 +-4.333665,55.919471 +-3.919685,56.073776 +-2.33078,57.242263 +-4.066444,55.90877 +-3.842805,55.607743 +-3.5512,55.611276 +-1.775707,57.504229 +-3.373363,55.913456 +-3.272512,55.962531 +-3.563047,56.00109 +-4.368071,56.028714 +-4.290643,55.821749 +-3.695698,55.885292 +-2.936667,57.148078 +-3.15375,56.143919 +-3.048177,55.880631 +-3.042611,56.290938 +-3.02979,56.318198 +-3.974038,55.835229 +-4.215393,55.849676 +-4.300358,55.870559 +-3.473342,55.912138 +-4.108155,55.855102 +-3.453711,55.311935 +-4.24218,55.825185 +-2.054118,57.335435 +-3.22716,55.939737 +-4.196968,55.88326 +-4.681064,57.14352 +-3.091069,55.868254 +-4.888732,54.87565 +-3.661713,55.88058 +-2.649319,55.982827 +-2.837376,55.578386 +-3.229627,55.982187 +-3.58468,55.983462 +-2.988673,56.495565 +-4.270783,55.863648 +-4.288472,55.816594 +-3.182922,55.974809 +-4.486592,55.630044 +-2.728204,55.596596 +-2.693433,56.008311 +-3.963926,55.381656 +-4.266787,55.83374 +-6.193994,56.080729 +-2.382119,57.284634 +-3.052834,55.942213 +-4.098415,55.781107 +-4.533829,55.566831 +-4.764979,55.637645 +-3.60766,55.975993 +-3.200784,55.960178 +-3.40811,56.458812 +-3.269499,55.933144 +-2.237589,57.297665 +-3.166963,55.924822 +-4.381008,55.457617 +-4.35878,55.815139 +-3.914837,55.755184 +-3.765996,56.032893 +-3.204182,55.940125 +-2.972796,56.666366 +-4.186417,55.871081 +-4.390271,55.878048 +-2.965452,56.466387 +-4.424199,57.566709 +-3.040848,56.372822 +-4.512304,55.595894 +-4.690829,56.021112 +-4.270533,55.859645 +-4.445579,55.662803 +-2.306423,55.774971 +-4.237823,55.798249 +-3.805758,55.560556 +-4.497735,57.35792 +-3.528185,58.590573 +-3.03287,55.937476 +-2.590631,55.525497 +-3.263587,55.925109 +-3.051784,55.896388 +-3.944129,55.990582 +-4.45994,55.343779 +-4.263987,55.864699 +-4.259721,55.856455 +-4.205361,55.869431 +-3.17548,56.162439 +-3.919589,55.773408 +-1.240173,60.292219 +-4.288956,55.862332 +-4.264043,55.839291 +-4.293661,57.515298 +-3.173418,59.001857 +-3.285909,55.961709 +-3.98441,55.783009 +-4.273238,55.854526 +-2.804351,55.617119 +-4.289576,55.894037 +-4.832063,57.61746 +-4.077892,55.87662 +-3.851746,56.066619 +-3.722301,55.998842 +-3.498844,55.931609 +-3.838771,56.152012 +-3.622157,55.828709 +-4.284379,55.827644 +-3.539699,56.372796 +-3.157501,56.13108 +-3.355056,55.936752 +-3.461901,55.036478 +-4.054304,55.803214 +-3.173094,55.958756 +-4.272186,55.835411 +-4.052198,55.802297 +-3.469203,55.934257 +-4.001484,55.861845 +-3.691257,56.227606 +-3.270865,55.926462 +-2.892192,56.591682 +-3.535847,55.963808 +-3.050642,56.204373 +-3.762495,55.986358 +-3.904373,55.886635 +-2.573318,56.571757 +-3.180546,55.957822 +-3.85285,57.171089 +-3.113516,55.922199 +-4.327853,55.452645 +-2.340301,55.771611 +-3.96241,55.867174 +-4.270181,55.862931 +-2.921381,56.481555 +-4.189991,56.236935 +-4.071713,55.781892 +-3.507432,56.116243 +-4.231093,55.88527 +-5.467507,55.814809 +-4.403823,55.553039 +-3.476036,56.406798 +-3.601569,56.198221 +-4.366097,55.89303 +-4.189997,55.85999 +-3.54545,56.059962 +-3.226459,55.974257 +-4.314914,55.870717 +-3.899097,55.778228 +-4.206208,55.76199 +-3.17948,55.939124 +-4.16635,55.835658 +-4.052405,55.82078 +-4.56918,55.943039 +-4.407584,55.331178 +-4.270216,55.858329 +-4.217047,55.858517 +-4.347472,55.84311 +-3.163669,55.958531 +-3.192944,55.874524 +-4.063846,55.542927 +-4.122879,55.622374 +-3.18156,55.945898 +-3.528318,55.983338 +-3.63775,55.87719 +-4.423365,55.84544 +-3.879565,56.016018 +-4.337077,57.540623 +-4.579925,55.92376 +-4.264619,55.861551 +-4.369699,55.911961 +-3.225026,55.9401 +-3.624161,55.87524 +-3.088654,55.88187 +-4.179714,55.743391 +-3.008023,56.384217 +-3.524448,55.071515 +-3.16777,56.197536 +-4.611,55.498955 +-3.50963,55.953331 +-2.590822,56.562907 +-4.107606,57.459243 +-3.963922,55.863573 +-2.633258,57.223495 +-3.778895,55.997535 +-4.46796,55.617486 +-3.14972,56.249288 +-3.923518,56.061711 +-4.334516,55.863076 +-4.257708,55.885108 +-3.610632,55.887064 +-3.142048,55.898234 +-2.097127,57.166953 +-4.205675,55.909051 +-4.306994,55.8299 +-1.284278,60.435892 +-4.266649,55.839611 +-4.234723,55.886373 +-3.165128,55.956998 +-2.953278,55.958388 +-3.51956,55.38034 +-3.964399,55.841359 +-3.46605,55.126038 +-3.439561,55.89338 +-4.541446,54.765081 +-3.085762,55.888778 +-5.469005,56.407545 +-3.255673,55.924354 +-4.210942,55.870868 +-2.1067,57.166883 +-4.173667,55.832276 +-4.616384,55.437833 +-3.287296,55.922913 +-3.146484,55.904411 +-2.179549,57.145303 +-4.18581,55.775745 +-4.32143,55.914534 +-4.214204,55.848709 +-2.841397,55.506068 +-4.206791,55.827003 +-5.172513,57.156709 +-2.96473,56.46544 +-4.292142,55.459179 +-2.842393,57.473147 +-2.94239,56.47952 +-4.280363,55.863498 +-2.58303,57.662143 +-3.20085,55.953519 +-2.28043,57.194605 +-2.338622,56.911625 +-3.529601,55.396355 +-4.369785,55.863273 +-3.382972,55.978396 +-3.144173,55.955191 +-2.835601,55.935351 +-4.286371,55.879519 +-5.017485,54.903399 +-3.269575,56.280723 +-2.926969,56.357707 +-4.861521,55.684871 +-3.465433,55.922171 +-4.202777,55.898866 +-3.0309,56.47144 +-2.89223,56.488911 +-2.56227,55.98888 +-3.805704,55.855034 +-3.054252,55.893051 +-3.39447,56.286613 +-3.173587,56.198038 +-3.310208,55.924199 +-3.0736,55.932401 +-3.889197,55.6487 +-4.05646,55.851636 +-3.211129,55.93392 +-4.253704,55.764659 +-4.588391,55.957558 +-4.05663,55.972382 +-4.445833,55.601625 +-3.759741,55.879451 +-4.475639,57.523639 +-3.525994,55.876658 +-4.345775,55.822102 +-2.594116,56.569575 +-3.948582,57.311647 +-4.029711,55.868401 +-4.24417,55.828681 +-2.623077,55.562877 +-2.060526,57.26224 +-3.160559,55.886173 +-4.262973,55.841207 +-3.122917,55.957327 +-4.011545,55.794925 +-5.14831,56.676902 +-3.055327,55.890247 +-4.418189,55.851617 +-3.356314,56.498976 +-3.26255,55.929648 +-3.478768,55.059371 +-4.38355,55.61859 +-4.447008,54.875074 +-3.038377,55.827314 +-3.313572,56.124603 +-3.892351,55.650836 +-3.949182,56.093444 +-4.363233,55.89038 +-3.994071,55.789818 +-3.838881,56.13207 +-3.007273,56.490717 +-3.936784,55.814064 +-3.310135,55.615113 +-4.345515,55.851461 +-4.023905,55.818233 +-2.967965,55.092821 +-3.198011,55.980333 +-3.091493,55.900436 +-2.451229,55.61049 +-4.343285,55.520534 +-2.999927,56.470768 +-3.041063,55.847185 +-5.039561,55.992581 +-3.185933,55.944373 +-2.19488,56.981041 +-3.937826,56.098754 +-4.352928,55.93308 +-4.256498,55.840014 +-3.603152,56.017298 +-2.855758,55.952922 +-2.879189,56.467827 +-3.180193,55.975176 +-4.433697,54.946184 +-2.939826,55.770626 +-5.453526,55.833967 +-2.465251,55.705996 +-4.190079,55.860312 +-4.054339,55.778724 +-3.567246,55.852758 +-3.902,55.357677 +-3.883121,57.579883 +-3.178163,55.941617 +-4.606017,55.524913 +-3.033711,56.475711 +-4.300998,55.835971 +-4.280725,55.862044 +-4.793494,55.687248 +-4.394026,56.355461 +-3.960529,55.71236 +-3.08402,54.996962 +-3.24587,55.967476 +-4.29367,55.809163 +-3.172563,56.076181 +-3.181068,55.964996 +-3.812215,55.730913 +-4.433653,54.794701 +-3.562348,56.550161 +-3.407884,55.527536 +-3.196905,55.951788 +-3.959852,55.968936 +-2.55466,55.468256 +-2.179234,57.186113 +-4.685675,55.754257 +-4.317778,55.887389 +-3.301969,55.918086 +-3.199711,56.194867 +-3.056796,55.941891 +-2.56845,56.566192 +-4.230224,55.81602 +-3.014576,56.649753 +-4.376251,55.90397 +-3.212716,55.94015 +-3.46826,55.124726 +-3.007315,56.490456 +-3.171891,55.964527 +-4.079055,57.517769 +-3.206728,55.904087 +-3.871266,56.012936 +-3.488795,55.927947 +-3.841076,55.738078 +-3.380599,58.304342 +-3.144475,56.129125 +-3.61449,55.891408 +-4.177605,55.84415 +-3.599947,55.072515 +-2.972782,56.464236 +-5.608144,55.427676 +-2.529966,55.997819 +-4.404109,55.920326 +-3.213611,55.912447 +-4.211066,55.861519 +-3.270957,58.987724 +-2.635969,55.720784 +-2.886334,56.642611 +-4.285923,55.825387 +-4.480807,55.931307 +-5.093634,56.254069 +-3.485974,56.122029 +-3.273974,55.931938 +-3.190966,55.981066 +-3.259048,55.929738 +-3.251978,55.90855 +-4.347402,55.822089 +-3.168002,55.957223 +-3.28025,59.101597 +-3.438852,56.395437 +-3.558694,56.062617 +-5.466939,56.171115 +-3.200848,55.890306 +-3.05954,55.840072 +-4.006089,55.938419 +-2.310284,57.188948 +-3.315976,55.940456 +-3.785034,55.268842 +-4.234057,55.828865 +-3.433292,55.145408 +-3.256034,55.966187 +-4.261935,55.864575 +-2.069269,55.83733 +-3.29319,55.942278 +-2.929816,56.469255 +-4.387843,55.873664 +-4.651983,55.919847 +-7.353562,57.479768 +-4.425136,55.911528 +-5.525179,56.213575 +-4.022394,55.846324 +-4.222288,57.47758 +-3.335412,55.893431 +-2.536233,55.99542 +-4.450264,55.858083 +-3.179464,55.939125 +-4.279175,55.863143 +-4.122891,55.869255 +-4.15478,55.871001 +-3.17556,55.93971 +-4.331177,55.846557 +-3.598412,55.893954 +-2.989706,55.138792 +-3.26233,54.982328 +-3.517181,55.90315 +-3.20853,55.957892 +-4.230204,55.754285 +-3.470609,55.325752 +-4.264716,55.895881 +-4.564783,55.968585 +-3.273889,55.968376 +-4.33147,55.863708 +-3.819706,56.025875 +-3.076383,55.916733 +-2.937413,55.905722 +-3.539144,55.880161 +-3.966323,55.803853 +-3.213508,55.951122 +-4.004955,55.860674 +-3.807683,55.819894 +-3.837746,55.67638 +-3.114539,55.935551 +-2.747421,55.603264 +-5.073172,56.663994 +-3.505063,55.632834 +-3.270104,55.926183 +-4.379762,57.568921 +-4.383096,54.798753 +-2.514299,55.987966 +-4.129487,55.868575 +-3.194597,55.943418 +-2.895199,56.64376 +-3.887191,56.001326 +-3.557722,55.912538 +-2.119422,57.143129 +-3.963705,55.86497 +-3.651651,55.894356 +-3.100496,55.933125 +-2.434127,57.338542 +-3.147629,56.13889 +-3.057949,55.945431 +-4.412511,55.88218 +-3.23024,55.938394 +-3.183859,56.115528 +-4.085027,55.958667 +-4.256322,55.834489 +-4.297082,55.472038 +-4.354109,55.845895 +-2.097115,57.14993 +-3.073358,55.940427 +-2.970674,55.849611 +-4.646912,55.608071 +-3.065765,57.616929 +-4.666106,55.604977 +-4.513122,55.836897 +-3.326118,55.094579 +-2.791902,56.685895 +-3.218212,55.970376 +-3.19692,55.952794 +-4.226725,55.883552 +-3.999558,55.791373 +-3.500129,56.594227 +-3.135252,55.862139 +-4.179277,55.394822 +-3.655946,55.046089 +-5.121591,54.924233 +-4.172719,55.819854 +-3.298485,56.120396 +-3.230605,55.899438 +-3.618128,55.896213 +-2.931111,56.477745 +-4.411532,55.843192 +-5.487106,56.878454 +-4.358625,55.864791 +-4.270453,55.859646 +-4.198358,55.871642 +-3.478354,55.892902 +-3.605703,55.890049 +-4.361914,55.775982 +-3.20517,55.945121 +-3.352584,56.096237 +-4.319408,55.808285 +-3.279305,55.924209 +-4.345025,55.783379 +-4.58825,55.526045 +-4.451064,57.602152 +-3.186113,55.951317 +-4.256024,55.863246 +-4.33132,55.865212 +-3.178376,55.354001 +-4.024246,55.841081 +-4.367201,55.88332 +-4.454465,56.058436 +-3.950694,55.81104 +-4.675214,55.614675 +-4.585999,55.054209 +-3.509458,55.40685 +-2.875996,56.329084 +-3.962023,55.948816 +-2.579525,56.783613 +-4.248304,55.850517 +-3.183546,55.925985 +-3.188741,55.957644 +-2.435002,55.594357 +-4.981824,55.076041 +-5.002352,58.224994 +-4.409788,55.857858 +-4.960031,54.900319 +-4.160351,55.964631 +-5.02646,54.901989 +-3.509662,55.95333 +-4.262455,55.843014 +-2.86829,57.080224 +-3.326763,55.97028 +-2.98103,56.475087 +-3.212653,55.865849 +-3.432294,56.393366 +-3.23002,55.943599 +-4.302405,55.85437 +-3.967184,55.753234 +-4.171561,55.852354 +-3.599327,55.89015 +-4.21038,55.828907 +-4.268084,55.896026 +-3.236822,55.936954 +-2.916686,56.489514 +-3.126981,56.442923 +-2.920885,56.468459 +-4.612971,55.536099 +-4.283315,55.872683 +-3.131017,58.459738 +-4.249884,55.858766 +-3.606064,56.012093 +-4.366641,55.892247 +-4.253295,55.864977 +-6.197788,57.34461 +-3.291286,55.922584 +-5.543816,57.33306 +-4.469554,55.347963 +-4.379095,55.874391 +-4.154531,55.837079 +-4.010976,55.928903 +-4.243967,57.769612 +-4.013983,55.943349 +-4.203819,55.891289 +-2.94442,56.529197 +-4.359419,56.120435 +-2.655928,56.733213 +-3.359444,56.540111 +-2.134426,57.133996 +-2.267893,57.142935 +-2.939614,55.962303 +-2.578326,59.286033 +-3.883293,55.035215 +-4.107444,55.762861 +-3.177199,56.301682 +-4.330817,55.84668 +-4.244347,55.856135 +-4.23275,55.874015 +-4.166675,55.851551 +-3.792455,56.117161 +-4.490952,55.874577 +-5.880985,57.085661 +-4.848175,55.147493 +-4.340214,55.833973 +-3.988405,55.958279 +-3.764073,56.144394 +-3.806573,55.684274 +-4.199709,55.858514 +-3.919944,56.112243 +-3.262534,55.92963 +-2.837833,55.641524 +-3.001266,56.482185 +-3.920451,56.078842 +-5.056076,55.833543 +-3.196449,55.95101 +-4.326349,55.881232 +-4.341208,55.805616 +-2.805987,57.450883 +-4.39003,55.761427 +-3.227108,55.928982 +-4.502217,55.849397 +-4.247777,55.852172 +-4.045793,57.802356 +-3.536433,55.895318 +-2.602547,56.797518 +-3.189826,55.930893 +-4.709815,56.042178 +-2.126659,57.143077 +-4.239052,55.865192 +-2.819083,55.479109 +-4.865335,55.799529 +-4.06258,55.845944 +-3.980365,56.318498 +-3.203545,55.942818 +-2.897242,55.734149 +-3.014691,56.649779 +-2.610671,56.762496 +-3.648941,55.901726 +-3.154726,56.195772 +-3.147966,56.133981 +-4.723204,55.751174 +-4.880297,55.936487 +-3.183983,55.945012 +-4.407281,57.551596 +-4.516176,55.834983 +-4.170787,55.749041 +-3.823574,57.215085 +-3.210058,55.935503 +-4.354446,55.808931 +-4.276442,55.86695 +-2.368211,57.164303 +-4.283063,55.873289 +-3.191313,55.973587 +-3.590294,55.890582 +-4.07676,55.976314 +-3.212799,55.9474 +-4.866128,55.910318 +-3.585135,55.063523 +-4.328947,55.82262 +-3.210562,55.959867 +-3.634037,56.009766 +-3.445674,56.409564 +-4.476992,55.596756 +-4.627578,55.466609 +-4.369738,55.863292 +-3.489593,55.909535 +-4.204654,55.41041 +-3.997872,55.942722 +-3.332515,56.592919 +-3.190281,55.974926 +-4.054408,55.922308 +-3.403984,56.34561 +-2.791515,55.961915 +-2.458897,55.558849 +-3.47766,56.4073 +-3.624177,55.876004 +-4.801987,54.877234 +-3.26009,55.909096 +-2.998955,57.556553 +-4.392541,57.561832 +-2.329694,57.155868 +-4.274021,55.849874 +-4.678245,55.730734 +-3.184914,55.979156 +-3.893635,56.077603 +-4.584253,54.761776 +-3.531053,55.084931 +-4.210212,55.838329 +-3.205801,55.950479 +-3.161681,55.890026 +-3.965208,56.132209 +-4.180336,55.844434 +-2.999051,56.192887 +-3.675393,55.940935 +-3.172245,55.941278 +-3.979674,55.914016 +-4.049163,54.836789 +-3.449945,56.404248 +-2.96014,56.463616 +-3.186525,55.948051 +-2.520443,56.001463 +-2.963446,55.955712 +-3.381334,55.114788 +-4.259089,55.8907 +-3.102991,55.943203 +-3.594126,55.086809 +-4.363624,55.882877 +-3.416701,55.715283 +-3.963337,55.867169 +-3.962662,57.978845 +-3.303213,55.919403 +-4.241448,55.859082 +-2.911191,55.972966 +-3.387301,56.058976 +-4.140547,55.80958 +-3.292395,54.98523 +-4.224762,55.88277 +-2.27273,55.837424 +-4.104415,57.510735 +-4.243706,55.856659 +-4.326946,55.854869 +-3.606376,55.976702 +-2.132934,57.141813 +-3.1599,55.928384 +-4.305616,55.469163 +-3.200408,56.18415 +-2.650604,56.602848 +-4.45922,55.888274 +-4.230752,55.768062 +-4.023645,55.843346 +-3.044782,56.498709 +-4.207415,55.848157 +-3.863441,56.005686 +-4.166772,55.851567 +-3.939511,56.101891 +-3.501736,56.180164 +-4.170234,56.189474 +-4.303718,55.821217 +-3.186977,55.949188 +-3.241628,56.411047 +-2.984954,56.478039 +-5.036974,54.99512 +-2.503777,57.051407 +-3.757526,55.51519 +-3.965604,55.80985 +-3.303567,55.918968 +-2.743926,55.598074 +-4.293688,57.679641 +-2.212788,57.189654 +-4.101292,55.85495 +-3.156801,56.180648 +-4.244555,55.855861 +-3.25135,55.960547 +-3.670535,55.972758 +-3.316056,55.917802 +-3.168768,55.928417 +-5.199707,56.855752 +-4.266123,55.865694 +-3.139392,55.903659 +-2.231478,55.857078 +-4.299456,55.825278 +-4.497484,55.607963 +-3.151465,56.11702 +-2.91084,58.861971 +-3.250453,55.922295 +-4.271227,55.931999 +-3.281722,55.978978 +-3.652345,55.815852 +-3.69687,55.502808 +-4.269855,55.814054 +-4.533715,55.821266 +-3.24761,55.967279 +-4.276341,55.789273 +-3.171979,55.931397 +-4.133689,57.405602 +-3.280778,55.942651 +-4.009022,55.979899 +-4.754755,55.638019 +-3.647823,55.906296 +-3.043663,57.443803 +-3.488154,55.204594 +-3.051272,55.942487 +-3.126994,55.942716 +-2.927034,56.477668 +-3.477502,55.826291 +-3.470243,55.930453 +-3.182675,55.97881 +-3.206079,55.947053 +-3.048882,55.881317 +-4.246895,55.82305 +-2.984683,56.463783 +-3.042727,55.899771 +-3.800214,55.998061 +-1.94658,57.611559 +-3.899088,56.235319 +-3.010346,56.317181 +-1.980766,57.431533 +-3.399166,56.093903 +-4.828636,57.016796 +-3.240157,55.842886 +-3.406014,55.946047 +-3.284527,55.929681 +-3.209073,55.947562 +-3.411876,55.234259 +-5.713804,56.845487 +-4.06363,55.543955 +-3.11503,55.953167 +-2.544256,55.505234 +-2.929269,56.488073 +-4.306391,55.876863 +-2.912131,56.470258 +-4.403961,57.935082 +-3.326373,57.228634 +-3.233526,55.962694 +-3.209434,55.927827 +-3.591859,55.844058 +-3.229465,55.960929 +-3.185077,55.954112 +-3.879768,57.581352 +-4.622494,55.604578 +-4.161714,55.875544 +-3.427954,56.03656 +-4.064427,56.193641 +-3.259332,57.698585 +-3.293467,55.942913 +-4.264723,55.454099 +-2.084243,57.115032 +-4.448669,55.857872 +-3.983075,55.8148 +-3.038538,56.177628 +-4.228118,57.498538 +-4.531732,55.823923 +-3.049712,56.472549 +-4.274821,55.860284 +-3.259905,56.284794 +-3.460555,56.40752 +-4.335296,55.852635 +-2.174069,55.768688 +-3.689846,55.870564 +-4.05722,55.801009 +-3.41429,55.957391 +-3.831487,56.015744 +-4.701687,56.233429 +-4.353166,57.53929 +-3.808584,57.255949 +-4.310873,55.868088 +-3.675378,55.940971 +-3.20465,55.971678 +-3.258196,55.960738 +-2.969278,56.468136 +-4.208049,55.862705 +-3.606418,55.069437 +-4.189594,55.760768 +-3.195024,55.939073 +-2.757841,57.197401 +-4.239875,55.84757 +-2.48484,55.980439 +-4.30279,55.870864 +-4.570086,55.982559 +-4.559707,55.957726 +-3.188027,56.13699 +-2.953687,55.952895 +-2.941276,55.97203 +-2.465868,57.411512 +-4.470691,55.822154 +-3.051962,55.623638 +-4.618163,55.614163 +-6.158641,57.296488 +-2.148267,57.174422 +-3.04396,56.468222 +-2.388099,57.279172 +-3.430673,56.798352 +-4.615286,55.774913 +-4.150682,55.870902 +-3.17152,56.443885 +-4.624737,55.606778 +-3.386505,56.085123 +-4.539089,56.03819 +-4.192234,55.851772 +-3.280496,55.962251 +-3.614315,55.069907 +-2.555516,55.680605 +-5.028763,54.900871 +-2.454872,57.058413 +-3.280371,55.949259 +-3.242477,55.956099 +-4.143906,55.891799 +-2.141004,57.160731 +-3.203185,55.95081 +-3.727029,55.9132 +-3.980148,55.950297 +-4.347322,55.926168 +-3.174617,55.856163 +-4.044937,55.795291 +-5.577218,57.813691 +-4.119439,55.850478 +-4.461608,54.858095 +-2.896593,55.98399 +-3.839787,54.926545 +-4.280687,55.857578 +-4.096478,55.037544 +-2.637991,56.691279 +-4.042553,55.140906 +-3.307277,55.963093 +-4.153241,55.755065 +-3.589627,58.150928 +-3.794242,55.818491 +-3.515012,56.409239 +-4.808419,55.647067 +-4.47518,55.93018 +-4.190072,55.80708 +-4.326258,55.845769 +-4.035426,55.779326 +-3.833876,55.817844 +-4.35071,55.60434 +-3.935445,56.080782 +-3.125033,55.903252 +-2.901747,55.544628 +-2.940534,55.771538 +-3.367771,55.937753 +-2.174038,57.206934 +-5.079803,56.670634 +-3.312782,57.621872 +-3.367599,55.987365 +-2.98633,56.487255 +-5.054173,55.821697 +-3.156689,56.127107 +-3.294595,55.947907 +-4.186326,55.859507 +-4.216238,55.828316 +-3.182997,55.968878 +-4.467274,55.63082 +-4.256959,55.838585 +-4.297712,55.851465 +-3.693773,55.860175 +-3.14612,56.168213 +-3.950077,55.814654 +-3.989094,55.78731 +-4.376463,55.989771 +-3.09255,55.899339 +-3.20723,55.971176 +-4.403909,54.991542 +-3.172319,55.890734 +-3.20749,55.953284 +-4.26685,55.852657 +-3.823697,57.215227 +-3.759941,55.420244 +-4.496749,55.611887 +-4.191843,55.884825 +-3.928606,56.76948 +-4.406152,55.918929 +-4.297371,55.870057 +-4.213569,55.844856 +-2.425917,57.237754 +-4.517299,55.596061 +-5.304036,56.535744 +-5.444789,56.441889 +-4.049918,55.757399 +-3.249983,55.922615 +-2.926173,56.477638 +-3.980697,57.527806 +-2.931959,56.446769 +-3.913773,55.683009 +-3.25662,55.929897 +-4.684536,55.726543 +-4.753548,55.636896 +-4.262999,55.835059 +-3.483167,55.892898 +-4.217831,55.811984 +-3.780364,55.676695 +-4.647758,55.545473 +-3.491969,56.38781 +-2.882659,56.476778 +-3.935502,55.774722 +-3.902659,55.777373 +-4.364348,55.841394 +-3.685404,55.899372 +-4.507541,54.963398 +-3.141925,56.134297 +-3.579598,55.849284 +-4.653511,55.621142 +-3.113214,55.883187 +-5.025322,54.859789 +-4.050791,55.77828 +-3.247834,54.990566 +-3.17562,55.972875 +-4.27662,55.858804 +-2.968085,56.461443 +-2.926956,56.556318 +-4.220873,55.991523 +-4.468325,55.665458 +-3.289295,55.919028 +-4.125205,55.857766 +-4.025901,55.850787 +-3.195242,55.963305 +-4.753597,56.203674 +-3.178338,55.94157 +-4.389235,55.877592 +-4.318659,55.822257 +-3.433039,56.399845 +-4.788831,55.945964 +-6.214639,57.425602 +-4.294289,55.863059 +-4.229861,55.868531 +-4.345038,55.827365 +-4.416771,55.845237 +-2.78687,55.955646 +-3.966896,55.728506 +-3.266794,55.90714 +-3.17641,55.89118 +-3.075092,55.940035 +-3.920281,57.575981 +-3.161758,55.9573 +-4.225832,55.993546 +-2.179753,57.190802 +-2.91759,55.556677 +-3.8693,57.585982 +-3.766397,55.856341 +-4.109151,55.85344 +-5.456099,56.431326 +-3.293025,55.942595 +-4.153513,55.849562 +-3.190315,55.953083 +-4.186716,55.815822 +-5.571289,57.798711 +-2.75106,56.322025 +-3.330458,55.97104 +-2.129183,57.146371 +-3.586957,56.560542 +-4.630961,55.465619 +-3.190065,55.869214 +-3.722657,56.018382 +-3.287864,55.916402 +-4.503169,55.764791 +-4.255151,55.856737 +-3.250684,55.9682 +-3.563812,55.904058 +-2.204302,57.219878 +-3.698728,55.888027 +-4.375439,55.60318 +-4.085653,55.856196 +-3.300446,55.959068 +-3.364931,55.945763 +-3.072054,55.85842 +-4.310477,55.802998 +-2.903854,56.475071 +-1.798444,57.502686 +-4.262464,55.858832 +-2.650957,55.468348 +-3.522077,55.88359 +-3.178264,55.868995 +-3.978481,55.783411 +-4.129086,57.432708 +-4.590632,55.801088 +-3.230623,55.938364 +-2.936234,56.48404 +-4.278383,55.831863 +-4.189501,55.888372 +-5.098329,58.248638 +-4.299869,55.794398 +-3.442129,55.926822 +-4.515054,55.612816 +-3.970851,55.808831 +-4.271205,55.871972 +-4.576756,55.989323 +-3.386336,56.117087 +-2.202358,57.146167 +-3.684993,55.871448 +-2.108863,57.126385 +-3.083594,56.194223 +-3.846363,55.023351 +-4.551232,55.612347 +-4.468285,55.635528 +-4.471533,54.731415 +-4.563816,55.956876 +-4.18151,56.037916 +-3.177838,55.937217 +-4.687949,55.654531 +-3.995953,55.886424 +-1.812953,57.507586 +-4.311266,55.811737 +-2.893639,55.974757 +-3.023686,56.191508 +-2.961357,55.969638 +-4.986212,56.103024 +-3.41373,55.988596 +-3.632922,55.080714 +-3.438831,56.123037 +-4.618374,55.519624 +-6.309992,57.45231 +-3.161378,55.898071 +-4.302754,55.783001 +-4.220501,55.866678 +-3.016283,56.528837 +-4.699506,57.623094 +-4.812413,55.645133 +-3.475933,56.384884 +-4.291576,55.868008 +-4.291637,56.391009 +-3.227776,56.420789 +-4.160986,55.845477 +-2.712232,55.565555 +-4.680786,57.145161 +-4.480738,55.837267 +-3.193473,55.956844 +-4.319606,55.779961 +-3.197198,55.953492 +-5.037576,56.235026 +-4.543669,55.9504 +-4.168075,55.851715 +-5.155682,55.577496 +-3.009783,56.478217 +-4.53075,55.598606 +-2.178695,57.105509 +-3.20011,55.958585 +-3.193394,55.964159 +-4.294191,55.869532 +-4.298071,55.848087 +-3.153519,55.925847 +-4.949108,56.403739 +-3.071055,55.88135 +-4.303656,55.821236 +-3.115253,55.871227 +-3.192723,55.952763 +-3.155103,55.902183 +-4.264704,55.853389 +-3.901587,55.777633 +-3.133339,56.136704 +-4.69252,55.653262 +-3.248197,55.977552 +-4.726134,56.015608 +-3.042929,56.173216 +-3.918916,55.365259 +-2.496568,57.669779 +-4.31804,55.772378 +-3.221133,55.918115 +-3.950803,55.734721 +-2.922622,56.355996 +-3.405117,56.017197 +-4.368875,55.84545 +-3.992234,55.863145 +-3.058991,55.924369 +-4.300665,55.818443 +-4.636113,55.549841 +-4.16978,55.916393 +-4.157407,54.861852 +-2.732212,56.576906 +-3.189985,55.958531 +-5.539047,56.875382 +-3.491488,55.908892 +-4.493454,55.617779 +-3.504852,55.908199 +-2.567516,55.990266 +-3.240777,55.969019 +-3.802337,57.52375 +-3.197485,55.958117 +-2.782335,55.42592 +-3.698292,55.650063 +-2.595551,57.389919 +-4.003219,55.938034 +-2.944403,56.529179 +-4.85202,55.701668 +-4.641243,55.426305 +-4.963809,54.811383 +-4.348719,55.850807 +-4.199512,55.862652 +-3.185634,56.210826 +-4.593951,55.613788 +-4.027265,55.935816 +-4.474957,55.597463 +-4.223634,55.892406 +-4.083077,55.767132 +-4.367208,55.982373 +-2.93462,56.468572 +-2.833135,56.620725 +-2.950957,56.486453 +-5.479771,56.276808 +-4.17101,55.808955 +-3.052221,56.472887 +-4.481818,55.823386 +-3.137174,55.891827 +-2.449862,57.527339 +-2.965479,56.495586 +-4.083984,58.544788 +-4.27237,55.875509 +-4.180205,55.841228 +-4.351421,55.908995 +-4.274751,55.857176 +-4.633474,55.631219 +-4.342117,55.894541 +-3.452378,55.925705 +-5.20611,56.702547 +-4.224937,55.869905 +-3.159766,55.913191 +-4.870011,55.794332 +-4.362283,55.809464 +-4.273673,55.853772 +-4.369736,55.90024 +-4.315872,55.876064 +-3.183247,55.949242 +-4.181373,55.881174 +-4.259921,55.835691 +-3.996613,55.837614 +-5.115816,56.811187 +-3.764013,55.241341 +-3.434804,55.926531 +-4.327604,55.777419 +-3.203831,55.943777 +-4.272681,55.853736 +-3.598104,54.874412 +-3.495811,55.893195 +-3.186413,55.948034 +-3.934882,56.118579 +-2.927352,56.47338 +-4.170282,55.861796 +-3.955997,55.875679 +-4.364181,55.84234 +-4.308964,55.859882 +-4.04678,55.893587 +-3.838079,56.024498 +-3.652438,55.445999 +-4.254336,55.817009 +-2.895799,56.386705 +-2.777057,55.961459 +-4.500739,55.620183 +-3.95217,56.121353 +-3.880396,55.88978 +-2.224701,56.963402 +-4.203506,55.824815 +-4.071638,55.817734 +-4.061021,55.79806 +-2.134198,57.157604 +-3.228625,55.941007 +-3.225492,55.957886 +-3.829628,57.285815 +-3.169145,56.123009 +-4.036577,55.860029 +-2.000935,57.449436 +-4.0474,55.869528 +-3.787144,55.047441 +-2.650242,57.641766 +-2.43451,55.598627 +-2.747553,57.228014 +-4.276077,55.789394 +-4.187074,55.864284 +-4.126295,55.960703 +-3.246135,55.956781 +-3.190038,55.899172 +-4.277703,55.832253 +-4.220744,55.864211 +-3.150428,55.92363 +-4.610818,55.499318 +-3.007915,56.673939 +-3.232498,55.954555 +-3.09139,55.901317 +-3.823513,56.002473 +-3.743391,56.152604 +-4.326012,55.776119 +-3.969053,55.753006 +-2.404784,57.114298 +-3.488423,55.979162 +-3.045208,55.908736 +-4.017787,55.532774 +-3.758677,56.04875 +-5.340069,56.060048 +-2.709784,56.007095 +-4.351235,56.175603 +-4.447315,55.411636 +-3.107141,55.876503 +-3.528126,55.893499 +-3.830272,55.591907 +-3.277978,55.967992 +-4.683245,55.927034 +-4.265447,55.873291 +-2.240498,57.150932 +-3.060786,55.923895 +-4.254368,55.883759 +-4.269837,55.451991 +-3.716463,56.293062 +-4.384951,56.205891 +-2.963331,56.468497 +-3.24985,57.647861 +-4.261005,55.862876 +-3.049323,55.895869 +-3.244317,55.957518 +-3.05991,55.926374 +-3.686238,55.866246 +-3.912278,54.989635 +-4.0623,56.192445 +-3.987822,56.374219 +-4.260593,55.860187 +-3.586117,55.879915 +-4.277574,55.863091 +-3.177432,56.190445 +-3.384473,55.878619 +-4.243453,55.810135 +-3.119685,56.301757 +-3.991255,55.698969 +-2.577732,57.191828 +-3.892156,56.021208 +-4.052919,55.824186 +-3.087974,55.901554 +-5.06402,56.79541 +-4.20515,55.743818 +-5.002795,56.669245 +-4.300836,55.869723 +-2.463174,56.70639 +-4.540831,55.842988 +-3.977987,55.908866 +-3.959902,55.968971 +-3.922323,56.067714 +-4.274518,55.834046 +-3.792131,56.152715 +-4.018791,55.940979 +-2.9821,55.96057 +-3.235071,55.937286 +-3.310583,55.805323 +-4.332683,55.855426 +-3.154987,55.889667 +-2.925302,56.637835 +-4.22024,55.813361 +-4.242512,57.483412 +-3.937316,56.100433 +-3.186559,56.130597 +-4.175634,56.694414 +-3.186411,56.131542 +-3.923588,55.765913 +-4.615653,55.491044 +-2.934652,56.468563 +-4.663378,55.925893 +-4.293463,55.824635 +-4.245768,55.814299 +-3.169786,55.95743 +-5.12316,56.843884 +-3.915407,56.022512 +-3.920597,56.078858 +-4.223444,55.854968 +-3.139638,57.107561 +-3.63937,55.549424 +-2.9892,56.667216 +-3.288513,56.121848 +-3.414076,55.95681 +-4.341966,55.772005 +-4.641429,55.575902 +-3.352519,55.886433 +-5.007456,58.375486 +-3.245652,55.963687 +-2.752055,56.031732 +-4.63627,55.550063 +-4.611452,56.013741 +-4.60692,55.468139 +-3.920446,57.575942 +-3.139186,56.134718 +-4.334941,55.86296 +-3.413062,57.513716 +-3.201468,55.95434 +-3.940978,55.802764 +-2.911152,55.947458 +-3.44615,56.292606 +-3.209449,55.927782 +-3.614391,55.901339 +-3.572292,55.85113 +-3.144448,55.874373 +-2.101094,57.154545 +-4.341206,55.287896 +-4.322674,55.847823 +-4.864395,55.910907 +-3.502408,56.044697 +-3.388085,55.978428 +-4.570096,56.913632 +-4.818344,56.079934 +-3.170716,56.349642 +-3.173783,55.957698 +-4.319388,55.848433 +-3.17566,55.238885 +-3.167591,55.922821 +-3.187205,55.961891 +-3.441669,56.409098 +-4.237921,55.845817 +-3.232156,55.978576 +-2.982586,56.466163 +-3.690379,55.865919 +-4.425211,55.602142 +-4.342864,55.811921 +-3.458362,55.679461 +-2.411922,55.963679 +-3.962589,55.85583 +-3.082174,55.876509 +-4.327018,55.847265 +-4.537012,55.604122 +-2.330685,56.80141 +-4.030022,56.153483 +-4.206559,55.862642 +-6.540205,57.432539 +-4.357066,56.440594 +-3.83656,55.01115 +-2.613611,57.571436 +-3.352435,56.032819 +-3.566048,55.853942 +-3.653955,55.093084 +-3.358615,56.382443 +-3.691561,55.961427 +-3.397277,55.972448 +-4.978144,56.665523 +-3.163709,55.916649 +-4.257103,55.836668 +-2.644067,56.760253 +-5.334977,57.165814 +-2.102006,55.845699 +-3.036143,55.941339 +-3.482848,55.89292 +-1.967373,57.472077 +-4.516049,55.610738 +-3.02671,56.182875 +-4.637363,55.564709 +-2.341721,57.158647 +-3.081902,55.946561 +-4.387248,57.620393 +-4.268915,55.878755 +-4.042598,55.764315 +-3.167635,55.262866 +-2.146143,57.160088 +-3.282509,55.940782 +-4.829509,56.42889 +-4.358472,55.84565 +-2.591265,55.989822 +-2.015084,57.694404 +-3.934745,55.022211 +-4.265416,55.865626 +-4.37195,55.83483 +-4.271591,55.87858 +-2.957913,56.467982 +-4.125679,55.867616 +-4.852361,55.246291 +-3.18063,55.953239 +-2.995005,56.697393 +-6.745312,57.960882 +-6.386688,58.43879 +-2.123794,57.16092 +-4.292956,55.811406 +-5.012108,56.864143 +-3.942193,56.12001 +-2.958392,56.467026 +-4.261216,56.234961 +-3.21554,55.954642 +-3.510148,55.883944 +-2.958002,55.077874 +-2.940079,56.468145 +-4.189118,55.785824 +-5.058449,56.875357 +-2.962514,56.472151 +-2.491762,57.056539 +-3.233512,55.934076 +-4.268257,55.862823 +-3.084241,56.461776 +-3.123589,56.458246 +-4.217132,55.909905 +-3.742638,56.002861 +-4.178652,56.233046 +-3.976465,55.797436 +-4.449051,55.859114 +-4.666409,55.62862 +-3.18727,56.194879 +-3.165506,56.119135 +-4.438773,56.065336 +-4.058615,55.822006 +-3.176122,55.935562 +-3.169478,56.104811 +-3.286795,58.978946 +-4.618434,55.418661 +-3.303708,55.941278 +-2.324436,55.824674 +-4.062989,55.790325 +-4.127794,55.860992 +-3.417795,58.595045 +-3.483455,56.212428 +-3.425716,56.066822 +-2.646201,57.227804 +-4.156196,55.924217 +-4.196463,55.894692 +-4.643801,56.068895 +-3.51217,57.262777 +-4.717632,56.439311 +-4.530696,55.509001 +-3.647025,56.322624 +-4.120256,55.723734 +-4.218886,57.466875 +-3.631451,55.896234 +-2.861554,56.468885 +-5.472233,56.408803 +-3.131465,55.94343 +-3.239634,55.914237 +-4.293723,55.827974 +-3.113032,55.870142 +-4.052656,55.78888 +-3.716633,54.88171 +-3.01079,56.471506 +-4.072055,55.814465 +-3.769492,55.858705 +-3.846977,55.554639 +-4.568197,55.989618 +-2.523678,57.667658 +-4.34044,55.02407 +-3.728535,55.650395 +-3.815798,56.027056 +-2.209621,56.978008 +-4.318895,55.800188 +-4.068166,55.89784 +-4.637775,55.535379 +-3.461388,56.076056 +-4.159988,55.847633 +-3.286977,55.922943 +-3.287026,55.922961 +-4.123005,56.713708 +-3.19086,55.956249 +-4.341265,55.854112 +-4.952658,55.984087 +-4.129881,55.863212 +-2.385839,57.28976 +-4.243102,55.775728 +-4.580768,55.643243 +-3.486202,56.387781 +-3.774582,55.670524 +-4.209265,56.391291 +-2.094057,57.149897 +-2.984424,56.463839 +-3.170524,55.96436 +-4.740005,55.939797 +-3.46053,55.641621 +-2.949194,56.615392 +-3.203826,55.943624 +-6.417559,57.356042 +-3.135347,55.93271 +-4.789482,57.057166 +-3.570507,55.06986 +-3.602722,54.876868 +-4.199102,57.48397 +-3.798642,55.276704 +-4.338519,55.899085 +-4.256265,55.892756 +-4.922231,56.245905 +-3.478916,56.365315 +-4.322507,57.505183 +-1.284083,60.198201 +-3.21367,55.965506 +-4.165955,55.763623 +-4.428479,55.862622 +-4.980296,56.66548 +-4.129605,55.861374 +-3.176636,55.979406 +-4.340755,55.894513 +-3.141087,55.951005 +-2.976894,56.478372 +-3.165188,55.905664 +-3.701631,55.893343 +-2.954335,55.945378 +-3.217863,55.903132 +-4.077216,55.889114 +-4.320888,55.778993 +-2.584519,56.562541 +-4.305935,55.887773 +-3.199819,55.93156 +-3.634872,56.175537 +-4.986667,56.873131 +-4.258021,57.69625 +-3.481938,56.388532 +-3.461143,55.244095 +-3.40103,56.046079 +-4.224978,55.85832 +-3.213977,56.293393 +-3.354437,56.315828 +-3.397146,56.133993 +-4.854491,55.682293 +-3.230544,55.976247 +-3.010657,56.479962 +-3.664938,55.848006 +-4.427553,55.842409 +-3.009575,55.942296 +-4.261041,55.835994 +-4.058836,55.807758 +-3.930773,55.772603 +-3.976859,55.946108 +-4.200425,55.862123 +-3.277725,55.911691 +-4.844025,55.252078 +-3.237366,55.910845 +-4.033734,55.819688 +-3.453995,55.028619 +-4.22831,55.84033 +-3.738378,57.499186 +-3.889438,55.590676 +-3.92591,55.769687 +-4.113318,55.850142 +-3.348293,58.602898 +-4.184615,55.80937 +-3.070531,55.933731 +-4.64253,56.379503 +-3.153359,57.55432 +-5.428669,56.024189 +-3.173971,55.955468 +-4.387985,55.876762 +-1.777912,57.509353 +-4.868834,57.717321 +-5.449871,56.009382 +-3.167323,56.131338 +-3.999595,55.792415 +-4.302213,55.865707 +-3.992978,55.790285 +-4.523123,55.238544 +-3.097595,56.344076 +-4.04077,55.767168 +-4.259516,55.850734 +-3.815772,55.57449 +-4.713526,56.009739 +-3.137326,55.959271 +-3.613614,56.01505 +-3.064937,55.860494 +-4.051053,54.836901 +-4.428307,55.844246 +-3.148327,55.970526 +-2.849224,56.503291 +-3.4197,56.372315 +-3.729064,56.282274 +-3.143333,55.96148 +-4.351439,55.845847 +-4.35556,55.913931 +-3.10912,56.156197 +-3.987736,55.82514 +-3.486969,56.388769 +-6.183852,57.45859 +-4.353504,55.756829 +-4.182258,55.823711 +-3.204048,55.899665 +-4.494219,55.447136 +-4.950591,57.146732 +-2.950632,56.487076 +-4.044276,55.678793 +-3.433216,56.212948 +-3.3321,57.644192 +-3.616215,55.068867 +-3.201086,55.951316 +-3.794099,55.818511 +-4.421018,55.842628 +-4.337998,55.823401 +-3.479307,58.201409 +-4.25866,55.86708 +-3.977094,55.864899 +-2.15575,57.156689 +-4.34948,55.785838 +-4.232044,55.877317 +-4.028381,55.785221 +-4.096972,55.873214 +-3.2837,55.917721 +-6.765537,57.986337 +-3.750458,56.70125 +-4.024639,55.840041 +-2.924679,56.47764 +-3.423075,56.39942 +-4.2625,55.817129 +-2.530903,55.998345 +-4.80355,55.655673 +-2.23192,57.332852 +-6.089594,57.271123 +-3.815332,56.324936 +-3.189214,58.502137 +-3.447908,56.387731 +-4.687126,55.746846 +-2.958207,55.969878 +-3.419117,56.240247 +-3.354693,56.617891 +-3.406598,56.352014 +-4.583891,55.965517 +-2.206299,55.856547 +-2.232036,57.332798 +-2.512244,55.999781 +-5.446737,55.991318 +-4.156418,55.860485 +-4.702643,58.462214 +-4.272653,55.79414 +-1.222234,60.264604 +-2.958623,56.463969 +-2.826976,55.151309 +-4.312033,55.913669 +-4.082967,57.481531 +-4.689964,55.744087 +-4.0454,54.816881 +-4.316089,55.941148 +-4.446482,55.86782 +-5.602843,57.765984 +-3.396874,56.348961 +-4.742995,55.940405 +-2.62105,55.467551 +-3.931441,57.30457 +-2.145764,57.173113 +-4.179498,55.839452 +-2.222791,57.097866 +-4.660206,55.766676 +-3.122841,55.957463 +-3.167765,55.031523 +-3.383762,55.155525 +-4.164659,55.829082 +-4.2878,55.040685 +-3.969257,56.170175 +-4.33,55.807402 +-4.232383,55.875145 +-3.266013,56.193433 +-3.024801,56.483646 +-4.289719,55.895374 +-3.391716,56.124448 +-3.872044,55.756087 +-3.186388,55.947738 +-3.709093,55.974988 +-4.005922,55.814627 +-3.174152,55.952447 +-2.954726,57.664698 +-3.040791,56.205517 +-4.250258,55.865796 +-4.558379,55.49186 +-3.986915,56.37329 +-4.687214,56.4258 +-4.299324,55.870371 +-4.26104,55.894547 +-4.230235,55.824019 +-3.633689,56.066095 +-4.587816,55.958549 +-3.201327,55.495598 +-2.000753,57.524908 +-2.759103,57.087877 +-4.219414,55.81147 +-3.434583,55.287501 +-4.417467,58.353361 +-4.053078,56.384927 +-3.164293,55.957995 +-3.414569,56.709408 +-4.861393,55.73711 +-3.157834,55.506028 +-4.239471,55.838608 +-3.186651,55.948499 +-4.250593,55.868819 +-3.839815,55.800285 +-4.104381,55.714571 +-1.878724,57.502582 +-4.369746,56.08222 +-3.784196,56.510414 +-3.930912,55.678652 +-3.364231,56.529438 +-3.915108,56.378994 +-3.144204,55.955173 +-4.664759,55.310321 +-3.034648,55.944119 +-4.243252,57.481611 +-4.085848,55.855662 +-2.233659,56.952264 +-3.428176,56.077747 +-4.95837,57.146 +-3.792066,56.11847 +-3.217601,55.051291 +-3.925106,55.99364 +-2.716902,56.500702 +-3.166645,55.975458 +-4.648988,55.608018 +-4.55401,55.954428 +-3.069863,55.894938 +-3.949783,55.810372 +-3.585498,56.56534 +-4.180996,55.860492 +-3.172387,55.951287 +-2.58202,56.56718 +-2.984132,56.463841 +-4.121233,55.847058 +-4.677039,57.148899 +-4.018246,55.855963 +-2.94954,56.486284 +-3.121332,55.896942 +-2.805405,56.71126 +-4.190465,55.856387 +-3.228311,55.644292 +-3.184807,55.857673 +-2.999749,56.470796 +-5.061792,55.837778 +-4.328375,55.774573 +-1.232071,60.191042 +-2.185542,57.180535 +-4.275682,55.864079 +-3.773894,56.127305 +-2.133134,57.133 +-3.190753,55.946483 +-3.167266,55.890162 +-4.84448,55.264383 +-1.894812,57.42629 +-4.312206,55.849368 +-3.368894,55.937821 +-3.558131,55.680733 +-3.194709,55.950174 +-4.17203,55.867903 +-3.812501,56.064218 +-3.731639,56.101441 +-3.465782,56.072445 +-3.677325,55.895249 +-2.445393,56.759324 +-4.415856,55.884541 +-3.604094,55.955264 +-4.24122,55.837633 +-4.232026,55.877291 +-4.352887,55.900707 +-3.672947,56.00228 +-3.176078,55.93568 +-3.981614,55.867666 +-3.363422,56.0845 +-4.271593,55.865494 +-4.645757,56.1157 +-3.042156,55.840868 +-2.574893,55.968893 +-4.105973,55.78228 +-3.69015,55.870586 +-4.245401,55.812643 +-3.918034,56.076453 +-3.663401,58.594679 +-4.452066,56.059868 +-3.953994,55.710604 +-3.222705,55.941614 +-4.271095,55.882139 +-2.883192,56.64213 +-4.270108,55.811273 +-4.616102,55.809429 +-2.258354,57.298522 +-3.120859,57.641462 +-4.129721,55.85971 +-4.020319,55.851588 +-4.025314,55.827834 +-2.992175,55.885435 +-4.557555,55.942832 +-3.010109,56.320453 +-3.794045,56.114344 +-4.369653,55.985912 +-4.361396,56.139567 +-4.05134,54.877533 +-3.451977,56.404422 +-4.294366,55.851895 +-3.206793,55.751554 +-3.204525,55.948083 +-4.296538,55.816938 +-3.296482,57.016206 +-4.270192,55.859013 +-4.611741,57.213777 +-4.58377,56.002874 +-4.320592,55.817187 +-4.027556,55.80187 +-4.220811,55.830382 +-3.19128,55.946954 +-4.261095,55.846274 +-3.119133,55.876115 +-3.873721,55.63747 +-3.377518,56.251886 +-2.735404,56.569467 +-4.529015,55.761879 +-5.028029,54.904189 +-3.161135,55.886186 +-3.932984,56.115374 +-4.184533,55.895578 +-3.175722,55.929735 +-3.412628,56.004972 +-3.831483,56.134858 +-3.790257,56.119008 +-2.130983,57.225554 +-4.174558,55.831361 +-3.878574,55.194028 +-4.247824,55.829747 +-2.933262,56.488645 +-3.712807,57.59272 +-4.333719,55.988485 +-4.264668,55.861559 +-4.062241,55.766827 +-4.337839,56.987416 +-2.165406,57.027518 +-4.262086,56.157998 +-4.293997,55.808483 +-3.195481,55.947138 +-4.214868,55.900797 +-4.587727,55.464267 +-3.15876,55.973834 +-3.164355,55.901368 +-3.404684,55.980505 +-4.633693,56.062056 +-3.83988,55.604273 +-3.258534,55.9435 +-3.210189,55.934567 +-2.511321,55.990638 +-4.298033,55.863403 +-4.611102,55.500975 +-4.157494,55.859702 +-3.200414,55.925462 +-4.285098,57.723564 +-2.727466,55.724679 +-3.593695,55.424231 +-4.470108,55.611735 +-5.058381,56.37131 +-3.275443,56.7279 +-4.616077,55.426037 +-4.021907,55.837561 +-4.293251,55.899119 +-3.508821,55.898778 +-4.731898,55.64663 +-3.098832,55.872084 +-3.259459,55.972002 +-3.209958,56.138969 +-4.60525,55.442349 +-3.186196,55.947219 +-2.602129,57.095656 +-3.642872,55.900054 +-3.188097,56.20444 +-3.876191,56.012933 +-3.171938,55.950725 +-2.157941,55.886943 +-3.396901,55.983361 +-3.919046,56.078046 +-3.193472,55.956799 +-3.251727,55.923594 +-4.60925,55.606695 +-3.888831,56.240643 +-4.306995,55.85094 +-3.387318,55.990127 +-3.932201,56.115799 +-4.37352,55.849836 +-4.503068,55.612379 +-2.585726,56.952359 +-4.071042,55.782775 +-4.423655,55.821607 +-3.914976,55.921402 +-2.312983,55.718339 +-3.609778,55.887677 +-3.584632,56.565648 +-3.102157,55.873223 +-2.905359,56.516478 +-4.193211,55.878447 +-2.976724,56.45912 +-2.804092,56.262727 +-3.511766,55.877849 +-3.928583,55.831852 +-3.249543,56.425082 +-3.065376,55.856663 +-2.760017,55.964862 +-3.4129,55.211259 +-4.161485,55.861366 +-2.27383,57.542818 +-3.713696,57.592411 +-2.957157,56.456667 +-4.355354,57.290397 +-4.056769,55.762515 +-4.1908,55.859778 +-4.358,55.882418 +-3.138829,56.121558 +-2.587422,55.400432 +-4.245238,55.856909 +-4.16248,55.868629 +-3.150383,55.955061 +-3.072795,58.576678 +-2.967194,55.957624 +-3.314912,57.650238 +-5.13417,55.546133 +-3.034542,55.945513 +-4.076159,55.78153 +-4.277565,55.851749 +-4.4816,55.893119 +-3.864337,55.788943 +-2.840299,57.320108 +-4.137389,55.781963 +-2.578692,55.990502 +-3.487084,56.388803 +-3.122177,56.145737 +-2.870887,56.216165 +-4.957865,56.662744 +-4.097496,55.799321 +-3.190772,55.852629 +-3.229151,55.969226 +-3.797289,56.255881 +-4.729171,54.896953 +-3.146777,55.913268 +-5.221112,56.431164 +-3.977259,55.865625 +-3.27996,55.91253 +-6.776521,57.43029 +-4.24506,55.862952 +-5.571268,57.79765 +-3.214951,55.932274 +-3.184056,55.936412 +-4.17153,55.867831 +-2.06027,57.56085 +-2.856777,56.474426 +-4.784637,55.633623 +-4.175207,57.036465 +-5.817502,57.181886 +-3.13247,55.932332 +-3.162911,55.8889 +-3.58897,56.560821 +-4.449253,55.782586 +-3.469859,56.117073 +-3.4551,55.885155 +-5.431802,56.448525 +-2.812081,56.483297 +-2.873961,56.467029 +-4.246634,55.886614 +-5.460171,56.429 +-2.991043,56.483669 +-4.029844,55.867878 +-2.133421,57.207963 +-2.461401,56.716279 +-4.364207,55.855911 +-4.04747,55.80615 +-4.3027,55.871234 +-3.063338,55.936417 +-3.660059,55.702726 +-2.869738,56.216685 +-4.226323,55.874006 +-3.309785,55.038839 +-4.363092,55.603518 +-4.439584,58.089166 +-4.308557,55.812884 +-4.326831,55.802698 +-4.183196,55.84273 +-3.685912,55.694421 +-4.621582,55.460895 +-2.298439,57.172681 +-2.119157,57.142968 +-4.783972,55.635445 +-3.98611,55.835511 +-3.984915,56.184231 +-5.059343,54.839606 +-3.089393,55.908811 +-3.009855,56.48765 +-4.402329,55.898278 +-2.779929,56.577326 +-3.519897,55.878944 +-3.01229,55.624178 +-3.10907,55.874643 +-4.270246,55.836381 +-4.186946,55.871953 +-4.328051,55.848243 +-4.062635,55.129935 +-3.845065,55.184222 +-3.193932,55.947818 +-4.017028,55.932003 +-4.423024,55.830985 +-3.133193,56.13719 +-2.707383,56.503335 +-4.006171,55.815755 +-2.1418,57.062168 +-3.178336,55.941517 +-3.525164,55.911346 +-3.079136,56.30625 +-4.44193,57.605231 +-3.682022,55.987456 +-3.532267,58.169973 +-3.406254,56.767633 +-4.25298,58.005235 +-3.18158,55.944999 +-4.374448,55.914781 +-3.556413,55.081185 +-4.24344,55.869507 +-4.290178,55.896381 +-3.175286,55.929083 +-2.340392,57.545494 +-2.26663,57.519847 +-4.138472,55.863386 +-3.947109,55.769919 +-6.282023,58.284317 +-2.373404,57.164387 +-4.437882,55.846141 +-3.213737,55.94208 +-3.965864,55.705768 +-4.616174,55.544238 +-3.655341,57.304466 +-3.304512,57.67655 +-2.170257,57.165914 +-4.405121,55.644297 +-3.185852,55.944365 +-4.616245,55.475139 +-2.882736,56.358335 +-4.637972,55.613037 +-3.167441,55.920504 +-4.29521,55.851844 +-2.17403,57.011849 +-3.115404,55.88376 +-3.819627,54.92834 +-4.779485,55.776314 +-4.362334,55.972113 +-3.165327,55.973215 +-3.895018,56.002652 +-4.270904,55.805749 +-4.266761,55.839609 +-4.088372,55.853579 +-3.271258,55.926252 +-4.179947,55.872275 +-3.920951,57.554417 +-4.137373,57.046076 +-5.071582,56.662514 +-2.971722,56.464047 +-3.243622,55.945332 +-4.519941,55.446034 +-2.479058,56.822561 +-4.480878,55.889826 +-4.013768,57.362607 +-4.581638,55.483182 +-2.834365,56.034132 +-4.831739,55.661174 +-4.496635,57.366443 +-3.028091,56.472002 +-4.211987,55.848488 +-4.310849,55.868493 +-3.336291,56.103415 +-3.012878,56.49201 +-4.150172,55.870929 +-3.220976,55.015058 +-4.34883,55.604223 +-2.569599,56.787423 +-3.412488,56.080651 +-3.18156,55.945907 +-4.767396,56.52029 +-3.153645,56.217732 +-3.814433,55.673329 +-3.311107,55.925232 +-3.223039,56.42372 +-3.547259,55.86153 +-4.262604,55.893386 +-3.159445,55.956019 +-3.107242,55.93284 +-3.617211,56.157384 +-4.749264,55.938476 +-4.335421,58.503031 +-5.334497,56.452529 +-3.762906,56.71352 +-4.002404,56.660289 +-3.152242,55.95508 +-4.531825,55.601254 +-4.392711,55.798944 +-2.623224,57.653553 +-3.33678,56.37542 +-3.567481,56.574356 +-2.985741,56.522147 +-3.176169,55.95453 +-3.140374,56.14495 +-4.758182,55.406409 +-4.215315,55.866835 +-3.92127,56.094007 +-3.591787,55.980486 +-3.95848,55.863705 +-4.807207,56.04551 +-4.577529,55.48619 +-4.226613,55.827688 +-3.115296,55.94072 +-4.017223,55.777631 +-2.666793,56.307387 +-4.479283,55.902441 +-3.293092,55.942225 +-3.907117,55.529821 +-4.644662,55.930341 +-3.368344,55.908147 +-2.572354,56.851104 +-4.065255,55.780401 +-4.303548,55.82131 +-3.664276,55.061613 +-4.339675,55.862492 +-3.963353,56.095187 +-4.709186,56.009385 +-3.137094,55.903842 +-2.939613,56.490035 +-4.131671,55.866129 +-2.293298,55.884431 +-3.203495,55.95255 +-3.221867,56.135959 +-3.292816,55.941626 +-3.128597,54.986743 +-3.392154,56.043924 +-2.277747,56.847742 +-3.383961,56.052714 +-3.139421,55.913381 +-3.254047,54.991832 +-4.216855,55.824279 +-4.233276,55.87929 +-4.047589,55.783204 +-3.461292,55.959673 +-3.093239,55.89998 +-3.390623,55.167785 +-3.349711,55.102722 +-3.916785,55.747803 +-4.785272,55.632709 +-2.884539,56.473845 +-3.205593,55.945853 +-2.851456,56.484741 +-4.450047,55.656692 +-3.204157,55.953766 +-3.80586,55.809847 +-3.790967,55.724242 +-2.867484,56.467712 +-3.398989,56.419489 +-2.844783,55.545861 +-3.192682,55.949331 +-3.235201,55.899617 +-4.004406,55.860251 +-4.258806,55.845642 +-4.486271,55.84688 +-3.235305,55.96725 +-3.442291,56.074924 +-4.216348,55.862511 +-3.747989,56.134019 +-3.021434,58.979003 +-4.620022,55.608694 +-3.190762,55.950967 +-3.742543,55.712394 +-2.096714,57.167259 +-3.692654,55.029838 +-4.362135,55.748008 +-2.02085,57.310814 +-3.723718,56.698703 +-3.054217,57.654018 +-4.051895,55.80383 +-4.05586,55.760679 +-2.205047,56.968951 +-3.288567,56.073416 +-3.828894,55.023795 +-4.347675,55.782888 +-3.737956,56.062137 +-2.981479,56.472964 +-4.239814,55.838737 +-3.207367,55.902005 +-4.958573,56.882564 +-4.666119,55.628554 +-5.194402,56.700331 +-3.405723,56.074923 +-4.270582,55.86021 +-3.603983,55.069244 +-3.159908,55.962942 +-4.00854,55.861388 +-4.386348,55.880038 +-2.952543,55.944107 +-4.710956,56.452418 +-4.018069,55.941252 +-2.961517,56.255251 +-4.144202,55.871375 +-2.938695,56.216379 +-3.996288,55.863673 +-3.630267,55.847778 +-2.654424,55.985172 +-2.884619,55.7013 +-4.531919,55.844736 +-4.258866,55.845587 +-4.256378,55.834911 +-3.134835,55.932715 +-2.99979,55.893685 +-3.710164,55.870292 +-4.257572,55.85743 +-4.366079,55.883009 +-3.782229,56.324635 +-3.19546,55.963618 +-3.183707,55.943837 +-3.122162,56.125314 +-4.889162,55.827538 +-2.467133,56.716096 +-5.741486,56.481842 +-4.231026,55.846194 +-4.012181,55.942894 +-3.183386,55.94331 +-4.524206,55.869665 +-4.364805,55.745782 +-4.270565,55.859653 +-3.201366,56.251915 +-4.103245,56.20404 +-4.439883,55.843396 +-4.650096,54.918662 +-2.797564,55.608977 +-4.012794,55.774001 +-4.269385,55.836945 +-3.905156,56.085414 +-3.107329,55.860084 +-4.086281,55.855394 +-3.862092,55.759608 +-3.812519,56.064245 +-4.440494,55.50464 +-4.617652,55.930334 +-4.232588,55.875096 +-5.370908,56.586071 +-4.274762,55.785437 +-4.638906,55.349338 +-3.521785,56.083826 +-3.561086,55.993 +-4.194075,55.877892 +-4.280695,55.820352 +-3.479039,55.89621 +-3.747064,56.01067 +-3.595265,55.085904 +-5.128414,56.67957 +-4.164663,55.761318 +-4.245597,55.847628 +-3.313213,55.924104 +-3.327053,56.109669 +-3.18463,56.198112 +-3.244672,55.956607 +-3.143477,55.93649 +-2.93024,56.471355 +-4.020257,55.852533 +-4.260973,55.894503 +-3.336259,56.103397 +-3.884241,56.106692 +-4.26047,55.864396 +-3.785206,56.01929 +-3.22978,55.972894 +-2.871356,56.46667 +-5.208244,55.939523 +-3.734948,55.999087 +-4.168177,56.701355 +-2.835389,55.487014 +-2.565479,56.848602 +-2.599997,56.778315 +-2.72813,55.41425 +-3.313613,55.924082 +-2.92011,56.486722 +-3.699545,56.686357 +-4.283527,55.876022 +-4.209206,55.816085 +-4.239095,55.863726 +-2.143197,57.180716 +-4.69096,55.634699 +-4.31868,55.810797 +-3.428368,56.375054 +-4.637324,55.929797 +-3.577291,56.558194 +-3.296396,55.071956 +-3.158239,56.12676 +-2.665138,57.507299 +-3.991443,55.867355 +-2.788887,55.953989 +-3.658817,55.438265 +-3.264042,55.961702 +-4.520368,55.909588 +-3.12092,55.943095 +-4.236155,56.926103 +-4.06176,55.77975 +-4.265969,55.850157 +-3.970359,55.781744 +-4.808963,55.944149 +-4.206849,55.881852 +-4.314338,55.862118 +-3.729278,56.141642 +-3.42239,56.0402 +-3.546905,56.070628 +-3.951503,55.8409 +-4.546788,55.902276 +-3.815759,55.574553 +-3.674822,56.063747 +-2.978476,55.868967 +-3.047939,55.942964 +-4.591401,55.573941 +-2.772994,55.962517 +-3.783719,56.002704 +-4.324515,55.874104 +-5.514574,56.246801 +-2.132265,57.162501 +-3.208827,56.124469 +-3.264807,56.193985 +-4.109631,55.867901 +-3.236104,55.909905 +-3.906525,56.00899 +-3.289772,55.929033 +-3.478353,55.892875 +-3.433257,55.654012 +-3.203286,55.846648 +-4.553806,55.833542 +-4.364626,55.840975 +-4.25729,57.69611 +-2.662382,56.732127 +-3.168613,55.957289 +-3.263705,55.961661 +-5.695945,55.585211 +-4.664019,55.621256 +-3.073729,56.49812 +-4.579964,55.857615 +-3.359838,55.941183 +-4.353529,55.862444 +-4.932785,55.751282 +-4.43849,57.579356 +-4.47508,55.597388 +-3.174152,55.957721 +-4.316467,55.807406 +-4.232734,55.758392 +-4.161903,55.842423 +-3.931202,57.129843 +-3.973395,55.754096 +-4.078042,55.811802 +-4.088464,55.853793 +-2.772934,55.439656 +-3.113967,55.954641 +-3.251467,57.657349 +-3.518129,56.402857 +-4.038632,55.823903 +-4.008112,55.946564 +-4.172413,55.851872 +-4.477036,55.597205 +-3.019272,56.481509 +-3.638232,55.073416 +-2.469058,57.379827 +-3.942251,55.866416 +-4.611913,55.48645 +-3.523639,56.193393 +-4.215299,55.872713 +-3.253402,55.930865 +-3.180535,55.936949 +-5.190153,57.831568 +-4.047428,55.943814 +-5.074667,56.387474 +-3.645392,55.898385 +-4.172295,55.838025 +-3.994409,55.689023 +-3.102277,56.460315 +-3.957667,55.859315 +-4.990896,55.0945 +-4.318864,57.673845 +-4.199897,55.857603 +-4.16548,55.894378 +-3.980959,55.867057 +-2.638494,56.68824 +-4.513759,55.630775 +-3.643527,55.899659 +-3.175238,55.929092 +-3.430457,56.397511 +-2.332335,55.83389 +-2.855003,56.321747 +-4.272037,55.887855 +-4.272207,55.784846 +-2.46205,56.711947 +-2.561488,55.989099 +-4.811752,55.95257 +-3.779966,56.120838 +-3.164026,56.187822 +-3.635649,55.845469 +-4.639642,56.083267 +-3.461318,55.959098 +-3.52877,56.408792 +-2.117159,57.106956 +-5.775639,56.72267 +-4.796162,55.941231 +-3.135085,55.905136 +-3.409934,55.238937 +-4.458004,55.911263 +-3.1712,55.890736 +-2.711081,55.964193 +-3.050712,56.473493 +-3.744534,54.993739 +-2.18016,57.121434 +-4.310771,55.862598 +-4.200466,55.862293 +-3.193458,55.956871 +-4.241738,55.858555 +-4.64287,55.78403 +-3.178561,55.96263 +-3.460332,56.415673 +-4.376497,55.889433 +-2.171809,57.225873 +-2.972935,56.458799 +-4.641752,55.622016 +-3.46913,56.03799 +-3.967658,55.751564 +-4.11377,55.860524 +-3.964862,55.810958 +-3.958914,55.907563 +-4.143617,55.764976 +-4.065465,55.739156 +-5.462441,56.356735 +-4.255253,55.865381 +-2.360924,57.310495 +-3.343501,56.110516 +-4.248417,55.86547 +-2.996646,56.491728 +-4.299404,55.851181 +-2.892779,56.63933 +-4.645968,56.043547 +-4.159607,55.853158 +-4.261343,55.856596 +-3.43819,56.037303 +-3.444567,54.994841 +-1.995055,57.563649 +-3.621349,55.061069 +-3.493789,56.04517 +-3.148288,56.180943 +-3.986547,55.790218 +-3.352787,56.317149 +-3.705657,55.82837 +-3.144467,55.644932 +-3.717568,56.01866 +-4.128765,55.877278 +-2.57999,55.694518 +-4.338283,55.859004 +-2.630009,55.649183 +-4.204409,55.830057 +-3.624511,55.078813 +-3.676763,55.841061 +-3.062957,55.921334 +-4.804482,55.95528 +-4.47528,55.93025 +-4.212709,57.474756 +-4.063968,55.97687 +-4.858569,55.744241 +-2.982638,56.475093 +-3.598409,55.934706 +-3.726943,55.99184 +-4.31498,55.839331 +-2.603984,55.679325 +-4.474457,55.909801 +-2.811226,56.050307 +-3.312255,55.94072 +-3.120263,55.940279 +-4.091485,55.852043 +-3.208975,55.94751 +-3.796601,55.678058 +-4.244283,55.868323 +-5.09953,56.39072 +-3.864372,57.162077 +-2.225936,56.90667 +-3.942076,55.857468 +-4.263155,55.832252 +-3.954938,56.128032 +-3.159395,56.113289 +-3.669007,55.822187 +-3.169541,56.196962 +-3.284325,55.961789 +-3.385505,56.105163 +-4.320331,56.356639 +-3.416766,56.187484 +-3.088157,56.194875 +-4.216017,56.244155 +-3.755556,55.998067 +-4.3755,55.895887 +-4.617665,55.485096 +-4.295457,55.509405 +-3.466473,58.576184 +-2.962615,56.46074 +-4.338476,55.859549 +-3.089583,55.882509 +-2.155184,57.650979 +-2.906236,56.474901 +-4.366085,55.883117 +-4.055518,55.778416 +-4.445077,55.665213 +-3.5209,55.904174 +-3.471542,56.457034 +-3.402565,55.96493 +-3.750086,56.009019 +-3.176706,55.96484 +-3.315696,56.060542 +-2.96663,56.464841 +-3.615557,55.070808 +-4.265147,55.856886 +-3.165791,56.179593 +-3.163568,55.956761 +-3.872061,55.756122 +-2.939852,56.468147 +-2.481156,55.604248 +-2.11009,57.161337 +-4.271447,55.867636 +-4.51078,57.266746 +-4.417248,55.843412 +-4.522325,55.920244 +-3.003649,55.854873 +-4.323703,55.84766 +-3.949132,55.840443 +-4.486098,54.96427 +-2.81072,55.619548 +-3.147379,55.838826 +-4.282856,57.687178 +-2.929775,56.476883 +-3.990072,55.693533 +-4.198217,55.863502 +-4.316799,55.936147 +-4.576768,55.043123 +-4.223388,55.832726 +-4.734251,55.093569 +-4.639243,55.790058 +-4.445885,55.836977 +-3.196239,55.95095 +-3.16172,56.125891 +-3.680782,57.281766 +-3.134301,55.90677 +-2.799894,57.170675 +-3.059989,55.945081 +-3.422799,55.988923 +-3.137645,55.944505 +-4.804665,55.951608 +-3.209161,55.943213 +-4.342494,55.826218 +-3.647895,55.870647 +-2.71261,56.522154 +-2.984166,56.462628 +-3.021575,56.454222 +-2.934457,56.485734 +-3.641171,55.876812 +-3.195369,55.9404 +-3.59843,55.604585 +-4.504112,55.832407 +-3.171773,55.93148 +-4.566025,55.497929 +-3.40927,55.11516 +-3.864136,56.054714 +-2.585531,56.559572 +-3.380737,56.038445 +-3.223375,55.93902 +-4.37707,55.896971 +-3.497425,58.183942 +-3.185393,55.974399 +-4.111761,57.85927 +-2.364928,57.164987 +-3.252796,55.972582 +-3.627033,56.608984 +-3.276334,55.934098 +-3.643927,55.899285 +-5.472067,56.411963 +-3.914451,57.292296 +-3.241818,55.97351 +-3.174325,55.933836 +-3.957028,55.728934 +-3.718566,56.69067 +-4.209514,55.765202 +-3.17321,55.938259 +-3.202506,55.943386 +-4.181559,55.393541 +-4.215548,55.819548 +-2.831431,56.490492 +-4.743578,55.936652 +-3.202782,55.946591 +-4.31103,55.870718 +-4.229976,55.866067 +-4.438618,55.855582 +-2.903028,57.099697 +-3.022581,56.456648 +-4.332159,55.469056 +-2.684002,55.895692 +-2.725376,56.038119 +-4.632842,57.219106 +-4.589516,55.4556 +-3.40719,55.983756 +-4.617663,55.736158 +-3.171055,56.239762 +-3.800049,56.001757 +-2.403117,57.317805 +-3.256206,55.000878 +-3.064313,55.913595 +-4.237934,55.868825 +-2.56221,56.561324 +-2.149549,57.18078 +-3.323678,56.150472 +-4.079788,55.86903 +-4.218622,55.854471 +-4.833442,55.198242 +-3.001905,55.934164 +-3.28235,55.942733 +-4.439221,55.768288 +-3.17696,55.939427 +-4.637682,55.629052 +-6.095493,57.278493 +-3.116644,55.897982 +-3.133751,55.956437 +-4.160418,55.836392 +-4.510167,55.786103 +-5.449117,56.440223 +-3.7437,58.082589 +-4.623382,55.472991 +-4.716276,55.697368 +-4.342729,55.857733 +-4.158359,55.854267 +-2.991856,56.456925 +-4.458843,57.517785 +-4.290525,55.896572 +-3.799048,56.035408 +-3.350164,55.96777 +-3.605262,55.890216 +-3.70629,58.094379 +-3.753935,55.886121 +-4.351532,55.879388 +-2.188447,57.114298 +-3.07276,57.614014 +-4.137208,57.046078 +-2.175286,57.17701 +-3.177668,55.933229 +-3.593558,55.06309 +-5.032578,54.904102 +-2.976765,56.461348 +-2.071853,57.255991 +-3.765844,56.350838 +-3.03653,57.04708 +-2.996357,57.652277 +-4.249551,55.886453 +-3.183049,54.985785 +-2.939319,56.468267 +-4.50293,55.93174 +-2.662796,55.615666 +-3.173257,55.932903 +-2.277519,57.155033 +-2.248062,57.130337 +-3.282478,55.925785 +-4.17104,55.798017 +-3.809158,55.823476 +-3.493824,55.927195 +-3.115859,55.951928 +-4.166169,55.76663 +-4.768203,55.636943 +-4.553286,57.239828 +-3.963239,55.74733 +-3.276613,55.909986 +-3.8802,55.788458 +-4.485102,55.894361 +-2.950385,56.493438 +-3.2525,55.931179 +-4.029824,55.777406 +-4.063413,55.72473 +-3.5157,55.906197 +-3.007767,56.19588 +-4.771588,56.19467 +-3.453542,55.682852 +-4.24956,55.862564 +-2.394665,55.955271 +-3.980732,55.831194 +-3.504878,55.91838 +-3.287123,55.932188 +-4.002354,55.861678 +-4.261051,57.508025 +-4.06556,55.912012 +-5.410586,55.877018 +-4.311511,55.849777 +-6.371256,58.242972 +-4.143769,55.821162 +-3.410237,55.90142 +-4.261273,55.824872 +-3.857275,54.922998 +-4.673392,57.155187 +-5.222028,56.411893 +-4.44102,56.067844 +-3.644177,55.899147 +-3.228455,55.945753 +-3.091084,58.435959 +-3.216305,55.974942 +-2.916403,56.413103 +-4.417693,54.941542 +-4.255011,55.858178 +-4.271636,55.815576 +-3.446306,55.04318 +-4.286352,55.887896 +-4.811841,55.643591 +-2.40876,56.779223 +-3.431634,55.101724 +-3.000904,55.856854 +-3.437862,56.075937 +-4.489789,55.916331 +-4.239608,55.860418 +-2.952124,55.949888 +-3.892496,55.795666 +-2.130561,57.11545 +-4.24238,55.86416 +-4.426103,55.847597 +-5.750643,56.842757 +-4.033408,54.838097 +-3.988496,55.783402 +-4.289402,55.890275 +-3.088286,55.008463 +-4.020501,56.582241 +-2.582647,56.561391 +-4.003439,56.088199 +-3.47655,54.989757 +-3.022719,55.927057 +-4.397682,55.857708 +-3.554897,55.895931 +-3.211923,55.961911 +-3.01378,56.471626 +-3.071163,55.893956 +-2.089822,57.168567 +-4.180246,54.883987 +-3.630394,55.080945 +-3.152285,55.943587 +-3.947798,56.153882 +-3.873365,57.293005 +-3.882282,55.885456 +-4.455233,55.908945 +-3.968619,55.950976 +-2.972372,57.183552 +-2.157092,57.165186 +-3.357514,56.382464 +-2.183918,57.24649 +-4.349309,55.912442 +-3.151564,55.924149 +-3.758689,55.234758 +-4.3941,55.53448 +-4.267113,55.862656 +-3.16587,55.960352 +-3.160192,55.647436 +-4.220882,55.854601 +-3.591894,55.84412 +-4.124555,55.908186 +-3.210132,55.932762 +-4.254607,55.863056 +-3.263591,55.933591 +-4.641006,55.575741 +-3.466211,55.934293 +-2.06139,55.832662 +-4.76116,56.612843 +-4.174877,55.861939 +-3.117922,55.876791 +-4.432369,55.782679 +-2.776389,55.961678 +-3.096069,56.344449 +-3.552455,55.936076 +-3.344278,56.106976 +-3.718356,55.677067 +-4.244401,55.855972 +-4.346898,55.877571 +-3.651911,55.874511 +-4.548979,55.482375 +-3.308545,55.922339 +-3.097558,55.944716 +-4.149957,56.133238 +-2.143674,57.171391 +-4.662205,55.635731 +-3.218119,55.776531 +-3.286447,56.341082 +-2.953568,56.343794 +-2.921431,55.949439 +-3.180923,55.031522 +-3.338054,55.00901 +-4.398671,55.842895 +-2.332259,57.364129 +-3.312819,55.94225 +-2.183243,57.150589 +-4.147025,55.862276 +-4.039052,55.769677 +-3.373549,56.433763 +-4.34573,55.896907 +-2.720934,56.725675 +-2.957862,55.952045 +-4.464211,54.846878 +-3.181766,56.509008 +-4.358338,55.462056 +-3.422449,56.402635 +-3.215333,55.947034 +-5.407107,57.226036 +-3.277106,55.912335 +-4.276137,55.782221 +-3.260693,56.400908 +-2.833643,55.558696 +-4.765812,55.932029 +-3.422484,55.667212 +-3.556426,55.687046 +-4.267076,55.863663 +-3.782842,56.125289 +-2.828625,56.197453 +-2.859502,56.010563 +-4.232056,55.850786 +-3.786861,55.856648 +-4.018945,57.538979 +-3.090948,55.900405 +-3.654756,55.052522 +-4.240786,55.80844 +-3.660041,55.880378 +-3.250773,55.931718 +-2.935429,56.483651 +-4.240443,57.501923 +-2.523279,57.664443 +-4.515359,55.680268 +-3.174512,55.971744 +-4.164443,55.865988 +-3.152071,55.932627 +-3.760999,55.138246 +-3.160498,56.191584 +-4.311517,55.937531 +-3.185888,55.811342 +-4.245704,55.814579 +-3.224958,55.958736 +-4.797871,55.645169 +-3.377678,56.130464 +-3.605367,55.890035 +-3.915889,56.0792 +-3.068475,55.869458 +-4.200748,55.92856 +-4.640068,55.608552 +-3.943418,55.992391 +-4.208521,55.921959 +-3.943686,55.991982 +-3.549135,56.541287 +-3.983868,55.862346 +-3.778822,55.266847 +-3.068964,56.471945 +-3.737868,56.062327 +-3.648185,55.895212 +-4.982013,56.874869 +-4.044708,55.807652 +-4.320874,55.89612 +-4.340472,55.876534 +-2.921179,56.469185 +-4.221783,55.812991 +-3.110304,55.910592 +-3.208209,55.950168 +-1.816601,57.522323 +-3.780692,56.122274 +-3.052494,55.889526 +-4.291985,57.845369 +-4.65586,55.922244 +-3.370166,56.135023 +-2.994374,56.324094 +-4.385218,55.824084 +-4.321905,55.870819 +-3.170542,55.964432 +-3.324714,54.98667 +-3.95603,55.851864 +-4.57896,55.856935 +-4.320897,55.769214 +-3.944285,55.777881 +-3.050735,56.509557 +-3.933417,55.996323 +-4.536993,55.821594 +-3.792007,56.017178 +-3.429217,56.395118 +-3.558899,55.857348 +-4.364421,55.576267 +-2.446026,56.847146 +-3.306112,56.505436 +-2.058497,57.279183 +-4.580845,55.859331 +-4.341448,55.894589 +-2.943474,57.684545 +-2.000369,57.522716 +-4.318952,55.868744 +-4.443667,57.513865 +-3.048302,55.869272 +-3.339758,56.592365 +-4.34856,55.783806 +-4.617549,55.787718 +-4.128682,55.936783 +-3.387476,56.058497 +-4.268743,55.908965 +-3.222415,55.903968 +-3.349201,57.425774 +-3.591915,55.985166 +-3.568694,56.416802 +-4.64553,55.884814 +-3.595983,56.199156 +-3.983869,55.785552 +-3.221696,55.78638 +-3.765469,55.861603 +-4.408517,55.862107 +-3.360132,55.946832 +-3.051461,55.849576 +-3.233748,55.909767 +-3.024694,55.82113 +-4.105289,55.852626 +-4.259235,55.86707 +-3.931804,55.83563 +-4.333904,55.881898 +-3.48317,56.402714 +-2.95262,55.942031 +-4.415042,55.8578 +-4.203235,55.857858 +-4.173562,55.844132 +-4.278244,55.83768 +-3.009129,55.942372 +-4.058217,56.124008 +-3.428149,56.396019 +-3.271005,55.939535 +-4.162883,55.894846 +-4.26113,55.822681 +-3.185851,55.944338 +-4.386494,55.831097 +-3.10717,56.533612 +-3.939287,56.083688 +-4.087564,57.060385 +-2.260066,56.985872 +-4.240461,57.471992 +-4.261238,55.858099 +-4.064475,55.721315 +-3.261675,54.987341 +-3.246471,55.014161 +-4.197629,55.850534 +-2.856224,57.48422 +-3.013364,56.487694 +-4.642631,55.623516 +-3.250575,55.957886 +-4.306488,57.433322 +-3.184887,55.857655 +-4.73079,55.942662 +-3.781358,55.858228 +-3.986449,55.835586 +-6.384578,58.439474 +-4.153575,55.77529 +-3.214502,55.966495 +-3.236467,57.630251 +-3.613922,55.983963 +-3.889123,55.791251 +-3.37948,56.132709 +-3.526772,55.892015 +-4.235992,56.841501 +-3.066068,58.995187 +-4.231256,55.838227 +-3.407801,56.027473 +-2.944355,56.523331 +-5.460916,56.42791 +-4.727177,55.752605 +-4.694184,55.673307 +-3.423873,56.553433 +-3.929025,55.834963 +-2.852389,55.906744 +-2.961151,57.544468 +-4.193016,55.851749 +-4.324982,55.607419 +-3.824423,56.314468 +-3.003324,56.469087 +-4.428257,55.910523 +-3.140357,56.144366 +-3.24552,55.933631 +-4.881592,55.901309 +-4.267566,55.869343 +-3.077812,55.872513 +-4.487287,54.965819 +-3.061334,55.892415 +-3.083937,58.997787 +-4.689267,55.746232 +-3.4343,56.224257 +-4.372968,54.789207 +-3.207355,55.957185 +-3.186816,55.955983 +-3.846087,55.762896 +-4.400087,58.000235 +-4.373386,55.901599 +-3.878088,56.014019 +-3.206917,55.950315 +-4.301323,55.864717 +-4.295312,55.863067 +-4.203255,55.862441 +-2.157395,57.22467 +-3.620611,55.890168 +-3.1723,55.956328 +-3.9529,56.13067 +-4.199723,55.849706 +-3.463546,56.39469 +-4.271057,55.851384 +-3.058839,55.891214 +-2.516697,56.664728 +-3.543859,58.16836 +-4.272532,55.85994 +-3.784888,55.857521 +-4.642884,55.78376 +-3.272352,55.063456 +-3.846407,56.761029 +-2.735011,55.969965 +-3.451962,56.395509 +-1.235589,60.029462 +-4.375504,55.603206 +-4.404669,55.905854 +-4.592831,55.425139 +-3.379837,56.133226 +-3.167891,56.448798 +-2.791484,55.419616 +-2.795059,55.543192 +-4.025975,55.817506 +-4.268731,55.878893 +-3.647059,55.896584 +-4.594585,55.479556 +-4.169798,55.392734 +-3.072303,55.007194 +-3.83311,55.59492 +-1.975253,57.506931 +-3.876491,56.01283 +-3.593846,56.342567 +-3.069016,56.175904 +-2.598901,56.559346 +-2.974865,56.454319 +-3.923932,55.758008 +-4.112244,55.836249 +-1.804243,57.507249 +-3.005162,56.466781 +-4.217644,55.858345 +-3.494588,55.979447 +-4.296784,55.823548 +-3.106739,55.875868 +-3.207847,55.957036 +-2.939439,55.962358 +-4.204788,55.90105 +-3.215104,55.95045 +-4.571424,55.404126 +-3.616682,55.871439 +-4.90701,57.610742 +-3.150964,56.127151 +-3.976518,55.863632 +-4.290457,55.87778 +-4.302222,55.848297 +-2.538748,56.000989 +-3.852015,57.587207 +-3.138253,55.955956 +-3.139138,56.134719 +-3.623084,55.975782 +-2.464531,56.713123 +-3.392741,56.272399 +-4.821379,55.961141 +-4.31721,55.863915 +-2.859866,55.959067 +-3.788215,56.256192 +-3.188254,57.633848 +-4.278837,55.860102 +-4.588857,55.454715 +-3.770792,55.500234 +-3.500354,55.891971 +-4.242354,55.837909 +-3.022429,56.457638 +-2.098931,57.223221 +-2.917252,56.489429 +-4.478115,55.617569 +-4.158619,55.94072 +-4.173701,55.86835 +-3.439921,56.387716 +-3.811483,55.57263 +-2.355371,57.314706 +-4.612273,55.496905 +-3.469588,55.324982 +-3.166621,55.915579 +-4.205727,55.86263 +-2.13923,57.172501 +-4.203569,55.824805 +-3.72583,55.997076 +-4.254143,55.443015 +-3.251531,55.931414 +-3.92953,55.821305 +-4.039014,55.662649 +-4.395457,55.905656 +-2.671183,55.597334 +-3.435803,56.084524 +-2.90383,56.618731 +-3.151113,56.144006 +-3.123676,55.958641 +-3.160784,55.957417 +-3.838968,55.806687 +-4.766281,55.951398 +-3.214358,55.941948 +-3.315863,57.638567 +-3.596043,55.900913 +-3.144662,56.258796 +-4.262941,55.875288 +-4.447887,55.821307 +-4.347123,55.857191 +-2.552029,56.636394 +-3.132565,55.907586 +-4.555313,55.952801 +-2.814458,57.54629 +-4.279224,55.872974 +-3.163976,55.886024 +-4.02915,55.864079 +-2.470816,55.524138 +-4.575525,55.453541 +-4.199231,55.847234 +-3.382577,56.036924 +-4.935663,55.953661 +-3.544843,55.845745 +-3.998612,55.862871 +-3.453505,55.313186 +-3.049106,56.511763 +-3.163987,55.928049 +-2.115347,57.134617 +-3.989633,55.864158 +-3.793694,55.653118 +-4.888242,55.850662 +-3.05298,56.194982 +-4.843996,55.669017 +-3.431598,56.049987 +-3.200292,55.959285 +-3.187752,55.956719 +-4.656356,56.050766 +-4.055966,55.778436 +-3.82349,57.215392 +-3.075492,55.61593 +-4.231101,55.828551 +-2.733043,56.265207 +-3.173255,55.925427 +-2.917762,56.477575 +-4.226088,55.903695 +-3.146229,55.91312 +-3.816975,56.001554 +-4.49522,55.62381 +-4.639589,55.7466 +-3.157436,55.883857 +-3.214473,56.105068 +-3.141797,55.903852 +-3.203426,55.942074 +-3.636297,55.898129 +-3.152901,55.917452 +-2.954871,56.473557 +-4.279233,55.849948 +-4.1719,55.834949 +-3.187467,55.948995 +-4.210954,55.764457 +-4.667123,55.614806 +-3.242331,55.899015 +-3.058187,56.483699 +-4.801337,55.641611 +-2.167945,55.767727 +-3.46695,55.934796 +-3.545501,56.060043 +-3.165254,56.592523 +-3.907052,55.772327 +-4.151258,55.762766 +-3.179014,55.975394 +-4.388478,55.878271 +-4.048772,55.805724 +-3.786969,56.000501 +-3.360005,56.093326 +-3.179693,55.939275 +-4.44073,55.84009 +-3.606063,56.012066 +-2.083867,57.138298 +-3.420218,56.226405 +-4.108015,55.862249 +-2.12388,57.16684 +-4.699239,55.658265 +-3.451977,55.26792 +-3.178124,56.119941 +-3.786408,55.722044 +-4.398737,55.798584 +-5.147797,55.653783 +-3.502251,55.8906 +-3.218546,55.949383 +-5.090254,57.737533 +-3.983548,55.961341 +-3.625842,55.87644 +-4.215136,55.854139 +-4.294156,55.851854 +-2.090606,57.427118 +-6.156325,57.565263 +-4.178837,55.118025 +-3.189322,55.892476 +-3.925211,56.136865 +-2.390112,57.231089 +-4.722526,55.650389 +-4.026695,55.866635 +-2.097796,57.144747 +-3.156925,55.967112 +-4.232738,55.859339 +-3.261017,56.084313 +-4.299748,55.84509 +-3.053896,56.193141 +-4.763098,55.948323 +-4.423704,55.847033 +-3.086479,55.897299 +-2.839234,56.487178 +-3.970981,55.782048 +-3.083821,55.890287 +-4.423215,55.594758 +-4.156383,55.862157 +-3.336506,56.591582 +-3.212559,56.201615 +-4.350021,55.85994 +-3.104319,55.944278 +-3.179999,55.939865 +-4.232353,55.875182 +-4.316568,55.45223 +-4.244091,55.869441 +-2.474951,57.221975 +-3.192235,56.130498 +-3.678204,55.84336 +-4.600046,56.002316 +-4.749339,55.755203 +-3.999506,55.951736 +-4.029409,55.864757 +-3.20609,55.947421 +-3.907591,55.785646 +-3.444848,55.293096 +-3.61981,55.857514 +-3.180068,55.965293 +-3.275861,55.906094 +-4.298758,55.849432 +-3.13753,56.14238 +-3.805838,55.855184 +-4.123757,55.868719 +-4.251157,55.860881 +-3.973983,56.118805 +-5.0524,56.706249 +-3.130655,55.916175 +-3.391889,56.272041 +-3.457012,57.68465 +-3.142483,56.175866 +-4.439995,55.584304 +-3.382227,55.974603 +-4.379969,55.822838 +-4.450227,55.840989 +-3.958277,55.95806 +-3.665907,55.943382 +-3.73514,55.999084 +-4.227202,55.876803 +-4.294749,55.851897 +-4.360902,55.813544 +-4.256386,55.834488 +-3.264926,55.961792 +-4.202441,57.484559 +-3.792314,56.137292 +-4.581382,55.986305 +-3.722114,56.067786 +-3.425183,54.993955 +-4.456005,55.862705 +-3.946678,55.870264 +-2.971305,55.949738 +-4.397577,55.799963 +-4.280235,55.830768 +-4.230368,55.873744 +-3.078087,55.872636 +-3.730653,55.005019 +-3.618137,55.890282 +-4.653219,55.962748 +-4.440479,55.843214 +-4.137751,55.863641 +-3.224275,55.967037 +-4.359058,55.857961 +-4.362567,55.82205 +-4.215685,55.820561 +-3.742013,54.997972 +-4.228757,55.852329 +-3.581741,55.08227 +-4.295819,55.830487 +-2.920406,56.477483 +-4.886455,55.891182 +-4.617398,55.485371 +-2.659532,56.73367 +-4.270972,55.86608 +-4.284821,55.827285 +-4.226845,57.477086 +-2.478944,55.605128 +-3.971288,55.738232 +-4.284492,55.886735 +-4.154296,57.494807 +-3.108857,55.909787 +-3.737019,55.986288 +-2.725956,55.726556 +-4.299991,55.796202 +-4.25722,55.864581 +-2.988711,56.487039 +-4.759281,56.572798 +-2.472628,55.676397 +-4.502287,55.445443 +-2.084586,57.206972 +-4.452049,55.756771 +-2.9634,56.475091 +-4.596434,55.471813 +-3.226448,55.937462 +-4.031565,55.774384 +-3.940111,55.775062 +-4.078158,55.789728 +-3.411298,55.927548 +-3.268907,55.964968 +-4.270089,55.862178 +-3.754527,56.005792 +-4.20918,55.816481 +-4.229058,55.858696 +-3.176358,55.930663 +-4.270909,55.863898 +-4.208184,55.862847 +-4.152544,55.856032 +-4.492147,55.909183 +-3.352856,57.695922 +-4.25923,55.828459 +-4.270815,55.879529 +-4.294741,56.114725 +-3.032836,56.47756 +-3.991296,55.86574 +-3.173321,56.207807 +-2.996686,55.93914 +-4.218522,55.767178 +-4.489584,55.906646 +-3.504618,55.919093 +-4.85409,54.943967 +-3.400858,55.938953 +-4.007018,54.908456 +-4.298317,55.903096 +-4.666062,55.606901 +-4.697305,55.653957 +-4.345141,55.897476 +-4.506385,55.586218 +-2.976782,56.461393 +-3.59305,55.877049 +-4.095925,55.828269 +-4.529707,55.60065 +-3.192652,55.949412 +-4.112155,55.90759 +-3.420397,56.038804 +-4.291707,55.86806 +-4.203084,55.857716 +-4.404465,55.906164 +-4.744389,55.937479 +-4.360841,55.845469 +-3.828355,56.152373 +-3.505679,55.907245 +-2.144502,57.171794 +-3.196612,55.952159 +-3.276296,55.962645 +-3.02886,55.919063 +-3.19006,55.953642 +-4.3225,55.870062 +-2.84064,55.547821 +-4.121541,55.835702 +-4.020522,55.851495 +-3.003813,56.581021 +-3.309228,55.949252 +-3.69911,55.92164 +-3.976653,55.817195 +-3.344687,56.464223 +-4.589435,55.434335 +-2.975029,56.484164 +-4.443788,57.548351 +-3.381704,55.974744 +-4.646322,55.623599 +-4.349984,55.829158 +-3.711639,55.016388 +-4.215411,55.81938 +-4.151786,55.762793 +-3.564696,55.132009 +-3.973184,55.781788 +-4.310163,55.797701 +-2.800229,56.487983 +-4.423908,55.842355 +-4.09955,55.858494 +-3.326363,56.11018 +-4.171888,55.773718 +-2.934669,56.365502 +-3.744074,54.993961 +-4.284158,55.864713 +-3.345875,56.37985 +-4.699501,57.623022 +-2.468353,56.714376 +-3.926606,55.879028 +-4.125149,55.861146 +-3.357656,55.362969 +-3.686347,55.866532 +-4.27922,55.752253 +-3.70326,57.592858 +-2.906067,56.215364 +-3.303664,55.923774 +-3.501645,56.487897 +-2.772401,55.901369 +-4.157252,55.773158 +-4.460028,55.840137 +-4.425221,55.839336 +-2.809572,56.527876 +-3.97333,55.754079 +-2.839863,56.628684 +-4.777955,55.647869 +-3.934687,56.129761 +-2.923997,56.477609 +-3.843127,56.135385 +-4.294839,55.874014 +-4.649407,55.610229 +-3.397511,56.276991 +-2.64525,56.780604 +-2.306791,55.882466 +-3.272149,54.98991 +-4.496334,55.593874 +-3.642659,55.069438 +-3.172993,55.972379 +-3.293886,55.944437 +-3.546894,55.906213 +-2.971417,56.315318 +-4.252214,56.126643 +-3.301901,55.920342 +-2.8746,56.475056 +-3.23606,55.96833 +-3.226505,55.937237 +-3.221579,55.920599 +-4.368134,55.873695 +-4.607006,56.008721 +-3.14777,56.121457 +-4.041443,55.850125 +-2.626162,56.67409 +-3.842311,57.565346 +-3.516008,55.905887 +-3.758062,55.863542 +-4.705455,56.270594 +-4.612575,55.557842 +-3.221708,55.786272 +-3.179229,55.938741 +-4.252956,55.861055 +-4.51944,55.936221 +-2.98776,57.449769 +-4.217588,55.804906 +-2.36604,57.41098 +-3.71281,56.690129 +-2.962395,58.982222 +-3.076221,55.858905 +-4.655039,56.408635 +-4.471409,55.84505 +-3.226997,55.909242 +-4.047425,55.95316 +-2.228056,55.799284 +-4.454758,55.83129 +-3.200681,55.980127 +-2.123801,57.241793 +-3.550414,56.541963 +-2.81172,55.584174 +-4.788469,55.778169 +-2.488872,57.664671 +-2.48524,55.980384 +-4.024494,55.840016 +-5.610683,55.719536 +-4.190828,55.967481 +-4.635974,56.381925 +-3.510607,55.90563 +-3.87097,56.013776 +-2.961348,55.625558 +-2.097569,57.165426 +-3.192652,55.949403 +-4.160399,55.861089 +-6.368017,58.24409 +-4.38436,55.906806 +-4.024587,55.822742 +-4.337962,55.888229 +-3.138827,55.955869 +-3.475859,57.669681 +-3.086846,56.245948 +-3.045745,55.943567 +-3.962752,56.185987 +-4.289394,55.815705 +-4.31852,55.852638 +-4.149082,55.935072 +-3.804596,55.82286 +-3.828947,55.035945 +-3.40344,58.366575 +-3.42199,56.070765 +-4.358472,56.130465 +-2.994559,55.866115 +-4.035516,55.883412 +-6.251904,55.688798 +-4.701937,58.554169 +-2.654441,56.728522 +-4.242379,55.878001 +-4.791321,55.943175 +-4.250085,55.44451 +-3.26972,55.965346 +-4.243051,55.782344 +-3.292423,55.924522 +-2.59892,57.39858 +-3.744104,54.993934 +-4.010332,55.793364 +-3.558915,55.857348 +-3.176078,55.965772 +-2.553717,57.382465 +-4.069221,56.132092 +-3.086135,55.913575 +-4.272456,55.868219 +-3.959868,55.968927 +-3.909801,56.109444 +-3.451448,55.139405 +-4.26318,55.875274 +-3.661607,55.87137 +-3.338778,56.592735 +-3.05369,56.192667 +-4.426273,55.850326 +-4.342218,55.823752 +-3.7756,56.388385 +-2.92437,56.477616 +-4.642605,55.624074 +-4.337564,55.889594 +-3.296516,55.914819 +-4.289292,55.842238 +-3.142491,56.265016 +-1.796451,57.497922 +-3.155336,56.12703 +-3.809271,55.823501 +-2.9996,56.4744 +-4.125717,55.855744 +-4.575914,55.756069 +-3.675409,55.940943 +-2.113092,57.191499 +-4.0418,55.89287 +-3.886179,55.713165 +-5.020886,56.77072 +-4.097863,55.902478 +-3.809022,55.807482 +-4.298896,55.851236 +-4.34521,55.811121 +-4.263775,55.852265 +-3.170478,55.964415 +-3.655059,55.88838 +-2.752294,56.293528 +-4.281113,55.740741 +-2.143034,57.172838 +-3.173859,56.076016 +-4.349271,55.847246 +-3.085293,56.167639 +-3.542709,55.902339 +-3.186234,55.870428 +-4.21279,55.855313 +-4.752379,55.94717 +-3.867635,55.78821 +-4.162077,55.775635 +-4.05653,55.757657 +-4.493291,57.537534 +-2.965427,57.550723 +-3.217209,55.945577 +-4.024254,55.832939 +-3.091069,55.868236 +-4.736982,55.695083 +-3.294319,55.942536 +-4.184284,55.806599 +-4.160417,55.845873 +-3.799121,56.37224 +-4.480744,55.837366 +-2.95344,55.952627 +-4.157256,55.836681 +-4.298664,55.89571 +-3.879788,56.010695 +-2.207264,56.935907 +-4.303405,55.820773 +-4.355013,57.574623 +-2.99975,56.470832 +-4.494608,55.795965 +-3.960736,55.716185 +-2.91516,56.224794 +-3.615019,55.068334 +-4.307612,55.861615 +-3.16475,56.198418 +-4.42611,55.857187 +-3.936261,56.120094 +-2.523315,57.664578 +-2.959983,55.967869 +-3.091847,55.900504 +-2.983848,56.47794 +-4.253021,55.882309 +-4.382016,55.805128 +-3.635217,56.093069 +-3.173503,55.977028 +-3.972146,55.737553 +-3.620695,55.068501 +-4.061985,55.857314 +-4.566268,55.946722 +-4.269076,55.868641 +-3.218338,55.970285 +-3.589242,56.012599 +-3.790447,55.540847 +-4.361987,55.815374 +-3.140098,56.144324 +-4.175516,55.758708 +-4.450084,57.575151 +-4.723836,55.644751 +-3.651118,55.894606 +-4.276274,55.842786 +-2.843081,55.95398 +-2.845832,56.352303 +-4.226254,55.849076 +-4.548013,55.66159 +-4.263666,55.852303 +-2.089749,57.12473 +-4.262872,55.865313 +-2.880516,56.651115 +-3.072042,55.944949 +-3.966476,55.700824 +-3.164392,56.197235 +-3.968794,55.950955 +-3.923007,54.930909 +-4.359572,55.885408 +-4.497878,55.847499 +-4.263776,55.852274 +-4.336172,55.80413 +-4.808287,55.059637 +-3.105437,56.639797 +-3.964247,55.861465 +-2.490752,55.982851 +-6.201422,57.413274 +-3.83397,55.674863 +-3.418329,55.995993 +-2.711682,56.522959 +-2.910321,55.947509 +-4.447488,55.821557 +-3.205483,55.945908 +-3.413701,58.50763 +-4.319426,55.84854 +-3.219483,55.943551 +-3.916174,56.005605 +-3.16685,55.925847 +-3.735363,56.105226 +-3.493164,56.387706 +-1.999802,57.521746 +-2.815801,55.574425 +-3.630048,55.834913 +-3.331648,57.646936 +-2.504199,56.685416 +-3.161122,55.974576 +-3.688597,55.866105 +-4.541717,55.612311 +-5.218732,56.702805 +-3.469433,55.930597 +-4.718388,56.002432 +-4.05619,57.485933 +-4.130077,57.399589 +-3.645044,55.719185 +-3.98508,55.835995 +-3.904847,56.231708 +-3.887436,55.999444 +-4.257137,55.886557 +-3.062731,56.464999 +-3.369873,56.131315 +-3.218182,55.970422 +-3.877574,55.633313 +-3.282563,56.123833 +-2.290707,56.929174 +-4.33429,55.815068 +-3.917766,56.036117 +-4.656784,55.630303 +-4.660056,55.635211 +-4.164346,55.78061 +-4.248418,55.832298 +-3.916681,56.042065 +-2.939371,56.708588 +-3.166676,55.925912 +-4.607212,55.48166 +-4.227939,55.884914 +-3.296406,56.523336 +-3.934509,56.115646 +-2.999342,55.915451 +-4.502225,57.34596 +-3.566254,55.896371 +-3.147377,56.18495 +-3.243407,55.927147 +-5.505273,56.102646 +-4.190857,55.802034 +-3.365356,56.129163 +-4.356221,55.833793 +-3.759793,55.973106 +-4.046379,55.751904 +-3.825955,54.927122 +-3.673652,55.88794 +-4.663901,55.601258 +-4.265517,55.840737 +-4.208153,55.833575 +-4.622001,55.477695 +-4.336967,55.846141 +-4.080037,55.790856 +-3.715419,55.982143 +-3.195974,55.957943 +-4.774371,56.076212 +-5.481006,56.143153 +-4.269086,55.901139 +-2.717281,56.243368 +-3.505877,55.910307 +-4.262882,55.862185 +-3.88337,55.643533 +-4.388614,55.80003 +-4.621971,55.607448 +-2.931832,56.408442 +-4.369736,55.863256 +-3.759654,55.52456 +-2.684109,57.672748 +-4.616704,55.42117 +-3.621613,55.067204 +-3.139845,56.145018 +-2.814991,57.077402 +-3.101613,56.195421 +-4.260043,55.869697 +-4.403189,55.831994 +-3.706914,55.86543 +-4.471074,55.845056 +-3.391736,56.07421 +-4.296866,55.834422 +-3.62017,56.564013 +-3.069715,56.175547 +-4.345247,55.845417 +-5.710725,55.494401 +-3.827765,54.930564 +-3.279001,55.916934 +-3.48485,56.388417 +-3.161652,56.110294 +-3.646577,55.901434 +-3.246183,55.929347 +-4.484636,55.847039 +-4.294919,55.474299 +-3.069241,55.944399 +-3.428512,56.199183 +-3.548252,55.862003 +-3.163722,55.856706 +-3.003305,56.497299 +-4.065899,55.780211 +-3.158682,56.298559 +-4.141699,55.861623 +-4.497527,55.845016 +-4.308194,55.869261 +-3.543462,55.985683 +-3.954202,56.124619 +-4.509698,55.83632 +-3.228062,56.620544 +-2.964771,55.865364 +-4.421354,54.984239 +-3.488126,56.388521 +-4.051909,55.80196 +-4.250087,55.855931 +-3.002632,56.194286 +-3.236627,55.96801 +-4.32449,55.871534 +-2.046067,57.655377 +-3.383876,56.049885 +-3.573051,55.850932 +-4.326355,56.415382 +-3.532474,55.897929 +-2.633537,56.719637 +-3.75459,55.052912 +-4.268094,55.862763 +-2.691534,57.68143 +-4.226392,55.835565 +-3.169174,56.179588 +-4.394184,55.867852 +-4.587662,55.980241 +-2.697007,56.221616 +-3.877706,54.930449 +-3.52819,55.916682 +-4.559721,55.976618 +-6.468611,58.175023 +-3.063812,55.935604 +-3.908308,55.661597 +-3.242593,56.381494 +-4.470519,55.60868 +-4.413548,56.036263 +-3.919635,56.001651 +-3.506613,55.889271 +-3.958662,57.979607 +-4.066137,55.526171 +-5.457065,56.873913 +-3.486815,55.647201 +-4.201732,55.40844 +-3.09421,56.526791 +-3.012907,56.323557 +-3.379944,56.13264 +-4.422579,55.847702 +-4.099304,55.780157 +-4.766474,55.331997 +-3.322886,56.163015 +-3.588158,55.42131 +-3.539955,56.395607 +-3.66041,55.954114 +-4.165298,55.769018 +-3.187123,55.949259 +-4.405556,55.91939 +-1.806314,57.453294 +-4.35622,55.845657 +-4.880659,56.979181 +-4.109935,55.85375 +-3.770503,56.00303 +-3.934116,56.129276 +-2.835061,55.641175 +-4.028396,55.866158 +-3.588789,55.084191 +-4.302257,55.801345 +-4.33927,55.840327 +-4.265008,55.8361 +-2.983781,56.477878 +-4.260682,57.69587 +-3.399957,56.037303 +-4.050062,55.751636 +-2.52482,57.150127 +-4.270119,55.861315 +-4.233,55.874199 +-4.263299,55.836662 +-3.308725,57.643618 +-3.214197,55.945517 +-2.149633,57.152367 +-3.117541,55.898037 +-4.248086,56.891957 +-2.925745,56.448738 +-4.082163,55.863831 +-4.42148,55.845693 +-3.034027,55.941833 +-3.159833,55.885955 +-3.602269,55.058095 +-2.653624,57.647246 +-4.165359,55.883299 +-3.179005,55.953497 +-3.977129,55.866211 +-3.751709,55.685663 +-3.176647,55.93598 +-4.335131,55.837368 +-3.616915,55.081556 +-2.750606,55.601358 +-4.93658,56.249448 +-3.971134,55.881 +-2.099432,57.14488 +-3.631584,55.084012 +-3.313933,55.117205 +-2.236526,57.098407 +-2.584519,56.557277 +-4.32399,55.861558 +-5.026688,54.904609 +-2.339911,57.671321 +-4.386771,55.868175 +-4.077972,55.856586 +-4.433802,55.841683 +-3.406353,56.729142 +-3.97892,55.699869 +-3.787853,56.001234 +-3.751744,55.991436 +-4.183533,55.393829 +-4.009776,55.797129 +-4.013561,56.79318 +-3.115669,55.868473 +-4.346036,55.782677 +-4.269696,55.751818 +-2.126645,57.129198 +-4.606824,55.619672 +-4.409553,57.351211 +-4.214895,55.897902 +-4.203818,55.823003 +-4.312421,55.870737 +-3.443692,56.057843 +-3.899656,55.830325 +-4.130448,55.866572 +-2.933694,56.477824 +-3.905923,56.002646 +-4.490441,55.849376 +-3.049371,55.892922 +-4.585155,55.992634 +-2.555662,55.477615 +-2.281654,57.201025 +-2.635589,56.726994 +-4.428505,55.910644 +-3.791004,55.835568 +-2.102685,57.143979 +-4.232471,55.857465 +-4.613246,55.495815 +-6.34865,55.783849 +-4.32693,55.843114 +-3.196963,55.980648 +-3.206662,55.950381 diff --git a/docs/data/dft-road-collisions.csv.sh b/docs/data/dft-road-collisions.csv.sh new file mode 100755 index 000000000..a470b5c5a --- /dev/null +++ b/docs/data/dft-road-collisions.csv.sh @@ -0,0 +1,18 @@ +URL="https://data.dft.gov.uk/road-accidents-safety-data/dft-road-casualty-statistics-collision-1979-latest-published-year.csv" + +# Use the data loader cache directory to store the downloaded data. +TMPDIR="docs/.observablehq/cache/" + +# Download the data (if it’s not already in the cache). +if [ ! -f "$TMPDIR/dft-collisions.csv" ]; then + curl -f "$URL" -o "$TMPDIR/dft-collisions.csv" +fi + +# Generate a CSV file using DuckDB. +duckdb :memory: << EOF +COPY ( + SELECT longitude, latitude + FROM read_csv_auto('$TMPDIR/dft-collisions.csv') + WHERE accident_year = 2022 +) TO STDOUT WITH (FORMAT 'csv'); +EOF diff --git a/docs/data/forecast.json b/docs/data/forecast.json new file mode 100644 index 000000000..6c9962e28 --- /dev/null +++ b/docs/data/forecast.json @@ -0,0 +1 @@ +{"@context":["https://geojson.org/geojson-ld/geojson-context.jsonld",{"@version":"1.1","wx":"https://api.weather.gov/ontology#","geo":"http://www.opengis.net/ont/geosparql#","unit":"http://codes.wmo.int/common/unit/","@vocab":"https://api.weather.gov/ontology#"}],"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.4928863,37.8158863],[-122.487211,37.794076000000004],[-122.4596518,37.7985504],[-122.4653217,37.8203613],[-122.4928863,37.8158863]]]},"properties":{"updated":"2024-03-25T08:26:13+00:00","units":"us","forecastGenerator":"HourlyForecastGenerator","generatedAt":"2024-03-25T09:48:50+00:00","updateTime":"2024-03-25T08:26:13+00:00","validTimes":"2024-03-25T02:00:00+00:00/P7DT23H","elevation":{"unitCode":"wmoUnit:m","value":0},"periods":[{"number":1,"name":"","startTime":"2024-03-25T02:00:00-07:00","endTime":"2024-03-25T03:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"12 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":2,"name":"","startTime":"2024-03-25T03:00:00-07:00","endTime":"2024-03-25T04:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":3,"name":"","startTime":"2024-03-25T04:00:00-07:00","endTime":"2024-03-25T05:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"10 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":4,"name":"","startTime":"2024-03-25T05:00:00-07:00","endTime":"2024-03-25T06:00:00-07:00","isDaytime":false,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"10 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":5,"name":"","startTime":"2024-03-25T06:00:00-07:00","endTime":"2024-03-25T07:00:00-07:00","isDaytime":true,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":6.666666666666667},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":6,"name":"","startTime":"2024-03-25T07:00:00-07:00","endTime":"2024-03-25T08:00:00-07:00","isDaytime":true,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":7,"name":"","startTime":"2024-03-25T08:00:00-07:00","endTime":"2024-03-25T09:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":6.666666666666667},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/sct,0?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":8,"name":"","startTime":"2024-03-25T09:00:00-07:00","endTime":"2024-03-25T10:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":9,"name":"","startTime":"2024-03-25T10:00:00-07:00","endTime":"2024-03-25T11:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":75},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":10,"name":"","startTime":"2024-03-25T11:00:00-07:00","endTime":"2024-03-25T12:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"12 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":11,"name":"","startTime":"2024-03-25T12:00:00-07:00","endTime":"2024-03-25T13:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":69},"windSpeed":"14 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/bkn,0?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":12,"name":"","startTime":"2024-03-25T13:00:00-07:00","endTime":"2024-03-25T14:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":67},"windSpeed":"16 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,0?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":13,"name":"","startTime":"2024-03-25T14:00:00-07:00","endTime":"2024-03-25T15:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":68},"windSpeed":"16 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,0?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":14,"name":"","startTime":"2024-03-25T15:00:00-07:00","endTime":"2024-03-25T16:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"17 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,0?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":15,"name":"","startTime":"2024-03-25T16:00:00-07:00","endTime":"2024-03-25T17:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"17 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,0?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":16,"name":"","startTime":"2024-03-25T17:00:00-07:00","endTime":"2024-03-25T18:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"17 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/bkn,1?size=small","shortForecast":"Partly Sunny","detailedForecast":""},{"number":17,"name":"","startTime":"2024-03-25T18:00:00-07:00","endTime":"2024-03-25T19:00:00-07:00","isDaytime":false,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"16 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,1?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":18,"name":"","startTime":"2024-03-25T19:00:00-07:00","endTime":"2024-03-25T20:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"15 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,1?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":19,"name":"","startTime":"2024-03-25T20:00:00-07:00","endTime":"2024-03-25T21:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"14 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,1?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":20,"name":"","startTime":"2024-03-25T21:00:00-07:00","endTime":"2024-03-25T22:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"13 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,1?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":21,"name":"","startTime":"2024-03-25T22:00:00-07:00","endTime":"2024-03-25T23:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":1},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"13 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,1?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":22,"name":"","startTime":"2024-03-25T23:00:00-07:00","endTime":"2024-03-26T00:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":23,"name":"","startTime":"2024-03-26T00:00:00-07:00","endTime":"2024-03-26T01:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":24,"name":"","startTime":"2024-03-26T01:00:00-07:00","endTime":"2024-03-26T02:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":25,"name":"","startTime":"2024-03-26T02:00:00-07:00","endTime":"2024-03-26T03:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"12 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":26,"name":"","startTime":"2024-03-26T03:00:00-07:00","endTime":"2024-03-26T04:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":85},"windSpeed":"10 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/few,0?size=small","shortForecast":"Mostly Clear","detailedForecast":""},{"number":27,"name":"","startTime":"2024-03-26T04:00:00-07:00","endTime":"2024-03-26T05:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":28,"name":"","startTime":"2024-03-26T05:00:00-07:00","endTime":"2024-03-26T06:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/night/few,0?size=small","shortForecast":"Mostly Clear","detailedForecast":""},{"number":29,"name":"","startTime":"2024-03-26T06:00:00-07:00","endTime":"2024-03-26T07:00:00-07:00","isDaytime":true,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":30,"name":"","startTime":"2024-03-26T07:00:00-07:00","endTime":"2024-03-26T08:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":31,"name":"","startTime":"2024-03-26T08:00:00-07:00","endTime":"2024-03-26T09:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":32,"name":"","startTime":"2024-03-26T09:00:00-07:00","endTime":"2024-03-26T10:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":33,"name":"","startTime":"2024-03-26T10:00:00-07:00","endTime":"2024-03-26T11:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":34,"name":"","startTime":"2024-03-26T11:00:00-07:00","endTime":"2024-03-26T12:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":35,"name":"","startTime":"2024-03-26T12:00:00-07:00","endTime":"2024-03-26T13:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":68},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":36,"name":"","startTime":"2024-03-26T13:00:00-07:00","endTime":"2024-03-26T14:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":67},"windSpeed":"7 mph","windDirection":"WNW","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":37,"name":"","startTime":"2024-03-26T14:00:00-07:00","endTime":"2024-03-26T15:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":66},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":38,"name":"","startTime":"2024-03-26T15:00:00-07:00","endTime":"2024-03-26T16:00:00-07:00","isDaytime":true,"temperature":59,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":67},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":39,"name":"","startTime":"2024-03-26T16:00:00-07:00","endTime":"2024-03-26T17:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":68},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":40,"name":"","startTime":"2024-03-26T17:00:00-07:00","endTime":"2024-03-26T18:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"14 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/few,0?size=small","shortForecast":"Sunny","detailedForecast":""},{"number":41,"name":"","startTime":"2024-03-26T18:00:00-07:00","endTime":"2024-03-26T19:00:00-07:00","isDaytime":false,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"14 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/few,0?size=small","shortForecast":"Mostly Clear","detailedForecast":""},{"number":42,"name":"","startTime":"2024-03-26T19:00:00-07:00","endTime":"2024-03-26T20:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"14 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/few,0?size=small","shortForecast":"Mostly Clear","detailedForecast":""},{"number":43,"name":"","startTime":"2024-03-26T20:00:00-07:00","endTime":"2024-03-26T21:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":44,"name":"","startTime":"2024-03-26T21:00:00-07:00","endTime":"2024-03-26T22:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":45,"name":"","startTime":"2024-03-26T22:00:00-07:00","endTime":"2024-03-26T23:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":46,"name":"","startTime":"2024-03-26T23:00:00-07:00","endTime":"2024-03-27T00:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":47,"name":"","startTime":"2024-03-27T00:00:00-07:00","endTime":"2024-03-27T01:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":48,"name":"","startTime":"2024-03-27T01:00:00-07:00","endTime":"2024-03-27T02:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,0?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":49,"name":"","startTime":"2024-03-27T02:00:00-07:00","endTime":"2024-03-27T03:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"6 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":50,"name":"","startTime":"2024-03-27T03:00:00-07:00","endTime":"2024-03-27T04:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"6 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":51,"name":"","startTime":"2024-03-27T04:00:00-07:00","endTime":"2024-03-27T05:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":0},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":86},"windSpeed":"6 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,0?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":52,"name":"","startTime":"2024-03-27T05:00:00-07:00","endTime":"2024-03-27T06:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"6 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":53,"name":"","startTime":"2024-03-27T06:00:00-07:00","endTime":"2024-03-27T07:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"6 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":54,"name":"","startTime":"2024-03-27T07:00:00-07:00","endTime":"2024-03-27T08:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"6 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":55,"name":"","startTime":"2024-03-27T08:00:00-07:00","endTime":"2024-03-27T09:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"6 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":56,"name":"","startTime":"2024-03-27T09:00:00-07:00","endTime":"2024-03-27T10:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"6 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":57,"name":"","startTime":"2024-03-27T10:00:00-07:00","endTime":"2024-03-27T11:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":4},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"6 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/bkn,4?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":58,"name":"","startTime":"2024-03-27T11:00:00-07:00","endTime":"2024-03-27T12:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":73},"windSpeed":"10 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":59,"name":"","startTime":"2024-03-27T12:00:00-07:00","endTime":"2024-03-27T13:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"10 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":60,"name":"","startTime":"2024-03-27T13:00:00-07:00","endTime":"2024-03-27T14:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":9.444444444444445},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":73},"windSpeed":"10 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":61,"name":"","startTime":"2024-03-27T14:00:00-07:00","endTime":"2024-03-27T15:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":10},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":62,"name":"","startTime":"2024-03-27T15:00:00-07:00","endTime":"2024-03-27T16:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":10.555555555555555},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":77},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":63,"name":"","startTime":"2024-03-27T16:00:00-07:00","endTime":"2024-03-27T17:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":24},"dewpoint":{"unitCode":"wmoUnit:degC","value":10.555555555555555},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/rain,24?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":64,"name":"","startTime":"2024-03-27T17:00:00-07:00","endTime":"2024-03-27T18:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":65,"name":"","startTime":"2024-03-27T18:00:00-07:00","endTime":"2024-03-27T19:00:00-07:00","isDaytime":false,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":86},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":66,"name":"","startTime":"2024-03-27T19:00:00-07:00","endTime":"2024-03-27T20:00:00-07:00","isDaytime":false,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":89},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":67,"name":"","startTime":"2024-03-27T20:00:00-07:00","endTime":"2024-03-27T21:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":90},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":68,"name":"","startTime":"2024-03-27T21:00:00-07:00","endTime":"2024-03-27T22:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":90},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":69,"name":"","startTime":"2024-03-27T22:00:00-07:00","endTime":"2024-03-27T23:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":73},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":89},"windSpeed":"15 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,73?size=small","shortForecast":"Rain Likely","detailedForecast":""},{"number":70,"name":"","startTime":"2024-03-27T23:00:00-07:00","endTime":"2024-03-28T00:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":11.11111111111111},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":88},"windSpeed":"15 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":71,"name":"","startTime":"2024-03-28T00:00:00-07:00","endTime":"2024-03-28T01:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":10.555555555555555},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":86},"windSpeed":"15 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":72,"name":"","startTime":"2024-03-28T01:00:00-07:00","endTime":"2024-03-28T02:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":10},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"15 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":73,"name":"","startTime":"2024-03-28T02:00:00-07:00","endTime":"2024-03-28T03:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":9.444444444444445},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":74,"name":"","startTime":"2024-03-28T03:00:00-07:00","endTime":"2024-03-28T04:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":75,"name":"","startTime":"2024-03-28T04:00:00-07:00","endTime":"2024-03-28T05:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":51},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,51?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":76,"name":"","startTime":"2024-03-28T05:00:00-07:00","endTime":"2024-03-28T06:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":77,"name":"","startTime":"2024-03-28T06:00:00-07:00","endTime":"2024-03-28T07:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":78,"name":"","startTime":"2024-03-28T07:00:00-07:00","endTime":"2024-03-28T08:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":79,"name":"","startTime":"2024-03-28T08:00:00-07:00","endTime":"2024-03-28T09:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":80,"name":"","startTime":"2024-03-28T09:00:00-07:00","endTime":"2024-03-28T10:00:00-07:00","isDaytime":true,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":81,"name":"","startTime":"2024-03-28T10:00:00-07:00","endTime":"2024-03-28T11:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":21},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/rain,21?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":82,"name":"","startTime":"2024-03-28T11:00:00-07:00","endTime":"2024-03-28T12:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":71},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":83,"name":"","startTime":"2024-03-28T12:00:00-07:00","endTime":"2024-03-28T13:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":68},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":84,"name":"","startTime":"2024-03-28T13:00:00-07:00","endTime":"2024-03-28T14:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":66},"windSpeed":"9 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":85,"name":"","startTime":"2024-03-28T14:00:00-07:00","endTime":"2024-03-28T15:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":65},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":86,"name":"","startTime":"2024-03-28T15:00:00-07:00","endTime":"2024-03-28T16:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":66},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":87,"name":"","startTime":"2024-03-28T16:00:00-07:00","endTime":"2024-03-28T17:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":13},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":67},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,13?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":88,"name":"","startTime":"2024-03-28T17:00:00-07:00","endTime":"2024-03-28T18:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":69},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/day/sct,3?size=small","shortForecast":"Mostly Sunny","detailedForecast":""},{"number":89,"name":"","startTime":"2024-03-28T18:00:00-07:00","endTime":"2024-03-28T19:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,3?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":90,"name":"","startTime":"2024-03-28T19:00:00-07:00","endTime":"2024-03-28T20:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":71},"windSpeed":"12 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/sct,3?size=small","shortForecast":"Partly Cloudy","detailedForecast":""},{"number":91,"name":"","startTime":"2024-03-28T20:00:00-07:00","endTime":"2024-03-28T21:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":6.666666666666667},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,3?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":92,"name":"","startTime":"2024-03-28T21:00:00-07:00","endTime":"2024-03-28T22:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":6.666666666666667},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":73},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,3?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":93,"name":"","startTime":"2024-03-28T22:00:00-07:00","endTime":"2024-03-28T23:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":3},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"10 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/bkn,3?size=small","shortForecast":"Mostly Cloudy","detailedForecast":""},{"number":94,"name":"","startTime":"2024-03-28T23:00:00-07:00","endTime":"2024-03-29T00:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":95,"name":"","startTime":"2024-03-29T00:00:00-07:00","endTime":"2024-03-29T01:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":77},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":96,"name":"","startTime":"2024-03-29T01:00:00-07:00","endTime":"2024-03-29T02:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"7 mph","windDirection":"W","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":97,"name":"","startTime":"2024-03-29T02:00:00-07:00","endTime":"2024-03-29T03:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"7 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":98,"name":"","startTime":"2024-03-29T03:00:00-07:00","endTime":"2024-03-29T04:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"7 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":99,"name":"","startTime":"2024-03-29T04:00:00-07:00","endTime":"2024-03-29T05:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":18},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"7 mph","windDirection":"SW","icon":"https://api.weather.gov/icons/land/night/rain,18?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":100,"name":"","startTime":"2024-03-29T05:00:00-07:00","endTime":"2024-03-29T06:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"8 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":101,"name":"","startTime":"2024-03-29T06:00:00-07:00","endTime":"2024-03-29T07:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"8 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":102,"name":"","startTime":"2024-03-29T07:00:00-07:00","endTime":"2024-03-29T08:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"8 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":103,"name":"","startTime":"2024-03-29T08:00:00-07:00","endTime":"2024-03-29T09:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"10 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":104,"name":"","startTime":"2024-03-29T09:00:00-07:00","endTime":"2024-03-29T10:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"10 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":105,"name":"","startTime":"2024-03-29T10:00:00-07:00","endTime":"2024-03-29T11:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":77},"windSpeed":"10 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":106,"name":"","startTime":"2024-03-29T11:00:00-07:00","endTime":"2024-03-29T12:00:00-07:00","isDaytime":true,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":75},"windSpeed":"14 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":107,"name":"","startTime":"2024-03-29T12:00:00-07:00","endTime":"2024-03-29T13:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":73},"windSpeed":"14 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":108,"name":"","startTime":"2024-03-29T13:00:00-07:00","endTime":"2024-03-29T14:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"14 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":109,"name":"","startTime":"2024-03-29T14:00:00-07:00","endTime":"2024-03-29T15:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"17 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":110,"name":"","startTime":"2024-03-29T15:00:00-07:00","endTime":"2024-03-29T16:00:00-07:00","isDaytime":true,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":73},"windSpeed":"17 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":111,"name":"","startTime":"2024-03-29T16:00:00-07:00","endTime":"2024-03-29T17:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":66},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"17 mph","windDirection":"S","icon":"https://api.weather.gov/icons/land/day/rain,66?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":112,"name":"","startTime":"2024-03-29T17:00:00-07:00","endTime":"2024-03-29T18:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/day/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":113,"name":"","startTime":"2024-03-29T18:00:00-07:00","endTime":"2024-03-29T19:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":77},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":114,"name":"","startTime":"2024-03-29T19:00:00-07:00","endTime":"2024-03-29T20:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"16 mph","windDirection":"SSW","icon":"https://api.weather.gov/icons/land/night/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":115,"name":"","startTime":"2024-03-29T20:00:00-07:00","endTime":"2024-03-29T21:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"13 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/night/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":116,"name":"","startTime":"2024-03-29T21:00:00-07:00","endTime":"2024-03-29T22:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"13 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/night/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":117,"name":"","startTime":"2024-03-29T22:00:00-07:00","endTime":"2024-03-29T23:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":58},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"13 mph","windDirection":"SSE","icon":"https://api.weather.gov/icons/land/night/rain,58?size=small","shortForecast":"Light Rain Likely","detailedForecast":""},{"number":118,"name":"","startTime":"2024-03-29T23:00:00-07:00","endTime":"2024-03-30T00:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"12 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":119,"name":"","startTime":"2024-03-30T00:00:00-07:00","endTime":"2024-03-30T01:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"12 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":120,"name":"","startTime":"2024-03-30T01:00:00-07:00","endTime":"2024-03-30T02:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":79},"windSpeed":"12 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":121,"name":"","startTime":"2024-03-30T02:00:00-07:00","endTime":"2024-03-30T03:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"13 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":122,"name":"","startTime":"2024-03-30T03:00:00-07:00","endTime":"2024-03-30T04:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"13 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":123,"name":"","startTime":"2024-03-30T04:00:00-07:00","endTime":"2024-03-30T05:00:00-07:00","isDaytime":false,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":53},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"13 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/night/rain,53?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":124,"name":"","startTime":"2024-03-30T05:00:00-07:00","endTime":"2024-03-30T06:00:00-07:00","isDaytime":false,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/night/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":125,"name":"","startTime":"2024-03-30T06:00:00-07:00","endTime":"2024-03-30T07:00:00-07:00","isDaytime":true,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":126,"name":"","startTime":"2024-03-30T07:00:00-07:00","endTime":"2024-03-30T08:00:00-07:00","isDaytime":true,"temperature":50,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":127,"name":"","startTime":"2024-03-30T08:00:00-07:00","endTime":"2024-03-30T09:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.222222222222222},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":128,"name":"","startTime":"2024-03-30T09:00:00-07:00","endTime":"2024-03-30T10:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":129,"name":"","startTime":"2024-03-30T10:00:00-07:00","endTime":"2024-03-30T11:00:00-07:00","isDaytime":true,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":46},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"13 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,46?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":130,"name":"","startTime":"2024-03-30T11:00:00-07:00","endTime":"2024-03-30T12:00:00-07:00","isDaytime":true,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"12 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":131,"name":"","startTime":"2024-03-30T12:00:00-07:00","endTime":"2024-03-30T13:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":71},"windSpeed":"12 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":132,"name":"","startTime":"2024-03-30T13:00:00-07:00","endTime":"2024-03-30T14:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"12 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":133,"name":"","startTime":"2024-03-30T14:00:00-07:00","endTime":"2024-03-30T15:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":69},"windSpeed":"12 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":134,"name":"","startTime":"2024-03-30T15:00:00-07:00","endTime":"2024-03-30T16:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":70},"windSpeed":"12 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":135,"name":"","startTime":"2024-03-30T16:00:00-07:00","endTime":"2024-03-30T17:00:00-07:00","isDaytime":true,"temperature":57,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":48},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":71},"windSpeed":"12 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/day/rain,48?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":136,"name":"","startTime":"2024-03-30T17:00:00-07:00","endTime":"2024-03-30T18:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/day/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":137,"name":"","startTime":"2024-03-30T18:00:00-07:00","endTime":"2024-03-30T19:00:00-07:00","isDaytime":false,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":74},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/night/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":138,"name":"","startTime":"2024-03-30T19:00:00-07:00","endTime":"2024-03-30T20:00:00-07:00","isDaytime":false,"temperature":55,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/night/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":139,"name":"","startTime":"2024-03-30T20:00:00-07:00","endTime":"2024-03-30T21:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":78},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/night/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":140,"name":"","startTime":"2024-03-30T21:00:00-07:00","endTime":"2024-03-30T22:00:00-07:00","isDaytime":false,"temperature":54,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/night/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":141,"name":"","startTime":"2024-03-30T22:00:00-07:00","endTime":"2024-03-30T23:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":25},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":81},"windSpeed":"12 mph","windDirection":"NNW","icon":"https://api.weather.gov/icons/land/night/rain,25?size=small","shortForecast":"Chance Light Rain","detailedForecast":""},{"number":142,"name":"","startTime":"2024-03-30T23:00:00-07:00","endTime":"2024-03-31T00:00:00-07:00","isDaytime":false,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":143,"name":"","startTime":"2024-03-31T00:00:00-07:00","endTime":"2024-03-31T01:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":144,"name":"","startTime":"2024-03-31T01:00:00-07:00","endTime":"2024-03-31T02:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"9 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":145,"name":"","startTime":"2024-03-31T02:00:00-07:00","endTime":"2024-03-31T03:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":82},"windSpeed":"8 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":146,"name":"","startTime":"2024-03-31T03:00:00-07:00","endTime":"2024-03-31T04:00:00-07:00","isDaytime":false,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"8 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":147,"name":"","startTime":"2024-03-31T04:00:00-07:00","endTime":"2024-03-31T05:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":20},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"8 mph","windDirection":"N","icon":"https://api.weather.gov/icons/land/night/rain,20?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":148,"name":"","startTime":"2024-03-31T05:00:00-07:00","endTime":"2024-03-31T06:00:00-07:00","isDaytime":false,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"7 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/night/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":149,"name":"","startTime":"2024-03-31T06:00:00-07:00","endTime":"2024-03-31T07:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"7 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/day/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":150,"name":"","startTime":"2024-03-31T07:00:00-07:00","endTime":"2024-03-31T08:00:00-07:00","isDaytime":true,"temperature":51,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":7.777777777777778},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":84},"windSpeed":"7 mph","windDirection":"NE","icon":"https://api.weather.gov/icons/land/day/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":151,"name":"","startTime":"2024-03-31T08:00:00-07:00","endTime":"2024-03-31T09:00:00-07:00","isDaytime":true,"temperature":52,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":83},"windSpeed":"8 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/day/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":152,"name":"","startTime":"2024-03-31T09:00:00-07:00","endTime":"2024-03-31T10:00:00-07:00","isDaytime":true,"temperature":53,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.333333333333334},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":80},"windSpeed":"8 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/day/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":153,"name":"","startTime":"2024-03-31T10:00:00-07:00","endTime":"2024-03-31T11:00:00-07:00","isDaytime":true,"temperature":56,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":17},"dewpoint":{"unitCode":"wmoUnit:degC","value":8.88888888888889},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":76},"windSpeed":"8 mph","windDirection":"E","icon":"https://api.weather.gov/icons/land/day/rain,17?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":154,"name":"","startTime":"2024-03-31T11:00:00-07:00","endTime":"2024-03-31T12:00:00-07:00","isDaytime":true,"temperature":58,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":16},"dewpoint":{"unitCode":"wmoUnit:degC","value":9.444444444444445},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":72},"windSpeed":"9 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,16?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":155,"name":"","startTime":"2024-03-31T12:00:00-07:00","endTime":"2024-03-31T13:00:00-07:00","isDaytime":true,"temperature":59,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":16},"dewpoint":{"unitCode":"wmoUnit:degC","value":9.444444444444445},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":69},"windSpeed":"9 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,16?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""},{"number":156,"name":"","startTime":"2024-03-31T13:00:00-07:00","endTime":"2024-03-31T14:00:00-07:00","isDaytime":true,"temperature":60,"temperatureUnit":"F","temperatureTrend":null,"probabilityOfPrecipitation":{"unitCode":"wmoUnit:percent","value":16},"dewpoint":{"unitCode":"wmoUnit:degC","value":9.444444444444445},"relativeHumidity":{"unitCode":"wmoUnit:percent","value":68},"windSpeed":"9 mph","windDirection":"ENE","icon":"https://api.weather.gov/icons/land/day/rain,16?size=small","shortForecast":"Slight Chance Light Rain","detailedForecast":""}]}} \ No newline at end of file diff --git a/docs/deploying.md b/docs/deploying.md new file mode 100644 index 000000000..6beb62651 --- /dev/null +++ b/docs/deploying.md @@ -0,0 +1,160 @@ +# Deploying + +You can host your built Framework app on any static site hosting service, or self-host it with any static site server. This guide covers deploying to [Observable Cloud](https://observablehq.com/platform/cloud), which is the easiest way to host your Framework app as support is built-in. We’ll also cover setting up automated deploys with GitHub Actions. + +
+ +If you don’t yet have an app ready to deploy, create one by following our [Getting started guide](./getting-started). + +
+ +## Manual deploys + +To deploy your app, run the deploy command: + +```sh +npm run deploy +``` + +
+ +Deploying automatically creates a [deploy configuration file](#deploy-configuration) (`.observablehq/deploy.json`) if it does not already exist. You should commit this file to git; it is required for automated deploys, and lets you re-deploy manually with fewer prompts. + +
+ +The first time you deploy an app, you will be prompted to configure the app’s _slug_ (which determines its URL), access level, and other details. If you aren’t yet signed-in to Observable, you will also be prompted to sign-in. + +When the deploy command finishes, it prints a link to observablehq.cloud where you can view your deployed app. If you choose _private_ as the access level, that link will only be accessible to members of your Observable workspace. (You can invite people to your workspace by going to observablehq.com.) If you choose _public_, you can share your app link with anyone. You can change the access level of an app later [from your Data apps page](https://observablehq.com/select-workspace?next=projects). + +
+ +To see more available options when deploying: + +```sh run=false +npm run deploy -- --help +``` + +
+ +## Automated deploys + +After deploying an app manually at least once, Observable can handle subsequent deploys for you automatically. You can automate deploys both [on commit](https://observablehq.com/documentation/data-apps/github) (whenever you push a new commit to your project’s default branch) and [on schedule](https://observablehq.com/documentation/data-apps/schedules) (such as daily or weekly). + +Automatic deploys — also called _continuous deployment_ or _CD_ — ensure that your data is always up to date, and that any changes you make to your app are immediately reflected in the deployed version. + +On your app settings page on Observable, open the **Build settings** tab to set up a link to a GitHub repository hosting your project’s files. Observable will then listen for changes in the repo and deploy the app automatically. + +The settings page also allows you to trigger a manual deploy on Observable Cloud, add secrets (for data loaders to use private APIs and passwords), view logs, configure sharing, _etc._ For details, see the [Building & deploying](https://observablehq.com/documentation/data-apps/deploys) documentation. + +## GitHub Actions + +As an alternative to building on Observable Cloud, you can use [GitHub Actions](https://github.com/features/actions) and have GitHub build a new version of your app and deploy it to Observable. In your git repository, create and commit a file at `.github/workflows/deploy.yml`. Here is a starting example: + +```yaml +name: Deploy + +on: + # Run this workflow whenever a new commit is pushed to main. + push: {branches: [main]} + # Run this workflow once per day, at 10:15 UTC + schedule: [{cron: "15 10 * * *"}] + # Run this workflow when triggered manually in GitHub’s UI. + workflow_dispatch: {} + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + - run: npm ci + - run: npm run build + - name: Deploy to Observable Cloud + # This parameter to `--message` will use the latest commit message + run: npm run deploy -- --message "$(git log -1 --pretty=%s)" + env: + # Authentication information. See below for how to set this up. + OBSERVABLE_TOKEN: ${{ secrets.OBSERVABLE_TOKEN }} +``` + +
As shown above, deploy messages can be set using --message. This is especially useful for continuous deployment from a git repository: the message can include the SHA, author, and message of the latest commit.
+ +When deploying automatically, you can’t sign-in in your browser the way you did for manual deploys; instead, your GitHub action will authenticate using an Observable API key (also known as a _token_ and referred to as `OBSERVABLE_TOKEN` above). + +To create an API key: + +1. Open the [API Key settings](https://observablehq.com/select-workspace?next=api-keys-settings) for your Observable workspace. +2. Click **New API Key**. +3. Check the **Deploy new versions of projects** checkbox. +4. Give your key a description, such as “Deploy via GitHub Actions”. +5. Click **Create API Key**. + +
+ +The token you create is the equivalent of a password giving write access to your hosted app. **Do not commit it to git** or share it with anyone you don’t trust. If you accidentally expose your key, you can go back to your settings to immediately revoke it (and create a new key). + +
+ +In a moment, you’ll copy-paste your new Observable API key, so leave this window open for now. (If you accidentally close the window, you can delete the old key and create a new one. For security, API keys are only shown once upon creation.) + +To authenticate with Observable and to access the Observable API key securely from our Github action, we’ll use a [GitHub secret](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions). + +To create a GitHub secret, in a new window: + +1. Go to your GitHub repository. +2. In the top navigation, click **Settings**. +3. In the left sidebar, click **Secrets and variables**, then **Actions**. +4. Click **New repository secret**. +5. In the **Name** field, enter `OBSERVABLE_TOKEN`. +6. In the **Secret** field, paste the API key you created on Observable. +7. Click **Add secret**. + +After you’ve performed these steps, the `deploy.yml` above will automatically build and deploy your app once per day (to keep your data up-to-date), as well as whenever you push a new version of the code to your repository (so you can make changes at any time). + +### Caching + +If some of your data loaders take a long time to run, or simply don’t need to be updated every time you modify the code, you can set up caching to automatically re-use existing data from previous builds. To do that, add the following steps to your `deploy.yml` before you run `build`: + +```yaml +jobs: + deploy: + steps: + # … + - id: date + run: echo "date=$(TZ=America/Los_Angeles date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + - id: cache-data + uses: actions/cache@v4 + with: + path: src/.observablehq/cache + key: data-${{ hashFiles('src/data/*') }}-${{ steps.date.outputs.date }} + # … +``` + +This uses one cache per calendar day (in the `America/Los_Angeles` time zone). If you deploy multiple times in a day, the results of your data loaders will be reused on the second and subsequent runs. You can customize the `date` and `cache-data` steps to change the cadence of the caching. For example you could use `date +'%Y-%U'` to cache data for a week or `date +'%Y-%m-%dT%H'` to cache it for only an hour. + +
You’ll need to edit the paths above if you’ve configured a source root other than src.
+ +## Deploy configuration + +The deploy command creates a file at .observablehq/deploy.json under the source root (typically src) with information on where to deploy the app. This file allows you to re-deploy an app without having to repeat where you want the app to live on Observable. + +The contents of the deploy config file look like this: + +```json run=false +{ + "projectId": "0123456789abcdef", + "projectSlug": "hello-framework", + "workspaceLogin": "acme" +} +``` + +To store the deploy config file somewhere else, use the `--deploy-config` argument. For example, to create a “staging” deploy to share early versions of your app, you could use a `deploy-staging.json` like so: + +```sh +npm run deploy -- --deploy-config=src/.observablehq/deploy-staging.json +``` + +If the specified config file does not yet exist, you will again be prompted to choose or create a new app; the resulting configuration will then be saved to the specified file. You can re-deploy to staging by passing the same `--deploy-config` argument; or you can deploy to “production” by not specifying the `--deploy-config` argument to use the default deploy config. diff --git a/docs/embeds.md b/docs/embeds.md new file mode 100644 index 000000000..156972b99 --- /dev/null +++ b/docs/embeds.md @@ -0,0 +1,162 @@ +--- +keywords: embedded analytics, embeds, iframe, exporting, exports +--- + +# Embedding + +In addition to standalone apps, you can use Framework to embed interactive views within other applications. Framework supports multiple approaches to embedding: + +- [exported modules](#exported-modules) for seamless integration and performance, +- [exported files](#exported-files) for hotlinking images, data, and other assets, or +- [iframe embeds](#iframe-embeds) for compatibility. + +## Exported modules + +Framework allows [JavaScript modules](./imports#local-imports) to be exported for use in another application. Exported modules are vanilla JavaScript and behave identically in an external web application as on a Framework page. As with local modules, exported modules can load data from a [static file](./files) or a [data loader](./data-loaders), [import](./imports) other local modules, and import libraries from [npm](./imports#npm-imports) or [JSR](./imports#jsr-imports). + +Exported modules typically define **data components**: functions that render dynamic content, such as a chart or table, by returning a DOM element. Data components can take options (or “props”), and load any needed data using [`FileAttachment`](./files). For example, the `chart.js` module below exports a `Chart` data component that loads a CSV file and renders a responsive scatterplot of global surface temperature. + +```js run=false +import * as Plot from "npm:@observablehq/plot"; +import {FileAttachment, resize} from "observablehq:stdlib"; + +export async function Chart() { + const gistemp = await FileAttachment("./lib/gistemp.csv").csv({typed: true}); + return resize((width) => + Plot.plot({ + width, + y: {grid: true}, + color: {scheme: "burd"}, + marks: [Plot.dot(gistemp, {x: "Date", y: "Anomaly", stroke: "Anomaly"}), Plot.ruleY([0])] + }) + ); +} +``` + +Data components benefit from Framework’s baked data architecture for instant loads. File and import resolutions are baked into exported modules at build time. Libraries from npm are [self-hosted](./imports#self-hosting-of-npm-imports) for stability, security, and performance. And transitive static imports are preloaded to avoid long request chains. + +To export a module, declare the module’s path in your [config file](./config) using the [**dynamicPaths** option](./config#dynamic-paths). For example, to export the module named `chart.js`: + +```js run=false +export default { + dynamicPaths: [ + "/chart.js" + ] +}; +``` + +Or for [parameterized routes](./params), name the module `product-[id]/chart.js`, then load a list of product identifiers from a database with a SQL query: + +```js run=false +import postgres from "postgres"; + +const sql = postgres(); // Note: uses psql environment variables + +export default { + async *dynamicPaths() { + for await (const {id} of sql`SELECT id FROM products`.cursor()) { + yield `/product-${id}/chart.js`; + } + } +}; +``` + +### Importing exported modules + +An exported module can then be imported into a vanilla web application like so: + +```html run=false + +``` + +
+ +Observable Cloud support for cross-origin resource sharing (CORS) is not yet generally available and is needed for exported modules. If you are interested in beta-testing this feature, please [email us](mailto:support@observablehq.com). For public apps, you can use a third-party host supporting CORS such as GitHub Pages. + +
+ +In React, you can do something similar using [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) and [`useEffect`](https://react.dev/reference/react/useEffect) and [`useRef`](https://react.dev/reference/react/useRef) hooks (see this example live on [StackBlitz](https://stackblitz.com/edit/observable-framework-embed-react?file=src%2FApp.tsx)): + +```jsx run=false +import {useEffect, useRef} from "react"; + +export function EmbedChart() { + const ref = useRef(null); + + useEffect(() => { + let parent = ref.current, child; + import("https://my-workspace.observablehq.cloud/my-app/chart.js") + .then(({Chart}) => Chart()) + .then((chart) => parent?.append((child = chart))); + return () => ((parent = null), child?.remove()); + }, []); + + return
; +} +``` + +
+ +Some web tooling such as Vite and Webpack erroneously rewrite external dynamic imports. You may need to include a comment such as `import(/* @vite-ignore */ …)` or `import(/* webpackIgnore: true */ …)` to disable this behavior. + +
+ +## Exported files + +You can declare specific files to export using the [**dynamicPaths** config option](./config#dynamic-paths). Exported files are published under a stable URL that can be linked to and loaded from an external application. Exported files can be either [static](./files) or generated dynamically by [data loaders](./data-loaders). And you can use [parameterized routes](./params). + +For example, say you want to chart downloads of open-source libraries you maintain. You could use a data loader to server-side render SVG with Observable Plot. (See Plot’s [Getting Started](https://observablehq.com/plot/getting-started#plot-in-node-js) guide.) In your config file, list the charts you want to build: + +```js run=false +export default { + dynamicPaths: [ + "/@observablehq/framework/downloads-dark.svg", + "/@observablehq/framework/downloads.svg", + "/@observablehq/plot/downloads-dark.svg", + "/@observablehq/plot/downloads.svg", + "/@observablehq/runtime/downloads-dark.svg", + "/@observablehq/runtime/downloads.svg" + ] +}; +``` + +Once your app is deployed, you can then load the generated SVG into another app — or READMEs on GitHub — using the `img` tag. For example, below is a chart of daily downloads of Observable Framework powered by our [open-source analytics](https://github.com/observablehq/oss-analytics/). + + + + Daily downloads of Observable Framework + + +```html run=false + + + Daily downloads of Observable Framework + +``` + +## Iframe embeds + +You can alternatively embed Framework pages using iframes. Pages that are intended to be embedded via iframe typically disable Framework’s built-in user interface using [Markdown front matter](./markdown#front-matter): + +```yaml +--- +sidebar: false +header: false +footer: false +pager: false +--- +``` + +For the page `/chart`, you can declare an iframe like so: + +```html run=false + +``` + +With a little bit of additional JavaScript, you can also implement [responsive iframe embeds](https://observablehq.observablehq.cloud/framework-example-responsive-iframe/) which resize automatically to fit the content of the page. diff --git a/docs/javascript/files.md b/docs/files.md similarity index 51% rename from docs/javascript/files.md rename to docs/files.md index 3ebb6ccbe..cd209c441 100644 --- a/docs/javascript/files.md +++ b/docs/files.md @@ -1,18 +1,27 @@ -# JavaScript: Files +--- +keywords: file, fileattachment, attachment +--- -Load files — whether static or generated dynamically by a [data loader](../loaders) — using the built-in `FileAttachment` function. This is available by default in Markdown, but you can import it explicitly like so: +# Files + +Load files — whether static or generated dynamically by a [data loader](./data-loaders) — using the built-in `FileAttachment` function. This is available by default in Markdown, but you can import it explicitly like so: ```js echo -import {FileAttachment} from "npm:@observablehq/stdlib"; +import {FileAttachment} from "observablehq:stdlib"; ``` -The `FileAttachment` function takes a path and returns a file handle. This handle exposes the file’s name and [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types). +The `FileAttachment` function takes a path and returns a file handle. This handle exposes: + +* `name` - the file’s name (such as `volcano.json`), +* `mimeType` - [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) (such as `application/json`), +* `lastModified` - modification time (in milliseconds since epoch), and +* `size` - size in bytes . ```js echo FileAttachment("volcano.json") ``` -Like a local [import](./imports), the path is relative to the calling code’s source file: either the page’s Markdown file or the imported local JavaScript module. (To load a remote file, use [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), or use a [data loader](../loaders) to download the file at build time.) +Like a [local import](./imports#local-imports), the path is relative to the calling code’s source file: either the page’s Markdown file or the imported local JavaScript module. To load a remote file, use [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), or use a [data loader](./data-loaders) to download the file at build time. Calling `FileAttachment` doesn’t actually load the file; the contents are only loaded when you invoke a [file contents method](#supported-formats). For example, to load a JSON file: @@ -20,15 +29,15 @@ Calling `FileAttachment` doesn’t actually load the file; the contents are only const volcano = FileAttachment("volcano.json").json(); ``` -The value of `volcano` above is a [promise](./promises). In other code blocks, the promise is resolved implicitly and hence you can refer to the resolved value directly. +The value of `volcano` above is a [promise](./reactivity#promises). In other code blocks, the promise is implicitly awaited and hence you can refer to the resolved value directly. ```js echo volcano ``` -### Static analysis +## Static analysis -The `FileAttachment` function can _only_ be passed a static string literal; constructing a dynamic path such as `FileAttachment("my" + "file.csv")` is invalid syntax. Static analysis is used to invoke [data loaders](../loaders) at build time, and ensures that only referenced files are included in the generated output during build. In the future [#260](https://github.com/observablehq/framework/issues/260), it will also allow content hashes for cache breaking during deploy. +The `FileAttachment` function can _only_ be passed a static string literal; constructing a dynamic path such as FileAttachment(\`frame$\{i}.png\`) is invalid syntax. Static analysis is used to invoke [data loaders](./data-loaders) at build time, and ensures that only referenced files are included in the generated output during build. This also allows a content hash in the file name for cache breaking during deploy. If you have multiple files, you can enumerate them explicitly like so: @@ -48,20 +57,24 @@ const frames = [ None of the files in `frames` above are loaded until a [content method](#supported-formats) is invoked, for example by saying `frames[0].image()`. +For missing files, `file.size` and `file.lastModified` are undefined. The `file.mimeType` is determined by checking the file extension against the [`mime-db` media type database](https://github.com/jshttp/mime-db); it defaults to `application/octet-stream`. + ## Supported formats `FileAttachment` supports a variety of methods for loading file contents: | method | return type | - | - +| [`file.arquero`][arquero] | Arquero [`Table`][arquero-table] | [`file.arrayBuffer`][binary] | [`ArrayBuffer`][array-buffer] -| [`file.arrow`][arrow] | [`Table`][arrow-table] +| [`file.arrow`][arrow] | Arrow [`Table`][arrow-table] | [`file.blob`][binary] | [`Blob`][blob] | [`file.csv`][csv] | [`Array`][array] +| [`file.dsv`][csv] | [`Array`][array] | [`file.html`][markup] | [`Document`][document] | [`file.image`][media] | [`HTMLImageElement`][image] | [`file.json`][json] | [`Array`][array], [`Object`][object], _etc._ -| [`file.parquet`][arrow] | [`Table`][arrow-table] +| [`file.parquet`][arrow] | Arrow [`Table`][arrow-table] | [`file.sqlite`][sqlite] | [`SQLiteDatabaseClient`][sqlite] | [`file.stream`][binary] | [`ReadableStream`][stream] | [`file.text`][text] | [`string`][string] @@ -70,6 +83,8 @@ None of the files in `frames` above are loaded until a [content method](#support | [`file.xml`][markup] | [`Document`][document] | [`file.zip`][zip] | [`ZipArchive`][zip] +[arquero]: ./lib/arquero +[arquero-table]: https://idl.uw.edu/arquero/api/#table [array-buffer]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer [arrow-table]: https://arrow.apache.org/docs/js/classes/Arrow_dom.Table.html [blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob @@ -81,25 +96,25 @@ None of the files in `frames` above are loaded until a [content method](#support [string]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String [binary]: #binary-formats [basic]: #basic-formats -[arrow]: ../lib/arrow -[csv]: ../lib/csv +[arrow]: ./lib/arrow +[csv]: ./lib/csv [markup]: #markup [media]: #media [json]: #json -[sqlite]: ../lib/sqlite +[sqlite]: ./lib/sqlite [text]: #text -[xlsx]: ../lib/xlsx -[zip]: ../lib/zip +[xlsx]: ./lib/xlsx +[zip]: ./lib/zip -The contents often dictate the appropriate method — for example, an Apache Arrow file is almost always read with `file.arrow`. When multiple methods are valid, choose based on your needs. For example, you can load a CSV file using `file.text` to implement parsing yourself instead of using D3. +The contents of a file often dictate the appropriate method — for example, an Excel XLSX file is almost always read with `file.xlsx`. When multiple methods are valid, choose based on your needs. For example, you can load a CSV file using `file.arquero` to load it into [Arquero](./lib/arquero), or even using `file.text` to implement parsing yourself. -In addition to the above, you can get the resolved relative path to the file using `file.url`. This returns a [promise](./promises) to a string: +In addition to the above, you can get the resolved absolute URL of the file using `file.href`: ```js echo -FileAttachment("volcano.json").url() +FileAttachment("volcano.json").href ``` -See [file-based routing](../routing#files) for additional details. +See [file-based routing](#routing) for additional details. ## Basic formats @@ -139,17 +154,17 @@ A common gotcha with JSON is that it has no built-in date type; dates are theref ### Media -To display an image, you can use a static image in [Markdown](../markdown) such as `` or `![horse](horse.jpg)`. Likewise, you can use a `video` or `audio` element. Per [file-based routing](../routing#files), static references to these files are automatically detected and therefore these files will be included in the built output. +To display an image, you can use a static image in [Markdown](./markdown) such as `` or `![horse](horse.jpg)`. Likewise, you can use a `video` or `audio` element. Per [file-based routing](#routing), static references to these files are automatically detected and therefore these files will be included in the built output. -
Observable Framework v1.0.0
+
Observable Framework v1.12.0
 ↳ http://127.0.0.1:3000/
-
-

If port 3000 is in use, the preview server will choose the next available port, so your actual port may vary. To specify port 4321 (and similarly for any other port), use --port 4321.

-

For security, the preview server is by default only accessible on your local machine using the loopback address 127.0.0.1. To allow remote connections, use --host 0.0.0.0.

+
+ +If port 3000 is in use, the preview server will choose the next available port, so your actual port may vary. To specify a different port, use `--port`. For example, to run the preview server with npm on port 4321: + +```sh +npm run dev -- --port 4321 +``` + +For security, the preview server is by default only accessible on your local machine using the [loopback address](https://en.wikipedia.org/wiki/Localhost) 127.0.0.1. To allow remote connections, use `--host 0.0.0.0`. + +Port numbers below 1024 may need admin privileges. For example, to share your preview server on the default HTTP port 80: + +```sh +sudo npm run dev -- --host 0.0.0.0 --port 80 +``` +
Now visit in your browser, which should look like: @@ -236,14 +176,14 @@ Now visit in your browser, which should look like: -
The default home page (docs/index.md) after creating a new project.
+
The default home page (src/index.md) after creating a new app.
### Test live preview -Live preview means that as you save changes, your in-browser preview updates instantly. Live preview applies to Markdown pages, imported JavaScript modules (so-called *hot module replacement*), data loaders, and file attachments. This feature is implemented by the preview server watching files and pushing changes to the browser over a socket. +Live preview means that as you save changes, your in-browser preview updates instantly. Live preview applies to Markdown pages, imported JavaScript modules (so-called *hot module replacement*), data loaders, page loaders, and file attachments. This feature is implemented by the preview server watching files and pushing changes to the browser over a socket. -To experience live preview, open docs/index.md in your preferred text editor — below we show Visual Studio Code — and position your browser window so that you can see your editor and browser side-by-side. If you then replace the text “Hello, Observable Framework” with “Hi, Mom!” and save, you should see: +To experience live preview, open src/index.md in your preferred text editor — below we show Zed — and position your browser window so that you can see your editor and browser side-by-side. If you then replace the text “Hello Framework” with “Hi, Mom!” and save, you should see:
@@ -253,21 +193,19 @@ To experience live preview, open docs/index.md in your preferred te
No seriously — hi, Mom! Thanks for supporting me all these years.
-
If you don’t see an update after saving, try reloading. The preview socket may disconnect if you’re idle. Please upvote #50 if you run into this issue.
- ### Create a new page -Now let’s add a page for our weather dashboard. Create a new file `docs/weather.md` and paste in the following snippet: +Now let’s add a page for our weather dashboard. Create a new file `src/weather.md` and paste in the following snippet: ````md run=false # Weather report ```js -1 + 2 +display(1 + 2); ``` ```` -To see the new page in the sidebar, you must restart the preview server. In the terminal, use Control-C (⌃C) to kill the preview server. Then use up arrow (↑) to re-run the command to start the preview server (`npm run dev` or `yarn dev`). Lastly, reload your browser. A bit of rigamarole, but you won’t have to do it often… 😓 Upvote #645 and #646 if you’d like this to be better. +To see the new page in the sidebar, reload the page. If you click on the **Weather report** link in the sidebar, it’ll take you to , where you should see: @@ -285,9 +223,9 @@ As evidenced by the code 1 + 2 rendered as docs/data/forecast.json.js
and paste in the following snippet: +Create a new file src/data/forecast.json.js and paste in the following snippet:
const longitude = ${html`${longitude.toFixed(2)}`};
 const latitude = ${html`${latitude.toFixed(2)}`};
@@ -301,7 +239,7 @@ async function json(url) {
 const station = await json(`https://api.weather.gov/points/${latitude},${longitude}`);
 const forecast = await json(station.properties.forecastHourly);
 
-process.stdout.write(JSON.stringify(forecast));
+process.stdout.write(JSON.stringify(forecast));
```js const location = view(Locator([-122.47, 37.8])); @@ -338,40 +276,42 @@ const [longitude, latitude] = location; To personalize this code snippet to your current location, edit the longitude and latitude values above, or click the **Locate me** button above. -
NWS does not provide forecasts for points outside the United States, so if you specify such a location the API will return an error and the data loader will fail.
+
NWS does not provide forecasts for points outside the United States. If you specify such a location the API will error and the data loader will fail.
If you would rather write your data loader in Python, R, or some other language, take a peek at the next steps below before continuing.
Your data loader should look like this:
- +
A JavaScript data loader for fetching a local forecast from weather.gov.
If you like, you can run your data loader manually in the terminal: -
node docs/data/forecast.json.js
+
node src/data/forecast.json.js
If this barfs a bunch of JSON in the terminal, it’s working as intended. 😅 Normally you don’t run data loaders by hand — Framework runs them automatically, as needed — but data loaders are “just” programs so you can run them manually if you want. Conversely, any executable or shell script that runs on your machine and outputs something to stdout can be a data loader! ### File attachments -Framework uses [file-based routing](./routing) not just for pages but for data loaders as well: the data loader forecast.json.js serves the file forecast.json. To load this file from docs/weather.md we use the relative path ./data/forecast.json. In effect, data loaders are simply a naming convention for generating “static” files — a big advantage of which is that you can edit a data loader and the changes immediately propagate to the live preview without needing a reload. +Framework uses [file-based routing](./data-loaders#routing) for data loaders: the data loader forecast.json.js serves the file forecast.json. To load this file from src/weather.md we use the relative path ./data/forecast.json. In effect, data loaders are simply a naming convention for generating “static” files — a big advantage of which is that you can edit a data loader and the changes immediately propagate to the live preview without needing a reload. -To load a file in JavaScript, use the built-in [`FileAttachment`](./javascript/files). In `weather.md`, replace the contents of the JavaScript code block (the parts inside the triple backticks ```) with the following code: +To load a file in JavaScript, use the built-in [`FileAttachment`](./files). In `weather.md`, replace the contents of the JavaScript code block (the parts inside the triple backticks ```) with the following code: ```js run=false const forecast = FileAttachment("./data/forecast.json").json(); ``` -
FileAttachment is a special function that can only be passed a static string literal as an argument. This restriction enables static analysis, allowing Framework to determine which data loaders to run on build and improving security by only including referenced files in the published site.
+
FileAttachment is a special function that can only be passed a static string literal as an argument. This restriction enables static analysis, allowing Framework to determine which data loaders to run on build and improving security by only including referenced files in the published app.
You can now reference the variable `forecast` from other code. For example, you can add another code block that displays the `forecast` data. -```js run=false +````md run=false +```js display(forecast); ``` +```` This looks like: @@ -383,7 +323,11 @@ This looks like:
Using FileAttachment to load data.
-The built-in [`display`](./javascript/display) function displays the specified value, a bit like `console.log` in the browser’s console. As you may have noticed above with 1 + 2, `display` is called implicitly when a code block contains an expression. +The built-in [`display`](./javascript#explicit-display) function displays the specified value, a bit like `console.log` in the browser’s console. As you can see below, `display` is called [implicitly](./javascript#implicit-display) when a code block contains an expression: + +```js echo +1 + 2 +``` For convenience, here’s a copy of the data so you can explore it here: @@ -399,8 +343,9 @@ This is a GeoJSON `Feature` object of a `Polygon` geometry representing the grid ```js +const ACCESS_TOKEN = "pk.eyJ1Ijoib2JzZXJ2YWJsZWhxLWVuZy1hZG1pbiIsImEiOiJjbHMxaTBwdDkwYnRsMmpxeG12M2kzdWFvIn0.Ga6eIWP2YNQrEW4FzHRcTQ"; const map = L.map(document.querySelector("#map")); -const tile = L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png").addTo(map); +const tile = L.tileLayer(`https://api.mapbox.com/styles/v1/mapbox/streets-v11/tiles/256/{z}/{x}/{y}@2x?access_token=${ACCESS_TOKEN}`, {attribution: '© Mapbox © OpenStreetMap'}).addTo(map); const geo = L.geoJSON().addData(forecast).addTo(map); map.fitBounds(geo.getBounds(), {padding: [50, 50]}); invalidation.then(() => map.remove()); @@ -412,23 +357,25 @@ const forecast = FileAttachment("./data/forecast.json").json(); ### Plots -Now let’s add a chart using Observable Plot. Framework includes a variety of recommended libraries by default, including `Plot`, and you can always import more from npm. Replace the `display(forecast)` code block with the following code: +Now let’s add a chart using Observable Plot. Framework includes a variety of recommended libraries by default, including `Plot`, and you can always import more from npm. Replace the `display(forecast)` code block with the following code: ```js run=false -Plot.plot({ - title: "Hourly temperature forecast", - x: {type: "utc", ticks: "day", label: null}, - y: {grid: true, inset: 10, label: "Degrees (F)"}, - marks: [ - Plot.lineY(forecast.properties.periods, { - x: "startTime", - y: "temperature", - z: null, // varying color, not series - stroke: "temperature", - curve: "step-after" - }) - ] -}) +display( + Plot.plot({ + title: "Hourly temperature forecast", + x: {type: "utc", ticks: "day", label: null}, + y: {grid: true, inset: 10, label: "Degrees (F)"}, + marks: [ + Plot.lineY(forecast.properties.periods, { + x: "startTime", + y: "temperature", + z: null, // varying color, not series + stroke: "temperature", + curve: "step-after" + }) + ] + }) +); ```
Because this is JSON data, startTime is a string rather than a Date. Setting the type of the x scale to utc tells Plot to interpret these values as temporal rather than ordinal.
@@ -477,10 +424,10 @@ function temperaturePlot(data, {width} = {}) { Now you can call `temperaturePlot` to display the forecast anywhere on the page: ```js run=false -temperaturePlot(forecast) +display(temperaturePlot(forecast)); ``` -
JavaScript can be extracted into standalone modules (.js files) that you can import into Markdown. This lets you share code across pages, write unit tests for components, and more.
+
JavaScript can be extracted into standalone modules (.js files) that you can import into Markdown. This lets you share code across pages, write unit tests for components, and more.
### Layout @@ -508,7 +455,7 @@ When placing charts in a grid, you typically want to render responsively based o
``` -Lastly, let’s apply the `dashboard` [theme](./themes) and disable the table of contents (`toc`) using [YAML front matter](./markdown). The `dashboard` theme allows the main column to span the full width of the window; without it, the main column width is limited to 1152px as appropriate for documentation or a report. +Lastly, let’s apply the `dashboard` [theme](./themes) and disable the table of contents (`toc`) using [YAML front matter](./markdown#front-matter). The `dashboard` theme allows the main column to span the full width of the window; without it, the main column width is limited to 1152px as appropriate for documentation or a report. ```yaml run=false --- @@ -529,7 +476,7 @@ _Ta-da!_ 🎉 Perhaps not the most exciting dashboard yet, but it has potential! ## 3. Publish -When you’re ready to share your project — whether privately with specific people you want to invite, or publicly with the world — you can quickly deploy it to [Observable](https://observablehq.com) using the `deploy` command: +When you’re ready to share your app — either privately or publicly — you can quickly deploy it to [Observable](https://observablehq.com) using the `deploy` command:
npm run deploy
@@ -537,27 +484,11 @@ Or with Yarn:
yarn deploy
-
If you don’t have an Observable account yet, the first time you deploy you’ll be prompted to create one. Observable is free for individuals and small teams, and we offer paid tiers for larger teams.
- -If this is your first time deploying to Observable, you’ll be prompted to create a new project. This determines where you project lives on Observable. - -
Your deploy configuration is saved to docs/.observablehq/deploy.json. When collaborating on a project, you should commit this file to git so your collaborators don’t have to separately configure deploy.
- -
-   observable deploy 
-
-  To configure deploy, we need to ask you a few questions.
-
-  Deploying to the ACME Inc. (@acme) workspace.
-
-  No projects found. Do you want to create a new project?
-   Yes, continue / ○ No, cancel
-
-
+
If you don’t have an Observable account yet, you will be prompted to sign up. Observable is free for individuals and small teams, and we offer paid tiers for larger teams.
-
If you have multiple workspaces on Observable, you’ll be prompted to chose a workspace before creating a project. And if you’ve previously deployed projects to your chosen workspace, you can chose to deploy to an existing project, overwriting its contents.
+This command will ask you a few questions to configure your deploy, including which Observable workspace to use and whether the app should be public or private. You can also enter an optional message to associate with the deploy, but for now feel free to leave this blank by hitting Enter. -When creating a new project, you need to specify a slug which — together with your workspace username — determines the URL of your project. The slug is a short identifier consisting of lowercase letters, numbers, and hyphens. By default, Framework will suggest a slug based on your project’s title. +When deploy completes, Framework will show your app’s URL on observablehq.cloud, like below. From there you can invite people to your private workspace to see your app, or make your app public so anyone can see it.
    observable deploy 
@@ -565,48 +496,34 @@ When creating a new project, you need to specify a slug which — togethe
   To configure deploy, we need to ask you a few questions.
 
   Which Observable workspace do you want to use?
-│  ACME Inc. (@acme)
+│  Example Inc. (@example)
 
-  Which project do you want to use?
-│  Create a new project
+  Which app do you want to use?
+│  Create a new app
 
-  What slug do you want to use?
-  hello-framework
-
-
- -
You can change the slug later, and Observable will automatically redirect to the latest URL.
- -Lastly, you can enter an optional deploy message. Deploy messages are shown on Observable and help you keep track of deploy history. For now, you can just leave this blank by hitting Enter. - -
-   observable deploy 
+  What slug do you want to use?
+│  hello-framework
 
-  To configure deploy, we need to ask you a few questions.
+  Who is allowed to access your app?
+│  Private
 
-  Which Observable workspace do you want to use?
-│  ACME Inc. (@acme)
+  What changed in this deploy?
+  Enter a deploy message (optional)
 
-  Which project do you want to use?
-│  Create a new project
+  18 uploaded
 
-  What slug do you want to use?
-│  hello-framework
+  Deploy complete
 
-  What changed in this deploy?
-  Enter a deploy message (optional)
-
+  Deployed app now visible at https://example.observablehq.cloud/hello-framework/
 
-
Deploy messages can be set using yarn deploy --message. This is especially useful for continuous deployment from a git repository: the message can include the SHA, author, and message of the latest commit.
- -When deploy completes, Framework will show your project’s URL on observablehq.cloud. From there you can invite people to your private workspace to see your project, or make your project public so anyone can see it. +
Your deploy configuration is saved to src/.observablehq/deploy.json. When collaborating on an app, you should commit this file to git so your collaborators don’t have to separately configure deploy.
### Self hosting -Of course, you don’t have to deploy to Observable — Framework projects are simply static sites, so you can host them anywhere! +Of course, you don’t have to deploy to Observable — Framework apps are simply static sites, so you can host them anywhere! -To build your static site with npm, run: +To build your app with npm, run:
npm run build
@@ -614,10 +531,16 @@ Or with Yarn:
yarn build
-The build command generates the `dist` directory; you can then copy this directory to your static site server or preferred hosting service. To preview your built site locally, you can use a local static HTTP server such as [http-server](https://github.com/http-party/http-server): +The build command generates the `dist` directory; you can then copy this directory to your static site server or preferred hosting service. To preview your built app locally, you can use a local static HTTP server such as [http-server](https://github.com/http-party/http-server):
npx http-server dist
+
By default, Framework generates “clean” URLs by dropping the `.html` extension from page links. Not all webhosts support this; some need the preserveExtension config option set to true.
+ +
When deploying to GitHub Pages without using GitHub’s related actions (configure-pages, +deploy-pages, and +upload-pages-artifact), you may need to create a .nojekyll file in your dist folder after building. See GitHub’s documentation on static site generators for more.
+ ## Next steps Here are a few more tips. @@ -640,12 +563,24 @@ forecast = requests.get(station["properties"]["forecastHourly"]).json() json.dump(forecast, sys.stdout) ``` -To write the data loader in R, name it forecast.json.R. Or as shell script, forecast.json.sh. You get the idea. See [Data loaders: Routing](./loaders#routing) for more. The beauty of this approach is that you can leverage the strengths (and libraries) of multiple languages, and still get instant updates in the browser as you develop. +To write the data loader in R, name it forecast.json.R. Or as shell script, forecast.json.sh. You get the idea. See [Data loaders: Routing](./data-loaders#routing) for more. The beauty of this approach is that you can leverage the strengths (and libraries) of multiple languages, and still get instant updates in the browser as you develop. + +### Deploy automatically + +You can schedule builds and deploy your app automatically on commit, or on a schedule. See [deploying](./deploying) for more details. + +### Update Framework + +To update your app’s dependencies — in particular when a new [release](https://github.com/observablehq/framework/releases) of Framework is available, `cd` into the project and run: + +
npm update
+ +or -### Deploying via GitHub Actions +
yarn upgrade
-You can schedule builds and deploy your project automatically on commit, or on a schedule. See this documentation site’s deploy.yml for an example. +(See the reference for npm and yarn.) ### Ask for help, or share your feedback -Please reach out if you have questions or thoughts! You can post on the Observable forum, start a GitHub discussion, or file a GitHub issue. And if you like Framework, please give us a star ⭐️ on GitHub — we appreciate your support. 🙏 +Please reach out if you have questions or thoughts! You can start a GitHub discussion to ask for help or share your work, or file a GitHub issue to report a bug or request a feature. If you like Framework, please give us a star ⭐️ on GitHub — we appreciate your support. 🙏 diff --git a/docs/getting-started/hello-data-dark.webp b/docs/getting-started/hello-data-dark.webp index 47acde29e..1edd65279 100644 Binary files a/docs/getting-started/hello-data-dark.webp and b/docs/getting-started/hello-data-dark.webp differ diff --git a/docs/getting-started/hello-data.webp b/docs/getting-started/hello-data.webp index 853305245..96c762d99 100644 Binary files a/docs/getting-started/hello-data.webp and b/docs/getting-started/hello-data.webp differ diff --git a/docs/getting-started/hello-framework-dark.webp b/docs/getting-started/hello-framework-dark.webp index a6fa8a2db..bb31d8fc3 100644 Binary files a/docs/getting-started/hello-framework-dark.webp and b/docs/getting-started/hello-framework-dark.webp differ diff --git a/docs/getting-started/hello-framework.webp b/docs/getting-started/hello-framework.webp index b9ce7a0e9..ac37009ae 100644 Binary files a/docs/getting-started/hello-framework.webp and b/docs/getting-started/hello-framework.webp differ diff --git a/docs/getting-started/hello-grid-dark.webp b/docs/getting-started/hello-grid-dark.webp index 8c5921eea..3f9f2c239 100644 Binary files a/docs/getting-started/hello-grid-dark.webp and b/docs/getting-started/hello-grid-dark.webp differ diff --git a/docs/getting-started/hello-grid.webp b/docs/getting-started/hello-grid.webp index 2b964a0c2..31d25bb4e 100644 Binary files a/docs/getting-started/hello-grid.webp and b/docs/getting-started/hello-grid.webp differ diff --git a/docs/getting-started/hello-loader.webp b/docs/getting-started/hello-loader.webp index 652eaea9a..b3c6f069c 100644 Binary files a/docs/getting-started/hello-loader.webp and b/docs/getting-started/hello-loader.webp differ diff --git a/docs/getting-started/hello-plot-dark.webp b/docs/getting-started/hello-plot-dark.webp index 7cfd5b59c..7c66ff116 100644 Binary files a/docs/getting-started/hello-plot-dark.webp and b/docs/getting-started/hello-plot-dark.webp differ diff --git a/docs/getting-started/hello-plot.webp b/docs/getting-started/hello-plot.webp index 1f7821af1..cc050bfa9 100644 Binary files a/docs/getting-started/hello-plot.webp and b/docs/getting-started/hello-plot.webp differ diff --git a/docs/getting-started/hello-weather-dark.webp b/docs/getting-started/hello-weather-dark.webp index 2cd7f41e4..eb430c2cb 100644 Binary files a/docs/getting-started/hello-weather-dark.webp and b/docs/getting-started/hello-weather-dark.webp differ diff --git a/docs/getting-started/hello-weather.webp b/docs/getting-started/hello-weather.webp index b7d4a5728..5bfae4030 100644 Binary files a/docs/getting-started/hello-weather.webp and b/docs/getting-started/hello-weather.webp differ diff --git a/docs/getting-started/hi-mom-dark.webp b/docs/getting-started/hi-mom-dark.webp index 7cf9b4fd4..ca628fc19 100644 Binary files a/docs/getting-started/hi-mom-dark.webp and b/docs/getting-started/hi-mom-dark.webp differ diff --git a/docs/getting-started/hi-mom.webp b/docs/getting-started/hi-mom.webp index de5487195..e9a9f8a1c 100644 Binary files a/docs/getting-started/hi-mom.webp and b/docs/getting-started/hi-mom.webp differ diff --git a/docs/javascript/hello.txt b/docs/hello.txt similarity index 100% rename from docs/javascript/hello.txt rename to docs/hello.txt diff --git a/docs/javascript/horse.jpg b/docs/horse.jpg similarity index 100% rename from docs/javascript/horse.jpg rename to docs/horse.jpg diff --git a/docs/javascript/horse.mp4 b/docs/horse.mp4 similarity index 100% rename from docs/javascript/horse.mp4 rename to docs/horse.mp4 diff --git a/docs/imports.md b/docs/imports.md new file mode 100644 index 000000000..a9cb8707e --- /dev/null +++ b/docs/imports.md @@ -0,0 +1,306 @@ +# Imports + +You can load a library using an [`import` statement](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import). For example, to load [canvas-confetti](https://github.com/catdad/canvas-confetti) from npm: + +```js echo +import confetti from "npm:canvas-confetti"; +``` + +The code above imports the default export and is equivalent to: + +```js run=false +import {default as confetti} from "npm:canvas-confetti"; +``` + +Depending on the package, you may want to import specific named exports, or to import everything as a namespace. For example: + +```js run=false +import {rollup} from "npm:d3-array"; // a single named import +import * as d3 from "npm:d3"; // import everything as a namespace +``` + +Imported symbols can be referenced in any code block or inline expression — not only in the code block that declares the import. + +```js echo +Inputs.button("Throw confetti! 🎉", {reduce: () => confetti()}) +``` + +
While imports can live in code blocks anywhere on the page, by convention imports are placed at the top of pages for readability.
+ +Framework provides a variety of ways to import. When you reference `d3`, `Inputs`, `Plot` or some other built-in, you’re [implicitly importing](#implicit-imports) from npm. In addition, you can import modules explicitly from: + +- [npm](#npm-imports), +- [`node_modules`](#node-imports), +- [local paths](#local-imports), or +- [remote URLs](#remote-imports). + +With the exception of remote imports, imported modules are bundled with your app, improving performance, security, and stability. In some cases, such as stylesheets and WebAssembly modules, you may need to specify additional files to download via [`import.meta.resolve`](#dynamic-imports). + +## npm imports + +You can import a package from the [npm registry](https://www.npmjs.com/) using the `npm:` protocol. When you import using `npm:`, Framework automatically downloads and self-hosts the package via the [jsDelivr CDN](https://www.jsdelivr.com/esm). Unlike [imports from `node_modules`](#node-imports), you don’t have to install `npm:` imports — just import, and the cloud shall provide. 😌 + +By default, npm imports resolve to the latest version of the given package. Imported versions are resolved on build or during preview and cached in your [npm cache](#self-hosting-of-npm-imports). To load an earlier or specific version of a package, add a [semver range](https://docs.npmjs.com/about-semantic-versioning). For example, to load major version 1 of canvas-confetti: + +```js run=false +import confetti from "npm:canvas-confetti@1"; +``` + +To import a specific [entry point](https://nodejs.org/api/packages.html#package-entry-points), append a slash `/` and the desired entry point path to the package name. For example, to load mime’s `lite` entry point: + +```js run=false +import mime from "npm:mime/lite"; +``` + +Similarly, to import the file `dist/confetti.module.mjs` from canvas-confetti: + +```js run=false +import confetti from "npm:canvas-confetti/dist/confetti.module.mjs"; +``` + +If you do not specify an entry point, the default entry point is determined by the imported package’s `package.json`, typically by the [`exports` field](https://nodejs.org/api/packages.html#exports); see [jsDelivr’s GitHub](https://github.com/jsdelivr/jsdelivr/issues/18263) for details. + +
If you’re having difficulty importing, it may help to browse the package and see what files are available, and what’s exported in the package.json. You can browse the contents of a published module via jsDelivr; for example, see https://cdn.jsdelivr.net/npm/canvas-confetti/.
+ +### Self-hosting of npm imports + +Framework downloads `npm:` imports from jsDelivr during preview and build. This improves performance, security, and stability of your built app by removing runtime dependencies on external sites. + +Downloads from npm are cached in `.observablehq/cache/_npm` within your [source root](./config#root) (typically `src`). An imported module is downloaded from jsDelivr only if it is not already in the cache. You can clear the cache and restart the server to re-fetch the latest versions of libraries from npm. + +Self-hosting of `npm:` imports applies to transitive static and [dynamic imports](#dynamic-imports). In addition to downloading modules, Framework downloads supporting files as needed for [recommended libraries](#implicit-imports) and [`import.meta.resolve`](#import-resolutions). For example, [DuckDB](./lib/duckdb) needs WebAssembly modules, and [KaTeX](./lib/tex) needs a stylesheet and fonts. For dynamic imports and `import.meta.resolve`, Framework is only able to self-host import specifiers that are static string literals. + +## Node imports + +You can import from `node_modules`. This is useful for managing dependencies with a package manager such as npm or Yarn, for importing private packages from the npm registry, or for importing from a different package registry such as GitHub. + +After installing a package (say with `npm install` or `yarn add`), import it using a bare specifier such as `d3` or `lodash`. For example, to import canvas-confetti: + +```js run=false +import confetti from "canvas-confetti"; +``` + +Or to import Apache Arrow: + +```js run=false +import * as Arrow from "apache-arrow"; +``` + +
Not all Node packages are usable in the browser; Node imports are only supported for modules that do not rely on Node-specific APIs and that can be converted to ES modules via esbuild. If you have difficulty importing a module, please ask for help by opening a discussion.
+ +You can also import specific [entry points](https://nodejs.org/api/packages.html#package-entry-points) by adding the entry point subpath after the package name. For example, to import mime’s `lite` entry point: + +```js run=false +import mime from "mime/lite"; +``` + +Unlike `npm:` imports, Node imports do not support semver ranges: the imported version is determined by what is installed in your `node_modules` directory. Use your package manager (_e.g._, edit your `package.json` and run `npm install`, or run `npm update`) to change which version is imported. + +Imports from `node_modules` are cached in `.observablehq/cache/_node` within your [source root](./config#root) (typically `src`). You shouldn’t need to clear this cache as it is automatically managed, but feel free to clear it you like. + +## JSR imports + +You can import a package from [JSR (the JavaScript Registry)](https://jsr.io/) using the `jsr:` protocol. As an example, to import a [pseudorandom number generator](https://jsr.io/@std/random) from the [Deno Standard Library](https://deno.com/blog/std-on-jsr): + +```js echo +import {randomIntegerBetween, randomSeeded} from "jsr:@std/random"; +``` + +And then to generate a random number: + +```js echo +randomIntegerBetween(1, 10, {prng: randomSeeded(1n)}) +``` + +JSR imports, like npm imports, are automatically [self-hosted](#self-hosting-of-npm-imports). Downloads from JSR are cached in `.observablehq/cache/_jsr` within your source root (typically `src`). An imported module is downloaded from JSR only if it is not already in the cache. You can clear the cache and restart the server to re-fetch the latest versions of libraries from JSR. If specify the desired version of a package, add a [semver range](https://docs.npmjs.com/about-semantic-versioning) to the import specifier. + +## Local imports + +You can import [JavaScript](./javascript) and [TypeScript](./javascript#type-script) modules from local files. This is useful for organizing your code into modules that can be imported across multiple pages. You can also unit test your code and share code with other web applications. + +For example, if this is `foo.js`: + +```js run=false +export const foo = 42; +``` + +Then you can import `foo` as: + +```js run=false +import {foo} from "./foo.js"; +``` + +Within a local module, you can import other local modules, as well as `npm:`, Node, and remote imports. You can also reference local files within a local module by importing [`FileAttachment`](./files) from the Observable standard library like so: + +```js run=false +import {FileAttachment} from "observablehq:stdlib"; + +export const sales = await FileAttachment("sales.csv").csv({typed: true}); +``` + +Framework automatically watches imported local modules and their associated file attachments during preview, so any changes to imported modules or referenced files will instantly update in the browser via hot module replacement. + +
While there is reactivity in Markdown across code blocks, there’s no reactivity within vanilla JavaScript modules. You can, however, export async functions and generator functions to define reactive variables.
+ +## Remote imports + +Lastly, you can import a JavaScript file from an arbitrary URL at runtime. This is useful for loading a library from a remote server, say for an analytics script that isn’t published to a package registry and isn’t version-controlled. + +The `npm:canvas-confetti` import above is approximately equivalent to importing from jsDelivr using `/+esm`: + +```js run=false +import confetti from "https://cdn.jsdelivr.net/npm/canvas-confetti/+esm"; +``` + +Unlike `npm:` and `node_modules` imports, remote imports are not self-hosted; the module will be fetched from the remote server at runtime. Use remote imports with caution as they are less secure and may degrade performance. + +## Dynamic imports + +Dynamic imports, also known as [*import expressions*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import), can be used to load a library lazily, say when a user clicks a button. This can improve performance if the library is not needed to render content that is visible on page load. Unlike static imports, dynamic imports are not [preloaded](#module-preloads). + +```js run=false +const {default: confetti} = await import("npm:canvas-confetti"); +``` + +You can use dynamic imports with `npm:`, Node, local, and remote imports. However, Framework can only resolve statically-analyzable dynamic imports, as when `import` is passed a single string literal. + +## Import resolutions + +You can use [`import.meta.resolve`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve) to invoke Framework’s import resolution statically. This function takes an import specifier and returns the resolved URL. For example: + + +```js echo +import.meta.resolve("npm:canvas-confetti") +``` + +While useful for debugging, `import.meta.resolve` also allows you to download files from npm. These files are automatically downloaded for self-hosting, too. For example, to load U.S. county geometry: + +```js run=false +const data = await fetch(import.meta.resolve("npm:us-atlas/counties-albers-10m.json")).then((r) => r.json()); +``` + +As with dynamic imports, you can use import resolutions with `npm:`, Node, local, and remote imports; and Framework only resolves statically-analyzable import resolutions, as when `import.meta.resolve` is passed a single string literal. + +## Module preloads + +Static imports are [preloaded](#module-preloads) such that imported modules are loaded in parallel and as early as possible, rather than being chained and waiting until JavaScript code execution. This can dramatically reduce page load times. Framework also preloads imports for [`FileAttachment`](./files) methods, such as d3-dsv for [CSV](./lib/csv). + +An import of canvas-confetti is preloaded as: + +```html run=false + +``` + +Module preloading applies to transitive dependencies, too. For example, d3-array depends on isoformat and internmap, which together are preloaded as: + +```js +import "npm:d3-array"; +``` + +```html run=false + + + +``` + +Module preloading does not apply to [dynamic imports](#dynamic-imports) and [`import.meta.resolve`](#import-resolutions), as these imports are not always needed and are assumed lower priority. You can manually declare a preload if desired: + +```html run=false + +``` + +## Observable imports + +Framework includes a few built-in libraries implemented by Framework itself that can be imported via the `observablehq:` protocol. This currently includes: + +* `observablehq:runtime` - the [Observable Runtime](https://github.com/observablehq/runtime) +* `observablehq:stdlib` - [Framework’s standard library](https://github.com/observablehq/framework/blob/main/src/client/stdlib.js) + +## Implicit imports + +For convenience, Framework provides recommended libraries by default in Markdown. These implicit imports are only evaluated if you reference the corresponding symbol and hence don’t add overhead if you don’t use them; for example, D3 won’t be loaded unless you reference `d3`. + +Click on any of the imported symbols below to learn more. + +
import {FileAttachment} from "observablehq:stdlib";
+
import {Generators} from "observablehq:stdlib";
+
import {Mutable} from "observablehq:stdlib";
+
import {resize} from "observablehq:stdlib";
+
import dot from "npm:@observablehq/dot";
+
import * as duckdb from "npm:@duckdb/duckdb-wasm";
+
import {DuckDBClient} from "npm:@observablehq/duckdb";
+
import {sql} from "npm:@observablehq/duckdb";
+
import * as Inputs from "npm:@observablehq/inputs";
+
import mapboxgl from "npm:mapbox-gl";
+
import mermaid from "npm:@observablehq/mermaid";
+
import * as Plot from "npm:@observablehq/plot";
+
import SQLite from "npm:@observablehq/sqlite";
+
import {SQLiteDatabaseClient} from "npm:@observablehq/sqlite";
+
import tex from "npm:@observablehq/tex";
+
import * as Arrow from "npm:apache-arrow";
+
import * as aq from "npm:arquero";
+
import * as echarts from "npm:echarts";
+
import * as d3 from "npm:d3";
+
import * as htl from "npm:htl";
+
import {html} from "npm:htl";
+
import {svg} from "npm:htl";
+
import * as L from "npm:leaflet";
+
import _ from "npm:lodash";
+
import * as React from "npm:react";
+
import * as ReactDOM from "npm:react-dom";
+
import * as topojson from "npm:topojson-client";
+ +In addition to the above, several implicit imports have slightly more involved definitions: [`now`](./lib/generators#now), [`width`](./lib/generators#width-element), [`dark`](./lib/generators#dark), [`vg`](./lib/mosaic), and [`vl`](./lib/vega-lite). + +## Require + +If you’re familiar with Observable notebooks, you may be familiar with `require`. We recommend that you avoid `require` as the underlying Asynchronous Module Definition (AMD) convention has been made obsolete by standard imports in JavaScript, and AMD tends to be implemented inconsistently. + +If you really need `require`, you can import it from [d3-require](https://github.com/d3/d3-require): + +```js run=false +import {require} from "npm:d3-require"; +``` + +Then you can call `require` like so: + +```js run=false +const d3 = await require("d3@5"); +``` + +
We recommend that you use import instead of require: it’s the modern standard, more reliable, more forward-looking, and faster.
+ +## Routing + +Imported modules are copied to the output root (`dist` by default) during build, too. Only referenced imported modules are copied; modules that aren’t imported are not included. For example, if you have the following source root: + +```ini +. +├─ src +│ ├─ chart.js +│ └─ index.md +└─ … +``` + +And `index.md` includes a JavaScript code block that says: + +```js run=false +import {Chart} from "./chart.js"; +``` + +The resulting output root is: + +```ini +. +├─ dist +│ ├─ _import +│ │ └─ chart.c79c2048.js +│ ├─ _observablehq +│ │ └─ … # additional assets +│ └─ index.html +└─ … +``` + +The import declaration is automatically rewritten during build to point to `./_import/chart.c79c2048.js` instead of `./chart.js`. The content hash `c79c2048` ensures cache-breaking during deploy, and allows assets to be marked as `cache-control: immutable` to improve performance. + +Use a leading slash to denote paths relative to the source root, such as `/chart.js` instead of `./chart.js`. This allows you to use the same path to import a module from anywhere, even in nested folders. Framework always generates relative links so that the generated site can be served under a base path. diff --git a/docs/index.md b/docs/index.md index 7f52e5595..83cc6a13f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,60 +1,148 @@ --- -toc: false +index: false ---
-

The best dashboards are built with code

+

The best dashboards are built with code.

Create fast, beautiful data apps, dashboards, and reports from the command line. Write Markdown, JavaScript, SQL, Python, R… and any language you like. Free and open-source.

-
npm init @observablehq
- Get started +
+
npx "@observablehq/framework@latest" create
+ Get started +
+
+ + **Observable Framework** is an [open-source](https://github.com/observablehq/framework) static site generator for data apps, dashboards, reports, and more. Framework includes a preview server for local development, and a command-line interface for automating builds & deploys. -You write simple [Markdown](./markdown) pages — with interactive charts and inputs in [reactive JavaScript](./javascript), and with data snapshots generated by [loaders](./loaders) in _any_ programming language (SQL, Python, R, and more) — and Framework compiles it into a static site with instant page loads for a great user experience. Since everything is just files, you can use your preferred editor and source control, write unit tests, share code with other apps, integrate with CI/CD, and host projects anywhere. +You write simple [Markdown](./markdown) pages — with interactive charts and inputs in [reactive JavaScript](./javascript), and with data snapshots generated by [data loaders](./data-loaders) in _any_ programming language (SQL, Python, R, and more) — and Framework compiles it into a static site with instant page loads for a great user experience. Since everything is just files, you can use your preferred editor and source control, write unit tests, share code with other apps, integrate with CI/CD, and host apps anywhere. -Framework includes thoughtfully-designed [themes](./themes), [grids](./css/grid), and [libraries](./javascript/imports) to help you build displays of data that look great on any device, including [Observable Plot](./lib/plot), [D3](./lib/d3), [Vega-Lite](./lib/vega-lite), [Graphviz](./lib/graphviz), [Mermaid](./lib/mermaid), [Leaflet](./lib/leaflet), [KaTeX](./lib/tex), and myriad more. (And for working with data, don’t forget about [Arquero](./lib/arquero), [DuckDB](./lib/duckdb), and [SQLite](./lib/sqlite), too.) +Framework includes thoughtfully-designed [themes](./themes), [grids](./markdown#grids), and [libraries](./imports) to help you build displays of data that look great on any device, including [Observable Plot](./lib/plot), [D3](./lib/d3), [Mosaic](./lib/mosaic), [Vega-Lite](./lib/vega-lite), [Graphviz](./lib/dot), [Mermaid](./lib/mermaid), [Leaflet](./lib/leaflet), [KaTeX](./lib/tex), and myriad more. And for working with data in the client, there’s [DuckDB](./lib/duckdb), [Arquero](./lib/arquero), [SQLite](./lib/sqlite), and more, too. Want the best dashboards? [Get started now.](./getting-started) diff --git a/docs/inputs/button.md b/docs/inputs/button.md index 31d782ec7..dda5aeb8f 100644 --- a/docs/inputs/button.md +++ b/docs/inputs/button.md @@ -1,44 +1,34 @@ # Button input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#button) +API · Source · The button input emits an *input* event when you click it. Buttons may be used to trigger the evaluation of cells, say to restart an animation. For example, below is an animation that progressively hides a bar. Clicking the button will restart the animation. -The button input emits an *input* event when you click it. Buttons may be used to trigger the evaluation of cells, say to restart an animation. - -For example, below is an animation (using [yield](../javascript/generators)) that progressively hides a bar. - -```js echo -import * as Inputs from "npm:@observablehq/inputs"; -``` + ```js echo -const width = 360; -const height = 20; -const style = "max-width: 100%; border: solid 1px black;"; +const replay = view(Inputs.button("Replay")); ``` -```html - -``` + The code block below references replay, so it will run automatically whenever the replay button is clicked. -```js echo -const replay = view(Inputs.button("Replay")); +```js const canvas = document.querySelector("#canvas"); const context = canvas.getContext("2d"); +context.fillStyle = getComputedStyle(canvas).color; ``` - The code block below references replay, so it will run automatically whenever the replay button is clicked. If you click the button while the animation is still running, the animation will be interrupted and restart from the beginning. - ```js echo -replay; +replay; // run this block when the button is clicked const progress = (function* () { - for (let i = width; i >= 0; --i) { - context.clearRect(0, 0, width, height); - context.fillRect(0, 0, i, height); - yield context.canvas; + for (let i = canvas.width; i >= 0; --i) { + context.clearRect(0, 0, canvas.width, canvas.height); + context.fillRect(0, 0, i, canvas.height); + yield canvas; } })(); ``` +
The progress top-level variable is declared as a generator. This causes the Observable runtime to automatically advance the generator on each animation frame. If you prefer, you could write this animation using a standard requestAnimationFrame loop, but generators are nice because the animation will automatically be interrupted when the code is invalidated.
+ You can also use buttons to count clicks. While the value of a button is often not needed, it defaults to zero and is incremented each time the button is clicked. ```js echo @@ -49,15 +39,13 @@ const clicks = view(Inputs.button("Click me")); clicks ``` -Interpolate input values into Markdown using [inline expressions](../javascript#inline-expressions): - -You have clicked ${clicks} times. +You have clicked ${clicks} times. ```md You have clicked ${clicks} times. ``` -You can change this behavior by specifying the *value* and *reduce* options: *value* is the initial value, and *reduce* is called whenever the button is clicked, being passed the current value and returning the new value. The value of the button below is the last time the button was clicked, or null if the button has not been clicked. +While buttons count clicks by default, you can change the behavior by specifying the *value* and *reduce* options: *value* is the initial value, and *reduce* is called whenever the button is clicked, being passed the current value and returning the new value. The value of the button below is the last time the button was clicked, or null if the button has not been clicked. ```js echo const time = view(Inputs.button("Update", {value: null, reduce: () => new Date})); @@ -83,7 +71,7 @@ const counter = view(Inputs.button([ counter ``` -The first argument to `Inputs.button()` is the contents of the button. It’s not required, but it’s strongly encouraged. +The first argument to `Inputs.button()` is the contents of the button. It’s not required, but is strongly encouraged. ```js echo const x = view(Inputs.button()); @@ -104,10 +92,10 @@ const confirm = view(Inputs.button("OK", {label: "Continue?"})); You can change the rendered text in Markdown based on whether a button is clicked. Try clicking the `OK` button with the `Continue?` label. ```md echo run=false -confirm ? "Confirmed!" : "Awaiting confirmation..." +confirm ? "Confirmed!" : "Awaiting confirmation…" ``` -${confirm ? "Confirmed!" : "Awaiting confirmation..."} +${confirm ? "Confirmed!" : "Awaiting confirmation…"} You can also use a button to copy something to the clipboard. @@ -121,9 +109,9 @@ Inputs.button("Copy to clipboard", {value: null, reduce: () => navigator.clipboa The available button input options are: -* *label* - a label; either a string or an HTML element. +* *label* - a label; either a string or an HTML element * *required* - if true, the initial value defaults to undefined. -* *value* - the initial value; defaults to 0 or null if *required* is false. -* *reduce* - a function to update the value on click; by default returns *value* + 1. -* *width* - the width of the input (not including the label). -* *disabled* - whether input is disabled; defaults to false. \ No newline at end of file +* *value* - the initial value; defaults to 0 or null if *required* is false +* *reduce* - a function to update the value on click; by default returns *value* + 1 +* *width* - the width of the input (not including the label) +* *disabled* - whether input is disabled; defaults to false diff --git a/docs/inputs/checkbox.md b/docs/inputs/checkbox.md index 54403f697..bd5711b38 100644 --- a/docs/inputs/checkbox.md +++ b/docs/inputs/checkbox.md @@ -1,8 +1,6 @@ # Checkbox input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#checkbox) - -The checkbox input allows the user to choose any of a given set of values. (See the [radio](./radio) input for single-choice.) A checkbox is recommended over a [select](./select) input when the number of values to choose from is small — say, seven or fewer — because all choices will be visible up-front, improving usability. For zero or one choice, see the [toggle](./toggle) input. +API · Source · The checkbox input allows the user to choose any of a given set of values. (See the [radio](./radio) input for single-choice.) A checkbox is recommended over a [select](./select) input when the number of values to choose from is small — say, seven or fewer — because all choices will be visible up-front, improving usability. For zero or one choice, see the [toggle](./toggle) input. The initial value of a checkbox defaults to an empty array. You can override this by specifying the *value* option, which should also be an array (or iterable). @@ -11,11 +9,7 @@ const colors = view(Inputs.checkbox(["red", "green", "blue"], {label: "color"})) ``` ```js echo -colors -``` - -```html echo -
${colors.map(color => html`
`)} +colors ``` A checkbox’s values need not be strings: they can be anything. Specify a *format* function to control how these values are presented to the reader. @@ -31,7 +25,7 @@ const teams = [ ``` ```js echo -const watching = view(Inputs.checkbox(teams, {label: "Watching", format: x => x.name})); +const watching = view(Inputs.checkbox(teams, {label: "Watching", format: (x) => x.name})); ``` ```js echo @@ -51,17 +45,38 @@ vowels The *format* function, like the *label*, can return either a text string or an HTML element. This allows extensive control over the appearance of the checkbox, if desired. ```js echo -const colors2 = view(Inputs.checkbox(["red", "green", "blue"], {value: ["red"], label: html`Colors`, format: x => html`${x}`})); +const colors2 = view( + Inputs.checkbox(["red", "green", "blue"], { + value: ["red"], + label: html`Colors`, + format: (x) => + html`${x}` + }) +); ``` ```js echo colors2 ``` -If the checkbox’s data are specified as a Map, the values will be the map’s values while the keys will be the displayed options. (This behavior can be customized by passing *keyof* and *valueof* function options.) Below, the displayed sizes are named, but the value is the corresponding number of fluid ounces. +If the checkbox’s data are specified as a [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map), the values will be the map’s values while the keys will be the displayed options. (This behavior can be customized by passing *keyof* and *valueof* function options.) Below, the displayed sizes are named, but the value is the corresponding number of fluid ounces. ```js echo -const sizes = view(Inputs.checkbox(new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), {value: [12], label: "Size"})); +const sizes = view( + Inputs.checkbox( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: [12], label: "Size"} + ) +); ``` ```js echo @@ -71,10 +86,17 @@ sizes Since the *format* function is passed elements from the data, it can access both the key and value from the corresponding Map entry. ```js echo -const size2 = view(Inputs.checkbox( - new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), - {value: [12], label: "Size", format: ([name, value]) => `${name} (${value} oz)`} -)); +const size2 = view( + Inputs.checkbox( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: [12], label: "Size", format: ([name, value]) => `${name} (${value} oz)`} + ) +); ``` ```js echo @@ -84,14 +106,19 @@ size2 Passing a Map to checkbox is especially useful in conjunction with [d3.group](https://d3js.org/d3-array/group). For example, given a the sample `olympians` dataset of Olympic athletes, we can use d3.group to group them by gold medal count, and then checkbox to select the athletes for the chosen count. Note that the value of the checkbox will be an array of arrays, since d3.group returns a Map from key to array; use [*array*.flat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat) to merge these arrays if desired. ```js echo -const goldAthletes = view(Inputs.checkbox(d3.group(olympians, d => d.gold), {label: "Gold medal count", sort: "descending", key: [4, 5]})); +const goldAthletes = view( + Inputs.checkbox( + d3.group(olympians, (d) => d.gold), + {label: "Gold medal count", sort: "descending", key: [4, 5]} + ) +); ``` ```js echo goldAthletes.flat() ``` -If the *sort* and *unique* options are specified, the checkbox’s keys will be sorted and duplicate keys will be discarded, respectively. +If the *sort* and *unique* options are specified, the checkbox’s keys will be sorted and duplicate keys will be discarded, respectively. ```js echo const bases = view(Inputs.checkbox("GATTACA", {sort: true, unique: true})); @@ -107,14 +134,12 @@ bases The available checkbox input options are: -* *label* - a label; either a string or an HTML element. -* *sort* - true, “ascending”, “descending”, or a comparator function to sort keys; defaults to false. -* *unique* - true to only show unique keys; defaults to false. -* *locale* - the current locale; defaults to English. -* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof*. -* *keyof* - a function to return the key for the given element in *data*. -* *valueof* - a function to return the value of the given element in *data*. -* *value* - the initial value, an array; defaults to an empty array (no selection). -* *disabled* - whether input is disabled, or the disabled values; defaults to false. - - \ No newline at end of file +* *label* - a label; either a string or an HTML element +* *sort* - true, *ascending*, *descending*, or a comparator to sort keys; defaults to false +* *unique* - true to only show unique keys; defaults to false +* *locale* - the current locale; defaults to English +* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof* +* *keyof* - a function to return the key for the given element in *data* +* *valueof* - a function to return the value of the given element in *data* +* *value* - the initial value, an array; defaults to an empty array (no selection) +* *disabled* - whether input is disabled, or the disabled values; defaults to false diff --git a/docs/inputs/color.md b/docs/inputs/color.md index 66c7cc6dd..bbacee339 100644 --- a/docs/inputs/color.md +++ b/docs/inputs/color.md @@ -1,8 +1,6 @@ # Color input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#inputscoloroptions) - -The color input specifies an RGB color as a hexadecimal string `#rrggbb`. The initial value defaults to black (`#000000`) and can be specified with the *value* option. +API · Source · The color input specifies an RGB color as a hexadecimal string `#rrggbb`. The initial value defaults to black (`#000000`) and can be specified with the *value* option. ```js echo const color = view(Inputs.color({label: "Favorite color", value: "#4682b4"})); @@ -44,4 +42,4 @@ disabled **Inputs.color(*options*)** -Like [Inputs.text](./text), but where *type* is color. The color value is represented as an RGB hexadecimal string such as #ff00ff. This type of input does not support the following options: *placeholder*, *pattern*, *spellcheck*, *autocomplete*, *autocapitalize*, *min*, *max*, *minlength*, *maxlength*. \ No newline at end of file +Like [Inputs.text](./text), but where *type* is color. The color value is represented as an RGB hexadecimal string such as #ff00ff. This type of input does not support the following options: *placeholder*, *pattern*, *spellcheck*, *autocomplete*, *autocapitalize*, *min*, *max*, *minlength*, *maxlength*. diff --git a/docs/inputs/date.md b/docs/inputs/date.md index 68a425af0..ea239fd68 100644 --- a/docs/inputs/date.md +++ b/docs/inputs/date.md @@ -1,8 +1,6 @@ # Date input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#date) - -The date input specifies a date. +API · Source · The date input specifies a date. ```js echo const date = view(Inputs.date()); @@ -86,15 +84,15 @@ readonly The available date input options are: -* *label* - a label; either a string or an HTML element. -* *value* - the initial value, as a JavaScript Date or formatted as an ISO string (yyyy-mm-dd); defaults to null. -* *min* - [minimum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min) attribute. -* *max* - [maximum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max) attribute. -* *required* - if true, the input must be a valid date. -* *validate* - a function to check whether the text input is valid. -* *width* - the width of the input (not including the label). -* *submit* - whether to require explicit submission before updating; defaults to false. -* *readonly* - whether input is readonly; defaults to false. -* *disabled* - whether input is disabled; defaults to false. +* *label* - a label; either a string or an HTML element +* *value* - the initial value as a [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) or `YYYY-MM-DD` string; defaults to null +* *min* - [minimum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min) attribute +* *max* - [maximum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max) attribute +* *required* - if true, the input must be a valid date +* *validate* - a function to check whether the text input is valid +* *width* - the width of the input (not including the label) +* *submit* - whether to require explicit submission; defaults to false +* *readonly* - whether input is readonly; defaults to false +* *disabled* - whether input is disabled; defaults to false The value of the input is a Date instance at UTC midnight of the specified date, or null if no (valid) value has been specified. Note that the displayed date format is [based on the browser’s locale](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date). diff --git a/docs/inputs/file.md b/docs/inputs/file.md index ecbfcd0f8..35625f4f3 100644 --- a/docs/inputs/file.md +++ b/docs/inputs/file.md @@ -1,8 +1,6 @@ # File input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#file) - -The file input specifies a local file. The exposed value provides the same interface as an Observable [file attachment](../javascript/files) for convenient parsing in various formats such as text, image, JSON, CSV, ZIP, and XLSX; however, the file is not uploaded and is only available temporarily in memory. +API · Source · The file input specifies a local file and is intended for prompting the user to select a file from their own machine. The exposed value provides the same interface as [`FileAttachment`](../files) for convenient parsing in various formats such as text, image, JSON, CSV, ZIP, and XLSX. By default, any file is allowed, and the value of the input resolves to null. @@ -26,7 +24,7 @@ Once a file has been selected, you can read its contents like so: ```js echo -const data = display(await csvfile.csv({typed: true})); +csvfile.csv({typed: true}) ``` Here are examples of other supported file types. @@ -36,7 +34,7 @@ const jsonfile = view(Inputs.file({label: "JSON file", accept: ".json", required ``` ```js echo -const data = display(await jsonfile.json()); +jsonfile.json() ``` ```js echo @@ -44,7 +42,7 @@ const textfile = view(Inputs.file({label: "Text file", accept: ".txt", required: ``` ```js echo -const data = display(await textfile.text()); +textfile.text() ``` ```js echo @@ -52,7 +50,7 @@ const imgfile = view(Inputs.file({label: "Image file", accept: ".png,.jpg", requ ``` ```js echo -const image = display(await imgfile.image()); +imgfile.image() ``` ```js echo @@ -60,7 +58,7 @@ const xlsxfile = view(Inputs.file({label: "Excel file", accept: ".xlsx", require ``` ```js echo -const workbook = display(await xlsxfile.xlsx()); +xlsxfile.xlsx() ``` ```js echo @@ -68,7 +66,7 @@ const zipfile = view(Inputs.file({label: "ZIP archive", accept: ".zip", required ``` ```js echo -const archive = display(await zipfile.zip()) +zipfile.zip() ``` The *multiple* option allows the user to pick multiple files. In this mode, the exposed value is an array of files instead of a single file. @@ -87,15 +85,13 @@ files The available file input options are: -* *label* - a label; either a string or an HTML element. -* *required* - if true, a valid file must be selected. -* *validate* - a function to check whether the file input is valid. -* *accept* - the [acceptable file types](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept). -* *capture* - for [capturing image or video data](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#capture). -* *multiple* - whether to allow multiple files to be selected; defaults to false. -* *width* - the width of the input (not including the label). -* *disabled* - whether input is disabled; defaults to false. - -Note that the value of file input cannot be set programmatically; it can only be changed by the user. +* *label* - a label; either a string or an HTML element +* *required* - if true, a valid file must be selected +* *validate* - a function to check whether the file input is valid +* *accept* - the [acceptable file types](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept) +* *capture* - for [capturing image or video data](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#capture) +* *multiple* - whether to allow multiple files to be selected; defaults to false +* *width* - the width of the input (not including the label) +* *disabled* - whether input is disabled; defaults to false - +
The value of file input cannot be set programmatically; it can only be changed by the user.
diff --git a/docs/inputs/form.md b/docs/inputs/form.md index 0e75a9106..87863ab23 100644 --- a/docs/inputs/form.md +++ b/docs/inputs/form.md @@ -1,8 +1,6 @@ # Form input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#inputsforminputs-options) - -The form input combines a number of inputs into a single compound input. It’s intended for a more compact display of closely-related inputs, say for a color’s red, green, and blue channels. +API · Source · The form input combines a number of inputs into a single compound input. It’s intended for a more compact display of closely-related inputs, say for a color’s red, green, and blue channels. ```js echo const rgb = view(Inputs.form([ @@ -36,6 +34,6 @@ rgb2 The available form input options are: -* *template* - a function that takes the given *inputs* and returns an HTML element to display. +* *template* - a function that takes the given *inputs* and returns an HTML element -If the *template* object is not specified, the given inputs are wrapped in a DIV. \ No newline at end of file +If the *template* object is not specified, the given inputs are wrapped in a DIV. diff --git a/docs/inputs/index.md b/docs/inputs/index.md new file mode 100644 index 000000000..c92c9d41b --- /dev/null +++ b/docs/inputs/index.md @@ -0,0 +1,130 @@ +# Observable Inputs + +[Observable Inputs](https://github.com/observablehq/inputs) provides “lightweight interface components — buttons, sliders, dropdowns, tables, and the like — to help you explore data and build interactive displays.” Observable Inputs is available by default as `Inputs` in Markdown, but you can import it explicitly like so: + +```js echo +import * as Inputs from "npm:@observablehq/inputs"; +``` + +Or, just import the specific inputs you want: + +```js echo +import {button, color} from "npm:@observablehq/inputs"; +``` + +Inputs are typically passed to the [`view` function](<../reactivity#inputs>) for display, while exposing the input’s [value generator](../reactivity#generators) as a [reactive variable](../reactivity). Options differ between inputs. For example, the checkbox input accepts options to disable all or certain values, sort displayed values, and only display repeated values _once_ (among others): + +```js echo +const checkout = view( + Inputs.checkbox(["B", "A", "Z", "Z", "⚠️F", "D", "G", "G", "G", "⚠️Q"], { + disabled: ["⚠️F", "⚠️Q"], + sort: true, + unique: true, + value: "B", + label: "Choose categories:" + }) +); +``` + +```js echo +checkout +``` + +To demonstrate Observable Inputs, let’s look at a sample dataset of athletes from the 2016 Rio olympics via [Matt Riggott](https://flother.is/2017/olympic-games-data/). Here’s a [table input](./table) — always a good starting point for an agnostic view of the data: + +```js +const olympians = await d3.csv(import.meta.resolve("npm:@observablehq/sample-datasets/olympians.csv"), (d) => (delete d.id, delete d.info, d3.autoType(d))); +``` + +```js echo +Inputs.table(olympians) +``` + +
Tables can be inputs, too! The value of the table is the subset of rows that you select using the checkboxes in the first column.
+ +Now let’s wire up the table to a [search input](./search). Type anything into the box and the search input will find the matching rows in the data. The value of the search input is the subset of rows that match the query. + +A few examples to try: **[mal]** will match _sex_ = male, but also names that start with “mal”, such as Anna Malova; **[1986]** will match anyone born in 1986 (and a few other results); **[USA gym]** will match USA’s gymnastics team. Each space-separated term in your query is prefix-matched against all columns in the data. + +```js echo +const searchResults = view(Inputs.search(olympians, { + datalist: ["mal", "1986", "USA gym"], + placeholder: "Search athletes" +})) +``` + +```js echo +Inputs.table(searchResults) +``` + +You can sort columns by clicking on the column name: click once to sort ascending, and click again to sort descending. Note that the sort order is temporary: it’ll go away if you reload the page. Specify the column name as the _sort_ option above if you want this order to persist. + +For a more structured approach, we can use a select input to choose a sport, then _array_.filter to determine which rows are shown in the table. The _sort_ and _unique_ options tell the input to show only distinct values and to sort them alphabetically. Try comparing the **[gymnastics]** and **[basketball]** sports. + +```js echo +const sport = view( + Inputs.select( + olympians.filter((d) => d.weight && d.height).map((d) => d.sport), + {sort: true, unique: true, label: "sport"} + ) +); +``` + +```js echo +Plot.plot({ + title: `How ${sport} athletes compare`, + marks: [ + Plot.dot(olympians, {x: "weight", y: "height"}), + Plot.dot(olympians.filter((d) => d.sport === sport), {x: "weight", y: "height", stroke: "red"}) + ] +}) +``` + +You can pass grouped data to a [select input](./select) as a [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) from key to array of values, say using [d3.group](https://d3js.org/d3-array/group). The value of the select input in this mode is the data in the selected group. Note that _unique_ is no longer required, and that _sort_ works here, too, sorting the keys of the map returned by d3.group. + +```js echo +const sportAthletes = view( + Inputs.select( + d3.group(olympians, (d) => d.sport), + {sort: true, label: "sport"} + ) +); +``` + +```js echo +Inputs.table(sportAthletes) +``` + +The select input works well for categorical data, such as sports or nationalities, but how about quantitative dimensions such as height or weight? Here’s a [range input](./range) that lets you pick a target weight; we then filter the table rows for any athlete within 10% of the target weight. Notice that some columns, such as sport, are strongly correlated with weight. + +```js echo +const weight = view( + Inputs.range( + d3.extent(olympians, (d) => d.weight), + {step: 1, label: "weight (kg)"} + ) +); +``` + +```js echo +Inputs.table( + olympians.filter((d) => d.weight < weight * 1.1 && weight * 0.9 < d.weight), + {sort: "weight"} +) +``` + +For more, see the individual input pages: + +- [Button](./button) - do something when a button is clicked +- [Toggle](./toggle) - toggle between two values (on or off) +- [Checkbox](./checkbox) - choose any from a set +- [Radio](./radio) - choose one from a set +- [Range](./range) or [Number](./range) - choose a number in a range (slider) +- [Select](./select) - choose one or any from a set (drop-down menu) +- [Text](./text) - enter freeform single-line text +- [Textarea](./textarea) - enter freeform multi-line text +- [Date](./date) or [Datetime](./date) - choose a date +- [Color](./color) - choose a color +- [File](./file) - choose a local file +- [Search](./search) - query a tabular dataset +- [Table](./table) - browse a tabular dataset diff --git a/docs/inputs/radio.md b/docs/inputs/radio.md index ce86428b5..5a7de06e7 100644 --- a/docs/inputs/radio.md +++ b/docs/inputs/radio.md @@ -1,8 +1,6 @@ # Radio input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#radio) - -The radio input allows the user to choose one of a given set of values. (See the [checkbox](./checkbox) input for multiple-choice.) A radio is recommended over a [select](./select) input when the number of values to choose from is small — say, seven or fewer — because all choices will be visible up-front, improving usability. +API · Source · The radio input allows the user to choose one of a given set of values. (See the [checkbox](./checkbox) input for multiple-choice.) A radio is recommended over a [select](./select) input when the number of values to choose from is small — say, seven or fewer — because all choices will be visible up-front, improving usability. ```js echo const color = view(Inputs.radio(["red", "green", "blue"], {label: "color"})); @@ -12,14 +10,10 @@ const color = view(Inputs.radio(["red", "green", "blue"], {label: "color"})); color ``` -```html echo -
-``` - Note that a radio cannot be cleared by the user once selected; if you wish to allow no selection, include null in the allowed values. ```js echo -const vote = view(Inputs.radio(["Yea", "Nay", null], {value: null, format: x => x ?? "Abstain"})); +const vote = view(Inputs.radio(["Yea", "Nay", null], {value: null, format: (x) => x ?? "Abstain"})); ``` ```js echo @@ -59,17 +53,38 @@ vowel The *format* function, like the *label*, can return either a text string or an HTML element. This allows extensive control over the appearance of the radio, if desired. ```js echo -const color2 = view(Inputs.radio(["red", "green", "blue"], {value: "red", label: html`Color`, format: x => html`${x}`})); +const color2 = view( + Inputs.radio(["red", "green", "blue"], { + value: "red", + label: html`Colors`, + format: (x) => + html`${x}` + }) +); ``` ```js echo color2 ``` -If the radio’s data are specified as a Map, the values will be the map’s values while the keys will be the displayed options. (This behavior can be customized by passing *keyof* and *valueof* function options.) Below, the displayed sizes are named, but the value is the corresponding number of fluid ounces. +If the radio’s data are specified as a [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map), the values will be the map’s values while the keys will be the displayed options. (This behavior can be customized by passing *keyof* and *valueof* function options.) Below, the displayed sizes are named, but the value is the corresponding number of fluid ounces. ```js echo -const size = view(Inputs.radio(new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), {value: 12, label: "Size"})); +const size = view( + Inputs.radio( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: 12, label: "Size"} + ) +); ``` ```js echo @@ -79,27 +94,39 @@ size Since the *format* function is passed elements from the data, it can access both the key and value from the corresponding Map entry. ```js echo -const size2 = view(Inputs.radio( - new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), - {value: 12, label: "Size", format: ([name, value]) => `${name} (${value} oz)`} -)); +const size2 = view( + Inputs.radio( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: 12, label: "Size", format: ([name, value]) => `${name} (${value} oz)`} + ) +); ``` ```js echo size2 ``` -Passing a Map to radio is especially useful in conjunction with [d3.group](https://d3js.org/d3-array/group). For example, given a tabular dataset of Olympic athletes (`olympians`), we can use d3.group to group them by gold medal count, and then a radio input to select the athletes for the chosen count. +Passing a Map to radio is especially useful in conjunction with [d3.group](https://d3js.org/d3-array/group). For example, given a tabular dataset of Olympic athletes (`olympians`), we can use d3.group to group them by gold medal count, and then a radio input to select the athletes for the chosen count. ```js echo -const goldAthletes = view(Inputs.radio(d3.group(olympians, d => d.gold), {label: "Gold medal count", sort: "descending"})); +const goldAthletes = view( + Inputs.radio( + d3.group(olympians, (d) => d.gold), + {label: "Gold medal count", sort: "descending"} + ) +); ``` ```js echo goldAthletes ``` -If the *sort* and *unique* options are specified, the radio’s keys will be sorted and duplicate keys will be discarded, respectively. +If the *sort* and *unique* options are specified, the radio’s keys will be sorted and duplicate keys will be discarded, respectively. ```js echo const base = view(Inputs.radio("GATTACA", {sort: true, unique: true})); @@ -115,12 +142,12 @@ base The available radio input options are: -* *label* - a label; either a string or an HTML element. -* *sort* - true, “ascending”, “descending”, or a comparator function to sort keys; defaults to false. -* *unique* - true to only show unique keys; defaults to false. -* *locale* - the current locale; defaults to English. -* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof*. -* *keyof* - a function to return the key for the given element in *data*. -* *valueof* - a function to return the value of the given element in *data*. -* *value* - the initial value; defaults to null (no selection). -* *disabled* - whether input is disabled, or the disabled values; defaults to false. \ No newline at end of file +* *label* - a label; either a string or an HTML element +* *sort* - true, *ascending*, *descending*, or a comparator to sort keys; defaults to false +* *unique* - true to only show unique keys; defaults to false +* *locale* - the current locale; defaults to English +* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof* +* *keyof* - a function to return the key for the given element in *data* +* *valueof* - a function to return the value of the given element in *data* +* *value* - the initial value; defaults to null (no selection) +* *disabled* - whether input is disabled, or the disabled values; defaults to false diff --git a/docs/inputs/range.md b/docs/inputs/range.md index 3a098bf80..777e645c5 100644 --- a/docs/inputs/range.md +++ b/docs/inputs/range.md @@ -1,8 +1,10 @@ -# Range input +--- +keywords: sliders +--- -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#range) +# Range input -The range input specifies a number between the given *min* and *max* (inclusive). This number can be adjusted roughly by sliding, or precisely by typing. A range input is also known as a slider. +API · Source · The range input specifies a number between the given *min* and *max* (inclusive). This number can be adjusted roughly by sliding, or precisely by typing. A range input is also known as a slider. By default, a range chooses a floating point number between 0 and 1 with full precision, which is often more precision than desired. @@ -14,8 +16,6 @@ const x = view(Inputs.range()); x ``` -The current value of *x* is ${x.toLocaleString("en")}. - The *step* option is strongly encouraged to set the desired precision (the interval between adjacent values). For integers, use *step* = 1. The up and down buttons in the number input will only work if a *step* is specified. To change the extent, pass [*min*, *max*] as the first argument. ```js echo @@ -102,16 +102,16 @@ d The available range input options are: -* *label* - a label; either a string or an HTML element. -* *step* - the step (precision); the interval between adjacent values. -* *format* - a format function; defaults to [formatTrim](https://github.com/observablehq/inputs?tab=readme-ov-file#inputsformattrimnumber). -* *placeholder* - a placeholder string for when the input is empty. -* *transform* - an optional non-linear transform. -* *invert* - the inverse transform. -* *validate* - a function to check whether the number input is valid. -* *value* - the initial value; defaults to (*min* + *max*) / 2. -* *width* - the width of the input (not including the label). -* *disabled* - whether input is disabled; defaults to false. +* *label* - a label; either a string or an HTML element +* *step* - the step (precision); the interval between adjacent values +* *format* - a format function; defaults to [formatTrim](https://github.com/observablehq/inputs?tab=readme-ov-file#inputsformattrimnumber) +* *placeholder* - a placeholder string for when the input is empty +* *transform* - an optional non-linear transform +* *invert* - the inverse transform +* *validate* - a function to check whether the number input is valid +* *value* - the initial value; defaults to (*min* + *max*) / 2 +* *width* - the width of the input (not including the label) +* *disabled* - whether input is disabled; defaults to false The given *value* is clamped to the given extent, and rounded if *step* is defined. However, note that the *min*, *max* and *step* options affect only the slider behavior, the number input’s buttons, and whether the browser shows a warning if a typed number is invalid; they do not constrain the typed number. @@ -119,4 +119,4 @@ If *validate* is not defined, [*number*.checkValidity](https://html.spec.whatwg. The *format* function should return a string value that is compatible with native number parsing. Hence, the default [formatTrim](https://github.com/observablehq/inputs?tab=readme-ov-file#inputsformattrimnumber) is recommended. -If a *transform* function is specified, an inverse transform function *invert* is strongly recommended. If *invert* is not provided, the Range will fallback to Newton’s method, but this may be slow or inaccurate. Passing Math.sqrt, Math.log, or Math.exp as a *transform* will automatically supply the corresponding *invert*. If *min* is greater than *max*, *i.e.* if the extent is inverted, then *transform* and *invert* will default to `value => -value`. \ No newline at end of file +If a *transform* function is specified, an inverse transform function *invert* is strongly recommended. If *invert* is not provided, the Range will fallback to Newton’s method, but this may be slow or inaccurate. Passing Math.sqrt, Math.log, or Math.exp as a *transform* will automatically supply the corresponding *invert*. If *min* is greater than *max*, *i.e.* if the extent is inverted, then *transform* and *invert* will default to `(value) => -value`. diff --git a/docs/inputs/search.md b/docs/inputs/search.md index bc0cdeb3a..4b43fbb1c 100644 --- a/docs/inputs/search.md +++ b/docs/inputs/search.md @@ -1,52 +1,41 @@ # Search input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#search) - -The search input allows freeform, full-text search of a tabular dataset (or a single column of values) using a simple query parser. It is often paired with a [table input](./table). +API · Source · The search input allows freeform, full-text search of a tabular dataset (or a single column of values) using a simple query parser. It is often paired with a [table input](./table). By default, the query is split into terms separated by spaces; each term is then prefix-matched against the property values (the fields) of each row in the data. Try searching for “gen” below to find Gentoo penguins. -```js echo -const search = view(Inputs.search(penguins, {placeholder: "Search penguins..."})); +```js +const searchInput = Inputs.search(penguins, {placeholder: "Search penguins…"}); +const search = view(searchInput); +``` + +```js run=false +const search = view(Inputs.search(penguins, {placeholder: "Search penguins…"})); ``` ```js echo search ``` -Or, as a table: +Or, as a table: ```js echo Inputs.table(search) ``` - - -If you search for multiple terms, such as “gen bis” (for Gentoos on the Biscoe Islands) or “gen fem” (for female Gentoos), every term must match: there’s an implicit logical AND. - -The search input is designed to work with other [inputs](../javascript/inputs) and especially [tables](./table). You can also refer to the current search results from any cell using a [view](../javascript/inputs#view(element)). For example, to compute the median body mass of the matching penguins: - -```js echo -d3.median(search, d => d.body_mass_g) -``` +If you search for multiple terms, such as “gen bis” (for Gentoos on the Biscoe Islands) or “gen fem” (for female Gentoos), every term must match: there’s an implicit logical AND. If you’d like different search syntax or behavior, pass the *filter* option. This function is passed the current search query and returns the [filter test function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) to be applied to the data. @@ -56,19 +45,19 @@ If you’d like different search syntax or behavior, pass the *filter* option. T The available search input options are: -* *label* - a label; either a string or an HTML element. -* *query* - the initial search terms; defaults to the empty string. -* *placeholder* - a placeholder string for when the query is empty. -* *columns* - an array of columns to search; defaults to *data*.columns. -* *locale* - the current locale; defaults to English. -* *format* - a function to show the number of results. -* *spellcheck* - whether to activate the browser’s spell-checker. -* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean (true for on, false for off). -* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean (true for on, false for off). -* *filter* - the filter factory: a function that receives the query and returns a filter. -* *width* - the width of the input (not including the label). -* *datalist* - an iterable of suggested values. -* *disabled* - whether input is disabled; defaults to false. -* *required* - if true, the search’s value is all *data* if no query; defaults to true. - -If a *filter* function is specified, it is invoked whenever the query changes; the function it returns is then passed each element from *data*, along with its zero-based index, and should return a truthy value if the given element matches the query. The default filter splits the current query into space-separated tokens and checks that each token matches the beginning of at least one string in the data’s columns, case-insensitive. For example, the query [hello world] will match the string “Worldwide Hello Services” but not “hello”. \ No newline at end of file +* *label* - a label; either a string or an HTML element +* *query* - the initial search terms; defaults to the empty string +* *placeholder* - a placeholder string for when the query is empty +* *columns* - an array of columns to search; defaults to *data*.columns +* *locale* - the current locale; defaults to English +* *format* - a function to show the number of results +* *spellcheck* - whether to activate the browser’s spell-checker +* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean +* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean +* *filter* - the filter factory: a function that receives the query and returns a filter +* *width* - the width of the input (not including the label) +* *datalist* - an iterable of suggested values +* *disabled* - whether input is disabled; defaults to false +* *required* - if true, the search’s value is all *data* if no query; defaults to true + +If a *filter* function is specified, it is invoked whenever the query changes; the function it returns is then passed each element from *data*, along with its zero-based index, and should return a truthy value if the given element matches the query. The default filter splits the current query into space-separated tokens and checks that each token matches the beginning of at least one string in the data’s columns, case-insensitive. For example, the query [hello world] will match the string “Worldwide Hello Services” but not “hello”. diff --git a/docs/inputs/select.md b/docs/inputs/select.md index dd81012c3..47913eabc 100644 --- a/docs/inputs/select.md +++ b/docs/inputs/select.md @@ -1,8 +1,10 @@ -# Select input +--- +keywords: dropdown +--- -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#select) +# Select input -The select input allows the user to choose from a given set of values. A select is recommended over a [radio](./radio) or [checkbox](./checkbox) input when the number of values to choose from is large — say, eight or more — to save space. +API · Source · The select input allows the user to choose from a given set of values. A select is recommended over a [radio](./radio) or [checkbox](./checkbox) input when the number of values to choose from is large — say, eight or more — to save space. The default appearance of a select is a drop-down menu that allows you to choose a single value. The initial value is the first of the allowed values, but you can override this by specifying the *value* option. @@ -18,10 +20,6 @@ const color = view(Inputs.select(x11colors, {value: "steelblue", label: "Favorit color ``` -```html echo -
-``` - If the *multiple* option is true, the select will allow multiple values to be selected and the value of the select will be the array of selected values. The initial value is the empty array. You can choose a range of values by dragging or Shift-clicking, and select or deselect a value by Command-clicking. ```js echo @@ -32,16 +30,16 @@ const colors = view(Inputs.select(x11colors, {multiple: true, label: "Favorite c colors ``` -```html echo -
${colors.map(color => html`
${color}`)} -``` - The *multiple* option can also be a number indicating the desired size: the number of rows to show. If *multiple* is true, the size defaults to the number of allowed values, or ten, whichever is fewer. ```js echo const fewerColors = view(Inputs.select(x11colors, {multiple: 4, label: "Favorite colors"})); ``` +```js echo +fewerColors +``` + For single-choice selects, if you wish to allow no choice to be selected, we recommend including null as an explicit option. ```js echo @@ -65,7 +63,13 @@ const teams = [ ``` ```js echo -const favorite = view(Inputs.select(teams, {label: "Favorite team", format: x => x.name, value: teams.find(t => t.name === "Warriors")})); +const favorite = view( + Inputs.select(teams, { + label: "Favorite team", + format: (t) => t.name, + value: teams.find((t) => t.name === "Warriors") + }) +); ``` ```js echo @@ -75,7 +79,17 @@ favorite If the select’s data are specified as a Map, the values will be the map’s values while the keys will be the displayed options. (This behavior can be customized by passing *keyof* and *valueof* function options.) Below, the displayed sizes are named, but the value is the corresponding number of fluid ounces. ```js echo -const size = view(Inputs.select(new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), {value: 12, label: "Size"})); +const size = view( + Inputs.select( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: 12, label: "Size"} + ) +); ``` ```js echo @@ -85,7 +99,17 @@ size Since the *format* function is passed elements from the data, it can access both the key and value from the corresponding Map entry. ```js echo -const size2 = view(Inputs.select(new Map([["Short", 8], ["Tall", 12], ["Grande", 16], ["Venti", 20]]), {value: 12, label: "Size", format: ([name, value]) => `${name} (${value} oz)`})); +const size2 = view( + Inputs.select( + new Map([ + ["Short", 8], + ["Tall", 12], + ["Grande", 16], + ["Venti", 20] + ]), + {value: 12, label: "Size", format: ([name, value]) => `${name} (${value} oz)`} + ) +); ``` ```js echo @@ -95,17 +119,27 @@ size2 Passing a Map to select is especially useful in conjunction with [d3.group](https://d3js.org/d3-array/group). For example, given a tabular dataset of Olympic athletes (`olympians`), we can use d3.group to group them by sport, and then the select input to select only athletes for the chosen sport. ```js echo -const sportAthletes = view(Inputs.select(d3.group(olympians, d => d.sport), {label: "Sport"})); +const sportAthletes = view( + Inputs.select( + d3.group(olympians, (d) => d.sport), + {label: "Sport"} + ) +); ``` ```js echo sportAthletes ``` -If the *sort* and *unique* options are specified, the select’s keys will be sorted and duplicate keys will be discarded, respectively. +If the *sort* and *unique* options are specified, the select’s keys will be sorted and duplicate keys will be discarded, respectively. ```js echo -const sport = view(Inputs.select(olympians.map(d => d.sport), {label: "Sport", sort: true, unique: true})); +const sport = view( + Inputs.select( + olympians.map((d) => d.sport), + {label: "Sport", sort: true, unique: true} + ) +); ``` ```js echo @@ -128,21 +162,15 @@ Inputs.select(["A", "E", "I", "O", "U", "Y"], {label: "Vowel", disabled: ["Y"]}) The available select input options are: -* *label* - a label; either a string or an HTML element. -* *multiple* - whether to allow multiple choice; defaults to false. -* *size* - if *multiple* is true, the number of options to show. -* *sort* - true, “ascending”, “descending”, or a comparator function to sort keys; defaults to false. -* *unique* - true to only show unique keys; defaults to false. -* *locale* - the current locale; defaults to English. -* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof*. -* *keyof* - a function to return the key for the given element in *data*. -* *valueof* - a function to return the value of the given element in *data*. -* *value* - the initial value, an array if multiple choice is allowed. -* *width* - the width of the input (not including the label). -* *disabled* - whether input is disabled, or the disabled values; defaults to false. - - - - - - +* *label* - a label; either a string or an HTML element +* *multiple* - whether to allow multiple choice; defaults to false +* *size* - if *multiple* is true, the number of options to show +* *sort* - true, *ascending*, *descending*, or a comparator to sort keys; defaults to false +* *unique* - true to only show unique keys; defaults to false +* *locale* - the current locale; defaults to English +* *format* - a format function; defaults to [formatLocaleAuto](https://github.com/observablehq/inputs/blob/main/README.md#inputsformatlocaleautolocale) composed with *keyof* +* *keyof* - a function to return the key for the given element in *data* +* *valueof* - a function to return the value of the given element in *data* +* *value* - the initial value, an array if multiple choice is allowed +* *width* - the width of the input (not including the label) +* *disabled* - whether input is disabled, or the disabled values; defaults to false diff --git a/docs/inputs/table.md b/docs/inputs/table.md index 718839956..36230bef0 100644 --- a/docs/inputs/table.md +++ b/docs/inputs/table.md @@ -1,8 +1,6 @@ # Table input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#table) - -The table input displays tabular data. It’s fast: rows are rendered lazily on scroll. It sorts: click a header to sort, and click again to reverse. And it selects: click a checkbox on any row, and the selected rows are exported as a view value. (And for searching, see the [search input](./search).) +API · Source · The table input displays tabular data. It’s fast: rows are rendered lazily on scroll. It sorts: click a header to sort, and click again to reverse. And it selects: click a checkbox on any row, and the selected rows are exported as a view value. (And for searching, see the [search input](./search).) By default, all columns are visible. Only the first dozen rows are initially visible, but you can scroll to see more. Column headers are fixed for readability. @@ -10,12 +8,9 @@ By default, all columns are visible. Only the first dozen rows are initially vis Inputs.table(penguins) ``` -To show a subset of columns, or to reorder them, pass an array of property names -as the _columns_ option. By default, columns are inferred from _data_.columns if -present, and otherwise by iterating over the data to union the property names. +To show a subset of columns, or to reorder them, pass an array of property names as the _columns_ option. By default, columns are inferred from _data_.columns if present, and otherwise by iterating over the data to union the property names. -The _header_ option lets you redefine the column title; this doesn’t change the -name used to reference the data. +The _header_ option lets you redefine the column title; this doesn’t change the name used to reference the data. ```js echo penguins.columns @@ -38,20 +33,13 @@ Inputs.table(penguins, { }) ``` -By default, rows are displayed in input order. You can change the order by -specifying the name of a column to _sort_ by, and optionally the _reverse_ -option for descending order. The male Gentoo penguins are the largest in this -dataset, for example. Undefined values go to the end. +By default, rows are displayed in input order. You can change the order by specifying the name of a column to _sort_ by, and optionally the _reverse_ option for descending order. The male Gentoo penguins are the largest in this dataset, for example. Undefined values go to the end. ```js echo Inputs.table(penguins, {sort: "body_mass_g", reverse: true}) ``` -Tables are [view-compatible](../javascript/inputs#view(element)): using the -view function, you can use a table to select rows and refer to them from other -cells, say to chart a subset of the data. Click the checkbox on the left edge of -a row to select it, and click the checkbox in the header row to clear the -selection. You can shift-click to select a range of rows. +Tables are [view-compatible](../reactivity#inputs): using the view function, you can use a table to select rows and refer to them from other cells, say to chart a subset of the data. Click the checkbox on the left edge of a row to select it, and click the checkbox in the header row to clear the selection. You can shift-click to select a range of rows. ```js echo const selection = view(Inputs.table(penguins, {required: false})); @@ -61,35 +49,28 @@ const selection = view(Inputs.table(penguins, {required: false})); selection // Try selecting rows above! ``` -The _required_ option determines the selection when no items are selected from -the table. If it is true (default), the selection contains the full dataset. -Otherwise, the selection is empty. +The _required_ option determines the selection when no items are selected from the table: if it is true (default), the selection contains the full dataset; otherwise, the selection is empty. The _select_ option disables user selection of rows, hiding the checkboxes in the first column. -The table input assumes that all values in a given column are the same type, -and chooses a suitable formatter based on the first non-null value in each -column. +The table input assumes that all values in a given column are the same type, and chooses a suitable formatter based on the first non-null value in each column. -- Numbers are formatted using - [_number_.toLocaleString](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString); +- Numbers are formatted using [_number_.toLocaleString](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString); - Dates are formatted in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601); -- Undefined and NaN values are empty; -- Everything else is displayed as-is. +- undefined and NaN values are empty; +- everything else is displayed as-is. -To override the default formatting, pass _format_ options for the desired -columns. +To override the default formatting, pass _format_ options for the desired columns. ```js echo Inputs.table(penguins, { format: { - culmen_length_mm: x => x.toFixed(1), - culmen_depth_mm: x => x.toFixed(1), - sex: x => x === "MALE" ? "M" : x === "FEMALE" ? "F" : "" + culmen_length_mm: (x) => x.toFixed(1), + culmen_depth_mm: (x) => x.toFixed(1), + sex: (x) => x === "MALE" ? "M" : x === "FEMALE" ? "F" : "" } }) ``` -The _format_ function can return a text string or an HTML element. -For example, this can be used to render inline visualizations such as bars or [sparklines](https://observablehq.com/@mbostock/covid-cases-by-state). +The _format_ function can return a text string or an HTML element. For example, this can be used to render inline visualizations such as bars or [sparklines](https://observablehq.com/@mbostock/covid-cases-by-state). ```js echo Inputs.table(penguins, { @@ -98,48 +79,38 @@ Inputs.table(penguins, { culmen_depth_mm: sparkbar(d3.max(penguins, d => d.culmen_depth_mm)), flipper_length_mm: sparkbar(d3.max(penguins, d => d.flipper_length_mm)), body_mass_g: sparkbar(d3.max(penguins, d => d.body_mass_g)), - sex: x => x.toLowerCase() + sex: (x) => x.toLowerCase() } }) ``` ```js echo function sparkbar(max) { - return x => htl.html`
${x.toLocaleString("en")}` + justify-content: end;">${x.toLocaleString("en-US")}` } ``` -There’s a similar _width_ option if you want to give certain columns specific -widths. The table input defaults to a fixed _layout_ if there are twelve or -fewer columns; this improves performance and avoids reflow when scrolling. +There’s a similar _width_ option if you want to give certain columns specific widths. The table input defaults to a fixed _layout_ if there are twelve or fewer columns; this improves performance and avoids reflow when scrolling. -You can switch _layout_ to auto if you prefer sizing columns based on content. -This makes the columns widths resize with the data, which can cause the columns -to jump around as the user scrolls. A horizontal scroll bar is added if the -total width exceeds the table’s width. +You can switch _layout_ to auto if you prefer sizing columns based on content. This makes the columns widths resize with the data, which can cause the columns to jump around as the user scrolls. A horizontal scroll bar is added if the total width exceeds the table’s width. Set _layout_ to fixed to pack all the columns into the width of the table. -The table’s width can be controlled by the _width_ option, in pixels. Individual -column widths can alternatively be defined by specifying an object with column -names as keys, and widths as values. Use the _maxWidth_ option if the sum of -column widths exceeds the desired table’s width. +The table’s width can be controlled by the _width_ option, in pixels. Individual column widths can alternatively be defined by specifying an object with column names as keys, and widths as values. Use the _maxWidth_ option if the sum of column widths exceeds the desired table’s width. -The _align_ option allows to change the text-alignment of cells, which can be -right, left, or center; it defaults to right for numeric columns, and left for -everything else. +The _align_ option allows to change the text-alignment of cells, which can be right, left, or center; it defaults to right for numeric columns, and left for everything else. -The _rows_ option indicates the number of rows to display; it defaults to 11.5. -The _height_ and _maxHeight_ options respectively set the height and maximum -height of the table, in pixels. The height defaults to (rows + 1) \* 22 - 1. +The _rows_ option indicates the number of rows to display; it defaults to 11.5. The _height_ and _maxHeight_ options respectively set the height and maximum height of the table, in pixels. The height defaults to (rows + 1) \* 22 - 1. ```js echo Inputs.table(penguins, { @@ -160,32 +131,29 @@ Inputs.table(penguins, { }) ``` -You can preselect some rows in the table by setting the _value_ option to an -array of references to the actual objects in your data. +You can preselect some rows in the table by setting the _value_ option to an array of references to the actual objects in your data. -For example, to preselect the first two items, you could write: +For example, to preselect the first two items, you could set _value_ to: -```js echo run=false -{ value: penguins.slice(0, 2)} +```js echo +penguins.slice(0, 2) ``` -or, if you just want to preselect the rows 1, 3, 7 and 9: +or, if you want to preselect the rows 1, 3, 7 and 9: -```js echo run=false -{ value: penguins.filter((_,i)=> [1, 3, 7, 9].includes(i))} +```js echo +[1, 3, 7, 9].map((i) => penguins[i]) ``` -The _multiple_ option allows multiple rows to be selected (defaults to true). -When false, only one row can be selected. To set the initial value in that case, -just reference the preselected object: +The _multiple_ option allows multiple rows to be selected (defaults to true). When false, only one row can be selected. To set the initial value in that case, just reference the preselected object: -```js echo run=false -{ multiple: false, value: penguins[4] } +```js echo +penguins[4] ``` ```js echo Inputs.table(penguins, { - value: penguins.filter((_, i) => [1, 3, 7, 9].includes(i)), + value: [1, 3, 7, 9].map((i) => penguins[i]), multiple: true }) ``` @@ -194,24 +162,25 @@ Thanks to [Ilyá Belsky](https://observablehq.com/@oluckyman) and [Brett Cooper] ## Options -**Inputs.table(*data*, *options*)** +**Inputs.table(_data_, _options_)** The available table input options are: -* *columns* - the columns (property names) to show; defaults to *data*.columns. -* *value* - a subset of *data* to use as the initial selection (checked rows), or a *data* item if *multiple* is false. -* *rows* - the maximum number of rows to show; defaults to 11.5. -* *sort* - the column to sort by; defaults to null (input order). -* *reverse* - whether to reverse the initial sort (descending instead of ascending). -* *format* - an object of column name to format function. -* *align* - an object of column name to “left”, “right”, or “center”. -* *header* - an object of column name to corresponding header; either a string or HTML element. -* *width* - the table width, or an object of column name to width. -* *maxWidth* - the maximum table width, if any. -* *height* - the fixed table height, if any. -* *maxHeight* - the maximum table height, if any; defaults to (*rows* + 1) * 22 - 1. -* *layout* - the [table layout](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout); defaults to fixed for ≤12 columns. -* *required* - if true, the table’s value is all *data* if no selection; defaults to true. -* *multiple* - if true, allow multiple rows to be selected; defaults to true. - -If *width* is “auto”, the table width will be based on the table contents; note that this may cause the table to resize as rows are lazily rendered. \ No newline at end of file +- _columns_ - the columns (property names) to show; defaults to _data_.columns +- _value_ - a subset of _data_ to use as the initial selection (checked rows), or a _data_ item if _multiple_ is false +- _rows_ - the maximum number of rows to show; defaults to 11.5 +- _sort_ - the column to sort by; defaults to null (input order) +- _reverse_ - whether to reverse the initial sort (descending instead of ascending) +- _format_ - an object of column name to format function +- _align_ - an object of column name to _left_, _right_, or _center_ +- _header_ - an object of column name to corresponding header; either a string or HTML element +- _width_ - the table width, or an object of column name to width +- _maxWidth_ - the maximum table width, if any +- _height_ - the fixed table height, if any +- _maxHeight_ - the maximum table height, if any; defaults to (_rows_ + 1) \* 22 - 1 +- _layout_ - the [table layout](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout); defaults to fixed for ≤12 columns +- _required_ - if true, the table’s value is all _data_ if no selection; defaults to true +- _select_ - if true, allows the user to modify the table’s value by selecting rows; defaults to true +- _multiple_ - if true, allow multiple rows to be selected; defaults to true + +If _width_ is _auto_, the table width will be based on the table contents; note that this may cause the table to resize as rows are lazily rendered. diff --git a/docs/inputs/text.md b/docs/inputs/text.md index 915840bcd..88045cc9d 100644 --- a/docs/inputs/text.md +++ b/docs/inputs/text.md @@ -1,8 +1,10 @@ -# Text input +--- +keywords: textbox +--- -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#text) +# Text input -The text input allows freeform single-line text entry. (For multiple lines, see the [text area](./textarea)) input. +API · Source · The text input allows freeform single-line text entry. For multiple lines, see the [text area](./textarea) input. In its most basic form, a text input is a blank box whose value is the empty string. The text’s value changes as the user types into the box. @@ -17,7 +19,13 @@ text We recommend providing a *label* and *placeholder* to improve usability. You can also supply an initial *value* if desired. ```js echo -const name = view(Inputs.text({label: "Name", placeholder: "Enter your name", value: "Anonymous"})); +const name = view( + Inputs.text({ + label: "Name", + placeholder: "Enter your name", + value: "Anonymous" + }) +); ``` ```js echo @@ -27,7 +35,12 @@ name The *label* may be either a text string or an HTML element, if more control over styling is desired. ```js echo -const signature = view(Inputs.text({label: html`Fancy`, placeholder: "What’s your fancy?"})); +const signature = view( + Inputs.text({ + label: html`Fancy`, + placeholder: "What’s your fancy?" + }) +); ``` For specific classes of text, such as email addresses and telephone numbers, you can supply one of the [HTML5 input types](https://developer.mozilla.org/en-US/docs/Learn/Forms/HTML5_input_types), such as email, tel (for a telephone number), or url, as the *type* option. Or, use a convenience method: Inputs.email, Inputs.password, Inputs.tel, or Inputs.url. @@ -40,20 +53,18 @@ const password = view(Inputs.password({label: "Password", value: "open sesame"}) password ``` -The HTML5 *pattern*, *spellcheck*, *minlength*, and *maxlength* options are also supported. If the user enters invalid input, the browser may display a warning (e.g., “Enter an email address”). You can also check whether the current value is valid by calling [*form*.checkValidity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity). +The HTML5 *pattern*, *spellcheck*, *minlength*, and *maxlength* options are also supported. If the user enters invalid input, the browser may display a warning (_e.g._, “Enter an email address”). ```js echo -const email = view(Inputs.text({type: "email", label: "Email", placeholder: "Enter your email"})); +const email = view( + Inputs.text({ + type: "email", + label: "Email", + placeholder: "Enter your email" + }) +); ``` - - If the input will trigger some expensive calculation, such as fetching from a remote server, the *submit* option can be used to defer the text input from reporting the new value until the user clicks the Submit button or hits Enter. The value of *submit* can also be the desired contents of the submit button (a string or HTML). ```js echo @@ -74,7 +85,7 @@ const capitals = FileAttachment("us-state-capitals.tsv").tsv({typed: true}); const state = view(Inputs.text({ label: "U.S. state", placeholder: "Enter state name", - datalist: capitals.map(d => d.State) + datalist: capitals.map((d) => d.State) })); ``` @@ -98,24 +109,24 @@ fixed The available text input options are: -* *label* - a label; either a string or an HTML element. -* *type* - the [input type](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types), such as “password” or “email”; defaults to “text”. -* *value* - the initial value; defaults to the empty string. -* *placeholder* - the [placeholder](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/placeholder) attribute. -* *spellcheck* - whether to activate the browser’s spell-checker. -* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean (true for on, false for off). -* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean (true for on, false for off). -* *pattern* - the [pattern](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern) attribute. -* *minlength* - [minimum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) attribute. -* *maxlength* - [maximum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) attribute. -* *min* - [minimum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min) attribute; formatted appropriately, *e.g.* yyyy-mm-dd for the date type. -* *max* - [maximum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max) attribute. -* *required* - if true, the input must be non-empty; defaults to *minlength* > 0. -* *validate* - a function to check whether the text input is valid. -* *width* - the width of the input (not including the label). -* *submit* - whether to require explicit submission before updating; defaults to false. -* *datalist* - an iterable of suggested values. -* *readonly* - whether input is readonly; defaults to false. -* *disabled* - whether input is disabled; defaults to false. - -If *validate* is not defined, [*text*.checkValidity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity) is used. While the input is not considered valid, changes to the input will not be reported. \ No newline at end of file +* *label* - a label; either a string or an HTML element +* *type* - the [input type](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types), such as “password” or “email”; defaults to “text” +* *value* - the initial value; defaults to the empty string +* *placeholder* - the [placeholder](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/placeholder) attribute +* *spellcheck* - whether to activate the browser’s spell-checker +* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean +* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean +* *pattern* - the [pattern](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern) attribute +* *minlength* - [minimum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) attribute +* *maxlength* - [maximum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) attribute +* *min* - [minimum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/min) attribute (`YYYY-MM-DD` for the date type) +* *max* - [maximum value](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/max) attribute +* *required* - if true, the input must be non-empty; defaults to *minlength* > 0 +* *validate* - a function to check whether the text input is valid +* *width* - the width of the input (not including the label) +* *submit* - whether to require explicit submission; defaults to false +* *datalist* - an iterable of suggested values +* *readonly* - whether input is readonly; defaults to false +* *disabled* - whether input is disabled; defaults to false + +If *validate* is not defined, [*text*.checkValidity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity) is used. While the input is not considered valid, changes to the input will not be reported. diff --git a/docs/inputs/textarea.md b/docs/inputs/textarea.md index 129aa5dc9..8ff55de0f 100644 --- a/docs/inputs/textarea.md +++ b/docs/inputs/textarea.md @@ -1,8 +1,10 @@ -# Text area input +--- +keywords: textbox +--- -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#textarea) +# Text area input -The textarea input allows freeform multi-line text entry. (For a single line, see the [text](./text) input). +API · Source · The textarea input allows freeform multi-line text entry. For a single line, see the [text](./text) input. In its most basic form, a textarea is a blank box whose value is the empty string. The textarea’s value changes as the user types into the box. @@ -34,7 +36,7 @@ const essay = view(Inputs.textarea({label: "Essay", rows: 6, minlength: 40, subm essay ``` -The HTML5 *spellcheck*, *minlength*, and *maxlength* options are supported. If the user enters invalid input, the browser may display a warning (e.g., “Use at least 80 characters”). You can also check whether the current value is valid by calling [*form*.checkValidity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity). +The HTML5 *spellcheck*, *minlength*, and *maxlength* options are supported. If the user enters invalid input, the browser may display a warning (e.g., “Use at least 80 characters”). To prevent a textarea’s value from being changed, use the *disabled* option. @@ -46,28 +48,28 @@ const fixed = view(Inputs.textarea({label: "Fixed value", value: "Can’t edit m fixed ``` -## Options +## Options **Inputs.textarea(*options*)** The available text area options are: -* *label* - a label; either a string or an HTML element. -* *value* - the initial value; defaults to the empty string. -* *placeholder* - the [placeholder](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/placeholder) attribute. -* *spellcheck* - whether to activate the browser’s spell-checker. -* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean (true for on, false for off). -* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean (true for on, false for off). -* *minlength* - [minimum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) attribute. -* *maxlength* - [maximum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) attribute. -* *required* - if true, the input must be non-empty; defaults to *minlength* > 0. -* *validate* - a function to check whether the text input is valid. -* *width* - the width of the input (not including the label). -* *rows* - the number of rows of text to show. -* *resize* - if true, allow vertical resizing; defaults to *rows* < 12. -* *submit* - whether to require explicit submission before updating; defaults to false. -* *readonly* - whether input is readonly; defaults to false. -* *disabled* - whether input is disabled; defaults to false. -* *monospace* - if true, use a monospace font. +* *label* - a label; either a string or an HTML element +* *value* - the initial value; defaults to the empty string +* *placeholder* - the [placeholder](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/placeholder) attribute +* *spellcheck* - whether to activate the browser’s spell-checker +* *autocomplete* - the [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute, as text or boolean +* *autocapitalize* - the [autocapitalize](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute, as text or boolean +* *minlength* - [minimum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) attribute +* *maxlength* - [maximum length](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) attribute +* *required* - if true, the input must be non-empty; defaults to *minlength* > 0 +* *validate* - a function to check whether the text input is valid +* *width* - the width of the input (not including the label) +* *rows* - the number of rows of text to show +* *resize* - if true, allow vertical resizing; defaults to *rows* < 12 +* *submit* - whether to require explicit submission; defaults to false +* *readonly* - whether input is readonly; defaults to false +* *disabled* - whether input is disabled; defaults to false +* *monospace* - if true, use a monospace font If *validate* is not defined, [*text*.checkValidity](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity) is used. While the input is not considered valid, changes to the input will not be reported. diff --git a/docs/inputs/toggle.md b/docs/inputs/toggle.md index b11b3772d..d023e3b16 100644 --- a/docs/inputs/toggle.md +++ b/docs/inputs/toggle.md @@ -1,8 +1,6 @@ # Toggle input -[API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#toggle) - -The toggle input allows the user to choose one of two values, representing on or off. It is a specialized form of the [checkbox input](./checkbox). +API · Source · The toggle input allows the user to choose one of two values, representing on or off. It is a specialized form of the [checkbox input](./checkbox). The initial value of a toggle defaults to false. You can override this by specifying the *value* option. @@ -50,7 +48,7 @@ frozen The available toggle input options are: -* *label* - a label; either a string or an HTML element. -* *values* - the two values to toggle between; defaults to [true, false]. -* *value* - the initial value; defaults to the second value (false). -* *disabled* - whether input is disabled; defaults to false. \ No newline at end of file +* *label* - a label; either a string or an HTML element +* *values* - the two values to toggle between; defaults to [true, false] +* *value* - the initial value; defaults to the second value (false) +* *disabled* - whether input is disabled; defaults to false diff --git a/docs/javascript.md b/docs/javascript.md index 446302741..37c2ee488 100644 --- a/docs/javascript.md +++ b/docs/javascript.md @@ -1,12 +1,12 @@ # JavaScript -Observable Framework supports JavaScript in Markdown for charts, inputs, and other dynamic, interactive, and graphical content. This client-side JavaScript runs in the browser on load, and re-runs automatically when [reactive variables](./javascript/reactivity) change or when you edit pages during preview. +Use JavaScript to render charts, inputs, and other dynamic, interactive, and graphical content on the client. JavaScript in [Markdown](./markdown) can be expressed either as [fenced code blocks](#fenced-code-blocks) or [inline expressions](#inline-expressions). You can also [import](./imports) JavaScript modules to share code across pages. -JavaScript in Markdown can be expressed either as [fenced code blocks](#fenced-code-blocks) or [inline expressions](#inline-expressions). You can also write JavaScript modules alongside Markdown files and [import them](./javascript/imports) into Markdown. (And you can run JavaScript, TypeScript, Python, or any other programming language during build to generate data using [data loaders](./loaders).) +
JavaScript runs on load, and re-runs reactively when variables change.
## Fenced code blocks -JavaScript fenced code blocks (```js) are typically used to [display content](./javascript/display) such as charts and inputs. They can also be used for logic by declaring top-level variables, say to load data or declare helper functions. +JavaScript fenced code blocks (```js) are typically used to display content such as charts and inputs. They can also be used to declare top-level variables, say to load data or declare helper functions. JavaScript blocks come in two forms: *expression* blocks and *program* blocks. An expression block looks like this (and note the lack of semicolon): @@ -16,13 +16,21 @@ JavaScript blocks come in two forms: *expression* blocks and *program* blocks. A ``` ```` -This produces: +Expression blocks [implicitly display](#implicit-display), producing: ```js 1 + 2 ``` -Note that JavaScript fenced code blocks do not echo their code by default. If you want to show the code, use the `echo` directive: +A program block looks like this (note the semicolon): + +```js echo +const foo = 1 + 2; +``` + +A program block doesn’t display anything by default, but you can call [`display`](#display-value) to display something. + +JavaScript blocks do not show their code by default. If you want to show the code, use the `echo` directive: ````md ```js echo @@ -30,47 +38,55 @@ Note that JavaScript fenced code blocks do not echo their code by default. If yo ``` ```` -The code is displayed below the output, like so: +The code is rendered below the output, like so: ```js echo 1 + 2 ``` -If an expression evaluates to a DOM node, the node is displayed as-is. +Alternatively, if you just want to show the code _without_ running it, set the `run` directive to `false`: + +````md +```js run=false +1 + 2 +``` +```` + +If an expression evaluates to a DOM node, the node is inserted into the page directly above the code block. Use this to create dynamic content such as charts and tables. ```js echo -document.createTextNode("Hello, world!") +document.createTextNode("[insert chart here]") // some imagination required ``` -While you can use the [standard DOM API](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) directly to create content, you’ll typically use a helper library such as the `html` and `svg` tagged template literals provided by [Hypertext Literal](./lib/htl), [Observable Plot](./lib/plot)’s `Plot.plot` method, or [D3](./lib/d3) to create DOM elements for display. +You can use the [DOM API](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model) to create content as above, but typically you’ll use a helper library such as [Hypertext Literal](./lib/htl), [Observable Plot](./lib/plot), or [D3](./lib/d3) to create content. For example, here’s a component that displays a greeting: ```js echo -html`1 + 2 = ${1 + 2}` +function greeting(name) { + return html`Hello, ${name}!`; +} ``` ```js echo -Plot.lineY(aapl, {x: "Date", y: "Close"}).plot({y: {grid: true}}) +greeting("world") ``` -Fenced code blocks automatically re-run when referenced [reactive variables](./javascript/reactivity) change (or when you edit the page during preview). The block below references the built-in variable `now` representing the current time in milliseconds; because `now` is reactive, this block runs sixty times a second and each each new span it returns replaces the one previously displayed. +And here’s a line chart of Apple’s stock price using [Observable Plot](./lib/plot): ```js echo -html`Rainbow text!` +Plot.lineY(aapl, {x: "Date", y: "Close"}).plot({y: {grid: true}}) ``` -A program block looks like this: +Code blocks automatically re-run when referenced [reactive variables](./reactivity) change, or when you edit the page during preview. The block below references the built-in variable `now` representing the current time in milliseconds; because `now` is reactive, this block runs sixty times a second and each each new span it returns replaces the one previously displayed. ```js echo -const x = 1 + 2; +html`Rainbow text!` ``` -A program block doesn’t display anything by default, but you can call the built-in [`display` function](./javascript/display) explicitly. The above block defines the top-level variable `x` with a value of ${x}. - -(A technical note: the parser first attempts to parse the input as an expression; if that fails, it parses it as a program. So, code such as `{foo: 1}` is interpreted as an object literal rather than a block with a labeled statement.) + ## Inline expressions -Inline JavaScript expressions ($\{…}) interpolate values into Markdown. They are typically used to display numbers such as metrics, or to arrange visual elements such as charts into rich HTML layouts. +JavaScript inline expressions $\{…} interpolate values into Markdown. They are typically used to display numbers such as metrics, or to arrange visual elements such as charts into rich HTML layouts. For example, this paragraph simulates rolling a 20-sided dice: @@ -80,7 +96,7 @@ You rolled ${Math.floor(Math.random() * 20) + 1}. You rolled ${Math.floor(Math.random() * 20) + 1}. (Reload the page to re-roll.) -Like fenced code blocks, inline expressions automatically re-run when referenced reactive variables change (or when you edit the page during preview). +Like fenced code blocks, inline expressions automatically re-run when referenced reactive variables change or when you edit the page during preview. The current time is ${new Date(now).toLocaleTimeString("en-US")}. @@ -88,12 +104,12 @@ The current time is ${new Date(now).toLocaleTimeString("en-US")}. The current time is ${new Date(now).toLocaleTimeString("en-US")}. ``` -As with code blocks, if an inline expression evaluates to a DOM element or node, it will be inserted into the page. For example, you can… +Likewise, if an inline expression evaluates to a DOM element or node, it will be inserted into the page. For example, you can… -interpolate a sparkline ${Plot.plot({axis: null, margin: 0, width: 80, height: 17, x: {type: "band", round: false}, marks: [Plot.rectY(aapl.slice(-15), {x: "Date", y1: 150, y2: "Close", fill: "var(--theme-blue)"})]})} +interpolate a sparkline ${Plot.plot({axis: null, margin: 0, width: 80, height: 17, x: {type: "band", round: false}, marks: [Plot.rectY(aapl.slice(-15 - number, -1 - number), {x: "Date", y1: 150, y2: "Close", fill: "var(--theme-foreground-focus)"})]})} ```md echo -interpolate a sparkline ${Plot.plot({axis: null, margin: 0, width: 80, height: 17, x: {type: "band", round: false}, marks: [Plot.rectY(aapl.slice(-15), {x: "Date", y1: 150, y2: "Close", fill: "var(--theme-blue)"})]})} +interpolate a sparkline ${Plot.plot({axis: null, margin: 0, width: 80, height: 17, x: {type: "band", round: false}, marks: [Plot.rectY(aapl.slice(-15 - number, -1 - number), {x: "Date", y1: 150, y2: "Close", fill: "var(--theme-foreground-focus)"})]})} ``` or even a reactive input ${Inputs.bind(html``, numberInput)} ${number} @@ -109,4 +125,202 @@ const numberInput = Inputs.input(0); const number = Generators.input(numberInput); ``` -Unlike code blocks, expressions cannot declare top-level reactive variables. +Expressions cannot declare top-level reactive variables. To declare a variable, use a code block instead. You can declare a variable in a code block (without displaying it) and then display it somewhere else using an inline expression. + +## TypeScript + +TypeScript fenced code blocks (```ts) allow TypeScript to be used in place of JavaScript. You can also import TypeScript modules (`.ts`). Use the `.js` file extension when importing TypeScript modules; TypeScript is transpiled to JavaScript during build. + +
+ +Framework does not perform type checking during preview or build. If you want the additional safety of type checks, considering using [`tsc`](https://www.typescriptlang.org/docs/handbook/compiler-options.html). + +
+ +
+ +TypeScript fenced code blocks do not currently support [implicit display](#implicit-display), and TypeScript is not currently allowed in [inline expressions](#inline-expressions). + +
+ +## Explicit display + +The built-in [`display` function](#display-value) displays the specified value. + +```js echo +const x = Math.random(); + +display(x); +``` + +You can display structured objects, too. Click on the object below to inspect it. + +```js echo +display({hello: {subject: "world"}, numbers: [1, 2, 3, 4]}) +``` + +Calling `display` multiple times will display multiple values. Values are displayed in the order they are received. Previously-displayed values will be cleared when the associated code block or inline expression is invalidated. + +```js echo +for (let i = 0; i < 5; ++i) { + display(i); +} +``` + +If you pass `display` a DOM node, it will be inserted directly into the page. Use this technique to render dynamic displays of data, such as charts and tables. + +```js echo +display(html`Your lucky number is ${Math.floor(Math.random () * 10)}!`); +``` + +
+

This is a contrived example — you normally use an inline expression to interpolate a value into Markdown. For example:

+
Your lucky number is ${Math.floor(Math.random () * 10)}!
+
+ +The `display` function returns the passed-in value. You can display any value (any expression) in code, not only top-level variables; use this as an alternative to `console.log` to debug your code. + +```js echo +const y = display(Math.random()); +``` + +The value of `y` is ${y}. + +```md +The value of `y` is ${y}. +``` + +When the value passed to `display` is not a DOM element or node, the behavior of `display` depends on whether it is called within a fenced code block or an inline expression. In fenced code blocks, `display` will use the [inspector](https://github.com/observablehq/inspector). + +```js echo +display([1, 2, 3]); +``` + +In inline expressions, `display` will coerce non-DOM values to strings and concatenate iterables. + +${display([1, 2, 3])} + +```md +${display([1, 2, 3])} +``` + +The `display` function is scoped to each code block, meaning that the `display` function is a closure bound to where it will display on the page. But you can capture a code block’s `display` function by assigning it to a top-level variable: + +```js echo +const displayThere = display; +``` + +Then you can reference it from other cells: + +```js echo +Inputs.button("Click me", {value: 0, reduce: (i) => displayThere(++i)}) +``` + +## Implicit display + +JavaScript expression fenced code blocks are implicitly wrapped with a call to [`display`](#display-value). For example, this arithmetic expression displays implicitly: + +```js echo +1 + 2 // implicit display +``` + +Implicit display only applies to expression code blocks, not program code blocks: the value won’t implicitly display if you add a semicolon. (Watch out for [Prettier](https://prettier.io/)!) + +```js echo +1 + 2; // no implicit display +``` + +Implicit display also doesn’t apply if you reference the `display` function explicitly (_i.e._, we wouldn’t want to show `2` twice below). + +```js echo +display(1), display(2) // no implicit display +``` + +The same is true for inline expressions `${…}`. + +${1 + 2} + +```md +${1 + 2} +``` + +${display(1), display(2)} + +```md +${display(1), display(2)} +``` + +Implicit display also implicitly awaits promises. + +## Responsive display + +In Markdown, the built-in [`width` reactive variable](#width) represents the current width of the main element. This variable is implemented by [`Generators.width`](./lib/generators#width-element) and backed by a [`ResizeObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver). The reactive width can be a handy thing to pass, say, as the **width** option to [Observable Plot](./lib/plot). + +```js echo +Plot.barX([9, 4, 8, 1, 11, 3, 4, 2, 7, 5]).plot({width}) +``` + +For non-top-level elements, as when rendering content within an inline expression, use the built-in [`resize` function](#resize-render) instead. This takes a _render_ function which is called whenever the width or height [changes](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), and the element returned by the render function is inserted into the DOM. + +```html echo +
+ ${resize((width) => Plot.barX([9, 4, 8, 1, 11, 3, 4, 2, 7, 5]).plot({width}))} +
+``` + +If your container defines a height, such as `240px` in the example below, then you can use both the `width` and `height` arguments to the render function: + +```html echo +
+
+ ${resize((width, height) => Plot.barY([9, 4, 8, 1, 11, 3, 4, 2, 7, 5]).plot({width, height}))} +
+
+ ${resize((width, height) => Plot.barY([3, 4, 2, 7, 5, 9, 4, 8, 1, 11]).plot({width, height}))} +
+
+``` + +
If you are using resize with both width and height and see nothing rendered, it may be because your parent container does not have its own height specified. When both arguments are used, the rendered element is implicitly position: absolute to avoid affecting the size of its parent and causing a feedback loop.
+ +## display(*value*) + +Displays the specified *value* in the current context, returning *value*. If *value* is a DOM element or node, it is inserted directly into the page. Otherwise, if the current context is a fenced code block, inspects the specified *value*; or, if the current context is an inline expression, coerces the specified *value* to a string and displays it as text. + +```js echo +display(1 + 2); +``` + +See [Explicit display](#explicit-display) for more. + +## resize(*render*) + +Creates and returns a DIV element to contain responsive content; then, using a [`ResizeObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) to observe changes to the returned element’s size, calls the specified *render* function with the new width and height whenever the size changes. The element returned by the *render* function is inserted into the DIV element, replacing any previously-rendered content. This is useful for responsive charts. + +```js echo +resize((width) => `I am ${width} pixels wide.`) +``` + +If the *render* function returns a promise, the promise is implicitly awaited. If the resulting value is null, the DIV element is cleared; otherwise, if the resulting value is not a DOM element, it is coerced to a string and displayed as text. + +See [Responsive display](#responsive-display) for more. + +## width + +The current width of the main element in pixels as a reactive variable. A fenced code block or inline expression that references `width` will re-run whenever the width of the main element changes, such as when the window is resized; often used for responsive charts. + +```js echo +width +``` + +See [`Generators.width`](./lib/generators#width-element) for implementation. + +## now + +The current time in milliseconds since Unix epoch as a reactive variable. A fenced code block or inline expression that references `now` will run continuously; often used for simple animations. + +```js echo +now +``` + +See [`Generators.now`](./lib/generators#now) for implementation. diff --git a/docs/javascript/athletes.csv b/docs/javascript/athletes.csv deleted file mode 100644 index d584d834f..000000000 --- a/docs/javascript/athletes.csv +++ /dev/null @@ -1,11539 +0,0 @@ -id,name,nationality,sex,date_of_birth,height,weight,sport,gold,silver,bronze,info -736041664,A Jesus Garcia,ESP,male,1969-10-17,1.72,64,athletics,0,0,0, -532037425,A Lam Shin,KOR,female,1986-09-23,1.68,56,fencing,0,0,0, -435962603,Aaron Brown,CAN,male,1992-05-27,1.98,79,athletics,0,0,1, -521041435,Aaron Cook,MDA,male,1991-01-02,1.83,80,taekwondo,0,0,0, -33922579,Aaron Gate,NZL,male,1990-11-26,1.81,71,cycling,0,0,0, -173071782,Aaron Royle,AUS,male,1990-01-26,1.8,67,triathlon,0,0,0, -266237702,Aaron Russell,USA,male,1993-06-04,2.05,98,volleyball,0,0,1, -382571888,Aaron Younger,AUS,male,1991-09-25,1.93,100,aquatics,0,0,0, -87689776,Aauri Lorena Bokesa,ESP,female,1988-12-14,1.8,62,athletics,0,0,0, -997877719,Ababel Yeshaneh,ETH,female,1991-07-22,1.65,54,athletics,0,0,0, -343694681,Abadi Hadis,ETH,male,1997-11-06,1.7,63,athletics,0,0,0, -591319906,Abbas Abubakar Abbas,BRN,male,1996-05-17,1.75,66,athletics,0,0,0, -258556239,Abbas Qali,IOA,male,1992-10-11,,,aquatics,0,0,0, -376068084,Abbey D'Agostino,USA,female,1992-05-25,1.61,49,athletics,0,0,0, -162792594,Abbey Weitzeil,USA,female,1996-12-03,1.78,68,aquatics,1,1,0, -521036704,Abbie Brown,GBR,female,1996-04-10,1.76,71,rugby sevens,0,0,0, -149397772,Abbos Rakhmonov,UZB,male,1998-07-07,1.61,57,wrestling,0,0,0, -256673338,Abbubaker Mobara,RSA,male,1994-02-18,1.75,64,football,0,0,0, -337369662,Abby Erceg,NZL,female,1989-11-20,1.75,68,football,0,0,0, -334169879,Abd Elhalim Mohamed Abou,EGY,male,1989-06-03,2.1,88,volleyball,0,0,0, -215053268,Abdalaati Iguider,MAR,male,1987-03-25,1.73,57,athletics,0,0,0, -763711985,Abdalelah Haroun,QAT,male,1997-01-01,1.85,80,athletics,0,0,0, -924593601,Abdalla Targan,SUD,male,1996-09-28,1.77,65,athletics,0,0,0, -578032534,Abdel Aziz Mehelba,EGY,male,1988-12-10,1.76,80,shooting,0,0,0, -890222258,Abdelati El Guesse,MAR,male,1993-02-27,1.9,72,athletics,0,0,0, -803161695,Abdelaziz Merzougui,ESP,male,1991-08-30,1.75,67,athletics,0,0,0, -189931373,Abdelaziz Mohamed Ahmed,SUD,male,1994-10-12,1.81,72,aquatics,0,0,0, -677622742,Abdelghani Demmou,ALG,male,1989-01-29,1.85,75,football,0,0,0, -349871091,Abdelhafid Benchabla,ALG,male,1986-09-26,1.86,,boxing,0,0,0, -904808208,Abdelhakim Amokrane,ALG,male,1994-05-10,1.86,70,football,0,0,0, -23564778,Abdelkader Chadi,ALG,male,1986-12-12,1.78,,boxing,0,0,0, -133974151,Abdelkadir Salhi,ALG,male,1993-03-19,1.85,79,football,0,0,0, -189886442,Abdelkebir Ouaddar,MAR,male,1962-07-15,1.74,67,equestrian,0,0,0, -199516300,Abdelkhalek Elbanna,EGY,male,1988-07-04,1.93,95,rowing,0,0,0, -570342175,Abdellatif Mohamed Ahmed Mohamed,EGY,male,1995-12-08,1.76,120,wrestling,0,0,0, -517007712,Abdelmajid El Hissouf,MAR,male,1992-09-23,1.7,56,athletics,0,0,0, -512730813,Abdelmalik Lahoulou,ALG,male,1992-05-07,1.77,72,athletics,0,0,0, -934545704,Abdelrahman Salah Orabi Abdelgawwad,EGY,male,1987-10-09,1.85,,boxing,0,0,0, -514096508,Abdelraouf Benguit,ALG,male,1996-04-05,1.7,65,football,0,0,0, -388896171,Abderrahmane Benamadi,ALG,male,1985-07-03,1.83,90,judo,0,0,0, -285603057,Abderrahmane Mansouri,ALG,male,1995-01-13,1.72,66,cycling,0,0,0, -545134894,Abderrahmane Meziane,ALG,male,1994-03-07,1.68,62,football,0,0,0, -64529046,Abdi Hakin Ulad,DEN,male,1991-06-14,1.75,57,athletics,0,0,0, -917755766,Abdi Nageeye,NED,male,1989-03-02,1.65,54,athletics,0,0,0, -184980926,Abdi Waiss Mouhyadin,DJI,male,1996-07-03,1.6,60,athletics,0,0,0, -702606719,Abdoul Khadre Mbaye Niane,SEN,male,1988-08-20,1.9,90,aquatics,0,0,0, -259675127,Abdoulkarim Fawziya,CMR,female,1989-03-01,1.8,67,volleyball,0,0,0, -469953606,Abdoullah Bamoussa,ITA,male,1986-06-08,,,athletics,0,0,0, -962468808,Abdoulrazak Issoufou Alfaga,NIG,male,1994-12-26,2.07,98,taekwondo,0,1,0, -958967643,Abdul Khalili,SWE,male,1992-06-07,1.81,71,football,0,0,0, -325809293,Abdul Omar,GHA,male,1993-10-03,,,boxing,0,0,0, -152408417,Abdul Wahab Zahiri,AFG,male,1992-05-27,1.75,68,athletics,0,0,0, -262868423,Abdulaziz Alshatti,IOA,male,1990-10-30,,,fencing,0,0,0, -101781750,Abdulkadir Abdullayev,AZE,male,1988-07-17,1.88,,boxing,0,0,0, -5763609,Abdullah Abkar Mohammed,KSA,male,1997-01-01,1.72,73,athletics,0,0,0, -969824503,Abdullah Alrashidi,IOA,male,1963-08-21,1.83,84,shooting,0,0,1, -897549624,Abdullah Hel Baki,BAN,male,1989-08-01,,,shooting,0,0,0, -153457,Abdullahi Shehu,NGR,male,1993-03-12,1.7,,football,0,0,1, -803368584,Abdullo Tangriev,UZB,male,1981-03-28,1.9,132,judo,0,0,0, -937153550,Abdulrahman Al Faihan,IOA,male,1986-06-24,,,shooting,0,0,0, -746318262,Abdulrashid Sadulaev,RUS,male,1996-05-09,1.77,86,wrestling,1,0,0, -841446548,Abdulrazzaq Murad,QAT,male,1990-06-29,1.86,77,handball,0,0,0, -884912875,Abeku Gyekye Jackson,GHA,male,2000-04-12,,,aquatics,0,0,0, -146197583,Abhinav Bindra,IND,male,1982-09-28,1.75,70,shooting,0,0,0, -884912136,Abigail Johnston,USA,female,1989-11-16,1.66,61,aquatics,0,0,0, -221052317,Abigel Joo,HUN,female,1990-08-06,1.83,76,judo,0,0,0, -157637514,Ablaikhan Zhussupov,KAZ,male,1997-01-10,1.75,,boxing,0,0,0, -78813419,Abraham Kipchirchir Rotich,BRN,male,1993-09-26,1.83,65,athletics,0,0,0, -555457991,Abraham Naibei Cheroben,BRN,male,1992-10-11,1.76,60,athletics,0,0,0, -877850429,Abraham Niyonkuru,BDI,male,1989-12-26,1.62,52,athletics,0,0,0, -369092977,Abrar Osman,ERI,male,1994-01-01,1.68,58,athletics,0,0,0, -602585498,Abubaker Haydar Abdalla,QAT,male,1996-08-28,1.8,60,athletics,0,0,0, -140663745,Achraf Kharroubi,MAR,male,1990-09-25,1.6,,boxing,0,0,0, -507726155,Adam Batirov,BRN,male,1985-01-13,1.65,71,wrestling,0,0,0, -60265240,Adam Cwalina,POL,male,1985-01-26,1.87,81,badminton,0,0,0, -256805041,Adam Decker,HUN,male,1984-02-29,2.03,115,aquatics,0,0,0, -275689888,Adam Dixon,GBR,male,1986-09-11,1.69,70,hockey,0,0,0, -136977152,Adam Froese,CAN,male,1991-08-13,1.82,81,hockey,0,0,0, -487206822,Adam Gemili,GBR,male,1993-10-06,1.78,75,athletics,0,0,0, -236523132,Adam Imer,BRA,male,1989-08-18,1.82,88,hockey,0,0,0, -682367963,Adam Kszczot,POL,male,1989-09-02,1.78,68,athletics,0,0,0, -624366946,Adam Lundqvist,SWE,male,1994-03-20,1.74,70,football,0,0,0, -394945344,Adam Marosi,HUN,male,1984-07-26,1.81,75,modern pentathlon,0,0,0, -970243540,Adam Okruashvili,GEO,male,1989-01-01,1.89,130,judo,0,0,0, -765490473,Adam Pattantyus,HUN,male,1978-10-10,1.75,71,table tennis,0,0,0, -561951036,Adam Peaty,GBR,male,1994-12-28,1.93,88,aquatics,1,1,0, -785166259,Adam Sebastian Helcelet,CZE,male,1991-10-27,1.9,92,athletics,0,0,0, -846863992,Adam Telegdy,HUN,male,1995-11-01,1.94,77,aquatics,0,0,0, -390173289,Adam Vella,AUS,male,1971-06-12,1.78,92,shooting,0,0,0, -266751447,Adam Viktora,SEY,male,1996-09-06,1.88,94,aquatics,0,0,0, -983184686,Adam Wisniewski,POL,male,1980-10-24,1.93,93,handball,0,0,0, -184652432,Adam Yates,GBR,male,1992-08-07,1.72,58,cycling,0,0,0, -983411298,Adam van Koeverden,CAN,male,1982-01-29,1.82,85,canoe,0,0,0, -685532077,Adama Diatta,SEN,male,1988-08-14,1.65,57,wrestling,0,0,0, -222063859,Adama Jammeh,GAM,male,1993-06-10,,,athletics,0,0,0, -46940649,Adas Juskevicius,LTU,male,1989-01-03,1.94,90,basketball,0,0,0, -512592841,Adel Gholami,IRI,male,1986-02-09,1.95,88,volleyball,0,0,0, -302277635,Adel Mechaal,ESP,male,1990-12-05,1.82,71,athletics,0,0,0, -216864827,Adel Mojallalimoghadam,IRI,male,1993-03-21,1.85,82,canoe,0,0,0, -153013732,Adela Bruns,CZE,female,1987-02-05,1.71,60,shooting,0,0,0, -123916473,Adela Hanzlickova,CZE,female,1994-05-04,1.71,67,wrestling,0,0,0, -325622113,Adelina Bogus,ROU,female,1988-09-04,1.86,75,rowing,0,0,1, -518639420,Adelina Pastor,ROU,female,1993-05-05,1.68,56,athletics,0,0,0, -457663778,Adelinde Cornelissen,NED,female,1979-07-07,1.68,55,equestrian,0,0,0,"At London 2012, Adelinde Cornelissen won two medals: silver in the individual dressage and bronze in the team event. This Dutch athlete has also won two World Cup titles with her horse Jerich Parzival." -259002430,Adeline Maria Gray,USA,female,1991-01-15,1.73,77,wrestling,0,0,0, -303297765,Adem Boudjemline,ALG,male,1994-02-28,1.8,85,wrestling,0,0,0, -993710181,Adenizia da Silva,BRA,female,1986-12-18,1.87,65,volleyball,0,0,0, -878847288,Adham Ahmed Saleh Kahk,EGY,male,1993-06-27,1.6,66,wrestling,0,0,0, -75289002,Adilbek Niyazymbetov,KAZ,male,1989-05-19,1.8,,boxing,0,1,0, -930618704,Adilson da Silva,BRA,male,1972-01-24,1.7,79,golf,0,0,0, -890593128,Aditi Ashok,IND,female,1998-03-29,1.73,57,golf,0,0,0, -456381770,Adlan Abdurashidov,RUS,male,1990-07-31,1.72,,boxing,0,0,0, -256936407,Adnan Maric,SWE,male,1997-02-17,1.83,78,football,0,0,0, -637015297,Adrian Andres Puentes Perez,CUB,male,1988-07-03,1.71,76,archery,0,0,0, -787208883,Adrian Baches,BRA,male,1990-04-07,1.84,83,aquatics,0,0,0, -941631433,Adrian Blocki,POL,male,1990-04-11,1.74,62,athletics,0,0,0, -839462979,Adrian Chacon,CUB,male,1988-12-10,1.87,90,athletics,0,0,0, -284555275,Adrian Crisan,ROU,male,1980-05-07,1.86,85,table tennis,0,0,0, -366608701,Adrian Dziolko,POL,male,1990-02-22,1.89,85,badminton,0,0,0, -679510102,Adrian Eduardo Goide Arredondo,CUB,male,1998-06-26,1.91,80,volleyball,0,0,0, -242818896,Adrian Edward Zielinski,POL,male,1989-03-28,1.7,94,weightlifting,0,0,0, -400838338,Adrian Gavira Collado,ESP,male,1987-09-17,1.93,89,volleyball,0,0,0, -557196811,Adrian Gomboc,SLO,male,1995-01-20,1.7,69,judo,0,0,0, -653186701,Adrian Griffith,BAH,male,1984-11-11,1.78,75,athletics,0,0,0, -217850967,Adrian Ignacio Carambula Raurich,ITA,male,1988-03-16,1.82,83,volleyball,0,0,0, -370799805,Adrian Juhasz,HUN,male,1989-11-18,1.88,89,rowing,0,0,0, -714030791,Adrian Oquendo,CUB,male,1990-02-23,1.89,87,rowing,0,0,0, -915726586,Adrian Portela,ARG,male,1986-03-08,1.85,95,handball,0,0,0, -80367651,Adriana Aparecida da Silva,BRA,female,1981-07-22,1.66,52,athletics,0,0,0, -593328448,Adriana Araujo,BRA,female,1981-11-04,1.67,,boxing,0,0,0, -770039735,Adriana Diaz,PUR,female,2000-10-31,1.6,50,table tennis,0,0,0, -228337858,Adriana Martin,ESP,female,1996-04-12,1.62,65,archery,0,0,0, -529241363,Adriana Moises,BRA,female,1978-12-06,1.7,65,basketball,0,0,0, -439382128,Adrien Bart,FRA,male,1991-09-04,1.85,84,canoe,0,0,0, -326016199,Adrien Dipanda,FRA,male,1988-05-03,2.02,105,handball,0,1,0, -664737236,Adrien Niyonshuti,RWA,male,1987-01-02,1.65,68,cycling,0,0,0, -447910544,Adrienne Martelli,USA,female,1987-12-03,1.86,77,rowing,0,0,0, -835610998,Adzo Rebecca Kpossi,TOG,female,1999-01-25,1.58,53,aquatics,0,0,0, -26797739,Ae-Ri Noort,NED,female,1983-01-10,1.6,49,rowing,0,0,0, -577601340,Afa Ismail,MDV,female,1993-11-01,,,athletics,0,0,0, -16830155,Afaf Elhodhod,EGY,female,1996-10-01,1.63,75,shooting,0,0,0, -508610852,Afef Ben Ismail,TUN,female,1994-03-17,1.73,60,canoe,0,0,0, -477738986,Africa Zamorano Sanz,ESP,female,1998-01-11,1.7,58,aquatics,0,0,0, -998446972,Afrodite Zegers,NED,female,1991-12-02,1.61,58,sailing,0,0,0, -42409524,Agata Forkasiewicz,POL,female,1994-01-13,1.68,54,athletics,0,0,0, -28097741,Agatha Bednarczuk,BRA,female,1983-06-22,1.82,70,volleyball,0,1,0, -23462736,Ageze Guadie,ISR,male,1989-09-11,1.75,56,athletics,0,0,0, -971796358,Aglaia Pezzato,ITA,female,1994-04-22,1.75,60,aquatics,0,0,0, -810258362,Agnes Osazuwa,NGR,female,1989-11-26,1.62,65,athletics,0,0,0, -107504792,Agnes Raharolahy,FRA,female,1992-11-07,1.67,58,athletics,0,0,0, -320335499,Agnese Pastare,LAT,female,1988-10-27,1.79,68,athletics,0,0,0, -220410298,Agnete Kirk Thinggaard,DEN,female,1983-05-18,1.72,62,equestrian,0,0,0, -726686017,Agnieszka Dygacz,POL,female,1985-07-18,1.6,47,athletics,0,0,0, -517578131,Agnieszka Jadwiga Wieszczek-Kordus,POL,female,1983-03-22,1.75,69,wrestling,0,0,0, -120505360,Agnieszka Jerzyk,POL,female,1988-01-15,1.7,59,triathlon,0,0,0, -665715516,Agnieszka Kobus,POL,female,1990-08-28,1.77,68,rowing,0,0,1, -935702937,Agnieszka Nagay,POL,female,1981-02-20,1.69,61,shooting,0,0,0, -220520929,Agnieszka Radwanska,POL,female,1989-03-06,1.73,59,tennis,0,0,0,"Agnieszka Radwanska's career high to date was finishing runner-up at Wimbledon, in 2012, when she lost to Serena Williams in the final. Despite the defeat, the result was celebrated in her country. This athlete appears near the top of the world rankings." -527420548,Agnieszka Skrzypulec,POL,female,1989-06-03,1.66,53,sailing,0,0,0, -983479171,Agnieszka Szwarnog,POL,female,1986-12-28,1.65,51,athletics,0,0,0, -638298176,Agustin Mazzilli,ARG,male,1989-06-20,1.73,77,hockey,1,0,0, -833236523,Agustin Vidal,ARG,male,1987-07-08,1.94,100,handball,0,0,0, -794585269,Agustina Albertarrio,ARG,female,1993-01-01,1.65,55,hockey,0,0,0, -441542780,Agustina Habif,ARG,female,1992-03-08,1.65,55,hockey,0,0,0, -213448220,Ahmad Abughaush,JOR,male,1996-02-01,1.78,68,taekwondo,1,0,0, -443237540,Ahmad Alafasi,IOA,male,1983-01-10,,,shooting,0,0,0, -942902378,Ahmad Amsyar Azman,MAS,male,1992-08-28,1.62,62,aquatics,0,0,0, -684631479,Ahmad Hazer,LIB,male,1989-09-04,1.88,80,athletics,0,0,0, -67793782,Ahmed Abdelaal,EGY,male,1989-06-08,1.88,89,volleyball,0,0,0, -935849614,Ahmed Abdelhay,EGY,male,1984-08-19,1.97,87,volleyball,0,0,0, -786273274,Ahmed Abelrahman,EGY,male,1996-05-26,1.65,60,judo,0,0,0, -672789779,Ahmed Afifi,EGY,male,1988-03-30,1.94,92,volleyball,0,0,0, -873200853,Ahmed Akram,EGY,male,1996-10-20,1.88,80,aquatics,0,0,0, -862822782,Ahmed Ali,SUD,male,1993-11-15,1.73,75,athletics,0,0,0, -9418987,Ahmed Attellesey,LBA,male,1995-07-30,,,aquatics,0,0,0, -180751684,Ahmed Bader Magour,QAT,male,1996-03-03,1.9,90,athletics,0,0,0, -364294388,Ahmed Darwish,EGY,male,1981-07-02,1.72,80,shooting,0,0,0, -23970897,Ahmed El Kotb,EGY,male,1991-07-23,1.97,80,volleyball,0,0,0, -837684987,Ahmed El-Nemr,EGY,male,1978-11-21,1.83,84,archery,0,0,0, -635571670,Ahmed Elahmar,EGY,male,1984-01-27,1.81,79,handball,0,0,0, -64299896,Ahmed Gebrel,PLE,male,1991-01-22,,,aquatics,0,0,0, -215275770,Ahmed Goumar,NIG,male,1988-02-22,1.8,73,judo,0,0,0, -663592491,Ahmed Ibrahim,IRQ,male,1992-02-25,1.84,80,football,0,0,0, -916701520,Ahmed Kamar,EGY,male,1986-09-19,1.75,60,shooting,0,0,0, -114527133,Ahmed Mathlouthi,TUN,male,1989-12-18,1.9,90,aquatics,0,0,0, -205324342,Ahmed Mohamed,EGY,male,1996-04-08,1.7,73,shooting,0,0,0, -162169475,Ahmed Mohamed,EGY,male,1988-04-27,1.85,144,weightlifting,0,0,0, -739968078,Ahmed Mohamed Ibrahim Saad,EGY,male,1989-02-25,1.65,85,wrestling,0,0,0, -575397765,Ahmed Ragab,EGY,male,1991-09-29,1.74,81,sailing,0,0,0, -101574216,Ahmed Saad,EGY,male,1986-11-01,1.6,62,weightlifting,0,0,0, -105465611,Ahmed Shaban,EGY,male,1979-03-08,1.9,95,shooting,0,0,0, -585852107,Ahmet Li,TUR,male,1991-01-12,1.73,67,table tennis,0,0,0, -696999235,Ahmet Orken,TUR,male,1993-03-12,1.77,69,cycling,0,0,0, -47988332,Ahreum Na,KOR,female,1990-03-24,1.63,55,cycling,0,0,0, -138385356,Ahymara Espinoza,VEN,female,1985-05-28,1.8,99,athletics,0,0,0, -730862558,Ai Fukuhara,JPN,female,1988-11-01,1.56,48,table tennis,0,0,1, -488478701,Ai Kondo Yoshida,JPN,female,1980-11-05,1.61,58,sailing,0,0,0, -975475720,Ai Ueda,JPN,female,1983-10-26,1.55,44,triathlon,0,0,0, -544308054,Ai Wen Yu,TPE,female,1995-12-27,1.57,52,shooting,0,0,0, -696719880,Aiaal Lazarev,KGZ,male,1986-03-19,1.95,125,wrestling,0,0,0, -634178292,Aichen Wang,CHN,male,1985-03-28,1.85,75,sailing,0,0,0, -537808926,Aida Fall,SEN,female,1986-11-10,1.93,95,basketball,0,0,0, -155951731,Aida Mohamed,HUN,female,1976-03-12,1.62,58,fencing,0,0,0, -531077009,Aida Roman,MEX,female,1988-05-21,1.69,64,archery,0,0,0, -750356217,Aida Shanaeva,RUS,female,1986-04-23,1.73,63,fencing,0,0,0, -248085477,Aidan Roach,AUS,male,1990-09-07,1.87,88,aquatics,0,0,0, -743883365,Aika Hakoyama,JPN,female,1991-07-27,1.76,62,aquatics,0,0,1, -110469224,Aikaterini Nikolaidou,GRE,female,1992-10-22,1.8,70,rowing,0,0,0, -823094336,Aikaterini-Maria Kontochristopoulou,GRE,female,1997-06-10,1.68,58,fencing,0,0,0, -574808106,Aiko Hayashi,JPN,female,1993-11-17,1.66,56,aquatics,0,0,1, -676958658,Aiko Sugihara,JPN,female,1999-09-19,1.46,35,gymnastics,0,0,0, -420613340,Aileen Reid,IRL,female,1982-06-15,1.69,53,triathlon,0,0,0, -172676108,Ailen Valente,ARG,female,1996-03-26,1.67,58,gymnastics,0,0,0, -971329341,Ailly Luciano,NED,female,1991-03-25,1.71,69,handball,0,0,0, -356290857,Ailun Guo,CHN,male,1993-11-14,1.92,85,basketball,0,0,0, -273034565,Aimee Fisher,NZL,female,1995-01-24,1.83,99,canoe,0,0,0, -266091485,Aimee Willmott,GBR,female,1993-02-26,1.71,66,aquatics,0,0,0, -912490592,Aina Cid I Centelles,ESP,female,1994-09-01,1.7,60,rowing,0,0,0, -674464910,Ainhoa Hernandez,ESP,female,1994-04-27,1.8,88,handball,0,0,0, -14183642,Ainhoa Murua,ESP,female,1978-07-18,1.6,48,triathlon,0,0,0, -871394696,Ainur Yesbergenova,KAZ,female,1998-02-11,1.64,49,taekwondo,0,0,0, -635098552,Airi Hatakeyama,JPN,female,1994-08-16,1.71,46,gymnastics,0,0,0, -965051843,Airine Palsyte,LTU,female,1992-07-13,1.87,63,athletics,0,0,0, -840071617,Aisen Chen,CHN,male,1995-10-22,1.68,60,aquatics,2,0,0, -704825548,Aisha Praught,JAM,female,1989-12-14,1.62,50,athletics,0,0,0, -704391947,Aislin Jones,AUS,female,2000-02-08,1.57,51,shooting,0,0,0, -273177958,Aisuluu Tynybekova,KGZ,female,1993-05-04,1.7,58,wrestling,0,0,0, -191963338,Aitor Martinez Rodriguez,ESP,male,1993-08-22,1.83,78,aquatics,0,0,0, -678408880,Aivi Luik,AUS,female,1985-03-18,1.63,58,football,0,0,0, -234338084,Ajee Wilson,USA,female,1994-05-08,1.73,61,athletics,0,0,0, -374861025,Ajla del Ponte,SUI,female,1996-07-15,1.68,56,athletics,0,0,0, -504635619,Ajna Kesely,HUN,female,2001-09-10,1.65,54,aquatics,0,0,0, -680600926,Akalani Baravilala,USA,female,1991-07-12,1.68,74,rugby sevens,0,0,0, -213555250,Akane Kuroki,JPN,female,1978-08-13,1.65,50,equestrian,0,0,0, -58865414,Akane Shibata,JPN,female,1988-04-30,1.53,50,hockey,0,0,0, -677730191,Akane Yamaguchi,JPN,female,1997-06-06,1.56,55,badminton,0,0,0, -265984930,Akani Simbine,RSA,male,1993-09-21,1.76,74,athletics,0,0,0, -285797294,Akashdeep Singh,IND,male,1994-12-02,1.78,70,hockey,0,0,0, -769580282,Akeem Haynes,CAN,male,1992-03-11,1.68,71,athletics,0,0,1, -194243947,Akela Jones,BAR,female,1995-04-22,1.86,77,athletics,0,0,0, -58705332,Aki Mitsuhashi,JPN,female,1989-09-12,1.66,59,hockey,0,0,0, -921789441,Aki Yazawa,JPN,female,1991-11-05,1.56,50,canoe,0,0,0, -327133724,Akihiko Nakamura,JPN,male,1990-10-23,1.8,73,athletics,0,0,0, -346354435,Akiko Sato,JPN,female,1984-02-09,1.62,58,shooting,0,0,0, -850163240,Akira Ioane,NZL,male,1995-06-16,1.94,113,rugby sevens,0,0,0, -816408353,Akira Yanase,JPN,male,1988-08-11,1.91,95,aquatics,0,0,0, -959689266,Akossiwa Claire Ayivon,TOG,female,1996-08-11,,,rowing,0,0,0, -152032519,Akua Obeng-Akrofi,GHA,female,1996-07-10,,,athletics,0,0,0, -593452734,Alaa Ali,IRQ,male,1996-06-03,1.78,68,football,0,0,0, -747058984,Alaaeldin Abouelkassem,EGY,male,1990-11-25,1.88,87,fencing,0,0,0, -249203070,Alade Aminu,NGR,male,1987-09-14,2.1,102,basketball,0,0,0, -158571661,Alain Sign,GBR,male,1986-02-03,1.81,84,sailing,0,0,0, -471888446,Alan Campbell,GBR,male,1983-05-09,1.91,96,rowing,0,0,0, -275659106,Alan Hatherly,RSA,male,1996-03-15,1.78,62,cycling,0,0,0, -488926827,Alan Sinclair,GBR,male,1985-10-16,1.92,96,rowing,0,0,0, -386179468,Alan Sothern,IRL,male,1987-07-28,1.78,76,hockey,0,0,0, -68100583,Alana Barber,NZL,female,1987-07-08,1.63,52,athletics,0,0,0, -662496867,Alana Boyd,AUS,female,1984-05-10,1.71,59,athletics,0,0,0, -812220330,Alanna Kennedy,AUS,female,1995-01-21,1.76,63,football,0,0,0, -923852920,Alastair Brogdon,GBR,male,1987-11-10,1.83,76,hockey,0,0,0, -533114803,Alba Torrens,ESP,female,1989-08-30,1.91,68,basketball,0,1,0, -551413911,Albachir Mouctar,NIG,male,1995-05-01,1.78,76,aquatics,0,0,0, -92096398,Albane Valenzuela,SUI,female,1997-12-17,1.74,58,golf,0,0,0, -930879907,Albert Espanol Lifante,ESP,male,1985-10-29,1.89,86,aquatics,0,0,0, -596935178,Albert Gaun,RUS,male,1992-06-21,1.85,80,taekwondo,0,0,0, -70764024,Albert Hermoso Farras,ESP,male,1978-08-28,1.68,65,equestrian,0,0,0, -172435291,Albert Kibichii Rop,BRN,male,1992-07-17,1.77,63,athletics,0,0,0, -389597142,Albert Puig Garrich,ESP,male,1994-04-01,1.84,78,aquatics,0,0,0, -184326688,Albert Ramon Ramirez,VEN,male,1992-05-07,1.82,,boxing,0,0,0, -100190722,Albert Ramos-Vinolas,ESP,male,1988-01-17,1.88,80,tennis,0,0,0, -366742302,Albert Saritov,ROU,male,1985-07-08,1.88,100,wrestling,0,0,1, -670559048,Albert Selimov,AZE,male,1986-04-05,1.71,,boxing,0,0,0, -124573287,Albert Subirats,VEN,male,1986-09-25,1.9,85,aquatics,0,0,0, -635016740,Alberth Bravo,VEN,male,1987-08-29,1.99,88,athletics,0,0,0, -502881474,Alberth Elis,HON,male,1996-02-12,1.84,77,football,0,0,0, -583503806,Albertina Cruz Kassoma,ANG,female,1996-06-12,1.92,105,handball,0,0,0, -804217525,Alberto Alvarez,MEX,male,1991-03-08,1.91,78,athletics,0,0,0, -331799449,Alberto Ezequiel Melian,ARG,male,1990-01-02,1.7,,boxing,0,0,0, -532248667,Alberto Fernandez,ESP,male,1983-06-16,1.8,115,shooting,0,0,0, -566773050,Alberto Ignacio Palmetta,ARG,male,1990-04-05,1.75,,boxing,0,0,0, -220269839,Alberto Munarriz Egana,ESP,male,1994-05-19,1.98,105,aquatics,0,0,0, -861268031,Alberto Ricchetti,ITA,male,1985-05-26,1.86,88,canoe,0,0,0, -663206046,Albin Lagergren,SWE,male,1992-09-11,1.86,94,handball,0,0,0, -966601149,Albina Shakirova,RUS,female,1987-03-30,1.65,50,shooting,0,0,0, -74286490,Aldemir da Silva Junior,BRA,male,1992-06-08,1.93,80,athletics,0,0,0, -46123715,Aldo Montano,ITA,male,1978-11-18,1.84,82,fencing,0,0,0, -343089125,Alec Potts,AUS,male,1996-02-09,1.85,77,archery,0,0,1, -210525666,Aleixo-Platini Menga,GER,male,1987-09-29,1.82,82,athletics,0,0,0, -969294495,Alejandra Betancur,COL,female,1987-06-13,1.6,82,rugby sevens,0,0,0, -388913856,Alejandra Garza Garza,MEX,female,1991-08-01,1.65,75,weightlifting,0,0,0, -883610308,Alejandra Jhonay Benitez Romero,VEN,female,1980-07-07,1.69,62,fencing,0,0,0, -694204413,Alejandra Llaneza,MEX,female,1988-05-31,1.58,48,golf,0,0,0, -400375379,Alejandra Orozco,MEX,female,1997-04-19,1.57,56,aquatics,0,0,0, -151538357,Alejandra Ortega,MEX,female,1994-07-08,1.65,57,athletics,0,0,0, -281414786,Alejandra Quereda,ESP,female,1992-07-24,1.75,54,gymnastics,0,1,0, -471263119,Alejandra Teran,MEX,female,1991-01-20,1.76,73,fencing,0,0,0, -929131268,Alejandra Valencia,MEX,female,1994-10-17,1.75,74,archery,0,0,0, -419155357,Alejandra Zavala Vazquez,MEX,female,1984-06-16,1.65,85,shooting,0,0,0, -440339638,Alejandro Enrique Valdes Tobier,CUB,male,1988-11-18,1.65,65,wrestling,0,0,0, -691394107,Alejandro Foglia Costa,URU,male,1984-01-30,1.9,96,sailing,0,0,0, -813391088,Alejandro Valverde Belmonte,ESP,male,1980-04-25,1.77,63,cycling,0,0,0, -288835407,Aleksandar Aleksandrov,AZE,male,1990-04-09,1.89,93,rowing,0,0,0, -299839075,Aleksandar IVOVIC,MNE,male,1986-02-24,1.97,107,aquatics,0,0,0, -371740701,Aleksandar Karakasevic,SRB,male,1975-12-09,1.78,85,table tennis,0,0,0, -150583899,Aleksandar Kukolj,SRB,male,1991-09-09,1.94,94,judo,0,0,0, -156829148,Aleksandar Nikolov,BUL,male,1992-06-18,1.85,75,aquatics,0,0,0, -39610779,Aleksandar RADOVIC,MNE,male,1987-02-24,1.91,98,aquatics,0,0,0, -150706476,Aleksandr Krasnykh,RUS,male,1995-06-19,1.88,80,aquatics,0,0,0, -461398245,Aleksandr Lipatov,RUS,male,1981-06-10,1.84,77,canoe,0,0,0, -825626228,Aleksandr Markov,RUS,male,1985-05-26,1.79,70,equestrian,0,0,0, -26501082,Aleksandr Popkov,RUS,male,1994-12-27,1.85,80,aquatics,0,0,0, -442737224,Aleksandr Sadovnikov,RUS,male,1996-09-21,1.93,85,aquatics,0,0,0, -928101165,Aleksandra Cotti,ITA,female,1988-12-13,1.67,65,aquatics,0,1,0, -15347644,Aleksandra Crvendakic,SRB,female,1996-03-17,1.87,76,basketball,0,0,1, -398269007,Aleksandra Jarmolinska,POL,female,1990-09-06,1.6,67,shooting,0,0,0, -344407164,Aleksandra Krunic,SRB,female,1993-03-15,1.63,55,tennis,0,0,0, -598990857,Aleksandra Patskevich,RUS,female,1988-11-04,1.69,49,aquatics,1,0,0, -832551080,Aleksandra Romanova,KAZ,female,1990-12-26,1.68,58,athletics,0,0,0, -778823226,Aleksandra Socha,POL,female,1982-03-30,1.74,66,fencing,0,0,0, -146965989,Aleksandra Urbanczyk,POL,female,1987-11-13,1.72,64,aquatics,0,0,0, -265023366,Aleksandrs Samoilovs,LAT,male,1985-04-06,1.96,98,volleyball,0,0,0, -282139882,Aleksei Brianskii,RUS,male,1997-09-14,1.92,82,aquatics,0,0,0, -646633611,Aleksei Kurbatov,RUS,male,1994-05-09,,,cycling,0,0,0, -200955001,Aleksejs Rumjancevs,LAT,male,1986-02-13,1.85,90,canoe,0,0,0, -285964258,Aleksejs Saramotins,LAT,male,1982-04-08,1.85,75,cycling,0,0,0, -169040459,Aleksey Mochalov,UZB,male,1990-02-13,1.86,90,canoe,0,0,0, -191984367,Aleksi Ojala,FIN,male,1992-12-09,1.8,62,athletics,0,0,0, -462274321,Alemu Bekele,BRN,male,1990-03-23,1.62,59,athletics,0,0,0, -571628094,Alen Zasieiev,UKR,male,1988-10-10,1.85,125,wrestling,0,0,0, -871020123,Alena Abramchuk,BLR,female,1988-02-14,1.82,95,athletics,0,0,0, -603507285,Alena Amialiusik,BLR,female,1989-02-06,1.69,52,cycling,0,0,0, -390806588,Alena Furman,BLR,female,1991-05-08,1.79,65,rowing,0,0,0, -84230211,Alena Sharp,CAN,female,1981-03-07,1.68,69,golf,0,0,0, -30712954,Alena Sobaleva,BLR,female,1993-05-11,1.78,87,athletics,0,0,0, -906750380,Alesha Widdall,USA,female,1990-01-03,1.73,65,hockey,0,0,0, -779596907,Alessandra Aguilar,ESP,female,1978-07-01,1.65,50,athletics,0,0,0, -236415837,Alessandra Patelli,ITA,female,1991-11-17,1.8,70,rowing,0,0,0, -820764186,Alessandra Perilli,SMR,female,1988-04-01,1.69,73,shooting,0,0,0, -630246233,Alessandro De Marchi,ITA,male,1986-05-19,1.81,66,cycling,0,0,0, -24174970,Alessandro Fabian,ITA,male,1988-01-07,1.86,77,triathlon,0,0,0, -213338722,Alessandro Nora,ITA,male,1987-05-24,1.91,85,aquatics,0,0,1, -346410285,Alessandro Velotto,ITA,male,1995-02-12,1.86,85,aquatics,0,0,1, -5076328,Alessia Gennari,ITA,female,1991-11-03,1.84,68,volleyball,0,0,0, -559742871,Alessia Maurelli,ITA,female,1996-08-22,1.68,48,gymnastics,0,0,0, -488353513,Alessia Orro,ITA,female,1998-07-18,1.8,74,volleyball,0,0,0, -767623428,Alessia Polieri,ITA,female,1994-10-21,1.63,55,aquatics,0,0,0, -389711690,Alessia Trost,ITA,female,1993-03-08,1.88,70,athletics,0,0,0, -636505415,Aletta Jorritsma,NED,female,1989-05-17,1.86,76,rowing,0,0,0, -746309995,Alev Kelter,USA,female,1991-03-21,1.68,74,rugby sevens,0,0,0, -178787882,Alex Abrines,ESP,male,1993-08-01,1.98,93,basketball,0,0,1, -527236860,Alex Amankwah,GHA,male,1992-03-02,,,athletics,0,0,0, -24122998,Alex Beddoes,COK,male,1995-07-09,1.81,74,athletics,0,0,0, -334218519,Alex Bowen,USA,male,1993-09-04,1.96,102,aquatics,0,0,0, -962040149,Alex Casasayas,ESP,male,1988-02-17,1.83,78,hockey,0,0,0, -794799982,Alex Cejka,GER,male,1970-12-02,1.68,65,golf,0,0,0, -566695148,Alex Garcia,BRA,male,1980-03-04,1.92,102,basketball,0,0,0, -204746498,Alex Garcia Mendoza,CUB,male,1993-06-02,1.86,110,judo,0,0,0, -544745828,Alex Gregory,GBR,male,1984-03-11,1.98,97,rowing,1,0,0, -851889356,Alex Hua Tian,CHN,male,1989-10-25,1.9,70,equestrian,0,0,0, -212901658,Alex Kennedy,NZL,male,1992-10-13,1.96,96,rowing,0,0,0, -967635529,Alex Maloney,NZL,female,1992-03-19,1.58,56,sailing,0,1,0, -723568012,Alex Morgan,USA,female,1989-07-02,1.7,59,football,0,0,0, -531765497,Alex Obert,USA,male,1991-12-18,1.96,105,aquatics,0,0,0, -557501936,Alex Ranghieri,ITA,male,1987-06-18,2,94,volleyball,0,0,0, -240862321,Alex Roelse,USA,male,1995-01-10,2.04,115,aquatics,0,0,0, -107240268,Alex Rose,SAM,male,1991-11-17,,,athletics,0,0,0, -58596600,Alex Sobers,BAR,male,1998-11-13,1.88,66,aquatics,0,0,0, -703205900,Alex William Pombo Silva,BRA,male,1988-07-21,1.74,73,judo,0,0,0, -636907352,Alex Wright,IRL,male,1990-12-19,1.75,62,athletics,0,0,0, -893073673,Alex di Giorgio,ITA,male,1990-07-28,1.85,75,aquatics,0,0,0, -644656107,Alexa Moreno,MEX,female,1994-08-08,1.47,45,gymnastics,0,0,0, -898510239,Alexander Belonogoff,AUS,male,1990-04-17,1.87,90,rowing,0,1,0, -583622968,Alexander Brouwer,NED,male,1989-11-03,1.98,90,volleyball,0,0,1, -771200886,Alexander Bryukhankov,RUS,male,1987-04-12,1.84,79,triathlon,0,0,0, -525300567,Alexander Bury,BLR,male,1987-09-14,1.84,94,tennis,0,0,0, -750329482,Alexander Choupenitch,CZE,male,1994-05-02,1.96,89,fencing,0,0,0, -737791847,Alexander Edmondson,AUS,male,1993-12-22,1.84,76,cycling,0,1,0, -3104691,Alexander Fransson,SWE,male,1994-04-02,1.8,75,football,0,0,0, -100528515,Alexander Gehbauer,AUT,male,1990-04-24,1.85,70,cycling,0,0,0, -515896035,Alexander Hartmann,AUS,male,1993-03-07,1.98,91,athletics,0,0,0, -986385043,Alexander Hendrickx,BEL,male,1993-08-06,1.85,82,hockey,0,0,0, -711926626,Alexander Hill,AUS,male,1993-03-11,1.93,91,rowing,0,1,0, -45190859,Alexander Horst,AUT,male,1982-12-20,1.86,88,volleyball,0,0,0, -724710281,Alexander Huber,AUT,male,1985-07-25,1.79,64,volleyball,0,0,0, -604407494,Alexander John,GER,male,1986-05-03,1.85,84,athletics,0,0,0, -300967214,Alexander Karwoski,USA,male,1990-09-16,1.94,90,rowing,0,0,0, -41863727,Alexander Kosenkow,GER,male,1977-03-14,1.78,74,athletics,0,0,0, -5256036,Alexander Leksell,SWE,male,1997-02-14,1.76,78,football,0,0,0, -37893138,Alexander Lerionka Sampao,KEN,male,1996-12-31,,67,athletics,0,0,0, -911821683,Alexander Lesun,RUS,male,1988-07-01,1.85,74,modern pentathlon,1,0,0, -703140166,Alexander Lloyd,AUS,male,1990-12-17,1.89,89,rowing,0,0,0, -994257957,Alexander Massialas,USA,male,1994-04-20,1.88,81,fencing,0,1,1, -517168133,Alexander Milosevic,SWE,male,1992-01-30,1.92,77,football,0,0,0, -589365060,Alexander Molerio Quintana,CUB,male,1991-09-19,1.69,75,shooting,0,0,0, -536913332,Alexander Naddour,USA,male,1991-03-04,1.71,70,gymnastics,0,0,1, -110525640,Alexander Peya,AUT,male,1980-06-27,1.82,80,tennis,0,0,0, -658069337,Alexander Russo,BRA,male,1994-07-26,1.73,61,athletics,0,0,0, -648973939,Alexander Schmirl,AUT,male,1989-09-19,1.76,95,shooting,0,0,0, -961318209,Alexander Shatilov,ISR,male,1987-03-22,1.83,77,gymnastics,0,0,0, -909129710,Alexander Shibaev,RUS,male,1990-09-09,1.92,80,table tennis,0,0,0, -452039868,Alexander Sigurbjornsson,ESP,male,1988-12-13,1.8,80,rowing,0,0,0, -484197906,Alexander Sukhorukov,RUS,male,1988-02-22,1.96,93,aquatics,0,0,0, -120799596,Alexander Volkov,RUS,male,1985-02-14,2.1,90,volleyball,0,0,0, -745034260,Alexandr Spac,MDA,male,1989-11-21,1.64,77,weightlifting,0,0,0, -188141447,Alexandr Yemelyanov,KAZ,male,1984-01-01,1.84,97,canoe,0,0,0, -928138606,Alexandr Zaichikov,KAZ,male,1992-08-17,1.8,105,weightlifting,0,0,1, -878621949,Alexandra Burghardt,GER,female,1994-04-28,1.81,70,athletics,0,0,0, -566681185,Alexandra Danson,GBR,female,1985-05-21,1.67,56,hockey,1,0,0, -612116227,Alexandra Hagan,AUS,female,1991-03-21,1.82,75,rowing,0,0,0, -383231190,Alexandra Keresztesi,ARG,female,1983-04-26,1.83,72,canoe,0,0,0, -191014767,Alexandra Lacrabere,FRA,female,1987-04-27,1.77,73,handball,0,1,0, -486083635,Alexandra Longova,SVK,female,1994-02-07,1.73,51,archery,0,0,0, -30769207,Alexandra Martinez,BRA,female,1981-09-16,1.77,68,handball,0,0,0, -921114489,Alexandra Mirca,MDA,female,1993-10-11,1.68,70,archery,0,0,0, -338753895,Alexandra Nemich,KAZ,female,1995-01-03,1.68,46,aquatics,0,0,0, -599952871,Alexandra Oquendo,PUR,female,1984-02-03,1.89,75,volleyball,0,0,0, -125810149,Alexandra Popp,GER,female,1991-04-06,1.74,65,football,1,0,0, -891965491,Alexandra Privalova,BLR,female,1987-10-29,1.78,66,table tennis,0,0,0, -71010173,Alexandra Raisman,USA,female,1994-05-25,1.58,52,gymnastics,1,2,0, -256577556,Alexandra Razarenova,RUS,female,1990-07-17,1.68,56,triathlon,0,0,0, -692519892,Alexandra Tavernier,FRA,female,1993-12-13,1.7,82,athletics,0,0,0, -443690040,Alexandra Touretski,SUI,female,1994-09-20,1.7,58,aquatics,0,0,0, -475551107,Alexandra Wenk,GER,female,1995-02-07,1.8,63,aquatics,0,0,0, -872947130,Alexandra Wester,GER,female,1994-03-21,1.8,64,athletics,0,0,0, -753747706,Alexandre Ayache,FRA,male,1982-09-20,1.8,80,equestrian,0,0,0, -356907302,Alexandre Bouzaid,SEN,male,1981-06-29,1.68,75,fencing,0,0,0, -538814395,Alexandre Camarasa,FRA,male,1987-06-10,1.93,100,aquatics,0,0,0, -333303277,Alexandre Camargo,BRA,male,1999-04-25,1.77,75,fencing,0,0,0, -718560734,Alexandre Haldemann,SUI,male,1995-03-08,1.86,81,aquatics,0,0,0, -203028845,Alexandre Iddir,FRA,male,1991-02-21,1.84,90,judo,0,0,0, -391830541,Alexandre de Paeuw,BEL,male,1988-10-07,1.78,75,hockey,0,0,0, -350839117,Alexandres Gounas,GRE,male,1989-10-03,1.79,73,aquatics,0,0,0, -72024697,Alexandrina Cabral,ESP,female,1986-05-05,1.75,62,handball,0,0,0, -17092453,Alexandro Pozzer,BRA,male,1988-12-21,1.92,107,handball,0,0,0, -809372786,Alexandros Papamichail,GRE,male,1988-09-18,1.78,63,athletics,0,0,0, -992947913,Alexei Klimov,RUS,male,1975-08-27,1.82,88,shooting,0,0,0, -621322055,Alexei Sancov,MDA,male,1999-10-15,1.88,85,aquatics,0,0,0, -434694198,Alexej Prochorow,GER,male,1990-03-30,1.91,138,weightlifting,0,0,0, -271488726,Alexey Alipov,RUS,male,1975-08-07,1.74,80,shooting,0,0,0, -251192385,Alexey Cheremisinov,RUS,male,1985-07-09,1.83,75,fencing,1,0,0, -318060996,Alexey Denisenko,RUS,male,1993-08-30,1.85,68,taekwondo,0,1,0, -221070420,Alexey Dergunov,KAZ,male,1984-09-16,1.87,95,canoe,0,0,0, -333787984,Alexey Verbov,RUS,male,1982-01-31,1.83,79,volleyball,0,0,0, -527521403,Alexey Yakimenko,RUS,male,1983-10-31,1.84,80,fencing,0,0,0, -448880966,Alexi Pappas,GRE,female,1990-03-28,,,athletics,0,0,0, -524151751,Alexis Gonzalez,ARG,male,1981-07-21,1.84,85,volleyball,0,0,0, -491625914,Alexis Raynaud,FRA,male,1994-08-19,1.72,78,shooting,0,0,1, -166278707,Alexis Santos,POR,male,1992-03-23,1.85,74,aquatics,0,0,0, -697622072,Alexis Soto,ARG,male,1993-10-20,1.64,66,football,0,0,0, -194257222,Alexis Vuillermoz,FRA,male,1988-06-01,1.73,60,cycling,0,0,0, -860974311,Alexus Laird,SEY,female,1993-03-11,1.72,61,aquatics,0,0,0, -108252301,Alfonso Antonio Leyva Yepez,MEX,male,1993-01-06,1.81,85,wrestling,0,0,0, -231869553,Alfonso Benavides Lopez de Ayala,ESP,male,1991-03-09,1.82,86,canoe,0,0,0, -475919800,Alfred Kipketer,KEN,male,1996-12-28,1.67,60,athletics,0,0,0, -450635887,Alfredo Campo,ECU,male,1993-03-02,1.92,90,cycling,0,0,0, -736830151,Alfredo Talavera,MEX,male,1982-09-18,1.88,84,football,0,0,0, -233231940,Alhussein Gambour,LBA,male,1989-08-21,1.75,68,rowing,0,0,0, -604740736,Ali Adnan,IRQ,male,1993-12-19,1.8,76,football,0,0,0, -461686848,Ali Elghrari,LBA,male,1997-01-31,,,archery,0,0,0, -668278260,Ali Eren Demirezen,TUR,male,1990-04-02,1.89,,boxing,0,0,0, -737778764,Ali Faez,IRQ,male,1994-09-09,1.84,75,football,0,0,0, -800154411,Ali Hashemi,IRI,male,1991-11-01,1.78,93,weightlifting,0,0,0, -931441337,Ali Hisny,IRQ,male,1994-05-23,1.77,70,football,0,0,0, -670890480,Ali Kaya,TUR,male,1994-04-20,1.75,54,athletics,0,0,0, -732766543,Ali Khalafalla,EGY,male,1996-05-13,1.82,78,aquatics,0,0,0, -702507964,Ali Khamis Khamis,BRN,male,1995-06-30,1.82,70,athletics,0,0,0, -969053827,Ali Krieger,USA,female,1984-07-28,1.68,63,football,0,0,0, -716391442,Ali Messaoudi,ALG,male,1995-10-13,1.78,63,athletics,0,0,0, -768503351,Ali Nouisri,TUN,male,1994-01-20,1.84,75,cycling,0,0,0, -853472045,Ali Pakdaman,IRI,male,1990-08-23,1.93,94,fencing,0,0,0, -89809268,Ali Riley,NZL,female,1987-10-30,1.63,57,football,0,0,0, -472145214,Ali Suljic,SWE,male,1997-09-18,1.89,80,football,0,0,0, -429169523,Ali Yousef Al Rumaihi,QAT,male,1981-08-26,1.77,86,equestrian,0,0,0, -220820586,Ali Zein Mohamed,EGY,male,1990-12-14,1.9,83,handball,0,0,0, -76451177,Alia Atkinson,JAM,female,1988-12-11,1.73,71,aquatics,0,0,0, -432850961,Alia Saeed Mohammed,UAE,female,1993-11-13,1.58,54,athletics,0,0,0, -502227727,Aliaksandr Bersanau,BLR,male,1992-09-01,1.76,94,weightlifting,0,0,0, -23998076,Aliaksandr Buikevich,BLR,male,1984-11-19,1.91,80,fencing,0,0,0, -564017885,Aliaksandr Liakhovich,BLR,male,1989-07-04,1.72,65,athletics,0,0,0, -68967384,Aliaksandra Herasimenia,BLR,female,1985-12-31,1.74,58,aquatics,0,0,1, -775336377,Aliaksandra Tarasava,BLR,female,1988-06-23,1.7,64,basketball,0,0,0, -185532375,Aliaksei Mzhachyk,BLR,male,1996-06-30,1.9,136,weightlifting,0,0,0, -481292461,Alican Kaynar,TUR,male,1988-10-30,1.91,98,sailing,0,0,0, -198660870,Alice Aprot Nawowuna,KEN,female,1994-01-02,1.52,54,athletics,0,0,0, -824189087,Alice Ingley,AUS,female,1993-01-13,1.72,80,archery,0,0,0, -200278263,Alice Mizzau,ITA,female,1993-03-18,1.8,65,aquatics,0,0,0, -273156241,Alice Naber-Lozeman,NED,female,1971-05-07,1.68,62,equestrian,0,0,0, -713167631,Alice Richardson,GBR,female,1987-05-14,1.72,69,rugby sevens,0,0,0, -965421454,Alice Schlesinger,GBR,female,1988-05-26,1.65,65,judo,0,0,0, -693106463,Alice Sinno,ITA,female,1992-09-08,1.75,69,sailing,0,0,0, -350838880,Alice Sotero,ITA,female,1991-05-28,1.66,53,modern pentathlon,0,0,0, -598475958,Alicia Blagg,GBR,female,1996-10-21,1.65,65,aquatics,0,0,0, -537043954,Alicia Brown,CAN,female,1990-01-21,1.65,57,athletics,0,0,0, -247476216,Alicia Cebrian Martinez de Lagos,ESP,female,1983-02-03,1.68,68,sailing,0,0,0, -556923374,Alicia Coutts,AUS,female,1987-09-14,1.76,69,aquatics,0,0,0, -906544891,Alicia Magaz,ESP,female,1994-05-24,1.61,60,hockey,0,0,0, -404345231,Alicia Quirk,AUS,female,1992-03-28,1.73,64,rugby sevens,1,0,0, -284199636,Alicja Tchorz,POL,female,1992-08-13,1.76,68,aquatics,0,0,0, -297498164,Alin Alexuc Ciurariu,ROU,male,1990-02-03,1.91,105,wrestling,0,0,0, -667093236,Alin Coste,ROU,male,1992-02-17,2.01,95,aquatics,0,0,0, -991471809,Alin George Moldoveanu,ROU,male,1983-05-03,1.73,73,shooting,0,0,0, -146849551,Alina Armas,NAM,female,1983-12-10,1.66,53,athletics,0,0,0, -9436047,Alina Fodorova,UKR,female,1989-07-31,1.75,65,athletics,0,0,0, -452472549,Alina Komashchuk,UKR,female,1993-04-24,1.69,75,fencing,0,1,0, -26321098,Alina Logvynenko,UKR,female,1990-07-18,1.8,67,athletics,0,0,0, -564738938,Alina Rotaru,ROU,female,1993-06-05,1.75,57,athletics,0,0,0, -130594149,Alina Stadnik Makhynia,UKR,female,1991-01-03,1.65,69,wrestling,0,0,0, -137031539,Alina Talay,BLR,female,1989-05-14,1.64,57,athletics,0,0,0, -315643745,Aline,BRA,female,1989-04-15,1.62,60,football,0,0,0, -902987523,Aline Focken,GER,female,1991-05-10,1.77,73,wrestling,0,0,0, -215286232,Aline da Silva Ferreira,BRA,female,1986-10-18,1.78,80,wrestling,0,0,0, -833092832,Aliona Dubitskaya,BLR,female,1990-01-25,1.8,76,athletics,0,0,0, -790705612,Alireza Khojasteh,IRI,male,1997-03-28,1.82,66,judo,0,0,0, -891915962,Alireza Mohammad Karimimachiani,IRI,male,1994-03-21,1.75,86,wrestling,0,0,0, -473463517,Alisa Kano,USA,female,1994-11-07,1.63,47,gymnastics,0,0,0, -572752822,Alisa Kiriliuk,RUS,female,1990-07-09,1.65,57,sailing,0,0,0, -269057885,Alise Post,USA,female,1991-01-17,1.58,56,cycling,0,1,0, -893065758,Alisha Glass,USA,female,1988-04-05,1.84,72,volleyball,0,0,1, -409870387,Alison Cerutti,BRA,male,1985-12-07,2.03,102,volleyball,1,0,0, -376187965,Alison Young,GBR,female,1987-05-29,1.82,70,sailing,0,0,0, -164566610,Alistair Bond,NZL,male,1989-08-16,1.86,71,rowing,0,0,0, -198533399,Alistair Brownlee,GBR,male,1988-04-23,1.84,70,triathlon,1,0,0,"The current Olympic and European champion, Great Britain’s Alistair Brownlee also won two world championships, in 2009 and 2011. Introduced to the sport by his uncle Simon, at London 2012 he made the podium alongside his brother Jonathan, who took bronze." -901422043,Aliya Mustafina,RUS,female,1994-09-30,1.61,48,gymnastics,1,1,1, -340019479,Aliyah Abrams,GUY,female,1997-04-03,1.63,53,athletics,0,0,0, -248018989,Alize Cornet,FRA,female,1990-01-22,1.73,63,tennis,0,0,0, -777919762,Alla Cherkasova,UKR,female,1989-05-05,1.65,75,wrestling,0,0,0, -848336898,Alla Shishkina,RUS,female,1989-08-02,1.7,56,aquatics,1,0,0, -511388917,Allan Banegas,HON,male,1993-10-04,1.8,76,football,0,0,0, -638093339,Allan Fa'alava'au,AUS,male,1993-11-15,1.7,87,rugby sevens,0,0,0, -146313505,Allan Gutierrez,HON,male,1993-08-12,1.78,79,aquatics,0,0,0, -32531728,Allan Julie,SEY,male,1977-03-23,1.81,91,sailing,0,0,0, -40527372,Allan Norregaard,DEN,male,1981-03-19,1.73,67,sailing,0,0,0, -846754382,Allan do carmo,BRA,male,1989-08-03,1.74,73,aquatics,0,0,0, -165223366,Allans Vargas,HON,male,1993-09-25,1.84,69,football,0,0,0, -823501763,Allar Raja,EST,male,1983-06-22,1.9,95,rowing,0,0,1, -531225990,Allie Long,USA,female,1987-08-13,1.72,59,football,0,0,0, -373002185,Allison Beveridge,CAN,female,1993-06-01,1.69,62,cycling,0,0,1, -606328661,Allison M. Brock,USA,female,1979-12-07,1.68,58,equestrian,0,0,1, -68050568,Allison Pineau,FRA,female,1989-05-02,1.81,66,handball,0,1,0, -944908522,Allison Schmitt,USA,female,1990-06-07,1.86,74,aquatics,1,1,0, -881130710,Allistar Clarke,SKN,male,1990-10-03,1.87,71,athletics,0,0,0, -686662012,Allysha Chapman,CAN,female,1989-01-25,1.6,58,football,0,0,1, -629649792,Allyson Felix,USA,female,1985-11-18,1.68,56,athletics,2,1,0,"A holder of nine world titles, sprinter Allyson Felix has won four golds and two silvers from the last three Olympic Games, since Athens 2004. At London 2012, she took gold in the 200m and 4x100m and 4x400m relays." -742474119,Allyson Ponson,ARU,female,1995-12-04,1.65,60,aquatics,0,0,0, -830602816,Almat Kebispayev,KAZ,male,1987-12-12,1.66,59,wrestling,0,0,0, -9410967,Almaz Ayana,ETH,female,1991-11-21,1.66,47,athletics,1,0,1, -949130459,Almir Velagic,GER,male,1981-08-22,1.83,149,weightlifting,0,0,0, -712627786,Almuth Schult,GER,female,1991-02-09,1.8,71,football,1,0,0, -300655502,Alona Koshevatskiy,ISR,female,1997-10-08,1.7,53,gymnastics,0,0,0, -673430,Alona Ribakova,LAT,female,1991-02-07,1.76,63,aquatics,0,0,0, -506696121,Alonso Edward,PAN,male,1989-12-08,1.81,76,athletics,0,0,0, -396920712,Alonso Valdez Prado,PER,male,1978-01-23,1.7,68,equestrian,0,0,0, -791528062,Alonzo Russell,BAH,male,1992-02-08,,,athletics,0,0,1, -860469603,Alphas Leken Kishoyian,KEN,male,1994-01-01,1.67,59,athletics,0,0,0, -601227072,Alphonce Felix Simbu,TAN,male,1992-02-14,,55,athletics,0,0,0, -46528538,Altobeli da Silva,BRA,male,1990-12-03,1.81,60,athletics,0,0,0, -344062200,Alvaro Doda de Miranda,BRA,male,1973-02-05,1.86,86,equestrian,0,0,0, -940428888,Alvaro Iglesias,ESP,male,1993-03-01,1.78,79,hockey,0,0,0, -407705493,Alvaro Martin,ESP,male,1994-06-18,1.79,63,athletics,0,0,0, -349070925,Alvaro de Arriba,ESP,male,1994-06-02,1.77,69,athletics,0,0,0, -198544112,Alvin Singh,FIJ,male,1988-06-09,1.85,88,football,0,0,0, -350021262,Alyce Burnett,AUS,female,1992-08-11,1.82,71,canoe,0,0,0, -362885756,Alyn Camara,GER,male,1989-03-31,1.96,84,athletics,0,0,0, -317210453,Alysbeth Felix,PUR,female,1993-03-07,1.71,59,athletics,0,0,0, -746918674,Alysha Newman,CAN,female,1994-06-29,1.72,67,athletics,0,0,0, -299325832,Alyson Dixon,GBR,female,1978-09-24,1.55,43,athletics,0,0,0, -192794585,Alyssa Bull,AUS,female,1995-12-01,1.73,65,canoe,0,0,0, -479973349,Alyssa Conley,RSA,female,1991-04-27,1.76,63,athletics,0,0,0, -61804195,Alyssa Manley,USA,female,1994-05-27,1.58,53,hockey,0,0,0, -360098950,Alyssa Naeher,USA,female,1988-04-20,1.75,61,football,0,0,0, -431586792,Alyxandria Treasure,CAN,female,1992-05-15,1.55,68,athletics,0,0,0, -461802696,Alzbeta Dufkova,CZE,female,1990-04-19,1.72,65,aquatics,0,0,0, -401938001,Amadou Camara,GUI,male,1994-09-10,1.63,69,aquatics,0,0,0, -312519582,Amadou Ndiaye,SEN,male,1992-12-06,1.8,80,athletics,0,0,0, -974097069,Amaia Erbina,ESP,female,1997-03-13,1.71,68,rugby sevens,0,0,0, -595234401,Amaka Ogoegbunam,NGR,female,1990-03-03,1.64,61,athletics,0,0,0, -605176733,Amalie Dideriksen,DEN,female,1996-05-24,1.75,62,cycling,0,0,0, -398682051,Amalie Iuel,NOR,female,1994-04-17,,,athletics,0,0,0, -543039949,Amalie Thomsen,DEN,female,1994-09-12,1.66,60,canoe,0,0,0, -424274474,Amaliya Sharoyan,ARM,female,1988-06-19,1.7,56,athletics,0,0,0, -684370128,Aman Wote,ETH,male,1984-04-18,1.83,68,athletics,0,0,0, -991318461,Amanda Araujo,BRA,female,1990-02-23,1.62,54,rugby sevens,0,0,0, -574915810,Amanda Carr,THA,female,1990-06-24,1.65,60,cycling,0,0,0, -461754486,Amanda Dlamini,RSA,female,1988-07-22,1.64,61,football,0,0,0, -960382539,Amanda Elmore,USA,female,1991-03-13,1.81,79,rowing,1,0,0, -403367229,Amanda Ilestedt,SWE,female,1993-01-17,1.78,65,football,0,0,0, -557518345,Amanda Kurtovic,NOR,female,1991-07-25,1.75,,handball,0,0,1, -343711251,Amanda Ng,SIN,female,1994-05-03,1.7,68,sailing,0,0,0, -936271742,Amanda Oliveira,BRA,female,1987-01-06,1.69,58,aquatics,0,0,0, -839220577,Amanda Polk,USA,female,1986-08-02,1.81,83,rowing,1,0,0, -362158810,Amanda Simeao,BRA,female,1994-06-02,1.66,62,fencing,0,0,0, -340529563,Amanda Spratt,AUS,female,1987-09-17,1.61,55,cycling,0,0,0, -118871166,Amanda Weir,USA,female,1986-03-11,1.88,77,aquatics,0,1,0, -537662343,Amandine Henry,FRA,female,1989-09-28,1.71,64,football,0,0,0, -17350450,Amandine Leynaud,FRA,female,1986-05-02,1.78,64,handball,0,1,0, -582601760,Amandine Lhote,FRA,female,1986-12-22,1.68,64,canoe,0,0,0, -994010453,Amanmurad Hommadov,TKM,male,1989-01-28,1.9,117,athletics,0,0,0, -40874614,Amanuel Mesel,ERI,male,1990-12-29,1.77,59,athletics,0,0,0, -555654573,Amar Music,CRO,male,1987-03-21,1.7,85,weightlifting,0,0,0, -347334644,Amarhajy Mahamedau,BLR,male,1990-04-12,1.84,88,wrestling,0,0,0, -156297478,Amas Daniel,NGR,male,1990-04-26,1.65,65,wrestling,0,0,0, -235304532,Amber Campbell,USA,female,1981-06-05,1.71,90,athletics,0,0,0, -518337993,Amber Hearn,NZL,female,1984-11-28,1.73,66,football,0,0,0, -843671557,Amber Hill,GBR,female,1997-08-21,1.58,52,shooting,0,0,0, -193520300,Ambroise Uwiragiye,RWA,male,1980-12-31,,,athletics,0,0,0, -458169585,Ameen Zakkar,QAT,male,1994-06-15,1.95,100,handball,0,0,0, -147471231,Ameer Webb,USA,male,1991-03-19,1.81,82,athletics,0,0,0, -39468987,Amel Bouderra,FRA,female,1989-03-26,1.63,,basketball,0,0,0, -140465357,Amel Majri,FRA,female,1993-01-25,1.64,54,football,0,0,0, -250216413,Amel Tuka,BIH,male,1991-01-09,1.87,77,athletics,0,0,0, -577293191,Amela Terzic,SRB,female,1993-01-02,1.69,54,athletics,0,0,0, -255630772,Amelia Belotti,ARG,female,1988-11-17,1.8,73,handball,0,0,0, -36505645,Amelia Cozad,USA,female,1991-05-06,1.61,51,aquatics,0,0,0, -656221142,Amelia Gibson,NZL,female,1991-07-05,1.72,71,hockey,0,0,0, -335567750,Amelia Rosa Fournel,ARG,female,1977-02-20,1.6,50,shooting,0,0,0, -310265171,Amelie Kretz,CAN,female,1993-05-19,1.68,53,triathlon,0,0,0, -68574249,Amer Hrustanovic,AUT,male,1988-06-11,1.8,91,wrestling,0,0,0, -17841864,Ami Kondo,JPN,female,1995-05-09,1.56,48,judo,0,0,1, -607523494,Amidou Mir,FRA,male,1995-01-01,1.73,78,cycling,0,0,0, -678578041,Amie Thompson,AUS,female,1996-01-31,1.67,58,aquatics,0,0,0, -811727068,Amina Bettiche,ALG,female,1987-12-14,1.65,55,athletics,0,0,0, -689435497,Amina Kajtaz,BIH,female,1996-12-31,1.73,62,aquatics,0,0,0, -409262616,Amina Rouba,ALG,female,1986-01-09,1.73,60,rowing,0,0,0, -895684177,Aminat Oluwafunmilayo Adeniyi,NGR,female,1993-04-21,1.65,58,wrestling,0,0,0, -509681869,Aminath Shajan,MDV,female,1993-10-29,,,aquatics,0,0,0, -378210672,Amine Bannour,TUN,male,1990-02-21,1.96,102,handball,0,0,0, -121680559,Amine Belferar,ALG,male,1991-02-16,1.75,65,athletics,0,0,0, -435929879,Amini Tuitavake Fonua,TGA,male,1989-12-14,1.86,80,aquatics,0,0,0, -389896499,Aminu Umar,NGR,male,1995-03-06,1.72,,football,0,0,1, -846949924,Amir Ghafour,IRI,male,1991-06-06,2.02,90,volleyball,0,0,0, -410626392,Amiran Papinashvili,GEO,male,1988-06-17,1.62,64,judo,0,0,0, -364715226,Amit Ivry,ISR,female,1989-09-02,1.7,65,aquatics,0,0,0, -529647636,Amjed Attwan,IRQ,male,1997-03-12,1.8,72,football,0,0,0, -945479307,Ammar Abdulhussein,IRQ,male,1993-02-13,1.8,76,football,0,0,0, -238039408,Ammara Pinto,MAW,female,1997-09-14,1.63,61,aquatics,0,0,0, -740490618,Amna Bakhit,SUD,female,1990-11-14,1.75,59,athletics,0,0,0, -657073926,Amnat Ruenroeng,THA,male,1979-12-18,1.64,,boxing,0,0,0, -761085260,Amor Ben Yahia,TUN,male,1985-07-01,1.76,63,athletics,0,0,0, -942970698,Amro Elgeziry,EGY,male,1986-11-29,1.85,75,modern pentathlon,0,0,0, -318291811,Amy Cragg,USA,female,1984-01-21,1.63,45,athletics,0,0,0, -872045656,Amy Cure,AUS,female,1992-12-31,1.72,63,cycling,0,0,0, -912480643,Amy Millar,CAN,female,1977-02-14,1.83,59,equestrian,0,0,0, -5024454,Amy Sene,SEN,female,1986-04-06,1.75,80,athletics,0,0,0, -460892006,Amy Tinkler,GBR,female,1999-10-27,1.52,47,gymnastics,0,0,1, -99920757,Amy Turner,AUS,female,1984-03-25,1.68,64,rugby sevens,1,0,0, -380050996,Amy Wilson Hardy,GBR,female,1991-09-13,1.67,69,rugby sevens,0,0,0, -491417402,An-Li Kachelhoffer,RSA,female,1987-08-16,1.6,50,cycling,0,0,0, -829962369,Ana Beatriz Bulcao,BRA,female,1993-12-04,1.67,58,fencing,0,0,0, -914515820,Ana Cabecinha,POR,female,1984-04-29,1.63,48,athletics,0,0,0, -714771450,Ana Claudia Silva,BRA,female,1988-11-06,1.58,56,athletics,0,0,0, -627491334,Ana Dabovic,SRB,female,1989-08-18,1.83,70,basketball,0,0,1, -697466343,Ana Derek,CRO,female,1998-09-04,1.64,58,gymnastics,0,0,0, -196047650,Ana Dulce Felix,POR,female,1982-10-23,1.66,53,athletics,0,0,0, -111502894,Ana Gallay,ARG,female,1986-01-16,1.73,66,volleyball,0,0,0, -209671126,Ana Iulia Dascal,ROU,female,2002-09-12,1.83,60,aquatics,0,0,0, -71309722,Ana Ivanovic,SRB,female,1987-11-06,1.77,63,tennis,0,0,0, -685105407,Ana Jose Tima,DOM,female,1989-10-10,1.68,56,athletics,0,0,0, -981171195,Ana Konjuh,CRO,female,1997-12-27,1.74,73,tennis,0,0,0, -575479562,Ana Luiza Barbachan,BRA,female,1989-08-15,1.71,68,sailing,0,0,0, -596603092,Ana Luiza Filiorianu,ROU,female,1999-07-10,1.64,42,gymnastics,0,0,0, -69147633,Ana Marcela Cunha,BRA,female,1992-03-23,1.65,66,aquatics,0,0,0, -865510243,Ana Maria Popescu,ROU,female,1984-11-26,1.75,64,fencing,1,0,0, -350672001,Ana Maria Rendon,COL,female,1986-03-10,1.6,63,archery,0,0,0, -453790004,Ana Paula Belo,BRA,female,1987-10-18,1.72,67,handball,0,0,0, -724211622,Ana Paula Vergutz,BRA,female,1989-04-20,1.76,71,canoe,0,0,0, -808863847,Ana Perez,ESP,female,1997-12-14,1.51,45,gymnastics,0,0,0, -272949970,Ana Ramirez,COL,female,1991-12-06,1.68,69,rugby sevens,0,0,0, -307991682,Ana Rente,POR,female,1988-04-27,1.58,53,gymnastics,0,0,0, -224508833,Ana Roqica,FIJ,female,1988-02-02,1.62,55,rugby sevens,0,0,0, -543833436,Ana Sanabria,COL,female,1990-05-02,1.56,51,cycling,0,0,0, -337538051,Ana Satila,BRA,female,1996-03-13,1.63,58,canoe,0,0,0, -953050325,Ana Simic,CRO,female,1990-05-05,1.78,57,athletics,0,0,0, -902638396,Ana Sofia Gomez,GUA,female,1995-11-24,1.56,46,gymnastics,0,0,0, -872791807,Ana Sofia Nobrega,ANG,female,1990-12-20,1.74,70,aquatics,0,0,0, -644940241,Ana Veronica Rodean,ROU,female,1984-06-23,1.7,55,athletics,0,0,0, -153868094,Ana Zaninovic,CRO,female,1987-06-26,1.72,55,taekwondo,0,0,0, -557108863,Ana-Roxana Lehaci,AUT,female,1990-08-11,1.72,64,canoe,0,0,0, -310379918,Anabel Medina Garrigues,ESP,female,1982-07-31,1.69,59,tennis,0,0,0, -241768985,Anabelle Smith,AUS,female,1993-02-03,1.68,55,aquatics,0,0,1, -867924792,Anamari Velensek,SLO,female,1991-05-15,1.78,78,judo,0,0,1, -575717728,Anamaria Ionita,ROU,female,1988-07-07,1.75,60,athletics,0,0,0, -711141982,Anas Beshr,EGY,male,1993-07-19,,,athletics,0,0,0, -922322829,Anaso Jobodwana,RSA,male,1992-07-30,1.87,71,athletics,0,0,0, -129887602,Anass Ait El Abdia,MAR,male,1993-03-21,1.8,66,cycling,0,0,0, -445010579,Anass Houssein,DJI,male,1995-01-10,1.75,66,judo,0,0,0, -320992856,Anastasia Abrosimova,RUS,female,1990-07-17,1.64,51,triathlon,0,0,0, -395443232,Anastasia Bliznyuk,RUS,female,1994-06-28,1.73,51,gymnastics,1,0,0, -630467842,Anastasia Bogdanovski,MKD,female,1993-07-30,1.74,57,aquatics,0,0,0, -301110204,Anastasia Gloushkov Leventhal,ISR,female,1985-05-24,1.65,53,aquatics,0,0,0, -823187249,Anastasia Pavlova,UKR,female,1995-02-09,1.72,53,archery,0,0,0, -42235167,Anastasia Pavlyuchenkova,RUS,female,1991-07-03,1.77,75,tennis,0,0,0, -971263231,Anastasia Rodionova,AUS,female,1982-05-12,,,tennis,0,0,0, -407491531,Anastasia Shlyakhovaya,RUS,female,1990-10-05,1.92,69,volleyball,0,0,0, -329483647,Anastasia Simanovich,RUS,female,1995-01-23,1.74,69,aquatics,0,0,1, -35258396,Anastasiia Baryshnikova,RUS,female,1990-12-19,1.73,67,taekwondo,0,0,0, -901391372,Anastasiia Beliakova,RUS,female,1993-05-01,1.73,,boxing,0,0,1, -102993308,Anastasiia Fesikova,RUS,female,1990-05-08,1.82,71,aquatics,0,0,0, -797491738,Anastasiia Hotfrid,GEO,female,1996-04-25,1.69,87,weightlifting,0,0,0, -787891097,Anastasiia Kozhenkova,UKR,female,1986-01-19,1.86,75,rowing,0,0,0, -572715750,Anastasiia Krapivina,RUS,female,1994-11-12,1.7,56,aquatics,0,0,0, -715543829,Anastasiia Lysenko,UKR,female,1995-12-02,1.76,101,weightlifting,0,0,0, -273869635,Anastasiia Maksimova,RUS,female,1991-06-27,1.7,50,gymnastics,1,0,0, -766355560,Anastasiia Nedobiga,UKR,female,1994-04-20,1.62,50,aquatics,0,0,0, -725232541,Anastasiia Tatareva,RUS,female,1997-07-19,1.65,44,gymnastics,1,0,0, -913288591,Anastasiia Todorova,UKR,female,1993-12-10,1.68,69,canoe,0,0,0, -874606295,Anastasiia Voinova,RUS,female,1993-02-05,1.62,62,cycling,0,1,0, -467136839,Anastasija Grigorjeva,LAT,female,1990-05-12,1.69,65,wrestling,0,0,0, -85844393,Anastasija Khmelnytska,GER,female,1997-12-31,1.71,56,gymnastics,0,0,0, -429085507,Anastasiya Mikhalenka,BLR,female,1995-12-08,1.62,67,weightlifting,0,0,0, -477742641,Anastasiya Prokopenko,BLR,female,1985-09-20,1.63,57,modern pentathlon,0,0,0, -204362655,Anastasiya Puzakova,BLR,female,1993-12-12,1.61,45,athletics,0,0,0, -830248205,Anastasiya Savchuk,UKR,female,1996-03-02,1.77,60,aquatics,0,0,0, -369555302,Anastasiya Serdyukova,UZB,female,1997-05-29,1.7,49,gymnastics,0,0,0, -610974773,Anastasiya Spas,UKR,female,1993-08-06,1.78,68,modern pentathlon,0,0,0, -27612186,Anastasiya Tulapina,KAZ,female,1990-03-05,1.67,54,athletics,0,0,0, -711528333,Anastasiya Tyurina,TJK,female,2001-09-27,1.65,50,aquatics,0,0,0, -422580925,Anastasiya Verameyenka,BLR,female,1987-07-10,1.92,82,basketball,0,0,0, -357399509,Anastasiya Voznyak,UKR,female,1998-12-09,1.69,49,gymnastics,0,0,0, -673911488,Anastassiya Pilipenko,KAZ,female,1986-09-13,1.74,55,athletics,0,0,0, -347049681,Anastassya Kudinova,KAZ,female,1988-02-27,1.76,60,athletics,0,0,0, -623313333,Anatolii Herey,UKR,male,1989-03-31,1.86,75,fencing,0,0,0, -234780868,Ancuta Bobocel,ROU,female,1987-10-03,1.67,49,athletics,0,0,0, -964678292,Andela Bulatovic,MNE,female,1987-01-15,1.75,67,handball,0,0,0, -775627135,Andelo Setka,CRO,male,1985-09-14,1.86,87,aquatics,0,1,0, -949150339,Ander Elosegi,ESP,male,1987-11-14,1.86,80,canoe,0,0,0, -955892799,Anders Dahl,DEN,male,1976-03-11,1.8,80,equestrian,0,0,0, -449230343,Anders Lie Nielsen,DEN,male,1991-04-11,1.86,74,aquatics,0,0,0, -289946138,Anders Pedersen,NOR,male,1992-05-04,,,sailing,0,0,0, -130198005,Anders Weiss,USA,male,1992-11-05,1.96,92,rowing,0,0,0, -248819461,Anderson Oliveira,BRA,male,1992-01-10,1.69,64,canoe,0,0,0, -292858869,Andile Dlamini,RSA,female,1992-09-02,1.69,55,football,0,0,0, -375239282,Andile Fikizolo,RSA,male,1994-05-12,1.75,69,football,0,0,0, -7192762,Andjelko Risticevic,SRB,male,1985-12-23,1.91,78,athletics,0,0,0, -995131091,Andranik Karapetyan,ARM,male,1995-12-15,1.8,77,weightlifting,0,0,0, -222880699,Andras Parti,HUN,male,1982-09-18,1.74,67,cycling,0,0,0, -257770574,Andras Redli,HUN,male,1983-10-21,1.93,82,fencing,0,0,1, -140531805,Andre,POR,male,1990-01-21,1.71,68,football,0,0,0, -511065132,Andre Breitbarth,GER,male,1990-04-06,1.91,125,judo,0,0,0, -662859051,Andre Fernando S. Martins Cardoso,POR,male,1984-09-03,1.68,57,cycling,0,0,0, -954547244,Andre Link,GER,male,1994-12-13,1.74,80,shooting,0,0,0, -580669644,Andre Matias,ANG,male,1989-06-22,1.8,76,rowing,0,0,0, -134393254,Andre Patrocinio,BRA,male,1990-02-20,1.73,74,hockey,0,0,0, -321939680,Andre Pereira,BRA,male,1993-12-07,1.85,84,aquatics,0,0,0, -890648404,Andre Sa,BRA,male,1977-05-06,1.8,75,tennis,0,0,0, -976716272,Andre Silva,BRA,male,1988-03-22,1.7,80,rugby sevens,0,0,0, -755645799,Andre Soares,BRA,male,1984-02-13,1.94,92,handball,0,0,0, -857846421,Andre de Grasse,CAN,male,1994-11-10,1.76,70,athletics,0,1,2, -174436666,Andrea Arsovic,SRB,female,1987-02-05,1.65,61,shooting,0,0,0, -974131096,Andrea Baldini,ITA,male,1985-12-19,1.75,70,fencing,0,0,0, -932784458,Andrea Brewster,IRL,female,1982-10-10,1.63,62,sailing,0,0,0, -949156252,Andrea Carolina Olaya Gutierrez,COL,female,1994-12-09,1.76,75,wrestling,0,0,0, -676115258,Andrea Cassara,ITA,male,1984-01-03,1.93,93,fencing,0,0,0, -161123035,Andrea Cedron,PER,female,1993-12-24,1.69,62,aquatics,0,0,0, -626748734,Andrea Chiarabini,ITA,male,1995-03-12,1.79,79,aquatics,0,0,0, -575091525,Andrea D'Arrigo,ITA,male,1995-04-28,1.94,85,aquatics,0,0,0, -400345706,Andrea Deelstra,NED,female,1985-03-06,1.64,46,athletics,0,0,0, -419373605,Andrea Fondelli,ITA,male,1994-02-27,1.9,96,aquatics,0,0,1, -478977690,Andrea Geubelle,USA,female,1991-06-26,1.63,58,athletics,0,0,0, -226707215,Andrea Hewitt,NZL,female,1982-04-04,1.6,50,triathlon,0,0,0, -429133485,Andrea Hlavackova,CZE,female,1986-08-10,1.74,63,tennis,0,0,0, -504132188,Andrea Ivancevic,CRO,female,1984-08-21,1.68,62,athletics,0,0,0, -158226977,Andrea Kilday,NZL,female,1982-08-05,1.61,48,taekwondo,0,0,0, -565831572,Andrea Klikovac,MNE,female,1991-05-05,1.75,73,handball,0,0,0, -65085149,Andrea Kneppers,NED,female,1993-02-24,1.75,67,aquatics,0,0,0, -187085633,Andrea Mayr,AUT,female,1979-10-15,1.74,53,athletics,0,0,0, -187152270,Andrea Micheletti,ITA,male,1991-06-22,1.87,70,rowing,0,0,0, -931620156,Andrea Miklos,ROU,female,1999-04-17,1.65,51,athletics,0,0,0, -448392462,Andrea Murez,ISR,female,1992-01-29,1.84,77,aquatics,0,0,0, -244862813,Andrea Perez Pena,ECU,female,1990-04-07,1.61,62,shooting,0,0,0, -926139240,Andrea Petkovic,GER,female,1987-09-09,1.8,70,tennis,0,0,0, -339790739,Andrea Salvisberg,SUI,male,1989-02-01,1.8,73,triathlon,0,0,0, -583417630,Andrea Santarelli,ITA,male,1993-06-03,1.84,76,fencing,0,1,0, -976796859,Andrea Seccafien,CAN,female,1990-08-27,1.52,46,athletics,0,0,0, -36880136,Andrea Tiberi,ITA,male,1985-11-15,1.83,71,cycling,0,0,0, -234036323,Andrea Toniato,ITA,male,1991-02-27,1.82,82,aquatics,0,0,0, -321087951,Andreanne Langlois,CAN,female,1993-04-01,1.58,59,canoe,0,0,0, -726050696,Andreas Bretschneider,GER,male,1989-08-04,1.67,60,gymnastics,0,0,0, -706697738,Andreas Bube,DEN,male,1987-07-13,1.78,65,athletics,0,0,0, -566684785,Andreas Chasikos,CYP,male,1984-06-07,1.75,70,shooting,0,0,0, -951348078,Andreas Kuffner,GER,male,1987-03-11,1.96,94,rowing,0,1,0, -153952805,Andreas Linde,SWE,male,1993-07-24,1.96,88,football,0,0,0, -411586865,Andreas Loew,GER,male,1982-01-19,1.77,81,shooting,0,0,0, -39605435,Andreas Maxso,DEN,male,1994-03-18,1.9,80,football,0,0,0, -435243866,Andreas Nilsson,SWE,male,1990-04-12,1.97,114,handball,0,0,0, -31739693,Andreas Pheobus Cariolou,CYP,male,1982-11-24,1.81,74,sailing,0,0,0, -713434315,Andreas Schilling,DEN,male,1991-05-25,1.85,70,triathlon,0,0,0, -773973841,Andreas Seppi,ITA,male,1984-02-21,1.9,75,tennis,0,0,0, -819478867,Andreas Toba,GER,male,1990-10-07,1.72,65,gymnastics,0,0,0, -908623609,Andreas Vazaios,GRE,male,1994-05-09,1.9,85,aquatics,0,0,0, -103646463,Andreas Wolff,GER,male,1991-03-03,1.98,110,handball,0,0,1, -294664221,Andreea Aanei,ROU,female,1993-11-18,1.7,120,weightlifting,0,0,0, -945918484,Andreea Arsine,ROU,female,1988-09-14,1.59,55,athletics,0,0,0, -755303582,Andreea Boghian,ROU,female,1991-11-29,1.86,78,rowing,0,0,1, -966630668,Andreea Chitu,ROU,female,1988-05-07,1.57,52,judo,0,0,0, -7713126,Andreea Mitu,ROU,female,1991-09-22,1.75,60,tennis,0,0,0, -882676679,Andrei Churyla,BLR,male,1993-05-19,1.89,74,athletics,0,0,0, -604822032,Andrei Gag,ROU,male,1991-04-27,1.91,120,athletics,0,0,0, -444763711,Andrei Jamsa,EST,male,1982-02-14,1.84,90,rowing,0,0,1, -494617052,Andrei Shabasov,RUS,male,1994-06-20,1.8,73,aquatics,0,0,0, -355389879,Andrei Vasile Muntean,ROU,male,1993-01-30,1.7,63,gymnastics,0,0,0, -153735693,Andrei Zamkovoi,RUS,male,1987-07-04,1.82,,boxing,0,0,0, -957911430,Andreia Bandeira,BRA,female,1987-05-03,1.69,,boxing,0,0,0, -264432420,Andreina Pinto,VEN,female,1991-09-10,1.76,68,aquatics,0,0,0, -305139050,Andrej Gacina,CRO,male,1986-05-21,1.85,85,table tennis,0,0,0, -10874144,Andrej Martin,SVK,male,1989-09-20,1.8,72,tennis,0,0,0, -681704491,Andrej Olijnik,LTU,male,1987-10-16,1.85,87,canoe,0,0,0, -448316510,Andres Arroyo,PUR,male,1995-06-07,1.77,64,athletics,0,0,0, -723895342,Andres Chocho,ECU,male,1983-11-04,1.7,66,athletics,0,0,0, -771905591,Andres Ducasse,CHI,male,1992-06-24,1.71,66,sailing,0,0,0, -669378368,Andres Eduardo Mata Perez,ESP,male,1992-11-11,1.74,76,weightlifting,0,0,0, -349842092,Andres Mauricio Caicedo Piedrahita,COL,male,1997-08-15,1.74,76,weightlifting,0,0,0, -686783587,Andres Mir,ESP,male,1987-01-25,1.8,75,hockey,0,0,0, -922616500,Andres Nocioni,ARG,male,1979-11-30,2.01,102,basketball,0,0,0, -700618156,Andres Pila,COL,male,1991-05-11,1.74,75,archery,0,0,0, -164503062,Andres Renteria,COL,male,1993-03-06,1.81,81,football,0,0,0, -446162748,Andres Roa,COL,male,1993-05-25,1.75,68,football,0,0,0, -157804987,Andres Roberto Montano Arroyo,ECU,male,1990-04-06,1.66,59,wrestling,0,0,0, -841462894,Andres Ruiz,COL,male,1988-07-16,1.64,64,athletics,0,0,0, -551708998,Andres Silva,URU,male,1986-03-27,1.78,78,athletics,0,0,0, -979721356,Andressa,BRA,female,1995-05-01,1.6,60,football,0,0,0, -715702096,Andressa Alves,BRA,female,1992-11-10,1.68,56,football,0,0,0, -721349876,Andressa de Morais,BRA,female,1990-12-21,1.78,97,athletics,0,0,0, -140014329,Andrew Amonde,KEN,male,1983-12-25,1.9,104,rugby sevens,0,0,0, -308408059,Andrew Bogut,AUS,male,1984-11-28,2.07,122,basketball,0,0,0, -169560751,Andrew Butchart,GBR,male,1991-10-14,1.75,64,athletics,0,0,0, -777045922,Andrew Campbell Jr,USA,male,1992-02-02,1.78,70,rowing,0,0,0, -871500671,Andrew Charter,AUS,male,1987-03-30,1.82,87,hockey,0,0,0, -164276381,Andrew Chetcuti,MLT,male,1992-11-19,1.77,72,aquatics,0,0,0, -207851406,Andrew Durutalo,USA,male,1987-10-25,1.88,107,rugby sevens,0,0,0, -2538424,Andrew Evans,USA,male,1991-01-25,1.99,113,athletics,0,0,0, -149520623,Andrew Fisher,BRN,male,1991-12-15,,,athletics,0,0,0, -351340396,Andrew Graham Peebles,ZIM,male,1989-01-09,1.91,87,rowing,0,0,0, -99309663,Andrew Lewis,TTO,male,1989-11-30,1.77,79,sailing,0,0,0, -165292505,Andrew Pozzi,GBR,male,1992-05-15,1.9,84,athletics,0,0,0, -926287704,Andrew Riley,JAM,male,1988-09-06,1.85,82,athletics,0,0,0, -530085605,Andrew T Hodge,GBR,male,1979-03-03,1.92,97,rowing,1,0,0, -191993260,Andrew Thomas Bisek,USA,male,1986-08-18,1.78,81,wrestling,0,0,0, -384767370,Andrew Thomas Mlugu,TAN,male,1995-11-12,1.58,73,judo,0,0,0, -665587816,Andrew Vernon,GBR,male,1986-01-07,1.82,71,athletics,0,0,0, -584794145,Andrew Willis,GBR,male,1990-12-03,1.89,88,aquatics,0,0,0, -559300154,Andrew Yorke,CAN,male,1988-12-20,1.9,75,triathlon,0,0,0, -930021019,Andrey Amador Bikkazakova,CRC,male,1986-08-29,1.83,73,cycling,0,0,0, -642024679,Andrey Ashchev,RUS,male,1983-05-10,2.02,105,volleyball,0,0,0, -213371438,Andrey Fonseca,CRC,male,1993-04-08,1.68,56,cycling,0,0,0, -915732512,Andrey Grechin,RUS,male,1987-10-21,1.99,99,aquatics,0,0,0, -967358166,Andrey Kraitor,RUS,male,1992-11-05,1.79,90,canoe,0,0,0, -927974669,Andrey Kuznetsov,RUS,male,1991-02-22,1.85,72,tennis,0,0,0, -132173574,Andrey Likhovitskiy,BLR,male,1986-06-23,1.72,66,gymnastics,0,0,0, -54828663,Andrey Mitin,RUS,male,1970-04-05,1.74,80,equestrian,0,0,0, -142867058,Andrey Petrov,UZB,male,1986-10-13,1.69,62,athletics,0,0,0, -434890755,Andrey Yerguchyov,KAZ,male,1995-04-23,1.88,100,canoe,0,0,0, -102165738,Andrey Yudin,RUS,male,1996-06-06,1.75,70,gymnastics,0,0,0, -295536761,Andrey Zeits,KAZ,male,1986-12-14,,,cycling,0,0,0, -317735498,Andri Eleftheriou,CYP,female,1984-06-19,1.62,50,shooting,0,0,0, -619323217,Andrii Govorov,UKR,male,1992-04-10,1.9,89,aquatics,0,0,0, -730965977,Andrii Khripta,UKR,male,1986-11-29,,,cycling,0,0,0, -709643676,Andrii Sienichkin,UKR,male,1991-05-01,1.75,62,gymnastics,0,0,0, -789218383,Andrija Prlainovic,SRB,male,1987-04-28,1.87,93,aquatics,1,0,0, -397768337,Andrija Sljukic,SRB,male,1995-09-08,1.96,92,rowing,0,0,0, -506743542,Andrique Allisop,SEY,male,1993-06-02,1.75,,boxing,0,0,0, -180553214,Andrius Gudzius,LTU,male,1991-02-14,2,130,athletics,0,0,0, -109066206,Andrius Sidlauskas,LTU,male,1997-04-06,1.87,77,aquatics,0,0,0, -910064394,Andriy Fedechko,UKR,male,1990-12-04,1.78,72,modern pentathlon,0,0,0, -856444352,Andriy Grivko,UKR,male,1983-08-07,1.8,69,cycling,0,0,0, -777498041,Andriy Kvyatkovskyy,UKR,male,1990-02-02,1.75,65,wrestling,0,0,0, -129967030,Andriy Protsenko,UKR,male,1988-05-20,1.94,80,athletics,0,0,0, -572732712,Andriy Yagodka,UKR,male,1988-07-06,1.95,85,fencing,0,0,0, -277394115,Andro Buslje,CRO,male,1986-01-04,2,115,aquatics,0,1,0, -526943972,Andy Murray,GBR,male,1987-05-15,1.88,85,tennis,1,0,0,"Part of the ""Big Four"", which includes the four greatest tennis players since 2000, Great Briton Andy Murray won the Olympic gold in the men's singles at London 2012 and took silver in the doubles. He recently won his second Wimbledon title, in July 2016." -551671372,Andy Ogide,NGR,male,1987-10-01,2.04,107,basketball,0,0,0, -918724681,Andy Pereira,CUB,male,1989-08-31,1.66,73,table tennis,0,0,0, -573932079,Ane Marcelle dos Santos,BRA,female,1994-01-12,1.53,53,archery,0,0,0, -259399361,Ane Santesteban Gonzalez,ESP,female,1990-12-12,1.6,48,cycling,0,0,0, -855774717,Anel Oosthuizen,RSA,female,1995-04-22,1.67,55,athletics,0,0,0, -282925578,Anette Viborg,DEN,female,1990-09-17,1.72,68,sailing,0,0,0, -868296400,Anezka Drahotova,CZE,female,1995-07-22,1.83,58,athletics,0,0,0, -26642064,Anfisa Pochkalova,UKR,female,1990-03-01,1.78,70,fencing,0,0,0, -404311165,Angel Correa,ARG,male,1995-03-09,1.74,80,football,0,0,0, -618761201,Angel Fournier Rodriguez,CUB,male,1987-12-31,1.98,108,rowing,0,0,0, -435819850,Angel Kodinov,BUL,male,1997-09-04,1.88,88,canoe,0,0,0, -303559145,Angel Lopez,ESP,male,1992-01-16,1.72,83,rugby sevens,0,0,0, -663091466,Angel McCoughtry,USA,female,1986-09-10,1.85,70,basketball,1,0,0, -283823153,Angel Pulgar,VEN,male,1989-02-07,1.74,79,cycling,0,0,0, -820102676,Angela Castro,BOL,female,1993-02-21,1.6,54,athletics,0,0,0, -916809801,Angela Clavijo,COL,female,1993-09-01,1.63,62,football,0,0,0, -287231198,Angela Hannah,GBR,female,1986-03-24,1.74,72,canoe,0,0,0, -948174500,Angela Malestein,NED,female,1993-01-31,1.73,66,handball,0,0,0, -859256652,Angela Petty,NZL,female,1991-08-16,1.68,58,athletics,0,0,0, -772558236,Angela Tenorio,ECU,female,1996-01-27,1.63,56,athletics,0,0,0, -789985846,Angela Whyte,CAN,female,1980-05-22,1.7,62,athletics,0,0,0, -14266301,Angela del Pan,ESP,female,1985-04-19,1.73,68,rugby sevens,0,0,0, -424933321,Angelica Bengtsson,SWE,female,1993-07-08,1.63,52,athletics,0,0,0, -518674471,Angelica Delgado,USA,female,1990-12-14,1.61,52,judo,0,0,0, -327887923,Angelica Moser,SUI,female,1997-10-09,1.69,65,athletics,0,0,0, -610826770,Angelica Roos,SWE,female,1989-04-15,1.58,58,weightlifting,0,0,0, -812402263,Angelica Wallen,SWE,female,1986-04-11,1.72,70,handball,0,0,0, -499427026,Angelika Cichocka,POL,female,1988-03-15,1.7,56,athletics,0,0,0, -647265868,Angelika Sita Ouedraogo,BUR,female,1993-12-04,1.72,63,aquatics,0,0,0, -24258423,Angelina Kysla,UKR,female,1991-02-15,1.58,49,gymnastics,0,0,0, -806788576,Angelina Melnikova,RUS,female,2000-07-18,1.51,44,gymnastics,0,1,0, -175332035,Angelique Kerber,GER,female,1988-01-18,1.73,68,tennis,0,1,0, -493430225,Angelos Vlachopoulos,GRE,male,1991-09-28,1.79,75,aquatics,0,0,0, -457358368,Angie Orjuela,COL,female,1989-05-09,1.58,46,athletics,0,0,0, -697735361,Angie Sabrina Gonzalez,VEN,female,1981-01-03,1.6,57,cycling,0,0,0, -618528044,Angus Groom,GBR,male,1992-06-16,1.95,94,rowing,0,0,0, -482234536,Anicka Newell,CAN,female,1993-08-05,1.75,64,athletics,0,0,0, -143427231,Anicka van Emden,NED,female,1986-12-10,1.69,63,judo,0,0,1, -441101021,Anika Lorenz,GER,female,1990-12-09,1.72,70,sailing,0,0,0, -54089758,Anilda Thomas,IND,female,1993-05-06,,,athletics,0,0,0, -393115111,Anirban Lahiri,IND,male,1987-06-29,1.72,80,golf,0,0,0, -52111806,Anish Khem,FIJ,male,1993-08-27,1.75,67,football,0,0,0, -795806548,Anisha Vekemans,BEL,female,1991-08-17,1.6,52,cycling,0,0,0, -998460252,Anissa Khelfaoui,ALG,female,1991-08-29,1.68,62,fencing,0,0,0, -145066330,Anita Alvarez,USA,female,1996-12-02,1.71,51,aquatics,0,0,0, -790724196,Anita Hinriksdottir,ISL,female,1996-01-13,1.72,49,athletics,0,0,0, -709319591,Anita Marton,HUN,female,1989-01-15,1.72,95,athletics,0,0,1, -79802394,Anita McLAREN,NZL,female,1987-10-02,1.63,56,hockey,0,0,0, -175586177,Anita Wlodarczyk,POL,female,1985-08-08,1.78,95,athletics,1,0,0, -865947696,Aniuar Geduev,RUS,male,1987-01-26,1.73,74,wrestling,0,1,0, -358118028,Aniya Necol Louissaint,HAI,female,1998-09-09,1.73,67,taekwondo,0,0,0, -639948235,Anja Crevar,SRB,female,2000-05-24,1.64,49,aquatics,0,0,0, -623213060,Anja Klinar,SLO,female,1988-04-03,1.7,62,aquatics,0,0,0, -699323942,Anja Mittag,GER,female,1985-05-16,1.68,58,football,1,0,0, -616847626,Anja Scherl,GER,female,1986-04-12,1.6,48,athletics,0,0,0, -109335235,Anjelina Nadai Lohalith,ROT,female,1993-01-01,1.63,50,athletics,0,0,0, -571260050,Anju Takamizawa,JPN,female,1996-03-06,1.65,50,athletics,0,0,0, -642447313,Ankhtsetseg Munkhjantsan,MGL,female,1997-12-25,1.63,69,weightlifting,0,0,0, -307535936,Ankit Sharma,IND,male,1992-07-20,1.77,75,athletics,0,0,0, -266461639,Ann-Sophie Duyck,BEL,female,1987-07-23,1.72,60,cycling,0,0,0, -327178595,Anna Boada Peiro,ESP,female,1992-12-30,1.65,60,rowing,0,0,0, -85532849,Anna Cruz,ESP,female,1986-10-27,1.76,60,basketball,0,1,0, -921750536,Anna Danesi,ITA,female,1996-04-20,1.95,75,volleyball,0,0,0, -110782111,Anna Dowgiert,POL,female,1990-07-15,1.7,58,aquatics,0,0,0, -636501122,Anna Emilie Moller,DEN,female,1997-07-28,1.66,52,athletics,0,0,0, -800527374,Anna Espar Llaquet,ESP,female,1993-01-08,1.8,66,aquatics,0,0,0, -592806648,Anna Flanagan,AUS,female,1992-01-08,1.8,66,hockey,0,0,0, -315491322,Anna Green,NZL,female,1990-08-20,1.67,57,football,0,0,0, -739353909,Anna Greta Olasz,HUN,female,1993-09-19,1.68,55,aquatics,0,0,0, -721775367,Anna Grineva,RUS,female,1988-01-31,1.85,87,aquatics,0,0,1, -471756502,Anna Hahner,GER,female,1989-11-20,1.65,48,athletics,0,0,0, -128450991,Anna Illes,HUN,female,1994-02-21,1.8,73,aquatics,0,0,0, -165448816,Anna Incerti,ITA,female,1980-01-19,1.68,44,athletics,0,0,0, -672606405,Anna Jagaciak,POL,female,1990-02-10,1.77,59,athletics,0,0,0, -570157500,Anna Jenny Fransson,SWE,female,1987-07-18,1.69,73,wrestling,0,0,1, -218793925,Anna Karnaukh,RUS,female,1993-08-31,1.73,61,aquatics,0,0,1, -144902061,Anna Karolina Schmiedlova,SVK,female,1994-09-13,1.76,63,tennis,0,0,0, -959541631,Anna Kasprzak,DEN,female,1989-12-08,1.73,66,equestrian,0,0,0, -112286651,Anna Kielbasinska,POL,female,1990-06-26,1.7,59,athletics,0,0,0, -573321803,Anna Knauer,GER,female,1995-02-20,1.7,60,cycling,0,0,0, -711366566,Anna Korakaki,GRE,female,1996-04-08,1.75,65,shooting,1,0,1, -839118437,Anna Kornuta,UKR,female,1988-11-10,1.68,57,athletics,0,0,0, -550413879,Anna Laurell Nash,SWE,female,1980-02-12,1.84,,boxing,0,0,0, -759876501,Anna Lunyova,UKR,female,1991-10-01,1.76,60,athletics,0,0,0, -688177663,Anna Maliszewska,POL,female,1993-07-04,1.7,52,modern pentathlon,0,0,0, -818693717,Anna Malova,RUS,female,1990-04-16,1.75,59,volleyball,0,0,0, -953320535,Anna Malvina Svennung,SWE,female,1984-10-24,1.78,74,rowing,0,0,0, -621267862,Anna Maria Mazzetti,ITA,female,1988-08-25,1.61,50,triathlon,0,0,0, -334806416,Anna Maria Sepp,EST,female,1996-02-02,1.72,64,sailing,0,0,0, -988042479,Anna Marton,HUN,female,1995-03-31,1.8,70,fencing,0,0,0, -211067010,Anna Meares,AUS,female,1983-09-21,1.65,70,cycling,0,0,1,"Australia's highly decorated Anna Meares has medaled for the speed trial at the past three Olympic Games, with gold at London 2012, silver at Beijing 2008 and bronze at Athens 2004. Meares has 26 world championship medals, including 11 golds." -47625127,Anna Nordqvist,SWE,female,1987-06-10,1.83,75,golf,0,0,0, -613249321,Anna Ntountounaki,GRE,female,1995-09-09,1.77,66,aquatics,0,0,0, -68194105,Anna Plichta,POL,female,1992-02-10,1.76,60,cycling,0,0,0, -602398132,Anna Santamans,FRA,female,1993-04-25,1.77,61,aquatics,0,0,0, -799918043,Anna Sedoykina,RUS,female,1984-08-01,1.84,74,handball,1,0,0, -480514013,Anna Sen,RUS,female,1990-12-03,1.86,81,handball,1,0,0, -320661487,Anna Sztankovics,HUN,female,1996-01-10,1.77,63,aquatics,0,0,0, -475900147,Anna Timofeeva,RUS,female,1987-07-18,1.78,86,aquatics,0,0,1, -553165489,Anna Titimets,UKR,female,1989-03-05,1.73,63,athletics,0,0,0, -760246597,Anna Ustyukhina,RUS,female,1989-03-18,1.77,70,aquatics,0,0,1, -628102440,Anna Voloshyna,UKR,female,1991-09-26,1.68,53,aquatics,0,0,0, -363091224,Anna Vyakhireva,RUS,female,1995-03-13,1.68,63,handball,1,0,0, -984260519,Anna Wierzbowska,POL,female,1990-12-08,1.84,80,rowing,0,0,0, -232686773,Anna van der Breggen,NED,female,1990-04-18,1.67,56,cycling,1,0,1, -173475309,Anna-Lena Groenefeld,GER,female,1985-06-04,1.8,73,tennis,0,0,0, -878372430,Anna-Maria Alexandri,AUT,female,1997-09-15,1.7,48,aquatics,0,0,0, -25318407,Annabel Laure Ali,CMR,female,1985-03-04,1.76,75,wrestling,0,0,0, -849907578,Annalie Longo,NZL,female,1991-07-01,1.56,54,football,0,0,0, -36119786,Annalise Murphy,IRL,female,1990-02-01,1.84,72,sailing,0,1,0, -892128901,Anne Andersen,DEN,female,1992-11-10,1.83,86,rowing,0,0,1, -618276677,Anne Buijs,NED,female,1991-12-02,1.9,73,volleyball,0,0,0, -8185560,Anne Cairns,SAM,female,1981-01-11,,,canoe,0,0,0, -979365404,Anne Haug,GER,female,1983-01-20,1.64,51,triathlon,0,0,0, -862170739,Anne Holm Baumeister,DEN,female,1987-12-29,1.68,54,athletics,0,0,0, -470667048,Anne Lolk Thomsen,DEN,female,1983-05-15,1.75,60,rowing,0,0,0, -554467437,Anne Schroder,GER,female,1994-09-11,1.7,58,hockey,0,0,1, -676612958,Anne Terpstra,NED,female,1991-01-05,1.66,57,cycling,0,0,0, -663634916,Anne Zagre,BEL,female,1990-03-13,1.76,68,athletics,0,0,0, -723096716,Anne-Mari Hyrylainen,FIN,female,1978-08-15,1.68,50,athletics,0,0,0, -800780979,Anne-Marie Rindom,DEN,female,1991-06-14,1.7,68,sailing,0,0,1, -869195887,Anneisha McLaughlin-Whilby,JAM,female,1986-01-06,1.7,66,athletics,0,1,0, -455588224,Annekatrin Thiele,GER,female,1984-10-18,1.73,68,rowing,1,0,0, -428641250,Anneliese Rubie,AUS,female,1992-04-22,1.71,58,athletics,0,0,0, -392790304,Anneloes van Veen,NED,female,1990-08-07,1.77,67,sailing,0,0,0, -389902510,Annemiek Bekkering,NED,female,1991-08-05,1.6,54,sailing,0,0,0, -706092659,Annemiek van Vleuten,NED,female,1982-10-08,1.68,59,cycling,0,0,0, -279678648,Annette Duetz,NED,female,1993-06-29,1.8,74,sailing,0,0,0, -297653287,Annette Edmondson,AUS,female,1991-12-12,1.71,65,cycling,0,0,0, -790807668,Anni Teija Orvokki Vuohijoki,FIN,female,1988-05-24,1.62,62,weightlifting,0,0,0, -925256825,Annie Haeger,USA,female,1990-02-05,1.68,58,sailing,0,0,0, -960982811,Annika Beck,GER,female,1994-02-16,1.67,59,tennis,0,0,0, -986477773,Annika Bochmann,GER,female,1991-07-16,1.67,58,sailing,0,0,0, -724113769,Annika Bruhn,GER,female,1992-10-05,1.83,69,aquatics,0,0,0, -614874748,Annika Langvad,DEN,female,1984-03-22,1.74,63,cycling,0,0,0, -196922673,Annika Roloff,GER,female,1991-03-10,1.66,58,athletics,0,0,0, -595641112,Annika Schleu,GER,female,1990-04-03,1.75,63,modern pentathlon,0,0,0, -799645889,Annika Sprink,GER,female,1995-10-20,1.73,61,hockey,0,0,1, -156381580,Annike Krahn,GER,female,1985-07-01,1.73,61,football,1,0,0, -521298946,Annsert Whyte,JAM,male,1987-10-04,1.88,86,athletics,0,0,0, -403056126,Ano Kuwai,JPN,female,1989-10-20,1.72,70,rugby sevens,0,0,0, -618542850,Anouk Verge-Depre,SUI,female,1992-02-11,1.85,70,volleyball,0,0,0, -57200072,Anouk Vetter,NED,female,1993-02-04,1.77,62,athletics,0,0,0, -976455975,Anqi Xu,CHN,female,1992-01-23,1.82,76,fencing,0,1,0, -576815287,Antanas Kavaliauskas,LTU,male,1984-09-19,2.08,114,basketball,0,0,0, -224127843,Anthonique Strachan,BAH,female,1993-08-22,1.68,57,athletics,0,0,0, -293695659,Anthonny Sitraka Ralefy,MAD,male,1995-07-10,1.82,79,aquatics,0,0,0, -547860838,Anthony Barbar,LIB,male,1992-11-18,,,aquatics,0,0,0, -76732813,Anthony Dean,AUS,male,1991-04-22,1.75,87,cycling,0,0,0, -261223419,Anthony Ervin,USA,male,1981-05-26,1.91,80,aquatics,2,0,0, -179926166,Anthony Fahden,USA,male,1986-02-27,1.81,71,rowing,0,0,0, -335737888,Anthony Mylann Obame,GAB,male,1988-09-10,1.9,97,taekwondo,0,0,0, -63461595,Anthony Perez,VEN,male,1993-09-29,2.05,93,basketball,0,0,0, -818993615,Anthony Romaniw,CAN,male,1991-09-15,1.8,80,athletics,0,0,0, -368458137,Anthony Terras,FRA,male,1985-06-21,1.7,69,shooting,0,0,0, -575174171,Anthony Zambrano,COL,male,1998-01-17,1.84,72,athletics,0,0,0, -947380759,Antigoni Drisbioti,GRE,female,1984-03-21,1.61,50,athletics,0,0,0, -851486993,Antje von Seydlitz-Kurzbach,CAN,female,1990-09-16,1.79,76,rowing,0,0,0, -627845913,Antoaneta Boneva,BUL,female,1986-01-17,1.68,70,shooting,0,0,0, -969463454,Antoine Adams,SKN,male,1988-08-31,1.8,79,athletics,0,0,0, -110778822,Antoine Bouchard,CAN,male,1994-08-24,1.8,66,judo,0,0,0, -352830774,Antoine Diot,FRA,male,1989-01-17,1.93,86,basketball,0,0,0, -778856814,Antoine Duchesne,CAN,male,1991-09-12,1.89,73,cycling,0,0,0, -638759707,Antoine Gakeme,BDI,male,1991-12-24,1.69,60,athletics,0,0,0, -265482075,Antoine Gillet,BEL,male,1988-03-22,1.85,78,athletics,0,0,0, -418069781,Antoine Valois-Fortier,CAN,male,1990-03-13,1.9,81,judo,0,0,0, -124031196,Antoinette Gasongo,BDI,female,1994-04-24,1.7,51,judo,0,0,0, -67909068,Antoinette Nana Djimou Ida,FRA,female,1985-08-02,1.74,69,athletics,0,0,0, -939122275,Anton Astakhov,RUS,male,1987-04-30,1.76,85,shooting,0,0,0, -866446784,Anton Avdeev,RUS,male,1986-09-08,1.74,85,fencing,0,0,0, -300749546,Anton Braun,GER,male,1990-04-28,2.02,104,rowing,0,0,0, -989516794,Anton Chupkov,RUS,male,1997-02-22,1.88,71,aquatics,0,0,1, -55365103,Anton Dahlberg,SWE,male,1985-05-10,1.82,71,sailing,0,0,0, -727981250,Anton Fokin,UZB,male,1982-11-13,1.68,57,gymnastics,0,0,0, -393253446,Anton Ipsen,DEN,male,1994-09-04,1.86,74,aquatics,0,0,0, -620488948,Anton Kosmac,SLO,male,1976-12-14,1.83,66,athletics,0,0,0, -469779027,Anton Kucmin,SVK,male,1984-06-07,1.8,64,athletics,0,0,0, -108256011,Anton McKee,ISL,male,1993-12-18,1.83,84,aquatics,0,0,0, -835942400,Anton Prilepov,BLR,male,1984-02-05,1.86,96,archery,0,0,0, -463095413,Anton Rizov,BUL,male,1987-12-29,1.7,75,shooting,0,0,0, -299113520,Anton Sintsov,RUS,male,1985-02-03,1.7,62,cycling,0,0,0, -75967084,Anton Sudesh Peiris Kurukulasooriyage,SRI,male,1985-02-03,1.65,62,weightlifting,0,0,0, -877558321,Anton Zarutskiy,RUS,male,1986-04-27,1.95,94,rowing,0,0,0, -723171334,Antonela Mena,ARG,female,1988-02-28,1.8,84,handball,0,0,0, -972925193,Antonella Palmisano,ITA,female,1991-08-06,1.65,45,athletics,0,0,0, -96294708,Antonella del Core,ITA,female,1980-11-05,1.8,75,volleyball,0,0,0, -281632549,Antoni Kindler,CAN,male,1988-05-16,1.88,85,hockey,0,0,0, -881359443,Antonia Moreira,ANG,female,1982-04-26,1.72,70,judo,0,0,0, -773591831,Antonin Rouzier,FRA,male,1986-08-18,2,102,volleyball,0,0,0, -945091038,Antonino Barilla,ITA,male,1987-11-28,1.87,96,shooting,0,0,0, -952687673,Antonio Abadia,ESP,male,1990-07-02,1.7,65,athletics,0,0,0, -946006998,Antonio Alkana,RSA,male,1990-04-12,1.83,76,athletics,0,0,0, -438649023,Antonio Arroyo Perez,ESP,male,1994-05-09,1.7,68,aquatics,0,0,0, -198987455,Antonio Fernandez,ESP,male,1991-06-12,1.84,76,archery,0,0,0, -778264975,Antonio J. Leal,VEN,male,1987-06-25,1.65,60,fencing,0,0,0, -53317288,Antonio PETROVIC,MNE,male,1982-09-24,1.93,98,aquatics,0,0,0, -151724741,Antonio Petkovic,CRO,male,1986-01-11,1.9,90,aquatics,0,1,0, -824387423,Antonio Vargas,USA,male,1996-08-15,1.68,,boxing,0,0,0, -268280424,Antonis Martasidis,CYP,male,1992-06-14,1.78,85,weightlifting,0,0,0, -565509368,Antony Fowler,GBR,male,1991-03-10,1.79,,boxing,0,0,0, -801230201,Antony Lozano,HON,male,1993-04-25,1.82,81,football,0,0,0, -500105232,Antri Christoforou,CYP,female,1992-04-02,1.66,53,cycling,0,0,0, -470808417,Antti Ruuskanen,FIN,male,1984-02-21,1.89,86,athletics,0,0,0, -329333328,Antwon Hicks,NGR,male,1983-03-12,1.88,80,athletics,0,0,0, -196778355,Anuradha Indrajith Cooray,SRI,male,1978-03-24,1.74,58,athletics,0,0,0, -807714880,Anuradha Thokchom,IND,female,1989-02-02,1.62,54,hockey,0,0,0, -479087750,Anvar Yunusov,TJK,male,1987-02-01,1.69,,boxing,0,0,0, -500334706,Anyika Onuora,GBR,female,1984-10-28,1.78,76,athletics,0,0,1, -503893240,Anze Tavcar,SLO,male,1994-12-02,1.87,79,aquatics,0,0,0, -585429109,Anzor Boltukaev,RUS,male,1986-04-05,1.8,97,wrestling,0,0,0, -903085335,Apisai Domolailai,FIJ,male,1989-04-16,1.92,98,rugby sevens,1,0,0, -399850299,Apolonia Vaivai,FIJ,female,1991-02-05,1.37,69,weightlifting,0,0,0, -746896443,Apostolos Christou,GRE,male,1996-11-01,1.98,88,aquatics,0,0,0, -23572147,Apostolos Parellis,CYP,male,1985-07-24,1.86,110,athletics,0,0,0, -9514544,April Ross,USA,female,1982-06-20,1.86,74,volleyball,0,0,1, -728939478,Apurvi Chandela,IND,female,1993-01-04,1.57,54,shooting,0,0,0, -706967900,Arajik Marutjan,GER,male,1992-08-15,1.8,,boxing,0,0,0, -450196345,Arakel Mirzoyan,ARM,male,1989-10-21,1.7,84,weightlifting,0,0,0, -481716571,Aram Avagyan,ARM,male,1991-01-18,1.73,,boxing,0,0,0, -69028117,Aran Zalewski,AUS,male,1991-03-21,1.86,80,hockey,0,0,0, -391027633,Arantxa Parra-Santonja,ESP,female,1982-11-09,1.76,61,tennis,0,0,0, -982181588,Arantza Gumucio,CHI,female,1989-10-04,1.65,61,sailing,0,0,0, -319236400,Aras Kaya,TUR,male,1994-04-04,1.81,60,athletics,0,0,0, -756028808,Arashi Morisaka,JPN,male,1996-07-02,1.76,,boxing,0,0,0, -174361869,Arcangeline Fouodji Sonkbou,CMR,female,1987-08-26,1.58,68,weightlifting,0,0,0, -765868860,Ardo Arusaar,EST,male,1988-06-24,1.81,102,wrestling,0,0,0, -554149372,Are Hansen,NOR,male,1982-01-16,,,shooting,0,0,0, -269857952,Are Strandli,NOR,male,1988-08-18,,,rowing,0,0,1, -488754594,Areneo David,MAW,male,1995-06-06,1.64,58,archery,0,0,0, -67773543,Ari Mannio,FIN,male,1987-07-23,1.85,100,athletics,0,0,0, -381423797,Ari-Pekka Liukkonen,FIN,male,1989-02-09,2.08,92,aquatics,0,0,0, -952365137,Aria Fischer,USA,female,1999-03-02,1.83,78,aquatics,1,0,0, -76956627,Arialis J. Gandulla,CUB,female,1995-06-22,1.7,75,athletics,0,0,0, -68245783,Ariana Kira Hilborna,LAT,female,1980-09-19,1.67,52,athletics,0,0,0, -69546573,Ariana Orrego,PER,female,1998-09-25,1.57,49,gymnastics,0,0,0, -124325348,Ariana Washington,USA,female,1996-08-27,1.76,61,athletics,0,0,0, -978867868,Ariane Fortin,CAN,female,1984-11-20,1.75,,boxing,0,0,0, -177132328,Arianna Castiglioni,ITA,female,1997-08-15,1.67,55,aquatics,0,0,0, -571388778,Arianna Errigo,ITA,female,1988-06-06,1.8,68,fencing,0,0,0, -712016882,Arianna Garibotti,ITA,female,1989-12-09,1.69,64,aquatics,0,1,0, -807270955,Arianna Perilli,SMR,female,1978-05-01,1.61,65,shooting,0,0,0, -705250725,Arianna Schivo,ITA,female,1986-09-16,1.58,47,equestrian,0,0,0, -656130098,Arianna Vanderpool-Wallace,BAH,female,1990-03-04,1.68,61,aquatics,0,0,0, -197129425,Arina Openysheva,RUS,female,1999-03-24,1.68,59,aquatics,0,0,0, -520698565,Arina Rodionova,AUS,female,1989-12-15,,,tennis,0,0,0, -906864947,Arina Tsitsilina,BLR,female,1998-10-09,1.73,50,gymnastics,0,0,0, -713644170,Arisa Sato,JPN,female,1989-07-18,1.64,52,volleyball,0,0,0, -159588097,Ariya Jutanugarn,THA,female,1995-11-23,1.74,73,golf,0,0,0, -30042829,Ariya Phounsavath,LAO,male,1991-03-02,1.82,58,cycling,0,0,0, -388943,Arkadiusz Michalski,POL,male,1990-01-07,1.8,105,weightlifting,0,0,0, -720999336,Arlen Lopez,CUB,male,1993-02-21,1.78,,boxing,1,0,0, -292905261,Arlenis Sierra Canadilla,CUB,female,1992-12-07,1.62,57,cycling,0,0,0, -991852219,Arleta Podolak,POL,female,1993-10-20,1.6,57,judo,0,0,0, -207170334,Arley Rodriguez,COL,male,1993-02-13,1.76,67,football,0,0,0, -467565690,Arli Chontey,KAZ,male,1992-07-01,1.5,56,weightlifting,0,0,0, -708613279,Arman Hall,USA,male,1994-02-12,1.83,74,athletics,1,0,0, -653569053,Arman-Marshall Silla,BLR,male,1994-07-13,2.03,105,taekwondo,0,0,0, -583809753,Armandas Kelmelis,LTU,male,1998-03-22,1.93,86,rowing,0,0,0, -166236142,Arnaud Hybois,FRA,male,1982-01-26,1.8,74,canoe,0,0,0, -974000570,Arnis Rumbenieks,LAT,male,1988-04-04,1.75,63,athletics,0,0,0, -1436864,Arokia Rajiv,IND,male,1991-05-22,1.77,64,athletics,0,0,0, -459345576,Aron Baynes,AUS,male,1986-12-09,2.07,115,basketball,0,0,0, -858784469,Aron Gadorfalvi,HUN,male,1977-12-05,1.84,73,sailing,0,0,0, -725424114,Aron Kifle,ERI,male,1998-02-20,,,athletics,0,0,0, -754963695,Aron Szilagyi,HUN,male,1990-01-14,1.8,78,fencing,1,0,0, -279584048,Arsen Eraliev,KGZ,male,1990-05-15,1.65,59,wrestling,0,0,0, -505546970,Arsen Julfalakyan,ARM,male,1987-05-08,1.66,76,wrestling,0,0,0, -223079860,Arseth Heather,MRI,female,1991-11-30,1.71,61,aquatics,0,0,0, -361362188,Arslanbek Achilov,TKM,male,1993-07-01,1.77,,boxing,0,0,0, -75218682,Artem Bloshenko,UKR,male,1985-02-01,1.87,100,judo,0,0,0, -552816016,Artem Chebotarev,RUS,male,1988-10-26,1.84,,boxing,0,0,0, -996041766,Artem Ermakov,RUS,male,1982-03-16,1.88,80,volleyball,0,0,0, -172069479,Artem Harutyunyan,GER,male,1990-08-13,1.72,,boxing,0,0,1, -914185536,Artem Kosov,RUS,male,1986-08-04,1.93,96,rowing,0,0,0, -102564991,Artem Morozov,UKR,male,1980-02-29,1.95,100,rowing,0,0,0, -307289001,Artem Pochtarov,UKR,male,1993-07-24,1.83,77,badminton,0,0,0, -67482757,Artem Volvich,RUS,male,1990-01-22,2.08,96,volleyball,0,0,0, -770170821,Artemi Gavezou,ESP,female,1994-06-19,1.69,55,gymnastics,0,1,0, -268835792,Arthur Abele,GER,male,1986-07-30,1.84,85,athletics,0,0,0, -33769282,Arthur Bergo,BRA,male,1994-03-07,1.83,83,rugby sevens,0,0,0, -216948866,Arthur Biyarslanov,CAN,male,1995-04-22,1.74,,boxing,0,0,0, -306653489,Arthur Lanigan-O'Keeffe,IRL,male,1991-09-13,1.82,76,modern pentathlon,0,0,0, -938345533,Arthur Mariano,BRA,male,1993-09-18,1.69,65,gymnastics,0,0,1, -11470529,Arthur Zanetti,BRA,male,1990-04-15,1.56,64,gymnastics,0,1,0,"Brazil’s biggest feat in the men's artistic gymnastics was set by Arthur Zanetti, with the country's first gold medal, won at London 2012, in the rings event. Zanetti also has three world championship medals: a gold (2013) and two silvers (2011 and 2014)." -353946547,Arthur van Doren,BEL,male,1994-10-01,1.78,74,hockey,0,1,0, -749009956,Artsem Bandarenka,BLR,male,1991-06-19,1.87,78,athletics,0,0,0, -270627032,Artur Akhmatkhuzin,RUS,male,1988-05-21,1.87,79,fencing,1,0,0, -206524686,Artur Aleksanyan,ARM,male,1991-10-21,1.9,98,wrestling,1,0,0, -80806141,Artur Brzozowski,POL,male,1985-03-29,1.74,67,athletics,0,0,0, -746970689,Artur Davtyan,ARM,male,1992-08-08,1.6,55,gymnastics,0,0,0, -311001055,Artur Hovhannisyan,ARM,male,1996-03-23,1.6,,boxing,0,0,0, -46547339,Artur Kozlowski,POL,male,1985-01-19,1.69,54,athletics,0,0,0, -802555089,Artur Mastianica,LTU,male,1992-07-30,1.87,73,athletics,0,0,0, -936737122,Artur Mikolajczewski,POL,male,1990-06-27,1.8,73,rowing,0,0,0, -74899025,Arturo Chavez,PER,male,1990-01-12,1.9,76,athletics,0,0,0, -729366221,Arturo Gonzalez,MEX,male,1994-09-05,1.73,70,football,0,0,0, -512554925,Arturo Ramirez,VEN,male,1991-09-14,1.7,65,athletics,0,0,0, -318342628,Arturo Rivarola Trappe,PAR,male,1989-11-02,1.83,80,rowing,0,0,0, -32858315,Arturs Nikiforenko,LAT,male,1992-05-03,1.85,110,judo,0,0,0, -512734462,Arturs Plesnieks,LAT,male,1992-01-21,1.8,104,weightlifting,0,0,0, -334665837,Artuur Peters,BEL,male,1996-10-26,1.93,95,canoe,0,0,0, -638975983,Artyom Zakharov,KAZ,male,1991-10-27,1.77,70,cycling,0,0,0, -231595890,Arun Panchia,NZL,male,1989-04-22,1.8,73,hockey,0,0,0, -531231218,Arvin Moazami Godarzi,IRI,male,1990-03-26,1.85,73,cycling,0,0,0, -574180353,Arya Nasimi Shad,IRI,male,1999-11-07,1.78,68,aquatics,0,0,0, -717411449,Asadulla Lachinau,BLR,male,1986-04-17,1.58,60,wrestling,0,0,0, -508304618,Asafa Powell,JAM,male,1982-11-23,1.91,93,athletics,1,0,0, -108415368,Asako O,JPN,female,1987-12-16,1.89,85,basketball,0,0,0, -454303485,Asami Yoshida,JPN,female,1987-10-09,1.65,62,basketball,0,0,0, -900715474,Asaramanitra Ratiarison,MAD,female,1988-01-07,1.55,48,judo,0,0,0, -335612059,Asbel Kiprop,KEN,male,1989-06-30,1.9,63,athletics,0,0,0, -481165955,Asdis Hjalmsdottir,ISL,female,1985-10-28,1.78,70,athletics,0,0,0, -718103063,Asena Rokomarama,FIJ,female,1996-05-02,1.6,58,rugby sevens,0,0,0, -436712955,Asenathi Jim,RSA,male,1992-01-26,1.76,65,sailing,0,0,0, -423360573,Asger Stromgaard Sorensen,DEN,male,1996-06-05,1.92,89,football,0,0,0, -687479557,Ash Southern,AUS,female,1992-10-22,1.88,82,aquatics,0,0,0, -648671470,Asha Philip,GBR,female,1990-10-25,1.64,67,athletics,0,0,1, -464180251,Ashlee Ankudinoff,AUS,female,1990-08-20,1.74,67,cycling,0,0,0, -397806865,Ashleigh Gentle,AUS,female,1991-02-25,1.71,52,triathlon,0,0,0, -143278150,Ashleigh Johnson,USA,female,1994-09-12,1.86,81,aquatics,1,0,0, -193259308,Ashleigh Moolman-Pasio,RSA,female,1985-12-09,1.63,52,cycling,0,0,0, -70434826,Ashleigh Nelson,GBR,female,1991-02-20,1.75,69,athletics,0,0,0, -667381951,Ashleigh Simon,RSA,female,1989-05-11,1.58,,golf,0,0,0, -341434045,Ashley Jackson,GBR,male,1987-08-27,1.7,73,hockey,0,0,0, -742039431,Ashley Kelly,IVB,female,1991-03-25,1.73,75,athletics,0,0,0, -790221508,Ashley Lawrence,CAN,female,1995-06-11,1.64,60,football,0,0,1, -896644128,Ashley McKenzie,GBR,male,1989-07-17,1.68,60,judo,0,0,0, -810246164,Ashley Nee,USA,female,1989-06-15,1.63,54,canoe,0,0,0, -889563611,Ashley Spencer,USA,female,1993-06-08,1.78,58,athletics,0,0,1, -405218283,Ashley Steacy,CAN,female,1987-06-28,1.58,64,rugby sevens,0,0,1, -151634524,Ashley Stoddart,AUS,female,1993-06-10,1.72,70,sailing,0,0,0, -241360203,Ashlyn Harris,USA,female,1985-10-19,1.73,64,football,0,0,0, -40755680,Ashraf Abouelhassan,EGY,male,1975-05-17,1.86,86,volleyball,0,0,0, -617579036,Ashraf Amgad Elseify,QAT,male,1995-02-20,1.85,105,athletics,0,0,0, -902296774,Ashton Baumann,CAN,male,1993-01-05,1.91,74,aquatics,0,0,0, -629254109,Ashton Eaton,USA,male,1988-01-21,1.86,81,athletics,1,0,0, -388101012,Ashun Wu,CHN,male,1985-06-22,1.81,81,golf,0,0,0, -415694006,Ashwini Chidananda Akkunji,IND,female,1987-10-07,1.75,58,athletics,0,0,0, -126172872,Ashwini Ponnappa,IND,female,1989-09-18,1.65,59,badminton,0,0,0, -95516264,Aska Cambridge,JPN,male,1993-05-31,1.79,74,athletics,0,1,0, -41712943,Askale Tiksa,ETH,female,1994-07-21,1.65,52,athletics,0,0,0, -568130066,Aslan Kakhidze,KAZ,male,1988-10-28,1.85,39,wrestling,0,0,0, -645540187,Asley Gonzalez,CUB,male,1989-09-05,1.79,90,judo,0,0,0, -95150337,Asmir Kolasinac,SRB,male,1984-10-15,1.87,140,athletics,0,0,0, -532768073,Asnage Castelly,HAI,male,1978-03-29,1.82,74,wrestling,0,0,0, -560710110,Assiya Ipek,TUR,female,1993-12-05,1.68,70,weightlifting,0,0,0, -750446286,Assmaa Niang,MAR,female,1983-01-04,1.68,70,judo,0,0,0, -713040991,Astier Nicolas,FRA,male,1989-01-19,1.8,70,equestrian,1,1,0, -124475429,Astou Ndour,ESP,female,1994-08-22,1.95,68,basketball,0,1,0, -131094271,Astou Traore,SEN,female,1981-04-30,1.85,75,basketball,0,0,0, -230678922,Astrid Guyart,FRA,female,1983-03-17,1.74,59,fencing,0,0,0, -899652187,Astrit Ajdarevic,SWE,male,1990-04-17,1.88,80,football,0,0,0, -137582033,Asuka Teramoto,JPN,female,1995-11-19,1.45,37,gymnastics,0,0,0, -6712714,Atallah Alanazi,KSA,male,1988-02-22,1.74,74,shooting,0,0,0, -60539950,Atanu Das,IND,male,1992-04-05,1.75,79,archery,0,0,0, -59630450,Atef Saad,TUN,male,1988-03-20,1.76,57,athletics,0,0,0, -646350766,Ates Cinar,TUR,male,1986-05-16,1.72,72,sailing,0,0,0, -915895832,Atheyna Bylon,PAN,female,1989-04-06,1.75,,boxing,0,0,0, -665581158,Athos Schwantes,BRA,male,1985-02-13,1.9,85,fencing,0,0,0, -877684883,Atsushi Arai,JPN,male,1994-02-03,1.69,62,aquatics,0,0,0, -50738602,Atsuto Iida,JPN,male,1993-12-24,1.81,82,aquatics,0,0,0, -550829050,Attapon Uea-Aree,THA,male,1989-11-18,1.75,78,shooting,0,0,0, -731428841,Attila Decker,HUN,male,1987-08-25,1.97,94,aquatics,0,0,0, -913131099,Attila Kugler,HUN,male,1986-09-16,1.86,89,canoe,0,0,0, -390188051,Aubrey Modiba,RSA,male,1995-07-22,1.72,64,football,0,0,0, -283853104,Aubrey Smith,JAM,male,1988-06-30,1.8,75,athletics,0,0,0, -974052589,Aude Compan,FRA,female,1993-03-03,1.73,67,sailing,0,0,0, -44895631,Audrey Amiel,FRA,female,1987-03-03,1.64,65,rugby sevens,0,0,0, -754931470,Audrey Cordon,FRA,female,1989-09-22,1.7,60,cycling,0,0,0, -330818489,Audrey Lacroix,CAN,female,1983-11-17,1.63,54,aquatics,0,0,0, -596852328,Audrey Merle,FRA,female,1995-05-19,1.53,45,triathlon,0,0,0, -213434791,Audrey Tcheumeo,FRA,female,1990-04-20,1.77,78,judo,0,1,0, -869065556,Audrey Yong,SIN,female,1994-10-02,1.56,50,sailing,0,0,0, -913854740,Augustin Maillefer,SUI,male,1993-04-29,1.94,98,rowing,0,0,0, -904782814,Augustine Lugonzo,KEN,male,1992-07-29,1.83,86,rugby sevens,0,0,0, -145801140,Augustine Pulu,NZL,male,1990-01-04,1.8,89,rugby sevens,0,0,0, -507418985,Augusto Dutra de Oliveira,BRA,male,1990-07-16,1.8,70,athletics,0,0,0, -818866481,Augusto Lima,BRA,male,1991-09-17,2.06,118,basketball,0,0,0, -551777924,Augusto Midana,GBS,male,1984-05-20,1.67,74,wrestling,0,0,0, -571398392,Augusto Soares,TLS,male,1986-08-22,1.65,,athletics,0,0,0, -875934579,Augusto de Paula,BRA,male,1988-06-20,1.82,79,hockey,0,0,0, -189592697,Aurea Cruz,PUR,female,1982-01-10,1.8,63,volleyball,0,0,0, -863650191,Aurelia Bradeanu,ROU,female,1979-05-05,1.8,75,handball,0,0,0, -757280840,Aurelie Alcindor,MRI,female,1994-03-20,1.69,47,athletics,0,0,0, -364491097,Aurelie Muller,FRA,female,1990-06-07,1.69,57,aquatics,0,0,0, -166390906,Auriane Mallo,FRA,female,1993-10-11,1.8,63,fencing,0,0,0, -11624617,Aurimas Adomavicius,LTU,male,1993-09-23,2.04,100,rowing,0,0,0, -525803886,Aurimas Didzbalis,LTU,male,1991-06-13,1.72,92,weightlifting,0,0,1, -741095776,Aurimas Lankas,LTU,male,1985-09-07,1.78,89,canoe,0,0,1, -157040817,Auriole Dongmo,CMR,female,1990-08-03,1.73,95,athletics,0,0,0, -957513695,Austin Hack,USA,male,1992-05-17,2.04,99,rowing,0,0,0, -134543473,Automne Pavia,FRA,female,1989-01-03,1.71,57,judo,0,0,0, -300863169,Avtandili Tchrikishvili,GEO,male,1991-03-18,1.82,80,judo,0,0,0, -905229347,Avtar Singh,IND,male,1992-04-03,1.8,90,judo,0,0,0, -932761050,Awa Ly Ndiaye,SEN,female,2000-01-15,1.69,53,aquatics,0,0,0, -254855388,Axel Augis,FRA,male,1990-12-06,1.72,71,gymnastics,0,0,0, -663484224,Axel Harstedt,SWE,male,1987-02-28,1.97,135,athletics,0,0,0, -454328324,Axel Muller,ARG,male,1993-11-25,1.83,84,rugby sevens,0,0,0, -874568110,Axel Werner,ARG,male,1996-02-28,1.81,82,football,0,0,0, -182938039,Axelle Dauwens,BEL,female,1990-12-01,1.71,62,athletics,0,0,0, -950658256,Aya Takeuchi,JPN,female,1986-08-05,,,rugby sevens,0,0,0, -491035500,Aya Traore,SEN,female,1983-07-27,1.83,75,basketball,0,0,0, -427700587,Ayaka Nishimura,JPN,female,1989-05-10,1.65,58,hockey,0,0,0, -555668646,Ayaka Suzuki,JPN,female,1989-09-30,1.68,65,rugby sevens,0,0,0, -40493277,Ayaka Takahashi,JPN,female,1990-04-19,1.65,60,badminton,1,0,0, -335371986,Ayami Oishi,JPN,female,1991-04-09,1.69,57,rowing,0,0,0, -647256767,Ayane Kurihara,JPN,female,1989-09-27,1.72,59,badminton,0,0,0, -136502040,Ayanleh Souleiman,DJI,male,1992-12-03,1.9,70,athletics,0,0,0, -691452618,Ayesha Shahriyar Mohammed Albalooshi,UAE,female,1992-01-23,1.6,57,weightlifting,0,0,0, -899389595,Ayman Fayez,EGY,male,1991-03-03,1.81,72,fencing,0,0,0, -102121811,Aymen Hammed,TUN,male,1983-07-26,1.96,100,handball,0,0,0, -691236,Aymen Toumi,TUN,male,1990-07-11,1.83,77,handball,0,0,0, -232025157,Ayomide Folorunso,ITA,female,1996-10-17,1.7,55,athletics,0,0,0, -585835557,Ayonika Paul,IND,female,1992-09-23,1.74,74,shooting,0,0,0, -375178687,Ayoub Abdellaoui,ALG,male,1993-02-16,1.75,68,football,0,0,0, -296010311,Ayouba Traore,MLI,male,1982-08-09,1.8,,judo,0,0,0, -702811118,Ayse Cora,TUR,female,1993-03-03,1.75,69,basketball,0,0,0, -256843630,Ayuko Suzuki,JPN,female,1991-10-08,1.54,39,athletics,0,0,0, -57499245,Ayyasamy Dharun,IND,male,1996-12-31,1.77,64,athletics,0,0,0, -603312305,Azad Albarzi,SYR,male,1988-01-04,1.95,85,aquatics,0,0,0, -121737407,Azahara Munoz,ESP,female,1987-11-19,1.67,56,golf,0,0,0, -284565638,Azenaide Daniela Carlos,ANG,female,1990-06-14,1.8,69,handball,0,0,0, -682854309,Aziz Ouhadi,MAR,male,1984-07-24,1.68,72,athletics,0,0,0, -295847383,Azizulhasni Awang,MAS,male,1988-01-05,1.66,69,cycling,0,0,1, -572495754,Azmy Mehelba,EGY,male,1991-03-26,1.72,77,shooting,0,0,0, -959511873,Azucena Diaz,ESP,female,1982-12-19,1.63,55,athletics,0,0,0, -941256298,Azza Besbes,TUN,female,1990-11-28,1.75,62,fencing,0,0,0, -117554316,Baard Magnus Nesteng,NOR,male,1979-05-14,1.83,80,archery,0,0,0, -652126944,Babett Peter,GER,female,1988-05-12,1.71,64,football,1,0,0, -316544316,Baboloki Thebe,BOT,male,1997-03-18,,,athletics,0,0,0, -879393745,Bachana Khorava,GEO,male,1993-03-15,1.71,67,athletics,0,0,0, -167699785,Bachir Mahamat,CHA,male,1996-12-01,1.86,59,athletics,0,0,0, -345025003,Badawy Mohamed Moneim,EGY,male,1986-01-11,1.95,91,volleyball,0,0,0, -21166109,Baean Jouma,SYR,female,1994-04-13,1.82,76,aquatics,0,0,0, -574430988,Baghdad Bounedjah,ALG,male,1991-11-24,1.89,75,football,0,0,0, -57983858,Bahar Caglar,TUR,female,1988-09-28,1.9,76,basketball,0,0,0, -417882039,Bakhodir Jalolov,UZB,male,1994-07-08,1.98,,boxing,0,0,0, -803535676,Bakhtiyar Kozhatayev,KAZ,male,1992-03-28,1.77,70,cycling,0,0,0, -302183046,Balasz Sziranyi Somogyi,ESP,male,1983-01-10,1.96,106,aquatics,0,0,0, -798097157,Balazs Baji,HUN,male,1989-06-09,1.92,85,athletics,0,0,0, -682683760,Balazs Erdelyi,HUN,male,1990-02-16,1.96,94,aquatics,0,0,0, -958780251,Balazs Harai,HUN,male,1987-04-05,2.02,110,aquatics,0,0,0, -458728105,Balazs Kiss,HUN,male,1983-01-27,1.78,105,wrestling,0,0,0, -959413498,Balint Kopasz,HUN,male,1997-01-01,1.81,72,canoe,0,0,0, -881638132,Balla Dieye,SEN,male,1980-11-13,1.88,68,taekwondo,0,0,0, -684206677,Bambanani Mbane,RSA,female,1990-03-12,1.62,59,football,0,0,0, -368675991,Baofang Zhao,CHN,female,1993-08-12,1.7,64,cycling,0,0,0, -918929048,Barakat Mubarak Al-Harthi,OMA,male,1988-06-15,1.73,67,athletics,0,0,0, -227683804,Barbara,BRA,female,1988-07-04,1.71,75,football,0,0,0, -599919416,Barbara Arenhart,BRA,female,1986-10-04,1.82,73,handball,0,0,0, -628540930,Barbara Bujka,HUN,female,1986-09-05,1.72,82,aquatics,0,0,0, -798796089,Barbara Cornudella Ravetllat,ESP,female,1992-09-06,1.6,50,sailing,0,0,0, -756739224,Barbara Engleder,GER,female,1982-09-16,1.62,72,shooting,1,0,0, -941704507,Barbara Kovacs,HUN,female,1993-07-26,1.67,52,athletics,0,0,0, -160245017,Barbara Matic,CRO,female,1994-12-03,1.71,70,judo,0,0,0, -143281351,Barbara Nwaba,USA,female,1989-01-18,1.76,66,athletics,0,0,0, -476278288,Barbara Pla,ESP,female,1983-07-17,1.62,61,rugby sevens,0,0,0, -573831491,Barbara Riveros,CHI,female,1987-08-03,1.57,46,triathlon,0,0,0, -19020354,Barbara Seixas de Freitas,BRA,female,1987-08-03,1.77,66,volleyball,0,1,0, -591676186,Barbara Szabo,HUN,female,1990-02-17,1.73,58,athletics,0,0,0, -121734732,Barbora Balazova,SVK,female,1992-03-18,1.69,73,table tennis,0,0,0, -610741199,Barbora Hermannova,CZE,female,1990-11-07,1.8,79,volleyball,0,0,0, -958022952,Barbora Kodedova,CZE,female,1990-02-27,1.65,54,modern pentathlon,0,0,0, -646823652,Barbora Mokosova,SVK,female,1997-03-10,1.68,62,gymnastics,0,0,0, -233978154,Barbora Seemanova,CZE,female,2000-04-01,1.75,56,aquatics,0,0,0, -804524103,Barbora Spotakova,CZE,female,1981-06-30,1.82,80,athletics,0,0,1,"After winning gold at Beijing 2008 and London 2012, Barbora Špotáková has dominated the event of javelin at the past two Olympic Games. The Czech athlete has also picked up a world championship gold, along with two silvers between 2007 and 2011." -203332956,Barbora Strycova,CZE,female,1986-03-28,1.65,62,tennis,0,0,1, -759587471,Barbora Zavadova,CZE,female,1993-01-23,1.77,68,aquatics,0,0,0, -467627104,Barna Bor,HUN,male,1986-12-12,1.91,130,judo,0,0,0, -509608912,Barnabe Delarze,SUI,male,1994-06-30,1.93,100,rowing,0,0,0, -444827470,Barrett Laursen,DEN,male,1994-11-17,1.84,75,football,0,0,0, -394220896,Barry Middleton,GBR,male,1984-01-12,1.76,70,hockey,0,0,0, -112086322,Bart Deurloo,NED,male,1991-02-23,1.7,60,gymnastics,0,0,0, -999333930,Bartlomiej Wojciech Bonk,POL,male,1984-10-11,1.81,104,weightlifting,0,0,0, -402969291,Bartosz Bednorz,POL,male,1994-07-25,2.01,84,volleyball,0,0,0, -250887268,Bartosz Jurecki,POL,male,1979-01-31,1.92,107,handball,0,0,0, -594052376,Bartosz Kurek,POL,male,1988-08-29,2.05,87,volleyball,0,0,0,"An extremely powerful server and spiker, Bartosz Kurek is the idol of Poland's passionate volleyball fans. This opposite spiker helped his country to the 2012 World League, when he was elected the player of the tournamentand the 2009 European championship" -8007833,Bartosz Losiak,POL,male,1992-05-14,1.9,88,volleyball,0,0,0, -678195803,Bas Verwijlen,NED,male,1983-10-01,1.9,85,fencing,0,0,0, -902813031,Bashar Resan,IRQ,male,1996-12-22,1.75,69,football,0,0,0, -495486399,Bashir Abdi,BEL,male,1989-02-10,1.76,56,athletics,0,0,0, -785539303,Bashir Asgari Babajanzadeh Darzi,IRI,male,1989-08-20,1.88,130,wrestling,0,0,0, -418800406,Bassel Alrayes,QAT,male,1979-03-04,1.8,95,handball,0,0,0, -366413893,Bassem Hassan Mohammed,QAT,male,1987-05-31,1.77,78,equestrian,0,0,0, -670680423,Basten Caerts,BEL,male,1997-10-27,1.85,85,aquatics,0,0,0, -735742491,Bastian Steger,GER,male,1981-03-19,1.7,65,table tennis,0,0,1, -231798489,Bastien Auzeil,FRA,male,1989-10-22,1.95,89,athletics,0,0,0, -795525665,Battsetseg Soronzonbold,MGL,female,1990-05-03,1.7,67,wrestling,0,0,0, -409808283,Batuhan Gozgec,TUR,male,1990-12-20,1.72,,boxing,0,0,0, -38294792,Bauke Mollema,NED,male,1986-11-26,1.84,68,cycling,0,0,0, -931107334,Baul An,KOR,male,1994-03-25,1.69,66,judo,0,1,0, -726557644,Bautista Ezcurra,ARG,male,1995-04-21,1.8,82,rugby sevens,0,0,0, -887354934,Bautista Saubidet Birkner,ARG,male,1995-11-28,1.79,72,sailing,0,0,0, -350429572,Bayron Guama de la Cruz,ECU,male,1985-06-14,1.65,61,cycling,0,0,0, -298210804,Bayron Piedra,ECU,male,1982-08-19,1.75,68,athletics,0,0,0, -534612447,Beata Mikolajczyk,POL,female,1985-10-15,1.7,68,canoe,0,0,1, -663483429,Beata Naigambo,NAM,female,1980-03-11,1.67,48,athletics,0,0,0, -98378488,Beate Schrott,AUT,female,1988-04-15,1.77,71,athletics,0,0,0, -909285894,Beatrice Bartelloni,ITA,female,1993-02-05,1.65,50,cycling,0,0,0, -864630818,Beatrice Callegari,ITA,female,1991-12-20,1.75,60,aquatics,0,0,0, -496142981,Beatrice Chepkoech,KEN,female,1991-07-06,1.7,54,athletics,0,0,0, -30019986,Beatrice Edwige,FRA,female,1988-10-03,1.82,76,handball,0,1,0, -687126240,Beatrice Gyaman,GHA,female,1987-02-17,,53,athletics,0,0,0, -33337656,Beatrice Kamuchanga Alice,COD,female,1997-11-20,,,athletics,0,0,0, -870483785,Beatriz,BRA,female,1993-12-17,1.76,69,football,0,0,0, -247018721,Beatriz Elizabeth Piron Candelario,DOM,female,1995-02-27,1.5,48,weightlifting,0,0,0, -483770449,Beatriz Feres,BRA,female,1988-02-22,1.63,56,aquatics,0,0,0, -128263534,Beatriz Ferrer-Salat,ESP,female,1966-03-11,1.76,58,equestrian,0,0,0, -870056502,Beatriz Muhlbauer,BRA,female,1986-02-26,1.72,67,rugby sevens,0,0,0, -871879403,Beatriz Ortiz Munoz,ESP,female,1995-06-21,1.76,64,aquatics,0,0,0, -102300427,Beatriz Pascual,ESP,female,1982-05-09,1.63,53,athletics,0,0,0, -237614757,Beatriz Perez,ESP,female,1991-05-04,1.67,60,hockey,0,0,0, -844171101,Becky Sauerbrunn,USA,female,1985-06-06,1.7,61,football,0,0,0, -229820052,Bedan Karoki Muchiri,KEN,male,1990-08-21,1.7,54,athletics,0,0,0, -72183566,Bediha Gun,TUR,female,1994-10-26,1.67,53,wrestling,0,0,0, -389909627,Bedopassa Buassat Djonde,GBS,male,1992-09-20,1.72,97,wrestling,0,0,0, -618056949,Begona Garcia,ESP,female,1995-07-19,1.64,54,hockey,0,0,0, -471766284,Begona Gumucio,CHI,female,1992-01-14,1.69,66,sailing,0,0,0, -57339699,Behdad Salimikordasiabi,IRI,male,1989-12-08,1.92,170,weightlifting,0,0,0,"Standing 1.97m tall and weighing almost 200kg, Iran's Behdad Salimi won the heaviest powerlifting event at the London 2012 Olympic Games, winning gold in the + 105kg category. This giant also holds two world and three Asian titles." -302808648,Beka Gviniashvili,GEO,male,1995-10-26,1.75,95,judo,0,0,0, -683307277,Bekhbayar Erdenebat,MGL,male,1992-08-13,1.61,62,wrestling,0,0,0, -133958272,Bekir Karayel,TUR,male,1982-05-10,1.7,62,athletics,0,0,0, -922060137,Bekir Ozlu,TUR,male,1988-08-30,1.7,60,judo,0,0,0, -252644554,Bektemir Melikuziev,UZB,male,1996-04-08,1.77,,boxing,0,1,0, -312706182,Bekzod Abdurakhmonov,UZB,male,1990-03-15,1.72,74,wrestling,0,0,0, -234823649,Bela Simon,HUN,male,1988-08-04,1.86,85,rowing,0,0,0, -25375270,Belen Casetta,ARG,female,1994-09-26,1.63,52,athletics,0,0,0, -126816152,Belen Succi,ARG,female,1985-10-16,1.77,72,hockey,0,0,0, -782850902,Belinda Hocking,AUS,female,1990-09-14,1.67,57,aquatics,0,0,0, -152287521,Belinda Trussell,CAN,female,1971-08-27,1.6,50,equestrian,0,0,0, -925936432,Ben Blankenship,USA,male,1988-12-15,1.78,63,athletics,0,0,0, -8906492,Ben Kanute,USA,male,1992-12-14,1.83,70,triathlon,0,0,0, -614521259,Ben Maher,GBR,male,1983-01-30,1.64,50,equestrian,0,0,0, -249786185,Ben Pinkelman,USA,male,1994-06-13,1.94,99,rugby sevens,0,0,0, -905247284,Ben Proud,GBR,male,1994-09-21,1.89,92,aquatics,0,0,0, -193268614,Ben Saxton,GBR,male,1990-06-14,1.75,73,sailing,0,0,0, -499087119,Ben Saxton,CAN,male,1988-11-21,2,92,volleyball,0,0,0, -764834942,Ben Schwietert,NED,male,1997-02-16,1.92,83,aquatics,0,0,0, -922248947,Ben St Lawrence,AUS,male,1981-11-07,1.79,65,athletics,0,0,0, -43362179,Ben Uzoh,NGR,male,1988-03-18,1.91,92,basketball,0,0,0, -113110709,Ben Vogg,SUI,male,1992-09-07,1.8,73,equestrian,0,0,0, -727557746,Ben Youssef Meite,CIV,male,1986-11-11,1.8,75,athletics,0,0,0, -719296944,Bence Demeter,HUN,male,1990-03-20,1.8,72,modern pentathlon,0,0,0, -795193546,Bence Pulai,HUN,male,1991-10-27,1.93,89,aquatics,0,0,0, -282673343,Bence Venyercsan,HUN,male,1996-01-08,1.73,56,athletics,0,0,0, -197443251,Bendeguz Petervari-Molnar,HUN,male,1993-03-14,1.9,95,rowing,0,0,0, -890462649,Benedek Olah,FIN,male,1991-03-29,1.91,87,table tennis,0,0,0, -139635489,Benik Abrahamyan,GEO,male,1985-07-31,1.86,115,athletics,0,0,0, -181551295,Benjamin Auffret,FRA,male,1995-03-15,1.66,54,aquatics,0,0,0, -544916259,Benjamin Ceiner,HUN,male,1992-04-24,1.97,94,canoe,0,0,0, -899077018,Benjamin Compaore,FRA,male,1987-08-05,1.89,83,athletics,0,0,0, -301130953,Benjamin Didier Hennequin,FRA,male,1984-08-24,1.74,84,weightlifting,0,0,0, -857144847,Benjamin Enzema,GEQ,male,1989-03-25,1.7,63,athletics,0,0,0, -824789786,Benjamin Errol Provisor,USA,male,1990-06-26,1.73,88,wrestling,0,0,0, -811228409,Benjamin Fletcher,GBR,male,1992-03-13,1.85,100,judo,0,0,0, -192357893,Benjamin Gischard,SUI,male,1995-11-17,1.62,62,gymnastics,0,0,0, -202636824,Benjamin Gratz,HUN,male,1996-02-16,1.85,76,aquatics,0,0,0, -65135786,Benjamin Grez Ahrens,CHI,male,1992-12-03,1.81,76,sailing,0,0,0, -429748988,Benjamin Hallock,USA,male,1997-11-22,1.99,108,aquatics,0,0,0, -138745925,Benjamin Hockin Brusquetti,PAR,male,1986-09-27,1.95,90,aquatics,0,0,0, -678983494,Benjamin Kiplagat,UGA,male,1989-03-04,,,athletics,0,0,0, -594397202,Benjamin Lang,FRA,male,1987-02-04,1.86,86,rowing,0,0,0, -735684995,Benjamin Martin,CAN,male,1987-04-18,1.82,75,hockey,0,0,0, -917375467,Benjamin Savsek,SLO,male,1987-03-24,1.77,74,canoe,0,0,0, -279378478,Benjamin Schulte,GUM,male,1995-12-22,1.93,83,aquatics,0,0,0, -466190490,Benjamin Steffen,SUI,male,1982-03-08,1.89,78,fencing,0,0,0, -54447153,Benjamin Thorne,CAN,male,1993-03-19,1.8,56,athletics,0,0,0, -64578005,Benjamin Toniutti,FRA,male,1989-10-30,1.83,73,volleyball,0,0,0, -674024954,Benjamin Vadnai,HUN,male,1995-12-30,1.83,82,sailing,0,0,0, -121967304,Benjamin Waterhouse,ASA,male,1985-06-11,1.72,71,judo,0,0,0, -12228881,Benn Harradine,AUS,male,1982-10-14,1.98,115,athletics,0,0,0, -381218659,Benny Muziyo Muziyo,ZAM,male,1992-11-08,,,boxing,0,0,0, -580939747,Benoit Paire,FRA,male,1989-05-08,1.94,80,tennis,0,0,0, -544056432,Benson Gicharu Njangiru,KEN,male,1985-05-03,1.68,,boxing,0,0,0, -141851746,Benson Kiplagat Seurei,BRN,male,1984-03-27,1.75,60,athletics,0,0,0, -574621304,Berik Abdrakhmanov,KAZ,male,1986-06-20,1.65,,boxing,0,0,0, -662027088,Bernadette Graf,AUT,female,1992-06-25,1.75,70,judo,0,0,0, -951599589,Bernadette Pujals,MEX,female,1968-06-08,1.58,55,equestrian,0,0,0, -155963598,Bernadette Szocs,ROU,female,1995-03-05,1.59,48,table tennis,0,0,0, -347604292,Bernard Lagat,USA,male,1974-12-12,1.73,58,athletics,0,0,0, -78415215,Bernardin Ledoux Kingue Matam,FRA,male,1990-05-20,1.63,69,weightlifting,0,0,0, -839460124,Bernardo Baloyes,COL,male,1994-01-06,1.68,66,athletics,0,0,0, -833677171,Bernardo Guerrero Diaz,CHI,male,1986-06-10,1.9,75,rowing,0,0,0, -564965643,Bernardo Oliveira,BRA,male,1993-06-08,1.73,70,archery,0,0,0, -351550766,Bernardo Oneto Gomes,BRA,male,1993-11-12,1.88,90,aquatics,0,0,0, -44038366,Bernardo Rocha,BRA,male,1989-07-03,1.81,95,aquatics,0,0,0, -619849300,Bernd Wiesberger,AUT,male,1985-10-08,1.89,89,golf,0,0,0, -997731920,Bernhard Sieber,AUT,male,1990-08-06,1.8,72,rowing,0,0,0, -684096917,Berta Betanzos Moro,ESP,female,1988-01-15,1.79,71,sailing,0,0,0, -134339876,Berta Bonastre,ESP,female,1992-06-03,1.57,50,hockey,0,0,0, -98117610,Berta Garcia,ESP,female,1982-04-12,1.73,73,rugby sevens,0,0,0, -390927427,Berthrade Simone Flore Bikatal,CMR,female,1992-07-23,1.83,76,volleyball,0,0,0, -347904621,Bertrand Roine,QAT,male,1981-02-17,1.98,99,handball,0,0,0, -634276383,Beryl Gastaldello,FRA,female,1995-02-16,1.76,66,aquatics,0,0,0, -613088812,Beslan Mudranov,RUS,male,1986-07-07,1.66,60,judo,1,0,0, -822286344,Besu Sado,ETH,female,1996-06-12,1.72,56,athletics,0,0,0, -943971426,Beth Potter,GBR,female,1991-12-27,1.7,51,athletics,0,0,0, -552255079,Bethanie Mattek-Sands,USA,female,1985-03-23,1.68,65,tennis,1,0,0, -63368470,Betlhem Desalegn,UAE,female,1991-11-11,1.6,55,athletics,0,0,0, -325783858,Betsy Hassett,NZL,female,1990-08-04,1.58,56,football,0,0,0, -392303714,Betsy Saina,KEN,female,1988-06-30,1.52,47,athletics,0,0,0, -79046621,Betty Heidler,GER,female,1983-10-14,1.75,85,athletics,0,0,0, -690348095,Betzabeth Angelica Arguello Villegas,VEN,female,1991-01-28,1.64,53,wrestling,0,0,0, -523896033,Beverly Ramos,PUR,female,1987-08-24,1.68,52,athletics,0,0,0, -644567979,Bianca Farella,CAN,female,1992-04-10,1.73,73,rugby sevens,0,0,1, -826009653,Bianca Hammett,AUS,female,1990-09-12,1.72,55,aquatics,0,0,0, -427195390,Bianca Razor,ROU,female,1994-08-08,1.7,59,athletics,0,0,0, -579106443,Bianca Stuart,BAH,female,1988-05-17,,,athletics,0,0,0, -245553516,Bianca Walkden,GBR,female,1991-09-29,1.82,74,taekwondo,0,0,1, -179256116,Bianca Williams,GBR,female,1993-12-18,1.69,56,athletics,0,0,0, -164136445,Bianka Busa,SRB,female,1994-07-25,1.87,74,volleyball,0,1,0, -107444997,Biao Chai,CHN,male,1990-10-10,1.86,80,badminton,0,0,0, -589789761,Bibiro Ali Taher,CHA,female,1988-04-24,1.6,44,athletics,0,0,0, -440136772,Biko Adema,KEN,male,1987-09-01,1.77,85,rugby sevens,0,0,0, -583607934,Bilal Tabti,ALG,male,1993-06-07,1.75,62,athletics,0,0,0, -543026073,Bilel Mhamdi,TUN,male,1992-01-27,1.76,,boxing,0,0,0, -815957774,Biljana Pavicevic,MNE,female,1988-05-12,1.69,63,handball,0,0,0, -484484990,Billy Bakker,NED,male,1988-11-23,1.88,82,hockey,0,0,0, -585423464,Billy Besson,FRA,male,1981-03-08,1.69,69,sailing,0,0,0, -594152540,Billy Odhiambo,KEN,male,1993-11-07,1.84,95,rugby sevens,0,0,0, -787821587,Billy Scott Irakoze,BDI,male,1996-10-30,1.96,74,aquatics,0,0,0, -426790116,Bilyal Makhov,RUS,male,1987-09-20,2,125,wrestling,0,0,0, -613452490,Bin Dong,CHN,male,1988-11-22,1.8,74,athletics,0,0,1, -525898651,Bin Feng,CHN,female,1994-04-03,1.84,95,athletics,0,0,0, -877888215,Bin Lv,CHN,male,1994-10-18,1.65,,boxing,0,0,0, -420088639,Bin Yang,CHN,male,1989-07-10,1.8,80,wrestling,0,0,0, -774637226,Binbin Zhang,CHN,female,1989-02-23,1.64,55,shooting,0,1,0, -597092136,Bingtian Su,CHN,male,1989-08-29,1.73,70,athletics,0,0,0, -661948747,Bintou Dieme,SEN,female,1984-02-01,1.67,58,basketball,0,0,0, -442225974,Binyuan Hu,CHN,male,1977-11-07,1.8,75,shooting,0,0,0, -944420337,Birgit Koschischek,AUT,female,1987-05-22,1.69,61,aquatics,0,0,0, -271713930,Birgit Michels,GER,female,1984-09-28,1.78,70,badminton,0,0,0, -131536621,Birhanu Balew,BRN,male,1996-02-27,,,athletics,0,0,0, -774582149,Birsel Vardarli Demirmen,TUR,female,1984-07-12,1.75,60,basketball,0,0,0, -112486635,Birzhan Zhakypov,KAZ,male,1984-07-07,1.63,,boxing,0,0,0, -522639871,Bjorn Hornikel,GER,male,1992-05-06,1.92,91,aquatics,0,0,0, -470613425,Bjorn van den Ende,NED,male,1986-01-10,1.9,70,rowing,0,0,0, -221212634,Blabjerg Mathiasen,DEN,male,1995-01-11,1.85,78,football,0,0,0, -735422828,Blai Mallarach Guell,ESP,male,1987-08-21,1.87,87,aquatics,0,0,0, -395509377,Blair Cameron Bann,CAN,male,1988-02-26,1.84,84,volleyball,0,0,0, -304290646,Blair Evans,AUS,female,1991-04-03,1.75,65,aquatics,0,0,0, -157315163,Blair Hilton,NZL,male,1989-08-28,1.81,78,hockey,0,0,0, -930133339,Blair Tarrant,NZL,male,1990-05-11,1.85,83,hockey,0,0,0, -842741490,Blair Tuke,NZL,male,1989-07-25,1.81,78,sailing,1,0,0, -435079767,Blake Blackburn,AUS,male,1992-08-03,1.81,82,shooting,0,0,0, -993776091,Blake Gaudry,AUS,male,1991-11-29,1.79,72,gymnastics,0,0,0, -950950151,Blake Govers,AUS,male,1996-07-06,1.87,85,hockey,0,0,0, -570608473,Blake Pieroni,USA,male,1995-11-15,1.88,86,aquatics,1,0,0, -214905854,Blandine Dancette,FRA,female,1988-02-14,1.69,60,handball,0,0,0, -690400835,Blanka Vlasic,CRO,female,1983-11-08,1.93,71,athletics,0,0,1, -855954658,Blaz Blagotinsek,SLO,male,1994-01-17,2.02,108,handball,0,0,0, -21924133,Blaz Janc,SLO,male,1996-11-20,1.86,88,handball,0,0,0, -473644468,Blessing Oborududu,NGR,female,1989-03-12,1.63,63,wrestling,0,0,0, -95183266,Blessing Okagbare,NGR,female,1988-10-09,1.81,71,athletics,0,0,0, -306720792,Bo Qiu,CHN,male,1993-01-31,1.65,62,aquatics,0,0,0, -891887866,Boaz Meylink,NED,male,1984-03-22,1.95,93,rowing,0,0,1, -502149585,Bob de Voogd,NED,male,1988-09-16,1.83,80,hockey,0,0,0, -491078381,Bobae Ki,KOR,female,1988-02-20,1.67,57,archery,1,0,1,"The current world archery champion, Ki Bo-Bae won two golds at London 2012, in the individual and team events. That same year, this athlete from the Republic of Korea also won the world cup title." -650906817,Bobana Velickovic,SRB,female,1990-01-25,1.7,59,shooting,0,0,0, -112585422,Bobby Lea,USA,male,1983-10-17,1.88,77,cycling,0,0,0, -130126334,Bobur Shokirjonov,UZB,male,1990-12-05,1.95,105,athletics,0,0,0, -495066893,Bode Abiodun,NGR,male,1980-09-10,1.7,68,table tennis,0,0,0, -903668874,Bodi Turner,AUS,male,1994-09-18,1.8,81,cycling,0,0,0, -915515161,Bodin Isara,THA,male,1990-12-12,1.75,78,badminton,0,0,0, -215144146,Bodo Essissima Madeleine Samantha,CMR,female,1992-04-29,1.82,75,volleyball,0,0,0, -813532025,Boe Warawara,VAN,male,1995-01-26,,,boxing,0,0,0, -4071248,Bogdan Bogdanovic,SRB,male,1992-08-18,1.97,99,basketball,0,1,0, -68724456,Bogdan Nikishin,UKR,male,1980-05-29,1.88,85,fencing,0,0,0, -23204063,Boglarka Kapas,HUN,female,1993-04-22,1.68,54,aquatics,0,0,1, -49967537,Bogna Jozwiak,POL,female,1983-04-25,1.82,80,fencing,0,0,0, -585709776,Bohdan Bondarenko,UKR,male,1989-08-30,1.98,77,athletics,0,0,1, -309321530,Boitumelo Masilo,BOT,male,1995-08-05,,,athletics,0,0,0, -56310662,Bojan Bogdanovic,CRO,male,1989-04-18,2,103,basketball,0,0,0, -371663534,Bojan Tokic,SLO,male,1981-01-13,1.78,76,table tennis,0,0,0, -597510808,Bojana Popovic,MNE,female,1979-11-20,1.88,86,handball,0,0,0, -189764365,Bojana Zivkovic,SRB,female,1988-03-29,1.86,72,volleyball,0,1,0, -599338352,Bokai Huang,CHN,male,1996-09-26,1.9,78,athletics,0,0,0, -633981325,Bokyeong Jeong,KOR,female,1991-04-17,1.53,51,judo,0,1,0, -37603597,Bombayla Devi Laishram,IND,female,1985-02-22,1.64,60,archery,0,0,0, -969273805,Bomi Kim,KOR,female,1985-10-07,1.57,54,hockey,0,0,0, -841861773,Bonchan Ku,KOR,male,1993-01-31,1.81,84,archery,2,0,0, -593350909,Bongil Gu,KOR,male,1989-04-27,1.82,70,fencing,0,0,0, -947726,Boniface Mucheru Tumuti,KEN,male,1992-05-02,1.75,72,athletics,0,1,0, -25616888,Boonsak Ponsana,THA,male,1982-02-22,1.79,75,badminton,0,0,0, -678784901,Boonthung Srisung,THA,male,1981-05-30,1.71,59,athletics,0,0,0, -993211347,Bora Gulari,USA,male,1975-10-22,1.81,74,sailing,0,0,0, -310122376,Boris Balaz,SVK,male,1997-11-20,1.82,72,archery,0,0,0, -404999388,Boris Berian,USA,male,1992-12-19,1.83,69,athletics,0,0,0, -241752566,Boris Diaw,FRA,male,1982-04-16,2.03,115,basketball,0,0,0, -861405399,Boris Kirillov,AZE,male,1992-08-04,1.81,75,aquatics,0,0,0, -703703338,Boris Yotov,AZE,male,1996-02-25,1.93,93,rowing,0,0,0, -206019414,Borislav Stefanov Novachkov,BUL,male,1989-11-29,1.7,71,wrestling,0,0,0, -888969887,Borja Carrascosa,ESP,male,1982-02-05,1.82,71,equestrian,0,0,0, -142258251,Borja Fernandez,QAT,male,1981-12-25,2.06,110,handball,0,0,0, -200431710,Borja Vivas,ESP,male,1984-05-26,2.04,139,athletics,0,0,0, -139684134,Borna Coric,CRO,male,1996-11-14,1.85,78,tennis,0,0,0, -720390128,Borys Shvets,UKR,male,1991-08-20,1.75,65,sailing,0,0,0, -895703195,Bosco Perez-Pla,ESP,male,1987-09-26,1.8,78,hockey,0,0,0, -103791379,Bostjan Macek,SLO,male,1972-06-17,1.74,118,shooting,0,0,0, -876174352,Bouchra Fatima Zohra Hirech,ALG,female,2000-08-22,1.7,80,weightlifting,0,0,0, -142434686,Boudewijn Roell,NED,male,1989-05-12,1.95,100,rowing,0,0,1, -797423057,Bourhan Abro,DJI,male,1995-05-30,1.8,70,aquatics,0,0,0, -819043889,Boyd Martin,USA,male,1979-08-20,1.88,79,equestrian,0,0,0, -449397409,Bozo Starcevic,CRO,male,1988-12-11,1.72,78,wrestling,0,0,0, -573991365,Bradlee Ashby,NZL,male,1995-11-23,2,92,aquatics,0,0,0, -804733660,Bradley Adkins,USA,male,1993-12-30,1.89,79,athletics,0,0,0, -220375842,Bradley Edward Tandy,RSA,male,1991-05-02,1.58,86,aquatics,0,0,0, -901307783,Bradley Shaw,NZL,male,1983-02-13,1.81,92,hockey,0,0,0, -943842758,Bradley Vincent,MRI,male,1991-11-30,1.95,89,aquatics,0,0,0, -499035410,Bradley Wiggins,GBR,male,1980-04-28,1.9,82,cycling,1,0,0,"Olympic road cycling champion at London 2012, Bradley Wiggins also won the Tour de France that same summer. He has a further six medals, including three golds, obtained from Sydney 2000 to Beijing 2008 and plans to retire after Rio 2016." -139075859,Brady Ellison,USA,male,1988-10-27,1.81,86,archery,0,1,1, -140387635,Brahim Kaazouzi,MAR,male,1990-06-15,1.79,62,athletics,0,0,0, -85379844,Braian Toledo,ARG,male,1993-09-08,1.87,100,athletics,0,0,0, -327920403,Bralon Taplin,GRN,male,1992-05-08,,,athletics,0,0,0, -919979883,Branca Feres,BRA,female,1988-02-22,1.64,56,aquatics,0,0,0, -738096310,Brandon Jones,BIZ,male,1987-07-19,1.99,86,athletics,0,0,0, -995088210,Brandon McBride,CAN,male,1994-06-15,1.93,74,athletics,0,0,0, -148847003,Brandon Schuster,SAM,male,1998-04-23,1.88,75,aquatics,0,0,0, -152917319,Brandon Starc,AUS,male,1993-11-24,1.88,71,athletics,0,0,0, -873969989,Brandon Stone,RSA,male,1993-04-20,1.8,65,golf,0,0,0, -990046579,Brandon Valentine-Parris,VIN,male,1995-04-17,1.73,55,athletics,0,0,0, -128091825,Brandonn Almeida,BRA,male,1997-03-16,1.86,73,aquatics,0,0,0, -349293339,Branislav Mitrovic,SRB,male,1985-01-30,2.01,100,aquatics,1,0,0, -890726080,Brankica Mihajlovic,SRB,female,1991-04-13,1.9,83,volleyball,0,1,0, -826864352,Brave Lifa,MAW,male,1995-09-05,1.75,70,aquatics,0,0,0, -741657080,Brayan Garcia,HON,male,1993-05-26,1.75,69,football,0,0,0, -734779763,Brayan Ramirez,HON,male,1994-06-16,1.77,66,football,0,0,0, -193606583,Breanna Stewart,USA,female,1994-08-27,1.93,79,basketball,1,0,0, -630721644,Bredni Roque Mendoza,MEX,male,1987-11-11,1.6,69,weightlifting,0,0,0, -845586759,Breege Connolly,IRL,female,1978-02-01,1.63,54,athletics,0,0,0, -383824981,Brenda Bowskill,CAN,female,1992-04-21,1.7,68,sailing,0,0,0, -911119710,Brenda Flores,MEX,female,1991-09-04,1.63,50,athletics,0,0,0, -477118293,Brenda Martinez,USA,female,1987-09-08,1.71,56,athletics,0,0,0, -340440422,Brenda Rojas,ARG,female,1995-10-15,1.66,64,canoe,0,0,0, -293582359,Brenda Yamyleth Bailey Gomez,HON,female,1994-09-11,1.59,55,wrestling,0,0,0, -695503192,Brendan Boyce,IRL,male,1986-10-08,1.83,76,athletics,0,0,0, -262561474,Brendan Emmet Irvine,IRL,male,1996-05-17,1.67,,boxing,0,0,0, -170273040,Brendan Hodge,CAN,male,1984-12-31,1.8,72,rowing,0,0,0, -911726861,Brenden Bissett,CAN,male,1993-01-28,1.78,73,hockey,0,0,0, -42739871,Brendon Reading,AUS,male,1989-01-26,1.83,62,athletics,0,0,0, -321655820,Brendon Rodney,CAN,male,1992-04-09,1.95,80,athletics,0,0,1, -406829138,Brenessa Thompson,GUY,female,1996-07-22,1.63,62,athletics,0,0,0, -125216390,Brent Bookwalter,USA,male,1984-02-16,1.81,68,cycling,0,0,0, -998710520,Bret Bonanni,USA,male,1994-01-20,1.94,92,aquatics,0,0,0, -430001444,Brett Robinson,AUS,male,1991-05-08,1.76,60,athletics,0,0,0, -883824307,Brian Afanador,PUR,male,1997-03-06,1.75,68,table tennis,0,0,0, -234656577,Brian Babilonia,PUR,male,1994-09-16,1.8,66,cycling,0,0,0, -98906595,Brian Baker,USA,male,1985-04-30,1.91,77,tennis,0,0,0, -652345352,Brian Pintado,ECU,male,1995-07-29,1.68,57,athletics,0,0,0, -870923074,Brian Rosso,ARG,male,1987-08-16,1.84,84,rowing,0,0,0, -353066862,Briana Provancha,USA,female,1989-04-25,1.71,66,sailing,0,0,0, -861484261,Brianna Rollins,USA,female,1991-08-18,1.66,58,athletics,1,0,0, -123998646,Brianna Throssell,AUS,female,1996-02-10,1.75,61,aquatics,0,0,0, -542571086,Brianne Theisen Eaton,CAN,female,1988-12-18,1.75,64,athletics,0,0,1, -509052821,Brice Etes,MON,male,1984-04-11,1.85,73,athletics,0,0,0, -478313255,Brice Leverdez,FRA,male,1986-04-09,1.8,75,badminton,0,0,0, -237845996,Bridgitte Ellen Hartley,RSA,female,1983-07-14,1.74,65,canoe,0,0,0, -856612683,Brigita Virbalyte-Dimsiene,LTU,female,1985-02-01,1.63,48,athletics,0,0,0, -211902340,Brigitte Merlano,COL,female,1982-04-29,1.74,65,athletics,0,0,0, -44753775,Brigitte Ntiamoah,FRA,female,1994-03-05,1.72,66,athletics,0,0,0, -308919050,Brijesh Lawrence,SKN,male,1989-12-27,1.8,93,athletics,0,0,0, -345441615,Briken Calja,ALB,male,1990-02-19,1.7,69,weightlifting,0,0,0, -128651141,Brimin Kiprop Kipruto,KEN,male,1985-07-31,1.75,55,athletics,0,0,0, -349753082,Brinn Bevan,GBR,male,1997-06-16,1.65,62,gymnastics,0,0,0, -893795627,Britt Eerland,NED,female,1994-02-22,1.68,62,table tennis,0,0,0, -395081312,Britta Buthe,GER,female,1988-05-25,1.86,78,volleyball,0,0,0, -524776452,Brittany Benn,CAN,female,1989-04-23,1.65,68,rugby sevens,0,0,1, -837634473,Brittany Borman,USA,female,1989-07-01,1.83,77,athletics,0,0,0, -136154437,Brittany Crew,CAN,female,1994-03-06,1.78,112,athletics,0,0,0, -974255098,Brittany Elmslie,AUS,female,1994-06-19,1.8,69,aquatics,1,1,0, -975241751,Brittany Maclean,CAN,female,1994-03-03,1.68,59,aquatics,0,0,1, -667985741,Brittany O'Brien,AUS,female,1998-05-27,1.68,55,aquatics,0,0,0, -601613381,Brittany Rogers,CAN,female,1993-06-08,1.65,60,gymnastics,0,0,0, -387060457,Brittney Griner,USA,female,1990-10-18,2.03,94,basketball,1,0,0, -772781845,Brittney Reese,USA,female,1986-09-09,1.73,61,athletics,0,1,0, -476644551,Brock Motum,AUS,male,1990-10-16,2.08,107,basketball,0,0,0, -942791136,Bronte Barratt,AUS,female,1989-02-08,1.71,58,aquatics,0,1,0, -936338083,Bronte Campbell,AUS,female,1994-05-14,1.79,58,aquatics,1,0,0, -339065127,Bronwen Knox,AUS,female,1986-04-16,1.82,88,aquatics,0,0,0, -625465432,Brook Robertson,NZL,male,1994-02-19,1.94,95,rowing,0,0,0, -229593375,Brooke Crain,USA,female,1993-04-29,1.63,55,cycling,0,0,0, -198522539,Brooke Henderson,CAN,female,1997-09-10,1.63,50,golf,0,0,0, -723701996,Brooke Neal,NZL,female,1992-07-04,1.87,71,hockey,0,0,0, -176282194,Brooke Peris,AUS,female,1993-01-16,1.72,57,hockey,0,0,0, -290572119,Brooke Stratton,AUS,female,1993-07-12,,,athletics,0,0,0, -586492695,Brooke Sweat,USA,female,1986-03-27,1.73,69,volleyball,0,0,0, -873916818,Bruna,BRA,female,1985-10-16,1.78,65,football,0,0,0, -877478692,Bruna Farias,BRA,female,1992-05-19,1.56,51,athletics,0,0,0, -171915543,Bruna Takahashi,BRA,female,2000-07-19,1.7,54,table tennis,0,0,0, -641508892,Bruno Bethlem,BRA,male,1975-10-22,1.81,72,sailing,0,0,0, -462138517,Bruno Fernandes,POR,male,1994-09-08,1.82,80,football,0,0,0, -934893676,Bruno Fratus,BRA,male,1989-06-30,1.87,80,aquatics,0,0,0, -715319246,Bruno Hortelano,ESP,male,1991-09-18,1.8,70,athletics,0,0,0, -44169801,Bruno Lima,ARG,male,1996-02-04,1.98,87,volleyball,0,0,0, -436846514,Bruno Mendonca,BRA,male,1984-01-07,1.83,93,hockey,0,0,0, -696736168,Bruno Mossa Rezende,BRA,male,1986-07-02,1.9,76,volleyball,1,0,0, -836716137,Bruno Ortiz Canavate Ozeki,ESP,male,1993-02-15,1.94,88,aquatics,0,0,0, -68618209,Bruno Oscar Schmidt,BRA,male,1986-10-06,1.85,85,volleyball,1,0,0, -671022008,Bruno Paes,BRA,male,1993-06-24,1.77,76,hockey,0,0,0, -248706880,Bruno Passaro,ARG,male,1989-02-10,1.75,72,equestrian,0,0,0, -365680500,Bruno Soares,BRA,male,1982-02-27,1.8,75,tennis,0,0,0, -313463896,Bruno Varela,POR,male,1994-11-04,1.9,80,football,0,0,0, -118251415,Bruno de Barros,BRA,male,1987-01-07,1.82,85,athletics,0,0,0, -526513149,Bryan Acosta,HON,male,1993-11-24,1.75,74,football,0,0,0, -442636270,Bryan Gabriel Sola Zambrano,ECU,male,1992-04-03,1.78,75,rowing,0,0,0, -682193857,Bryan Keane,IRL,male,1980-08-20,1.75,65,triathlon,0,0,0, -692740020,Bryden Nicholas,COK,male,1989-03-10,1.7,70,canoe,0,0,0, -159693755,Bryony Page,GBR,female,1990-12-10,1.72,62,gymnastics,0,1,0, -358642208,Bryony Shaw,GBR,female,1983-04-28,1.66,60,sailing,0,0,0, -257258199,Bubba Watson,USA,male,1978-11-05,1.91,81,golf,0,0,0, -833335595,Buly da Conceicao Triste,STP,male,1991-07-04,1.64,58,canoe,0,0,0, -326008552,Bunturabie Jalloh,SLE,female,1998-05-10,,79,aquatics,0,0,0, -581220953,Burkheart Ellis Jr,BAR,male,1992-09-18,1.91,85,athletics,0,0,0, -613127539,Buse Tosun,TUR,female,1995-12-05,1.73,69,wrestling,0,0,0, -436450943,Bush Mwale,KEN,male,1993-11-14,1.85,92,rugby sevens,0,0,0, -510153828,Busra Katipoglu,TUR,female,1992-01-17,1.65,63,judo,0,0,0, -812259982,Byambajav Tseveenravdan,MGL,male,1990-07-07,1.69,58,athletics,0,0,0, -942162925,Byeonghun An,KOR,male,1991-09-17,1.87,87,golf,0,0,0, -888329699,Byeongkwang Choe,KOR,male,1991-04-07,1.85,73,athletics,0,0,0, -920028907,Byron Robinson,USA,male,1995-05-10,1.76,74,athletics,0,0,0, -252432878,C.T. Pan,TPE,male,1991-11-12,1.68,65,golf,0,0,0, -598623977,Caba Siladji,SRB,male,1990-08-23,1.85,77,aquatics,0,0,0, -247346852,Caeleb Dressel,USA,male,1996-08-16,1.91,86,aquatics,2,0,0, -914044399,Cagla Buyukakcay,TUR,female,1989-09-28,1.72,58,tennis,0,0,0, -406549874,Caia van Maasakker,NED,female,1989-04-05,1.8,69,hockey,0,1,0, -18622820,Caileigh Filmer,CAN,female,1996-12-18,1.69,76,rowing,0,0,0, -196015602,Caio Bonfim,BRA,male,1991-03-19,1.74,60,athletics,0,0,0, -959903896,Caitlin Cooper,AUS,female,1988-02-12,1.71,66,football,0,0,0, -181162100,Caitlin Foord,AUS,female,1994-11-11,1.65,58,football,0,0,0, -233739460,Caitlin Ryan,NZL,female,1992-02-09,1.78,95,canoe,0,0,0, -637321391,Caitlin Sargent-Jones,AUS,female,1992-06-14,1.71,60,athletics,0,0,0, -147956765,Caitlin van Sickle,USA,female,1990-01-26,1.66,58,hockey,0,0,0, -100675394,Cale Simmons,USA,male,1991-02-05,,,athletics,0,0,0, -715671042,Caleb Mwangangi Ndiku,KEN,male,1992-10-09,1.67,65,athletics,0,0,0, -521652208,Caleb Paine,USA,male,1990-11-15,1.91,97,sailing,0,0,1, -47877217,Caleb Shepherd,NZL,male,1993-06-29,1.68,55,rowing,0,0,0, -7468287,Callum Hawkins,GBR,male,1992-06-22,1.79,62,athletics,0,0,0, -205286149,Callum Scotson,AUS,male,1996-08-10,1.84,77,cycling,0,1,0, -598986059,Callum Skinner,GBR,male,1992-08-20,1.87,93,cycling,1,1,0, -227626203,Calvyn Justus,RSA,male,1995-12-14,1.95,70,aquatics,0,0,0, -638140243,Cam Kurle,GBR,male,1997-07-19,1.86,66,aquatics,0,0,0, -665917259,Camelia Hotea,ROU,female,1984-10-27,1.75,64,handball,0,0,0, -379834078,Cameron Bairstow,AUS,male,1990-12-07,2.06,118,basketball,0,0,0, -673317793,Cameron Clark,AUS,male,1993-03-20,1.85,84,rugby sevens,0,0,0, -115794046,Cameron Girdlestone,AUS,male,1988-04-29,1.9,92,rowing,0,1,0, -464109574,Cameron McEvoy,AUS,male,1994-05-13,1.85,75,aquatics,0,0,2, -744574832,Cameron Pimentel,BER,male,1991-04-13,1.83,80,sailing,0,0,0, -87311280,Cameron Smedley,CAN,male,1990-10-09,1.78,75,canoe,0,0,0, -59463747,Cameron van der Burgh,RSA,male,1988-05-25,1.85,85,aquatics,0,1,0, -62078309,Camila,BRA,female,1994-10-10,1.59,60,football,0,0,0, -761225267,Camila Pedrosa,BRA,female,1975-03-12,1.72,68,aquatics,0,0,0, -403141016,Camila Valle Granados,PER,female,1995-07-07,1.6,60,rowing,0,0,0, -814870853,Camilla Cattaneo,ITA,female,1990-02-12,1.73,54,aquatics,0,0,0, -711276110,Camilla Cedercreutz,FIN,female,1993-01-31,1.67,66,sailing,0,0,0, -338343277,Camilla Hattersley,GBR,female,1995-02-24,1.74,59,aquatics,0,0,0, -384002345,Camilla Herrem,NOR,female,1986-10-08,1.67,,handball,0,0,1, -439378306,Camilla Kruger,ZIM,female,1986-09-19,1.61,51,equestrian,0,0,0, -118087738,Camilla Patriarca,ITA,female,1994-11-04,1.7,50,gymnastics,0,0,0, -766408669,Camilla Speirs,IRL,female,1989-08-23,1.54,57,equestrian,0,0,0, -187290528,Camille Abily,FRA,female,1984-12-05,1.68,60,football,0,0,0, -373069016,Camille Ayglon Saurina,FRA,female,1985-05-21,1.8,66,handball,0,1,0, -788191192,Camille Cheng,HKG,female,1993-05-09,1.78,65,aquatics,0,0,0, -919018525,Camille Grassineau,FRA,female,1990-09-10,1.65,58,rugby sevens,0,0,0, -614590923,Camille Lacourt,FRA,male,1985-04-22,2,85,aquatics,0,0,0, -510528142,Camille Lecointre,FRA,female,1985-02-25,1.59,56,sailing,0,0,1, -241013969,Camilyne Oyuayo,KEN,female,1982-04-16,1.67,72,rugby sevens,0,0,0, -94450987,Cammile Adams,USA,female,1991-09-11,1.73,65,aquatics,0,0,0, -495694072,Cancan Ren,CHN,female,1988-01-26,1.68,,boxing,0,0,1, -595425335,Candie Kung,TPE,female,1981-08-08,1.7,70,golf,0,0,0, -873362411,Cansel Deniz,KAZ,female,1991-08-26,1.75,67,taekwondo,0,0,0, -705883507,Caridad Jerez,ESP,female,1991-01-23,1.66,58,athletics,0,0,0, -978280243,Carin Stromberg,SWE,female,1993-07-10,1.84,83,handball,0,0,0, -725855648,Carina Ana Garcia Kradolfer,BOL,female,1984-01-03,1.6,58,shooting,0,0,0, -448095596,Carina Baer,GER,female,1990-01-23,1.85,75,rowing,1,0,0, -840008522,Carina Horn,RSA,female,1989-03-09,1.68,62,athletics,0,0,0, -337197215,Carl Dohmann,GER,male,1990-05-18,1.83,62,athletics,0,0,0, -570448421,Carl Fredrik Stefan Schoen,SWE,male,1987-07-11,1.87,102,wrestling,0,0,0, -48374531,Carl Hester,GBR,male,1967-06-29,1.82,86,equestrian,0,1,0, -123412011,Carla Nelte,GER,female,1990-09-21,1.71,60,badminton,0,0,0, -415538486,Carla Rebecchi,ARG,female,1984-09-07,1.63,55,hockey,0,0,0, -728630028,Carla Salome Rocha,POR,female,1990-04-25,1.57,46,athletics,0,0,0, -873188308,Carla Suarez Navarro,ESP,female,1988-09-03,1.62,61,tennis,0,0,0, -226631924,Carles Castillejo,ESP,male,1978-08-18,1.65,61,athletics,0,0,0, -714231073,Carli Lloyd,USA,female,1989-08-06,1.8,75,volleyball,0,0,1, -228340991,Carli Lloyd,USA,female,1982-07-16,1.72,61,football,0,0,0,"Voted the best player in the world by FIFA, in 2015, the USA's Carli Lloyd has two gold medals, taken at Beijing 2008 and London 2012. In China, this midfielder scored an extra-time goal that gave her country the win in the final." -323715305,Carlien Dirkse van den Heuvel,NED,female,1987-04-16,1.7,56,hockey,0,1,0, -215241067,Carlin Isles,USA,male,1989-11-21,1.73,74,rugby sevens,0,0,0, -549956425,Carline Bouw,NED,female,1984-12-14,1.84,72,rowing,0,1,0, -807476315,Carline Muir,CAN,female,1987-10-01,1.7,65,athletics,0,0,0, -233428453,Carling Zeeman,CAN,female,1991-05-27,1.87,85,rowing,0,0,0, -924818266,Carlo Tacchini,ITA,male,1995-01-25,1.76,73,canoe,0,0,0, -132849150,Carlos Alberto Ramirez Yepes,COL,male,1994-03-12,1.78,65,cycling,0,0,1, -639279380,Carlos Andres Mina,ECU,male,1992-04-30,1.87,,boxing,0,0,0, -654897957,Carlos Andres Munoz Jaramillo,COL,male,1992-08-03,1.8,75,wrestling,0,0,0, -929589986,Carlos Arturo Izquierdo Mendez,COL,male,1997-10-02,1.82,74,wrestling,0,0,0, -875748101,Carlos Cisneros,MEX,male,1993-08-30,1.75,72,football,0,0,0, -992315197,Carlos Claverie,VEN,male,1996-09-19,1.95,85,aquatics,0,0,0, -664891338,Carlos Coloma Nicolas,ESP,male,1981-09-28,1.71,65,cycling,0,0,1, -562138964,Carlos Delfino,ARG,male,1982-08-29,2,95,basketball,0,0,0, -955217464,Carlos Eduardo Quipo Pilataxi,ECU,male,1990-05-17,1.56,,boxing,0,0,0, -520489478,Carlos Fierro,MEX,male,1994-07-23,1.75,69,football,0,0,0, -487944267,Carlos Guerra,MEX,male,1981-08-03,1.96,95,volleyball,0,0,0, -770819591,Carlos Lemos,COL,male,1988-06-03,1.83,76,athletics,0,0,0, -666394255,Carlos Lobos Munoz,CHI,male,1980-12-21,1.75,73,equestrian,0,0,0, -120477759,Carlos Mario Oquendo Zabala,COL,male,1987-11-16,1.86,85,cycling,0,0,0, -744295667,Carlos Parro,BRA,male,1979-06-05,1.79,76,equestrian,0,0,0, -983424219,Carlos Peralta Gallego,ESP,male,1994-01-30,1.65,60,aquatics,0,0,0, -572124752,Carlos Ruben Navarro Valdez,MEX,male,1996-05-08,1.77,58,taekwondo,0,0,0, -279620317,Carlos Salcedo,MEX,male,1993-09-29,1.84,82,football,0,0,0, -561704538,Carlos Tobalina,ESP,male,1985-08-02,1.88,120,athletics,0,0,0, -318016892,Carlos Zenon Balderas Jr.,USA,male,1996-08-24,1.76,,boxing,0,0,0, -848682435,Carlota Ciganda,ESP,female,1990-06-01,1.74,68,golf,0,0,0, -707042640,Carlota Petchame,ESP,female,1990-06-25,1.6,53,hockey,0,0,0, -637147877,Carlotta Ferlito,ITA,female,1995-02-15,1.6,50,gymnastics,0,0,0, -383488560,Carlotta Zofkova,ITA,female,1993-02-22,1.83,74,aquatics,0,0,0, -11238404,Carmelo Anthony,USA,male,1984-05-29,2.03,109,basketball,1,0,0, -477040413,Carmen Farmer,USA,female,1980-12-04,1.86,81,rugby sevens,0,0,0, -440033203,Carmen Martin,ESP,female,1988-05-29,1.72,72,handball,0,0,0, -638974451,Carmen Marton,AUS,female,1986-06-30,1.72,67,taekwondo,0,0,0, -529017724,Carmen Patricia Martinez,PAR,female,1982-12-26,1.6,55,athletics,0,0,0, -692509182,Carmiesha Cox,BAH,female,1995-05-16,,,athletics,0,0,0, -386843805,Carmine Tommasone,ITA,male,1984-03-30,1.67,,boxing,0,0,0, -179760844,Carola Salvatella,ESP,female,1994-07-08,1.71,58,hockey,0,0,0, -331103388,Carolena Carstens,PAN,female,1996-01-18,1.68,57,taekwondo,0,0,0, -622673655,Carolin Golubytskyi,GER,female,1985-12-19,1.67,57,fencing,0,0,0, -751199209,Carolin Schafer,GER,female,1991-12-05,1.78,65,athletics,0,0,0, -999509819,Carolina Aguirre,COL,female,1996-01-29,1.6,59,archery,0,0,0, -809071082,Carolina Arbelaez,COL,female,1995-03-08,1.61,55,football,0,0,0, -467587531,Carolina Arias,COL,female,1990-09-02,1.59,52,football,0,0,0, -552675291,Carolina Castillo Hidalgo,COL,female,1990-11-04,1.57,48,wrestling,0,0,0, -905750537,Carolina Marin,ESP,female,1993-06-15,1.72,65,badminton,1,0,0,"At 23, Spain's Carolina Marin is a two-time world and European singles champion and one of the highest placed players in the world rankings. Her feats on the Badminton court led to Marin receiving her country's athlete of the year award in 2014." -362193279,Carolina Rodriguez,ESP,female,1986-05-24,1.64,48,gymnastics,0,0,0, -275280990,Carolina Rodriguez Gutierrez,MEX,female,1993-09-30,1.63,80,cycling,0,0,0, -488698668,Carolina Routier,ESP,female,1990-04-23,1.72,60,triathlon,0,0,0, -763290090,Carolina Werner,GER,female,1994-03-02,1.68,58,sailing,0,0,0, -237276170,Caroline Buchanan,AUS,female,1990-10-24,1.65,68,cycling,0,0,0,"World runner-up this year at the BMX Championships in Colombia, Australia's Caroline Buchanan is known as much for her social media activity. She recently launched her own video channel, called Buchanan on Air." -618435469,Caroline Garcia,FRA,female,1993-10-16,1.77,61,tennis,0,0,0, -8177230,Caroline Kumahara,BRA,female,1995-07-27,1.66,58,table tennis,0,0,0, -965494911,Caroline Ladagnous,FRA,female,1988-09-22,1.72,65,rugby sevens,0,0,0, -454726580,Caroline Marton,AUS,female,1984-04-14,1.68,56,taekwondo,0,0,0, -378248537,Caroline Masson,GER,female,1989-05-14,1.73,72,golf,0,0,0, -479238224,Caroline Seger,SWE,female,1985-03-19,1.73,62,football,0,1,0, -53417800,Caroline Wozniacki,DEN,female,1990-07-11,1.79,65,tennis,0,0,0, -396948755,Carolle Zahi,FRA,female,1994-06-12,1.7,66,athletics,0,0,0, -633400313,Carrie Smith,AUS,female,1995-01-28,1.65,55,sailing,0,0,0, -37516553,Carsten Mogensen,DEN,male,1983-07-24,1.88,75,badminton,0,0,0, -944589858,Carvin Nkanata,KEN,male,1991-05-06,,,athletics,0,0,0, -666382963,Casey Dumont,AUS,female,1992-01-25,1.8,82,football,0,0,0, -899383164,Casey Eichfeld,USA,male,1989-11-15,1.78,77,canoe,0,0,0, -472505034,Casey Patterson,USA,male,1980-04-20,1.99,88,volleyball,0,0,0, -503788455,Casey Sablowski,AUS,female,1989-03-19,1.7,62,hockey,0,0,0, -450608241,Casper Mortensen,DEN,male,1989-12-14,1.9,88,handball,1,0,0, -452251425,Casper Nielsen,DEN,male,1994-04-29,1.8,70,football,0,0,0, -583629384,Casper Pedersen,DEN,male,1996-03-15,1.86,74,cycling,0,0,0, -579676651,Casper von Folsach,DEN,male,1993-03-30,1.91,82,cycling,0,0,1, -289009980,Cassandre Beaugrand,FRA,female,1997-05-23,1.77,54,triathlon,0,0,0, -105404448,Cassio Cesar Rippel,BRA,male,1978-05-02,1.93,95,shooting,0,0,0, -858551569,Cassio Rivetti,UKR,male,1980-02-20,1.75,65,equestrian,0,0,0, -190873405,Caster Semenya,RSA,female,1991-01-07,1.78,70,athletics,1,0,0, -654622452,Catalina Elena Escobar Gomez,COL,female,1990-09-21,1.56,50,gymnastics,0,0,0, -768142063,Catalina Perez,COL,female,1994-11-08,1.74,60,football,0,0,0, -943865464,Catalina Ponor,ROU,female,1987-08-20,1.56,47,gymnastics,0,0,0, -885026394,Catalina Usme,COL,female,1989-12-25,1.68,67,football,0,0,0, -468505846,Cate Campbell,AUS,female,1992-05-20,1.86,74,aquatics,1,1,0, -576401005,Caterine Ibarguen,COL,female,1984-02-12,1.85,70,athletics,1,0,0, -985557149,Catharine Pendrel,CAN,female,1980-09-30,1.66,50,cycling,0,0,1, -638981587,Catherine Abilla,KEN,female,1989-04-01,1.62,56,rugby sevens,0,0,0, -974386617,Catherine Beauchemin-Pinard,CAN,female,1994-06-26,1.61,57,judo,0,0,0, -315097608,Catherine Bertone,ITA,female,1972-05-06,1.6,45,athletics,0,0,0, -578087972,Catherine Bott,NZL,female,1995-04-22,1.65,62,football,0,0,0, -62565482,Catherine Meili,USA,female,1991-04-16,1.71,61,aquatics,1,0,1, -567465355,Catherine Skinner,AUS,female,1990-02-11,1.72,80,shooting,1,0,0, -761809056,Cathrine Dufour,DEN,female,1992-01-02,1.7,68,equestrian,0,0,0, -980333381,Catia Azevedo,POR,female,1994-03-09,1.7,50,athletics,0,0,0, -187632862,Catriel Andres Soto,ARG,male,1987-04-29,1.75,68,cycling,0,0,0, -255503629,Catriona Matthew,GBR,female,1969-08-25,1.63,60,golf,0,0,0, -694774919,Cayla George,AUS,female,1989-05-01,1.92,90,basketball,0,0,0, -71279109,Caylee Watson,ISV,female,1994-10-10,,,aquatics,0,0,0, -999104659,Cazuo Matsumoto,BRA,male,1985-08-02,1.8,88,table tennis,0,0,0, -869798237,Cecil Afrika,RSA,male,1988-03-03,1.75,75,rugby sevens,0,0,1, -558867540,Cecile Pieper,GER,female,1994-08-31,1.66,56,hockey,0,0,1, -369221148,Cecilia Berder,FRA,female,1989-12-13,1.74,65,fencing,0,0,0, -728202401,Cecilia Bouele,CGO,female,1993-01-07,1.66,60,athletics,0,0,0, -721352055,Cecilia Carranza Saroli,ARG,female,1986-12-29,1.64,63,sailing,1,0,0, -333612989,Cecilia Perez,MEX,female,1991-11-01,1.65,53,triathlon,0,0,0, -958457739,Cecilia Wollmann,BER,female,1998-01-23,1.64,60,sailing,0,0,0, -947360474,Cedric Charlier,BEL,male,1987-11-27,1.81,81,hockey,0,1,0, -82592097,Cedric Dubler,AUS,male,1995-01-13,,,athletics,0,0,0, -408751160,Cedric Sorhaindo,FRA,male,1984-06-07,1.92,110,handball,0,1,0, -437255555,Ceiber David Avila,COL,male,1989-05-26,1.63,,boxing,0,0,0, -245970037,Cejhae Greene,ANT,male,1995-10-06,1.74,72,athletics,0,0,0, -205420967,Celeste Plak,NED,female,1995-10-26,1.9,90,volleyball,0,0,0, -388140867,Celestin Nihorimbere,BDI,male,1993-01-11,1.67,55,athletics,0,0,0, -537701944,Celestine Masinde,KEN,female,1987-01-12,1.62,60,rugby sevens,0,0,0, -636512936,Celiangeli Morales,PUR,female,1985-11-02,1.65,63,athletics,0,0,0, -978104747,Celine Distel-Bonnet,FRA,female,1987-05-25,1.7,59,athletics,0,0,0, -582673345,Celine Goberville,FRA,female,1986-09-19,1.56,53,shooting,0,0,0, -290030374,Celio Dias,POR,male,1993-02-08,1.88,90,judo,0,0,0, -206341910,Celma Bonfim da Graca,STP,female,1977-12-23,1.65,58,athletics,0,0,0, -291597305,Celso Oliveira,BRA,male,1988-10-28,1.88,88,canoe,0,0,0, -991308199,Celtus Williams Abiola Dossou Yovo,BEN,male,1986-04-01,1.75,89,judo,0,0,0, -69938071,Cem Yilmaz,TUR,male,1982-06-03,1.8,70,rowing,0,0,0, -300985690,Cenk Ildem,TUR,male,1986-01-05,1.8,98,wrestling,0,0,1, -435408046,Cesar Augusto Almeida,BRA,male,1989-01-06,1.88,98,handball,0,0,0, -518609220,Cesar Castro,BRA,male,1982-09-02,1.75,73,aquatics,0,0,0, -454137543,Cesar Ernesto de Cesare,ECU,male,1980-07-12,1.9,92,canoe,0,0,0, -15259050,Cesar Marcano,VEN,male,1987-10-22,1.77,76,cycling,0,0,0, -427211622,Cesar Montes,MEX,male,1997-02-24,1.91,70,football,0,0,0, -794568410,Cesar Sempere,ESP,male,1984-05-26,1.82,86,rugby sevens,0,0,0, -844330987,Cesar Y. Ruiz,CUB,male,1995-01-18,1.84,77,athletics,0,0,0, -51787706,Chad Guy Bertrand le Clos,RSA,male,1992-04-12,1.9,83,aquatics,0,2,0,"Chad le Clos dream came true at London 2012, when he beat Michael Phelps to win gold in the 200m butterfly. This South African swimmer also won silver in the 100m butterfly – before winning the even at the 2015 world championship." -797308674,Chad Ho,RSA,male,1990-06-21,1.72,75,aquatics,0,0,0, -406780652,Chaebin Im,KOR,male,1991-10-29,1.69,75,cycling,0,0,0, -300475041,Chafik Bouaoud,ALG,male,1999-02-12,1.77,74,shooting,0,0,0, -388718541,Chagnaadorj Usukhbayar,MGL,male,1997-05-06,1.55,56,weightlifting,0,0,0, -465407360,Chahinez Nasri,TUN,female,1996-06-03,1.68,51,athletics,0,0,0, -355057478,Chaim Schalk,CAN,male,1986-04-23,1.95,88,volleyball,0,0,0, -143002811,Chain Singh,IND,male,1989-04-05,1.72,68,shooting,0,0,0, -845845123,Chakir Ansari,MAR,male,1991-06-22,1.68,57,wrestling,0,0,0, -738060846,Chala Beyo,ETH,male,1996-01-18,1.76,58,athletics,0,0,0, -175009938,Chamara Repiyallage,SRI,male,1992-05-10,1.6,73,judo,0,0,0, -278008849,Chamberlain Oguchi,NGR,male,1986-04-28,1.98,90,basketball,0,0,0, -723338672,Chandanda Thimmaiah,IND,male,1991-01-18,1.71,61,hockey,0,0,0, -974332557,Chandong Lee,KOR,male,1993-01-10,1.83,83,football,0,0,0, -523414424,Changgeun Lee,KOR,male,1993-08-30,,,football,0,0,0, -328876180,Changhoon Kwon,KOR,male,1994-06-30,1.74,66,football,0,0,0, -981134521,Changjin Moon,KOR,male,1993-07-12,1.7,63,football,0,0,0, -988404471,Changju Kim,KOR,male,1985-09-20,1.78,69,sailing,0,0,0, -134774857,Changmin Lee,KOR,male,1994-01-20,1.78,74,football,0,0,0, -200603322,Changning Zhang,CHN,female,1995-11-06,1.93,79,volleyball,1,0,0, -965944116,Changrim An,KOR,male,1994-03-02,1.7,73,judo,0,0,0, -428792415,Changrui Xue,CHN,male,1991-05-31,1.88,75,athletics,0,0,0, -278225437,Changzhou Huang,CHN,male,1994-08-20,1.86,73,athletics,0,0,0, -227590205,Chanice Chase,CAN,female,1993-08-06,1.73,61,athletics,0,0,0, -66906563,Chantal Achterberg,NED,female,1985-04-16,1.72,72,rowing,0,1,0, -25695000,Chantal Hoffmann,LUX,female,1987-10-30,1.67,62,cycling,0,0,0, -543504980,Chantal Van Landeghem,CAN,female,1994-03-05,1.8,77,aquatics,0,0,1, -797864870,Chantelle Esau,RSA,female,1990-12-14,1.63,52,football,0,0,0, -327647564,Chanu Saikhom Mirabai,IND,female,1994-08-08,1.45,48,weightlifting,0,0,0, -912660957,Chao He,CHN,male,1992-02-11,1.68,67,aquatics,0,0,0, -89640785,Chao Xu,CHN,male,1994-11-05,1.85,82,cycling,0,0,0, -248093384,Chao Yue,CHN,female,1991-01-05,1.65,50,athletics,0,0,0, -176787590,Chao Zhou,CHN,female,1987-01-12,1.7,70,judo,0,0,0, -516647126,Chaopan Lin,CHN,male,1995-08-27,1.63,60,gymnastics,0,0,1, -569192989,Charity Williams,CAN,female,1996-10-20,1.62,68,rugby sevens,0,0,1, -957327519,Charlene Woitha,GER,female,1993-08-21,1.78,77,athletics,0,0,0, -792508512,Charles Albert Shone Conwell,USA,male,1997-11-02,1.76,,boxing,0,0,0, -624227669,Charles Chibana,BRA,male,1989-09-11,1.63,66,judo,0,0,0, -32540693,Charles Cole,USA,male,1986-06-21,1.94,90,rowing,0,0,0, -607494288,Charles Correa,BRA,male,1992-10-09,1.59,58,canoe,0,0,0, -91062898,Charles Fernandez,GUA,male,1995-12-28,1.81,74,modern pentathlon,0,0,0, -557871221,Charles Grethen,LUX,male,1992-06-02,1.8,68,athletics,0,0,0, -15332817,Charles Jock,USA,male,1989-11-23,1.91,74,athletics,0,0,0, -262046958,Charles Kahudi,FRA,male,1986-07-19,1.97,104,basketball,0,0,0, -935795662,Charles Philibert-Thiboutot,CAN,male,1990-12-31,1.82,63,athletics,0,0,0, -763413652,Charles Yosei Muneria,KEN,male,1996-02-10,1.67,55,athletics,0,0,0, -762626712,Charley Hull,GBR,female,1996-03-20,1.7,70,golf,0,0,0, -373271527,Charlie Buckingham,USA,male,1989-01-16,1.88,81,sailing,0,0,0, -617780689,Charlie Grice,GBR,male,1993-11-07,1.82,70,athletics,0,0,0, -932285565,Charline Mathias,LUX,female,1992-05-23,1.73,60,athletics,0,0,0, -889819769,Charline Picon,FRA,female,1984-12-23,1.69,57,sailing,1,0,0, -477185472,Charline van Snick,BEL,female,1990-09-02,1.57,48,judo,0,0,0, -647849033,Charlotta Fougberg,SWE,female,1985-06-19,1.65,51,athletics,0,0,0, -445362383,Charlotte Becker,GER,female,1983-05-19,1.73,64,cycling,0,0,0, -721017208,Charlotte Bonin,ITA,female,1987-02-10,1.73,60,triathlon,0,0,0, -403574731,Charlotte Bonnet,FRA,female,1995-02-14,1.75,64,aquatics,0,0,0, -865933496,Charlotte Caslick,AUS,female,1995-03-09,1.72,65,rugby sevens,1,0,0, -172842725,Charlotte Dobson,GBR,female,1986-06-05,1.68,62,sailing,0,0,0, -118964304,Charlotte Dujardin,GBR,female,1985-07-12,1.7,57,equestrian,1,1,0,"The London 2012 Olympic champion in the individual and team events, Briton Charlotte Dujardin was the first to win the main equestrian dressage titles: Olympic gold, the World Championship, the World Cup and the European Championship." -833774216,Charlotte Harrison,NZL,female,1989-07-31,1.67,55,hockey,0,0,0, -841791715,Charlotte Lembach,FRA,female,1988-04-01,1.64,57,fencing,0,0,0, -634284739,Charlotte Mordasini,SWE,female,1988-12-31,1.71,60,equestrian,0,0,0, -996536701,Charlotte Stapenhorst,GER,female,1995-06-15,1.68,68,hockey,0,0,1, -837449921,Charlotte Sutherland,AUS,female,1991-06-26,1.8,76,rowing,0,0,0, -892102101,Charlotte Taylor,GBR,female,1985-08-14,1.65,57,rowing,0,0,0, -660698958,Charlotte Wingfield,MLT,female,1994-11-30,1.73,69,athletics,0,0,0, -534915497,Charly Coronel Suarez,PHI,male,1988-08-14,1.68,,boxing,0,0,0, -280839325,Chase Kalisz,USA,male,1994-03-07,1.94,86,aquatics,0,1,0, -172605040,Chatchai Butdee,THA,male,1985-03-26,1.66,,boxing,0,0,0, -851008982,Chatuphum Chinnawong,THA,male,1993-07-19,1.67,77,weightlifting,0,0,0, -714871025,Chaunte Lowe,USA,female,1984-01-12,1.76,59,athletics,0,0,0, -680189509,Chavaughn Walsh,ANT,male,1987-12-29,1.8,72,athletics,0,0,0, -284105289,Cheick Sallah Junior Cisse,CIV,male,1993-09-19,1.9,,taekwondo,1,0,0, -105081370,Chelsea Jaensch,AUS,female,1985-01-06,1.63,56,athletics,0,0,0, -638380672,Chelsea Lea Gubecka,AUS,female,1998-09-08,1.62,62,aquatics,0,0,0, -774700015,Chen Gao,CHN,female,1992-08-11,1.7,58,football,0,0,0, -355354758,Chen Shen,CHN,female,1990-07-28,1.71,62,fencing,0,0,0, -332886320,Chen Xu,CHN,male,1984-11-29,1.88,82,badminton,0,0,0, -886188106,Chen-Ling Lien,TPE,female,1988-01-31,1.68,57,judo,0,0,0, -247619979,Chenggang Yu,CHN,male,1984-02-23,1.81,72,rowing,0,0,0, -220688472,Chenglong Zhang,CHN,male,1989-05-12,1.73,65,gymnastics,0,0,1, -831305339,Chengxin Yin,CHN,female,1995-02-05,1.7,55,aquatics,0,1,0, -397297354,Chenlu Qin,CHN,male,1992-10-24,1.75,70,cycling,0,0,0, -98995708,Cherif Younousse Samba,QAT,male,1995-05-22,1.94,77,volleyball,0,0,0, -543666131,Cheslin Kolbe,RSA,male,1993-10-28,1.79,89,rugby sevens,0,0,1, -717003685,Chi-Chung Tan,TPE,male,1990-02-24,1.55,56,weightlifting,0,0,0, -116299624,Chia Hsin Tsai,TPE,male,1982-07-25,1.82,82,badminton,0,0,0, -36584251,Chia Ying Wu,TPE,female,1992-10-25,1.55,47,shooting,0,0,0, -469947705,Chia-Chia Chuang,TPE,female,1989-05-14,1.79,65,taekwondo,0,0,0, -480858629,Chiaki Tomita,JPN,female,1993-10-18,1.65,55,rowing,0,0,0, -148995739,Chiara Bazzoni,ITA,female,1984-07-05,1.72,58,athletics,0,0,0, -454523212,Chiara Cainero,ITA,female,1978-03-24,1.71,81,shooting,0,1,0, -875043196,Chiara Masini Luccetti,ITA,female,1993-03-26,1.71,63,aquatics,0,0,0, -781396990,Chiara Tabani,ITA,female,1994-08-27,1.76,72,aquatics,0,1,0, -430952782,Chico Ramos,POR,male,1995-04-10,1.85,80,football,0,0,0, -464650816,Chido Dzingirai,ZIM,female,1991-10-25,1.72,69,football,0,0,0, -294878524,Chieh Chen,TPE,male,1992-05-08,1.82,73,athletics,0,0,0, -930498029,Chien-An Chen,TPE,male,1991-06-16,1.7,72,table tennis,0,0,0, -769049333,Chien-Ho Hsieh,TPE,female,1987-11-25,1.64,48,athletics,0,0,0, -296026753,Chien-Hung Pan,TPE,male,1988-08-07,1.69,69,weightlifting,0,0,0, -846139203,Chien-Ying Le,TPE,female,1990-04-17,1.65,69,archery,0,0,1, -404278296,Chierika Ukogu,NGR,female,1992-10-02,1.8,67,rowing,0,0,0, -558527294,Chih Kai Lee,TPE,male,1996-04-03,1.7,65,gymnastics,0,0,0, -141719705,Chih-Yuan Chuang,TPE,male,1981-04-02,1.68,60,table tennis,0,0,0, -251378331,Chiharu Nakamura,JPN,female,1988-04-25,1.63,63,rugby sevens,0,0,0, -32395502,Chihiro Igarashi,JPN,female,1995-05-24,1.7,63,aquatics,0,0,0, -802100153,Chijindu Ujah,GBR,male,1994-03-05,1.82,81,athletics,0,0,0, -2657574,Chika Aoki,JPN,female,1990-02-21,1.58,54,fencing,0,0,0, -489705846,Chilsung Park,KOR,male,1982-07-08,1.73,67,athletics,0,0,0, -520588728,Chin-Ping Ho,TPE,male,1983-10-23,1.73,60,athletics,0,0,0, -475891314,Chinglensana Kangujam,IND,male,1991-12-02,1.69,72,hockey,0,0,0, -697417425,Chinwe Okoro,NGR,female,1989-06-20,1.78,102,athletics,0,0,0, -885083820,Chinzorig Baatarsukh,MGL,male,1991-09-21,1.74,,boxing,0,0,0, -775422570,Chirine Njeim,LIB,female,1984-10-04,,,athletics,0,0,0, -781340794,Chisato Fukushima,JPN,female,1988-06-27,1.65,52,athletics,0,0,0, -798175500,Chisato Yokoo,JPN,female,1992-05-22,1.64,60,rugby sevens,0,0,0, -912156686,Chiu Mang Tang,HKG,male,1990-07-24,1.8,72,rowing,0,0,0, -347216262,Chloe Bulleux,FRA,female,1991-11-18,1.72,65,handball,0,1,0, -247836901,Chloe Dalton,AUS,female,1993-07-11,1.8,72,rugby sevens,1,0,0, -908812309,Chloe Dygert,USA,female,1997-01-01,1.76,66,cycling,0,1,0, -66098527,Chloe Esposito,AUS,female,1991-09-19,1.68,55,modern pentathlon,1,0,0, -792650052,Chloe Leurquin,BEL,female,1990-08-09,1.69,57,golf,0,0,0, -315954176,Chloe Logarzo,AUS,female,1994-12-22,1.65,55,football,0,0,0, -819853212,Chloe Magee,IRL,female,1988-11-29,1.65,61,badminton,0,0,0, -622470385,Chloe Marie Helene Sauvourel,CAF,female,1999-06-18,1.66,68,aquatics,0,0,0, -838794586,Chloe Rayner,AUS,female,1996-09-18,1.55,48,judo,0,0,0, -308484063,Chloe Tipple,NZL,female,1991-06-05,1.78,80,shooting,0,0,0, -150543887,Chloe Tutton,GBR,female,1996-07-17,1.68,62,aquatics,0,0,0, -87537613,Chloe Woodruff,USA,female,1987-07-21,1.58,51,cycling,0,0,0, -993806329,Choaib Belhaj Salah,TUN,male,1987-06-04,1.94,93,volleyball,0,0,0, -310773041,Chol Pak,PRK,male,1990-11-08,1.65,53,athletics,0,0,0, -609981962,Chong Wei Lee,MAS,male,1982-10-21,1.7,68,badminton,0,1,0,"With two silvers, won in the singles tournaments at Beijing 2008 and London 2012, Lee Chong Wei is the greatest Olympian in Malaysia's history. Top of the world rankings from 2008 to 2012, he has won a silver medal at the past three world championships." -82546289,Chouaib Bouloudinats,ALG,male,1987-01-08,1.82,,boxing,0,0,0, -93555495,Chris Adcock,GBR,male,1989-04-27,1.83,80,badminton,0,0,0, -518947875,Chris Anker Sorensen,DEN,male,1984-09-05,1.84,65,cycling,0,0,0, -889760541,Chris Baker,GBR,male,1991-02-02,1.94,80,athletics,0,0,0, -123795777,Chris Bartley,GBR,male,1984-02-02,1.78,72,rowing,0,0,0, -381231123,Chris Benard,USA,male,1990-04-09,1.91,83,athletics,0,0,0, -629312899,Chris Bennett,GBR,male,1989-12-17,1.88,115,athletics,0,0,0, -148030859,Chris Brown,BAH,male,1978-10-15,1.78,75,athletics,0,0,1, -719858003,Chris Ciriello,AUS,male,1985-10-01,1.82,83,hockey,0,0,0, -784067568,Chris Erickson,AUS,male,1981-12-01,1.75,60,athletics,0,0,0, -572725066,Chris Goulding,AUS,male,1988-10-24,1.92,93,basketball,0,0,0, -277029308,Chris Grube,GBR,male,1985-01-22,1.94,72,sailing,0,0,0, -110660329,Chris Langridge,GBR,male,1985-05-02,1.8,,badminton,0,0,1, -628001010,Chris Mears,GBR,male,1993-02-07,1.73,73,aquatics,1,0,0, -182303154,Chris O'Hare,GBR,male,1990-11-23,1.78,63,athletics,0,0,0, -150373801,Chris Walker-Hebborn,GBR,male,1990-07-01,1.84,84,aquatics,0,1,0, -261887027,Chris Winter,CAN,male,1986-07-22,1.88,75,athletics,0,0,0, -491144467,Chris Wyles,USA,male,1983-09-13,1.83,95,rugby sevens,0,0,0, -187059251,Chrisann Gordon,JAM,female,1994-09-18,1.68,65,athletics,0,1,0, -123893495,Chrishuna Williams,USA,female,1993-03-31,1.61,54,athletics,0,0,0, -261434157,Christa Harmotto Dietzen,USA,female,1986-10-12,1.88,79,volleyball,0,0,1, -961185789,Christabel Nettey,CAN,female,1991-06-02,1.62,57,athletics,0,0,0, -112339974,Christania Williams,JAM,female,1994-10-17,1.65,63,athletics,0,1,0, -114831351,Christelle Daunay,FRA,female,1974-12-05,1.62,43,athletics,0,0,0, -572557268,Christelle Tchoudjang Nana,CMR,female,1989-07-07,1.84,80,volleyball,0,0,0, -900988313,Christen Press,USA,female,1988-12-29,1.7,60,football,0,0,0, -783674289,Christiaan Varenhorst,NED,male,1990-05-06,2.11,104,volleyball,0,0,0, -983312756,Christian Ahlmann,GER,male,1974-12-17,1.89,80,equestrian,0,0,1, -101327235,Christian Amoah,GHA,male,1999-07-25,1.84,84,weightlifting,0,0,0, -390828908,Christian Baumann,SUI,male,1995-02-25,1.63,60,gymnastics,0,0,0, -871551515,Christian Coleman,USA,male,1996-03-06,1.76,72,athletics,0,0,0, -798416693,Christian Diener,GER,male,1993-06-03,1.82,82,aquatics,0,0,0, -869931216,Christian Dissinger,GER,male,1991-11-15,2.03,105,handball,0,0,1, -429253838,Christian Guenter,GER,male,1993-02-28,1.84,82,football,0,0,0, -621658753,Christian Kreienbuhl,SUI,male,1981-06-06,1.86,68,athletics,0,0,0, -461859304,Christian Mbilli,FRA,male,1995-04-26,1.75,,boxing,0,0,0, -530803618,Christian Nassif Djidagui,CAF,male,1994-01-01,,,aquatics,0,0,0, -49854896,Christian Peter Lubeck,DEN,male,1991-04-23,1.86,81,sailing,0,0,0, -839986218,Christian Presciutti,ITA,male,1982-11-27,1.84,87,aquatics,0,0,1, -150989629,Christian Reichert,GER,male,1985-02-07,1.88,83,aquatics,0,0,0, -513022644,Christian Reitz,GER,male,1987-04-29,1.84,90,shooting,1,0,0, -446986047,Christian Taylor,USA,male,1990-06-18,1.88,81,athletics,1,0,0, -607156497,Christian Vom Lehn,GER,male,1992-04-14,1.9,78,aquatics,0,0,0, -45955981,Christian Zillekens,GER,male,1995-12-29,1.79,68,modern pentathlon,0,0,0, -511915390,Christian Zimmermann,PLE,male,1961-12-12,,,equestrian,0,0,0, -309587083,Christianne Legentil,MRI,female,1992-05-27,1.53,52,judo,0,0,0, -23725637,Christin Hussong,GER,female,1994-03-17,1.86,84,athletics,0,0,0, -748125644,Christina Epps,USA,female,1991-06-20,1.76,65,athletics,0,0,0, -646217322,Christina Hering,GER,female,1994-10-09,1.85,63,athletics,0,0,0, -532991563,Christina Obergfoll,GER,female,1981-08-22,1.75,79,athletics,0,0,0, -802053321,Christina Schwanitz,GER,female,1985-12-24,1.8,115,athletics,0,0,0, -544811537,Christine Amertil,BAH,female,1979-08-18,1.68,54,athletics,0,0,0, -304380235,Christine Bjerendal,SWE,female,1987-02-03,1.61,59,archery,0,0,0, -524363491,Christine Botlogetswe,BOT,female,1995-10-01,,,athletics,0,0,0, -45076354,Christine Day,JAM,female,1986-08-23,1.68,51,athletics,0,1,0, -774219408,Christine Kalmer,RSA,female,1986-02-10,1.72,55,athletics,0,0,0, -348981852,Christine Majerus,LUX,female,1987-02-25,1.74,57,cycling,0,0,0, -600192107,Christine Ohuruogu,GBR,female,1984-05-17,1.72,70,athletics,0,0,1, -141698796,Christine Roper,CAN,female,1990-05-15,1.88,90,rowing,0,0,0, -250723812,Christine Sinclair,CAN,female,1983-06-12,1.76,68,football,0,0,1, -514854270,Christine Wenzel,GER,female,1981-07-10,1.71,63,shooting,0,0,0, -996180184,Christine Wolf,AUT,female,1989-03-05,1.72,63,golf,0,0,0, -121437333,Christinna Pedersen,DEN,female,1986-05-12,1.78,68,badminton,0,1,0, -971332873,Christodoulos Kolomvos,GRE,male,1988-10-26,1.86,103,aquatics,0,0,0, -85448954,Christoph Fildebrandt,GER,male,1989-05-27,1.93,80,aquatics,0,0,0, -501861079,Christoph Harting,GER,male,1990-04-10,2.07,123,athletics,1,0,0, -731592178,Christoph Martin Meier,LIE,male,1993-01-03,1.97,95,aquatics,0,0,0, -134449536,Christophe Lemaitre,FRA,male,1990-06-11,1.9,74,athletics,0,0,1, -447803085,Christophen McPHERSON,BRA,male,1984-06-19,1.85,77,hockey,0,0,0, -822832512,Christopher Brooks,USA,male,1986-12-19,1.73,74,gymnastics,0,0,0, -628857615,Christopher Burton,AUS,male,1981-11-22,1.8,70,equestrian,0,0,1, -401021506,Christopher Cargo,IRL,male,1986-02-18,1.82,79,hockey,0,0,0, -795060269,Christopher Froome,GBR,male,1985-05-20,1.85,69,cycling,0,0,1, -804679484,Christopher George,TTO,male,1983-12-25,,,judo,0,0,0, -489215473,Christopher Guccione,AUS,male,1985-07-30,2,91,tennis,0,0,0, -777119491,Christopher Harris,NZL,male,1985-10-19,1.87,89,rowing,0,0,0, -488320135,Christopher Juul Jensen,DEN,male,1989-07-06,1.85,75,cycling,0,0,0, -515467110,Christopher Linke,GER,male,1988-10-24,1.91,66,athletics,0,0,0, -375356120,Christopher Morgan,AUS,male,1982-12-15,1.91,90,rowing,0,0,0, -893971715,Christopher Patrick Reid,RSA,male,1996-01-10,1.98,98,aquatics,0,0,0, -390068721,Christopher Ruhr,GER,male,1993-12-19,1.8,77,hockey,0,0,1, -672777082,Christopher Valdez,DOM,male,1994-11-01,1.7,63,athletics,0,0,0, -741375117,Christopher Wesley,GER,male,1987-06-23,1.92,88,hockey,0,0,1, -491621394,Christos Afroudakis,GRE,male,1984-05-23,1.88,88,aquatics,0,0,0, -178446035,Christos Katrantzis,GRE,male,1992-03-30,1.88,78,aquatics,0,0,0, -416304981,Christos Volikakis,GRE,male,1988-03-25,1.7,85,cycling,0,0,0, -141489782,Chu-En Lai,TPE,male,1996-07-23,1.68,,boxing,0,0,0, -82062785,Chuluunbat Jargalsaikhan,MGL,male,1984-12-03,1.84,125,wrestling,0,0,0, -136590128,Chun Hei Reginald Lee,HKG,male,1994-01-25,1.7,72,badminton,0,0,0, -160814814,Chun Hing Chan,HKG,male,1981-04-24,1.7,70,cycling,0,0,0, -546606814,Chun Leung Michael Cheng,HKG,male,1994-04-30,1.82,74,sailing,0,0,0, -890198247,Chun Ting Wong,HKG,male,1991-09-07,1.7,70,table tennis,0,0,0, -932296367,Chun Wing Leung,HKG,male,1994-01-20,1.76,73,cycling,0,0,0, -361473378,Chun-Heng Wei,TPE,male,1994-07-06,1.8,74,archery,0,0,0, -972398061,Chun-Hsien Hsiang,TPE,male,1993-09-04,1.86,70,athletics,0,0,0, -74882200,Chunsong Shang,CHN,female,1996-03-18,1.43,34,gymnastics,0,0,1, -184720791,Chunxin Wang,CHN,male,1997-11-25,1.8,70,rowing,0,0,0, -748411041,Chunyu Wang,CHN,female,1995-01-17,1.75,55,athletics,0,0,0, -434268598,Churandy Martina,NED,male,1984-07-03,1.8,76,athletics,0,0,0, -364006539,Ciara Everard,IRL,female,1990-07-10,1.69,54,athletics,0,0,0, -784773877,Ciara Horne,GBR,female,1989-09-17,1.79,63,cycling,0,0,0, -425071947,Ciara Mageean,IRL,female,1992-03-12,1.7,55,athletics,0,0,0, -786574595,Cierra Runge,USA,female,1996-03-07,1.94,84,aquatics,1,0,0, -269551949,Cindy Billaud,FRA,female,1986-03-11,1.67,59,athletics,0,0,0, -808281174,Cindy Ofili,GBR,female,1994-08-05,1.78,68,athletics,0,0,0, -348165944,Cindy Roleder,GER,female,1989-08-21,1.78,70,athletics,0,0,0, -810690969,Ciril Grossklaus,SUI,male,1991-04-17,1.85,90,judo,0,0,0, -768959560,Cisiane Lopes,BRA,female,1983-02-17,1.59,49,athletics,0,0,0, -848614623,Claire Allan,GBR,female,1985-05-07,1.7,65,rugby sevens,0,0,0, -511358309,Claire Lambe,IRL,female,1990-05-16,1.78,57,rowing,0,0,0, -815034554,Claire Lavogez,FRA,female,1994-06-18,1.73,63,football,0,0,0, -516245173,Claire Michel,BEL,female,1988-10-13,1.68,54,triathlon,0,0,0, -716197496,Clara Espar Llaquet,ESP,female,1994-09-29,1.78,68,aquatics,0,0,0, -52347584,Clare Abbott,IRL,female,1986-07-28,1.67,58,equestrian,0,0,0, -317879815,Clare Polkinghorne,AUS,female,1989-02-01,1.73,67,football,0,0,0, -805523212,Clarence Munyai,RSA,male,1998-02-20,1.7,65,athletics,0,0,0, -175558091,Claressa Maria Shields,USA,female,1995-03-17,1.76,,boxing,1,0,0,"Beating Russia's Nadezda Torlopova in the up to 75kg class at London 2012 made Claressa Shields the first American to win an Olympic boxing gold medal. She then won two world titles, in 2014 and 2016, and another gold at the 2015 Pan American Games." -161104873,Clarisa Sagardia,ARG,female,1989-06-29,1.74,67,volleyball,0,0,0, -722629452,Clarissa Santos,BRA,female,1988-03-10,1.83,89,basketball,0,0,0, -610018581,Clarisse Agbegnenou,FRA,female,1992-10-25,1.64,66,judo,0,1,0, -989657937,Clarisse le Bihan,FRA,female,1994-12-14,1.72,64,football,0,0,0, -292197619,Clark Montgomery,USA,male,1981-05-20,1.83,70,equestrian,0,0,0, -736895804,Clark Smith,USA,male,1995-04-17,2.06,89,aquatics,1,0,0, -447342515,Clarke Johnstone,NZL,male,1987-04-26,1.94,80,equestrian,0,0,0, -792920244,Claudette Mukasakindi,RWA,female,1982-12-25,1.6,68,athletics,0,0,0, -772469777,Claudia Belderbos,NED,female,1985-01-23,1.75,72,rowing,0,0,0, -425434912,Claudia Bobocea,ROU,female,1992-06-11,1.76,53,athletics,0,0,0, -950213745,Claudia Cesarini,ITA,female,1986-08-04,1.77,60,modern pentathlon,0,0,0, -351914680,Claudia Fragapane,GBR,female,1997-10-24,1.37,43,gymnastics,0,0,0, -262947031,Claudia Jaqueline Teles,BRA,female,1992-01-02,1.66,57,rugby sevens,0,0,0, -130234491,Claudia Lau,HKG,female,1992-11-11,1.6,53,aquatics,0,0,0, -695148064,Claudia Lichtenberg,GER,female,1985-11-17,1.7,51,cycling,0,0,0, -688060472,Claudia Mandia,ITA,female,1992-10-21,1.7,74,archery,0,0,0, -132539493,Claudia Rath,GER,female,1986-04-25,1.75,65,athletics,0,0,0, -108261189,Claudia Rivas,MEX,female,1989-06-15,1.71,56,triathlon,0,0,0, -462976229,Claudia Stef,ROU,female,1978-02-25,1.7,57,athletics,0,0,0, -286903708,Claudio Castilla Ruiz,ESP,male,1983-05-30,1.73,66,equestrian,0,0,0, -222024929,Claudio Villanueva,ECU,male,1988-08-03,1.75,68,athletics,0,0,0, -952767996,Clayton Murphy,USA,male,1995-02-26,1.81,68,athletics,0,0,1, -692043872,Clelia Reuse-Rard,SUI,female,1988-08-01,1.7,57,athletics,0,0,0, -622017902,Clemens Doppler,AUT,male,1980-09-06,1.99,85,volleyball,0,0,0, -469894756,Clemens Rapp,GER,male,1989-07-14,1.93,85,aquatics,0,0,0, -112490441,Clement Mignon,FRA,male,1993-01-21,1.87,75,aquatics,0,1,0, -212851704,Clemente Russo,ITA,male,1982-07-27,1.81,,boxing,0,0,0, -526600784,Clemilda Fernandes Silva,BRA,female,1979-06-25,1.63,54,cycling,0,0,0, -406253452,Cleopatra Borel,TTO,female,1979-03-10,1.72,89,athletics,0,0,0, -62395737,Clive Pullen,JAM,male,1994-10-18,1.83,83,athletics,0,0,0, -81383299,Cloe Hache,FRA,female,1997-12-11,1.71,62,aquatics,0,0,0, -687327234,Coco Vandeweghe,USA,female,1991-12-06,1.86,70,tennis,0,0,0, -710695405,Cody Miller,USA,male,1992-01-09,1.81,79,aquatics,1,0,1, -844245742,Coen de Koning,NED,male,1983-04-05,1.83,74,sailing,0,0,0, -663469791,Colin Cheng,SIN,male,1989-09-10,1.75,80,sailing,0,0,0, -232134278,Colin Fleming,GBR,male,1984-08-13,1.88,78,tennis,0,0,0, -702982870,Colin Oates,GBR,male,1983-06-07,1.7,71,judo,0,0,0, -758562583,Colleen Furgeson,MHL,female,1998-11-21,1.76,65,aquatics,0,0,0, -989356382,Colleen Loach,CAN,female,1983-04-10,1.79,61,equestrian,0,0,0, -531594504,Colleen Quigley,USA,female,1992-11-20,1.76,61,athletics,0,0,0, -914233463,Collins Injera,KEN,male,1986-10-18,1.82,90,rugby sevens,0,0,0, -13487026,Colton Brown,USA,male,1991-10-08,1.83,90,judo,0,0,0, -600130363,Con Foley,AUS,male,1992-09-19,1.88,90,rugby sevens,0,0,0, -891831765,Concepcion Montaner,ESP,female,1981-01-14,1.7,59,athletics,0,0,0, -6156543,Cong Zhang,CHN,female,1990-05-03,1.76,62,aquatics,0,0,0, -669712048,Conlin McCABE,CAN,male,1990-08-20,2.05,100,rowing,0,0,0, -868434625,Connor Fields,USA,male,1992-09-14,1.83,88,cycling,1,0,0, -420887334,Connor Jaeger,USA,male,1991-04-30,1.86,77,aquatics,0,1,0, -988931818,Conny Wassmuth,GER,female,1983-04-13,1.67,64,canoe,0,0,0, -453971347,Conor Dwyer,USA,male,1989-01-10,1.96,88,aquatics,1,0,1, -893225332,Conor Harte,IRL,male,1988-04-03,1.96,93,hockey,0,0,0, -579847713,Conor McCullough,USA,male,1991-01-31,1.96,106,athletics,0,0,0, -766006270,Conseslus Kipruto,KEN,male,1994-12-08,1.67,58,athletics,1,0,0, -752876946,Constantijn Jonker,NED,male,1987-09-20,1.82,78,hockey,0,0,0, -861389806,Constantin Adam,ROU,male,1996-07-12,2.02,105,rowing,0,0,0, -299370363,Constantin Blaha,AUT,male,1987-12-01,1.78,77,aquatics,0,0,0, -779629172,Constantine Louloudis,GBR,male,1991-09-15,1.9,92,rowing,1,0,0, -606804046,Coralie Balmy,FRA,female,1987-06-02,1.8,67,aquatics,0,0,0, -752996196,Corben Sharrah,USA,male,1992-04-20,1.83,85,cycling,0,0,0, -37278485,Corey Cogdell,USA,female,1986-09-02,1.73,70,shooting,0,0,1, -473676473,Corey Main,NZL,male,1995-02-27,1.92,85,aquatics,0,0,0, -362762819,Corey Ollivierre,GRN,male,1997-03-16,,,aquatics,0,0,0, -267386705,Corina Caprioriu,ROU,female,1986-07-18,1.61,57,judo,0,0,0, -83666929,Corinna Kuhnle,AUT,female,1987-07-04,1.74,65,canoe,0,0,0, -931635380,Costanza Ferro,ITA,female,1993-07-05,1.69,56,aquatics,0,0,0, -567635337,Courtney Frerichs,USA,female,1993-01-18,1.71,53,athletics,0,0,0, -64284064,Courtney Hurley,USA,female,1990-09-30,1.73,79,fencing,0,0,0, -760942208,Courtney Mathewson,USA,female,1986-09-14,1.71,69,aquatics,1,0,0, -495348801,Courtney McGregor,NZL,female,1998-11-17,1.59,47,gymnastics,0,0,0, -771725452,Courtney Okolo,USA,female,1994-03-15,1.73,58,athletics,1,0,0, -650068927,Courtney Thompson,USA,female,1984-11-04,1.7,66,volleyball,0,0,1, -100145266,Craig Benson,GBR,male,1994-04-30,1.83,80,aquatics,0,0,0, -135156587,Craig Miller,NZL,male,1985-06-10,1.73,66,wrestling,0,0,0, -58627680,Crisanto Grajales,MEX,male,1987-05-06,1.66,60,triathlon,0,0,0, -592844746,Crispin Duenas,CAN,male,1986-01-05,1.7,81,archery,0,0,0, -710589299,Crista Cullen,GBR,female,1985-08-20,1.82,74,hockey,1,0,0, -662170808,Cristhian Pacheco,PER,male,1993-05-26,1.62,50,athletics,0,0,0, -227681295,Cristi-Ilie Pirghie,ROU,male,1992-07-20,2.02,108,rowing,0,0,0, -70420112,Cristian Bonilla,COL,male,1993-06-02,1.88,85,football,0,0,0, -243091497,Cristian Borja,COL,male,1993-02-18,1.79,72,football,0,0,0, -378249166,Cristian Espinoza,ARG,male,1995-04-03,1.67,70,football,0,0,0, -67716085,Cristian Pavon,ARG,male,1996-01-21,1.72,69,football,0,0,0, -781407492,Cristian Poglajen,ARG,male,1989-07-14,1.95,94,volleyball,0,0,0, -367878750,Cristian Quintero,VEN,male,1992-10-14,1.95,90,aquatics,0,0,0, -708503886,Cristian Toro,ESP,male,1992-04-29,1.88,90,canoe,1,0,0, -931912582,Cristiane,BRA,female,1985-05-15,1.76,69,football,0,0,0, -879488777,Cristiane Silva,BRA,female,1988-04-04,1.62,54,athletics,0,0,0, -999131085,Cristiano Felicio,BRA,male,1992-07-07,2.08,125,basketball,0,0,0, -900778069,Cristina Bujin,ROU,female,1988-04-12,1.72,56,athletics,0,0,0, -687865041,Cristina Chirichella,ITA,female,1994-02-10,1.95,73,volleyball,0,0,0, -487060100,Cristina Direito Branco,ANG,female,1985-03-15,1.72,68,handball,0,0,0, -733246969,Cristina Guinea,ESP,female,1992-07-31,1.66,61,hockey,0,0,0, -580737195,Cristina Neagu,ROU,female,1988-08-26,1.8,69,handball,0,0,0, -788552666,Cristina Sheehan,AUS,female,1998-09-26,1.63,49,aquatics,0,0,0, -301673145,Cristobal Grez Ahrens,CHI,male,1987-12-17,1.79,81,sailing,0,0,0, -611619985,Cristopher Joel Pavon Funes,HON,male,1993-04-18,1.73,93,weightlifting,0,0,0, -564187866,Cristy Nurse,CAN,female,1986-12-05,1.82,74,rowing,0,0,0, -607270987,Crystal Brittany Weekes,PUR,female,1998-01-14,1.78,73,taekwondo,0,0,0, -343383925,Crystal Dunn,USA,female,1992-07-03,1.57,54,football,0,0,0, -242394914,Crystal Emmanuel,CAN,female,1991-11-27,1.7,59,athletics,0,0,0, -679997450,Cuthbert Nyasango,ZIM,male,1982-09-17,1.63,56,athletics,0,0,0, -492543946,Cy Thompson,ISV,male,1988-07-01,,,sailing,0,0,0, -377141753,Cynthia Bolingo,BEL,female,1993-01-12,1.65,53,athletics,0,0,0, -778561493,Cynthia Meyer,CAN,female,1965-10-06,1.63,51,shooting,0,0,0, -354553687,Cynthia Vanessa Vescan,FRA,female,1992-02-07,1.7,74,wrestling,0,0,0, -884034589,Cyril Graff,FRA,male,1980-09-11,1.7,64,shooting,0,0,0, -733143674,Cyril Tommasone,FRA,male,1987-07-04,1.71,62,gymnastics,0,0,0, -13038806,Cyrille Carre,FRA,male,1984-04-11,1.84,75,canoe,0,0,0, -243473518,Cyrille Maret,FRA,male,1987-08-11,1.89,108,judo,0,0,1, -601293149,Cyrille Thiery,SUI,male,1990-09-27,1.79,67,cycling,0,0,0, -77303549,Cyrus Hostetler,USA,male,1986-08-08,1.88,95,athletics,0,0,0, -697656751,Céline van Gerner,NED,female,1994-12-01,1.58,51,gymnastics,0,0,0, -781080188,D J Forbes,NZL,male,1982-12-15,1.89,103,rugby sevens,0,0,0, -12021988,Daehoon Lee,KOR,male,1992-02-05,1.83,70,taekwondo,0,0,1, -392205384,Daemyung Lee,KOR,male,1988-09-14,1.82,78,shooting,0,0,0, -83363661,Dafne Schippers,NED,female,1992-06-15,1.79,70,athletics,0,1,0, -128148287,Dagmara Wozniak,USA,female,1988-07-01,1.73,81,fencing,0,0,1, -667178764,Dagnis Iljins,LAT,male,1992-08-20,1.78,82,canoe,0,0,0, -102532767,Daichi Sawano,JPN,male,1980-09-16,1.83,74,athletics,0,0,0, -519978075,Daichi Sugimoto,JPN,male,1993-07-15,1.86,79,football,0,0,0, -679515187,Daiene Marcal,BRA,female,1989-05-16,1.59,55,aquatics,0,0,0, -212523902,Daigo Hasegawa,JPN,male,1990-02-27,1.73,58,athletics,0,0,0, -567351741,Daigoro Timoncini,ITA,male,1985-12-13,1.8,98,wrestling,0,0,0, -836156960,Dailin Belmonte,CUB,female,1985-10-15,1.58,52,athletics,0,0,0, -648027000,Daina Levy,JAM,female,1993-05-27,1.65,98,athletics,0,0,0, -100107881,Dainis Upelnieks,LAT,male,1982-10-01,1.93,103,shooting,0,0,0, -268106399,Daisuke Fukushima,JPN,male,1977-09-20,1.78,68,equestrian,0,0,0, -46762119,Daisuke Matsunaga,JPN,male,1995-03-24,1.74,60,athletics,0,0,0, -429516855,Daisuke Narimatsu,JPN,male,1989-12-14,1.72,,boxing,0,0,0, -798836985,Daisurami Bonne,CUB,female,1988-03-09,1.71,60,athletics,0,0,0, -989560488,Daisy Cleverley,NZL,female,1997-04-30,1.7,59,football,0,0,0, -693678730,Daisy Kaitano,ZIM,female,1993-09-20,1.71,61,football,0,0,0, -242973427,Daiva Tuslaite,LTU,female,1986-06-18,1.72,58,cycling,0,0,0, -192954208,Daiya Seto,JPN,male,1994-05-24,1.74,73,aquatics,0,0,1, -902505168,Dajana Butulija,SRB,female,1986-02-23,1.75,65,basketball,0,0,1, -205886057,Dalal Mesfer Al Harith,QAT,female,1999-11-28,1.6,55,athletics,0,0,0, -576218781,Dalia Torrez,NCA,female,1990-03-29,1.74,70,aquatics,0,0,0, -441998277,Dalila Abdulkadir,BRN,female,1998-06-27,1.56,46,athletics,0,0,0, -209724463,Dalilah Muhammad,USA,female,1990-02-07,1.73,55,athletics,1,0,0, -360953664,Dalma Ruzicic Benedek,SRB,female,1982-02-21,1.65,65,canoe,0,0,0, -381413110,Dalma Sebestyen,HUN,female,1997-01-23,1.8,68,aquatics,0,0,0, -975197213,Daly Santana,PUR,female,1995-02-19,1.85,65,volleyball,0,0,0, -610645827,Damar Forbes,JAM,male,1990-09-11,1.88,82,athletics,0,0,0, -785182328,Damian Czykier,POL,male,1992-08-10,1.91,78,athletics,0,0,0, -969246730,Damian Martin,AUS,male,1984-09-05,1.86,90,basketball,0,0,0, -445781696,Damian Warner,CAN,male,1989-11-04,1.85,83,athletics,0,0,1, -227000230,Damian Wierling,GER,male,1996-02-13,1.96,74,aquatics,0,0,0, -112793044,Damian Zielinski,POL,male,1981-12-02,1.85,92,cycling,0,0,0, -315107389,Damiano Caruso,ITA,male,1987-10-12,1.79,65,cycling,0,0,0, -4074919,Damien Birkinhead,AUS,male,1993-04-08,1.9,140,athletics,0,0,0, -642505944,Damien Cler,FRA,male,1983-10-02,1.85,95,rugby sevens,0,0,0, -534791286,Damien Joly,FRA,male,1992-06-04,1.89,72,aquatics,0,0,0, -486111896,Damir Buric,CRO,male,1980-12-02,2.05,115,aquatics,0,1,0, -675408199,Damir Dugonjic,SLO,male,1988-02-21,2.02,105,aquatics,0,0,0, -901528927,Damir Dzumhur,BIH,male,1992-05-20,1.75,65,tennis,0,0,0, -971510831,Damir Martin,CRO,male,1988-07-14,1.89,97,rowing,0,1,0, -594844632,Damir Mikec,SRB,male,1984-03-31,1.79,79,shooting,0,0,0, -546700394,Damiris Dantas,BRA,female,1992-11-17,1.9,80,basketball,0,0,0, -751391017,Dan Bibby,GBR,male,1991-02-06,1.76,86,rugby sevens,0,1,0, -715044035,Dan Craven,NAM,male,1983-02-01,1.83,76,cycling,0,0,0, -619597624,Dan Froyliche,ISR,male,1992-11-18,1.82,73,sailing,0,0,0, -614482218,Dan Li,CHN,female,1988-09-18,1.55,48,gymnastics,0,0,1,"The current world champion in the individual, synchronised and team trampoline gymnastics, China's Li Dan returned to the top of the podium in the individual event five years after her first title in 2010." -96353968,Dan Lin,CHN,male,1983-10-14,1.77,70,badminton,0,0,0,"Considered by most to be the best badminton player on the planet, China's Lin Dan won gold at the Olympic Games in Beijing 2008 and London 2012. He also holds five singles world titles." -721862825,Dan Norton,GBR,male,1988-03-22,1.8,85,rugby sevens,0,1,0, -765792716,Dan Wallace,GBR,male,1993-04-14,1.88,80,aquatics,0,1,0, -134936135,Dana Veldakova,SVK,female,1981-06-03,1.79,61,athletics,0,0,0, -622909202,Dana Vollmer,USA,female,1987-11-13,1.86,68,aquatics,1,1,1, -55407824,Danai Bhobho,ZIM,female,1992-12-01,1.63,59,football,0,0,0, -211024970,Danas Rapsys,LTU,male,1995-05-21,1.9,84,aquatics,0,0,0, -665814461,Dane Bird-Smith,AUS,male,1992-07-15,1.87,72,athletics,0,0,1, -772450203,Dane Sampson,AUS,male,1986-08-20,1.83,89,shooting,0,0,0, -453079347,Daneja Grandovec,SLO,female,1984-07-02,1.75,58,athletics,0,0,0, -527822094,Danell Leyva,USA,male,1991-10-30,1.73,72,gymnastics,0,2,0, -218424864,Dani Samuels,AUS,female,1988-05-26,1.82,82,athletics,0,0,0, -119961114,Daniah Hagul,LBA,female,1999-02-07,,,aquatics,0,0,0, -585194205,Danick Snelder,NED,female,1990-05-22,1.78,75,handball,0,0,0, -161929163,Daniel Akpeyi,NGR,male,1986-03-08,1.87,,football,0,0,1, -579693569,Daniel Allerstorfer,AUT,male,1992-12-04,1.83,130,judo,0,0,0, -574774102,Daniel Andujar,ESP,male,1994-05-14,1.82,78,athletics,0,0,0, -2865880,Daniel Asenov,BUL,male,1997-05-17,1.63,,boxing,0,0,0, -183503173,Daniel Bailey,ANT,male,1986-09-09,1.79,68,athletics,0,0,0, -189421989,Daniel Beale,AUS,male,1993-02-12,1.84,74,hockey,0,0,0, -568936910,Daniel Bluman,COL,male,1990-03-15,1.82,72,equestrian,0,0,0, -442179948,Daniel Bowker,AUS,male,1987-09-21,1.91,89,canoe,0,0,0, -719186892,Daniel Brodmeier,GER,male,1987-09-02,1.8,100,shooting,0,0,0, -436335387,Daniel Cornelius Jansen Vandoorn,CAN,male,1990-03-21,2.07,98,volleyball,0,0,0, -719022816,Daniel Corral,MEX,male,1990-01-25,1.75,64,gymnastics,0,0,0, -10083714,Daniel Dal Bo,ARG,male,1987-09-08,1.85,78,canoe,0,0,0, -16964420,Daniel Deusser,GER,male,1981-08-13,1.9,76,equestrian,0,0,1, -93209165,Daniel Diaz,ARG,male,1989-07-07,1.68,63,cycling,0,0,0, -254552114,Daniel Estrada,CHI,male,1990-02-27,1.73,61,athletics,0,0,0, -258029864,Daniel Flores,VEN,male,1981-10-17,1.8,73,sailing,0,0,0, -55281398,Daniel Fox,GBR,male,1983-03-03,1.83,78,hockey,0,0,0, -387284782,Daniel Gomez,MEX,male,1990-05-06,1.78,78,fencing,0,0,0, -542045752,Daniel Goodfellow,GBR,male,1996-10-19,1.67,58,aquatics,0,0,1, -140752728,Daniel Gorak,POL,male,1983-10-09,1.78,77,table tennis,0,0,0, -654450748,Daniel Gyurta,HUN,male,1989-05-04,1.85,76,aquatics,0,0,0, -582252675,Daniel Habesohn,AUT,male,1986-07-22,1.85,78,table tennis,0,0,0, -270915290,Daniel Havel,CZE,male,1991-08-10,1.78,79,canoe,0,0,1, -988381105,Daniel Jasinski,GER,male,1989-08-05,2.07,120,athletics,0,0,1, -738563409,Daniel Jason Lewis,AUS,male,1993-12-18,1.78,,boxing,0,0,0, -642681406,Daniel Jerent,FRA,male,1991-06-04,1.89,84,fencing,1,0,0, -679369077,Daniel Ligeti,HUN,male,1989-07-31,1.9,117,wrestling,0,0,0, -686181990,Daniel Lopez Pinedo,ESP,male,1980-07-16,1.9,88,aquatics,0,0,0, -337337344,Daniel Lowe,USA,male,1992-11-18,1.83,81,shooting,0,0,0, -173884124,Daniel Macovei,ROU,male,1992-09-15,1.85,71,aquatics,0,0,0, -635773855,Daniel Martin,IRL,male,1986-08-20,1.76,63,cycling,0,0,0, -108357874,Daniel McConnell,AUS,male,1985-08-09,1.8,70,cycling,0,0,0, -702422699,Daniel Narcisse,FRA,male,1979-12-16,1.89,93,handball,0,1,0, -306635640,Daniel Natea,ROU,male,1992-04-21,2.03,170,judo,0,0,0, -747184552,Daniel Nestor,CAN,male,1972-09-04,1.91,87,tennis,0,0,0, -287487601,Daniel Paul Dennis,USA,male,1986-09-24,1.66,56,wrestling,0,0,0, -12736710,Daniel Repacholi,AUS,male,1982-05-15,2.02,128,shooting,0,0,0, -469677612,Daniel Rezende Xavier,BRA,male,1982-08-31,1.91,81,archery,0,0,0, -165866962,Daniel Sancery,BRA,male,1994-05-27,1.82,90,rugby sevens,0,0,0, -10072667,Daniel Shingles,GBR,male,1986-07-05,1.84,84,hockey,0,0,0, -149524585,Daniel Skaaning,DEN,male,1993-06-22,1.8,79,aquatics,0,0,0, -463354597,Daniel Smith,AUS,male,1991-05-28,1.9,83,aquatics,0,0,0, -285374253,Daniel Stahl,SWE,male,1992-08-27,2,155,athletics,0,0,0, -937921024,Daniel Talbot,GBR,male,1991-05-01,1.84,73,athletics,0,0,0, -815557568,Daniel Teklehaimanot,ERI,male,1988-11-10,,,cycling,0,0,0, -689191404,Daniel Tihomirov Aleksandrov,BUL,male,1991-09-13,1.82,81,wrestling,0,0,0, -278950598,Daniel Trojanowski,POL,male,1982-07-24,1.7,55,rowing,0,0,0, -797414950,Daniel Varga,HUN,male,1983-09-25,2.01,96,aquatics,0,0,0,"Gold at Beijing 2008, Dániel Varga was the world champion in 2013 and runner-up twice, at Montreal 2005 and Melbourne 2007. In 2016, he won the bronze medal at the European championship." -275083561,Daniel Vargas,MEX,male,1986-09-01,1.97,94,volleyball,0,0,0, -986523075,Daniel Vargas,MEX,male,1984-03-06,1.62,53,athletics,0,0,0, -317345417,Daniel Wiederkehr,SUI,male,1989-05-15,1.83,73,rowing,0,0,0, -493335766,Daniel Willcox,NZL,male,1990-06-08,1.79,72,sailing,0,0,0, -490419163,Daniela Campuzano Chavez Peon,MEX,female,1986-10-21,1.73,56,cycling,0,0,0, -111341393,Daniela Cardoso,POR,female,1991-12-15,1.57,48,athletics,0,0,0, -893449687,Daniela Carlan,ROU,female,1980-09-18,1.64,47,athletics,0,0,0, -735809811,Daniela Druncea,ROU,female,1990-11-02,1.5,50,rowing,0,0,1, -540393824,Daniela Ferenz,GER,female,1990-08-03,1.71,61,athletics,0,0,0, -466134584,Daniela Matarazzo Carraro,BRA,female,1985-03-25,1.65,67,shooting,0,0,0, -793252386,Daniela Monteiro Dodean,ROU,female,1988-01-13,1.7,55,table tennis,0,0,0, -816970958,Daniela Piedade,BRA,female,1979-03-02,1.74,70,handball,0,0,0, -215890909,Daniela Potapova,GER,female,1996-01-17,1.66,48,gymnastics,0,0,0, -783504559,Daniele Garozzo,ITA,male,1992-08-04,1.77,65,fencing,1,0,0, -821159021,Daniele Hypolito,BRA,female,1984-09-08,1.47,40,gymnastics,0,0,0, -438701799,Daniele Lupo,ITA,male,1991-05-06,1.93,83,volleyball,0,1,0, -590118305,Daniele Meucci,ITA,male,1985-10-07,1.78,64,athletics,0,0,0, -207450764,Danielle Kettlewell,AUS,female,1992-11-17,1.75,65,aquatics,0,0,0, -699029368,Danielle Lins,BRA,female,1985-01-05,1.83,71,volleyball,0,0,0, -534901017,Danielle Page,SRB,female,1986-11-14,1.88,77,basketball,0,0,1, -193943106,Danielle Prince,AUS,female,1992-06-12,1.66,52,gymnastics,0,0,0, -426724791,Danielle Suzanne Lappage,CAN,female,1990-09-24,1.65,63,wrestling,0,0,0, -554312456,Danielle Villars,SUI,female,1993-03-06,1.78,62,aquatics,0,0,0, -655184576,Danielle Waterman,GBR,female,1985-01-20,1.65,64,rugby sevens,0,0,0, -726533168,Daniil Pakhomov,RUS,male,1998-08-05,1.89,77,aquatics,0,0,0, -932783327,Danijel Furtula,MNE,male,1992-07-31,1.93,118,athletics,0,0,0, -761545111,Danijel Saric,QAT,male,1977-06-27,1.95,92,handball,0,0,0, -153868407,Danila Izotov,RUS,male,1991-10-02,1.92,90,aquatics,0,0,0, -937365507,Danilo Caro Guarnieri,COL,male,1965-09-06,1.7,58,shooting,0,0,0, -782501864,Danish Mujtaba,IND,male,1988-12-20,1.68,66,hockey,0,0,0, -128511976,Daniyar Ismayilov,TUR,male,1992-02-03,1.73,69,weightlifting,0,1,0, -76405574,Daniyar Yeleussinov,KAZ,male,1991-03-13,1.78,,boxing,1,0,0, -692417877,Danka Bartekova,SVK,female,1984-10-19,1.7,55,shooting,0,0,0, -787754025,Danka Kovinic,MNE,female,1994-11-18,1.7,67,tennis,0,0,0, -828679930,Dannie Boyd,CAN,female,1990-05-23,1.78,71,sailing,0,0,0, -101678493,Danniel Thomas,JAM,female,1992-11-11,1.68,91,athletics,0,0,0, -502713645,Danny Barrett,USA,male,1990-03-23,1.88,102,rugby sevens,0,0,0, -210284579,Danny Chia,MAS,male,1972-11-29,1.7,75,golf,0,0,0, -540892576,Danny Lee,NZL,male,1990-07-24,1.8,79,golf,0,0,0, -879435329,Danny Pinheiro Rodrigues,FRA,male,1985-04-16,1.61,57,gymnastics,0,0,0, -12537963,Danny Willett,GBR,male,1987-10-03,1.8,79,golf,0,0,0, -552666305,Danuta Kozak,HUN,female,1987-01-11,1.68,63,canoe,3,0,0,"Eleven-time world champion Danuta Kozák won two golds in canoe sprints at London 2012: one for the individual K-1 500m event and the other as part of the Hungary team in the K-4 500m, an event in which she won silver at Beijing 2008." -221668114,Danuta Urbanik,POL,female,1989-12-24,1.67,49,athletics,0,0,0, -729797574,Dapeng Wang,CHN,male,1996-12-03,1.84,95,archery,0,0,0, -828313980,Dara Hassanien,EGY,female,1996-04-01,1.69,59,aquatics,0,0,0, -479014574,Darcina Manuel,NZL,female,1992-09-24,1.62,57,judo,0,0,0, -490330541,Daria Chikunova,RUS,female,1999-04-12,1.77,59,aquatics,0,0,0, -358425644,Daria Dmitrieva,RUS,female,1995-08-09,1.78,74,handball,1,0,0, -592811889,Daria Gavrilova,AUS,female,1994-03-05,1.66,61,tennis,0,0,0, -971063935,Daria Iushko,UKR,female,1985-02-05,1.74,57,aquatics,0,0,0, -918679234,Daria Kasatkina,RUS,female,1997-05-07,1.7,62,tennis,0,0,0, -976263519,Daria Malygina,RUS,female,1994-04-04,2.02,82,volleyball,0,0,0, -201671999,Daria Mullakaeva,RUS,female,1998-06-18,1.72,61,aquatics,0,0,0, -183631297,Daria Pikulik,POL,female,1997-01-06,1.65,54,cycling,0,0,0, -981886723,Daria Pogorzelec,POL,female,1990-07-20,1.72,78,judo,0,0,0, -399441834,Daria Shmeleva,RUS,female,1994-10-26,1.64,64,cycling,0,1,0, -809722266,Daria Spiridonova,RUS,female,1998-07-08,1.56,45,gymnastics,0,1,0, -345015361,Daria Talanova,KGZ,female,1995-12-08,1.68,56,aquatics,0,0,0, -967665587,Daria Ustinova,RUS,female,1998-08-29,,,aquatics,0,0,0, -991531099,Daria Vdovina,RUS,female,1989-12-15,1.56,49,shooting,0,0,0, -881563866,Darian King,BAR,male,1992-04-26,1.72,70,tennis,0,0,0, -375255529,Darienn Ferrer Delis,CUB,male,1982-10-31,2.02,90,volleyball,0,0,0, -977866181,Dariga Shakimova,KAZ,female,1988-11-20,1.72,,boxing,0,0,1, -408213856,Dario Saric,CRO,male,1994-04-08,2.07,110,basketball,0,0,0, -113247488,Dariusz Radosz,POL,male,1986-08-13,1.99,91,rowing,0,0,0, -878416762,Dariya Derkach,ITA,female,1993-03-27,1.7,50,athletics,0,0,0, -689516934,Darko Brguljan,MNE,male,1990-11-05,1.8,97,aquatics,0,0,0, -670032549,Darko Cingesar,SLO,male,1990-07-25,1.87,93,handball,0,0,0, -756775265,Darko Planinic,CRO,male,1990-11-22,2.11,120,basketball,0,0,0, -996641471,Darlan Romani,BRA,male,1991-04-09,1.87,90,athletics,0,0,0, -177985963,Darlene,BRA,female,1990-01-11,1.73,59,football,0,0,0, -734837766,Darly Zoqbi,ESP,female,1982-08-25,1.78,70,handball,0,0,0, -549879032,Darrell Hill,USA,male,1993-08-17,1.91,145,athletics,0,0,0, -933764156,Darrell Wesh,HAI,male,1992-01-21,1.83,160,athletics,0,0,0, -366274936,Darwin Espinal,HON,male,1995-01-16,1.78,76,football,0,0,0, -369500376,Darya Klishina,RUS,female,1991-01-15,1.8,58,athletics,0,0,0, -373657197,Darya Maslova,KGZ,female,1995-05-06,1.65,44,athletics,0,0,0, -823394699,Darya Naumava,BLR,female,1995-08-26,1.65,75,weightlifting,0,1,0, -913687738,Darya Pachabut,BLR,female,1994-12-31,1.63,67,weightlifting,0,0,0, -380938305,Darya Semyonova,TKM,female,2002-05-28,1.7,50,aquatics,0,0,0, -444977271,Darya Skrypnik,BLR,female,1987-12-12,1.62,52,judo,0,0,0, -903300990,Darya Stepanyuk,UKR,female,1990-05-22,1.74,62,aquatics,0,0,0, -274289648,Daryl Homer,USA,male,1990-07-16,1.73,74,fencing,0,1,0, -590695708,Daryl Impey,RSA,male,1984-12-06,1.83,70,cycling,0,0,0, -849289031,Daryll Neita,GBR,female,1996-08-29,1.72,61,athletics,0,0,1, -793163437,Daryna Verkhogliad,UKR,female,1992-02-22,1.8,80,rowing,0,0,0, -164963140,Daryna Zevina,UKR,female,1994-09-01,1.78,67,aquatics,0,0,0, -916140092,Daseul Lee,KOR,female,1996-11-08,1.59,47,athletics,0,0,0, -771946742,Dattu Baban Bhokanal,IND,male,1991-04-05,1.89,81,rowing,0,0,0, -841861816,Daulet Shabanbay,KAZ,male,1983-08-09,1.9,125,wrestling,0,0,0, -769652662,Dave Hughes,USA,male,1978-01-22,1.86,71,sailing,0,0,0, -59605223,David Adley Smith Ii,PUR,male,1992-05-02,1.92,82,athletics,0,0,0, -301471859,David Alegre,ESP,male,1984-09-06,1.84,75,hockey,0,0,0, -606979268,David Ames,GBR,male,1989-06-25,1.88,82,hockey,0,0,0, -83570795,David Andersen,AUS,male,1980-06-23,2.1,102,basketball,0,0,0, -849872895,David Belyavskiy,RUS,male,1992-02-23,1.63,55,gymnastics,0,1,1, -643787184,David Boudia,USA,male,1989-04-24,1.76,72,aquatics,0,1,1, -52887085,David Brandl,AUT,male,1987-04-19,1.88,85,aquatics,0,0,0, -721958244,David Bustos,ESP,male,1990-08-25,1.82,64,athletics,0,0,0, -135006716,David Carter,CAN,male,1981-11-04,1.75,79,hockey,0,0,0, -529354305,David Carver,MRI,male,1987-09-05,1.83,68,athletics,0,0,0, -640388256,David Chapman,AUS,male,1965-03-22,1.67,72,shooting,0,0,0, -89844900,David Condon,GBR,male,1991-07-06,1.8,79,hockey,0,0,0, -806548008,David Cubillan,VEN,male,1987-07-27,1.83,79,basketball,0,0,0, -557960426,David Fernandes,POR,male,1983-09-08,1.81,82,canoe,0,0,0, -570007062,David Ferrer,ESP,male,1982-04-02,1.75,73,tennis,0,0,0, -926634435,David Florence,GBR,male,1982-08-08,1.88,76,canoe,0,1,0, -502550042,David Foldhazi,HUN,male,1995-01-06,1.89,84,aquatics,0,0,0, -971955364,David Goffin,BEL,male,1990-12-07,1.8,69,tennis,0,0,0, -231429156,David Graf,GER,male,1989-01-12,1.91,,boxing,0,0,0, -146589026,David Graf,SUI,male,1989-09-08,1.8,79,cycling,0,0,0, -584460736,David Harte,IRL,male,1988-04-03,1.95,94,hockey,0,0,0, -748526567,David Hearn,CAN,male,1979-06-17,1.85,77,golf,0,0,0, -487593687,David Higgins,USA,male,1994-06-27,1.76,68,shooting,0,0,0, -98040137,David Horvath,HUN,male,1996-05-16,1.75,73,aquatics,0,0,0, -695436665,David Hunt,RSA,male,1991-02-01,1.97,90,rowing,0,0,0, -733541995,David Jessen,CZE,male,1996-12-05,1.75,68,gymnastics,0,0,0, -440645107,David Joao Serralheiro Rosa,POR,male,1986-11-12,1.65,52,cycling,0,0,0, -553564024,David Katoatau,KIR,male,1984-07-17,1.7,105,weightlifting,0,0,0, -823262201,David Kostelecky,CZE,male,1975-05-12,1.9,93,shooting,0,0,0, -336599329,David Lee,USA,male,1982-03-08,2.03,105,volleyball,0,0,1, -807043500,David Lekuta Rudisha,KEN,male,1988-12-17,1.9,76,athletics,1,0,0,"A shining example of Kenya's tradition in athletics, David Rudisha is the current 800m Olympic and world champion, having also won the 2011 Daegu World Championship. Rudisha was the first athlete in the world to run under 1m41s in the event." -125537512,David Lingmerth,SWE,male,1987-07-22,1.7,80,golf,0,0,0, -206952063,David Mauricio Mier Y Teran Cuevas,MEX,male,1978-08-07,1.72,68,sailing,0,0,0, -906932951,David McKeon,AUS,male,1992-07-25,1.95,85,aquatics,0,0,0, -186269723,David McNeill,AUS,male,1986-10-06,1.75,53,athletics,0,0,0, -916000056,David Miklavcic,SLO,male,1983-01-29,1.96,100,handball,0,0,0, -881131530,David Morgan,AUS,male,1994-01-01,1.84,82,aquatics,0,0,1, -26934524,David Munoz Hidalgo,PAN,male,1964-09-29,1.7,70,shooting,0,0,0, -764731011,David Obernosterer,AUT,male,1989-05-30,1.83,80,badminton,0,0,0, -845122813,David Oliver Joyce,IRL,male,1987-02-12,1.71,,boxing,0,0,0, -679505903,David Pasqualucci,ITA,male,1996-06-27,1.81,81,archery,0,0,0, -971131011,David Plummer,USA,male,1985-10-09,1.91,95,aquatics,1,0,1, -387925121,David Powell,AUS,male,1991-04-08,1.75,67,table tennis,0,0,0, -735843682,David Sanchez Lopez,ESP,male,1994-07-20,1.66,69,weightlifting,0,0,0, -440461124,David Smith,USA,male,1985-05-15,2.01,86,volleyball,0,0,1, -665678036,David Soderberg,FIN,male,1979-08-11,1.85,96,athletics,0,0,0, -517039410,David Storl,GER,male,1990-07-27,1.98,117,athletics,0,0,0, -582202703,David Svoboda,CZE,male,1985-03-19,1.83,76,modern pentathlon,0,0,0,"Debuting at Beijing 2008, the Czech Republic's David Svoboda placed first in the modern pentathlon’s shooting event, but a fall in the equestrian part left him out of the running for the podium. He made up for it the next time, winning gold at London 2012" -9174337,David Sylvere Patrick Boui,CAF,male,1988-06-28,1.87,68,taekwondo,0,0,0, -63423995,David Torrence,PER,male,1985-11-26,1.9,65,athletics,0,0,0, -643201191,David Valero Serrano,ESP,male,1988-12-27,1.89,76,cycling,0,0,0, -507639455,David Verburg,USA,male,1991-05-14,1.73,70,athletics,1,0,0, -277572925,David Verraszto,HUN,male,1988-08-22,1.8,76,aquatics,0,0,0, -301376496,David Watts,AUS,male,1992-02-05,1.91,96,rowing,0,0,0, -661068918,David van der Colff,BOT,male,1997-04-29,,,aquatics,0,0,0, -919210003,Davide Manenti,ITA,male,1989-04-16,1.77,80,athletics,0,0,0, -244933358,Davide Uccellari,ITA,male,1991-10-11,1.85,64,triathlon,0,0,0, -636525680,Davie Selke,GER,male,1995-01-20,1.92,82,football,0,1,0, -382116248,Davilson dos Santos Morais,CPV,male,1989-02-03,1.88,,boxing,0,0,0, -397002318,Davit Chakvetadze,RUS,male,1992-10-18,1.74,85,wrestling,1,0,0, -259093930,Daviti Kharazishvili,GEO,male,1992-04-24,1.71,68,athletics,0,0,0, -688799432,Davor Stefanek,SRB,male,1985-09-12,1.7,66,wrestling,1,0,0, -409683971,Dawid Konarski,POL,male,1989-08-31,1.98,93,volleyball,0,0,0, -92392185,Dawit Seyaum,ETH,female,1996-07-27,1.61,49,athletics,0,0,0, -145653962,Dawit Wolde,ETH,male,1991-05-19,1.8,64,athletics,0,0,0, -337539240,Dayaris Mestre Alvarez,CUB,female,1986-11-20,1.5,48,judo,0,0,0, -625400298,Daynara de Paula,BRA,female,1989-07-25,1.63,55,aquatics,0,0,0, -777458812,DeAndre Jordan,USA,male,1988-07-21,2.11,120,basketball,1,0,0, -170161629,DeMarcus Cousins,USA,male,1990-08-13,2.1,122,basketball,1,0,0, -996704082,Deajah Stevens,USA,female,1995-05-19,,,athletics,0,0,0, -491112299,Dean Bombac,SLO,male,1989-04-04,1.89,94,handball,0,0,0, -275797773,Deanna Price,USA,female,1993-06-08,1.73,99,athletics,0,0,0, -612473315,Deanne Rose,CAN,female,1999-03-03,1.63,62,football,0,0,1, -378684511,Debashree Mazumdar,IND,female,1991-04-06,1.64,53,athletics,0,0,0, -119019224,Debby Stam-Pilon,NED,female,1984-07-24,1.84,68,volleyball,0,0,0, -254113146,Debby Susanto,INA,female,1989-05-03,1.61,51,badminton,0,0,0, -428138281,Debinha,BRA,female,1991-10-20,1.57,55,football,0,0,0, -844929047,Debora Seilhamer,PUR,female,1985-10-04,1.66,61,volleyball,0,0,0, -127202687,Deborah Rodriguez,URU,female,1992-12-02,1.75,61,athletics,0,0,0, -871793969,Deborah Tsai,AUS,female,1994-12-18,1.62,52,aquatics,0,0,0, -930773141,Debra Daniel,FSM,female,1991-03-04,1.53,68,aquatics,0,0,0, -679759459,Deep Ekka,IND,female,1994-06-03,1.58,63,hockey,0,0,0, -947558770,Deepika Deepika,IND,female,1987-02-07,1.59,61,hockey,0,0,0, -326907106,Deepika Kumari,IND,female,1994-06-13,1.63,61,archery,0,0,0, -892176470,Deiver Machado,COL,male,1993-09-02,1.79,71,football,0,0,0, -532865663,Deividas Margevicius,LTU,male,1995-04-26,1.87,80,aquatics,0,0,0, -859863879,Deivy Balanta,COL,male,1993-02-09,1.84,77,football,0,0,0, -295848758,Dejan Pajic,SRB,male,1989-08-15,1.78,78,canoe,0,0,0, -884920098,Dejen Gebremeskel,ETH,male,1989-11-24,1.8,58,athletics,0,0,0, -750143193,Delanno Williams,GBR,male,1993-12-23,1.8,73,athletics,0,0,0, -797004979,Delfina Merino,ARG,female,1989-10-15,1.69,59,hockey,0,0,0, -86795736,Delphine Lansac,FRA,female,1995-07-18,1.69,60,badminton,0,0,0, -174042478,Demar DeRozan,USA,male,1989-08-07,2.01,99,basketball,1,0,0, -306671782,Demetrius Pinder,BAH,male,1989-02-13,1.78,70,athletics,0,0,0, -224926689,Demian Gonzalez,ARG,male,1983-02-21,1.92,82,volleyball,0,0,0, -675018716,Demita Vega de Lille,MEX,female,1983-07-21,1.72,60,sailing,0,0,0, -493263577,Denes Varga,HUN,male,1987-03-29,1.93,96,aquatics,0,0,0, -398783638,Deni,INA,male,1989-07-26,1.65,69,weightlifting,0,0,0, -13630067,Denia Caballero,CUB,female,1990-01-13,1.75,70,athletics,0,0,1, -95013242,Denika Kassim,COM,female,1997-08-08,1.57,44,athletics,0,0,0, -634903913,Denis Abliazin,RUS,male,1992-08-03,1.6,62,gymnastics,0,2,1, -503917240,Denis Dmitriev,RUS,male,1986-03-23,1.77,90,cycling,0,0,1, -384593486,Denis Gargaud Chanut,FRA,male,1987-07-22,1.81,76,canoe,1,0,0, -245021648,Denis Gribanov,RUS,male,1986-06-03,1.9,74,sailing,0,0,0, -69215365,Denis Iartcev,RUS,male,1990-09-18,1.76,73,judo,0,0,0, -286228746,Denis Istomin,UZB,male,1986-09-07,1.87,85,tennis,0,0,0, -873793608,Denis Koulakov,RUS,male,1982-11-21,1.74,80,shooting,0,0,0, -521906110,Denis Kudla,USA,male,1992-08-17,1.81,79,tennis,0,0,0, -509497804,Denis Maksymilian Kudla,GER,male,1994-12-24,1.84,90,wrestling,0,0,1, -46394870,Denis Mysak,SVK,male,1995-11-30,1.89,90,canoe,0,1,0, -598284598,Denis Petrashov,KGZ,male,2000-02-01,,,aquatics,0,0,0, -168293636,Denis Ulanov,KAZ,male,1993-10-28,1.75,85,weightlifting,0,0,0, -63343858,Denisa Dedu,ROU,female,1994-09-27,1.82,73,handball,0,0,0, -913453330,Denisa Rosolova,CZE,female,1986-08-21,1.75,63,athletics,0,0,0, -4129853,Denise Lim,SIN,female,1991-09-14,1.55,57,sailing,0,0,0, -692229320,Deniss Karpak,EST,male,1986-07-18,2,100,sailing,0,0,0, -378680975,Deniz Cinar,TUR,male,1984-12-08,1.72,65,sailing,0,0,0, -33695982,Dennis Goossens,BEL,male,1993-12-16,1.6,65,gymnastics,0,0,0, -844014981,Dennis Ombachi,KEN,male,1994-12-14,1.85,98,rugby sevens,0,0,0, -432632544,Denys Kostyuk,UKR,male,1982-03-13,1.75,62,cycling,0,0,0, -107760935,Denys Molchanov,UKR,male,1987-05-16,1.9,82,tennis,0,0,0, -556851081,Denys Solonenko,UKR,male,1992-10-25,1.79,,boxing,0,0,0, -343364504,Deo Gracia Ngokaba,CGO,male,1997-05-17,1.9,140,judo,0,0,0, -510782872,Deokhyeon Kim,KOR,male,1985-12-08,1.8,71,athletics,0,0,0, -278528807,Deolin Mekoa,RSA,male,1993-08-10,1.75,67,football,0,0,0, -682281793,Deon Lendore,TTO,male,1992-10-28,1.79,75,athletics,0,0,0, -2593240,Deonise Fachinello,BRA,female,1983-06-20,1.8,73,handball,0,0,0, -849646461,Derek Drouin,CAN,male,1990-03-06,1.96,83,athletics,1,0,0, -789423999,Derek Hawkins,GBR,male,1989-04-29,1.8,68,athletics,0,0,0, -368262898,Derek Sua,SAM,male,1987-12-29,,,judo,0,0,0, -970701386,Derlys Ayala,PAR,male,1990-01-07,1.78,75,athletics,0,0,0, -484914459,Desiree Henry,GBR,female,1995-08-26,1.71,64,athletics,0,0,1, -525844968,Desiree Linden,USA,female,1983-07-26,1.55,43,athletics,0,0,0, -781892650,Desiree Rossit,ITA,female,1994-03-19,1.79,51,athletics,0,0,0, -535106472,Desiree Scott,CAN,female,1987-07-31,1.6,63,football,0,0,1, -639727915,Desler Puggaard,DEN,male,1995-02-19,1.87,71,football,0,0,0, -670754445,Deuce Carter,JAM,male,1990-09-28,1.83,82,athletics,0,0,0, -640447595,Devery Karz,USA,female,1988-02-18,1.73,58,rowing,0,0,0, -360434724,Devid Safaryan,ARM,male,1989-08-01,1.7,65,wrestling,0,0,0, -831917950,Devin McEwan,USA,male,1984-10-11,1.78,77,canoe,0,0,0, -211396920,Devindar Walmiki,IND,male,1992-05-28,1.78,69,hockey,0,0,0, -94495645,Devohn Teixeira,CAN,male,1989-02-09,1.65,61,hockey,0,0,0, -355897271,Devon Allen,USA,male,1994-12-12,1.86,83,athletics,0,0,0, -974219288,Devon Manchester,NZL,male,1989-11-11,1.78,78,hockey,0,0,0, -92529957,Devon Myles William Brown,RSA,male,1992-05-21,1.88,80,aquatics,0,0,0, -799132600,Dewi Safitri,INA,female,1993-02-10,1.51,53,weightlifting,0,0,0, -921638208,Dewi Yuliawati,INA,female,1997-06-02,1.66,65,rowing,0,0,0, -438551437,Dex Elmont,NED,male,1984-01-10,1.75,73,judo,0,0,0, -912033914,Dhurgham Ismael,IRQ,male,1994-05-23,1.77,70,football,0,0,0, -203504788,Di Wu,CHN,female,1993-10-27,1.82,75,basketball,0,0,0, -10438447,Diaaeldin Kamal Gouda Abdelmottaleb,EGY,male,1993-05-02,1.77,125,wrestling,0,0,0, -856659914,Diamara Planell,PUR,female,1993-02-16,1.8,67,athletics,0,0,0, -877009812,Diana Abla,BRA,female,1995-07-29,1.75,75,aquatics,0,0,0, -723783485,Diana Aydosova,KAZ,female,1995-09-05,1.58,50,athletics,0,0,0, -681626502,Diana Bacosi,ITA,female,1983-07-13,1.75,85,shooting,1,0,0, -266313114,Diana Khubeseryan,ARM,female,1994-05-05,1.7,60,athletics,0,0,0, -767005117,Diana Lobacevske,LTU,female,1980-08-07,1.74,57,athletics,0,0,0, -572629331,Diana Martin,ESP,female,1981-04-01,1.63,50,athletics,0,0,0, -48306282,Diana Matheson,CAN,female,1984-04-06,1.53,53,football,0,0,1, -812031749,Diana Ospina,COL,female,1989-03-03,1.57,58,football,0,0,0, -392473268,Diana Pineda,COL,female,1984-09-06,1.67,55,aquatics,0,0,0, -77686741,Diana Reyes,PUR,female,1993-04-29,1.91,80,volleyball,0,0,0, -910190523,Diana Sujew,GER,female,1990-11-02,1.66,53,athletics,0,0,0, -352310155,Diana Taurasi,USA,female,1982-06-11,1.82,70,basketball,1,0,0, -423391587,Diane Nukuri,BDI,female,1984-12-01,1.83,59,athletics,0,0,0, -123911422,Dianelys Perez,CUB,female,1988-06-28,1.49,59,shooting,0,0,0, -987878989,Didar Khamza,KAZ,male,1997-02-15,1.75,73,judo,0,0,0, -629941187,Didier Kiki,BEN,male,1995-11-30,1.85,84,athletics,0,0,0, -355496444,Diederik van Silfhout,NED,male,1988-04-20,1.9,87,equestrian,0,0,0, -109933404,Diego Botin Le Chever,ESP,male,1993-12-25,1.83,81,sailing,0,0,0, -210454399,Diego Colorado,COL,male,1973-08-31,1.69,62,athletics,0,0,0, -796700277,Diego Hypolito,BRA,male,1986-06-19,1.7,68,gymnastics,0,1,0, -39686227,Diego Milan Jimenez,DOM,male,1985-07-10,1.79,67,cycling,0,0,0, -5063397,Diego Occhiuzzi,ITA,male,1981-04-30,1.8,76,fencing,0,0,0, -578628315,Diego Palomeque,COL,male,1993-12-05,1.78,67,athletics,0,0,0, -820045789,Diego Rosa,ITA,male,1989-03-27,1.78,65,cycling,0,0,0, -309429588,Diego del Real,MEX,male,1994-03-06,1.85,100,athletics,0,0,0, -689489031,Dienov Andres Koka,CGO,male,1996-08-02,1.73,68,aquatics,0,0,0, -119737320,Dieter Dekoninck,BEL,male,1991-01-28,1.9,85,aquatics,0,0,0, -316835810,Dieudonne Wilfred Seyi Ntsengue,CMR,male,1998-01-23,1.83,,boxing,0,0,0, -249259020,Dilara Lokmanhekim,TUR,female,1994-04-18,1.65,48,judo,0,0,0, -549822679,Dilara Uralp,TUR,female,1995-11-16,1.63,54,sailing,0,0,0, -227184360,Diletta Carli,ITA,female,1996-05-07,1.7,61,aquatics,0,0,0, -847147736,Dilshod Nazarov,TJK,male,1982-05-06,1.87,120,athletics,1,0,0, -146607194,Dilshodjon Turdiev,UZB,male,1991-10-19,1.72,75,wrestling,0,0,0, -776618424,Dimitar Angelov Kumchev,BUL,male,1980-04-20,1.8,125,wrestling,0,0,0, -119683900,Dimitar Krastanov,BUL,male,1994-01-31,1.81,71,modern pentathlon,0,0,0, -536351159,Dimitri Bascou,FRA,male,1987-07-20,1.81,80,athletics,0,0,1, -913943115,Dimitri Juliet,NED,male,1996-03-28,1.81,80,athletics,0,0,0, -173674343,Dimitriana Surdu,MDA,female,1994-04-12,1.74,93,athletics,0,0,0, -158604912,Dimitrij Ovtcharov,GER,male,1988-09-02,1.86,78,table tennis,0,0,1, -391014162,Dimitrije Grgic,SRB,male,1984-06-22,1.91,82,shooting,0,0,0, -173609909,Dimitrios Antoniadis,GRE,male,1992-07-29,1.8,69,cycling,0,0,0, -791397203,Dimitrios Chondrokoukis,CYP,male,1988-01-26,1.94,74,athletics,0,0,0, -989537292,Dimitrios Dimitriou,GRE,male,1997-07-31,1.79,72,aquatics,0,0,0, -575914740,Dimitrios Koulouris,GRE,male,1991-04-22,1.83,79,aquatics,0,0,0, -761663615,Dimitriy Timchenko,UKR,male,1983-04-01,1.9,98,wrestling,0,0,0, -894060489,Dimitry Volkov,RUS,male,1995-05-25,2.01,88,volleyball,0,0,0, -871164091,Dina Asher-Smith,GBR,female,1995-12-04,1.64,55,athletics,0,0,1, -265627311,Dina Lebo Phalula,RSA,female,1983-12-09,1.65,46,athletics,0,0,0, -705775098,Dina Meshref,EGY,female,1994-03-10,1.66,59,table tennis,0,0,0, -717089687,Ding Chen,CHN,male,1992-08-05,1.75,62,athletics,0,0,0, -350064004,Diodio Diouf,SEN,female,1984-12-15,1.7,70,basketball,0,0,0, -176134705,Diogo Abreu,POR,male,1993-09-05,1.84,75,gymnastics,0,0,0, -989520284,Diogo Carvalho,POR,male,1988-03-26,1.84,75,aquatics,0,0,0, -709072877,Diogo Kent Hubner,BRA,male,1983-01-30,1.83,93,handball,0,0,0, -202401166,Diogo Sclebin,BRA,male,1982-05-06,1.9,80,triathlon,0,0,0, -778633221,Dion Dreesens,NED,male,1993-04-30,1.95,88,aquatics,0,0,0, -521343807,Dionisio Augustine Ii,FSM,male,1992-06-16,1.53,65,aquatics,0,0,0, -215603505,Dionysios Angelopoulos,GRE,male,1992-08-05,1.89,91,rowing,0,0,0, -727060365,Dipa Karmakar,IND,female,1993-08-09,1.51,47,gymnastics,0,0,0, -984475243,Dirk Uittenbogaard,NED,male,1990-05-08,1.99,93,rowing,0,0,1, -460186785,Dirk van Tichelt,BEL,male,1984-06-10,1.73,73,judo,0,0,1, -276444388,Dirngulbai Misech,PLW,female,1997-09-27,1.65,51,aquatics,0,0,0, -158299289,Dival Forele Malonga Dzalamou,CGO,male,1995-04-18,,,boxing,0,0,0, -410843536,Diyorbek Urozboev,UZB,male,1993-08-17,1.72,60,judo,0,0,1, -640654202,Djenebou Dante,MLI,female,1989-08-07,1.76,73,athletics,0,0,0, -208714960,Dmitri Barsuk,RUS,male,1980-01-20,1.94,96,volleyball,0,0,0, -486721254,Dmitrii Ushakov,RUS,male,1988-08-15,1.77,65,gymnastics,0,0,0, -980454993,Dmitrij Prokopcov,CZE,male,1980-01-05,1.85,78,table tennis,0,0,0, -217286137,Dmitriy Balandin,KAZ,male,1995-04-04,1.95,90,aquatics,1,0,0, -291341996,Dmitriy Koblov,KAZ,male,1992-11-30,1.83,82,athletics,0,0,0, -625508487,Dmitriy Shokin,UZB,male,1992-05-30,1.93,97,taekwondo,0,0,0, -19397250,Dmitry Kroyter,ISR,male,1993-02-18,1.87,73,athletics,0,0,0, -130360259,Dmitry Larionov,RUS,male,1985-12-22,1.78,84,canoe,0,0,0, -735957750,Dmitry Polyanskiy,RUS,male,1986-11-19,1.82,69,triathlon,0,0,0, -213236578,Dmitry Zherebchenko,RUS,male,1989-06-27,1.85,78,fencing,0,0,0, -130401664,Dmytro Chumak,UKR,male,1990-07-11,1.71,94,weightlifting,0,0,0, -168429293,Dmytro Ianchuk,UKR,male,1992-11-14,1.84,75,canoe,0,0,1, -834111099,Dmytro Karyuchenko,UKR,male,1980-01-15,1.79,79,fencing,0,0,0, -271182574,Dmytro Kosynskyy,UKR,male,1989-03-31,1.98,105,athletics,0,0,0, -229107456,Dmytro Mikhay,UKR,male,1990-02-27,1.95,96,rowing,0,0,0, -744288493,Dmytro Mytrofanov,UKR,male,1989-11-08,1.73,,boxing,0,0,0, -860594469,Dmytro Oseledets,UKR,male,1994-11-23,1.87,82,aquatics,0,0,0, -460602290,Dmytro Yakovenko,UKR,male,1992-09-17,1.92,70,athletics,0,0,0, -608020695,Doaa Elghobashy,EGY,female,1996-11-08,,,volleyball,0,0,0, -838189137,Dolores Hernandez,MEX,female,1997-05-21,1.62,62,aquatics,0,0,0, -932071837,Dolores Moreira Fraschini,URU,female,1999-02-16,1.68,63,sailing,0,0,0, -657952342,Domagoj Duvnjak,CRO,male,1988-06-01,1.98,100,handball,0,0,0, -733397080,Domantas Sabonis,LTU,male,1996-05-03,2.08,109,basketball,0,0,0, -451025767,Domenic Weinstein,GER,male,1994-08-27,1.88,83,cycling,0,0,0, -840838621,Domenico Montrone,ITA,male,1986-05-01,1.89,97,rowing,0,0,1, -209270839,Dominic Dugasse,SEY,male,1985-04-19,1.8,99,judo,0,0,0, -263640327,Dominic Inglot,GBR,male,1986-03-06,1.98,95,tennis,0,0,0, -840913101,Dominic King,GBR,male,1983-05-30,1.78,69,athletics,0,0,0, -342699829,Dominik Distelberger,AUT,male,1990-03-16,1.86,81,athletics,0,0,0, -330603205,Dominik Kozma,HUN,male,1991-04-10,1.91,90,aquatics,0,0,0, -726300964,Dominique Bouchard,CAN,female,1991-05-29,1.74,61,aquatics,0,0,0, -70068464,Dominique Scott,RSA,female,1992-06-24,1.66,52,athletics,0,0,0, -152688631,Dominykas Jancionis,LTU,male,1993-02-28,1.92,95,rowing,0,0,0, -960157104,Domonic Bedggood,AUS,male,1994-09-18,1.63,55,aquatics,0,0,0, -671503207,Donald Blair-Sanford,ISR,male,1987-02-05,1.96,81,athletics,0,0,0, -93583120,Donald Cabral,USA,male,1989-12-12,1.78,68,athletics,0,0,0, -714613268,Donald Thomas,BAH,male,1984-07-10,1.91,81,athletics,0,0,0, -971791407,Donata Rimshaite,RUS,female,1988-01-29,1.76,62,modern pentathlon,0,0,0, -215897620,Donata Vistartaite,LTU,female,1989-06-11,1.7,62,rowing,0,0,1, -658816074,Dong Dong,CHN,male,1989-04-13,1.68,56,gymnastics,0,1,0, -825718298,Dong Keun Lee,KOR,male,1990-11-20,1.83,78,badminton,0,0,0, -200290928,Donghan Gwak,KOR,male,1992-04-20,1.83,90,judo,0,0,1, -531161609,Donghyen Shin,KOR,male,1989-09-23,1.66,,gymnastics,0,0,0, -78993724,Dongjin Kang,KOR,male,1987-12-23,1.68,76,cycling,0,0,0, -929646844,Dongjin Park,KOR,male,1994-12-10,1.82,73,football,0,0,0, -282895929,Dongju Yu,KOR,male,1993-08-19,1.75,84,weightlifting,0,0,0, -580113738,Dongjun Kim,KOR,male,1994-12-19,1.88,84,football,0,0,0, -48515460,Donglun Song,CHN,female,1991-04-28,1.78,83,aquatics,0,0,0, -375732071,Dongmin Cha,KOR,male,1986-08-24,1.9,91,taekwondo,0,0,1, -896828538,Dongna Li,CHN,female,1988-12-06,1.7,58,football,0,0,0, -321880190,Dongseon Kim,KOR,male,1989-05-30,1.89,80,equestrian,0,0,0, -709580436,Dongxiao Li,CHN,female,1987-11-26,1.75,60,hockey,0,0,0, -259066180,Dongyan Huang,CHN,female,1993-12-14,1.72,63,cycling,0,0,0, -108660563,Dongyong Kim,KOR,male,1990-12-12,1.89,91,rowing,0,0,0, -328804448,Donis Escober,HON,male,1981-02-03,1.8,85,football,0,0,0, -87257453,Donna Vakalis,CAN,female,1979-12-30,1.64,53,modern pentathlon,0,0,0, -798030855,Dora Antal,HUN,female,1993-09-09,1.69,62,aquatics,0,0,0, -963025022,Dora Csabai,HUN,female,1989-04-20,1.75,63,aquatics,0,0,0, -702170084,Dora Czigany,HUN,female,1992-10-23,1.73,60,aquatics,0,0,0, -690232757,Dorcas Gyimah,GHA,female,1992-02-02,,,athletics,0,0,0, -853951269,Doreen Amata,NGR,female,1988-05-06,1.91,63,athletics,0,0,0, -669652246,Doreen Nziwa,KEN,female,1982-07-04,1.57,70,rugby sevens,0,0,0, -772686625,Dorian Coninx,FRA,male,1994-01-28,1.81,70,triathlon,0,0,0, -810821583,Dorian McMenemy Taylor,DOM,female,1996-10-28,1.86,55,aquatics,0,0,0, -151172719,Dorian Mortelette,FRA,male,1983-11-24,1.95,90,rowing,0,0,0, -863768656,Dorian van Rijsselberghe,NED,male,1988-11-24,1.89,75,sailing,1,0,0, -803889541,Doris Esmid Patino Marin,COL,female,1986-05-01,1.65,56,taekwondo,0,0,0, -606690650,Dorlan Pabon,COL,male,1988-01-24,1.68,68,football,0,0,0, -705883917,Dorothea Brandt,GER,female,1984-03-05,1.79,67,aquatics,0,0,0, -307716893,Dorothee Schneider,GER,female,1969-02-17,1.69,63,equestrian,1,0,0, -632435029,Dorothy Erzsebet Yeats,CAN,female,1993-07-29,1.6,71,wrestling,0,0,0, -494719089,Doston Yokubov,UZB,male,1995-04-05,1.58,69,weightlifting,0,0,0, -673086205,Doszhan Kartikov,KAZ,male,1989-05-24,1.73,75,wrestling,0,0,0, -723331849,Douglas Correia de Souza,BRA,male,1995-08-20,1.99,75,volleyball,1,0,0, -281803950,Douglas John Erasmus,RSA,male,1990-04-04,1.82,78,aquatics,0,0,0, -456548285,Douglas Santos,BRA,male,1994-03-22,1.73,69,football,1,0,0, -825814008,Dovydas Nemeravicius,LTU,male,1996-12-11,1.93,98,rowing,0,0,0, -285011612,Dragana Stankovic,SRB,female,1995-01-18,1.95,73,basketball,0,0,1, -225958644,Dragana Tomasevic,SRB,female,1982-06-04,1.75,80,athletics,0,0,0, -402567927,Drasko Brguljan,MNE,male,1984-12-27,1.94,92,aquatics,0,0,0, -66675675,Draymond Green,USA,male,1990-03-04,2,104,basketball,1,0,0, -86318895,Driss Lahrichi,MAR,male,1997-12-02,1.9,83,aquatics,0,0,0, -388102468,Drita Islami,MKD,female,1996-08-01,1.66,56,athletics,0,0,0, -226875071,Duanbin Ma,CHN,male,1990-03-28,1.74,66,judo,0,0,0, -236093323,Duane da Rocha Marce,ESP,female,1988-01-07,1.8,59,aquatics,0,0,0, -421676120,Dudi Sela,ISR,male,1985-04-04,1.75,67,tennis,0,0,0, -754252198,Dulguun Batsaikhan,MGL,male,1986-10-26,1.79,72,aquatics,0,0,0, -219999872,Dumitru Captari,ROU,male,1989-07-12,1.68,77,weightlifting,0,0,0, -327966166,Duncan Scott,GBR,male,1997-05-06,1.91,74,aquatics,0,2,0, -643802255,Dunhan Xiong,CHN,female,1998-11-11,1.81,83,aquatics,0,0,0, -154604483,Duo Shen,CHN,female,1997-06-09,1.81,74,aquatics,0,0,0, -3901892,Duobujie,CHN,male,1994-02-16,1.75,55,athletics,0,0,0, -131271973,Durdina Jaukovic,MNE,female,1997-02-24,1.86,86,handball,0,0,0, -596370468,Dusan Majdan,SVK,male,1987-09-08,1.8,67,athletics,0,0,0, -265536386,Dusan Mandic,SRB,male,1994-06-16,2.02,105,aquatics,1,0,0, -386288896,Dusko Pijetlovic,SRB,male,1985-04-25,1.97,97,aquatics,1,0,0, -521744837,Dustin Brown,GER,male,1984-12-08,1.96,78,tennis,0,0,0, -417996132,Dustin Tynes,BAH,male,1996-03-07,1.85,75,aquatics,0,0,0, -737107607,Dutee Chand,IND,female,1996-02-03,1.6,50,athletics,0,0,0, -47572256,Duygu Aynaci,TUR,female,1996-06-26,1.7,69,weightlifting,0,0,0, -578322269,Dwight Lewis,VEN,male,1987-10-07,1.98,,basketball,0,0,0, -870355208,Dylan Borlee,BEL,male,1992-09-20,1.9,78,athletics,0,0,0, -806170062,Dylan Bosch,RSA,male,1993-07-17,1.78,75,aquatics,0,0,0, -348929342,Dylan Carter,TTO,male,1996-01-30,,,aquatics,0,0,0, -829969108,Dylan Fletcher-Scott,GBR,male,1988-04-03,1.76,78,sailing,0,0,0, -965509678,Dylan Kennett,NZL,male,1994-12-08,1.78,75,cycling,0,0,0, -168131726,Dylan Sage,RSA,male,1992-01-24,1.88,96,rugby sevens,0,0,1, -5064348,Dylan Schmidt,NZL,male,1997-01-07,1.69,69,gymnastics,0,0,0, -140395363,Dzianis Mihal,BLR,male,1985-10-05,1.97,102,rowing,0,0,0, -186360775,Dzianis Simanovich,BLR,male,1987-04-20,1.78,64,athletics,0,0,0, -733134503,Dzmitry Asanau,BLR,male,1996-05-18,1.76,,boxing,0,0,0, -165309696,Dzmitry Nabokau,BLR,male,1996-01-20,1.86,69,athletics,0,0,0, -811378549,Dzmitry Platnitski,BLR,male,1988-08-26,1.91,83,athletics,0,0,0, -890120852,Dzmitry Shershan,BLR,male,1988-12-28,1.7,66,judo,0,0,0, -259130059,Dzsenifer Marozsan,GER,female,1992-04-18,1.71,55,football,1,0,0, -557320685,Earvin Ngapeth,FRA,male,1991-02-12,1.94,101,volleyball,0,0,0, -340813269,Ebi Ere,NGR,male,1981-08-03,1.96,97,basketball,0,0,0, -559696143,Ebtissam Mohamed,EGY,female,1996-09-25,1.63,54,cycling,0,0,0, -609618131,Ecaterina Guica,CAN,female,1993-10-09,1.65,52,judo,0,0,0, -507856515,Ed Jenkins,AUS,male,1986-05-26,1.84,96,rugby sevens,0,0,0, -250017195,Eddie Lovett,ISV,male,1992-06-25,1.8,73,athletics,0,0,0, -532630723,Eddy Yusof,SUI,male,1994-10-02,1.65,63,gymnastics,0,0,0, -159991654,Edel R. Amores,CUB,male,1998-10-05,1.81,72,athletics,0,0,0, -207619796,Eder Antonio Souza,BRA,male,1986-10-15,1.89,89,athletics,0,0,0, -87070724,Eder Carbonera,BRA,male,1983-10-19,2.05,107,volleyball,1,0,0, -605245129,Edgar Contreras,VEN,male,1992-07-16,1.78,67,taekwondo,0,0,0, -659584369,Edgar Crespo,PAN,male,1989-05-11,1.78,83,aquatics,0,0,0, -870599137,Edgar Ie,POR,male,1994-05-01,1.88,80,football,0,0,0, -487798358,Edgar Pineda Zeta,GUA,male,1997-08-17,1.62,56,weightlifting,0,0,0, -684979118,Edgar Ramon Munoz,VEN,male,1983-12-22,1.84,,boxing,0,0,0, -795195154,Edgar Rivera,MEX,male,1991-02-13,1.98,84,athletics,0,0,0, -709871920,Edgaras Venckaitis,LTU,male,1985-12-12,1.71,70,wrestling,0,0,0, -334864528,Edidiong Ofonime Odiong,BRN,female,1997-03-13,1.67,58,athletics,0,0,0, -285211262,Edigerson Gomes,DEN,male,1988-11-17,1.92,91,football,0,0,0, -32938884,Edina Gangl,HUN,female,1990-06-25,1.81,64,aquatics,0,0,0, -889715438,Edina Knapek,HUN,female,1977-10-05,1.66,53,fencing,0,0,0, -937748261,Edna Carrillo,MEX,female,1991-11-12,1.52,48,judo,0,0,0, -36037343,Edna Santini,BRA,female,1992-07-15,1.53,54,rugby sevens,0,0,0, -82126746,Edouard Joseph,HAI,male,1989-12-24,1.52,60,weightlifting,0,0,0, -34157460,Edson Isaias Freitas da Silva,BRA,male,1982-03-25,1.7,83,canoe,0,0,0, -906489293,Eduard Popp,GER,male,1991-06-16,1.9,128,wrestling,0,0,0, -475508680,Eduard Soghomonyan,BRA,male,1990-02-19,1.9,120,wrestling,0,0,0, -129556229,Eduarda Taleska,BRA,female,1986-09-23,1.86,84,handball,0,0,0,"Singled out as the best handball player in the world, in 2014, Brazil's Duda Amorim counts the 2013 world, 2007 and 2011 Pan American, and two European Champions League titles among her accomplishments." -757748599,Eduardo Alvarez Aznar,ESP,male,1984-01-01,1.73,67,equestrian,0,0,0, -454899916,Eduardo Jose Lorenzo,DOM,male,1966-08-31,1.71,84,shooting,0,0,0, -543622278,Eduardo Menezes,BRA,male,1980-05-01,1.93,84,equestrian,0,0,0, -495156314,Eduardo Rubio Rodriguez,CUB,male,1986-11-13,1.87,88,rowing,0,0,0, -367849834,Eduardo Sepulveda,ARG,male,1991-06-13,1.73,63,cycling,0,0,0, -943462468,Eduardo Solaeche Gomez,ESP,male,1993-11-22,1.83,79,aquatics,0,0,0, -706338154,Edvald Boasson Hagen,NOR,male,1987-05-17,,,cycling,0,0,0, -490010499,Edvinas Ramanauskas,LTU,male,1985-08-18,1.84,90,canoe,0,0,1, -687926847,Edward Araya,CHI,male,1986-02-14,1.76,62,athletics,0,0,0, -128111311,Edward Clancy,GBR,male,1985-03-12,1.85,79,cycling,1,0,0, -461207068,Edward Dawkins,NZL,male,1989-07-11,1.85,93,cycling,0,1,0, -430473716,Edward Gal,NED,male,1970-03-04,1.82,72,equestrian,0,0,0, -906594925,Edward King,USA,male,1989-06-14,1.94,77,rowing,0,0,0, -773652223,Edward Ling,GBR,male,1983-03-07,1.8,80,shooting,0,0,1, -596469056,Edward Ockenden,AUS,male,1987-04-03,1.8,73,hockey,0,0,0, -466051917,Edwige Gwend,ITA,female,1990-03-11,1.63,63,judo,0,0,0, -148140488,Edwin Orlando Mosquera Roa,COL,male,1985-07-26,1.65,69,weightlifting,0,0,0, -40681851,Edwina Bone,AUS,female,1988-04-29,1.7,70,hockey,0,0,0, -776649642,Edwina Tops-Alexander,AUS,female,1974-03-29,1.64,50,equestrian,0,0,0, -103003016,Edyta Dzieniszewska-Kierkla,POL,female,1986-05-05,1.7,72,canoe,0,0,0, -32569642,Edyta Jasinska,POL,female,1986-11-28,1.77,68,cycling,0,0,0, -594266311,Edzus Treimanis,LAT,male,1988-04-21,1.83,82,cycling,0,0,0, -249357704,Eefje Muskens,NED,female,1989-06-17,1.64,60,badminton,0,0,0, -416257556,Eelco Sintnicolaas,NED,male,1987-04-07,1.86,80,athletics,0,0,0, -583999455,Eeseul Baek,KOR,female,1994-10-04,1.75,72,hockey,0,0,0, -293548179,Efe Ajagba,NGR,male,1994-04-22,1.9,,boxing,0,0,0, -850581667,Efthimios Mitas,GRE,male,1985-05-15,1.9,105,shooting,0,0,0, -647057378,Egle Balciunaite,LTU,female,1988-10-31,1.76,63,athletics,0,0,0, -798534608,Eglys Yahima de la Cruz,CUB,female,1980-04-12,1.59,63,shooting,0,0,0, -238009548,Egor Kliuka,RUS,male,1995-06-15,2.08,93,volleyball,0,0,0, -878921230,Ehsan Hadadi,IRI,male,1985-01-20,1.92,120,athletics,0,0,0, -184575330,Ehsan Rouzbahani,IRI,male,1988-06-23,1.84,,boxing,0,0,0, -181030927,Ei Ei Thet,MYA,female,1992-12-13,,,aquatics,0,0,0, -797663283,Eider Arevalo,COL,male,1993-03-09,1.65,60,athletics,0,0,0, -966174315,Eike Onnen,GER,male,1982-08-03,1.97,92,athletics,0,0,0, -407225209,Eiki Takahashi,JPN,male,1992-11-19,1.76,58,athletics,0,0,0, -246556488,Eileen Grench,PAN,female,1986-08-05,1.52,59,fencing,0,0,0, -787671034,Eilidh Doyle,GBR,female,1987-02-20,1.7,60,athletics,0,0,1, -449582675,Eilish McColgan,GBR,female,1990-11-25,1.76,53,athletics,0,0,0, -974051662,Eimantas Stanionis,LTU,male,1994-08-17,1.73,,boxing,0,0,0, -58235529,Eirini-Marina Alexandri,AUT,female,1997-09-15,1.71,50,aquatics,0,0,0, -395251162,Eita Mori,JPN,male,1983-04-13,1.73,76,shooting,0,0,0, -381623095,Ejowvokoghene Oduduru,NGR,male,1996-10-07,,70,athletics,0,0,0, -786450061,Ekaterina Birlova,RUS,female,1987-08-11,1.8,62,volleyball,0,0,0, -882206907,Ekaterina Bukina,RUS,female,1987-05-05,1.74,75,wrestling,0,0,1, -358786472,Ekaterina Dyachenko,RUS,female,1987-08-31,1.67,53,fencing,1,0,0, -409581513,Ekaterina Ilina,RUS,female,1991-03-07,1.74,60,handball,1,0,0, -323828574,Ekaterina Ivanova Avramova,TUR,female,1991-11-12,1.8,69,aquatics,0,0,0, -516714653,Ekaterina Karsten,BLR,female,1972-06-02,1.85,81,rowing,0,0,0, -121281813,Ekaterina Khilko,UZB,female,1982-03-25,1.63,50,gymnastics,0,0,0, -905380582,Ekaterina Korshunova,RUS,female,1988-05-24,1.61,69,shooting,0,0,0, -335759270,Ekaterina Kosianenko,RUS,female,1990-02-02,1.78,64,volleyball,0,0,0, -392249714,Ekaterina Levina,ISR,female,1997-02-01,1.68,52,gymnastics,0,0,0, -443958002,Ekaterina Lisunova,RUS,female,1989-10-06,1.75,64,aquatics,0,0,1, -257253481,Ekaterina Makarova,RUS,female,1988-06-07,1.8,67,tennis,1,0,0, -472046862,Ekaterina Marennikova,RUS,female,1982-04-29,1.76,70,handball,1,0,0, -892190184,Ekaterina Petukhova,RUS,female,1996-06-16,1.63,48,aquatics,0,0,0, -121727222,Ekaterina Poplavskaya,BLR,female,1987-05-07,1.69,61,athletics,0,0,0, -814297240,Ekaterina Prokofyeva,RUS,female,1991-03-13,1.76,70,aquatics,0,0,1, -894255038,Ekaterina Rabaya,RUS,female,1993-11-06,1.58,60,shooting,0,0,0, -271247492,Ekaterina Tunguskova,UZB,female,1988-05-10,,,athletics,0,0,0, -11854539,Ekaterina Valkova,RUS,female,1991-05-17,1.67,63,judo,0,0,0, -366635571,Ekaterina Volkova,FIN,female,1997-07-02,1.68,48,gymnastics,0,0,0, -881845310,Ekaterina Voronina,UZB,female,1992-02-16,1.73,65,athletics,0,0,0, -226774163,Ekaterini Stefanidi,GRE,female,1990-02-04,1.73,59,athletics,1,0,0, -359490730,Ekenechukwu Ibekwe,NGR,male,1985-07-19,2.1,100,basketball,0,0,0, -967379890,Eko Yuli Irawan,INA,male,1989-07-24,1.54,62,weightlifting,0,1,0, -45507177,El Hadi Laameche,ALG,male,1990-03-05,1.65,60,athletics,0,0,0, -964251417,El Hassan Elabbassi,BRN,male,1984-04-13,1.71,61,athletics,0,0,0, -55190469,El Mahadi Messaoudi,MAR,male,1990-02-12,1.68,59,wrestling,0,0,0, -153066900,Elaheh Ahmadi,IRI,female,1982-05-31,1.6,62,shooting,0,0,0, -715359899,Elaine Thompson,JAM,female,1992-06-28,1.67,57,athletics,2,1,0, -320218359,Eldar Memisevic,QAT,male,1992-06-21,1.78,77,handball,0,0,0, -673973096,Elder Torres,HON,male,1995-04-14,1.76,69,football,0,0,0, -969535461,Eldred Henry,IVB,male,1994-09-18,,95,athletics,0,0,0, -777815800,Elea Mariama Diarra,FRA,female,1990-03-08,1.76,56,athletics,0,0,0, -205100723,Eleanor Bezzina,MLT,female,1977-03-25,1.54,,shooting,0,0,0, -513927497,Eleanor Harvey,CAN,female,1995-01-14,1.72,56,fencing,0,0,0, -518148894,Eleanor Logan,USA,female,1987-12-27,1.88,86,rowing,1,0,0, -473616854,Eleanor Patterson,AUS,female,1996-05-22,1.82,65,athletics,0,0,0, -846855602,Eleanor Watton,GBR,female,1989-06-10,1.67,64,hockey,0,0,0, -686764746,Eleftherios Petrounias,GRE,male,1990-11-30,1.64,62,gymnastics,1,0,0, -82665159,Elena Allen,GBR,female,1972-07-12,1.69,68,shooting,0,0,0, -222839663,Elena Aniushina,RUS,female,1993-12-08,,,canoe,0,0,0, -365519305,Elena Berta,ITA,female,1992-07-15,1.71,58,sailing,0,0,0, -869725095,Elena Cecchini,ITA,female,1992-05-25,1.68,55,cycling,0,0,0, -648308415,Elena Delle Donne,USA,female,1989-09-05,1.95,86,basketball,1,0,0, -13567083,Elena Ezhova,RUS,female,1977-08-14,1.78,69,volleyball,0,0,0, -137876590,Elena Galiabovitch,AUS,female,1989-11-13,1.77,,shooting,0,0,0, -240603445,Elena Lopez,ESP,female,1994-10-04,1.69,51,gymnastics,0,1,0, -971991593,Elena Maria Bonfanti,ITA,female,1988-07-09,1.72,52,athletics,0,0,0, -338111433,Elena Panturoiu,ROU,female,1995-02-24,1.7,57,athletics,0,0,0, -806464803,Elena Potapenko,KAZ,female,1993-04-20,1.65,53,modern pentathlon,0,0,0, -38343268,Elena Prokofyeva,RUS,female,1994-08-02,1.69,54,aquatics,1,0,0, -763314251,Elena Sergey Pirozhkova,USA,female,1986-10-13,1.68,71,wrestling,0,0,0, -160971394,Elena Vesnina,RUS,female,1986-08-01,1.76,66,tennis,1,0,0, -290451814,Elena Wassen,GER,female,2000-11-01,1.74,63,aquatics,0,0,0, -347167586,Elena-Lavinia Tarlea,ROU,female,1993-05-11,1.82,76,rowing,0,0,0, -173424444,Eleni Artymata,CYP,female,1986-05-16,1.77,62,athletics,0,0,0, -820277604,Eleni Doika,GRE,female,1995-11-15,1.7,55,gymnastics,0,0,0, -178710310,Eleonora Giorgi,ITA,female,1989-09-14,1.62,52,athletics,0,0,0, -541439110,Eleonora Lo Bianco,ITA,female,1979-12-22,1.71,67,volleyball,0,0,0, -985507855,Eli Dershwitz,USA,male,1995-09-23,1.86,77,fencing,0,0,0, -307747512,Elia Viviani,ITA,male,1989-02-07,1.77,70,cycling,1,0,0, -471696699,Eliane Martins,BRA,female,1986-05-26,1.6,49,athletics,0,0,0, -28171198,Eliane Saholinirina,MAD,female,1982-03-20,1.54,46,athletics,0,0,0, -15776102,Elias Eliseo Emigdio Abarca,MEX,male,1991-06-13,1.65,,boxing,0,0,0, -141627848,Elias Malave,VEN,male,1989-10-26,1.8,87,archery,0,0,0, -592765424,Elie Konki,FRA,male,1992-04-06,1.7,,boxing,0,0,0, -92990093,Eliecith Palacios,COL,female,1987-09-15,1.7,64,athletics,0,0,0, -789410278,Elif Jale Yesilirmak,TUR,female,1986-07-30,1.64,58,wrestling,0,0,0, -301067341,Elijah Motonei Manangoi,KEN,male,1993-01-05,1.85,62,athletics,0,0,0, -678119617,Elin Johansson,SWE,female,1990-08-05,1.76,67,taekwondo,0,0,0, -875252627,Elin Rubensson,SWE,female,1993-05-11,1.66,59,football,0,1,0, -172321951,Elina Mikhina,KAZ,female,1994-07-16,1.7,55,athletics,0,0,0, -198751525,Elina Svitolina,UKR,female,1994-09-12,1.74,60,tennis,0,0,0, -731624234,Elinah Phillip,IVB,female,2000-04-03,1.64,50,aquatics,0,0,0, -460751397,Elinor Barker,GBR,female,1994-09-07,1.68,56,cycling,1,0,0, -287409075,Elios Manzi,ITA,male,1996-03-28,1.55,60,judo,0,0,0, -768759366,Elis Guri,BUL,male,1983-07-06,1.89,100,wrestling,0,0,0, -613098347,Elis Ligtlee,NED,female,1994-06-28,1.85,90,cycling,1,0,0, -564832940,Elisa Bozzo,ITA,female,1987-05-08,1.7,59,aquatics,0,0,0, -757900456,Elisa Longo Borghini,ITA,female,1991-12-10,1.7,59,cycling,0,0,1, -12802833,Elisa Meneghini,ITA,female,1997-07-24,1.5,42,gymnastics,0,0,0, -732211683,Elisa Queirolo,ITA,female,1991-03-06,1.68,61,aquatics,0,1,0, -322088639,Elisa Rigaudo,ITA,female,1980-06-17,1.68,53,athletics,0,0,0, -7294908,Elisa Vania Ravololoniaina,MAD,female,1992-02-24,1.65,62,weightlifting,0,0,0, -668488790,Elisa di Francisca,ITA,female,1982-12-12,1.77,65,fencing,0,1,0,"A holder of seven world and 10 World Cup titles, Elisa di Francisca left London 2012 with two fencing gold medals. She won the individual foil event and was part of the victorious Italian team." -299509346,Elisabet Martinez,ESP,female,1988-06-13,1.67,73,rugby sevens,0,0,0, -587801561,Elisabeth Baldauf,AUT,female,1990-08-03,1.75,62,badminton,0,0,0, -695086866,Elisabeth Mandaba,CAF,female,1989-06-07,1.33,53,athletics,0,0,0, -4144486,Elisabeth Seitz,GER,female,1993-11-04,1.61,57,gymnastics,0,0,0, -880954077,Elisavet Pesiridou,GRE,female,1992-02-12,1.75,58,athletics,0,0,0, -608164942,Elisbet Games,CUB,female,1997-01-17,1.63,57,aquatics,0,0,0, -855475470,Elise Bussaglia,FRA,female,1985-09-24,1.63,54,football,0,0,0, -721445990,Elise Kellond-Knight,AUS,female,1990-08-10,1.65,60,football,0,0,0, -606790581,Eliska Klucinova,CZE,female,1988-04-14,1.78,70,athletics,0,0,0, -626906176,Elissa Downie,GBR,female,1999-07-20,1.58,58,gymnastics,0,0,0, -163054373,Elitsa Atanasova Yankova,BUL,female,1994-09-18,1.51,48,wrestling,0,0,1, -348703893,Eliud Kipchoge,KEN,male,1984-11-05,1.67,57,athletics,1,0,0, -900146374,Eliza Buceschi,ROU,female,1993-08-01,1.78,70,handball,0,0,0, -388879004,Eliza McCartney,NZL,female,1996-12-11,1.79,66,athletics,0,0,1, -826192606,Elizabet Chavez,ESP,female,1990-11-17,1.92,81,handball,0,0,0, -148313722,Elizabeta Samara,ROU,female,1989-04-15,1.71,56,table tennis,0,0,0, -56829234,Elizabeth Armitstead,GBR,female,1988-12-18,1.68,55,cycling,0,0,0,"In the sport since 2004, Great Briton Lizzie Armitstead has won world titles in both track cycling (2009) and road cycling (2015) - where she also won silver at the London 2012 Olympic Games." -993687711,Elizabeth Beisel,USA,female,1992-08-18,1.68,63,aquatics,0,0,0, -602061131,Elizabeth Bravo,ECU,female,1987-01-30,1.6,49,triathlon,0,0,0, -972005688,Elizabeth Cambage,AUS,female,1991-08-18,2.03,98,basketball,0,0,0, -50104802,Elizabeth Cui,NZL,female,1997-08-12,1.59,58,aquatics,0,0,0, -218669819,Elizabeth Gleadle,CAN,female,1988-12-05,1.85,79,athletics,0,0,0, -800526632,Elizabeth Gunson,NZL,female,1989-07-09,1.62,62,hockey,0,0,0, -180787419,Elizabeth Keddell,NZL,female,1994-01-31,1.69,67,hockey,0,0,0, -33326551,Elizabeth Madden,USA,female,1963-11-20,1.68,63,equestrian,0,1,0, -942647059,Elizabeth Pinedo,ESP,female,1981-05-13,1.75,68,handball,0,0,0, -819052934,Elizabeth Thompson,NZL,female,1994-12-08,1.75,71,hockey,0,0,0, -340978439,Elizabeth Yin,SIN,female,1991-08-08,1.67,70,sailing,0,0,0, -87758456,Elizbar Odikadze,GEO,male,1989-06-14,1.87,105,wrestling,0,0,0, -442945772,Elke Karsten,ARG,female,1995-05-15,1.75,65,handball,0,0,0, -184528790,Elke Vanhoof,BEL,female,1991-12-16,1.63,60,cycling,0,0,0, -1009342,Ella Nelson,AUS,female,1994-05-10,1.69,58,athletics,0,0,0, -657233215,Ella Nicholas,COK,female,1990-12-15,1.6,62,canoe,0,0,0, -312672556,Ellen Hogerwerf,NED,female,1989-02-10,1.83,72,rowing,0,0,0, -769513585,Ellen Hoog,NED,female,1986-03-25,1.64,54,hockey,0,1,0,"In the Netherlands field hockey team since 2004, midfielder Ellen Hoog already has more than 100 caps. She was in the team that won gold at Beijing 2008 and London 2012, in addition to the 2006 and 2014 world cups." -970232379,Ellen Sprunger,SUI,female,1986-08-05,1.72,62,athletics,0,0,0, -667380122,Ellen Tomek,USA,female,1984-05-01,1.78,72,rowing,0,0,0, -322522581,Ellen van Dijk,NED,female,1987-02-11,1.82,71,cycling,0,0,0, -579116180,Ellia Green,AUS,female,1993-02-20,1.72,75,rugby sevens,1,0,0, -163208975,Ellie Carpenter,AUS,female,2000-04-28,1.65,60,football,0,0,0, -191092318,Ellie Faulkner,GBR,female,1993-01-05,1.65,68,aquatics,0,0,0, -164454907,Elliot Giles,GBR,male,1994-05-26,1.83,77,athletics,0,0,0, -986117521,Elliot van Strydonck,BEL,male,1988-07-21,1.85,75,hockey,0,1,0, -933444753,Ellis Oreilly,IRL,female,1998-02-23,1.64,63,gymnastics,0,0,0, -579582876,Elmar Gasimov,AZE,male,1990-11-02,1.88,100,judo,0,1,0, -803655195,Elmira Syzdykova,KAZ,female,1992-02-05,1.72,69,wrestling,0,0,1, -434777707,Elmo Jankari,FIN,male,1992-10-13,,,equestrian,0,0,0, -285578745,Elmurat Tasmuradov,UZB,male,1991-12-12,1.6,59,wrestling,0,0,1, -699007358,Elodie Clouvel,FRA,female,1989-01-14,1.82,69,modern pentathlon,0,1,0, -557773110,Elodie Guiglion,FRA,female,1990-01-28,1.66,63,rugby sevens,0,0,0, -839282607,Elodie Ravera-Scaramozzino,FRA,female,1995-09-19,1.77,70,rowing,0,0,0, -310110976,Elodie Thomis,FRA,female,1986-08-13,1.68,60,football,0,0,0, -786667098,Eloi Imaniraguha,RWA,male,1995-01-01,,,aquatics,0,0,0, -366176086,Eloise Wellings,AUS,female,1982-11-09,1.72,52,athletics,0,0,0, -339293257,Elroy Gelant,RSA,male,1986-08-25,1.75,61,athletics,0,0,0, -95400560,Els Rens,BEL,female,1983-02-19,1.6,51,athletics,0,0,0, -584020714,Elsa Baquerizo McMillan,ESP,female,1987-06-25,1.81,68,volleyball,0,0,0, -746327154,Elsabeth Black,CAN,female,1995-09-08,1.55,56,gymnastics,0,0,0, -31920396,Elshod Rasulov,UZB,male,1986-03-07,1.84,,boxing,0,0,0, -388539796,Elsie Uwamahoro,BDI,female,1988-10-23,1.65,54,aquatics,0,0,0, -396471467,Elson Brechtefeld,NRU,male,1994-03-02,1.55,56,weightlifting,0,0,0, -821149858,Elvin Mamishzada,AZE,male,1991-12-17,1.65,,boxing,0,0,0, -405623057,Elvin Mursaliyev,AZE,male,1988-08-17,1.78,75,wrestling,0,0,0, -357059083,Elvina Karimova,RUS,female,1994-03-25,1.66,62,aquatics,0,0,1, -95609795,Elvismar Rodriguez,VEN,female,1997-02-14,1.78,70,judo,0,0,0, -584799839,Elyane Boal,CPV,female,1998-04-26,1.7,58,gymnastics,0,0,0, -228262342,Ema Ramusovic,MNE,female,1996-11-28,1.83,78,handball,0,0,0, -772515939,Emanuel Andrade,VEN,male,1996-09-11,1.89,76,equestrian,0,0,0, -829728385,Emanuel Buchmann,GER,male,1992-11-18,1.81,61,cycling,0,0,0, -655933510,Emanuel Silva,POR,male,1985-12-04,1.86,87,canoe,0,0,0, -937016443,Emanuele Birarelli,ITA,male,1981-02-08,2.02,95,volleyball,0,1,0, -728574987,Emanuele Gaudiano,ITA,male,1986-06-30,1.75,70,equestrian,0,0,0, -268422927,Emanuele Liuzzi,ITA,male,1990-12-22,1.91,85,rowing,0,0,0, -677858337,Emanuelle Lima,BRA,female,1996-05-03,1.67,55,gymnastics,0,0,0, -865724111,Emel Dereli,TUR,female,1996-02-25,1.81,110,athletics,0,0,0, -987023518,Emelda Piata Zessi,CMR,female,1997-04-08,1.9,65,volleyball,0,0,0, -588334076,Emelie Lundberg,SWE,female,1993-03-10,1.73,74,football,0,0,0, -468726382,Emerric Kpegba,TOG,male,1999-05-29,,,aquatics,0,0,0, -174328356,Emerson Duarte,BRA,male,1971-10-18,1.82,80,shooting,0,0,0, -414726536,Emese Szasz,HUN,female,1982-09-07,1.76,71,fencing,1,0,0, -852099973,Emi Nishikori,JPN,female,1993-01-09,1.6,53,hockey,0,0,0, -87680964,Emil Larsen,DEN,male,1991-06-22,1.83,79,football,0,0,0, -514462575,Emil Milev,USA,male,1968-05-02,1.78,83,shooting,0,0,0, -974556928,Emilce Sosa,ARG,female,1987-09-11,1.77,72,volleyball,0,0,0, -782571227,Emilee Cherry,AUS,female,1992-11-02,1.68,70,rugby sevens,1,0,0, -126099613,Emilia Alina Vuc,ROU,female,1993-10-04,1.54,50,wrestling,0,0,0, -348572893,Emilia Ankiewicz,POL,female,1990-11-22,1.78,64,athletics,0,0,0, -202538392,Emilia Appelqvist,SWE,female,1990-02-11,1.68,65,football,0,1,0, -43289045,Emilia Fahlin,SWE,female,1988-10-24,1.76,62,cycling,0,0,0, -136493766,Emilia Pikkarainen,FIN,female,1992-10-11,1.73,56,aquatics,0,0,0, -743555148,Emiliano Grillo,ARG,male,1992-09-14,1.78,78,golf,0,0,0, -699500168,Emiliano Lasa,URU,male,1990-01-25,1.8,75,athletics,0,0,0, -561775789,Emilie Andeol,FRA,female,1987-10-30,1.7,97,judo,1,0,0, -339081349,Emilie Fournel,CAN,female,1986-10-26,1.55,59,canoe,0,0,0, -542195691,Emilie Hegh Arntzen,NOR,female,1994-01-01,1.83,,handball,0,0,1, -466069449,Emilie Menuet,FRA,female,1991-09-27,1.55,44,athletics,0,0,0, -702824407,Emily Batty,CAN,female,1988-06-16,1.61,48,cycling,0,0,0, -146940230,Emily Diamond,GBR,female,1991-06-11,1.73,58,athletics,0,0,1, -838354626,Emily Gielnik,AUS,female,1992-05-13,,,football,0,0,0, -265521340,Emily Infeld,USA,female,1990-03-21,1.63,49,athletics,0,0,0, -746574483,Emily Morley,BAH,female,1993-12-06,1.53,70,rowing,0,0,0, -736663132,Emily Overholt,CAN,female,1997-10-04,1.7,60,aquatics,0,0,1, -345975199,Emily Regan,USA,female,1988-06-10,1.88,80,rowing,1,0,0, -905464042,Emily Rogers,AUS,female,1998-03-25,1.73,52,aquatics,0,0,0, -651596941,Emily Scarratt,GBR,female,1990-02-08,1.81,79,rugby sevens,0,0,0, -817845839,Emily Scott,GBR,female,1992-06-30,1.65,60,rugby sevens,0,0,0, -75025673,Emily Seebohm,AUS,female,1992-06-05,1.8,70,aquatics,0,1,0, -763142277,Emily Smith,AUS,female,1992-07-28,1.59,55,hockey,0,0,0, -688367620,Emily Sonnett,USA,female,1993-11-25,1.68,60,football,0,0,0, -914565471,Emily van Egmond,AUS,female,1993-07-12,1.79,70,football,0,0,0, -297385649,Emma Berglund,SWE,female,1988-12-19,1.72,63,football,0,1,0, -469541944,Emma Coburn,USA,female,1990-10-19,1.73,54,athletics,0,0,1, -325186756,Emma Dyke,NZL,female,1995-06-30,1.81,68,rowing,0,0,0, -763495268,Emma Hinze,GER,female,1997-09-17,1.68,63,cycling,0,0,0, -87473289,Emma Johansson,SWE,female,1983-09-23,1.68,54,cycling,0,1,0, -322314005,Emma Jorgensen,DEN,female,1996-01-30,1.69,70,canoe,0,1,0, -717137601,Emma Larsson,SWE,female,1998-11-15,1.47,40,gymnastics,0,0,0, -661638106,Emma McKeon,AUS,female,1994-05-24,1.8,60,aquatics,1,2,1, -833886353,Emma Moffatt,AUS,female,1984-09-07,1.71,57,triathlon,0,0,0, -493087174,Emma Pooley,GBR,female,1982-10-03,1.57,50,cycling,0,0,0, -79453290,Emma Robinson,NZL,female,1994-09-26,1.8,72,aquatics,0,0,0, -327389917,Emma Tonegato,AUS,female,1995-03-20,1.65,63,rugby sevens,1,0,0, -831117796,Emma Twigg,NZL,female,1987-03-01,1.82,76,rowing,0,0,0, -737526128,Emmaculate Msipa,ZIM,female,1992-06-07,1.68,59,football,0,0,0, -867271718,Emmanouil Mylonakis,GRE,male,1985-04-09,1.85,75,aquatics,0,0,0, -796025213,Emmanuel Callender,TTO,male,1984-05-10,1.89,86,athletics,0,0,0, -102727571,Emmanuel Daniel,NGR,male,1993-12-17,1.74,,football,0,0,1, -545212161,Emmanuel Dasor,GHA,male,1995-09-14,,,athletics,0,0,0, -585502953,Emmanuel Lebesson,FRA,male,1988-04-24,1.8,75,table tennis,0,0,0, -904221545,Emmanuel Lucenti,ARG,male,1984-11-23,1.73,81,judo,0,0,0, -364575203,Emmanuel Matadi,LBR,male,1991-04-15,,,athletics,0,0,0, -686447847,Emmanuel Stockbroekx,BEL,male,1993-12-23,1.89,88,hockey,0,1,0, -291735162,Emmanuel Vanluchene,BEL,male,1992-12-09,1.8,75,aquatics,0,0,0, -578388383,Emmanuel Zapata,ARG,male,1986-10-07,1.8,80,modern pentathlon,0,0,0, -238544524,Emre Zafer Barnes,TUR,male,1988-11-07,1.78,73,athletics,0,0,0, -333123827,Enas Mostafa Youssef Ahmed,EGY,female,1989-01-01,1.65,69,wrestling,0,0,0, -450857033,Endry Jose Saavedra,VEN,male,1991-05-14,1.8,,boxing,0,0,0, -282037284,Endy Miyem,FRA,female,1988-05-15,1.88,87,basketball,0,0,0, -166163342,English Gardner,USA,female,1992-04-22,1.68,54,athletics,1,0,0, -786298586,Enkelejda Shehaj Bekurti,USA,female,1969-01-23,1.63,57,shooting,0,0,0, -957160839,Enkh-Amar Kharkhuu,MGL,male,1992-08-05,1.7,,boxing,0,0,0, -62584278,Enrico D'Aniello,ITA,male,1995-12-06,1.52,53,rowing,0,0,0, -686586839,Enrico Garozzo,ITA,male,1989-06-21,1.9,70,fencing,0,1,0, -3678441,Enrico Lacruz,NED,male,1993-08-31,1.81,,boxing,0,0,0, -561159124,Enrique Brol,GUA,male,1978-10-09,1.81,73,shooting,0,0,0, -445189278,Enrique Jose Arathoon Pacas,ESA,male,1992-01-18,1.8,78,sailing,0,0,0, -968294058,Enzo Khasz,FRA,male,1993-08-13,2.03,105,aquatics,0,0,0, -484934440,Enzo Lefort,FRA,male,1991-09-29,1.91,80,fencing,0,1,0, -533594099,Enzo Yanez,CHI,male,1985-09-13,1.74,63,athletics,0,0,0, -57332594,Eoin Coughlan,AUS,male,1992-03-31,1.86,81,judo,0,0,0, -246404947,Epke Zonderland,NED,male,1986-04-16,1.73,69,gymnastics,0,0,0, -628232189,Epp Mae,EST,female,1992-04-02,1.7,76,wrestling,0,0,0, -800797383,Ercan Muslu,TUR,male,1988-12-01,1.6,52,athletics,0,0,0, -577556820,Erdinc Kebapci,TUR,male,1993-06-27,1.91,77,shooting,0,0,0, -897791102,Eri Hozumi,JPN,female,1994-02-17,1.67,60,tennis,0,0,0, -41617234,Eri Tosaka,JPN,female,1993-08-30,1.52,53,wrestling,1,0,0, -370045491,Eri Yonamine,JPN,female,1991-04-25,1.6,51,cycling,0,0,0, -121824937,Eric Alejandro,PUR,male,1986-04-15,1.8,81,athletics,0,0,0, -365293202,Eric Cray,PHI,male,1988-11-06,1.76,70,athletics,0,0,0, -250274348,Eric Delaunay,FRA,male,1987-12-04,1.78,83,shooting,0,0,0, -569855647,Eric Gillis,CAN,male,1980-03-08,1.72,58,athletics,0,0,0, -952826532,Eric Johannesen,GER,male,1988-07-16,1.93,100,rowing,0,1,0, -317561671,Eric Lamaze,CAN,male,1968-04-17,1.7,65,equestrian,0,0,1, -281183141,Eric Murray,NZL,male,1982-05-06,1.95,98,rowing,1,0,0, -92531992,Eric Oelschlaegel,GER,male,1995-09-19,1.93,87,football,0,1,0, -720596790,Eric Woelfl,CAN,male,1989-07-18,1.93,69,rowing,0,0,0, -289444580,Erica Elizabeth Wiebe,CAN,female,1989-06-13,1.75,75,wrestling,1,0,0, -43783175,Erica de Sena,BRA,female,1985-05-03,1.68,55,athletics,0,0,0, -431001912,Erick Aguirre,MEX,male,1997-02-23,1.7,60,football,0,0,0, -703944277,Erick Barrondo,GUA,male,1991-06-14,1.78,60,athletics,0,0,0, -239360706,Erick Gutierrez,MEX,male,1995-06-15,1.76,70,football,0,0,0, -493508166,Erick Rodriguez,NCA,male,1990-06-01,1.73,59,athletics,0,0,0, -577570329,Erick Torres,MEX,male,1993-01-19,1.83,79,football,0,0,0, -438356215,Erik Heil,GER,male,1989-08-10,1.85,80,sailing,0,0,1, -571952374,Erik Kynard,USA,male,1991-02-03,1.94,89,athletics,0,0,0, -421842394,Erik Persson,SWE,male,1994-01-12,1.81,75,aquatics,0,0,0, -184812086,Erik Pfeifer,GER,male,1987-01-22,1.91,,boxing,0,0,0, -474166352,Erik Shoji,USA,male,1989-08-24,1.84,83,volleyball,0,0,1, -476898873,Erik Tysse,NOR,male,1980-12-04,,,athletics,0,0,0, -296441839,Erik Varga,SVK,male,1976-06-09,1.84,90,shooting,0,0,0, -939093162,Erik Vlcek,SVK,male,1981-12-29,1.89,89,canoe,0,1,0, -898845676,Erika,BRA,female,1988-02-04,1.72,60,football,0,0,0, -594663400,Erika Abril,COL,female,1978-03-29,1.64,52,athletics,0,0,0, -938043431,Erika Araki,JPN,female,1984-08-03,1.86,78,volleyball,0,0,0, -876370845,Erika Fasana,ITA,female,1996-02-17,1.49,44,gymnastics,0,0,0, -699027822,Erika Ferraioli,ITA,female,1986-03-23,1.8,65,aquatics,0,0,0, -574116085,Erika Kinsey,SWE,female,1988-03-10,1.85,68,athletics,0,0,0, -907121538,Erika Kirpu,EST,female,1992-06-22,1.74,61,fencing,0,0,0, -136448459,Erika Miranda,BRA,female,1987-06-04,1.62,52,judo,0,0,0, -630444522,Erika Olivera,CHI,female,1976-01-04,1.63,55,athletics,0,0,0, -121922663,Erika Seltenreich-Hodgson,CAN,female,1995-04-24,1.7,65,aquatics,0,0,0, -923211927,Erika Souza,BRA,female,1982-03-09,1.97,92,basketball,0,0,0, -854947298,Erika Villaecija garcia,ESP,female,1984-06-02,1.77,61,aquatics,0,0,0, -861627176,Erin Densham,AUS,female,1985-05-03,1.65,52,triathlon,0,0,0, -988480190,Erin Nayler,NZL,female,1992-04-17,1.77,68,football,0,0,0, -582093558,Erin Phillips,AUS,female,1985-05-19,1.73,70,basketball,0,0,0, -940555509,Erin Rafuse,CAN,female,1988-12-02,1.73,60,sailing,0,0,0, -468726001,Erin Teschuk,CAN,female,1994-10-25,1.63,52,athletics,0,0,0, -654439782,Erina Jeke,ZIM,female,1990-09-16,1.63,53,football,0,0,0, -738743977,Erislandy Savon,CUB,male,1990-07-21,1.92,,boxing,0,0,1, -626115327,Erkin Adylbek Uulu,KGZ,male,1991-02-14,1.9,,boxing,0,0,0, -591654381,Erlon de Souza Silva,BRA,male,1991-06-23,1.75,78,canoe,0,1,0, -92210230,Ernesto Andres Zamora,URU,male,1983-04-13,1.8,63,athletics,0,0,0, -996057548,Ernesto Boardman,MEX,male,1993-02-23,1.75,92,archery,0,0,0, -301160522,Ernesto Reve,CUB,male,1992-02-26,1.82,79,athletics,0,0,0, -964710866,Ernst Rost-Onnes,BRA,male,1985-12-05,1.84,76,hockey,0,0,0, -840577893,Ersin Tacir,TUR,male,1985-04-01,1.7,61,athletics,0,0,0, -585533638,Erwan le Pechoux,FRA,male,1982-01-13,1.71,65,fencing,0,1,0, -794735118,Erwin Jose Caraballo Cabrera,VEN,male,1981-07-21,1.85,130,wrestling,0,0,0, -200848465,Erwin Maldonado,VEN,male,1983-07-25,1.7,70,aquatics,0,0,0, -138493384,Ese Brume,NGR,female,1996-01-20,1.67,58,athletics,0,0,0, -78109140,Eseosa Desalu,ITA,male,1994-02-19,1.8,67,athletics,0,0,0, -812990220,Eslam Eissa,EGY,male,1988-07-02,1.85,80,handball,0,0,0, -140388998,Esma Aydemir,TUR,female,1992-01-01,1.6,48,athletics,0,0,0, -276263740,Esmee Vermeulen,NED,female,1996-04-21,1.79,64,aquatics,0,0,0, -11916654,Espen Kofstad,NOR,male,1987-08-11,,,golf,0,0,0, -240797974,Esra Ural,TUR,female,1991-08-18,1.98,100,basketball,0,0,0, -535348868,Esraa Ahmed,EGY,female,1998-11-21,1.5,62,weightlifting,0,0,0, -54624746,Esref Apak,TUR,male,1982-01-03,1.84,120,athletics,0,0,0, -243334151,Estavana Polman,NED,female,1992-08-05,1.73,65,handball,0,0,0, -246336777,Esteban Enderica,ECU,male,1990-10-30,1.77,71,aquatics,0,0,0, -969516375,Esteban Grimalt,CHI,male,1991-01-09,1.9,88,volleyball,0,0,0, -962423324,Estefania Alvarez Piedrahita,COL,female,1994-08-25,1.62,60,aquatics,0,0,0, -318230176,Estefania Garcia,ECU,female,1988-05-13,1.65,63,judo,0,0,0, -61187111,Estefania Ramirez,COL,female,1991-09-10,1.68,69,rugby sevens,0,0,0, -776130602,Estela Garcia,ESP,female,1989-03-20,1.7,56,athletics,0,0,0, -438033327,Estela Navascues,ESP,female,1981-02-03,1.63,50,athletics,0,0,0, -208192255,Estellah Fils Rabetsara,MAD,female,1994-05-29,1.67,59,aquatics,0,0,0, -317848923,Estelle Mossely,FRA,female,1992-08-19,1.68,,boxing,1,0,0, -38750795,Estelle Nze-Minko,FRA,female,1991-08-11,1.78,67,handball,0,1,0, -789081554,Esther Barrugues Alvina,AND,female,1980-05-16,1.64,60,shooting,0,0,0, -982554606,Esther Guerrero,ESP,female,1990-02-07,1.68,60,athletics,0,0,0, -411235848,Esther Qin,AUS,female,1991-11-18,1.68,58,aquatics,0,0,0, -29928369,Esther Stam,GEO,female,1987-03-11,1.74,75,judo,0,0,0, -928379539,Etel Sanchez,ARG,female,1989-08-23,1.71,59,aquatics,0,0,0, -572871860,Etenesh Diro,ETH,female,1991-05-10,1.68,49,athletics,0,0,0, -711536725,Ethan Mitchell,NZL,male,1991-02-19,1.8,83,cycling,0,1,0, -724574659,Etiene Medeiros,BRA,female,1991-05-24,1.69,60,aquatics,0,0,0, -182669270,Etienne Hubert,FRA,male,1988-01-27,1.85,86,canoe,0,0,0, -17751725,Etimoni Timuani,TUV,male,1991-10-14,1.84,72,athletics,0,0,0, -777342251,Eugene Magee,IRL,male,1986-04-01,1.77,83,hockey,0,0,0, -855597933,Eugene Wang,CAN,male,1985-11-13,1.74,80,table tennis,0,0,0, -479811363,Eugenie Bouchard,CAN,female,1994-02-25,1.78,58,tennis,0,0,0, -446528894,Eugenie le Sommer,FRA,female,1989-05-18,1.61,58,football,0,0,0, -182815845,Eugenio Rossi,SMR,male,1992-03-06,1.92,75,athletics,0,0,0, -841004916,Eun Hee Ryu,KOR,female,1990-02-24,1.8,76,handball,0,0,0, -910783696,Eun Ju Lee,KOR,female,1999-03-05,1.48,,gymnastics,0,0,0, -465103196,Eunbi Cheon,KOR,female,1992-02-07,1.65,59,hockey,0,0,0, -879574989,Eunbi Lee,KOR,female,1990-10-23,1.63,58,handball,0,0,0, -53526732,Eunhye Kim,KOR,female,1987-05-08,1.61,50,shooting,0,0,0, -11561844,Eunice Chibanda,ZIM,female,1993-03-26,1.63,61,football,0,0,0, -289758508,Eunice Jepkirui Kirwa,BRN,female,1984-05-20,1.55,49,athletics,0,1,0, -1089850,Eunice Jepkoech Sum,KEN,female,1988-04-10,1.7,54,athletics,0,0,0, -847401073,Eunsook Choi,KOR,female,1986-02-28,1.69,59,fencing,0,0,0, -126463635,Eva Alicia Gurrola Ortiz,MEX,female,1994-05-17,1.55,63,weightlifting,0,0,0, -779677104,Eva Calvo Gomez,ESP,female,1991-07-29,1.76,57,taekwondo,0,1,0, -18347,Eva Csernoviczki,HUN,female,1986-10-16,1.6,51,judo,0,0,0, -133712250,Eva Hovenkamp,NED,female,1996-07-19,1.73,65,athletics,0,0,0, -810831172,Eva Lechner,ITA,female,1985-07-01,1.65,50,cycling,0,0,0, -239566230,Eva Lee,USA,female,1986-08-07,1.68,58,badminton,0,0,0, -876737211,Eva Odorova,SVK,female,1979-11-22,1.75,60,table tennis,0,0,0, -797157508,Eva Risztov,HUN,female,1985-08-30,1.73,64,aquatics,0,0,0, -934827181,Eva Roesken,GER,female,1984-07-05,1.65,70,shooting,0,0,0, -565124998,Eva Vrabcova Nyvltova,CZE,female,1986-02-06,1.62,48,athletics,0,0,0, -832639547,Eva de Goede,NED,female,1989-03-23,1.7,61,hockey,0,1,0, -103773001,Evagjelia Veli,ALB,female,1991-07-16,1.6,52,weightlifting,0,0,0, -509893044,Evaldas Petrauskas,LTU,male,1992-03-19,1.64,,boxing,0,0,0, -270191422,Evan Dunfee,CAN,male,1990-09-28,1.86,65,athletics,0,0,0, -707333933,Evan Jager,USA,male,1989-03-08,1.88,65,athletics,0,1,0, -355432500,Evan Van Moerkerke,CAN,male,1993-08-16,2.05,110,aquatics,0,0,0, -854422751,Evandro Goncalves Oliveira Junior,BRA,male,1990-07-17,2.1,105,volleyball,0,0,0, -861327414,Evandro M. Guerra,BRA,male,1981-12-27,2.07,103,volleyball,1,0,0, -842357019,Evangelia Papazoglou,GRE,female,1995-01-14,1.72,60,aquatics,0,0,0, -171585760,Evangelia Platanioti,GRE,female,1994-08-09,1.7,52,aquatics,0,0,0, -714691544,Evangelia Psarra,GRE,female,1974-06-17,1.72,63,archery,0,0,0, -135668596,Evangelos Ioannis Delakas,GRE,male,1985-02-08,1.89,90,aquatics,0,0,0, -507584476,Evania Pelite,AUS,female,1995-07-12,1.69,67,rugby sevens,1,0,0, -302915787,Evans Kiplagat Barkowet,AZE,male,1988-03-05,1.7,60,athletics,0,0,0, -91128162,Eve Macfarlane,NZL,female,1992-09-27,1.86,75,rowing,0,0,0, -132983811,Evelina Afoa,SAM,female,1998-09-13,1.62,60,aquatics,0,0,0, -700402174,Evelis Aguilar,COL,female,1993-01-03,1.73,64,athletics,0,0,0, -94836813,Evelyn Cipriano,CUB,female,1995-12-24,,,athletics,0,0,0, -241380224,Evelyn Rivera,COL,female,1997-12-03,1.57,54,athletics,0,0,0, -176808861,Evelyn Stevens,USA,female,1983-05-09,1.66,55,cycling,0,0,0, -508215341,Evelyn Verraszto,HUN,female,1989-07-17,1.73,62,aquatics,0,0,0, -822616386,Evelyne Tschopp,SUI,female,1991-06-19,1.62,55,judo,0,0,0, -924396982,Ever Palma,MEX,male,1992-03-18,1.66,62,athletics,0,0,0, -447422012,Evgenia Ukolova,RUS,female,1989-05-17,1.81,66,volleyball,0,0,0, -674582235,Evgenii Drattcev,RUS,male,1983-01-24,1.8,74,aquatics,0,0,0, -491370876,Evgenii Kuznetsov,RUS,male,1990-04-12,1.73,65,aquatics,0,0,0, -355775573,Evgenii Lukantsov,RUS,male,1991-12-05,1.87,91,canoe,0,0,0, -863520431,Evgeniia Soboleva,RUS,female,1988-08-26,1.8,75,aquatics,0,0,1, -277821751,Evgeniya Ivanova,RUS,female,1987-07-26,1.76,67,aquatics,0,0,1, -475190404,Evgeniya Ovchinnikova,RUS,female,1985-04-07,1.7,49,equestrian,0,0,0, -222720821,Evgeny Donskoy,RUS,male,1990-05-09,1.84,76,tennis,0,0,0, -474060754,Evgeny Komarov,RUS,male,1988-11-08,1.75,78,cycling,0,0,0, -475233950,Evgeny Koptelov,RUS,male,1993-11-24,1.91,74,aquatics,0,0,0, -968996509,Evgeny Rylov,RUS,male,1996-09-23,1.84,73,aquatics,0,0,1, -93776802,Evgeny Tishchenko,RUS,male,1991-07-15,1.96,,boxing,1,0,0, -569106125,Evgheni Nedealco,MDA,male,1990-01-03,1.79,79,wrestling,0,0,0, -449788118,Evi van Acker,BEL,female,1985-09-23,1.72,70,sailing,0,0,0, -664096617,Evita Leter,SUR,female,1995-07-05,,,aquatics,0,0,0, -224043471,Ewa Swoboda,POL,female,1997-07-26,1.67,60,athletics,0,0,0, -671544226,Ewelina Ptak,POL,female,1987-03-20,1.65,57,athletics,0,0,0, -644393700,Ewelina Wojnarowska,POL,female,1986-12-13,1.71,72,canoe,0,0,0, -524481891,Eyal Levine,ISR,male,1986-08-27,1.7,60,sailing,0,0,0, -317494421,Eyglo Gustafsdottir,ISL,female,1995-02-01,1.87,82,aquatics,0,0,0, -483053147,Eythora Thorsdottir,NED,female,1998-08-10,1.6,47,gymnastics,0,0,0, -455154602,Ezekiel Kemboi,KEN,male,1982-05-25,1.67,52,athletics,0,0,0, -724615961,Ezequiel Palacios,ARG,male,1992-10-02,1.98,95,volleyball,0,0,0, -560065840,Ezequiel Unsain,ARG,male,1995-03-09,1.76,75,football,0,0,0, -340239700,Ezinne Okparaebo,NOR,female,1988-03-03,,,athletics,0,0,0, -390665654,Fa Quan Bai,CHN,male,1986-03-18,1.73,66,triathlon,0,0,0, -940097096,Fabian Cancellara,SUI,male,1981-03-18,1.86,81,cycling,1,0,0, -315207567,Fabian Drzyzga,POL,male,1990-01-03,1.96,90,volleyball,0,0,0, -986859469,Fabian Florant,NED,male,1983-02-01,1.8,74,athletics,0,0,0, -136342210,Fabian Gomez,ARG,male,1978-10-27,1.73,80,golf,0,0,0, -630689816,Fabian Hambuechen,GER,male,1987-10-25,1.64,68,gymnastics,1,0,0, -893322663,Fabian Heinle,GER,male,1994-05-14,1.87,72,athletics,0,0,0, -3921925,Fabian Hernando Puerta Zapata,COL,male,1991-07-12,1.82,90,cycling,0,0,0, -646375341,Fabian Kauter,SUI,male,1985-09-22,1.81,83,fencing,0,0,0, -357914952,Fabian Wiede,GER,male,1994-02-08,1.94,94,handball,0,0,1, -463895086,Fabiana,BRA,female,1989-08-04,1.61,57,football,0,0,0, -978433851,Fabiana Claudino,BRA,female,1985-01-24,1.93,76,volleyball,0,0,0, -708498437,Fabiana Diniz,BRA,female,1981-05-13,1.83,71,handball,0,0,0, -716396610,Fabiana Moraes,BRA,female,1986-06-05,1.7,55,athletics,0,0,0, -415759115,Fabiana Murer,BRA,female,1981-03-16,1.72,58,athletics,0,0,0, -391451002,Fabiano Joseph,TAN,male,1985-12-24,,50,athletics,0,0,0, -146876427,Fabien Gilot,FRA,male,1984-04-27,1.92,87,aquatics,0,1,0, -377151461,Fabienne In-Albon,SUI,female,1986-09-05,1.64,63,golf,0,0,0, -903291591,Fabienne Kohlmann,GER,female,1989-11-06,1.7,57,athletics,0,0,0, -218223862,Fabienne Schlumpf,SUI,female,1990-11-17,1.83,63,athletics,0,0,0, -586833716,Fabienne St Louis,MRI,female,1988-03-22,1.71,55,triathlon,0,0,0, -748389052,Fabio Aru,ITA,male,1990-07-03,1.83,65,cycling,0,0,0, -425939081,Fabio Basile,ITA,male,1994-10-07,1.6,66,judo,1,0,0, -606133637,Fabio Chiuffa,BRA,male,1989-03-10,1.85,85,handball,0,0,0, -578637850,Fabio Fognini,ITA,male,1987-05-24,1.8,74,tennis,0,0,0, -902180423,Fabio Infimo,ITA,male,1988-07-18,1.94,86,rowing,0,0,0, -33201075,Fabio Wyss,SUI,male,1989-06-09,1.85,85,canoe,0,0,0, -683014073,Fabrice Dabla,TOG,male,1992-11-20,,,athletics,0,0,0, -124241338,Fabrice Lapierre,AUS,male,1983-10-17,1.79,69,athletics,0,0,0, -96784555,Fabrice Zango Hugues,BUR,male,1993-06-25,1.8,78,athletics,0,0,0, -797399696,Fabrizio Donato,ITA,male,1976-08-14,1.89,83,athletics,0,0,0, -244377433,Fabrizio Zanotti,PAR,male,1983-05-21,1.69,70,golf,0,0,0, -549448963,Facundo Callioni,ARG,male,1985-10-09,1.83,77,hockey,1,0,0, -933200790,Facundo Campazzo,ARG,male,1991-03-23,1.81,85,basketball,0,0,0, -121940121,Facundo Conte,ARG,male,1989-08-25,1.97,88,volleyball,0,0,0, -866117672,Facundo Olezza Bazan,ARG,male,1994-08-30,1.87,97,sailing,0,0,0, -951494220,Fadwa Sidi Madane,MAR,female,1994-11-20,1.75,56,athletics,0,0,0, -252487063,Fahad Talib,IRQ,male,1994-10-21,1.9,84,football,0,0,0, -203217392,Fahem Hammachi,ALG,male,1992-03-07,1.78,,boxing,0,0,0, -442721,Faicel Jaballah,TUN,male,1988-05-01,1.96,,judo,0,0,0, -932376029,Faith Chepngetich Kipyegon,KEN,female,1994-01-10,1.57,43,athletics,1,0,0, -511266323,Faleh Suwead Al Ajami,QAT,male,1986-06-05,1.65,60,equestrian,0,0,0, -80472413,Fan Wang,CHN,female,1994-01-27,1.88,72,volleyball,0,0,0, -667913216,Fang Chen,CHN,female,1983-10-19,1.71,60,shooting,0,0,0, -129560075,Fangxu Yang,CHN,female,1994-10-06,1.9,71,volleyball,1,0,0, -775503680,Fanny Deberghes,FRA,female,1994-02-21,1.7,65,aquatics,0,0,0, -816581601,Fanny Horta,FRA,female,1986-01-22,1.66,63,rugby sevens,0,0,0, -337880291,Fanny Lecluyse,BEL,female,1992-03-11,1.77,64,aquatics,0,0,0, -742843800,Fantine Lesaffre,FRA,female,1994-11-10,1.8,57,aquatics,0,0,0, -465963657,Farah Boufadene,ALG,female,1999-03-11,1.55,55,gymnastics,0,0,0, -140298788,Farah Jacques,CAN,female,1990-02-08,1.74,59,athletics,0,0,0, -112237470,Fares Ferjani,TUN,male,1997-07-22,1.75,60,fencing,0,0,0, -924635327,Fares Ibrahim E. H. Elbakh,QAT,male,1998-06-04,1.75,85,weightlifting,0,0,0, -351843996,Farhad Ghaemi,IRI,male,1989-08-28,1.97,73,volleyball,0,0,0, -261146293,Farhan Farhan,BRN,male,1996-10-24,1.79,67,aquatics,0,0,0, -591480442,Farid Chaal,ALG,male,1994-07-03,1.9,80,football,0,0,0, -892804755,Farida Azizova,AZE,female,1995-06-06,1.73,67,taekwondo,0,0,0, -382788770,Farida Osman,EGY,female,1995-01-18,1.73,63,aquatics,0,0,0, -738027974,Farkhad Kharki,KAZ,male,1991-04-20,1.6,62,weightlifting,0,0,1, -848404130,Farzan Ashourzadeh Fallah,IRI,male,1996-11-25,1.85,58,taekwondo,0,0,0, -335487444,Fatehah Mustapa,MAS,female,1989-03-12,1.63,64,cycling,0,0,0, -283411647,Fatema Almahmeed,BRN,female,1999-06-14,1.67,60,aquatics,0,0,0, -91359398,Fatima Alkaramova,AZE,female,2002-06-26,1.75,60,aquatics,0,0,0, -300063217,Fatima Gallardo Carapeto,ESP,female,1997-05-24,1.8,60,aquatics,0,0,0, -577411448,Fatima Galvez,ESP,female,1987-01-19,1.66,60,shooting,0,0,0, -457192080,Fatma El Sharnouby,EGY,female,1997-11-18,,,athletics,0,0,0, -158999852,Fatou Dieng,SEN,female,1983-08-18,1.67,60,basketball,0,0,0, -708809781,Fatoumata Samassekou,MLI,female,1987-12-31,1.68,74,aquatics,0,0,0, -930422859,Faye Husain,IOA,female,1994-10-20,,,aquatics,0,0,0, -471409647,Faye Njie,GAM,male,1993-11-23,,,judo,0,0,0, -454377713,Fazliddin Gaibnazarov,UZB,male,1991-06-16,1.69,,boxing,1,0,0, -156730444,Federica Pellegrini,ITA,female,1988-08-05,1.79,65,aquatics,0,0,0, -131020655,Federica Radicchi,ITA,female,1988-12-21,1.7,70,aquatics,0,1,0, -536316359,Federico Bocchia,ITA,male,1986-10-24,1.97,93,aquatics,0,0,0, -384768641,Federico Bruno,ARG,male,1993-06-18,1.85,66,athletics,0,0,0, -735031995,Federico Delbonis,ARG,male,1990-10-05,1.93,89,tennis,0,0,0, -856887683,Federico Fernandez,ARG,male,1989-10-17,1.91,88,handball,0,0,0, -429655510,Federico Gil,ARG,male,1988-04-29,1.75,78,shooting,0,0,0, -959504694,Federico Grabich,ARG,male,1990-03-26,1.93,92,aquatics,0,0,0, -589818101,Federico Pizarro,ARG,male,1986-09-07,1.83,84,handball,0,0,0, -51952214,Federico Turrini,ITA,male,1987-07-21,1.93,87,aquatics,0,0,0, -695896806,Federico Vanelli,ITA,male,1991-03-09,1.8,75,aquatics,0,0,0, -38463047,Federico Vieyra,ARG,male,1988-07-21,1.92,90,handball,0,0,0, -742848038,Fedor Vlasov,RUS,male,1984-03-28,1.79,93,shooting,0,0,0, -388453546,Fedrick Dacres,JAM,male,1994-02-28,1.91,104,athletics,0,0,0, -238428792,Fehaid Aldeehani,IOA,male,1966-10-11,1.76,95,shooting,1,0,0, -302682488,Fei Peng,CHN,male,1992-03-06,1.84,89,wrestling,0,0,0, -759792291,Feihong Pan,CHN,female,1989-07-17,1.73,57,rowing,0,0,1, -54244371,Feilian Mao,CHN,male,1993-07-30,1.85,74,aquatics,0,0,0, -600249643,Felice Chow,TTO,female,1977-06-15,1.75,70,rowing,0,0,0, -184330822,Felice Mueller,USA,female,1989-10-15,1.86,72,rowing,0,0,0, -426841600,Felipe AMARAL,BRA,male,1990-10-09,,,equestrian,0,0,0, -932918802,Felipe Aguilar,COL,male,1993-01-20,1.91,80,football,0,0,0, -715303809,Felipe Aguilar,CHI,male,1974-11-07,1.7,72,golf,0,0,0, -671103389,Felipe Almeida Wu,BRA,male,1992-06-11,1.69,69,shooting,0,1,0, -390089818,Felipe Anderson,BRA,male,1993-04-15,1.75,69,football,1,0,0, -854679340,Felipe Borges,BRA,male,1994-11-16,1.85,72,canoe,0,0,0, -959719489,Felipe Cardenas Morales,CHI,male,1991-07-22,1.83,75,rowing,0,0,0, -619195032,Felipe Carmo,BRA,male,1997-03-12,,,football,0,0,0, -279016707,Felipe Claro,BRA,male,1986-02-28,1.72,83,rugby sevens,0,0,0, -549441884,Felipe Franca,BRA,male,1987-05-14,1.85,95,aquatics,0,0,0, -476489532,Felipe Kitadai,BRA,male,1989-07-28,1.64,60,judo,0,0,0, -245089124,Felipe Nascimento,BRA,male,1993-07-05,1.72,68,modern pentathlon,0,0,0, -452820051,Felipe Perrone,BRA,male,1986-02-27,1.83,95,aquatics,0,0,0, -420641230,Felipe Reyes,ESP,male,1980-03-16,2.04,109,basketball,0,0,1, -518637481,Felipe Sancery,BRA,male,1994-05-27,1.82,90,rugby sevens,0,0,0, -921036132,Felipe Tapia,CHI,male,1995-04-25,1.76,70,aquatics,0,0,0, -581423407,Felipe da Costa E Silva,BRA,male,1984-08-08,1.96,103,aquatics,0,0,0, -709441023,Felisha Johnson,USA,female,1989-07-24,1.86,127,athletics,0,0,0, -556954247,Felistas Muzongondi,ZIM,female,1986-03-22,1.67,53,football,0,0,0, -773046456,Felix Auboeck,AUT,male,1996-12-19,1.98,85,aquatics,0,0,0, -576762169,Felix Denayer,BEL,male,1990-01-31,1.9,85,hockey,0,1,0, -52397385,Felix Drahotta,GER,male,1989-01-01,2,102,rowing,0,1,0, -303731329,Felix Vogg,SUI,male,1990-06-19,1.8,68,equestrian,0,0,0, -641453872,Felix Wimberger,GER,male,1990-02-28,1.9,92,rowing,0,0,0, -534846589,Femi Ogunode,QAT,male,1991-05-15,1.85,85,athletics,0,0,0, -13738320,Femke Heemskerk,NED,female,1987-09-21,1.8,68,aquatics,0,0,0, -474653253,Femke Pluim,NED,female,1994-05-10,1.8,61,athletics,0,0,0, -281630482,Femke Stoltenborg,NED,female,1991-07-30,1.89,82,volleyball,0,0,0, -679334702,Fen Li,SWE,female,1976-08-25,1.64,60,table tennis,0,0,0, -934739694,Feng Chen,SIN,male,1994-03-24,1.7,65,table tennis,0,0,0, -887907683,Feng Zhou,CHN,female,1993-09-12,1.75,71,wrestling,0,0,0, -481744691,Fengkai Yu,CHN,male,1995-03-13,1.93,,boxing,0,0,0, -991490353,Fengliu Zhang,CHN,female,1989-11-15,1.72,77,wrestling,0,0,1, -870522604,Fengyue Pang,CHN,female,1989-01-19,1.65,59,football,0,0,0, -65705163,Ferdinand Gerz,GER,male,1988-11-17,1.76,62,sailing,0,0,0, -256517204,Ferenc Szekszardi,AUS,male,1979-09-22,1.78,79,canoe,0,0,0, -451152705,Ferenc Szentirmai,UKR,male,1983-11-29,1.8,75,equestrian,0,0,0, -562337692,Fergus Kavanagh,AUS,male,1985-05-21,1.82,75,hockey,0,0,0, -794973951,Ferguson Cheruiyot Rotich,KEN,male,1989-11-30,1.85,74,athletics,0,0,0, -352965099,Ferhat Arican,TUR,male,1993-07-28,1.78,68,gymnastics,0,0,0, -596003773,Fernanda Decnop,BRA,female,1987-06-19,1.72,67,sailing,0,0,0, -828133435,Fernanda Ferreira,BRA,female,1985-01-25,1.63,58,rowing,0,0,0, -269045350,Fernanda Franca da Silva,BRA,female,1989-09-25,1.76,68,handball,0,0,0, -114303596,Fernanda Martins,BRA,female,1988-07-26,1.75,85,athletics,0,0,0, -529630572,Fernanda Oliveira,BRA,female,1980-12-19,1.61,54,sailing,0,0,0, -999389505,Fernanda Rodrigues,BRA,female,1986-05-10,1.81,75,volleyball,0,0,0, -649243319,Fernanda Russo,ARG,female,1999-10-02,1.66,60,shooting,0,0,0, -404382736,Fernando,POR,male,1997-03-14,1.82,75,football,0,0,0, -813873984,Fernando Alarza,ESP,male,1991-03-23,1.78,67,triathlon,0,0,0, -52514011,Fernando Borello,ARG,male,1980-02-12,1.88,92,shooting,0,0,0, -288552617,Fernando Carro,ESP,male,1992-04-01,1.7,60,athletics,0,0,0, -175585720,Fernando Daniel Martinez,ARG,male,1991-07-18,1.65,,boxing,0,0,0, -713904003,Fernando Dayan Jorge,CUB,male,1998-12-03,1.73,70,canoe,0,0,0, -812666692,Fernando Echavarri Erasun,ESP,male,1972-08-13,1.8,76,sailing,0,0,0, -611572399,Fernando Garcia,ARG,male,1981-08-31,1.9,91,handball,0,0,0, -392897095,Fernando Gaviria Rendon,COL,male,1994-08-19,1.8,70,cycling,0,0,0, -724928421,Fernando Luna,ARG,male,1990-05-12,1.82,80,rugby sevens,0,0,0, -976575378,Fernando Pimenta,POR,male,1989-08-13,1.78,81,canoe,0,0,0, -201491381,Fernando Prass,BRA,male,1978-07-09,,,football,0,0,0, -344465413,Fernando Salas Manguis,ECU,male,1988-02-10,1.86,163,weightlifting,0,0,0, -427314005,Fernando Saraiva Reis,BRA,male,1990-03-10,1.85,155,weightlifting,0,0,0, -108222132,Fernando Scavasin,BRA,male,1984-11-24,1.84,80,fencing,0,0,0, -559608161,Ferry Weertman,NED,male,1992-06-27,1.89,86,aquatics,1,0,0, -282237207,Feyisa Lilesa,ETH,male,1990-02-01,1.75,67,athletics,0,1,0, -397905004,Fidel Antonio Vargas,CUB,male,1992-07-28,1.86,91,canoe,0,0,0, -263607639,Fie Udby Erichsen,DEN,female,1985-04-23,1.84,79,rowing,0,0,0, -990339292,Filip Dvorak,CZE,male,1988-07-30,1.89,89,canoe,0,0,0, -198261943,Filip Filipovic,SRB,male,1987-05-01,1.96,101,aquatics,1,0,0,"A holder of two bronze medals, won at Beijing 2008 and London 2012, Serbia's Filip Filipović was world champion at Kazan 2015 and Rome 2009, and won five European championships, including the 2016 edition." -95290064,Filip Grgic,CRO,male,1989-10-25,1.73,70,taekwondo,0,0,0, -155085294,Filip Hrgovic,CRO,male,1992-06-04,1.97,,boxing,0,0,1, -797627457,Filip Ingebrigtsen,NOR,male,1993-04-20,,,athletics,0,0,0, -838040702,Filip KLIKOVAC,MNE,male,1989-02-07,1.9,118,aquatics,0,0,0, -296668459,Filip Kruslin,CRO,male,1989-03-18,1.99,93,basketball,0,0,0, -591154202,Filip Mihaljevic,CRO,male,1994-07-31,2.01,114,athletics,0,0,0, -426939907,Filip Nepejchal,CZE,male,1999-07-08,1.77,70,shooting,0,0,0, -818684530,Filip Svab,CZE,male,1983-04-28,1.73,78,canoe,0,0,0, -607425902,Filip Ude,CRO,male,1986-06-03,1.7,68,gymnastics,0,0,0, -789252320,Filip Wypych,POL,male,1991-04-20,1.83,75,aquatics,0,0,0, -877016251,Filip Zaborowski,POL,male,1994-07-25,1.88,77,aquatics,0,0,0, -351078300,Filipa Martins,POR,female,1996-01-09,1.63,55,gymnastics,0,0,0, -52190306,Filipe Baravilala,FIJ,male,1994-11-25,1.7,72,football,0,0,0, -760757270,Filippa Idehn,SWE,female,1990-08-15,1.83,80,handball,0,0,0, -14229029,Filippo Ganna,ITA,male,1996-07-25,1.95,75,cycling,0,0,0, -70452508,Filippo Lanza,ITA,male,1991-03-03,1.98,98,volleyball,0,1,0, -659248254,Filippo Magnini,ITA,male,1982-02-02,1.87,80,aquatics,0,0,0, -773729376,Finn Lemke,GER,male,1992-04-30,2.1,115,handball,0,0,1, -613119800,Finn Lynch,IRL,male,1996-04-23,1.82,82,sailing,0,0,0, -562480751,Fiona Albert,AUS,female,1990-12-12,1.75,75,rowing,0,0,0, -62874382,Fiona Bigwood,GBR,female,1976-04-24,1.73,75,equestrian,0,1,0, -571267730,Fiona Doyle,IRL,female,1991-10-04,1.72,63,aquatics,0,0,0, -239478517,Fiona Pennie,GBR,female,1982-11-09,1.69,70,canoe,0,0,0, -263535671,Fionnuala McCormack,IRL,female,1984-09-24,1.59,46,athletics,0,0,0, -858638156,Fiorella Francesca Cueva Uribe,PER,female,1998-02-04,1.5,48,weightlifting,0,0,0, -432731417,Fitzroy Dunkley,JAM,male,1993-05-20,1.96,80,athletics,0,1,0, -933661571,Flavia Oliveira,BRA,female,1981-10-27,1.56,46,cycling,0,0,0, -777180519,Flavia Saraiva,BRA,female,1999-09-30,1.33,31,gymnastics,0,0,0, -3922992,Flavia Tartaglini,ITA,female,1985-02-02,1.71,59,sailing,0,0,0, -545887341,Flavia de Lima,BRA,female,1993-07-01,1.76,65,athletics,0,0,0, -166844486,Flings Owusu-Agyapong,GHA,female,1988-10-16,,,athletics,0,0,0, -8505611,Flor Ruiz,COL,female,1991-01-29,1.72,59,athletics,0,0,0, -692948530,Flora Duffy,BER,female,1987-09-30,1.63,57,triathlon,0,0,0, -798849737,Flora Molnar,HUN,female,1998-03-02,1.75,65,aquatics,0,0,0, -191528927,Florence Allan,CAY,female,1998-05-26,1.68,57,sailing,0,0,0, -54068929,Florencia Habif,ARG,female,1993-08-22,1.65,55,hockey,0,0,0, -724902915,Florencia Natasha Busquets Reyes,ARG,female,1989-06-27,1.92,68,volleyball,0,0,0, -352775267,Florent Caelen,BEL,male,1989-03-01,1.75,54,athletics,0,0,0, -28413973,Florent Manaudou,FRA,male,1990-11-12,1.99,99,aquatics,0,2,0, -838021254,Florent Pietrus,FRA,male,1981-01-19,2.01,103,basketball,0,0,0, -396808426,Florent Van Aubel,BEL,male,1991-10-25,1.78,73,hockey,0,1,0, -686164081,Floria Guei,FRA,female,1990-05-02,1.66,53,athletics,0,0,0, -819262216,Florian Carvalho,FRA,male,1989-03-09,1.83,70,athletics,0,0,0, -725121470,Florian Floto,GER,male,1988-04-12,1.88,105,archery,0,0,0, -112934359,Florian Fuchs,GER,male,1991-11-10,1.85,74,hockey,0,0,1, -479481012,Florian Orth,GER,male,1989-07-24,1.81,63,athletics,0,0,0, -399561932,Florian Reichstaedter,AUT,male,1980-07-03,1.8,71,sailing,0,0,0, -950445859,Florian Skilang Temengil,PLW,male,1986-11-04,1.53,125,wrestling,0,0,0, -526727141,Florian Vogel,GER,male,1994-09-02,1.8,70,aquatics,0,0,0, -628381035,Florian Wellbrock,GER,male,1997-08-19,1.85,70,aquatics,0,0,0, -463142259,Floriane Gnafoua,FRA,female,1996-01-30,1.58,60,athletics,0,0,0, -287019022,Florin Mergea,ROU,male,1985-01-26,1.82,79,tennis,0,1,0, -765345310,Florina Chintoan,ROU,female,1985-12-06,1.78,67,handball,0,0,0, -929035723,Florina Pierdevara,ROU,female,1990-03-29,1.72,53,athletics,0,0,0, -605847359,Florina-Sorina Hulpan,ROU,female,1997-03-07,1.58,68,weightlifting,0,0,0, -429153076,Folau Niua,USA,male,1985-01-27,1.83,88,rugby sevens,0,0,0, -241899445,Foluke Akinradewo,USA,female,1987-10-05,1.91,79,volleyball,0,0,1, -312586740,Formiga,BRA,female,1978-03-03,1.62,57,football,0,0,0, -371445769,Fouad Elkaam,MAR,male,1988-05-27,1.88,70,athletics,0,0,0, -861278504,Francelina Cabral,TLS,female,1985-03-23,1.65,,cycling,0,0,0, -407138612,Francena McCorory,USA,female,1988-10-20,1.71,68,athletics,1,0,0, -513279514,Frances Houghton,GBR,female,1980-09-19,1.93,80,rowing,0,1,0, -23123206,Francesca Clapcich,ITA,female,1988-01-28,1.77,68,sailing,0,0,0, -278586505,Francesca Dallape',ITA,female,1986-06-24,1.64,58,aquatics,0,1,0, -421533477,Francesca Deidda,ITA,female,1992-01-16,1.64,52,aquatics,0,0,0, -870034029,Francesca Halsall,GBR,female,1990-04-12,1.71,64,aquatics,0,0,0, -535720666,Francesca Pattaro,ITA,female,1995-03-12,1.7,58,cycling,0,0,0, -136274448,Francesca Pomeri,ITA,female,1993-02-18,1.74,76,aquatics,0,1,0, -328463358,Francesco Fossi,ITA,male,1988-04-15,1.99,98,rowing,0,0,0, -720788958,Francesco Lamon,ITA,male,1994-02-05,1.73,60,cycling,0,0,0, -960345798,Francesco Marrai,ITA,male,1993-02-04,1.87,82,sailing,0,0,0, -564896831,Francesco di Fulvio,ITA,male,1993-08-15,1.9,88,aquatics,0,0,1, -162383071,Francie Turner,NZL,female,1992-04-06,1.59,50,rowing,0,0,0, -270335453,Franciela Krasucki,BRA,female,1988-04-26,1.68,63,athletics,0,0,0, -827083171,Francielle Rocha,BRA,female,1992-06-10,1.66,58,handball,0,0,0, -919748247,Francielly Pereira,BRA,female,1995-11-10,1.66,47,gymnastics,0,0,0, -129990979,Francine Niyonsaba,BDI,female,1993-05-05,1.66,60,athletics,0,1,0, -425631423,Francisca Crovetto Chadid,CHI,female,1990-04-27,1.6,54,shooting,0,0,0, -444157559,Francisca Laia,POR,female,1994-05-31,1.63,58,canoe,0,0,0, -576262342,Francisco Arcilla,ESP,male,1984-01-14,1.71,58,athletics,0,0,0, -300060819,Francisco Barretto Junior,BRA,male,1989-10-31,1.75,72,gymnastics,0,0,0, -955682483,Francisco Boza,PER,male,1964-09-19,1.8,96,shooting,0,0,0, -550687254,Francisco Cortes,ESP,male,1983-03-29,1.81,80,hockey,0,0,0, -478446820,Francisco Ducasse,CHI,male,1996-12-03,1.75,68,sailing,0,0,0, -896116528,Francisco Fernandez Miranda,ESP,male,1986-06-21,1.85,83,aquatics,0,0,0, -235643467,Francisco Garrigos,ESP,male,1994-12-09,1.6,60,judo,0,0,0, -679536913,Francisco Hernandez,ESP,male,1988-10-28,1.73,78,rugby sevens,0,0,0, -28575944,Francisco Limardo,VEN,male,1987-03-27,1.8,75,fencing,0,0,0, -246262074,Franck Elemba,CGO,male,1990-07-21,1.98,130,athletics,0,0,0, -76848119,Franck Lafitte,FRA,male,1989-03-08,2.03,94,volleyball,0,0,0, -101987317,Franck Solforosi,FRA,male,1984-09-10,1.84,70,rowing,0,0,1, -470889706,Francky Mbotto,CAF,male,1997-09-02,1.81,68,athletics,0,0,0, -62538812,Franco Donato,EGY,male,1981-09-08,1.65,64,shooting,0,0,0, -116672628,Franco Sabato,ARG,male,1990-01-13,1.86,81,rugby sevens,0,0,0, -547550475,Francois Heersbrandt,BEL,male,1989-12-12,1.79,76,aquatics,0,0,0, -794323734,Francois Hougaard,RSA,male,1988-04-06,1.79,93,rugby sevens,0,0,1, -410698560,Francois Pervis,FRA,male,1984-10-16,1.8,88,cycling,0,0,1, -81861765,Frank Aniello Molinaro,USA,male,1988-12-27,1.68,68,wrestling,0,0,0, -570873065,Frank Chamizo Marquez,ITA,male,1992-07-10,1.72,65,wrestling,0,0,1, -226825899,Frank Rijken,NED,male,1996-11-24,1.69,67,gymnastics,0,0,0, -715378085,Frank Schleck,LUX,male,1980-04-15,1.85,63,cycling,0,0,0, -266716820,Frank Staebler,GER,male,1989-06-27,1.74,74,wrestling,0,0,0, -226195365,Frank Thompson,USA,male,1988-03-11,1.81,79,shooting,0,0,0, -388800940,Frank de Wit,NED,male,1996-02-13,1.84,81,judo,0,0,0, -240687498,Franklin Gomez,PUR,male,1986-08-05,1.77,65,wrestling,0,0,0, -883176756,Frantz Dorsainvil,HAI,male,1991-07-02,1.7,59,aquatics,0,0,0, -324206155,Franz Anton,GER,male,1989-10-23,1.73,70,canoe,0,0,0, -887418902,Franzisca Hauke,GER,female,1989-09-10,1.72,63,hockey,0,0,1, -271428664,Franziska Hentke,GER,female,1989-06-04,1.72,62,aquatics,0,0,0, -688191947,Franziska Weber,GER,female,1989-05-24,1.76,70,canoe,0,2,0, -481935974,Freddie Woodward,GBR,male,1995-06-23,1.78,75,aquatics,0,0,0, -464256317,Freddy Figueroa,ECU,male,1994-11-26,1.92,,judo,0,0,0, -720635670,Freddy Mezones,VEN,male,1987-09-24,1.7,68,athletics,0,0,0, -676653591,Frederic Winters,CAN,male,1982-09-25,1.95,98,volleyball,0,0,0, -870194844,Frederick Bousquet,FRA,male,1981-04-08,1.88,84,aquatics,0,0,0, -82901717,Frederico Venancio,POR,male,1993-02-04,1.86,77,football,0,0,0, -491481795,Frederik Borsting,DEN,male,1995-02-13,1.84,78,football,0,0,0, -675256468,Frederik Madsen,DEN,male,1998-01-22,1.87,73,cycling,0,0,1, -760097709,Fredrik Bergstrom,SWE,male,1990-07-09,1.76,64,sailing,0,0,0, -276164244,Fredrik Petersen,SWE,male,1983-08-27,1.88,80,handball,0,0,0, -895184846,Frida Andersen,SWE,female,1990-06-09,1.64,67,equestrian,0,0,0, -732593711,Frida Tegstedt,SWE,female,1987-07-17,1.8,80,handball,0,0,0, -426661879,Fridolina Rolfo,SWE,female,1993-11-24,1.78,74,football,0,0,0, -156371008,Friederike Mohlenkamp,GER,female,1992-11-19,1.76,63,athletics,0,0,0, -438695638,Fu Yu,POR,female,1978-11-29,1.73,60,table tennis,0,0,0, -422530035,Furkan Sen,TUR,male,1994-02-08,1.75,74,athletics,0,0,0, -719720246,Fusheng Zhang,CHN,male,1993-09-20,1.84,68,shooting,0,0,0, -549844503,Gaber Mohamed,EGY,male,1985-09-01,1.8,105,weightlifting,0,0,0, -483544931,Gabor Balog,HUN,male,1990-09-02,1.86,83,aquatics,0,0,0, -450662056,Gabor Boczko,HUN,male,1977-04-01,1.92,90,fencing,0,0,1, -349248644,Gabor Faldum,HUN,male,1988-06-24,1.72,64,triathlon,0,0,0, -391312706,Gabor Jozsa,HUN,male,1983-08-18,1.7,59,athletics,0,0,0, -680668744,Gabor Kis,HUN,male,1982-09-27,1.94,115,aquatics,0,0,0, -14191210,Gabriel Barbosa,BRA,male,1996-08-30,1.76,68,football,1,0,0, -662078869,Gabriel Borges,BRA,male,1992-02-24,1.8,73,sailing,0,0,0, -630061946,Gabriel Deck,ARG,male,1995-02-08,1.97,107,basketball,0,0,0, -72582764,Gabriel Ho-Garcia,CAN,male,1993-05-19,1.7,70,hockey,0,0,0, -250938129,Gabriel Jesus,BRA,male,1997-04-03,1.75,68,football,1,0,0, -590308057,Gabriel Maestre,VEN,male,1986-09-22,1.79,,boxing,0,0,0, -948998710,Gabriel Mvumvure,ZIM,male,1988-02-23,1.77,70,athletics,0,0,0, -243636258,Gabriel Santos,BRA,male,1996-05-04,1.84,83,aquatics,0,0,0, -563040295,Gabriel Sincraian,ROU,male,1988-12-21,1.74,84,weightlifting,0,0,1, -836852876,Gabriela Aguirre,ARG,female,1986-02-19,1.64,58,hockey,0,0,0, -472170307,Gabriela Bayardo,MEX,female,1994-02-18,1.68,73,archery,0,0,0, -297118288,Gabriela Braga Guimaraes,BRA,female,1994-05-19,1.76,59,volleyball,0,0,0, -848116325,Gabriela Dabrowski,CAN,female,1992-04-01,1.8,84,tennis,0,0,0, -930649410,Gabriela Mantellato,BRA,female,1991-10-28,1.75,76,aquatics,0,0,0, -556512285,Gabriela Mosqueira,PAR,female,1990-04-05,1.63,60,rowing,0,0,0, -563204393,Gabriela Perianu,ROU,female,1994-06-20,1.87,80,handball,0,0,0, -101409692,Gabriela Petrova,BUL,female,1992-06-29,1.67,58,athletics,0,0,0, -901521061,Gabriela Stafford,CAN,female,1995-09-13,1.63,53,athletics,0,0,0, -951509811,Gabriela Stoeva,BUL,female,1994-07-15,1.69,63,badminton,0,0,0, -188364932,Gabriele Detti,ITA,male,1994-08-29,1.84,79,aquatics,0,0,2, -208944185,Gabriele Rossetti,ITA,male,1995-03-07,1.76,65,shooting,1,0,0, -697532444,Gabriella Doueihy,LIB,female,1999-04-30,,,aquatics,0,0,0, -99788705,Gabriella Szabo,HUN,female,1986-08-14,1.7,62,canoe,2,0,0, -754381040,Gabriella Szucs,HUN,female,1988-03-07,1.83,74,aquatics,0,0,0, -787338951,Gabriella Szucs,ROU,female,1984-08-31,1.84,78,handball,0,0,0, -463517978,Gabrielle Adcock,GBR,female,1990-09-30,1.67,,badminton,0,0,0, -862130996,Gabrielle Carle,CAN,female,1998-10-12,1.67,55,football,0,0,0, -995739090,Gabrielle Douglas,USA,female,1995-12-31,1.5,49,gymnastics,1,0,0, -596713145,Gabrielle Moraes da Silva,BRA,female,1997-03-04,1.64,50,gymnastics,0,0,0, -509202637,Gabrielle Nance,AUS,female,1994-07-29,1.69,55,hockey,0,0,0, -993305509,Gabrielle Roncatto,BRA,female,1998-07-19,1.65,60,aquatics,0,0,0, -243788789,Gaby Diana Ahrens,NAM,female,1981-03-15,1.69,60,shooting,0,0,0, -589149765,Gaby Lopez,MEX,female,1993-11-09,1.66,58,golf,0,0,0, -116766804,Gael Monfils,FRA,male,1986-09-01,1.93,84,tennis,0,0,0, -902039181,Gael Suter,SUI,male,1992-03-23,1.76,70,cycling,0,0,0, -329610435,Gaelle Mys,BEL,female,1991-11-16,1.44,57,gymnastics,0,0,0, -767593736,Gaelle Skrela,FRA,female,1983-01-24,1.77,70,basketball,0,0,0, -941626270,Gaelle Verlaine Nayo Ketchanke,FRA,female,1988-04-20,1.74,74,weightlifting,0,0,0, -341647204,Gagan Narang,IND,male,1983-05-06,1.8,115,shooting,0,0,0, -629247598,Gakuto Notsuda,JPN,male,1994-06-06,1.75,70,football,0,0,0, -324536211,Gal Nevo,ISR,male,1987-06-29,1.8,80,aquatics,0,0,0, -866485713,Galal Yafai,GBR,male,1992-12-11,1.58,,boxing,0,0,0, -106376682,Galen Rupp,USA,male,1986-05-08,1.81,61,athletics,0,0,1, -711261984,Galia Dvorak,ESP,female,1988-04-01,,,table tennis,0,0,0, -915389920,Galina Voskoboeva,KAZ,female,1984-12-18,1.83,67,tennis,0,0,0, -802472247,Galymzhan Usserbayev,KAZ,male,1988-12-19,1.73,74,wrestling,0,0,0, -272456931,Galyna Obleshchuk,UKR,female,1989-02-23,1.77,94,athletics,0,0,0, -781481729,Gan-Erdene Gankhuyag,MGL,male,1993-03-29,1.62,,boxing,0,0,0, -897822303,Ganapathi Krishnan,IND,male,1989-06-29,,,athletics,0,0,0, -343445816,Ganna Krasnoshlyk,UKR,female,1996-03-06,1.71,59,aquatics,0,0,0, -995606281,Ganna Rizatdinova,UKR,female,1993-07-16,1.73,47,gymnastics,0,0,1, -656968895,Ganna Solovei,UKR,female,1992-01-31,1.67,56,cycling,0,0,0, -526876218,Gantugs Jantsan,MGL,male,1972-04-12,1.75,73,archery,0,0,0, -298278410,Gantulga Dambadarjaa,MGL,male,1989-02-03,1.7,58,athletics,0,0,0, -538703926,Gaone Leaname Maotoanong,BOT,male,1991-05-07,,,athletics,0,0,0, -745281987,Garbine Muguruza,ESP,female,1993-10-08,1.84,72,tennis,0,0,0, -892862270,Garnik Mnatsakanyan,ARM,male,1989-11-07,1.61,57,wrestling,0,0,0, -622386960,Garrett Bender,USA,male,1991-12-02,1.94,104,rugby sevens,0,0,0, -800177354,Gary O'Donovan,IRL,male,1992-12-30,1.72,70,rowing,0,1,0, -249661772,Gary Russell,USA,male,1996-06-14,1.73,,boxing,0,0,0, -830687385,Gaspar Csere,HUN,male,1991-08-12,1.71,55,athletics,0,0,0, -12459891,Gastao Elias,POR,male,1990-11-24,1.82,75,tennis,0,0,0, -456762500,Gaston Revol,ARG,male,1986-11-26,1.7,76,rugby sevens,0,0,0, -32924852,Gaurika Singh,NEP,female,2002-11-26,1.55,45,aquatics,0,0,0, -996740873,Gauthier Boccard,BEL,male,1991-08-26,1.86,79,hockey,0,1,0, -918357805,Gauthier Grumier,FRA,male,1984-05-29,1.91,83,fencing,1,0,1, -694977579,Gauthier Klauss,FRA,male,1987-12-17,1.71,65,canoe,0,0,1, -956777430,Gavin Ben Sutherland,ZIM,male,1979-06-26,1.86,78,archery,0,0,0, -811772770,Gavin Kyle Green,MAS,male,1993-12-28,1.87,91,golf,0,0,0, -213614173,Gavin Mogopa,BOT,male,1996-04-02,1.79,60,judo,0,0,0, -71978236,Gavin Schmitt,CAN,male,1986-01-27,2.08,106,volleyball,0,0,0, -620621814,Gayane Chiloyan,ARM,female,2000-09-27,1.64,54,athletics,0,0,0, -91833372,Gayle Broughton,NZL,female,1996-06-05,1.74,70,rugby sevens,0,1,0, -608678057,Gbahi Gwladys Sakoa,CIV,female,1992-12-03,1.71,64,fencing,0,0,0, -248516313,Geisa Aparecida Coutinho,BRA,female,1980-06-01,1.61,55,athletics,0,0,0, -117544722,Geisa Arcanjo,BRA,female,1991-09-19,1.6,60,athletics,0,0,0, -286940521,Gelena Topilina,RUS,female,1994-01-11,1.75,56,aquatics,1,0,0, -809586183,Gelete Burka,ETH,female,1986-01-23,1.6,43,athletics,0,0,0, -12235602,Gelly Skarlatou,GRE,female,1976-01-28,1.65,57,sailing,0,0,0, -671357684,Gemma Acheampong,GHA,female,1993-02-13,1.63,54,athletics,0,0,0, -566383744,Gemma Beadsworth,AUS,female,1987-07-17,1.8,78,aquatics,0,0,0, -141739381,Gemma Etheridge,AUS,female,1986-12-01,1.69,66,rugby sevens,1,0,0, -893302726,Gemma Flynn,NZL,female,1990-05-02,1.68,60,hockey,0,0,0, -528547946,Gemma Jones,NZL,female,1994-01-07,1.65,59,sailing,0,0,0, -836429010,Gemma Mengual,ESP,female,1977-04-12,1.73,56,aquatics,0,0,0, -447374604,Gemma Tattersall,GBR,female,1985-03-12,1.65,69,equestrian,0,0,0, -533972369,Gen Li,CHN,male,1988-08-15,1.96,110,basketball,0,0,0, -974257669,Genevieve Behrent,NZL,female,1990-09-25,1.83,73,rowing,0,1,0, -966530207,Genevieve Horton,AUS,female,1995-01-06,1.79,72,rowing,0,0,0, -316560437,Genevieve Lacaze,AUS,female,1989-08-04,1.64,53,athletics,0,0,0, -564185674,Genevieve Lalonde,CAN,female,1991-09-05,1.7,58,athletics,0,0,0, -476981341,Genevieve Orton,CAN,female,1984-05-13,1.7,62,canoe,0,0,0, -682915910,Genevra Stone,USA,female,1985-07-11,1.83,71,rowing,0,1,0, -586682679,Geno Petriashvili,GEO,male,1994-04-01,1.98,125,wrestling,0,0,1, -557935891,Genzebe Dibaba,ETH,female,1991-02-08,1.68,52,athletics,0,1,0,"Genzebe Dibaba is from an esteemed family of Olympic medal winners. Ethiopia's golden girl in the middle and long distance events, she won the 1500m at the 2015 Beijing World Championship, breaking a world record in the process, and a bronze in the 5000m." -289855181,Geoffrey Butler,CAY,male,1995-12-07,1.88,84,aquatics,0,0,0, -211177901,Geoffrey Cheah,HKG,male,1990-11-10,1.85,77,aquatics,0,0,0, -242198158,Geoffrey Kipsang Kamworor,KEN,male,1992-11-22,1.72,58,athletics,0,0,0, -962442780,Georcy Thiffeault Picard,CAN,female,1991-02-08,1.76,78,archery,0,0,0, -814234541,Georg Preidler,AUT,male,1990-06-17,1.89,70,cycling,0,0,0, -378090753,George Bennett,NZL,male,1990-04-07,1.81,58,cycling,0,0,0, -373349430,George Bovell Iii,TTO,male,1983-07-18,1.96,74,aquatics,0,0,0, -853409022,George Bridgewater,NZL,male,1983-01-18,2,97,rowing,0,0,0, -529194033,George Ford,AUS,male,1993-02-24,1.92,95,aquatics,0,0,0, -962074065,George Nash,GBR,male,1989-10-02,1.95,96,rowing,1,0,0, -146249662,George Palamariu,ROU,male,1991-03-17,1.97,106,rowing,0,0,0, -422133225,George Pinner,GBR,male,1987-01-18,1.92,92,hockey,0,0,0, -94884308,Georgi Bozhilov,BUL,male,1989-04-09,2.01,107,rowing,0,0,0, -867155948,Georgi Ivanov,BUL,male,1985-03-13,1.88,138,athletics,0,0,0, -872775850,Georgi Ivanov Ivanov,BUL,male,1989-11-11,1.7,78,wrestling,0,0,0, -513877606,Georgi Tsonov,BUL,male,1993-05-02,1.76,70,athletics,0,0,0, -974930725,Georgia Baker,AUS,female,1994-09-21,1.79,66,cycling,0,0,0, -730944195,Georgia Bohl,AUS,female,1997-04-11,1.67,54,aquatics,0,0,0, -55412300,Georgia Coates,GBR,female,1999-02-19,1.74,63,aquatics,0,0,0, -129677889,Georgia Davies,GBR,female,1990-10-11,1.75,64,aquatics,0,0,0, -661775435,Georgia Nanscawen,AUS,female,1992-05-27,1.6,59,hockey,0,0,0, -405138190,Georgia Simmerling,CAN,female,1989-03-11,1.72,67,cycling,0,0,1, -304591948,Georgia Williams,NZL,female,1993-08-25,1.7,60,cycling,0,0,0, -289207914,Georgii Ketoev,ARM,male,1985-11-19,1.9,100,wrestling,0,0,0, -932124601,Georgii Zantaraia,UKR,male,1987-10-21,1.71,66,judo,0,0,0, -827810713,Georgina Klug,ARG,female,1984-06-11,1.72,64,volleyball,0,0,0, -13264832,Georgina Morgan,AUS,female,1993-05-15,1.79,70,hockey,0,0,0, -218184673,Georgina Oliva,ESP,female,1990-07-18,1.6,53,hockey,0,0,0, -308752334,Georgina Parker,AUS,female,1989-04-26,1.59,68,hockey,0,0,0, -325691946,Georgina Pota,HUN,female,1985-01-13,1.73,63,table tennis,0,0,0, -559477577,Georgina Twigg,GBR,female,1990-11-21,1.6,62,hockey,1,0,0, -87130611,Georgios Dervisis,GRE,male,1994-10-30,1.95,92,aquatics,0,0,0, -749506704,Georgios Tziallas,GRE,male,1987-07-14,1.89,91,rowing,0,0,0, -217536800,Georgiy Sheiko,KAZ,male,1989-08-24,1.84,68,athletics,0,0,0, -679229547,Geraint Thomas,GBR,male,1986-05-25,1.83,70,cycling,0,0,0, -895148675,Gerald Giraldo,COL,male,1989-03-21,1.75,60,athletics,0,0,0, -473977731,Gerald Phiri,ZAM,male,1988-10-06,1.78,79,athletics,0,0,0, -301656142,Gerardo Menendez Mieres,ESP,male,1976-09-11,1.85,80,equestrian,0,0,0, -913327626,Gerasim Kochnev,UZB,male,1987-03-20,1.78,85,canoe,0,0,0, -426364755,Gerco Schroder,NED,male,1978-07-28,1.65,72,equestrian,0,0,0, -807429022,Gerd Kanter,EST,male,1979-05-06,1.96,125,athletics,0,0,0, -859175581,Gerek Meinhardt,USA,male,1990-07-27,1.83,79,fencing,0,0,1, -145487888,Gergely Gyurta,HUN,male,1991-09-12,1.75,70,aquatics,0,0,0, -293724411,Gergo Kis,HUN,male,1988-01-19,1.83,80,aquatics,0,0,0, -996218071,Gergo Zalanki,HUN,male,1995-02-26,1.92,85,aquatics,0,0,0, -60549448,Gerina Piller,USA,female,1985-03-29,1.71,64,golf,0,0,0, -285564872,Germain Chardin,FRA,male,1983-05-15,1.95,90,rowing,0,0,0, -140439112,German Chiaraviglio,ARG,male,1987-04-16,1.95,84,athletics,0,0,0, -588470797,German Lauro,ARG,male,1984-04-02,1.86,127,athletics,0,0,0, -995047699,German Sanchez,MEX,male,1992-06-24,1.65,60,aquatics,0,1,0, -151532302,German Schulz,ARG,male,1994-02-05,1.88,95,rugby sevens,0,0,0, -482136504,Gernot Rumpler,AUT,male,1994-02-21,1.89,86,shooting,0,0,0, -423925127,Geronimo Rulli,ARG,male,1992-05-20,1.75,74,football,0,0,0, -377536681,Gesa Felicitas Krause,GER,female,1992-08-03,1.67,51,athletics,0,0,0, -477754355,Geumyoung Jang,KOR,female,1980-05-04,1.63,51,shooting,0,0,0, -947906397,Gevrise Emane,FRA,female,1982-07-27,1.62,70,judo,0,0,0, -882847570,Geza Imre,HUN,male,1974-12-23,1.84,75,fencing,0,1,1, -962431612,Ghader Mizbani Iranagh,IRI,male,1975-12-06,1.75,67,cycling,0,0,0, -331492734,Ghasem Gholamreza Rezaei,IRI,male,1985-08-18,1.85,100,wrestling,0,0,1, -827807718,Ghirmay Ghebreslassie,ERI,male,1995-11-14,,,athletics,0,0,0, -173887489,Ghislain Perrier,BRA,male,1987-05-17,1.79,75,fencing,0,0,0, -195640295,Ghislaine Landry,CAN,female,1988-04-27,1.63,65,rugby sevens,0,0,1, -545908968,Ghofran Ahmed,EGY,male,1992-09-30,1.92,68,taekwondo,0,0,0, -76147159,Ghofrane Mohamed,SYR,female,1989-06-06,1.68,60,athletics,0,0,0, -49318551,Ghulam Mustafa Bashir,PAK,male,1987-07-04,1.8,74,shooting,0,0,0, -810499490,Gi Jung Kim,KOR,male,1990-08-14,1.79,83,badminton,0,0,0, -966812060,Gianina Beleaga,ROU,female,1995-05-21,1.78,57,rowing,0,0,0, -425384574,Gideoni Monteiro,BRA,male,1989-09-02,1.8,77,cycling,0,0,0, -442076859,Giedrius Titenis,LTU,male,1989-07-21,1.93,95,aquatics,0,0,0, -826096399,Gift Motupa,RSA,male,1994-09-23,1.76,76,football,0,0,0, -684871850,Gil Cohen,ISR,female,1992-07-07,1.7,62,sailing,0,0,0, -802471466,Gil Roberts,USA,male,1989-03-15,1.88,81,athletics,1,0,0, -515485007,Gilda Casanova,CUB,female,1995-12-19,1.65,54,athletics,0,0,0, -63834716,Gilda Maria de Oliveira,BRA,female,1983-08-06,1.69,69,wrestling,0,0,0, -48092287,Giles Scott,GBR,male,1987-06-23,1.97,95,sailing,1,0,0, -275098717,Gili Cohen,ISR,female,1991-06-19,1.6,52,judo,0,0,0, -462314692,Gilles Muller,LUX,male,1983-05-09,1.93,90,tennis,0,0,0, -991427076,Gilles Simon,FRA,male,1984-12-27,1.83,70,tennis,0,0,0, -156004551,Gillian Sanders,RSA,female,1981-10-15,1.68,53,triathlon,0,0,0, -266372600,Gillies Kaka,NZL,male,1990-05-28,1.85,90,rugby sevens,0,0,0, -802381327,Gilvan Bitencourt Ribeiro,BRA,male,1989-05-08,1.8,83,canoe,0,0,0, -784102100,Gina Bass,GAM,female,1995-05-03,,,athletics,0,0,0, -326826084,Gina Luckenkemper,GER,female,1996-11-21,1.7,56,athletics,0,0,0, -64983596,Ginga Munetomo,JPN,male,1994-04-07,1.65,55,gymnastics,0,0,0, -436375736,Gintare Scheidt,LTU,female,1982-11-12,1.72,63,sailing,0,0,0, -859779804,Giordan Harris,MHL,male,1993-04-19,1.85,99,aquatics,0,0,0, -663457782,Giordano Benedetti,ITA,male,1989-05-22,1.89,68,athletics,0,0,0, -836669361,Giorgi Chkheidze,GEO,male,1997-10-30,1.78,105,weightlifting,0,0,0, -976881370,Giorgia Bordignon,ITA,female,1987-05-24,1.61,63,weightlifting,0,0,0, -980482855,Giorgia Bronzini,ITA,female,1983-08-03,1.6,54,cycling,0,0,0, -298556273,Giorgio Avola,ITA,male,1989-05-08,1.78,72,fencing,0,0,0, -450155404,Giorgio Poggi,ITA,male,1981-08-26,1.86,100,sailing,0,0,0, -590407470,Giovana Prado Pass,BRA,female,1998-03-30,1.67,59,equestrian,0,0,0, -42773874,Giovani Lo Celso,ARG,male,1996-04-09,1.69,72,football,0,0,0, -979844393,Giovanna Pedroso,BRA,female,1998-10-15,1.62,57,aquatics,0,0,0, -276844108,Giovanni Abagnale,ITA,male,1995-01-11,1.98,90,rowing,0,0,1, -870019483,Giovanni Battista Bardis,FRA,male,1987-05-21,1.77,85,weightlifting,0,0,0, -135611970,Giovanni Cernogoraz,CRO,male,1982-12-27,1.86,90,shooting,0,0,0, -890980773,Giovanni Codrington,NED,male,1988-07-17,1.77,84,athletics,0,0,0, -117303436,Giovanni Pellielo,ITA,male,1970-01-11,1.73,96,shooting,0,1,0, -453426505,Giovanni Simeone,ARG,male,1995-07-05,1.68,76,football,0,0,0, -611012468,Giovanni Tocci,ITA,male,1994-08-31,1.75,68,aquatics,0,0,0, -20576077,Giovanni de Gennaro,ITA,male,1992-07-21,1.85,80,canoe,0,0,0, -258007826,Giselle Ansley,GBR,female,1992-03-31,1.76,73,hockey,1,0,0, -994296683,Githa Michiels,BEL,female,1983-03-28,1.66,60,cycling,0,0,0, -69404061,Giulia Conti,ITA,female,1985-11-04,1.73,62,sailing,0,0,0, -820456660,Giulia Emmolo,ITA,female,1991-10-16,1.71,67,aquatics,0,1,0, -435542404,Giulia Gorlero,ITA,female,1990-09-26,1.8,73,aquatics,0,1,0, -335874891,Giulia Molinaro,ITA,female,1990-07-23,1.78,72,golf,0,0,0, -358923417,Giulia Sergas,ITA,female,1979-12-26,1.77,64,golf,0,0,0, -475800155,Giulia Steingruber,SUI,female,1994-03-24,1.6,56,gymnastics,0,0,1, -446145894,Giulio Dressino,ITA,male,1992-11-05,1.83,75,canoe,0,0,0, -231324548,Giuseppe Giordano,ITA,male,1974-07-16,1.7,73,shooting,0,0,0, -825126068,Giuseppe Vicino,ITA,male,1993-02-26,1.95,95,rowing,0,0,1, -453710519,Gladys Tejeda,PER,female,1985-09-30,1.56,47,athletics,0,0,0, -261518671,Glencora McGhie,AUS,female,1988-08-08,1.78,68,aquatics,0,0,0, -820466247,Glenn Kable,FIJ,male,1963-05-04,1.86,92,shooting,0,0,0, -344080952,Glenn O'Shea,AUS,male,1989-06-14,1.8,76,cycling,0,0,0, -801742919,Glenn Ochal,USA,male,1986-03-01,1.94,95,rowing,0,0,0, -36388952,Glenn Schuurman,NED,male,1991-04-16,1.83,79,hockey,0,0,0, -679206973,Glenn Snyders,NZL,male,1987-04-07,1.79,83,aquatics,0,0,0, -585626028,Glenn Surgeloose,BEL,male,1989-09-04,1.82,80,aquatics,0,0,0, -914132578,Glenn Sutanto,INA,male,1989-11-07,1.83,74,aquatics,0,0,0, -355204683,Glenn Turner,AUS,male,1984-05-01,1.79,82,hockey,0,0,0, -482085423,Gloria Asumnu,NGR,female,1985-05-22,1.68,64,athletics,0,0,0, -366511914,Gloria Comerma,ESP,female,1987-04-18,1.68,64,hockey,0,0,0, -95564568,Gloria Hooper,ITA,female,1992-03-03,1.74,63,athletics,0,0,0, -848853741,Gnonsiane Niombla,FRA,female,1990-07-09,1.72,69,handball,0,1,0, -138570390,Godfrey Khotso Mokoena,RSA,male,1985-03-06,1.9,76,athletics,0,0,0, -56023329,Goitom Kifle,ERI,male,1993-12-03,,,athletics,0,0,0, -599927900,Gojko Pijetlovic,SRB,male,1983-08-07,1.94,92,aquatics,1,0,0, -142292684,Golan Pollack,ISR,male,1991-09-10,1.75,66,judo,0,0,0, -679226224,Golnoush Sebghatollahi,IRI,female,1990-12-20,1.58,61,shooting,0,0,0, -69505234,Gonzalo Carou,ARG,male,1979-08-15,1.9,100,handball,0,0,0, -854221966,Gonzalo Carreras,ARG,male,1989-10-26,1.86,88,canoe,0,0,0, -532947055,Gonzalo Echenique Saglietti,ESP,male,1990-04-27,1.9,94,aquatics,0,0,0, -124979010,Gonzalo Molina,ARG,male,1995-05-05,1.78,83,cycling,0,0,0, -67406936,Gonzalo Peillat,ARG,male,1992-08-12,1.77,82,hockey,1,0,0, -579541939,Gonzalo Raul Tellechea,ARG,male,1985-07-11,1.74,61,triathlon,0,0,0, -897428173,Gonzalo Ruiz de la Cruz,MEX,male,1988-04-28,1.86,87,volleyball,0,0,0, -607191429,Gor Minasyan,ARM,male,1994-10-25,1.8,144,weightlifting,0,1,0, -612779114,Goran Stojanovic,QAT,male,1977-02-24,1.91,90,handball,0,0,0, -667077682,Gorazd Skof,SLO,male,1977-07-11,1.88,90,handball,0,0,0, -908126279,Gordon Benson,GBR,male,1994-05-12,1.91,78,triathlon,0,0,0, -192247711,Gordon Johnston,CAN,male,1993-01-30,1.87,88,hockey,0,0,0, -329155440,Goretti Alejandra Zumaya Flores,MEX,female,1997-05-31,1.65,65,shooting,0,0,0, -607509598,Govert Viergever,NED,male,1989-07-29,1.84,85,rowing,0,0,0, -702595268,Grace Claxton,PUR,female,1993-08-19,,,athletics,0,0,0, -705783753,Grace Latz,USA,female,1988-02-21,1.83,79,rowing,0,0,0, -552672529,Grace Luczak,USA,female,1989-05-24,1.91,77,rowing,0,0,0, -313174514,Grace Prendergast,NZL,female,1992-06-30,1.83,73,rowing,0,0,0, -555289430,Grace Reid,GBR,female,1996-05-09,1.69,67,aquatics,0,0,0, -120616586,Grace Stewart,AUS,female,1997-04-28,1.75,68,hockey,0,0,0, -304397961,Grace Wanjiru Njue,KEN,female,1979-01-10,1.62,43,athletics,0,0,0, -537810856,Grace Zaadi Deuna,FRA,female,1993-07-07,1.71,66,handball,0,1,0, -893023802,Gracie Elvin,AUS,female,1988-10-31,1.75,65,cycling,0,0,0, -933428907,Graciele Herrmann,BRA,female,1992-01-01,1.8,64,aquatics,0,0,0, -639691475,Graciete Santana,BRA,female,1980-10-12,1.55,43,athletics,0,0,0, -792601678,Graeme Saunders,CAN,male,1990-07-19,1.78,75,sailing,0,0,0, -929889629,Graham DeLaet,CAN,male,1982-01-22,1.8,75,golf,0,0,0, -407795026,Graham Vigrass,CAN,male,1989-06-17,2.05,97,volleyball,0,0,0, -104640408,Grant Ferguson,GBR,male,1993-11-15,1.86,64,cycling,0,0,0, -636322182,Grant Irvine,AUS,male,1991-03-17,1.87,80,aquatics,0,0,0, -298928947,Grant Nel,AUS,male,1988-04-07,1.73,69,aquatics,0,0,0, -423041181,Greg Billington,USA,male,1989-05-30,1.76,65,triathlon,0,0,0, -267820041,Greg Patrick Broderick,IRL,male,1985-09-21,1.8,50,equestrian,0,0,0, -310167929,Greg Rutherford,GBR,male,1986-11-17,1.88,92,athletics,0,0,1, -503615176,Greg van Avermaet,BEL,male,1985-05-17,1.81,74,cycling,1,0,0, -615982348,Gregor Traber,GER,male,1992-12-02,1.9,80,athletics,0,0,0, -127715970,Gregorio Paltrinieri,ITA,male,1994-09-05,1.91,72,aquatics,1,0,0, -160584680,Gregory Bauge,FRA,male,1985-01-31,1.81,100,cycling,0,0,1, -517601975,Gregory Bourdy,FRA,male,1982-04-25,1.8,70,golf,0,0,0, -146969359,Gregory Echenique,VEN,male,1990-11-23,2.06,137,basketball,0,0,0, -266128648,Gregory Mallet,FRA,male,1984-03-21,1.96,84,aquatics,0,0,0, -389701340,Gregory Vargas,VEN,male,1986-02-18,1.82,90,basketball,0,0,0, -342622397,Gremlis Arvelo,VEN,female,1996-08-21,1.67,62,table tennis,0,0,0, -695131532,Greysia Polii,INA,female,1987-08-11,1.63,56,badminton,0,0,0, -282490475,Griedge Mbock Bathy,FRA,female,1995-02-26,1.72,64,football,0,0,0, -952560452,Grigor Dimitrov,BUL,male,1991-05-16,1.91,80,tennis,0,0,0, -457130620,Grigori Minaskin,EST,male,1991-02-01,1.78,100,judo,0,0,0, -383336831,Grigory Tarasevich,RUS,male,1995-08-01,1.91,75,aquatics,0,0,0, -96493170,Grischa Proemel,GER,male,1995-01-09,1.82,78,football,0,1,0, -572471810,Griselda Khng,SIN,female,1991-07-31,1.55,60,sailing,0,0,0, -326722499,Grit Sadeiko,EST,female,1989-07-29,1.72,59,athletics,0,0,0, -96345357,Grzegorz Fijalek,POL,male,1987-05-11,1.85,99,volleyball,0,0,0, -491637727,Grzegorz Hedwig,POL,male,1988-07-17,1.79,82,canoe,0,0,0, -844475495,Grzegorz Lomacz,POL,male,1987-10-01,1.87,80,volleyball,0,0,0, -282268874,Guadalupe Lopez,COL,female,1988-01-12,1.65,58,rugby sevens,0,0,0, -466700626,Guan-Lin Yu,TPE,male,1993-11-29,1.71,58,archery,0,0,0, -85090026,Guangyuan Li,CHN,male,1997-02-27,1.87,81,aquatics,0,0,0, -613886806,Guanjie Johnathan Wong,MAS,male,1992-08-23,1.72,67,shooting,0,0,0, -78601659,Guannan Niu,CHN,female,1992-05-10,1.77,68,aquatics,0,0,0, -331829339,Gudaf Tsegay,ETH,female,1997-11-23,1.63,50,athletics,0,0,0, -576749129,Gudni Valur Gudnason,ISL,male,1995-10-11,1.99,120,athletics,0,0,0, -511096047,Gudrun Stock,GER,female,1995-05-23,1.68,62,cycling,0,0,0, -233933004,Guendalina Sartori,ITA,female,1988-08-08,1.69,90,archery,0,0,0, -100452924,Guham Cho,KOR,male,1992-07-30,1.78,100,judo,0,0,0, -220835497,Guido Pella,ARG,male,1990-05-17,1.83,80,tennis,0,0,0, -905148205,Guido Vianello,ITA,male,1994-05-09,1.98,,boxing,0,0,0, -405955663,Guilherme Giovannoni,BRA,male,1980-06-02,2.04,100,basketball,0,0,0, -196836126,Guilherme Guido,BRA,male,1987-02-12,1.94,90,aquatics,0,0,0, -256859725,Guilherme Melaragno,BRA,male,1993-08-09,1.84,88,fencing,0,0,0, -304528456,Guilherme Toldo,BRA,male,1992-09-01,1.76,70,fencing,0,0,0, -428363139,Guillaume Raineau,FRA,male,1986-06-29,1.87,71,rowing,0,0,1, -9637437,Guillermo Duran,ARG,male,1988-06-06,1.78,82,tennis,0,0,0, -107880382,Guillermo Molina Rios,ESP,male,1984-03-16,1.95,105,aquatics,0,0,0, -70220465,Gulbadam Babamuratova,TKM,female,1991-08-24,1.56,52,judo,0,0,0, -699962258,Gulnabat Kadyrova,TKM,female,1994-06-14,1.65,69,weightlifting,0,0,0, -192705392,Gulnaz Gubaydullina,RUS,female,1992-02-14,1.64,51,modern pentathlon,0,0,0, -15083082,Gulnoza Matniyazova,UZB,female,1994-08-10,1.68,70,judo,0,0,0, -126810270,Gulzhanat Zhanatbek,KAZ,female,1991-11-30,1.7,55,athletics,0,0,0, -696433108,Gundegmaa Otryad,MGL,female,1978-05-23,1.68,63,shooting,0,0,0, -504342645,Gunn-Rita Dahle Flesjaa,NOR,female,1973-02-10,,,cycling,0,0,0, -732208032,Gunnar Bentz,USA,male,1996-01-03,1.96,83,aquatics,1,0,0, -151055874,Gunta Latiseva-Cudare,LAT,female,1995-03-09,1.79,68,athletics,0,0,0, -970528741,Guojian Dong,CHN,male,1987-03-16,1.7,55,athletics,0,0,0, -849428562,Guor Marial,SSD,male,1984-04-15,1.8,60,athletics,0,0,0, -174463586,Guowei Zhang,CHN,male,1991-06-04,2.02,77,athletics,0,0,0, -695858631,Gurmeet Singh,IND,male,1985-07-01,1.72,60,athletics,0,0,0, -773668294,Gurpreet Singh,IND,male,1987-12-19,1.76,81,shooting,0,0,0, -335760688,Gustavo Albuquerque,BRA,male,1991-06-28,1.72,85,rugby sevens,0,0,0, -905869826,Gustavo Cuesta,DOM,male,1988-11-14,1.73,66,athletics,0,0,0, -587811250,Gustavo Guimaraes,BRA,male,1994-01-24,1.8,90,aquatics,0,0,0, -17989231,Gustavo Lima,POR,male,1977-07-13,1.85,82,sailing,0,0,0, -743751961,Gustavo Tsuboi,BRA,male,1985-05-31,1.7,65,table tennis,0,0,0, -833430291,Gustavo Vernes,BRA,male,1993-03-24,,,football,0,0,0, -125360707,Guy-Elphege Anouman,FRA,male,1994-06-13,1.77,75,athletics,0,0,0, -369581493,Guzel Manyurova,KAZ,female,1978-01-24,1.74,75,wrestling,0,1,0, -904653083,Gwanghee Cho,KOR,male,1993-12-24,1.82,92,canoe,0,0,0, -796100413,Gwanghyeok Lee,KOR,male,1995-09-11,,,football,0,0,0, -459485655,Gwanuk Kim,KOR,male,1990-07-22,1.77,90,wrestling,0,0,0, -874914826,Gwen Berry,USA,female,1989-06-29,1.76,88,athletics,0,0,0, -292122842,Gwen Jorgensen,USA,female,1986-04-25,1.78,58,triathlon,1,0,0, -3322965,Gwladys Epangue,FRA,female,1983-08-15,1.78,88,taekwondo,0,0,0, -302633574,Gwladys Nocera Pucet,FRA,female,1975-05-22,1.68,62,golf,0,0,0, -42510155,Gyorgyi Zsivoczky-Farkas,HUN,female,1985-02-13,1.7,60,athletics,0,0,0, -301226095,Ha Na Kim,KOR,female,1989-12-27,1.72,55,badminton,0,0,0, -553897082,Habib de Las Salas de la Rosa,COL,male,1987-04-19,1.59,56,weightlifting,0,0,0, -962588204,Habiba Ghribi,TUN,female,1984-04-09,1.74,51,athletics,0,0,0, -585034068,Habibollah Jomeh Akhlaghi,IRI,male,1985-08-03,1.75,90,wrestling,0,0,0, -204254643,Habitam Alemu,ETH,female,1997-07-09,1.71,52,athletics,0,0,0, -753076822,Haby Niare,FRA,female,1993-06-26,1.76,66,taekwondo,0,1,0, -755601006,Hadir Mekhimar,EGY,female,1997-11-25,1.65,62,shooting,0,0,0, -472316019,Hae Mi Park,KOR,female,1990-01-31,1.68,55,shooting,0,0,0, -402157963,Hae Ran Kim,KOR,female,1984-03-16,1.68,57,volleyball,0,0,0, -188491847,Haein Sim,KOR,female,1987-10-31,1.78,66,handball,0,0,0, -16804644,Haeun Yang,KOR,female,1994-02-25,1.71,58,table tennis,0,0,0, -861637149,Hafifi Bin Mansor Mohd,MAS,male,1990-10-28,1.66,69,weightlifting,0,0,0, -718811090,Hafize Sahin,TUR,female,1992-01-01,1.7,63,wrestling,0,0,0, -177699282,Hafsatu Kamara,SLE,female,1991-12-07,,,athletics,0,0,0, -825962890,Hagen Pohle,GER,male,1992-03-05,1.78,64,athletics,0,0,0, -461373663,Hagos Gebrhiwet,ETH,male,1994-05-11,1.71,56,athletics,0,0,1, -321494163,Haido Alexouli,GRE,female,1991-03-29,1.8,60,athletics,0,0,0, -754025410,Haifeng Fu,CHN,male,1984-01-02,1.81,78,badminton,1,0,0, -148299848,Hailemariyam Amare,ETH,male,1997-02-22,1.75,64,athletics,0,0,0, -48011673,Haiping Liu,CHN,female,1988-06-03,1.73,69,canoe,0,0,0, -428133887,Hairim Song,KOR,female,1985-01-12,1.67,67,handball,0,0,0, -189517234,Haislan Antonio Veranes Garcia,CAN,male,1983-03-04,1.75,66,wrestling,0,0,0, -788703039,Haithem Fahmy Mahmoud,EGY,male,1991-09-23,1.54,59,wrestling,0,0,0, -997215061,Haiwei Chen,CHN,male,1994-12-30,1.88,78,fencing,0,0,0, -800071001,Haiyan Wu,CHN,female,1993-02-26,1.66,58,football,0,0,0, -354275948,Hajar Alkhaldi,BRN,female,1995-03-17,1.6,45,athletics,0,0,0, -934255578,Haji Aliyev,AZE,male,1991-04-21,1.68,65,wrestling,0,0,1, -931847337,Hakan Dahlby,SWE,male,1965-09-15,1.85,95,shooting,0,0,0, -9093283,Hakan Eresker,QAT,male,1994-07-05,1.71,,boxing,0,0,0, -983579784,Hakim Sadi,ALG,male,1992-11-14,1.76,56,athletics,0,0,0, -329066484,Haley Anderson,USA,female,1991-11-20,1.78,68,aquatics,0,0,0, -587562061,Haley Ruth Augello,USA,female,1994-10-17,1.61,54,wrestling,0,0,0, -853405739,Hali Flickinger,USA,female,1994-07-07,1.66,52,aquatics,0,0,0, -427032354,Halil Akkas,TUR,male,1983-07-01,1.75,58,athletics,0,0,0, -779373345,Halimah Nakaayi,UGA,female,1994-10-16,,,athletics,0,0,0, -556391321,Haline Scatrut,BRA,female,1992-08-09,1.69,64,rugby sevens,0,0,0, -911111392,Hamad Ali Mohamed A Al Attiyah,QAT,male,1995-06-23,1.93,89,equestrian,0,0,0, -1664652,Hamada Mohamed,EGY,male,1992-10-22,1.75,65,athletics,0,0,0, -513005380,Hamada Talat,EGY,male,1981-03-01,1.76,77,shooting,0,0,0, -323154002,Hamdan Bayusuf,KEN,male,1994-09-29,1.82,64,aquatics,0,0,0, -443393856,Hamdy Moustafa Elsaid Abdelwahab,EGY,male,1993-01-22,1.71,96,wrestling,0,0,0, -550868905,Hamed Said Alkhatri,OMA,male,1985-05-24,1.68,90,shooting,0,0,0, -531580523,Hamid Ezzine,MAR,male,1983-10-05,1.74,62,athletics,0,0,0, -541385072,Hamid Mohammad Soryan,IRI,male,1985-08-24,1.67,64,wrestling,0,0,0, -614655928,Hamid Sintes,ALG,male,1980-08-08,1.69,67,fencing,0,0,0, -392547032,Hamidreza Zooravand,IRI,male,1990-01-13,1.76,66,athletics,0,0,0, -296637442,Hamish Bond,NZL,male,1986-02-13,1.89,89,rowing,1,0,0, -661625599,Hamish Carson,NZL,male,1988-11-01,1.81,66,athletics,0,0,0, -738803068,Hamish Peacock,AUS,male,1990-10-15,1.85,98,athletics,0,0,0, -927364164,Hammadi Ahmed,IRQ,male,1989-10-18,1.77,76,football,0,0,0, -589649660,Hamza Alic,BIH,male,1979-01-20,1.86,130,athletics,0,0,0, -668979909,Hamza Bouras,ALG,male,1987-12-16,1.7,73,sailing,0,0,0, -672961939,Hamza Touba,GER,male,1991-11-06,1.7,,boxing,0,0,0, -857979045,Hamzeh Zarini,IRI,male,1985-10-18,1.98,98,volleyball,0,0,0, -360154059,Han Na Gwon,KOR,female,1989-11-22,1.73,65,handball,0,0,0, -474085303,Hana Matelova,CZE,female,1990-06-08,1.6,53,table tennis,0,0,0, -103924089,Hanami Sekine,JPN,female,1996-02-26,1.56,43,athletics,0,0,0, -98339799,Haneen Ibrahim,SUD,female,2000-06-29,1.54,47,aquatics,0,0,0, -987592128,Hang Yu Sze,HKG,female,1988-03-05,1.68,63,aquatics,0,0,0, -56781844,Haniel Langaro,BRA,male,1995-03-07,1.97,104,handball,0,0,0, -281021453,Hanna Blomstrand,SWE,female,1996-08-25,1.73,72,handball,0,0,0, -868683543,Hanna Dudzenkova,BLR,female,1994-05-07,1.67,51,gymnastics,0,0,0, -648984551,Hanna Harchonak,BLR,female,1992-02-11,1.62,51,gymnastics,0,0,0, -302310091,Hanna Hatsko-Fedusova,UKR,female,1990-10-03,1.75,75,athletics,0,0,0, -731032288,Hanna Kasyanova,UKR,female,1983-04-24,1.78,67,athletics,0,0,0, -865953961,Hanna Kisteleki,HUN,female,1991-03-10,1.72,63,aquatics,0,0,0, -846150699,Hanna Klinga,SWE,female,1989-11-13,1.65,65,sailing,0,0,0, -750989988,Hanna Knyazyeva-Minenko,ISR,female,1989-09-25,1.79,62,athletics,0,0,0, -296210121,Hanna Lyczbinska,POL,female,1990-04-20,1.78,64,fencing,0,0,0, -318275998,Hanna Malyshik,BLR,female,1994-02-04,1.75,90,athletics,0,0,0, -593771185,Hanna Plotitsyna,UKR,female,1987-01-01,1.82,73,athletics,0,0,0, -805368469,Hanna Skydan,AZE,female,1992-05-14,1.83,101,athletics,0,0,0, -550222523,Hanna-Maria Seppala,FIN,female,1984-12-13,1.74,60,aquatics,0,0,0, -980247583,Hannah Amuchechi Rueben,NGR,female,1994-02-14,1.65,69,wrestling,0,0,0, -113266724,Hannah Buckling,AUS,female,1992-06-03,1.77,75,aquatics,0,0,0, -679066155,Hannah Cross,AUS,female,1997-01-29,1.69,57,aquatics,0,0,0, -503850224,Hannah Darling,CAN,female,1996-05-30,1.74,72,rugby sevens,0,0,1, -650100624,Hannah Kruger,GER,female,1988-09-04,1.73,67,hockey,0,0,1, -512806453,Hannah Macleod,GBR,female,1984-06-09,1.72,67,hockey,1,0,0, -278564208,Hannah Miley,GBR,female,1989-08-08,1.65,53,aquatics,0,0,0, -931174391,Hannah Mills,GBR,female,1988-02-29,1.57,50,sailing,1,0,0, -888831505,Hannah Wilkinson,NZL,female,1992-05-28,1.77,72,football,0,0,0, -467874431,Hanne Grahns,SWE,female,1992-08-29,1.67,64,football,0,0,0, -588728248,Hannes Aigner,GER,male,1989-03-19,1.83,75,canoe,0,0,0, -633655102,Hannes Obreno,BEL,male,1991-03-08,1.87,83,rowing,0,0,0, -828126181,Hannes Ocik,GER,male,1991-06-08,1.91,93,rowing,0,1,0, -707380480,Hannibal Gaskin,GUY,male,1997-08-30,1.73,68,aquatics,0,0,0, -759916596,Hans Arne Jensen,TGA,male,1998-02-25,1.81,95,archery,0,0,0, -887983421,Hans Gruhne,GER,male,1988-08-05,1.93,92,rowing,1,0,0, -157732723,Hans Lindberg,DEN,male,1981-08-01,1.88,88,handball,0,0,0, -191768973,Hans Peter Minderhoud,NED,male,1973-10-07,1.9,75,equestrian,0,0,0, -14222550,Hans Podlipnik-Castillo,CHI,male,1988-01-09,1.84,79,tennis,0,0,0, -35658013,Hans Struzyna,USA,male,1989-03-31,1.88,90,rowing,0,0,0, -326027910,Hansol Kim,KOR,male,1995-12-29,1.65,,gymnastics,0,0,0, -710838348,Hansu Ryu,KOR,male,1988-02-01,1.68,70,wrestling,0,0,0, -400204739,Hanwoong Park,KOR,male,1995-01-15,1.74,92,weightlifting,0,0,0, -462031803,Hao Chang,TPE,male,1990-11-14,1.73,72,sailing,0,0,0, -955199694,Hao Liu,CHN,male,1988-11-07,1.89,79,cycling,0,0,0, -688410388,Hao You,CHN,male,1992-04-26,1.62,60,gymnastics,0,0,1, -5582422,Hao-Ching Chan,TPE,female,1993-09-19,1.8,65,tennis,0,0,0, -584970001,Hao-Wen Kao,TPE,male,1995-03-17,1.8,82,archery,0,0,0, -784558254,Haoran Yang,CHN,male,1996-02-22,1.76,64,shooting,0,0,0, -92737551,Haotong Li,CHN,male,1995-08-03,1.88,75,golf,0,0,0, -7926077,Haram Woo,KOR,male,1998-03-21,1.68,58,aquatics,0,0,0, -904216148,Hardeep Hardeep,IND,male,1990-12-20,1.63,98,wrestling,0,0,0, -498857610,Hari Kumar Rimal,NEP,male,1987-06-13,1.66,59,athletics,0,0,0, -119602517,Haris Bandey,PAK,male,1999-02-14,1.67,79,aquatics,0,0,0, -218421111,Haris Belkebla,ALG,male,1994-01-28,1.78,70,football,0,0,0, -599462011,Harmanpreet Singh,IND,male,1996-01-06,1.77,70,hockey,0,0,0, -112459852,Harold Correa,FRA,male,1988-06-26,1.9,81,athletics,0,0,0, -907600917,Harold Fonseca,HON,male,1993-10-08,1.86,87,football,0,0,0, -370604205,Harold Houston,BER,male,1990-03-23,1.82,82,athletics,0,0,0, -98959856,Harold Langen,NED,male,1986-10-27,1.88,90,rowing,0,0,0, -782948245,Harold Preciado,COL,male,1994-06-01,1.85,73,football,0,0,0, -331514167,Haron Koech,KEN,male,1990-01-27,1.9,76,athletics,0,0,0, -213592688,Harrie Smolders,NED,male,1980-05-10,1.83,75,equestrian,0,0,0, -98629225,Harrison Barnes,USA,male,1992-05-30,2.03,102,basketball,1,0,0, -883054500,Harry Aikines-Aryeetey,GBR,male,1988-08-29,1.78,87,athletics,0,0,0, -666553660,Harry Martin,GBR,male,1992-10-23,1.84,81,hockey,0,0,0, -588715133,Haruka Miyashita,JPN,female,1994-09-01,1.77,61,volleyball,0,0,0, -437669454,Haruka Tachimoto,JPN,female,1990-08-03,1.68,70,judo,1,0,0, -946440750,Harukyo Nomura,JPN,female,1992-11-25,1.65,60,golf,0,0,0, -772429717,Harutyun Merdinyan,ARM,male,1984-08-16,1.65,58,gymnastics,0,0,0, -702338556,Haruyo Shimamura,JPN,female,1992-03-04,1.82,79,volleyball,0,0,0, -542430668,Hasanboy Dusmatov,UZB,male,1993-06-24,1.56,,boxing,1,0,0, -741535794,Hasnaa Lachgar,MAR,female,1989-09-27,1.64,,boxing,0,0,0, -36162949,Hassan Aliazam Yazdanicharati,IRI,male,1994-12-26,1.81,74,wrestling,1,0,0, -101286340,Hassan Amzile,FRA,male,1988-06-05,1.83,,boxing,0,0,0, -312704439,Hassan Chani,BRN,male,1988-05-05,1.7,60,athletics,0,0,0, -456522076,Hassan Mabrouk,QAT,male,1982-07-29,1.9,100,handball,0,0,0, -175315541,Hassan Mead,USA,male,1991-06-28,1.88,65,athletics,0,0,0, -97563452,Hassan Mohamed Mahmoud,EGY,male,1984-02-10,,,athletics,0,0,0, -173152080,Hassan Ndam Njikam,CMR,male,1984-02-18,1.82,,boxing,0,0,0, -147777095,Hassan Saada,MAR,male,1994-01-02,1.83,,boxing,0,0,0, -644229404,Hassan Saaid,MDV,male,1992-03-04,,,athletics,0,0,0, -659504471,Hassan Sabzali Rahimi,IRI,male,1989-06-15,1.65,62,wrestling,0,0,1, -109499078,Hassan Taftian,IRI,male,1993-05-04,1.87,68,athletics,0,0,0, -240509151,Hassanine Sebei,TUN,male,1984-01-21,1.77,60,athletics,0,0,0, -796467757,Hassen Chaktami,TUN,male,1988-12-14,1.8,,boxing,0,0,0, -101394753,Havard Haukenes,NOR,male,1990-04-22,,,athletics,0,0,0, -554006309,Hawbir Khasro,IRQ,male,1993-09-24,1.75,70,football,0,0,0, -631521529,Hayat Lambarki,MAR,female,1988-05-18,1.72,57,athletics,0,0,0, -346469460,Hayden Phillips,NZL,male,1998-02-06,1.8,72,hockey,0,0,0, -927855997,Hayden Roulston,NZL,male,1981-01-10,1.86,78,cycling,0,0,0, -662093898,Hayder Shkara,AUS,male,1990-05-21,1.84,80,taekwondo,0,0,0, -400928274,Haydy Morsy,EGY,female,1999-09-20,1.68,58,modern pentathlon,0,0,0, -267258552,Hayle Ibrahimov,AZE,male,1990-01-18,1.71,58,athletics,0,0,0, -842681952,Haziq Kamaruddin,MAS,male,1993-07-04,1.78,75,archery,0,0,0, -935038843,Hazuki Nagai,JPN,female,1994-08-15,1.52,53,hockey,0,0,0, -420841500,Hazuki Yuda,JPN,female,1989-07-11,1.67,54,hockey,0,0,0, -490580796,Heabin Jung,KOR,female,1994-01-20,1.69,64,hockey,0,0,0, -348445577,Heather Bansley,CAN,female,1987-09-13,1.71,65,volleyball,0,0,0, -530012228,Heather Fisher,GBR,female,1984-06-13,1.68,71,rugby sevens,0,0,0, -865048976,Heather Miller-Koch,USA,female,1987-03-30,1.76,63,athletics,0,0,0, -782975512,Heather O Reilly,USA,female,1985-01-02,1.66,59,football,0,0,0, -136391039,Heather Olver,GBR,female,1986-03-15,1.7,,badminton,0,0,0, -605175756,Heather Stanning,GBR,female,1985-01-26,1.81,72,rowing,1,0,0, -388913953,Heather Steacy,CAN,female,1988-04-14,1.75,80,athletics,0,0,0, -378577718,Heather Watson,GBR,female,1992-05-19,1.68,63,tennis,0,0,0, -677773211,Heba Allejji,SYR,female,1997-01-20,,,table tennis,0,0,0, -847163019,Hebert Brol,GUA,male,1980-01-10,1.81,135,shooting,0,0,0, -335558674,Hector Luis Garcia Mora,DOM,male,1991-11-01,1.73,,boxing,0,0,0, -788560912,Hedaya Wahba,EGY,female,1993-04-21,1.74,57,taekwondo,0,0,1, -869886406,Hedda Hynne,NOR,female,1990-03-13,,,athletics,0,0,0, -923891732,Hederson Estefani,BRA,male,1991-09-11,1.83,65,athletics,0,0,0, -303803370,Hedi Gharbi,TUN,male,1969-08-05,1.69,70,sailing,0,0,0, -307748741,Hedvig Karakas,HUN,female,1990-02-21,1.67,61,judo,0,0,0, -941808202,Hedvig Lindahl,SWE,female,1983-04-29,1.79,74,football,0,1,0, -134790267,Hedvig Rasmussen,DEN,female,1993-12-22,1.87,79,rowing,0,0,1, -388831240,Hee Sook Jeon,KOR,female,1984-06-16,1.69,60,fencing,0,0,0, -456268808,Hee Young Yang,KOR,female,1989-07-28,1.73,77,golf,0,0,0, -393939547,Heechan Hwang,KOR,male,1996-01-26,1.77,70,football,0,0,0, -812515999,Heejin Kim,KOR,female,1991-04-29,1.85,78,volleyball,0,0,0, -505168885,Heena Sidhu,IND,female,1989-08-29,1.58,51,shooting,0,0,0, -769324470,Heesun Jang,KOR,female,1986-05-31,1.64,60,hockey,0,0,0, -76022675,Heidi Diethelm Gerber,SUI,female,1969-03-20,1.68,93,shooting,0,0,1, -563435764,Heidi Gan,MAS,female,1988-10-08,1.62,57,aquatics,0,0,0, -528568211,Heidi Loke,NOR,female,1982-12-12,1.73,,handball,0,0,1, -279097439,Heiki Nabi,EST,male,1985-06-06,1.93,116,wrestling,0,0,0, -942170112,Heissler Guillent,VEN,male,1986-12-17,1.83,79,basketball,0,0,0, -42902988,Hela Ayari,TUN,female,1994-08-26,,52,judo,0,0,0, -419568025,Hela Riabi,TUN,female,1987-02-18,1.65,63,wrestling,0,0,0, -927679644,Helah Jelagat Kiprop,KEN,female,1985-04-07,1.6,50,athletics,0,0,0, -823760024,Helalia Johannes,NAM,female,1980-08-13,1.65,46,athletics,0,0,0, -231174935,Helder Silva,POR,male,1987-08-02,1.76,73,canoe,0,0,0, -820626440,Helen Glover,GBR,female,1986-06-17,1.77,67,rowing,1,0,0,"The daughter of athletes, Great Briton Helen Glover has a collection of gold medals in the coxless pair event: one Olympic, won at London 2012, three from the World Championship, 13 from the World Cup and three from the European Championship." -77008314,Helen Grobert,GER,female,1992-04-11,1.75,58,cycling,0,0,0, -879616037,Helen Jenkins,GBR,female,1984-03-08,1.69,55,triathlon,0,0,0, -992478807,Helen Louise Maroulis,USA,female,1991-09-19,1.63,56,wrestling,1,0,0, -826011682,Helen Richardson-Walsh,GBR,female,1981-09-23,1.65,55,hockey,1,0,0, -707272550,Helena Casas Roige,ESP,female,1988-07-24,1.63,63,cycling,0,0,0, -833977823,Helena Ciak,FRA,female,1989-12-15,1.97,89,basketball,0,0,0, -659637294,Helena Gasson,NZL,female,1994-12-08,1.72,76,aquatics,0,0,0, -914156027,Helena Scutt,USA,female,1992-06-15,1.71,65,sailing,0,0,0, -382923791,Helene Defrance,FRA,female,1986-08-11,1.79,66,sailing,0,0,1, -189823124,Helene Lefebvre,FRA,female,1991-02-26,1.7,69,rowing,0,0,0, -76511268,Helibelton Palacios,COL,male,1993-06-11,1.8,77,football,0,0,0, -447903618,Hellen Onsando Obiri,KEN,female,1989-12-13,1.6,50,athletics,0,1,0, -177603663,Heming Hu,AUS,male,1994-03-21,1.79,76,table tennis,0,0,0, -634678225,Hemza Haloui,ALG,male,1994-07-10,1.8,96,wrestling,0,0,0, -686631480,Hendra Purnama,INA,male,1997-01-12,1.69,64,archery,0,0,0, -339509053,Hendra Setiawan,INA,male,1984-08-25,1.83,82,badminton,0,0,0, -637196931,Hendrik Pekeler,GER,male,1991-07-02,2.03,103,handball,0,0,1, -623376345,Henk Grol,NED,male,1985-04-14,1.9,100,judo,0,0,0, -431941649,Henna Katarina Johansson,SWE,female,1991-05-01,1.64,67,wrestling,0,0,0, -280401602,Henning Bommel,GER,male,1983-02-23,1.83,79,cycling,0,0,0, -200432555,Henri Hurskainen,SWE,male,1986-09-13,1.84,80,badminton,0,0,0, -777353303,Henri Junghaenel,GER,male,1988-02-05,1.79,80,shooting,1,0,0, -257515881,Henri Schoeman,RSA,male,1991-10-03,1.7,59,triathlon,0,0,1, -814312572,Henricho Bruintjies,RSA,male,1993-07-16,1.79,72,athletics,0,0,0, -761427990,Henriette Hansen,DEN,female,1982-04-15,1.7,66,canoe,0,0,0, -530692898,Henriette Nadege Koulla,CMR,female,1992-09-14,1.69,67,volleyball,0,0,0, -136465545,Henrik Christiansen,NOR,male,1996-10-09,,,aquatics,0,0,0, -706752580,Henrik Ingebrigtsen,NOR,male,1991-02-24,,,athletics,0,0,0, -808654438,Henrik Mollgaard Jensen,DEN,male,1985-01-02,1.97,102,handball,1,0,0, -471800036,Henrik Rummel,USA,male,1987-09-26,1.96,97,rowing,0,0,0, -278653669,Henrik Stenson,SWE,male,1976-04-05,1.87,90,golf,0,1,0, -89814850,Henrik Toft Hansen,DEN,male,1986-12-18,2,105,handball,1,0,0, -225165978,Henrik Vasbanyai,HUN,male,1991-07-16,1.87,84,canoe,0,0,0, -683861433,Henrik von Eckermann,SWE,male,1981-05-25,1.86,77,equestrian,0,0,0, -142941975,Henrikas Zustautas,LTU,male,1994-07-13,1.92,96,canoe,0,0,0, -683131991,Henrique Avancini,BRA,male,1989-03-30,1.76,67,cycling,0,0,0, -66716324,Henrique Haddad,BRA,male,1987-05-28,1.65,63,sailing,0,0,0, -473340391,Henrique Marques,BRA,male,1996-09-24,1.78,71,fencing,0,0,0, -715314680,Henrique Martins,BRA,male,1991-11-14,1.8,73,aquatics,0,0,0, -991563365,Henrique Rodrigues,BRA,male,1991-02-04,1.94,86,aquatics,0,0,0, -484566672,Henrique Teixeira,BRA,male,1989-02-27,1.92,100,handball,0,0,0, -378817615,Henry Frayne,AUS,male,1990-04-14,1.88,83,athletics,0,0,0, -771439495,Henry Hutchison,AUS,male,1997-02-12,1.76,86,rugby sevens,0,0,0, -656087164,Henry Weir,GBR,male,1990-02-13,1.76,75,hockey,0,0,0, -196907702,Henryk Szost,POL,male,1982-01-20,1.86,70,athletics,0,0,0, -672188106,Hensley Paulina,NED,male,1993-06-26,1.82,77,athletics,0,0,0, -674181723,Hermenegildo Leite,ANG,male,2000-05-17,1.71,63,athletics,0,0,0, -474532217,Hernan Moises Viera Espinoza,PER,male,1993-01-16,1.76,104,weightlifting,0,0,0, -875801164,Hersony Canelon,VEN,male,1988-12-08,1.76,73,cycling,0,0,0, -682402469,Heungmin Son,KOR,male,1992-07-08,1.83,67,football,0,0,0, -761606260,Hexin Yu,CHN,male,1996-01-01,1.94,87,aquatics,0,0,0, -11002844,Hicham Bouchicha,ALG,male,1989-05-19,1.82,64,athletics,0,0,0, -730005244,Hicham Sigueni,MAR,male,1993-01-30,1.72,61,athletics,0,0,0, -811166663,Hidde Turkstra,NED,male,1988-03-05,1.94,81,hockey,0,0,0, -412609068,Hideki Omoto,JPN,male,1984-08-12,1.79,70,rowing,0,0,0, -251596711,Hidilyn Diaz,PHI,female,1991-02-20,1.49,53,weightlifting,0,1,0, -35937798,Higor Alves,BRA,male,1994-02-23,1.83,64,athletics,0,0,0, -708328857,Hilal Hemed Hilal,TAN,male,1994-07-12,1.76,63,aquatics,0,0,0, -144358597,Hilary Caldwell,CAN,female,1991-03-13,1.73,61,aquatics,0,0,1, -718411923,Hilary Stellingwerff,CAN,female,1981-08-07,1.6,47,athletics,0,0,0, -689390939,Hilda Carlen,SWE,female,1991-08-13,1.73,75,football,0,1,0, -668140506,Hillary Bor,USA,male,1989-11-22,1.71,52,athletics,0,0,0, -256534193,Hin Chun Chiu,HKG,male,1994-08-20,1.76,73,rowing,0,0,0, -309810148,Hind Jamili,MAR,female,1998-12-11,1.56,50,canoe,0,0,0, -895035478,Hiroaki Takao,JPN,male,1992-01-02,1.56,56,weightlifting,0,0,0, -884615594,Hirokatsu Tayama,JPN,male,1981-11-12,1.67,62,triathlon,0,0,0, -378183689,Hiroki Fujiharu,JPN,male,1988-11-28,1.75,60,football,0,0,0, -361521049,Hiroki Ogita,JPN,male,1987-12-30,1.86,80,athletics,0,0,0, -198161931,Hiromasa Fujimori,JPN,male,1991-08-07,1.76,72,aquatics,0,0,0, -441329153,Hiromi Miyake,JPN,female,1985-11-18,1.45,48,weightlifting,0,0,1, -361129434,Hirooki Arai,JPN,male,1988-05-18,1.8,62,athletics,0,0,1, -569753343,Hiroshi Nakano,JPN,male,1987-12-01,1.76,72,rowing,0,0,0, -689852563,Hiroyuki Endo,JPN,male,1986-12-16,1.71,72,badminton,0,0,0, -182022040,Hirving Lozano,MEX,male,1995-07-30,1.74,63,football,0,0,0, -327247777,Hisanori Kitajima,JPN,male,1984-10-16,1.71,55,athletics,0,0,0, -26054325,Hisayoshi Harasawa,JPN,male,1992-07-03,1.91,125,judo,0,1,0, -83035378,Hiskel Tewelde,ERI,male,1986-09-15,,,athletics,0,0,0, -924061459,Hiwot Ayalew,ETH,female,1990-03-06,1.73,53,athletics,0,0,0, -504200446,Hnialum Ruat Feli,IND,female,1996-07-15,1.62,54,hockey,0,0,0, -719133572,Ho Ching Lee,HKG,female,1992-11-24,1.6,53,table tennis,0,0,0, -757948146,Hoi Kem Doo,HKG,female,1996-11-27,1.66,60,table tennis,0,0,0, -289609999,Hoi Wah Chau,HKG,female,1986-06-05,1.65,61,badminton,0,0,0, -508366658,Hojamuhammet Toychyyev,TKM,male,1992-01-16,1.86,145,weightlifting,0,0,0, -789088022,Holder da Silva,GBS,male,1988-01-12,1.82,80,athletics,0,0,0, -261349975,Hollie Webb,GBR,female,1990-09-19,1.65,65,hockey,1,0,0, -859525144,Holly Bradshaw,GBR,female,1991-11-02,1.75,67,athletics,0,0,0, -923396311,Holly Lincoln-Smith,AUS,female,1988-03-26,1.83,82,aquatics,0,0,0, -196810717,Homiyu Tesfaye,GER,male,1993-06-23,1.84,64,athletics,0,0,0, -958706021,Hong Liu,CHN,female,1987-05-12,1.6,50,athletics,1,0,0, -353716042,Hongpin Huang,CHN,female,1989-04-23,1.95,98,basketball,0,0,0, -90017888,Hongxia Li,CHN,female,1986-09-10,1.68,63,hockey,0,0,0, -653150622,Hope Solo,USA,female,1981-07-30,1.75,67,football,0,0,0, -172023688,Horacio Nava,MEX,male,1982-01-20,1.81,65,athletics,0,0,0, -619522770,Horia Tecau,ROU,male,1985-01-19,1.92,90,tennis,0,1,0, -707205572,Hortance Diedhiou,SEN,female,1983-08-19,1.65,57,judo,0,0,0, -782647147,Hortence Vanessa Mballa Atangana,CMR,female,1992-01-05,1.71,78,judo,0,0,0, -816766723,Hosam Hussein Bakr Abdin,EGY,male,1985-10-26,1.8,,boxing,0,0,0, -635210027,Hossam Abdalla,EGY,male,1988-02-16,2.03,97,volleyball,0,0,0, -452412504,Houari Ferhani,ALG,male,1993-02-11,1.68,60,football,0,0,0, -14950030,Houd Zourdani,ALG,male,1993-10-17,1.65,66,judo,0,0,0, -468309568,Houda Miled,TUN,female,1987-02-08,1.71,70,judo,0,0,0, -281360452,Houleye Ba,MTN,female,1992-07-17,1.7,55,athletics,0,0,0, -111077944,Houry Gebeshian,ARM,female,1989-07-27,1.52,48,gymnastics,0,0,0, -61502,Hovhannes Bachkov,ARM,male,1992-12-02,1.73,,boxing,0,0,0, -374222882,Hovhannes Davtyan,ARM,male,1983-11-25,1.73,60,judo,0,0,0, -426998976,Howard Grotts,USA,male,1993-01-12,1.71,58,cycling,0,0,0, -532364177,Howard Shu,USA,male,1990-11-28,1.86,74,badminton,0,0,0, -474611032,Hrachik Babayan,ARM,male,1996-08-01,1.75,75,shooting,0,0,0, -578319115,Hrafnhildur Luthersdottir,ISL,female,1991-08-02,1.78,65,aquatics,0,0,0, -893777759,Hrisoula Anagnostopoulou,GRE,female,1991-08-27,1.75,85,athletics,0,0,0, -751452389,Hristiana Todorova,BUL,female,1994-11-28,1.75,57,gymnastics,0,0,1, -834856987,Hristoforos Merousis,GRE,male,1982-03-22,1.78,72,athletics,0,0,0, -170401459,Hrvoje Sep,CRO,male,1986-02-26,1.75,,boxing,0,0,0, -529837353,Hsing-Chun Kuo,TPE,female,1993-11-26,1.57,58,weightlifting,0,0,1, -207495575,Hsuan-Yen Lee,TPE,male,1993-05-13,1.73,63,aquatics,0,0,0, -744184028,Hsuan-Yu Wendy Chen,AUS,female,1993-06-01,1.67,56,badminton,0,0,0, -312441381,Hua Wilfried Koffi,CIV,male,1987-10-12,1.89,76,athletics,0,0,0, -830965009,Huai-Hsuan Huang,TPE,female,1997-07-07,1.68,53,taekwondo,0,0,0, -567560651,Huanhuan Ma,CHN,female,1990-01-13,1.78,66,aquatics,0,0,0, -424934520,Hubertus Schmidt,GER,male,1959-10-08,1.83,80,equestrian,0,0,0, -743741137,Hugo Barrette,CAN,male,1991-07-04,1.75,90,cycling,0,0,0, -402716810,Hugo Boucheron,FRA,male,1993-05-30,1.95,90,rowing,0,0,0, -626936383,Hugo Calderano,BRA,male,1996-06-22,1.82,74,table tennis,0,0,0, -551778014,Hugo Gonzalez de Oliveira,ESP,male,1999-02-19,1.92,82,aquatics,0,0,0, -823618365,Hugo Houle,CAN,male,1990-09-27,1.83,69,cycling,0,0,0, -931957390,Hugo Inglis,NZL,male,1991-01-18,1.78,74,hockey,0,0,0, -365733362,Hugo Parisi,BRA,male,1984-08-01,1.72,69,aquatics,0,0,0, -362810248,Hugo de Sousa,BRA,male,1987-03-05,1.87,74,athletics,0,0,0, -20467543,Hugues Fournel,CAN,male,1988-08-05,1.7,73,canoe,0,0,0, -874312122,Hui Cao,CHN,female,1991-09-07,1.75,70,archery,0,0,0, -825117534,Huihui Lyu,CHN,female,1989-06-26,1.71,70,athletics,0,0,0, -552569008,Huijun Lin,CHN,female,1993-02-01,1.7,59,athletics,0,0,0, -628637344,Huilin Le,CHN,female,1989-04-01,1.72,62,fencing,0,0,0, -595115702,Huisol Lee,KOR,female,1989-08-27,1.74,119,weightlifting,0,0,0, -203027250,Huixia Liu,CHN,female,1997-11-30,1.57,48,aquatics,1,0,0, -396732861,Humam Tareq,IRQ,male,1996-02-10,1.7,67,football,0,0,0, -135011760,Humphrey Kayange,KEN,male,1982-07-20,1.93,106,rugby sevens,0,0,0, -733102728,Hung-Chieh Chiang,TPE,male,1989-02-22,1.8,70,table tennis,0,0,0, -601326293,Huriana Manuel,NZL,female,1986-08-08,1.66,65,rugby sevens,0,1,0, -66237669,Hurshid Tojibaev,UZB,male,1989-11-13,1.72,,boxing,0,0,0, -509019365,Huseyin Kandemir,TUR,male,1986-09-09,1.76,70,rowing,0,0,0, -703246010,Hussain Shah Shah,PAK,male,1993-06-08,1.9,100,judo,0,0,0, -730071504,Hussein Al-Aameri,IRQ,male,1990-11-24,1.77,80,judo,0,0,0, -2983955,Hussein Iashaish,JOR,male,1995-08-06,1.8,,boxing,0,0,0, -573701625,Huyen Ta Thanh,VIE,female,1994-05-03,1.7,58,rowing,0,0,0, -531592086,Hye Lyoung Han,KOR,female,1986-01-15,1.63,56,hockey,0,0,0, -288648218,Hye Seon Yeum,KOR,female,1991-02-03,1.76,65,volleyball,0,0,0, -739082177,Hye-Gyong Kim,PRK,female,1993-03-09,1.53,42,athletics,0,0,0, -398649308,Hye-Song Kim,PRK,female,1993-03-09,1.53,42,athletics,0,0,0, -887795017,Hyejin Chang,KOR,female,1987-05-13,1.58,50,archery,2,0,0, -152186180,Hyejin Cho,KOR,female,1995-01-16,1.59,56,hockey,0,0,0, -328642843,Hyejin Lee,KOR,female,1992-01-23,1.65,61,cycling,0,0,0, -68832418,Hyeonjun Kim,KOR,male,1992-10-18,1.75,59,shooting,0,0,0, -861437248,Hyeonwoo Kim,KOR,male,1988-11-06,1.73,80,wrestling,0,0,1, -733898810,Hyeri Oh,KOR,female,1988-04-30,1.82,69,taekwondo,1,0,0, -242202885,Hyo Hee Lee,KOR,female,1980-09-09,1.73,57,volleyball,0,0,0, -294430163,Hyo Jin Yang,KOR,female,1989-12-14,1.9,72,volleyball,0,0,0, -641596822,Hyo Sim Choe,PRK,female,1993-12-05,1.59,62,weightlifting,0,1,0, -641299632,Hyoju An,KOR,female,1987-11-25,1.68,54,hockey,0,0,0, -871219266,Hyon Gyong Kim,PRK,female,1995-04-17,1.53,48,wrestling,0,0,0, -146721591,Hyowon Suh,KOR,female,1987-05-10,1.59,54,table tennis,0,0,0, -163022401,Hyunhee Nam,KOR,female,1981-09-29,1.55,46,fencing,0,0,0, -996028848,Hyunji Kim,KOR,female,1993-11-04,1.7,52,hockey,0,0,0, -925362927,Hyunji Yoo,KOR,female,1984-07-16,1.75,67,handball,0,0,0, -99215460,Hyunjun Suk,KOR,male,1991-06-29,1.9,82,football,0,0,0, -526973620,Hyunsoo Jang,KOR,male,1991-09-28,1.87,77,football,0,0,0, -667171291,Hyunsub Kim,KOR,male,1985-05-31,1.77,61,athletics,0,0,0, -502834861,Hyvin Kiyeng Jepkemoi,KEN,female,1992-01-13,1.62,42,athletics,0,1,0, -794514120,I Ketut Ariana,INA,male,1989-09-06,1.67,69,weightlifting,0,0,0, -710339664,I-Ching Cheng,TPE,female,1992-02-15,1.62,52,table tennis,0,0,0, -113806395,Iacovos Hadjiconstantinou,CYP,male,1994-11-17,1.94,90,aquatics,0,0,0, -74843032,Iago Lopez Marra,ESP,male,1990-04-07,1.81,81,sailing,0,0,0, -45266900,Iain Jensen,AUS,male,1988-05-23,1.86,80,sailing,0,1,0, -471378978,Iain Lewers,GBR,male,1984-01-05,1.83,79,hockey,0,0,0, -364965310,Iain Smythe,CAN,male,1985-06-02,1.8,77,hockey,0,0,0, -909245021,Iakiv Khammo,UKR,male,1994-06-11,1.88,,judo,0,0,0, -879442986,Iakobi Kajaia,GEO,male,1993-09-28,1.87,130,wrestling,0,0,0, -158469592,Ian Borrows,AUS,male,1989-11-26,1.86,78,canoe,0,0,0, -737845937,Ian Lariba,PHI,female,1994-10-13,1.62,56,table tennis,0,0,0, -408716601,Ian Matos,BRA,male,1989-04-24,1.71,72,aquatics,0,0,0, -712859551,Ian Sloan,GBR,male,1993-11-19,1.75,76,hockey,0,0,0, -224119413,Ian Stannard,GBR,male,1987-05-25,1.91,80,cycling,0,0,0, -681120192,Iaroslav Potapov,RUS,male,1999-07-01,1.88,72,aquatics,0,0,0, -372106126,Iaroslava Iakushina,RUS,female,1993-06-24,1.7,,boxing,0,0,0, -884378619,Ibragim Labazanov,RUS,male,1987-09-15,1.64,64,wrestling,0,0,0, -971860435,Ibrahim Bolukbasi,TUR,male,1990-12-01,1.87,97,wrestling,0,0,0, -921428771,Ibrahim Elmasry,EGY,male,1989-03-11,1.91,82,handball,0,0,0, -580680998,Ibrahim Khalaf,JOR,male,1986-07-09,1.8,90,judo,0,0,0, -564969731,Ibrahim Nishwan,MDV,male,1997-06-12,,,aquatics,0,0,0, -350168886,Ibrahim Ramadan Ibrahim Abdelbaki,EGY,male,1988-02-06,1.73,77,weightlifting,0,0,0, -488321463,Ibrahim Saidau,BLR,male,1985-03-09,1.8,125,wrestling,0,0,1, -399888791,Ibtihaj Muhammad,USA,female,1985-12-04,1.71,68,fencing,0,0,1, -59350988,Ida Alstad,NOR,female,1985-06-13,1.72,,handball,0,0,1, -304264901,Ida Lindborg,SWE,female,1994-06-13,1.67,60,aquatics,0,0,0, -705937798,Ida Marko-Varga,SWE,female,1985-03-10,1.7,65,aquatics,0,0,0, -412225321,Ida Mayrin,ISR,female,1997-10-30,1.72,52,gymnastics,0,0,0, -130996491,Ida Villumsen,DEN,female,1994-11-30,1.76,70,canoe,0,0,0, -445744437,Idalys Ortiz,CUB,female,1989-09-27,1.8,82,judo,0,1,0,"Olympic champion in the + 78kg class at London 2012, Cuba's Idalyz Ortiz won bronze at Beijing 2008. She has been on the podium at five world championships, winning two golds – at Rio, in 2013, and Cheliabinsk, in 2014." -664747134,Iera Echebarria,ESP,female,1992-10-20,1.6,63,rugby sevens,0,0,0, -953620490,Ieuan Lloyd,GBR,male,1993-07-09,1.94,91,aquatics,0,0,0, -262282271,Ieva Serapinaite,LTU,female,1995-02-04,1.75,62,modern pentathlon,0,0,0, -693361470,Ievegeniia Tetelbaum,ISR,female,1991-07-31,1.58,48,aquatics,0,0,0, -914405287,Ievgeniia Nimchenko,UKR,female,1992-09-29,1.8,68,rowing,0,0,0, -49708578,Iga Baumgart,POL,female,1989-04-11,1.78,58,athletics,0,0,0, -841939942,Ignacio Martin,ESP,male,1983-10-15,1.88,90,rugby sevens,0,0,0, -911577483,Ignacio Morales,CHI,male,1995-08-12,1.79,62,taekwondo,0,0,0, -632290179,Ignacio Ortiz,ARG,male,1987-07-26,1.8,76,hockey,1,0,0, -877477413,Ignacio Perrin,ARG,male,1985-01-20,1.72,,boxing,0,0,0, -212081217,Ignacio Prado,MEX,male,1993-09-21,1.78,65,cycling,0,0,0, -407328082,Ignas Navakauskas,LTU,male,1989-09-22,1.8,90,canoe,0,0,0, -317258255,Ignatas Konovalovas,LTU,male,1985-12-08,1.9,75,cycling,0,0,0, -746541982,Igor Genua,ESP,male,1988-06-05,1.77,78,rugby sevens,0,0,0, -877954587,Igor Glavan,UKR,male,1990-09-25,1.68,61,athletics,0,0,0, -207860786,Igor Karacic,CRO,male,1988-11-02,1.91,91,handball,0,0,0, -101294964,Igor Kobzar,RUS,male,1991-04-13,1.98,86,volleyball,0,0,0, -701378766,Igor Kovacevic,FRA,male,1988-11-03,1.9,85,aquatics,0,0,0, -647906398,Igor Marenic,CRO,male,1986-01-02,1.73,70,sailing,1,0,0, -292473740,Igor Mogne,MOZ,male,1996-08-01,1.75,66,aquatics,0,0,0, -882236724,Igor Olshanetskyi,ISR,male,1986-02-16,1.84,130,weightlifting,0,0,0, -295973567,Igor Pawel Jakubowski,POL,male,1992-08-06,1.84,,boxing,0,0,0, -343249944,Igor Polyanskiy,RUS,male,1990-01-16,1.91,72,triathlon,0,0,0, -42372934,Igor Radivilov,UKR,male,1992-10-19,1.67,67,gymnastics,0,0,0, -118939589,Igor Wandtke,GER,male,1990-11-03,1.76,76,judo,0,0,0, -510520768,Igor Zelenay,SVK,male,1982-10-02,1.98,88,tennis,0,0,0, -207987261,Ihar Pashevich,BLR,male,1991-12-08,1.95,101,rowing,0,0,0, -358053477,Ihor Bodrov,UKR,male,1987-07-09,1.84,77,athletics,0,0,0, -644497938,Ihor Olefirenko,UKR,male,1990-03-14,1.86,70,athletics,0,0,0, -804961388,Ihor Russ,UKR,male,1988-09-08,1.74,62,athletics,0,0,0, -606865842,Ihor Shymechko,UKR,male,1986-05-27,1.97,130,weightlifting,0,0,0, -976629954,Ika Rochmawati,INA,female,1989-07-02,1.65,52,archery,0,0,0, -552884668,Ike Diogu,NGR,male,1983-09-11,2.04,115,basketball,0,0,0, -3146070,Ikhtiyor Navruzov,UZB,male,1989-07-05,1.65,65,wrestling,0,0,1, -14214437,Ilana Kratysh,ISR,female,1990-07-06,1.69,69,wrestling,0,0,0, -259115271,Ilaria Bianchi,ITA,female,1990-01-06,1.7,65,aquatics,0,0,0, -976676407,Ilaria Bianco,ITA,female,1980-05-29,1.65,55,fencing,0,0,0, -91346833,Ildiko Toth,HUN,female,1987-04-23,1.75,72,aquatics,0,0,0, -853990592,Ilham Tanui Ozbilen,TUR,male,1990-03-05,1.77,60,athletics,0,0,0, -351709088,Ilia Druzhinin,RUS,male,1998-04-23,1.73,63,aquatics,0,0,0, -165852340,Ilia Shtokalov,RUS,male,1986-09-01,1.85,95,canoe,0,0,0, -50995857,Ilia Zakharov,RUS,male,1991-05-02,1.75,69,aquatics,0,0,0,"Elected the best diver in the world, in 2012, Russia's Ilya Zakharov won gold in the 3m individual at London 2012 and silver in the 3m synchronised." -905071434,Ilias Iliadis,GRE,male,1986-11-10,1.79,90,judo,0,0,0, -448835262,Ilija Brozovic,CRO,male,1991-05-26,1.96,109,handball,0,0,0, -70065609,Ilke Ozyuksel,TUR,female,1997-02-26,1.67,53,modern pentathlon,0,0,0, -80054566,Illia Charheika,BLR,male,1993-04-15,1.79,81,shooting,0,0,0, -647841374,Illias Fifa,ESP,male,1989-05-16,1.73,68,athletics,0,0,0, -768750395,Illya Kvasha,UKR,male,1988-03-05,1.76,73,aquatics,0,0,0, -189313001,Illya Marchenko,UKR,male,1987-09-08,1.85,84,tennis,0,0,0, -169762981,Ilona Marhele,LAT,female,1986-04-05,1.64,50,athletics,0,0,0, -446700589,Ilse Paulis,NED,female,1993-07-30,1.74,57,rowing,1,0,0, -304002901,Ilya Golendov,KAZ,male,1994-10-02,1.85,87,canoe,0,0,0, -507272052,Ilya Khomenko,RUS,male,1995-10-14,1.81,75,aquatics,0,0,0, -755684703,Ilya Mokretcov,KAZ,male,1984-04-17,1.77,74,fencing,0,0,0, -971438297,Ilya Pervukhin,RUS,male,1991-07-06,1.83,82,canoe,0,0,0, -456650881,Ilya Tiapkin,KGZ,male,1991-08-02,1.6,65,athletics,0,0,0, -695779236,Ilyas Abbadi,ALG,male,1992-10-21,1.85,,boxing,0,0,0, -57892115,Imad Bassou,MAR,male,1993-07-04,1.73,66,judo,0,0,0, -587168078,Iman Essa Jasim,BRN,female,1997-07-09,,,athletics,0,0,0, -186497946,Imanol Erviti Ollo,ESP,male,1983-11-15,1.9,80,cycling,0,0,0, -303543728,Imene Ouneyssa Cherif Sahraoui,ALG,female,1995-09-14,1.65,64,sailing,0,0,0, -712856100,Imoh Ezekiel,NGR,male,1993-10-24,1.71,,football,0,0,1, -229646007,Imre Balazs Bacskai,HUN,male,1988-01-29,1.77,,boxing,0,0,0, -92960172,In Gee Chun,KOR,female,1994-08-10,1.76,70,golf,0,0,0, -158102208,Ina Nikulina,BLR,female,1995-02-23,1.72,66,rowing,0,0,0, -142973725,Inaki Aguilar Vicente,ESP,male,1983-09-09,1.89,82,aquatics,0,0,0, -952258564,Inaki Gomez,CAN,male,1988-01-16,1.72,59,athletics,0,0,0, -22566156,Inaki Villanueva,ESP,male,1991-02-10,1.98,103,rugby sevens,0,0,0, -349411929,Inbee Park,KOR,female,1988-07-12,1.68,60,golf,1,0,0, -471014946,Ines Boubakri,TUN,female,1988-12-28,1.67,56,fencing,0,0,1, -933685256,Ines Gmati,TUN,female,1997-04-05,1.65,70,sailing,0,0,0, -601743503,Ines Henriques,POR,female,1980-05-01,1.56,45,athletics,0,0,0, -26427576,Ines Melchor,PER,female,1986-08-30,1.52,45,athletics,0,0,0, -6720592,Ines Remersaro,URU,female,1992-12-02,1.67,55,aquatics,0,0,0, -71569433,Inessa Merkulova,RUS,female,1964-11-09,1.7,65,equestrian,0,0,0, -701169086,Inge Dekker,NED,female,1985-08-18,1.83,67,aquatics,0,0,0, -121871269,Inge Janssen,NED,female,1989-04-20,1.82,74,rowing,0,1,0, -771770373,Ingeborg Lovnes,NOR,female,1992-09-05,,,athletics,0,0,0, -569222306,Ingrid Klimke,GER,female,1968-04-01,1.72,58,equestrian,0,1,0, -778347841,Ingrid Oliveira,BRA,female,1996-05-07,1.6,58,aquatics,0,0,0, -449860583,Ingrid Puusta,EST,female,1990-11-08,1.63,57,sailing,0,0,0, -803332684,Ingrid Vidal,COL,female,1991-04-22,1.66,53,football,0,0,0, -464022421,Ingrit Lorena Valencia Victoria,COL,female,1988-09-03,1.6,,boxing,0,0,1, -454151024,Inigo Pena,ESP,male,1990-09-07,1.94,92,canoe,0,0,0, -22127464,Inika McPherson,USA,female,1986-09-29,,,athletics,0,0,0, -989454733,Injeong Choi,KOR,female,1990-05-21,1.74,59,fencing,0,0,0, -846310345,Inkululeko Suntele,LES,male,1994-04-30,,,boxing,0,0,0, -983898565,Inna Deriglazova,RUS,female,1990-03-10,1.73,61,fencing,1,0,0, -595647629,Inna Hryshchun,UKR,female,1994-09-29,1.72,72,canoe,0,0,0, -927315526,Inna Kashyna,UKR,female,1991-09-27,,,athletics,0,0,0, -204865458,Inna Klinova,KAZ,female,1986-05-13,1.73,78,canoe,0,0,0, -135745730,Inna Logutenkova,UKR,female,1986-10-19,1.72,63,equestrian,0,0,0, -980208758,Inna Osipenko-Rodomska,AZE,female,1982-09-20,1.66,63,canoe,0,0,1, -188617365,Inna Stepanova,RUS,female,1990-04-17,1.76,63,archery,0,1,0, -167916854,Inna Trazhukova,RUS,female,1990-09-11,1.7,63,wrestling,0,0,0, -163668674,Ioana Strungaru,ROU,female,1989-01-04,1.8,77,rowing,0,0,1, -562041099,Ioanna Anagnostopoulou,GRE,female,1997-06-12,1.81,58,gymnastics,0,0,0, -850374991,Ioannis Christou,GRE,male,1983-06-23,1.9,92,rowing,0,0,0, -617416112,Ioannis Fountoulis,GRE,male,1988-05-25,1.86,90,aquatics,0,0,0, -580426427,Ioannis Mitakis,GRE,male,1989-11-08,1.86,96,sailing,0,0,0, -115317084,Ioannis Petrou,GRE,male,1996-08-10,1.86,73,rowing,0,0,0, -557528943,Ioannis Tamouridis,GRE,male,1980-06-03,1.8,73,cycling,0,0,0, -576485074,Ioannis Tsilis,GRE,male,1986-07-15,1.83,86,rowing,0,0,0, -33869783,Ion Iulian Panait,ROU,male,1981-05-05,1.69,70,wrestling,0,0,0, -914048344,Ionela-Livia Lehaci,ROU,female,1995-01-03,1.78,57,rowing,0,0,0, -936581108,Ionica Munteanu,ROU,female,1979-01-07,1.75,68,handball,0,0,0, -113789263,Iosefo Verevou,FIJ,male,1996-01-05,1.9,96,football,0,0,0, -855720243,Ippei Watanabe,JPN,male,1997-03-18,1.93,76,aquatics,0,0,0, -442968220,Irakli Revishvili,GEO,male,1989-11-03,1.78,77,aquatics,0,0,0, -938066786,Irakli Turmanidze,GEO,male,1984-12-13,1.82,136,weightlifting,0,0,1, -513788347,Irem Karamete,TUR,female,1993-06-20,1.67,60,fencing,0,0,0, -508732843,Irene Otieno,KEN,female,1986-03-26,1.62,58,rugby sevens,0,0,0, -84886032,Irene Prescott,TGA,female,1994-06-21,1.74,74,aquatics,0,0,0, -182591826,Irene Vecchi,ITA,female,1989-06-10,1.7,56,fencing,0,0,0, -417651899,Irina Bliznova,RUS,female,1986-10-06,1.82,68,handball,1,0,0, -283851540,Irina Dolgova,RUS,female,1995-09-26,1.53,48,judo,0,0,0, -296869693,Irina Ektova,KAZ,female,1987-01-08,1.73,61,athletics,0,0,0, -804181328,Irina Embrich,EST,female,1980-07-12,1.7,54,fencing,0,0,0, -739855069,Irina Fetisova,RUS,female,1994-09-07,1.9,76,volleyball,0,0,0, -557552346,Irina Kalentyeva,RUS,female,1977-11-10,1.55,45,cycling,0,0,0, -917681217,Irina Podoinikova,KAZ,female,1988-06-28,1.66,65,canoe,0,0,0, -219669436,Irina Sazonova,ISL,female,1991-09-02,1.6,55,gymnastics,0,0,0, -696538108,Irina Smolnikova,KAZ,female,1980-07-21,1.63,55,athletics,0,0,0, -83837014,Irina Voronkova,RUS,female,1995-10-20,1.9,84,volleyball,0,0,0, -431895427,Irina Zabludina,RUS,female,1987-02-24,1.6,57,judo,0,0,0, -101444757,Irina Zaryazhko,RUS,female,1991-10-04,1.96,78,volleyball,0,0,0, -172876009,Irina-Camelia Begu,ROU,female,1990-08-26,1.81,70,tennis,0,0,0, -201635466,Irini Vasiliou,GRE,female,1990-03-18,1.69,58,athletics,0,0,0, -795911754,Iris Sing,BRA,female,1990-08-21,1.67,51,taekwondo,0,0,0, -642164387,Iris Wang,USA,female,1994-09-02,1.61,52,badminton,0,0,0, -587220722,Irma Testa,ITA,female,1997-12-28,1.74,,boxing,0,0,0, -784228861,Irmina Mrozek-Gliszczynska,POL,female,1992-02-09,1.76,70,sailing,0,0,0, -858423285,Irvette van Zyl,RSA,female,1987-07-05,1.69,53,athletics,0,0,0, -229536037,Irving Perez,MEX,male,1986-05-16,1.75,64,triathlon,0,0,0, -544870247,Iryna Dekha,UKR,female,1996-05-14,1.74,75,weightlifting,0,0,0, -448533729,Iryna Gerashchenko,UKR,female,1995-03-10,1.81,61,athletics,0,0,0, -851400427,Iryna Khokhlova,ARG,female,1990-01-29,1.67,60,modern pentathlon,0,0,0, -712655795,Iryna Klymets,UKR,female,1994-10-04,1.68,78,athletics,0,0,0, -123129605,Iryna Limanouskaya,BLR,female,1994-05-18,1.66,54,aquatics,0,0,0, -586982382,Iryna Novozhylova,UKR,female,1986-01-07,1.75,90,athletics,0,0,0, -413999687,Iryna Popova,UKR,female,1991-05-27,1.64,53,cycling,0,0,0, -312836609,Iryna Vaskouskaya,BLR,female,1991-04-02,1.79,65,athletics,0,0,0, -25232668,Iryna Yakaltsevich,BLR,female,1993-01-26,1.66,60,athletics,0,0,0, -862541606,Isaac Grainger,NZL,male,1992-05-26,1.96,95,rowing,0,0,0, -686113562,Isaac Korir,BRN,male,1990-08-26,1.88,59,athletics,0,0,0, -427843232,Isaac Makwala,BOT,male,1985-09-24,1.85,78,athletics,0,0,0, -231426919,Isaac Silafau,ASA,male,1990-10-05,1.75,68,athletics,0,0,0, -245903701,Isabel Brand,GUA,female,1996-06-23,1.69,53,modern pentathlon,0,0,0, -840841199,Isabel Cristina Romero Benitez,COL,female,1996-07-27,1.61,62,rugby sevens,0,0,0, -196950194,Isabel Evelize W. Guialo,ANG,female,1990-04-08,1.8,73,handball,0,0,0, -338940609,Isabel Kerschowski,GER,female,1988-01-22,1.67,57,football,1,0,0, -519820661,Isabel Swan,BRA,female,1983-11-18,1.81,69,sailing,0,0,0, -809661932,Isabela Macedo,BRA,female,1994-01-23,1.79,76,basketball,0,0,0, -210703897,Isabela Onyshko,CAN,female,1998-06-23,1.57,50,gymnastics,0,0,0, -630931206,Isabell Werth,GER,female,1969-07-21,1.69,66,equestrian,1,1,0, -526667108,Isabella Amado,PAN,female,1996-08-09,1.55,59,gymnastics,0,0,0, -610732042,Isabella Arcila Hurtado,COL,female,1994-03-11,1.68,64,aquatics,0,0,0, -435115822,Isabella Echeverri,COL,female,1994-06-16,1.72,66,football,0,0,0, -465840905,Isabella Isaksen,USA,female,1993-11-22,1.73,63,modern pentathlon,0,0,0, -978854513,Isabelle Forrer,SUI,female,1982-03-28,1.78,67,volleyball,0,0,0, -844071383,Isabelle Gullden,SWE,female,1989-06-29,1.77,76,handball,0,0,0, -729625063,Isabelle Haerle,GER,female,1988-01-10,1.75,64,aquatics,0,0,0, -846218313,Isabelle Pedersen,NOR,female,1992-01-27,,,athletics,0,0,0, -441669814,Isabelle Sambou,SEN,female,1980-10-20,1.55,53,wrestling,0,0,0, -61576654,Isabelle Yacoubou,FRA,female,1986-04-21,1.9,104,basketball,0,0,0, -684603129,Isadora Cerullo,BRA,female,1991-03-24,1.58,58,rugby sevens,0,0,0, -99018195,Isak Ohrstrom,SWE,male,1990-11-26,1.77,72,canoe,0,0,0, -624395952,Isamu Fujisawa,JPN,male,1987-10-12,1.65,54,athletics,0,0,0, -121190622,Isaquias Queiroz dos Santos,BRA,male,1994-01-03,1.75,85,canoe,0,2,1, -141207459,Isheau Wong,TPE,female,1989-02-12,1.79,70,equestrian,0,0,0, -887945521,Isiah Kiplangat Koech,KEN,male,1993-12-19,1.72,65,athletics,0,0,0, -181441933,Isidora Jimenez,CHI,female,1993-08-10,1.7,56,athletics,0,0,0, -874295706,Isidoro Ibarra,ARG,male,1992-10-02,1.75,75,hockey,1,0,0, -211473631,Isil Alben,TUR,female,1986-02-22,1.72,62,basketball,0,0,0, -218012478,Isis Gimenez,VEN,female,1990-07-30,1.7,68,fencing,0,0,0, -444343903,Islam El Shehaby,EGY,male,1982-08-01,1.95,105,judo,0,0,0, -642911122,Islam Magomedov,RUS,male,1991-02-08,1.82,98,wrestling,0,0,0, -318856332,Islam-Beka Albiev,RUS,male,1988-12-28,1.65,66,wrestling,0,0,0, -426130402,Ismael Borrero Molina,CUB,male,1992-01-06,1.6,59,wrestling,1,0,0, -17997174,Ismael Coulibaly,MLI,male,1992-11-20,1.91,78,taekwondo,0,0,0, -168084351,Ismael Marcelo Hernandez Uscanga,MEX,male,1990-01-23,1.78,64,modern pentathlon,0,0,1, -938396110,Ismail Kamara,SLE,male,1997-02-14,,,athletics,0,0,0, -183143122,Ismail Keles,TUR,male,1988-03-05,1.68,70,shooting,0,0,0, -843284700,Isobel Bishop,AUS,female,1991-09-08,1.8,72,aquatics,0,0,0, -997954972,Issam Tej,TUN,male,1979-07-29,1.87,110,handball,0,0,0, -133506247,Istvan Peni,HUN,male,1997-02-14,1.76,64,shooting,0,0,0, -347433647,Istvan Vereb,HUN,male,1987-10-08,1.81,90,wrestling,0,0,0, -521044712,Iszlam Monier Suliman,SUD,male,1990-12-17,1.82,90,judo,0,0,0, -177843995,Italo Duarte,BRA,male,1992-03-13,1.8,73,aquatics,0,0,0, -413617317,Itumeleng Khune,RSA,male,1987-06-20,1.84,75,football,0,0,0, -85278686,Itzel Adilene Manjarrez Bastidas,MEX,female,1990-04-10,1.71,49,taekwondo,0,0,0, -490237088,Iuliana Popa,ROU,female,1996-07-05,1.85,72,rowing,0,0,1, -886931188,Iuliia Andreeva,KGZ,female,1984-03-07,1.68,51,athletics,0,0,0, -734306362,Iuliia Olishevska,UKR,female,1989-02-02,1.67,60,athletics,0,0,0, -36280393,Iuliia Paratova,UKR,female,1986-11-07,1.55,48,weightlifting,0,0,0, -143130668,Iuliia Prokopchuk,UKR,female,1986-10-23,1.6,50,aquatics,0,0,0, -967646151,Iurii Cheban,UKR,male,1986-07-05,1.85,93,canoe,1,0,0,"The Ukraine's Iurii Cheban won the fastest canoe sprint event at the London 2012 Olympic Games, the C-1 200m, for which he also holds two world titles. Four years previously, at Beijing 2008, he took bronze in the C-1 500m." -689497328,Iurii Krakovetskii,KGZ,male,1992-08-27,1.8,130,judo,0,0,0, -898570375,Ivan Banzeruk,UKR,male,1990-02-09,1.8,70,athletics,0,0,0, -69692265,Ivan Cupic,CRO,male,1986-03-27,1.78,78,handball,0,0,0, -360210187,Ivan Dovhodko,UKR,male,1989-01-15,1.96,100,rowing,0,0,0, -666382432,Ivan Dychko,KAZ,male,1990-08-11,2.06,,boxing,0,0,1, -470445982,Ivan Efremov,UZB,male,1986-03-09,1.84,105,weightlifting,0,0,0, -784382414,Ivan Emilianov,MDA,male,1977-02-19,2.02,165,athletics,0,0,0, -77481096,Ivan Endericao,ECU,male,1991-10-28,1.78,80,aquatics,0,0,0, -725755440,Ivan Garcia,MEX,male,1993-10-25,1.6,55,aquatics,0,0,0, -435489428,Ivan Guidea,ROU,male,1988-05-12,1.63,60,wrestling,0,0,0, -98196983,Ivan Horvat,CRO,male,1993-08-17,1.83,73,athletics,0,0,0, -21185636,Ivan Ivanov,UKR,male,1989-01-08,1.83,67,triathlon,0,0,0, -731072777,Ivan Ivanov,KAZ,male,1992-01-03,2.02,144,athletics,0,0,0, -515991313,Ivan Kljakovic Gaspic,CRO,male,1984-05-24,1.89,95,sailing,0,0,0, -469953081,Ivan Krapic,CRO,male,1989-02-14,1.94,103,aquatics,0,1,0, -217049507,Ivan Pastor Lafuente,ESP,male,1980-02-18,1.77,73,sailing,0,0,0, -983627857,Ivan Pesic,CRO,male,1989-03-17,1.94,112,handball,0,0,0, -172346281,Ivan Popov,AUS,male,1986-05-25,2.03,106,wrestling,0,0,0, -363273561,Ivan Remarenco,UAE,male,1988-08-07,1.86,100,judo,0,0,0, -195192329,Ivan Sliskovic,CRO,male,1991-10-23,1.97,100,handball,0,0,0, -744721123,Ivan Sozonov,RUS,male,1989-07-06,1.8,78,badminton,0,0,0, -432949673,Ivan Stevanovic,CRO,male,1982-05-18,1.93,105,handball,0,0,0, -150785655,Ivan Stevic,SRB,male,1980-03-12,1.72,68,cycling,0,0,0, -858324078,Ivan Stretovich,RUS,male,1996-10-06,1.7,59,gymnastics,0,1,0, -337752893,Ivan Trotski,BLR,male,1976-05-27,1.72,62,athletics,0,0,0, -617539408,Ivan Tsikhan,BLR,male,1976-07-24,1.86,110,athletics,0,1,0, -33123082,Ivan Zaytsev,ITA,male,1988-10-02,2.04,100,volleyball,0,1,0, -177114501,Ivan Zaytsev,UZB,male,1988-11-07,1.92,95,athletics,0,0,0, -296305491,Ivana Andusic Maksimovic,SRB,female,1990-05-02,1.61,51,shooting,0,0,0, -313918380,Ivana Spanovic,SRB,female,1990-05-10,1.76,65,athletics,0,0,1, -666265585,Ivaylo Ivanov,BUL,male,1994-07-20,1.8,81,judo,0,0,0, -144103259,Ives Alonso,BRA,male,1980-10-12,1.91,102,aquatics,0,0,0, -621283199,Ivet Lalova-Collio,BUL,female,1984-05-18,1.68,56,athletics,0,0,0, -440079091,Iveta Putalova,SVK,female,1988-03-24,1.73,60,athletics,0,0,0, -45693208,Iveta Vacenovska,CZE,female,1986-03-22,1.68,58,table tennis,0,0,0, -237977103,Ivo Rodrigues,POR,male,1995-03-30,1.8,70,football,0,0,0, -447718633,Ivona Dadic,AUT,female,1993-12-29,1.79,65,athletics,0,0,0, -958847456,Iwona Lewandowska,POL,female,1985-02-19,1.61,43,athletics,0,0,0, -909695929,Iwona Nina Matkowska,POL,female,1982-05-28,1.6,48,wrestling,0,0,0, -951915327,Izabella Chiappini,BRA,female,1995-09-28,1.7,59,aquatics,0,0,0, -645206665,Iziane Castro,BRA,female,1982-03-13,1.81,69,basketball,0,0,0, -324317073,Izmir Smajlaj,ALB,male,1993-03-29,1.95,86,athletics,0,0,0, -269077637,Izzat Artykov,KGZ,male,1993-09-08,1.6,69,weightlifting,0,0,0, -963470653,Izzet Safer,TUR,male,1990-07-10,1.78,74,athletics,0,0,0, -860885364,Izzy Joachim,VIN,female,2000-05-11,,,aquatics,0,0,0, -478575859,J'den Michael Tbory Cox,USA,male,1995-03-03,1.81,85,wrestling,0,0,1, -411708041,Jaak-Heinrich Jagor,EST,male,1990-05-11,1.9,80,athletics,0,0,0, -108953366,Jabrayil Hasanov,AZE,male,1990-02-24,1.7,74,wrestling,0,0,1, -299391231,Jacco Arends,NED,male,1991-01-28,1.86,72,badminton,0,0,0, -788110686,Jack Beaumont,GBR,male,1993-11-21,1.88,88,rowing,0,0,0, -579353978,Jack Bobridge,AUS,male,1989-07-13,1.8,65,cycling,0,1,0, -760496010,Jack Burnell,GBR,male,1993-06-13,1.85,72,aquatics,0,0,0, -762346507,Jack Conger,USA,male,1994-09-26,1.94,79,aquatics,1,0,0, -603033705,Jack Green,GBR,male,1991-10-06,1.93,78,athletics,0,0,0, -123646851,Jack Laugher,GBR,male,1995-01-30,1.68,72,aquatics,1,1,0, -438635106,Jack McLoughlin,AUS,male,1995-02-01,1.83,75,aquatics,0,0,0, -485335601,Jack Rossiter,AUS,male,1997-06-13,1.71,70,shooting,0,0,0, -466400637,Jack Sock,USA,male,1992-09-24,1.91,83,tennis,1,0,1, -88575304,Jackeline Renteria Castillo,COL,female,1986-02-23,1.67,58,wrestling,0,0,0, -818815252,Jackie Baumann,GER,female,1995-08-24,1.73,58,athletics,0,0,0, -570931875,Jackie Galloway,USA,female,1995-12-27,1.78,79,taekwondo,0,0,1, -305555615,Jacko Gill,NZL,male,1994-12-20,1.89,120,athletics,0,0,0, -637078881,Jackson Kiprop,UGA,male,1986-10-20,,,athletics,0,0,0, -547359586,Jackson Rondinelli,BRA,male,1994-05-20,1.63,62,aquatics,0,0,0, -181043384,Jaclyn Briggs,USA,female,1988-05-23,1.68,61,hockey,0,0,0, -390353746,Jaco van Zyl,RSA,male,1979-02-23,1.84,74,golf,0,0,0, -144248521,Jacob Araptany,UGA,male,1994-02-11,,,athletics,0,0,0, -28259305,Jacob Barsoe,DEN,male,1988-09-21,1.88,73,rowing,0,1,0, -135293995,Jacob Bruun Larsen,DEN,male,1998-09-19,1.83,74,football,0,0,0, -521943829,Jacob Clear,AUS,male,1985-01-18,1.85,86,canoe,0,0,0, -775250732,Jacob Dalton,USA,male,1991-08-19,1.52,65,gymnastics,0,0,0, -260432807,Jacob Gibb,USA,male,1976-02-06,2.01,95,volleyball,0,0,0, -682128898,Jacob Hansford,AUS,male,1995-09-28,1.82,77,aquatics,0,0,0, -6706851,Jacob Heidtmann,GER,male,1994-11-06,1.95,83,aquatics,0,0,0, -194290880,Jacob Kiplimo,UGA,male,2000-11-14,,,athletics,0,0,0, -561768430,Jacob Larsen,DEN,male,1988-06-13,1.82,73,rowing,0,1,0, -199313141,Jacob Maliekal,RSA,male,1991-01-01,1.72,72,badminton,0,0,0, -888054041,Jacob Pebley,USA,male,1993-09-17,1.94,86,aquatics,0,0,0, -807399236,Jacob Rozani,RSA,male,1988-01-24,,,athletics,0,0,0, -934183083,Jacob Saunders,CAN,male,1992-04-15,1.76,64,sailing,0,0,0, -24055098,Jacob Stockmann,NED,male,1984-07-24,1.93,80,hockey,0,0,0, -176550067,Jacob Une Larsson,SWE,male,1994-04-08,1.78,70,football,0,0,0, -65437843,Jacob Whetton,AUS,male,1991-06-15,1.72,64,hockey,0,0,0, -412344813,Jacqueline Simoneau,CAN,female,1996-09-29,1.65,51,aquatics,0,0,0, -761781098,Jade Barbosa,BRA,female,1991-07-01,1.51,45,gymnastics,0,0,0, -401122423,Jade Howard,ZAM,female,1995-04-03,1.82,68,aquatics,0,0,0, -789368570,Jade Jones,GBR,female,1993-03-21,1.67,57,taekwondo,1,0,0, -899823544,Jade Lally,GBR,female,1987-03-30,1.82,88,athletics,0,0,0, -506534023,Jade Uru,NZL,male,1987-10-20,1.89,88,rowing,0,0,0, -142475326,Jade le Pesq,FRA,female,1992-10-12,1.63,63,rugby sevens,0,0,0, -609790430,Jaeyeong Lee,KOR,female,1996-10-15,1.78,66,volleyball,0,0,0, -732777985,Jagdish Gill,CAN,male,1984-12-05,1.75,77,hockey,0,0,0, -452242951,Jaheel Hyde,JAM,male,1997-02-02,1.8,74,athletics,0,0,0, -355490411,Jahir Ocampo,MEX,male,1990-01-12,1.78,80,aquatics,0,0,0, -519260746,Jahvid Best,LCA,male,1989-01-30,,,athletics,0,0,0, -300681433,Jailma de Lima,BRA,female,1986-12-31,1.74,65,athletics,0,0,0, -863481965,Jaime Nielsen,NZL,female,1985-09-03,1.77,70,cycling,0,0,0, -859145173,Jaime Quiyuch,GUA,male,1988-04-24,1.78,63,athletics,0,0,0, -200267269,Jaime Ryan,AUS,female,1994-05-08,1.75,68,sailing,0,0,0, -524949052,Jaime Yusept Espinal,PUR,male,1984-10-14,1.78,86,wrestling,0,0,0, -467840408,Jaimee Lovett,NZL,female,1988-05-05,1.67,83,canoe,0,0,0, -93687880,Jaisha Orchatteri,IND,female,1983-05-23,1.54,43,athletics,0,0,0, -47754234,Jak Ali Harvey,TUR,male,1989-05-04,1.83,74,athletics,0,0,0, -280957264,Jake Bensted,AUS,male,1994-03-04,1.73,73,judo,0,0,0, -507019886,Jake Kaminski,USA,male,1988-08-11,1.78,70,archery,0,1,0, -191443309,Jake Lilley,AUS,male,1993-07-20,2.04,98,sailing,0,0,0, -742672786,Jake Milton Green,RSA,male,1994-03-30,1.92,90,rowing,0,0,0, -919219233,Jake Packard,AUS,male,1994-06-20,1.95,68,aquatics,0,0,1, -833814609,Jakob Fuglsang,DEN,male,1985-03-22,1.83,69,cycling,0,1,0, -248905348,Jakob Makarashvili,GEO,male,1985-12-28,1.74,80,wrestling,0,0,0, -391045084,Jakov Gojun,CRO,male,1986-04-18,2.03,112,handball,0,0,0, -654667926,Jakson Vicent Monasterio,VEN,male,1991-12-31,,,rowing,0,0,0, -673012015,Jakub Dyjas,POL,male,1995-10-09,1.83,54,table tennis,0,0,0, -215360776,Jakub Grigar,SVK,male,1997-04-27,1.83,81,canoe,0,0,0, -63505242,Jakub Holusa,CZE,male,1988-02-20,1.83,72,athletics,0,0,0, -711962459,Jakub Jelonek,POL,male,1985-07-07,1.85,67,athletics,0,0,0, -566482718,Jakub Krzewina,POL,male,1989-10-10,1.82,79,athletics,0,0,0, -384653943,Jakub Podrazil,CZE,male,1992-01-09,1.99,100,rowing,0,0,0, -141908387,Jakub Vadlejch,CZE,male,1990-10-10,1.91,93,athletics,0,0,0, -719778285,Jale Dreloa,FIJ,male,1995-04-21,1.7,88,football,0,0,0, -118360942,Jamal Wilson,BAH,male,1988-09-01,,,athletics,0,0,0, -741666206,Jamaladdin Magomedov,AZE,male,1989-03-14,1.86,125,wrestling,0,0,0, -190769127,James Adede,KEN,male,1986-10-31,1.62,93,weightlifting,0,0,0, -476158406,James Connor,AUS,male,1995-05-05,1.83,70,aquatics,0,0,0, -384973651,James Cooke,GBR,male,1991-03-03,1.85,74,modern pentathlon,0,0,0, -805860316,James Coughlan,NZL,male,1990-08-28,1.83,78,hockey,0,0,0, -595946076,James Dasaolu,GBR,male,1987-09-05,1.87,88,athletics,0,0,0, -425329772,James Davies,GBR,male,1990-10-25,1.81,98,rugby sevens,0,1,0, -871780908,James Ellington,GBR,male,1985-09-06,1.79,81,athletics,0,0,0, -927707277,James Feigen,USA,male,1989-09-26,1.96,97,aquatics,1,0,0, -924475457,James Guy,GBR,male,1995-11-26,1.88,84,aquatics,0,2,0, -884248663,James Hunter,NZL,male,1992-08-24,1.85,70,rowing,0,0,0, -835838469,James Lassche,NZL,male,1989-08-31,1.91,71,rowing,0,0,0, -311569529,James Magnussen,AUS,male,1991-04-11,1.97,95,aquatics,0,0,1, -966013251,James McRAE,AUS,male,1987-06-27,1.93,93,rowing,0,1,0, -487094967,James Nyang Chiengjiek,ROT,male,1992-03-02,1.79,59,athletics,0,0,0, -451338958,James Paterson-Robinson,AUS,male,1978-09-29,1.7,72,equestrian,0,0,0, -964836144,James Reid,RSA,male,1992-08-01,1.8,70,cycling,0,0,0, -252455377,James Rendon,COL,male,1985-04-07,1.7,64,athletics,0,0,0, -950874222,James Roberts,AUS,male,1991-04-11,1.94,90,aquatics,0,0,1, -942584385,James Rodwell,GBR,male,1984-08-23,1.95,105,rugby sevens,0,1,0, -690378941,James Stannard,AUS,male,1983-02-21,1.73,82,rugby sevens,0,0,0, -538679620,James Stanton-French,AUS,male,1983-07-21,2,93,aquatics,0,0,0, -844650938,James Thompson,RSA,male,1986-11-18,1.82,70,rowing,0,0,0,"At London 2012, James Thompson gave South Africa its only Olympic gold in rowing, in the coxless four. He started in the sport at the age of 14 and, three years later, took bronze in the junior world championships - his first international competition." -291252183,James Willett,AUS,male,1995-12-23,1.86,88,shooting,0,0,0, -139948765,James-Andrew Davis,GBR,male,1991-07-03,1.95,98,fencing,0,0,0, -745045178,Jamial Rolle,BAH,male,1980-08-16,1.74,70,athletics,0,0,0, -219901271,Jamie Broder,CAN,female,1985-06-08,1.72,64,volleyball,0,0,0, -690805480,Jamie Dwyer,AUS,male,1979-03-12,1.72,68,hockey,0,0,0, -116149715,Jamie Murray,GBR,male,1986-02-13,1.9,84,tennis,0,0,0, -742530788,Jamie Subandhi,USA,female,1989-12-15,1.63,58,badminton,0,0,0, -531741106,Jamila Lunkuse,UGA,female,1997-06-01,,,aquatics,0,0,0, -892658314,Jamila Sanmoogan,GUY,female,1997-03-20,1.43,58,aquatics,0,0,0, -153070028,Jamile Samuel,NED,female,1992-04-24,1.68,59,athletics,0,0,0, -48596156,Jamina Roberts,SWE,female,1990-05-28,1.76,67,handball,0,0,0, -621534555,Jan Barta,CZE,male,1984-12-07,1.84,75,cycling,0,0,0, -551500091,Jan Benzien,GER,male,1982-07-22,1.8,75,canoe,0,0,0, -44393712,Jan Kudlicka,CZE,male,1988-04-29,1.84,82,athletics,0,0,0, -143054304,Jan Kuf,CZE,male,1991-05-11,1.86,78,modern pentathlon,0,0,0, -192330093,Jan Lochbihler,SUI,male,1992-03-03,1.87,92,shooting,0,0,0, -958304454,Jan Micka,CZE,male,1995-01-15,1.83,76,aquatics,0,0,0, -809864436,Jan O Jorgensen,DEN,male,1987-12-31,1.84,76,badminton,0,0,0, -33776196,Jan Polanc,SLO,male,1992-05-06,1.72,60,cycling,0,0,0, -860104103,Jan Skarnitzl,CZE,male,1986-07-11,1.79,68,cycling,0,0,0, -973675297,Jan Sterba,CZE,male,1981-06-01,1.83,85,canoe,0,0,1, -798223501,Jan Switkowski,POL,male,1994-01-23,1.93,82,aquatics,0,0,0, -810723660,Jan Vandrey,GER,male,1991-12-11,1.88,88,canoe,1,0,0, -283291174,Jan Vetesnik,CZE,male,1984-03-05,1.82,70,rowing,0,0,0, -283817717,Jan-Lennard Struff,GER,male,1990-04-25,1.96,91,tennis,0,0,0, -591169958,Jan-Philip Glania,GER,male,1988-11-08,1.94,90,aquatics,0,0,0, -726313430,Jan-Willem van Schip,NED,male,1994-08-20,1.94,83,cycling,0,0,0, -918569259,Jana Beckmann,GER,female,1983-05-02,1.7,60,shooting,0,0,0, -87919102,Jana Berezko-Marggrander,GER,female,1995-10-17,1.69,55,gymnastics,0,0,0, -378489397,Jana Dukatova,SVK,female,1983-06-13,1.8,64,canoe,0,0,0, -625488850,Jana Labathova,SVK,female,1988-09-27,1.62,50,aquatics,0,0,0, -117098951,Jana Pechanova,CZE,female,1981-03-03,1.7,62,aquatics,0,0,0, -839957321,Jana Teschke,GER,female,1990-09-22,1.68,56,hockey,0,0,1, -957642024,Jana Veldakova,SVK,female,1981-06-03,1.78,60,athletics,0,0,0, -947261546,Janay Deloach,USA,female,1985-10-12,1.66,58,athletics,0,0,0, -481441857,Jandi Kim,KOR,female,1991-06-15,1.63,57,judo,0,0,0, -40347261,Jane Claxton,AUS,female,1992-10-26,1.69,60,hockey,0,0,0, -748137388,Jane Vongvorachoti,THA,female,1984-01-07,1.66,53,athletics,0,0,0, -896595402,Janeil Bellille,TTO,female,1989-06-18,1.63,59,athletics,0,0,0, -71008427,Janet Amponsah,GHA,female,1993-04-12,1.71,,athletics,0,0,0, -910286492,Janet Okelo,KEN,female,1992-05-05,1.72,60,rugby sevens,0,0,0, -900614005,Janet Owino,KEN,female,1985-08-08,1.65,65,rugby sevens,0,0,0, -229768260,Janete Viegas dos Santos,ANG,female,1991-06-10,1.75,68,handball,0,0,0, -817731370,Jangmi Kim,KOR,female,1992-09-25,1.6,53,shooting,0,0,0, -629610747,Janice Teixeira,BRA,female,1962-05-20,1.7,73,shooting,0,0,0, -633346217,Janieve Russell,JAM,female,1993-11-14,1.75,64,athletics,0,0,0, -192489040,Janika Sprunger,SUI,female,1987-05-29,1.68,54,equestrian,0,0,0, -497079797,Janine Beckie,CAN,female,1994-08-20,1.73,63,football,0,0,1, -20326038,Janine van Wyk,RSA,female,1987-04-17,1.63,61,football,0,0,0, -882695911,Janis Smedins,LAT,male,1987-07-31,1.91,89,volleyball,0,0,0,"Alongside Martins Plavins, Latvia's Janis Smedins surprised at the beach volleyball tournament in London 2012 by winning a bronze medal. This left-handed defender was also a world circuit champion in 2013 and 2014, playing with Aleksandrs Samoilovs." -523195798,Janja Segel,SLO,female,2001-06-17,1.77,60,aquatics,0,0,0, -974901356,Jannah Sonnenschein,MOZ,female,1996-04-24,1.68,60,aquatics,0,0,0, -141611680,Janne Muller-Wieland,GER,female,1986-10-28,1.75,69,hockey,0,0,1, -513737062,Jannick Green Krejberg,DEN,male,1988-09-29,1.95,95,handball,1,0,0, -18696294,Jannik Huth,GER,male,1994-04-15,1.85,80,football,0,1,0, -900686372,Jantine van der Vlist,NED,female,1985-10-30,1.82,74,volleyball,0,0,0, -742091391,Jaouad Achab,BEL,male,1992-08-20,1.75,64,taekwondo,0,0,0, -930205655,Jaqueline Antonia Ferreira,BRA,female,1987-03-05,1.65,75,weightlifting,0,0,0, -802446612,Jaqueline Endres,BRA,female,1983-12-31,1.86,71,volleyball,0,0,0, -565862528,Jared Jarvis,ANT,male,1994-08-29,,,athletics,0,0,0, -541393183,Jared Tallent,AUS,male,1984-10-17,1.78,58,athletics,0,1,0, -586477204,Jared Ward,USA,male,1988-09-09,1.78,65,athletics,0,0,0, -258997468,Jarimit Leonor Weffer Guanipa,VEN,female,1985-11-03,1.58,75,wrestling,0,0,0, -35220711,Jarkko Kinnunen,FIN,male,1984-01-19,1.88,69,athletics,0,0,0, -148216352,Jarlan Junior Barrera Escalona,COL,male,1995-09-16,1.71,68,football,0,0,0, -797374623,Jarlinson Pantano Gomez,COL,male,1988-11-19,,,cycling,0,0,0, -100552265,Jaromir Jezek,CZE,male,1986-11-13,1.8,78,judo,0,0,0, -598101856,Jaroslav Baba,CZE,male,1984-09-02,1.99,86,athletics,0,0,0, -167236182,Jaroslav Kulhavy,CZE,male,1985-01-08,1.88,77,cycling,0,1,0, -727556594,Jaroslav Radon,CZE,male,1986-09-03,1.85,85,canoe,0,0,0, -226767205,Jarred Crous,RSA,male,1996-06-27,1.87,84,aquatics,0,0,0, -573245976,Jarrin Solomon,TTO,male,1986-01-11,1.65,73,athletics,0,0,0, -357249315,Jarrion Lawson,USA,male,1994-05-06,1.88,78,athletics,0,0,0, -649163218,Jarrod Gilchrist,AUS,male,1990-06-13,1.89,90,aquatics,0,0,0, -935549019,Jarrod Poort,AUS,male,1994-10-31,1.85,85,aquatics,0,0,0, -977628785,Jarryd Dunn,GBR,male,1992-01-30,1.84,74,athletics,0,0,0, -891780988,Jaruwat Saensuk,THA,male,1996-05-21,1.85,76,rowing,0,0,0, -164713165,Jasa Veremalua,FIJ,male,1988-05-29,1.95,98,rugby sevens,1,0,0, -489559768,Jasmin Glaesser,CAN,female,1992-07-08,1.67,58,cycling,0,0,1, -63237381,Jasmin Kuelbs,GER,female,1991-11-07,1.78,127,judo,0,0,0, -899306265,Jasmina Jankovic,NED,female,1986-12-06,1.7,77,handball,0,0,0, -742296215,Jasmine Alkhaldi,PHI,female,1993-06-20,1.8,60,aquatics,0,0,0, -245188087,Jasmine Camacho-Quinn,PUR,female,1996-09-21,1.8,73,athletics,0,0,0, -851518120,Jasmine Joyce,GBR,female,1995-10-09,1.63,55,rugby sevens,0,0,0, -481452678,Jasmine Mian,CAN,female,1989-12-31,1.55,48,wrestling,0,0,0, -690689063,Jasmine Pereira,NZL,female,1996-07-20,1.68,66,football,0,0,0, -963694537,Jason Block,CAN,male,1989-12-28,1.82,82,aquatics,0,0,0, -883244567,Jason Burnett,CAN,male,1986-12-16,1.65,60,gymnastics,0,0,0, -42049937,Jason Eric Whateley,AUS,male,1990-11-18,1.96,,boxing,0,0,0, -441111357,Jason Kenny,GBR,male,1988-03-23,1.78,81,cycling,3,0,0, -316427261,Jason Osborne,GER,male,1994-03-20,1.78,72,rowing,0,0,0, -452497047,Jason Pryor,USA,male,1987-09-26,1.76,79,fencing,0,0,0, -744419570,Jason Rogers,SKN,male,1991-08-31,1.73,69,athletics,0,0,0, -789226204,Jason Saunders,NZL,male,1990-11-22,1.88,78,sailing,0,0,0, -572050627,Jason Waterhouse,AUS,male,1991-11-08,1.85,75,sailing,0,1,0, -687929140,Jason Wilson,BAR,male,1990-10-31,1.8,68,triathlon,0,0,0, -242349264,Jaspar Woon Chai Yu,BRU,male,1988-11-14,1.67,60,badminton,0,0,0, -430283478,Jasper Aerents,BEL,male,1992-12-18,1.91,86,aquatics,0,0,0, -662058490,Jasper De Buyst,BEL,male,1993-11-24,1.78,69,cycling,0,0,0, -340877377,Jasper Lefevere,BEL,male,1988-07-13,1.71,66,judo,0,0,0, -19724524,Javad Mahjoub,IRI,male,1991-05-26,1.86,100,judo,0,0,0, -850918376,Javere Bell,JAM,male,1992-09-20,1.83,77,athletics,0,0,0, -532207877,Javid Chalabiyev,AZE,male,1992-05-17,1.7,,boxing,0,0,0, -228472408,Javid Hamzatau,BLR,male,1989-12-27,1.76,91,wrestling,0,0,1, -896286523,Javier Acevedo,CAN,male,1998-01-28,1.82,68,aquatics,0,0,0, -581496209,Javier Carrion,ESP,male,1990-11-09,1.88,100,rugby sevens,0,0,0, -389108533,Javier Cienfuegos,ESP,male,1990-07-15,1.87,110,athletics,0,0,0, -439713366,Javier Cortina Lacerra,CUB,male,1987-04-12,1.85,97,wrestling,0,0,0, -942940677,Javier Culson,PUR,male,1984-07-25,2,82,athletics,0,0,0, -340352113,Javier Garcia Gadea,CRO,male,1984-01-05,1.98,92,aquatics,0,1,0, -760029563,Javier Hernanz Agueria,ESP,male,1983-02-01,1.86,83,canoe,0,0,0, -904572193,Javier Jimenez Scull,CUB,male,1989-11-16,1.98,89,volleyball,0,0,0, -728027225,Javier Octavio Concepcion Rojas,CUB,male,1997-12-27,2,84,volleyball,0,0,0, -834026891,Javier Rojas,ARG,male,1991-04-15,1.88,81,rugby sevens,0,0,0, -23901411,Javon Francis,JAM,male,1994-12-04,1.83,68,athletics,0,1,0, -553955864,Jay Blankenau,CAN,male,1989-09-27,1.94,94,volleyball,0,0,0, -570894983,Jay Litherland,USA,male,1995-08-24,1.83,79,aquatics,0,0,0, -61075691,Jay Shi,USA,male,1979-02-23,1.73,61,shooting,0,0,0, -395224823,Jayme Mata,ARU,male,1982-12-17,1.72,67,judo,0,0,0, -25728763,Jaysuma Saidy Ndure,NOR,male,1984-01-01,,,athletics,0,0,0, -350157840,Jazmin Sawyers,GBR,female,1994-05-21,1.6,61,athletics,0,0,0, -217440009,Jazz Carlin,GBR,female,1990-09-17,1.76,62,aquatics,0,2,0, -23042514,Jean Baptiste Bernaz,FRA,male,1987-07-18,1.9,80,sailing,0,0,0, -604309234,Jean Marie Okutu,ESP,male,1988-12-17,1.78,70,athletics,0,0,0, -344886355,Jean Paulo Fernandes Filho,BRA,male,1995-10-26,,,football,0,0,0, -82070854,Jean Pierre Renan Bourhis,SEN,male,1995-03-29,1.78,73,canoe,0,0,0, -472715886,Jean Quiquampoix,FRA,male,1995-11-03,1.89,85,shooting,0,1,0, -601724690,Jean-Charles Valladont,FRA,male,1989-03-20,1.8,83,archery,0,1,0, -250421057,Jean-Julien Rojer,NED,male,1981-08-25,1.84,81,tennis,0,0,0, -83700650,Jean-Luc Rasamoelina,ANG,male,1989-10-04,1.8,77,rowing,0,0,0, -464354011,Jean-Marc Gardette,SEY,male,1984-07-04,1.69,68,sailing,0,0,0, -858350003,Jean-Michel Lucenay,FRA,male,1978-04-25,1.86,78,fencing,1,0,0, -984646645,Jean-Paul Tony Helissey,FRA,male,1990-03-28,1.77,77,fencing,0,1,0, -376385376,Jeanelle Scheper,LCA,female,1994-11-21,1.78,42,athletics,0,0,0, -714090699,Jeanette Ottesen,DEN,female,1987-12-30,1.8,72,aquatics,0,0,1, -317188820,Jeanine Assani Issouf,FRA,female,1992-08-17,1.7,53,athletics,0,0,0, -39856517,Jeanine Cicognini,ITA,female,1986-11-14,1.7,73,badminton,0,0,0, -437241883,Jeannine Gmelin,SUI,female,1990-06-20,1.7,72,rowing,0,0,0, -953949869,Jeemin Ha,KOR,male,1989-03-21,1.86,83,sailing,0,0,0, -555512079,Jeff Henderson,USA,male,1989-02-19,1.83,85,athletics,1,0,0, -553883529,Jeff Porter,USA,male,1985-11-27,1.83,86,athletics,0,0,0, -861092041,Jefferson Lerma,COL,male,1994-10-25,1.82,76,football,0,0,0, -989207170,Jefferson Milano,VEN,male,1995-11-21,1.85,85,cycling,0,0,0, -488880132,Jefferson Santos Pereira,QAT,male,1989-06-08,1.8,86,volleyball,0,0,0, -246975227,Jeffery Gibson,BAH,male,1990-08-15,,,athletics,0,0,0, -470772822,Jeffrey Hoogland,NED,male,1993-03-16,1.85,97,cycling,0,0,0, -936447868,Jeffrey Julmis,HAI,male,1987-09-30,1.85,79,athletics,0,0,0, -984151393,Jeffrey Riseley,AUS,male,1986-11-11,1.92,74,athletics,0,0,0, -189507792,Jeffrey Wammes,NED,male,1987-04-24,1.68,66,gymnastics,0,0,0, -870523852,Jehue Gordon,TTO,male,1991-12-15,1.88,81,athletics,0,0,0, -71774163,Jelena Jankovic,SRB,female,1985-02-28,1.75,65,tennis,0,0,0, -264088273,Jelena Milovanovic,SRB,female,1989-04-28,1.9,84,basketball,0,0,1, -225359768,Jelena Nikolic,SRB,female,1982-04-13,1.94,79,volleyball,0,1,0, -893813052,Jelena Ostapenko,LAT,female,1997-06-08,1.78,68,tennis,0,0,0, -987915621,Jelena Prokopcuka,LAT,female,1976-09-21,1.68,52,athletics,0,0,0, -42938484,Jelle Geens,BEL,male,1993-03-26,1.72,61,triathlon,0,0,0, -763826075,Jelle van Gorkom,NED,male,1991-01-05,1.87,93,cycling,0,1,0, -990787231,Jemima Jelagat Sumgong,KEN,female,1984-12-21,1.6,45,athletics,1,0,0, -784252790,Jena Hansen,DEN,female,1988-12-10,1.66,60,sailing,0,0,1, -488021170,Jenia Grebennikov,FRA,male,1990-08-13,1.88,85,volleyball,0,0,0, -247726114,Jenly Wini,SOL,female,1983-06-09,1.65,58,weightlifting,0,0,0, -617821916,Jenna Laukkanen,FIN,female,1995-03-02,1.82,80,aquatics,0,0,0, -898091953,Jenna Prandini,USA,female,1992-11-20,1.73,59,athletics,0,0,0, -499225934,Jennie Johansson,SWE,female,1988-06-15,1.88,71,aquatics,0,0,0, -970609954,Jennifer Abel,CAN,female,1991-08-23,1.6,59,aquatics,0,0,0, -385452766,Jennifer Cesar,VEN,female,1989-05-26,1.59,57,cycling,0,0,0, -188078227,Jennifer Chieng,FSM,female,1986-04-29,1.61,,boxing,0,0,0, -622375220,Jennifer Cleary,AUS,female,1993-06-22,1.75,71,rowing,0,0,0, -657843784,Jennifer Dahlgren,ARG,female,1984-04-21,1.8,110,athletics,0,0,0, -117886185,Jennifer Frank Casanas,ESP,male,1978-10-18,1.87,117,athletics,0,0,0, -393564226,Jennifer Galais,FRA,female,1992-03-07,1.69,59,athletics,0,0,0, -335752581,Jennifer Hens,AUS,female,1986-08-01,1.74,60,shooting,0,0,0, -74441554,Jennifer Kish,CAN,female,1988-07-07,1.72,73,rugby sevens,0,0,1, -225406139,Jennifer Madu,NGR,female,1994-09-23,1.68,65,athletics,0,0,0, -729488450,Jennifer Martins,CAN,female,1989-01-31,1.79,76,rowing,0,0,0, -220670322,Jennifer McIntosh,GBR,female,1991-06-17,1.75,80,shooting,0,0,0, -408612404,Jennifer Oeser,GER,female,1983-11-29,1.75,68,athletics,0,0,0, -500359548,Jennifer Simpson,USA,female,1986-08-23,1.66,53,athletics,0,0,1, -626745836,Jennifer Suhr,USA,female,1982-02-05,1.83,65,athletics,0,0,0, -626532715,Jennifer Troncy,FRA,female,1986-01-26,1.57,58,rugby sevens,0,0,0, -871842382,Jennifer Valente,USA,female,1994-12-24,1.76,74,cycling,0,1,0, -868014010,Jennifer Wenth,AUT,female,1991-07-24,1.66,47,athletics,0,0,0, -331294014,Jenny Alm,SWE,female,1989-04-10,1.84,80,handball,0,0,0, -159950160,Jenny Blundell,AUS,female,1994-05-09,1.63,49,athletics,0,0,0, -597803357,Jenny Elbe,GER,female,1990-04-18,1.8,64,athletics,0,0,0, -596979059,Jenny Lyvette Arthur,USA,female,1993-12-11,1.66,75,weightlifting,0,0,0, -624049012,Jenny Mensing,GER,female,1986-02-26,1.83,70,aquatics,0,0,0, -87849675,Jenny Rissveds,SWE,female,1994-06-06,1.65,55,cycling,1,0,0, -754902821,Jens Jonsson,DEN,male,1993-01-10,1.84,78,football,0,0,0, -229792766,Jens Schuermans,BEL,male,1993-02-13,1.75,64,cycling,0,0,0, -953566525,Jeong Eun Lee,KOR,female,1994-09-13,1.53,40,athletics,0,0,0, -188621072,Jeongah Park,KOR,female,1993-03-26,1.86,75,volleyball,0,0,0, -23908007,Jeongsik Won,KOR,male,1990-12-09,1.63,69,weightlifting,0,0,0, -981837262,Jeppe Hojbjerg,DEN,male,1995-04-30,1.95,95,football,0,0,0, -974287219,Jereem Richards,TTO,male,1994-01-13,1.89,,athletics,0,0,0, -787131282,Jeremie Azou,FRA,male,1989-04-02,1.78,71,rowing,1,0,0, -464988921,Jeremie Mion,FRA,male,1989-07-05,1.87,74,sailing,0,0,0, -841582256,Jeremy Aicardi,FRA,male,1988-11-26,1.78,83,rugby sevens,0,0,0, -862582190,Jeremy Cadot,FRA,male,1986-11-07,1.85,78,fencing,0,1,0, -240137595,Jeremy Desplanches,SUI,male,1994-08-07,1.89,73,aquatics,0,0,0, -357577386,Jeremy Dodson,SAM,male,1987-08-30,,,athletics,0,0,0, -612661000,Jeremy Hayward,AUS,male,1993-03-03,1.81,82,hockey,0,0,0, -867045332,Jeremy Monnier,FRA,male,1989-05-05,1.75,65,shooting,0,0,0, -222564871,Jeremy Rencurel,FRA,male,1995-04-13,1.81,83,cycling,0,0,0, -528202320,Jeremy Stravius,FRA,male,1988-07-14,1.9,87,aquatics,0,1,0, -414345502,Jeremy Taiwo,USA,male,1990-01-15,1.94,90,athletics,0,0,0, -231926753,Jeremy Toljan,GER,male,1994-08-08,1.82,77,football,0,1,0, -995701112,Jermaine Seoposenwe,RSA,female,1993-10-12,1.67,62,football,0,0,0, -882400057,Jeroen D'Hoedt,BEL,male,1990-01-10,1.83,63,athletics,0,0,0, -426243229,Jeroen Dubbeldam,NED,male,1973-04-15,1.85,85,equestrian,0,0,0, -306559370,Jeroen Hertzberger,NED,male,1986-02-24,1.74,76,hockey,0,0,0, -389822683,Jeroen Mooren,NED,male,1985-07-30,1.68,60,judo,0,0,0, -244522313,Jerome Guery,BEL,male,1980-07-24,1.84,69,equestrian,0,0,0, -701894934,Jerome Truyens,BEL,male,1987-08-04,1.78,70,hockey,0,1,0, -244166013,Jerry Tollbring,SWE,male,1995-09-13,1.82,82,handball,0,0,0, -790674817,Jerry Tuwai,FIJ,male,1989-03-23,1.74,81,rugby sevens,1,0,0, -688754355,Jerzy Janowicz,POL,male,1990-11-13,2.04,95,tennis,0,0,0, -455392993,Jesper Hansen,DEN,male,1980-11-19,1.8,95,shooting,0,0,0, -527946979,Jesper Johansson,SWE,male,1994-05-30,1.95,85,football,0,0,0, -73811144,Jesper Nielsen,SWE,male,1989-09-30,2,110,handball,0,0,0, -562280742,Jesper Noddesbo,DEN,male,1980-10-23,1.99,100,handball,1,0,0, -109939258,Jesper Stalheim,SWE,male,1988-03-23,1.84,82,sailing,0,0,0, -911273581,Jess Walker,GBR,female,1990-06-24,1.77,70,canoe,0,0,0, -691246438,Jesse David Thielke,USA,male,1992-06-09,1.71,68,wrestling,0,0,0, -475795038,Jesse Parahi,AUS,male,1989-07-29,1.89,104,rugby sevens,0,0,0, -619652365,Jesse Smith,USA,male,1983-04-27,1.94,105,aquatics,0,0,0, -428646755,Jessica Andrews,GBR,female,1992-10-01,1.68,52,athletics,0,0,0, -245831479,Jessica Ashwood,AUS,female,1993-04-28,1.73,64,aquatics,0,1,0, -551853296,Jessica Augusto,POR,female,1981-11-08,1.62,44,athletics,0,0,0, -353712682,Jessica Blaszka,NED,female,1992-08-05,1.6,52,wrestling,0,0,0, -172113299,Jessica Brizeida Lopez Arocha,VEN,female,1986-01-22,1.53,47,gymnastics,0,0,0, -429571808,Jessica Cavalheiro,BRA,female,1991-08-01,1.64,60,aquatics,0,0,0, -154587352,Jessica Draskau-Petersson,DEN,female,1977-09-08,1.7,62,athletics,0,0,0, -651225769,Jessica Eddie,GBR,female,1984-10-07,1.78,75,rowing,0,1,0, -668056593,Jessica Ennis-Hill,GBR,female,1986-01-28,1.65,57,athletics,0,1,0, -499672936,Jessica Fox,AUS,male,1994-06-10,1.66,60,canoe,0,0,1,"Born in France, Jessica Fox represents Australia in the Olympic Games. At the age of 18, she won silver in the canoe slalom K-1 event at London 2012. She also holds six golds from the past three world championships." -243350396,Jessica Hall,AUS,female,1992-07-13,1.83,75,rowing,0,0,0, -742356145,Jessica Hancco,PER,female,1995-09-10,1.53,44,athletics,0,0,0, -844470576,Jessica Houara,FRA,female,1987-09-29,1.61,53,football,0,0,0, -481042981,Jessica Inchude,GBS,female,1996-03-25,1.75,81,athletics,0,0,0, -629770332,Jessica Javelet,USA,female,1985-06-25,1.68,63,rugby sevens,0,0,0, -116285055,Jessica Maier,BRA,female,1994-08-21,1.67,52,gymnastics,0,0,0, -832460083,Jessica Mendoza,GBR,female,1996-04-09,1.72,62,equestrian,0,0,0, -803585591,Jessica Morrison,AUS,female,1992-05-18,,,rowing,0,0,0, -147271899,Jessica O'Connell,CAN,female,1989-02-10,1.58,48,athletics,0,0,0, -223516819,Jessica Parratto,USA,female,1994-06-26,1.58,50,aquatics,0,0,0, -463897901,Jessica Phoenix,CAN,female,1983-10-16,1.57,57,equestrian,0,0,0, -679145498,Jessica Quintino,BRA,female,1991-04-17,1.72,67,handball,0,0,0, -790042843,Jessica Rossi,ITA,female,1992-01-07,1.68,59,shooting,0,0,0, -279018477,Jessica Samuelsson,SWE,female,1992-01-30,1.66,60,football,0,1,0, -273050989,Jessica Thornton,AUS,female,1998-04-12,1.7,59,athletics,0,0,0, -210017406,Jessica Trengove,AUS,female,1987-08-15,1.66,52,athletics,0,0,0, -47922395,Jessica Vall Montero,ESP,female,1988-11-22,1.64,51,aquatics,0,0,0, -304882581,Jessie Fleming,CAN,female,1998-03-11,1.64,55,football,0,0,1, -343382074,Jessie Khing Lacuna,PHI,male,1993-12-23,1.7,70,aquatics,0,0,0, -918777342,Jessy Kramer,NED,female,1990-02-16,1.78,77,handball,0,0,0, -16153353,Jessy Tremouliere,FRA,female,1992-07-29,1.8,73,rugby sevens,0,0,0, -55862203,Jesus Alberto Perales,MEX,male,1993-12-22,1.97,88,volleyball,0,0,0, -957663890,Jesus Antonio Lopez Sanchez,VEN,male,1984-12-17,1.61,62,weightlifting,0,0,0, -340837468,Jesus Espana,ESP,male,1978-08-21,1.68,59,athletics,0,0,0, -673714012,Jesus Liranzo,VEN,male,1995-11-02,1.74,60,aquatics,0,0,0, -589547436,Jesus Rangel,MEX,male,1980-09-20,1.9,82,volleyball,0,0,0, -990831505,Jesus Tortosa Cabrera,ESP,male,1997-12-21,1.85,58,taekwondo,0,0,0, -117602961,Jeunghun Wang,KOR,male,1995-09-07,1.8,72,golf,0,0,0, -407205407,Jevaughn Minzie,JAM,male,1995-07-20,1.78,85,athletics,1,0,0, -370569700,Jevgenijs Borodavko,LAT,male,1986-11-04,1.9,100,judo,0,0,0, -897539865,Jeyong Son,KOR,male,1994-01-12,1.77,70,cycling,0,0,0, -427460731,Jeyvier Jesus Cintron,PUR,male,1995-02-08,1.71,,boxing,0,0,0, -82066790,Jhennifer Conceicao,BRA,female,1997-06-13,1.62,52,aquatics,0,0,0, -87944431,Jhoan Esteban Chaves Rubio,COL,male,1990-01-17,1.64,54,cycling,0,0,0, -507432041,Jhoanis Portilla,CUB,male,1990-07-24,1.82,76,athletics,0,0,0, -677554524,Jhon Perlaza,COL,male,1994-08-26,1.8,62,athletics,0,0,0, -183172056,Jhonatan Esquivel,URU,male,1988-10-13,1.83,86,rowing,0,0,0, -78371823,Jhonathan Paz,HON,male,1995-06-18,1.83,81,football,0,0,0, -996212053,Jhonattan Vegas,VEN,male,1984-08-19,1.91,100,golf,0,0,0, -518155505,Jhonnatan Botero Villegas,COL,male,1992-04-27,1.67,58,cycling,0,0,0, -432678731,Jhonny Perez Urena,DOM,male,1997-09-16,1.73,50,aquatics,0,0,0, -687736543,Jhow Benavidez,HON,male,1995-12-26,1.79,76,football,0,0,0, -829490625,Ji Hyun Sung,KOR,female,1991-07-29,1.75,64,badminton,0,0,0, -30421879,Jia Liu,AUT,female,1982-02-16,1.6,46,table tennis,0,0,0, -290373539,Jiahui Lou,CHN,female,1991-05-26,1.67,55,football,0,0,0, -249355001,Jiajia Guo,CHN,female,1994-06-06,1.71,65,hockey,0,0,0, -404900556,Jialu Hao,CHN,female,1987-08-20,1.76,66,fencing,0,1,0, -643778716,Jialuo Shi,CHN,male,1993-01-25,1.84,71,fencing,0,0,0, -542874859,Jian Fang Lay,AUS,female,1973-03-06,1.63,58,table tennis,0,0,0, -246757519,Jianan Wang,CGO,male,1983-01-20,1.77,77,table tennis,0,0,0, -801219490,Jianan Wang,CHN,male,1996-08-27,1.85,72,athletics,0,0,0, -2310622,Jianbin He,CHN,male,1993-02-18,1.88,83,aquatics,0,0,0, -546426458,Jianfei Ma,CHN,male,1984-07-29,1.86,78,fencing,0,0,0, -715962035,Jianguan Hu,CHN,male,1993-05-11,1.68,,boxing,0,0,1, -44701367,Jianli Guo,CHN,male,1988-03-06,1.78,73,modern pentathlon,0,0,0, -735180620,Jianlian Yi,CHN,male,1987-10-27,2.13,113,basketball,0,0,0, -561632085,Jianming Shu,CHN,male,1990-01-26,1.8,75,canoe,0,0,0, -323548303,Jiao Li,NED,female,1973-01-15,1.67,60,table tennis,0,0,0, -606768935,Jiao Xue,CHN,female,1993-01-30,1.71,59,football,0,0,0, -446754999,Jiaojiao De,CHN,female,1990-01-05,1.67,57,hockey,0,0,0, -964498000,Jiaqi Li,CHN,female,1995-07-02,1.68,63,hockey,0,0,0, -254128139,Jiaqi Zheng,USA,female,1988-01-13,1.66,42,table tennis,0,0,0, -24639304,Jiawei Zhang,CHN,male,1989-01-08,1.72,,boxing,0,0,0, -497442355,Jiaxin Tan,CHN,female,1996-12-03,1.48,36,gymnastics,0,0,1, -534753096,Jiaxin Wu,CHN,female,1997-02-28,1.64,72,archery,0,0,0, -72458951,Jiayu Xu,CHN,male,1995-08-19,1.87,78,aquatics,0,1,0, -167827568,Jidou El Moctar,MTN,male,1985-07-08,1.71,72,athletics,0,0,0, -628163232,Jie Chen,CHN,female,1995-02-28,1.77,65,aquatics,0,0,0, -121538011,Jie Dong,CHN,female,1998-10-31,1.7,62,aquatics,0,0,0, -928430214,Jie Li,NED,female,1984-03-06,1.65,52,table tennis,0,0,0, -155657317,Jie Shi Neo,SIN,female,1985-05-20,1.68,50,athletics,0,0,0, -900705990,Jie Yao,CHN,male,1990-09-21,1.88,85,athletics,0,0,0, -113342748,Jie Youn Nam,KOR,female,1983-05-25,1.71,63,volleyball,0,0,0, -60881505,Jieni Shao,POR,female,1994-01-25,1.69,63,table tennis,0,0,0, -200297041,Jigeun Jeong,KOR,male,1990-01-10,1.77,79,shooting,0,0,0, -934549463,Jihee Jeon,KOR,female,1992-10-28,1.59,56,table tennis,0,0,0, -523127994,Jihoon Kim,KOR,male,1985-06-27,1.79,75,sailing,0,0,0, -669978803,Jike Zhang,CHN,male,1988-02-14,1.78,70,table tennis,1,1,0,"With Brazilian roots (his name is a tribute to Zico, the idol of Flamengo), China's Zhang Jike is a table tennis ace. At London 2012 he won gold in the singles and team events, and has won the world championship seven times." -359354716,Jill Witmer,USA,female,1991-10-01,1.58,52,hockey,0,0,0, -167215235,Jillian Alice Gallays,CAN,female,1986-10-20,1.65,53,wrestling,0,0,0, -102526440,Jillion Potter,USA,female,1986-07-05,1.78,79,rugby sevens,0,0,0, -790998306,Jim Gottfridsson,SWE,male,1992-09-02,1.91,93,handball,0,0,0, -980188208,Jimmy Butler,USA,male,1989-09-14,2.01,99,basketball,1,0,0, -930912011,Jimmy Vicaut,FRA,male,1992-02-27,1.88,83,athletics,0,0,0, -48636955,Jin Hee Yoon,KOR,female,1986-08-04,1.58,53,weightlifting,0,0,1, -585498699,Jin Ma,CHN,female,1988-05-07,1.67,58,badminton,0,0,0, -526447222,Jin Wei Timothee Yap,SIN,male,1994-11-05,1.78,66,athletics,0,0,0, -514671382,Jing Yi Tee,MAS,female,1991-02-08,1.67,58,badminton,0,0,0, -617397429,Jing Zhang,CHN,female,1996-06-16,1.66,62,aquatics,0,0,0, -197574532,Jingbin Zhao,CHN,male,1990-04-18,1.85,72,rowing,0,0,0, -535068479,Jingjing Zhang,CHN,female,1988-12-03,1.64,65,shooting,0,0,0, -800643493,Jingli Duan,CHN,female,1989-03-08,1.8,76,rowing,0,0,1, -890471066,Jinglin Shi,CHN,female,1993-01-03,1.75,69,aquatics,0,0,1, -663047032,Jingnan Zhao,CHN,female,1995-03-07,1.68,51,gymnastics,0,0,0, -822617830,Jingyao Yu,CHN,female,1999-02-13,1.78,63,aquatics,0,0,0, -343852409,Jingyu Wu,CHN,female,1987-02-01,1.67,51,taekwondo,0,0,0,"Gold medalist in the up to 45kg taekwondo class at Beijing 2008 and London 2012, China's Wu Jingyu also has two golds, one silver and one bronze world championship medals." -618968829,Jinhwa Jung,KOR,male,1989-05-25,1.83,75,modern pentathlon,0,0,0, -262158592,Jinjie Gong,CHN,female,1986-11-12,1.65,65,cycling,1,0,0, -307605969,Jinq En Phee,MAS,female,1997-11-29,1.66,51,aquatics,0,0,0, -316863678,Jinrong Zhang,CHN,female,1997-03-24,1.63,58,hockey,0,0,0, -350253517,Jinson Johnson,IND,male,1991-03-15,,,athletics,0,0,0, -763898907,Jinsun Jung,KOR,male,1984-01-24,1.85,83,fencing,0,0,0, -187824275,Jinyi Kim,KOR,female,1993-06-20,1.79,82,handball,0,0,0, -417847231,Jinyoung Park,KOR,female,1997-04-14,1.62,58,aquatics,0,0,0, -303862843,Jiowana Sauto,FIJ,female,1998-03-13,1.7,69,rugby sevens,0,0,0, -715756785,Jip Vastenburg,NED,female,1994-03-21,1.81,57,athletics,0,0,0, -446797398,Jiri Beran,CZE,male,1982-01-18,1.92,80,fencing,0,0,0, -610244706,Jiri Kopac,CZE,male,1982-02-23,1.75,73,rowing,0,0,0, -678435777,Jiri Orsag,CZE,male,1989-01-05,1.81,127,weightlifting,0,0,0, -280267428,Jiri Prskavec,CZE,male,1993-05-18,1.73,69,canoe,0,0,1, -482638625,Jiri Sykora,CZE,male,1995-01-20,1.9,91,athletics,0,0,0, -514339084,Jirina Ptacnikova,CZE,female,1986-05-20,1.73,68,athletics,0,0,0, -931051373,Jisna Mathew,IND,female,1999-01-07,1.56,45,athletics,0,0,0, -824138324,Jisu Yoon,KOR,female,1993-01-24,1.7,60,fencing,0,0,0, -191271695,Jitbahadur Muktan,NEP,male,1979-08-31,1.68,64,archery,0,0,0, -323638966,Jitu Rai,IND,male,1987-08-26,1.6,64,shooting,0,0,0, -426963180,Jiwei Zhao,CHN,male,1995-08-25,1.85,80,basketball,0,0,0, -617915347,Jiyeon Kim,KOR,female,1988-03-12,1.65,56,fencing,0,0,0, -59062825,Jiyeon Seo,KOR,female,1993-03-03,1.68,56,fencing,0,0,0, -609901100,Jiyun Bak,KOR,female,1992-09-21,1.68,63,judo,0,0,0, -450037475,Jo Aleh,NZL,female,1986-05-15,1.71,58,sailing,0,1,0, -476728230,Jo-Wilfried Tsonga,FRA,male,1985-04-17,1.88,93,tennis,0,0,0, -666014603,Joachim Bottieau,BEL,male,1989-03-20,1.8,81,judo,0,0,0, -472743592,Joachim Eilers,GER,male,1990-04-02,1.85,90,cycling,0,0,0, -845052105,Joachim Fischer nielsen,DEN,male,1978-11-23,1.88,78,badminton,0,0,0, -818759516,Joahnys Argilagos,CUB,male,1997-01-11,1.52,,boxing,0,0,1, -629037192,Joakim Nilsson,SWE,male,1994-02-06,1.83,72,football,0,0,0, -99502290,Joan Herp Morell,ESP,male,1993-10-18,1.86,70,sailing,0,0,0, -861221421,Joan Lluis Pons Ramon,ESP,male,1996-12-09,1.7,62,aquatics,0,0,0, -20182796,Joan Losada,ESP,male,1992-06-20,1.82,86,rugby sevens,0,0,0, -727390459,Joana Costa,BRA,female,1981-05-15,1.73,60,athletics,0,0,0, -827210210,Joana Heidrich,SUI,female,1991-10-02,1.9,72,volleyball,0,0,0, -676801349,Joana Palacios,ARG,female,1996-11-08,1.6,63,weightlifting,0,0,0, -278025815,Joana Ramos,POR,female,1982-01-16,1.59,52,judo,0,0,0, -736604724,Joanna Evans,BAH,female,1997-07-25,1.8,66,aquatics,0,0,0, -951232651,Joanna Fiodorow,POL,female,1989-03-04,1.69,94,athletics,0,0,0, -215850400,Joanna Jozwik,POL,female,1991-01-30,1.69,53,athletics,0,0,0, -941360584,Joanna Leigh,GBR,female,1993-02-22,1.65,61,hockey,0,0,0, -489677377,Joanna Leszczynska,POL,female,1988-12-18,1.83,75,rowing,0,0,1, -189833153,Joanna Linkiewicz,POL,female,1990-05-02,1.68,55,athletics,0,0,0, -487036929,Joanna Maranhao,BRA,female,1987-04-29,1.75,70,aquatics,0,0,0, -929833418,Joanna Rowsell-Shand,GBR,female,1988-12-05,1.8,69,cycling,1,0,0, -943408954,Joanna Zachoszcz,POL,female,1993-04-17,1.77,66,aquatics,0,0,0, -984524568,Joanne Faavesi,USA,female,1992-02-05,1.68,73,rugby sevens,0,0,0, -279099654,Joanne Pavey,GBR,female,1973-09-20,1.63,50,athletics,0,0,0, -357940683,Joanne Watmore,GBR,female,1986-09-25,1.79,74,rugby sevens,0,0,0, -964624583,Joao Costa,POR,male,1964-10-28,1.82,100,shooting,0,0,0, -544379806,Joao Gomes,BRA,male,1986-01-21,1.9,88,aquatics,0,0,0, -612164029,Joao Monteiro,POR,male,1983-08-29,1.8,71,table tennis,0,0,0, -224259489,Joao Paulo de Leiria E Silva,ANG,male,1964-11-13,1.76,90,shooting,0,0,0, -259002081,Joao Pereira,POR,male,1987-12-28,1.86,72,triathlon,0,0,0, -345046292,Joao Ribeiro,POR,male,1989-08-19,1.84,87,canoe,0,0,0, -238238213,Joao Rodrigues,POR,male,1971-11-02,1.79,73,sailing,0,0,0, -52128128,Joao Silva,POR,male,1989-05-15,1.71,60,triathlon,0,0,0, -523514105,Joao Sousa,POR,male,1989-03-30,1.85,73,tennis,0,0,0, -385773930,Joao Victor Marcari Oliva,BRA,male,1996-02-02,1.82,65,equestrian,0,0,0, -891766253,Joao Vieira,POR,male,1976-02-20,1.75,59,athletics,0,0,0, -62478596,Joao Virginia,POR,male,1999-10-10,1.82,72,football,0,0,0, -343594006,Joao Vitor de Oliveira,BRA,male,1992-05-15,1.9,87,athletics,0,0,0, -924207908,Joao da Silva,BRA,male,1994-01-29,1.9,93,handball,0,0,0, -949399778,Joao de Lucca,BRA,male,1990-01-06,1.93,95,aquatics,0,0,0, -874040358,Joaquim Lobo,MOZ,male,1995-01-06,1.72,66,canoe,0,0,0, -548003782,Joaquim Rodriguez Oliver,ESP,male,1979-05-12,1.69,59,cycling,0,0,0, -779626305,Joaquin Arzura,ARG,male,1993-05-18,1.7,71,football,0,0,0, -572622269,Joaquin Blanco Albalat,ESP,male,1989-06-25,1.81,80,sailing,0,0,0, -443476953,Joaquin Lopez,BRA,male,1990-02-12,1.7,76,hockey,0,0,0, -202078151,Joaquin Menini,ARG,male,1991-08-18,1.82,76,hockey,1,0,0, -981125983,Jodie Kenny,AUS,female,1987-08-18,1.83,74,hockey,0,0,0, -525649911,Jodie Williams,GBR,female,1993-09-28,1.73,65,athletics,0,0,0, -854286799,Jody February,RSA,male,1996-05-12,1.82,72,football,0,0,0, -874371123,Joe Ingles,AUS,male,1987-10-02,2.04,91,basketball,0,0,0, -921707760,Joe Joyce,GBR,male,1985-09-19,1.97,,boxing,0,1,0, -21878416,Joe Kayes,AUS,male,1991-01-03,1.98,125,aquatics,0,0,0, -251331480,Joe Kovacs,USA,male,1989-06-28,1.83,133,athletics,0,1,0, -475553078,Joe Mahit,VAN,male,1992-07-17,1.7,66,judo,0,0,0, -166825342,Joe Maloy,USA,male,1985-12-20,1.76,64,triathlon,0,0,0, -886636468,Joe Morris,USA,male,1989-08-17,1.78,79,sailing,0,0,0, -650947541,Joe Webber,NZL,male,1993-08-27,1.85,95,rugby sevens,0,0,0, -751008649,Joedison Teixeira,BRA,male,1994-01-28,1.72,,boxing,0,0,0, -772292752,Joel Baden,AUS,male,1996-02-01,1.9,70,athletics,0,0,0, -64143047,Joel Dennerley,AUS,male,1987-06-25,1.95,91,aquatics,0,0,0, -545645224,Joel Gonzalez Bonilla,ESP,male,1989-09-30,1.85,68,taekwondo,0,0,1, -551792957,Joel Pereira,POR,male,1996-06-28,1.91,80,football,0,0,0, -666790332,Joel Swift,AUS,male,1990-06-14,1.9,103,aquatics,0,0,0, -603523767,Joelle Sandrine Mbumi Nkouindjin,CMR,female,1986-05-25,1.7,63,athletics,0,0,0, -324305623,Joelma Sousa,BRA,female,1984-07-13,1.72,49,athletics,0,0,0, -808443365,Joerdis Steinegger,AUT,female,1983-02-08,1.72,59,aquatics,0,0,0, -418059967,Joeri Verlinden,NED,male,1988-01-22,1.81,75,aquatics,0,0,0, -363167392,Joffrey Lauvergne,FRA,male,1991-09-30,2.09,115,basketball,0,0,0, -11290157,Johan Jakobsson,SWE,male,1987-02-12,1.95,98,handball,0,0,0, -203049800,Johan Magnus Euren,SWE,male,1985-05-18,1.92,120,wrestling,0,0,0, -303272993,Johanna Bundsen,SWE,female,1991-06-03,1.85,72,handball,0,0,0, -980564711,Johanna Goliszewski,GER,female,1986-05-09,1.72,64,badminton,0,0,0, -624185811,Johanna Konta,GBR,female,1991-05-17,1.8,69,tennis,0,0,0, -886841889,Johanna Larsson,SWE,female,1988-08-17,1.74,65,tennis,0,0,0, -25172268,Johanna Umurungi,RWA,female,1996-04-07,,,aquatics,0,0,0, -824255240,Johannes Hintze,GER,male,1999-07-05,1.93,82,aquatics,0,0,0, -735194395,Johannes Schoettler,GER,male,1984-08-27,1.92,84,badminton,0,0,0, -292388497,Johannes Vetter,GER,male,1993-03-26,1.88,103,athletics,0,0,0, -764645021,John Ampomah,GHA,male,1990-07-11,1.91,100,athletics,0,0,0, -327081877,John Collins,GBR,male,1989-01-24,1.92,95,rowing,0,0,0, -112263685,John Cotterill,AUS,male,1987-10-27,1.93,88,aquatics,0,0,0, -912933755,John Cox,VEN,male,1981-07-06,1.96,95,basketball,0,0,0, -151077400,John Edison Rodriguez,COL,male,1991-01-24,2.05,102,fencing,0,0,0, -165939913,John Gordon Perrin,CAN,male,1989-08-17,2.01,95,volleyball,0,0,0, -827895855,John Jackson,IRL,male,1986-02-21,1.7,73,hockey,0,0,0, -821941821,John Jermyn,IRL,male,1982-03-30,1.86,80,hockey,0,0,0, -190324143,John Kibet Koech,BRN,male,1995-08-23,1.68,53,athletics,0,0,0, -914738719,John Mann,USA,male,1985-06-27,1.99,113,aquatics,0,0,0, -774717983,John Millman,AUS,male,1989-06-14,1.83,79,tennis,0,0,0, -592750184,John Murillo,COL,male,1984-07-13,1.86,85,athletics,0,0,0, -444015390,John Nunn,USA,male,1978-02-03,1.88,78,athletics,0,0,0, -299026310,John Obi Mikel,NGR,male,1987-04-22,1.73,,football,0,0,1, -699155379,John Peers,AUS,male,1988-07-25,1.91,83,tennis,0,0,0, -925467068,John Porch,AUS,male,1994-03-04,1.85,82,rugby sevens,0,0,0, -373274768,John Ruuka,KIR,male,1995-08-13,1.64,64,athletics,0,0,0, -821790736,John Smith,RSA,male,1990-01-12,1.92,72,rowing,0,0,0, -965077119,John Storey,NZL,male,1987-07-19,1.86,85,rowing,0,0,0, -229427449,John Whitaker,GBR,male,1955-08-05,1.61,70,equestrian,0,0,0, -110489298,John-John Dohmen,BEL,male,1988-01-24,1.74,69,hockey,0,1,0, -737599393,Johnathan Akinyemi,NGR,male,1988-11-22,1.88,85,canoe,0,0,0, -881559990,Johnathan Cabral,CAN,male,1992-12-31,1.9,84,athletics,0,0,0, -734388097,Johnny Palacios,HON,male,1986-12-20,1.83,84,football,0,0,0, -556532302,Joice Rodrigues,BRA,female,1986-09-06,1.68,65,basketball,0,0,0, -238860234,Joice Souza da Silva,BRA,female,1983-07-20,1.67,59,wrestling,0,0,0, -396780204,Jolanda Annen,SUI,female,1992-09-11,1.66,56,triathlon,0,0,0, -22338705,Jolanda Neff,SUI,female,1993-01-05,1.68,53,cycling,0,0,0, -317825722,Jolanta Ogar,AUT,female,1982-04-28,1.78,68,sailing,0,0,0, -808313337,Jolien D'hoore,BEL,female,1990-03-14,1.76,64,cycling,0,0,1, -774577987,Jomana Elmaghrabi,EGY,female,1995-06-21,1.62,51,aquatics,0,0,0, -911513755,Jon Izaguirre Insausti,ESP,male,1989-02-04,1.72,61,cycling,0,0,0, -793991394,Jon Schofield,GBR,male,1985-05-10,1.8,80,canoe,0,1,0, -995512721,Jon Wi Choe,PRK,male,1993-06-29,1.7,77,weightlifting,0,0,0, -640178074,Jonas Crivella,BRA,male,1988-04-30,1.81,82,aquatics,0,0,0, -709330716,Jonas Hogh-Christensen,DEN,male,1981-05-21,1.86,102,sailing,0,0,0, -197342499,Jonas Junias Jonas,NAM,male,1993-11-24,1.81,,boxing,0,0,0, -413205965,Jonas Kaspar,CZE,male,1991-10-08,1.82,82,canoe,0,0,0, -510673064,Jonas Maciulis,LTU,male,1985-02-10,1.98,103,basketball,0,0,0, -510906933,Jonas Valanciunas,LTU,male,1992-05-06,2.11,120,basketball,0,0,0, -993012758,Jonas Warrer,DEN,male,1979-03-22,1.81,77,sailing,0,0,0, -572841797,Jonatan Hajdu,HUN,male,1996-06-28,1.88,82,canoe,0,0,0, -621973877,Jonathan Alan Smith,RSA,male,1992-02-19,1.95,93,rowing,0,0,0, -65169876,Jonathan Bell,IRL,male,1987-06-19,1.78,77,hockey,0,0,0, -6885634,Jonathan Borlee,BEL,male,1988-02-22,1.8,69,athletics,0,0,0, -339303461,Jonathan Brownlee,GBR,male,1990-04-30,1.81,70,triathlon,0,1,0, -254041793,Jonathan Calleri,ARG,male,1993-09-23,1.73,78,football,0,0,0, -809086718,Jonathan Castroviejo Nicolas,ESP,male,1987-04-27,1.72,64,cycling,0,0,0, -507080639,Jonathan David Gomez Noriega,COL,male,1996-04-19,1.78,78,aquatics,0,0,0, -474793730,Jonathan Drack,MRI,male,1988-11-06,1.84,73,athletics,0,0,0, -620385089,Jonathan Groth,DEN,male,1992-11-09,1.84,75,table tennis,0,0,0, -803640740,Jonathan Koch,GER,male,1985-10-29,1.83,73,rowing,0,0,0, -637083466,Jonathan Laugel,FRA,male,1993-01-30,1.94,100,rugby sevens,0,0,0, -609847913,Jonathan Lobert,FRA,male,1985-04-30,1.95,100,sailing,0,0,0, -778006833,Jonathan Moriame,FRA,male,1984-06-19,2.03,100,aquatics,0,0,0, -664121704,Jonathan Rieckmann,BRA,male,1987-08-20,1.71,54,athletics,0,0,0, -280719029,Jonathan Stenbacken,SWE,male,1988-01-07,1.95,93,handball,0,0,0, -510827495,Jonathan Walton,GBR,male,1990-10-06,1.91,93,rowing,0,0,0, -412468662,Jonathan Wright,NZL,male,1992-03-14,2.01,97,rowing,0,0,0, -81546527,Jonelle Price,NZL,female,1980-10-14,1.62,57,equestrian,0,0,0, -724095045,Jong Sim Rim,PRK,female,1993-02-05,1.62,74,weightlifting,1,0,0, -867882464,Jong Su Kim,PRK,male,1977-01-01,1.66,67,shooting,0,0,0, -438574326,Jongeun Kim,KOR,female,1986-02-18,1.67,58,hockey,0,0,0, -342096767,Jonghyun Kim,KOR,male,1985-07-21,1.7,73,shooting,0,1,0, -326377611,Jongoh Jin,KOR,male,1979-09-24,1.75,78,shooting,1,0,0,"A specialist in the 50m pistol and 10m air pistol, the Republic of Korea's Jin Jongoh has won five medals over the past three Olympic Games: a silver at Athens 2004, a gold and a silver at Beijing 2008 and two golds at London 2012." -318221769,Jonna Andersson,SWE,female,1993-01-02,1.67,64,football,0,1,0, -160814323,Jono Clegg,GBR,male,1989-07-14,1.86,72,rowing,0,0,0, -497079798,Jonty Evans,IRL,male,1971-10-04,1.93,82,equestrian,0,0,0, -193398244,Joonas Lindgren,FIN,male,1986-05-31,1.7,65,sailing,0,0,0, -183836938,Joonyong Seo,KOR,male,1988-03-14,1.74,65,cycling,0,0,0, -80963554,Joost Luiten,NED,male,1986-01-07,1.77,78,golf,0,0,0, -964164116,Joost van der Burg,NED,male,1993-12-11,1.81,72,cycling,0,0,0, -604210309,Jordan Augier,LCA,male,1994-11-14,1.71,53,aquatics,0,0,0, -543762791,Jordan Chipangama,ZAM,male,1988-11-12,1.73,53,athletics,0,0,0, -151605048,Jordan Coelho,FRA,male,1992-04-02,1.83,75,aquatics,0,0,0, -204399496,Jordan Ernest Burroughs,USA,male,1988-07-08,1.71,79,wrestling,0,0,0, -277046821,Jordan Larson-Burbach,USA,female,1986-10-16,1.88,75,volleyball,0,0,1,"One of the most skilful volleyball players in the world, Jordan Larson took the USA to silver at the London 2012 Olympic Games. This outside hitter led the team in the 2014 world championship and three World League wins, in 2010, 2011 and 2015." -246372668,Jordan Larsson,SWE,male,1997-06-20,1.73,68,football,0,0,0, -402518838,Jordan Mageo,ASA,female,1997-01-06,1.72,68,athletics,0,0,0, -89037230,Jordan Pothain,FRA,male,1994-10-14,1.87,74,aquatics,0,0,0, -780854442,Jordan Silva,MEX,male,1994-07-30,1.86,75,football,0,0,0, -900671149,Jordan Thompson,AUS,male,1994-04-20,1.83,73,tennis,0,0,0, -710046367,Jordan Wilimovsky,USA,male,1994-04-22,1.78,68,aquatics,0,0,0,"The current world champion in the 10km marathon swimming event and the second of the USA's athletes to win this title, Jordan Wilimovsky, was elected the 2015 athlete of the year by the International Swimming Federation." -221513683,Jordan Wood,AUS,male,1994-08-01,1.82,78,canoe,0,0,0, -821771282,Jordi Xammar Hernandez,ESP,male,1993-12-02,1.76,63,sailing,0,0,0, -339973873,Jordin Andrade,CPV,male,1992-05-05,1.82,77,athletics,0,0,0, -611217392,Joren Tromp,NED,male,1988-11-01,1.9,85,athletics,0,0,0, -968135549,Jorge Antonio Garcia,CUB,male,1988-01-14,1.8,78,canoe,0,0,0, -21141252,Jorge Armando Ruiz,COL,male,1989-05-17,1.68,58,athletics,0,0,0, -818827545,Jorge Barajas,MEX,male,1991-05-07,1.88,80,volleyball,0,0,0, -476081047,Jorge Campos,CUB,male,1991-09-19,1.84,77,table tennis,0,0,0, -272138135,Jorge Carrera,ESP,male,1982-06-12,1.8,83,hockey,0,0,0, -178939509,Jorge Castelblanco,PAN,male,1987-09-23,1.69,58,athletics,0,0,0, -761218329,Jorge Diaz,ESP,male,1985-11-26,1.73,75,shooting,0,0,0, -729677214,Jorge Fonseca,POR,male,1992-10-30,1.75,100,judo,0,0,0, -947023674,Jorge Grau Potrille,CUB,male,1987-02-15,1.86,78,shooting,0,0,0, -304222396,Jorge Lima,POR,male,1981-01-29,1.77,72,sailing,0,0,0, -822554462,Jorge Llames,ESP,male,1978-10-17,1.7,74,shooting,0,0,0, -728621076,Jorge Luis Vivas,COL,male,1988-01-22,1.72,,boxing,0,0,0, -811026477,Jorge Mario Murillo Valdes,COL,male,1991-09-07,1.86,77,aquatics,0,0,0, -344287763,Jorge Quinones,MEX,male,1981-11-13,1.86,80,volleyball,0,0,0, -465083316,Jorge Torres,MEX,male,1988-01-16,1.8,76,football,0,0,0, -323103504,Jorge Vides,BRA,male,1992-11-24,1.92,74,athletics,0,0,0, -942961104,Jorge Y. Fernandez,CUB,male,1987-10-02,1.9,100,athletics,0,0,0, -473715878,Jorge Zarif,BRA,male,1992-09-30,1.91,97,sailing,0,0,0, -696332075,Jorinde Verwimp,BEL,female,1994-11-10,1.85,65,equestrian,0,0,0, -692369210,Joris Daudet,FRA,male,1991-02-12,1.84,78,cycling,0,0,0, -544349833,Joris Pijs,NED,male,1987-04-02,1.86,70,rowing,0,0,0, -489958654,Joris Vanspringel,BEL,male,1963-02-08,1.71,69,equestrian,0,0,0, -680257041,Jorrit Croon,NED,male,1998-08-09,1.83,75,hockey,0,0,0, -436353228,Jort van Gennep,NED,male,1994-08-06,1.85,70,rowing,0,0,0, -119403428,Josateki Naulu,FIJ,male,1984-06-08,1.75,81,judo,0,0,0, -912647589,Jose Abella,MEX,male,1994-02-10,1.76,74,football,0,0,0, -742377387,Jose Alessandro Bagio,BRA,male,1981-04-16,1.72,63,athletics,0,0,0, -934177489,Jose Amado Garcia,GUA,male,1977-09-13,1.77,59,athletics,0,0,0, -914289728,Jose Antonio Hermida Ramos,ESP,male,1978-08-24,1.72,67,cycling,0,0,0, -175796769,Jose Armenteros,CUB,male,1992-12-13,1.89,100,judo,0,0,0, -96353822,Jose Barralaga,HON,male,1994-12-22,1.75,74,football,0,0,0, -44722554,Jose Carlos Herrera,MEX,male,1986-02-05,1.87,81,athletics,0,0,0, -733148726,Jose Carlos Moreira,BRA,male,1983-09-28,1.72,80,athletics,0,0,0, -432697799,Jose Carvalho,POR,male,1988-08-18,1.75,77,canoe,0,0,0, -646368101,Jose Costa,POR,male,1984-01-26,1.82,82,sailing,0,0,0, -583146817,Jose Daniel Diaz Robertti,VEN,male,1989-02-22,1.81,96,wrestling,0,0,0, -265525269,Jose Daniel Martin Dockx,ESP,male,1974-01-07,1.83,74,equestrian,0,0,0, -20513481,Jose Guilherme de Toledo,BRA,male,1994-01-11,1.93,97,handball,0,0,0, -710392751,Jose Gutierrez,VEN,male,1992-10-12,1.93,83,sailing,0,0,0, -515906781,Jose Ignacio Diaz,ESP,male,1979-11-22,1.68,67,athletics,0,0,0, -112540010,Jose Joao Pimenta Costa Mendes,POR,male,1985-04-24,1.81,65,cycling,0,0,0, -848550329,Jose Leonardo Montana,COL,male,1992-03-21,1.74,65,athletics,0,0,0, -64401943,Jose Leyver Ojeda,MEX,male,1985-11-12,1.64,60,athletics,0,0,0, -480752909,Jose Luis Gaspar,CUB,male,1995-08-25,1.88,72,athletics,0,0,0, -176573380,Jose Luis Gomez,ARG,male,1993-09-13,1.67,70,football,0,0,0, -314838135,Jose Luis Gonzalez,ARG,male,1984-12-27,2.06,97,volleyball,0,0,0, -767377720,Jose Luis Rodriguez,CHI,male,1994-06-01,1.8,75,cycling,0,0,0, -165713774,Jose Manuel Calderon,ESP,male,1981-09-28,1.91,90,basketball,0,0,1, -225565069,Jose Maria Larocca,ARG,male,1969-01-01,1.87,83,equestrian,0,0,0, -756729947,Jose Maria Raymundo,GUA,male,1993-09-01,1.56,49,athletics,0,0,0, -64114851,Jose Martinez,MEX,male,1993-01-23,2,100,volleyball,0,0,0, -674292992,Jose Melendez,VEN,male,1993-05-19,1.7,70,athletics,0,0,0, -77380631,Jose Pena,VEN,male,1987-01-12,1.6,52,athletics,0,0,0, -828985174,Jose Quintanilla,BOL,male,1997-01-01,2,89,aquatics,0,0,0, -599772179,Jose Ramos,GUA,male,1994-11-09,1.56,60,judo,0,0,0, -145726121,Jose Ricardo Figueroa,CUB,male,1991-01-10,1.84,64,modern pentathlon,0,0,0, -178619727,Jose Vargas,VEN,male,1982-01-23,1.96,109,basketball,0,0,0, -760060377,Jose van Veen,NED,female,1986-01-09,1.95,87,rowing,0,0,0, -546457869,Jose-Filipe Lima,POR,male,1981-11-26,1.77,75,golf,0,0,0, -537078452,Josee Belanger,CAN,female,1986-05-14,1.63,63,football,0,0,1, -168497661,Josef Dostal,CZE,male,1993-03-03,2.02,115,canoe,0,1,1, -351583225,Josefa Fabiola Almeida De Sousa Alves,BRA,female,1983-02-03,1.84,70,volleyball,0,0,0, -938961398,Josefa Vila Betancurt,CHI,female,1997-02-06,1.69,60,rowing,0,0,0, -921723264,Josefin Olsson,SWE,female,1989-08-23,1.72,67,sailing,0,0,0, -184806323,Josefina Fernandez,ARG,female,1991-08-17,1.75,72,volleyball,0,0,0, -384555082,Joselito Velazquez,MEX,male,1993-09-30,1.64,,boxing,0,0,0, -945703153,Josep Romeu,ESP,male,1990-05-22,1.75,77,hockey,0,0,0, -128111481,Joseph Choong,GBR,male,1995-05-23,1.86,78,modern pentathlon,0,0,0, -943343126,Joseph Clarke,GBR,male,1992-11-03,1.82,76,canoe,1,0,0, -872493079,Joseph Cordina,GBR,male,1991-12-01,1.75,,boxing,0,0,0, -722417692,Joseph Emilienne Essombe Tiako,CMR,female,1988-03-22,1.59,55,wrestling,0,0,0, -748279929,Joseph Polossifakis,CAN,male,1990-08-21,1.78,77,fencing,0,0,0, -193706829,Joseph Schooling,SIN,male,1995-06-16,1.84,78,aquatics,1,0,0, -626123517,Joseph Turagabeci,FIJ,male,1994-11-19,1.69,67,football,0,0,0, -610541912,Joseph Ward,IRL,male,1993-10-30,1.86,,boxing,0,0,0, -604939981,Josephine Henning,GER,female,1989-09-08,1.75,68,football,1,0,0, -491045243,Josephine Jacques Andre Coquin,FRA,female,1990-09-21,1.7,51,fencing,0,0,0, -208075373,Josh Akognon,NGR,male,1986-02-10,1.89,83,basketball,0,0,0, -990888036,Josh Binstock,CAN,male,1981-01-12,1.96,99,volleyball,0,0,0, -429283935,Josh Junior,NZL,male,1989-12-22,1.89,96,sailing,0,0,0, -213543405,Josh Kelly,GBR,male,1994-03-07,1.78,,boxing,0,0,0, -234184817,Josh Konieczny,USA,male,1991-05-26,1.81,74,rowing,0,0,0, -820424202,Josh Prenot,USA,male,1993-07-28,1.81,75,aquatics,0,1,0, -7139077,Joshua Beaver,AUS,male,1993-03-01,1.75,70,aquatics,0,0,0, -758033306,Joshua Booth,AUS,male,1990-10-09,1.9,93,rowing,0,1,0, -267338735,Joshua Buatsi,GBR,male,1993-03-14,1.85,,boxing,0,0,1, -357476242,Joshua Dunkley-Smith,AUS,male,1989-06-28,1.94,98,rowing,0,1,0, -27887256,Joshua E Tibatemwa,UGA,male,1996-09-10,,,aquatics,0,0,0, -846703092,Joshua Ilustre,GUM,male,1994-01-23,1.78,70,athletics,0,0,0, -858829009,Joshua Katz,AUS,male,1997-12-29,1.67,60,judo,0,0,0, -894182503,Joshua Kiprui Cheptegei,UGA,male,1996-09-12,,,athletics,0,0,0, -341433396,Joshua Palmer,AUS,male,1991-08-10,1.86,87,aquatics,0,0,0, -485505257,Joshua Richmond,USA,male,1985-12-19,1.88,90,shooting,0,0,0, -761016081,Joshua Robinson,AUS,male,1985-10-04,1.87,92,athletics,0,0,0, -299902345,Joshua Samuels,USA,male,1991-07-08,1.94,95,aquatics,0,0,0, -274974371,Josip Glasnovic,CRO,male,1983-05-07,1.78,82,shooting,1,0,0, -751292408,Josip Pavic,CRO,male,1982-01-15,1.95,90,aquatics,0,1,0, -981156093,Josip Vrlic,BRA,male,1986-04-25,1.96,120,aquatics,0,0,0, -937359847,Jossimar Orlando Calvo Moreno,COL,male,1994-07-22,1.6,54,gymnastics,0,0,0, -924692154,Josua Tuisova,FIJ,male,1994-02-04,1.8,108,rugby sevens,1,0,0, -73761098,Josue Brachi Garcia,ESP,male,1992-09-08,1.56,56,weightlifting,0,0,0, -910659584,Josue Deprez,HAI,male,1981-10-30,,,judo,0,0,0, -298393136,Joud Fahmy,KSA,female,1994-02-20,1.64,52,judo,0,0,0, -441296734,Jovana Brakocevic,SRB,female,1988-03-05,1.96,82,volleyball,0,1,0, -113412907,Jovana Crnogorac,SRB,female,1992-02-29,1.7,56,cycling,0,0,0, -383964072,Jovana Stevanovic,SRB,female,1992-06-30,1.92,72,volleyball,0,1,0, -862971259,Jovana Terzic,MNE,female,1999-05-15,1.65,54,aquatics,0,0,0, -123069531,Jovana de la Cruz,PER,female,1992-07-12,1.61,53,athletics,0,0,0, -434077737,Jovanka Radicevic,MNE,female,1986-10-23,1.7,68,handball,0,0,0, -724258615,Jovina Choo,SIN,female,1990-02-10,1.64,57,sailing,0,0,0, -433904148,Joyce Sombroek,NED,female,1990-09-10,1.79,64,hockey,0,1,0, -85512245,Jozef Repcik,SVK,male,1986-08-03,1.9,72,athletics,0,0,0, -144854938,Juan Carlos Cabrera,MEX,male,1991-11-09,1.94,105,rowing,0,0,0, -17067669,Juan Carlos Carrillo,COL,male,1992-10-10,1.84,,boxing,0,0,0, -735807847,Juan Carlos Trujillo,GUA,male,1985-07-17,1.45,58,athletics,0,0,0, -766482103,Juan Diego Turcios,ESA,male,1992-09-22,1.79,81,judo,0,0,0, -867791853,Juan Gilardi,ARG,male,1981-11-14,1.86,91,hockey,1,0,0, -95348169,Juan Ignacio Caceres,ARG,male,1992-01-31,1.68,75,canoe,0,0,0, -435791254,Juan Ignacio Maegli,GUA,male,1988-07-21,1.83,84,sailing,0,0,0, -773684014,Juan Ignacio Rodriguez Liebana,ESP,male,1992-04-19,1.85,83,archery,0,0,0, -565597273,Juan Imhoff,ARG,male,1988-05-11,1.78,79,rugby sevens,0,0,0, -172353646,Juan Lopez,ARG,male,1985-05-27,1.78,74,hockey,1,0,0, -322112942,Juan Manuel Cano,ARG,male,1987-12-12,1.68,60,athletics,0,0,0, -436803627,Juan Martin Del Potro,ARG,male,1988-09-23,1.98,97,tennis,0,1,0, -48480691,Juan Miguel Rodriguez Martinez,CUB,male,1967-05-26,1.83,86,shooting,0,0,0, -919263299,Juan Monaco,ARG,male,1984-03-29,1.85,77,tennis,0,0,0, -517352231,Juan Nogueira,BRA,male,1988-05-01,1.86,,boxing,0,0,0, -516208233,Juan Pablo Estelles,ARG,male,1988-05-05,1.85,90,rugby sevens,0,0,0, -92791561,Juan Pablo Fernandez,ARG,male,1988-09-30,1.92,86,handball,0,0,0, -585918319,Juan Pablo Romero,MEX,male,1990-01-30,1.8,,boxing,0,0,0, -59463707,Juan Peralta Gascon,ESP,male,1990-05-17,1.94,93,cycling,0,0,0, -388064286,Juan Postigos,PER,male,1989-05-13,1.6,60,judo,0,0,0, -118278910,Juan Quintero,COL,male,1995-03-23,1.83,76,football,0,0,0, -935796461,Juan Ramon Virgen Pulido,MEX,male,1987-04-09,1.97,96,volleyball,0,0,0, -335899694,Juan Saladino,ARG,male,1987-09-28,1.74,73,hockey,1,0,0, -566554621,Juan Vivaldi,ARG,male,1979-07-17,1.8,80,hockey,1,0,0, -808940866,Juan de Jongh,RSA,male,1988-04-15,1.75,87,rugby sevens,0,0,1, -819205568,Juan de la Fuente,ARG,male,1976-08-15,1.81,74,sailing,0,0,0, -394965054,Juan-Carlos Navarro,ESP,male,1980-06-13,1.93,82,basketball,0,0,1, -711645513,Juan-Sebastian Cabal,COL,male,1986-04-25,1.85,82,tennis,0,0,0, -232537338,Juander Santos,DOM,male,1995-05-07,1.71,58,athletics,0,0,0, -704786896,Juciely Cristina Barreto,BRA,female,1980-12-18,1.83,72,volleyball,0,0,0, -42046189,Judit Ignacio Sorribes,ESP,female,1994-03-18,1.65,58,aquatics,0,0,0, -581440046,Judith Forca Ariza,ESP,female,1996-06-07,1.73,70,aquatics,0,0,0, -264395591,Judith Mbougnade,CAF,female,1998-07-11,1.5,,boxing,0,0,0, -979044606,Judith Pietersen,NED,female,1989-07-03,1.87,73,volleyball,0,0,0, -888955559,Judy Reynolds,IRL,female,1981-06-11,1.58,58,equestrian,0,0,0, -381072761,Juho Reinvall,FIN,male,1988-08-24,1.66,60,judo,0,0,0, -498802525,Jules Bessan,BEN,male,1979-04-14,1.83,85,aquatics,0,0,0, -507759754,Julia Beljajeva,EST,female,1992-07-21,1.76,70,fencing,0,0,0, -78792839,Julia Catherine Vincent,RSA,female,1994-08-13,1.54,57,aquatics,0,0,0, -409510063,Julia Edward,NZL,female,1991-02-20,1.66,57,rowing,0,0,0, -373007150,Julia Figueroa,ESP,female,1991-04-07,1.5,48,judo,0,0,0, -851367696,Julia Fischer,GER,female,1990-04-01,1.92,98,athletics,0,0,0, -881992373,Julia Gomes,ARG,female,1992-04-30,1.65,60,hockey,0,0,0, -354743290,Julia Hassler,LIE,female,1993-02-27,1.77,73,aquatics,0,0,0, -195497456,Julia Hauser,AUT,female,1994-02-21,1.63,48,triathlon,0,0,0, -919533844,Julia Krajewski,GER,female,1988-10-22,1.68,65,equestrian,0,1,0, -94438177,Julia Lier,GER,female,1991-11-11,1.83,78,rowing,1,0,0, -843674273,Julia Muller,GER,female,1985-12-10,1.7,71,hockey,0,0,1, -814464830,Julia Pons,ESP,female,1994-07-27,1.65,61,hockey,0,0,0, -594049927,Julia Reinprecht,USA,female,1991-07-12,1.61,55,hockey,0,0,0, -257956193,Julia Sarda,BRA,female,1982-12-01,1.74,64,rugby sevens,0,0,0, -292662070,Julia Sebastian,ARG,female,1993-11-23,1.78,70,aquatics,0,0,0, -791900499,Julia Stavickaja,GER,female,1997-12-03,1.67,48,gymnastics,0,0,0, -716093130,Julia Takacs,ESP,female,1989-06-29,1.71,53,athletics,0,0,0, -22509268,Julia Vasconcelos dos Santos,BRA,female,1992-06-15,1.7,57,taekwondo,0,0,0, -396350226,Julian Alaphilippe,FRA,male,1992-06-11,1.73,62,cycling,0,0,0, -389816250,Julian Ayala,MEX,male,1992-03-06,1.71,80,fencing,0,0,0, -273158116,Julian Brandt,GER,male,1996-05-02,1.85,82,football,0,1,0, -288174300,Julian Fletcher,BER,male,1990-10-08,1.84,79,aquatics,0,0,0, -915650709,Julian Flugel,GER,male,1986-04-18,1.83,66,athletics,0,0,0, -118960924,Julian Jrummi Walsh,JPN,male,1996-09-18,1.75,75,athletics,0,0,0, -24583837,Julian Justus,GER,male,1988-01-29,1.77,76,shooting,0,0,0, -627630800,Julian Matthews,NZL,male,1988-07-21,1.84,70,athletics,0,0,0, -104075617,Julian Reus,GER,male,1988-04-29,1.76,76,athletics,0,0,0, -479350989,Julian Weber,GER,male,1994-08-29,1.91,98,athletics,0,0,0, -800712406,Juliana Esteves,BRA,female,1984-01-27,1.77,73,rugby sevens,0,0,0, -550164775,Juliana Gaviria Rendon,COL,female,1991-03-31,1.65,58,cycling,0,0,0, -633577633,Juliana Jose Machado,ANG,female,1994-11-06,1.75,60,handball,0,0,0, -562282904,Juliana Paula dos Santos,BRA,female,1983-07-12,1.65,50,athletics,0,0,0, -101862484,Juliana Veloso,BRA,female,1980-12-22,1.6,62,aquatics,0,0,0, -728944807,Juliane Rasmussen,DEN,female,1979-02-17,1.73,61,rowing,0,0,0, -966424858,Julianna Miskolczi,HUN,female,1983-11-22,1.56,49,shooting,0,0,0, -937877240,Juliano Fiori,BRA,male,1985-06-27,1.91,107,rugby sevens,0,0,0, -338982011,Juliao Neto,BRA,male,1981-08-16,1.65,,boxing,0,0,0, -271404469,Julie Brougham,NZL,female,1954-05-20,1.57,48,equestrian,0,0,0, -923461973,Julie Johnston,USA,female,1992-04-06,1.7,61,football,0,0,0, -433957819,Julie Kepp Jensen,DEN,female,2000-01-03,1.77,65,aquatics,0,0,0, -662203262,Julie Meynen,LUX,female,1997-08-15,1.7,63,aquatics,0,0,0, -303814544,Julien Absalon,FRA,male,1980-08-16,1.8,68,cycling,0,0,0, -60020354,Julien Bahain,CAN,male,1986-04-20,1.9,93,rowing,0,0,0, -712150971,Julien Candelon,FRA,male,1980-07-08,1.7,80,rugby sevens,0,0,0, -867157773,Julien Gobaux,FRA,male,1990-12-11,1.67,62,gymnastics,0,0,0, -774410191,Julien Quesne,FRA,male,1980-08-16,1.85,88,golf,0,0,0, -757315970,Julien Watrin,BEL,male,1992-06-27,1.89,83,athletics,0,0,0, -962879306,Julien d'Ortoli,FRA,male,1983-10-07,1.8,75,sailing,0,0,0, -950043572,Juliet Chekwel,UGA,female,1990-03-25,,,athletics,0,0,0, -307667762,Juliet Itoya,ESP,female,1986-08-17,1.69,58,athletics,0,0,0, -149975684,Julieta Constanza Lazcano,ARG,female,1989-06-25,1.9,74,volleyball,0,0,0, -569399978,Julieta Granada,PAR,female,1986-11-17,1.6,58,golf,0,0,0, -640084413,Julieta Toledo,MEX,female,1997-05-24,1.66,66,fencing,0,0,0, -799627712,Juliette Ramel,SWE,female,1987-04-12,1.71,55,equestrian,0,0,0, -376593072,Julio Almeida,BRA,male,1969-09-23,1.8,90,shooting,0,0,0, -578772600,Julio Alsogaray,ARG,male,1980-04-11,1.8,81,sailing,0,0,0, -747521379,Julio Cesar Acosta Gonzalez,CHI,male,1987-07-22,1.6,61,weightlifting,0,0,0, -333152040,Julio Cesar Castillo,ECU,male,1988-05-10,1.83,,boxing,0,0,0, -549178578,Julio Cesar Iemma Hernandez,VEN,male,1984-07-31,1.68,70,shooting,0,0,0, -158409385,Julio Cesar Salamanca Pineda,ESA,male,1989-07-15,1.59,62,weightlifting,0,0,0, -356214385,Julio Cesar Salazar,MEX,male,1993-07-08,1.76,60,athletics,0,0,0, -429794805,Julio Cesar de Oliveira,BRA,male,1986-02-04,1.85,95,athletics,0,0,0, -912637672,Julio Cesar la Cruz,CUB,male,1989-08-11,1.82,,boxing,1,0,0, -293911956,Julio Peralta,CHI,male,1981-09-09,1.89,80,tennis,0,0,0, -856955212,Julissa Diez Canseco,PER,female,1989-06-05,1.7,49,taekwondo,0,0,0, -52744143,Julius Kuhn,GER,male,1993-04-01,1.98,110,handball,0,0,1, -352796479,Julius Yego,KEN,male,1989-01-04,1.75,94,athletics,0,1,0, -833182511,Jun Heo,KOR,male,1988-05-31,1.68,64,fencing,0,0,0, -990108444,Jun Hoong Cheong,MAS,female,1990-04-16,1.53,46,aquatics,0,1,0, -971499639,Jun Mizutani,JPN,male,1989-06-09,1.72,63,table tennis,0,1,1, -837661821,Jun Shan,CHN,male,1994-08-07,1.72,,boxing,0,0,0, -328126879,Jun Yang,CHN,female,1988-04-28,1.8,69,aquatics,0,0,0, -898311944,Juncheol Kwon,KOR,male,1988-11-16,1.78,76,shooting,0,0,0, -13885387,Jungbaik Lee,KOR,male,1986-08-27,1.61,65,wrestling,0,0,0, -462538119,Jungeun Seo,KOR,female,1991-12-26,1.68,61,hockey,0,0,0, -603653372,Junghwan Kim,KOR,male,1983-09-02,1.78,66,fencing,0,0,1, -851472120,Junghye Kwak,KOR,female,1986-11-19,1.64,64,shooting,0,0,0, -540684742,Jungsub Shim,KOR,male,1991-02-21,1.68,58,athletics,0,0,0, -118478984,Junhong Kim,KOR,male,1990-10-28,1.77,68,shooting,0,0,0, -184749002,Junhua Yin,CHN,female,1990-08-27,1.67,,boxing,0,1,0, -239850180,Junsik Yun,KOR,male,1991-08-09,1.66,65,wrestling,0,0,0, -645739020,Junxia Yang,CHN,female,1989-05-02,1.69,63,judo,0,0,0, -543006659,Junya Hasegawa,JPN,male,1993-12-13,1.8,70,aquatics,0,0,0, -390371883,Junya Koga,JPN,male,1987-07-19,1.82,80,aquatics,0,0,0, -868084272,Juozas Bernotas,LTU,male,1989-04-23,1.86,80,sailing,0,0,0, -954911768,Jur Vrieling,NED,male,1969-07-31,1.86,81,equestrian,0,0,0, -546944322,Juraj Tarr,SVK,male,1979-02-18,1.86,88,canoe,0,1,0, -992216184,Juraj Tuzinsky,SVK,male,1984-08-24,1.84,73,shooting,0,0,0, -917333595,Jure Dolenec,SLO,male,1988-12-06,1.9,93,handball,0,0,0, -332222731,Jure Meglic,AZE,male,1984-10-18,1.82,80,canoe,0,0,0, -732395162,Jurgen Spiess,GER,male,1984-03-26,1.75,105,weightlifting,0,0,0, -957010520,Jurgen Themen,SUR,male,1985-10-26,,,athletics,0,0,0, -730050855,Justin Duff,CAN,male,1988-05-10,2,102,volleyball,0,0,0, -574761075,Justin Gatlin,USA,male,1982-02-10,1.86,80,athletics,0,1,0, -880505445,Justin Geduld,RSA,male,1993-10-01,1.75,78,rugby sevens,0,0,1,"Champion at the Glasgow 2014 Commonwealth Games, for South Africa, Justin Geduld was also in the team that came runners-up in the 2015/2016 Sevens World Series. Kwaito is his favourite musical genre." -440014013,Justin Liu,SIN,male,1991-05-28,1.67,78,sailing,0,0,0, -369577883,Justin Rose,GBR,male,1980-07-30,1.93,89,golf,1,0,0, -148873377,Justinas Kinderis,LTU,male,1987-05-24,1.84,82,modern pentathlon,0,0,0, -203006331,Justine Fedronic,FRA,female,1991-05-11,1.68,54,athletics,0,0,0, -768117731,Justine Palframan,RSA,female,1993-11-04,1.71,64,athletics,0,0,0, -769813502,Justyna Kaczkowska,POL,female,1997-10-07,1.74,71,cycling,0,0,0, -627015913,Justyna Swiety,POL,female,1992-12-03,1.65,57,athletics,0,0,0, -571537130,Jutatip Maneephan,THA,female,1988-07-08,1.57,57,cycling,0,0,0, -672417750,Jwala Gutta,IND,female,1983-09-07,1.78,85,badminton,0,0,0, -947906976,KK Clark,USA,female,1990-06-28,1.88,72,aquatics,1,0,0, -47855369,Ka Bian,CHN,female,1993-01-05,1.82,115,athletics,0,0,0, -457893226,Ka Long Angus Ng,HKG,male,1994-06-24,1.81,70,badminton,0,0,0, -593897941,Ka Long Cheung,HKG,male,1997-06-10,1.81,68,fencing,0,0,0, -680900592,Ka Man Lee,HKG,female,1986-11-28,1.68,59,rowing,0,0,0, -305478662,Kaan Kigen Ozbilen,TUR,male,1986-01-15,1.78,57,athletics,0,0,0, -715141748,Kaarle Tapper,FIN,male,1995-09-19,1.9,84,sailing,0,0,0, -256631076,Kabange Mupopo,ZAM,female,1992-09-21,1.7,62,athletics,0,0,0, -148757871,Kacper Klich,POL,male,1994-11-12,1.82,78,aquatics,0,0,0, -205302143,Kacper Kozlowski,POL,male,1986-12-07,1.77,72,athletics,0,0,0, -280331524,Kacper Majchrzak,POL,male,1992-09-22,1.9,87,aquatics,0,0,0, -284586329,Kacper Zieminski,POL,male,1990-11-04,1.83,82,sailing,0,0,0, -438808296,Kadeisha Buchanan,CAN,female,1995-11-05,1.7,65,football,0,0,1, -219399568,Kadidiatou Diani,FRA,female,1995-04-01,1.68,57,football,0,0,0, -357724648,Kadra Mohamed Dembil,DJI,female,1997-04-22,1.55,55,athletics,0,0,0, -730889224,Kaede Kondo,JPN,female,1991-10-06,1.73,62,basketball,0,0,0, -721642129,Kafetien Gomis,FRA,male,1980-03-23,1.85,70,athletics,0,0,0, -607051462,Kahena Kunze,BRA,female,1991-03-12,1.72,68,sailing,1,0,0, -796984995,Kaho Minagawa,JPN,female,1997-08-20,1.68,49,gymnastics,0,0,0, -738530112,Kai Hafner,GER,male,1989-07-10,1.92,95,handball,0,0,1, -740563078,Kai Kazmirek,GER,male,1991-01-28,1.9,88,athletics,0,0,0, -39749857,Kai Langerfeld,CAN,male,1987-07-05,1.97,100,rowing,0,0,0, -619887656,Kai Qin,CHN,male,1986-01-31,1.7,65,aquatics,0,0,1, -968160329,Kai Selvon,TTO,female,1992-04-13,1.65,59,athletics,0,0,0, -239319244,Kaidi Kivioja,EST,female,1993-02-23,1.76,61,triathlon,0,0,0, -924327192,Kailen Sheridan,CAN,female,1995-07-16,1.78,72,football,0,0,0, -880036778,Kaio Marcio,BRA,male,1984-10-19,1.77,75,aquatics,0,0,0, -319193694,Kairat Yeraliyev,KAZ,male,1990-11-08,1.65,,boxing,0,0,0, -55703816,Kaj Hendriks,NED,male,1987-08-19,1.97,95,rowing,0,0,1, -951014219,Kaleigh Gilchrist,USA,female,1992-05-16,1.76,77,aquatics,1,0,0, -462211738,Kamal Aldin Mallash,QAT,male,1992-01-01,1.8,80,handball,0,0,0, -943342389,Kame Ali,MAD,male,1984-05-21,1.85,84,athletics,0,0,0, -324865660,Kameli Soejima,JPN,male,1983-06-01,1.89,94,rugby sevens,0,0,0, -608037098,Kami Craig,USA,female,1987-07-21,1.81,88,aquatics,1,0,0, -103254143,Kamia Yousufi,AFG,female,1996-05-20,1.65,55,athletics,0,0,0, -743593230,Kamil Kuczynski,POL,male,1985-03-23,,,cycling,0,0,0, -981300465,Kamil Syprzak,POL,male,1991-07-23,2.07,118,handball,0,0,0, -838362564,Kamila Licwinko,POL,female,1986-03-22,1.84,66,athletics,0,0,0, -109033637,Kamilla Rytter juhl,DEN,female,1983-11-23,1.83,71,badminton,0,1,0, -123021523,Kamolwan Chanyim,THA,female,1996-01-03,1.75,65,sailing,0,0,0, -790596898,Kamongwa Salukombo Makorobondo,COD,male,1988-08-13,,,athletics,0,0,0, -372258149,Kamran Shakhsuvarly,AZE,male,1992-12-06,1.8,,boxing,0,0,1, -388605257,Kana Mitsugi,JPN,female,1992-06-28,1.72,72,rugby sevens,0,0,0, -994718425,Kana Nomura,JPN,female,1990-03-23,1.67,57,hockey,0,0,0, -346210070,Kanae Yagi,JPN,female,1992-07-16,1.54,52,weightlifting,0,0,0, -104327995,Kanae Yamabe,JPN,female,1990-09-22,1.72,108,judo,0,0,1, -386777560,Kanak Jha,USA,male,2000-06-19,1.66,51,table tennis,0,0,0, -274674975,Kanako Watanabe,JPN,female,1996-11-15,1.67,60,aquatics,0,0,0, -160704850,Kanami Nakamaki,JPN,female,1992-06-05,1.69,56,aquatics,0,0,1, -772973384,Kanami Tashiro,JPN,female,1991-03-25,1.73,66,volleyball,0,0,0, -27065279,Kane Radford,NZL,male,1990-11-02,1.75,79,aquatics,0,0,0, -234490151,Kane Russell,NZL,male,1992-04-22,1.76,82,hockey,0,0,0, -553259590,Kanika Beckles,GRN,female,1991-10-03,,,athletics,0,0,0, -743776991,Kano Omata,JPN,female,1996-07-24,1.61,48,aquatics,0,0,1, -141149492,Kanstantsin Barycheuski,BLR,male,1990-05-29,1.91,87,athletics,0,0,0, -791361517,Kanstantsin Siutsou,BLR,male,1982-08-09,1.84,70,cycling,0,0,0, -447034461,Kaori Icho,JPN,female,1984-06-13,1.66,61,wrestling,1,0,0,"Olympic three-time wrestling champion, with golds at Athens 2004, Beijing 2008 and London 2012, Japan's Kaori Icho remained undefeated between 2003 and 2016 in the up to 63kg class. Over this period, she has won ten world championships." -316924793,Kaori Kawanaka,JPN,female,1991-08-03,1.59,51,archery,0,0,0, -351978454,Kaori Matsumoto,JPN,female,1987-09-11,1.63,57,judo,0,0,1, -429591068,Kapririel Kitson,FSM,male,1993-12-10,1.53,70,athletics,0,0,0, -717634951,Kara Chad,CAN,female,1996-01-09,,,equestrian,0,0,0, -30506524,Kara Winger,USA,female,1986-04-10,1.83,83,athletics,0,0,0, -788211955,Karabo Sibanda,BOT,male,1998-07-02,,,athletics,0,0,0, -765541612,Karar Ibrahim,IRQ,male,1994-09-19,1.82,74,football,0,0,0, -865191792,Karel Lavicky,CZE,male,1985-11-08,1.92,80,sailing,0,0,0, -62963470,Karem Achach,MEX,female,1991-02-25,1.69,60,aquatics,0,0,0, -786004687,Karem Ben Hnia,TUN,male,1994-11-13,1.65,69,weightlifting,0,0,0, -871511200,Karen Bennett,GBR,female,1989-02-05,1.79,75,rowing,0,1,0, -137070973,Karen Cope Charles,CRC,female,1985-11-06,1.73,59,volleyball,0,0,0, -263091246,Karen Gallardo,CHI,female,1984-03-06,1.75,96,athletics,0,0,0, -660233137,Karen Paquin,CAN,female,1987-08-03,1.72,70,rugby sevens,0,0,1, -582647371,Karen Riveros,PAR,female,1994-12-04,1.7,66,aquatics,0,0,0, -419664403,Karen Tebar,FRA,female,1964-09-19,1.59,57,equestrian,0,0,0, -141875290,Karen Torrez,BOL,female,1992-07-29,1.65,59,aquatics,0,0,0, -339808080,Kari Aalvik Grimsbo,NOR,female,1985-01-04,1.8,,handball,0,0,1,"Two-time Olympic champion (Beijing 2008 and London 2012) and world champion with the Norway handball team, goalkeeper Kari Aalvik Grimsbø was also part of the four European titles they won." -550682162,Kariem Hussein,SUI,male,1989-01-04,1.91,76,athletics,0,0,0, -306135130,Karien Robbers,NED,female,1993-08-16,1.8,68,rowing,0,0,0, -617638592,Karim Elsayed,EGY,male,1995-02-16,1.83,87,canoe,0,0,0, -402272259,Karim Elzoghby,EGY,male,1977-02-15,1.78,70,equestrian,0,0,0, -282551125,Karim Gharbi,SMR,male,1992-01-05,1.82,100,judo,0,0,0, -78441979,Karim Hendawy,EGY,male,1988-05-01,1.88,90,handball,0,0,0, -423872774,Karim Laghouag,FRA,male,1975-08-04,1.77,70,equestrian,1,0,0, -960874866,Kariman Abuljadayel,KSA,female,1994-05-11,1.8,70,athletics,0,0,0, -825653693,Karin Donckers,BEL,female,1971-05-28,1.68,57,equestrian,0,0,0, -256420475,Karin Johansson,SWE,female,1986-10-04,1.69,77,canoe,0,0,0, -827466551,Karin Knapp,ITA,female,1987-06-28,1.8,72,tennis,0,0,0, -727101608,Karin Mey Melis,TUR,female,1983-05-31,1.71,55,athletics,0,0,0, -728372437,Karin Schnaase,GER,female,1985-02-14,1.64,56,badminton,0,0,0, -255926111,Karina Goricheva,KAZ,female,1993-04-08,1.6,63,weightlifting,0,0,1, -84056388,Karina Lipiarska-Palka,POL,female,1987-02-16,1.74,76,archery,0,0,0, -402338305,Karina Lykhvar,ISR,female,1998-12-11,1.7,53,gymnastics,0,0,0, -326279643,Karina Ocasio,PUR,female,1985-08-01,1.92,76,volleyball,0,0,0, -696191181,Karine Icher,FRA,female,1979-01-26,1.72,66,golf,0,0,0, -794384409,Karine Thomas,CAN,female,1989-01-14,1.72,53,aquatics,0,0,0, -504393481,Karitaake Tewaaki,KIR,female,1997-12-01,1.55,52,athletics,0,0,0, -206296331,Karl Robert Saluri,EST,male,1993-08-06,1.78,75,athletics,0,0,0, -630306564,Karl Schulze,GER,male,1988-03-05,1.9,100,rowing,1,0,0, -318067161,Karl-Martin Rammo,EST,male,1989-06-06,1.9,82,sailing,0,0,0, -773611309,Karl-Richard Frey,GER,male,1991-07-11,1.88,103,judo,0,0,0, -541116732,Karla Borger,GER,female,1988-11-22,1.79,66,volleyball,0,0,0, -510946610,Karma Karma,BHU,female,1990-06-06,1.63,51,archery,0,0,0, -736369747,Karol Bielecki,POL,male,1982-01-23,2.02,106,handball,0,0,0, -659495321,Karol Hoffmann,POL,male,1989-06-01,1.96,84,athletics,0,0,0, -999580644,Karol Klos,POL,male,1989-08-08,2.01,87,volleyball,0,0,0, -867135736,Karol Robak,POL,male,1997-08-24,1.86,68,taekwondo,0,0,0, -366245862,Karol Zalewski,POL,male,1993-08-07,1.89,86,athletics,0,0,0, -206688360,Karol-Ann Canuel,CAN,female,1988-04-18,1.63,51,cycling,0,0,0, -144492522,Karolina Koleczek,POL,female,1993-01-15,1.68,53,athletics,0,0,0, -855211189,Karolina Naja,POL,female,1990-02-05,1.65,63,canoe,0,0,1, -130728600,Karoline Bjerkeli Grovdal,NOR,female,1990-06-14,,,athletics,0,0,0, -387323294,Karoline Lusitania Tatafu,TGA,female,1998-02-20,1.76,70,archery,0,0,0, -380236044,Karri McMahon,AUS,female,1992-02-27,1.77,70,hockey,0,0,0, -406293602,Karsta Lowe,USA,female,1993-02-02,1.93,75,volleyball,0,0,1, -123017629,Karsten Dilla,GER,male,1989-07-17,1.88,82,athletics,0,0,0, -338139502,Karsten Forsterling,AUS,male,1980-01-21,1.91,88,rowing,0,1,0, -687827213,Karsten Warholm,NOR,male,1996-02-28,,,athletics,0,0,0, -45164432,Kasey Perry-Glass,USA,female,1987-10-12,1.63,58,equestrian,0,0,1, -824542494,Kaspar Taimsoo,EST,male,1987-04-30,1.94,95,rowing,0,0,1, -807443109,Kasper Joergensen,DEN,male,1985-03-21,1.85,75,rowing,0,1,0, -498991577,Kasper Larsen,DEN,male,1993-01-25,1.9,88,football,0,0,0, -821953802,Kasper Sondergaard,DEN,male,1981-06-09,1.95,95,handball,1,0,0, -375680192,Kassidy Cook,USA,female,1995-05-09,1.63,56,aquatics,0,0,0, -745894634,Kasumi Ishikawa,JPN,female,1993-02-23,1.58,51,table tennis,0,0,1, -372060903,Katai Yeerlanbieke,CHN,male,1990-07-16,1.69,77,wrestling,0,0,0, -621329519,Katarina Beresova,SVK,female,1987-10-10,1.62,49,athletics,0,0,0, -963217820,Katarina Bulatovic,MNE,female,1984-11-15,1.86,71,handball,0,0,0,"The Montenegro handball team won an unprecedented silver medal at the London 2012 Olympic Games. With 53 goals, Katarina Bulatović was the topscorer of the competition – and repeated that feat at the European championship that same year." -682459058,Katarina Johnson-Thompson,GBR,female,1993-01-09,1.83,68,athletics,0,0,0, -776863385,Katarina Listopadova,SVK,female,1993-03-22,1.69,60,aquatics,0,0,0, -448575637,Katarina Simonovic,SRB,female,1994-10-25,1.64,64,aquatics,0,0,0, -701050744,Katarzyna Baranowska,POL,female,1987-09-13,1.84,72,aquatics,0,0,0, -508525256,Katarzyna Grzybowska-Franc,POL,female,1989-04-30,1.7,58,table tennis,0,0,0, -821941106,Katarzyna Jurkowska-Kowalska,POL,female,1992-02-18,1.61,50,gymnastics,0,0,0, -133150742,Katarzyna Klys,POL,female,1986-04-23,1.74,70,judo,0,0,0, -779199386,Katarzyna Kowalska,POL,female,1985-04-07,1.78,55,athletics,0,0,0, -632636643,Katarzyna Krawczyk,POL,female,1990-09-06,1.58,53,wrestling,0,0,0, -952109931,Katarzyna Niewiadoma,POL,female,1994-09-29,,,cycling,0,0,0, -601530122,Katarzyna Sokolska,POL,female,1993-08-23,1.72,57,athletics,0,0,0, -291806865,Katarzyna Trzopek,USA,female,1981-05-06,1.76,74,fencing,0,0,0, -609219433,Katarzyna Wilk,POL,female,1992-03-22,1.78,64,aquatics,0,0,0, -103732523,Kate Christowitz,RSA,female,1991-03-05,1.84,76,rowing,0,0,0, -750498579,Kate Foo kune,MRI,female,1993-03-29,,,badminton,0,0,0, -659941173,Kate French,GBR,female,1991-02-11,1.75,65,modern pentathlon,0,0,0, -42745952,Kate Grace,USA,female,1988-10-24,1.73,55,athletics,0,0,0, -562453603,Kate O'Brien,CAN,female,1988-07-23,1.68,70,cycling,0,0,0, -669429758,Kate Richardson-Walsh,GBR,female,1980-05-09,1.61,66,hockey,1,0,0, -845437093,Katelin Snyder,USA,female,1987-08-16,1.63,49,rowing,1,0,0, -211784095,Katelyn Falgowski,USA,female,1988-10-23,1.68,62,hockey,0,0,0, -673565659,Katerina Cachova,CZE,female,1990-02-26,1.73,63,athletics,0,0,0, -425721150,Katerina Kudejova,CZE,female,1990-01-17,1.73,63,canoe,0,0,0, -455000082,Katerina Nash,CZE,female,1977-12-09,1.64,52,cycling,0,0,0, -823950105,Katerina Nikoloska,MKD,female,1990-12-30,1.63,63,judo,0,0,0, -11497887,Katerina Safrankova,CZE,female,1989-06-08,1.93,103,athletics,0,0,0, -495858343,Katerine Savard,CAN,female,1993-05-26,1.67,54,aquatics,0,0,1, -967587376,Kateryna Derun,UKR,female,1993-09-24,1.67,75,athletics,0,0,0, -478782814,Kateryna Sadurska,UKR,female,1992-07-19,1.78,58,aquatics,0,0,0, -132167666,Katharina Haecker,AUS,female,1992-07-31,1.72,63,judo,0,0,0, -798170261,Katharina Otte,GER,female,1987-05-29,1.7,61,hockey,0,0,1, -124647381,Katharine Holmes,USA,female,1993-07-15,1.81,79,fencing,0,0,0, -962942201,Katherine Copeland,GBR,female,1990-12-01,1.72,58,rowing,0,0,0, -342063929,Katherine Driscoll,GBR,female,1986-03-13,1.57,55,gymnastics,0,0,0, -799137715,Katherine Grainger,GBR,female,1975-11-12,1.83,78,rowing,0,1,0, -495646589,Katherine Julissa Rodriguez Peguero,DOM,female,1991-12-18,1.86,75,taekwondo,0,0,0, -812632627,Katherine Miller,BRA,female,1994-05-09,1.8,74,fencing,0,0,0, -110579331,Katherine Plouffe,CAN,female,1992-09-15,1.9,89,basketball,0,0,0, -864345352,Katherine Reinprecht,USA,female,1989-11-01,1.63,56,hockey,0,0,0, -36697871,Kathleen Baker,USA,female,1997-02-28,1.73,67,aquatics,1,1,0, -136505337,Kathleen Bam,USA,female,1988-12-06,1.55,54,hockey,0,0,0, -353620509,Kathleen Bertko,USA,female,1983-11-08,1.76,58,rowing,0,0,0, -280337491,Kathleen Sharkey,USA,female,1990-04-30,1.63,58,hockey,0,0,0, -530798213,Kathrin Hendrich,GER,female,1992-04-06,1.72,60,football,0,0,0, -257116773,Kathrin Klaas,GER,female,1984-02-06,1.68,72,athletics,0,0,0, -449245678,Kathrin Marchand,GER,female,1990-11-15,1.83,69,rowing,0,0,0, -490337534,Kathrin Unterwurzacher,AUT,female,1992-06-05,1.73,63,judo,0,0,0, -911364658,Kathryn Johnson,USA,female,1991-10-25,1.78,69,rugby sevens,0,0,0, -297106226,Kathryn Mitchell,AUS,female,1982-07-10,1.68,72,athletics,0,0,0, -126231469,Kathryn Robinson,CAN,female,1985-08-04,1.79,58,equestrian,0,0,0, -181906965,Kathryn Slattery,AUS,female,1993-07-30,1.73,68,hockey,0,0,0, -624672038,Kati Tolmoff,EST,female,1983-12-03,1.64,62,badminton,0,0,0, -529644435,Katia Belabbas,ALG,female,1996-02-01,1.7,65,sailing,0,0,0, -437866225,Katie Archibald,GBR,female,1994-03-12,1.78,70,cycling,1,0,0, -85586674,Katie Bowen,NZL,female,1994-04-15,1.72,56,football,0,0,0, -56946849,Katie Clark,GBR,female,1994-03-23,1.68,56,aquatics,0,0,0, -447673304,Katie Duncan,NZL,female,1988-02-01,1.61,56,football,0,0,0, -932382598,Katie Greves,GBR,female,1982-09-02,1.79,71,rowing,0,1,0, -960103057,Katie Ledecky,USA,female,1997-03-17,1.83,72,aquatics,4,1,0,"She burst onto the scene at London 2012 by winning, at 15, gold in the 800m freestyle. The USA's Katie Ledecky has already climbed the podium in nine events over two world championships and broken 11 world records." -624052007,Katie Rae Ebzery,AUS,female,1990-01-08,1.77,70,basketball,0,0,0, -810072016,Katie Taylor,IRL,female,1986-07-01,1.62,,boxing,0,0,0,"Ireland's flag bearer at London 2012, Katie Taylor started boxing at the age of 11 and was instrumental in it becoming an Olympic sport for women. She is the current Olympic and European champion in the up to 60kg class and holds five world titles." -204377038,Katie Zaferes,USA,female,1989-06-09,1.73,58,triathlon,0,0,0, -643664378,Katinka Hosszu,HUN,female,1989-05-03,1.75,68,aquatics,3,1,0, -353743276,Katja Steen Salskov-Iversen,DEN,female,1994-08-19,1.73,70,sailing,0,0,1, -925144551,Katlin Tammiste,EST,female,1996-04-06,1.69,63,sailing,0,0,0, -762051242,Katrien Verstuyft,BEL,female,1982-07-21,1.7,61,triathlon,0,0,0, -668148835,Katrin Garfoot,AUS,female,1981-10-08,1.66,56,cycling,0,0,0, -775998118,Katrina Gorry,AUS,female,1992-08-13,1.54,54,football,0,0,0, -842830190,Katrina Young,USA,female,1992-01-10,1.63,59,aquatics,0,0,0, -152567636,Katrine Lunde,NOR,female,1980-03-30,1.81,,handball,0,0,1, -67639427,Katsiaryna Belanovich,BLR,female,1991-10-14,1.73,64,athletics,0,0,0, -462750147,Katsiaryna Halkina,BLR,female,1997-02-25,1.67,47,gymnastics,0,0,0, -67434341,Katsiaryna Snytsina,BLR,female,1985-09-02,1.88,78,basketball,0,0,0, -291078282,Katsumi Nakamura,JPN,male,1994-02-21,1.83,79,aquatics,0,0,0, -902484579,Katsuyuki Sakai,JPN,male,1988-09-07,1.72,85,rugby sevens,0,0,0, -482962110,Katsuyuki Tanamura,JPN,male,1989-08-03,1.84,84,aquatics,0,0,0, -758751258,Katy Marchant,GBR,female,1993-01-30,1.7,72,cycling,0,0,1, -28894925,Katy McLean,GBR,female,1985-12-19,1.67,70,rugby sevens,0,0,0, -257631088,Katy Sealy,BIZ,female,1990-10-15,1.72,61,athletics,0,0,0, -108089223,Kauiza Venancio,BRA,female,1987-06-11,1.64,58,athletics,0,0,0, -686041899,Kaur Kivistik,EST,male,1991-04-29,1.92,76,athletics,0,0,0, -25466533,Kaveh Mousavi,IRI,male,1985-05-27,1.92,89,athletics,0,0,0, -306669405,Kavita Tungar,IND,female,1985-05-05,1.57,45,athletics,0,0,0, -706766581,Kawika Shoji,USA,male,1987-11-11,1.9,79,volleyball,0,0,1, -55365531,Kaya Adwoa Forson,GHA,female,2002-03-19,,,aquatics,0,0,0, -707077587,Kayla Banwarth,USA,female,1989-01-21,1.78,75,volleyball,0,0,1, -204954873,Kayla Harrison,USA,female,1990-07-02,1.73,74,judo,1,0,0,"She started judo at the age of six, following in thefootsteps of her mother, a black belt. The Olympic champion in the + 78kg class at London 2012, the USA's Kayla Harrison has also won two Pan American golds, at Guadalajara 2011 and Toronto 2015." -852366261,Kayla Imrie,NZL,female,1992-02-04,1.82,80,canoe,0,0,0, -536942057,Kayla McAlister,NZL,female,1988-08-06,1.69,70,rugby sevens,0,1,0,"The sister of Luke McAlister, who for many years played in the national rugby union team (the All Blacks), Kayla McAlister only started playing rugby sevens in 2012, because of this sport's inclusion in the Rio 2016 schedule." -430232213,Kayla Moleschi,CAN,female,1990-10-25,1.59,65,rugby sevens,0,0,1, -445589182,Kayla Pratt,NZL,female,1991-05-27,1.79,73,rowing,0,0,0, -892601199,Kayla Whitelock,NZL,female,1985-10-30,1.74,72,hockey,0,0,0, -279377870,Kaylin Swart,RSA,female,1994-09-30,,,football,0,0,0, -581084844,Kaylyn Kyle,CAN,female,1988-10-06,1.73,62,football,0,0,0, -187283498,Kayoko Fukushi,JPN,female,1982-03-25,1.6,47,athletics,0,0,0, -250885863,Kayra Sayit,TUR,female,1988-02-13,1.65,90,judo,0,0,0, -522045258,Kazuhiro Goya,JPN,male,1993-04-21,1.7,77,rugby sevens,0,0,0, -79558057,Kazuki Yazawa,JPN,male,1989-03-04,1.67,65,canoe,0,0,0, -717693447,Kazunari Watanabe,JPN,male,1983-08-12,1.76,80,cycling,0,0,0, -974913515,Kazushi Hano,JPN,male,1991-06-21,1.85,87,rugby sevens,0,0,0, -609247354,Kazushige Kuboki,JPN,male,1989-06-06,1.72,65,cycling,0,0,0, -874759036,Kazuto Doi,JPN,male,1992-03-17,1.75,65,sailing,0,0,0, -575081974,Kazuya Shiojiri,JPN,male,1996-11-08,1.7,53,athletics,0,0,0, -701275596,Kazuyasu Minobe,JPN,male,1987-07-15,1.77,75,fencing,0,0,0, -543655093,Kc Fraser,CAN,female,1986-03-29,1.73,68,canoe,0,0,0, -391464185,Keagan Dolly,RSA,male,1993-01-22,1.73,67,football,0,0,0, -306652910,Keegan Pereira,CAN,male,1991-09-08,1.66,59,hockey,0,0,0, -123790061,Keerati Bualong,THA,male,1992-12-06,1.81,82,sailing,0,0,0, -779357330,Keesja Gofers,AUS,female,1990-03-16,1.76,64,aquatics,0,0,0, -427387220,Kefasi Chitsala,MAW,male,1994-06-24,1.7,63,athletics,0,0,0, -953524242,Kei Marumo,JPN,female,1992-03-06,1.6,50,aquatics,0,0,1, -330313227,Kei Nishikori,JPN,male,1989-12-29,1.78,70,tennis,0,0,1, -364955058,Kei Takase,JPN,male,1988-11-25,1.8,67,athletics,0,0,0, -53827184,Keigo Okawa,JPN,male,1990-03-11,1.83,96,aquatics,0,0,0, -437883325,Keiko Miyagawa,JPN,female,1986-05-17,1.52,53,sailing,0,0,0, -522124135,Keila Costa,BRA,female,1983-02-06,1.7,62,athletics,0,0,0, -13083999,Keisuke Nozawa,JPN,male,1991-06-07,1.75,62,athletics,0,0,0, -151980843,Keisuke Ushiro,JPN,male,1986-07-24,1.96,95,athletics,0,0,0, -127445268,Keith Ferguson,AUS,male,1979-09-07,1.76,78,shooting,0,0,0, -450005449,Keith Sanderson,USA,male,1975-02-02,1.83,95,shooting,0,0,0, -357855872,Kelita Zupancic,CAN,female,1990-05-09,1.69,70,judo,0,0,0, -564720756,Kelley Hurley,USA,female,1988-04-04,1.76,74,fencing,0,0,0, -623867004,Kelley O Hara,USA,female,1988-08-04,1.65,54,football,0,0,0, -444880457,Kellion Knibb,JAM,female,1993-12-25,1.83,86,athletics,0,0,0, -500380678,Kelly Araouzou,GRE,female,1991-03-06,1.69,55,aquatics,0,0,0, -230772998,Kelly Brazier,NZL,female,1989-10-28,1.71,70,rugby sevens,0,1,0, -828916384,Kelly Catlin,USA,female,1995-11-03,1.68,63,cycling,0,1,0, -766396208,Kelly Dulfer,NED,female,1994-03-21,1.85,78,handball,0,0,0, -963773248,Kelly Griffin,USA,female,1986-11-07,1.63,68,rugby sevens,0,0,0, -690756146,Kelly Jonker,NED,female,1990-05-23,1.59,59,hockey,0,1,0, -998437044,Kelly Massey,GBR,female,1985-01-11,1.67,58,athletics,0,0,1, -142742348,Kelly Murphy,USA,female,1989-10-20,1.88,79,volleyball,0,0,1, -768193146,Kelly Russell,CAN,female,1986-12-07,1.78,83,rugby sevens,0,0,1, -857131931,Kelly Santos,BRA,female,1979-11-10,1.92,92,basketball,0,0,0, -106147663,Kelly Tan,MAS,female,1993-10-26,1.65,61,golf,0,0,0, -715061380,Kelly-Ann Baptiste,TTO,female,1986-10-14,1.67,54,athletics,0,0,0, -576431902,Kellys Arias,COL,female,1989-07-03,,150,athletics,0,0,0, -257977443,Kelsey Bevan,NZL,female,1990-04-10,1.74,70,rowing,0,0,0, -667833997,Kelsey Card,USA,female,1992-08-20,1.78,115,athletics,0,0,0, -549733789,Kelsey Kolojejchick,USA,female,1991-10-02,1.61,61,hockey,0,0,0, -132170004,Kelsey Robinson,USA,female,1992-06-25,1.88,75,volleyball,0,0,1, -70574268,Kelsey Smith,NZL,female,1994-08-11,1.63,58,hockey,0,0,0, -963525573,Kelsey Wakefield,AUS,female,1991-06-01,1.78,64,aquatics,0,0,0, -149754220,Kelsey-Lee Roberts,AUS,female,1991-09-20,1.75,70,athletics,0,0,0, -596257734,Kelsi Worrell,USA,female,1994-07-15,1.81,74,aquatics,1,0,0, -355934349,Kelsie Ahbe,CAN,female,1991-07-06,1.7,63,athletics,0,0,0, -713350600,Kelvin Cana Infante,VEN,male,1987-08-06,1.73,72,fencing,0,0,0, -99564974,Kemal Mesic,BIH,male,1985-08-04,1.96,120,athletics,0,0,0, -216203916,Kemar Bailey-Cole,JAM,male,1992-01-10,1.93,84,athletics,1,0,0, -762215715,Kemar Hyman,CAY,male,1989-10-11,1.78,74,athletics,0,0,0, -336905285,Kemarley Brown,BRN,male,1992-07-20,1.82,85,athletics,0,0,0, -122476731,Kemoy Campbell,JAM,male,1991-01-14,1.68,57,athletics,0,0,0, -891361844,Ken Sema,SWE,male,1993-09-30,1.8,69,football,0,0,0, -217152230,Ken Terauchi,JPN,male,1980-08-07,1.7,70,aquatics,0,0,0, -653195457,Ken Wallace,AUS,male,1983-07-26,1.9,90,canoe,0,0,1, -410580066,Kendell Williams,USA,female,1995-06-14,1.78,67,athletics,0,0,0, -609984968,Kendra Clarke,CAN,female,1996-11-16,1.67,56,athletics,0,0,0, -799965606,Kendrick James Farris,USA,male,1986-07-02,1.68,93,weightlifting,0,0,0, -960809660,Kenia Lechuga Alanis,MEX,female,1994-06-26,1.62,59,rowing,0,0,0, -254007387,Kenia Sinclair,JAM,female,1980-07-14,1.7,58,athletics,0,0,0, -436752047,Kenichi Hayakawa,JPN,male,1986-04-05,1.77,80,badminton,0,0,0, -990014757,Kenji Fujimitsu,JPN,male,1986-05-01,1.82,69,athletics,0,0,0, -570694823,Kenji Kobase,JPN,male,1987-07-31,1.8,80,aquatics,0,0,0, -206392869,Kenji Takahashi,JPN,male,1982-08-21,1.86,77,sailing,0,0,0, -316685534,Kenki Fukuoka,JPN,male,1992-09-07,1.76,85,rugby sevens,0,0,0, -41041819,Kennedy Goss,CAN,female,1996-08-19,1.73,74,aquatics,0,0,1, -347348758,Kennedy Katende,UGA,male,1985-03-15,1.76,,boxing,0,0,0, -392095745,Kennedy St Pierre,MRI,male,1992-10-23,1.8,,boxing,0,0,0, -907808928,Kent Farrington,USA,male,1980-12-28,1.73,65,equestrian,0,1,0, -936887083,Kenta Kazuno,JPN,male,1985-11-25,1.71,68,badminton,0,0,0, -750688405,Kenta Tokunan,JPN,male,1987-08-17,1.83,83,fencing,0,0,0, -919960658,Kentaro Sato,JPN,male,1994-11-16,1.74,64,athletics,0,0,0, -478863771,Kentin Mahe,FRA,male,1991-05-22,1.86,83,handball,0,1,0, -50571429,Kenya Yasuda,JPN,male,1989-03-29,1.82,77,aquatics,0,0,0, -948018416,Kenza Dahmani Tifahi,ALG,female,1980-11-18,1.64,54,athletics,0,0,0, -206971699,Kenza Dali,FRA,female,1991-07-31,1.65,60,football,0,0,0, -694582399,Kenzo Shirai,JPN,male,1996-08-24,1.62,51,gymnastics,1,0,1, -519543861,Keren Siebner,ISR,female,1990-06-09,1.8,68,aquatics,0,0,0, -976260835,Keri-Anne Payne,GBR,female,1987-12-09,1.77,66,aquatics,0,0,0, -423484325,Kerri Gowler,NZL,female,1993-12-18,1.82,76,rowing,0,0,0, -499209508,Kerri Walsh Jennings,USA,female,1978-08-15,1.88,72,volleyball,0,0,1,"This three-time world champion is married to fellow player Casey Jennings (and a mother of three), the USA's Kerri Walsh Jennings has never lost a game at the Olympics – winning gold at Athens 2004, Beijing 2008 and London 2012 with Misty May." -891867859,Kerron Clement,USA,male,1985-10-31,1.88,86,athletics,1,0,0, -233041375,Kerry Hore,AUS,female,1981-07-03,1.83,74,rowing,0,0,0, -281101041,Kerry O'Flaherty,IRL,female,1981-07-15,1.67,53,athletics,0,0,0, -419463510,Kerry Simmonds,USA,female,1989-04-03,1.83,81,rowing,1,0,0, -897407929,Kersten Thiele,GER,male,1992-09-29,1.79,75,cycling,0,0,0, -199341754,Kerstin Hartmann,GER,female,1988-06-14,1.77,70,rowing,0,0,0, -146173723,Keryn McMaster,AUS,female,1993-09-19,1.69,63,aquatics,0,0,0, -770832062,Keshorn Walcott,TTO,male,1993-04-02,1.83,90,athletics,0,0,1, -416635977,Keston Bledman,TTO,male,1998-03-08,1.8,88,athletics,0,0,0, -232848294,Ketija Birzule,LAT,female,1998-10-30,1.64,60,sailing,0,0,0, -197595753,Keturah Orji,USA,female,1996-03-05,1.66,61,athletics,0,0,0, -833124628,Kevin Alvarez,HON,male,1996-08-03,1.81,76,football,0,0,0, -746715808,Kevin Balanta,COL,male,1997-04-28,1.83,77,football,0,0,0, -623836898,Kevin Borlee,BEL,male,1988-02-22,1.8,67,athletics,0,0,0, -966461542,Kevin Bouly,FRA,male,1981-04-26,1.77,94,weightlifting,0,0,0, -262171881,Kevin Campion,FRA,male,1988-05-23,1.83,63,athletics,0,0,0, -772532077,Kevin Chavez Banda,AUS,male,1992-07-09,1.7,70,aquatics,0,0,0, -905417640,Kevin Cordes,USA,male,1993-08-13,2.21,88,aquatics,1,0,0, -665096571,Kevin Cordon,GUA,male,1986-11-28,1.8,80,badminton,0,0,0, -936447136,Kevin Crovetto,MON,male,1992-06-10,1.83,81,gymnastics,0,0,0, -887138863,Kevin Durant,USA,male,1988-09-29,2.05,104,basketball,1,0,0,"This London 2012 Olympic and 2010 world champion (voted the MVP of the latter competition), won as the USA's small forward, Kevin Durant has also topped the NBA scoring charts four times." -947055286,Kevin Lisch,AUS,male,1986-05-16,1.88,89,basketball,0,0,0, -985840182,Kevin Lopez,HON,male,1996-02-03,1.7,69,football,0,0,0, -631415010,Kevin Lopez,ESP,male,1990-06-12,1.71,56,athletics,0,0,0, -385550989,Kevin Mayer,FRA,male,1992-02-10,1.86,77,athletics,0,1,0, -73691099,Kevin Menaldo,FRA,male,1992-07-12,1.76,66,athletics,0,0,0, -251643521,Kevin Seaward,IRL,male,1983-10-03,1.75,59,athletics,0,0,0, -78313591,Kevin Staut,FRA,male,1980-11-15,1.82,70,equestrian,1,0,0, -958136860,Kevin Tillie,FRA,male,1990-11-02,2,85,volleyball,0,0,0, -30949158,Kevin le Roux,FRA,male,1989-05-11,2.09,98,volleyball,0,0,0, -650099766,Keyuan Shang,CHN,male,1995-02-04,1.83,79,aquatics,0,0,0, -897015482,Khaddi Sagnia,SWE,female,1994-04-20,1.73,64,athletics,0,0,0, -260431373,Khader Ghetrich Baqlah,JOR,male,1998-09-15,1.84,80,aquatics,0,0,0, -107338569,Khadija Krimi,TUN,female,1995-08-18,1.71,57,rowing,0,0,0, -828792898,Khadija Mardi,MAR,female,1991-02-01,1.83,,boxing,0,0,0, -328541816,Khairul Anuar Mohamad,MAS,male,1991-09-22,1.71,75,archery,0,0,0, -460049325,Khairulnizam Mohd Afendy,MAS,male,1993-05-27,1.82,81,sailing,0,0,0, -176645733,Khaled Alkaabi,UAE,male,1985-06-25,1.68,85,shooting,0,0,0, -238249359,Khaled Almudhaf,IOA,male,1978-06-12,1.63,105,shooting,0,0,0, -936049605,Khaled Haj Youssef,TUN,male,1989-01-12,1.89,92,handball,0,0,0, -594297353,Khaled Houcine,TUN,male,1990-07-19,1.87,90,canoe,0,0,0, -659967898,Khalid Assar,EGY,male,1992-12-10,1.98,99,table tennis,0,0,0, -436529232,Khalid El Aabidi,MAR,male,1995-09-14,1.78,81,weightlifting,0,0,0, -999784977,Khalifa St Fort,TTO,female,1998-02-13,1.65,50,athletics,0,0,0, -9175796,Khamica Bingham,CAN,female,1994-06-15,1.6,60,athletics,0,0,0, -182346893,Khasan Khalmurzaev,RUS,male,1993-10-09,1.82,81,judo,1,0,0, -1610209,Khaterinne Medina,COL,female,1992-10-31,1.62,60,rugby sevens,0,0,0, -282117681,Khatuna Narimanidze,GEO,female,1974-02-02,1.75,79,archery,0,0,0, -118156581,Khe Wei Woon,MAS,female,1989-03-18,1.74,63,badminton,0,0,0, -18654335,Kheira Hamraoui,FRA,female,1990-01-13,1.79,69,football,0,0,0, -870781056,Kheta Ram,IND,male,1986-09-20,1.69,53,athletics,0,0,0, -813748404,Khetag Goziumov,AZE,male,1983-04-24,1.8,97,wrestling,0,1,0, -345063300,Khrystyna Stuy,UKR,female,1988-02-03,1.68,60,athletics,0,0,0, -824851938,Khuderbulga Dorjkhand,MGL,male,1992-05-07,1.81,102,wrestling,0,0,0, -953232269,Khushbir Kaur,IND,female,1993-07-09,,,athletics,0,0,0, -285632383,Kia Nurse,CAN,female,1996-02-22,1.82,68,basketball,0,0,0, -841438155,Kiana Eide,USA,female,1998-09-25,1.61,53,gymnastics,0,0,0, -966322568,Kianoush Rostami,IRI,male,1991-07-23,1.77,84,weightlifting,1,0,0, -224527761,Kibwe Johnson,USA,male,1981-07-17,1.88,102,athletics,0,0,0, -355505466,Kieran Behan,IRL,male,1989-04-19,1.63,65,gymnastics,0,0,0, -135963530,Kierra Smith,CAN,female,1994-02-01,1.5,57,aquatics,0,0,0, -414269646,Kierre Beckles,BAR,female,1990-05-21,1.76,61,athletics,0,0,0, -403554973,Kiichi Harada,JPN,male,1972-11-30,1.75,73,equestrian,0,0,0, -795413338,Kiju Park,KOR,female,1990-02-14,1.67,69,hockey,0,0,0, -891148925,Kiki Bertens,NED,female,1991-12-10,1.82,78,tennis,0,0,0, -612003301,Kiko Yokota,JPN,female,1997-05-11,1.61,44,gymnastics,0,0,0, -654132840,Kiley Neushul,USA,female,1993-03-05,1.73,65,aquatics,1,0,0, -650765839,Kilian le Blouch,FRA,male,1989-10-07,1.71,70,judo,0,0,0, -746145303,Kim Amb,SWE,male,1990-07-31,1.8,87,athletics,0,0,0, -146402828,Kim Andersson,SWE,male,1982-08-21,2,105,handball,0,0,0, -434139197,Kim Bui,GER,female,1989-01-20,1.56,49,gymnastics,0,0,0, -245238655,Kim Collins,SKN,male,1976-04-05,1.8,77,athletics,0,0,0, -189393338,Kim Conley,USA,female,1986-03-14,1.61,49,athletics,0,0,0, -266914710,Kim Gaucher,CAN,female,1984-05-07,1.85,72,basketball,0,0,0, -854142388,Kim Mickle,AUS,female,1984-12-28,1.68,70,athletics,0,0,0, -759190706,Kim Polling,NED,female,1991-02-08,1.75,70,judo,0,0,0, -579217144,Kim Tillie,FRA,male,1988-07-15,2.11,105,basketball,0,0,0, -533153330,Kim Tuan Thach,VIE,male,1994-01-15,1.6,56,weightlifting,0,0,0, -20980045,Kimberley Brennan,AUS,female,1985-08-09,1.88,74,rowing,1,0,0, -403279900,Kimberly Buys,BEL,female,1989-04-23,1.87,75,aquatics,0,0,0, -991525559,Kimberly Garcia,PER,female,1993-10-19,1.64,51,athletics,0,0,0, -649635243,Kimberly Hill,USA,female,1989-11-30,1.93,72,volleyball,0,0,1, -904668387,Kimberly Hyacinthe,CAN,female,1989-03-28,1.79,65,athletics,0,0,0, -447699488,Kimberly Rhode,USA,female,1979-07-16,1.63,83,shooting,0,0,1,"With the most medals won in shooting, the USA's Kim Rhode has climbed the podium at each of the past five Olympic Games, in the double trap and skeet – gold at Atlanta 1996, Athens 2004 and London 2012, silver at Beijing 2008 and bronze at Sydney 2000." -195712246,Kimberly Williams,JAM,female,1988-11-03,1.78,62,athletics,0,0,0, -943752318,Kimia Alizadeh Zenoorin,IRI,female,1998-07-10,1.85,62,taekwondo,0,0,1, -145845453,Kimihiko Imamura,JPN,male,1984-02-03,1.8,78,sailing,0,0,0, -897050880,Kimiko Raheem,SRI,female,1999-01-28,1.65,51,aquatics,0,0,0, -960777579,Kineke Alexander,VIN,female,1986-02-21,1.78,65,athletics,0,0,0, -637755383,King Lok Cheung,HKG,male,1991-02-08,1.72,77,cycling,0,0,0, -688432611,Kinga Kolosinska,POL,female,1990-06-02,1.79,67,volleyball,0,0,0, -240927532,Kingsley Madu,NGR,male,1995-12-12,1.71,,football,0,0,1, -247889491,Kiplangat Sang,KEN,male,1981-04-14,1.75,90,judo,0,0,0, -656286014,Kira Stepanova,RUS,female,1993-11-12,,,canoe,0,0,0, -528363849,Kira Toussaint,NED,female,1994-05-22,1.74,72,aquatics,0,0,0, -234124358,Kira Walkenhorst,GER,female,1990-11-18,1.85,75,volleyball,1,0,0, -889456958,Kiradech Aphibarnrat,THA,male,1989-07-23,1.72,106,golf,0,0,0, -106579503,Kirani James,GRN,male,1992-09-01,,66,athletics,0,1,0, -288650137,Kirill Denisov,RUS,male,1988-01-25,1.82,90,judo,0,0,0, -785590368,Kirill Gerassimenko,KAZ,male,1996-12-18,1.75,64,table tennis,0,0,0, -2938886,Kirill Grigoryan,RUS,male,1992-04-02,1.79,88,shooting,0,0,1, -228483818,Kirill Lyapunov,RUS,male,1986-03-24,1.8,81,canoe,0,0,0, -388644612,Kirill Prigoda,RUS,male,1995-12-29,1.92,88,aquatics,0,0,0, -412500956,Kirk Shimmins,IRL,male,1994-06-01,1.75,68,hockey,0,0,0, -580208102,Kirsten Flipkens,BEL,female,1986-01-10,1.65,59,tennis,0,0,0, -807032440,Kirsten McCANN,RSA,female,1988-08-25,1.7,57,rowing,0,0,0, -248407953,Kirsten Pearce,NZL,female,1991-04-10,1.62,58,hockey,0,0,0, -704187599,Kirsten Sweetland,CAN,female,1988-09-24,1.63,49,triathlon,0,0,0, -907795948,Kirsten Wild,NED,female,1982-10-15,1.78,78,cycling,0,0,0, -917790149,Kirsti Lay,CAN,female,1988-04-07,1.73,65,cycling,0,0,1, -857038290,Kirstie Elaine Alora,PHI,female,1989-11-25,1.73,67,taekwondo,0,0,0, -801571682,Kirstin Dwyer,AUS,female,1989-03-15,1.73,66,hockey,0,0,0, -134565248,Kirsty Gilmour,GBR,female,1993-09-21,1.68,,badminton,0,0,0, -825202898,Kirsty Leigh Coventry,ZIM,female,1983-09-16,1.76,64,aquatics,0,0,0, -52180375,Kirsty Yallop,NZL,female,1986-11-04,1.65,58,football,0,0,0, -279849374,Kit-Ching Yiu,HKG,female,1988-02-20,1.55,45,athletics,0,0,0, -51995447,Kitione Taliga,FIJ,male,1993-04-21,1.86,87,rugby sevens,1,0,0, -449603562,Kitty King,GBR,female,1982-08-10,1.58,60,equestrian,0,0,0, -159029734,Kitty van Male,NED,female,1988-06-05,1.96,63,hockey,0,1,0, -308690997,Kivilcim Kaya Salman,TUR,female,1992-03-27,1.66,85,athletics,0,0,0, -187677131,Kjetil Borch,NOR,male,1990-02-14,,,rowing,0,0,1, -759388006,Klara Spilkova,CZE,female,1994-12-15,1.68,53,golf,0,0,0, -686436937,Klaudia Bres,POL,female,1994-06-22,1.58,52,shooting,0,0,0, -184949058,Klaudia Jans-Ignacik,POL,female,1984-09-24,,,tennis,0,0,0, -834172250,Klaudia Konopko,POL,female,1992-02-21,1.7,57,athletics,0,0,0, -560449526,Klaus Lange,ARG,male,1995-01-13,1.82,81,sailing,0,0,0, -748463150,Klay Thompson,USA,male,1990-02-08,2,97,basketball,1,0,0, -675747408,Kleber da Silva Ramos,BRA,male,1985-08-24,1.67,65,cycling,0,0,0, -952862687,Kleberson Davide,BRA,male,1985-07-20,1.75,69,athletics,0,0,0, -189267095,Kodo Nakano,PHI,male,1993-03-08,,81,judo,0,0,0, -332048858,Koen Naert,BEL,male,1989-09-03,1.82,66,athletics,0,0,0, -608163038,Kohei Uchima,JPN,male,1988-11-08,1.7,60,cycling,0,0,0, -199243053,Kohei Uchimura,JPN,male,1989-01-02,1.62,52,gymnastics,2,0,0,"The biggest name in artistic gymnastics today, Japan's Kohei Uchimura is a six-time world championship winner in the general individual – where he is also the current Olympic champion. He has another four silvers and 19 world championship medals." -86038956,Kohei Yamamoto,JPN,male,1985-08-20,1.82,69,cycling,0,0,0, -51425019,Kohei Yamashita,JPN,male,1994-09-06,1.79,69,athletics,0,0,0, -656874306,Koichiro Morioka,JPN,male,1985-04-02,1.85,69,athletics,0,0,0, -337056974,Koji Takei,JPN,male,1990-07-30,1.76,78,aquatics,0,0,0, -497335334,Koji Yamamuro,JPN,male,1989-01-17,1.59,58,gymnastics,1,0,0, -196041422,Koki Niwa,JPN,male,1994-10-10,1.62,51,table tennis,0,1,0, -355065846,Koki Saito,JPN,male,1989-09-16,1.76,65,equestrian,0,0,0, -682697811,Komeil Nemat Ghasemi,IRI,male,1988-02-27,1.86,115,wrestling,0,1,0, -974731965,Komronshokh Ustopiriyon,TJK,male,1993-01-07,1.82,90,judo,0,0,0, -514884067,Konomi Kai,JPN,female,1993-07-10,1.53,50,athletics,0,0,0, -386847658,Konrad Bukowiecki,POL,male,1997-03-17,1.91,138,athletics,0,0,0, -40414487,Konrad Czerniak,POL,male,1989-07-11,1.95,87,aquatics,0,0,0, -682481814,Konstadinos Baniotis,GRE,male,1986-11-06,2.01,80,athletics,0,0,0, -180022140,Konstadinos Douvalidis,GRE,male,1987-03-10,1.81,78,athletics,0,0,0, -996631093,Konstadinos Filippidis,GRE,male,1986-11-26,1.87,74,athletics,0,0,0, -725033682,Konstantin Semenov,RUS,male,1989-06-09,2.1,101,volleyball,0,0,0, -532161398,Konstantinos Flegkas,GRE,male,1988-07-17,1.92,88,aquatics,0,0,0, -808549144,Konstantinos Genidounias,GRE,male,1993-05-03,1.83,87,aquatics,0,0,0, -578912084,Konstantinos Mourikis,GRE,male,1988-07-11,1.97,109,aquatics,0,0,0, -419860088,Konstanze Klosterhalfen,GER,female,1997-02-18,1.74,48,athletics,0,0,0, -288100090,Korey Jarvis,CAN,male,1986-10-04,1.88,115,wrestling,0,0,0, -409930037,Kosovare Asllani,SWE,female,1989-07-29,1.66,54,football,0,1,0, -940864440,Kostyantyn Bakun,RUS,male,1985-03-15,2.04,96,volleyball,0,0,0, -794043609,Kosuke Hagino,JPN,male,1994-08-15,1.77,71,aquatics,1,1,1, -791705872,Kosuke Nakamura,JPN,male,1995-02-27,1.84,72,football,0,0,0, -18488153,Kota Murayama,JPN,male,1993-02-23,1.74,54,athletics,0,0,0, -422424765,Kothajit Khadangbam,IND,male,1992-08-17,1.7,63,hockey,0,0,0, -791359360,Kotoki Zayasu,JPN,female,1990-01-11,1.59,57,volleyball,0,0,0, -892925415,Kotuku Ngawati,AUS,female,1994-06-16,1.65,60,aquatics,0,0,0, -759873461,Koutar Boulaid,MAR,female,1989-10-10,1.59,45,athletics,0,0,0, -348937822,Kresimir Kozina,CRO,male,1990-06-25,1.97,105,handball,0,0,0, -461399217,Krishan Vikas,IND,male,1992-02-10,1.77,,boxing,0,0,0, -936707475,Krista Duchene,CAN,female,1977-01-09,1.67,54,athletics,0,0,0, -321162229,Kristel Kobrich,CHI,female,1985-08-09,1.7,60,aquatics,0,0,0, -449134352,Kristel Vourna,GRE,female,1992-02-11,1.74,61,aquatics,0,0,0, -737728576,Kristen Shaldybin,USA,female,1997-08-08,1.76,56,gymnastics,0,0,0, -34438087,Kristi Castlin,USA,female,1988-07-07,1.71,60,athletics,0,0,1, -7457125,Kristian Blummenfelt,NOR,male,1994-02-14,,,triathlon,0,0,0, -539326422,Kristian Fris,SRB,male,1984-04-21,1.7,59,wrestling,0,0,0, -582900403,Kristian Gkolomeev,GRE,male,1993-07-04,2.02,95,aquatics,0,0,0, -512973536,Kristian Ipsen,USA,male,1992-10-20,1.71,72,aquatics,0,0,0, -917018494,Kristian Karlsson,SWE,male,1991-08-06,1.83,82,table tennis,0,0,0, -978961185,Kristian Ruth,NOR,male,1985-07-23,,,sailing,0,0,0, -407221611,Kristian Thomas,GBR,male,1989-02-14,1.8,78,gymnastics,0,0,0, -368830372,Kristian Vasilev,BUL,male,1991-11-18,1.97,97,rowing,0,0,0, -213581372,Kristiina Makela,FIN,female,1992-11-20,1.85,68,athletics,0,0,0, -884195361,Kristijan Durasek,CRO,male,1987-07-26,1.7,57,cycling,0,0,0, -791417527,Kristin Armstrong,USA,female,1973-08-11,1.73,58,cycling,1,0,0, -664462472,Kristin Gierisch,GER,female,1990-08-20,1.78,61,athletics,0,0,0, -981663977,Kristina Broring-Sprehe,GER,female,1986-10-28,1.68,54,equestrian,1,0,1, -254900911,Kristina Cook,GBR,female,1970-08-31,1.78,68,equestrian,0,0,0, -654847993,Kristina Gavnholt,CZE,female,1988-09-12,1.77,73,badminton,0,0,0, -66901895,Kristina Ilinykh,RUS,female,1994-11-27,1.73,56,aquatics,0,0,0, -656658323,Kristina Kuusk,EST,female,1985-11-16,1.8,74,fencing,0,0,0, -819640840,Kristina Mladenovic,FRA,female,1993-05-14,1.84,66,tennis,0,0,0, -312030242,Kristina Pronzhenko,TJK,female,1988-12-10,1.72,60,athletics,0,0,0, -928141398,Kristina Reynolds,GER,female,1984-02-18,1.81,71,hockey,0,0,1, -992483692,Kristina Valjas,CAN,female,1987-06-02,1.88,68,volleyball,0,0,0, -108583641,Kristina Vogel,GER,female,1990-11-10,1.6,66,cycling,1,0,1, -763893829,Kristine Esebua,GEO,female,1985-03-19,1.62,69,archery,0,0,0, -576779994,Kristof Rasovszky,HUN,male,1997-03-27,1.9,84,aquatics,0,0,0, -957396077,Kristoffer Brun,NOR,male,1988-04-07,,,rowing,0,0,1, -34412448,Kristy Oatley,AUS,female,1978-07-18,1.7,56,equestrian,0,0,0, -353904175,Kristyna Fleissnerova,CZE,female,1992-08-18,1.73,64,rowing,0,0,0, -11420262,Krisztian Manhercz,HUN,male,1997-02-06,1.91,91,aquatics,0,0,0, -238991769,Krisztian Pars,HUN,male,1982-02-18,1.88,116,athletics,0,0,0, -123300327,Krisztian Takacs,HUN,male,1985-12-30,1.86,84,aquatics,0,0,0, -667329045,Krisztian Toth,HUN,male,1994-05-01,1.75,93,judo,0,0,0, -540029142,Krisztina Fazekas-Zur,HUN,female,1980-08-01,1.72,64,canoe,1,0,0, -401589716,Krisztina Garda,HUN,female,1994-07-16,1.7,76,aquatics,0,0,0, -211842063,Krisztina Papp,HUN,female,1982-12-17,1.73,53,athletics,0,0,0, -267615621,Krunoslav Simon,CRO,male,1985-06-24,1.97,100,basketball,0,0,0, -984489399,Krystian Aranowski,POL,male,1988-04-11,1.98,102,rowing,0,0,0, -792210881,Krystian Zalewski,POL,male,1989-04-11,1.85,68,athletics,0,0,0, -890413525,Krzysztof Lijewski,POL,male,1983-07-07,1.99,99,handball,0,0,0, -840441745,Krzysztof Maksel,POL,male,1991-07-04,1.81,80,cycling,0,0,0, -985218732,Ksenia Chibisova,RUS,female,1988-07-13,1.86,78,judo,0,0,0, -500616803,Ksenia Perova,RUS,female,1989-02-08,1.69,77,archery,0,1,0, -117683465,Ksenija Balta,EST,female,1986-11-01,1.69,51,athletics,0,0,0, -292420209,Kseniya Moustafaeva,FRA,female,1995-06-08,1.63,50,gymnastics,0,0,0, -401281343,Kseniya Pantelyeyeva,UKR,female,1994-05-11,1.68,75,fencing,0,0,0, -664487894,Kseniya Sydorenko,UKR,female,1986-07-02,1.78,57,aquatics,0,0,0, -81024511,Kudakwashe Basopo,ZIM,female,1990-07-18,1.62,60,football,0,0,0, -370696968,Kuk Hyang Kim,PRK,female,1993-04-20,1.7,100,weightlifting,0,1,0, -703248016,Kuk Hyang Kim,PRK,female,1999-04-04,1.49,39,aquatics,0,0,0, -358078214,Kuk Hyon Hong,PRK,male,1990-07-01,1.79,73,judo,0,0,0, -856229639,Kukyoung Kim,KOR,male,1991-04-19,1.76,73,athletics,0,0,0, -576883439,Kum-Ok Kim,PRK,female,1988-12-09,1.61,48,athletics,0,0,0, -405931977,Kumari Babita,IND,female,1989-11-20,1.65,52,wrestling,0,0,0, -179174658,Kumiko Okada,JPN,female,1991-10-17,1.58,47,athletics,0,0,0, -434716093,Kun-Pi Yang,TPE,male,1998-08-11,1.86,107,shooting,0,0,0, -331317766,Kunathip Yea-On,THA,male,1995-08-18,1.93,148,judo,0,0,0, -340840336,Kunhu Muhammed Puthanpurakkal,IND,male,1987-03-05,1.72,70,athletics,0,0,0, -13588611,Kuniaki Takizaki,CAM,male,1977-08-08,1.51,55,athletics,0,0,0, -886640811,Kurt Couto,MOZ,male,1985-05-14,1.8,74,athletics,0,0,0, -574563035,Kurt Felix,GRN,male,1988-07-04,1.82,76,athletics,0,0,0, -146480210,Kurtis Marschall,AUS,male,1997-04-25,1.87,78,athletics,0,0,0, -156130854,Kurumi Yoshida,JPN,female,1991-12-01,1.67,59,aquatics,0,0,1, -824038451,Kwagga Smith,RSA,male,1993-06-11,1.8,90,rugby sevens,0,0,1, -80433240,Kwan Kit Ho,HKG,male,1997-04-20,1.78,66,table tennis,0,0,0, -718483245,Kwandakwensizwa Mngonyama,RSA,male,1993-09-25,1.84,79,football,0,0,0, -152318195,Kyah Simon,AUS,female,1991-06-25,1.64,61,football,0,0,0, -887479109,Kyerim Lee,KOR,female,1990-08-31,1.58,50,shooting,0,0,0, -676973733,Kyle Brown,RSA,male,1987-02-06,1.82,92,rugby sevens,0,0,1, -885688636,Kyle Chalmers,AUS,male,1998-06-25,1.93,90,aquatics,1,0,2, -341835179,Kyle Clemons,USA,male,1990-12-27,1.81,72,athletics,1,0,0, -245877079,Kyle Dodd,RSA,male,1994-02-11,1.78,80,cycling,0,0,0, -897784869,Kyle Edmund,GBR,male,1995-01-08,1.89,81,tennis,0,0,0, -599766410,Kyle Evans,GBR,male,1993-09-26,1.8,81,cycling,0,0,0, -334173080,Kyle Frederick Snyder,USA,male,1995-11-20,1.81,102,wrestling,1,0,0, -244160480,Kyle Good,IRL,male,1991-12-10,1.83,88,hockey,0,0,0, -141935257,Kyle Greaux,TTO,male,1988-04-26,,,athletics,0,0,0, -57806527,Kyle Lowry,USA,male,1986-03-25,1.83,93,basketball,1,0,0, -367373878,Kyle Reyes,CAN,male,1993-10-10,1.83,99,judo,0,0,0, -188768661,Kyle Sean Micallef,MLT,male,1987-01-08,1.77,85,weightlifting,0,0,0, -78377242,Kyle Stolk,NED,male,1996-06-28,1.86,84,aquatics,0,0,0, -714395928,Kylie Masse,CAN,female,1996-01-18,1.7,61,aquatics,0,0,1, -107792319,Kylie Rei Dickson,BLR,female,1999-02-12,1.6,50,gymnastics,0,0,0, -654626226,Kynan Chenai,IND,male,1991-01-29,2,85,shooting,0,0,0, -997852630,Kyong Il Yang,PRK,male,1989-08-07,1.58,57,wrestling,0,0,0, -263910459,Kyong Sol,PRK,female,1990-06-08,1.63,78,judo,0,0,0, -417582763,Kyoungdoo Park,KOR,male,1984-08-03,1.77,77,fencing,0,0,0, -594770931,Kyriakos Ioannou,CYP,male,1984-07-26,1.96,74,athletics,0,0,0, -944821832,Kyriakos Pontikeas,GRE,male,1991-05-09,1.92,84,aquatics,0,0,0, -212656744,Kyrie Irving,USA,male,1992-03-23,1.9,87,basketball,1,0,0, -797859111,Kyubaek Choi,KOR,male,1994-01-23,1.88,77,football,0,0,0, -136817398,Kyung Eun Jung,KOR,female,1990-03-20,1.72,59,badminton,0,0,1, -461106431,Kyunghee Lim,KOR,female,1982-11-16,1.63,43,athletics,0,0,0, -819912962,Kyuwoong Choi,KOR,male,1990-05-28,1.81,75,aquatics,0,0,0, -42152477,L.j. van Zyl,RSA,male,1985-07-20,1.82,79,athletics,0,0,0, -397906990,Lachlan Tame,AUS,male,1988-11-14,1.76,80,canoe,0,0,1, -202060603,Ladislav Skantar,SVK,male,1983-02-11,1.89,80,canoe,1,0,0, -429703737,Lady Andrade,COL,female,1992-01-10,1.64,60,football,0,0,0, -380147709,Lady Ruano,COL,female,1981-03-05,1.57,52,table tennis,0,0,0, -788128970,Laenly Phoutthavong,LAO,female,1996-06-04,1.69,55,athletics,0,0,0, -145889655,Laerke Buhl-Hansen,DEN,female,1992-03-30,1.67,56,sailing,0,0,0, -713520170,Laetisha Scanlan,AUS,female,1990-04-13,1.63,61,shooting,0,0,0, -796815573,Laetitia Beck,ISR,female,1992-02-05,1.75,61,golf,0,0,0, -1610593,Laetitia Crescence Moma Bassoko,CMR,female,1993-10-09,1.84,80,volleyball,0,0,0, -556419347,Laetitia Kamba,FRA,female,1987-01-10,1.87,78,basketball,0,0,0, -624409158,Laetitia Payet,FRA,female,1985-10-02,1.5,48,judo,0,0,0, -283796525,Laetitia Philippe,FRA,female,1991-04-30,1.73,61,football,0,0,0, -451101103,Laia Palau,ESP,female,1979-09-10,1.81,69,basketball,0,1,0, -463504304,Lais Nunes de Oliveira,BRA,female,1992-11-03,1.65,65,wrestling,0,0,0, -707312914,Lala Wane,SEN,female,1989-07-15,1.79,78,basketball,0,0,0, -598281407,Lalit Mathur,IND,male,1994-12-18,,,athletics,0,0,0, -340454427,Lalita Shivaji Babar,IND,female,1989-06-02,1.66,50,athletics,0,0,0, -54471403,Lalita Yauhleuskaya,AUS,female,1963-12-31,1.58,64,shooting,0,0,0, -316330881,Lalonde Gordon,TTO,male,1988-11-25,1.79,83,athletics,0,0,0, -486290067,Lanece Clarke,BAH,female,1987-11-04,,,athletics,0,0,0, -307336565,Lani Belcher,GBR,female,1989-06-10,1.69,65,canoe,0,0,0, -789007378,Lani Cabrera,BAR,female,1993-04-22,1.75,66,aquatics,0,0,0, -688222254,Lanni Marchant,CAN,female,1984-04-11,1.55,48,athletics,0,0,0, -165918129,Lara Butler,CAY,female,1994-10-02,1.72,60,aquatics,0,0,0, -400916964,Lara Gonzalez,ESP,female,1992-02-22,1.84,74,handball,0,0,0, -329123221,Lara Grangeon,FRA,female,1991-09-21,1.73,60,aquatics,0,0,0, -303756997,Lara Griffith,GBR,female,1988-11-14,1.76,62,equestrian,0,0,0, -714521221,Lara Hoffmann,GER,female,1991-03-25,1.73,68,athletics,0,0,0, -268747617,Lara Sanders,TUR,female,1986-09-11,1.91,77,basketball,0,0,0, -485160577,Lara Teixeira,BRA,female,1987-11-26,1.67,59,aquatics,0,0,0, -251433937,Lara Vadlau,AUT,female,1994-03-29,1.65,56,sailing,0,0,0, -322415539,Laraiba Seibou,BEN,female,2000-12-06,1.73,63,aquatics,0,0,0, -16230111,Larbi Bourrada,ALG,male,1988-05-10,1.88,88,athletics,0,0,0, -609688727,Larisa Ceric,BIH,female,1991-01-26,1.76,110,judo,0,0,0, -838253467,Larissa Araujo,BRA,female,1992-07-01,1.67,62,handball,0,0,0, -842092433,Larissa Crummer,AUS,female,1996-01-10,1.78,70,football,0,0,0, -564844336,Larissa Franca Maestrini,BRA,female,1982-04-14,1.74,70,volleyball,0,0,0,"Considered the best setter in the world, Brazil's Larissa won bronze at the London 2012 Olympic Games. She is also the holder of one world championship and two Pan American golds, as well as seven beach volleyball world circuit titles." -923732002,Larissa Oliveira,BRA,female,1993-02-16,1.69,57,aquatics,0,0,0, -768025423,Larrissa Miller,AUS,female,1992-07-12,1.59,50,gymnastics,0,0,0, -715498421,Lars Bender,GER,male,1989-04-27,1.84,77,football,0,1,0, -564584099,Lars Fluggen,GER,male,1990-05-24,1.92,83,volleyball,0,0,0, -791318566,Lars Forster,SUI,male,1993-08-01,1.77,68,cycling,0,0,0, -857905937,Lars Petter Nordhaug,NOR,male,1984-05-14,,,cycling,0,0,0, -639300643,Lars Wichert,GER,male,1986-11-28,1.86,73,rowing,0,0,0, -850256654,Lasha Shavdatuashvili,GEO,male,1992-01-31,1.7,75,judo,0,0,1, -592699944,Lasha Talakhadze,GEO,male,1993-10-02,1.97,157,weightlifting,1,0,0, -404444174,Lasha Torgvaidze,GEO,male,1993-05-26,1.84,73,athletics,0,0,0, -920627938,Lashawn Merritt,USA,male,1986-06-27,1.91,86,athletics,1,0,1, -798007695,Lasma Liepa,TUR,female,1988-07-04,1.8,77,canoe,0,0,0, -345588226,Lasse Norman Hansen,DEN,male,1992-02-11,1.8,73,cycling,0,0,2, -384124391,Lasse Svan,DEN,male,1983-08-31,1.85,85,handball,1,0,0, -533708221,Lasse Vibe,DEN,male,1987-02-22,1.84,75,football,0,0,0, -327942821,Laszlo Cseh,HUN,male,1985-12-03,1.88,84,aquatics,0,1,0, -27973136,Laszlo Csoknyai,HUN,male,1987-10-25,1.72,83,judo,0,0,0, -932218677,Latario Collie-Minns,BAH,male,1994-03-10,1.73,64,athletics,0,0,0, -486930749,Laura Alleway,AUS,female,1989-11-28,1.78,74,football,0,0,0, -70272751,Laura Asadauskaite,LTU,female,1984-02-28,1.6,49,modern pentathlon,0,0,0,"Married to Andrejus Zadneprovskis, a two-time Olympic medallist in the modern pentathlon, Laura Asadauskaitė won gold in this event at London 2012. This Lithuanian athlete also holds two world titles – an individual (2013) and one mixed relay (2014)." -151499815,Laura Auge,FRA,female,1992-01-17,1.75,60,aquatics,0,0,0, -247206821,Laura Benkarth,GER,female,1992-10-14,1.73,68,football,1,0,0, -529217667,Laura Brown,CAN,female,1986-11-27,1.67,61,cycling,0,0,1, -284937844,Laura Chiper,ROU,female,1989-08-21,1.73,65,handball,0,0,0, -456601968,Laura Dijkema,NED,female,1990-02-18,1.84,70,volleyball,0,0,0, -880019885,Laura Ester Ramos,ESP,female,1990-01-22,1.7,58,aquatics,0,0,0, -652201714,Laura Gil,ESP,female,1992-04-24,1.91,78,basketball,0,1,0, -996823500,Laura Giombini,ITA,female,1989-01-04,1.83,,volleyball,0,0,0, -69085100,Laura Glauser,FRA,female,1993-08-20,1.78,65,handball,0,1,0, -829875287,Laura Gomez,ESP,female,1984-04-19,1.6,52,judo,0,0,0, -768401050,Laura Gonzalez,COL,female,1993-03-08,1.61,61,rugby sevens,0,0,0, -225614709,Laura Graves,USA,female,1987-07-22,1.73,54,equestrian,0,0,1, -50773758,Laura Hodges,AUS,female,1983-12-13,1.91,78,basketball,0,0,0, -77033753,Laura Ikauniece-Admidina,LAT,female,1992-05-31,1.79,63,athletics,0,0,0, -774958820,Laura Kraut,USA,female,1965-11-14,1.71,56,equestrian,0,0,0, -940578018,Laura Lindemann,GER,female,1996-06-26,1.68,57,triathlon,0,0,0, -148490223,Laura Lopez Ventosa,ESP,female,1988-01-13,1.71,65,aquatics,0,0,0, -363628190,Laura Ludwig,GER,female,1986-01-13,1.81,70,volleyball,1,0,0, -360874773,Laura Marino,FRA,female,1993-07-02,1.68,55,aquatics,0,0,0, -901305776,Laura Milani,ITA,female,1984-09-30,1.68,57,rowing,0,0,0, -624808656,Laura Muir,GBR,female,1993-05-09,1.61,49,athletics,0,0,0, -468145639,Laura Muller,GER,female,1995-12-11,1.72,58,athletics,0,0,0, -612731499,Laura Nicholls,ESP,female,1989-02-26,1.9,90,basketball,0,1,0, -837136545,Laura Nunnink,NED,female,1995-01-26,1.72,64,hockey,0,0,0, -979004062,Laura Nurmsalu,EST,female,1994-06-01,1.7,70,archery,0,0,0, -381041222,Laura Oprea,ROU,female,1994-02-19,1.86,75,rowing,0,0,1, -278075426,Laura Quevedo,ESP,female,1996-04-15,1.85,74,basketball,0,1,0, -885866639,Laura Salles Lopez,AND,female,1986-02-15,1.69,63,judo,0,0,0, -151961559,Laura Sarosi,HUN,female,1992-11-11,1.67,57,badminton,0,0,0, -949858669,Laura Siegemund,GER,female,1988-03-04,1.68,62,tennis,0,0,0, -250953403,Laura Smulders,NED,female,1993-12-09,1.7,73,cycling,0,0,0, -603343722,Laura Teani,ITA,female,1991-03-13,1.75,75,aquatics,0,1,0, -371337915,Laura Trott,GBR,female,1992-04-24,1.64,56,cycling,2,0,0, -192919301,Laura Unsworth,GBR,female,1988-03-08,1.52,55,hockey,1,0,0, -528746135,Laura Vargas Koch,GER,female,1990-06-29,1.73,70,judo,0,0,1, -776443567,Laura Waem,BEL,female,1997-08-05,1.6,54,gymnastics,0,0,0, -70958554,Laura Weightman,GBR,female,1991-07-01,1.72,56,athletics,0,0,0, -825506439,Laura Whittle,GBR,female,1985-06-27,1.75,59,athletics,0,0,0, -259253637,Laura Zeng,USA,female,1999-10-14,1.61,43,gymnastics,0,0,0, -435786461,Laura de Witte,NED,female,1995-08-07,1.73,61,athletics,0,0,0, -264136986,Laura van der Heijden,NED,female,1990-06-27,1.72,68,handball,0,0,0, -612897839,Lauren Billys,PUR,female,1988-05-14,1.61,59,equestrian,0,0,0, -829889004,Lauren Boyle,NZL,female,1987-12-14,1.83,67,aquatics,0,0,0, -792471719,Lauren Crandall,USA,female,1985-03-17,1.61,57,hockey,0,0,0, -695489909,Lauren Doyle,USA,female,1991-02-23,1.68,68,rugby sevens,0,0,0, -208831332,Lauren Ellis,NZL,female,1989-04-19,1.66,64,cycling,0,0,0, -933903933,Lauren Fendrick,USA,female,1982-03-20,1.88,75,volleyball,0,0,0, -766991740,Lauren Hernandez,USA,female,2000-06-09,1.53,48,gymnastics,1,1,0, -583498432,Lauren Kieffer,USA,female,1987-06-06,1.78,68,equestrian,0,0,0, -88108486,Lauren Rembi,FRA,female,1992-03-09,1.78,60,fencing,0,0,0, -766647760,Lauren Reynolds,AUS,female,1991-06-25,1.76,69,cycling,0,0,0, -169582119,Lauren Schmetterling,USA,female,1988-08-03,1.81,77,rowing,1,0,0, -272927492,Lauren Smith,GBR,female,1991-09-26,1.7,,badminton,0,0,0, -981950752,Lauren Wells,AUS,female,1988-08-03,1.78,66,athletics,0,0,0, -805070729,Lauren Wilkinson,CAN,female,1989-10-17,1.8,75,rowing,0,0,0, -638896430,Laurence Baldauff,AUT,female,1974-11-19,1.64,57,archery,0,0,0, -542188232,Laurence Brize,FRA,female,1976-07-12,1.58,55,shooting,0,0,0, -874551869,Laurence Halsted,GBR,male,1984-05-22,1.85,85,fencing,0,0,0, -935729210,Laurens de Plus,BEL,male,1995-09-04,1.88,67,cycling,0,0,0, -940301095,Laurent Carnol,LUX,male,1989-10-17,1.87,82,aquatics,0,0,0, -286702221,Laurent Couhet,BRA,male,1994-07-12,1.71,75,rugby sevens,0,0,0, -821849198,Laurent Jr. Clayton,ISV,male,1990-07-18,,,boxing,0,0,0, -410803236,Laurie Berthon,FRA,female,1991-08-26,1.69,69,cycling,0,0,0, -937639115,Laurien Leurink,NED,female,1994-11-13,1.73,67,hockey,0,1,0, -256435241,Laurine van Riessen,NED,female,1987-08-10,1.67,63,cycling,0,0,0, -822053837,Laurisa Landre,FRA,female,1985-10-27,1.74,67,handball,0,1,0, -110156979,Lauritz Schoof,GER,male,1990-10-07,1.95,98,rowing,1,0,0, -438898270,Lautaro Giannetti,ARG,male,1993-11-13,1.75,80,football,0,0,0, -408272109,Lavenia Tinai,FIJ,female,1990-09-07,1.65,57,rugby sevens,0,0,0, -6350689,Laverne Jones-Ferrette,ISV,female,1981-09-16,1.73,68,athletics,0,0,0, -735071398,Lawrence Brittain,RSA,male,1990-11-09,1.87,94,rowing,0,1,0, -680095587,Lawrence Clarke,GBR,male,1990-03-12,1.87,77,athletics,0,0,0, -295372543,Lawrence Fanous,JOR,male,1985-08-27,1.7,61,triathlon,0,0,0, -523134751,Lawrence Okolie,GBR,male,1992-12-16,1.95,,boxing,0,0,0, -29990303,Laxmirani Majhi,IND,female,1989-01-26,1.61,56,archery,0,0,0, -205316686,Lazaro Jorge Alvarez,CUB,male,1991-01-28,1.73,,boxing,0,0,1, -801084506,Lazaro Martinez,CUB,male,1997-11-03,1.91,83,athletics,0,0,0, -129629128,Lea Davison,USA,female,1983-05-19,1.68,55,cycling,0,0,0, -806871935,Lea Jamelot,FRA,female,1992-11-28,1.68,65,canoe,0,0,0, -909792265,Lea Sprunger,SUI,female,1990-03-05,1.83,69,athletics,0,0,0, -990477427,Lea Yanitsas,AUS,female,1989-03-15,1.73,77,aquatics,0,0,0, -49883014,Leah Kirchmann,CAN,female,1990-06-30,1.67,59,cycling,0,0,0, -275124572,Leah Neale,AUS,female,1995-08-01,1.73,77,aquatics,0,1,0, -436743075,Leah Nugent,JAM,female,1992-11-23,1.73,66,athletics,0,0,0, -735079950,Leah Smith,USA,female,1995-04-19,1.76,67,aquatics,1,0,1, -24067332,Leander Paes,IND,male,1973-06-17,1.75,82,tennis,0,0,0, -516387036,Leandra Smeda,RSA,female,1989-07-22,1.65,55,football,0,0,0, -793474789,Leandre Bouchard,CAN,male,1992-10-20,1.93,81,cycling,0,0,0, -925700994,Leandro Barbosa,BRA,male,1982-11-28,1.94,97,basketball,0,0,0, -495484356,Leandro Blanc,ARG,male,1993-05-02,1.65,,boxing,0,0,0, -737168697,Leandro Silva,POR,male,1994-05-04,1.8,70,football,0,0,0, -964889059,Leandro Vega,ARG,male,1996-05-27,1.66,70,football,0,0,0, -121652442,Leandro Zamora,CUB,male,1996-03-11,1.86,72,athletics,0,0,0, -969409512,Leanne Choo,AUS,female,1991-06-05,1.67,58,badminton,0,0,0, -327424646,Lebenya Nkoka,LES,male,1982-10-19,,,athletics,0,0,0, -262078438,Lebo Mothiba,RSA,male,1996-01-28,1.81,69,football,0,0,0, -895052770,Lebogang Shange,RSA,male,1990-08-01,1.6,56,athletics,0,0,0, -797864785,Lebohang Ramalepe,RSA,female,1991-12-03,1.55,48,football,0,0,0, -785631417,Lee Kiefer,USA,female,1994-06-15,1.63,48,fencing,0,0,0, -277445751,Lee Parkhill,CAN,male,1988-11-22,1.81,82,sailing,0,0,0, -101248331,Lee-Ann Persse,RSA,female,1988-11-20,1.81,74,rowing,0,0,0, -603020546,Leevan Sands,BAH,male,1981-08-16,1.91,82,athletics,0,0,0, -804034599,Lei Gao,CHN,male,1992-01-02,1.7,64,gymnastics,0,0,1,"By overcoming his compatriot (and current Olympic champion) Dong Dong, China's Gao Lei won the world individual general trampoline gymnastics title in 2015. He was also world champion as part of the Chinese team in 2013." -101911346,Lei Gong,CHN,male,1983-03-26,1.85,88,sailing,0,0,0, -512537797,Lei Kou,UKR,male,1987-11-20,1.76,74,table tennis,0,0,0, -988926338,Leia da Silva Nicolosi,BRA,female,1985-03-01,1.69,58,volleyball,0,0,0, -749520759,Leicy Santos,COL,female,1996-05-16,1.54,56,football,0,0,0, -886789693,Leidy Asprilla,COL,female,1997-04-18,1.58,57,football,0,0,0, -772518490,Leidy Yessenia Solis Arboleda,COL,female,1990-02-17,1.68,69,weightlifting,0,0,0, -381090123,Leidys Brito,VEN,female,1984-07-05,1.69,52,archery,0,0,0, -30611869,Leila Abdelmoez,EGY,female,1996-09-30,1.6,46,aquatics,0,0,0, -122417468,Leila Luik,EST,female,1985-10-14,1.65,48,athletics,0,0,0, -715708025,Leilani Mitchell,AUS,female,1985-06-15,1.65,60,basketball,0,0,0, -308992513,Leinier Eunice Pero,CUB,male,1992-11-24,1.92,,boxing,0,0,0, -746238944,Lely Berlitt Burgos Ortiz,PUR,female,1985-06-06,1.53,50,weightlifting,0,0,0, -910081538,Lemi Berhanu,ETH,male,1994-09-13,1.68,53,athletics,0,0,0, -204521805,Lena Goessling,GER,female,1986-03-08,1.71,56,football,1,0,0, -505827943,Lena Kreundl,AUT,female,1997-09-19,1.74,69,aquatics,0,0,0, -320412912,Lena Schoneborn,GER,female,1986-04-11,1.79,60,modern pentathlon,0,0,0, -50309903,Lena Urbaniak,GER,female,1992-10-31,1.74,92,athletics,0,0,0, -949030090,Lenchu Kunzang,BHU,female,1992-02-10,1.65,59,shooting,0,0,0, -82742065,Lenin Preciado,ECU,male,1993-08-23,1.7,60,judo,0,0,0, -138499307,Lenka Antosova,CZE,female,1991-09-27,1.77,70,rowing,0,0,0, -903947461,Lennie Waite,GBR,female,1986-02-04,1.71,59,athletics,0,0,0, -483445056,Leo Mainoldi,ARG,male,1985-03-04,2.04,106,basketball,0,0,0, -442415993,Leon Goretzka,GER,male,1995-02-06,1.86,76,football,0,0,0, -200012588,Leona Maguire,IRL,female,1994-11-30,1.68,56,golf,0,0,0, -736914222,Leonard Essau Korir,USA,male,1986-12-10,1.71,59,athletics,0,0,0, -55261773,Leonard Ong,SIN,male,1992-12-09,1.7,68,sailing,0,0,0, -617980909,Leonardo Bittencourt,GER,male,1993-12-19,1.71,62,football,0,0,0, -168519114,Leonardo Chacon,CRC,male,1984-06-29,1.79,65,triathlon,0,0,0, -403277949,Leonardo Querin,ARG,male,1982-04-17,1.97,105,handball,0,0,0, -40283995,Leonardo Santos,BRA,male,1994-05-30,1.94,104,handball,0,0,0, -159048041,Leonardo de Deus,BRA,male,1991-01-18,1.75,70,aquatics,0,0,0, -639962139,Leone Nakarawa,FIJ,male,1988-04-02,1.98,109,rugby sevens,1,0,0, -649229119,Leonel Suarez,CUB,male,1987-09-01,1.81,68,athletics,0,0,0, -888575799,Leonel de los Santos Nunez,DOM,male,1994-12-14,1.7,,boxing,0,0,0, -655588517,Leonid Andreev,UZB,male,1983-10-06,1.98,93,athletics,0,0,0, -295139504,Leonie Adam,GER,female,1993-01-02,1.62,54,gymnastics,0,0,0, -953257950,Leonie Antonia Beck,GER,female,1997-05-27,1.84,62,aquatics,0,0,0, -812063503,Leonie Kullmann,GER,female,1999-08-26,1.75,62,aquatics,0,0,0, -503186709,Leonie Maier,GER,female,1992-09-29,1.63,62,football,1,0,0, -862102425,Leonor Rodriguez,ESP,female,1991-10-21,1.8,72,basketball,0,1,0, -399491333,Leonora Mackinnon,CAN,female,1994-05-30,1.8,77,fencing,0,0,0, -246122300,Leontia Kallenou,CYP,female,1994-10-05,1.8,64,athletics,0,0,0, -74708917,Leopold Konig,CZE,male,1987-11-15,1.78,62,cycling,0,0,0, -825004701,Lerissa Henry,FSM,female,1997-08-18,1.53,57,athletics,0,0,0, -669805740,Lesley Thompson-Willie,CAN,female,1959-09-20,1.6,50,rowing,0,0,0, -660063171,Leslie Copeland,FIJ,male,1988-04-23,1.83,102,athletics,0,0,0, -244021964,Lestrod Roland,SKN,male,1992-09-05,1.65,54,athletics,0,0,0, -792302802,Leticia Boscacci,ARG,female,1985-11-08,1.86,70,volleyball,0,0,0, -927194850,Leticia Romero,ESP,female,1995-05-28,1.77,62,basketball,0,1,0, -504480132,Leticia de Souza,BRA,female,1996-05-06,1.65,49,athletics,0,0,0, -53358242,Leuris Pupo,CUB,male,1977-04-09,1.68,78,shooting,0,0,0, -340107234,Levan Berianidze,ARM,male,1990-10-10,1.86,125,wrestling,0,0,0, -204502697,Levent Tuncat,GER,male,1988-07-29,1.73,61,taekwondo,0,0,0, -159745591,Levern Spencer,LCA,female,1984-06-23,1.79,48,athletics,0,0,0, -576128253,Levi Cadogan,BAR,male,1995-11-08,1.81,78,athletics,0,0,0, -228788380,Levon Aghasyan,ARM,male,1995-01-19,1.93,75,athletics,0,0,0, -600455405,Lewis Holland,AUS,male,1993-01-14,1.83,89,rugby sevens,0,0,0, -362932074,Lewis Ormond,NZL,male,1994-02-05,1.92,100,rugby sevens,0,0,0, -109119825,Lexi Thompson,USA,female,1995-02-10,1.81,72,golf,0,0,0, -237908464,Lexi Weeks,USA,female,1996-11-20,,,athletics,0,0,0, -544849480,Leydi Laura Moya,CUB,female,1992-04-16,1.7,68,modern pentathlon,0,0,0, -654502394,Leyla Rajabi,IRI,female,1983-04-18,1.87,100,athletics,0,0,0, -176154136,Li Du,CHN,female,1982-03-05,1.7,55,shooting,0,1,1, -447494695,Li Guo,CHN,female,1993-05-11,1.67,54,aquatics,0,1,0, -157385962,Li Lin,CHN,female,1992-07-05,1.71,70,volleyball,1,0,0, -394183572,Li Yang,CHN,female,1991-01-31,1.67,58,football,0,0,0, -462590793,Lia Neal,USA,female,1995-02-13,1.78,74,aquatics,0,1,0, -472892087,Liadagmis Povea,CUB,female,1996-02-06,1.66,52,athletics,0,0,0, -329731832,Liam Adams,AUS,male,1986-09-04,1.78,64,athletics,0,0,0, -865915642,Liam Bertazzo,ITA,male,1992-02-17,1.85,70,cycling,0,0,0, -131214220,Liam Heath,GBR,male,1984-08-17,1.82,81,canoe,1,1,0, -945401924,Liam Phillips,GBR,male,1989-03-11,1.81,85,cycling,0,0,0, -182272008,Liam Pitchford,GBR,male,1993-07-12,1.86,67,table tennis,0,0,0, -837742830,Lian Yuan Wang,CHN,female,1994-08-26,1.67,60,triathlon,0,0,0, -518240529,Liana Salazar,COL,female,1992-09-16,1.69,52,football,0,0,0, -169395175,Lianna Swan,PAK,female,1997-03-25,1.65,67,aquatics,0,0,0, -82404018,Lianne Tan,BEL,female,1990-11-20,1.6,54,badminton,0,0,0, -598538220,Libania Grenot,ITA,female,1983-07-12,1.75,60,athletics,0,0,0, -9859586,Libuse Jahodova,CZE,female,1992-05-31,1.63,52,shooting,0,0,0, -427854268,Licet Hernandez,CUB,female,1993-04-14,1.68,57,rowing,0,0,0, -641616840,Lidewij Welten,NED,female,1990-07-16,1.7,64,hockey,0,1,0, -860964222,Lidia Valentin Perez,ESP,female,1985-02-10,1.69,74,weightlifting,0,0,1, -790043158,Lidiane Lopes,CPV,female,1994-09-01,1.78,70,athletics,0,0,0, -513701226,Lidiia Sichenikova,UKR,female,1993-02-03,1.83,69,archery,0,0,0, -352163486,Lieke Wevers,NED,female,1991-09-17,1.67,54,gymnastics,0,0,0, -12425606,Liemarvin Bonevacia,NED,male,1989-04-05,1.85,74,athletics,0,0,0, -763919056,Lies Rustenburg,NED,female,1990-04-08,1.83,74,rowing,0,0,0, -390159530,Liina Laasma,EST,female,1992-01-13,1.74,67,athletics,0,0,0, -795063034,Liina Luik,EST,female,1985-10-14,1.64,48,athletics,0,0,0, -547595943,Lijia Xu,CHN,female,1987-08-30,1.76,60,sailing,0,0,0, -16471586,Lijiao Gong,CHN,female,1989-01-24,1.75,105,athletics,0,0,0, -202813499,Lijun Chen,CHN,male,1993-02-08,1.62,62,weightlifting,0,0,0, -653834235,Lijun Zu,CHN,male,1989-11-26,1.88,87,aquatics,0,0,0, -410869644,Likourgos-Stefanos Tsakonas,GRE,male,1990-03-08,1.85,80,athletics,0,0,0, -268704027,Lilia Fisikowici,MDA,female,1989-03-29,1.7,52,athletics,0,0,0, -150040443,Lilian Castro,ESA,female,1986-12-19,1.64,63,shooting,0,0,0, -736338812,Lilian de Geus,NED,female,1991-10-13,1.64,57,sailing,0,0,0, -832461074,Liliana Fernandez Steiner,ESP,female,1987-01-04,1.78,75,volleyball,0,0,0, -720106859,Liliana Ibanez Lopez,MEX,female,1991-01-30,1.8,70,aquatics,0,0,0, -42265124,Liliana Neto,ANG,female,1997-01-29,1.66,57,athletics,0,0,0, -93076735,Liliana Szilagyi,HUN,female,1996-11-19,1.75,62,aquatics,0,0,0, -92875421,Liliana da Silva Venancio,ANG,female,1995-09-19,1.8,93,handball,0,0,0, -277003612,Lilima Minz,IND,female,1994-04-10,1.58,52,hockey,0,0,0, -986623608,Lilit Harutyunyan,ARM,female,1993-04-04,1.64,55,athletics,0,0,0, -39304647,Liliyana Natsir,INA,female,1985-09-09,1.69,62,badminton,1,0,0, -461914120,Lilly King,USA,female,1997-02-10,1.76,70,aquatics,2,0,0, -80507918,Lily Luik,EST,female,1985-10-14,1.63,48,athletics,0,0,0, -877281953,Lily Owsley,GBR,female,1994-12-10,1.7,70,hockey,1,0,0, -919045571,Lily Zhang,USA,female,1996-06-16,1.66,58,table tennis,0,0,0, -474911998,Lin Gui,BRA,female,1993-10-01,1.68,52,table tennis,0,0,0, -64295130,Lin Peng,CHN,female,1995-04-04,1.83,73,aquatics,0,0,0, -821207198,Lina Guerin,FRA,female,1991-04-16,1.75,64,rugby sevens,0,0,0, -530731946,Lina Magull,GER,female,1994-08-15,1.64,59,football,0,0,0, -472444817,Lina Marcela Rivas Ordonez,COL,female,1990-04-24,1.59,58,weightlifting,0,0,0, -525260451,Lina Saltyte,LTU,female,1987-02-09,1.84,70,rowing,0,0,0, -449688745,Lina Zhao,CHN,female,1991-09-18,1.88,67,football,0,0,0, -932267400,Linda Algotsson,SWE,female,1972-03-22,1.62,50,equestrian,0,0,0, -489441345,Linda Bolder,ISR,female,1988-07-03,1.73,70,judo,0,0,0, -413014010,Linda Cerruti,ITA,female,1993-10-07,1.73,56,aquatics,0,0,0, -401236995,Linda Fahrni,SUI,female,1993-05-25,1.57,56,sailing,0,0,0, -849736805,Linda Indergand,SUI,female,1993-07-13,1.69,65,cycling,0,0,0, -236104816,Linda Motlhalo,RSA,female,1998-07-01,1.62,47,football,0,0,0, -351574736,Linda Sandblom,FIN,female,1989-10-18,1.76,62,athletics,0,0,0, -401452346,Linda Sembrant,SWE,female,1987-05-15,1.75,66,football,0,1,0, -843070999,Linda Stahl,GER,female,1985-10-02,1.76,79,athletics,0,0,0, -446754440,Linda Villumsen,NZL,female,1985-04-09,1.65,58,cycling,0,0,0, -793960001,Linda Zetchiri,BUL,female,1987-07-27,1.69,58,badminton,0,0,0, -351805810,Lindaweni Fanetri,INA,female,1990-01-18,1.67,60,badminton,0,0,0, -510445480,Linden Hall,AUS,female,1991-06-20,1.67,51,athletics,0,0,0, -470256290,Lindiwe Magwede,ZIM,female,1991-12-01,1.76,59,football,0,0,0, -644836357,Lindolfo Delgado,MEX,male,1994-12-31,1.74,,boxing,0,0,0, -934402077,Lindon Victor,GRN,male,1993-02-28,,,athletics,0,0,0, -408373995,Lindsay Hanekom,RSA,male,1993-05-15,1.78,66,athletics,0,0,0, -181124319,Lindsay Jennerich,CAN,female,1982-07-30,1.65,59,rowing,0,1,0, -116706289,Lindsay Whalen,USA,female,1982-05-09,1.75,72,basketball,1,0,0, -365794539,Lindsey Harding,BLR,female,1984-06-12,1.73,65,basketball,0,0,0, -830406160,Lindsey Horan,USA,female,1994-05-26,1.75,76,football,0,0,0, -727787093,Line Kjaersfeldt,DEN,female,1994-04-20,1.75,65,badminton,0,0,0, -925589540,Linet Arasa,KEN,female,1996-01-01,2.03,61,rugby sevens,0,0,0, -24311177,Ling Li,CHN,female,1989-07-06,1.85,63,athletics,0,0,0, -41586210,Ling Zhang,CHN,female,1997-02-27,1.82,75,rowing,0,0,0, -348322475,Ling Zhang,CHN,female,1992-09-18,1.72,51,gymnastics,0,0,0, -439546048,Lingwei Kong,CHN,female,1995-07-28,1.63,51,athletics,0,0,0, -399160547,Lingwei Li,CHN,female,1989-01-26,1.74,72,athletics,0,0,0, -745922840,Linn Blohm,SWE,female,1992-05-20,1.8,79,handball,0,0,0, -485795887,Linn-Kristin Riegelhuth Koren,NOR,female,1984-08-01,1.75,,handball,0,0,1, -502728742,Linnea Stensils,SWE,female,1994-03-08,1.78,69,canoe,0,0,0, -517447697,Linnea Torstensson,SWE,female,1983-03-30,1.86,82,handball,0,0,0, -514401054,Lino Munoz,MEX,male,1991-02-08,1.74,65,badminton,0,0,0, -542689552,Linus Butt,GER,male,1987-03-12,1.86,83,hockey,0,0,1, -983582126,Liosbel Hernandez,CUB,male,1983-12-17,1.9,70,rowing,0,0,0, -557752206,Lisa Altenburg,GER,female,1989-09-23,1.55,58,hockey,0,0,1, -416331629,Lisa Brennauer,GER,female,1988-06-08,1.68,63,cycling,0,0,0, -135005136,Lisa Carrington,NZL,female,1989-06-23,1.68,63,canoe,1,0,1,"A specialist in the K-1 200m canoe sprint event, New Zealand's Lisa Carrington won gold at London 2012, as well as in the 2011, 2013, 2014 and 2015 world championships (also winning the 500m in the latter)." -922248644,Lisa Dahlkvist,SWE,female,1987-02-06,1.73,68,football,0,1,0, -191131636,Lisa Darmanin,AUS,female,1991-08-27,1.68,65,sailing,0,1,0, -954723577,Lisa Ecker,AUT,female,1992-09-19,1.57,55,gymnastics,0,0,0, -25397368,Lisa Ericson,SWE,female,1988-05-09,1.65,60,sailing,0,0,0, -128351056,Lisa Graf,GER,female,1992-11-13,1.83,69,aquatics,0,0,0, -221215315,Lisa Hahner,GER,female,1989-11-20,1.67,50,athletics,0,0,0, -211903668,Lisa Jane Weightman,AUS,female,1979-01-16,1.57,44,athletics,0,0,0, -18063764,Lisa Klein,GER,female,1996-07-15,1.7,62,cycling,0,0,0, -526656164,Lisa Mayer,GER,female,1996-05-02,1.71,57,athletics,0,0,0, -765502625,Lisa Norden,SWE,female,1984-11-24,1.76,60,triathlon,0,0,0,"Silver medallist at London 2012, Sweden's Lisa Nordén lost the gold to Switzerland's Nicola Spirig in a photo finish. That same year, Lisa was the world champion, but recently won bronze at the European Games, in 2015." -620856226,Lisa Roman,CAN,female,1989-09-17,1.78,76,rowing,0,0,0, -298441762,Lisa Ryzih,GER,female,1988-09-27,1.79,62,athletics,0,0,0, -130489647,Lisa Schmidla,GER,female,1991-06-05,1.73,76,rowing,1,0,0, -467310646,Lisa Schutze,GER,female,1996-10-05,1.72,61,hockey,0,0,1, -241114049,Lisa Unruh,GER,female,1988-04-12,1.8,68,archery,0,1,0, -437677562,Lisa Weiss,GER,female,1987-10-29,1.71,67,football,0,0,0, -700918622,Lisa Zaiser,AUT,female,1994-08-23,1.74,63,aquatics,0,0,0, -713570964,Lisa de Vanna,AUS,female,1984-11-14,1.56,56,football,0,0,0, -531666136,Lisandra Guerra Rodriguez,CUB,female,1987-10-31,1.67,69,cycling,0,0,0, -268135411,Lisandro Magallan,ARG,male,1993-09-27,1.81,79,football,0,0,0, -398635028,Lisanne de Witte,NED,female,1992-09-10,1.75,65,athletics,0,0,0, -21753483,Lisbet Jakobsen,DEN,female,1987-01-21,1.79,71,rowing,0,0,0, -155823041,Lisneidy Veitia,CUB,female,1994-04-29,1.68,58,athletics,0,0,0, -13117642,Lissa Labiche,SEY,female,1993-02-18,1.72,55,athletics,0,0,0, -461845874,Lissette Alexandra Antes Castillo,ECU,female,1991-05-02,1.77,58,wrestling,0,0,0, -728085851,Litia Naiqato,FIJ,female,1987-03-25,1.8,76,rugby sevens,0,0,0, -380475095,Liu Ying Goh,MAS,female,1989-05-30,1.66,56,badminton,0,1,0, -82572587,Liubomyr Lemeshko,UKR,male,1992-07-19,1.86,86,aquatics,0,0,0, -307207034,Liubov Basova,UKR,female,1988-07-16,1.62,65,cycling,0,0,0, -737904041,Liudmila Dmitrieva,RUS,female,1989-05-02,1.8,70,sailing,0,0,0, -35679352,Liudmyla Kichenok,UKR,female,1992-07-20,1.76,65,tennis,0,0,0, -672950250,Livan Lopez Azcuy,CUB,male,1982-01-24,1.7,74,wrestling,0,0,0, -537422944,Livan Osoria Rodriguez,CUB,male,1994-02-05,2.01,96,volleyball,0,0,0, -345846661,Livio LA PADULA,ITA,male,1985-11-20,1.83,72,rowing,0,0,0, -836548598,Lizanne Murphy,CAN,female,1984-03-15,1.85,75,basketball,0,0,0, -463712046,Lizhu Huang,CHN,female,1987-10-09,1.74,71,sailing,0,0,0, -887425403,Lizzie Lee,IRL,female,1980-05-22,1.65,51,athletics,0,0,0, -225973698,Lkhamdegd Purevjargal,MGL,female,1986-09-18,1.8,80,judo,0,0,0, -546982242,Loan His,FRA,female,1999-04-10,1.6,51,gymnastics,0,0,0, -612340234,Logan Cunningham,USA,male,1991-05-30,1.76,72,athletics,0,0,0, -338570667,Logan Dooley,USA,male,1987-09-26,1.75,58,gymnastics,0,0,0, -92285054,Lohaynny Vicente,BRA,female,1996-05-02,1.68,70,badminton,0,0,0, -586219392,Loic Pietri,FRA,male,1990-08-27,1.77,81,judo,0,0,0, -999987786,Loick Luypaert,BEL,male,1991-08-19,1.81,78,hockey,0,1,0, -774306010,Lois Abbingh,NED,female,1992-08-13,1.78,72,handball,0,0,0, -508980654,Lois Maikel Martinez,ESP,male,1981-06-03,1.87,120,athletics,0,0,0, -667499984,Lois Toulson,GBR,female,1999-09-26,1.66,51,aquatics,0,0,0, -974884842,Lok Yan Poon,HKG,female,1991-08-22,1.69,56,badminton,0,0,0, -270039898,Lola Riera,ESP,female,1991-06-25,1.72,74,hockey,0,0,0, -993580824,Lolita Ananasova,UKR,female,1992-07-09,1.69,52,aquatics,0,0,0, -962247263,Lomano Lemeki,JPN,male,1989-01-20,1.77,92,rugby sevens,0,0,0, -366057032,Long Chen,CHN,male,1989-01-18,1.88,81,badminton,1,0,0,"A two-time world badminton champion having won the singles tournaments in 2014 and 2015, China's Chen Long is among the top ranked Badminton players in the world. His Olympic debut came at London 2012, where he took home the bronze." -865328770,Long Gutierrez Feng,MEX,male,1995-02-23,1.9,85,aquatics,0,0,0, -736738706,Long Ma,CHN,male,1988-10-20,1.75,72,table tennis,2,0,0, -399910648,Lonneke Sloetjes,NED,female,1990-11-15,1.92,77,volleyball,0,0,0, -779658344,Loredana Dinu,ROU,female,1984-04-02,1.68,60,fencing,1,0,0, -398479062,Lorena Molinos,BRA,female,1991-03-02,1.6,51,aquatics,0,0,0, -180299954,Lorene Dorcas Bazolo,POR,female,1983-05-04,1.7,60,athletics,0,0,0, -554615022,Lorenzo Sotomayor Collazo,AZE,male,1985-02-16,1.85,,boxing,0,1,0, -636450373,Loreta Gulotta,ITA,female,1987-05-08,1.74,63,fencing,0,0,0, -634263213,Lornah Chemtai Korlima,ISR,female,1988-12-12,1.65,52,athletics,0,0,0, -904651975,Lorraine Ugen,GBR,female,1991-08-22,1.79,65,athletics,0,0,0, -753835891,Lorrane Oliveira,BRA,female,1998-04-13,1.53,50,gymnastics,0,0,0, -399652811,Lorys Bourelly,FRA,male,1992-05-27,1.86,76,aquatics,0,0,0, -345563722,Lote Tuqiri,JPN,male,1987-11-12,1.89,99,rugby sevens,0,0,0, -809986793,Lotta Lepisto,FIN,female,1989-06-28,1.64,58,cycling,0,0,0, -97180847,Lotta Schelin,SWE,female,1984-02-27,1.79,66,football,0,1,0, -421793519,Lotte Friis,DEN,female,1988-02-09,1.83,75,aquatics,0,0,0, -290076256,Lotte Kopecky,BEL,female,1995-11-10,1.71,66,cycling,0,0,0, -224274265,Louis Croenen,BEL,male,1994-01-04,1.86,79,aquatics,0,0,0, -99752368,Louis Meintjes,RSA,male,1992-02-21,1.73,58,cycling,0,0,0, -84986974,Louis Smith,GBR,male,1989-04-22,1.8,78,gymnastics,0,1,0, -677916006,Louisa Cadamuro,FRA,female,1987-01-23,1.68,56,football,0,0,0, -23974217,Louisa Chafee,USA,female,1991-09-24,1.66,56,sailing,0,0,0, -22758388,Louisa Gurski,GBR,female,1988-05-26,1.72,70,canoe,0,0,0, -544547565,Louise Bawden,AUS,female,1981-08-07,1.83,72,volleyball,0,0,0, -347394915,Louise Bloor,GBR,female,1985-09-21,1.68,63,athletics,0,0,0, -59039148,Louise Carton,BEL,female,1994-04-16,1.81,60,athletics,0,0,0, -602283676,Louise Hansson,SWE,female,1996-11-24,1.87,72,aquatics,0,0,0, -809952135,Louise Sand,SWE,female,1992-12-27,1.64,62,handball,0,0,0, -394180888,Louise Vanhille,FRA,female,1998-11-06,1.67,55,gymnastics,0,0,0, -850074642,Lourdes Mohedano,ESP,female,1995-06-17,1.73,53,gymnastics,0,1,0, -911242137,Lovisa Lindh,SWE,female,1991-07-09,1.69,57,athletics,0,0,0, -105066319,Lu Li,CHN,female,1992-02-18,1.6,55,canoe,0,0,0, -276246857,Luan,BRA,male,1993-03-27,1.8,71,football,1,0,0, -642783989,Luan Garcia,BRA,male,1993-05-10,1.83,79,football,1,0,0, -156350082,Luba Golovina,GEO,female,1990-04-20,1.72,55,gymnastics,0,0,0, -682800627,Lubna Alomair,KSA,female,1987-04-14,1.52,45,fencing,0,0,0, -475847268,Lubomir Jancarik,CZE,male,1987-08-17,1.93,82,table tennis,0,0,0, -878070410,Luc Abalo,FRA,male,1984-09-06,1.82,86,handball,0,1,0, -642947259,Luca Agamennoni,ITA,male,1980-08-08,1.87,93,rowing,0,0,0, -338874266,Luca Braidot,ITA,male,1991-05-29,1.79,69,cycling,0,0,0, -554715039,Luca Cupido,USA,male,1995-11-09,1.88,95,aquatics,0,0,0, -741078160,Luca Dotto,ITA,male,1990-04-18,1.92,80,aquatics,0,0,0, -659816292,Luca Leonardi,ITA,male,1991-01-01,1.91,78,aquatics,0,0,0, -313498882,Luca Marin,ITA,male,1986-04-09,1.87,82,aquatics,0,0,0, -543136851,Luca Masso,ARG,male,1994-07-17,1.86,82,hockey,1,0,0, -129051185,Luca Pizzini,ITA,male,1989-04-08,1.85,76,aquatics,0,0,0, -537669111,Luca Roman,ITA,male,1985-12-10,1.74,69,equestrian,0,0,0, -141527506,Luca Vettori,ITA,male,1991-04-26,2,95,volleyball,0,1,0, -564323858,Lucas Bruchet,CAN,male,1991-02-23,1.83,69,athletics,0,0,0, -129309426,Lucas Calabrese,ARG,male,1986-12-12,1.68,60,sailing,0,0,0, -604160230,Lucas Candido,BRA,male,1989-03-19,1.85,88,handball,0,0,0, -711817435,Lucas Carvalho,BRA,male,1993-07-16,1.75,51,athletics,0,0,0, -243504044,Lucas Daniel,FRA,male,1995-01-01,1.8,80,archery,0,0,0, -599092094,Lucas Duque,BRA,male,1984-03-15,1.7,84,rugby sevens,0,0,0, -489045674,Lucas Jakubczyk,GER,male,1985-04-28,1.83,77,athletics,0,0,0, -79045868,Lucas Kozeniesky,USA,male,1995-05-31,1.81,79,shooting,0,0,0, -78252233,Lucas Paixao,BRA,male,1994-09-02,1.72,62,hockey,0,0,0, -199482882,Lucas Rey,ARG,male,1982-10-11,1.77,74,hockey,1,0,0, -517848380,Lucas Romero,ARG,male,1994-04-18,1.69,73,football,0,0,0, -988887897,Lucas Rossi,ARG,male,1985-06-02,1.88,88,hockey,1,0,0, -81328247,Lucas Saatkamp,BRA,male,1986-03-06,2.09,101,volleyball,1,0,0, -548331359,Lucas Schaefer,GER,male,1994-08-15,1.87,70,rowing,0,0,0, -505340328,Lucas Tramer,SUI,male,1989-09-01,1.83,75,rowing,1,0,0, -612347154,Lucas Vila,ARG,male,1986-08-23,1.72,75,hockey,1,0,0, -249567858,Lucia Falasca,ARG,female,1993-07-08,1.71,64,sailing,0,0,0, -668932185,Lucia Fresco,ARG,female,1991-05-14,1.95,92,volleyball,0,0,0, -546619067,Lucia Haro,ARG,female,1986-08-21,1.78,71,handball,0,0,0, -542002382,Lucia Hrivnak Klocova,SVK,female,1983-11-20,1.72,58,athletics,0,0,0, -752386508,Lucia Jimenez,ESP,female,1997-01-08,1.63,51,hockey,0,0,0, -480093608,Lucia Mwihaki Kimani,BIH,female,1981-06-21,1.66,48,athletics,0,0,0, -901297411,Lucia Palermo,ARG,female,1985-09-30,1.73,59,rowing,0,0,0, -299729150,Luciana,BRA,female,1987-07-24,1.71,74,football,0,0,0, -371222775,Luciana Diniz,POR,female,1970-10-11,1.75,55,equestrian,0,0,0, -45981048,Luciana Mendoza,ARG,female,1990-03-14,1.7,68,handball,0,0,0, -422969496,Luciana Salvado,ARG,female,1990-04-13,1.69,65,handball,0,0,0, -345497174,Lucianne Barroncas,BRA,female,1988-04-01,1.69,64,aquatics,0,0,0, -95393469,Luciano Taccone,ARG,male,1989-05-29,1.76,63,triathlon,0,0,0, -55174907,Luciano de Cecco,ARG,male,1988-06-02,1.91,98,volleyball,0,0,0, -678484438,Lucie Hradecka,CZE,female,1985-05-21,1.78,70,tennis,0,0,1, -801203222,Lucie Safarova,CZE,female,1987-02-04,1.77,67,tennis,0,0,1, -822537753,Lucie Svecena,CZE,female,1997-08-21,1.75,60,aquatics,0,0,0, -395171804,Lucien Cujean,SUI,male,1989-08-16,1.84,82,sailing,0,0,0, -894482944,Lucien Delfour,AUS,male,1988-12-22,1.77,70,canoe,0,0,0, -300937912,Lucija Zaninovic,CRO,female,1987-06-26,1.7,52,taekwondo,0,0,0, -829679838,Lucila Pascua,ESP,female,1983-03-21,1.96,93,basketball,0,1,0, -508413234,Lucilla Boari,ITA,female,1997-03-24,1.62,82,archery,0,0,0, -949015694,Lucina von der Heyde,ARG,female,1997-01-24,1.6,57,hockey,0,0,0, -61310516,Lucy Davis,USA,female,1992-10-22,1.66,55,equestrian,0,1,0, -158550880,Lucy Oliver,NZL,female,1988-11-18,1.68,53,athletics,0,0,0, -645035836,Lucy Stephan,AUS,female,1991-12-10,1.74,67,rowing,0,0,0, -803793188,Ludger Beerbaum,GER,male,1963-08-26,1.9,85,equestrian,0,0,1, -721221132,Ludovic Chammartin,SUI,male,1985-01-31,1.68,60,judo,0,0,0, -549211335,Ludovic Fabregas,FRA,male,1996-07-01,1.98,100,handball,0,1,0, -5384302,Ludovic Henry,FRA,male,1968-10-04,1.95,88,equestrian,0,0,0, -906835303,Ludovico Edalli,ITA,male,1993-12-18,1.65,57,gymnastics,0,0,0, -870285108,Ludvy Vaillant,FRA,male,1995-03-15,1.8,67,athletics,0,0,0, -551941271,Ludwig Paischer,AUT,male,1981-11-28,1.7,60,judo,0,0,0, -736364717,Ludwig Svennerstal,SWE,male,1990-08-24,1.84,72,equestrian,0,0,0, -708479059,Luguelin Santos,DOM,male,1993-11-12,1.63,55,athletics,0,0,0, -729320329,Luigi Lodde,ITA,male,1980-04-19,1.7,79,shooting,0,0,0, -498891159,Luigi Teilemb,VAN,male,1992-02-25,1.87,80,rowing,0,0,0, -354961149,Luillys Jose Perez Mora,VEN,male,1990-12-23,1.81,97,wrestling,0,0,0, -237111206,Luis Alberto Garcia Brito,DOM,male,1995-04-19,1.48,56,weightlifting,0,0,0, -725379575,Luis Alberto Orta,VEN,male,1989-01-15,1.6,50,athletics,0,0,0, -116880876,Luis Ariel Molina,ARG,male,1988-03-07,1.72,57,athletics,0,0,0, -23362328,Luis Brethauer,GER,male,1992-09-14,1.76,82,cycling,0,0,0, -138487719,Luis Cabrera,VEN,male,1995-05-20,1.76,,boxing,0,0,0, -975670610,Luis Charles,DOM,male,1998-12-03,1.83,65,athletics,0,0,0, -660174272,Luis Emigdio Vega,CUB,male,1998-11-02,1.79,69,aquatics,0,0,0, -133697198,Luis Enrique Lemus Davila,MEX,male,1992-04-21,1.73,61,cycling,0,0,0, -600419040,Luis Fernando Lopez,COL,male,1979-06-03,1.66,60,athletics,0,0,0, -873077126,Luis Henry Campos,PER,male,1995-10-11,1.66,61,athletics,0,0,0, -219480043,Luis Hurtado,COL,male,1994-01-24,1.86,81,football,0,0,0, -854498717,Luis Javier Mosquera Lozano,COL,male,1995-03-27,1.65,69,weightlifting,0,0,1, -339149887,Luis Joel Castro,PUR,male,1991-01-29,1.98,73,athletics,0,0,0, -717592446,Luis Lopez,HON,male,1993-09-13,1.83,84,football,0,0,0, -920379695,Luis Lopez,ESA,male,1994-01-18,,,athletics,0,0,0, -851144245,Luis Martin Arcon,VEN,male,1992-06-01,1.79,,boxing,0,0,0, -536738422,Luis Martinez,GUA,male,1995-12-11,1.82,74,aquatics,0,0,0, -141098484,Luis Ostos,PER,male,1992-08-09,1.6,50,athletics,0,0,0, -772996626,Luis Scola,ARG,male,1980-04-30,2.04,108,basketball,0,0,0, -854151517,Luis Vasquez,COL,male,1996-03-01,1.87,76,football,0,0,0, -530819042,Luisa Borges,BRA,female,1996-04-20,1.66,54,aquatics,0,0,0, -868186831,Luisa Fatiaki Taitapu Peters,COK,female,1993-06-27,1.65,100,weightlifting,0,0,0, -153439760,Luisa Helga Gerda Niemesch,GER,female,1995-09-07,1.65,63,wrestling,0,0,0, -22717911,Luisa Kiala,ANG,female,1982-01-25,1.8,62,handball,0,0,0, -505599669,Luisa Tisolo,FIJ,female,1991-09-20,1.75,63,rugby sevens,0,0,0, -52637843,Luisa Trombetti,ITA,female,1993-09-05,1.73,67,aquatics,0,0,0, -788404828,Luise Malzahn,GER,female,1990-06-09,1.77,78,judo,0,0,0, -706961920,Luisito Pie,DOM,male,1994-03-04,1.83,57,taekwondo,0,0,1, -976439894,Luiz Alberto de Araujo,BRA,male,1987-06-27,1.9,86,athletics,0,0,0, -705013077,Luiz Altamir,BRA,male,1996-05-09,1.74,69,aquatics,0,0,0, -524518675,Luiz Felipe Marques Fonteles,BRA,male,1984-06-19,1.96,89,volleyball,1,0,0, -713630406,Luiz Felipe Outerelo,BRA,male,1991-12-11,1.81,82,aquatics,0,0,0, -826163083,Luiza Campos,BRA,female,1990-07-30,1.65,64,rugby sevens,0,0,0, -396150268,Luiza Carvalho,BRA,female,1983-07-02,1.82,79,aquatics,0,0,0, -837407916,Luiza Ganieva,UZB,female,1995-11-11,1.66,53,gymnastics,0,0,0, -915002256,Luiza Gega,ALB,female,1988-11-05,1.59,45,athletics,0,0,0, -117132954,Luiza Saidiyeva,KAZ,female,1994-03-17,1.62,42,archery,0,0,0, -280621392,Luiza Tavares de Almeida,BRA,female,1991-09-07,1.68,58,equestrian,0,0,0, -623136878,Luka Babic,CRO,male,1991-09-29,2.02,94,basketball,0,0,0, -302739733,Luka Bozic,SLO,male,1991-01-09,1.73,72,canoe,0,0,0, -366132937,Luka Bukic,CRO,male,1994-04-30,1.95,90,aquatics,0,1,0, -17097553,Luka Cindric,CRO,male,1993-07-05,1.82,90,handball,0,0,0, -402639302,Luka Janezic,SLO,male,1995-11-14,1.92,83,athletics,0,0,0, -398703913,Luka Karabatic,FRA,male,1988-04-19,2.02,108,handball,0,1,0, -504359994,Luka Loncar,CRO,male,1987-06-26,1.95,106,aquatics,0,1,0, -504597254,Luka Mratovic,CRO,male,1987-04-07,1.9,78,sailing,0,0,0, -189960390,Luka Stepancic,CRO,male,1990-11-20,2.03,98,handball,0,0,0, -644882024,Lukas Dauser,GER,male,1993-06-15,1.72,64,gymnastics,0,0,0, -924122874,Lukas Fernandes,DEN,male,1993-03-01,1.87,81,football,0,0,0, -330673646,Lukas Gdula,CZE,male,1991-12-06,1.78,65,athletics,0,0,0, -608004854,Lukas Helesic,CZE,male,1996-01-29,1.89,89,rowing,0,0,0, -51396878,Lukas Klostermann,GER,male,1996-06-03,1.89,84,football,0,1,0, -921390591,Lukas Krpalek,CZE,male,1990-11-15,1.97,105,judo,1,0,0, -877299705,Lukas Melich,CZE,male,1980-09-16,1.86,110,athletics,0,0,0, -856483693,Lukas Nilsson,SWE,male,1996-11-16,1.94,97,handball,0,0,0, -13539214,Lukas Rosol,CZE,male,1985-07-24,1.95,82,tennis,0,0,0, -934798797,Lukas Trefil,CZE,male,1988-09-21,1.87,90,canoe,0,0,1, -347976859,Lukas Weisshaidinger,AUT,male,1992-02-20,1.96,136,athletics,0,0,0, -997459236,Lukas Werro,SUI,male,1991-06-30,1.75,72,canoe,0,0,0, -587024656,Lukasz Gierak,POL,male,1988-06-22,1.94,104,handball,0,0,0, -704816796,Lukasz Grzeszczuk,POL,male,1990-03-03,1.9,95,athletics,0,0,0, -578022674,Lukasz Krawczuk,POL,male,1989-06-15,1.84,75,athletics,0,0,0, -915253145,Lukasz Kubot,POL,male,1982-05-16,1.91,90,tennis,0,0,0, -91523255,Lukasz Nowak,POL,male,1988-12-18,1.94,76,athletics,0,0,0, -374551802,Lukasz Przybytek,POL,male,1989-05-20,1.78,73,sailing,0,0,0, -966057256,Luke Bezzina,MLT,male,1995-06-07,,,athletics,0,0,0, -347048162,Luke Cutts,GBR,male,1988-02-13,1.87,81,athletics,0,0,0, -978732566,Luke Mathews,AUS,male,1995-06-21,1.83,70,athletics,0,0,0, -251226899,Luke Patience,GBR,male,1986-08-04,1.67,59,sailing,0,0,0, -893167750,Luke Ramsay,CAN,male,1988-01-31,1.73,68,sailing,0,0,0, -42399683,Lum Zhaveli,KOS,male,1990-03-05,1.94,88,aquatics,0,0,0, -78006686,Lumin Wang,CHN,male,1990-12-07,1.7,67,wrestling,0,0,0, -537472547,Lungile Gongqa,RSA,male,1979-02-22,1.62,53,athletics,0,0,0, -278272710,Lurdes Marcelina Monteiro,ANG,female,1984-07-11,1.7,63,handball,0,0,0, -387196979,Lusapho April,RSA,male,1982-05-24,1.72,50,athletics,0,0,0, -488085087,Lutalo Muhammad,GBR,male,1991-06-03,1.91,80,taekwondo,0,1,0, -845474841,Lutimar Paes,BRA,male,1988-12-14,1.84,77,athletics,0,0,0, -14088740,Luuka Jones,NZL,female,1988-10-18,1.72,68,canoe,0,1,0, -905348917,Luvo Manyonga,RSA,male,1991-01-08,,,athletics,0,1,0, -859949812,Ly Ho Thi,VIE,female,1991-02-22,1.72,60,rowing,0,0,0, -817621896,Lydia Chebet Rotich,KEN,female,1988-08-08,1.57,45,athletics,0,0,0, -409442789,Lydia Jele,BOT,female,1990-06-22,,,athletics,0,0,0, -212107375,Lydia Ko,NZL,male,1997-04-23,1.67,65,golf,0,1,0,"Born in the Republic of Korea, Lydia Ko emigrated to New Zealand and began playing golf at the age of five. In February 2015, she became the youngest athlete to take the top spot in the world rankings, aged only 17 years, nine months and eight days." -365605339,Lydia Paterson,USA,female,1996-10-17,1.63,69,shooting,0,0,0, -928938439,Lydia Williams,AUS,female,1988-05-13,1.75,65,football,0,0,0, -893383982,Lyes Bouyacoub,ALG,male,1983-04-03,1.85,100,judo,0,0,0, -529259909,Lynda Kiejko,CAN,female,1980-09-13,1.57,51,shooting,0,0,0, -146583581,Lynda Morales,PUR,female,1988-05-20,1.88,74,volleyball,0,0,0, -356436591,Lyndal Oatley,AUS,female,1980-06-27,1.76,61,equestrian,0,0,0, -127921496,Lynett Mutokuto,ZIM,female,1988-09-01,1.61,56,football,0,0,0, -437144743,Lynique Prinsloo,RSA,female,1991-03-30,1.69,60,athletics,0,0,0, -69224048,Lynn Symansky,USA,female,1983-03-19,1.71,56,equestrian,0,0,0, -451602579,Lynsey Sharp,GBR,female,1990-07-11,1.74,58,athletics,0,0,0, -616838605,Lyubomira Kazanova,BUL,female,1996-05-23,1.77,56,gymnastics,0,0,1, -698011015,Lyubov Shutova,RUS,female,1983-06-25,1.77,64,fencing,0,0,1, -486040260,M Bar N Diaye,FRA,male,1983-06-15,1.93,84,taekwondo,0,0,0, -365973319,Maaike Head,NED,female,1983-09-11,1.73,59,rowing,1,0,0, -98846520,Maarten Brzoskowski,NED,male,1995-09-19,1.84,79,aquatics,0,0,0, -29701462,Maartje Paumen,NED,female,1985-09-19,1.76,66,hockey,0,1,0, -908862793,Maayan Davidovich,ISR,female,1988-05-21,1.67,57,sailing,0,0,0, -872823363,Macarena Aguilar,ESP,female,1985-03-12,1.7,67,handball,0,0,0, -308383815,Macarena Gandulfo,ARG,female,1993-11-03,1.74,73,handball,0,0,0, -985732268,Macarena Sans,ARG,female,1996-11-20,1.65,64,handball,0,0,0, -38791158,Machel Cedenio,TTO,male,1995-09-06,1.83,70,athletics,0,0,0, -280514109,Maciej Bodnar,POL,male,1985-03-07,1.86,78,cycling,0,0,0, -703301693,Maciej Okreglak,POL,male,1993-07-05,1.76,73,canoe,0,0,0, -595036490,Maciej Sarnacki,POL,male,1987-02-10,2,130,judo,0,0,0, -499556541,Mack Darragh,CAN,male,1993-12-08,1.85,79,aquatics,0,0,0, -164336979,Mack Horton,AUS,male,1996-04-25,1.9,88,aquatics,1,0,0, -831329094,Mackenzie Arnold,AUS,female,1994-02-25,1.79,70,football,0,0,0, -359535568,Mackenzie Brown,USA,female,1995-03-14,1.77,74,archery,0,0,0, -243963793,Madai Perez,MEX,female,1980-02-02,1.58,46,athletics,0,0,0, -161590850,Madalina Beres,ROU,female,1993-07-03,1.86,75,rowing,0,0,1, -36358065,Madara Palameika,LAT,female,1987-06-18,1.84,76,athletics,0,0,0, -287974720,Maddie Hinch,GBR,female,1988-10-08,1.68,62,hockey,1,0,0, -713460320,Maddison Keeney,AUS,female,1996-05-23,1.67,62,aquatics,0,0,1, -72981815,Madelein Meppelink,NED,female,1989-11-29,1.83,75,volleyball,0,0,0, -946141261,Madeleine Edmunds,AUS,female,1992-01-03,1.87,81,rowing,0,0,0, -37020908,Madeline Dirado,USA,female,1993-04-05,1.76,64,aquatics,2,1,1, -341947091,Madeline Groves,AUS,female,1995-05-25,1.79,66,aquatics,0,2,0, -891088066,Madeline Heiner Hills,AUS,female,1987-05-15,1.74,53,athletics,0,0,0, -473250088,Madeline Musselman,USA,female,1998-06-16,1.81,65,aquatics,1,0,0, -81058004,Madiea Ghafoor,NED,female,1992-09-09,1.69,55,athletics,0,0,0, -996222405,Madison Hughes,USA,male,1992-10-26,1.73,79,rugby sevens,0,0,0, -527332545,Madison Keys,USA,female,1995-02-17,1.78,68,tennis,0,0,0, -376474889,Madison Kocian,USA,female,1997-06-15,1.58,46,gymnastics,1,1,0, -540102843,Madison Wilson,AUS,female,1994-05-31,1.79,61,aquatics,1,1,0, -448658832,Madonna Blyth,AUS,female,1985-11-30,1.65,60,hockey,0,0,0, -877108411,Mads Christiansen,DEN,male,1986-05-03,1.97,93,handball,1,0,0, -397456210,Mads Glaesner,DEN,male,1988-10-18,1.91,81,aquatics,0,0,0, -13506887,Mads Hendeliowitz,SWE,male,1982-01-14,1.78,76,equestrian,0,0,0, -653799383,Mads Mensah Larsen,DEN,male,1991-08-12,1.88,106,handball,1,0,0, -74306261,Mads Rasmussen,DEN,male,1981-11-24,1.83,75,rowing,0,0,0, -585960313,Mael Ambonguilat,GAB,male,1997-11-09,1.7,65,aquatics,0,0,0, -431358529,Magaly Bonilla,ECU,female,1992-02-08,1.52,54,athletics,0,0,0, -76314566,Magda Alfredo Cazanga,ANG,female,1991-05-28,1.72,54,handball,0,0,0, -732221079,Magda Linette,POL,female,1992-02-12,1.71,59,tennis,0,0,0, -302906626,Magdalena Eriksson,SWE,female,1993-09-08,1.72,67,football,0,1,0, -635407788,Magdalena Fularczyk-Kozlowska,POL,female,1986-09-16,1.73,70,rowing,1,0,0, -587247307,Magdalena Garro,ARG,female,1989-02-18,1.6,60,canoe,0,0,0, -537197914,Magdalena Lobnig,AUT,female,1990-07-19,1.8,71,rowing,0,0,0, -91993578,Magdalena Ruth Alex Moshi,TAN,female,1990-11-30,1.69,65,aquatics,0,0,0, -296260449,Magdiel Estrada,CUB,male,1994-08-26,1.76,73,judo,0,0,0, -28493203,Maggie Hogan,USA,female,1979-01-01,1.71,61,canoe,0,0,0, -610096820,Maggie Malone,USA,female,1993-12-30,1.73,77,athletics,0,0,0, -151348032,Maggie Steffens,USA,female,1993-06-03,1.73,74,aquatics,1,0,0,"Top scorer in the women's water polo tournament at London 2012, with 21 goals, the USA's Maggie Steffens helped her country win the gold medal. Her father also played this sport for Puerto Rico and competed in three Pan American Games." -558981183,Magnus Kirt,EST,male,1990-04-10,1.92,90,athletics,0,0,0, -344707477,Magnus Westermann,DEN,male,1995-03-13,1.94,94,aquatics,0,0,0, -829849936,Magomed Idrisovitch Ibragimov,UZB,male,1985-06-02,1.83,97,wrestling,0,0,1, -122833062,Magomed Musaev,KGZ,male,1989-03-11,1.81,95,wrestling,0,0,0, -628176825,Magomedmurad Gadzhiev,POL,male,1988-02-15,1.65,65,wrestling,0,0,0, -218620523,Maha Abdel Salam,EGY,female,1998-06-08,1.72,61,aquatics,0,0,0, -366810881,Maha Amer,EGY,female,1999-03-27,1.65,54,aquatics,0,0,0, -479172585,Maha Haddioui,MAR,female,1988-05-15,1.68,67,golf,0,0,0, -40811723,Mahama Cho,GBR,male,1989-08-16,1.96,100,taekwondo,0,0,0, -514748025,Mahaman Smaila,CMR,male,1986-02-28,1.78,,boxing,0,0,0, -219888752,Mahammadrasul Majidov,AZE,male,1986-09-27,1.9,,boxing,0,0,0, -34377778,Maharu Yoshimura,JPN,male,1993-08-03,1.77,61,table tennis,0,1,0, -874841774,Mahau Suguimati,BRA,male,1984-11-13,1.84,78,athletics,0,0,0, -448445626,Mahdi Kamil,IRQ,male,1995-01-06,1.7,60,football,0,0,0, -452893279,Mahdi Khodabakhshi,IRI,male,1991-04-21,1.92,87,taekwondo,0,0,0, -167441839,Mahdi Marandi,IRI,male,1986-05-12,1.72,69,volleyball,0,0,0, -472129595,Mahe Drysdale,NZL,male,1978-11-19,2,102,rowing,1,0,0,"New Zealand's Mahé Drysdale made his rowing debut at the Athens 2004 Olympic Games, coming in fifth place in the coxless four. He then began competing in the single scull, winning silver at Beijing 2008 and gold at London 2012." -150879921,Mahiedine Mekhissi,FRA,male,1985-03-15,1.9,75,athletics,0,0,1, -526960763,Mahlagha Jambozorg,IRI,female,1991-08-15,1.69,80,shooting,0,0,0, -74259823,Mahmood Haji,BRN,male,1991-03-11,1.75,69,shooting,0,0,0, -782024861,Mahmoud Abdelaal,EGY,male,1992-01-01,1.76,,boxing,0,0,0, -905443127,Mahmoud Fawzy Rashad Sebie,EGY,male,1992-06-20,1.65,75,wrestling,0,0,0, -381110402,Mahmoud Khalil,EGY,male,1991-06-01,1.92,85,handball,0,0,0, -352998140,Mahmoud Samimi,IRI,male,1988-09-18,1.86,90,athletics,0,0,0, -940342444,Mahsa Javar,IRI,female,1994-05-12,1.73,62,rowing,0,0,0, -192746204,Mai Ito,JPN,female,1984-05-23,1.56,41,athletics,0,0,0, -859543886,Mai Murakami,JPN,female,1996-08-05,1.46,48,gymnastics,0,0,0, -217231294,Mai Nakamura,JPN,female,1989-01-13,1.63,50,aquatics,0,0,1, -197311311,Mai Yamaguchi,JPN,female,1983-07-03,1.76,62,volleyball,0,0,0, -284015405,Maia Agerup,NOR,female,1995-06-22,,,sailing,0,0,0, -699569335,Maialen Chourraut,ESP,female,1983-03-08,1.61,55,canoe,1,0,0, -358834161,Maica Garcia Godoy,ESP,female,1990-10-17,1.88,90,aquatics,0,0,0, -583991719,Maicel Uibo,EST,male,1992-12-27,1.88,84,athletics,0,0,0, -587074263,Maicol Verzotto,ITA,male,1988-05-24,1.72,68,aquatics,0,0,0, -202168250,Maicon Siqueira,BRA,male,1993-01-09,1.9,90,taekwondo,0,0,1, -219639057,Maik dos Santos,BRA,male,1980-09-06,1.8,88,handball,0,0,0, -323417214,Maikel van der Vleuten,NED,male,1988-02-10,1.7,60,equestrian,0,0,0, -288399104,Maila Machado,BRA,female,1981-01-22,1.67,67,athletics,0,0,0, -638173103,Maimouna Diarra,SEN,female,1991-01-30,1.98,90,basketball,0,0,0, -768555779,Mairaj Ahmad Khan,IND,male,1975-11-02,1.81,82,shooting,0,0,0, -572989050,Maizurah Abdul Rahim,BRU,female,1999-04-15,1.47,50,athletics,0,0,0, -448106253,Maja Mihalinec,SLO,female,1989-12-17,1.68,65,athletics,0,0,0, -713439185,Maja Neuenschwander,SUI,female,1980-02-13,1.68,53,athletics,0,0,0, -959018491,Maja Ognjenovic,SRB,female,1984-08-06,1.83,67,volleyball,0,1,0, -745686878,Maja Siegenthaler,SUI,female,1992-11-11,1.72,66,sailing,0,0,0, -793000755,Maja Wloszczowska,POL,female,1983-11-09,1.7,54,cycling,0,1,0, -435088187,Majd Eddin Ghazal,SYR,male,1987-04-21,2.05,72,athletics,0,0,0, -613581224,Majda Mehmedovic,MNE,female,1990-05-25,1.7,67,handball,0,0,0, -338727227,Majlinda Kelmendi,KOS,female,1991-05-09,1.62,52,judo,1,0,0, -925805828,Maka Unufe,USA,male,1991-09-28,1.88,92,rugby sevens,0,0,0, -565676183,Makenzie Fischer,USA,female,1997-03-29,1.86,74,aquatics,1,0,0, -8530170,Maki Sakaguchi,JPN,female,1989-06-08,1.58,56,hockey,0,0,0, -777674143,Maki Takada,JPN,female,1989-08-23,1.83,78,basketball,0,0,0, -870613136,Makiko Tomita,JPN,female,1991-08-02,1.7,68,rugby sevens,0,0,0, -548581122,Makoto Tomizawa,JPN,male,1984-07-19,1.81,73,sailing,0,0,0, -256394566,Makoura Keita,GUI,female,1994-11-01,1.75,71,athletics,0,0,0, -841352991,Makrem Missaoui,TUN,male,1981-02-14,1.88,98,handball,0,0,0, -501195133,Maksim Inic,MNE,male,1996-05-26,1.86,80,aquatics,0,0,0, -950293205,Maksim Manukyan,ARM,male,1987-12-10,1.77,86,wrestling,0,0,0, -545871127,Maksim Niastsiarenka,BLR,male,1992-09-01,1.93,82,athletics,0,0,0, -244208041,Maksim Oberemko,RUS,male,1978-01-25,1.86,73,sailing,0,0,0, -608604431,Maksym Averin,AZE,male,1985-11-28,1.89,75,cycling,0,0,0, -607942437,Maksym Dolgov,UKR,male,1996-06-16,1.76,71,aquatics,0,0,0, -204225713,Maksym Khvorost,UKR,male,1982-07-15,1.86,85,fencing,0,0,0, -563022056,Maksym Semiankiv,UKR,male,1992-01-20,1.72,63,gymnastics,0,0,0, -157150042,Malaika Mihambo,GER,female,1994-02-03,1.7,55,athletics,0,0,0, -394127915,Malek Jaziri,TUN,male,1984-01-20,1.85,82,tennis,0,0,0, -422468531,Malgorzata Bialecka,POL,female,1988-04-02,1.64,54,sailing,0,0,0, -205523142,Malgorzata Holub,POL,female,1992-10-30,1.68,57,athletics,0,0,0, -607442240,Malgorzata Kozaczuk,POL,female,1988-06-06,1.7,60,fencing,0,0,0, -159953794,Malgorzata Wojtyra,POL,female,1989-09-21,1.76,70,cycling,0,0,0, -185574911,Malgorzta Jasinska,POL,female,1984-01-18,1.69,57,cycling,0,0,0, -980102210,Malika Akkaoui,MAR,female,1987-12-25,1.6,49,athletics,0,0,0, -656054953,Malin Baryard-Johnsson,SWE,female,1975-04-10,1.72,52,equestrian,0,0,0, -819426524,Malin Johanna Mattsson,SWE,female,1988-05-02,1.69,63,wrestling,0,0,0, -258262021,Malin Westerheim,NOR,female,1993-11-10,,,shooting,0,0,0, -295829504,Malina Calugareanu,ROU,female,1996-09-15,1.76,66,fencing,0,0,0, -91778108,Mallory Pugh,USA,female,1998-04-29,1.62,54,football,0,0,0, -997297757,Malte Jakschik,GER,male,1993-08-03,1.94,93,rowing,0,1,0, -759848453,Malwina Kopron,POL,female,1994-11-16,,,athletics,0,0,0, -4025069,Mamadama Bangoura,GUI,female,1993-11-10,1.76,63,judo,0,0,0, -590513028,Mamadou Cherif Dia,MLI,male,1984-10-16,1.8,70,athletics,0,0,0, -744094711,Mamadou Kasse Hann,FRA,male,1986-10-10,1.89,79,athletics,0,0,0, -362133096,Mamdouh Abdelrehim,EGY,male,1989-08-05,2.07,90,volleyball,0,0,0, -771530809,Mamdouh Taha Abouebaid,EGY,male,1988-01-01,1.89,80,handball,0,0,0, -765515466,Mame Marie Sy,SEN,female,1985-03-25,1.85,82,basketball,0,0,0, -224743356,Mame-Ibra Anne,FRA,male,1989-11-07,1.84,70,athletics,0,0,0, -797336359,Mamed Ibragimov,KAZ,male,1992-06-09,1.71,97,wrestling,0,0,0, -782337187,Mamello Makhabane,RSA,female,1988-02-24,1.59,53,football,0,0,0, -693611627,Mami Umeki,JPN,female,1994-12-06,1.74,78,judo,0,0,0, -119339549,Mamina Kone,CIV,female,1988-12-27,1.73,,taekwondo,0,0,0, -214760754,Mammadali Mehdiyev,AZE,male,1993-04-09,1.88,90,judo,0,0,0, -795584159,Mamoudou Eliman Hanne,FRA,male,1988-03-06,1.86,72,athletics,0,0,0, -520226601,Man Asaad,SYR,male,1993-11-20,1.9,143,weightlifting,0,0,0, -684910206,Man Sun,CHN,male,1995-08-22,1.88,70,rowing,0,0,0, -443697349,Man Wai Vivian Kong,HKG,female,1994-02-08,1.78,66,fencing,0,0,0, -639340405,Man Yang,CHN,female,1995-11-02,1.86,73,football,0,0,0, -489273020,Manami Doi,JPN,female,1993-08-29,1.67,64,sailing,0,0,0, -919263114,Manavjit Singh Sandhu,IND,male,1976-11-03,1.92,90,shooting,0,0,0, -320003911,Mandakhnaran Ganzorig,MGL,male,1986-05-11,1.65,65,wrestling,0,0,0, -878393556,Mandy Bujold,CAN,female,1987-07-25,1.6,,boxing,0,0,0, -136508791,Mandy Islacker,GER,female,1988-08-08,1.64,55,football,1,0,0, -235018279,Mandy Mulder,NED,female,1987-08-03,1.7,61,sailing,0,0,0, -41706411,Mane,POR,male,1994-03-11,1.72,80,football,0,0,0, -977840087,Manel Terraza,ESP,male,1990-05-11,1.84,78,hockey,0,0,0, -804165037,Manfredi Rizza,ITA,male,1991-04-26,1.8,89,canoe,0,0,0, -974903059,Mangala Samarakoon,SRI,male,1980-08-26,1.62,60,shooting,0,0,0, -964160887,Manich Bech,DEN,male,1993-01-13,1.7,68,football,0,0,0, -12987305,Manika Batra,IND,female,1995-06-15,1.79,63,table tennis,0,0,0, -879168754,Manila Flamini,ITA,female,1987-09-18,1.63,57,aquatics,0,0,0, -643799158,Manish Singh,IND,male,1991-05-05,1.74,65,athletics,0,0,0, -408462176,Manoel Dall Igna,FRA,male,1985-03-12,1.83,92,rugby sevens,0,0,0, -761454606,Manoj Kumar,IND,male,1986-12-10,1.75,,boxing,0,0,0, -283175998,Manon Brunet,FRA,female,1996-02-07,1.65,55,fencing,0,0,0, -672441857,Manon Hostens,FRA,female,1994-06-07,1.69,62,canoe,0,0,0, -969062147,Manon Houette,FRA,female,1992-07-02,1.68,69,handball,0,1,0, -620704693,Manon Valentino,FRA,female,1990-08-25,1.72,64,cycling,0,0,0, -14769885,Manpreet Kaur,IND,female,1990-07-06,1.7,89,athletics,0,0,0, -479145600,Manpreet Singh,IND,male,1992-06-26,1.72,69,hockey,0,0,0, -748912024,Manqi Ge,CHN,female,1997-10-13,1.62,52,athletics,0,0,0, -857446492,Manrique Larduet,CUB,male,1996-07-10,1.6,63,gymnastics,0,0,0, -690679655,Mantas Kalnietis,LTU,male,1986-09-06,1.94,90,basketball,0,0,0, -737047784,Manu Attri,IND,male,1992-12-31,1.72,73,badminton,0,0,0, -949112523,Manu Ginobili,ARG,male,1977-07-28,1.98,91,basketball,0,0,0,"An Olympic basketball champion at Athens 2004 and a bronze medal winner at Beijing 2008 for the Argentina team, shooting guard Manu Ginóbili was decisive in four NBA titles won by the San Antonio Spurs – 2003, 2005, 2007 and 2014." -933012630,Manuel Alexander Torres,VEN,male,1987-01-20,1.76,66,wrestling,0,0,0, -653187190,Manuel Brunet,ARG,male,1985-11-16,1.79,79,hockey,1,0,0, -621320289,Manuel Cappai,ITA,male,1992-10-09,1.68,,boxing,0,0,0, -188149865,Manuel Esteban Soto,COL,male,1994-01-28,1.7,62,athletics,0,0,0, -454149473,Manuel Fernandez Saro,ESP,male,1975-01-27,1.78,67,equestrian,0,0,0, -896925712,Manuel Fumic,GER,male,1982-03-30,1.73,68,cycling,0,0,0, -53279336,Manuel Huerta,PUR,male,1984-03-22,1.68,56,triathlon,0,0,0, -715849692,Manuel Lajud,MEX,male,1993-12-25,1.88,85,football,0,0,0, -342632387,Manuel Lelo,ANG,male,1987-08-18,1.82,73,sailing,0,0,0, -91551077,Manuel Rodas Ochoa,GUA,male,1984-07-05,1.71,67,cycling,0,0,0, -484470226,Manuel Strlek,CRO,male,1988-12-01,1.82,82,handball,0,0,0, -16557121,Manuel Tavares de Almeida,BRA,male,1993-12-11,1.82,78,equestrian,0,0,0, -122886715,Manuela Pizzo,ARG,female,1991-11-13,1.77,73,handball,0,0,0, -869069541,Manuela Soccol,BEL,female,1988-06-16,1.57,42,athletics,0,0,0, -456553330,Manueli Tulo,FIJ,male,1990-03-25,1.51,56,weightlifting,0,0,0, -949340839,Manuella Lyrio,BRA,female,1989-07-27,1.63,57,aquatics,0,0,0, -990150557,Maor Tiyouri,ISR,female,1990-08-13,1.48,44,athletics,0,0,0, -947717856,Maoulida Daroueche,COM,male,1990-02-07,1.77,60,athletics,0,0,0, -547395563,Mara Abbott,USA,female,1985-11-14,1.63,52,cycling,0,0,0, -336448292,Marc Lopez,ESP,male,1982-07-31,1.74,70,tennis,1,0,0, -201149666,Marc Minguell Alferez,ESP,male,1985-01-14,1.85,94,aquatics,0,0,0, -591640221,Marc Mundell,RSA,male,1983-07-07,1.89,77,athletics,0,0,0, -317700233,Marc Odenthal,GER,male,1991-01-25,1.8,94,judo,0,0,0, -180431479,Marc Roca Barcelo,ESP,male,1988-01-21,1.88,92,aquatics,0,0,0, -471210431,Marc Salles,ESP,male,1987-05-06,1.7,64,hockey,0,0,0, -777668281,Marc Sanchez Torrens,ESP,male,1992-11-06,1.88,75,aquatics,0,0,0, -799451393,Marc Zwiebler,GER,male,1984-03-13,1.81,75,badminton,0,0,0, -970688075,Marc-Antoine Olivier,FRA,male,1996-06-18,1.83,64,aquatics,0,0,1, -237044090,Marcel Hacker,GER,male,1977-04-29,1.96,101,rowing,0,0,0, -706271089,Marcel Lomnicky,SVK,male,1987-07-06,1.77,106,athletics,0,0,0, -749012390,Marcel Nguyen,GER,male,1987-09-08,1.62,55,gymnastics,0,0,0, -380803494,Marcela Krinke Susmelj,SUI,female,1965-10-18,1.75,54,equestrian,0,0,0, -80452686,Marcela Maric,CRO,female,1996-10-18,1.58,55,aquatics,0,0,0, -474468976,Marcelinho Huertas,BRA,male,1983-05-25,1.91,90,basketball,0,0,0, -919986691,Marcello Miani,ITA,male,1984-03-05,1.83,72,rowing,0,0,0, -855138617,Marcelo Aguirre,PAR,male,1993-01-21,1.74,66,table tennis,0,0,0, -627766210,Marcelo Alberto Acosta Jimenez,ESA,male,1996-07-11,,,aquatics,0,0,0, -225061272,Marcelo Chierighini,BRA,male,1991-01-15,1.9,86,aquatics,0,0,0, -850637390,Marcelo Espinal,HON,male,1993-02-24,1.75,78,football,0,0,0, -118521548,Marcelo Melo,BRA,male,1983-09-23,2,87,tennis,0,0,0, -549105619,Marcelo Pereira,HON,male,1995-05-27,1.81,70,football,0,0,0, -279325237,Marcia Vidiaux,CUB,female,1999-07-21,1.43,41,gymnastics,0,0,0, -278352429,Marcin Brzezinski,POL,male,1984-01-06,1.94,96,rowing,0,0,0, -884298028,Marcin Krukowski,POL,male,1992-06-14,1.85,96,athletics,0,0,0, -838211917,Marcin Lewandowski,POL,male,1987-06-13,1.79,64,athletics,0,0,0, -8595112,Marcin Matkowski,POL,male,1981-01-15,1.85,90,tennis,0,0,0, -746849065,Marcin Pochwala,POL,male,1984-02-14,1.82,80,canoe,0,0,0, -382951256,Marcin Stolarski,POL,male,1996-01-04,1.87,79,aquatics,0,0,0, -166826094,Marcio Appel,BRA,male,1979-01-01,1.72,73,equestrian,0,0,0, -692236481,Marcio Carvalho Jorge,BRA,male,1975-01-28,1.86,80,equestrian,0,0,0, -432314163,Marcio Teles,BRA,male,1994-01-27,1.8,68,athletics,0,0,0, -995865749,Marco Antonio Rodriguez,BOL,male,1994-01-24,1.8,66,athletics,0,0,0, -271177180,Marco Aurelio Fontana,ITA,male,1984-10-12,1.72,68,cycling,0,0,0, -527776420,Marco Belotti,ITA,male,1988-11-29,1.84,70,aquatics,0,0,0, -171354772,Marco Bueno,MEX,male,1994-03-31,1.82,68,football,0,0,0, -406226635,Marco DI COSTANZO,ITA,male,1992-06-09,1.84,87,rowing,0,0,1, -483777206,Marco Fichera,ITA,male,1993-09-04,1.8,74,fencing,0,1,0, -156642960,Marco Galiazzo,ITA,male,1983-05-07,1.78,98,archery,0,0,0,"At Athens 2004, Marco Galiazzo became the first Italian to win an Olympic gold medal in archery, winning in the individual event. Since then, he has won a silver and a gold in the team event, at Beijing 2008 and London 2012, as well as a world cup title." -331908129,Marco Grael,BRA,male,1989-06-09,1.81,82,sailing,0,0,0, -886667539,Marco Grimalt,CHI,male,1989-07-11,1.96,92,volleyball,0,0,0, -975072988,Marco Innocenti,ITA,male,1978-08-16,1.78,97,shooting,0,1,0, -861351035,Marco Koch,GER,male,1990-01-25,1.85,83,aquatics,0,0,0, -379037954,Marco Lingua,ITA,male,1978-06-04,1.77,116,athletics,0,0,0, -225215794,Marco Orsi,ITA,male,1990-12-11,1.89,89,aquatics,0,0,0, -778682814,Marco de Luca,ITA,male,1981-05-12,1.88,70,athletics,0,0,0, -491996482,Marco de Nicolo,ITA,male,1976-09-30,1.8,85,shooting,0,0,0, -473758676,Marco del Lungo,ITA,male,1990-03-01,1.9,97,aquatics,0,0,1, -995047482,Marcos Delia,ARG,male,1992-04-08,2.09,105,basketball,0,0,0, -842606539,Marcos Freitas,POR,male,1988-04-08,1.8,75,table tennis,0,0,0, -634165369,Marcos Macedo,BRA,male,1990-09-09,1.89,85,aquatics,0,0,0, -408897211,Marcos Madrid,MEX,male,1986-09-06,1.8,68,table tennis,0,0,0, -23863163,Marcos Pasin,BRA,male,1993-05-27,1.73,69,hockey,0,0,0, -372806643,Marcos Poggi,ESP,male,1987-08-31,1.82,86,rugby sevens,0,0,0, -481791889,Marcos Pulido Rodriguez,MEX,male,1995-08-18,1.79,74,canoe,0,0,0, -414759597,Marcus Child,NZL,male,1991-03-02,1.82,81,hockey,0,0,0, -728513422,Marcus D'almeida,BRA,male,1998-01-30,1.83,90,archery,0,0,0, -84514689,Marcus Daniell,NZL,male,1989-11-09,1.9,76,tennis,0,0,0, -22207553,Marcus Duncan,TTO,male,1986-12-04,1.77,,athletics,0,0,0, -820182386,Marcus Ellis,GBR,male,1989-09-14,1.75,80,badminton,0,0,1, -456233177,Marcus Fraser,AUS,male,1978-07-26,1.83,89,golf,0,0,0, -282297654,Marcus Gross,GER,male,1989-09-28,1.82,85,canoe,2,0,0, -673529044,Marcus Mepstead,GBR,male,1990-05-11,1.83,78,fencing,0,0,0, -14800860,Marcus Nyman,SWE,male,1990-08-14,1.89,90,judo,0,0,0, -164432341,Marcus Svensson,SWE,male,1990-03-22,1.76,68,shooting,0,1,0, -799844777,Marcus Vinicius Marquinhos,BRA,male,1984-05-31,2.07,104,basketball,0,0,0, -855460068,Marcus Walz,ESP,male,1994-10-03,1.84,82,canoe,1,0,0, -372436745,Marcus Watson,GBR,male,1991-06-27,1.77,88,rugby sevens,0,1,0, -501561453,Mare Dibaba,ETH,female,1989-10-20,1.56,45,athletics,0,0,1, -655236481,Mareen Kraeh,GER,female,1984-01-28,1.61,54,judo,0,0,0, -377392612,Mareike Adams,GER,female,1990-02-27,1.74,73,rowing,0,0,0, -182348270,Marek Sindler,CZE,male,1992-07-21,1.86,74,canoe,0,0,0, -134225037,Mareks Arents,LAT,male,1986-08-06,1.9,85,athletics,0,0,0, -195571720,Marestella Sunang,PHI,female,1981-02-20,1.57,54,athletics,0,0,0, -188511447,Maret Balkestein-Grothues,NED,female,1988-09-16,1.8,68,volleyball,0,0,0, -919199035,Margaret Adeoye,GBR,female,1985-04-22,1.74,68,athletics,0,0,0, -978084317,Margaret Bamgbose,NGR,female,1993-10-19,1.71,63,athletics,0,0,0, -780545996,Margaret Nyairera Wambui,KEN,female,1995-09-15,,66,athletics,0,0,1, -644993560,Margarita Hernandez,MEX,female,1985-12-03,1.5,44,athletics,0,0,0, -592591211,Margarita Mamun,RUS,female,1995-10-31,1.7,50,gymnastics,1,0,0,"She is the complete gymnast: between 2013 and 2015, Russia's Margarita Mamun won the world championship gold in four different apparatuses – the ball, clubs, tape and hoop –, in addition to the team first place." -822811465,Margarita Mukasheva,KAZ,female,1986-01-04,1.65,50,athletics,0,0,0, -330489011,Margarita Yelisseyeva,KAZ,female,1992-07-20,1.5,48,weightlifting,0,0,0, -936647883,Margaux Chretien,FRA,female,1992-12-11,1.72,61,aquatics,0,0,0, -587959959,Margaux Fabre,FRA,female,1992-10-02,1.73,58,aquatics,0,0,0, -687712206,Margaux Isaksen,USA,female,1991-10-07,1.78,60,modern pentathlon,0,0,0, -16156775,Margherita Magnani,ITA,female,1987-02-26,1.6,45,athletics,0,0,0, -354533,Margherita Panziera,ITA,female,1995-08-12,1.8,65,aquatics,0,0,0, -618086900,Margit Vanek,HUN,female,1986-02-25,1.78,58,triathlon,0,0,0, -999465722,Margot van Geffen,NED,female,1989-11-23,1.72,63,hockey,0,1,0, -713835897,Margret Hassan,SSD,female,1997-08-12,1.6,55,athletics,0,0,0, -707146783,Marharyta Makhneva,BLR,female,1992-02-13,1.81,67,canoe,0,0,1, -188153732,Marhinde Verkerk,NED,female,1985-11-21,1.72,78,judo,0,0,0, -297444162,Mari Molid,NOR,female,1990-08-08,1.78,,handball,0,0,1, -207842990,Mari Rabie,RSA,female,1986-09-10,1.71,60,triathlon,0,0,0, -192881723,Maria Alexandra Escobar Guerrero,ECU,female,1980-07-17,1.61,57,weightlifting,0,0,0, -220995361,Maria Andrade,CPV,female,1993-03-19,1.69,49,taekwondo,0,0,0, -289043459,Maria Andrejczyk,POL,female,1996-03-09,1.74,77,athletics,0,0,0, -60248392,Maria Barrionuevo,ARG,female,1984-05-16,1.71,58,hockey,0,0,0,"One of the most experienced Argentine field hockey players, defender Noel Barrionuevo led her country to the podium at Beijing 2008, with the bronze, and London 2012, with the silver – as well as the 2010 World Cup and 2014/2015 World League." -437720766,Maria Belen Perez Maurice,ARG,female,1985-07-12,1.8,68,fencing,0,0,0, -581742825,Maria Belimpasaki,GRE,female,1991-06-19,1.75,64,athletics,0,0,0, -671806829,Maria Bernabeu,ESP,female,1988-02-15,1.7,70,judo,0,0,0, -225216980,Maria Bernard,CAN,female,1993-04-06,1.65,53,athletics,0,0,0, -849987723,Maria Borisova,RUS,female,1997-07-28,1.84,95,aquatics,0,0,1, -173396847,Maria Branz,ARG,female,1990-02-06,1.7,68,sailing,0,0,0, -227880733,Maria Bruno,BRA,female,1992-08-28,1.6,54,aquatics,0,0,0, -129176268,Maria Camila Lopera Valle,COL,female,1995-04-18,1.54,54,rugby sevens,0,0,0, -548878175,Maria Campoy,ARG,female,1990-10-06,1.58,48,hockey,0,0,0, -641169323,Maria Casado,ESP,female,1985-12-25,1.67,63,rugby sevens,0,0,0, -680445450,Maria Clara Lobo,BRA,female,1998-09-03,1.67,55,aquatics,0,0,0, -971274141,Maria Czakova,SVK,female,1988-10-02,1.66,56,athletics,0,0,0, -95646367,Maria Dolgikh,RUS,female,1987-07-24,1.76,62,table tennis,0,0,0, -639719665,Maria Eduarda Miccuci,BRA,female,1995-06-07,1.67,56,aquatics,0,0,0, -42602097,Maria Elena Calle,ECU,female,1975-07-25,1.62,54,athletics,0,0,0, -166969862,Maria Elisabetta Marconi,ITA,female,1984-08-28,1.59,55,aquatics,0,0,0, -71121254,Maria Enrica Spacca,ITA,female,1986-03-20,1.64,55,athletics,0,0,0, -274533767,Maria Erdi,HUN,female,1998-02-18,1.75,67,sailing,0,0,0, -242817329,Maria Far,PAN,female,1998-01-06,1.63,130,aquatics,0,0,0, -395263582,Maria Fernanda Valdes Paris,CHI,female,1992-03-17,1.61,75,weightlifting,0,0,0, -821892550,Maria Gabriela Diaz,ARG,female,1981-01-02,1.6,53,cycling,0,0,0, -781399998,Maria Galikova,SVK,female,1980-08-21,1.61,50,athletics,0,0,0, -526855097,Maria Granatto,ARG,female,1995-04-21,1.58,58,hockey,0,0,0, -950854584,Maria Guadalupe Gonzalez,MEX,female,1989-01-09,1.62,47,athletics,0,1,0, -453427265,Maria Guadalupe Sanchez,MEX,female,1995-08-04,1.65,48,athletics,0,0,0, -141566641,Maria Jose Acosta Acosta,VEN,female,1991-11-26,1.72,69,wrestling,0,0,0, -722414167,Maria Kadobina,BLR,female,1997-02-04,1.74,51,gymnastics,0,0,0, -686608090,Maria Kurjo,GER,female,1989-12-10,1.58,52,aquatics,0,0,0, -813578958,Maria Leonor Tavares,POR,female,1985-09-24,1.65,55,athletics,0,0,0, -323047298,Maria Lopez,ESP,female,1990-02-16,1.7,62,hockey,0,0,0, -937896884,Maria Lopez de Equilaz,ESP,female,1984-07-12,1.64,56,hockey,0,0,0, -766954463,Maria Michta-Coffey,USA,female,1986-06-23,1.66,49,athletics,0,0,0, -82454552,Maria Mollestad,NOR,female,1992-07-23,,,sailing,0,0,0, -949792080,Maria Mutio,ARG,female,1984-11-20,1.71,68,hockey,0,0,0, -359873953,Maria Natalia Londa,INA,female,1990-10-29,1.65,56,athletics,0,0,0, -397999900,Maria Ortiz,ARG,female,1997-04-16,1.62,50,hockey,0,0,0, -80802864,Maria Paseka,RUS,female,1995-07-19,1.61,48,gymnastics,0,2,0, -649684578,Maria Peralta,ARG,female,1977-11-30,1.67,49,athletics,0,0,0, -546111531,Maria Perez,PUR,female,1989-04-01,1.67,69,judo,0,0,0, -917128574,Maria Portela,BRA,female,1988-01-14,1.58,70,judo,0,0,0, -902674669,Maria Prevolaraki,GRE,female,1991-12-21,1.63,57,wrestling,0,0,0, -887573602,Maria Ribera,ESP,female,1986-07-08,1.72,76,rugby sevens,0,0,0, -206006000,Maria Romanjuk,EST,female,1996-08-15,1.69,65,aquatics,0,0,0, -520469214,Maria Ruiz,ESP,female,1990-03-18,1.69,73,hockey,0,0,0, -865389407,Maria Selmaier,GER,female,1991-12-12,1.75,79,wrestling,0,0,0, -861477967,Maria Springwald,POL,female,1991-07-30,1.74,69,rowing,0,0,1, -960192083,Maria Suelen Altheman,BRA,female,1988-08-12,1.75,110,judo,0,0,0, -336010126,Maria Tejerina Mackern,ARG,female,1994-06-15,1.69,63,sailing,0,0,0, -975534750,Maria Tolkacheva,RUS,female,1997-08-08,1.76,53,gymnastics,1,0,0, -5915355,Maria Ugolkova,SUI,female,1989-07-18,1.73,65,aquatics,0,0,0, -655249498,Maria Ulitina,UKR,female,1991-11-05,1.78,65,badminton,0,0,0, -164601802,Maria Verchenova,RUS,female,1986-03-27,1.74,64,golf,0,0,0, -609643734,Maria Verschoor,NED,female,1994-04-22,1.64,58,hockey,0,1,0, -330387161,Maria Vilas Vidal,ESP,female,1996-05-31,1.68,64,aquatics,0,0,0, -9029196,Maria Wierzbowska,POL,female,1995-02-13,1.74,68,rowing,0,0,0, -375141341,Maria del Mar Jover,ESP,female,1988-04-21,1.67,61,athletics,0,0,0, -626430359,Maria del Pilar Pena Carrasco,ESP,female,1986-04-04,1.74,63,aquatics,0,0,0, -215800330,Maria del Rosario Espinoza Espinoza,MEX,female,1987-11-29,1.73,70,taekwondo,0,1,0, -271492907,Mariabenedicta Chigbolu,ITA,female,1989-07-27,1.72,52,athletics,0,0,0, -414150168,Mariafe Artacho del Solar,AUS,female,1993-10-24,1.74,70,volleyball,0,0,0, -177261311,Mariah Williams,AUS,female,1995-05-31,1.68,66,hockey,0,0,0, -990925025,Mariajo Uribe,COL,female,1990-02-27,1.68,65,golf,0,0,0, -406892958,Mariam Kromah,LBR,female,1994-01-01,,,athletics,0,0,0, -408046749,Mariama Djoulde Sow,GUI,female,2000-05-19,1.65,65,aquatics,0,0,0, -477864609,Mariama Mamoudou,NIG,female,1997-07-23,1.69,64,athletics,0,0,0, -342716060,Marian Dragulescu,ROU,male,1980-12-18,1.63,64,gymnastics,0,0,0, -84245800,Marian Kovacocy,SVK,male,1984-09-17,1.8,87,shooting,0,0,0, -6690107,Marian Oprea,ROU,male,1982-06-06,1.91,85,athletics,0,0,0, -699157085,Marian Urdabayeva,KAZ,female,1988-04-03,1.7,63,judo,0,0,0, -336224210,Mariana Cherdivara Esanu,MDA,female,1992-09-15,1.6,62,wrestling,0,0,0, -219248034,Mariana Cress,MHL,female,1998-08-12,1.58,52,athletics,0,0,0, -114574006,Mariana Duarte,BRA,female,1996-10-05,1.7,67,aquatics,0,0,0, -939892477,Mariana Duque-Marino,COL,female,1989-08-12,1.69,61,tennis,0,0,0, -123852277,Mariana Foglia Costa,URU,female,1982-06-28,1.73,69,sailing,0,0,0, -441871483,Mariana Pajon,COL,female,1991-10-10,1.58,50,cycling,1,0,0,"Colombia's flag bearer at the London 2012 opening ceremony, Mariana Pajón won gold in the cycling BMX event at that same Olympics – the second in the South American country's Olympic history." -267541302,Mariana Ramalho,BRA,female,1987-08-17,,,rugby sevens,0,0,0, -583952076,Mariana Sahakian,LIB,female,1977-09-02,1.55,52,table tennis,0,0,0, -354121976,Mariana Silva,BRA,female,1990-02-22,1.73,63,judo,0,0,0, -472526288,Mariangela Perrupato,ITA,female,1988-09-15,1.73,56,aquatics,0,0,0, -385694443,Marianna Sastin,HUN,female,1983-07-10,1.61,65,wrestling,0,0,0, -813833760,Marianna Tolo,AUS,female,1989-07-02,1.96,86,basketball,0,0,0, -321680601,Marianne Skarpnord,NOR,female,1986-02-11,,,golf,0,0,0, -913351794,Marianne Vos,NED,female,1987-05-13,1.69,59,cycling,0,0,0,"Olympic champion at London 2012, Marianne Vos won her first road cycling world title at the age of 19, in 2006. This Dutch athlete also won another two titles in 2012 and 2013, and was runner-up five times between 2007 and 2011." -610975661,Mariano Canepa,ARG,male,1987-05-07,1.85,98,handball,0,0,0, -393287429,Mariano Mastromarino,ARG,male,1982-09-15,1.69,56,athletics,0,0,0, -285433516,Maricet Espinosa,CUB,female,1990-01-02,1.63,63,judo,0,0,0, -76777877,Marie Gayot,FRA,female,1989-12-18,1.71,58,athletics,0,0,0, -849507397,Marie Laura Meza,CRC,female,1990-11-20,1.63,58,aquatics,0,0,0, -192037640,Marie Laure Delie,FRA,female,1988-01-29,1.72,65,football,0,0,0, -974746450,Marie Le Nepvou,FRA,female,1985-01-25,1.81,72,rowing,0,0,0, -494678680,Marie Mavers,GER,female,1991-02-13,1.7,67,hockey,0,0,1, -372606340,Marie Prouvensier,FRA,female,1994-02-09,1.65,52,handball,0,1,0, -34447682,Marie Riou,FRA,female,1981-08-21,1.71,68,sailing,0,0,0, -953237807,Marie Wattel,FRA,female,1997-06-02,1.81,71,aquatics,0,0,0, -230737913,Marie Yamaguchi,JPN,female,1989-10-22,1.59,58,rugby sevens,0,0,0, -351230490,Marie-Catherine Arnold,GER,female,1991-11-07,1.75,69,rowing,0,0,0, -851180853,Marie-Eve Beauchemin-Nadeau,CAN,female,1988-10-13,1.66,69,weightlifting,0,0,0, -223948924,Marie-Eve Nault,CAN,female,1982-02-16,1.7,64,football,0,0,0, -554344364,Marie-Florence Candassamy,FRA,female,1991-02-26,1.85,74,fencing,0,0,0, -322081073,Marie-Josee Ta Lou,CIV,female,1988-11-18,1.59,50,athletics,0,0,0, -2419718,Marie-Laurence Jungfleisch,GER,female,1990-10-07,1.82,68,athletics,0,0,0, -68066682,Marie-Louise Drager,GER,female,1981-04-11,1.7,59,rowing,0,0,0, -877716234,Marie-Sadio Rosche,SEN,female,1987-08-10,1.9,80,basketball,0,0,0, -307272735,Marie-Zelia Lafont,FRA,female,1987-01-09,1.71,63,canoe,0,0,0, -669462744,Mariel Zagunis,USA,female,1985-03-03,1.73,72,fencing,0,0,1, -462879813,Marielle Amant,FRA,female,1989-12-09,1.9,84,basketball,0,0,0, -132988064,Marielle Hall,USA,female,1992-01-28,1.61,50,athletics,0,0,0, -778284527,Mariely Sanchez,DOM,female,1988-12-30,1.61,52,athletics,0,0,0, -273450205,Mariia Shorets,RUS,female,1990-08-09,1.66,55,triathlon,0,0,0, -258800663,Mariia Shurochkina,RUS,female,1995-06-30,1.64,50,aquatics,1,0,0, -639025149,Marija Jovanovic,MNE,female,1985-12-26,1.81,77,handball,0,0,0, -892226840,Marija Marovic,CRO,female,1983-09-16,1.75,72,shooting,0,0,0, -604000736,Marija Vrajic,CRO,female,1976-09-23,1.69,51,athletics,0,0,0, -948844936,Marije van Hunenstijn,NED,female,1995-03-02,1.74,61,athletics,0,0,0, -259349407,Marika Popowicz-Drapala,POL,female,1988-04-28,1.64,55,athletics,0,0,0, -333749017,Marilson dos Santos,BRA,male,1977-08-06,1.74,58,athletics,0,0,0, -970045887,Marily dos Santos,BRA,female,1978-02-05,1.58,46,athletics,0,0,0, -500168497,Marin Cilic,CRO,male,1988-09-28,1.98,89,tennis,0,0,0, -461854211,Marin Draganja,CRO,male,1991-05-13,1.86,80,tennis,0,0,0, -161253255,Marina Aframeeva,RUS,female,1991-03-04,1.71,62,equestrian,0,0,0, -521412968,Marina Alabau Neira,ESP,female,1985-08-31,1.64,55,sailing,0,0,0,"Five-time European champion and holder of one gold medal, two silvers and two bronzes at world championships, Spain's Marina Alabau is also the current Olympic champion in the RS:X class – she won the regattas at London 2012." -430360045,Marina Arzamasova,BLR,female,1987-12-17,1.73,58,athletics,0,0,0, -276990393,Marina Bravo,ESP,female,1989-07-02,1.73,68,rugby sevens,0,0,0, -190849137,Marina Canetta,BRA,female,1989-04-01,1.62,51,archery,0,0,0, -38754507,Marina Canetti,BRA,female,1983-01-24,1.69,63,aquatics,0,0,0, -653594093,Marina Durunda,AZE,female,1997-06-12,1.7,51,gymnastics,0,0,0, -823803768,Marina Hmelevskaya,UZB,female,1990-07-30,1.65,50,athletics,0,0,0, -864041951,Marina Marghieva-Nikisenko,MDA,female,1986-06-28,1.86,82,athletics,0,0,0, -787075445,Marina Rajcic,MNE,female,1993-08-24,1.75,70,handball,0,0,0, -95985131,Marina Sudakova,RUS,female,1989-02-17,1.65,66,handball,1,0,0, -175326336,Marina Toribiong,PLW,female,1994-06-13,1.53,69,canoe,0,0,0, -488705922,Marina Zablith,BRA,female,1987-03-04,1.8,77,aquatics,0,0,0, -887926099,Marina de la Caridad Rodriguez Mitjan,CUB,female,1995-03-02,1.55,62,weightlifting,0,0,0, -744691889,Marine Boyer,FRA,female,2000-05-22,1.6,50,gymnastics,0,0,0, -178736852,Marine Brevet,FRA,female,1994-11-23,1.6,52,gymnastics,0,0,0, -617653407,Marine Johannes,FRA,female,1995-01-21,1.77,61,basketball,0,0,0, -513001410,Marine Jurbert,FRA,female,1992-12-11,1.64,53,gymnastics,0,0,0, -19543044,Mario Alfonso Bran,GUA,male,1989-10-17,1.68,64,athletics,0,0,0, -368806729,Mario Fernandez,ESP,male,1992-04-26,1.8,80,hockey,0,0,0, -266700854,Mario Gyr,SUI,male,1985-05-02,1.87,76,rowing,1,0,0, -224028378,Mario Hezonja,CRO,male,1995-02-25,2.03,100,basketball,0,0,0, -430914854,Mario Jose dos Santos Jr,BRA,male,1979-09-10,1.71,60,athletics,0,0,0, -601460358,Mario Leitner,AUT,male,1997-02-02,1.77,75,canoe,0,0,0, -384009312,Mario Luis Rivera Sanchez,CUB,male,1982-10-26,1.8,92,volleyball,0,0,0, -242810977,Mario Mola,ESP,male,1990-02-23,1.78,63,triathlon,0,0,0, -605135800,Mario Paonessa,ITA,male,1990-12-09,1.9,85,rowing,0,0,0, -506325009,Mario Todorovic,CRO,male,1988-10-11,1.85,82,aquatics,0,0,0, -31095617,Marion Lepert,USA,female,1995-09-18,1.78,61,sailing,0,0,0, -653316415,Marios Georgiou,CYP,male,1997-11-10,1.67,60,gymnastics,0,0,0, -63803519,Maris Strombergs,LAT,male,1987-03-10,1.86,90,cycling,0,0,0,"Known as “The Machine”, Latvia's Māris Štrombergs is the only Olympic champion in the men's cycling BMX event – winning gold at both the Beijing Olympics in 2008 and London in 2012. Štrombergs also holds two world titles from 2008 and 2010." -476920635,Marisa Dick,TTO,female,1997-05-26,1.53,47,gymnastics,0,0,0, -935870296,Marisa Lavanchy,SUI,female,1990-01-04,1.7,58,athletics,0,0,0, -257657428,Marisol Carratu,ARG,female,1986-07-15,1.74,85,handball,0,0,0, -792010625,Marisol Romero,MEX,female,1983-01-26,1.55,46,athletics,0,0,0, -296517803,Marissa Kurtimah,CAN,female,1994-05-25,1.57,57,athletics,0,0,0, -625766463,Marit Bouwmeester,NED,female,1988-06-17,1.77,68,sailing,1,0,0, -780954637,Marit Malm Frafjord,NOR,female,1985-11-25,1.82,,handball,0,0,1, -668487554,Maritza Guaman,ECU,female,1988-01-15,1.55,47,athletics,0,0,0, -650610457,Maritza Poncio,GUA,female,1994-12-03,1.58,41,athletics,0,0,0, -628714452,Marius Cocioran,ROU,male,1983-07-10,1.73,64,athletics,0,0,0, -472041377,Marius Cozmiuc,ROU,male,1992-09-07,1.97,94,rowing,0,0,0, -585219962,Marius Grigonis,LTU,male,1994-04-26,1.98,92,basketball,0,0,0, -288653875,Marius Ionescu,ROU,male,1984-12-18,1.7,55,athletics,0,0,0, -231726077,Marius Radu,ROU,male,1992-06-18,1.94,85,aquatics,0,0,0, -161847988,Marius Savelskis,LTU,male,1994-07-30,1.79,70,athletics,0,0,0, -278897276,Marius Ziukas,LTU,male,1985-06-29,1.85,72,athletics,0,0,0, -40046360,Mariusz Jurkiewicz,POL,male,1982-02-03,1.99,103,handball,0,0,0, -744484721,Mariusz Prudel,POL,male,1986-01-21,1.92,83,volleyball,0,0,0, -979280840,Mariya Dmitriyenko,KAZ,female,1988-03-24,1.67,56,shooting,0,0,0, -249371752,Mariya Korobitskaya,KGZ,female,1990-05-10,1.55,50,athletics,0,0,0, -778874000,Mariya Koroleva,USA,female,1990-04-10,1.66,55,aquatics,0,0,0, -478444296,Mariya Povkh,UKR,female,1989-01-08,1.66,64,canoe,0,0,0, -954387962,Mariya Ryemyen,UKR,female,1987-08-02,1.71,61,athletics,0,0,0, -819994350,Mariya Shatalova,UKR,female,1989-03-01,1.69,56,athletics,0,0,0, -951698977,Mariya Stadnik,AZE,female,1988-06-03,1.57,48,wrestling,0,1,0, -477823690,Mariya Telushkina,KAZ,female,1994-04-03,1.78,90,athletics,0,0,0, -510987328,Marjorie Mayans,FRA,female,1990-11-17,1.71,68,rugby sevens,0,0,0, -549331807,Marjory Nyaumwe,ZIM,female,1987-07-10,1.58,57,football,0,0,0, -129571712,Mark Aldred,GBR,male,1987-04-18,1.88,71,rowing,0,0,0, -251655789,Mark Bennett,GBR,male,1993-02-03,1.83,89,rugby sevens,0,1,0, -261061286,Mark Cavendish,GBR,male,1985-05-21,1.75,70,cycling,0,1,0, -968767341,Mark Dry,GBR,male,1987-10-11,1.84,112,athletics,0,0,0, -718324705,Mark English,IRL,male,1993-03-18,1.87,76,athletics,0,0,0, -175225943,Mark Gleghorne,GBR,male,1985-05-19,1.8,82,hockey,0,0,0, -412389237,Mark Knowles,AUS,male,1984-03-10,1.83,74,hockey,0,0,0, -343466585,Mark Kyle,IRL,male,1973-06-05,1.83,80,equestrian,0,0,0, -53785702,Mark Oldershaw,CAN,male,1983-02-07,1.86,94,canoe,0,0,0, -44374926,Mark Overgaard Madsen,DEN,male,1984-09-23,1.77,80,wrestling,0,1,0, -324844405,Mark Papp,HUN,male,1994-01-08,1.85,78,aquatics,0,0,0, -855611571,Mark Pearson,CAN,male,1987-06-18,1.81,76,hockey,0,0,0, -746387093,Mark Robertson,GBR,male,1984-12-30,1.89,96,rugby sevens,0,1,0, -780309052,Mark Todd,NZL,male,1956-03-01,1.9,78,equestrian,0,0,0, -338059475,Mark de Jonge,CAN,male,1984-02-15,1.8,91,canoe,0,0,0, -947055071,Markel Alberdi Sarobe,ESP,male,1991-10-22,1.87,76,aquatics,0,0,0, -461844557,Marketa Slukova,CZE,female,1988-06-28,1.8,68,volleyball,0,0,0, -670673572,Marko Arapovic,CRO,male,1996-07-20,2.07,105,basketball,0,0,0, -587055200,Marko Bagaric,QAT,male,1985-12-31,2.01,100,handball,0,0,0, -136688597,Marko Bezjak,SLO,male,1986-06-26,1.84,87,handball,0,0,0, -442704681,Marko Bijac,CRO,male,1991-01-12,2.01,85,aquatics,0,1,0, -624346920,Marko Blazhevski,MKD,male,1992-11-10,1.81,69,aquatics,0,0,0, -61318903,Marko Carrillo,PER,male,1988-07-04,1.84,75,shooting,0,0,0, -177653630,Marko Kopljar,CRO,male,1986-02-12,2.1,112,handball,0,0,0, -279090752,Marko Macan,CRO,male,1993-04-26,1.96,109,aquatics,0,1,0, -478905853,Marko Mamic,CRO,male,1994-03-06,2.02,109,handball,0,0,0, -341559685,Marko Marjanovic,SRB,male,1985-11-24,1.93,93,rowing,0,0,0, -951327387,Marko Novakovic,SRB,male,1989-01-04,1.86,95,canoe,0,0,0, -638559155,Marko Simonovic,SRB,male,1986-05-30,2.03,96,basketball,0,1,0, -345574422,Marko Tomicevic,SRB,male,1990-04-19,1.74,80,canoe,0,1,0, -165894715,Markus Bockermann,GER,male,1986-01-14,1.99,97,volleyball,0,0,0, -842346983,Markus Thormeyer,CAN,male,1997-08-25,1.95,84,aquatics,0,0,0, -488345537,Marleen van Iersel,NED,female,1988-01-07,1.78,68,volleyball,0,0,0, -689557957,Marlene Steinherr,GER,female,1985-09-10,1.74,69,sailing,0,0,0, -349029560,Marlies Mejias Garcia,CUB,female,1992-12-29,1.68,60,cycling,0,0,0, -786699109,Marlo Javier Delgado,ECU,male,1993-05-06,1.84,,boxing,0,0,0, -527228323,Marloes Keetels,NED,female,1993-05-04,1.72,66,hockey,0,1,0, -484645032,Marlon Acacio,MOZ,male,1982-07-09,1.8,81,judo,0,0,0, -461251275,Maro Jokovic,CRO,male,1987-10-01,2.03,95,aquatics,0,1,0, -21035215,Marouan Chouiref,TUN,male,1990-05-27,1.95,109,handball,0,0,0, -867476170,Marouen Maggaiz,TUN,male,1983-07-28,1.92,110,handball,0,0,0, -983343139,Maroussia Pare,FRA,female,1996-07-18,1.63,52,athletics,0,0,0, -906005564,Marquinhos,BRA,male,1994-05-14,1.85,70,football,1,0,0, -709840432,Marrit Steenbergen,NED,female,2000-01-11,1.78,62,aquatics,0,0,0, -505440878,Mart Seim,EST,male,1990-10-24,1.85,149,weightlifting,0,0,0, -919289341,Marta,BRA,female,1986-02-19,1.62,56,football,0,0,0,"The number 10 and silver medal winner for Brazil at Athens 2004 and Beijing 2008, Marta was voted the best player in the world by FIFA five times in a row (from 2006 to 2010). She has competed in four World Cups, finishing runner-up in 2007." -159109190,Marta Bach Pascual,ESP,female,1993-02-17,1.76,66,aquatics,0,0,0, -552371572,Marta Baeza Centurion,BRA,female,1992-03-02,1.64,52,fencing,0,0,0, -817886966,Marta Gonzalez Crivillers,ESP,female,1995-04-09,1.81,73,aquatics,0,0,0, -582411443,Marta Kharitonova,RUS,female,1984-09-26,1.67,62,canoe,0,0,0, -888086557,Marta Lopez,ESP,female,1990-02-04,1.68,64,handball,0,0,0, -740922098,Marta Mangue,ESP,female,1983-04-23,1.7,75,handball,0,0,0, -91738730,Marta Menegatti,ITA,female,1990-08-16,1.8,58,volleyball,0,0,0, -854942046,Marta Milani,ITA,female,1987-03-09,1.72,59,athletics,0,0,0, -876465611,Marta Onofre,POR,female,1991-01-28,1.7,64,athletics,0,0,0, -165484226,Marta Pagnini,ITA,female,1991-01-21,1.75,58,gymnastics,0,0,0, -759213345,Marta Pen Freitas,POR,female,1993-07-31,1.53,46,athletics,0,0,0, -885028719,Marta Puda,POL,female,1991-01-13,1.72,59,fencing,0,0,0, -500211600,Marta Rostoburova,UZB,female,1996-03-29,1.63,56,gymnastics,0,0,0, -166820643,Marta Walczykiewicz,POL,female,1987-08-01,1.65,63,canoe,0,1,0, -693968979,Marta Xargay,ESP,female,1990-12-20,1.8,71,basketball,0,1,0, -783066900,Marten van Riel,BEL,male,1992-12-15,1.83,64,triathlon,0,0,0, -820822830,Martha Bayona Pineda,COL,female,1995-08-12,1.55,60,cycling,0,0,0, -537064907,Martha McCabe,CAN,female,1989-08-04,1.68,57,aquatics,0,0,0, -186596657,Marthe Koala,BUR,female,1994-03-08,1.77,69,athletics,0,0,0, -913653914,Marti Malloy,USA,female,1986-06-23,1.61,58,judo,0,0,0, -237753405,Martin Allikvee,EST,male,1995-03-21,1.82,77,aquatics,0,0,0, -246553438,Martin Andres Melconian Alvez,URU,male,1990-01-02,1.83,77,aquatics,0,0,0, -693642928,Martin Bau,SLO,male,1994-10-08,1.82,74,aquatics,0,0,0, -305251897,Martin Benitez,ARG,male,1994-06-17,1.75,76,football,0,0,0, -39842194,Martin Esteban Cuestas,URU,male,1986-12-08,1.82,62,athletics,0,0,0, -759991813,Martin Fuchs,SUI,male,1992-07-13,1.84,71,equestrian,0,0,0, -659392236,Martin Fuksa,CZE,male,1993-04-30,1.8,83,canoe,0,0,0, -411643054,Martin Giuffre,CAN,male,1990-10-05,1.85,82,badminton,0,0,0, -358461011,Martin Haner,GER,male,1988-08-27,1.84,83,hockey,0,0,1, -742548457,Martin Iosefo,USA,male,1990-01-13,1.87,95,rugby sevens,0,0,0, -275759196,Martin Kaymer,GER,male,1984-12-28,1.84,76,golf,0,0,0, -898863862,Martin Kucera,SVK,male,1990-05-10,1.93,74,athletics,0,0,0, -121446595,Martin Kupper,EST,male,1989-05-31,1.98,119,athletics,0,0,0, -936041821,Martin Marinov,AUS,male,1967-10-25,1.78,88,canoe,0,0,0, -803793508,Martin Michel,BOL,male,1994-09-05,1.9,90,judo,0,0,0, -483044526,Martin Naidich,ARG,male,1990-12-17,1.85,74,aquatics,0,0,0, -27576453,Martin Pacek,SWE,male,1987-04-28,1.97,100,judo,0,0,0, -915011043,Martin Ramos,ARG,male,1991-08-26,1.97,94,volleyball,0,0,0, -842376118,Martin Sauer,GER,male,1982-12-17,1.69,55,rowing,0,1,0, -916498956,Martin Schaefer,BRA,male,1989-10-18,1.83,82,rugby sevens,0,0,0, -997372571,Martin Sinkovic,CRO,male,1989-11-10,1.88,95,rowing,1,0,0, -678966888,Martin Strobel,GER,male,1986-06-05,1.89,90,handball,0,0,1, -887718773,Martin Tistan,SVK,male,1992-11-12,1.73,65,athletics,0,0,0, -134099692,Martin Wolfram,GER,male,1992-01-29,1.64,58,aquatics,0,0,0, -969111501,Martin Zwicker,GER,male,1987-02-27,1.75,64,hockey,0,0,1, -907069049,Martina Carraro,ITA,female,1993-06-21,1.75,60,aquatics,0,0,0, -765683238,Martina Cavallero,ARG,female,1990-05-07,1.63,58,hockey,0,0,0, -642385203,Martina Centofanti,ITA,female,1998-05-19,1.7,47,gymnastics,0,0,0, -524633511,Martina Guiggi,ITA,female,1984-05-01,1.87,80,volleyball,0,0,0, -213466972,Martina Hingis,SUI,female,1980-09-30,1.7,59,tennis,0,1,0, -688040735,Martina Hrasnova,SVK,female,1983-03-21,1.77,80,athletics,0,0,0, -420210959,Martina Kohlova,SVK,female,1984-11-16,1.69,68,canoe,0,0,0, -77888504,Martina Moravcikova,CZE,female,1988-08-13,1.74,64,aquatics,0,0,0, -290254894,Martina Ratej,SLO,female,1981-11-02,1.78,80,athletics,0,0,0, -12278954,Martina Ritter,AUT,female,1982-09-23,1.74,59,cycling,0,0,0, -670614279,Martina Rizzelli,ITA,female,1998-03-24,1.53,47,gymnastics,0,0,0, -190010311,Martina Strutz,GER,female,1981-11-04,1.59,58,athletics,0,0,0, -761227644,Martina de Memme,ITA,female,1991-08-07,1.75,65,aquatics,0,0,0, -373707575,Martina van Berkel,SUI,female,1989-01-23,1.66,54,aquatics,0,0,0, -984490167,Martine Grael,BRA,female,1991-02-12,1.68,62,sailing,1,0,0,"The daughter of Torben Grael, who won five Olympic medals, Martine inherited his talents. She was world champion in 2014 and took silver at the 2015 Pan American Games in the 49st FX class, together with Kahena Kunze. Martine debuts at Rio 2016." -395476042,Martine Smeets,NED,female,1990-05-05,1.72,69,handball,0,0,0, -917191537,Martino Goretti,ITA,male,1985-09-27,1.86,73,rowing,0,0,0, -483109753,Marton Szivos,HUN,male,1981-08-19,1.92,95,aquatics,0,0,0, -397414268,Marton Vamos,HUN,male,1992-06-24,2.02,105,aquatics,0,0,0, -410826022,Marty McDowell,NZL,male,1987-01-16,1.84,85,canoe,0,0,0, -732634662,Martyn Rooney,GBR,male,1987-04-03,1.98,81,athletics,0,0,0, -472349121,Martyna Dabrowska,POL,female,1994-04-05,1.76,56,athletics,0,0,0, -300217673,Martyna Mikolajczak,POL,female,1991-05-12,,,rowing,0,0,0, -568668037,Martyna Trajdos,GER,female,1989-04-05,1.71,66,judo,0,0,0, -255248240,Martynas Dziaugys,LTU,male,1986-11-08,1.89,95,rowing,0,0,0, -62434883,Maru Teferi,ISR,male,1992-08-17,1.64,52,athletics,0,0,0, -674506453,Marusa Cernjul,SLO,female,1992-06-30,1.77,56,athletics,0,0,0, -615165685,Marvin Bracy,USA,male,1993-12-15,1.76,77,athletics,0,0,0, -360462839,Marvin Rene,FRA,male,1995-04-11,1.77,60,athletics,0,0,0, -782811562,Marwa Amri,TUN,female,1989-01-08,1.6,58,wrestling,0,0,1, -897941970,Marwan Ahmed Aly Morsy Elamrawy,EGY,male,1995-04-14,1.94,93,aquatics,0,0,0, -203919226,Marwan Elkamash,EGY,male,1993-11-14,1.83,77,aquatics,0,0,0, -590552399,Mary Hanna,AUS,female,1954-12-01,1.73,63,equestrian,0,0,0, -699555088,Mary Joy Tabal,PHI,female,1989-07-13,1.49,45,athletics,0,0,0, -161117607,Mary Opeloge,SAM,female,1992-01-24,1.52,75,weightlifting,0,0,0, -62290445,Maryam Usman,NGR,female,1990-11-09,1.66,122,weightlifting,0,0,0, -104377411,Maryan Muse,SOM,female,1997-01-01,,,athletics,0,0,0, -387651976,Maryia Filonchyk,BLR,female,1992-01-10,1.89,74,basketball,0,0,0, -402117502,Maryia Katsiak,BLR,female,1997-03-02,1.67,45,gymnastics,0,0,0, -408549485,Maryia Mamashuk,BLR,female,1992-08-31,1.63,65,wrestling,0,1,0, -2923353,Maryia Papova,BLR,female,1994-07-13,1.89,84,basketball,0,0,0, -536189027,Maryna Bekh,UKR,female,1995-07-18,1.74,62,athletics,0,0,0, -401157026,Maryna Cherniak,UKR,female,1988-03-26,1.62,48,judo,0,0,0, -858452425,Maryna Damantsevich,BLR,female,1984-02-10,1.62,51,athletics,0,0,0, -884349889,Maryna Kylypko,UKR,female,1995-11-10,1.64,58,athletics,0,0,0, -951115413,Maryna Litvinchuk,BLR,female,1988-03-12,1.78,68,canoe,0,0,1, -870110736,Marzia Caravelli,ITA,female,1981-10-23,1.77,62,athletics,0,0,0, -162278204,Masakatsu Hikosaka,JPN,male,1991-01-18,1.77,90,rugby sevens,0,0,0, -535827746,Masaki Ito,JPN,male,1988-11-02,1.67,62,gymnastics,0,0,0, -976787167,Masaki Kaneko,JPN,male,1992-03-27,1.81,75,aquatics,0,0,0, -106215469,Masanao Takahashi,JPN,male,1982-01-18,1.7,65,equestrian,0,0,0, -219895211,Masashi Ebinuma,JPN,male,1990-02-15,1.7,66,judo,0,0,1, -418990510,Masashi Kamekawa,JPN,male,1993-05-28,1.77,68,football,0,0,0, -48986256,Masato Sakai,JPN,male,1995-06-06,1.81,77,aquatics,0,1,0, -801397124,Masatoshi Kushibiki,JPN,male,1993-01-29,1.86,82,football,0,0,0, -566847633,Masbah Ahmmed,BAN,male,1995-03-11,,,athletics,0,0,0, -143690875,Mashu Baker,JPN,male,1994-09-25,1.78,90,judo,1,0,0, -620850796,Mason Finley,USA,male,1990-10-07,2.04,157,athletics,0,0,0, -20695020,Massimo Colaci,ITA,male,1985-02-21,1.8,75,volleyball,0,1,0, -653938951,Massimo Fabbrizi,ITA,male,1977-08-27,1.77,110,shooting,0,0,0, -306036644,Mate Helebrandt,HUN,male,1989-01-12,1.74,59,athletics,0,0,0, -56718574,Matea Matosevic,CRO,female,1989-03-14,1.73,52,athletics,0,0,0, -48994654,Matea Samardzic,CRO,female,1995-01-17,1.77,61,aquatics,0,0,0, -886265349,Matej Benus,SVK,male,1987-11-02,1.96,83,canoe,0,1,0, -218621574,Matej Gaber,SLO,male,1991-07-22,1.97,114,handball,0,0,0, -798424406,Matej Mohoric,SLO,male,1994-10-19,1.85,67,cycling,0,0,0, -301324995,Matej Toth,SVK,male,1983-02-10,1.85,73,athletics,1,0,0, -217355877,Mateja Simic,SLO,female,1980-03-11,1.69,58,triathlon,0,0,0, -454434360,Matelita Buadromo,FIJ,female,1996-01-15,,,aquatics,0,0,0, -987983731,Mateo Sanz Lanz,SUI,male,1993-11-06,1.72,64,sailing,0,0,0, -254178473,Mateus Filipe Gregorio Machado,BRA,male,1993-07-05,1.85,104,weightlifting,0,0,0, -765197800,Mateusz Bieniek,POL,male,1994-04-05,2.1,98,volleyball,0,0,0, -186521340,Mateusz Biskup,POL,male,1994-02-08,1.9,91,rowing,0,0,0, -610688503,Mateusz Jachlewski,POL,male,1984-12-27,1.84,88,handball,0,0,0, -211225504,Mateusz Kaminski,POL,male,1991-05-03,1.89,83,canoe,0,0,0, -487122930,Mateusz Kus,POL,male,1987-07-14,2,112,handball,0,0,0, -652295351,Mateusz Mika,POL,male,1991-01-21,2.06,86,volleyball,0,0,0, -403394715,Mateusz Przybylko,GER,male,1992-03-09,1.95,78,athletics,0,0,0, -377872587,Mateusz Sawrymowicz,POL,male,1987-04-22,1.85,75,aquatics,0,0,0, -113410495,Mateusz Wilangowski,POL,male,1991-10-07,1.95,89,rowing,0,0,0, -164089137,Matevz Skok,SLO,male,1986-09-02,1.88,95,handball,0,0,0, -657155974,Matheus Borges,BRA,male,1993-07-20,1.76,78,hockey,0,0,0, -898031635,Matheus Santana,BRA,male,1996-04-02,1.91,90,aquatics,0,0,0, -370742926,Mathew Belcher,AUS,male,1982-09-20,1.73,62,sailing,0,1,0,"Aged 17 at the time, Matthew Belcher was one of the young athletes invited to carry the Olympic flag at the Sydney 2000 closing ceremony. A seven-time world champion, this Australian won gold in the 470 class at London 2012." -36282420,Mathews Punza,ZAM,male,1988-04-27,1.7,66,judo,0,0,0, -477624913,Mathias Boe,DEN,male,1980-07-11,1.85,75,badminton,0,0,0, -286373803,Mathias Fluckiger,SUI,male,1988-09-27,1.72,65,cycling,0,0,0, -883500515,Mathias Hebo Rasmussen,DEN,male,1995-08-02,1.9,84,football,0,0,0, -533908779,Mathias Muller,GER,male,1992-04-03,1.87,80,hockey,0,0,1, -152701098,Mathias Tulyoongeleni Hamunyela,NAM,male,1992-10-15,1.6,,boxing,0,0,0, -791421238,Mathieu Albert Daniel Bauderlique,FRA,male,1989-07-03,1.85,,boxing,0,0,1, -414004191,Mathieu Bilodeau,CAN,male,1983-11-27,1.85,72,athletics,0,0,0, -981983025,Mathieu Grebille,FRA,male,1991-10-06,1.98,100,handball,0,1,0, -484330084,Mathieu Lemoine,FRA,male,1984-04-17,1.76,70,equestrian,1,0,0, -774702640,Mathieu Peisson,FRA,male,1982-09-29,1.85,102,aquatics,0,0,0, -36826829,Mathilde Andraud,FRA,female,1989-04-28,1.73,70,athletics,0,0,0, -802971626,Mathilde Cini,FRA,female,1994-11-18,1.66,62,aquatics,0,0,0, -48760156,Mathilde Lamolle,FRA,female,1997-04-07,1.67,58,shooting,0,0,0, -652013285,Mathilde de Kerangat,FRA,female,1991-10-14,1.72,67,sailing,0,0,0, -746005417,Mathlynn Sasser,MHL,female,1996-12-25,1.58,57,weightlifting,0,0,0, -728437436,Matias Albarracin,ARG,male,1979-10-25,1.74,65,equestrian,0,0,0, -322320446,Matias Buhler,SUI,male,1983-01-15,1.76,77,sailing,0,0,0, -304306143,Matias Koski,FIN,male,1994-05-18,1.95,93,aquatics,0,0,0, -64937045,Matias Montinho,ANG,male,1990-07-15,1.67,63,sailing,0,0,0, -958190853,Matias Moroni,ARG,male,1991-03-29,1.85,84,rugby sevens,0,0,0, -482423754,Matias Paredes,ARG,male,1982-02-01,1.76,74,hockey,1,0,0, -478914190,Matias Rey,ARG,male,1984-12-01,1.78,72,hockey,1,0,0, -492966481,Matias Schulz,ARG,male,1982-02-12,1.9,88,handball,0,0,0, -120488238,Matias Tudela,ESP,male,1984-10-06,1.88,95,rugby sevens,0,0,0, -931233756,Matias del Solar,CHI,male,1975-11-29,1.84,87,sailing,0,0,0, -537360256,Matija Kvasina,CRO,male,1981-12-04,1.8,72,cycling,0,0,0, -706656825,Matilda Ekholm,SWE,female,1982-06-15,1.72,67,table tennis,0,0,0, -403290407,Matilde Ortiz Reyes,ESP,female,1990-09-16,1.74,67,aquatics,0,0,0, -21739330,Mats Grambusch,GER,male,1992-11-04,1.77,74,hockey,0,0,1, -298706269,Matt Gohdes,AUS,male,1990-05-08,1.8,80,hockey,0,0,0, -472009304,Matt Gotrel,GBR,male,1989-03-01,1.95,95,rowing,1,0,0, -935178102,Matt Hutchins,NZL,male,1994-09-19,1.9,75,aquatics,0,0,0, -153631965,Matt Kuchar,USA,male,1978-06-21,1.94,86,golf,0,0,1, -984564500,Matt Langridge,GBR,male,1983-05-20,1.94,93,rowing,1,0,0, -915798442,Matt Williams,AUS,male,1985-05-09,1.78,72,equestrian,0,0,0, -395178195,Matteo Aicardi,ITA,male,1986-04-19,1.92,102,aquatics,0,0,1, -690029131,Matteo Castaldo,ITA,male,1985-12-11,1.88,86,rowing,0,0,1, -427248664,Matteo Galvan,ITA,male,1988-08-24,1.82,78,athletics,0,0,0, -381850551,Matteo Giupponi,ITA,male,1988-10-08,1.89,70,athletics,0,0,0, -38214425,Matteo Lodo,ITA,male,1994-10-25,1.96,90,rowing,0,0,1, -289265001,Matteo Manassero,ITA,male,1993-04-19,1.83,79,golf,0,0,0, -872073653,Matteo Marconcini,ITA,male,1989-08-26,1.85,81,judo,0,0,0, -911422793,Matteo Piano,ITA,male,1990-10-24,2.08,102,volleyball,0,1,0, -171065867,Matteo Rivolta,ITA,male,1991-11-16,1.93,83,aquatics,0,0,0, -58032086,Matteo Stefanini,ITA,male,1984-04-29,1.9,91,rowing,0,0,0, -43202713,Matthew Abood,AUS,male,1986-06-28,1.97,92,aquatics,0,0,1, -99590760,Matthew Anderson,USA,male,1987-04-18,2.02,100,volleyball,0,0,1, -925341714,Matthew Baranoski,USA,male,1993-07-27,1.83,96,cycling,0,0,0, -730877927,Matthew Centrowitz,USA,male,1989-10-18,1.76,65,athletics,1,0,0, -71745896,Matthew Chau,AUS,male,1994-11-09,1.85,77,badminton,0,0,0, -335841832,Matthew Dawson,AUS,male,1994-04-27,1.76,66,hockey,0,0,0, -496386141,Matthew Dellavedova,AUS,male,1990-09-08,1.91,89,basketball,0,0,0, -566672226,Matthew Denny,AUS,male,1996-06-02,1.95,118,athletics,0,0,0, -425434844,Matthew Duncan Abeysinghe,SRI,male,1996-03-19,1.8,74,aquatics,0,0,0, -908655978,Matthew Emmons,USA,male,1981-04-05,1.76,83,shooting,0,0,0, -986397793,Matthew Glaetzer,AUS,male,1992-08-24,1.9,86,cycling,0,0,0, -101015451,Matthew Guest,CAN,male,1985-04-26,1.9,90,hockey,0,0,0, -550707976,Matthew Hudson-Smith,GBR,male,1994-10-26,1.94,78,athletics,0,0,0, -897031531,Matthew Hughes,CAN,male,1989-08-03,1.8,66,athletics,0,0,0, -766785466,Matthew Mark Meyer,RSA,male,1998-03-04,1.85,70,aquatics,0,0,0, -475158866,Matthew McGovern,IRL,male,1984-09-20,1.8,82,sailing,0,0,0, -874367808,Matthew Miller,USA,male,1989-01-13,1.96,98,rowing,0,0,0, -439268682,Matthew Sarmento,CAN,male,1991-06-23,1.74,76,hockey,0,0,0, -405824354,Matthew Stanley,NZL,male,1992-01-15,1.98,82,aquatics,0,0,0, -483679471,Matthew Swann,AUS,male,1989-05-16,1.7,64,hockey,0,0,0, -388169524,Matthias Buhler,GER,male,1986-09-02,1.89,78,athletics,0,0,0, -554191048,Matthias Ginter,GER,male,1994-01-19,1.9,88,football,0,1,0, -963881256,Matthias Schmid,AUT,male,1980-12-12,1.75,66,sailing,0,0,0, -719850911,Matthieu Androdias,FRA,male,1990-06-11,1.94,94,rowing,0,0,0, -74294229,Matthieu Peche,FRA,male,1987-10-07,1.75,75,canoe,0,0,1, -437683546,Matthieu Rosset,FRA,male,1990-05-26,1.7,68,aquatics,0,0,0, -103170142,Matthijs Buchli,NED,male,1992-12-13,1.88,90,cycling,0,1,0, -420949330,Matti Mattsson,FIN,male,1993-10-05,1.97,98,aquatics,0,0,0, -499246333,Mattia Camboni,ITA,male,1996-04-26,1.8,70,sailing,0,0,0, -280493573,Mattias Andersson,SWE,male,1978-03-29,1.86,95,handball,0,0,0, -515599241,Mattias Karlsson,SWE,male,1991-09-07,1.91,88,table tennis,0,0,0, -730518978,Mattias Zachrisson,SWE,male,1990-08-22,1.78,89,handball,0,0,0, -676985214,Matus Bubenik,SVK,male,1989-11-14,1.97,78,athletics,0,0,0, -896939838,Matyas Szabo,GER,male,1991-08-19,1.83,82,fencing,0,0,0, -178284851,Matylda Kowal,POL,female,1989-01-11,1.7,51,athletics,0,0,0, -431865511,Maud van der Meer,NED,female,1992-05-20,1.78,68,aquatics,0,0,0, -498567900,Maureen Jelagat Maiyo,KEN,female,1985-05-28,1.67,58,athletics,0,0,0, -322346494,Maureen Koster,NED,female,1992-07-03,1.76,56,athletics,0,0,0, -237676786,Mauricio Arteaga,ECU,male,1988-08-08,1.77,68,athletics,0,0,0, -756883817,Mauricio Borges Almeida Silva,BRA,male,1989-02-04,1.99,99,volleyball,1,0,0, -646748093,Mauricio Luiz de Souza,BRA,male,1988-09-29,2.09,93,volleyball,1,0,0, -293694228,Mauricio Martinez,ARG,male,1993-02-20,1.67,70,football,0,0,0, -76978968,Mauricio Ortega,COL,male,1994-08-04,1.8,90,athletics,0,0,0, -853068624,Mauro Crenna,ITA,male,1991-11-02,1.86,93,canoe,0,0,0, -574835225,Mauro Nespoli,ITA,male,1987-11-22,1.81,78,archery,0,0,0, -167844391,Mavis Chirandu,ZIM,female,1995-01-15,1.57,53,football,0,0,0, -384641451,Max Christiansen,GER,male,1996-09-25,1.85,84,football,0,1,0, -81864285,Max Esposito,AUS,male,1997-06-16,1.74,64,modern pentathlon,0,0,0, -210303328,Max Hartung,GER,male,1989-10-08,1.89,86,fencing,0,0,0, -89080288,Max Heinzer,SUI,male,1987-08-07,1.78,77,fencing,0,0,0, -508219874,Max Hess,GER,male,1996-07-13,1.85,80,athletics,0,0,0, -907301904,Max Hoff,GER,male,1982-09-12,1.97,95,canoe,1,0,0, -934682595,Max Litchfield,GBR,male,1995-03-04,1.68,78,aquatics,0,0,0, -832967843,Max Mirnyi,BLR,male,1977-07-06,1.96,99,tennis,0,0,0, -232790653,Max Niederlag,GER,male,1993-05-05,1.83,85,cycling,0,0,0, -733043738,Max Rendschmidt,GER,male,1993-12-12,1.86,90,canoe,2,0,0, -302494517,Max Salminen,SWE,male,1988-09-22,1.97,98,sailing,0,0,0, -93066253,Max Whitlock,GBR,male,1993-01-13,1.67,56,gymnastics,2,0,1, -386159479,Maxemillion Kassman,PNG,male,1998-07-17,1.75,64,taekwondo,0,0,0, -89475411,Maxim Bouchard,CAN,male,1990-09-18,1.8,71,aquatics,0,0,0, -2552703,Maxim Mikhaylov,RUS,male,1988-03-19,2.02,103,volleyball,0,0,0, -567764171,Maxim Rakov,KAZ,male,1986-02-07,1.81,100,judo,0,0,0, -429841022,Maxime Beaumont,FRA,male,1982-04-23,1.91,94,canoe,0,1,0, -690024255,Maxime Brinck-Croteau,CAN,male,1986-03-29,1.77,78,fencing,0,0,0, -232147471,Maxime Marotte,FRA,male,1986-12-05,1.72,62,cycling,0,0,0, -162317183,Maxime Mottet,BEL,male,1991-05-17,1.78,84,shooting,0,0,0, -844686899,Maximilian Korge,GER,male,1994-10-12,1.93,92,rowing,0,0,0, -887043487,Maximilian Levy,GER,male,1987-06-26,1.82,87,cycling,0,0,0, -91221039,Maximilian Meyer,GER,male,1995-09-18,1.73,69,football,0,1,0, -718400252,Maximilian Munski,GER,male,1988-01-10,1.95,96,rowing,0,1,0, -382717900,Maximilian Planer,GER,male,1991-01-28,1.98,94,rowing,0,0,0, -65092723,Maximilian Reinelt,GER,male,1988-08-24,1.95,98,rowing,0,1,0, -243609847,Maximiliano Ariel Richeze,ARG,male,1983-03-07,1.77,70,cycling,0,0,0, -488438622,Maximilien van Haaster,CAN,male,1992-06-19,1.85,88,fencing,0,0,0, -624320550,Maximo Gonzalez,ARG,male,1983-07-20,1.76,77,tennis,0,0,0, -781644314,Maximo Mercedes,DOM,male,1988-09-14,1.86,70,athletics,0,0,0, -812967807,Maxwell Holt,USA,male,1987-03-12,2.05,90,volleyball,0,0,1, -526196879,Maxwell Lattimer,CAN,male,1993-07-14,1.85,72,rowing,0,0,0, -967402790,Maya Moore,USA,female,1989-06-11,1.83,79,basketball,1,0,0, -500075689,Maya Rehberg,GER,female,1994-04-28,1.7,58,athletics,0,0,0, -919598411,Mayada Sayyad,PLE,female,1992-10-26,,,athletics,0,0,0, -297050524,Mayara Fier de Moura,BRA,female,1986-12-05,1.68,71,handball,0,0,0, -341245309,Maykel Masso,CUB,male,1999-05-08,1.74,61,athletics,0,0,0, -761032254,Mayobanex de Oleo,DOM,male,1993-05-26,1.71,61,athletics,0,0,0, -135012058,Mayra Aguiar,BRA,female,1991-08-03,1.77,78,judo,0,0,1, -750703136,Mayra Carolina Herrera,GUA,female,1988-12-20,1.63,54,athletics,0,0,0, -179987194,Mayssa Raquel Pessoa,BRA,female,1984-09-11,1.8,66,handball,0,0,0, -947011927,Mayu Hamada,JPN,female,1994-01-31,1.74,57,taekwondo,0,0,0, -466510848,Mayumi Ono,JPN,female,1984-08-14,1.7,62,hockey,0,0,0, -110852352,Mayya Petrova,RUS,female,1982-05-26,1.78,71,handball,1,0,0, -128985176,Mazoon Al-Alawi,OMA,female,1997-11-14,,,athletics,0,0,0, -409204459,McLain Ward,USA,male,1975-10-17,1.76,70,equestrian,0,1,0, -299427906,McQuin Baron,USA,male,1995-10-27,2.06,104,aquatics,0,0,0, -965246251,Md Fakhri Ismail,BRU,male,1991-03-06,1.6,62,athletics,0,0,0, -877915055,Meaghan Benfeito,CAN,female,1989-03-02,1.55,48,aquatics,0,0,2, -647839865,Meaghan Volker,AUS,female,1990-10-20,,,rowing,0,0,0, -968097436,Mebrahtom Keflezighi,USA,male,1975-05-05,1.66,56,athletics,0,0,0, -654095521,Mechiel Versluis,NED,male,1987-07-29,1.97,95,rowing,0,0,1, -702444425,Megan Guarnier,USA,female,1985-05-04,1.63,54,cycling,0,0,0, -248091988,Megan Kalmoe,USA,female,1983-08-21,1.78,72,rowing,0,0,0, -158155836,Megan Lane,CAN,female,1991-05-04,1.78,66,equestrian,0,0,0, -338613319,Megan Lukan,CAN,female,1992-02-14,1.7,58,rugby sevens,0,0,1, -156676980,Megan Rapinoe,USA,female,1985-07-05,1.67,59,football,0,0,0, -350561307,Megan Simmonds,JAM,female,1994-03-18,1.57,49,athletics,0,0,0, -618204486,Meghan Klingenberg,USA,female,1988-08-02,1.58,56,football,0,0,0, -26643473,Meghan Musnicki,USA,female,1983-02-05,1.83,73,rowing,1,0,0, -626601674,Meghan O'Leary,USA,female,1984-08-24,1.83,73,rowing,0,0,0, -86610737,Megumi Iseda,JPN,female,1987-06-30,1.57,56,sailing,0,0,0, -463812760,Mehboob Ali,PAK,male,1990-04-10,,,athletics,0,0,0, -44950691,Mehdi Mahdavi,IRI,male,1984-02-13,1.91,96,volleyball,0,0,0, -909022255,Mehdi Marzouki,FRA,male,1987-05-26,1.92,101,aquatics,0,0,0, -211496382,Mehdy Metella,FRA,male,1992-07-17,1.91,99,aquatics,0,1,0, -510649353,Mehmet Nadir Unal,TUR,male,1993-01-13,1.81,,boxing,0,0,0, -513851313,Mehtap Kurnaz,TUR,female,1995-05-01,1.6,62,weightlifting,0,0,0, -595667372,Mei Yu Hsiao,TPE,female,1985-01-07,1.62,58,cycling,0,0,0, -508723001,Meichen Sun,CHN,female,1998-11-01,1.75,63,aquatics,0,0,0, -786377606,Meikayla Moore,NZL,female,1996-06-04,1.75,67,football,0,0,0, -742356260,Meisam Abolfazl Nasiri,IRI,male,1989-06-01,1.69,71,wrestling,0,0,0, -531197956,Meiyu Liang,CHN,female,1994-01-08,1.66,63,hockey,0,0,0, -694559348,Mekonnen Gebremedhin,ETH,male,1988-10-11,1.81,61,athletics,0,0,0, -279948149,Melania Costa Schmid,ESP,female,1989-04-24,1.79,68,aquatics,0,0,0, -241238603,Melanie Behringer,GER,female,1985-11-18,1.72,71,football,1,0,0, -309505211,Melanie Henique,FRA,female,1992-12-22,1.72,60,aquatics,0,0,0, -234453586,Melanie Leupolz,GER,female,1994-04-14,1.73,52,football,1,0,0, -694013113,Melanie Margalis,USA,female,1991-12-30,1.73,65,aquatics,1,0,0, -142783294,Melanie McCann,CAN,female,1989-10-08,1.73,58,modern pentathlon,0,0,0, -832907922,Melanie Pfeifer,GER,female,1986-08-25,1.67,54,canoe,0,0,0, -643682523,Melanie Wilson,GBR,female,1984-06-25,1.84,75,rowing,0,1,0, -734867601,Melany Hernandez,MEX,female,1998-07-26,1.65,60,aquatics,0,0,0, -152354066,Melek Hu,TUR,female,1989-01-27,1.65,53,table tennis,0,0,0, -559761961,Meli Malani,FIJ,male,1996-11-17,,94,aquatics,0,0,0, -667446420,Melina Robert-Michon,FRA,female,1979-07-18,1.8,85,athletics,0,1,0, -227958831,Melinda Geiger,ROU,female,1987-03-28,1.77,69,handball,0,0,0, -395742388,Meline Gerard,FRA,female,1990-05-30,1.68,61,football,0,0,0, -638389336,Melisa Gil,ARG,female,1984-08-09,1.6,65,shooting,0,0,0, -314522649,Melissa Bishop,CAN,female,1988-08-05,1.73,56,athletics,0,0,0, -371776247,Melissa Boekelman,NED,female,1989-05-11,1.76,87,athletics,0,0,0, -351096848,Melissa Breen,AUS,female,1990-09-17,1.74,65,athletics,0,0,0, -357241098,Melissa Gonzalez,USA,female,1989-01-24,1.61,58,hockey,0,0,0, -910455517,Melissa Hoskins,AUS,female,1991-02-24,1.75,64,cycling,0,0,0, -37881707,Melissa Mojica,PUR,female,1983-12-29,1.78,82,judo,0,0,0, -31451946,Melissa Ortiz,COL,female,1990-01-24,1.72,52,football,0,0,0, -424629723,Melissa Pagnotta,CAN,female,1988-09-22,1.8,64,taekwondo,0,0,0, -92926686,Melissa Seidemann,USA,female,1990-06-26,1.83,104,aquatics,1,0,0, -283491400,Melissa Tancredi,CAN,female,1981-12-27,1.77,77,football,0,0,1, -388744533,Melissa Tapper,AUS,female,1990-03-01,1.66,65,table tennis,0,0,0, -853786282,Melissa Wu,AUS,female,1992-05-03,1.52,50,aquatics,0,0,0, -242511677,Melita Abraham,CHI,female,1997-07-07,1.7,62,rowing,0,0,0, -967171979,Melitina Staniouta,BLR,female,1993-11-14,1.73,53,gymnastics,0,0,0,"With three bronze medals in the world championship general rhythmic gymnastics event, Melitina Staniouta, from Belarus, is part of the team that, between 2009 and 2015, came second place five times." -488010523,Melker Svard Jacobsson,SWE,male,1994-01-08,1.88,79,athletics,0,0,0, -114894232,Memo,INA,male,1995-01-08,1.92,88,rowing,0,0,0, -511927027,Menatalla Karim,EGY,female,1995-11-12,1.6,65,canoe,0,0,0, -958603253,Meng Wei,CHN,female,1989-06-14,1.69,57,shooting,0,0,0, -715981032,Menghui Zhu,CHN,female,1999-03-23,1.77,62,aquatics,0,0,0, -401470235,Menglu Ma,CHN,female,1997-09-24,1.67,61,cycling,0,0,0, -271606334,Mengni Tang,CHN,female,1994-04-08,1.69,59,aquatics,0,1,0, -658441949,Mengqian Ren,CHN,female,1993-10-04,1.75,66,athletics,0,0,0, -899791888,Mengran Sun,CHN,female,1992-07-16,1.95,83,basketball,0,0,0, -525021516,Mengxin Sun,CHN,female,1993-04-08,1.9,84,basketball,0,0,0, -304831992,Mengxue Zhang,CHN,female,1991-02-06,1.62,70,shooting,1,0,0, -566918843,Mengyu Wang,CHN,female,1992-05-25,1.7,71,hockey,0,0,0, -469860412,Mengyu Yu,SIN,female,1989-08-18,1.66,50,table tennis,0,0,0, -237464508,Menzi Masuku,RSA,male,1993-04-15,1.69,61,football,0,0,0, -273574012,Meraf Bahta,SWE,female,1989-06-24,1.76,52,athletics,0,0,0, -337904141,Mercedes Isabel Perez Tigrero,COL,female,1987-08-07,1.57,63,weightlifting,0,0,0, -726189235,Mercy Cherono,KEN,female,1991-05-07,,51,athletics,0,0,0, -7993281,Merdan Atayev,TKM,male,1995-05-08,1.96,80,aquatics,0,0,0, -12306725,Meredith Michaels-Beerbaum,GER,female,1969-12-26,1.62,51,equestrian,0,0,1, -712487973,Merel Blom,NED,female,1986-08-19,1.71,60,equestrian,0,0,0, -757366284,Merewai Cumu,FIJ,female,1997-08-31,1.74,73,rugby sevens,0,0,0, -905398230,Merle van Benthem,NED,female,1992-12-07,1.7,68,cycling,0,0,0, -571759273,Merrill Moses,USA,male,1977-08-13,1.91,97,aquatics,0,0,0, -228859028,Mert Atli,TUR,male,1993-07-23,1.91,70,athletics,0,0,0, -447162714,Merven Clair,MRI,male,1993-07-02,1.78,,boxing,0,0,0, -679179495,Meryem Akdag,TUR,female,1992-08-05,1.71,51,athletics,0,0,0, -746996056,Meryem Erdogan,TUR,female,1990-04-24,1.72,55,athletics,0,0,0, -795596801,Messala Merbah,ALG,male,1994-07-22,1.78,65,football,0,0,0, -428462407,Mesud Pezer,BIH,male,1994-08-27,1.96,120,athletics,0,0,0, -334554979,Mete Gazoz,TUR,male,1999-06-08,1.81,60,archery,0,0,0, -30835928,Methkal Abu Drais,JOR,male,1983-12-29,1.68,67,athletics,0,0,0, -478490266,Mi Gyong Ri,PRK,female,1990-09-30,1.65,56,table tennis,0,0,0, -309196317,Mi Rae Kim,PRK,female,2001-04-07,1.5,40,aquatics,0,0,0, -534654032,Mia Hermansson,SWE,female,1992-12-12,1.75,63,judo,0,0,0, -585217466,Miah-Marie Langlois,CAN,female,1991-09-21,1.72,63,basketball,0,0,0, -759154793,Micah Christenson,USA,male,1993-05-08,1.98,88,volleyball,0,0,1, -440955726,Micha Powell,CAN,female,1995-01-12,1.77,55,athletics,0,0,0, -909720625,Michael Albasini,SUI,male,1980-12-20,1.72,67,cycling,0,0,0, -828603866,Michael Alexandre Bodegas,ITA,male,1987-05-03,1.92,102,aquatics,0,0,1, -500190525,Michael Brake,NZL,male,1994-10-22,1.87,91,rowing,0,0,0, -814037531,Michael Bultheel,BEL,male,1986-06-30,1.89,81,athletics,0,0,0, -992884097,Michael D'Almeida,FRA,male,1987-09-03,1.76,80,cycling,0,0,1, -969061469,Michael Damgaard Nielsen,DEN,male,1990-03-18,1.92,92,handball,1,0,0, -386535330,Michael Darling,IRL,male,1988-07-03,1.7,65,hockey,0,0,0, -442019186,Michael Di Santo,USA,male,1989-12-10,1.86,90,rowing,0,0,0, -144352723,Michael Fuchs,GER,male,1982-04-22,1.81,86,badminton,0,0,0, -253286352,Michael Gbinije,NGR,male,1992-06-05,2.01,90,basketball,0,0,0, -128789851,Michael Guigou,FRA,male,1982-01-28,1.79,79,handball,0,1,0, -563835725,Michael Hansen,DEN,male,1990-02-14,1.82,82,sailing,0,0,0, -156951365,Michael Hepburn,AUS,male,1991-08-17,1.86,77,cycling,0,1,0, -746795729,Michael Hoare,GBR,male,1985-11-14,1.76,77,hockey,0,0,0, -46089311,Michael Janker,GER,male,1992-03-23,1.8,75,shooting,0,0,0, -360677958,Michael John Conlan,IRL,male,1991-11-19,1.7,,boxing,0,0,0, -245131295,Michael Julian Meyer,RSA,male,1992-09-01,1.84,76,aquatics,0,0,0, -878101089,Michael Jung,GER,male,1982-07-31,1.68,70,equestrian,1,1,0,"He received the greatest present one could ask for on his 30th birthday winning two golds at London 2012, in the individual and team eventing competitions. Germany's Michael Jung was the first athlete to win the Olympic, world and European titles." -415356488,Michael Kalomiris,GRE,male,1986-10-09,1.81,65,athletics,0,0,0, -753189621,Michael Maskell,BAR,male,1966-11-24,1.75,114,shooting,0,0,0, -255856000,Michael Mason,CAN,male,1986-09-30,1.86,67,athletics,0,0,0, -882282575,Michael Mathieu,BAH,male,1984-06-24,1.78,76,athletics,0,0,1, -359582375,Michael McPhail,USA,male,1981-12-15,1.83,88,shooting,0,0,0, -876833914,"Michael O,Reilly",IRL,male,1993-04-30,1.8,,boxing,0,0,0, -672059782,Michael Perez,MEX,male,1993-02-14,1.69,75,football,0,0,0, -491565031,Michael Phelps,USA,male,1985-06-30,1.94,90,aquatics,5,1,0,"The USA's Michael Phelps has claimed 22 Olympic medals from three editions, 18 of which were gold, setting the record for medals won. He also has 26 world championship golds and retired from the sport after London 2012, but returns to compete at Rio 2016." -963798182,Michael Rimmer,GBR,male,1986-02-03,1.82,66,athletics,0,0,0, -212707556,Michael Robson,IRL,male,1995-04-18,1.75,70,hockey,0,0,0, -776809154,Michael Schmid,SUI,male,1988-01-02,1.79,73,rowing,0,0,0, -509141582,Michael Sean James Nicholson,ZIM,male,1973-11-09,1.82,105,shooting,0,0,0, -719475341,Michael Shelley,AUS,male,1983-10-10,1.83,60,athletics,0,0,0, -717870725,Michael Tayler,CAN,male,1992-02-06,1.75,69,canoe,0,0,0, -591796882,Michael Tinsley,USA,male,1984-04-21,1.86,74,athletics,0,0,0, -868365619,Michael Umeh,NGR,male,1984-09-18,1.87,88,basketball,0,0,0, -646681270,Michael Venus,NZL,male,1987-10-16,1.92,84,tennis,0,0,0, -247341718,Michael Watt,IRL,male,1987-04-13,1.78,79,hockey,0,0,0, -941406525,Michael Whitaker,GBR,male,1960-03-17,1.72,69,equestrian,0,0,0, -871224571,Michael Woods,CAN,male,1986-10-12,1.75,63,cycling,0,0,0, -542540504,Michaela Ek,SWE,female,1988-02-01,1.74,68,handball,0,0,0, -891750964,Michaela Hruba,CZE,female,1998-02-21,1.9,75,athletics,0,0,0, -504352027,Michaela Meijer,SWE,female,1993-07-30,1.72,60,athletics,0,0,0, -616439080,Michaela Metallidou,GRE,female,1993-01-23,1.63,46,gymnastics,0,0,0, -339385583,Michail Pateniotis,GRE,male,1984-02-05,1.8,74,sailing,0,0,0, -35167157,Michal Balner,CZE,male,1982-09-12,1.91,80,athletics,0,0,0, -479154630,Michal Daszek,POL,male,1992-06-27,1.82,88,handball,0,0,0, -513183631,Michal Golas,POL,male,1984-04-29,1.8,66,cycling,0,0,0, -715508816,Michal Haratyk,POL,male,1992-04-10,1.94,135,athletics,0,0,0, -831920477,Michal Izdinsky,FRA,male,1992-07-23,1.78,75,aquatics,0,0,0, -903235278,Michal Jurecki,POL,male,1984-10-27,1.98,111,handball,0,0,0, -441671788,Michal Kubiak,POL,male,1988-02-23,1.91,80,volleyball,0,0,0, -902138771,Michal Kudla,POL,male,1997-10-17,1.88,90,canoe,0,0,0, -223037038,Michal Kwiatkowski,POL,male,1990-06-02,1.76,66,cycling,0,0,0, -491450653,Michal Pietrzak,POL,male,1989-04-03,1.85,80,athletics,0,0,0, -921968213,Michal Smolen,USA,male,1993-09-13,1.81,70,canoe,0,0,0, -38283369,Michal Szpakowski,POL,male,1989-04-23,1.95,103,rowing,0,0,0, -360956359,Michal Szyba,POL,male,1988-03-18,1.96,97,handball,0,0,0, -663753553,Micheen Barbara Thornycroft,ZIM,female,1987-06-26,1.75,72,rowing,0,0,0, -297451205,Michel Borges,BRA,male,1991-06-16,1.82,,boxing,0,0,0, -397244117,Michel Torneus,SWE,male,1986-05-26,1.84,73,athletics,0,0,0, -954819684,Michele Benedetti,ITA,male,1984-12-17,1.74,68,aquatics,0,0,0, -473802345,Michele Santucci,ITA,male,1989-05-30,1.88,82,aquatics,0,0,0, -760953520,Michele Scartezzini,ITA,male,1992-01-10,,,cycling,0,0,0, -970855976,Michelle Carter,USA,female,1985-10-12,1.76,136,athletics,1,0,0, -829005830,Michelle Coleman,SWE,female,1993-10-31,1.86,74,aquatics,0,0,0, -959543328,Michelle Cristina Fazzari,CAN,female,1987-07-10,1.73,58,wrestling,0,0,0, -794770350,Michelle Finn,IRL,female,1989-12-16,1.52,51,athletics,0,0,0, -694416814,Michelle Goos,NED,female,1989-12-27,1.78,62,handball,0,0,0, -900638495,Michelle Heyman,AUS,female,1988-07-04,1.78,66,football,0,0,0, -822214721,Michelle Jenneke,AUS,female,1993-06-23,1.72,67,athletics,0,0,0, -801535491,Michelle Kasold,USA,female,1987-05-26,1.61,53,hockey,0,0,0, -628031032,Michelle Koh,MAS,female,1990-09-30,1.7,70,golf,0,0,0, -827836935,Michelle Li,CAN,female,1991-11-03,1.72,66,badminton,0,0,0, -949879254,Michelle Pearson,BER,female,1991-04-16,1.77,70,rowing,0,0,0, -24450560,Michelle Plouffe,CAN,female,1992-09-15,1.9,82,basketball,0,0,0, -190326446,Michelle Vittese,USA,female,1989-12-06,1.61,57,hockey,0,0,0, -987215853,Michelle Vorster,NAM,female,1978-09-12,1.67,57,cycling,0,0,0, -360738649,Michelle Weber,RSA,female,1996-09-28,1.66,63,aquatics,0,0,0, -876460837,Michelle Williams,CAN,female,1991-01-02,1.7,61,aquatics,0,0,1, -283186204,Michelle van der Pols,NED,female,1989-01-06,1.72,61,hockey,0,0,0, -133448411,Michelle-Lee Ahye,TTO,female,1992-04-10,1.6,64,athletics,0,0,0, -478258348,Mick Clohissey,IRL,male,1986-01-13,1.8,64,athletics,0,0,0, -814967349,Mickael Gelabale,FRA,male,1983-05-22,2.01,90,basketball,0,0,0, -348230526,Mickael Marteau,FRA,male,1992-09-28,1.79,86,rowing,0,0,0, -770839524,Mickael-Meba Zeze,FRA,male,1994-05-19,1.75,65,athletics,0,0,0, -75146232,Mie Nakashima,JPN,female,1986-06-18,1.6,52,hockey,0,0,0, -926621084,Mie Nielsen,DEN,female,1996-09-25,1.85,68,aquatics,0,0,1, -521050855,Mieke Kroger,GER,female,1993-07-18,1.81,78,cycling,0,0,0, -124498151,Miesinnei Mercy Genesis,NGR,female,1997-09-20,1.52,48,wrestling,0,0,0, -585358336,Mifuyu Koide,JPN,female,1995-12-21,1.65,59,rugby sevens,0,0,0, -5116041,Migran Arutyunyan,ARM,male,1989-03-25,1.66,67,wrestling,0,1,0, -127831066,Miguel Alvarino Garcia,ESP,male,1994-05-31,1.8,84,archery,0,0,0, -149765178,Miguel Angel Almachi,ECU,male,1985-05-02,1.65,55,athletics,0,0,0, -397125199,Miguel Angel Lopez,ESP,male,1988-07-03,1.81,70,athletics,0,0,0, -323518925,Miguel Angel Lopez Castro,CUB,male,1997-03-25,1.89,75,volleyball,0,0,0, -280398491,Miguel Angel Lopez Moreno,COL,male,1994-02-04,1.7,58,cycling,0,0,0, -937294944,Miguel Arraiolos,POR,male,1988-07-12,1.73,62,triathlon,0,0,0, -792866236,Miguel Borja,COL,male,1993-01-26,1.82,84,football,0,0,0, -604365100,Miguel Carvalho,POR,male,1994-09-02,1.86,72,athletics,0,0,0, -57899480,Miguel Delas,ESP,male,1984-04-13,1.7,72,hockey,0,0,0, -308381513,Miguel Duran Navia,ESP,male,1995-09-02,1.93,80,aquatics,0,0,0, -36249566,Miguel Ferrera,HON,male,1981-05-25,1.8,80,taekwondo,0,0,0, -491799396,Miguel Francis,ANT,male,1995-03-28,1.92,83,athletics,0,0,0, -558930917,Miguel Marriaga,VEN,male,1984-06-06,2.06,118,basketball,0,0,0, -390736343,Miguel Martinez Palacio,CUB,male,1991-03-23,1.7,66,wrestling,0,0,0, -464051241,Miguel Mena,NCA,male,1997-07-07,1.76,69,aquatics,0,0,0, -703973257,Miguel Murillo,CRC,male,1993-09-29,1.73,73,judo,0,0,0, -656749782,Miguel Ortiz Canavate Ozeki,ESP,male,1991-02-19,1.89,89,aquatics,0,0,0, -185068275,Miguel Ruiz,VEN,male,1990-12-20,2.02,104,basketball,0,0,0, -430176512,Miguel Tabuena,PHI,male,1994-10-13,1.74,66,golf,0,0,0, -658229421,Miguel Ubeto Aponte,VEN,male,1976-09-02,1.68,70,cycling,0,0,0, -309781378,Miguel Valente,BRA,male,1993-07-16,1.76,70,aquatics,0,0,0, -887734626,Miguel-Angel Reyes-Varela,MEX,male,1987-06-21,1.74,74,tennis,0,0,0, -41587201,Miha Zarabec,SLO,male,1991-10-12,1.77,77,handball,0,0,0, -623311312,Mihael Zgank,SLO,male,1994-02-01,1.81,90,judo,0,0,0, -992573561,Mihaela Maevska,BUL,female,1990-10-04,1.72,53,gymnastics,0,0,1, -450996043,Mihaela Petrila,ROU,female,1991-05-07,1.9,74,rowing,0,0,1, -81613069,Mihai Nistor,ROU,male,1990-11-05,1.8,,boxing,0,0,0, -467928578,Mihail Anastasakis,GRE,male,1994-12-03,1.84,102,athletics,0,0,0, -752147956,Mihail Dudas,SRB,male,1989-11-01,1.84,85,athletics,0,0,0, -175275854,Mihail Krassilov,KAZ,male,1990-03-05,1.83,70,athletics,0,0,0, -4843017,Mihail Petrov Ganev,BUL,male,1985-01-05,1.72,92,wrestling,0,0,0, -369995646,Mihajlo Ceprkalo,BIH,male,1999-06-09,1.72,74,aquatics,0,0,0, -830196213,Miho Takahashi,JPN,female,1992-12-01,1.61,56,aquatics,0,0,0, -231091970,Miho Teramura,JPN,female,1994-09-27,1.65,53,aquatics,0,0,0, -569747933,Miho Yoshioka,JPN,female,1990-08-27,1.77,68,sailing,0,0,0, -218617298,Mihyun Park,KOR,female,1986-01-26,1.6,63,hockey,0,0,0, -659143143,Mijain Lopez Nunez,CUB,male,1982-08-20,1.98,130,wrestling,1,0,0,"The biggest name in Greco-Roman wrestling, in the Americas, Cuba's Mijaín López won gold in the up to 120kg class at Beijing 2008 and London 2012 – in addition to holding five world and four Pan American titles." -427135506,Mika Kurihara,JPN,female,1989-05-14,1.76,68,basketball,0,0,0, -945541721,Mikael Appelgren,SWE,male,1989-09-06,1.91,103,handball,0,0,0, -629406000,Mikael Ishak,SWE,male,1993-03-31,1.84,74,football,0,0,0, -2710032,Mikaela Joslin Mayer,USA,female,1990-07-04,1.76,,boxing,0,0,0, -878544662,Mikalai Sharlap,BLR,male,1994-03-30,1.98,103,rowing,0,0,0, -166082362,Mike Dawson,NZL,male,1986-10-15,1.83,75,canoe,0,0,0, -281525534,Mike Hartfield,USA,male,1990-03-29,1.91,77,athletics,0,0,0, -302902046,Mike Hixon,USA,male,1994-07-16,1.73,68,aquatics,0,1,0, -999394723,Mike Mokamba Nyang'au,KEN,male,1994-08-28,1.7,70,athletics,0,0,0, -716059894,Mike Rodgers,USA,male,1985-04-24,1.76,80,athletics,0,0,0, -929371856,Mikel Schreuders,ARU,male,1998-09-21,1.89,90,aquatics,0,0,0, -627661082,Mikel Thomas,TTO,male,1987-11-23,1.7,79,athletics,0,0,0, -109189780,Mikhail Dauhaliavets,BLR,male,1990-05-18,1.77,,boxing,0,0,0, -217263774,Mikhail Dovgalyuk,RUS,male,1995-06-03,,,aquatics,0,0,0, -138028765,Mikhail Koudinov,NZL,male,1991-06-23,1.6,59,gymnastics,0,0,0, -666617738,Mikhail Kuznetsov,RUS,male,1985-05-14,1.71,72,canoe,0,0,0, -161664881,Mikhail Puliaev,RUS,male,1987-06-22,1.66,66,judo,0,0,0, -775068064,Miki Uchida,JPN,female,1995-02-21,1.73,62,aquatics,0,0,0, -861670470,Mikiko Andoh,JPN,female,1992-09-30,1.55,58,weightlifting,0,0,0, -832567924,Mikita Tsirkun,BLR,male,1997-03-24,1.84,72,sailing,0,0,0, -386269278,Mikita Tsmyh,BLR,male,1997-04-15,1.9,80,aquatics,0,0,0, -178113839,Mikkel Hansen,DEN,male,1987-10-22,1.96,98,handball,1,0,0, -342879718,Mikko Ilonen,FIN,male,1979-12-18,1.87,81,golf,0,0,0, -172389499,Miklos Cirjenics,HUN,male,1990-03-11,1.9,105,judo,0,0,0, -848330802,Miklos Srp,HUN,male,1993-03-06,2,83,athletics,0,0,0, -814553840,Miklos Tatrai,HUN,male,1986-09-19,1.83,96,shooting,0,0,0, -535398234,Miklos Ungvari,HUN,male,1980-10-15,1.76,76,judo,0,0,0, -518737451,Mikola Milchev,UKR,male,1967-11-03,1.8,80,shooting,0,0,0, -67855529,Mikolaj Burda,POL,male,1982-07-08,1.92,98,rowing,0,0,0, -220680579,Miku Tashiro,JPN,female,1994-04-07,1.63,63,judo,0,0,0, -817880722,Milad Beigi Harchegani,AZE,male,1991-03-01,1.97,80,taekwondo,0,0,1, -305207237,Milad Ebadipour Ghara H.,IRI,male,1993-10-17,1.96,78,volleyball,0,0,0, -825689633,Milagro Mena,CRC,female,1993-04-30,,,cycling,0,0,0, -588122554,Milan Aleksic,SRB,male,1986-05-13,1.93,96,aquatics,1,0,0, -34031810,Milan Macvan,SRB,male,1989-11-16,2.05,107,basketball,0,1,0, -994546507,Milan Ristic,SRB,male,1991-08-08,1.87,83,athletics,0,0,0, -812447465,Milan Trajkovic,CYP,male,1992-09-17,1.87,82,athletics,0,0,0, -39526304,Milana Dadasheva,RUS,female,1995-02-20,1.65,48,wrestling,0,0,0, -997943868,Milda Valciukaite,LTU,female,1994-05-24,1.76,66,rowing,0,0,1, -757771656,Mildrey Pineda,COL,female,1989-10-01,1.64,54,football,0,0,0, -816442333,Milena Raicevic,MNE,female,1990-03-12,1.77,71,handball,0,0,0, -627051763,Milena Rasic,SRB,female,1990-10-25,1.91,72,volleyball,0,1,0, -930041912,Milenko Sebic,SRB,male,1984-12-30,1.97,95,shooting,0,0,0, -162979267,Milenko Zoric,SRB,male,1989-04-02,1.79,73,canoe,0,1,0, -689604423,Miles Chamley-Watson,USA,male,1989-12-03,1.94,79,fencing,0,0,1, -669028913,Miles Ukaoma,NGR,male,1992-07-21,1.86,84,athletics,0,0,0, -696295930,Milica Dabovic,SRB,female,1982-02-16,1.73,63,basketball,0,0,1, -545251812,Milica Mandic,SRB,female,1991-12-06,1.8,72,taekwondo,0,0,0, -294142,Milica Starovic,SRB,female,1988-05-19,1.76,74,canoe,0,0,0, -939197606,Militsa Mircheva,BUL,female,1994-05-24,1.65,50,athletics,0,0,0, -745870544,Milivoj Dukic,MNE,male,1993-03-26,1.85,83,sailing,0,0,0, -263697348,Milko Olavi Tokola,FIN,male,1992-10-10,1.63,85,weightlifting,0,0,0, -806789845,Milly Clark,AUS,female,1989-03-01,,,athletics,0,0,0, -543042822,Milos Cuk,SRB,male,1990-12-21,1.91,91,aquatics,1,0,0, -824446870,Milos Scepanovic,MNE,male,1982-10-09,1.85,86,aquatics,0,0,0, -696058975,Milos Teodosic,SRB,male,1987-03-19,1.95,90,basketball,0,1,0, -434422235,Milos Vasic,SRB,male,1991-01-10,1.96,94,rowing,0,0,0, -619216736,Milosz Jankowski,POL,male,1990-01-17,1.93,70,rowing,0,0,0, -392630546,Miloud Rahmani,ALG,male,1982-12-30,1.78,62,athletics,0,0,0, -923155291,Miloud Rebiai,ALG,male,1993-12-12,1.7,65,football,0,0,0, -917223658,Miltiadis Tentoglou,GRE,male,1998-03-18,1.85,75,athletics,0,0,0, -939168667,Milutin Stefanovic,SRB,male,1985-01-23,1.8,74,shooting,0,0,0, -94698500,Mima Ito,JPN,female,2000-10-21,1.5,45,table tennis,0,0,1, -730531395,Mimi Belete,BRN,female,1988-06-09,1.69,56,athletics,0,0,0, -299491184,Mimi Nikolova Hristova,BUL,female,1993-07-19,1.63,58,wrestling,0,0,0, -956895312,Mimosa Jallow,FIN,female,1994-06-17,1.76,67,aquatics,0,0,0, -84728158,Min Zhang,CHN,female,1993-06-20,1.8,84,rowing,0,0,0, -879015845,Min Zhou,CHN,female,1997-12-16,1.72,64,aquatics,0,0,0, -682581945,Minami Itahashi,JPN,female,2000-01-28,1.5,47,aquatics,0,0,0, -454894249,Minami Shimizu,JPN,female,1993-07-14,1.58,53,hockey,0,0,0, -352623895,Mindaugas Griskonis,LTU,male,1986-01-17,1.9,92,rowing,0,1,0, -790457754,Mindaugas Kuzminskas,LTU,male,1989-10-19,2.04,100,basketball,0,0,0, -489620720,Ming Tai Chan,HKG,male,1995-01-30,1.75,60,athletics,0,0,0, -405125709,Ming-Yen Tsai,TPE,male,1996-01-07,1.67,63,judo,0,0,0, -44722504,Minggang Zhao,CHN,male,1988-05-30,1.85,,boxing,0,0,0, -142526569,Minhal Sohail,PAK,female,1995-01-03,1.59,63,shooting,0,0,0, -40888029,Minjee Lee,AUS,female,1996-05-27,1.65,60,golf,0,0,0, -695744582,Minjeong Kim,KOR,female,1988-08-08,1.79,95,judo,0,0,0, -55604401,Minjung Kim,KOR,female,1997-03-26,1.6,50,shooting,0,0,0, -353713812,Mink van der Weerden,NED,male,1988-10-19,1.78,83,hockey,0,0,0, -504800343,Minkyu Choi,KOR,male,1992-08-31,1.84,84,canoe,0,0,0, -995871061,Minna Nikkanen,FIN,female,1988-04-09,1.69,54,athletics,0,0,0, -215136501,Minsoo Park,KOR,male,1994-11-21,1.63,,gymnastics,0,0,0, -575636398,Minsu Kang,KOR,male,1986-03-31,1.73,76,shooting,0,0,0, -800631700,Mintae Kim,KOR,male,1993-11-26,1.87,78,football,0,0,0, -875570651,Minxia Wu,CHN,female,1985-11-10,1.67,53,aquatics,1,0,0, -989837218,Mio Yamanaka,JPN,female,1995-10-27,1.57,56,rugby sevens,0,0,0, -646593349,Mir Saeid Marouflakrani,IRI,male,1985-10-20,1.89,81,volleyball,0,0,0, -254218441,Mira Park,KOR,female,1987-04-20,1.73,66,handball,0,0,0, -793097599,Mira Potkonen,FIN,female,1980-11-17,1.65,,boxing,0,0,1, -700649053,Mirali Sharipov,UZB,male,1987-10-30,1.73,73,judo,0,0,0, -419020833,Miranda Ayim,CAN,female,1988-05-06,1.9,72,basketball,0,0,0, -329752486,Miranda Giambelli,AUS,female,1992-05-22,1.69,78,judo,0,0,0, -589013959,Miranda Melville,USA,female,1989-03-20,1.58,49,athletics,0,0,0, -539312354,Mirco Pruijser,NED,male,1989-08-11,1.94,87,hockey,0,0,0, -16778625,Mirco Scarantino,ITA,male,1995-01-16,1.66,56,weightlifting,0,0,0, -837308127,Mireia Belmonte Garcia,ESP,female,1990-11-10,1.7,59,aquatics,1,0,1, -146069322,Mirela Demireva,BUL,female,1989-09-28,1.8,58,athletics,0,1,0, -164294275,Miri Alatrash,PLE,female,1994-06-27,1.7,57,aquatics,0,0,0, -95824314,Miriam Casillas Garcia,ESP,female,1992-06-24,1.64,52,triathlon,0,0,0, -638255791,Miriam Nagl,BRA,female,1981-01-22,1.72,63,golf,0,0,0, -929012474,Miriam Welte,GER,female,1986-12-09,1.71,67,cycling,0,0,1, -1578040,Mirna Ortiz,GUA,female,1987-02-28,1.58,42,athletics,0,0,0, -232798946,Miro Bilan,CRO,male,1989-07-21,2.13,121,basketball,0,0,0, -69797437,Miroslav Kirchev,BUL,male,1990-06-12,1.86,78,canoe,0,0,0, -727165956,Miroslav Raduljica,SRB,male,1988-01-05,2.13,130,basketball,0,1,0, -702761980,Miroslav Vrastil,CZE,male,1982-10-17,1.84,83,rowing,0,0,0, -237763343,Miroslava Topinkova Knapkova,CZE,female,1980-09-19,1.81,72,rowing,0,0,0, -28185060,Miroslaw Zietarski,POL,male,1993-03-09,1.9,90,rowing,0,0,0, -508919033,Mirsamad Pourseyedigolakhour,IRI,male,1985-10-15,1.8,65,cycling,0,0,0, -515513440,Miryam Roper,GER,female,1982-06-26,1.65,59,judo,0,0,0, -824109825,Mirza Basic,BIH,male,1991-07-12,1.87,85,tennis,0,0,0, -401258599,Misael Uziel Rodriguez,MEX,male,1994-04-07,1.78,,boxing,0,0,1, -446490717,Misaki Doi,JPN,female,1991-04-29,1.59,52,tennis,0,0,0, -719250032,Misaki Matsutomo,JPN,female,1992-02-08,1.6,50,badminton,1,0,0, -387566065,Misaki Onishi,JPN,female,1985-02-24,1.64,46,athletics,0,0,0, -779502274,Misaki Yamaguchi,JPN,female,1990-01-20,1.65,60,aquatics,0,0,0, -958405399,Misato Nakamura,JPN,female,1989-04-28,1.57,52,judo,0,0,1, -355342299,Misha Aloian,RUS,male,1988-08-23,1.65,,boxing,0,1,0, -787920390,Misha Zilberman,ISR,male,1989-01-30,1.71,61,badminton,0,0,0, -460301568,Missy Franklin,USA,female,1995-05-10,1.88,77,aquatics,1,0,0,"At London 2012, Missy Franklin surprised the world by winning five medals: four golds and one bronze. Not to mention, she also set two new world records. The ""Missile"", as she is known, has won 11 world titles." -240018946,Misun Choi,KOR,female,1996-07-01,1.68,53,archery,1,0,0, -396364855,Mitch Dielemans,NED,male,1993-01-06,1.86,75,archery,0,0,0, -858784147,Mitch Emery,AUS,male,1990-09-27,1.85,89,aquatics,0,0,0, -481579548,Mitchel Steenman,NED,male,1984-06-17,2.01,94,rowing,0,0,0, -852265607,Mitchell Iles-Crevatin,AUS,male,1999-03-25,1.78,,shooting,0,0,0, -248884983,Mitchell Larkin,AUS,male,1993-07-09,1.87,72,aquatics,0,1,1, -882242965,Mitko Tsenov,BUL,male,1993-06-13,1.85,65,athletics,0,0,0, -211027286,Mitsuaki Shiga,JPN,male,1991-09-16,1.77,75,aquatics,0,0,0, -478951301,Miyu Nagaoka,JPN,female,1991-07-25,1.79,68,volleyball,0,0,0, -267807948,Miyuki Nakagawa,JPN,female,1986-12-20,1.61,53,hockey,0,0,0, -224192302,Miyuki Uehara,JPN,female,1995-11-22,1.54,39,athletics,0,0,0, -238146440,Mladan JANOVIC,MNE,male,1984-06-11,1.8,97,aquatics,0,0,0, -803073046,Mo Zhang,CAN,female,1989-01-17,1.73,57,table tennis,0,0,0, -716769230,Moacir Zimmermann,BRA,male,1983-12-30,1.84,70,athletics,0,0,0, -177889659,Mobolade Ajomale,CAN,male,1995-08-31,1.8,62,athletics,0,0,1, -30183396,Moeko Nagaoka,JPN,female,1993-12-29,1.77,73,basketball,0,0,0, -446613849,Mohab Ishak,EGY,male,1997-03-21,1.72,68,aquatics,0,0,0, -810751335,Mohamad Kasem,SYR,male,1993-10-03,1.72,73,judo,0,0,0, -812147248,Mohamed Abdelaal,EGY,male,1990-07-23,1.75,81,judo,0,0,0, -597913544,Mohamed Abdeldjalil Bourguieg,ALG,male,1996-08-31,1.55,50,gymnastics,0,0,0, -836418464,Mohamed Alaa Hashem,EGY,male,1988-01-23,1.78,75,handball,0,0,0, -414844442,Mohamed Ali Bhar,TUN,male,1989-09-17,1.8,82,handball,0,0,0, -300150573,Mohamed Ali Mrabet,TUN,male,1990-01-01,1.82,84,canoe,0,0,0, -803678104,Mohamed Aly Zaghloul Mohamed,EGY,male,1993-08-31,1.65,86,wrestling,0,0,0, -583592517,Mohamed Amer,EGY,male,1997-12-18,1.99,80,fencing,0,0,0, -452585583,Mohamed Amer,EGY,male,1987-12-12,1.86,72,handball,0,0,0, -150604584,Mohamed Andhumdine Nazlati,COM,female,1997-12-20,1.6,62,aquatics,0,0,0, -148746639,Mohamed Arafet Naceur,TUN,male,1988-11-04,1.9,76,volleyball,0,0,0, -509599615,Mohamed Ayoub Ferjani,TUN,male,1986-07-27,1.75,75,fencing,0,0,0, -219235142,Mohamed Daud Mohamed,SOM,male,1996-03-01,,,athletics,0,0,0, -310689410,Mohamed Elhadi Elkawisah,LBA,male,1987-03-08,,,judo,0,0,0, -956253727,Mohamed Essam,EGY,male,1994-12-06,1.8,74,fencing,0,0,0, -302433626,Mohamed Farah,GBR,male,1983-03-23,1.75,58,athletics,2,0,0,"After winning gold in the 5000m and 10,000m at his home Olympics in London 2012, Great Britain´s Mo Farah showed his prowess in these events once again by taking gold in the same races at the 2013 and 2015 World Championships." -464902728,Mohamed Flissi,ALG,male,1990-02-13,1.74,,boxing,0,0,0, -662693282,Mohamed Hamout,MAR,male,1993-12-11,1.67,,boxing,0,0,0, -189738440,Mohamed Hamza,EGY,male,2000-09-11,1.72,62,fencing,0,0,0, -653185102,Mohamed Hesham Elbassiouny,EGY,male,1990-05-10,1.84,75,handball,0,0,0, -173845600,Mohamed Hrezi,LBA,male,1991-10-28,,,athletics,0,0,0, -53291565,Mohamed Hussein,EGY,male,1991-09-10,1.88,78,aquatics,0,0,0, -705810811,Mohamed Ibrahim Ramadan,EGY,male,1984-03-07,1.87,89,handball,0,0,0, -606398332,Mohamed Ismail Ibrahim,DJI,male,1997-01-01,1.7,63,athletics,0,0,0, -777542037,Mohamed Jilani Maaref,TUN,male,1991-10-27,1.92,100,handball,0,0,0, -438310446,Mohamed Lamine Dansoko,GUI,male,1998-03-15,1.81,78,athletics,0,0,0, -726944048,Mohamed Mahmoud,EGY,male,1989-11-21,1.65,77,weightlifting,0,0,1, -927181230,Mohamed Mamdouh Shebib,EGY,male,1989-04-01,1.86,85,handball,0,0,0, -608771921,Mohamed Masoud,EGY,male,1994-05-01,2.11,105,volleyball,0,0,0, -422177442,Mohamed Mohyeldin,EGY,male,1991-10-01,1.7,73,judo,0,0,0, -463171596,Mohamed Ramah,MAR,male,1986-01-02,1.86,102,shooting,0,0,0, -407211801,Mohamed Saadaoui,TUN,male,1995-05-11,1.76,86,wrestling,0,0,0, -109252911,Mohamed Sbihi,GBR,male,1988-03-27,2.02,110,rowing,1,0,0, -385884277,Mohamed Sghaier,TUN,male,1988-07-18,1.85,79,athletics,0,0,0, -645636204,Mohamed Soussi,TUN,male,1993-01-17,1.94,98,handball,0,0,0, -307662595,Mohamed Taieb,TUN,male,1996-10-15,1.87,73,rowing,0,0,0, -823399635,Mohamed Thakil,EGY,male,1986-07-12,1.84,71,volleyball,0,0,0, -514503427,Mohammad Ahsan,INA,male,1987-09-07,1.73,72,badminton,0,0,0, -653470021,Mohammad Arzandeh,IRI,male,1987-10-30,1.89,77,athletics,0,0,0, -855226703,Mohammad Mahfizur Rahman,BAN,male,1993-05-15,,,aquatics,0,0,0, -663027391,Mohammad Sanad,EGY,male,1991-01-16,1.84,78,handball,0,0,0, -289057786,Mohammad Tawfiq Bakhshi,AFG,male,1986-03-11,1.81,99,judo,0,0,0, -175246089,Mohammadjafar Moradi,IRI,male,1990-04-10,1.69,62,athletics,0,0,0, -545080658,Mohammadreza Barari,IRI,male,1988-03-31,1.8,105,weightlifting,0,0,0, -416345678,Mohammed Abukhousa,PLE,male,1992-12-30,,,athletics,0,0,0, -926792518,Mohammed Ahmed,CAN,male,1991-01-05,1.82,56,athletics,0,0,0, -404954189,Mohammed Al-Khafaji,IRQ,male,1994-02-20,1.81,75,rowing,0,0,0, -597431856,Mohammed Aman,ETH,male,1994-01-10,1.65,58,athletics,0,0,0, -690873472,Mohammed Amine Tayeb,ALG,male,1985-09-28,1.9,100,judo,0,0,0, -207078605,Mohammed Arjaoui,MAR,male,1987-06-06,1.86,,boxing,0,0,0, -955962862,Mohammed Benkablia,ALG,male,1993-02-02,1.8,72,football,0,0,0, -268626951,Mohammed Benkhemassa,ALG,male,1993-06-28,1.6,60,football,0,0,0, -963049864,Mohammed Hameed,IRQ,male,1993-01-24,1.85,75,football,0,0,0, -104121143,Mohammed Maan,IRQ,male,1994-07-10,1.85,78,football,0,0,0, -200493972,Mohammed Rabii,MAR,male,1993-07-13,1.8,,boxing,0,0,1, -984836225,Mohammed Rageh,YEM,male,1998-01-01,1.69,61,athletics,0,0,0, -106274200,Mohanad Abdulraheem,IRQ,male,1993-09-22,1.84,75,football,0,0,0, -582863169,Mohsen Al Duhaylib,KSA,male,1994-05-01,1.63,69,weightlifting,0,0,0, -412108690,Moises Daniel Hernandez Encarnacion,DOM,male,1993-03-22,1.91,79,taekwondo,0,0,0, -282645376,Moises Duque,BRA,male,1988-12-21,1.73,75,rugby sevens,0,0,0, -974378104,Mojtaba Abedini,IRI,male,1984-08-11,1.8,83,fencing,0,0,0, -790224130,Mojtaba Mirzajanpour M.,IRI,male,1991-10-07,2.05,88,volleyball,0,0,0, -421422970,Molly Goodman,AUS,female,1993-02-19,,,rowing,0,0,0, -942675571,Molly Hannis,USA,female,1992-03-13,1.71,70,aquatics,0,0,0, -509619259,Molly Huddle,USA,female,1984-08-31,1.66,48,athletics,0,0,0, -736619678,Molly Meech,NZL,female,1993-03-31,1.78,74,sailing,0,1,0, -770966520,Molly Renshaw,GBR,female,1996-05-06,1.76,66,aquatics,0,0,0, -146611617,Mona Shaito,LIB,female,1994-05-12,1.52,52,fencing,0,0,0, -330073847,Monica,BRA,female,1987-04-21,1.68,64,football,0,0,0, -465263667,Monica Aksamit,USA,female,1990-02-18,1.83,74,fencing,0,0,1, -2092982,Monica Brennan,AUS,female,1994-01-22,1.75,58,athletics,0,0,0, -964250913,Monica Lanz,NED,female,1991-04-08,1.8,70,rowing,0,0,0, -251342702,Monica Niculescu,ROU,female,1987-09-25,1.68,64,tennis,0,0,0, -839524352,Monica Patricia Dominguez Lara,MEX,female,1988-03-05,1.62,57,weightlifting,0,0,0, -9559634,Monica Pimentel Rodriguez,ARU,female,1989-01-07,1.71,49,taekwondo,0,0,0, -490158961,Monica Puig,PUR,female,1993-09-27,1.68,64,tennis,1,0,0, -335904579,Monica Ramirez Abella,AND,female,1993-12-27,1.7,55,aquatics,0,0,0, -31059637,Monica Rokhman,USA,female,1997-05-27,1.73,55,gymnastics,0,0,0, -292580115,Monica Sarai Arango Estrada,COL,female,1992-06-05,1.65,60,aquatics,0,0,0, -413592133,Monica Ungureanu,ROU,female,1988-01-09,1.64,48,judo,0,0,0, -364893024,Monica de Gennaro,ITA,female,1987-01-08,1.74,67,volleyball,0,0,0, -494339957,Monika,IND,female,1993-11-05,1.62,51,hockey,0,0,0, -560189163,Monika Brzostek,POL,female,1989-07-28,1.73,62,volleyball,0,0,0, -737506601,Monika Ciaciuch,POL,female,1992-05-10,1.82,74,rowing,0,0,1, -313838269,Monika Ewa Michalik,POL,female,1980-05-02,1.67,63,wrestling,0,0,1, -335727290,Monika Karsch,GER,female,1982-12-22,1.58,55,shooting,0,1,0, -216289131,Monika Stefanowicz,POL,female,1980-05-15,1.6,46,athletics,0,0,0, -138520050,Monika Vasilyan,ARM,female,1995-10-08,1.66,59,aquatics,0,0,0, -643397164,Monique Sullivan,CAN,female,1989-02-21,1.67,70,cycling,0,0,0, -256721799,Morad Zemouri,QAT,male,1993-03-03,1.73,73,judo,0,0,0, -288223126,Morales Silva,CUB,male,1996-02-08,1.8,81,judo,0,0,0, -42332624,Morea Baru,PNG,male,1990-04-15,1.62,62,weightlifting,0,0,0, -522289399,Morena Martinez Franchi,ARG,female,1993-02-19,1.64,62,volleyball,0,0,0, -629625273,Morgan Brian,USA,female,1993-02-26,1.7,56,football,0,0,0, -933274052,Morgan Craft,USA,female,1993-05-11,1.61,63,shooting,0,0,0, -539265571,Morgan Lake,GBR,female,1997-05-12,1.78,68,athletics,0,0,0, -678637275,Morgan Mitchell,AUS,female,1994-10-03,1.77,63,athletics,0,0,0, -776634450,Morgana Gmach,BRA,female,1994-06-17,1.59,44,gymnastics,0,0,0, -350635188,Morghan Whitney King,USA,female,1985-10-08,1.53,48,weightlifting,0,0,0, -249898083,Moritz Furste,GER,male,1984-10-28,1.9,89,hockey,0,0,1, -613123178,Moritz Milatz,GER,male,1982-06-24,1.73,65,cycling,0,0,0, -820494787,Moritz Moos,GER,male,1994-03-15,1.76,71,rowing,0,0,0, -354728238,Moritz Trompertz,GER,male,1995-09-21,1.8,76,hockey,0,0,1, -511776561,Moroke Jeremia Mokhotho,LES,male,1990-11-12,,,boxing,0,0,0, -177555215,Morolake Akinosun,USA,female,1994-05-17,1.63,60,athletics,1,0,0, -174861233,Morten Joergensen,DEN,male,1985-06-23,1.83,73,rowing,0,1,0, -981709933,Morten Olsen,DEN,male,1984-10-11,1.84,95,handball,1,0,0, -757235037,Moses Martin Kurong,UGA,male,1994-07-07,,,athletics,0,0,0, -305593512,Mosito Lehata,LES,male,1989-04-08,1.77,69,athletics,0,0,0, -775280640,Mostafa Sharifat,IRI,male,1987-09-16,2.04,85,volleyball,0,0,0, -648612446,Mostafa Smaili,MAR,male,1997-01-09,1.74,63,athletics,0,0,0, -164610408,Mothobi Mvala,RSA,male,1994-06-14,1.76,67,football,0,0,0, -906175629,Motomi Kawamura,JPN,female,1996-03-05,1.57,54,hockey,0,0,0, -853620753,Mouhssine Lahsaini,MAR,male,1985-08-23,1.84,77,cycling,0,0,0, -22631231,Mouma Das,IND,female,1984-02-24,1.49,47,table tennis,0,0,0, -61885653,Mpi Anauel Ngamissengue,CGO,male,1996-02-03,1.7,,boxing,0,0,0, -228902925,Mpumi Nyandeni,RSA,female,1987-08-19,1.62,50,football,0,0,0, -176457455,Muamer Tankovic,SWE,male,1995-02-22,1.8,70,football,0,0,0, -111349032,Muenfuh Sincere,NGR,male,1998-04-28,1.7,,football,0,0,1, -620003817,Muhamad Hasbi,INA,male,1992-07-12,1.58,62,weightlifting,0,0,0, -955910708,Muhammad Akmal Nor Hasrin,MAS,male,1995-07-15,1.8,74,archery,0,0,0, -545267756,Muhammad Ali,GBR,male,1996-06-20,1.73,,boxing,0,0,0, -758048391,Muhammad Halim,ISV,male,1986-10-26,1.91,82,athletics,0,0,0, -175347040,Muhammad Wijaya,INA,male,1996-08-22,1.71,70,archery,0,0,0, -864313645,Muhammed Anas Yahiya,IND,male,1994-09-17,1.77,69,athletics,0,0,0, -824855418,Muhao Li,CHN,male,1992-06-02,2.18,115,basketball,0,0,0, -137651650,Mujinga Kambundji,SUI,female,1992-06-17,1.68,65,athletics,0,0,0, -313782663,Mukhamadmurod Abdurakhmonov,TJK,male,1986-11-29,1.92,117,judo,0,0,0, -422893498,Mukhlid Alotaibi,KSA,male,1976-06-20,1.63,60,athletics,0,0,0, -933102788,Muktar Edris,ETH,male,1994-01-14,1.71,60,athletics,0,0,0, -501615561,Mulern Jean,HAI,female,1992-09-25,,,athletics,0,0,0, -752439313,Mulomowandau Mathoho,RSA,male,1990-03-01,1.78,75,football,0,0,0, -395323200,Mumin Gala,DJI,male,1986-09-06,1.85,70,athletics,0,0,0, -380366841,Muminjon Abdullaev,UZB,male,1989-12-24,1.9,130,wrestling,0,0,0, -700821397,Munkhzaya Bayartsogt,MGL,female,1993-10-10,1.6,43,athletics,0,0,0, -44840352,Munkhzaya Tsedevsuren,MGL,female,1986-06-13,1.65,65,judo,0,0,0, -242791485,Munkhzul Tsogbadrakh,MGL,female,1981-02-28,1.74,65,shooting,0,0,0, -703714683,Munyo Solomon Mutai,UGA,male,1992-10-22,,,athletics,0,0,0, -908231867,Murat Ramonov,KGZ,male,1990-07-21,1.92,120,wrestling,0,0,0, -241961956,Muriel Coneo,COL,female,1987-03-15,1.6,50,athletics,0,0,0, -845100767,Murielle Ahoure,CIV,female,1987-08-23,1.65,58,athletics,0,0,0, -313174082,Murilo Antonio Fischer,BRA,male,1979-06-16,1.7,68,cycling,0,0,0, -411476785,Murodjon Akhmadaliev,UZB,male,1994-11-02,1.65,,boxing,0,0,1, -534931107,Murphy Troy,USA,male,1989-05-31,2.02,99,volleyball,0,0,1, -294093955,Murray Stewart,AUS,male,1986-07-02,1.86,86,canoe,0,0,0, -774480033,Musa Hajdari,KOS,male,1987-10-11,1.87,74,athletics,0,0,0, -260677878,Musaeb Abdulrahman Balla,QAT,male,1989-03-19,1.85,65,athletics,0,0,0, -249810115,Musashi Suzuki,JPN,male,1994-02-11,1.85,75,football,0,0,0, -98192269,Mussa Chamaune,MOZ,male,1992-08-19,1.72,66,canoe,0,0,0, -315205581,Mustafa Alsaltialkrad,QAT,male,1987-03-16,1.86,90,handball,0,0,0, -759784132,Mustafa Kaya,TUR,male,1992-06-06,1.64,65,wrestling,0,0,0, -610760480,Mustafa Nadhim,IRQ,male,1993-09-23,1.82,75,football,0,0,0, -434308587,Mutaz Essa Barshim,QAT,male,1991-06-24,1.9,65,athletics,0,1,0, -963065622,Myeongjun Son,KOR,male,1994-01-17,1.81,62,athletics,0,0,0, -828123780,Myeongmok Han,KOR,male,1991-02-01,1.6,62,weightlifting,0,0,0, -94171394,Mykhailo Romanchuk,UKR,male,1996-08-07,1.9,82,aquatics,0,0,0, -462238804,Mykola Butsenko,UKR,male,1991-06-25,1.7,,boxing,0,0,0, -370313350,Mykyta Nesterenko,UKR,male,1991-04-15,2.08,120,athletics,0,0,0, -53536605,Mynhardt Mbeumuna Kawanivi,NAM,male,1984-03-03,1.78,59,athletics,0,0,0, -321314290,Myong Hyok Kim,PRK,male,1990-12-03,1.64,69,weightlifting,0,0,0, -450507588,Myong Suk Jong,PRK,female,1993-02-06,1.61,53,wrestling,0,0,0, -719432881,Myong Sun Ri,PRK,female,1992-01-26,1.63,53,table tennis,0,0,0, -985606742,Myriam Fatime Sylla,ITA,female,1995-01-08,1.84,80,volleyball,0,0,0, -530677071,Myrthe Schoot,NED,female,1988-08-29,1.83,70,volleyball,0,0,0, -143551773,Na Wang,CHN,female,1994-08-05,1.66,59,hockey,0,0,0, -834890793,Nacif Elias,LIB,male,1988-09-29,1.72,78,judo,0,0,0, -997747457,Nada Albedwawi,UAE,female,1997-08-15,1.62,53,aquatics,0,0,0, -829297928,Nada Arakji,QAT,female,1994-10-30,1.63,59,aquatics,0,0,0, -718461351,Nada Daabousova,SVK,female,1997-01-15,1.65,52,aquatics,0,0,0, -512802404,Nada Hafez,EGY,female,1997-08-28,1.68,58,fencing,0,0,0, -36934955,Nada Meawad,EGY,female,1998-04-12,1.8,71,volleyball,0,0,0, -704571555,Nada Saafan,EGY,female,1996-09-10,1.68,53,aquatics,0,0,0, -813043984,Nadeen El-Dawlatly,EGY,female,1993-06-22,1.62,54,table tennis,0,0,0, -494612343,Nadezhda Bazhina,RUS,female,1987-12-29,1.7,59,aquatics,0,0,0, -528001593,Nadezhda Glyzina,RUS,female,1988-05-20,1.75,68,aquatics,0,0,1, -139491644,Nadia Centoni,ITA,female,1981-06-19,1.82,63,volleyball,0,0,0, -895831974,Nadia Colhado,BRA,female,1989-02-25,1.94,88,basketball,0,0,0, -551473101,Nadia Negm,EGY,female,1998-07-23,1.7,69,rowing,0,0,0, -460024379,Nadiezda Zieba,POL,female,1984-05-21,1.72,64,badminton,0,0,0, -369509430,Nadiia Kichenok,UKR,female,1992-07-20,1.75,65,tennis,0,0,0, -313426980,Nadine Broersen,NED,female,1990-04-29,1.71,62,athletics,0,0,0, -938928683,Nadine Gonska,GER,female,1990-01-23,1.68,58,athletics,0,0,0, -520205566,Nadine Hildebrand,GER,female,1987-09-20,1.59,55,athletics,0,0,0, -3180101,Nadine Muller,GER,female,1985-11-21,1.93,94,athletics,0,0,0, -735909394,Nadine Visser,NED,female,1995-02-09,1.75,61,athletics,0,0,0, -774153676,Nadine Zumkehr,SUI,female,1985-02-05,1.72,65,volleyball,0,0,0, -963806165,Nadiya Borovska,UKR,female,1981-02-25,1.63,50,athletics,0,0,0, -228904239,Nadiya Dusanova,UZB,female,1987-11-17,1.74,56,athletics,0,0,0, -688425243,Nadja Horwitz,CHI,female,1996-03-10,1.66,58,sailing,0,0,0, -271635042,Nadja Pries,GER,female,1994-05-20,1.61,56,cycling,0,0,0, -322606304,Nadzeya Liapeshka,BLR,female,1989-04-26,1.72,67,canoe,0,0,1, -799009112,Nafissatou Thiam,BEL,female,1994-08-19,1.87,72,athletics,1,0,0, -523471843,Nagisa Hayashi,JPN,female,1986-08-29,1.65,58,hockey,0,0,0, -848586988,Naho Miyoshi,JPN,female,1993-12-21,1.65,62,basketball,0,0,0, -742568072,Naiara Egozkue,ESP,female,1983-10-21,1.73,70,handball,0,0,0, -701395318,Naima Bakkal,MAR,female,1990-08-28,1.7,57,taekwondo,0,0,0, -692114409,Naing Soe Yan,MYA,male,1979-01-31,1.8,98,judo,0,0,0, -276705406,Naito Ehara,JPN,male,1993-07-30,1.72,59,aquatics,0,0,1, -397860366,Najima Parveen,PAK,female,1990-12-20,,,athletics,0,0,0, -787936059,Najmeh Khedmati,IRI,female,1996-06-09,1.59,64,shooting,0,0,0, -414759552,Namakoe Nkhasi,LES,male,1993-01-10,,,athletics,0,0,0, -910960289,Namika Matsumoto,JPN,female,1992-02-07,1.58,63,weightlifting,0,0,0, -539278913,Namita Toppo,IND,female,1995-06-04,1.63,53,hockey,0,0,0, -921608416,Nan Chen,CHN,female,1983-01-08,1.95,94,basketball,0,0,0, -131634277,Nan Zhang,CHN,male,1990-03-01,1.83,75,badminton,1,0,1, -817788274,Nancy Chepkwemoi,KEN,female,1993-10-08,1.21,47,athletics,0,0,0, -533602756,Nandinzaya Gankhuyag,MGL,female,1994-06-27,1.55,56,shooting,0,0,0, -641363235,Nando De Colo,FRA,male,1987-06-23,1.96,90,basketball,0,0,0, -209921871,Nanna Koerstz Madsen,DEN,female,1994-10-23,1.71,67,golf,0,0,0, -634283561,Nanna Vainio,FIN,female,1991-05-29,1.7,60,badminton,0,0,0, -679632915,Nanthana Komwong,THA,female,1980-09-13,1.59,54,table tennis,0,0,0, -95609257,Nao Hibino,JPN,female,1994-11-28,1.63,58,tennis,0,0,0, -415843643,Naohisa Takato,JPN,male,1993-05-30,1.6,60,judo,0,0,1, -30264154,Naoko Ishihara,JPN,female,1974-10-22,1.57,64,shooting,0,0,0, -834851644,Naomi Flood,AUS,female,1986-04-17,1.75,,canoe,0,0,0, -807036162,Naomi Folkard,GBR,female,1983-09-18,1.69,76,archery,0,0,0, -268877038,Naomi Ruele,BOT,female,1997-01-13,,,aquatics,0,0,0, -217475768,Naomi Sedney,NED,female,1994-12-17,1.7,65,athletics,0,0,0, -937919946,Naomi van As,NED,female,1983-07-26,1.79,63,hockey,0,1,0, -827667838,Naomichi Ueda,JPN,male,1994-10-24,1.86,77,football,0,0,0, -230104226,Naomy Grand Pierre,HAI,female,1997-04-16,,,aquatics,0,0,0, -486171475,Naoya Okada,JPN,male,1990-10-10,1.85,70,shooting,0,0,0, -298380237,Napis Tortungpanich,THA,male,1995-03-29,1.74,56,shooting,0,0,0, -676294284,Naranjargal Tsend-Ayush,MGL,female,1992-01-27,1.75,70,judo,0,0,0, -772765503,Narcis Stefan Mihaila,ROU,male,1987-08-04,1.83,73,athletics,0,0,0, -871545516,Narcisa Landazuri,ECU,female,1991-06-13,1.66,55,athletics,0,0,0, -435983396,Nareg Guregian,USA,male,1989-01-20,1.96,97,rowing,0,0,0, -188253954,Narek Abgaryan,ARM,male,1992-01-06,1.66,,boxing,0,0,0, -302411064,Nariman Aly,EGY,female,1998-09-29,1.69,55,aquatics,0,0,0, -345522636,Narsingh Pancham Yadav,IND,male,1989-08-06,1.67,74,wrestling,0,0,0, -113824084,Nary Ly,CAM,female,1972-06-06,1.6,55,athletics,0,0,0, -238115739,Naryury Alexandra Perez Reveron,VEN,female,1992-09-29,1.68,100,weightlifting,0,0,0, -342677534,Nasanburmaa Ochirbat,MGL,female,1989-04-14,1.66,69,wrestling,0,0,0, -520381146,Nasreddine Megdich,QAT,male,1991-08-29,1.79,80,handball,0,0,0, -142174350,Nasser Al-Attiya,QAT,male,1970-12-21,1.78,82,shooting,0,0,0, -295414413,Nastassia Ivanova,BLR,female,1982-11-04,1.62,50,athletics,0,0,0, -244608144,Nastassia Yatsevich,BLR,female,1985-01-18,1.58,48,athletics,0,0,0, -442261024,Natalia Alfaro,CRC,female,1987-04-08,1.65,62,volleyball,0,0,0, -945555989,Natalia Duco,CHI,female,1989-01-31,1.77,100,athletics,0,0,0, -501264763,Natalia Gaitan,COL,female,1991-04-03,1.64,56,football,0,0,0, -29258479,Natalia Gaudio,BRA,female,1992-12-18,1.7,55,gymnastics,0,0,0, -102725469,Natalia Ishchenko,RUS,female,1986-04-08,1.77,56,aquatics,2,0,0,"With a total of 19 world championship medals, Russia's Natalia Ischchenko also won three golds from two Olympic Games: the team event at Beijing 2008 and London 2012 – as well as the individual event in the latter." -508230574,Natalia Kuziutina,RUS,female,1989-05-08,1.6,52,judo,0,0,1, -131987947,Natalia Lovtcova,RUS,female,1988-04-14,,,aquatics,0,0,0, -482560028,Natalia Luccas,BRA,female,1996-09-13,1.67,63,aquatics,0,0,0, -91982471,Natalia Madaj,POL,female,1988-01-25,1.75,68,rowing,1,0,0, -934592033,Natalia Maria Bernardo,ANG,female,1986-12-25,1.7,65,handball,0,0,0, -260798105,Natalia Pacierpnik,POL,female,1988-08-14,1.69,58,canoe,0,0,0, -354025336,Natalia Partyka,POL,female,1989-07-27,1.73,64,table tennis,0,0,0, -121155817,Natalia Pereira,BRA,female,1989-04-04,1.84,76,volleyball,0,0,0, -53814036,Natalia Perminova,RUS,female,1991-11-14,1.64,55,badminton,0,0,0, -281240211,Natalia Pohrebniak,UKR,female,1988-02-19,1.71,63,athletics,0,0,0, -290312104,Natalia Priscepa,MDA,female,1989-10-17,1.68,74,weightlifting,0,0,0, -228374480,Natalia Romero,CHI,female,1980-02-26,1.63,57,athletics,0,0,0, -496598838,Natalia Rutkowska,POL,female,1991-01-21,1.62,56,cycling,0,0,0, -930260254,Natalia Sanchez,COL,female,1983-05-20,1.66,63,archery,0,0,0, -335301565,Natalia Semenova,UKR,female,1982-07-07,1.78,75,athletics,0,0,0, -868843791,Natalia Stratulat,MDA,female,1987-07-24,1.78,83,athletics,0,0,0, -681645907,Natalia Valentin,PUR,female,1989-09-12,1.7,61,volleyball,0,0,0, -233616560,Natalia Vorobeva,RUS,female,1991-05-27,1.74,69,wrestling,0,1,0, -104900032,Natalie Achonwa,CAN,female,1992-11-22,1.9,86,basketball,0,0,0, -501589607,Natalie Burton,AUS,female,1989-03-23,1.94,76,basketball,0,0,0, -325204288,Natalie Hermann,GER,female,1999-08-27,1.7,54,gymnastics,0,0,0, -235612415,Natalie Mastracci,CAN,female,1989-06-05,1.78,75,rowing,0,0,0, -243599235,Natalie Mc Giffert,USA,female,1997-03-14,1.61,43,gymnastics,0,0,0, -783121274,Natalie Powell,GBR,female,1990-10-16,1.75,77,judo,0,0,0, -469016028,Natalie Rooney,NZL,female,1988-06-01,1.81,95,shooting,0,1,0, -36343721,Nataliia Lupu,UKR,female,1987-11-04,1.75,60,athletics,0,0,0, -152619271,Nataliia Moskvina,UKR,female,1988-06-09,1.67,55,gymnastics,0,0,0, -417902852,Nataliia Pryshchepa,UKR,female,1994-09-11,1.63,48,athletics,0,0,0, -184555664,Nataliya Goncharova,RUS,female,1989-06-01,1.94,75,volleyball,0,0,0, -716355288,Nataliya Lehonkova,UKR,female,1982-12-27,1.61,48,athletics,0,0,0, -76086422,Nataliya Strohova,UKR,female,1992-12-26,1.69,65,athletics,0,0,0, -460143342,Nataliya Trafimava,BLR,female,1979-06-16,1.84,75,basketball,0,0,0, -383133261,Nataliya Zolotukhina,UKR,female,1985-01-04,1.8,87,athletics,0,0,0, -395541735,Natallia Kalnysh,UKR,female,1974-07-02,1.67,80,shooting,0,0,0, -326138845,Natallia Viatkina,BLR,female,1987-02-10,1.76,58,athletics,0,0,0, -972532499,Nataly Arias,COL,female,1986-04-02,1.72,64,football,0,0,0, -546626523,Nataly Michel,MEX,female,1990-07-09,1.71,62,fencing,0,0,0, -200672327,Natalya Asanova,UZB,female,1989-11-29,1.77,58,athletics,0,0,0, -189952338,Natalya Coyle,IRL,female,1990-12-11,1.7,60,modern pentathlon,0,0,0, -987315393,Natalya Sergeyeva,KAZ,female,1976-05-03,1.64,64,canoe,0,0,0, -975725248,Natalya Sinishin,AZE,female,1985-07-03,1.6,58,wrestling,0,0,1, -979223655,Natan Wegrzycki-Szymczyk,POL,male,1995-01-05,2.02,92,rowing,0,0,0, -928811908,Natasa Douchev-Janic,HUN,female,1982-06-24,1.74,68,canoe,0,0,0, -143252275,Natasha Hansen,NZL,female,1989-11-15,1.67,66,cycling,0,0,0, -306128745,Natasha Hastings,USA,female,1986-07-23,1.73,68,athletics,1,0,0, -161924940,Natasha Hunt,GBR,female,1989-03-21,1.65,62,rugby sevens,0,0,0, -566498103,Natasha Watcham-Roy,CAN,female,1992-04-28,1.7,67,rugby sevens,0,0,1, -71025804,Natasha Wodak,CAN,female,1981-12-17,1.6,47,athletics,0,0,0, -378410191,Nate Ebner,USA,male,1988-12-14,1.86,97,rugby sevens,0,0,0, -306477924,Nathalie Brugger,SUI,female,1985-12-25,1.74,69,sailing,0,0,0, -925043937,Nathalie Hagman,SWE,female,1991-07-19,1.67,62,handball,0,0,0, -238114237,Nathalie Moellhausen,BRA,female,1985-12-01,1.77,63,fencing,0,0,0, -146755228,Nathalie Nicole Viviane Marchino Urrutia,COL,female,1981-07-27,1.7,63,rugby sevens,0,0,0, -776128059,Nathan Adrian,USA,male,1988-12-07,1.99,102,aquatics,2,0,2, -934643545,Nathan Bailey,GBR,male,1993-07-24,1.78,71,gymnastics,0,0,0, -236734803,Nathan Brannen,CAN,male,1982-09-08,1.74,58,athletics,0,0,0, -440261722,Nathan Byukusenge,RWA,male,1980-08-08,,,cycling,0,0,0, -364644327,Nathan Flannery,NZL,male,1992-10-22,1.89,85,rowing,0,0,0, -532748337,Nathan Hart,AUS,male,1993-03-04,1.8,90,cycling,0,0,0, -880935011,Nathan Katz,AUS,male,1995-01-17,1.75,66,judo,0,0,0, -628333432,Nathan Outteridge,AUS,male,1986-01-28,1.79,75,sailing,0,1,0, -874878988,Nathan Schrimsher,USA,male,1992-05-22,1.88,78,modern pentathlon,0,0,0, -920855247,Nathon Allen,JAM,male,1995-10-28,,,athletics,0,1,0, -600380333,Natoya Goule,JAM,female,1991-03-30,1.52,57,athletics,0,0,0, -379684120,Natsumi Hoshi,JPN,female,1990-08-21,1.64,56,aquatics,0,0,1, -354644354,Natsumi Sakai,JPN,female,2001-06-19,1.72,58,aquatics,0,0,0, -626206435,Natsumi Tomonaga,JPN,female,1991-08-22,1.69,53,modern pentathlon,0,0,0, -507079558,Natthanan Junkrajang,THA,female,1986-04-13,1.66,57,aquatics,0,0,0, -585986660,Natthaphong Phonoppharat,THA,male,1988-05-16,1.77,72,sailing,0,0,0, -897039475,Natthaya Thanaronnawat,THA,female,1979-06-12,1.58,47,athletics,0,0,0, -521469837,Nauraj Singh Randhawa,MAS,male,1992-01-27,1.93,70,athletics,0,0,0, -383442577,Navjot Kaur,IND,female,1995-03-07,1.67,53,hockey,0,0,0, -848372593,Nayo Raincock-Ekunwe,CAN,female,1991-08-29,1.87,75,basketball,0,0,0, -797214230,Nazar Kovalenko,UKR,male,1987-02-09,1.77,68,athletics,0,0,0, -703930419,Nazik Avdalyan,ARM,female,1986-10-31,1.57,69,weightlifting,0,0,0, -613585930,Nazim Babayev,AZE,male,1997-10-08,1.87,74,athletics,0,0,0, -167982830,Nazli Donertas,TUR,female,1991-03-01,1.73,69,sailing,0,0,0, -328956324,Ndifreke Udo,NGR,male,1998-08-15,1.73,,football,0,0,1, -467504641,Nebiat Habtemariam,ERI,female,1978-12-29,,,athletics,0,0,0, -932895136,Nebojsa Grujic,SRB,male,1991-03-21,1.81,83,canoe,0,0,0, -213347925,Ned Justeen Azemia,SEY,male,1997-08-21,1.77,65,athletics,0,0,0, -393863560,Neda Shahsavari,IRI,female,1986-09-21,1.67,62,table tennis,0,0,0, -218738861,Nehal Saafan,EGY,female,1996-09-10,1.64,49,aquatics,0,0,0, -824920979,Neide Marisa de P. Barbosa,ANG,female,1980-09-23,1.8,87,handball,0,0,0, -229071441,Neisi Patricia Dajomes Barrera,ECU,female,1998-05-12,1.67,69,weightlifting,0,0,0, -868834976,Nekoda Smythe-Davis,GBR,female,1993-04-22,1.57,60,judo,0,0,0, -19709330,Neli Alberto,ESP,female,1983-07-02,1.79,90,handball,0,0,0, -251197905,Nelia Martins,TLS,female,1998-07-09,1.5,,athletics,0,0,0, -741011271,Nelson Evora,POR,male,1984-04-20,1.83,76,athletics,0,0,0, -526118539,Nelson Filipe Santos Simoes Oliveira,POR,male,1989-03-06,1.8,67,cycling,0,0,0, -454620893,Nelson Kipkosgei Cherutich,BRN,male,1993-03-09,1.7,60,athletics,0,0,0, -618007323,Nemanja Nedovic,SRB,male,1991-06-16,1.91,90,basketball,0,1,0, -761172837,Nenad Bedik,SRB,male,1989-04-14,2.02,96,rowing,0,0,0, -706411745,Nenad Filipovic,SRB,male,1978-10-05,1.82,74,athletics,0,0,0, -840921480,Nenad Zimonjic,SRB,male,1976-06-04,1.92,90,tennis,0,0,0, -188152707,Nene Hilario,BRA,male,1982-09-13,2.11,113,basketball,0,0,0, -838940374,Nercely Soto,VEN,female,1990-08-23,1.69,55,athletics,0,0,0, -41640598,Nerea Pena,ESP,female,1989-12-13,1.75,70,handball,0,0,0, -967371534,Neringa Aidietyte,LTU,female,1983-06-05,1.77,60,athletics,0,0,0, -459454489,Nery Brenes,CRC,male,1985-09-25,1.75,70,athletics,0,0,0, -274922701,Nestor Abad,ESP,male,1993-03-29,1.67,64,gymnastics,0,0,0, -358214485,Nestor Colmenares,VEN,male,1987-09-05,2.03,110,basketball,0,0,0, -662467395,Nestor Colonia,PHI,male,1992-02-16,1.58,55,weightlifting,0,0,0, -628099211,Nestor Nielsen van Hoff,URU,male,1972-11-13,1.81,83,equestrian,0,0,0, -321378771,Nestor Orellana,MEX,male,1992-01-07,1.92,84,volleyball,0,0,0, -406378010,Neta Rivkin,ISR,female,1991-06-19,1.7,50,gymnastics,0,0,0, -536696599,Nethaneel Mitchell-Blake,GBR,male,1994-04-02,1.87,86,athletics,0,0,0, -738180656,Nevena Jovanovic,SRB,female,1990-06-30,1.79,72,basketball,0,0,1, -892604107,Neviana Vladinova,BUL,female,1994-02-23,1.66,47,gymnastics,0,0,0, -255428335,Nevriye Yilmaz,TUR,female,1980-06-16,1.92,85,basketball,0,0,0, -780066644,Neymar,BRA,male,1992-02-05,1.74,68,football,1,0,0,"Currently the hottest name in Brazilian football, Neymar competes at the Games for the second time (he won silver at London 2012, scoring three goals). He won the 2013 Confederations Cup with the national side, and the 2015 Champions League with Barcelona" -243033574,Nezir Karap,TUR,male,1994-01-02,1.74,74,aquatics,0,0,0, -708788077,Ngoc Tu Van,VIE,female,1987-08-11,1.58,46,judo,0,0,0, -350682364,Nguse Amlosom,ERI,male,1986-11-10,1.8,56,athletics,0,0,0, -978016075,Ni Yan,CHN,female,1987-03-02,1.92,74,volleyball,1,0,0, -294595887,Nia Ali,USA,female,1988-10-23,1.68,64,athletics,0,1,0, -806128359,Niall Williams,NZL,female,1988-04-21,1.73,74,rugby sevens,0,1,0, -959123687,Nic Woods,NZL,male,1995-08-26,1.8,90,hockey,0,0,0, -487583469,Niccolo Campriani,ITA,male,1987-11-06,1.77,80,shooting,2,0,0, -81940931,Niccolo' Gitto,ITA,male,1986-10-12,1.9,90,aquatics,0,0,1, -284825190,Nichelle Prince,CAN,female,1995-02-19,1.63,65,football,0,0,1, -832227468,Nicholas Delpopolo,USA,male,1989-02-08,1.73,77,judo,0,0,0, -451660058,Nicholas Hoag,CAN,male,1992-08-19,2,91,volleyball,0,0,0, -617073971,Nicholas Kiplagat Bett,KEN,male,1990-01-27,1.9,75,athletics,0,0,0, -550972021,Nicholas Long,USA,male,1989-10-06,1.88,86,cycling,0,0,0, -48265252,Nicholas Lucena,USA,male,1979-09-22,1.86,83,volleyball,0,0,0, -446810551,Nicholas Magana,PER,male,1996-06-18,1.98,90,aquatics,0,0,0, -186990387,Nicholas Presciutti,ITA,male,1993-12-14,1.89,93,aquatics,0,0,1, -411471821,Nicholas Quinn,IRL,male,1993-06-03,1.85,78,aquatics,0,0,0, -475985515,Nicholas Scarvelis,GRE,male,1993-02-02,1.86,125,athletics,0,0,0, -373381796,Nicholas Willis,NZL,male,1983-04-25,1.83,68,athletics,0,0,1, -624024995,Nick Dempsey,GBR,male,1980-08-13,1.8,71,sailing,0,1,0, -779437440,Nick Haig,NZL,male,1987-03-12,1.8,82,hockey,0,0,0, -572455894,Nick Malouf,AUS,male,1993-03-19,1.86,92,rugby sevens,0,0,0, -253306509,Nick Miller,GBR,male,1993-05-01,1.88,112,athletics,0,0,0, -764396400,Nick Skelton,GBR,male,1957-12-30,1.75,76,equestrian,1,0,0, -319742600,Nick Thompson,GBR,male,1986-05-05,1.79,80,sailing,0,0,0, -743923874,Nick Wilson,NZL,male,1990-08-06,1.8,81,hockey,0,0,0, -683971980,Nickel Ashmeade,JAM,male,1990-04-07,1.85,88,athletics,1,0,0, -317250144,Nickel Chand,FIJ,male,1995-07-28,1.67,60,football,0,0,0, -982320885,Nickiesha Wilson,JAM,female,1986-07-28,1.74,66,athletics,0,0,0, -129717034,Nickolas Catlin,GBR,male,1989-04-08,1.75,76,hockey,0,0,0, -891765771,Nicky Samuels,NZL,female,1983-02-28,1.7,56,triathlon,0,0,0, -427041039,Nicky van Leuveren,NED,female,1990-05-20,1.75,58,athletics,0,0,0, -199818017,Nico Delle-Karth,AUT,male,1984-01-21,1.8,74,sailing,0,0,0, -134647499,Nico Miguel Hernandez,USA,male,1996-01-04,1.66,,boxing,0,0,1, -28175452,Nico Mueller,GER,male,1993-11-02,1.68,77,weightlifting,0,0,0, -988453095,Nico Stahlberg,SUI,male,1991-11-15,1.92,95,rowing,0,0,0, -570863288,Nicol Ruprecht,AUT,female,1992-10-02,1.7,55,gymnastics,0,0,0, -410663669,Nicola Adams,GBR,female,1982-10-26,1.64,,boxing,1,0,0,"Born in Leeds, England, Nicola Adams fought for the first time at the age of 13. She became the first woman to win an Olympic gold in boxing at London 2012. This Great Briton is also the current world and European champion in the up to 51kg class." -410776755,Nicola Groves,GBR,female,1989-04-04,1.68,63,sailing,0,0,0, -128217086,Nicola Muscat,MLT,female,1994-06-25,1.73,59,aquatics,0,0,0, -486899362,Nicola Philippaerts,BEL,male,1993-07-30,1.86,76,equestrian,0,0,0, -126244906,Nicola Ripamonti,ITA,male,1990-01-11,1.78,81,canoe,0,0,0, -332129646,Nicola Spirig Hug,SUI,female,1982-02-07,1.66,54,triathlon,0,1,0, -334459836,Nicola White,GBR,female,1988-01-20,1.72,65,hockey,1,0,0, -947910094,Nicola Zagame,AUS,female,1990-08-11,1.74,72,aquatics,0,0,0, -168904848,Nicolae-Alexandru Soare,ROU,male,1991-09-20,1.68,59,athletics,0,0,0, -302102692,Nicolai Brock-Madsen,DEN,male,1993-01-09,1.94,88,football,0,0,0, -730590153,Nicolai Ceban,MDA,male,1986-03-30,1.86,96,wrestling,0,0,0, -652169057,Nicolai Poulsen,DEN,male,1993-08-15,1.77,65,football,0,0,0, -860019279,Nicolas Batum,FRA,male,1988-12-14,2.03,105,basketball,0,0,0, -74210449,Nicolas Bruno,ARG,male,1989-02-24,1.87,85,volleyball,0,0,0, -388271463,Nicolas Brussino,ARG,male,1993-03-02,2,84,basketball,0,0,0, -582760864,Nicolas Bruzzone,ARG,male,1985-10-24,1.68,76,rugby sevens,0,0,0, -708871411,Nicolas Colsaerts,BEL,male,1982-11-14,1.88,75,golf,0,0,0, -768215755,Nicolas Cordoba,ARG,male,1989-11-20,1.65,71,gymnastics,0,0,0, -162021826,Nicolas Cuestas,URU,male,1986-12-08,1.8,63,athletics,0,0,0, -153786575,Nicolas D'Oriano,FRA,male,1997-05-05,1.75,68,aquatics,0,0,0, -997930388,Nicolas Ferreira,BRA,male,1992-09-25,1.85,84,fencing,0,0,0, -715985574,Nicolas Jacobi,GER,male,1987-04-13,1.93,95,hockey,0,0,1, -164743566,Nicolas Laprovittola,ARG,male,1990-01-31,1.93,88,basketball,0,0,0, -727420830,Nicolas Lionel Wettstein,ECU,male,1981-03-30,1.71,71,equestrian,0,0,0, -433876140,Nicolas Mahut,FRA,male,1982-01-21,1.9,82,tennis,0,0,0, -148338040,Nicolas Marechal,FRA,male,1987-03-04,1.98,93,volleyball,0,0,0, -586116656,Nicolas Martin Tripichio,ARG,male,1996-01-05,1.71,71,football,0,0,0, -27749600,Nicolas Nilo,BRA,male,1987-08-04,1.95,92,aquatics,0,0,0, -213136925,Nicolas Pratt,CAN,male,1985-07-10,1.83,72,rowing,0,0,0, -238155568,Nicolas Roche,IRL,male,1984-07-03,1.78,70,cycling,0,0,0, -797725236,Nicolas Touzaint,FRA,male,1980-05-10,1.75,62,equestrian,0,0,0, -228429250,Nicolas le Goff,FRA,male,1992-02-15,2.06,115,volleyball,0,0,0, -328461296,Nicole Acevedo,COL,female,1994-10-15,1.66,70,rugby sevens,0,0,0, -385843788,Nicole Ahsinger,USA,female,1998-05-12,1.63,58,gymnastics,0,0,0, -951251683,Nicole Beck,AUS,female,1988-05-28,1.68,66,rugby sevens,1,0,0, -773243020,Nicole Beukers,NED,female,1990-10-07,1.7,66,rowing,0,1,0, -87221734,Nicole Broch Larsen,DEN,female,1993-05-14,1.79,75,golf,0,0,0, -933579518,Nicole Buchler,SUI,female,1983-12-17,1.62,54,athletics,0,0,0, -982976366,Nicole Hare,CAN,female,1994-07-26,1.77,76,rowing,0,0,0, -25839351,Nicole Laird,AUS,female,1993-02-18,1.91,75,volleyball,0,0,0, -166434763,Nicole Regnier,COL,female,1995-02-28,1.7,62,football,0,0,0, -297449748,Nicole Sifuentes,CAN,female,1986-06-30,1.77,55,athletics,0,0,0, -543974028,Nicole van der Velden,ARU,female,1994-10-26,1.68,62,sailing,0,0,0, -853691804,Nida Ustundag,TUR,female,1996-10-21,1.79,69,aquatics,0,0,0, -681034829,Niek Kimmann,NED,male,1996-05-20,1.89,90,cycling,0,0,0,"Aged just 19, Niek Kimmann won the 2015 World Championship in Zolder, Belgium. Before that, he had already taken bronze in the team event at the Nanjing 2014 Youth Olympic Games." -768436561,Nien-Chin Chen,TPE,female,1997-05-10,1.69,,boxing,0,0,0, -450335121,Nigel Levine,GBR,male,1989-04-30,1.76,72,athletics,0,0,0, -970010589,Nigel Paul,TTO,male,1989-06-27,1.94,,boxing,0,0,0, -481034512,Nigina Sharipova,UZB,female,1995-08-10,,,athletics,0,0,0, -318020679,Nigora Tursunkulova,UZB,female,1999-04-04,1.81,67,taekwondo,0,0,0, -4669727,Nihel Cheikh Rouhou,TUN,female,1987-01-05,1.64,78,judo,0,0,0, -702207367,Nijat Rahimov,KAZ,male,1993-08-13,1.76,76,weightlifting,1,0,0, -17860991,Nijat Shikhalizada,AZE,male,1988-10-12,1.64,66,judo,0,0,0, -872456959,Nijel Amos,BOT,male,1994-03-15,1.79,60,athletics,0,0,0, -964306539,Nik Henigman,SLO,male,1995-12-04,1.99,95,handball,0,0,0, -88815979,Nike Lorenz,GER,female,1997-03-12,1.7,69,hockey,0,0,1, -528950819,Nikita Glasnovic,SWE,female,1995-01-17,1.75,57,taekwondo,0,0,0, -318898453,Nikita Liamin,RUS,male,1985-10-14,2.04,90,volleyball,0,0,0, -805742930,Nikita Lobintsev,RUS,male,1988-11-21,,,aquatics,0,0,0, -358430642,Nikita Morgachev,RUS,male,1981-05-03,1.96,98,rowing,0,0,0, -405340018,Nikita Nagornyy,RUS,male,1997-02-12,1.66,67,gymnastics,0,1,0, -407904416,Nikita Pablo,AUS,female,1995-01-08,1.68,63,aquatics,0,0,0, -564650240,Nikita Rafalovich,UZB,male,1993-10-10,1.9,78,taekwondo,0,0,0, -491633637,Nikita Shleikher,RUS,male,1998-06-10,1.68,66,aquatics,0,0,0, -250399527,Nikita Shurshin,RUS,male,1993-04-08,1.92,96,cycling,0,0,0, -681571834,Nikki Hamblin,NZL,female,1988-05-20,1.65,52,athletics,0,0,0, -298646249,Nikki Harris,GBR,female,1986-12-30,1.76,60,cycling,0,0,0, -532497224,Nikki Pradhan,IND,female,1993-12-08,1.53,45,hockey,0,0,0, -861176361,Nikkita Holder,CAN,female,1987-05-07,1.7,59,athletics,0,0,0, -548573991,Niklas Landin Jacobsen,DEN,male,1988-12-19,2.01,102,handball,1,0,0, -606084836,Niklas Larsen,DEN,male,1997-03-22,1.8,74,cycling,0,0,1, -898426175,Niklas Laustsen,DEN,male,1992-08-30,1.89,95,cycling,0,0,0, -852806194,Niklas Lindgren,FIN,male,1988-05-18,1.77,71,sailing,0,0,0, -497912437,Niklas Suele,GER,male,1995-09-03,1.94,100,football,0,1,0, -256324348,Niklas Wellen,GER,male,1994-12-14,1.85,77,hockey,0,0,1, -539021692,Nikol Merizaj,ALB,female,1998-08-07,1.8,65,aquatics,0,0,0, -440246912,Nikola Girke,CAN,female,1977-12-30,1.78,65,sailing,0,0,0, -680564901,Nikola Jaksic,SRB,male,1997-01-17,1.97,89,aquatics,1,0,0, -799131659,Nikola Jokic,SRB,male,1995-02-19,2.09,115,basketball,0,1,0, -195768771,Nikola Kalinic,SRB,male,1991-11-08,2.02,102,basketball,0,1,0, -483433829,Nikola Karabatic,FRA,male,1984-04-11,1.94,104,handball,0,1,0, -202450860,Nikola Mazurova,CZE,female,1994-11-22,1.6,68,shooting,0,0,0, -854142844,Nikola Mirotic,ESP,male,1991-02-11,2.08,100,basketball,0,0,1, -759289661,Nikolai Kuksenkov,RUS,male,1989-06-02,1.72,65,gymnastics,0,1,0, -111209519,Nikolai Novosjolov,EST,male,1980-06-09,1.91,93,fencing,0,0,0, -80208991,Nikolas Sylvester,VIN,male,2000-01-20,,,aquatics,0,0,0, -913573838,Nikolaus Resch,AUT,male,1984-08-30,1.88,84,sailing,0,0,0, -434491444,Nikolay Kovalev,RUS,male,1986-10-28,1.77,74,fencing,0,0,0, -705394191,Nikolay Nikolaev Bayryakov,BUL,male,1989-09-05,1.8,89,wrestling,0,0,0, -932397060,Nikoleta Kyriakopoulou,GRE,female,1986-03-21,1.67,57,athletics,0,0,0, -984974702,Nikolina Moldovan,SRB,female,1990-05-01,1.67,67,canoe,0,0,0, -553206872,Nikoloz Basilashvili,GEO,male,1992-02-23,1.85,80,tennis,0,0,0, -932198619,Nile Wilson,GBR,male,1996-01-17,1.66,60,gymnastics,0,0,1, -820507010,Nilla Fischer,SWE,female,1984-08-02,1.77,74,football,0,1,0, -426844727,Nils Brembach,GER,male,1993-02-23,1.84,70,athletics,0,0,0, -677508603,Nils Jakob Hoff,NOR,male,1985-02-05,,,rowing,0,0,0, -599711815,Nils Petersen,GER,male,1988-12-06,1.88,80,football,0,1,0, -471728310,Nils Schomber,GER,male,1994-03-15,1.83,72,cycling,0,0,0, -625149958,Nils van 't Hoenderdaal,NED,male,1993-10-03,1.78,86,cycling,0,0,0, -424937241,Nilson Moreira da Silva,BRA,male,1976-12-24,1.78,74,equestrian,0,0,0, -828507480,Niluka Karunaratne,SRI,male,1985-02-13,1.76,73,badminton,0,0,0, -690491812,Niluka Rajasekara,SRI,female,1982-03-17,1.55,42,athletics,0,0,0, -143552621,Nima Alamian,IRI,male,1992-12-24,1.74,70,table tennis,0,0,0, -624774853,Nina Amir,ISR,female,1999-01-17,1.7,62,sailing,0,0,0, -641314378,Nina Balaban,MKD,female,1995-11-02,1.58,58,shooting,0,0,0, -149794967,Nina Christen,SUI,female,1994-02-07,1.6,57,shooting,0,0,0, -61298807,Nina Derwael,BEL,female,2000-03-26,1.65,46,gymnastics,0,0,0, -116856979,Nina Hemmer,GER,female,1993-02-16,1.65,55,wrestling,0,0,0, -47803555,Nina Hollensen,DEN,female,1992-04-24,1.83,72,rowing,0,0,0, -322856280,Nina Rangelova,BUL,female,1990-10-22,1.7,56,aquatics,0,0,0, -844998028,Ning Ding,CHN,female,1990-06-20,1.71,63,table tennis,2,0,0, -137640462,Ning Gao,SIN,male,1982-10-11,1.79,80,table tennis,0,0,0, -802449703,Ning Wei,CHN,female,1982-08-05,1.67,60,shooting,0,0,0, -703857036,Nino Bertasio,ITA,male,1988-07-30,1.83,88,golf,0,0,0, -680794045,Nino Salukvadze,GEO,female,1969-02-01,1.68,58,shooting,0,0,0, -464025430,Nino Schurter,SUI,male,1986-05-13,1.73,68,cycling,1,0,0,"Swiss-born mountain cyclist Nino Schurter holds four world titles taken between 2009 and 2015, along with two Olympic medals: silver at London 2012 and bronze at Beijing 2008." -95604146,Nirmla,IND,female,1995-07-15,,,athletics,0,0,0, -800567218,Nirra Fields,CAN,female,1993-12-03,1.7,57,basketball,0,0,0, -769356228,Nisha Rawal,NEP,female,1995-09-11,1.68,73,taekwondo,0,0,0, -803251094,Nitendra Singh,IND,male,1986-09-29,1.72,58,athletics,0,0,0, -340570863,Nitya Krishinda Maheswari,INA,female,1988-12-16,1.68,65,badminton,0,0,0, -980419661,Nivaldo Nadhir Diaz Gomez,CUB,male,1994-03-24,2,81,volleyball,0,0,0, -399376832,Njisane Phillip,TTO,male,1991-05-29,,,cycling,0,0,0, -169340447,Nkosingiphile Gumede,RSA,male,1993-12-01,1.92,95,football,0,0,0, -228913165,Noah Al-Khulaifi,QAT,male,1999-05-10,1.9,86,aquatics,0,0,0, -649129831,Noah Mascoll-Gomes,ANT,male,1999-05-27,1.75,68,aquatics,0,0,0, -779523971,Noah Sonko Sundberg,SWE,male,1996-06-06,1.86,77,football,0,0,0, -585460949,Nobuhle Majika,ZIM,female,1991-05-09,1.59,53,football,0,0,0, -674436984,Nobukhosi Palma Ncube,ZIM,female,1993-02-17,1.59,54,football,0,0,0, -678262840,Nobuya Kato,JPN,male,1995-04-16,1.85,70,athletics,0,0,0, -26922064,Noe Delpech,FRA,male,1986-02-22,1.81,82,sailing,0,0,0, -932371435,Noel van T End,NED,male,1991-06-15,1.85,93,judo,0,0,0, -485719792,Noelie Yarigo,BEN,female,1985-12-26,1.68,56,athletics,0,0,0, -774261783,Noelle Montcalm,CAN,female,1988-04-03,1.68,53,athletics,0,0,0, -482317811,Noemi Batki,ITA,female,1987-10-12,1.67,62,aquatics,0,0,0, -815901454,Noemi Girardet,SUI,female,1994-12-12,1.74,61,aquatics,0,0,0, -656797479,Noemie Kober,FRA,female,1993-12-15,1.8,73,rowing,0,0,0, -698687305,Noemie Thomas,CAN,female,1996-02-04,1.63,59,aquatics,0,0,0, -486513538,Noko Matlou,RSA,female,1985-09-30,1.66,61,football,0,0,0, -124693732,Nomathemba Ntsibande,RSA,female,1986-04-19,1.69,59,football,0,0,0, -665606530,Non Stanford,GBR,female,1989-01-08,1.7,55,triathlon,0,0,0, -46541403,Noora Ruskola,FIN,female,1994-12-21,1.54,53,sailing,0,0,0, -45473346,Noora Tamminen,FIN,female,1990-10-30,1.68,59,golf,0,0,0, -547769017,Nooralotta Neziri,FIN,female,1992-11-09,1.74,63,athletics,0,0,0, -645011476,Nooran Ahmed Ali Ba Matraf,YEM,female,1999-11-25,1.66,60,aquatics,0,0,0, -385609976,Nora Gjakova,KOS,female,1992-08-17,1.65,57,judo,0,0,0, -483970756,Nora Mork,NOR,female,1991-04-05,1.69,,handball,0,0,1, -989374073,Nora Subschinski,GER,female,1988-06-05,1.59,57,aquatics,0,0,0, -350577535,Norbert Hosnyanszky,HUN,male,1984-03-04,1.96,101,aquatics,0,0,0, -126121033,Norbert Szabian,HUN,male,1982-09-24,1.82,97,shooting,0,0,0, -813300024,Norbert Trandafir,ROU,male,1988-02-08,1.9,85,aquatics,0,0,0, -993318561,Noriko Taniguchi,JPN,female,1992-09-07,1.66,66,rugby sevens,0,0,0, -718571072,Norisbeth Agudo,VEN,female,1992-05-22,1.63,55,volleyball,0,0,0, -253052328,Noshad Alamiyan,IRI,male,1991-11-21,1.7,67,table tennis,0,0,0, -129615,Nothando Vilakazi,RSA,female,1988-10-28,1.6,53,football,0,0,0, -742257212,Nouchka Fontijn,NED,female,1987-11-09,1.8,,boxing,0,1,0, -609989806,Nour Elayoubi,EGY,female,1997-01-16,1.67,58,aquatics,0,0,0, -753747298,Nour Elhouda Ettaieb,TUN,female,1996-10-15,1.7,57,rowing,0,0,0, -947989381,Noura Mana,MAR,female,1997-12-12,1.7,62,aquatics,0,0,0, -792186214,Noura Mohamed,EGY,female,1998-03-05,1.73,60,fencing,0,0,0, -913461449,Novak Djokovic,SRB,male,1987-05-22,1.88,88,tennis,0,0,0,"Top of the world rankings since July 2014, Serbia's Novak Djokovic crowned his glorious career by winning his first trophy at Roland Garros in 2016. In all, ""Nole"" has 12 Grand Slams and a bronze medal won at the Beijing 2008 Olympic Games." -123381244,Novlene Williams-Mills,JAM,female,1982-04-26,1.68,57,athletics,0,1,0, -795015528,Nozomi Okuhara,JPN,female,1995-03-13,1.56,51,badminton,0,0,1, -860526701,Nozomi Sato,JPN,female,1986-07-03,1.73,61,fencing,0,0,0, -158456610,Nubia Soares,BRA,female,1996-03-26,1.76,52,athletics,0,0,0, -599504171,Nuno Saraiva,POR,male,1994-03-16,1.76,76,judo,0,0,0, -552664061,Nur Dhabitah Sabri,MAS,female,1999-07-12,1.51,53,aquatics,0,0,0, -135131175,Nur Shazrin Mohamad Latif,MAS,female,1998-02-02,1.67,63,sailing,0,0,0, -799693970,Nur Tatar,TUR,female,1992-08-16,1.8,67,taekwondo,0,0,1, -231587999,Nuria Diosdado,MEX,female,1990-08-22,1.7,55,aquatics,0,0,0, -1716955,Nurislam Sanayev,KAZ,male,1991-02-09,1.63,57,wrestling,0,0,0, -147846334,Nurmakhan Tinaliyev,KAZ,male,1988-01-10,1.98,130,wrestling,0,0,0, -997050552,Nwanneka Okwelogu,NGR,female,1995-05-05,1.73,100,athletics,0,0,0, -395961774,Nyakisi Adero,UGA,female,1986-07-02,,,athletics,0,0,0, -699476083,Nycke Groot,NED,female,1988-05-04,1.75,70,handball,0,0,0, -959020954,Nzingha Prescod,USA,female,1992-08-14,1.63,62,fencing,0,0,0, -998833102,O'dayne Richards,JAM,male,1988-12-14,1.77,120,athletics,0,0,0, -838284014,Oana Manea,ROU,female,1985-04-18,1.77,78,handball,0,0,0, -703472773,Obada Alkasbeh,JOR,male,1994-07-30,1.66,,boxing,0,0,0, -381088762,Odbayar Ganbaatar,MGL,male,1989-08-20,1.6,,judo,0,0,0, -2156402,Odd Arne Brekne,NOR,male,1984-09-01,,,shooting,0,0,0, -894451060,Odette Giuffrida,ITA,female,1994-10-12,1.6,52,judo,0,1,0, -603038504,Odunayo Folasade Adekuoroye,NGR,female,1993-12-10,1.69,53,wrestling,0,0,0, -115751224,Odyssefs Meladinis,GRE,male,1990-04-05,1.94,90,aquatics,0,0,0, -202190502,Offiong Edem,NGR,female,1986-12-31,1.5,70,table tennis,0,0,0, -598707040,Oghenekaro Etebo,NGR,male,1995-11-09,1.72,,football,0,0,1, -129929116,Ogho-Oghene Egwero,NGR,male,1988-11-26,1.52,72,athletics,0,0,0, -896056444,Ojie Edoburun,GBR,male,1996-06-02,1.85,80,athletics,0,0,0, -520738573,Okcheol Kim,KOR,male,1994-11-16,1.79,70,cycling,0,0,0, -800670857,Okechukwu Azubuike,NGR,male,1997-04-19,1.7,,football,0,0,1, -332705415,Oksana Chusovitina,UZB,female,1975-06-19,1.53,43,gymnastics,0,0,0, -962326331,Oksana Herhel,UKR,female,1994-06-20,1.64,58,wrestling,0,0,0, -466004791,Oksana Okuneva,UKR,female,1990-03-14,1.75,63,athletics,0,0,0, -845220778,Oksana Shkurat,UKR,female,1993-07-30,1.7,53,athletics,0,0,0, -629436932,Oktawia Nowacka,POL,female,1991-01-02,1.8,60,modern pentathlon,0,0,1, -602321842,Olaf Tufte,NOR,male,1976-04-27,,,rowing,0,0,1, -137938891,Olaseni Lawal,NGR,male,1986-10-08,2.08,102,basketball,0,0,0, -48085407,Olaya Perez Pazo,VEN,female,1983-06-07,1.8,66,volleyball,0,0,0, -224381692,Olcay Cakir,TUR,female,1993-07-13,1.82,60,basketball,0,0,0, -925700475,Ole Hesselbjerg,DEN,male,1990-04-23,1.85,67,athletics,0,0,0, -76211755,Ole Kristian Bryhn,NOR,male,1989-05-01,,,shooting,0,0,0, -489944165,Oleg Antonov,ITA,male,1988-07-28,1.98,88,volleyball,0,1,0, -265324138,Oleg Stepko,AZE,male,1994-03-25,1.63,55,gymnastics,0,0,0, -731979766,Oleg Tarnovschi,MDA,male,1992-04-10,1.81,80,canoe,0,0,0, -57591720,Oleg Verniaiev,UKR,male,1993-09-29,1.6,56,gymnastics,1,1,0, -400214523,Oleg Zhestkov,RUS,male,1987-01-20,1.88,98,canoe,0,0,0, -727773897,Oleh Omelchuk,UKR,male,1983-06-07,1.7,68,shooting,0,0,0, -768314513,Oleh Tsarkov,UKR,male,1988-03-22,1.74,70,shooting,0,0,0, -160961676,Oleksandr Chernetskyy,UKR,male,1984-02-17,1.95,130,wrestling,0,0,0, -926202159,Oleksandr Gorshkovozov,UKR,male,1991-07-18,1.73,66,aquatics,0,0,0, -497898586,Oleksandr Pielieshenko,UKR,male,1994-01-07,1.7,85,weightlifting,0,0,0, -801537785,Oleksandr Sitkovskyy,UKR,male,1978-06-09,1.84,68,athletics,0,0,0, -917048345,Oleksandr Tugaryev,UKR,male,1995-07-15,1.67,63,sailing,0,0,0, -822288525,Oleksandra Gridasova,UKR,female,1995-07-05,1.73,53,gymnastics,0,0,0, -651167532,Oleksandra Sabada,UKR,female,1991-01-06,1.68,55,aquatics,0,0,0, -79936055,Oleksiy Kasyanov,UKR,male,1985-08-26,1.91,88,athletics,0,0,0, -872028854,Oleksiy Semenov,UKR,male,1982-06-27,1.98,120,athletics,0,0,0, -338267081,Olena Buryak,UKR,female,1988-02-08,1.96,90,rowing,0,0,0, -571691076,Olena Dmytrash,UKR,female,1991-12-01,1.73,51,gymnastics,0,0,0, -112473834,Olena Fedorova,UKR,female,1986-11-14,1.64,57,aquatics,0,0,0, -282462242,Olena Grechykhina,UKR,female,1991-07-11,1.78,62,aquatics,0,0,0, -905135133,Olena Kolesnychenko,UKR,female,1993-06-03,1.72,57,athletics,0,0,0, -55258833,Olena Kostevych,UKR,female,1985-04-14,1.6,52,shooting,0,0,0, -759603563,Olena Kravatska,UKR,female,1992-06-22,1.76,66,fencing,0,1,0, -584752118,Olena Kryvytska,UKR,female,1987-02-23,1.74,62,fencing,0,0,0, -527015303,Olena Pavlukhina,AZE,female,1989-03-01,1.78,68,cycling,0,0,0, -982514520,Olena Voronina,UKR,female,1990-05-05,1.65,65,fencing,0,1,0, -972107687,Olena Yanovska,UKR,female,1990-02-15,1.71,62,athletics,0,0,0, -853982899,Olesya Povkh,UKR,female,1987-10-18,1.67,63,athletics,0,0,0, -3330883,Olexandr Nadtoka,UKR,male,1991-03-06,1.95,95,rowing,0,0,0, -651203892,Olfa Charni,TUN,female,1980-05-24,1.76,65,shooting,0,0,0, -514784334,Olga Akopian,RUS,female,1985-03-04,1.76,63,handball,1,0,0, -834977661,Olga Golodna,UKR,female,1991-11-14,1.83,96,athletics,0,0,0, -148544473,Olga Gorbunova,RUS,female,1993-08-27,1.69,60,aquatics,0,0,1, -839908037,Olga Ismayilova,AZE,female,1985-09-16,1.7,71,cycling,0,0,0, -700198310,Olga Kharlan,UKR,female,1990-09-04,1.72,68,fencing,0,1,1, -34701189,Olga Kochneva,RUS,female,1988-06-29,1.68,58,fencing,0,0,1, -959644793,Olga Leleiko,UKR,female,1977-07-21,1.78,68,fencing,0,0,0, -101246911,Olga Rypakova,KAZ,female,1984-11-30,1.83,62,athletics,0,0,1, -58276308,Olga Safronova,KAZ,female,1991-11-05,1.71,62,athletics,0,0,0, -847854167,Olga Saladukha,UKR,female,1983-06-04,1.76,57,athletics,0,0,0, -619903029,Olga Savchuk,UKR,female,1987-09-20,1.77,67,tennis,0,0,0, -874685403,Olga Senyuk,AZE,female,1991-01-23,1.75,53,archery,0,0,0, -257199398,Olga Umaralieva,UZB,female,1988-02-05,1.61,58,canoe,0,0,0, -341366636,Olga Zabelinskaya,RUS,female,1980-05-10,,,cycling,0,1,0, -62936804,Olha Bibik,UKR,female,1990-02-05,1.73,63,athletics,0,0,0, -876726793,Olha Kotovska,UKR,female,1983-12-05,1.67,50,athletics,0,0,0, -192536405,Olha Lyakhova,UKR,female,1992-03-18,1.74,60,athletics,0,0,0, -15281750,Olha Zemlyak,UKR,female,1990-01-16,1.65,57,athletics,0,0,0, -520170826,Olha Zolotarova,UKR,female,1994-12-27,1.78,61,aquatics,0,0,0, -479817783,Olim Kurbanov,TJK,male,1998-06-21,1.86,69,aquatics,0,0,0, -463296329,Oliver Dingley,IRL,male,1992-11-24,1.63,60,aquatics,0,0,0, -82337,Oliver Geis,GER,male,1991-06-20,1.76,86,shooting,0,0,0, -671132115,Oliver Hegi,SUI,male,1993-02-20,1.69,63,gymnastics,0,0,0, -212228401,Oliver Korn,GER,male,1984-06-10,1.81,76,hockey,0,0,0, -922393211,Oliver Lindsay-Hague,GBR,male,1990-10-08,1.8,83,rugby sevens,0,1,0, -65722266,Oliver Marach,AUT,male,1980-07-16,1.84,84,tennis,0,0,0, -626280477,Oliver Szymanski,GER,male,1990-07-27,1.83,73,sailing,0,0,0, -981211905,Olivera Jevtic,SRB,female,1977-07-24,1.74,51,athletics,0,0,0, -903316415,Olivera Moldovan,SRB,female,1989-03-01,1.58,62,canoe,0,0,0, -621595419,Olivia Borlee,BEL,female,1986-04-10,1.72,57,athletics,0,0,0, -631669580,Olivia Carnegie-Brown,GBR,female,1991-03-28,1.81,73,rowing,0,1,0, -929295902,Olivia Ekpone,NGR,female,1993-01-05,,59,athletics,0,0,0, -966757117,Olivia Epoupa,FRA,female,1994-04-30,1.64,53,basketball,0,0,0, -451474447,Olivia Federici,GBR,female,1990-02-13,1.67,54,aquatics,0,0,0, -285785090,Olivia Hofmann,AUT,female,1992-08-08,1.63,58,shooting,0,0,0, -724524822,Olivia Merry,NZL,female,1992-03-16,1.82,74,hockey,0,0,0, -77219667,Olivia Podmore,NZL,female,1997-05-24,1.74,64,cycling,0,0,0, -990163818,Olivia Schough,SWE,female,1991-03-11,1.72,60,football,0,1,0, -654242453,Olivia Smoliga,USA,female,1994-10-12,1.88,74,aquatics,1,0,0, -157435063,Olivia van Rooijen,NED,female,1988-10-29,1.82,71,rowing,0,0,0, -788666996,Olivier Beer,SUI,male,1990-10-18,1.8,69,cycling,0,0,0, -758344424,Olivier Irabaruta,BDI,male,1997-08-25,1.7,62,athletics,0,0,0, -207164016,Olivier Nyokas,FRA,male,1986-06-28,1.89,86,handball,0,1,0, -355963198,Olivier Siegelaar,NED,male,1986-10-24,1.97,100,rowing,0,0,1, -560709278,Olofunke Oshonaike,NGR,female,1975-10-28,1.67,59,table tennis,0,0,0, -627306424,Olu Olamigoke,NGR,male,1990-09-19,1.75,72,athletics,0,0,0, -299832039,Oluwafemi Ajayi,NGR,male,1996-01-29,1.72,,football,0,0,1, -255777326,Oluwakemi Adekoya,BRN,female,1993-01-16,1.66,63,athletics,0,0,0, -516591047,Oluwasegun Makinde,CAN,male,1991-07-06,1.79,81,athletics,0,0,0, -172510289,Oluwatobiloba Amusan,NGR,female,1997-04-23,1.38,55,athletics,0,0,0, -177654835,Olympia Aldersey,AUS,female,1992-07-26,1.83,75,rowing,0,0,0, -168982138,Olzhas Sattibayev,KAZ,male,1988-05-02,1.6,,boxing,0,0,0, -103517404,Omar Andres Pinzon Garcia,COL,male,1989-06-17,1.84,82,aquatics,0,0,0, -876447074,Omar Assar,EGY,male,1991-07-22,1.96,93,table tennis,0,0,0, -307391721,Omar Elgeziry,EGY,male,1985-01-20,1.85,77,modern pentathlon,0,0,0, -424746712,Omar Hajjami,MAR,male,1990-07-31,1.6,58,taekwondo,0,0,0, -791818154,Omar Hassan,EGY,male,1991-04-04,1.91,104,volleyball,0,0,0, -267497141,Omar Longart,VEN,male,1991-05-18,1.72,69,athletics,0,0,0, -671572172,Omar McLeod,JAM,male,1994-04-25,,,athletics,1,0,0, -494429472,Omar Zepeda,MEX,male,1977-06-08,1.75,70,athletics,0,0,0, -370119484,Omer Karaevli,TUR,male,1977-09-11,1.76,69,equestrian,0,0,0, -236501534,Omid Haji Noroozi,IRI,male,1986-02-18,1.75,70,wrestling,0,0,0, -565665727,Omolara Omotoso,NGR,female,1993-05-25,1.52,50,athletics,0,0,0, -163885592,Ona Carbonell,ESP,female,1990-06-05,1.73,52,aquatics,0,0,0, -339420011,Ona Kim,KOR,female,1988-09-06,1.69,62,handball,0,0,0, -980936428,Onder Sipal,TUR,male,1987-05-01,1.75,,boxing,0,0,0, -880358779,Ondrej Cink,CZE,male,1990-12-07,1.78,68,cycling,0,0,0, -141546523,Ondrej Kruzel,SVK,male,1988-08-23,1.9,119,weightlifting,0,0,0, -729983888,Ondrej Synek,CZE,male,1982-10-13,1.99,105,rowing,0,0,1, -88265028,Ondrej Vetesnik,CZE,male,1984-03-05,1.81,72,rowing,0,0,0, -47810803,Onkabetse Nkobolo,BOT,male,1993-07-22,,,athletics,0,0,0, -17450856,Ons Jabeur,TUN,female,1994-08-28,1.67,66,tennis,0,0,0, -31333880,Onur Balkan,TUR,male,1996-03-10,1.76,70,cycling,0,0,0, -676134889,Onur Biriz,TUR,male,1998-10-16,1.86,73,sailing,0,0,0, -338111921,Onur Sipal,TUR,male,1989-03-17,1.72,,boxing,0,0,0, -756542327,Or Sasson,ISR,male,1990-08-18,1.93,120,judo,0,0,1, -500712109,Oreane Lechenault,FRA,female,2000-08-31,1.34,37,gymnastics,0,0,0, -10035386,Oreoluwa Cherebin,GRN,female,1997-12-24,,,aquatics,0,0,0, -890917446,Orianica Velasquez,COL,female,1989-08-01,1.77,69,football,0,0,0, -391151189,Oribe Peralta,MEX,male,1984-01-12,1.78,76,football,0,0,0, -231740872,Orkhan Safarov,AZE,male,1991-08-10,1.71,60,judo,0,0,0, -34240662,Orkhon Purevdorj,MGL,female,1993-12-25,1.63,63,wrestling,0,0,0, -375338487,Orlando Ortega,ESP,male,1991-07-29,1.82,77,athletics,0,1,0, -781301320,Orsolya Kaso,HUN,female,1988-11-22,1.87,72,aquatics,0,0,0, -149626539,Orsolya Takacs,HUN,female,1985-05-20,1.9,83,aquatics,0,0,0, -878993673,Orukpe Eraiyokan,NGR,male,1993-12-20,1.5,73,athletics,0,0,0, -257208022,Oscar Albeiro Figueroa Mosquera,COL,male,1983-04-27,1.59,62,weightlifting,1,0,0, -904285900,Oscar Ayodi,KEN,male,1989-09-21,1.84,94,rugby sevens,0,0,0, -313345460,Oscar Carrera,ESP,male,1991-05-09,1.9,86,canoe,0,0,0, -199312817,Oscar Luis Munoz Oviedo,COL,male,1993-05-09,1.78,58,taekwondo,0,0,0, -12259956,Oscar Ouma,KEN,male,1989-05-03,1.86,105,rugby sevens,0,0,0, -497523485,Oscar Salas,HON,male,1993-12-08,1.72,73,football,0,0,0, -473764617,Oscar Soliz Vilca,BOL,male,1985-01-09,1.68,59,cycling,0,0,0, -935041171,Osea Kolinisau,FIJ,male,1985-11-17,1.74,90,rugby sevens,1,0,0, -448898364,Oskar Deecke,GER,male,1986-05-16,1.83,78,hockey,0,0,0, -553047126,Oskar Kirmes,FIN,male,1995-12-19,1.7,62,gymnastics,0,0,0, -674907192,Oskari Moro,FIN,male,1993-01-31,1.81,71,athletics,0,0,0, -96259345,Osleni Guerrero,CUB,male,1989-10-18,1.89,88,badminton,0,0,0, -109325919,Osmaidel Pellicier,CUB,male,1992-03-30,1.88,88,athletics,0,0,0, -324446347,Osman Kamara,SLE,male,1987-12-31,,78,aquatics,0,0,0, -115062630,Osmany Juantorena,ITA,male,1985-08-12,2,85,volleyball,0,1,0, -943830865,Osniel Cecilio Rendon Gonzalez,CUB,male,1996-10-26,2.02,90,volleyball,0,0,0, -961508449,Osniel Lazaro Melgarejo Hernandez,CUB,male,1997-12-18,1.95,83,volleyball,0,0,0, -657263947,Oswaldo dos Santos Guimaraes,BRA,male,1989-10-23,1.83,90,handball,0,0,0, -878075998,Otar Bestaev,KGZ,male,1991-10-28,1.6,60,judo,0,0,0, -953914833,Otgonbaatar Lkhagvasuren,MGL,male,1993-01-20,1.82,94,judo,0,0,0, -358198982,Otgonbayar Luvsanlundeg,MGL,female,1982-07-13,1.53,47,athletics,0,0,0, -349670408,Otgondalai Dorjnyambuu,MGL,male,1988-01-28,1.7,,boxing,0,0,1, -830288020,Otgontsetseg Galbadrakh,KAZ,female,1992-01-25,1.65,48,judo,0,0,1, -605590898,Oumar Toure,MLI,male,1996-01-24,1.59,57,aquatics,0,0,0, -570635423,Oumou Toure,SEN,female,1988-02-18,1.89,86,basketball,0,0,0, -748074466,Oumoul Thiam,SEN,female,1990-02-03,1.79,68,basketball,0,0,0, -517816469,Ourania Rebouli,GRE,female,1989-05-16,1.64,49,athletics,0,0,0, -819236187,Oussama Boughanmi,TUN,male,1990-02-05,1.85,87,handball,0,0,0, -304396524,Oussama Darfalou,ALG,male,1993-09-29,1.86,75,football,0,0,0, -311177552,Oussama Hosni,TUN,male,1992-09-17,1.92,88,handball,0,0,0, -518631495,Oussama Mellouli,TUN,male,1984-02-16,1.92,84,aquatics,0,0,0,"At London 2012, Tunisia's Oussama Mellouli won gold in the swimming marathons and also won the bronze in the 1500m – the same event in which he had already won the gold, four years previously, at Beijing 2008." -538663975,Oussama Methazem,ALG,male,1993-12-15,1.8,75,football,0,0,0, -374267293,Oussama Oueslati,TUN,male,1996-03-24,1.99,80,taekwondo,0,0,1, -16385389,Oussama Sahnoune,ALG,male,1992-08-02,1.87,84,aquatics,0,0,0, -242873978,Ousseini Djibo Idrissa,NIG,male,1998-12-28,1.78,72,athletics,0,0,0, -806202831,Ovidiu Ionescu,ROU,male,1989-06-28,1.82,72,table tennis,0,0,0, -347377740,Ovini Uera,NRU,male,1988-01-18,1.7,90,judo,0,0,0, -745286605,Owain Doull,GBR,male,1993-05-02,1.81,73,cycling,1,0,0, -581338975,Ozge Bayrak,TUR,female,1992-02-14,1.66,60,badminton,0,0,0, -726787607,Ozlem Kaya,TUR,female,1990-04-20,1.65,47,athletics,0,0,0, -489753983,Pa Konate,SWE,male,1994-04-25,1.71,71,football,0,0,0, -178909248,Pablo Abian,ESP,male,1985-06-12,1.77,68,badminton,0,0,0, -592233151,Pablo Aprahamian,URU,male,1985-09-13,1.8,97,judo,0,0,0, -360159830,Pablo Barrios,VEN,male,1964-07-14,1.79,72,equestrian,0,0,0, -373537560,Pablo Braegger,SUI,male,1992-11-27,1.69,64,gymnastics,0,0,0, -761571916,Pablo Carrera,ESP,male,1986-08-02,1.82,93,shooting,0,0,0, -800654428,Pablo Crer,ARG,male,1989-06-12,2.02,85,volleyball,0,0,0, -310836166,Pablo Cuevas,URU,male,1986-01-01,1.8,79,tennis,0,0,0, -505304017,Pablo Defazio Abella,URU,male,1981-05-15,1.7,67,sailing,0,0,0, -284444203,Pablo Feijoo,ESP,male,1982-05-18,1.74,74,rugby sevens,0,0,0, -76294513,Pablo Fontes,ESP,male,1995-12-25,1.75,83,rugby sevens,0,0,0, -872745031,Pablo Herrera Allepuz,ESP,male,1982-06-29,1.93,88,volleyball,0,0,0, -588392494,Pablo Portela,ARG,male,1980-06-21,1.92,92,handball,0,0,0, -761942978,Pablo Simonet,ARG,male,1992-05-04,1.85,90,handball,0,0,0, -485821252,Pablo Torrijos,ESP,male,1992-05-12,1.85,76,athletics,0,0,0, -883565359,Pablo Vaistein,ARG,male,1989-07-18,1.84,89,handball,0,0,0, -283173000,Pablo de Torres,ARG,male,1984-04-14,1.9,86,canoe,0,0,0, -44439135,Paciencia,POR,male,1994-08-01,1.87,80,football,0,0,0, -49599733,Padasak Tanviriyavechakul,THA,male,1996-05-17,1.68,60,table tennis,0,0,0, -423696002,Padraig Harrington,IRL,male,1971-08-31,1.85,86,golf,0,0,0, -74504490,Padraig McCarthy,IRL,male,1977-07-18,1.8,80,equestrian,0,0,0, -548161228,Paige McPherson,USA,female,1990-10-01,1.73,65,taekwondo,0,0,0, -722165425,Paige Railey,USA,female,1987-05-15,1.73,66,sailing,0,0,0, -419662300,Paige Satchell,NZL,female,1998-04-13,1.63,50,football,0,0,0, -938845959,Paige Selenski,USA,female,1990-06-30,1.71,61,hockey,0,0,0, -883350095,Paixao Afonso,ANG,male,1991-01-02,1.76,67,sailing,0,0,0, -674501891,Pal Joensen,DEN,male,1990-12-10,1.83,76,aquatics,0,0,0, -712874334,Palmira Marcal,BRA,female,1984-05-20,1.74,76,basketball,0,0,0, -221272276,Paloma Schmidt Gutierrez,PER,female,1987-01-24,1.65,65,sailing,0,0,0, -442939892,Pamela Dutkiewicz,GER,female,1991-09-28,1.7,61,athletics,0,0,0, -608348414,Pamela Nogueira,BRA,female,1988-07-17,1.64,54,aquatics,0,0,0, -603375979,Pamela Ware,CAN,female,1993-02-12,1.61,55,aquatics,0,0,0, -495081578,Pamella Oliveira,BRA,female,1987-10-06,1.65,60,triathlon,0,0,0, -984045803,Panagiotis Gionis,GRE,male,1980-01-07,1.87,85,table tennis,0,0,0, -795025850,Panagiotis Magdanis,GRE,male,1990-11-29,1.75,71,rowing,0,0,0, -604177499,Panagiotis Mantis,GRE,male,1981-09-30,1.7,65,sailing,0,0,1, -452613023,Panagiotis Samilidis,GRE,male,1993-08-09,1.87,91,aquatics,0,0,0, -264595645,Panayiota Tsinopoulou,GRE,female,1990-10-16,1.65,54,athletics,0,0,0, -750775977,Panayiota Vlahaki,GRE,female,1991-04-03,1.67,50,athletics,0,0,0, -19012939,Pancho Paskov,BUL,male,1994-05-09,1.78,77,fencing,0,0,0, -86712158,Pandelela Rinong Pamg,MAS,female,1993-03-02,1.61,52,aquatics,0,1,0, -350338417,Panipak Wongpattanakit,THA,female,1997-08-08,1.73,49,taekwondo,0,0,1, -911324763,Paola Espinosa,MEX,female,1986-07-31,1.56,48,aquatics,0,0,0, -124063612,Paola Munoz,CHI,female,1986-04-13,1.64,54,cycling,0,0,0, -322724107,Paola Ogechi Egonu,ITA,female,1998-12-18,1.9,70,volleyball,0,0,0, -11943738,Paola Perez,VEN,female,1991-04-05,1.62,54,aquatics,0,0,0, -146805157,Paola Perez,ECU,female,1989-12-21,1.45,43,athletics,0,0,0, -340714642,Paolo Lorenzi,ITA,male,1981-12-15,1.84,77,tennis,0,0,0, -882385123,Paolo Nicolai,ITA,male,1988-08-06,2.04,100,volleyball,0,1,0, -654810825,Paolo Pizzo,ITA,male,1983-04-04,1.8,70,fencing,0,1,0, -388627308,Paolo Yurivilca,PER,male,1996-04-23,1.69,62,athletics,0,0,0, -443908875,Pap D. Jonga,GAM,male,1997-07-01,,,aquatics,0,0,0, -442404063,Par Gerell,SWE,male,1982-06-23,1.74,68,table tennis,0,0,0, -832744866,Paraskevi Papahristou,GRE,female,1989-04-17,1.7,53,athletics,0,0,0, -363332921,Pardeep Mor,IND,male,1992-06-03,1.76,67,hockey,0,0,0, -954374812,Pardon Ndhlovu,ZIM,male,1987-08-23,1.58,54,athletics,0,0,0, -593995753,Paris Henken,USA,female,1995-12-22,1.68,63,sailing,0,0,0, -318649476,Parvenn Rana,IND,male,1992-10-12,,,wrestling,0,0,0, -851811760,Parviz Baghirov,AZE,male,1994-02-10,1.77,,boxing,0,0,0, -390284488,Pascal Gregor,DEN,male,1994-02-18,1.89,82,football,0,0,0, -609470264,Pascal Lussier,CAN,male,1991-09-13,1.9,90,rowing,0,0,0, -671651436,Pascal Martinot-Lagarde,FRA,male,1991-09-22,1.89,85,athletics,0,0,0, -663249321,Pascal Plamondon,CAN,male,1992-12-12,1.71,85,weightlifting,0,0,0, -323658987,Pasquale Sottile,ITA,male,1979-08-17,1.86,73,volleyball,0,1,0, -52489905,Pat McCormack,GBR,male,1995-06-08,1.82,,boxing,0,0,0, -975309523,Pat McCutcheon,AUS,male,1987-06-24,1.87,105,rugby sevens,0,0,0, -705420033,Patience Okon George,NGR,female,1991-11-25,1.69,63,athletics,0,0,0, -522216516,Patimat Abakarova,AZE,female,1994-10-23,1.65,49,taekwondo,0,0,1, -244723566,Patricia Alejandra Bermudez,ARG,female,1987-02-05,1.5,48,wrestling,0,0,0, -539946489,Patricia Castro Ortega,ESP,female,1992-08-06,1.78,66,aquatics,0,0,0, -775629274,Patricia Elorza,ESP,female,1984-04-08,1.8,78,handball,0,0,0, -919589860,Patricia Freitas,BRA,female,1990-03-10,1.73,59,sailing,0,0,0, -505669658,Patricia Garcia,ESP,female,1989-12-02,1.63,64,rugby sevens,0,0,0, -295886630,Patricia Herrera Fernandez,ESP,female,1993-02-09,1.63,59,aquatics,0,0,0, -618669054,Patricia Mamona,POR,female,1988-11-21,1.67,60,athletics,0,0,0, -81353559,Patricia Obee,CAN,female,1991-10-31,1.65,60,rowing,0,1,0, -784355437,Patricia Sarrapio,ESP,female,1982-11-16,1.65,56,athletics,0,0,0, -899859792,Patricia Taea,COK,female,1993-05-25,1.7,67,athletics,0,0,0, -912531799,Patricia Vizitiu,ROU,female,1988-10-15,1.75,68,handball,0,0,0, -463070123,Patricio Garino,ARG,male,1993-05-17,1.96,96,basketball,0,0,0, -703130921,Patrick Barnes,IRL,male,1987-04-09,1.63,,boxing,0,0,0, -581538049,Patrick Constable,AUS,male,1995-07-15,1.83,95,cycling,0,0,0, -732337980,Patrick Dogue,GER,male,1992-03-09,1.97,81,modern pentathlon,0,0,0, -588164500,Patrick Groetzki,GER,male,1989-07-04,1.9,83,handball,0,0,0, -258619134,Patrick Hausding,GER,male,1989-03-09,1.8,77,aquatics,0,0,1, -883872117,Patrick Huston,GBR,male,1996-01-05,1.83,84,archery,0,0,0, -319404194,Patrick Lourenco,BRA,male,1993-07-02,1.64,,boxing,0,0,0, -949167573,Patrick Reed,USA,male,1990-08-05,1.83,90,golf,0,0,0, -799162684,Patrick Tiernan,AUS,male,1994-09-11,1.83,83,athletics,0,0,0, -765058141,Patrick Wiencek,GER,male,1989-03-22,2,110,handball,0,0,1, -764251988,Patrick van der Heijden,BRA,male,1992-09-19,1.8,70,hockey,0,0,0, -121079592,Patrik Kittel,SWE,male,1976-06-10,1.86,79,equestrian,0,0,0, -745764315,Patrik Tybor,SVK,male,1987-09-16,1.86,89,cycling,0,0,0, -81021268,Patrycja Piechowiak,POL,female,1992-09-01,1.62,68,weightlifting,0,0,0, -393072060,Patrycja Wyciszkiewicz,POL,female,1994-01-08,1.73,58,athletics,0,0,0, -263761754,Patryk Dobek,POL,male,1994-02-13,1.87,75,athletics,0,0,0, -597321452,Patty Mills,AUS,male,1988-08-11,1.83,85,basketball,0,0,0, -899162102,Pau Gasol,ESP,male,1980-07-06,2.15,115,basketball,0,0,1,"The biggest name in Spanish basketball, Paul Gasol won a world title (2006) and three European championships (2009, 2011 and 2015) as part of the national team. He also holds two silver medals won at Beijing 2008 and London 2012." -766117830,Pau Quemada,ESP,male,1983-09-04,1.73,69,hockey,0,0,0, -416399703,Pau Tonnesen,ESP,male,1992-10-24,1.85,77,athletics,0,0,0, -701588939,Pau Vela Maggi,ESP,male,1986-05-31,1.9,86,rowing,0,0,0, -133432446,Paul Adams,AUS,male,1992-06-04,1.85,98,shooting,0,0,0, -780137117,Paul Bennett,GBR,male,1988-12-16,2.07,100,rowing,1,0,0, -424996653,Paul Biedermann,GER,male,1986-08-07,1.93,97,aquatics,0,0,0, -577741234,Paul Drinkhall,GBR,male,1990-01-16,1.76,80,table tennis,0,0,0, -454655220,Paul Drux,GER,male,1995-02-07,1.92,106,handball,0,0,1, -364360958,Paul Estermann,SUI,male,1963-06-24,1.8,78,equestrian,0,0,0, -209482391,Paul George,USA,male,1990-05-02,2.03,99,basketball,1,0,0, -918519534,Paul Gleghorne,IRL,male,1987-04-11,1.87,82,hockey,0,0,0, -534134295,Paul Kibikai,GAB,male,1991-04-04,1.8,80,judo,0,0,0, -498755923,Paul Kipkemoi Chelimo,USA,male,1990-10-27,1.8,57,athletics,0,1,0, -357755328,Paul Kipngetich Tanui,KEN,male,1990-12-22,1.68,47,athletics,0,1,0, -29049380,Paul Kohlhoff,GER,male,1995-06-26,1.87,83,sailing,0,0,0, -367795663,Paul O'Donovan,IRL,male,1994-04-19,1.77,70,rowing,0,1,0, -674380639,Paul Omba Biongolo,FRA,male,1995-12-28,1.89,,boxing,0,0,0, -350939465,Paul Pollock,IRL,male,1986-06-25,1.77,57,athletics,0,0,0, -696711515,Paul Sieber,AUT,male,1993-02-12,1.77,70,rowing,0,0,0, -221321947,Paul Snow-Hansen,NZL,male,1990-09-03,1.74,64,sailing,0,0,0, -407521099,Paula Cristina Goncalves,BRA,female,1990-08-11,1.76,68,tennis,0,0,0, -134532053,Paula Ishibashi,BRA,female,1985-02-14,1.56,58,rugby sevens,0,0,0, -927721952,Paula Kania,POL,female,1992-11-06,1.73,63,tennis,0,0,0, -820732854,Paula Leiton Arrones,ESP,female,2000-04-27,1.87,98,aquatics,0,0,0, -990523633,Paula Lynn Obanana,USA,female,1985-03-19,1.61,58,badminton,0,0,0, -55960503,Paula Medin,ESP,female,1984-06-17,1.71,66,rugby sevens,0,0,0, -300343611,Paula Pareto,ARG,female,1986-01-16,1.5,48,judo,1,0,0, -794648133,Paula Reto,RSA,female,1990-05-03,1.7,62,golf,0,0,0, -870585003,Paula Ungureanu,ROU,female,1980-03-30,1.81,75,handball,0,0,0, -92938402,Paula Yamila Nizetich,ARG,female,1989-01-27,1.81,74,volleyball,0,0,0, -612802155,Paula-Claudia Todoran,ROU,female,1985-06-09,1.64,48,athletics,0,0,0, -250731306,Paulina Buziak,POL,female,1986-12-16,1.7,48,athletics,0,0,0, -102706397,Paulina Guba,POL,female,1991-05-14,1.83,104,athletics,0,0,0, -8892570,Paulina Schmiedel,GER,female,1993-05-29,1.75,61,aquatics,0,0,0, -483710937,Pauline Biscarat,FRA,female,1989-05-08,1.57,53,rugby sevens,0,0,0, -401150367,Pauline Ferrand Prevot,FRA,female,1992-02-10,1.64,52,cycling,0,0,0, -161474093,Pauline Hammarlund,SWE,female,1994-05-07,1.72,65,football,0,1,0, -780010350,Pauline Pousse,FRA,female,1987-09-17,1.84,84,athletics,0,0,0, -685006892,Pauline Schaefer,GER,female,1997-01-04,1.62,55,gymnastics,0,0,0, -934414617,Paulius Jankunas,LTU,male,1984-04-29,2.05,105,basketball,0,0,0, -208751523,Paulo Amotun,ROT,male,1992-01-01,1.7,61,athletics,0,0,0, -311057526,Paulo Batista,BRA,male,1993-01-27,1.85,90,hockey,0,0,0, -121145247,Paulo Bernardo Reichardt,PAR,male,1960-08-08,1.98,105,shooting,0,0,0, -168215468,Paulo Henrique,POR,male,1996-10-23,1.8,75,football,0,0,0, -185993510,Paulo Roberto Paula,BRA,male,1979-07-08,1.7,55,athletics,0,0,0, -538800855,Paulo Salemi,BRA,male,1993-08-08,1.91,94,aquatics,0,0,0, -495685388,Pauls Pujats,LAT,male,1991-08-06,1.87,83,athletics,0,0,0, -138975413,Pavel Bareisha,BLR,male,1991-02-16,1.93,118,athletics,0,0,0, -290600382,Pavel Chihuan,PER,male,1986-01-19,1.7,70,athletics,0,0,0, -88762996,Pavel Eigel,RUS,male,1990-03-01,1.78,81,canoe,0,0,0, -647042868,Pavel Ilyashenko,KAZ,male,1990-06-23,1.81,76,modern pentathlon,0,0,0, -266152637,Pavel Janecek,CZE,male,1994-04-07,1.95,87,aquatics,0,0,0, -286853003,Pavel Kastramin,BLR,male,1991-07-12,1.76,,boxing,0,0,0, -693513512,Pavel Kelemen,CZE,male,1991-05-28,1.85,83,cycling,0,0,0, -436853301,Pavel Khadasevich,BLR,male,1993-07-16,1.73,84,weightlifting,0,0,0, -99074928,Pavel Kochetkov,RUS,male,1986-03-07,1.84,72,cycling,0,0,0, -223572860,Pavel Maslak,CZE,male,1991-02-21,1.76,66,athletics,0,0,0, -455949717,Pavel Petrikov,CZE,male,1986-06-20,1.7,64,judo,0,0,0, -321729482,Pavel Sankovich,BLR,male,1990-06-29,1.82,77,aquatics,0,0,0, -663676373,Pavel Sozykin,RUS,male,1987-12-25,,,sailing,0,0,0, -654016001,Pavel Sukhov,RUS,male,1988-05-07,1.79,75,fencing,0,0,0, -941704131,Pavle Kostov,CRO,male,1987-09-28,1.8,82,sailing,0,0,0, -122873337,Pavlo Altukhov,UKR,male,1995-12-23,1.85,90,canoe,0,0,0, -124577739,Pavlo Korostylov,UKR,male,1997-11-05,1.86,100,shooting,0,0,0, -476028194,Pavlo Matsuyev,UKR,male,1990-11-05,1.81,72,sailing,0,0,0, -713017392,Pavlo Tymoshchenko,UKR,male,1986-10-13,1.92,78,modern pentathlon,0,1,0, -62996678,Pavlos Kagialis,GRE,male,1984-07-14,1.84,74,sailing,0,0,1, -18058430,Pavlos Kontides,CYP,male,1990-02-11,1.83,82,sailing,0,0,0, -517302167,Pavol Kopp,SVK,male,1978-12-27,1.83,74,shooting,0,0,0, -253678456,Pawel Fajdek,POL,male,1989-06-04,1.86,126,athletics,0,0,0, -196109685,Pawel Juraszek,POL,male,1994-10-08,,,aquatics,0,0,0, -491762709,Pawel Kaczmarek,POL,male,1995-09-08,1.83,85,canoe,0,0,0, -165395706,Pawel Kolodzinski,POL,male,1988-01-07,1.9,83,sailing,0,0,0, -943548615,Pawel Korzeniowski,POL,male,1985-07-09,1.92,86,aquatics,0,0,0, -301937277,Pawel Spisak,POL,male,1981-09-29,1.76,68,equestrian,0,0,0, -908561919,Pawel Wiesiolek,POL,male,1991-08-13,1.9,90,athletics,0,0,0, -147490715,Pawel Wojciechowski,POL,male,1989-06-06,1.9,85,athletics,0,0,0, -983705869,Pawel Zatorski,POL,male,1990-06-21,1.84,73,volleyball,0,0,0, -656447088,Peace Uko,NGR,female,1995-12-26,1.61,58,athletics,0,0,0, -34305365,Peamwilai Laopeam,THA,female,1983-10-20,1.63,,boxing,0,0,0, -260021417,Peder Fredricson,SWE,male,1972-01-30,1.89,80,equestrian,0,1,0, -361452199,Pedro Daniel Gomez,MEX,male,1990-12-31,1.78,70,athletics,0,0,0, -373434726,Pedro Francisco Ceballos Fuentes,VEN,male,1990-09-08,1.8,86,wrestling,0,0,0, -750408155,Pedro Ibarra,ARG,male,1985-09-11,1.74,75,hockey,1,0,0, -790093790,Pedro Isidro,POR,male,1985-07-17,1.75,58,athletics,0,0,0, -191275004,Pedro Luiz de Oliveira,BRA,male,1992-02-17,1.8,83,athletics,0,0,0, -337351687,Pedro Martins,POR,male,1990-02-14,1.77,70,badminton,0,0,0, -322923312,Pedro Miguel Pinotes,ANG,male,1989-09-30,1.92,85,aquatics,0,0,0, -863329559,Pedro P. Pichardo,CUB,male,1993-06-30,1.83,68,athletics,0,0,0, -85634845,Pedro Pascual,USA,male,1996-03-15,1.86,69,sailing,0,0,0, -696910008,Pedro Rangel,MEX,male,1988-09-16,1.92,85,volleyball,0,0,0, -173848012,Pedro Solberg,BRA,male,1986-03-27,1.94,90,volleyball,0,0,0, -66114756,Pedro Tavares de Almeida,BRA,male,1993-12-11,1.76,78,equestrian,0,0,0, -299349112,Pedro Veniss,BRA,male,1983-01-06,1.81,66,equestrian,0,0,0, -595693599,Pedro da Silva,BRA,male,1993-04-12,1.76,69,canoe,0,0,0, -202596543,Pedrya Seymour,BAH,female,1995-05-29,,,athletics,0,0,0, -45726783,Peer Borsky,SUI,male,1990-11-05,1.92,80,fencing,0,0,0, -703096164,Peeter Olesk,EST,male,1993-04-22,1.79,70,shooting,0,0,0, -553824405,Pei-Wun Lin,TPE,female,1999-11-25,1.74,61,aquatics,0,0,0, -678886243,Peimeng Zhang,CHN,male,1987-03-13,1.86,78,athletics,0,0,0, -374248899,Peina Chen,CHN,female,1989-06-19,1.72,63,sailing,0,1,0, -773795384,Penelope Leprevost,FRA,female,1980-08-01,1.75,55,equestrian,1,0,0, -703818710,Peng Han,CHN,female,1989-12-20,1.65,60,football,0,0,0, -709692617,Peng Soon Chan,MAS,male,1988-04-27,1.75,68,badminton,0,1,0, -983734556,Peng Tang,HKG,male,1981-02-04,1.78,77,table tennis,0,0,0, -431074718,Peng Zhou,CHN,male,1989-10-11,2.06,102,basketball,0,0,0, -239797947,Penny Oleksiak,CAN,female,2000-06-13,1.86,68,aquatics,1,1,2, -56646013,Penny Taylor,AUS,female,1981-05-24,1.85,72,basketball,0,0,0,"Australia won the 2006 world championship and small forward Penny Taylor was voted MVP of the competition. A silver medal winner at Athens 2004 and Beijing 2008, Taylor missed out on London 2012 due to injury." -319525295,Pernilla Lindberg,SWE,female,1986-07-13,1.65,60,golf,0,0,0, -489476635,Pernille Blume,DEN,female,1994-05-14,1.7,58,aquatics,1,0,1, -653763497,Perrine Clauzel,FRA,female,1994-04-05,1.55,47,cycling,0,0,0, -847560874,Perry Baker,USA,male,1986-06-29,1.86,81,rugby sevens,0,0,0, -607325017,Perseus Karlstrom,SWE,male,1990-05-02,1.84,73,athletics,0,0,0, -831774748,Persis William-Mensah,GHA,female,1996-06-15,1.74,52,athletics,0,0,0, -923556859,Peruth Chemutai,UGA,female,1999-07-10,,,athletics,0,0,0, -71344147,Petar Cupac,CRO,male,1980-02-01,1.82,77,sailing,0,0,0, -325195799,Petar Gorsa,CRO,male,1988-01-11,1.8,82,shooting,0,0,0, -336214928,Petar Tomasevic,FRA,male,1989-01-02,1.92,100,aquatics,0,0,0, -78269978,Pete Reed,GBR,male,1981-07-27,1.97,100,rowing,1,0,0, -495318551,Peter Bacsi,HUN,male,1983-05-15,1.75,82,wrestling,0,0,0, -819872199,Peter Bernek,HUN,male,1992-04-13,1.93,83,aquatics,0,0,0, -624757765,Peter Bol,AUS,male,1994-02-22,1.77,63,athletics,0,0,0, -59945226,Peter Burling,NZL,male,1991-01-01,1.86,82,sailing,1,0,0, -136312420,Peter Caruth,IRL,male,1988-06-04,1.73,73,hockey,0,0,0, -934977346,Peter Chambers,GBR,male,1990-03-14,1.86,72,rowing,0,0,0, -817847784,Peter Elisa Henry,COK,male,1990-08-14,1.7,82,sailing,0,0,0, -496549000,Peter Gelle,SVK,male,1984-08-23,1.83,82,canoe,0,0,0, -846408678,Peter Holoda,HUN,male,1996-01-09,1.96,90,aquatics,0,0,0, -596350083,Peter Joppich,GER,male,1982-12-21,1.76,68,fencing,0,0,0, -856913107,Peter Kauzer,SLO,male,1983-09-08,1.77,70,canoe,0,1,0, -968123142,Peter Lambert,GBR,male,1986-12-03,1.9,90,rowing,0,0,0, -703243129,Peter Lombard Ii,GUM,male,1976-05-24,1.7,73,cycling,0,0,0, -713355622,Peter Matthews,JAM,male,1989-11-13,1.88,84,athletics,0,1,0, -246570363,Peter Molnar,HUN,male,1986-02-16,1.88,88,canoe,0,0,0, -788615502,Peter Mullenberg,NED,male,1987-12-30,1.83,,boxing,0,0,0, -730243242,Peter Mungai Warui,KEN,male,1981-04-22,,,boxing,0,0,0, -208033661,Peter Nagy,HUN,male,1986-01-16,1.92,159,weightlifting,0,0,0, -945986909,Peter Sagan,SVK,male,1990-01-26,1.82,79,cycling,0,0,0,"After exploding onto the mountain bike scene with junior world and European titles in 2008, Slovakia's Peter Sagan went on to excel on the road, culminating in his world championship win in 2015." -183289884,Peter Sidi,HUN,male,1978-09-11,1.76,86,shooting,0,0,0, -4878555,Peter Skantar,SVK,male,1982-07-20,1.82,78,canoe,1,0,0, -690076235,Peter Somfai,HUN,male,1980-04-02,1.88,85,fencing,0,0,1, -966741128,Peter Taylor,NZL,male,1984-01-03,1.89,70,rowing,0,0,0, -289227297,Peter Wiersum,NED,male,1984-11-01,1.73,55,rowing,0,0,1, -338590323,Peter van Schie,NED,male,1988-03-03,2,98,rowing,0,0,0, -219934113,Peterson dos Santos,BRA,male,1991-03-31,1.81,70,athletics,0,0,0, -70412036,Petit David Minkoumba,CMR,male,1989-02-27,1.71,92,weightlifting,0,0,0, -878015006,Petr Asayonak,BLR,male,1993-02-27,1.65,84,weightlifting,0,0,0, -874838042,Petr Frydrych,CZE,male,1988-01-13,2,100,athletics,0,0,0, -211340599,Petr Khamukov,RUS,male,1991-07-15,1.72,,boxing,0,0,0, -799782526,Petr Koukal,CZE,male,1985-12-14,1.92,92,badminton,0,0,0, -166411555,Petr Svoboda,CZE,male,1984-10-10,1.95,90,athletics,0,0,0, -402795962,Petr Vakoc,CZE,male,1992-07-11,1.8,70,cycling,0,0,0, -20631920,Petra Fontanive,SUI,female,1988-10-10,1.7,59,athletics,0,0,0, -6323208,Petra Kvitova,CZE,female,1990-03-08,1.81,68,tennis,0,0,1, -705078758,Petra Lovas,HUN,female,1980-07-04,1.58,48,table tennis,0,0,0, -395735676,Petra Maarit Olli,FIN,female,1994-06-05,1.63,64,wrestling,0,0,0, -326772928,Petra Zublasing,ITA,female,1989-06-30,1.64,55,shooting,0,0,0, -956175465,Petrea Webster,NZL,female,1988-03-30,1.65,56,hockey,0,0,0, -921402374,Petrissa Solja,GER,female,1994-03-11,1.68,67,table tennis,0,1,0, -780238765,Petro Pakhnyuk,AZE,male,1991-11-26,1.73,64,gymnastics,0,0,0, -797449371,Petter Menning,SWE,male,1987-08-08,1.87,92,canoe,0,0,0, -556102017,Pezhman Ghalehnoei,IRI,male,1992-01-29,1.9,96,athletics,0,0,0, -975709612,Phannapa Harnsujin,THA,female,1997-09-14,1.72,57,taekwondo,0,0,0, -905495882,Phara Anacharsis,FRA,female,1983-12-17,1.77,58,athletics,0,0,0, -966511165,Phelan Hill,GBR,male,1979-07-21,1.72,55,rowing,1,0,0, -729088638,Phetetso Monese,LES,male,1984-09-22,,,cycling,0,0,0, -11938440,Phil Burgess,GBR,male,1988-07-01,1.8,92,rugby sevens,0,1,0, -514082441,Philadelphia Orlando,KEN,female,1990-02-18,1.54,72,rugby sevens,0,0,0, -805140825,Philip Dalhausser,USA,male,1980-01-26,2.06,92,volleyball,0,0,0, -492969583,Philip Heintz,GER,male,1991-02-21,1.94,85,aquatics,0,0,0, -229176554,Philip Hindes,GBR,male,1992-09-22,1.78,82,cycling,1,0,0, -289790809,Philip Milanov,BEL,male,1991-07-06,1.98,110,athletics,0,0,0, -286704073,Philip Snyman,RSA,male,1987-03-26,1.88,95,rugby sevens,0,0,1, -194978733,Philip Stenmalm,SWE,male,1992-03-03,2,103,handball,0,0,0, -615802244,Philipine van Aanholt,ARU,female,1992-05-26,1.71,65,sailing,0,0,0, -544522799,Philipp Buhl,GER,male,1989-12-19,1.87,85,sailing,0,0,0, -915966505,Philipp Kohlschreiber,GER,male,1983-10-16,1.8,70,tennis,0,0,0, -377804310,Philipp Max,GER,male,1993-09-30,1.77,76,football,0,1,0, -989265999,Philipp Pflieger,GER,male,1987-07-16,1.88,70,athletics,0,0,0, -417212497,Philipp Wende,GER,male,1985-07-04,1.99,90,rowing,1,0,0, -858470126,Philipp Wolf,GER,male,1992-08-15,1.96,96,aquatics,0,0,0, -220899684,Philippe Gagne,CAN,male,1997-10-23,1.8,68,aquatics,0,0,0, -897247005,Philippe Gilbert,BEL,male,1982-07-05,1.79,72,cycling,0,0,0, -274768032,Philippe Rozier,FRA,male,1963-02-05,1.73,63,equestrian,1,0,0, -595488187,Phillip Chew,USA,male,1994-05-16,1.73,90,badminton,0,0,0, -355129780,Phillip Dutton,USA,male,1963-09-13,1.68,68,equestrian,0,0,1, -330465212,Phillip Kipyeko,UGA,male,1995-01-01,,,athletics,0,0,0, -113831851,Phumlani Ntshangase,RSA,male,1994-12-24,1.76,71,football,0,0,0, -417884111,Phumlile Ndzinisa,SWZ,female,1992-08-21,1.7,57,athletics,0,0,0, -784201731,Phuoc Hoang,VIE,male,1993-03-24,1.8,75,aquatics,0,0,0, -524378907,Phuoc Hung Pham,VIE,male,1988-06-10,1.62,55,gymnastics,0,0,0, -74346826,Phupu Lamu Khatri,NEP,female,1996-10-05,1.63,63,judo,0,0,0, -864167150,Phuttharaksa Neegree,THA,female,1974-02-25,1.66,67,rowing,0,0,0, -888940150,Phylicia George,CAN,female,1987-11-16,1.78,65,athletics,0,0,0, -221313812,Phyllis Francis,USA,female,1992-05-04,1.81,71,athletics,1,0,0, -775856261,Pia-Sophie Oldhafer,GER,female,1992-07-01,1.66,55,hockey,0,0,1, -196591431,Pier Paolo Petroni,ITA,male,1987-03-30,1.8,70,modern pentathlon,0,0,0, -193264881,Piero Codia,ITA,male,1989-10-22,1.9,80,aquatics,0,0,0, -93324634,Pierpaolo Frattini,ITA,male,1984-02-23,1.92,92,rowing,0,0,0, -652989457,Pierre Duprat,FRA,male,1989-11-26,1.75,73,judo,0,0,0, -424639600,Pierre Gilles Lakafia,FRA,male,1987-03-12,1.83,95,rugby sevens,0,0,0, -381048812,Pierre Houin,FRA,male,1994-04-15,1.82,74,rowing,1,0,0, -760941047,Pierre Le Corre,FRA,male,1990-02-03,1.76,65,triathlon,0,0,0, -273264631,Pierre Plihon,FRA,male,1989-10-29,1.84,130,archery,0,0,0, -546837114,Pierre Pujol,FRA,male,1984-07-13,1.86,90,volleyball,0,0,0, -188712292,Pierre Volla,FRA,male,1981-07-16,1.71,69,equestrian,0,0,0, -637459176,Pierre le Coq,FRA,male,1989-01-17,1.86,72,sailing,0,0,1, -703056678,Pierre-Ambroise Bosse,FRA,male,1992-05-11,1.85,68,athletics,0,0,0, -565117926,Pierre-Hugues Herbert,FRA,male,1991-03-18,1.89,79,tennis,0,0,0, -8420504,Pieter Braun,NED,male,1993-01-21,1.87,85,athletics,0,0,0, -635258187,Pieter Bulling,NZL,male,1993-03-02,1.79,77,cycling,0,0,0, -185824997,Pieter Timmers,BEL,male,1988-01-21,2,89,aquatics,0,1,0, -712300678,Pieter-Jan Hannes,BEL,male,1992-10-30,1.86,75,athletics,0,0,0, -381556932,Pieter-Jan Postma,NED,male,1982-01-10,1.89,99,sailing,0,0,0, -556354189,Pietro Figlioli,ITA,male,1984-05-29,1.91,98,aquatics,0,0,1, -312015477,Pietro Roman,ITA,male,1989-09-20,1.78,72,equestrian,0,0,0, -359623981,Pietro Ruta,ITA,male,1987-08-06,1.85,70,rowing,0,0,0, -965100500,Pietro Zucchetti,ITA,male,1981-01-25,1.88,82,sailing,0,0,0, -538317694,Pilar Lucrecia Cordon,ESP,female,1973-03-04,1.75,58,equestrian,0,0,0, -229833243,Pilar Romang,ARG,female,1992-07-09,1.6,50,hockey,0,0,0, -258972749,Pilar Shimizu,GUM,female,1996-05-27,1.68,83,aquatics,0,0,0, -417310154,Pim-On Klaisuban,THA,female,1992-07-07,1.67,75,shooting,0,0,0, -430131884,Pimsiri Sirikaew,THA,female,1990-04-25,1.52,57,weightlifting,0,1,0, -864763299,Ping Li,QAT,male,1986-05-18,1.78,65,table tennis,0,0,0, -859561876,Ping Yao,CHN,female,1993-03-19,1.6,58,cycling,0,0,0, -138538135,Pingan Shen,CHN,male,1994-04-20,1.82,73,cycling,0,0,0, -381746437,Piotr Daniluk,POL,male,1982-01-15,1.75,72,shooting,0,0,0, -838910156,Piotr Juszczak,POL,male,1988-07-03,1.97,94,rowing,0,0,0, -489240868,Piotr Kantor,POL,male,1992-05-03,2,90,volleyball,0,0,0, -156639283,Piotr Lisek,POL,male,1992-08-16,1.94,92,athletics,0,0,0, -193728095,Piotr Malachowski,POL,male,1983-06-07,1.93,130,athletics,0,1,0, -630205806,Piotr Myszka,POL,male,1981-07-25,1.86,74,sailing,0,0,0, -798661107,Piotr Nowakowski,POL,male,1987-12-18,2.05,90,volleyball,0,0,0, -61020520,Piotr Pazinski,POL,male,1987-08-07,1.87,80,taekwondo,0,0,0, -978409862,Piotr Szczepanski,POL,male,1988-07-31,1.8,76,canoe,0,0,0, -205004197,Piotr Wyszomirski,POL,male,1988-01-06,1.95,95,handball,0,0,0, -780018325,Pippa Funnell,GBR,female,1968-10-07,1.68,68,equestrian,0,0,0, -660600598,Pippa Hayward,NZL,female,1990-05-23,1.76,69,hockey,0,0,0, -930203213,Pirmammad Aliyev,KAZ,male,1997-11-02,1.7,63,gymnastics,0,0,0, -789056524,Pirmin Blaak,NED,male,1988-03-08,1.88,88,hockey,0,0,0, -988729820,Pita Nikolas Taufatofua,TGA,male,1983-11-05,1.91,100,taekwondo,0,0,0, -825607253,Pite,POR,male,1994-08-22,1.86,80,football,0,0,0, -624453875,Po Heung Lin,HKG,female,1985-05-02,1.64,58,fencing,0,0,0, -249071689,Pol Arias Dourdet,AND,male,1996-08-08,1.75,80,aquatics,0,0,0, -799207392,Pol Moya,AND,male,1996-12-09,1.78,62,athletics,0,0,0, -172536875,Pol Pla,ESP,male,1993-02-18,1.77,75,rugby sevens,0,0,0, -704580585,Polat Kemboi Arikan,TUR,male,1990-12-12,1.75,59,athletics,0,0,0, -974099683,Poliana,BRA,female,1991-02-06,1.72,60,football,0,0,0, -39584129,Poliana Okimoto,BRA,female,1983-03-08,1.65,52,aquatics,0,0,1,"Brazil's first world marathon swimming champion, in 2009, Poliana Okimoto had the best year of her career to date, in 2013. She won three medals at the World Aquatics Championship, in Barcelona, including gold in the 10km." -343525700,Polina Kuznetsova,RUS,female,1987-06-10,1.68,60,handball,1,0,0, -543469512,Polina Mikhailova,RUS,female,1986-08-31,1.68,60,table tennis,0,0,0, -593041020,Polina Repina,KAZ,female,1990-06-29,1.7,50,athletics,0,0,0, -931143770,Polly Powrie,NZL,female,1987-12-09,1.73,70,sailing,0,1,0, -663848389,Polly Swann,GBR,female,1988-06-05,1.85,76,rowing,0,1,0, -171878949,Polona Batagelj,SLO,female,1989-06-07,1.73,53,cycling,0,0,0, -983536887,Polona Hercog,SLO,female,1991-01-20,1.85,70,tennis,0,0,0, -254645346,Poonam Rani,IND,female,1993-02-08,1.52,53,hockey,0,0,0, -704169798,Poovamma Raju Machettira,IND,female,1990-06-05,1.74,58,athletics,0,0,0, -678194406,Popole Misenga,ROT,male,1992-02-25,1.8,90,judo,0,0,0, -327752493,Popoola Saliu,NGR,male,1994-08-07,1.7,,football,0,0,1, -319595440,Pornanong Phatlum,THA,female,1989-12-04,1.6,55,golf,0,0,0, -169038848,Porntip Buranaprasertsuk,THA,female,1991-10-24,1.65,61,badminton,0,0,0, -508827063,Portia Woodman,NZL,female,1991-07-12,1.69,74,rugby sevens,0,1,0, -487961386,Pourya Norouziyan,IRI,male,1992-01-22,1.76,63,shooting,0,0,0, -373005438,Prakash Nanjappa,IND,male,1976-02-29,1.75,85,shooting,0,0,0, -126137216,Praneel Naidu,FIJ,male,1995-01-29,1.76,66,football,0,0,0, -339114990,Prarthana G. Thombare,IND,female,1994-06-18,1.65,58,tennis,0,0,0, -980803991,Praveen Jordan,INA,male,1993-04-26,1.83,88,badminton,0,0,0, -56351006,Predrag Filipovic,SRB,male,1978-10-05,1.82,72,athletics,0,0,0, -701283758,Predrag JOKIC,MNE,male,1983-02-03,1.88,102,aquatics,0,0,0, -670821875,Preeti Dubey,IND,female,1998-06-13,1.66,53,hockey,0,0,0, -534519239,Prenam Pesse,TOG,female,1997-12-31,,,athletics,0,0,0, -990896999,Primoz Roglic,SLO,male,1989-10-29,1.77,66,cycling,0,0,0, -11988746,Priscilla Frederick,ANT,female,1989-02-14,1.83,70,athletics,0,0,0, -575956679,Priscilla Gneto,FRA,female,1991-08-03,1.64,52,judo,0,0,0, -230616729,Priscilla Stevaux Carnaval,BRA,female,1993-12-02,1.56,58,cycling,0,0,0, -376160174,Przemyslaw Krajewski,POL,male,1987-01-20,1.84,87,handball,0,0,0, -324476209,Przemyslaw Wacha,POL,male,1981-01-31,1.82,81,badminton,0,0,0, -319585560,Pui Yin Yip,HKG,female,1987-08-06,1.64,61,badminton,0,0,0, -654021545,Puttita Supajirakul,THA,female,1996-03-29,1.84,72,badminton,0,0,0, -513769796,Qais Ashfaq,GBR,male,1993-03-10,1.7,,boxing,0,0,0, -598446702,Qendrim Guri,KOS,male,1993-11-27,1.75,70,cycling,0,0,0, -321163659,Qi Zhou,CHN,male,1996-01-16,2.17,95,basketball,0,0,0, -17611557,Qian Chen,CHN,female,1987-01-14,1.63,54,modern pentathlon,0,0,0, -441490855,Qian Li,POL,female,1986-07-30,1.6,54,table tennis,0,0,0, -497917027,Qian Li,CHN,female,1990-06-06,1.8,,boxing,0,0,1, -889734754,Qian Ren,CHN,female,2001-02-20,1.62,49,aquatics,1,0,0, -517073047,Qian Yu,CHN,female,1992-03-25,1.66,55,hockey,0,0,0, -596026558,Qiang Li,CHN,male,1989-01-04,1.86,84,canoe,0,0,0, -725478524,Qiang Meng,CHN,male,1987-07-03,1.86,122,wrestling,0,0,0, -521823425,Qiang Pan,CHN,male,1985-01-21,1.85,85,shooting,0,0,0, -58421484,Qiang Wang,CHN,female,1992-01-14,1.72,60,tennis,0,0,0, -67441417,Qiangbing Li,AUT,female,1985-04-30,1.66,49,table tennis,0,0,0, -212028981,Qianxun Hu,CHN,male,1987-09-18,1.78,,boxing,0,0,0, -657089417,Qibin Zhang,CHN,male,1994-06-23,1.85,85,aquatics,0,0,0, -143319125,Qifeng Pu,CHN,male,1986-01-03,1.84,80,shooting,0,0,0, -114459374,Qinan Zhu,CHN,male,1984-11-15,1.83,75,shooting,0,0,0, -509966707,Qing Ma,CHN,female,1992-08-24,1.74,68,canoe,0,0,0, -673843844,Qingling Song,CHN,female,1986-07-22,1.74,69,hockey,0,0,0, -119828579,Qingquan Long,CHN,male,1990-12-03,1.5,56,weightlifting,1,0,0, -461528297,Qiong Wu,CHN,female,1989-04-28,1.67,59,hockey,0,0,0, -171553885,Qiqi Yuan,CHN,female,1995-10-26,1.55,50,athletics,0,0,0, -677460608,Qiuxia Cui,CHN,female,1990-09-11,1.66,63,hockey,0,0,0, -207837009,Qiuyue Wei,CHN,female,1988-09-26,1.82,65,volleyball,1,0,0, -35437978,Quadri Aruna,NGR,male,1988-08-09,1.8,81,table tennis,0,0,0, -612840820,Quedjau Nhabali,UKR,male,1990-07-08,1.87,90,judo,0,0,0, -385666002,Quentin Rew,NZL,male,1984-07-16,1.74,60,athletics,0,0,0, -629107636,Quinta Steenbergen,NED,female,1985-04-02,1.89,75,volleyball,0,0,0, -607332373,Quoc Cuong Tran,VIE,male,1974-07-27,1.7,68,shooting,0,0,0, -910962257,R. Mohan Kumar,IND,male,1996-12-14,,,athletics,0,0,0, -443066075,R.m. Sumeda Ranasinghe,SRI,male,1991-02-10,1.82,82,athletics,0,0,0, -172012231,Rababe Arafi,MAR,female,1991-01-12,1.67,52,athletics,0,0,0, -465159345,Rabah Yousif,GBR,male,1986-12-11,1.86,74,athletics,0,0,0, -437311401,Rabia Guelec,GER,female,1994-06-05,1.75,62,taekwondo,0,0,0, -775207992,Race Imboden,USA,male,1993-04-17,1.86,74,fencing,0,0,1, -667595731,Rachael Adams,USA,female,1990-06-03,1.88,81,volleyball,0,0,1, -348723574,Rachael Lynch,AUS,female,1986-07-02,1.79,68,hockey,0,0,0, -519575300,Rachael Mbogo,KEN,female,1982-12-20,1.7,64,rugby sevens,0,0,0, -95839942,Rachel Cawthorn,GBR,female,1988-11-03,1.77,70,canoe,0,0,0, -728971691,Rachel Dawson,USA,female,1985-08-02,1.78,68,hockey,0,0,0, -305014449,Rachel Fattal,USA,female,1993-12-10,1.73,65,aquatics,1,0,0, -559172027,Rachel Jarry,AUS,female,1991-12-06,1.86,77,basketball,0,0,0, -676779702,Rachel Klamer,NED,female,1990-10-08,1.66,51,triathlon,0,0,0, -844090644,Rachel Neylan,AUS,female,1982-03-09,1.69,52,cycling,0,0,0, -935732603,Rachel Nicol,CAN,female,1993-02-16,1.6,61,aquatics,0,0,0, -646854550,Rachel Tallent,AUS,female,1993-02-20,1.67,54,athletics,0,0,0, -240097025,Rachele Bruni,ITA,female,1990-11-04,1.7,59,aquatics,0,1,0, -487277130,Rachid Ait-Atmane,ALG,male,1993-02-04,1.85,75,football,0,0,0, -284352083,Rachid Kisri,MAR,male,1975-08-02,1.79,60,athletics,0,0,0, -449827888,Rachid Sidibe,BUR,male,1990-12-02,1.77,119,judo,0,0,0, -644175866,Racquel Sheath,NZL,female,1994-11-27,1.65,57,cycling,0,0,0, -937396787,Radek Juska,CZE,male,1993-03-08,1.94,84,athletics,0,0,0, -627998847,Radek Stepanek,CZE,male,1978-11-27,1.86,78,tennis,0,0,1, -577467717,Radhouane Chebbi,TUN,male,1985-08-08,1.74,125,wrestling,0,0,0, -937210805,Radik Isaev,AZE,male,1989-09-26,2,93,taekwondo,1,0,0, -644415749,Radmila Petrovic,MNE,female,1988-04-19,1.75,60,handball,0,0,0, -81383453,Radomyos Matjiur,THA,male,1988-04-02,1.82,82,aquatics,0,0,0, -440186734,Radoslava Mavrodieva,BUL,female,1987-03-13,1.76,94,athletics,0,0,0, -850134713,Radoslaw Baran,POL,male,1989-11-05,1.77,97,wrestling,0,0,0, -581644071,Radoslaw Kawecki,POL,male,1991-08-16,1.86,77,aquatics,0,0,0, -997901130,Radu Albot,MDA,male,1989-11-11,1.75,70,tennis,0,0,0, -457575476,Rafael Alcantara,BRA,male,1993-02-12,1.74,65,football,1,0,0, -825109201,Rafael Andrade,BRA,male,1986-05-07,1.68,,gymnastics,0,0,0, -724962293,Rafael Antonio Lacayo Paladino,NCA,male,1998-11-19,1.78,59,shooting,0,0,0, -730338405,Rafael Buzacarini,BRA,male,1991-10-06,1.83,100,judo,0,0,0, -731749263,Rafael Cabrera Bello,ESP,male,1984-05-25,1.87,83,golf,0,0,0, -930296757,Rafael Capote,QAT,male,1987-10-05,1.98,106,handball,0,0,0, -632477118,Rafael Castillo,CUB,male,1993-08-12,2.02,87,taekwondo,0,0,0, -558313217,Rafael Hettsheimeir,BRA,male,1986-06-16,2.08,120,basketball,0,0,0, -125913109,Rafael Luz,BRA,male,1992-02-11,1.88,95,basketball,0,0,0, -845065634,Rafael Nadal,ESP,male,1986-06-03,1.85,79,tennis,1,0,0,"The “Miura Bull” is a phenomenon. Dominating on clay, Rafael Nadal broke Björn Borg's record by winning nine Roland Garros titles. The Spaniard has already won all four tennis Grand Slams – and took home the gold at Beijing 2008." -691523372,Rafael Quintero,PUR,male,1994-07-24,1.8,68,aquatics,0,0,0, -501691381,Rafael Silva,BRA,male,1987-05-11,2.03,160,judo,0,0,1, -361799297,Rafaela Silva,BRA,female,1992-04-24,1.69,57,judo,1,0,0,"Judoka Rafaela Silva has won the first gold medal for Brazil at the Rio 2016 Games, in the Women’s Lightweight category (up to 57kg). Born in Cidade de Deus, Rio de Janeiro, she became the first Brazilian world champion in the sport in 2013." -98299217,Rafaelle,BRA,female,1991-06-18,1.75,67,football,0,0,0, -155018393,Rafal Augustyn,POL,male,1984-05-14,1.8,82,athletics,0,0,0, -178643168,Rafal Buszek,POL,male,1987-04-28,1.94,81,volleyball,0,0,0, -290922761,Rafal Fedaczynski,POL,male,1980-12-03,1.68,58,athletics,0,0,0, -888503746,Rafal Majka,POL,male,1989-09-12,1.73,61,cycling,0,0,1, -740945281,Rafal Omelko,POL,male,1989-01-16,1.94,82,athletics,0,0,0, -986457519,Rafal Rosolski,POL,male,1991-05-27,1.88,86,canoe,0,0,0, -650690707,Rafal Sarnecki,POL,male,1990-01-08,1.75,81,cycling,0,0,0, -397809896,Rafith Rodriguez,COL,male,1989-06-01,1.9,75,athletics,0,0,0, -607055937,Ragab Abdalla,EGY,male,1991-03-04,1.7,93,weightlifting,0,0,0, -546687693,Raghunath Vokkaliga,IND,male,1988-11-01,1.79,89,hockey,0,0,0, -913614600,Ragna Agerup,NOR,female,1995-06-22,,,sailing,0,0,0, -470122397,Rahel Fseha Gebresilassie,ETH,female,1995-11-03,1.6,55,aquatics,0,0,0, -215186405,Raheleh Asemani,BEL,female,1989-06-21,1.71,59,taekwondo,0,0,0, -932824514,Rahma Ben Ali,TUN,female,1993-09-15,1.59,55,taekwondo,0,0,0, -680456945,Raiber Jose Rodriguez Orozco,VEN,male,1990-12-28,1.68,69,wrestling,0,0,0, -296185766,Raijieli Daveua,FIJ,female,1992-05-30,,69,rugby sevens,0,0,0, -711937461,Raissa Nasser,CMR,female,1994-08-19,1.73,73,volleyball,0,0,0, -608420333,Raiza Goulao-Henrique,BRA,female,1991-02-28,1.68,56,cycling,0,0,0, -425162621,Rajani Etimarpu,IND,female,1990-06-09,1.72,63,hockey,0,0,0, -818043080,Rajeev Ram,USA,male,1984-03-18,,,tennis,0,1,0, -465151965,Rajiv Ouseph,GBR,male,1986-08-30,1.91,,badminton,0,0,0, -364210839,Ralf Buchheim,GER,male,1983-10-10,1.83,72,shooting,0,0,0, -907089617,Ralph Goveia Assafrao,ZAM,male,1996-03-08,1.87,77,aquatics,0,0,0, -717986475,Raluca Olaru,ROU,female,1989-03-03,1.74,63,tennis,0,0,0, -168597162,Ramadan Darwish,EGY,male,1988-01-29,1.88,100,judo,0,0,0, -781913285,Ramandeep Singh,IND,male,1993-04-01,1.79,70,hockey,0,0,0, -186916471,Rami Anis,ROT,male,1991-03-18,1.78,78,aquatics,0,0,0, -554313909,Rami Antero Hietaniemi,FIN,male,1982-12-28,1.8,92,wrestling,0,0,0, -448967973,Ramil Guliyev,TUR,male,1990-05-29,1.86,80,athletics,0,0,0, -171315396,Ramiro Quintana,ARG,male,1977-03-07,1.72,70,equestrian,0,0,0, -411617493,Ramon Gittens,BAR,male,1987-07-20,1.8,79,athletics,0,0,0, -700638959,Ramon Pileta,HON,male,1977-03-20,1.85,130,judo,0,0,0, -115217179,Ramona Papaioannou,CYP,female,1989-06-15,1.7,63,athletics,0,0,0, -605985287,Ramu Tokashiki,JPN,female,1991-06-11,1.91,85,basketball,0,0,0, -655303301,Ramunas Navardauskas,LTU,male,1988-01-30,1.9,78,cycling,0,0,0, -479803559,Ran Sui,CHN,male,1992-06-25,1.93,96,basketball,0,0,0, -495175841,Rana Nakano,JPN,female,1997-09-10,1.57,43,gymnastics,0,0,0, -177719798,Randy Leru,CUB,male,1995-11-07,1.73,72,gymnastics,0,0,0, -512106785,Rani,IND,female,1994-12-04,1.6,60,hockey,0,0,0, -957169237,Ranokhon Amanova,UZB,female,1994-03-08,1.74,62,aquatics,0,0,0, -332379601,Ranomi Kromowidjojo,NED,female,1990-08-20,1.8,72,aquatics,0,0,0,"Dutch swimmer Ranomi Kromowidjojo holds three Olympic golds: in the 4x100m freestyle relay (Beijing 2008), 50m freestyle and 100m freestyle (London 2012), when she broke the Olympic records for these events." -738350082,Raphael Gagne,CAN,male,1987-07-16,1.73,67,cycling,0,0,0, -160405615,Raphael Marcel Holzdeppe,GER,male,1989-09-28,1.83,78,athletics,0,0,0, -470376574,Raphael Stacchiotti,LUX,male,1992-03-09,1.83,80,aquatics,0,0,0, -57685762,Raquel Fernandes,BRA,female,1991-03-21,1.6,56,football,0,0,0, -953499881,Raquel Gonzalez,ESP,female,1989-11-16,1.68,58,athletics,0,0,0, -254376988,Raquel Kochhann,BRA,female,1992-10-06,1.72,70,rugby sevens,0,0,0, -930359048,Rasa Drazdauskaite,LTU,female,1981-03-20,1.73,58,athletics,0,0,0, -718297229,Rashid Hamad,QAT,male,1987-10-18,1.68,85,shooting,0,0,0, -15159824,Rashid Yunusmetov,KAZ,male,1979-07-09,1.8,100,shooting,0,0,0, -223728241,Rasmus Christian Quaade,DEN,male,1990-01-07,1.87,77,cycling,0,0,1, -258311001,Rasmus Magi,EST,male,1992-05-04,1.87,77,athletics,0,0,0, -950792939,Rasmus Quist,DEN,male,1980-04-05,1.73,72,rowing,0,0,0, -86534695,Rasul Chunayev,AZE,male,1991-01-07,1.71,66,wrestling,0,0,1, -553576191,Ratchanok Intanon,THA,female,1995-02-05,1.69,59,badminton,0,0,0, -682664911,Ratu Nakalevu,FIJ,male,1994-03-07,1.7,73,football,0,0,0, -722317723,Ratu Waranaivalu,FIJ,male,1995-09-16,1.75,72,football,0,0,0, -595425086,Raul Curiel,MEX,male,1995-12-06,1.77,,boxing,0,0,0, -50353432,Raul Hernandez Hidalgo,CUB,male,1992-09-22,1.9,71,rowing,0,0,0, -76349078,Raul Lopez,MEX,male,1993-02-22,1.84,74,football,0,0,0, -776415123,Raul Machacuay,PER,male,1983-02-18,1.65,57,athletics,0,0,0, -720271360,Raul Must,EST,male,1987-11-09,1.76,70,badminton,0,0,0, -728492983,Raul Pacheco,PER,male,1979-04-26,1.67,55,athletics,0,0,0, -788112409,Raulzinho Neto,BRA,male,1992-05-19,1.92,82,basketball,0,0,0, -874212245,Raven Saunders,USA,female,1996-05-15,1.66,108,athletics,0,0,0, -412234699,Ravinder Khatri,IND,male,1992-05-15,1.68,85,wrestling,0,0,0, -717317078,Ray Bassil,LIB,female,1988-10-20,1.75,65,shooting,0,0,0, -920376731,Rayderley Miguel Zapata,ESP,male,1993-05-26,1.69,71,gymnastics,0,0,0, -479953072,Raymond Kibet,KEN,male,1996-02-04,1.85,64,athletics,0,0,0, -781144193,Raymond Ovinou,PNG,male,1984-09-06,1.69,68,judo,0,0,0, -677348878,Rayssa Costa,BRA,female,1991-03-16,1.76,63,fencing,0,0,0, -372384369,Rayton Nduku Okwiri,KEN,male,1986-03-26,1.8,,boxing,0,0,0, -707114327,Rebeca Andrade,BRA,female,1999-05-08,1.45,45,gymnastics,0,0,0, -35093364,Rebeca Quinteros Ortiz,ESA,female,1997-08-28,,,aquatics,0,0,0, -130438348,Rebecca Downie,GBR,female,1992-01-24,1.56,54,gymnastics,0,0,0, -698057200,Rebecca Gallantree,GBR,female,1984-08-19,1.66,61,aquatics,0,0,0, -109265734,Rebecca Henderson,AUS,female,1991-09-27,1.58,49,cycling,0,0,0, -437939980,Rebecca Heyliger,BER,female,1992-11-24,1.61,54,aquatics,0,0,0, -708254383,Rebecca Howard,CAN,female,1979-05-09,1.62,70,equestrian,0,0,0, -360632507,Rebecca James,GBR,female,1991-11-29,1.71,66,cycling,0,2,0, -564979166,Rebecca Ndolo Muambo,CMR,female,1985-07-16,1.52,48,wrestling,0,0,0, -711142045,Rebecca Quinn,CAN,female,1995-08-11,1.76,66,football,0,0,1, -253747465,Rebecca Rolls,NZL,female,1975-08-22,1.78,72,football,0,0,0, -108904189,Rebecca Scown,NZL,female,1983-08-10,1.78,70,rowing,0,1,0, -140526328,Rebecca Tavo,FIJ,female,1983-03-23,1.72,75,rugby sevens,0,0,0, -890871290,Rebeka Koha,LAT,female,1998-05-19,1.57,52,weightlifting,0,0,0, -20518421,Rebekah Stott,NZL,female,1993-06-17,1.72,63,football,0,0,0, -841170860,Rebekah Tiler,GBR,female,1999-01-13,1.63,69,weightlifting,0,0,0, -98483508,Rebekka Haase,GER,female,1993-01-02,1.7,58,athletics,0,0,0, -795341579,Rebii Simon,GBR,female,1996-07-06,1.75,70,canoe,0,0,0, -409979850,Rechael Tonjor,NGR,female,1991-10-14,1.68,57,aquatics,0,0,0, -874150353,Reda Benbaziz,ALG,male,1993-09-05,1.85,,boxing,0,0,0, -873696755,Redouane Cherifi,ALG,male,1993-02-22,1.8,70,football,0,0,0, -684887323,Reem Mansour,EGY,female,1993-12-20,1.69,76,archery,0,0,0, -415954257,Reem Mohamed Hussein Elsayed kassem,EGY,female,1995-10-01,1.75,75,aquatics,0,0,0, -825382404,Refiloe Jane,RSA,female,1992-08-04,1.59,55,football,0,0,0, -437714118,Regan Gough,NZL,male,1996-10-06,1.83,71,cycling,0,0,0, -578826400,Regan Lamble,AUS,female,1991-10-14,1.74,55,athletics,0,0,0, -820273693,Regan Ware,NZL,male,1994-08-07,1.84,93,rugby sevens,0,0,0, -530301493,Regine Tugade,GUM,female,1998-01-28,1.65,50,athletics,0,0,0, -503502071,Rei Higuchi,JPN,male,1996-01-28,1.63,63,wrestling,0,1,0, -487797823,Reid Coolsaet,CAN,male,1979-07-29,1.73,62,athletics,0,0,0, -634606811,Reidis Ramos,CUB,male,1996-07-21,1.72,76,athletics,0,0,0, -102628929,Reiko Takeda,JPN,female,1984-12-14,1.51,48,equestrian,0,0,0, -728475978,Rein Taaramae,EST,male,1987-04-24,1.85,75,cycling,0,0,0, -710574826,Reina-Flor Okori,GEQ,female,1980-05-02,1.63,56,athletics,0,0,0, -705591992,Reinder Nummerdor,NED,male,1976-09-10,1.94,87,volleyball,0,0,0,"Making the Dutch volleyball team at Sydney 2000 and Athens 2004, Reinder Nummerdor then started playing beach volleyball and competed at Beijing 2008 and London 2012, placing fourth with Richard Schuil. He was a runner-up in the 2015 world championship." -863462189,Reineris Salas Perez,CUB,male,1987-03-17,1.8,86,wrestling,0,0,0, -315497786,Reinier Estpinan,CUB,male,1982-12-05,1.7,72,shooting,0,0,0, -133025640,Reinier Rojas Cohimbra,CUB,male,1986-07-31,1.9,78,volleyball,0,0,0, -189944782,Reinier Torres,CUB,male,1990-02-15,1.82,85,canoe,0,0,0, -19704992,Rejoice Kapfumvuti,ZIM,female,1991-11-18,1.6,53,football,0,0,0, -165032675,Reka Gyorgy,HUN,female,1996-05-25,1.76,63,aquatics,0,0,0, -263751358,Reka-Luca Jani,HUN,female,1991-07-31,1.6,57,tennis,0,0,0, -776117067,Remi Garsau,FRA,male,1984-07-19,1.9,82,aquatics,0,0,0, -746576007,Remi Saudadier,FRA,male,1986-03-20,1.98,100,aquatics,0,0,0, -545506950,Remigijus Kancys,LTU,male,1987-07-17,1.73,62,athletics,0,0,0, -228952671,Renaldas Seibutis,LTU,male,1985-07-23,1.96,83,basketball,0,0,0, -390436911,Renat Saidov,RUS,male,1988-09-27,2.1,101,judo,0,0,0, -456145597,Renata Tobai Sike,HUN,female,1978-07-10,1.8,67,shooting,0,0,0, -736324919,Renato Augusto,BRA,male,1988-02-08,1.86,86,football,1,0,0, -897045693,Renato Portella,BRA,male,1962-12-05,1.65,74,shooting,0,0,0, -466194153,Renato Rezende,BRA,male,1991-02-28,1.71,72,cycling,0,0,0, -59908931,Renaud Lavillenie,FRA,male,1986-09-18,1.77,71,athletics,0,1,0, -394581018,Rene Enders,GER,male,1987-02-13,1.65,77,cycling,0,0,0, -608905335,Rene Holten,DEN,male,1988-11-28,1.88,92,canoe,0,0,0, -873459751,Rene Lopez,COL,male,1964-04-05,1.68,70,equestrian,0,0,0, -94618006,Rene Philippe Kouassi,CIV,male,1979-12-14,1.9,83,archery,0,0,0, -861585492,Rene Pranz,AUT,male,1985-09-04,1.84,79,fencing,0,0,0, -57264316,Rene Tebbel,UKR,male,1969-02-12,1.82,84,equestrian,0,0,0, -400301052,Rene Toft Hansen,DEN,male,1984-11-01,2,105,handball,1,0,0, -109399064,Renee Eykens,BEL,female,1996-06-08,1.7,54,athletics,0,0,0, -73182018,Renelle Lamote,FRA,female,1993-12-26,1.65,59,athletics,0,0,0, -18503067,Reneta Kamberova,BUL,female,1990-09-12,1.7,53,gymnastics,0,0,1, -499299966,Renick James,BIZ,male,1987-08-21,1.8,91,judo,0,0,0, -119864566,Renjith Maheswary,IND,male,1986-01-30,1.84,79,athletics,0,0,0, -563285077,Renny Quow,TTO,male,1987-08-25,1.6,77,athletics,0,0,0, -154797267,Renuka Yadav,IND,female,1994-07-18,1.59,53,hockey,0,0,0, -642982452,Renxue Zhu,CHN,male,1991-04-06,1.7,50,athletics,0,0,0, -859598308,Renzo Agresta,BRA,male,1985-06-27,1.81,76,fencing,0,0,0, -188249064,Renzo Leon Garcia,PER,male,1990-08-14,1.86,71,rowing,0,0,0, -217093800,Renzo Tjon-A-Joe,SUR,male,1995-07-08,1.9,78,aquatics,0,0,0, -63732121,Repo Malepe,RSA,male,1997-02-18,1.79,65,football,0,0,0, -867912323,Reshmie Shari Oogink,NED,female,1989-10-26,1.79,72,taekwondo,0,0,0, -280064758,Revazi Nadareishvili,GEO,male,1991-06-21,1.76,98,wrestling,0,0,0, -248931578,Rexford Tullius,ISV,male,1987-03-10,,,aquatics,0,0,0, -671136449,Reyare Thomas,TTO,female,1987-11-23,1.69,59,athletics,0,0,0, -826747874,Reynier Mena,CUB,male,1996-11-21,1.74,79,athletics,0,0,0, -686527217,Reza Ghasemi,IRI,male,1987-07-24,1.82,69,athletics,0,0,0, -137914262,Reza Mohammad Ali Yazdani,IRI,male,1984-08-25,1.72,100,wrestling,0,0,0, -522982610,Rhian Wilkinson,CAN,female,1982-05-12,1.66,69,football,0,0,1, -317198923,Rhydian Cowley,AUS,male,1991-01-04,1.81,65,athletics,0,0,0, -264189277,Rhys Grant,AUS,male,1987-02-06,1.88,88,rowing,0,0,0, -768753135,Rhys Howden,AUS,male,1987-04-02,1.89,84,aquatics,0,0,0, -546440532,Ria Percival,NZL,female,1989-12-07,1.62,57,football,0,0,0, -558739071,Riau Ega Agatha,INA,male,1991-10-25,1.75,70,archery,0,0,0, -238394812,Ricard Alarcon Tevar,ESP,male,1991-08-18,1.88,110,aquatics,0,0,0, -898620184,Ricardas Berankis,LTU,male,1990-06-21,1.75,74,tennis,0,0,0, -56369474,Ricardas Nekriosius,LTU,male,1986-09-12,1.84,88,canoe,0,0,0, -458070483,Ricardo Esgaio,POR,male,1993-05-16,1.75,80,football,0,0,0, -975400260,Ricardo Gouveia,POR,male,1991-08-06,1.75,88,golf,0,0,0, -279428980,Ricardo Lucarelli,BRA,male,1992-02-14,1.95,79,volleyball,1,0,0, -372426764,Ricardo Ramos,MEX,male,1985-12-05,1.72,56,athletics,0,0,0, -385094917,Ricardo Ribas,POR,male,1977-10-08,1.74,63,athletics,0,0,0, -923708870,Ricardo Santos,BRA,male,1980-05-08,1.85,73,sailing,0,0,0, -711718943,Ricardo Soto,CHI,male,1999-10-22,1.83,88,archery,0,0,0, -308968107,Ricardo Vargas Jacobo,MEX,male,1997-11-21,1.8,79,aquatics,0,0,0, -820785891,Ricardo de Souza,BRA,male,1994-09-21,1.75,70,athletics,0,0,0, -281848184,Riccardo Mazzetti,ITA,male,1984-05-02,1.81,77,shooting,0,0,0, -96823281,Riccardo de Luca,ITA,male,1986-03-22,1.87,80,modern pentathlon,0,0,0, -558439036,Richard Bohus,HUN,male,1993-04-09,1.85,80,aquatics,0,0,0, -509225287,Richard Chambers,GBR,male,1985-06-10,1.83,74,rowing,0,0,0, -385235592,Richard Hildreth,CAN,male,1984-06-03,1.83,80,hockey,0,0,0, -817106482,Richard Hounslow,GBR,male,1981-12-19,1.83,78,canoe,0,1,0, -715219943,Richard John Edward Patterson,NZL,male,1983-04-30,1.67,84,weightlifting,0,0,0, -180069208,Richard Kilty,GBR,male,1989-09-02,1.82,82,athletics,0,0,0, -232429024,Richard Kruse,GBR,male,1983-07-30,1.9,84,fencing,0,0,0, -947093935,Richard Merjan,LIB,male,1988-11-10,1.6,57,canoe,0,0,0, -158446186,Richard Murray,RSA,male,1989-01-04,1.8,70,triathlon,0,0,0, -539128451,Richard Nagy,SVK,male,1993-03-09,1.88,80,aquatics,0,0,0, -289690027,Richard Ringer,GER,male,1989-02-27,1.82,62,athletics,0,0,0, -16165612,Richard Schmidt,GER,male,1987-05-23,1.73,76,rowing,0,1,0, -434798426,Richard Thompson,TTO,male,1985-07-06,1.88,80,athletics,0,0,0, -45434968,Richard Varga,SVK,male,1989-01-28,1.88,65,triathlon,0,0,0, -50122257,Richard Vargas,VEN,male,1994-12-28,1.75,58,athletics,0,0,0, -545591237,Richard Weinberger,CAN,male,1990-06-07,1.84,72,aquatics,0,0,0, -582543706,Richardson Hitchins,HAI,male,1997-09-26,,,boxing,0,0,0, -153689574,Richelle Stephens,USA,female,1996-07-22,1.68,65,rugby sevens,0,0,0, -972776916,Richer Perez,CUB,male,1986-02-20,1.63,58,athletics,0,0,0, -8241548,Richie Campbell,AUS,male,1987-09-18,1.93,99,aquatics,0,0,0, -145755728,Richie Porte,AUS,male,1985-01-30,1.72,62,cycling,0,0,0, -553041631,Richson Simeon,MHL,male,1997-10-05,1.55,78,athletics,0,0,0, -182264140,Rick Yves Confiance,SEY,male,1994-05-24,1.65,62,weightlifting,0,0,0, -52657161,Rick van der Ven,NED,male,1991-04-14,1.81,76,archery,0,0,0, -896354114,Rickie Fowler,USA,male,1988-12-13,1.76,68,golf,0,0,0, -664274714,Ricky Robertson,USA,male,1990-09-19,1.81,74,athletics,0,0,0, -184879090,Ricky Rubio,ESP,male,1990-10-21,1.93,82,basketball,0,0,1, -29620677,Rico Freimuth,GER,male,1988-03-14,1.96,95,athletics,0,0,0, -814315679,Rie Kaneto,JPN,female,1988-09-08,1.75,64,aquatics,1,0,0, -766598389,Rie Matsubara,JPN,female,1993-10-21,1.67,48,gymnastics,0,0,0, -155731349,Rieko Ioane,NZL,male,1997-03-18,1.9,105,rugby sevens,0,0,0, -989632205,Rigoberto Uran Uran,COL,male,1987-01-26,1.71,63,cycling,0,0,0, -304856558,Riheb Hammami,TUN,female,1989-06-04,1.7,68,sailing,0,0,0, -765122395,Rikako Ikee,JPN,female,2000-07-04,1.7,58,aquatics,0,0,0, -137154946,Riki Harakawa,JPN,male,1993-08-18,1.75,72,football,0,0,0, -62001472,Rikke Moller Pedersen,DEN,female,1989-01-09,1.74,61,aquatics,0,0,1, -485889936,Riley Fitzsimmons,AUS,male,1996-07-27,1.92,93,canoe,0,0,0, -646643525,Rima Kashafutdinova,KAZ,female,1995-07-24,1.6,48,athletics,0,0,0, -968504345,Rio Watari,JPN,female,1991-09-19,1.63,69,wrestling,0,0,0, -162020781,Risako Kawai,JPN,female,1994-11-21,1.6,61,wrestling,1,0,0, -518813071,Risako Mitsui,JPN,female,1993-09-23,1.68,56,aquatics,0,0,2, -54528524,Rishod Sobirov,UZB,male,1986-09-11,1.68,66,judo,0,0,1, -13338257,Ristananna Tracey,JAM,female,1992-05-09,1.78,66,athletics,0,0,0, -875138025,Riste Pandev,MKD,male,1994-01-25,1.78,68,athletics,0,0,0, -169332497,Risto Matas,EST,male,1984-04-30,1.89,94,athletics,0,0,0, -226090486,Rita Keszthelyi,HUN,female,1991-12-10,1.78,67,aquatics,0,0,0, -977877235,Rita Recsei,HUN,female,1996-01-30,1.68,54,athletics,0,0,0, -427379114,Rita Zeqiri,KOS,female,1995-12-08,1.65,55,aquatics,0,0,0, -463062176,Rivaldo Coetzee,RSA,male,1996-10-16,1.83,73,football,0,0,0, -950284932,Riwei Wang,CHN,male,1993-03-21,1.82,85,canoe,0,0,0, -536544725,Riza Kayaalp,TUR,male,1989-10-10,1.82,130,wrestling,0,1,0, -899335116,Rizlen Zouak,MAR,female,1986-05-14,1.64,63,judo,0,0,0, -578088761,Ro Dakuwaqa,FIJ,male,1994-02-14,1.9,105,rugby sevens,1,0,0, -854121144,Rob Mullett,GBR,male,1987-07-31,1.78,64,athletics,0,0,0, -753125163,Robbert Kemperman,NED,male,1990-06-24,1.86,76,hockey,0,0,0, -57185186,Robbie Renwick,GBR,male,1988-07-21,1.84,80,aquatics,0,1,0, -955978928,Robby Andrews,USA,male,1991-03-29,1.78,65,athletics,0,0,0, -58169707,Robeilys Peinado,VEN,female,1997-11-26,,,athletics,0,0,0, -921399403,Robeisy Ramirez,CUB,male,1993-12-20,1.62,,boxing,1,0,0, -651154983,Robel Kiros Habte,ETH,male,1992-04-13,1.76,81,aquatics,0,0,0, -371852297,Robenilson de Jesus,BRA,male,1987-09-24,1.66,,boxing,0,0,0, -484252219,Robert Baran,POL,male,1992-07-03,1.86,103,wrestling,0,0,0, -793414933,Robert Bauer,GER,male,1995-04-09,1.83,76,football,0,1,0, -136649712,Robert Elder,FIJ,male,1981-04-25,1.94,115,archery,0,0,0, -453661639,Robert Farah,COL,male,1987-01-20,1.93,92,tennis,0,0,0, -65516021,Robert Fuchs,POL,male,1991-06-12,2.09,105,rowing,0,0,0, -69277111,Robert Gardos,AUT,male,1979-01-16,1.78,72,table tennis,0,0,0, -588439110,Robert Glinta,ROU,male,1997-04-18,1.85,72,aquatics,0,0,0, -957342784,Robert Grabarz,GBR,male,1987-10-03,1.91,81,athletics,0,0,0, -748479187,Robert Harting,GER,male,1984-10-18,2.01,126,athletics,0,0,0, -126498342,Robert Heffernan,IRL,male,1978-02-28,1.71,58,athletics,0,0,0, -401609569,Robert Hering,GER,male,1990-06-14,1.8,78,athletics,0,0,0, -740457326,Robert Luecken,NED,male,1985-04-30,1.99,95,rowing,0,0,1, -99198444,Robert Manson,NZL,male,1989-10-11,1.88,89,rowing,0,0,0, -651788735,Robert Mateusiak,POL,male,1976-01-13,1.69,65,badminton,0,0,0, -650448560,Robert Meeuwsen,NED,male,1988-03-21,2.07,94,volleyball,0,0,1, -222647716,Robert Micael Gibson,CAN,male,1986-02-02,1.95,101,rowing,0,0,0, -653323381,Robert Mike,HUN,male,1984-05-08,1.76,80,canoe,0,0,0, -892281190,Robert Munn,USA,male,1990-07-26,1.94,97,rowing,0,0,0, -595627689,Robert Paez,VEN,male,1994-06-01,1.74,72,aquatics,0,0,0, -455331641,Robert Renner,SLO,male,1994-03-08,1.83,75,athletics,0,0,0, -503602363,Robert Scheidt,BRA,male,1973-04-15,1.88,76,sailing,0,0,0,"Brazil's Robert Scheidt has won medals at each of the five Olympic Games he competed in; gold at Atlanta 1996 and Athens 2004 and silver at Sydney 2000 in the Star class, as well as silver at Beijing 2008 and bronze at London 2012 in the Laser class." -720405492,Robert Skov,DEN,male,1996-05-20,1.83,78,football,0,0,0, -853386777,Robert Sobera,POL,male,1991-01-19,1.91,86,athletics,0,0,0, -532564803,Robert Timothy David Smith,USA,male,1987-01-30,1.83,127,wrestling,0,0,0, -360028984,Robert Tvorogal,LTU,male,1994-10-05,1.67,65,gymnastics,0,0,0, -859612210,Robert Urbanek,POL,male,1987-04-29,2,122,athletics,0,0,0, -959745173,Robert Zbogar,SLO,male,1989-03-06,1.83,72,aquatics,0,0,0, -810837214,Robert van der Horst,NED,male,1984-10-17,1.79,74,hockey,0,0,0, -146983428,Roberta Bianconi,ITA,female,1989-07-08,1.76,76,aquatics,0,1,0, -755354493,Roberta Vinci,ITA,female,1983-02-18,1.64,54,tennis,0,0,0, -954509397,Robertas Javtokas,LTU,male,1980-03-20,2.1,117,basketball,0,0,0, -722113054,Roberti Kobliashvili,GEO,male,1993-12-06,1.8,85,wrestling,0,0,0, -979738461,Roberto Acuna,ARG,male,1990-09-14,2.08,109,basketball,0,0,0, -758461623,Roberto Bautista Agut,ESP,male,1988-04-14,1.83,76,tennis,0,0,0, -21769735,Roberto Janet,CUB,male,1986-08-29,1.87,106,athletics,0,0,0, -340569096,Roberto Maehler,BRA,male,1985-01-25,1.83,82,canoe,0,0,0, -555000042,Roberto Sawyers,CRC,male,1986-10-17,1.82,111,athletics,0,0,0, -509328493,Roberto Schmits,BRA,male,1969-02-04,1.87,90,shooting,0,0,0, -930615320,Roberto Skyers,CUB,male,1991-11-12,1.83,83,athletics,0,0,0, -819268120,Robin Erewa,GER,male,1991-06-24,1.84,80,athletics,0,0,0, -577679695,Robin Haase,NED,male,1987-04-06,1.9,77,tennis,0,0,0, -982057422,Robin Middleton,AUS,male,1985-02-08,1.88,85,badminton,0,0,0, -444302683,Robin Neumann,NED,female,1997-12-12,1.73,63,aquatics,0,0,0, -932757600,Robin Pacek,SWE,male,1991-03-17,1.81,81,judo,0,0,0, -860901297,Robin Prendes,USA,male,1988-12-13,1.86,72,rowing,0,0,0, -205241654,Robin Quaison,SWE,male,1993-10-09,1.82,78,football,0,0,0, -569702101,Robin Ramaekers,BEL,male,1994-10-26,1.8,78,archery,0,0,0, -196394925,Robin Seidl,AUT,male,1990-01-21,1.9,80,volleyball,0,0,0, -771525167,Robin Vanderbemden,BEL,male,1994-02-10,1.83,74,athletics,0,0,0, -583096662,Robin de Kruijf,NED,female,1991-05-05,1.92,80,volleyball,0,0,0, -938744484,Robson Conceicao,BRA,male,1988-10-25,1.75,,boxing,1,0,0, -713083048,Robyn Moodaly,RSA,female,1994-06-16,1.62,49,football,0,0,0, -412115856,Roc Oliva,ESP,male,1989-07-18,1.8,78,hockey,0,0,0, -994481425,Rocco van Rooyen,RSA,male,1992-12-23,1.9,98,athletics,0,0,0, -369012326,Rocio Campigli,ARG,female,1994-08-06,1.73,70,handball,0,0,0, -374524255,Rocio Comba,ARG,female,1987-07-14,1.8,100,athletics,0,0,0, -164940768,Rocio Gutierrez,ESP,female,1985-07-20,1.62,61,hockey,0,0,0, -528331372,Rocio Sanchez,ARG,female,1988-08-02,1.57,54,hockey,0,0,0, -885588616,Rocio Ybarra,ESP,female,1984-12-26,1.59,54,hockey,0,0,0, -273991849,Rodman Teltull,PLW,male,1994-01-29,1.53,64,athletics,0,0,0, -374596998,Rodney Govinden,SEY,male,1984-09-13,1.79,84,sailing,0,0,0, -625240454,Rodolfo Cazaubon,MEX,male,1989-08-15,1.78,72,golf,0,0,0, -562268541,Rodolfo Lombardo Ontiveros Gomez,MEX,male,1983-11-09,1.85,87,volleyball,0,0,0, -519800008,Rodolfo Pizarro,MEX,male,1994-02-15,1.73,64,football,0,0,0, -480321541,Rodrick Kuku,COD,male,1986-04-06,,66,judo,0,0,0, -216037265,Rodrigo Caio,BRA,male,1993-08-17,1.82,70,football,1,0,0, -5451063,Rodrigo Diego,MEX,male,1996-12-02,1.66,69,aquatics,0,0,0, -699797697,Rodrigo Dourado,BRA,male,1994-06-17,1.86,80,football,1,0,0, -956734649,Rodrigo Etchart,ARG,male,1994-01-24,1.8,80,rugby sevens,0,0,0, -817730923,Rodrigo Faustino,BRA,male,1987-01-06,1.67,69,hockey,0,0,0, -539471357,Rodrigo Germade,ESP,male,1990-08-23,1.83,85,canoe,0,0,0, -666269394,Rodrigo Gonzalez,MEX,male,1989-12-14,1.8,69,triathlon,0,0,0, -259323134,Rodrigo Steimbach,BRA,male,1996-01-30,1.61,58,hockey,0,0,0, -482861402,Roel Braas,NED,male,1987-03-11,2,100,rowing,0,0,0, -992517041,Rogen Ladon,PHI,male,1993-11-10,1.65,,boxing,0,0,0, -105565134,Roger Beresford Hudson,RSA,male,1978-03-22,1.77,72,sailing,0,0,0, -9609361,Roger Kluge,GER,male,1986-02-05,1.91,85,cycling,0,0,0, -311874637,Roger Tahull Compte,ESP,male,1997-05-11,1.95,105,aquatics,0,0,0, -42178820,Roger Yves Bost,FRA,male,1965-10-21,1.76,80,equestrian,1,0,0, -620929414,Rogerio Dutra Silva,BRA,male,1984-02-05,1.8,73,tennis,0,0,0, -327425474,Rogier Hofman,NED,male,1986-09-05,1.84,79,hockey,0,0,0, -142935806,Rohan Bopanna,IND,male,1980-03-04,1.9,85,tennis,0,0,0, -571443859,Rohan Dennis,AUS,male,1990-05-28,1.82,72,cycling,0,0,0, -918866581,Roilya Ranaivosoa,MRI,female,1990-11-14,1.52,48,weightlifting,0,0,0, -777959030,Rok Draksic,SLO,male,1987-01-02,1.66,75,judo,0,0,0, -215465391,Rok Stipcevic,CRO,male,1986-05-20,1.86,85,basketball,0,0,0, -883712398,Roko Ukic,CRO,male,1984-12-05,1.95,88,basketball,0,0,0, -79712981,Rolando Palacios,HON,male,1987-05-03,1.89,89,athletics,0,0,0, -388656945,Rolando Saquipay,ECU,male,1979-07-21,1.65,61,athletics,0,0,0, -640287031,Rolands Strobinders,LAT,male,1992-04-14,1.9,103,athletics,0,0,0, -30879894,Rolf-Goran Bengtsson,SWE,male,1962-06-02,1.71,67,equestrian,0,0,0, -312873200,Romain Bardet,FRA,male,1990-11-09,1.84,64,cycling,0,0,0, -600322031,Romain Blary,FRA,male,1985-10-20,1.95,100,aquatics,0,0,0, -230439728,Romain Duguet,SUI,male,1980-10-07,1.76,68,equestrian,0,0,0, -64482420,Roman Anoshkin,RUS,male,1987-08-31,1.92,95,canoe,0,0,1, -699151957,Roman Bondaruk,UKR,male,1974-06-20,1.77,95,shooting,0,0,0, -729709593,Roman Fosti,EST,male,1983-06-06,1.81,69,athletics,0,0,0, -309267956,Roman Moustopoulos,GRE,male,1993-03-02,1.77,81,judo,0,0,0, -551938294,Roman Prodius,MDA,male,1981-04-12,1.82,70,athletics,0,0,0, -617922297,Roman Roeoesli,SUI,male,1993-09-22,1.91,87,rowing,0,0,0, -733665408,Roman Valiyev,KAZ,male,1984-03-27,1.9,76,athletics,0,0,0, -324597845,Roman Vlasov,RUS,male,1990-10-06,1.75,75,wrestling,1,0,0, -634337993,Romana Malacova,CZE,female,1987-05-15,1.64,57,athletics,0,0,0, -917720486,Romano Battisti,ITA,male,1986-08-21,1.9,91,rowing,0,0,0, -648586794,Romario Leitao,STP,male,1997-01-16,1.75,56,athletics,0,0,0, -109375657,Romell Quioto,HON,male,1991-08-09,1.8,86,football,0,0,0, -672358347,Rommel Pacheco,MEX,male,1986-07-12,1.67,63,aquatics,0,0,0, -154900117,Romuald Hausser,SUI,male,1988-04-16,1.85,72,sailing,0,0,0, -201879323,Romy Kasper,GER,female,1988-05-05,1.73,59,cycling,0,0,0, -312147622,Ron Atias,ISR,male,1995-04-19,1.7,58,taekwondo,0,0,0, -226253632,Ron Darmon,ISR,male,1992-10-30,1.75,65,triathlon,0,0,0, -224177837,Ronal Quispe,BOL,male,1988-03-05,1.64,57,athletics,0,0,0, -106685753,Ronald Forbes,CAY,male,1985-04-05,,,athletics,0,0,0, -379214136,Ronald Kwemoi,KEN,male,1995-09-19,1.72,58,athletics,0,0,0, -244164442,Ronald Musagala,UGA,male,1992-12-16,,,athletics,0,0,0, -335845060,Ronald Rauhe,GER,male,1981-10-03,1.79,82,canoe,0,0,1, -115983009,Ronald Serugo,UGA,male,1984-09-05,,,boxing,0,0,0, -745602669,Ronaldas Racinskas,LTU,male,1968-05-13,1.88,85,shooting,0,0,0, -972672762,Ronan Gormley,IRL,male,1983-04-21,1.74,74,hockey,0,0,0, -947165381,Rondel Sorrillo,TTO,male,1986-01-24,1.78,62,athletics,0,0,0, -209988250,Rong Shang,CHN,female,2000-02-12,1.7,45,gymnastics,0,0,0, -821012000,Rong Zhao,CHN,female,1991-08-02,1.71,59,football,0,0,0, -151465997,Roniel Iglesias,CUB,male,1988-08-14,1.82,,boxing,0,0,0,"The Olympic boxing champion at London 2012 in the up to 64kg class, Cuba's Roniel Iglesias also won a bronze at Beijing 2008. The following year, in 2009, he won the world amateur title, in Milan." -243518732,Ronja Sturm,GER,female,1995-09-11,1.65,55,rowing,0,0,0, -644702031,Ronnie Ash,USA,male,1988-07-02,1.88,94,athletics,0,0,0, -948499068,Roope Kakko,FIN,male,1982-02-13,1.83,82,golf,0,0,0, -389320731,Rosa Chacha,ECU,female,1982-12-08,1.55,48,athletics,0,0,0, -836406601,Rosa Godoy,ARG,female,1982-03-19,1.6,47,athletics,0,0,0, -726865426,Rosa Keleku Lukusa,COD,female,1995-01-16,1.63,48,taekwondo,0,0,0, -564590281,Rosa Rodriguez,VEN,female,1986-07-02,1.78,88,athletics,0,0,0, -616812664,Rosane Sibele Budag,BRA,female,1973-08-27,1.74,66,shooting,0,0,0, -389253550,Rosane dos Reis Santos,BRA,female,1987-06-20,1.62,53,weightlifting,0,0,0, -828730273,Rosangela Santos,BRA,female,1990-12-20,1.66,64,athletics,0,0,0, -870380362,Rosannagh Maclennan,CAN,female,1988-08-27,1.58,54,gymnastics,1,0,0,"Runner-up at the World Championships in 2011, Rosannagh MacLennan won Canada's only gold medal at London 2012 in the individual trampoline event, achieving a personal best result. In 2013, she went on to win the world title." -353182484,Rosaria Aiello,ITA,female,1989-05-12,1.72,74,aquatics,0,1,0, -686173584,Rose Chelimo,BRN,female,1989-07-12,,,athletics,0,0,0, -72544057,Rose Mary Almanza,CUB,female,1992-07-13,1.65,53,athletics,0,0,0, -843367304,Rose Nathike Lokonyen,ROT,female,1995-02-24,1.57,50,athletics,0,0,0, -506706014,Rose Stackpole,AUS,female,1995-05-25,1.65,55,aquatics,0,0,0, -400245389,Rose Thomas,FRA,female,1988-11-29,1.63,66,rugby sevens,0,0,0, -272141065,Rose Woo,CAN,female,2000-01-12,1.45,46,gymnastics,0,0,0, -287037985,Rosefelo Siosi,SOL,male,1996-08-23,,,athletics,0,0,0, -781979354,Roseline Filion,CAN,female,1987-07-03,1.54,53,aquatics,0,0,1, -860145199,Rosemary Quispe,BOL,female,1983-08-20,1.59,50,athletics,0,0,0, -779316418,Roser Tarrago Aymerich,ESP,female,1993-03-25,1.71,62,aquatics,0,0,0, -592903889,Rosie White,NZL,female,1993-06-06,1.65,63,football,0,0,0, -820935997,Rosko Specman,RSA,male,1989-04-28,1.74,81,rugby sevens,0,0,1, -264922632,Ross Millington,GBR,male,1989-09-19,1.73,58,athletics,0,0,0, -956717868,Ross Murdoch,GBR,male,1994-01-14,1.83,76,aquatics,0,0,0, -905413207,Rossella Fiamingo,ITA,female,1991-07-14,1.67,50,fencing,0,1,0, -761193618,Rossella Gregorio,ITA,female,1990-08-30,1.64,60,fencing,0,0,0, -301051027,Rostyslav Pevtsov,AZE,male,1987-04-15,1.87,74,triathlon,0,0,0, -977315432,Roukaya Moussa Mahamane,NIG,female,1997-01-13,1.63,47,aquatics,0,0,0, -325010773,Rovshan Bayramov,AZE,male,1987-05-07,1.6,59,wrestling,0,0,0, -449448572,Rowie Webster,AUS,female,1987-12-27,1.78,80,aquatics,0,0,0, -840917709,Roxana Cogianu,ROU,female,1986-09-21,1.8,72,rowing,0,0,1, -5862724,Roxana Gomez,CUB,female,1999-01-07,1.69,49,athletics,0,0,0, -506230382,Roxanne Barker,RSA,female,1991-05-06,1.8,76,football,0,0,0, -848420962,Roxroy Cato,JAM,male,1988-06-05,1.83,76,athletics,0,0,0, -734810648,Roy Krishna,FIJ,male,1987-08-30,1.7,70,football,0,0,0, -375955657,Roy Meyer,NED,male,1991-06-04,1.86,122,judo,0,0,0, -745464194,Roy Schmidt,GER,male,1991-09-30,1.79,77,athletics,0,0,0, -402214262,Rozaliya Nasretdinova,RUS,female,1997-02-10,1.8,66,aquatics,0,0,0, -75479348,Ruaridh McConnochie,GBR,male,1991-10-23,1.9,93,rugby sevens,0,1,0, -209686890,Ruben Aleksanyan,ARM,male,1990-03-14,1.8,152,weightlifting,0,0,0, -477986784,Ruben Limardo Gascon,VEN,male,1985-08-03,1.75,75,fencing,0,0,0,"Venezuela's flag bearer at the Rio 2016 opening ceremony, Rubén Limardo was this country's second gold medal winner, taken at London 2012, in the épée event. A two-time Pan American fencing champion, he was a runner-up in the 2013 world championship." -411710210,Ruben Scheire,BEL,male,1991-12-06,1.75,62,cycling,0,0,0, -249844758,Ruben Voisard Rezola,ARG,male,1991-04-21,1.74,80,canoe,0,0,0, -179815659,Rubens Donizete Valeriano,BRA,male,1979-08-14,1.73,69,cycling,0,0,0, -527756567,Ruby Harrold,GBR,female,1996-06-04,1.62,56,gymnastics,0,0,0, -233580730,Ruby Tew,NZL,female,1994-03-07,1.81,76,rowing,0,0,0, -192700977,Ruby Tui,NZL,female,1991-12-13,1.77,71,rugby sevens,0,1,0, -659959985,Ruda Franco,BRA,male,1986-07-25,1.85,90,aquatics,0,0,0, -446404656,Ruddy Zang Milama,GAB,female,1987-06-06,1.56,53,athletics,0,0,0, -232202316,Rudi van Houts,NED,male,1984-01-16,1.77,64,cycling,0,0,0, -743075472,Rudo Neshamba,ZIM,female,1992-02-10,1.64,53,football,0,0,0, -371266772,Rudolf Knijnenburg,BOL,male,1982-05-18,1.76,82,shooting,0,0,0, -514482932,Rudy Fernandez,ESP,male,1985-04-04,1.96,84,basketball,0,0,1, -648750303,Rudy Gobert,FRA,male,1992-06-26,2.15,113,basketball,0,0,0, -220770340,Rudy Verhoeff,CAN,male,1989-06-24,1.98,88,volleyball,0,0,0, -143605979,Rudy Winkler,USA,male,1994-12-06,1.88,108,athletics,0,0,0, -334846524,Rufat Huseynov,AZE,male,1997-04-25,1.7,,boxing,0,0,0, -18555870,Ruggero Pertile,ITA,male,1974-08-08,1.65,55,athletics,0,0,0, -914411806,Ruggero Tita,ITA,male,1992-03-20,1.74,71,sailing,0,0,0, -990887420,Rui Alberto Faria da Costa,POR,male,1986-10-05,1.83,68,cycling,0,0,0, -513573507,Rui Braganca,POR,male,1991-12-26,1.8,60,taekwondo,0,0,0, -242415534,Rui Machida,JPN,female,1993-03-08,1.61,57,basketball,0,0,0, -490760543,Rui Pedro Silva,POR,male,1981-05-06,1.73,60,athletics,0,0,0, -27201624,Rui Xu,CHN,female,1995-06-06,1.7,63,wrestling,0,0,0, -3876003,Rui Zhang,CHN,female,1989-01-17,1.72,62,football,0,0,0, -32285535,Rumen Dimitrov,BUL,male,1986-09-19,1.92,80,athletics,0,0,0, -621812972,Runa Imai,JPN,female,2000-08-15,1.63,50,aquatics,0,0,0, -377313576,Rune Hermans,BEL,female,1999-05-09,1.59,48,gymnastics,0,0,0, -854755696,Ruolin Chen,CHN,female,1992-12-12,1.6,49,aquatics,1,0,0,"China's diving hopeful Chen Ruolin is the country's only athlete to win the gold at the Olympic Games, world championship and world cup. She is a two-time Olympic champion in the 10m individual and the 10m synchronised." -777015312,Ruoqi Hui,CHN,female,1991-03-04,1.92,78,volleyball,1,0,0, -111970158,Rupinder Pal Singh,IND,male,1990-11-11,1.93,93,hockey,0,0,0, -333696204,Rushana Nurjavova,TKM,female,1994-06-22,1.65,57,judo,0,0,0, -666630210,Rusheen McDonald,JAM,male,1992-08-17,1.75,81,athletics,0,1,0, -85111828,Rushlee Buchanan,NZL,female,1988-01-20,1.7,63,cycling,0,0,0, -95697909,Rushwal Samaai,RSA,male,1991-09-25,1.85,75,athletics,0,0,0, -718060123,Rusila Nagasau,FIJ,female,1987-08-04,1.75,80,rugby sevens,0,0,0, -338294011,Ruslan Dmytrenko,UKR,male,1986-03-22,1.8,67,athletics,0,0,0, -111143331,Ruslan Kurbanov,UZB,male,1993-02-10,1.83,65,athletics,0,0,0, -736588005,Ruslan Lunev,AZE,male,1989-07-25,1.83,80,shooting,0,0,0, -327649539,Ruslan Nurudinov,UZB,male,1991-11-24,1.83,105,weightlifting,1,0,0, -507662268,Ruslan Tsarev,KGZ,male,1991-07-16,1.7,66,wrestling,0,0,0, -362733210,Ruslan Zhaparov,KAZ,male,1996-05-27,1.98,80,taekwondo,0,0,0, -577577039,Ruslana Tsykhotska,UKR,female,1986-03-23,1.65,56,athletics,0,0,0, -267763098,Ruslans Nakonechnyi,LAT,male,1989-04-21,1.82,71,modern pentathlon,0,0,0, -497886017,Rustam Assakalov,UZB,male,1984-07-13,1.83,85,wrestling,0,0,0, -87660757,Rustam Djangabaev,UZB,male,1993-08-25,1.83,146,weightlifting,0,0,0, -453637233,Rustam Orujov,AZE,male,1991-10-04,1.8,73,judo,0,1,0, -822684944,Rustam Tulaganov,UZB,male,1991-10-08,1.86,,boxing,0,0,1, -423291068,Ruta Meilutyte,LTU,female,1997-03-19,1.76,75,aquatics,0,0,0, -103023896,Rutendo Joan Nyahora,ZIM,female,1988-11-11,1.55,45,athletics,0,0,0, -532873176,Rutendo Makore,ZIM,female,1992-09-30,1.65,68,football,0,0,0, -936775315,Rutger van Schaardenburg,NED,male,1987-10-08,1.88,80,sailing,0,0,0, -146985778,Ruth Beitia,ESP,female,1979-04-01,1.91,72,athletics,1,0,0, -126006667,Ruth Jebet,BRN,female,1996-11-17,1.62,51,athletics,1,0,0, -379466742,Ruth Marie Christelle Gbagbi,CIV,female,1994-02-07,1.76,65,taekwondo,0,0,1, -686937343,Ruth Sophia Spelmeyer,GER,female,1990-09-19,1.73,59,athletics,0,0,0, -532261640,Ruth Winder,USA,female,1993-07-09,1.63,57,cycling,0,0,0, -373628906,Ruvimbo Mutyavaviri,ZIM,female,1986-12-08,1.75,65,football,0,0,0, -103779726,Ruy Fonseca,BRA,male,1973-06-09,1.81,76,equestrian,0,0,0, -622244605,Ruyin Tan,CHN,female,1994-07-17,1.65,59,football,0,0,0, -334757159,Ryad Keniche,ALG,male,1993-04-30,1.85,75,football,0,0,0, -809153340,Ryan Archibald,NZL,male,1980-09-01,1.86,78,hockey,0,0,0, -96527612,Ryan Bailie,AUS,male,1990-07-15,1.77,61,triathlon,0,0,0, -205829488,Ryan Broekhoff,AUS,male,1990-08-23,2.01,93,basketball,0,0,0, -907618760,Ryan Carlyle,USA,female,1989-11-24,1.68,65,rugby sevens,0,0,0, -660446084,Ryan Cochrane,CAN,male,1988-10-29,1.92,80,aquatics,0,0,0, -330882245,Ryan Cochrane,CAN,male,1983-07-24,1.78,78,canoe,0,0,0, -613943202,Ryan Crouser,USA,male,1992-12-18,2.01,124,athletics,1,0,0, -313062867,Ryan Fisher,AUS,male,1991-04-05,1.73,64,triathlon,0,0,0, -739862351,Ryan Fox,NZL,male,1987-01-22,1.79,98,golf,0,0,0, -976252794,Ryan Gregson,AUS,male,1990-04-26,1.74,83,athletics,0,0,0, -788805861,Ryan Held,USA,male,1995-06-27,,,aquatics,1,0,0, -712200855,Ryan Lochte,USA,male,1984-08-03,1.88,88,aquatics,1,0,0,"With 11 Olympic medals in swimming (of which five are gold) and 27 world championship medals, the USA's Ryan Lochte holds the 200m medley world record, set in 2009." -237391684,Ryan Murphy,USA,male,1995-07-02,1.91,90,aquatics,3,0,0, -524278516,Ryan Patterson,RSA,male,1994-01-10,1.77,72,gymnastics,0,0,0, -882980527,Ryan Pini,PNG,male,1981-12-10,1.96,98,aquatics,0,0,0, -799465101,Ryan Seaton,IRL,male,1987-12-03,1.82,77,sailing,0,0,0, -164279204,Ryan Sissons,NZL,male,1988-06-24,1.75,62,triathlon,0,0,0, -764390994,Ryan Taylor,NZL,male,1980-03-02,1.75,73,shooting,0,0,0, -524440279,Ryan Tyack,AUS,male,1991-06-02,1.86,102,archery,0,0,1, -983386718,Rynardt van Rensburg,RSA,male,1992-03-23,1.85,73,athletics,0,0,0, -40870014,Ryohei Arai,JPN,male,1991-06-23,1.83,95,athletics,0,0,0, -166557498,Ryohei Kato,JPN,male,1993-09-09,1.62,54,gymnastics,1,0,0, -634681317,Ryosuke Irie,JPN,male,1990-01-24,1.78,64,aquatics,0,0,0, -67014071,Ryota Ohshima,JPN,male,1993-01-23,1.68,64,football,0,0,0, -549532344,Ryota Yamagata,JPN,male,1992-06-10,1.77,70,athletics,0,1,0, -105508843,Ryunosuke Haga,JPN,male,1991-04-28,1.86,100,judo,0,0,1, -716069085,Ryuzo Kitajima,JPN,male,1985-10-23,1.71,68,equestrian,0,0,0, -131783687,S.S.P. Chawrasia,IND,male,1978-05-15,1.6,67,golf,0,0,0, -184171388,Sa Rang Kim,KOR,male,1989-08-22,1.78,82,badminton,0,0,0, -329105644,Saad Luaibi,IRQ,male,1992-01-19,1.78,75,football,0,0,0, -155945642,Sabah Shariati,AZE,male,1989-01-01,1.92,130,wrestling,0,0,1, -80742707,Sabina Asenjo,ESP,female,1986-08-03,1.78,90,athletics,0,0,0, -110659347,Sabina Ashirbayeva,KAZ,female,1998-11-05,1.63,45,gymnastics,0,0,0, -775171391,Sabina Jacobsen,SWE,female,1989-03-24,1.8,75,handball,0,0,0, -971872432,Sabina Mikina,AZE,female,1987-10-24,1.68,51,fencing,0,0,0, -935009563,Sabina Veit,SLO,female,1985-12-02,1.67,59,athletics,0,0,0, -602319311,Sabine Kusterer,GER,female,1991-01-04,1.56,58,weightlifting,0,0,0, -634385368,Sabine Spitz,GER,female,1971-12-27,1.67,60,cycling,0,0,0,"At the past three Olympic Games, Germany's Sabine Spitz has medaled in the women's cycling mountain bike events. She took silver at London 2012, gold at Beijing 2008 and bronze at Athens 2004 – and was also world champion in 2003." -665063441,Sabrina Ameghino,ARG,female,1980-07-06,1.69,64,canoe,0,0,0, -574404234,Sabrina D Angelo,CAN,female,1993-05-11,1.73,71,football,0,0,1, -726001944,Sabrina Delannoy,FRA,female,1986-05-18,1.71,62,football,0,0,0, -532268413,Sabrina Filzmoser,AUT,female,1980-06-12,1.73,57,judo,0,0,0, -103751592,Sabrina Hering,GER,female,1992-02-16,1.67,70,canoe,0,1,0, -832538099,Sabrina Jaquet,SUI,female,1987-06-21,1.69,60,badminton,0,0,0, -858092870,Sacha Valleau,FRA,male,1996-10-08,1.92,97,rugby sevens,0,0,0, -773178246,Sachi Mochida,JPN,female,1999-07-19,1.66,57,aquatics,0,0,0, -966020626,Sadiq Umar,NGR,male,1997-02-02,1.72,,football,0,0,1, -49083611,Sae Miyakawa,JPN,female,1999-09-10,1.45,34,gymnastics,0,0,0, -240262036,Saeed Almaktoum,UAE,male,1976-10-01,1.74,88,shooting,0,0,0, -752177504,Saehyuk Joo,KOR,male,1980-01-20,1.8,67,table tennis,0,0,0, -270527674,Saeid Mollaei,IRI,male,1992-01-05,1.76,82,judo,0,0,0, -795286396,Saeid Morad Abdvali,IRI,male,1989-11-04,1.7,80,wrestling,0,0,1, -436856323,Safa Saidani,TUN,female,1990-05-26,,,table tennis,0,0,0, -208668946,Safwan Khalil,AUS,male,1986-05-15,1.84,58,taekwondo,0,0,0, -329709652,Sage Watson,CAN,female,1994-06-20,1.8,57,athletics,0,0,0, -888210415,Sagi Muki,ISR,male,1992-05-17,1.8,73,judo,0,0,0, -585435438,Sahily Diago,CUB,female,1995-08-26,1.69,49,athletics,0,0,0, -74385345,Sahit Prizreni,AUS,male,1983-02-23,1.66,65,wrestling,0,0,0, -627433948,Saidi Juma Makula,TAN,male,1994-08-01,,54,athletics,0,0,0, -226370287,Saif Bin Futtais,UAE,male,1973-09-02,1.74,90,shooting,0,0,0, -863864577,Saily Viart,CUB,female,1995-09-10,1.7,94,athletics,0,0,0, -311986373,Saina Nehwal,IND,female,1990-03-17,1.65,65,badminton,0,0,0, -138238574,Saisai Zheng,CHN,female,1994-02-05,1.7,62,tennis,0,0,0, -872568098,Saiyidah Mohamed Rafa'ee,SIN,female,1988-04-20,1.73,68,rowing,0,0,0, -745752282,Saiyinjirigala,CHN,male,1989-12-14,1.75,73,judo,0,0,0, -528224389,Sajan Prakash Prakash,IND,male,1993-09-14,1.78,70,aquatics,0,0,0, -950063976,Sajjad Mardani,IRI,male,1988-07-01,1.98,96,taekwondo,0,0,0, -665801270,Sakiko Shimizu,JPN,female,1992-04-20,1.56,50,aquatics,0,0,0, -20596177,Sakina Karchaoui,FRA,female,1996-01-26,1.6,55,football,0,0,0, -686699609,Sakiyo Asano,JPN,female,1987-05-26,1.64,60,hockey,0,0,0, -249879747,Sakshi Malik,IND,female,1992-09-03,1.62,58,wrestling,0,0,1, -530076969,Sakura Noshitani,JPN,female,1997-09-29,1.68,48,gymnastics,0,0,0, -265460437,Sakura Tsukagoshi,JPN,female,1991-04-13,1.68,60,cycling,0,0,0, -612549397,Salem Eid Yaqoob,BRN,male,1996-03-01,1.75,65,athletics,0,0,0, -294737301,Salim Keddar,ALG,male,1993-11-13,1.76,65,athletics,0,0,0, -966097460,Salima Elouali Alami,MAR,female,1983-12-29,1.79,58,athletics,0,0,0, -189291344,Sally Conway,GBR,female,1987-02-01,1.67,70,judo,0,0,1, -102051307,Sally Kehoe,AUS,female,1986-09-25,1.72,75,rowing,0,0,0, -808105365,Sally Rutherford,NZL,female,1981-06-05,1.65,65,hockey,0,0,0, -11169898,Sally Yee,FIJ,female,2001-04-10,,84,table tennis,0,0,0, -354208577,Salma Negmeldin,EGY,female,1996-03-05,1.6,49,aquatics,0,0,0, -667737647,Salome Kora,SUI,female,1994-06-08,1.73,66,athletics,0,0,0, -646360332,Salome Nyirarukundo,RWA,female,1997-12-20,,,athletics,0,0,0, -975877653,Salome Pazhava,GEO,female,1997-09-03,1.68,47,gymnastics,0,0,0, -603595723,Salvador,POR,male,1991-11-11,1.68,70,football,0,0,0, -203392098,Salvador Piera,ESP,male,1991-05-18,1.83,83,hockey,0,0,0, -462840223,Salvatore Rossini,ITA,male,1986-07-13,1.85,82,volleyball,0,1,0, -842038551,Salwa Eid Naser,BRN,female,1998-05-23,1.68,54,athletics,0,0,0, -206513748,Salwan Jasim Abbood Abbood,IRQ,male,1991-09-26,1.8,104,weightlifting,0,0,0, -326897448,Sam Cross,GBR,male,1992-08-26,1.91,103,rugby sevens,0,1,0, -789125587,Sam Crouser,USA,male,1991-12-31,1.99,104,athletics,0,0,0, -850239984,Sam Dickson,NZL,male,1989-10-28,1.93,101,rugby sevens,0,0,0, -660006484,Sam Dommer,USA,male,1991-09-04,1.88,91,rowing,0,0,0, -898696395,Sam Dorman,USA,male,1991-08-30,1.76,77,aquatics,0,1,0, -23788700,Sam Griffiths,AUS,male,1972-05-27,1.71,73,equestrian,0,0,1, -826848760,Sam Groth,AUS,male,1987-10-19,,,tennis,0,0,0, -835488067,Sam Kendricks,USA,male,1992-09-07,1.86,79,athletics,0,0,1, -785341118,Sam McEntee,AUS,male,1992-02-03,1.91,67,athletics,0,0,0, -294472857,Sam Meech,NZL,male,1991-04-04,1.83,81,sailing,0,0,1, -115220097,Sam Townsend,GBR,male,1985-11-26,1.99,102,rowing,0,0,0, -541927313,Sam Ward,GBR,male,1990-12-24,1.78,75,hockey,0,0,0, -479073328,Sam Webster,NZL,male,1991-07-16,1.83,80,cycling,0,1,0, -419064340,Sam Welsford,AUS,male,1996-01-19,1.79,82,cycling,0,1,0, -55429092,Sam Willoughby,AUS,male,1991-08-15,1.73,87,cycling,0,0,0, -600127558,Saman Ahmed Tahmasebi,AZE,male,1985-07-26,1.8,85,wrestling,0,0,0, -643857228,Samantha Arevalo,ECU,female,1994-09-30,1.71,60,aquatics,0,0,0, -144477923,Samantha Birch,AUS,female,1981-06-06,1.61,,equestrian,0,0,0, -750356413,Samantha Charlton,NZL,female,1991-12-07,1.74,66,hockey,0,0,0, -932711733,Samantha Kassman,PNG,female,1984-01-23,1.65,68,taekwondo,0,0,0, -494749900,Samantha Kerr,AUS,female,1993-09-10,1.67,63,football,0,0,0, -890674126,Samantha Mewis,USA,female,1992-10-09,1.83,74,football,0,0,0, -103473949,Samantha Murray,GBR,female,1989-09-25,1.74,60,modern pentathlon,0,0,0, -244735360,Samantha Quek,GBR,female,1988-10-18,1.69,62,hockey,1,0,0, -917830379,Samantha Roberts,ANT,female,2000-04-21,1.72,64,aquatics,0,0,0, -580514299,Samantha Stosur,AUS,female,1984-03-30,1.72,68,tennis,0,0,0, -431344021,Samar Amer Ibrahim Hamza,EGY,female,1995-04-04,1.7,75,wrestling,0,0,0, -261741263,Sami Hill,USA,female,1992-06-08,1.83,89,aquatics,1,0,0, -813927295,Samia Ahmed,EGY,female,1996-01-20,1.7,57,aquatics,0,0,0, -869328062,Samir Ait Said,FRA,male,1989-11-01,1.67,66,gymnastics,0,0,0, -556027153,Samira Amirova,UZB,female,1998-04-02,1.62,47,gymnastics,0,0,0, -108428818,Samira Ouass,MAR,female,1992-04-22,1.62,74,weightlifting,0,0,0, -969554371,Samira Rocha,BRA,female,1989-01-26,1.7,64,handball,0,0,0, -65132330,Samisoni Viriviri,FIJ,male,1988-04-25,1.86,88,rugby sevens,1,0,0,"Champion of the 2015/2016 Sevens World Series, and elected the 2014 rugby sevens player of the year, Samisoni Viriviri is following the family tradition – his grandfather was also a professional in the sport and played for the national side." -496725946,Samkelisiwe Zulu,ZIM,female,1990-04-14,1.64,50,football,0,0,0, -712300954,Samson Samuel Opuakpo Forcados,NGR,male,1986-04-24,1.83,81,aquatics,0,0,0, -120558748,Samuel Albrecht,BRA,male,1981-09-02,1.8,71,sailing,0,0,0, -992495912,Samuel Carmona Heredia,ESP,male,1996-05-28,1.62,,boxing,0,0,0, -513575285,Samuel Cordova,MEX,male,1989-03-13,2,89,volleyball,0,0,0, -443125316,Samuel Gaze,NZL,male,1995-12-12,1.89,79,cycling,0,0,0, -422579271,Samuel Ireri Gathimba,KEN,male,1987-10-26,1.65,57,athletics,0,0,0, -619793183,Samuel Mikulak,USA,male,1992-10-13,1.67,63,gymnastics,0,0,0, -828892813,Samuel Ojserkis,USA,male,1990-03-24,1.73,55,rowing,0,0,0, -322626973,Samuel Oliech,KEN,male,1993-12-15,1.85,92,rugby sevens,0,0,0, -203872353,Samuel Schachter,CAN,male,1990-05-08,1.95,80,volleyball,0,0,0, -538227014,Samuel Walker,GBR,male,1995-05-07,1.86,74,table tennis,0,0,0, -184337666,Samuela Nabenia,FIJ,male,1995-02-09,1.78,76,football,0,0,0, -554608436,Samuil Donkov,BUL,male,1983-06-20,1.7,68,shooting,0,0,0, -232045954,Samuli Piippo,FIN,male,1980-01-01,1.81,75,archery,0,0,0, -82346325,Samy Abdel Razek,EGY,male,1980-04-10,1.7,60,shooting,0,0,0, -110457904,San Naing San Naing,MYA,male,1991-03-05,1.7,57,athletics,0,0,0, -311616634,San Yu Htwe,MYA,female,1986-10-14,1.67,57,archery,0,0,0, -760631015,Sanaa Koubaa,GER,female,1985-01-06,1.7,56,athletics,0,0,0, -936764018,Sanae Motokawa,JPN,female,1992-04-02,1.75,65,basketball,0,0,0, -193482094,Sanah Mollo,RSA,female,1987-01-30,1.59,64,football,0,0,0, -303543549,Sanchai Ratiwatana,THA,male,1982-01-23,1.75,70,tennis,0,0,0, -656865751,Sanda Belgyan,ROU,female,1992-12-17,1.65,53,athletics,0,0,0, -740295602,Sandeep Kumar,IND,male,1986-05-01,,,athletics,0,0,0, -394939837,Sandeep Tomar,IND,male,1991-04-02,1.68,61,wrestling,0,0,0, -597658041,Sander Baart,NED,male,1988-04-30,1.78,76,hockey,0,0,0, -287509063,Sander de Wijn,NED,male,1990-05-02,1.83,78,hockey,0,0,0, -550264358,Sandi Morris,USA,female,1992-07-08,1.73,62,athletics,0,1,0, -603435489,Sandie Clair,FRA,female,1988-04-01,1.6,60,cycling,0,0,0, -317595891,Sandie Toletti,FRA,female,1995-07-13,1.69,58,football,0,0,0, -952416738,Sandor Racz,HUN,male,1986-09-14,1.78,68,athletics,0,0,0, -183435388,Sandor Totka,HUN,male,1994-07-27,1.88,85,canoe,0,0,0, -161387205,Sandra Aguilar,ESP,female,1992-08-09,1.68,51,gymnastics,0,1,0, -994885002,Sandra Arenas,COL,female,1993-09-17,1.6,50,athletics,0,0,0, -750628038,Sandra Auffarth,GER,female,1986-12-27,1.7,57,equestrian,0,1,0, -530853976,Sandra Eriksson,FIN,female,1989-06-04,1.63,47,athletics,0,0,0, -530454853,Sandra Gal,GER,female,1985-05-09,1.83,70,golf,0,0,0, -202752942,Sandra Galvis,COL,female,1986-06-28,1.6,46,athletics,0,0,0, -112616108,Sandra Gomis,FRA,female,1983-11-21,1.65,53,athletics,0,0,0, -857025783,Sandra Lemos,COL,female,1989-01-01,1.7,100,athletics,0,0,0, -211016698,Sandra Perkovic,CRO,female,1990-06-21,1.83,85,athletics,1,0,0, -999653955,Sandra Sepulveda,COL,female,1988-03-03,1.67,58,football,0,0,0, -705817505,Sandrine Gruda,FRA,female,1987-06-25,1.93,83,basketball,0,0,0, -359187609,Sandrine Mainville,CAN,female,1992-03-20,1.73,66,aquatics,0,0,1, -458205614,Sandro Aminashvili,GEO,male,1992-02-21,1.8,85,wrestling,0,0,0, -673884830,Sandro Bazadze,GEO,male,1993-07-29,1.93,88,fencing,0,0,0, -140258499,Sandro Sukno,CRO,male,1990-06-30,2,93,aquatics,0,1,0, -592791233,Sanghoon Park,KOR,male,1993-03-13,1.83,77,cycling,0,0,0, -87067072,Sanghyeok Woo,KOR,male,1996-04-23,1.87,70,athletics,0,0,0, -540684681,Sangmin Sim,KOR,male,1993-05-21,1.72,70,football,0,0,0, -15622309,Sangmyeong Ham,KOR,male,1995-11-10,1.68,,boxing,0,0,0, -652133768,Sangsu Lee,KOR,male,1990-08-13,1.8,69,table tennis,0,0,0, -437224347,Sangwook Lee,KOR,male,1985-10-14,1.7,60,gymnastics,0,0,0, -654419111,Sangyoung Park,KOR,male,1995-10-16,1.77,73,fencing,1,0,0, -980035227,Sania Mirza,IND,female,1986-11-15,1.66,57,tennis,0,0,0, -23025751,Sanita Puspure,IRL,female,1981-12-21,1.8,72,rowing,0,0,0, -385623198,Sanna Solberg,NOR,female,1990-06-16,1.78,,handball,0,0,1, -813586699,Sanne Verhagen,NED,female,1992-08-24,1.53,57,judo,0,0,0, -366953580,Sanne Wevers,NED,female,1991-09-17,1.56,46,gymnastics,1,0,0, -747452521,Sanne van Olphen,NED,female,1989-03-13,1.77,68,handball,0,0,0, -131711159,Sanni Utriainen,FIN,female,1991-02-05,1.69,72,athletics,0,0,0, -658712925,Santa Pakenyte,LTU,female,1990-12-11,1.86,132,judo,0,0,0, -438444460,Santiago Alvarez,ARG,male,1994-01-17,1.88,93,rugby sevens,0,0,0, -88117385,Santiago Ascacibar,ARG,male,1997-02-25,1.74,77,football,0,0,0, -466362039,Santiago Enrique Grillo Diez,COL,male,1987-05-27,1.85,74,sailing,0,0,0, -86887082,Santiago Gonzalez,MEX,male,1983-02-24,1.91,91,tennis,0,0,0, -455876725,Santiago Grassi,ARG,male,1996-09-25,1.87,82,aquatics,0,0,0, -921054925,Santiago Lange,ARG,male,1961-09-22,1.84,73,sailing,1,0,0, -929112768,Santiago Ramirez Morales,COL,male,1994-07-20,1.8,82,cycling,0,0,0, -213886728,Santino Kenyi,SSD,male,1993-08-14,1.8,75,athletics,0,0,0, -475115369,Santisouk Inthavong,LAO,male,1999-09-02,1.7,60,aquatics,0,0,0, -156085164,Santo Condorelli,CAN,male,1995-01-17,1.88,88,aquatics,0,0,0, -754215814,Saori Kimura,JPN,female,1986-08-19,1.85,65,volleyball,0,0,0, -43036553,Saori Nagamine,JPN,female,1993-07-05,1.66,60,archery,0,0,0, -631663441,Saori Sakoda,JPN,female,1987-12-18,1.75,63,volleyball,0,0,0, -39484933,Saori Yoshida,JPN,female,1982-10-05,1.57,55,wrestling,0,1,0,"One of only two three-time Olympic wrestling champions, Japan's Saori Yoshida won at Athens 2004, Beijing 2008 and London 2012. This athlete dominates the up to 55kg category and has won all 13 world championships since 2002." -988318457,Saoussen Boudiaf,FRA,female,1993-12-31,1.73,69,fencing,0,0,0, -451333617,Sapana Sapana,IND,female,1988-01-02,,,athletics,0,0,0, -361564419,Sapsiree Taerattanachai,THA,female,1992-04-18,1.7,59,badminton,0,0,0, -635644066,Sara Ahmed,EGY,female,1998-01-01,1.55,68,weightlifting,0,0,1, -424013884,Sara Algotsson Ostholt,SWE,female,1974-12-08,1.63,56,equestrian,0,0,0, -871531053,Sara Bertolasi,ITA,female,1988-04-29,1.79,68,rowing,0,0,0, -657896616,Sara Carmo,POR,female,1986-10-12,1.79,69,sailing,0,0,0, -576383527,Sara Cholnoky,HUN,female,1988-11-03,1.65,64,sailing,0,0,0, -716078374,Sara Daebritz,GER,female,1995-02-15,1.71,59,football,1,0,0, -807403357,Sara Dosho,JPN,female,1994-10-17,1.59,69,wrestling,1,0,0, -54068810,Sara Errani,ITA,female,1987-04-29,1.64,58,tennis,0,0,0, -809844335,Sara Franceschi,ITA,female,1999-02-01,1.78,61,aquatics,0,0,0, -628076788,Sara Gambetta,GER,female,1993-02-18,1.84,89,athletics,0,0,0, -851213557,Sara Kolak,CRO,female,1995-06-22,1.7,74,athletics,1,0,0, -824809383,Sara Krnjic,SRB,female,1991-07-15,1.93,83,basketball,0,0,1, -718107651,Sara Lopez Ravetllat,ESP,female,1992-11-29,1.65,66,sailing,0,0,0, -213440914,Sara Louise Treacy,IRL,female,1989-06-22,1.68,58,athletics,0,0,0, -21017895,Sara Moreira,POR,female,1985-10-17,1.66,50,athletics,0,0,0, -686409294,Sara Mustonen,SWE,female,1981-02-08,1.61,58,cycling,0,0,0, -517852202,Sara Pastrana,HON,female,1999-03-12,1.7,55,aquatics,0,0,0, -764316889,Sara Ramadhani,TAN,female,1987-12-30,,45,athletics,0,0,0, -939579347,Sara Sgarzi,ITA,female,1986-05-27,1.75,63,aquatics,0,0,0, -796713465,Sara Slott Petersen,DEN,female,1987-04-09,1.71,57,athletics,0,1,0, -968095020,Sara Tan,SIN,female,1990-08-06,1.71,71,sailing,0,0,0, -666449730,Sara Vilic,AUT,female,1992-03-29,1.7,55,triathlon,0,0,0, -32160007,Sarah Atcho,SUI,female,1995-06-01,1.8,63,athletics,0,0,0, -216183238,Sarah Attar,KSA,female,1992-08-27,1.65,52,athletics,0,0,0, -717386326,Sarah Banting,AUS,female,1993-11-09,,,rowing,0,0,0, -578952502,Sarah Barrow,GBR,female,1988-10-22,1.6,53,aquatics,0,0,0, -920425475,Sarah Bouhaddi,FRA,female,1986-10-17,1.75,68,football,0,0,0, -307552411,Sarah Bro,DEN,female,1996-03-04,1.77,64,aquatics,0,0,0, -955540321,Sarah Elizabeth Robles,USA,female,1988-08-01,1.78,143,weightlifting,0,0,1, -291926816,Sarah Goss,NZL,female,1992-12-09,1.76,73,rugby sevens,0,1,0, -489042953,Sarah Gregorius,NZL,female,1987-08-06,1.58,52,football,0,0,0, -828720993,Sarah Guyot,FRA,female,1991-04-16,1.76,69,canoe,0,0,0, -773163998,Sarah Hammer,USA,female,1983-08-18,1.71,65,cycling,0,2,0, -245433771,Sarah Hornung,SUI,female,1996-04-18,1.51,43,shooting,0,0,0, -135997067,Sarah Kohler,GER,female,1994-06-20,1.79,67,aquatics,0,0,0, -335518971,Sarah Lahti,SWE,female,1995-02-18,1.77,54,athletics,0,0,0, -842091888,Sarah Menezes,BRA,female,1990-03-26,1.54,48,judo,0,0,0,"The first woman in Brazil to win an Olympic gold, at London 2012, in the up to 48kg class, Sarah Menezes also won three world championship bronze medals, one of them in Rio de Janeiro, in 2013." -218628942,Sarah Michel,FRA,female,1989-01-10,1.8,65,basketball,0,0,0, -886890449,Sarah Myriam Mazouz,GAB,female,1987-04-29,1.77,77,judo,0,0,0, -601579213,Sarah Nikitin,BRA,female,1988-12-27,1.7,75,archery,0,0,0, -950602968,Sarah Ourahmoune,FRA,female,1982-01-21,1.57,,boxing,0,1,0, -809483271,Sarah Pavan,CAN,female,1986-08-16,1.96,70,volleyball,0,0,0, -176016249,Sarah Scherer,USA,female,1991-02-12,1.71,62,shooting,0,0,0, -350191738,Sarah Sjostrom,SWE,female,1993-08-17,1.82,76,aquatics,1,1,1, -464482319,Sarah Steyaert,FRA,female,1986-11-27,1.75,67,sailing,0,0,0, -952559484,Sarah Troel,FRA,female,1986-07-12,1.75,71,canoe,0,0,0, -360246098,Sarah True,USA,female,1981-11-27,1.71,60,triathlon,0,0,0, -204834878,Sarah-Anne Brault,CAN,female,1989-12-01,1.71,65,triathlon,0,0,0, -579905792,Saraswati Bhattarai,NEP,female,1994-03-08,1.63,46,athletics,0,0,0, -509184238,Sarat Sumpradit,THA,male,1994-04-17,1.81,93,weightlifting,0,0,0, -487278690,Sardar Singh,IND,male,1986-07-15,1.76,80,hockey,0,0,0,"India has the most victories of any country in field hockey at the Olympic Games. The current captain, Sardar Singh, was part of the team at London 2012, and also competed at the 2007 Asia Cup 2014 Asian Games." -32650602,Sardorbek Dusmurotov,UZB,male,1993-03-13,1.68,110,weightlifting,0,0,0, -662999016,Sargis Martirosjan,AUT,male,1986-09-14,1.79,104,weightlifting,0,0,0, -122086540,Sarolta Kovacs,HUN,female,1991-03-12,1.67,59,modern pentathlon,0,0,0, -929534823,Sarra Besbes,TUN,female,1989-02-05,1.75,62,fencing,0,0,0, -357200340,Sasa Cado,SRB,female,1989-07-13,1.78,72,basketball,0,0,1, -513283860,Sasa MISIC,MNE,male,1987-03-27,1.98,109,aquatics,0,0,0, -672574541,Sascha Klein,GER,male,1985-09-12,1.73,71,aquatics,0,0,0, -586159759,Sascia Kraus,SUI,female,1993-03-03,1.77,65,aquatics,0,0,0, -543039018,Sashalee Forbes,JAM,female,1996-05-10,1.6,55,athletics,0,1,0, -626916015,Saskia Bartusiak,GER,female,1982-09-09,1.7,60,football,1,0,0, -447095096,Saskia Clark,GBR,female,1979-08-23,1.76,68,sailing,1,0,0, -757107967,Saskia Loretta van Erven Garcia,COL,female,1987-08-29,1.75,64,fencing,0,0,0, -819917798,Saskia Tidey,IRL,female,1993-06-11,1.83,70,sailing,0,0,0, -120862414,Saso Taljat,SLO,male,1989-09-22,1.74,73,canoe,0,0,0, -857233175,Sathish Kumar Sivalingam,IND,male,1992-06-23,1.75,77,weightlifting,0,0,0, -753187729,Satomi Kubokura,JPN,female,1982-04-27,1.6,52,athletics,0,0,0, -631296742,Satomi Suzuki,JPN,female,1991-01-29,1.68,62,aquatics,0,0,0, -186482270,Satoru Sasaki,JPN,male,1985-10-16,1.71,56,athletics,0,0,0, -780249197,Sattawat Pongnairat,USA,male,1990-05-08,1.81,70,badminton,0,0,0, -160287556,Satu Makela-Nummela,FIN,female,1970-10-26,1.69,63,shooting,0,0,0, -458458780,Saturday Erimuya,NGR,male,1998-01-10,1.71,,football,0,0,1, -742022352,Saud Alzaabi,UAE,male,1988-08-07,,,athletics,0,0,0, -800437586,Saud Habib,IOA,male,1979-10-04,1.77,85,shooting,0,0,0, -530860018,Saul Craviotto,ESP,male,1984-11-03,1.92,98,canoe,1,0,1, -538588992,Saul Gutierrez Macedo,MEX,male,1992-12-28,1.91,68,taekwondo,0,0,0, -627929661,Saula Waqa,FIJ,male,1995-10-12,1.96,96,football,0,0,0, -818121664,Saulius Ritter,LTU,male,1988-08-23,2.02,110,rowing,0,1,0, -227050501,Sava Randelovic,SRB,male,1993-07-17,1.93,98,aquatics,1,0,0, -649115184,Savannah Marshall,GBR,female,1991-05-19,1.81,,boxing,0,0,0, -692221197,Savenaca Rawaca,FIJ,male,1991-08-20,1.89,105,rugby sevens,1,0,0, -684153467,Saviour Godwin,NGR,male,1996-08-22,1.72,71,football,0,0,0, -202363602,Savita Savita,IND,female,1990-07-11,1.71,59,hockey,0,0,0, -309381381,Savitree Amitrapai,THA,female,1988-11-19,1.64,56,badminton,0,0,0, -194183434,Sawan Serasinghe,AUS,male,1994-02-21,1.78,79,badminton,0,0,0, -436141773,Saylom Ardee,THA,male,1986-07-07,1.75,,boxing,0,0,0, -185315649,Sayuri Sugimoto,JPN,female,1996-01-25,1.67,48,gymnastics,0,0,0, -488272303,Saziye Ivegin Uner,TUR,female,1982-02-08,1.8,69,basketball,0,0,0, -752901474,Scarleth Elizabeth Mercado Lopez,NCA,female,1996-08-09,1.52,53,weightlifting,0,0,0, -783419907,Scott Bowden,AUS,male,1995-04-04,1.75,65,cycling,0,0,0, -815590991,Scott Curry,NZL,male,1988-05-17,1.93,100,rugby sevens,0,0,0, -733105712,Scott Durant,GBR,male,1988-02-12,1.96,96,rowing,1,0,0, -128810768,Scott Evans,IRL,male,1987-09-26,1.8,78,badminton,0,0,0, -758417011,Scott Hend,AUS,male,1973-08-15,1.83,82,golf,0,0,0, -153971498,Scott Keach,AUS,male,1965-04-21,1.85,80,equestrian,0,0,0, -744441795,Scott Morgan,CAN,male,1989-06-20,1.6,62,gymnastics,0,0,0, -880417665,Scott Tupper,CAN,male,1986-12-16,1.79,79,hockey,0,0,0, -652324517,Scott Westcott,AUS,male,1975-09-25,1.79,64,athletics,0,0,0, -964785333,Se Gwang Ri,PRK,male,1985-01-21,1.55,54,gymnastics,1,0,0, -715580856,Seabelo Senatla,RSA,male,1993-02-10,1.77,82,rugby sevens,0,0,1, -947393781,Seamus Power,IRL,male,1987-03-04,1.92,90,golf,0,0,0, -78197579,Sean Furey,USA,male,1982-08-31,1.88,90,athletics,0,0,0, -599859960,Sean Michael Gunn,ZIM,male,1993-12-23,1.81,84,aquatics,0,0,0, -462481375,Sean Ryan,USA,male,1992-08-13,1.91,77,aquatics,0,0,0, -915415519,Sean Safo-Antwi,GHA,male,1990-10-31,1.71,69,athletics,0,0,0, -644711592,Seavmey Sorn,CAM,female,1995-09-14,1.83,73,taekwondo,0,0,0, -188093060,Sebastiaan Verschuren,NED,male,1988-10-07,1.92,84,aquatics,0,0,0, -746518634,Sebastian Brendel,GER,male,1988-03-12,1.92,92,canoe,2,0,0,"Germany's Sebastian Brendel took his country to the top of the podium in the C-1 1000m event at London 2012. He then dominated the world championships, also competing in the 5000m and winning five golds over three editions." -782106653,Sebastian Fleischer,DEN,male,1993-12-26,1.79,74,sailing,0,0,0, -947656351,Sebastian Kerk,GER,male,1994-04-17,1.84,76,football,0,0,0, -821529588,Sebastian Kuntschik,AUT,male,1988-09-23,1.82,79,shooting,0,0,0, -987203474,Sebastian Martos,ESP,male,1989-06-20,1.78,63,athletics,0,0,0, -409782771,Sebastian Morales,COL,male,1994-08-22,1.71,65,aquatics,0,0,0, -857597893,Sebastian Perez,COL,male,1993-03-29,1.77,69,football,0,0,0, -806780265,Sebastian Rodger,GBR,male,1991-06-29,1.8,70,athletics,0,0,0, -502044930,Sebastian Rossi,ARG,male,1992-02-12,1.75,77,canoe,0,0,0, -481454192,Sebastian Seidl,GER,male,1990-07-12,1.74,70,judo,0,0,0, -62067112,Sebastian Simonet,ARG,male,1986-05-12,1.89,93,handball,0,0,0, -526844987,Sebastian Sole,ARG,male,1991-06-12,2,94,volleyball,0,0,0, -628729080,Sebastian Starke Hedlund,SWE,male,1995-04-05,1.85,77,football,0,0,0, -948050872,Sebastian Villa,COL,male,1992-02-21,1.64,59,aquatics,0,0,0, -50163222,Sebastien Combot,FRA,male,1987-02-09,1.69,64,canoe,0,0,0, -980137222,Sebastien Daniel Rousseau,RSA,male,1990-09-10,1.9,86,aquatics,0,0,0, -266769451,Sebastien Dockier,BEL,male,1989-12-28,1.75,74,hockey,0,1,0, -394906544,Sebastien Jouve,FRA,male,1982-12-08,1.86,90,canoe,0,0,0, -696726152,Sebastien Martiny,FRA,male,1985-02-27,1.72,65,gymnastics,0,0,0, -421109661,Sebastien Reichenbach,SUI,male,1989-05-28,1.78,65,cycling,0,0,0, -755469189,Sebastien Schneiter,SUI,male,1995-09-24,1.76,72,sailing,0,0,0, -555941174,Sebnem Nezahat Kimyacioglu,TUR,female,1983-06-14,1.82,80,basketball,0,0,0, -471386171,Seda Tutkhalian,RUS,female,1999-07-15,1.42,35,gymnastics,0,1,0, -661458776,Seema Punia,IND,female,1983-07-27,1.82,92,athletics,0,0,0, -477722646,Segun Toriola,NGR,male,1974-09-18,1.72,70,table tennis,0,0,0, -64323819,Segundo Jami,ECU,male,1986-05-12,1.65,54,athletics,0,0,0, -365917008,Seham Elsawalhy,EGY,female,1991-04-14,1.75,65,taekwondo,0,0,0, -833886361,Sehyeon An,KOR,female,1995-10-14,1.68,56,aquatics,0,0,0, -386696464,Sei Muroya,JPN,male,1994-04-05,1.74,65,football,0,0,0, -881914341,Seiichiro Nakagawa,JPN,male,1979-06-07,1.74,78,cycling,0,0,0, -450765459,Seimone Augustus,USA,female,1984-04-30,1.83,74,basketball,1,0,0, -961376949,Seito Yamamoto,JPN,male,1992-03-11,1.81,70,athletics,0,0,0, -879945924,Seiya Adachi,JPN,male,1995-06-24,1.72,67,aquatics,0,0,0, -758020443,Seiyoung Kim,KOR,female,1993-01-21,1.63,68,golf,0,0,0, -548391655,Sekou Kaba,CAN,male,1990-08-25,1.88,88,athletics,0,0,0, -438328823,Selcuk Cebi,TUR,male,1982-06-03,1.69,76,wrestling,0,0,0, -23409142,Selcuk Eker,TUR,male,1991-06-12,1.69,,boxing,0,0,0, -187017492,Selena Piek,NED,female,1991-09-30,1.66,59,badminton,0,0,0, -121821838,Selim Yasar,TUR,male,1990-02-20,1.79,86,wrestling,0,1,0, -429028627,Selin Oruz,GER,female,1997-02-05,1.72,60,hockey,0,0,1, -280240800,Selina Buchel,SUI,female,1991-07-26,1.67,57,athletics,0,0,0, -837915273,Selina Gschwandtner,GER,female,1994-05-18,1.66,64,shooting,0,0,0, -387125204,Selma Kajan,AUS,female,1991-07-30,1.69,52,athletics,0,0,0, -275237162,Semen Makovich,RUS,male,1995-07-13,1.8,76,aquatics,0,0,0, -9122032,Semi Kunatani,FIJ,male,1990-10-27,1.92,98,rugby sevens,1,0,0, -35226441,Semoy Hackett,TTO,female,1988-11-27,1.73,61,athletics,0,0,0, -206262070,Sen Qiao,CHN,male,1990-05-14,1.97,85,taekwondo,0,0,0, -806870975,Sena Takano,JPN,female,1998-03-01,1.65,65,sailing,0,0,0, -743927516,Senbere Teferi,ETH,female,1995-05-03,,,athletics,0,0,0, -652894591,Senna Deriks,BEL,female,2000-12-30,1.54,46,gymnastics,0,0,0, -846363781,Seona Hwang,KOR,female,1989-09-16,1.63,55,fencing,0,0,0, -961455216,Seongeun Hwang,KOR,female,1993-02-28,1.65,55,shooting,0,0,0, -221532533,Seongyeon Kim,KOR,female,1991-04-16,1.75,70,judo,0,0,0, -4661115,Seoyeong Kim,KOR,female,1994-03-17,1.63,51,aquatics,0,0,0, -655555498,Seppe van Holsbeke,BEL,male,1988-01-19,1.98,93,fencing,0,0,0, -252015329,Ser-Od Bat-Ochir,MGL,male,1981-10-07,1.69,61,athletics,0,0,0, -86771577,Seref Osmanoglu,TUR,male,1989-01-02,1.83,75,athletics,0,0,0, -310865074,Seren Bundy-Davies,GBR,female,1994-12-30,1.75,63,athletics,0,0,0, -24929950,Serena Ortolani,ITA,female,1987-01-07,1.87,63,volleyball,0,0,0, -379931177,Serena Williams,USA,female,1981-09-26,1.78,72,tennis,0,0,0,"The USA's Serena Williams has won 22 Grand Slams, seven of which were at Wimbledon (most recently in June 2016) and three at Roland Garros. She also holds four Olympic golds, including a pair – singles and doubles – won at London 2012." -297370521,Serge Gnabry,GER,male,1995-07-14,1.73,80,football,0,1,0, -270678554,Serge Michel,GER,male,1988-09-10,1.81,,boxing,0,0,0, -612124451,Serge Pauwels,BEL,male,1983-11-21,1.77,64,cycling,0,0,0, -151596328,Sergei Chernetski,RUS,male,1990-04-09,1.76,63,cycling,0,0,0, -333027986,Sergei Komissarov,RUS,male,1987-12-03,1.84,81,sailing,0,0,0, -594962081,Sergey Grankin,RUS,male,1985-01-21,1.95,96,volleyball,0,0,0, -549185484,Sergey Kamenskiy,RUS,male,1987-10-07,1.78,73,shooting,0,1,0, -478548021,Sergey Khodos,RUS,male,1986-07-14,1.97,87,fencing,0,0,0, -645801054,Sergey Richter,ISR,male,1989-04-23,1.8,83,shooting,0,0,0, -536871163,Sergey Semenov,RUS,male,1995-08-10,1.87,130,wrestling,0,0,1, -428021542,Sergey Tetyukhin,RUS,male,1975-09-23,1.97,89,volleyball,0,0,0, -890081492,Serghei Cechir,MDA,male,1990-10-15,1.72,69,weightlifting,0,0,0, -832276457,Serghei Marghiev,MDA,male,1992-11-06,1.95,97,athletics,0,0,0, -137541951,Serghei Tarnovschi,MDA,male,1997-06-24,1.78,80,canoe,0,0,1, -825721013,Serghei Tvetcov,ROU,male,1988-12-29,1.78,70,cycling,0,0,0, -240732198,Sergi Enrique,ESP,male,1987-09-22,1.74,69,hockey,0,0,0, -804903425,Sergii Frolov,UKR,male,1992-04-14,1.74,74,aquatics,0,0,0, -774141587,Sergii Tokarnytskyi,KAZ,male,1993-02-01,1.88,102,canoe,0,0,0, -954264527,Sergio Alvarez Moya,ESP,male,1985-01-07,1.74,74,equestrian,0,0,0, -558359788,Sergio Dutra Santos,BRA,male,1975-10-15,1.84,78,volleyball,1,0,0, -790285042,Sergio Fernandez,ESP,male,1993-04-01,1.86,78,athletics,0,0,0, -952347029,Sergio Garcia,ESP,male,1980-01-09,1.76,80,golf,0,0,0, -157650129,Sergio Llull,ESP,male,1987-11-15,1.9,91,basketball,0,0,1, -848761398,Sergio Luis Henao Montoya,COL,male,1987-12-10,1.7,61,cycling,0,0,0, -390699178,Sergio Oliveira,POR,male,1992-06-02,1.8,80,football,0,0,0, -783188500,Sergio Pessoa,CAN,male,1988-09-03,1.87,60,judo,0,0,0, -259358477,Sergio Reynaldo Gonzalez Bayard,CUB,male,1990-06-20,1.95,99,volleyball,0,0,0, -156131114,Sergio Rodriguez,ESP,male,1986-06-12,1.91,80,basketball,0,0,1, -534656783,Sergio Sasaki,BRA,male,1992-03-31,1.61,64,gymnastics,0,0,0, -92473676,Sergio Vieira,POR,male,1976-02-20,1.74,60,athletics,0,0,0, -413925924,Sergiu Oleinic,POR,male,1985-12-25,1.65,68,judo,0,0,0, -642221222,Sergiu Toma,UAE,male,1987-01-29,1.8,81,judo,0,0,1, -993364632,Serguey Torres,CUB,male,1987-01-20,1.75,74,canoe,0,0,0, -638712579,Serhiy Budza,UKR,male,1984-12-06,1.8,75,athletics,0,0,0, -76496713,Serhiy Kulish,UKR,male,1993-04-17,1.76,64,shooting,0,1,0, -612592716,Serhiy Smelyk,UKR,male,1987-04-19,1.78,72,athletics,0,0,0, -544720324,Serik Mirbekov,UZB,male,1988-06-09,1.76,83,canoe,0,0,0, -983390495,Servet Tazegul,TUR,male,1988-09-26,1.76,68,taekwondo,0,0,0,"In the past two Olympic Games, Servet Tazegül has won medals for Turkey in taekwondo, gold at London 2012 and bronze at Beijing 2008, in classes up to 68kg. The world champion in 2011 and 2015, this athlete has won the past five European championships." -631502285,Setareki Hughes,FIJ,male,1995-06-08,1.75,73,football,0,0,0, -13474372,Seth Weil,USA,male,1987-03-09,1.99,97,rowing,0,0,0, -526516331,Seul-Ki Ahn,KOR,female,1992-05-29,1.61,46,athletics,0,0,0, -860133860,Seulchan Lee,KOR,male,1993-08-15,1.72,65,football,0,0,0, -732031439,Seung Chan Shin,KOR,female,1994-12-06,1.73,70,badminton,0,0,1, -714388590,Seunga Park,KOR,female,1991-04-16,1.68,61,hockey,0,0,0, -863636948,Seunghwa Jung,KOR,male,1981-03-27,1.8,80,fencing,0,0,0, -598701842,Seunghyun Jung,KOR,male,1994-04-03,1.88,74,football,0,0,0, -215880405,Seunghyun Yun,KOR,male,1994-06-01,1.93,75,athletics,0,0,0, -299216431,Seungsu Lee,KOR,male,1990-07-20,1.78,81,judo,0,0,0, -319207842,Seungwoo Han,KOR,male,1983-07-03,1.73,86,shooting,0,0,0, -950256788,Seungwoo Ryu,KOR,male,1993-12-17,1.72,67,football,0,0,0, -739050983,Seungyun Lee,KOR,male,1995-04-18,1.74,80,archery,1,0,0, -663165360,Severiano van Ass,NED,male,1992-04-10,1.78,70,hockey,0,0,0, -243524329,Severo Jesus Jurado Lopez,ESP,male,1988-09-09,1.72,71,equestrian,0,0,0, -615481668,Seye Ogunlewe,NGR,male,1991-08-30,1.89,84,athletics,0,0,0, -862783506,Seyed Mohammad Mousavi Eraghi,IRI,male,1987-08-22,2.03,86,volleyball,0,0,0, -817723961,Shadae Lawrence,JAM,female,1995-12-31,1.73,84,athletics,0,0,0, -781173388,Shadrack Kipchirchir,USA,male,1989-02-22,1.73,53,athletics,0,0,0, -753177730,Shahar Zubari,ISR,male,1986-09-01,1.77,68,sailing,0,0,0, -188476296,Shahram Mahmoudi,IRI,male,1988-07-20,1.98,95,volleyball,0,0,0, -630214839,Shaimaa Haridy,EGY,female,1991-01-01,1.6,124,weightlifting,0,0,0, -926666572,Shakhboz Kholmurzaev,UZB,male,1996-02-26,1.88,78,rowing,0,0,0, -294616056,Shakhobidin Zoirov,UZB,male,1993-03-03,1.69,,boxing,1,0,0, -295291162,Shakhram Giyasov,UZB,male,1993-07-07,1.74,,boxing,0,1,0, -107756226,Shakhzodbek Sabirov,UZB,male,1993-05-29,1.83,81,judo,0,0,0, -907513797,Shakira Baker,NZL,female,1992-01-04,1.72,89,rugby sevens,0,1,0, -682806875,Shakur Stevenson,USA,male,1997-06-28,1.73,,boxing,0,1,0, -591949071,Shalane Flanagan,USA,female,1981-07-08,1.66,47,athletics,0,0,0, -289631929,Shallon Olsen,CAN,female,2000-07-10,1.58,52,gymnastics,0,0,0, -551301673,Shamoli Ray,BAN,female,1994-04-05,,,archery,0,0,0, -722411313,Shane O'Donoghue,IRL,male,1992-11-24,1.83,80,hockey,0,0,0, -827053441,Shane Rose,AUS,male,1973-04-24,1.81,80,equestrian,0,0,1, -123371543,Shane Ryan,IRL,male,1994-01-27,1.98,89,aquatics,0,0,0, -304415448,Shaneel Naidu,FIJ,male,1995-03-28,1.8,77,football,0,0,0, -690199324,Shani Bloch,ISR,female,1979-03-06,1.62,59,cycling,0,0,0, -838944632,Shanice Craft,GER,female,1993-05-15,1.85,93,athletics,0,0,0, -672509994,Shanieka Thomas,JAM,female,1992-02-02,1.81,66,athletics,0,0,0, -368129090,Shanne Braspennincx,NED,female,1991-05-18,1.72,78,cycling,0,0,0, -19644871,Shannon Izar,FRA,female,1993-05-08,1.72,68,rugby sevens,0,0,0, -861802437,Shannon McCurley,IRL,female,1992-04-26,1.63,65,cycling,0,0,0, -364894953,Shannon Parry,AUS,female,1989-10-27,1.7,70,rugby sevens,1,0,0, -165793657,Shannon Rowbury,USA,female,1984-09-19,1.66,52,athletics,0,0,0, -297515398,Shanshan Feng,CHN,female,1989-08-05,1.72,85,golf,0,0,1, -70444302,Shanshan Li,CHN,female,1987-03-03,1.78,62,basketball,0,0,0, -124085107,Shanshan Liu,CHN,female,1992-03-16,1.69,65,football,0,0,0, -620111487,Shanshan Wang,CHN,female,1990-01-27,1.69,57,football,0,0,0, -843106594,Shaoqing Hua,CHN,female,1994-02-12,1.65,50,athletics,0,0,0, -353324453,Shaquania Dorsett,BAH,female,1997-09-16,,,athletics,0,0,0, -625323278,Shara Proctor,GBR,female,1988-09-16,1.73,60,athletics,0,0,0, -170273489,Shara Venegas,PUR,female,1992-09-18,1.73,68,volleyball,0,0,0, -198250006,Sharath Kamal Achanta,IND,male,1982-07-12,1.86,85,table tennis,0,0,0, -492459833,Sharif Sharifov,AZE,male,1988-11-11,1.8,97,wrestling,0,0,1, -501621761,Sharni Williams,AUS,female,1988-03-02,1.67,79,rugby sevens,1,0,0, -729778002,Sharolyn Scott,CRC,female,1983-10-27,1.68,63,athletics,0,0,0, -179932407,Sharon Acevedo,COL,female,1993-03-05,1.7,61,rugby sevens,0,0,0, -509787602,Sharon Firisua,SOL,female,1993-12-15,,,athletics,0,0,0, -370330019,Sharon van rouwendaal,NED,female,1993-09-09,1.73,65,aquatics,1,0,0, -371532634,Shaun Keeling,RSA,male,1987-01-21,1.96,94,rowing,0,1,0, -810913943,Shaun Kirkham,NZL,male,1992-07-24,1.91,96,rowing,0,0,0, -110430107,Shaunae Miller,BAH,female,1994-04-15,1.85,69,athletics,1,0,0, -891682431,Shavez Hart,BAH,male,1992-09-06,,,athletics,0,0,0, -421736590,Shawn Dingilius-Wallace,PLW,male,1994-07-26,1.84,93,aquatics,0,0,0, -239879514,Shawnacy Barber,CAN,male,1994-05-27,1.87,82,athletics,0,0,0, -906208615,Shay Neal,NZL,male,1990-06-04,1.76,75,hockey,0,0,0, -988651056,Shea McALEESE,NZL,male,1984-08-07,1.77,82,hockey,0,0,0, -798829173,Shehzana Anwar,KEN,female,1989-08-21,1.6,55,archery,0,0,0, -70622338,Sheikh Ali Al Thani,QAT,male,1982-09-01,1.94,73,equestrian,0,0,0, -323305837,Sheila Chajira,KEN,female,1993-12-20,1.65,73,rugby sevens,0,0,0, -148122474,Sheila Makoto,ZIM,female,1990-01-14,1.58,59,football,0,0,0, -994348153,Sheilla Castro de Paula Blassioli,BRA,female,1983-07-01,1.85,65,volleyball,0,0,0,"A fundamental player in the gold medal-winning Brazilian team at Beijing 2008 and London 2012, opposite spiker Sheilla holds seven Grand Prix titles (the most recent from July 2016) and two world championship silvers." -3895186,Shelayna Oskan-Clarke,GBR,female,1990-01-20,1.72,64,athletics,0,0,0, -586628246,Shelbi Vaughan,USA,female,1994-08-24,1.83,127,athletics,0,0,0, -362859708,Shelby Houlihan,USA,female,1993-02-08,1.61,53,athletics,0,0,0, -963097425,Shelina Zadorsky,CAN,female,1992-10-24,1.72,67,football,0,0,1, -425110382,Shelley Marie Watts,AUS,female,1987-08-10,1.64,,boxing,0,0,0, -80192943,Shelly Francis,USA,female,1958-12-16,1.58,65,equestrian,0,0,0, -422183350,Shelly-Ann Fraser-Pryce,JAM,female,1986-12-27,1.52,57,athletics,0,1,1,"Seven-time gold medalist in the world championship, Jamaica's Shelly-Ann Fraser Pryce also won gold at the past two Olympic Games in athletics’ fastest and most high-profile race: the 100m. At London 2012, she also took silver in the 200m and 4x100m relay" -256335420,Sheng Lei,CHN,male,1984-03-07,1.93,77,fencing,0,0,0, -830512513,Sheng Mu Lee,TPE,male,1986-10-03,1.79,71,badminton,0,0,0, -551099828,Shengbo Zhao,CHN,male,1982-04-14,1.75,81,shooting,0,0,0, -693828504,Shengfeng Bi,CHN,male,1989-01-28,1.83,87,wrestling,0,0,0, -94758945,Sheniqua Ferguson,BAH,female,1989-11-24,1.71,57,athletics,0,0,0, -451530720,Sherali Juraev,UZB,male,1986-12-13,1.82,90,judo,0,0,0, -225168499,Shericka Jackson,JAM,female,1994-07-16,1.73,61,athletics,0,1,1, -352645279,Sherine Elzeiny,EGY,female,1991-02-23,1.6,50,gymnastics,0,0,0, -781234683,Sherko Kareem,IRQ,male,1996-05-25,1.74,70,football,0,0,0, -739754145,Shermaine Williams,JAM,female,1990-02-04,1.76,65,athletics,0,0,0, -162371447,Shih-Chia Lin,TPE,female,1993-05-20,1.65,63,archery,0,0,1, -316407203,Shih-Chieh Chen,TPE,male,1989-11-27,1.9,152,weightlifting,0,0,0, -638278169,Shih-Feng Huang,TPE,male,1992-03-02,1.78,88,athletics,0,0,0, -719261791,Shiho Nishioka,JPN,female,1989-02-23,1.69,60,fencing,0,0,0, -2696635,Shiho Oyama,JPN,female,1977-05-25,1.68,62,golf,0,0,0, -450566696,Shijia Wang,CHN,female,1993-08-25,1.74,63,aquatics,0,0,0, -139152565,Shijie Qieyang,CHN,female,1990-11-11,1.6,45,athletics,0,0,0, -48818974,Shimaa Hashad,EGY,female,1981-04-21,1.66,57,shooting,0,0,0, -702145103,Shingo Katayama,JPN,male,1973-01-31,1.71,72,golf,0,0,0, -814685422,Shinnosuke Nakatani,JPN,male,1996-03-24,1.84,79,football,0,0,0, -213190977,Shinobu Ota,JPN,male,1993-12-28,1.65,65,wrestling,0,1,0, -169399991,Shinri Shioura,JPN,male,1991-11-26,1.88,90,aquatics,0,0,0, -224547831,Shinya Yajima,JPN,male,1994-01-18,1.71,67,football,0,0,0, -979127201,Shinzo Koroki,JPN,male,1986-07-31,1.75,72,football,0,0,0, -109446999,Shira Rishony,ISR,female,1991-02-21,1.5,48,judo,0,0,0, -229032173,Shirin Akter,BAN,female,1994-10-12,,,athletics,0,0,0, -200540934,Shitaye Eshete,BRN,female,1990-05-21,1.64,51,athletics,0,0,0, -652257369,Shiva Thapa,IND,male,1993-12-08,1.69,,boxing,0,0,0, -476256445,Shivani Shivani,IND,female,1997-09-27,1.63,60,aquatics,0,0,0, -720527022,Shiwe Nogwanya,RSA,female,1994-03-07,1.68,61,football,0,0,0, -207795938,Shiwen Liu,CHN,female,1991-04-12,1.6,54,table tennis,1,0,0, -538468544,Shiwen Ye,CHN,female,1996-03-01,1.72,71,aquatics,0,0,0,"Aged only 16, China's Ye Shiwen made history at London 2012 by winning two gold medals – in the 200m and 400m medleys – and setting new Olympic and world records to boot." -36387534,Shiying Liu,CHN,female,1993-09-24,1.79,76,athletics,0,0,0, -880751102,Shlomi Haimy,ISR,male,1989-06-19,1.67,58,cycling,0,0,0, -522662655,Shmagi Bolkvadze,GEO,male,1994-07-26,1.7,66,wrestling,0,0,1, -629603163,Sho Kawamoto,JPN,male,1993-03-01,1.75,68,athletics,0,0,0, -964540128,Sho Sakai,JPN,male,1992-08-22,1.71,58,aquatics,0,0,0, -189386940,Sho Sasaki,JPN,male,1982-06-30,1.72,74,badminton,0,0,0, -691508623,Shohei Iwamoto,JPN,male,1989-08-23,1.78,68,modern pentathlon,0,0,0, -784767531,Shohei Ono,JPN,male,1992-02-03,1.7,73,judo,1,0,0, -474547184,Shohei Toyoshima,JPN,male,1989-01-09,1.75,87,rugby sevens,0,0,0, -976460404,Shona McCALLIN,GBR,female,1992-05-18,1.65,69,hockey,1,0,0, -920840087,Shona Thorburn,CAN,female,1982-08-07,1.75,70,basketball,0,0,0, -119951308,Shota Hazui,JPN,male,1986-09-30,1.77,77,aquatics,0,0,0, -592468462,Shota Iizuka,JPN,male,1991-06-25,1.85,80,athletics,0,1,0, -765026590,Shota Sasaki,JPN,male,1993-01-10,1.65,64,canoe,0,0,0, -752540261,Shoya Nakajima,JPN,male,1994-08-23,1.64,64,football,0,0,0, -778116508,Shu-Ching Hsu,TPE,female,1991-05-09,1.6,53,weightlifting,1,0,0, -129298920,Shuai Peng,CHN,female,1986-01-08,1.73,65,tennis,0,0,0, -179157979,Shuai Zhang,CHN,female,1989-01-21,1.77,66,tennis,0,0,0, -990347414,Shuai Zhao,CHN,male,1995-08-15,1.88,63,taekwondo,1,0,0, -72738698,Shuang Wang,CHN,female,1995-01-23,1.65,59,football,0,0,0, -843868379,Shudi Deng,CHN,male,1991-09-10,1.63,58,gymnastics,0,0,1, -293576739,Shuijiao Wu,CHN,female,1991-06-19,1.61,53,athletics,0,0,0, -972669681,Shun Wang,CHN,male,1994-02-11,1.91,81,aquatics,0,0,1, -285629214,Shun Xie Teo,SIN,female,1988-09-30,1.68,63,shooting,0,0,0, -833912254,Shuo Cao,CHN,male,1991-10-08,1.8,77,athletics,0,0,0, -389167708,Shuyin Zheng,CHN,female,1994-05-01,1.88,75,taekwondo,1,0,0, -126862439,Si Mohamed Ketbi,BEL,male,1997-12-27,1.8,62,taekwondo,0,0,0, -676275478,Siarhei Kalamoyets,BLR,male,1989-08-11,1.92,110,athletics,0,0,0, -512714002,Sibusiso Matsenjwa,SWZ,male,1988-05-02,1.8,82,athletics,0,0,0, -433307287,Sibusiso Nzima,RSA,male,1986-11-23,1.64,57,athletics,0,0,0, -873507500,Sid Ali Boudina,ALG,male,1990-05-07,1.78,73,rowing,0,0,0, -171735366,Siddikur Rahman,BAN,male,1984-11-20,1.65,69,golf,0,0,0, -696400766,Sideris Tasiadis,GER,male,1990-05-07,1.79,79,canoe,0,0,0, -997380920,Sidni Hoxha,ALB,male,1992-06-01,1.93,87,aquatics,0,0,0, -649779074,Sifan Hassan,NED,female,1993-01-01,1.7,49,athletics,0,0,0, -219470376,Signe Marie Fidge Store,NOR,female,1995-08-23,,,wrestling,0,0,0, -794983348,Siham Hilali,MAR,female,1986-05-02,1.6,48,athletics,0,0,0, -299706553,Sijing Huang,CHN,female,1996-01-08,1.9,82,basketball,0,0,0, -726164746,Siling Yi,CHN,female,1989-05-06,1.65,51,shooting,0,0,1, -486158932,Silvan Dillier,SUI,male,1990-08-03,1.83,73,cycling,0,0,0, -74936467,Silvano Chesani,ITA,male,1988-07-17,1.91,83,athletics,0,0,0, -348354377,Silvia Dominguez,ESP,female,1987-01-31,1.67,64,basketball,0,1,0, -84714321,Silvia Navarro,ESP,female,1979-03-20,1.69,62,handball,0,0,0, -523095646,Silvia Paredes,ECU,female,1983-01-23,1.64,57,athletics,0,0,0, -85492860,Silvia Sicouri,ITA,female,1987-09-27,1.72,65,sailing,0,0,0, -688147154,Silvia Valsecchi,ITA,female,1982-07-19,1.6,60,cycling,0,0,0, -978974427,Silvia Zennaro,ITA,female,1989-10-26,1.68,72,sailing,0,0,0, -593049053,Silvia di Pietro,ITA,female,1993-04-06,1.68,58,aquatics,0,0,0, -856209845,Silvija Popovic,SRB,female,1986-03-15,1.78,65,volleyball,0,0,0, -875603204,Silvio Fernandez,VEN,male,1979-01-09,1.9,80,fencing,0,0,0, -593561790,Silvio Heinevetter,GER,male,1984-10-21,1.94,99,handball,0,0,1, -506472821,Sime Fantela,CRO,male,1986-01-19,1.83,67,sailing,1,0,0, -578898700,Simeon Chamov,BUL,male,1990-12-24,1.8,,boxing,0,0,0, -160713644,Simione Tamanisau,FIJ,male,1982-06-05,1.87,88,football,0,0,0, -242744402,Simon Andreassen,DEN,male,1997-09-30,1.77,68,cycling,0,0,0, -511053729,Simon Child,NZL,male,1988-04-16,1.86,80,hockey,0,0,0, -910071832,Simon Clarke,AUS,male,1986-07-18,,,cycling,0,0,0, -948358366,Simon Gauzy,FRA,male,1994-10-25,1.82,77,table tennis,0,0,0, -585225700,Simon Geschke,GER,male,1986-03-13,1.7,64,cycling,0,0,0, -828900284,Simon Gougnard,BEL,male,1991-01-17,1.87,84,hockey,0,1,0, -32628932,Simon Mantell,GBR,male,1984-04-24,1.84,81,hockey,0,0,0, -618197194,Simon Martirosyan,ARM,male,1997-02-17,1.81,105,weightlifting,0,1,0, -894353536,Simon Niepmann,SUI,male,1985-08-02,1.8,71,rowing,1,0,0, -572516555,Simon Orchard,AUS,male,1986-07-09,1.86,82,hockey,0,0,0, -129979130,Simon Razgor,SLO,male,1985-09-18,1.83,82,handball,0,0,0, -37763336,Simon Schuerch,SUI,male,1990-12-02,1.86,75,rowing,1,0,0, -671775159,Simon Sjodin,SWE,male,1986-10-04,1.92,85,aquatics,0,0,0, -568958895,Simon Spilak,SLO,male,1986-06-23,1.77,68,cycling,0,0,0, -673967464,Simon Tibbling,SWE,male,1994-09-07,1.74,68,football,0,0,0, -674891863,Simon Wachira,KEN,male,1984-05-06,1.7,65,athletics,0,0,0, -137917095,Simon Werro,SUI,male,1989-12-09,1.78,74,canoe,0,0,0, -848550090,Simon Yacoub,PLE,male,1989-06-09,1.66,60,judo,0,0,0, -727296883,Simona Baumrtova,CZE,female,1991-08-24,1.76,66,aquatics,0,0,0, -422875239,Simona Castro,CHI,female,1989-01-11,1.6,54,gymnastics,0,0,0, -901255564,Simona Frapporti,ITA,female,1988-07-14,1.77,65,cycling,0,0,0, -617360976,Simona Gherman,ROU,female,1985-04-12,1.7,58,fencing,1,0,0, -626251390,Simona Krupeckaite,LTU,female,1982-12-13,1.7,70,cycling,0,0,0, -871511987,Simona Pop,ROU,female,1988-12-25,1.78,62,fencing,1,0,0, -481317414,Simonas Bilis,LTU,male,1993-11-11,1.98,100,aquatics,0,0,0, -770111957,Simone Biles,USA,female,1997-03-14,1.45,47,gymnastics,4,0,1,"With the most world championship artistic gymnastics medals for the USA (14 in all, 10 of which are gold), Simone Biles won three consecutive titles in the general individual and three golds for the floor, two in the bars and two from team events." -718132328,Simone Buti,ITA,male,1983-09-19,2.06,100,volleyball,0,1,0, -303317190,Simone Christensen,DEN,female,1994-02-10,1.7,68,cycling,0,0,0, -218481152,Simone Consonni,ITA,male,1994-09-12,1.65,60,cycling,0,0,0, -322780969,Simone Facey,JAM,female,1985-05-07,1.62,53,athletics,0,1,0, -253019440,Simone Giannelli,ITA,male,1996-08-09,1.98,92,volleyball,0,1,0, -286644337,Simone Laudehr,GER,female,1986-07-12,1.74,56,football,0,0,0, -973414226,Simone Manuel,USA,female,1996-08-02,1.78,72,aquatics,2,2,0, -195420370,Simone Ruffini,ITA,male,1989-12-07,1.73,67,aquatics,0,0,0, -392271182,Simone Sabbioni,ITA,male,1996-10-03,1.85,79,aquatics,0,0,0, -828729175,Simone Venier,ITA,male,1984-08-26,1.96,94,rowing,0,0,0, -166532911,Simoya Campbell,JAM,female,1994-03-01,1.68,58,athletics,0,0,0, -203750302,Simplice Fotsala,CMR,male,1989-05-09,1.54,,boxing,0,0,0, -520685692,Simplice Ribouem,AUS,male,1982-12-05,1.73,93,weightlifting,0,0,0, -199944745,Sin Lam Sonia Lo,HKG,female,1992-12-18,1.66,59,sailing,0,0,0, -131138737,Sina Tkaltschewitsch,GER,female,1999-05-05,1.6,44,gymnastics,0,0,0, -703661440,Sinead Lynch,IRL,female,1976-09-30,1.72,57,rowing,0,0,0, -303411588,Sinphet Kruaithong,THA,male,1995-08-22,1.59,55,weightlifting,0,0,1, -434262676,Sinta Ozolina,LAT,female,1988-02-26,1.86,77,athletics,0,0,0, -313529097,Siobhan Haughey,HKG,female,1997-10-31,1.77,64,aquatics,0,0,0, -306151586,Siobhan-Marie O'Connor,GBR,female,1995-11-29,1.73,64,aquatics,0,1,0, -543220260,Sione Molia,NZL,male,1993-09-05,1.86,95,rugby sevens,0,0,0, -498918427,Siraba Dembele,FRA,female,1986-06-28,1.72,64,handball,0,1,0, -112175885,Siri Arun Budcharern,LAO,female,2002-01-12,1.66,63,aquatics,0,0,0, -541913883,Siripon Kaewduang-Ngam,THA,female,1994-07-27,1.67,50,sailing,0,0,0, -928639539,Siripuch Gulnoi,THA,female,1993-07-17,1.57,63,weightlifting,0,0,0, -274861509,Sirish Gurung,NEP,male,1998-08-11,1.58,65,aquatics,0,0,0, -100364594,Sisila Seavula,FIJ,female,1995-11-15,,,athletics,0,0,0, -983890439,Sitora Hamidova,UZB,female,1989-05-12,1.64,50,athletics,0,0,0, -374168059,Siueni Filimone,TGA,male,1994-08-19,1.73,69,athletics,0,0,0, -740126529,Siyao Shu,CHN,female,1992-09-12,1.67,52,gymnastics,0,0,0, -325216838,Sjef van den Berg,NED,male,1995-04-14,1.83,75,archery,0,0,0, -230251479,Sladana Perunovic,MNE,female,1984-03-26,1.7,58,athletics,0,0,0, -399380442,Slawomir Szmal,POL,male,1978-10-02,1.86,96,handball,0,0,0, -564349535,Sloane Stephens,USA,female,1993-03-20,1.73,64,tennis,0,0,0, -682518926,Slobodan Nikic,SRB,male,1983-01-25,1.97,106,aquatics,1,0,0, -466638845,Slobodan Soro,BRA,male,1978-12-23,1.96,100,aquatics,0,0,0, -655259381,Snjezana Pejcic,CRO,female,1982-07-13,1.7,75,shooting,0,0,0, -826022649,So Hee Lee,KOR,female,1994-06-14,1.71,67,badminton,0,0,0, -33975954,Sobhi Saied,TUN,male,1982-09-26,1.86,86,handball,0,0,0, -522422287,Sofia Andreeva,RUS,female,1998-08-02,1.78,64,aquatics,0,0,0, -615348545,Sofia Asoumanaki,GRE,female,1997-05-25,1.9,85,rowing,0,0,0, -863853337,Sofia Assefa,ETH,female,1987-11-14,1.67,52,athletics,0,0,0, -173744013,Sofia Bekatorou,GRE,female,1977-12-26,1.72,62,sailing,0,0,0, -236027852,Sofia Ennaoui,POL,female,1995-08-30,1.58,42,athletics,0,0,0, -149127920,Sofia Jakobsson,SWE,female,1990-04-23,1.74,64,football,0,1,0, -989432081,Sofia Lodi,ITA,female,1998-01-29,1.75,57,gymnastics,0,0,0, -669523830,Sofia Magdalena Mattsson,SWE,female,1989-11-11,1.64,56,wrestling,0,0,1, -419623115,Sofia Middleton,CHI,female,1993-03-12,1.68,60,sailing,0,0,0, -655552398,Sofia Paldanius,SWE,female,1979-03-16,1.85,75,canoe,0,0,0, -910335212,Sofia Polcanova,AUT,female,1994-09-03,1.81,69,table tennis,0,0,0, -955206552,Sofia Riga,GRE,female,1988-07-18,1.54,46,athletics,0,0,0, -322339558,Sofia Rito,URU,female,1985-11-02,1.55,52,weightlifting,0,0,0, -638320031,Sofia Sanchez,ARG,female,1989-08-23,1.67,57,aquatics,0,0,0, -459418489,Sofia Yfantidou,GRE,female,1985-01-10,1.62,54,athletics,0,0,0, -561413034,Sofian Bouvet,FRA,male,1989-06-02,1.73,63,sailing,0,0,0, -245506454,Sofiane Bendebka,ALG,male,1992-08-09,1.7,65,football,0,0,0, -496243437,Sofiane Guitone,FRA,male,1989-03-27,1.86,,rugby sevens,0,0,0, -147169766,Sofiane Oumiha,FRA,male,1994-12-23,1.74,,boxing,0,1,0, -342412966,Sofie Skoog,SWE,female,1990-06-07,1.81,65,athletics,0,0,0, -832285116,Sofya Velikaya,RUS,female,1985-06-08,1.75,70,fencing,1,1,0, -476545490,Sohrab Moradi,IRI,male,1988-09-22,1.7,94,weightlifting,1,0,0, -781502405,Sohsuke Takatani,JPN,male,1989-04-05,1.78,81,wrestling,0,0,0, -555728322,Sohui Kim,KOR,female,1994-01-29,1.64,50,taekwondo,1,0,0, -34827497,Sojeong Yu,KOR,female,1996-06-04,1.68,66,handball,0,0,0, -137006196,Sol Mi Kim,PRK,female,1990-11-20,1.55,48,judo,0,0,0, -833656877,Solangie Delgado,COL,female,1989-11-09,1.55,57,rugby sevens,0,0,0, -381575371,Solomon Bockarie,NED,male,1987-05-18,1.71,72,athletics,0,0,0, -504624644,Solonei da Silva,BRA,male,1982-04-18,1.72,65,athletics,0,0,0, -213271655,Sona Bernardova,CZE,female,1976-02-02,1.67,54,aquatics,0,0,0, -51596305,Sona Poghosyan,ARM,female,1998-06-29,1.58,73,weightlifting,0,0,0, -359534607,Sonchat Ratiwatana,THA,male,1982-01-23,1.75,71,tennis,0,0,0, -956809483,Sondre Nordstad Moen,NOR,male,1991-01-12,,,athletics,0,0,0, -592878786,Soner Demirtas,TUR,male,1991-06-25,1.7,74,wrestling,0,0,1, -939825627,Song Gao,CHN,female,1992-04-16,1.9,85,basketball,0,0,0, -614626867,Song Guk Kim,PRK,male,1985-10-05,1.67,75,shooting,0,0,1, -822430141,Song I Kim,PRK,female,1994-08-10,1.61,55,table tennis,0,0,1, -51012324,Song Yu,CHN,female,1986-08-06,1.82,128,judo,0,0,1, -388561246,Sonia Aktar,BAN,female,1997-07-15,,,aquatics,0,0,0, -504175005,Sonia Asselah,ALG,female,1991-08-20,1.76,78,judo,0,0,0, -161282037,Sonia Franquet,ESP,female,1980-07-03,1.73,60,shooting,0,0,0, -171624562,Sonia Malavisi,ITA,female,1994-10-31,1.72,66,athletics,0,0,0, -856090842,Sonia Samuels,GBR,female,1979-05-16,1.62,47,athletics,0,0,0, -195523024,Sonja Barjaktarovic,MNE,female,1986-09-11,1.8,74,handball,0,0,0, -765900580,Sonja Petrovic,SRB,female,1989-02-18,1.89,75,basketball,0,0,1, -835642046,Sonke Rothenberger,GER,male,1994-10-14,1.93,73,equestrian,1,0,0, -777662103,Sonny Bill Williams,NZL,male,1985-08-03,1.94,106,rugby sevens,0,0,0,"Before dedicating himself to rugby, Sonny Bill Williams was a professional heavyweight boxer, winning all six of the fights he competed in. He has won two rugby union world cups for New Zealand." -698806625,Sonny Webster,GBR,male,1994-03-10,1.78,94,weightlifting,0,0,0, -414404484,Sooji Jang,KOR,female,1987-11-21,1.64,57,hockey,0,0,0, -20275055,Sophie Ainsworth,GBR,female,1989-06-22,1.73,68,sailing,0,0,0, -346597272,Sophie Bray,GBR,female,1990-05-12,1.64,58,hockey,1,0,0, -661172330,Sophie Cocks,NZL,female,1994-07-25,1.72,62,hockey,0,0,0, -972385553,Sophie Giger,SUI,female,1995-12-21,1.68,54,aquatics,0,0,0, -857464664,Sophie Hansson,SWE,female,1998-08-02,1.86,73,aquatics,0,0,0, -426389518,Sophie Hitchon,GBR,female,1991-07-11,1.7,75,athletics,0,0,1, -123926137,Sophie Mackenzie,NZL,female,1992-03-31,1.72,57,rowing,0,0,0, -563907426,Sophie Scheder,GER,female,1997-01-07,1.67,56,gymnastics,0,0,1, -901973768,Sophie Schmidt,CAN,female,1988-06-28,1.72,68,football,0,0,1, -696322599,Sophie Souwer,NED,female,1987-06-29,1.85,77,rowing,0,0,0, -379316110,Sophie van Gestel,NED,female,1991-06-29,1.78,69,volleyball,0,0,0, -562244040,Sopita Tanasan,THA,female,1994-12-23,1.54,48,weightlifting,1,0,0, -433864898,Sopuruchi Dimgba,NGR,male,1993-03-29,1.68,68,football,0,0,0, -802550899,Soren Dahl,DEN,male,1993-07-15,1.93,86,aquatics,0,0,0, -602705126,Soren Kjeldsen,DEN,male,1975-05-17,1.7,72,golf,0,0,0, -510174906,Soren Opti,SUR,male,1997-05-16,,,badminton,0,0,0, -46541795,Soslan Daurov,BLR,male,1991-01-15,1.64,60,wrestling,0,0,0, -65014090,Soslan Ramonov,RUS,male,1991-01-01,1.7,65,wrestling,1,0,0, -303196371,Soso Tamarau,NGR,male,1984-05-16,1.67,97,wrestling,0,0,0, -724287824,Sosthene Moguenara,GER,female,1989-10-17,1.8,65,athletics,0,0,0, -992931470,Sotheara Chov,CAM,female,1983-10-10,1.55,48,wrestling,0,0,0, -370269631,Sotiria Neofytou,CYP,female,1998-04-23,1.65,50,aquatics,0,0,0, -388952499,Souad Ait Salem,ALG,female,1979-01-06,1.58,50,athletics,0,0,0, -767205811,Soufiane Elbakkali,MAR,male,1996-01-07,1.88,70,athletics,0,0,0, -64329847,Soufiane Haddi,MAR,male,1991-02-02,1.69,64,cycling,0,0,0, -856037002,Soufiyan Bouqantar,MAR,male,1993-08-30,1.73,54,athletics,0,0,0, -306264862,Soukphaxay Sithisane,LAO,male,1996-05-01,,,judo,0,0,0, -276345240,Soule Soilihi Athoumane,COM,male,1991-03-30,1.8,75,aquatics,0,0,0, -298080547,Souleymane Diop Cissokho,FRA,male,1991-07-04,1.79,,boxing,0,0,1, -764767080,Soumyajit Ghosh,IND,male,1993-05-10,1.68,69,table tennis,0,0,0, -830239226,Sovijja Pou,CAM,male,1995-07-18,1.69,62,aquatics,0,0,0, -269749454,Soyib Kurbonov,UZB,male,1988-02-03,1.86,100,judo,0,0,0, -11491281,Sparkle McKnight,TTO,female,1991-12-21,1.58,55,athletics,0,0,0, -132368991,Spela Perse,SLO,female,1996-08-04,1.58,50,aquatics,0,0,0, -55713015,Spela Ponomarenko Janic,SLO,female,1981-10-02,1.69,65,canoe,0,0,0, -755409303,Spencer Turrin,AUS,male,1991-08-29,1.9,92,rowing,0,0,0, -212024844,Spencer Wilton,GBR,male,1973-02-01,1.83,83,equestrian,0,1,0, -275435304,Spiros Gianniotis,GRE,male,1980-02-19,1.85,78,aquatics,0,1,0, -875845339,Spyridon Christos Giannaros,GRE,male,1992-05-12,1.83,72,rowing,0,0,0, -191166211,Srabani Nanda,IND,female,1991-05-07,1.64,54,athletics,0,0,0, -980722321,Srdjan Mrvaljevic,MNE,male,1984-05-16,1.86,85,judo,0,0,0, -999965015,Sreejesh Parattu,IND,male,1988-05-08,1.83,79,hockey,0,0,0, -213384743,Sri Wahyuni Agustiani,INA,female,1994-08-13,1.47,47,weightlifting,0,1,0, -311879753,Srikanth Kidambi,IND,male,1993-02-07,1.78,66,badminton,0,0,0, -79428759,Stacey Michelsen,NZL,female,1991-02-18,1.73,66,hockey,0,0,0, -64239196,Stacy Lewis,USA,female,1985-02-16,1.66,60,golf,0,0,0, -883031102,Stacy Otieno,KEN,female,1990-09-27,1.67,71,rugby sevens,0,0,0, -670857265,Stan Okoye,NGR,male,1991-04-10,1.98,,basketball,0,0,0, -217337729,Stanimira Petrova,BUL,female,1990-12-16,1.7,,boxing,0,0,0, -489359727,Stanislau Shcharbachenia,BLR,male,1985-03-05,2.01,104,rowing,0,0,0, -574714431,Stanley Amuzie,NGR,male,1996-02-28,1.71,,football,0,0,1, -948549107,Stanley Joseph,FRA,male,1991-10-24,1.81,66,athletics,0,0,0, -839709213,Stanley Kipleting Biwott,KEN,male,1986-04-21,1.52,61,athletics,0,0,0, -66299670,Stanly del Carmen,DOM,male,1995-09-20,1.63,62,athletics,0,0,0, -194610511,Stavroula Samara,GRE,female,1994-07-08,1.74,56,gymnastics,0,0,0, -760762237,Steele Johnson,USA,male,1996-06-16,1.88,79,aquatics,0,1,0, -588743622,Steeve Barry,FRA,male,1991-04-18,1.81,85,rugby sevens,0,0,0, -577610153,Stefan Bellore Sangala,CGO,female,1995-01-02,1.65,58,aquatics,0,0,0, -319413003,Stefan Bircevic,SRB,male,1989-12-13,2.1,104,basketball,0,1,0, -565822504,Stefan Brits,RSA,male,1992-01-19,1.83,72,athletics,0,0,0, -674224579,Stefan Denifl,AUT,male,1987-09-20,1.79,65,cycling,0,0,0, -308539287,Stefan Fegerl,AUT,male,1988-09-12,1.86,69,table tennis,0,0,0, -131551003,Stefan Hristov,BUL,male,1985-07-12,1.75,59,cycling,0,0,0, -971449557,Stefan Jovic,SRB,male,1990-11-03,1.96,94,basketball,0,1,0, -118661082,Stefan Kiraj,GER,male,1989-05-11,1.89,92,canoe,0,0,0, -921350998,Stefan Markovic,SRB,male,1988-04-25,1.99,96,basketball,0,1,0, -11369816,Stefan Mitrovic,SRB,male,1988-03-29,1.95,91,aquatics,1,0,0, -21362991,Stefan Nilsson,SWE,male,1990-08-12,1.86,89,shooting,0,0,0, -782498343,Stefana Veljkovic,SRB,female,1990-01-09,1.9,76,volleyball,0,1,0, -369495539,Stefani Stoeva,BUL,female,1995-09-23,1.74,64,badminton,0,0,0, -436598092,Stefania Pirozzi,ITA,female,1993-12-16,1.7,59,aquatics,0,0,0, -254807434,Stefanie Fee,USA,female,1990-03-11,1.68,63,hockey,0,0,0, -188282515,Stefanie Horn,ITA,female,1991-01-09,1.68,59,canoe,0,0,0, -392368733,Stefaniya Elfutina,RUS,female,1997-01-27,1.7,59,sailing,0,0,1, -857655408,Stefano Brecciaroli,ITA,male,1974-11-19,1.77,71,equestrian,0,0,0, -380056302,Stefano Giantorno,BRA,male,1991-09-27,1.7,73,rugby sevens,0,0,0, -137494922,Stefano Oppo,ITA,male,1994-09-12,1.87,70,rowing,0,0,0, -395614282,Stefano Peschiera,PER,male,1995-01-16,1.82,84,sailing,0,0,0, -145404810,Stefano Raffaele Marcia,RSA,male,1993-11-23,1.78,80,sailing,0,0,0, -25301799,Stefano Selva,SMR,male,1969-08-24,1.7,65,shooting,0,0,0, -965767592,Stefano Tempesti,ITA,male,1979-06-09,2.05,100,aquatics,0,0,1, -891446436,Stefano la Rosa,ITA,male,1985-09-28,1.7,54,athletics,0,0,0, -561352985,Stefanos Dimitriadis,GRE,male,1989-09-08,1.89,82,aquatics,0,0,0, -616655285,Stefanos Galanopoulos,GRE,male,1993-02-22,1.97,89,aquatics,0,0,0, -517441017,Stefanos Ntouskos,GRE,male,1997-03-29,1.86,73,rowing,0,0,0, -161034352,Stefany Castano,COL,female,1994-01-11,1.72,60,football,0,0,0, -457750300,Stefany Coronado,BOL,female,1996-09-16,1.73,54,athletics,0,0,0, -223169136,Stefany Hernandez,VEN,female,1991-06-15,1.65,65,cycling,0,0,1, -371287084,Steffen Deibler,GER,male,1987-07-10,1.86,81,aquatics,0,0,0, -675798889,Steffen Fath,GER,male,1990-04-04,1.99,97,handball,0,0,1, -520458964,Steffen Peters,USA,male,1964-09-18,1.73,68,equestrian,0,0,1, -318627222,Steffen Weinhold,GER,male,1986-07-19,1.91,94,handball,0,0,1, -733771935,Steffi Kriegerstein,GER,female,1992-11-03,1.78,70,canoe,0,1,0, -533594402,Stella Akakpo,FRA,female,1994-02-28,1.66,60,athletics,0,0,0, -305158735,Stella Chesang,UGA,female,1996-12-01,,,athletics,0,0,0, -995446610,Stepan Maryanyan,RUS,male,1991-09-21,1.65,59,wrestling,0,0,0, -957346968,Steph Catley,AUS,female,1994-01-26,1.71,60,football,0,0,0, -508727443,Stephan Feck,GER,male,1990-02-17,1.83,79,aquatics,0,0,0, -792396133,Stephan Krueger,GER,male,1988-11-29,1.87,86,rowing,0,0,0, -891602037,Stephan de Freitas Barcha,BRA,male,1989-10-27,,,equestrian,0,0,0, -352127171,Stephane Smith,BRA,male,1989-05-15,1.73,70,hockey,0,0,0, -305108118,Stephanie Au,HKG,female,1992-05-30,1.72,56,aquatics,0,0,0, -984866759,Stephanie Brieussel,FRA,female,1974-01-29,1.69,55,equestrian,0,0,0, -799391274,Stephanie Enright,PUR,female,1990-12-15,1.79,56,volleyball,0,0,0, -195104856,Stephanie Fotso Mogoung,CMR,female,1987-09-25,1.84,78,volleyball,0,0,0, -944264216,Stephanie Horner,CAN,female,1989-03-19,1.8,69,aquatics,0,0,0, -238315993,Stephanie Labbe,CAN,female,1986-10-10,1.78,63,football,0,0,1, -409287519,Stephanie Lovell,LCA,female,1995-09-08,1.6,62,sailing,0,0,0, -368669797,Stephanie Malherbe,RSA,female,1996-04-05,1.62,59,football,0,0,0, -129467500,Stephanie Meadow,IRL,female,1992-01-20,1.63,64,golf,0,0,0, -154640306,Stephanie Morton,AUS,female,1990-11-28,1.77,77,cycling,0,0,0, -932494249,Stephanie Pohl,GER,female,1987-10-21,1.6,51,cycling,0,0,0, -419421919,Stephanie Talbot,AUS,female,1994-06-15,1.86,87,basketball,0,0,0, -430731378,Stephanie Tirode,FRA,female,1975-05-01,1.65,78,shooting,0,0,0, -157050778,Stephanie Twell,GBR,female,1989-08-17,1.68,57,athletics,0,0,0, -422679366,Stephanie Vogt,LIE,female,1990-02-15,1.67,65,tennis,0,0,0, -459968412,Stephen Bird,AUS,male,1988-05-11,1.89,86,canoe,0,0,0, -254081121,Stephen Cummings,GBR,male,1981-03-19,1.9,75,cycling,0,0,0, -946544198,Stephen Jenness,NZL,male,1990-06-07,1.79,76,hockey,0,0,0, -203402435,Stephen Jones,NZL,male,1993-04-29,1.92,95,rowing,0,0,0, -156864780,Stephen Kasprzyk,USA,male,1982-02-14,2.01,103,rowing,0,0,0, -82771185,Stephen Kiprotich,UGA,male,1989-02-27,,,athletics,0,0,0,"Current Olympic marathon champion Stephen Kiprotich is another athletics exponent who proves Africa's dominance in this particular race. One year after winning gold at London 2012, he finished in first place in the marathon at the world championship." -641360615,Stephen Lambdin,USA,male,1988-03-09,1.88,108,taekwondo,0,0,0, -653237544,Stephen Milne,GBR,male,1994-04-29,1.86,76,aquatics,0,1,0, -144812081,Stephen Mokoka,RSA,male,1985-01-31,1.57,52,athletics,0,0,0, -730191367,Stephen Mozia,NGR,male,1993-08-16,1.91,124,athletics,0,0,0, -769819070,Stephen Newbold,BAH,male,1994-08-05,,,athletics,0,0,1, -791262365,Stephen Parez,FRA,male,1994-08-01,1.74,75,rugby sevens,0,0,0, -940693256,Stephenie Ann McPherson,JAM,female,1988-11-25,1.73,57,athletics,0,1,0, -445715201,Stevan Pletikosic,SRB,male,1972-03-14,1.84,81,shooting,0,0,0, -109758786,Steve Guerdat,SUI,male,1982-06-10,1.82,70,equestrian,0,0,0,"The son of Olympic medalist Philippe Guerdat, Steve Guerdat is the current equestrian jumping champion, winning gold at London 2012. He also holds a bronze in the team event at Beijing 2008 in addition to being a two-time world cup winner." -600255721,Steve Johnson,USA,male,1989-12-24,1.88,86,tennis,0,0,1, -226464933,Steve Morabito,SUI,male,1983-01-30,1.87,73,cycling,0,0,0, -226636545,Steven Burke,GBR,male,1988-03-04,1.83,78,cycling,1,0,0, -590851106,Steven Gardiner,BAH,male,1995-09-12,1.88,,athletics,0,0,1, -917340321,Steven Gerard Donnelly,IRL,male,1988-09-07,1.8,,boxing,0,0,0, -51098946,Steven Kruijswijk,NED,male,1987-06-07,1.77,64,cycling,0,0,0, -92940638,Steven Lopez,USA,male,1978-11-09,1.91,83,taekwondo,0,0,0, -59291100,Steven Marshall,CAN,male,1989-11-23,1.93,87,volleyball,0,0,0, -640785339,Steven Scott,GBR,male,1985-01-10,1.72,84,shooting,0,0,1, -308437509,Stewart Innes,GBR,male,1991-05-20,1.97,97,rowing,0,0,0, -634725148,Stian Skjerahaug,NOR,male,1992-03-08,1.71,66,gymnastics,0,0,0, -581997901,Stig-Andre Berge,NOR,male,1983-07-20,,,wrestling,0,0,1, -915123648,Stina Blackstenius,SWE,female,1996-02-05,1.73,72,football,0,1,0, -65486253,Stina Gardell,SWE,female,1990-03-28,1.72,70,aquatics,0,0,0, -854904743,Stina Troest,DEN,female,1994-01-17,1.7,59,athletics,0,0,0, -945304583,Stine Bredal Oftedal,NOR,female,1991-09-25,1.68,,handball,0,0,1, -602912762,Stine Nielsen,DEN,female,1991-02-09,1.63,79,shooting,0,0,0, -527651130,Stipe Zunic,CRO,male,1990-12-13,1.93,134,athletics,0,0,0, -499631914,Stsiapan Rahautsou,BLR,male,1986-05-29,1.74,58,athletics,0,0,0, -153456321,Stuart Dutamby,FRA,male,1994-04-24,1.76,74,athletics,0,0,0, -103790201,Stuart Farquhar,NZL,male,1982-03-15,1.87,98,athletics,0,0,0, -705154995,Stuart McNay,USA,male,1981-08-01,1.71,65,sailing,0,0,0, -85718684,Stuart Tinney,AUS,male,1964-12-07,1.8,71,equestrian,0,0,1, -571111419,Su Ji Kim,KOR,female,1987-07-11,1.87,68,volleyball,0,0,0, -54125373,Su Oh,AUS,female,1996-05-23,1.68,,golf,0,0,0, -464562333,Suad Natiq,IRQ,male,1994-03-19,1.85,78,football,0,0,0, -377406840,Subenrat Insaeng,THA,female,1994-02-10,1.82,115,athletics,0,0,0, -863916736,Sudha Singh,IND,female,1986-06-25,1.58,45,athletics,0,0,0, -676826208,Sudirman Hadi,INA,male,1996-03-09,1.71,76,athletics,0,0,0, -549566772,Sue Bird,USA,female,1980-10-16,1.75,66,basketball,1,0,0,"A three-time Olympic (Athens 2004, Beijing 2008 and London 2012) and world champion for the USA, point guard Sue Bird was voted, in 2011, one of the 15 best players in the history of the WNBA history, her country's main women's league." -523057836,Suehiro Ishikawa,JPN,male,1979-09-27,1.69,56,athletics,0,0,0, -321796870,Sugoi Uriarte,ESP,male,1984-05-14,1.72,66,judo,0,0,0, -566595674,Suguru Osako,JPN,male,1991-05-23,1.7,52,athletics,0,0,0, -215796471,Suhrob Khodjaev,UZB,male,1993-05-21,1.85,120,athletics,0,0,0, -574040538,Sukanya Srisurat,THA,female,1995-05-03,1.55,57,weightlifting,1,0,0, -963404474,Sukhi Panesar,CAN,male,1993-12-26,1.8,75,hockey,0,0,0, -50906905,Sulaiman Hamad,KSA,male,1994-05-19,1.77,66,judo,0,0,0, -724836390,Suleyman Atli,TUR,male,1994-07-27,1.68,57,wrestling,0,0,0, -918686488,Sultan Duzelbayev,KAZ,male,1994-03-12,1.76,46,archery,0,0,0, -715405655,Sultan Haydar,TUR,female,1987-05-23,1.7,55,athletics,0,0,0, -548130768,Sultan Mubarak Al-Dawoodi,KSA,male,1977-06-16,1.92,86,athletics,0,0,0, -27825256,Sumeeth Reddy B.,IND,male,1991-09-26,1.82,64,badminton,0,0,0, -214849260,Sumin Choi,KOR,female,1990-01-09,1.77,64,handball,0,0,0, -43374597,Sumiya Dorjsuren,MGL,female,1991-03-11,1.6,59,judo,0,1,0, -311378781,Sumiya Erdenechimeg,MGL,female,1990-02-28,1.59,53,wrestling,0,0,0, -67222900,Sunayna Wahi,SUR,female,1990-08-14,,,athletics,0,0,0, -224948383,Sunette Viljoen,RSA,female,1983-10-06,1.7,72,athletics,0,1,0, -960642258,Sung Hyun Ko,KOR,male,1987-05-21,1.82,85,badminton,0,0,0, -733228088,Sungmin Kim,KOR,male,1987-06-29,1.9,130,judo,0,0,0, -773103124,Sungyun Gu,KOR,male,1994-06-27,1.95,82,football,0,0,0, -179464050,Sunhee Woo,KOR,female,1978-07-01,1.71,58,handball,0,0,0, -38293952,Sunil Sowmarpet,IND,male,1989-05-06,1.76,68,hockey,0,0,0, -286970753,Sunita Lakra,IND,female,1991-06-11,1.58,57,hockey,0,0,0, -187534242,Sunwoo Kim,KOR,female,1996-10-07,1.65,57,modern pentathlon,0,0,0, -278485243,Suping Meng,CHN,female,1989-07-17,1.73,120,weightlifting,1,0,0, -912469374,Suraju Saka,CGO,male,1976-05-05,1.7,68,table tennis,0,0,0, -118866777,Surender Kumar,IND,male,1993-11-23,1.79,77,hockey,0,0,0, -819423699,Susan Kuijken,NED,female,1986-07-08,1.72,54,athletics,0,0,0, -718822536,Susana Costa,POR,female,1984-09-22,1.77,64,athletics,0,0,0, -261214819,Susann Bjornsen,NOR,female,1993-05-28,1.91,72,aquatics,0,0,0, -280722315,Susanna Kallur,SWE,female,1981-02-16,1.7,62,athletics,0,0,0, -361971820,Susannah Townsend,GBR,female,1989-07-28,1.68,61,hockey,1,0,0, -199049873,Susanne Grainger,CAN,female,1990-12-30,1.88,86,rowing,0,0,0, -8359251,Sushila Pukhrambam,IND,female,1992-02-25,1.52,52,hockey,0,0,0, -72532043,Suthasini Sawettabut,THA,female,1994-12-09,1.68,63,table tennis,0,0,0, -292142118,Sutiya Jiewchaloemmit,THA,female,1986-05-03,1.69,61,shooting,0,0,0, -326533189,Suvi Mikkonen,FIN,female,1988-07-11,1.64,57,taekwondo,0,0,0, -418495066,Suyeon Back,KOR,female,1991-07-01,1.73,61,aquatics,0,0,0, -129659927,Suzana Lazovic,MNE,female,1992-01-28,1.78,72,handball,0,0,0, -819679922,Suzann Pettersen,NOR,female,1981-04-07,,,golf,0,0,0, -756706296,Suzanne Hearn,AUS,female,1956-02-13,,,equestrian,0,0,0, -809014014,Suzuka Hasegawa,JPN,female,2000-01-25,1.65,56,aquatics,0,0,0, -629383847,Sven Bender,GER,male,1989-04-27,1.85,73,football,0,1,0, -167125216,Sven Erik Bystrom,NOR,male,1992-01-21,,,cycling,0,0,0, -674985541,Sven Knipphals,GER,male,1985-09-20,1.89,88,athletics,0,0,0, -835906599,Sven Maresch,GER,male,1987-01-19,1.73,83,judo,0,0,0, -599845580,Sven Martin Skagestad,NOR,male,1995-01-13,,,athletics,0,0,0, -879259485,Sven Riederer,SUI,male,1981-03-27,1.82,69,triathlon,0,0,0, -538115271,Svenja Huth,GER,female,1991-01-25,1.63,54,football,1,0,0, -17641128,Svetlana Chimrova,RUS,female,1996-04-15,1.73,61,aquatics,0,0,0, -823601145,Svetlana Germanovich,KAZ,female,1986-09-21,1.76,67,rowing,0,0,0, -300072037,Svetlana Golendova,KAZ,female,1993-07-25,1.65,46,athletics,0,0,0, -514719063,Svetlana Kolesnichenko,RUS,female,1993-09-20,1.71,54,aquatics,1,0,0, -813630131,Svetlana Kuznetsova,RUS,female,1985-06-27,1.74,73,tennis,0,0,0, -82177310,Svetlana Radzivil,UZB,female,1987-01-17,1.86,61,athletics,0,0,0, -501420252,Svetlana Romashina,RUS,female,1989-09-21,1.73,55,aquatics,2,0,0,"Three gold medals from two editions of the Olympic Games. Svetlana Romashina first won the gold at Beijing 2008, as part of the Russia synchronised swimming team. At London 2012, she took gold for the team and duet events." -798685031,Sviatlana Kudzelich,BLR,female,1987-05-07,1.7,51,athletics,0,0,0, -720211034,Svitlana Akhadova,UKR,female,1993-05-10,1.7,69,canoe,0,0,0, -524819089,Svitlana Iaromka,UKR,female,1989-04-09,1.62,78,judo,0,0,0, -237017632,Svitlana Stanko-Klymenko,UKR,female,1976-05-13,,,athletics,0,0,0, -734681524,Swe Li Myint Myint,MYA,female,1993-06-24,1.68,55,athletics,0,0,0, -923873687,Sydney McLaughlin,USA,female,1999-08-07,1.76,59,athletics,0,0,0, -897751532,Sydney Pickrem,CAN,female,1997-05-21,1.68,57,aquatics,0,0,0, -445792938,Sylvia Fowles,USA,female,1985-10-06,1.98,90,basketball,1,0,0, -640361977,Sylwester Bednarek,POL,male,1989-04-28,1.94,78,athletics,0,0,0, -365526151,Sylwia Bogacka,POL,female,1981-10-03,1.62,57,shooting,0,0,0, -687167760,Szandra Szogedi,GHA,female,1988-10-19,1.58,63,judo,0,0,0, -761194557,Szu-Yu Chen,TPE,female,1993-08-01,1.62,58,table tennis,0,0,0, -313930534,Szymon Staskiewicz,POL,male,1987-01-03,1.86,80,modern pentathlon,0,0,0, -654852458,Tabata de Carvalho,BRA,female,1996-04-23,1.71,61,athletics,0,0,0, -997432582,Tabea Alt,GER,female,2000-03-18,1.58,50,gymnastics,0,0,0, -57676016,Tabea Kemme,GER,female,1991-12-14,1.7,56,football,1,0,0, -990975913,Taciana Lima,GBS,female,1983-12-17,1.64,48,judo,0,0,0, -158812525,Tadas Suskevicius,LTU,male,1985-05-22,1.77,64,athletics,0,0,0, -134631716,Tadesse Abraham,SUI,male,1982-08-12,1.78,61,athletics,0,0,0, -359507589,Taehoon Lee,KOR,male,1986-05-18,1.8,74,sailing,0,0,0, -965284155,Taehun Kim,KOR,male,1994-08-15,1.82,59,taekwondo,0,0,1, -589375724,Taehwan Park,KOR,male,1989-09-27,1.83,73,aquatics,0,0,0, -193649296,Tafese Seboka,ETH,male,1993-09-29,1.77,66,athletics,0,0,0, -768671420,Tagir Khaibulaev,RUS,male,1984-07-24,1.82,100,judo,0,0,0, -539157373,Taha Akgul,TUR,male,1990-11-22,1.92,125,wrestling,1,0,0, -136534456,Tahesia Harrigan-Scott,IVB,female,1982-02-15,1.58,56,athletics,0,0,0, -477470052,Tahir Guelec,GER,male,1993-02-25,1.91,82,taekwondo,0,0,0, -161917472,Tahir Walsh,ANT,male,1994-02-24,1.82,91,athletics,0,0,0, -485849268,Taimuraz Friev Naskidaeva,ESP,male,1986-09-15,1.76,84,wrestling,0,0,0, -871329009,Taina Halasima,TGA,female,1997-12-11,1.63,65,athletics,0,0,0, -346992499,Taina Paixao,BRA,female,1991-11-29,1.71,69,basketball,0,0,0, -605417556,Tairat Bunsuk,THA,male,1993-01-11,1.61,69,weightlifting,0,0,0, -449390990,Tais Balconi,BRA,female,1991-04-11,1.64,63,rugby sevens,0,0,0, -658175291,Tais Rochel,BRA,female,1983-10-16,1.65,61,fencing,0,0,0, -615179383,Taiwo Awoniyi,NGR,male,1997-08-12,1.82,71,football,0,0,0, -615764014,Taizo Sugitani,JPN,male,1976-06-27,1.7,63,equestrian,0,0,0, -799687468,Takaharu Furukawa,JPN,male,1984-08-09,1.74,89,archery,0,0,0, -25012659,Takamasa Kitagawa,JPN,male,1996-09-05,1.77,69,athletics,0,0,0, -654328504,Takanori Nagase,JPN,male,1993-10-14,1.81,81,judo,0,0,1, -599789748,Takashi Eto,JPN,male,1991-02-05,1.83,67,athletics,0,0,0, -511495606,Takayuki Tanii,JPN,male,1983-02-14,1.67,57,athletics,0,0,0, -784189307,Takeshi Matsuda,JPN,male,1984-06-23,1.84,84,aquatics,0,0,1, -313024850,Takuma Asano,JPN,male,1994-11-10,1.71,70,football,0,0,0, -247907284,Takumi Minamino,JPN,male,1995-01-16,1.74,67,football,0,0,0, -798091579,Takuro Fujii,JPN,male,1985-04-21,1.84,82,aquatics,0,0,0, -874798045,Takuya Haneda,JPN,male,1987-07-17,1.75,70,canoe,0,0,1, -416084708,Takuya Iwanami,JPN,male,1994-06-18,1.86,72,football,0,0,0, -536937695,Talent Mandaza,ZIM,female,1985-12-11,1.58,60,football,0,0,0, -808567905,Tales Cerdeira,BRA,male,1987-01-21,,,aquatics,0,0,0, -842617684,Talgat Ilyasov,AUS,male,1981-02-25,1.75,74,wrestling,0,0,0, -74177936,Taliqua Clancy,AUS,female,1992-06-25,1.84,68,volleyball,0,0,0, -99503989,Talisa Lanoe,KEN,female,1994-07-25,1.67,50,aquatics,0,0,0, -296747783,Talita Baqlah,JOR,female,1995-10-27,1.72,62,aquatics,0,0,0, -122731267,Talita Marie Te Flan,CIV,female,1995-06-02,1.76,63,aquatics,0,0,0, -302432944,Talita Rocha,BRA,female,1982-08-29,1.81,64,volleyball,0,0,0, -877029068,Talles Frederico Silva,BRA,male,1991-08-20,1.9,78,athletics,0,0,0, -318548853,Tamara Csipes,HUN,female,1989-08-24,1.76,78,canoe,1,0,0, -732795832,Tamara Echegoyen Dominguez,ESP,female,1984-02-17,1.74,70,sailing,0,0,0, -818897478,Tamara Horacek,FRA,female,1995-11-05,1.79,80,handball,0,1,0, -800485643,Tamara Radocaj,SRB,female,1987-12-23,1.7,60,basketball,0,0,1, -545572234,Tamara Salaski,SRB,female,1988-10-16,1.65,54,athletics,0,0,0, -215126261,Tamara Tatham,CAN,female,1985-08-19,1.85,79,basketball,0,0,0, -168420206,Tamara Vega,MEX,female,1993-03-15,1.59,59,modern pentathlon,0,0,0, -431927399,Tamas Decsi,HUN,male,1982-10-15,1.78,82,fencing,0,0,0, -19585487,Tamas Kenderesi,HUN,male,1996-12-13,1.86,75,aquatics,0,0,1, -423484722,Tamas Lorincz,HUN,male,1986-12-20,1.72,75,wrestling,0,0,0, -540557883,Tamas Somoracz,HUN,male,1992-04-11,1.95,92,canoe,0,0,0, -270561251,Tamas Toth,HUN,male,1989-05-29,1.75,65,triathlon,0,0,0, -82978460,Tameka Butt,AUS,female,1991-06-16,1.58,55,football,0,0,0, -845644172,Tameka Williams,SKN,female,1989-08-31,,,athletics,0,0,0, -578801610,Tamika Catchings,USA,female,1979-07-21,1.85,77,basketball,1,0,0, -655850700,Tamila Holub,POR,female,1999-05-15,1.75,62,aquatics,0,0,0, -835127329,Tamirat Tola,ETH,male,1991-08-11,1.81,59,athletics,0,0,1, -19869535,Tamires,BRA,female,1987-10-10,1.61,54,football,0,0,0, -267796493,Tamires Lima de Araujo,BRA,female,1994-05-16,1.8,77,handball,0,0,0, -120820876,Tammy Takagi,BRA,female,1991-03-11,1.61,59,aquatics,0,0,0, -425857389,Tamsin Cook,AUS,female,1998-12-25,1.7,61,aquatics,0,1,0, -14783411,Tan Tai Hoang,VIE,male,1990-03-30,1.65,84,weightlifting,0,0,0, -395892993,Tanel Kangert,EST,male,1987-03-11,1.78,66,cycling,0,0,0, -338003590,Tanel Laanmae,EST,male,1989-09-29,1.83,95,athletics,0,0,0, -198967774,Tanguy Cosyns,BEL,male,1991-06-29,1.74,70,hockey,0,1,0, -572093564,Tania Arrayales,MEX,female,1996-08-01,1.58,53,fencing,0,0,0, -401251209,Tania Cagnotto,ITA,female,1985-05-15,1.6,53,aquatics,0,1,1, -415410367,Tania Calvo Barbero,ESP,female,1992-06-26,1.66,64,cycling,0,0,0, -424029874,Tania di Mario,ITA,female,1979-05-04,1.68,62,aquatics,0,1,0, -644104998,Tanja Frank,AUT,female,1993-01-24,1.67,57,sailing,0,0,1, -39470367,Tanja Kylliainen,FIN,female,1993-01-30,1.55,57,aquatics,0,0,0, -103257404,Tanja Perec,CRO,female,1992-06-08,1.66,85,shooting,0,0,0, -65779574,Tanja Zakelj,SLO,female,1988-09-15,1.59,56,cycling,0,0,0, -807845971,Tanumafili Malietoa Jungblut,ASA,male,1990-06-10,1.88,93,weightlifting,0,0,0, -410068536,Tanya Acosta,ARG,female,1991-03-11,1.82,70,volleyball,0,0,0, -520555163,Tanya Holliday,AUS,female,1988-09-21,1.67,52,athletics,0,0,0, -467489703,Tanya Seymour,RSA,female,1983-11-05,1.65,57,equestrian,0,0,0, -530816831,Tanyaporn Prucksakorn,THA,female,1990-01-08,1.68,70,shooting,0,0,0, -725478923,Tao Tian,CHN,male,1994-04-08,1.72,85,weightlifting,0,1,0, -701625147,Taoufik Makhloufi,ALG,male,1988-04-29,1.7,67,athletics,0,2,0, -152333159,Tapio Nirkko,FIN,male,1984-08-24,1.94,96,sailing,0,0,0, -366332579,Tara Pacheco van Rijnsoever,ESP,female,1988-10-03,1.67,63,sailing,0,0,0, -347121929,Tara Whitten,CAN,female,1980-07-13,1.66,67,cycling,0,0,0, -292576070,Taras Mishchuk,UKR,male,1995-07-22,1.87,85,canoe,0,0,1, -962319848,Tarasue Barnett,JAM,female,1993-09-10,1.78,81,athletics,0,0,0, -335960074,Tarek Ayad,EGY,male,1987-05-29,1.8,75,fencing,0,0,0, -769863760,Tarek Aziz Benaissa,ALG,male,1991-04-07,1.7,66,wrestling,0,0,0, -993851056,Tarik Langat Akdag,TUR,male,1988-06-16,1.76,60,athletics,0,0,0, -511260324,Tariq Ahmed Al-Amri,KSA,male,1990-12-23,1.65,49,athletics,0,0,0, -108994538,Taro Daniel,JPN,male,1993-01-27,1.91,76,tennis,0,0,0, -579881556,Taru Kuoppa,FIN,female,1983-11-14,1.73,63,archery,0,0,0, -373794222,Taryn Suttie,CAN,female,1990-12-07,1.83,103,athletics,0,0,0, -729866752,Tasa Jiya,NED,female,1997-09-16,1.84,68,athletics,0,0,0, -244910670,Tasama Moogas,ISR,male,1988-02-02,1.64,53,athletics,0,0,0, -983364224,Tashreeq Morris,RSA,male,1994-05-13,1.89,74,football,0,0,0, -858607766,Tatenda Tsumba,ZIM,male,1991-11-12,1.83,79,athletics,0,0,0, -245946322,Tatiana Ariza,COL,female,1991-02-21,1.61,52,football,0,0,0, -878935662,Tatiana Barsuk,RUS,female,1985-02-22,1.7,66,shooting,0,0,0, -539307863,Tatiana Chisca,MDA,female,1995-07-19,1.75,60,aquatics,0,0,0, -981120716,Tatiana Drozdovskaya,BLR,female,1978-12-06,1.75,69,sailing,0,0,0, -6056876,Tatiana Erokhina,RUS,female,1984-09-07,1.85,73,handball,1,0,0, -374496832,Tatiana Guderzo,ITA,female,1984-08-22,1.6,55,cycling,0,0,0, -326358515,Tatiana Kosheleva,RUS,female,1988-12-23,1.91,67,volleyball,0,0,0, -192110887,Tatiana Logunova,RUS,female,1980-07-03,1.74,62,fencing,0,0,1, -737519683,Tatiana Soledad Rizzo,ARG,female,1986-12-30,1.78,64,volleyball,0,0,0, -829450313,Tatiane Pacheco,BRA,female,1990-10-16,1.81,69,basketball,0,0,0, -12705539,Tatiele Roberta de Carvalho,BRA,female,1989-11-22,1.56,50,athletics,0,0,0, -848018614,Tatjana Djekanovic,BIH,female,1997-02-25,1.68,54,shooting,0,0,0, -177848801,Tatjana Pinto,GER,female,1992-07-02,1.7,56,athletics,0,0,0, -854144627,Tatsiana Khaladovich,BLR,female,1991-06-21,1.81,83,athletics,0,0,0, -993489737,Tatsiana Korzh,BLR,female,1993-03-17,1.75,75,athletics,0,0,0, -880574161,Tatsiana Kukhta,BLR,female,1990-06-13,1.85,77,rowing,0,0,0, -133803510,Tatsiana Likhtarovich,BLR,female,1988-03-29,1.8,67,basketball,0,0,0, -179784825,Tatsiana Piatrenia,BLR,female,1981-10-18,1.65,52,gymnastics,0,0,0, -194275450,Tatsiana Sharakova,BLR,female,1984-07-31,1.6,52,cycling,0,0,0, -840107784,Tatyana Troina,BLR,female,1981-06-30,1.88,78,basketball,0,0,0, -13841357,Tavis Bailey,USA,male,1992-01-06,1.91,124,athletics,0,0,0, -385700766,Tawin Hanprab,THA,male,1998-08-01,1.81,58,taekwondo,0,1,0, -417534147,Taybe Mustafa Yusein,BUL,female,1991-05-04,1.63,63,wrestling,0,0,0, -928304511,Taylor Curran,CAN,male,1992-05-19,1.83,80,hockey,0,0,0, -849242377,Taylor Ellis-Watson,USA,female,1993-05-06,,,athletics,1,0,0, -45282983,Taylor Madison Ruck,CAN,female,2000-05-28,1.83,60,aquatics,0,0,2, -721284471,Taylor McKeown,AUS,female,1995-03-17,1.78,65,aquatics,0,1,0, -240962566,Taylor Milne,CAN,male,1981-09-14,1.65,60,athletics,0,0,0, -32103246,Taylor Phinney,USA,male,1990-06-27,1.96,81,cycling,0,0,0, -84694873,Taylor Sander,USA,male,1992-03-17,1.96,80,volleyball,0,0,1, -288362768,Taylor Worth,AUS,male,1991-01-08,1.74,60,archery,0,0,1, -58561312,Teau McKenzie,COK,female,1995-03-12,1.83,67,sailing,0,0,0, -777261301,Tebogo Moerane,RSA,male,1995-04-07,1.67,64,football,0,0,0, -93902028,Teddy Atine - Venel,FRA,male,1985-03-16,1.84,77,athletics,0,0,0, -714540580,Teddy Riner,FRA,male,1989-04-07,2.03,139,judo,1,0,0,"The “Teddy Bear” (undefeated since 2010) is a 2.04m-tall French athlete. Riner is an eight-time world champion in the +100kg class (winning twice at Rio, in 2007 and 2013), five-time European champion and won gold at London 2012 and bronze at Beijing 2008" -97224345,Tega Odele,NGR,male,1995-12-06,1.88,80,athletics,0,0,0, -606135754,Teja Belak,SLO,female,1994-04-22,1.57,48,gymnastics,0,0,0, -556483244,Teliana Pereira,BRA,female,1988-07-20,1.67,62,tennis,0,0,0, -670067598,Telma Monteiro,POR,female,1985-12-27,1.61,57,judo,0,0,1, -781746584,Telma Santos,POR,female,1983-08-01,1.63,55,badminton,0,0,0, -679960058,Temuujin Purevjav,MGL,male,1994-06-02,1.73,63,taekwondo,0,0,0, -261206041,Temuulen Battulga,MGL,male,1988-10-07,1.83,124,judo,0,0,0, -7619971,Teodorico Caporaso,ITA,male,1987-09-14,1.7,55,athletics,0,0,0, -743311898,Teofilo Gutierrez,COL,male,1985-05-17,1.8,82,football,0,0,0, -675969120,Teofimo Andres Lopez Rivera,HON,male,1997-07-30,1.76,,boxing,0,0,0, -620846374,Teona Bostashvili,GEO,female,1998-01-19,1.64,52,aquatics,0,0,0, -654886163,Teray Smith,BAH,male,1994-09-28,1.88,,athletics,0,0,0, -214021045,Teresa Frassinetti,ITA,female,1985-12-24,1.78,75,aquatics,0,1,0, -57418889,Teresa Lu,TPE,female,1987-10-13,1.64,57,golf,0,0,0, -38799648,Teresa Patricia Almeida,ANG,female,1988-04-05,1.7,98,handball,0,0,0, -364848926,Teresa Portela,POR,female,1987-10-30,1.62,63,canoe,0,0,0, -18635175,Teresa Portela Rivas,ESP,female,1982-05-05,1.72,69,canoe,0,0,0, -923351948,Tereza Master,MAW,female,1988-09-21,1.49,45,athletics,0,0,0, -242422662,Terina Te Tamaki,NZL,female,1997-05-01,1.65,67,rugby sevens,0,1,0, -334953964,Tero Pitkamaki,FIN,male,1982-12-19,1.95,94,athletics,0,0,0, -672973707,Tero Seppo Vaelimaeki,FIN,male,1982-03-21,1.7,73,wrestling,0,0,0, -395956352,Terry Bouhraoua,FRA,male,1987-08-29,1.69,65,rugby sevens,0,0,0, -125367694,Teruya Goto,JPN,male,1991-12-18,1.77,82,rugby sevens,0,0,0, -510104446,Teruyoshi Akiyama,JPN,male,1971-12-25,1.68,65,shooting,0,0,0, -102862787,Tervel Ivaylov Dlagnev,USA,male,1985-11-19,1.88,122,wrestling,0,0,0, -655229990,Tesfaye Abera,ETH,male,1992-03-31,1.92,68,athletics,0,0,0, -135938063,Tess Oliveira,BRA,female,1987-01-06,1.65,58,aquatics,0,0,0, -651217766,Tess Wester,NED,female,1993-05-19,1.78,70,handball,0,0,0, -723655440,Tessa Gobbo,USA,female,1990-12-08,1.86,81,rowing,1,0,0, -847466727,Tessa Lavey,AUS,female,1993-03-29,1.72,68,basketball,0,0,0, -647467828,Tessa van Schagen,NED,female,1994-02-02,1.68,62,athletics,0,0,0, -166897661,Tessie Savelkouls,NED,female,1992-03-11,1.82,95,judo,0,0,0, -279816745,Tetiana Melnyk,UKR,female,1995-04-02,1.85,63,athletics,0,0,0, -740317343,Tetyana Bilenko,UKR,female,1983-11-23,1.78,67,table tennis,0,0,0, -649148509,Tetyana Kob,UKR,female,1987-10-25,1.61,,boxing,0,0,0, -159812118,Tewelde Estifanos,ERI,male,1981-11-02,,,athletics,0,0,0, -807447097,Teymur Mammadov,AZE,male,1993-01-11,1.96,,boxing,0,0,0, -370652177,Teymuraz Gabashvili,RUS,male,1985-05-23,1.87,85,tennis,0,0,0, -754858523,Thabiso Kutumela,RSA,male,1993-07-01,1.75,68,football,0,0,0, -210040104,Thadius Katua,PNG,male,1997-11-04,1.67,,boxing,0,0,0, -332545480,Thais Guedes,BRA,female,1993-01-20,1.64,60,football,0,0,0, -951388142,Thaisa,BRA,female,1988-12-17,1.66,59,football,0,0,0, -296920401,Thaisa Menezes,BRA,female,1987-05-15,1.96,75,volleyball,0,0,0, -900917316,Thanackal Gopi,IND,male,1988-05-24,1.66,56,athletics,0,0,0, -381843063,Thanasi Kokkinakis,AUS,male,1996-04-10,1.96,82,tennis,0,0,0, -699394575,Thanh An Vu,VIE,male,1992-08-07,1.85,80,fencing,0,0,0, -5130801,Thanh Ngung Nguyen,VIE,male,1992-04-08,1.65,55,athletics,0,0,0, -955206576,Thapelo Morena,RSA,male,1993-08-06,1.7,62,football,0,0,0, -315255712,Thea Lafond,DMA,female,1994-04-05,1.73,65,athletics,0,0,0, -439436986,Thembi Kgatlana,RSA,female,1996-05-02,1.56,50,football,0,0,0, -215472787,Theo Bos,NED,male,1983-08-22,1.9,85,cycling,0,0,0, -529392127,Theo Bussiere,FRA,male,1995-01-18,1.9,90,aquatics,0,0,0, -104108764,Theo Piniau,PNG,male,1993-06-08,1.72,59,athletics,0,0,0, -306944769,Theo Reinhardt,GER,male,1990-09-17,1.77,68,cycling,0,0,0, -263136966,Theo van de Vendel,NED,male,1980-10-24,1.76,73,equestrian,0,0,0, -648002342,Theodora Drakou,GRE,female,1992-02-06,1.69,67,aquatics,0,0,0, -470687922,Theodoros Iakovidis,GRE,male,1991-02-12,1.81,85,weightlifting,0,0,0, -466992964,Theophile Onfroy,FRA,male,1992-12-29,1.89,82,rowing,0,0,0, -119367610,Theorine Christelle Aboa Mbeza,CMR,female,1992-08-25,1.82,78,volleyball,0,0,0, -460776365,Theresa Fitzpatrick,NZL,female,1995-02-25,1.68,75,rugby sevens,0,1,0, -365498123,Therese Alshammar,SWE,female,1977-08-26,1.8,64,aquatics,0,0,0, -27368310,Thery Schir,SUI,male,1993-02-18,1.86,77,cycling,0,0,0, -559704929,Thi Anh Do,VIE,female,1996-02-09,1.65,58,fencing,0,0,0, -581029614,Thi Ha Thanh Phan,VIE,female,1991-10-16,1.63,48,gymnastics,0,0,0, -419742149,Thi Hang Vu,VIE,female,1992-05-25,1.58,47,wrestling,0,0,0, -89761321,Thi Huyen Nguyen,VIE,female,1993-05-19,1.58,45,athletics,0,0,0, -414794696,Thi Huyen Vuong,VIE,female,1992-06-22,1.55,48,weightlifting,0,0,0, -262269527,Thi Le Dung Nguyen,VIE,female,1985-09-09,1.68,55,fencing,0,0,0, -340277633,Thi Lua Nguyen,VIE,female,1991-07-24,1.65,53,wrestling,0,0,0, -927744714,Thi Nhu Hoa Nguyen,VIE,female,1984-02-21,1.7,60,fencing,0,0,0, -244236033,Thi Trang (b) Vu,VIE,female,1992-05-19,1.63,58,badminton,0,0,0, -666839179,Thiago Andre,BRA,male,1995-08-04,1.63,52,athletics,0,0,0, -176515757,Thiago Bomfim,BRA,male,1990-09-21,1.93,84,hockey,0,0,0, -544759251,Thiago Braz da Silva,BRA,male,1993-12-16,1.83,75,athletics,1,0,0, -682318749,Thiago Maia,BRA,male,1997-03-23,1.78,69,football,1,0,0, -79240685,Thiago Pereira,BRA,male,1986-01-26,1.87,83,aquatics,0,0,0, -36658255,Thiago Simon,BRA,male,1990-04-03,1.84,93,aquatics,0,0,0, -69081785,Thiagus dos Santos,BRA,male,1989-01-25,1.98,104,handball,0,0,0, -23647767,Thibault Colard,FRA,male,1992-01-13,1.87,70,rowing,0,0,1, -228211001,Thibault Rossard,FRA,male,1993-08-28,1.93,85,volleyball,0,0,0, -914516277,Thibaut Amani Danho,CIV,male,1994-01-15,1.85,82,aquatics,0,0,0, -814590429,Thibaut Simon,FRA,male,1983-12-18,1.92,98,aquatics,0,0,0, -999374064,Thibaut Vallette,FRA,male,1974-01-18,1.71,60,equestrian,1,0,0, -50266146,Thierry Omeyer,FRA,male,1976-11-02,1.92,93,handball,0,1,0,"Elected the best keeper in the world, in 2008, Thierry Omeyer has won the most important titles of his career with France's national handball team. These include two Olympic golds (Beijing 2008 and London 2012) and four world and three European titles." -963532102,Thijs Visser,ARU,male,1989-10-19,1.84,88,sailing,0,0,0, -326914230,Thint Myaat,MYA,male,2002-04-14,1.6,52,aquatics,0,0,0, -172048822,Thomas Baroukh,FRA,male,1987-12-15,1.83,70,rowing,0,0,1, -849127949,Thomas Barr,IRL,male,1992-07-24,1.83,70,athletics,0,0,0, -714454697,Thomas Barrows,USA,male,1987-11-02,1.86,82,sailing,0,0,0, -896818368,Thomas Boudat,FRA,male,1994-02-24,1.75,69,cycling,0,0,0, -360675944,Thomas Briceno,CHI,male,1993-09-16,1.86,90,judo,0,0,0, -168124839,Thomas Briels,BEL,male,1987-08-23,1.72,71,hockey,0,1,0, -475825949,Thomas Daley,GBR,male,1994-05-21,1.77,70,aquatics,0,0,1,"He made his debut at Beijing 2008, aged only 14. In 2009, Briton Tom Daley took the world title in the 10m individual and, at London 2012, won the bronze. A social network phenomenon, Tom has also participated in a TV show." -360616415,Thomas Dunstan,USA,male,1997-09-29,1.94,96,aquatics,0,0,0, -391980322,Thomas Fabbiano,ITA,male,1989-05-26,1.73,70,tennis,0,0,0, -521339306,Thomas Fraser-Holmes,AUS,male,1991-10-09,1.94,85,aquatics,0,0,0, -868940905,Thomas Hagelskjar,DEN,male,1995-02-04,1.87,81,football,0,0,0, -371431214,Thomas Heurtel,FRA,male,1989-04-10,1.88,83,basketball,0,0,0, -112978529,Thomas Jaeschke,USA,male,1993-09-04,1.98,84,volleyball,0,0,1, -219077110,Thomas Jordier,FRA,male,1994-08-12,1.7,65,athletics,0,0,0, -94661624,Thomas Mathis,AUT,male,1990-04-25,1.78,63,shooting,0,0,0, -374876485,Thomas Murray,NZL,male,1994-04-05,1.89,87,rowing,0,0,0, -782766062,Thomas Pieters,BEL,male,1992-01-27,1.96,85,golf,0,0,0, -870559020,Thomas Ploessel,GER,male,1988-04-29,1.81,80,sailing,0,0,1, -900233130,Thomas Rohler,GER,male,1991-09-30,1.92,92,athletics,1,0,0, -496341298,Thomas Simart,FRA,male,1987-10-09,1.8,82,canoe,0,0,0, -851753829,Thomas Springer,AUT,male,1984-11-06,1.84,70,triathlon,0,0,0, -514467487,Thomas Zajac,AUT,male,1985-09-22,1.8,77,sailing,0,0,1, -666963728,Thomas van der Plaetsen,BEL,male,1990-12-24,1.86,82,athletics,0,0,0, -831910280,Thomaz Bellucci,BRA,male,1987-12-30,1.88,82,tennis,0,0,0, -854048729,Thongchai Jaidee,THA,male,1969-11-08,1.7,63,golf,0,0,0, -272895419,Thorbjorn Olesen,DEN,male,1989-12-21,1.77,70,golf,0,0,0, -711886868,Thormodur Jonsson,ISL,male,1983-03-02,1.96,110,judo,0,0,0, -962042754,Thulasi Tharumalingam,QAT,male,1992-10-24,1.78,,boxing,0,0,0, -494000666,Tia-Adana Belle,BAR,female,1996-06-15,1.78,59,athletics,0,0,0, -971688032,Tia-Clair Toomey,AUS,female,1993-07-22,1.58,58,weightlifting,0,0,0, -512121702,Tiago Apolonia,POR,male,1986-07-28,1.85,76,table tennis,0,0,0, -850164905,Tiago Camilo,BRA,male,1982-05-24,1.8,90,judo,0,0,0, -192124301,Tiago Ilori,POR,male,1993-02-26,1.9,80,football,0,0,0, -697851562,Tiago Jorge Oliveira Ferreira,POR,male,1988-12-07,1.94,74,cycling,0,0,0, -977600409,Tiago Silva,POR,male,1993-06-02,1.7,70,football,0,0,0, -802574833,Tian Miao,CHN,female,1993-01-18,1.86,83,rowing,0,0,0, -562349871,Tianna Bartoletta,USA,female,1985-08-30,1.68,58,athletics,2,0,0, -439028036,Tianshi Zhong,CHN,female,1991-02-02,1.68,62,cycling,1,0,0, -399009704,Tianwei Feng,SIN,female,1986-08-31,1.63,55,table tennis,0,0,0, -290265598,Tiberiu Dolniceanu,ROU,male,1988-04-03,1.79,79,fencing,0,0,0, -579357884,Tibor Hufnagel,HUN,male,1991-03-18,1.75,75,canoe,0,0,0, -123268106,Tibor Linka,SVK,male,1995-02-13,1.99,95,canoe,0,1,0, -832967742,Tien Chen Chou,TPE,male,1990-01-08,1.8,78,badminton,0,0,0, -307265298,Tien Minh Nguyen,VIE,male,1983-02-12,1.68,60,badminton,0,0,0, -334432362,Tiexin Wang,CHN,male,1989-02-24,1.87,73,rowing,0,0,0, -589841221,Tiffany Chan,HKG,female,1993-09-12,1.61,52,golf,0,0,0, -336393065,Tiffany Foster,CAN,female,1984-07-24,1.65,50,equestrian,0,0,0, -103328512,Tiffany Geroudet,SUI,female,1986-09-03,1.7,67,fencing,0,0,0, -95014047,Tiffany Porter,GBR,female,1987-11-13,1.75,70,athletics,0,0,0, -939411758,Tigest Getent,BRN,female,1997-07-07,,,athletics,0,0,0, -608439897,Tigist Gashaw,BRN,female,1996-12-25,,,athletics,0,0,0, -775831149,Tigist Tufa,ETH,female,1987-01-26,,,athletics,0,0,0, -487073298,Tigst Assefa,ETH,female,1996-12-03,1.68,53,athletics,0,0,0, -578522258,Tiidrek Nurme,EST,male,1985-11-18,1.84,70,athletics,0,0,0, -418178080,Tijana Bogdanovic,SRB,female,1998-05-04,1.72,52,taekwondo,0,1,0, -404485825,Tijana Boskovic,SRB,female,1997-03-08,1.93,82,volleyball,0,1,0, -28414240,Tijana Malesevic,SRB,female,1991-03-18,1.85,78,volleyball,0,1,0, -280943173,Tikhomir Ivanov,BUL,male,1994-07-11,1.97,76,athletics,0,0,0, -250232095,Tilbe Senyurek,TUR,female,1995-04-26,1.89,86,basketball,0,0,0, -566924681,Tim Agaba,RSA,male,1989-07-23,1.93,104,rugby sevens,0,0,1, -321813613,Tim Deavin,AUS,male,1984-07-27,1.85,77,hockey,0,0,0, -108419989,Tim Erlandsson,SWE,male,1996-12-25,1.92,79,football,0,0,0, -162316722,Tim Heijbrock,NED,male,1985-10-28,1.89,70,rowing,0,0,0, -366414312,Tim Kneale,GBR,male,1982-10-16,1.82,76,shooting,0,0,0, -2888213,Tim Lips,NED,male,1985-10-07,1.68,55,equestrian,0,0,0, -757977623,Tim Mikkelson,NZL,male,1986-08-13,1.93,102,rugby sevens,0,0,0, -966796753,Tim Nedow,CAN,male,1990-10-16,2,140,athletics,0,0,0, -320004654,Tim Price,NZL,male,1979-04-03,1.89,75,equestrian,0,0,0, -746547519,Tim Schrijver,CAN,male,1992-02-07,2.03,104,rowing,0,0,0, -329815777,Tim Shuttleworth,GBR,male,1997-04-24,1.92,72,aquatics,0,0,0, -609839139,Tim Veldt,NED,male,1984-02-14,1.86,78,cycling,0,0,0, -157166055,Tim Wellens,BEL,male,1991-05-10,1.83,77,cycling,0,0,0, -429177971,Tima Tamoi,FIJ,female,1987-11-30,1.75,70,rugby sevens,0,0,0, -264598644,Timaima Ravisa,FIJ,female,1988-05-01,1.6,55,rugby sevens,0,0,0, -978453530,Timea Babos,HUN,female,1993-05-10,1.79,68,tennis,0,0,0, -693524589,Timea Bacsinszky,SUI,female,1989-06-08,1.71,62,tennis,0,1,0, -375628571,Timm Herzbruch,GER,male,1997-06-07,1.8,76,hockey,0,0,1, -169189076,Timo Boll,GER,male,1981-03-08,1.81,74,table tennis,0,0,1, -490797825,Timo Horn,GER,male,1993-05-12,1.91,89,football,0,1,0, -533145484,Timothey N'Guessan,FRA,male,1992-09-18,1.86,105,handball,0,1,0, -439125836,Timothy Cockram,IRL,male,1984-01-18,1.77,78,hockey,0,0,0, -114387888,Timothy Toroitich,UGA,male,1991-10-10,,,athletics,0,0,0, -170511922,Timothy Wang,USA,male,1991-08-17,1.76,65,table tennis,0,0,0, -88388879,Timothy Wynter,JAM,male,1996-01-16,1.87,77,aquatics,0,0,0, -715800350,Timur Khaidarov,KAZ,male,1996-03-28,1.85,86,canoe,0,0,0, -231378561,Timur Oruz,GER,male,1994-10-27,1.86,87,hockey,0,0,1, -503276231,Timur Safin,RUS,male,1992-08-04,1.82,82,fencing,1,0,1, -465038950,Tina Charles,USA,female,1988-12-05,1.93,88,basketball,1,0,0, -128638379,Tina Dietze,GER,female,1988-01-25,1.72,68,canoe,0,2,0, -763030230,Tina Mihelic,CRO,female,1988-12-30,1.76,66,sailing,0,0,0, -873408482,Tina Mrak,SLO,female,1988-02-06,1.65,62,sailing,0,0,0, -826167980,Tina Punzel,GER,female,1995-08-01,1.67,56,aquatics,0,0,0, -390366123,Tina Skaar,NOR,female,1993-08-31,,,taekwondo,0,0,0, -282154223,Tina Sutej,SLO,female,1988-11-07,1.73,58,athletics,0,0,0, -657940345,Tina Trstenjak,SLO,female,1990-08-24,1.62,65,judo,1,0,0, -727650750,Tindwende Thierry Sawadogo,BUR,male,1995-07-22,1.99,93,aquatics,0,0,0, -872228172,Ting Shao,CHN,female,1989-12-10,1.84,75,basketball,0,0,0, -622182387,Ting Wen Quah,SIN,female,1992-08-18,1.76,65,aquatics,0,0,0, -975655821,Ting Ying Huang,TPE,female,1990-05-29,1.6,,cycling,0,0,0, -738894846,Ting Zhu,CHN,female,1994-11-29,1.95,78,volleyball,1,0,0, -11288154,Tingmao Shi,CHN,female,1991-08-31,1.59,52,aquatics,2,0,0, -731978113,Tingting Liu,CHN,female,1990-01-29,1.78,87,athletics,0,0,0, -549917625,Tinne Wilhelmsson Silfven,SWE,female,1967-07-12,1.67,60,equestrian,0,0,0, -973558445,Tintu Lukka,IND,female,1989-04-26,1.63,50,athletics,0,0,0, -945244491,Tirfi Tsegaye,ETH,female,1984-11-25,1.62,52,athletics,0,0,0, -727998449,Tiril Bue,NOR,female,1993-04-26,,,sailing,0,0,0, -373463162,Tirunesh Dibaba,ETH,female,1985-06-01,1.66,50,athletics,0,0,1, -92191114,Tjasa Oder,SLO,female,1994-06-22,1.8,65,aquatics,0,0,0, -788072979,Tjasa Pintar,SLO,female,1997-02-15,1.75,65,aquatics,0,0,0, -472127952,Tjasa Vozel,SLO,female,1994-07-14,1.71,62,aquatics,0,0,0, -289284299,Tlotliso Leotlela,RSA,male,1998-05-12,1.78,74,athletics,0,0,0, -895052904,Toader-Andrei Gontaru,ROU,male,1993-02-07,1.9,92,rowing,0,0,0, -779371307,Tobias Dahm,GER,male,1987-05-23,2.05,124,athletics,0,0,0, -706990143,Tobias Englmaier,GER,male,1988-01-29,1.58,63,judo,0,0,0, -283196075,Tobias Figueiredo,POR,male,1994-02-02,1.9,80,football,0,0,0, -422345402,Tobias Franzmann,GER,male,1990-12-08,1.81,73,rowing,0,0,0, -404535189,Tobias Hauke,GER,male,1987-09-10,1.83,81,hockey,0,0,1,"The Germany field hockey team captain when it won gold at Beijing 2008 and London 2012, midfielder Tobias Hauke has won the Champions Trophy twice and the European Championship once." -287021554,Tobias Karlsson,SWE,male,1981-06-04,1.96,104,handball,0,0,0, -999276272,Tobias Reichmann,GER,male,1988-05-27,1.88,87,handball,0,0,1, -811535862,Tobias Scherbarth,GER,male,1985-08-17,1.95,87,athletics,0,0,0, -451233303,Tobin Heath,USA,female,1988-05-29,1.62,54,football,0,0,0, -26312714,Toea Wisil,PNG,female,1988-01-01,1.62,63,athletics,0,0,0, -128575502,Toghrul Asgarov,AZE,male,1992-09-17,1.7,65,wrestling,0,1,0, -893678601,Tom Boon,BEL,male,1990-01-25,1.84,81,hockey,0,1,0, -905671340,Tom Bosworth,GBR,male,1990-01-17,1.78,54,athletics,0,0,0, -282018185,Tom Burton,AUS,male,1990-06-27,1.8,81,sailing,1,0,0, -698962028,Tom Craig,AUS,male,1995-09-03,1.86,85,hockey,0,0,0, -115915135,Tom Cusack,AUS,male,1993-03-01,1.91,101,rugby sevens,0,0,0, -200377186,Tom Dumoulin,NED,male,1990-11-11,1.86,70,cycling,0,1,0, -967848122,Tom Farrell,GBR,male,1991-03-23,1.79,63,athletics,0,0,0, -694130746,Tom Grambusch,GER,male,1995-08-04,1.85,85,hockey,0,0,1, -217351049,Tom Kingston,AUS,male,1991-06-19,1.9,91,rugby sevens,0,0,0, -621529566,Tom Liebscher,GER,male,1993-08-03,1.89,89,canoe,1,0,0, -107180600,Tom Mitchell,GBR,male,1989-07-22,1.78,85,rugby sevens,0,1,0, -959754515,Tom Pelsmaekers,BEL,male,1993-01-26,1.77,81,sailing,0,0,0, -298179530,Tom Ramshaw,CAN,male,1991-11-18,1.83,95,sailing,0,0,0, -928952672,Tom Ransley,GBR,male,1985-09-06,1.98,101,rowing,1,0,0, -169080993,Tom Richard Goegebuer,BEL,male,1975-03-27,1.64,56,weightlifting,0,0,0, -771859160,Tom Shields,USA,male,1991-07-11,1.94,86,aquatics,1,0,0, -384204713,Toma Nikiforov,BEL,male,1993-01-25,1.9,100,judo,0,0,0, -915410677,Tomas,POR,male,1995-01-30,1.81,75,football,0,0,0, -986152006,Tomas Aguilera,MEX,male,1988-11-15,2.02,95,volleyball,0,0,0, -53247064,Tomas Gonzalez,CHI,male,1985-11-22,1.7,67,gymnastics,0,0,0, -542026026,Tomas Klobucnik,SVK,male,1990-06-21,1.85,88,aquatics,0,0,0, -633990854,Tomas Stanek,CZE,male,1991-06-13,1.9,125,athletics,0,0,0, -674282266,Tomas Walsh,NZL,male,1992-03-01,1.85,125,athletics,0,0,1, -324400159,Tomasz Jablonski,POL,male,1988-12-29,1.78,,boxing,0,0,0, -534870761,Tomasz Kaczor,POL,male,1989-08-04,1.84,85,canoe,0,0,0, -467871766,Tomasz Majewski,POL,male,1981-08-30,2.04,142,athletics,0,0,0, -800403831,Tomasz Polewka,POL,male,1994-08-05,2,96,aquatics,0,0,0, -211819667,Tommy Sugiarto,INA,male,1988-05-31,1.75,71,badminton,0,0,0, -201573939,Tomohiro Inoue,JPN,male,1987-07-17,1.7,74,wrestling,0,0,0, -867127082,Tomomi Aoki,JPN,female,1994-10-25,1.64,55,aquatics,0,0,0, -388992602,Tomomi Tanaka,JPN,female,1988-01-25,1.54,40,athletics,0,0,0, -940604349,Tomoya Miguchi,JPN,male,1986-04-26,1.8,67,modern pentathlon,0,0,0, -976832903,Tomoya Tamura,JPN,male,1992-08-20,1.78,68,athletics,0,0,0, -725466241,Tomoyoshi Fukushima,JPN,male,1993-06-03,1.77,75,aquatics,0,0,0, -711821462,Tomoyuki Matsuda,JPN,male,1975-12-12,1.74,73,shooting,0,0,0, -53505297,Toms Skujins,LAT,male,1991-06-15,1.8,70,cycling,0,0,0, -917643038,Tonci Stipanovic,CRO,male,1986-06-13,1.78,81,sailing,0,1,0, -189873894,Tone Wieten,NED,male,1994-03-17,2.01,102,rowing,0,0,1, -464586921,Toni Syarifudin,INA,male,1991-06-13,1.64,68,cycling,0,0,0, -605742974,Toni Wilhelm,GER,male,1983-02-05,1.82,76,sailing,0,0,0, -776154883,Toni-Ann Williams,JAM,female,1995-11-20,1.55,52,gymnastics,0,0,0, -535001481,Tonia Couch,GBR,female,1989-05-20,1.62,58,aquatics,0,0,0, -724384082,Tonje Angelsen,NOR,female,1990-01-17,,,athletics,0,0,0, -999578859,Tontowi Ahmad,INA,male,1987-07-18,1.79,72,badminton,1,0,0, -287253228,Tonu Endrekson,EST,male,1979-06-11,1.98,104,rowing,0,0,1, -870620846,Tony Azevedo,USA,male,1981-11-20,1.86,90,aquatics,0,0,0,"Born in Rio de Janeiro, Tony Azevedo's family moved to California, when he was only a month old. He won silver with the USA team at Beijing 2008 and was the team captain at London 2012." -229204643,Tony Dodds,NZL,male,1987-06-16,1.83,68,triathlon,0,0,0, -238201796,Tony Martin,GER,male,1985-04-23,1.86,75,cycling,0,0,0,"Three-time world champion (2011, 2012 and 2013) in the time trial event, in which he also took silver at London 2012, Tony Martin left the former East Germany shortly before the Berlin wall came down (he was born in Cottbus)." -947438087,Tony McQuay,USA,male,1990-04-16,1.81,72,athletics,1,0,0, -35377706,Tony Parker,FRA,male,1982-05-17,1.86,80,basketball,0,0,0, -479731950,Tony Tuivuna,FIJ,male,1995-03-20,1.92,77,football,0,0,0, -34099719,Tony Victor James Yoka,FRA,male,1992-04-27,2,,boxing,1,0,0,"The Singapore 2010 Summer Youth Olympics champion in the + 91kg class, France's Tony Yoka has more recently won the world boxing title at Doha, in 2015. Also known as “The Artist”, Yoka stands at 1.97m tall." -291445847,Torben Grimmel,DEN,male,1975-11-23,1.82,90,shooting,0,0,0, -764236472,Tore Navrestad,NOR,male,1996-02-19,,,cycling,0,0,0, -207258213,Tori Bowie,USA,female,1990-08-27,1.76,58,athletics,1,1,1, -966701899,Tori Pena,IRL,female,1987-07-30,1.67,58,athletics,0,0,0, -219098253,Tory Nyhaug,CAN,male,1992-04-17,1.85,92,cycling,0,0,0, -734322281,Toshikazu Yamashita,JPN,male,1977-02-21,1.7,70,shooting,0,0,0, -651640660,Toshiki Masui,JPN,male,1969-11-13,1.65,58,equestrian,0,0,0, -550282908,Tosin Oke,NGR,male,1980-10-01,1.79,78,athletics,0,0,0, -166005937,Townley Haas,USA,male,1996-12-13,1.96,83,aquatics,1,0,0, -741082455,Tracey Lambrechs,NZL,female,1985-08-27,1.67,107,weightlifting,0,0,0, -393618726,Tracy Eisser,USA,female,1989-11-20,1.86,83,rowing,0,0,0, -729594636,Tracy Keith-Matchitt,COK,female,1990-03-30,1.67,60,aquatics,0,0,0, -287146482,Travis Mahoney,AUS,male,1990-07-24,1.9,81,aquatics,0,0,0, -286089485,Travis Stevens,USA,male,1986-02-28,1.81,80,judo,0,1,0, -932981795,Trayvon Bromell,USA,male,1995-07-10,1.73,70,athletics,0,0,0, -521984542,Trent Jones,NZL,male,1994-08-12,1.85,87,cycling,0,0,0, -244396184,Trevor Barry,BAH,male,1983-06-14,,,athletics,0,0,0, -824123948,Trevor Clevenot,FRA,male,1994-06-28,1.99,89,volleyball,0,0,0, -244800135,Trihas Gebre,ESP,female,1990-04-29,1.62,49,athletics,0,0,0, -638183156,Tristan Flore,FRA,male,1995-01-02,1.78,64,table tennis,0,0,0, -209701462,Trixi Worrack,GER,female,1981-09-28,1.59,50,cycling,0,0,0, -579249475,Triyatno,INA,male,1987-12-20,1.61,69,weightlifting,0,0,0, -555716378,Troy Doris,GUY,male,1989-04-12,1.72,72,athletics,0,0,0, -783577088,Tsanko Arnaudov,POR,male,1992-03-14,1.98,154,athletics,0,0,0, -239480068,Tsegai Tewelde,GBR,male,1989-12-08,1.72,56,athletics,0,0,0, -49752494,Tsendbaatar Erdenebat,MGL,male,1996-10-16,1.63,,boxing,0,0,0, -646516993,Tsepang Sello,LES,female,1997-02-23,,,athletics,0,0,0, -132965685,Tsepo Mathibelle,LES,male,1991-06-30,,,athletics,0,0,0, -169995559,Tsgabu Gebremaryam Grmay,ETH,male,1991-08-25,1.75,63,cycling,0,0,0, -960328623,Tsholofelo Thipe,RSA,female,1986-12-09,1.53,55,athletics,0,0,0, -874089469,Tsimafei Dzeinichenka,BLR,male,1986-11-05,1.86,98,wrestling,0,0,0, -1591635,Tsogtbaatar Tsend-Ochir,MGL,male,1996-03-16,1.7,68,judo,0,0,0, -811274381,Tsolmon Adiyasambuu,MGL,female,1992-11-07,1.6,52,judo,0,0,0, -570804014,Tsotne Machavariani,GEO,male,1997-09-26,1.8,75,shooting,0,0,0, -950036284,Tsubasa Sasaki,JPN,male,1995-03-23,1.7,60,canoe,0,0,0, -760127003,Tsukasa Shiotani,JPN,male,1988-12-05,1.82,80,football,0,0,0, -353390338,Tsvetana Pironkova,BUL,female,1987-09-13,1.78,65,tennis,0,0,0, -8380241,Tsvetelina Naydenova,BUL,female,1994-04-28,1.68,49,gymnastics,0,0,1, -671805698,Tugba Guvenc,TUR,female,1994-07-09,1.73,52,athletics,0,0,0, -720168381,Tugce Canitez,TUR,female,1990-11-10,1.88,85,basketball,0,0,0, -709022430,Tugce Sahutoglu,TUR,female,1988-05-01,1.8,120,athletics,0,0,0, -313585891,Tuiana Dashidorzhieva,RUS,female,1996-04-14,1.69,57,archery,0,1,0, -520039315,Tumurkhuleg Davaadorj,MGL,male,1990-09-29,1.72,70,judo,0,0,0, -176135968,Tunde Szabo,HUN,female,1989-02-08,1.54,46,athletics,0,0,0, -863102848,Tutya Yilmaz,TUR,female,1999-06-04,1.5,48,gymnastics,0,0,0, -164349169,Tuula Tenkanen,FIN,female,1990-08-11,1.67,69,sailing,0,0,0, -589830090,Tuuli Petaja-Siren,FIN,female,1983-11-09,1.69,59,sailing,0,0,0, -300389824,Tuvshinbat Byamba,MGL,male,1987-03-27,1.74,,boxing,0,0,0, -848114193,Tuvshinbayar Naidan,MGL,male,1984-06-01,1.78,104,judo,0,0,0, -380875835,Twan van Gendt,NED,male,1992-06-09,1.78,85,cycling,0,0,0, -503739035,Tyla Nathan-Wong,NZL,female,1994-07-01,1.63,58,rugby sevens,0,1,0, -737278135,Tyler Martin,AUS,male,1990-06-28,1.96,98,aquatics,0,0,0, -87568178,Tyler Mislawchuk,CAN,male,1994-08-19,1.72,59,triathlon,0,0,0, -42726050,Tyler Nase,USA,male,1990-08-30,1.83,71,rowing,0,0,0, -834107099,Tyler Sanders,CAN,male,1991-12-14,1.91,81,volleyball,0,0,0, -77544133,Tynia Gaither,BAH,female,1993-03-16,1.58,,athletics,0,0,0, -930293846,Tyroane Sandows,RSA,male,1995-02-12,1.72,61,football,0,0,0, -356052736,Tyrone Smith,BER,male,1984-08-07,1.83,74,athletics,0,0,0, -259271156,Tyson Gay,USA,male,1982-08-09,1.81,80,athletics,0,0,0, -189270629,Tze Liang Ooi,MAS,male,1993-11-19,1.7,68,aquatics,0,0,0, -504555048,Tzu Ying Tai,TPE,female,1994-06-20,1.62,57,badminton,0,0,0, -991287855,Tzu-Chi Lin,TPE,female,1988-03-19,1.58,63,weightlifting,0,0,0, -784808590,Ubaldina Valoyes Cuesta,COL,female,1982-07-06,1.62,74,weightlifting,0,0,0, -98938624,Ugo Crousillat,FRA,male,1990-10-27,1.9,94,aquatics,0,0,0, -2045907,Uhunoma Osazuwa,NGR,female,1987-11-23,1.75,65,athletics,0,0,0, -617399912,Uijo Hwang,KOR,male,1992-08-28,,,football,0,0,0, -662685854,Uilson,BRA,male,1994-04-28,1.86,80,football,1,0,0, -674769379,Uitumen Orgodol,MGL,male,1989-04-29,1.75,82,wrestling,0,0,0, -13916415,Uladzislau Hancharou,BLR,male,1995-12-02,1.73,66,gymnastics,1,0,0, -646451751,Uladzislau Pramau,BLR,male,1984-08-03,1.77,66,athletics,0,0,0, -902352891,Ulrich Kirchhoff,UKR,male,1967-08-09,1.9,86,equestrian,0,0,0, -605302051,Umutcan Emektas,TUR,male,1991-06-29,1.82,81,athletics,0,0,0, -680257961,Un Hyang Kim,PRK,female,1991-10-21,1.6,54,aquatics,0,0,0, -556048033,Un Jong Hong,PRK,female,1989-03-09,1.56,47,gymnastics,0,0,0, -578632185,Un Ju Kang,PRK,female,1995-02-01,1.68,60,archery,0,0,0, -163301823,Unurbat Purevjav,MGL,male,1988-02-15,1.7,80,wrestling,0,0,0, -624095019,Urantsetseg Munkhbat,MGL,female,1990-03-14,1.64,51,judo,0,0,0, -988341584,Urata Rama,KOS,female,1986-12-20,1.73,64,shooting,0,0,0, -958189284,Urban Lesjak,SLO,male,1990-08-24,1.87,103,handball,0,0,0, -725017162,Uros CUCKOVIC,MNE,male,1990-04-25,1.99,101,aquatics,0,0,0, -705134000,Uros Zorman,SLO,male,1980-01-09,1.9,98,handball,0,0,0, -370406221,Ursa Kragelj,SLO,female,1988-07-02,1.66,56,canoe,0,0,0, -586282820,Ursula Gonzalez Garate,MEX,female,1991-11-22,1.71,71,fencing,0,0,0, -718417906,Ursula Grobler,RSA,female,1980-02-06,1.73,60,rowing,0,0,0, -88669293,Ursula Wikstrom,FIN,female,1980-07-03,1.66,55,golf,0,0,0, -579416064,Usain Bolt,JAM,male,1986-08-21,1.96,95,athletics,3,0,0,"One of the most charismatic – and fastest – athletes in the world, Jamaica's Usain Bolt has won six Olympic golds in athletics, winning the 100m, 200m and 4x100m relay at Beijing 2008 and London 2012. Bolt also holds 11 world titles." -149615945,Uschi Freitag,NED,female,1989-08-19,1.67,68,aquatics,0,0,0, -530272776,Ushangi Kokauri,AZE,male,1992-01-10,1.95,135,judo,0,0,0, -39407530,Usman Muhammed,NGR,male,1994-03-02,1.69,,football,0,0,1, -308104666,Uthappa Sannuvanda,IND,male,1993-12-02,1.83,84,hockey,0,0,0, -67296664,Uuganbaatar Otgonbaatar,MGL,male,1988-02-19,1.78,81,judo,0,0,0, -653685150,Uvis Kalnins,LAT,male,1993-10-24,1.92,85,aquatics,0,0,0, -409519783,Uwe Gensheimer,GER,male,1986-10-26,1.88,88,handball,0,0,1, -878263725,V Shem Goh,MAS,male,1989-05-20,1.8,70,badminton,0,1,0, -700082082,V. Sindhu Pusarla,IND,female,1995-07-05,1.79,65,badminton,0,1,0, -645060029,Vadim Anokhin,RUS,male,1992-01-02,1.92,91,fencing,0,0,0, -818449053,Vadim Kaptur,BLR,male,1987-07-12,1.74,69,aquatics,0,0,0, -609128454,Vadim Skorovarov,UZB,male,1996-08-04,1.77,67,shooting,0,0,0, -620954526,Vadzim Lialin,BLR,male,1982-11-15,2,100,rowing,0,0,0, -446977875,Vadzim Straltsou,BLR,male,1986-04-30,1.7,94,weightlifting,0,1,0, -723818458,Vagner Junior Souta,BRA,male,1991-02-10,1.87,84,canoe,0,0,0, -751743792,Vahan Mkhitaryan,ARM,male,1996-08-16,1.86,92,aquatics,0,0,0, -348559533,Vaida Zusinaite,LTU,female,1988-01-13,1.67,50,athletics,0,0,0, -655768386,Vaidas Kariniauskas,LTU,male,1993-11-16,1.97,,basketball,0,0,0, -180683514,Vaipava Nevo Ioane,SAM,male,1988-04-14,1.52,62,weightlifting,0,0,0, -976373633,Valdas Dopolskas,LTU,male,1992-04-30,1.83,69,athletics,0,0,0, -839835613,Valdivia,BRA,male,1994-10-04,,,football,0,0,0, -807344614,Valent Sinkovic,CRO,male,1988-08-02,1.87,93,rowing,1,0,0, -720426877,Valentin Belaud,FRA,male,1992-09-16,1.81,73,modern pentathlon,0,0,0, -142185153,Valentin Demyanenko,AZE,male,1983-10-23,1.93,93,canoe,0,1,0, -594179521,Valentin Onfroy,FRA,male,1993-11-16,1.95,84,rowing,0,0,0, -177896250,Valentin Porte,FRA,male,1990-09-07,1.9,92,handball,0,1,0, -371546325,Valentin Prades,FRA,male,1992-09-29,1.94,90,modern pentathlon,0,0,0, -908116241,Valentin Verga,NED,male,1989-10-07,1.8,87,hockey,0,0,0, -236754653,Valentina Ardean Elisei,ROU,female,1982-06-05,1.72,64,handball,0,0,0, -961400674,Valentina Gustin,CRO,female,1996-11-20,1.72,61,shooting,0,0,0, -332548817,Valentina Kibalnikova,UZB,female,1990-10-16,1.74,56,athletics,0,0,0, -943412077,Valentina Kogan,ARG,female,1980-02-19,1.73,71,handball,0,0,0, -480835097,Valentina Liashenko,GEO,female,1981-01-30,1.76,63,athletics,0,0,0, -285574820,Valentina Moscatt,ITA,female,1987-03-16,1.52,48,judo,0,0,0, -532724520,Valentina Rodini,ITA,female,1995-01-28,1.67,54,rowing,0,0,0, -352760379,Valentina Truppa,ITA,female,1986-03-18,1.6,55,equestrian,0,0,0, -833598839,Valentino Gallo,ITA,male,1985-07-17,1.92,95,aquatics,0,0,1, -125173784,Valentino Manfredonia,ITA,male,1989-09-29,1.8,,boxing,0,0,0, -809873385,Valentyna Myronchuk,UKR,female,1994-08-10,1.67,55,athletics,0,0,0, -44861563,Valeria Bianchi,ARG,female,1985-09-16,1.7,62,handball,0,0,0, -645890847,Valeria Straneo,ITA,female,1976-04-05,1.65,45,athletics,0,0,0, -876235051,Valerian Sauveplane,FRA,male,1980-07-25,1.8,77,shooting,0,0,0, -33162690,Valeriane Ayayi,FRA,female,1994-04-29,1.84,72,basketball,0,0,0, -107671084,Valerie Adams,NZL,female,1984-10-06,1.93,120,athletics,0,1,0, -457663173,Valerie Gruest Slowing,GUA,female,1999-03-14,1.72,63,aquatics,0,0,0, -10196334,Valerii Andriitsev,UKR,male,1987-02-27,1.81,97,wrestling,0,0,0, -977206167,Valeriia Gudym,UKR,female,1995-03-01,1.72,54,gymnastics,0,0,0, -975146982,Valeriia Koblova Zholobova,RUS,female,1992-10-09,1.64,58,wrestling,0,1,0, -704663853,Valeriu Duminica,MDA,male,1987-04-08,1.75,81,judo,0,0,0, -953876771,Valeriya Davidova,UZB,female,1997-12-15,1.68,48,gymnastics,0,0,0, -4089378,Valeriya Pischelina,BLR,female,1995-02-27,1.7,50,gymnastics,0,0,0, -898179597,Valmir Berisha,SWE,male,1996-06-06,1.82,80,football,0,0,0, -624026807,Vandana Katariya,IND,female,1992-04-15,1.59,48,hockey,0,0,0, -416201651,Vanessa Boslak,FRA,female,1982-06-11,1.7,57,athletics,0,0,0, -287472239,Vanessa Chefer,BRA,female,1990-03-05,1.78,68,athletics,0,0,0, -87607313,Vanessa Cozzi,BRA,female,1984-03-25,1.7,57,rowing,0,0,0, -321151857,Vanessa Ferrari,ITA,female,1990-11-10,1.45,45,gymnastics,0,0,0, -638923697,Vanessa Garcia,PUR,female,1984-07-18,1.73,57,aquatics,0,0,0, -648578848,Vanessa Grimberg,GER,female,1993-01-28,1.76,63,aquatics,0,0,0, -93934997,Vanessa Lunga,ZIM,female,1994-06-16,1.63,70,football,0,0,0, -931127637,Vanessa Rial,ESP,female,1982-03-01,1.72,68,rugby sevens,0,0,0, -205431593,Vanessa Zambotti,MEX,female,1982-03-04,1.75,125,judo,0,0,0, -952439055,Vania Neves,POR,female,1990-09-04,1.71,61,aquatics,0,0,0, -853711227,Varlam Liparteliani,GEO,male,1989-02-27,1.87,94,judo,0,1,0, -739791788,Varvara Filiou,GRE,female,1994-12-29,1.65,45,gymnastics,0,0,0, -499001095,Vasek Pospisil,CAN,male,1990-06-23,1.94,87,tennis,0,0,0, -488491698,Vashti Cunningham,USA,female,1998-01-18,1.86,55,athletics,0,0,0, -877590829,Vasil Kiryienka,BLR,male,1981-06-28,1.82,75,cycling,0,0,0, -937539913,Vasilii Egorov,RUS,male,1993-09-16,1.6,,boxing,0,0,0, -80619746,Vasilij Zbogar,SLO,male,1975-10-04,1.89,98,sailing,0,1,0, -374718100,Vasiliki Millousi,GRE,female,1984-05-04,1.57,45,gymnastics,0,0,0, -989508305,Vasilisa Marzaliuk,BLR,female,1987-06-23,1.8,77,wrestling,0,0,0, -484731780,Vasily Mosin,RUS,male,1972-05-09,1.83,70,shooting,0,0,0, -582848333,Vasily Pogreban,RUS,male,1989-06-26,1.81,91,canoe,0,0,0, -1152723,Vassiliki Vougiouka,GRE,female,1986-06-20,1.81,70,fencing,0,0,0, -235882258,Vassiliy Levit,KAZ,male,1988-02-24,1.85,,boxing,0,1,0, -759852624,Vatemo Ravouvou,FIJ,male,1990-07-31,1.71,81,rugby sevens,1,0,0, -623335062,Vazha Margvelashvili,GEO,male,1993-10-03,1.67,66,judo,0,0,0, -83660833,Veerle Dejaeghere,BEL,female,1973-08-01,1.59,46,athletics,0,0,0, -655301496,Vegard Stake Laengen,NOR,male,1989-02-07,,,cycling,0,0,0, -356549350,Veli-Matti Partanen,FIN,male,1991-10-28,1.81,63,athletics,0,0,0, -193269452,Velimir Stjepanovic,SRB,male,1993-08-07,1.82,74,aquatics,0,0,0, -37625294,Vendula Frintova,CZE,female,1983-09-04,1.68,50,triathlon,0,0,0, -967486655,Venilton Teixeira,BRA,male,1995-09-06,1.82,58,taekwondo,0,0,0, -714368005,Ventsislav Aydarski,BUL,male,1991-02-17,1.68,60,aquatics,0,0,0, -137700019,Venus Williams,USA,female,1980-06-17,1.86,74,tennis,0,1,0, -322708523,Vera Adrian,NAM,female,1993-10-28,1.68,57,cycling,0,0,0, -58043295,Vera Barbosa,POR,female,1989-01-13,1.68,58,athletics,0,0,0, -617188961,Vera Biriukova,RUS,female,1998-04-11,1.68,47,gymnastics,1,0,0, -867313353,Vera Vetrova,RUS,female,1986-08-21,1.8,73,volleyball,0,0,0, -735168991,Vera van Pol,NED,female,1993-12-17,1.57,54,gymnastics,0,0,0, -246757906,Veronica Bertolini,ITA,female,1995-10-19,1.67,48,gymnastics,0,0,0, -156804186,Veronica Campbell-Brown,JAM,female,1982-05-15,1.68,58,athletics,0,1,0, -92890058,Veronica Cepede Royg,PAR,female,1992-01-21,1.63,65,tennis,0,0,0, -436719037,Veronica Inglese,ITA,female,1990-11-22,1.6,43,athletics,0,0,0, -386589042,Veronica Kristiansen,NOR,female,1990-07-10,1.75,,handball,0,0,1, -19586649,Veronika Ivasiuk,UKR,female,1995-10-12,1.7,57,weightlifting,0,0,0, -362735511,Veronika Kozelska Fenclova,CZE,female,1981-01-21,1.71,70,sailing,0,0,0, -501784075,Veronika Macarol,SLO,female,1987-03-28,1.78,68,sailing,0,0,0, -464186121,Veronika Marchenko,UKR,female,1993-04-03,1.57,48,archery,0,0,0, -405423858,Veronika Popova,RUS,female,1991-01-20,1.82,68,aquatics,0,0,0, -497079300,Veronika Yesipovich,BLR,female,1996-04-10,1.66,48,aquatics,0,0,0, -580004143,Vesa Tornroos,FIN,male,1982-09-02,1.74,93,shooting,0,0,0, -520281849,Viacheslav Andrusenko,RUS,male,1992-05-14,1.94,85,aquatics,0,0,0, -140638063,Viacheslav Krasilnikov,RUS,male,1991-04-28,1.95,90,volleyball,0,0,0, -454698818,Vicenc Ruiz,ESP,male,1991-10-30,1.81,70,hockey,0,0,0, -721846159,Vicente Hernandez,ESP,male,1991-04-20,1.81,74,triathlon,0,0,0, -885291469,Vicky Holland,GBR,female,1986-01-12,1.68,56,triathlon,0,0,1, -690173780,Victoire Pauline L'or Ngon Ntame,CMR,female,1985-12-31,1.77,79,volleyball,0,0,0, -198342904,Victor Aravena,CHI,male,1990-02-05,1.66,55,athletics,0,0,0, -753873468,Victor Claver,ESP,male,1988-08-30,2.06,107,basketball,0,0,1, -616975176,Victor Cuesta,ARG,male,1998-11-19,1.64,65,football,0,0,0, -952852133,Victor Estrella Burgos,DOM,male,1980-08-02,1.73,65,tennis,0,0,0, -322853200,Victor Guzman,MEX,male,1995-02-03,1.73,72,football,0,0,0, -928628945,Victor Koretzky,FRA,male,1994-08-26,1.8,69,cycling,0,0,0, -798252460,Victor Lebedev,RUS,male,1988-03-10,1.64,57,wrestling,0,0,0, -536024925,Victor Martin Martin,ESP,male,1993-09-25,1.87,82,aquatics,0,0,0, -477856605,Victor Ortega,COL,male,1988-01-27,1.72,68,aquatics,0,0,0, -706996244,Victor Penalber,BRA,male,1990-05-22,1.74,81,judo,0,0,0, -70687418,Victor Rodriguez,VEN,male,1995-03-27,1.67,,boxing,0,0,0, -400723583,Victor Scvortov,UAE,male,1988-03-30,1.73,73,judo,0,0,0, -810144612,Victoria Chamorro,BRA,female,1996-07-10,1.76,78,aquatics,0,0,0, -718592963,Victoria Crivelli,ARG,female,1990-09-30,1.76,65,handball,0,0,0, -563090035,Victoria Esson,NZL,female,1991-03-06,1.74,66,football,0,0,0, -873800996,Victoria Folayan,USA,female,1985-05-27,1.66,72,rugby sevens,0,0,0, -814941630,Victoria Jurczok,GER,female,1990-03-25,1.61,56,sailing,0,0,0, -461914927,Victoria Kaminskaya,POR,female,1995-10-07,1.64,52,aquatics,0,0,0, -904905925,Victoria Lovelady,BRA,female,1986-11-29,1.62,48,golf,0,0,0, -665731338,Victoria Max-Theurer,AUT,female,1985-10-24,1.68,58,equestrian,0,0,0, -98600250,Victoria Mitchell,AUS,female,1982-04-25,1.64,47,athletics,0,0,0, -478490073,Victoria Thornley,GBR,female,1987-11-30,1.73,76,rowing,0,1,0, -42693483,Victoria Travascio,ARG,female,1988-07-14,1.61,59,sailing,0,0,0, -360949513,Victoria Zhilinskayte,RUS,female,1989-03-06,1.88,80,handball,1,0,0, -870095817,Victoria Zuloaga,ARG,female,1988-02-14,1.75,70,hockey,0,0,0, -142988798,Vid Hidvegi,HUN,male,1986-08-23,1.7,60,gymnastics,0,0,0, -842228874,Vid Kavticnik,SLO,male,1984-05-24,1.91,90,handball,0,0,0, -630821194,Vid Poteko,SLO,male,1991-04-05,1.94,103,handball,0,0,0, -127732051,Vien Nguyen Thi Anh,VIE,female,1996-11-09,1.72,60,aquatics,0,0,0, -827760060,Vigen Christensen,DEN,male,1994-08-15,1.82,77,football,0,0,0, -233722724,Vijona Kryeziu,KOS,female,1997-10-08,1.67,51,athletics,0,0,0, -197455500,Vikas Dahiya,IND,male,1995-05-08,1.8,69,hockey,0,0,0, -221050487,Vikas Gowda,IND,male,1983-07-05,2.05,135,athletics,0,0,0, -545176784,Viktar Staselovich,BLR,male,1994-05-28,1.88,83,aquatics,0,0,0, -940975705,Viktor Axelsen,DEN,male,1994-01-04,1.94,88,badminton,0,0,1, -970603995,Viktor Bromer,DEN,male,1993-04-20,1.94,87,aquatics,0,0,0, -194536089,Viktor Lorincz,HUN,male,1990-04-28,1.76,89,wrestling,0,0,0, -250896019,Viktor Minibaev,RUS,male,1991-07-18,1.73,65,aquatics,0,0,0, -494951044,Viktor Nagy,HUN,male,1984-07-24,1.98,96,aquatics,0,0,0, -640015435,Viktor Nemes,SRB,male,1993-07-21,1.7,75,wrestling,0,0,0, -602955950,Viktor Ruban,UKR,male,1981-05-24,1.78,70,archery,0,0,0, -547888117,Viktor Teply,CZE,male,1990-10-19,1.83,82,sailing,0,0,0, -336471664,Viktor Troicki,SRB,male,1986-02-10,1.9,85,tennis,0,0,0, -603907916,Viktoria Chaika,BLR,female,1980-12-26,1.64,50,shooting,0,0,0, -656515082,Viktoria Egri,HUN,female,1998-01-18,1.68,59,shooting,0,0,0, -166768587,Viktoria Madarasz,HUN,female,1985-05-12,1.58,44,athletics,0,0,0, -409487161,Viktoria Pavlovich,BLR,female,1978-05-08,1.75,60,table tennis,0,0,0, -636310483,Viktoria Schwarz,AUT,female,1985-07-02,1.73,64,canoe,0,0,0, -120044426,Viktoria Zeynep Gunes,TUR,female,1998-06-19,1.85,66,aquatics,0,0,0, -797742247,Viktoriia Andreeva,RUS,female,1992-06-21,1.9,74,aquatics,0,0,0, -441538649,Viktoriia Kalinina,RUS,female,1988-12-08,1.83,74,handball,1,0,0, -535803587,Viktoriia Poliudina,KGZ,female,1989-06-29,1.65,55,athletics,0,0,0, -684932486,Viktoriia Turks,UKR,female,1987-10-20,1.78,78,judo,0,0,0, -485757978,Viktoriia Us,UKR,female,1993-04-29,1.67,63,canoe,0,0,0, -444006582,Viktoriya Tkachuk,UKR,female,1994-11-08,1.79,67,athletics,0,0,0, -517107497,Viktoriya Zyabkina,KAZ,female,1992-09-04,1.74,62,athletics,0,0,0, -209908723,Viliame Mata,FIJ,male,1991-10-22,1.96,106,rugby sevens,1,0,0, -418792764,Villo Kormos,HUN,female,1988-08-02,1.7,62,aquatics,0,0,0, -3169233,Vilma Pegado Nenganga,ANG,female,1996-09-12,1.7,59,handball,0,0,0, -45735715,Vilmarie Mojica,PUR,female,1985-08-13,1.8,63,volleyball,0,0,0, -537474477,Vincent Anstett,FRA,male,1982-07-26,1.78,78,fencing,0,0,0, -926029117,Vincent Breet,RSA,male,1993-04-26,1.95,92,rowing,0,0,0, -932426895,Vincent Farkas,SVK,male,1993-01-13,1.93,90,canoe,0,0,0, -509765681,Vincent Gerard,FRA,male,1986-12-16,1.89,100,handball,0,1,0, -403479855,Vincent Hancock,USA,male,1989-03-19,1.73,79,shooting,0,0,0, -925594598,Vincent Inigo,FRA,male,1983-02-10,1.73,80,rugby sevens,0,0,0, -833794513,Vincent Luis,FRA,male,1989-06-27,1.77,65,triathlon,0,0,0, -646986835,Vincent Riendeau,CAN,male,1996-12-13,1.78,68,aquatics,0,0,0, -825166782,Vincent Vanasch,BEL,male,1987-12-21,1.8,78,hockey,0,1,0, -96494298,Vincent van der Want,NED,male,1985-10-21,1.98,90,rowing,0,0,0, -974436408,Vincenzo Capelli,ITA,male,1988-10-26,1.94,95,rowing,0,0,0, -983925141,Vincenzo Mangiacapre,ITA,male,1989-01-17,1.7,,boxing,0,0,0, -242715735,Vincenzo Nibali,ITA,male,1984-11-14,1.8,60,cycling,0,0,0, -969140836,Vinesh Vinesh,IND,female,1994-08-25,1.65,56,wrestling,0,0,0, -723726654,Viniana Riwai,FIJ,female,1991-06-06,1.65,70,rugby sevens,0,0,0, -253097119,Vinicius Antonelli,BRA,male,1990-03-01,1.83,82,aquatics,0,0,0, -29581250,Vinicius Teixeira,BRA,male,1988-04-03,1.88,110,handball,0,0,0, -989120045,Violah Cheptoo Lagat,KEN,female,1989-03-01,1.65,,athletics,0,0,0, -428647770,Violetta Kolobova,RUS,female,1991-07-27,1.76,64,fencing,0,0,1, -680801774,Virginia Bardach Martin,ARG,female,1992-04-03,1.74,57,aquatics,0,0,0, -569654952,Virginia Thrasher,USA,female,1997-02-28,1.55,54,shooting,1,0,0, -756374787,Virginie Cueff,FRA,female,1988-06-18,1.7,63,cycling,0,0,0, -3602282,Virimi Vakatawa,FRA,male,1992-05-01,1.85,87,rugby sevens,0,0,0, -424311527,Visiline Jepkesho,KEN,female,1989-12-30,1.6,43,athletics,0,0,0, -930876031,Vita Heine,NOR,female,1984-11-21,,,cycling,0,0,0, -955304524,Vitali Bubnovich,BLR,male,1974-11-12,1.69,70,shooting,0,0,0, -94067692,Vitalii Butrym,UKR,male,1991-01-10,1.8,75,athletics,0,0,0, -872401203,Vitalina Batsarashkina,RUS,female,1996-10-01,1.62,60,shooting,0,1,0, -628786964,Vitaliy Khudyakov,KAZ,male,1994-08-07,1.86,79,aquatics,0,0,0, -806574554,Vitaly Dunaytsev,RUS,male,1992-04-12,1.74,,boxing,0,0,1, -310488544,Vitaly Fokeev,RUS,male,1974-02-15,1.8,45,shooting,0,0,0, -819853942,Vitezslav Gebas,CZE,male,1984-03-24,1.79,75,canoe,0,0,0, -87145914,Vitezslav Vesely,CZE,male,1983-02-27,1.86,93,athletics,0,0,0, -990500234,Vitiny Hemthon,CAM,female,1993-10-07,1.63,50,aquatics,0,0,0, -411101006,Vitor Benite,BRA,male,1990-02-20,1.9,88,basketball,0,0,0, -987131879,Vitor Hugo dos Santos,BRA,male,1996-02-01,1.85,74,athletics,0,0,0, -623036229,Vitoria Cristina Rosa,BRA,female,1996-01-12,1.7,60,athletics,0,0,0, -506125969,Vittorio Bissaro,ITA,male,1987-06-01,1.83,72,sailing,0,0,0, -239639221,Vivian Jepkemoi Cheruiyot,KEN,female,1983-09-11,1.54,40,athletics,1,1,0, -527372670,Vivian Kah Mun Hoo,MAS,female,1990-03-19,1.66,56,badminton,0,0,0, -563216361,Viviana Chavez,ARG,female,1987-05-28,1.64,52,athletics,0,0,0, -110185191,Viviane Bahia,BRA,female,1994-02-14,1.76,67,aquatics,0,0,0, -696988201,Vjekoslav Paskovic,MNE,male,1985-03-23,1.8,86,aquatics,0,0,0, -732110114,Vlad-Dragos Aicoboae,ROU,male,1993-10-10,1.97,91,rowing,0,0,0, -843584108,Vlada Chigireva,RUS,female,1994-12-18,1.62,48,aquatics,1,0,0, -156876267,Vladimer Khinchegashvili,GEO,male,1991-04-18,1.7,57,wrestling,1,0,0, -635923594,Vladimir Gontcharov,RUS,male,1977-05-04,1.68,58,shooting,0,0,0, -878150693,Vladimir Isakov,RUS,male,1970-02-28,1.78,83,shooting,0,0,0, -407568391,Vladimir Issachenko,KAZ,male,1982-12-27,1.95,90,shooting,0,0,0, -431379852,Vladimir Ivanov,RUS,male,1987-07-03,1.98,93,badminton,0,0,0, -481376047,Vladimir Letnicov,MDA,male,1981-10-07,1.78,70,athletics,0,0,0, -557934502,Vladimir Malkov,RUS,male,1986-04-09,1.88,79,badminton,0,0,0, -229367719,Vladimir Margaryan,ARM,male,1991-03-08,1.72,,boxing,0,0,0, -592631027,Vladimir Maslennikov,RUS,male,1994-08-17,1.71,73,shooting,0,0,1, -108548232,Vladimir Morozov,RUS,male,1992-06-16,,,aquatics,0,0,0, -610704045,Vladimir Nikitin,RUS,male,1990-03-25,1.65,,boxing,0,0,1, -53064858,Vladimir Samsonov,BLR,male,1976-04-17,1.89,83,table tennis,0,0,0, -559441315,Vladimir Savanovic,SRB,male,1985-06-12,1.8,70,athletics,0,0,0, -54519941,Vladimir Stimac,SRB,male,1987-08-25,2.11,112,basketball,0,1,0, -795903491,Vladimir Torubarov,SRB,male,1993-03-22,1.91,94,canoe,0,0,0, -784092954,Vladimir Vladimirov Dubov,BUL,male,1988-02-20,1.56,64,wrestling,0,0,0, -230293143,Vladislav Mustafin,UZB,male,1995-09-26,1.81,78,aquatics,0,0,0, -889300340,Vladislav Ryabcev,RUS,male,1987-12-13,1.96,96,rowing,0,0,0, -207226972,Vladislav Yakovlev,KAZ,male,1993-01-01,1.88,85,rowing,0,0,0, -316731530,Vladlena Bobrovnikova,RUS,female,1987-10-24,1.8,72,handball,1,0,0, -122222,Vladyslav Hryko,UKR,male,1997-01-25,1.69,57,gymnastics,0,0,0, -771388004,Vlasios Maras,GRE,male,1983-03-31,1.6,52,gymnastics,0,0,0, -854069870,Volha Khudzenka,BLR,female,1992-05-12,1.78,78,canoe,0,0,1, -559528855,Volha Mazuronak,BLR,female,1989-04-14,1.65,49,athletics,0,0,0, -443487207,Volha Sudarava,BLR,female,1984-02-22,1.76,61,athletics,0,0,0, -365006989,Volha Ziuzkova,BLR,female,1983-06-14,1.71,69,basketball,0,0,0, -109518008,Volodymyr Hoza,UKR,male,1996-04-15,1.83,94,weightlifting,0,0,0, -204414092,Volodymyr Matviichuk,UKR,male,1982-12-29,1.71,,boxing,0,0,0, -826347697,Vsevolod Zanko,RUS,male,1995-07-30,1.9,85,aquatics,0,0,0, -855823071,Vyron Kokkalanis,GRE,male,1985-08-19,1.86,75,sailing,0,0,0, -32220093,Wadha Al Balushi,OMA,female,1989-11-30,1.6,75,shooting,0,0,0, -751514676,Wael Jallouz,TUN,male,1991-05-03,1.97,105,handball,0,0,0, -754088322,Wagner Domingos,BRA,male,1983-03-26,1.87,100,athletics,0,0,0, -539224149,Waheed Abdulridha Waheed Karaawi,IRQ,male,1983-05-22,1.78,,boxing,0,0,0, -620093926,Wai Sze Lee,HKG,female,1987-05-12,1.65,62,cycling,0,0,0, -419317871,Walace,BRA,male,1995-04-04,1.88,75,football,1,0,0, -929418601,Walid Bidani,ALG,male,1994-06-11,1.85,123,weightlifting,0,0,0, -422425972,Walid Mohamed,EGY,male,1993-08-22,1.67,,boxing,0,0,0, -194921763,Walide Khyar,FRA,male,1995-06-09,1.65,60,judo,0,0,0, -344970215,Wallace de Souza,BRA,male,1987-06-26,1.98,87,volleyball,1,0,0, -202452253,Walton Eller,USA,male,1982-01-06,1.88,81,shooting,0,0,0, -788654634,Wan Ho Son,KOR,male,1988-05-17,1.76,70,badminton,0,0,0, -850200304,Wander Mateo,DOM,male,1989-12-24,1.73,66,judo,0,0,0, -268487166,Wannes van Laer,BEL,male,1985-03-05,1.81,81,sailing,0,0,0, -187564963,Warren Barguil,FRA,male,1991-10-28,1.84,62,cycling,0,0,0, -781765976,Warren Potent,AUS,male,1962-04-07,1.77,73,shooting,0,0,0, -258919182,Wataru Endo,JPN,male,1993-02-09,1.78,75,football,0,0,0, -495782479,Wataru Yazawa,JPN,male,1991-07-02,1.77,64,athletics,0,0,0, -190206268,Wayde van Niekerk,RSA,male,1992-07-15,1.83,70,athletics,1,0,0, -437812263,Wayne Snyman,RSA,male,1985-03-08,1.77,65,athletics,0,0,0, -686326172,Wee Kiong Tan,MAS,male,1989-05-21,1.77,77,badminton,0,1,0, -59547454,Wei Deng,CHN,female,1993-02-14,1.59,62,weightlifting,1,0,0, -843515403,Wei Hong,CHN,male,1989-10-04,1.92,86,badminton,0,0,0, -739056222,Wei Jin,CHN,male,1987-02-26,1.83,70,rowing,0,0,0, -450932930,Wei Liu,CHN,male,1987-11-27,1.75,,boxing,0,0,0, -358145132,Wei Pang,CHN,male,1986-07-19,1.78,77,shooting,0,0,1, -520932256,Wei Sun,CHN,male,1992-10-27,1.93,69,fencing,0,0,0, -416880116,Wei Wang,CHN,male,1988-07-07,1.8,70,sailing,0,0,0, -253018225,Wei Yu,CHN,male,1987-09-11,1.8,55,athletics,0,0,0, -434190912,Wei-Ling Chen,TPE,female,1982-01-04,1.49,47,weightlifting,0,0,0, -711688611,Wei-Ting Liu,TPE,male,1995-01-06,1.96,81,taekwondo,0,0,0, -42043973,Weiwei Zhang,CHN,female,1990-10-07,1.82,66,aquatics,0,0,0, -254471828,Weiwei Zhu,CHN,female,1990-05-22,1.8,70,rowing,0,0,0, -114920742,Welisson Rosa da Silva,BRA,male,1983-11-22,1.6,85,weightlifting,0,0,0, -676724984,Welson Sim,MAS,male,1997-03-29,1.81,70,aquatics,0,0,0, -682325171,Wen Lu,CHN,female,1990-02-26,1.88,78,basketball,0,0,0, -272832003,Wen-Ling Chen,TPE,female,1994-08-16,1.75,69,wrestling,0,0,0, -447697493,Wen-Tang Lin,TPE,male,1974-06-28,1.74,77,golf,0,0,0, -74774569,Wenda Nel,RSA,female,1988-07-30,1.65,57,athletics,0,0,0, -465452582,Wendie Renard,FRA,female,1990-07-20,1.87,70,football,0,0,0, -406064567,Wendy Cornejo,BOL,female,1993-01-07,1.62,54,athletics,0,0,0, -628804962,Wenjun Guo,CHN,female,1984-06-22,1.68,60,shooting,0,0,0, -992307110,Wenjun Ren,CHN,female,1992-01-15,1.75,67,canoe,0,0,0, -566882529,Wenjun Xie,CHN,male,1990-07-11,1.9,87,athletics,0,0,0, -111882527,Wenna He,CHN,female,1989-01-19,1.6,50,gymnastics,0,0,0, -886760487,Wenxiu Zhang,CHN,female,1986-03-22,1.83,105,athletics,0,1,0, -526167499,Wenyan Sun,CHN,female,1989-12-27,1.7,58,aquatics,0,2,0, -71120079,Wenyi Huang,CHN,female,1991-03-06,1.78,63,rowing,0,0,1, -466231516,Werner Kok,RSA,male,1993-01-17,1.8,91,rugby sevens,0,0,1, -487398764,Weronika Deresz,POL,female,1985-09-05,1.7,57,rowing,0,0,0, -530905134,Wesley Korir,KEN,male,1982-11-15,1.77,54,athletics,0,0,0, -934575114,Wesley Roberts,COK,male,1997-06-24,1.88,74,aquatics,0,0,0, -539265480,Wesley Vazquez,PUR,male,1994-03-27,1.92,77,athletics,0,0,0, -455850470,Weverton,BRA,male,1987-12-13,1.86,75,football,1,0,0, -81682988,Whitney Ashley,USA,female,1989-02-18,1.76,90,athletics,0,0,0, -146065119,Whitney Engen,USA,female,1987-11-28,1.72,56,football,0,0,0, -916383501,Wiam Dislam,MAR,female,1987-10-22,1.8,69,taekwondo,0,0,0, -674266190,Wianka van Dorp,NED,female,1987-12-01,1.77,72,rowing,0,0,0, -30448632,Wiktor Chabel,POL,male,1985-11-23,1.97,93,rowing,0,0,0, -973792476,Wilfried Bingangoye,GAB,male,1985-03-25,1.72,80,athletics,0,0,0, -637431753,Wilhem Belocian,FRA,male,1995-06-22,1.78,78,athletics,0,0,0, -667133584,Will Brown,USA,male,1991-12-31,1.71,61,shooting,0,0,0, -745203052,Will Claye,USA,male,1991-06-13,1.81,72,athletics,0,1,0, -202043393,Will Crothers,CAN,male,1987-06-14,1.95,95,rowing,0,0,0, -212657714,Will Dean,CAN,male,1987-06-10,1.95,95,rowing,0,0,0, -971499315,Will Fletcher,GBR,male,1989-12-24,1.86,73,rowing,0,0,0, -878681107,Will Godward,AUS,male,1984-04-15,1.89,95,shooting,0,0,0, -281145945,Will Ryan,AUS,male,1988-12-23,1.93,75,sailing,0,1,0, -323245205,Willem Coertzen,RSA,male,1982-12-30,1.86,79,athletics,0,0,0, -73209628,Willem van Schuerbeeck,BEL,male,1984-10-24,1.79,60,athletics,0,0,0, -860282405,Willemijn Bos,NED,female,1988-05-02,1.81,69,hockey,0,1,0, -550290516,William,BRA,male,1995-04-03,1.71,65,football,1,0,0, -624517317,William Arjona,BRA,male,1979-07-31,1.85,78,volleyball,1,0,0, -151807374,William Chetcuti,MLT,male,1985-01-07,1.8,93,shooting,0,0,0, -63879528,William Collazo,CUB,male,1986-08-31,1.72,71,athletics,0,0,0, -213332524,William Ekong,NGR,male,1993-09-01,1.75,,football,0,0,1, -410962720,William Fox-Pitt,GBR,male,1969-01-02,1.96,80,equestrian,0,0,0,"A collector of medals for Great Britain in equestrian eventing, William Fox-Pit won the silver at Athens 2004 and London 2012, and a bronze at Beijing 2008. He was his country's first athlete to achieve the world number one ranking." -974426000,William Lockwood,AUS,male,1988-05-13,1.91,88,rowing,0,1,0, -177039593,William Meynard,FRA,male,1987-07-11,1.92,85,aquatics,0,1,0, -150307137,William Reid Priddy,USA,male,1977-10-01,1.94,89,volleyball,0,0,1, -886806565,William Satch,GBR,male,1989-06-09,1.98,100,rowing,1,0,0, -770119639,William Tesillo,COL,male,1990-02-02,1.86,76,football,0,0,0, -925824275,Willian Giaretton,BRA,male,1990-09-26,1.93,73,rowing,0,0,0, -1567734,Willie Ambaka,KEN,male,1990-05-14,1.93,100,rugby sevens,0,0,0, -879180304,Willy Hernangomez,ESP,male,1994-05-27,2.1,115,basketball,0,0,1, -580584287,Wilma Murto,FIN,female,1998-06-11,1.81,68,athletics,0,0,0, -509216615,Wilmar Barrios,COL,male,1993-10-16,1.79,74,football,0,0,0, -732552796,Wim Stroetinga,NED,male,1985-05-23,1.76,70,cycling,0,0,0, -2681418,Windi Graterol,VEN,male,1986-09-10,2.05,110,basketball,0,0,0, -630860281,Winnie Nanyondo,UGA,female,1993-08-23,,,athletics,0,0,0, -266764491,Winny Chebet,KEN,female,1990-12-20,1.52,48,athletics,0,0,0, -425181289,Winston George,GUY,male,1987-05-19,1.67,66,athletics,0,0,0, -404382792,Winston Hill,FIJ,male,1993-09-17,,,boxing,0,0,0, -923747031,Wirimai Juwawo,ZIM,male,1980-11-07,1.72,63,athletics,0,0,0, -446464349,Wisam Nawar,EGY,male,1990-02-14,1.85,111,handball,0,0,0, -680507143,Wissem Hosni,TUN,male,1985-03-08,1.75,57,athletics,0,0,0, -618949367,Witoon Mingmoon,THA,male,1996-02-10,1.57,56,weightlifting,0,0,0, -640840803,Witthaya Thamwong,THA,male,1987-09-18,1.8,82,archery,0,0,0, -984494121,Wojciech Nowicki,POL,male,1989-02-22,1.96,128,athletics,0,0,1, -539569636,Wojciech Theiner,POL,male,1986-06-25,1.89,84,athletics,0,0,0, -595198365,Wojciech Wojdak,POL,male,1996-03-13,1.86,84,aquatics,0,0,0, -76593466,Won Chol Yun,PRK,male,1989-07-03,1.63,59,wrestling,0,0,0, -457937949,Won Jin Kim,KOR,male,1992-05-01,1.68,60,judo,0,0,0, -663385639,Wonchul Yoo,KOR,male,1984-07-20,1.65,59,gymnastics,0,0,0, -69693053,Woojin Kim,KOR,male,1992-06-20,1.8,95,archery,1,0,0, -651375784,Woongtae Jun,KOR,male,1995-08-01,1.75,66,modern pentathlon,0,0,0, -474296927,Wout Poels,NED,male,1987-10-01,1.86,67,cycling,0,0,0, -640901977,Wuileixis De Jesus Rivas Espinoza,VEN,male,1990-08-27,1.74,,wrestling,0,0,0, -851340643,Wuta Waco Bige Dombaxi,ANG,female,1986-04-05,1.8,92,handball,0,0,0, -332172731,Wuttichai Masuk,THA,male,1990-03-16,1.75,,boxing,0,0,0, -830874507,Xan de Waard,NED,female,1995-11-08,1.63,55,hockey,0,1,0, -283897896,Xantal Gine,ESP,female,1992-09-23,1.68,62,hockey,0,0,0, -618448909,Xavier Lleonart,ESP,male,1990-06-22,1.8,70,hockey,0,0,0, -9403852,Xavier Vela Maggi,BRA,male,1989-08-07,1.78,71,rowing,0,0,0, -175218887,Xaysa Anousone,LAO,male,1994-03-20,1.8,65,athletics,0,0,0, -821538769,Xenia Krizsan,HUN,female,1993-01-13,1.72,64,athletics,0,0,0, -933749251,Xia Ding,CHN,female,1990-01-13,1.8,67,volleyball,1,0,0, -304876700,Xia Lian Ni,LUX,female,1963-07-04,1.57,58,table tennis,0,0,0, -944403692,Xiang Li,CHN,male,1993-07-02,1.91,85,aquatics,0,0,0, -427125476,Xiang Liu,CHN,female,1996-09-01,1.8,66,aquatics,0,0,0, -371898771,Xiang Wei Jasmine Ser,SIN,female,1990-09-24,1.55,47,shooting,0,0,0, -591962828,Xiangyu Gong,CHN,female,1997-04-21,1.86,72,volleyball,1,0,0, -591353538,Xiao Gu,CHN,female,1993-03-18,1.74,60,aquatics,0,1,0, -695366318,Xiao Juan Diao,HKG,female,1986-03-15,1.7,59,cycling,0,0,0, -46661716,Xiao Sun,CHN,female,1992-06-13,1.67,57,hockey,0,0,0, -476593351,Xiao Yu Liang,SIN,female,1996-01-11,1.63,55,badminton,0,0,0, -470006570,Xiaochuan Zhai,CHN,male,1993-03-24,2.04,100,basketball,0,0,0, -306770484,Xiaohan Mei,CHN,female,1996-11-11,1.8,100,aquatics,0,0,0, -247133219,Xiaohong Li,CHN,female,1995-01-08,1.62,48,athletics,0,0,0, -161425340,Xiaojia Chen,CHN,female,1988-04-02,1.82,68,basketball,0,0,0, -603812058,Xiaojing Liang,CHN,female,1997-04-07,1.56,48,athletics,0,0,0, -780086362,Xiaojun Lyu,CHN,male,1984-07-27,1.72,77,weightlifting,0,1,0, -756419344,Xiaoli Wang,CHN,female,1982-05-12,1.69,70,sailing,0,0,0, -562938446,Xiaolin Bi,CHN,female,1989-09-18,1.76,62,football,0,0,0, -713954597,Xiaoling Luo,CHN,female,1988-09-20,1.7,68,cycling,0,0,0, -750468323,Xiaolong Xu,CHN,male,1992-12-20,1.85,70,athletics,0,0,0, -317190997,Xiaolu Li,CHN,female,1992-11-07,1.67,51,aquatics,0,1,0, -195305057,Xiaona Shan,GER,female,1983-01-18,1.65,54,table tennis,0,1,0, -70171405,Xiaonan Zhang,CHN,female,1992-07-21,1.68,58,modern pentathlon,0,0,0, -620187619,Xiaotong Liu,CHN,female,1990-02-16,1.88,70,volleyball,1,0,0, -363955533,Xiaoxia Li,CHN,female,1988-01-15,1.74,65,table tennis,1,1,0,"Holding nine world championship golds, won over the past decade, China's Li Xiaoxia shone in table tennis at London 2012, when she won gold in the singles and team events." -53876451,Xiaoxu Ma,CHN,female,1988-06-05,1.72,73,football,0,0,0, -870464131,Xiaoxue Zhang,CHN,female,1992-12-13,1.62,51,hockey,0,0,0, -518352291,Xin Xin,CHN,female,1996-11-06,1.76,61,aquatics,0,0,0, -79448712,Xin Xu,CHN,male,1990-01-08,1.8,67,table tennis,1,0,0, -138582519,Xin Yan,AUS,male,1988-12-09,1.8,75,table tennis,0,0,0, -935030404,Xing Han,CGO,female,1989-11-08,1.65,57,table tennis,0,0,0, -402209729,Xinglong Gao,CHN,male,1994-03-12,1.82,63,athletics,0,0,0, -140331302,Xingqiang Tang,CHN,male,1995-08-11,1.7,61,athletics,0,0,0, -284651542,Xinping Liang,CHN,female,1994-07-31,1.71,60,aquatics,0,1,0, -265059163,Xinyan Wang,CHN,female,1991-04-26,1.81,73,aquatics,0,0,0, -193062950,Xinyan Zhang,CHN,female,1994-02-09,1.7,55,athletics,0,0,0, -95255319,Xinyi Chen,CHN,female,1998-01-02,1.78,62,aquatics,0,0,0, -527379806,Xinyu Zhang,CHN,female,1997-03-09,1.66,60,aquatics,0,0,0, -83460072,Xinyue Su,CHN,female,1991-11-08,1.78,94,athletics,0,0,0, -429546103,Xinyue Yuan,CHN,female,1996-12-21,2.01,78,volleyball,1,0,0, -846423919,Xinyue Zhang,CHN,female,1993-05-05,1.77,73,rowing,0,0,0, -692957998,Xiuzhi Lu,CHN,female,1993-10-26,1.6,45,athletics,0,0,1, -305914002,Xiyu Lin,CHN,female,1996-02-25,1.71,65,golf,0,0,0, -285179001,Xoana Iacoi,ARG,female,1992-06-03,1.61,70,handball,0,0,0, -56252755,Xuan Vinh Hoang,VIE,male,1974-10-06,1.75,75,shooting,1,1,0, -124699891,Xue Li,FRA,female,1985-04-14,1.65,57,table tennis,0,0,0, -773136288,Xuechen Huang,CHN,female,1990-02-25,1.75,62,aquatics,0,2,0, -199638855,Xuechun Zhong,CHN,female,1994-01-18,1.66,55,wrestling,0,0,0, -597272613,Xueer Wang,CHN,female,1998-01-15,1.78,67,aquatics,0,0,0, -652008471,Xuerui Li,CHN,female,1991-01-24,1.75,65,badminton,0,0,0, -283158368,Xuesong Gu,CHN,male,1993-06-21,1.78,76,archery,0,0,0, -166545543,Xunzhao Cheng,CHN,male,1991-02-09,1.85,90,judo,0,0,1, -152863317,Ya Tan,CHN,male,1992-07-18,1.74,70,canoe,0,0,0, -872511641,Ya-Ting Tan,TPE,female,1993-11-07,1.58,53,archery,0,0,1, -338589899,Yaaqoub Alsaadi,UAE,male,1996-06-13,1.75,62,aquatics,0,0,0, -137239847,Yadinys Amaris,COL,female,1984-04-01,1.62,57,judo,0,0,0, -552083817,Yadira Silva,MEX,female,1985-12-24,1.59,55,table tennis,0,0,0, -438851517,Yadisleidis Pedroso,ITA,female,1987-01-28,1.7,50,athletics,0,0,0, -539240729,Yael Castiglione,ARG,female,1985-09-27,1.84,75,volleyball,0,0,0, -626583802,Yago Lange,ARG,male,1988-03-22,1.8,77,sailing,0,0,0, -786911278,Yaime Perez,CUB,female,1991-05-29,1.75,74,athletics,0,0,0, -420817403,Yajie Si,CHN,female,1998-12-04,1.64,57,aquatics,0,1,0, -267368627,Yajun Li,CHN,female,1993-04-27,1.51,53,weightlifting,0,0,0, -549751997,Yakov Toumarkin,ISR,male,1992-02-15,1.92,90,aquatics,0,0,0, -445656817,Yalennis Castillo,CUB,female,1986-05-21,1.74,78,judo,0,0,0, -294527962,Yali Jing,CHN,female,1989-05-25,1.76,63,cycling,0,0,0, -380260850,Yamil Alberto Peralta,ARG,male,1991-07-16,1.92,,boxing,0,0,0, -450541833,Yan Jiang,CHN,female,1989-01-10,1.78,70,rowing,0,0,0, -333015501,Yan Wang,CHN,female,1991-08-22,1.75,61,football,0,0,0, -44353519,Yan Wang,CHN,female,1999-10-30,1.4,33,gymnastics,0,0,1, -664863938,Yan Yee Ng,MAS,female,1993-07-11,1.55,51,aquatics,0,0,0, -76793158,Yana Alekseevna,AZE,female,1987-10-30,1.69,,boxing,0,0,0, -541557997,Yana Belomoina,UKR,female,1992-11-02,1.64,46,cycling,0,0,0, -223640307,Yana Egorian,RUS,female,1993-12-20,1.75,64,fencing,2,0,0, -243275636,Yana Kudryavtseva,RUS,female,1997-09-29,1.7,47,gymnastics,0,1,0,"Russia's Yana Kudryavtseva is a three-time world rhythmic gymnastics champion. Her first win came when she was just 15, making her the youngest world champion in history. Yana is the daughter of former Olympic champion swimmer Aleksey Kudryavtsev." -43753188,Yana Pavlova,RUS,female,1996-01-06,1.56,51,gymnastics,0,0,0, -435033885,Yana Shcherban,RUS,female,1989-09-06,1.85,71,volleyball,0,0,0, -297532714,Yana Shemyakina,UKR,female,1986-01-05,1.68,60,fencing,0,0,0, -218946675,Yana Tie,HKG,female,1979-05-13,1.6,59,table tennis,0,0,0, -308918609,Yanan Sun,CHN,female,1992-09-15,1.61,51,wrestling,0,0,1, -63153273,Yancarlos Martinez,DOM,male,1992-07-08,1.71,60,athletics,0,0,0, -599927932,Yane Marcia Marques,BRA,female,1984-01-07,1.66,55,modern pentathlon,0,0,0, -919768617,Yanet Ursula Sovero Nino,PER,female,1983-05-02,1.63,58,wrestling,0,0,0, -167053501,Yanfei Shen,ESP,female,1979-12-24,1.65,65,table tennis,0,0,0, -293632748,Yang Chen,CHN,female,1991-07-10,1.8,97,athletics,0,0,0, -136270822,Yang Fan,CHN,male,1990-01-03,1.83,78,cycling,0,0,0, -760332947,Yang Gao,CHN,female,1993-03-01,1.78,105,athletics,0,0,0, -490068469,Yang Liu,CHN,male,1994-09-10,1.62,61,gymnastics,0,0,1, -99159206,Yang Lyu,CHN,female,1993-11-26,1.83,77,rowing,0,0,0, -349451420,Yang Peng,CHN,female,1992-01-17,1.63,59,hockey,0,0,0, -344496691,Yang Sun,CHN,male,1991-12-01,2,92,aquatics,1,1,0, -619307407,Yang Wang,SVK,male,1994-09-24,1.83,73,table tennis,0,0,0, -270107002,Yang Yu,CHN,female,1986-04-07,1.66,62,badminton,0,0,0, -188592965,Yanhan Ai,CHN,female,2002-02-07,1.68,54,aquatics,0,0,0, -801724577,Yanic Gentry Torfer,MEX,male,1991-02-20,1.84,82,sailing,0,0,0, -846532054,Yaniel Carrero,CUB,male,1995-08-17,1.74,74,athletics,0,0,0, -491775896,Yanina Wickmayer,BEL,female,1989-10-20,1.82,72,tennis,0,0,0, -528693937,Yanislav Gerchev,BUL,male,1989-10-04,1.7,60,judo,0,0,0, -273498776,Yaniuska Isabel Espinosa,VEN,female,1986-12-05,1.72,114,weightlifting,0,0,0, -871784511,Yaniuvis Lopez,CUB,female,1986-02-01,1.8,71,athletics,0,0,0, -413602471,Yanmei Xiang,CHN,female,1992-06-13,1.63,69,weightlifting,1,0,0, -982324748,Yann Candele,CAN,male,1971-03-11,1.73,82,equestrian,0,0,0, -943819642,Yann Siccardi,MON,male,1986-02-03,1.64,60,judo,0,0,0, -260382082,Yannick Agnel,FRA,male,1992-06-09,2.01,80,aquatics,0,0,0, -709856654,Yannick Borel,FRA,male,1988-11-05,1.97,100,fencing,1,0,0, -959595922,Yannick Brauchli,SUI,male,1988-07-30,1.73,63,sailing,0,0,0, -796628018,Yannick Kaeser,SUI,male,1992-07-03,1.86,81,aquatics,0,0,0, -190574076,Yannick Lefebvre,BEL,male,1988-11-19,1.81,79,sailing,0,0,0, -210648871,Yanyuhang Ding,CHN,male,1993-08-20,2,91,basketball,0,0,0, -876086077,Yarden Gerbi,ISR,female,1989-07-08,1.69,63,judo,0,0,1, -665930240,Yared Shegumo,POL,male,1983-01-10,1.78,62,athletics,0,0,0, -603462081,Yarimar Mercado Martinez,PUR,female,1995-03-12,1.79,48,shooting,0,0,0, -300599619,Yarimar Rosa,PUR,female,1988-06-20,1.78,62,volleyball,0,0,0, -943821512,Yarisley Silva,CUB,female,1987-06-01,1.61,61,athletics,0,0,0, -649661769,Yaroslava Bondarenko,RUS,female,1997-02-27,1.58,62,cycling,0,0,0, -836251639,Yaroslava Shvedova,KAZ,female,1987-09-12,1.8,70,tennis,0,0,0, -539142587,Yasemin Adar,TUR,female,1991-12-06,1.8,75,wrestling,0,0,0, -283024997,Yasemin Anagoz,TUR,female,1998-10-14,1.65,66,archery,0,0,0, -803264518,Yasemin Can,TUR,female,1996-12-11,1.66,49,athletics,0,0,0, -901257700,Yasha Gu,CHN,female,1990-11-28,1.65,60,football,0,0,0, -708840841,Yasmani Copello,TUR,male,1987-04-15,1.91,85,athletics,0,0,1, -205474844,Yasmany Daniel Lugo Cabrera,CUB,male,1990-01-24,1.9,98,wrestling,0,1,0, -124076094,Yasmin Kwadwo,GER,female,1990-11-09,1.7,65,athletics,0,0,0, -646361297,Yasmina Aziez,FRA,female,1991-01-23,1.72,52,taekwondo,0,0,0, -893193167,Yasnier Toledo,CUB,male,1989-09-15,1.75,,boxing,0,0,0, -557145585,Yassine Hethat,ALG,male,1991-08-30,1.75,65,athletics,0,0,0, -455207704,Yassine Trabelsi,TUN,male,1990-07-12,1.85,80,taekwondo,0,0,0, -931792230,Yasuhiro Koseki,JPN,male,1992-03-14,1.88,83,aquatics,0,0,0, -960225637,Yasunari Hirai,JPN,male,1990-04-02,1.75,75,aquatics,0,0,0, -842346625,Yating Sun,CHN,female,1988-02-24,1.8,76,aquatics,0,0,0, -81264500,Yauhen Tsurkin,BLR,male,1990-12-09,1.82,77,aquatics,0,0,0, -767771937,Yauheni Karaliou,BLR,male,1991-03-26,1.69,69,aquatics,0,0,0, -631259932,Yavuz Ilnam,TUR,male,1987-07-23,1.85,140,shooting,0,0,0, -371339083,Yawen Hou,CHN,female,1998-09-09,1.81,71,aquatics,0,0,0, -874979172,Yaxin Liu,CHN,female,1999-06-16,1.78,69,aquatics,0,0,0, -462092758,Yayoi Matsumoto,JPN,female,1990-03-08,1.68,65,aquatics,0,0,0, -91699110,Ye Na Chang,KOR,female,1989-12-13,1.72,61,badminton,0,0,0, -35665719,Ye Tun Naung,MYA,male,1983-05-26,1.75,60,shooting,0,0,0, -145504141,Ye Yang,CHN,female,1994-05-26,1.72,50,gymnastics,0,0,0, -6445762,Yehia Elderaa,EGY,male,1995-07-17,1.86,82,handball,0,0,0, -139859282,Yehualeye Beletew,ETH,female,1998-07-31,1.65,52,athletics,0,0,0, -166734609,Yeison Rivas,COL,male,1987-09-24,1.73,66,athletics,0,0,0, -628369292,Yeji Kim,KOR,female,1994-11-17,1.74,72,rowing,0,0,0, -680581412,Yekaterina Ektova,KAZ,female,1992-08-30,1.7,59,athletics,0,0,0, -892955705,Yekaterina Larionova,KAZ,female,1994-01-23,1.58,63,wrestling,0,0,1, -206089177,Yekaterina Nemich,KAZ,female,1995-01-03,1.69,47,aquatics,0,0,0, -247875436,Yekaterina Rudenko,KAZ,female,1994-10-16,1.8,69,aquatics,0,0,0, -953630497,Yekaterina Smirnova,KAZ,female,1988-05-21,1.65,63,canoe,0,0,0, -17150577,Yeldos Smetov,KAZ,male,1992-09-09,1.67,60,judo,0,1,0, -932118784,Yelena Leuchanka,BLR,female,1983-04-30,1.95,86,basketball,0,0,0, -805715080,Yelena Ryabova,TKM,female,1990-11-03,1.7,56,athletics,0,0,0, -485869325,Yelizaveta Korol,KAZ,female,1994-09-02,1.67,69,shooting,0,0,0, -53802020,Yelyzaveta Bryzgina,UKR,female,1989-11-28,1.73,63,athletics,0,0,0, -550672127,Yemane Haileselassie,ERI,male,1998-02-21,,,athletics,0,0,0, -252505900,Yemi Geoffrey Apithy,BEN,male,1989-04-05,1.92,96,fencing,0,0,0, -399306136,Yen-Hsun Lu,TPE,male,1983-08-14,1.8,83,tennis,0,0,0, -839200601,Yeon Jae Son,KOR,female,1994-05-28,1.65,45,gymnastics,0,0,0, -383061108,Yeon Ju Bae,KOR,female,1990-10-26,1.67,57,badminton,0,0,0, -699050231,Yeon Koung Kim,KOR,female,1988-02-26,1.92,73,volleyball,0,0,0, -769058232,Yeon Seong Yoo,KOR,male,1986-08-19,1.81,75,badminton,0,0,0, -664297422,Yeongeun Jeon,KOR,female,1988-05-24,1.58,43,athletics,0,0,0, -597746590,Yeongsin Nam,KOR,female,1990-08-27,1.75,82,handball,0,0,0, -765164830,Yerenman Salazar,VEN,male,1978-10-24,1.65,52,athletics,0,0,0, -617589431,Yerko Araya,CHI,male,1986-02-14,1.78,64,athletics,0,0,0, -185479822,Yeseida Carrillo,COL,female,1993-10-22,1.68,52,athletics,0,0,0, -5964702,Yesenia Miranda,ESA,female,1994-03-26,,,athletics,0,0,0, -640675211,Yessica Camilo Gonzalez,DOM,female,1993-02-23,1.68,73,archery,0,0,0, -124805111,Yessy Venisia Yosaputra,INA,female,1994-08-27,1.67,62,aquatics,0,0,0, -720063529,Yesui Bayar,MGL,female,2000-07-21,1.76,61,aquatics,0,0,0, -824906625,Yevgeniy Alexeyev,KAZ,male,1977-12-11,1.86,93,canoe,0,0,0, -81837062,Yevgeniy Labutov,KAZ,male,1984-11-17,1.94,120,athletics,0,0,0, -877812765,Yevgeniya Gomon,UKR,female,1995-03-25,1.74,55,gymnastics,0,0,0, -423607344,Yevhen Vynohradov,UKR,male,1984-04-30,1.95,105,athletics,0,0,0, -586074732,Ygor Coelho de Oliveira,BRA,male,1996-11-24,1.83,78,badminton,0,0,0, -130088138,Yi Chun Lin,TPE,female,1981-07-05,1.61,70,shooting,0,0,0, -923838612,Yi Mao,CHN,female,1999-09-16,1.51,35,gymnastics,0,0,1, -154566738,Yi Tang,CHN,female,1993-01-08,1.77,70,aquatics,0,0,0, -45723184,Yi-Hua Huang,TPE,female,1984-07-20,1.67,56,table tennis,0,0,0, -318947279,Yi-Ting Huang,TPE,female,1990-01-16,1.7,65,rowing,0,0,0, -657056905,Yidiel Contreras,ESP,male,1992-11-27,1.8,74,athletics,0,0,0, -666759438,Yiech Pur Biel,ROT,male,1995-01-01,1.78,62,athletics,0,0,0, -763147414,Yifan Xu,CHN,female,1988-08-08,1.65,60,tennis,0,0,0, -62526339,Yifei Cao,CHN,male,1988-05-20,1.75,75,shooting,0,0,0, -390260480,Yigal Kopinsky,SUR,male,1985-10-16,,,judo,0,0,0, -192425723,Yigrem Demelash,ETH,male,1994-01-26,1.67,48,athletics,0,0,0, -221613357,Yihan Wang,CHN,female,1988-01-18,1.78,65,badminton,0,0,0, -370970040,Yihan Zhou,SIN,female,1994-01-30,1.68,54,table tennis,0,0,0, -567715213,Yijun Feng,USA,male,1997-02-12,1.86,71,table tennis,0,0,0, -522417913,Yilin Fan,CHN,female,1999-11-11,1.48,37,gymnastics,0,0,1, -780210993,Yilin Zhou,CHN,female,1992-09-18,1.75,63,aquatics,0,0,0, -639260564,Ying Chen,CHN,female,1977-11-04,1.64,67,shooting,0,0,0, -421292121,Ying Han,GER,female,1983-04-29,1.7,60,table tennis,0,1,0, -911763971,Ying Li,CHN,female,1993-01-07,1.7,61,football,0,0,0, -51254244,Ying Lu,CHN,female,1989-01-22,1.75,65,aquatics,0,0,0, -9996220,Ying Luo,CHN,female,1991-01-11,1.64,62,badminton,0,0,0, -329937737,Ying Suet Tse,HKG,female,1991-11-09,1.66,66,badminton,0,0,0, -854775269,Yingnan Ma,CHN,female,1984-03-03,1.58,52,judo,0,0,0, -196292572,Yirisleydi Ford,CUB,female,1991-08-18,1.68,66,athletics,0,0,0, -102152415,Yisela Cuesta,COL,female,1991-09-27,1.66,59,football,0,0,0, -712061980,Yislena Hernandez,CUB,female,1990-03-13,1.67,57,rowing,0,0,0, -56600686,Yiwen Sun,CHN,female,1992-06-17,1.77,63,fencing,0,1,1, -413280688,Yixuan Hu,CHN,male,1994-10-23,1.85,83,aquatics,0,0,0, -904689732,Yoandry Iriarte Galvez,CUB,male,1986-05-05,1.77,79,fencing,0,0,0, -115955580,Yoandys Lescay,CUB,male,1994-01-05,1.81,77,athletics,0,0,0, -857109220,Yoann Kowal,FRA,male,1987-05-28,1.72,58,athletics,0,0,0, -540772965,Yodgoroy Mirzaeva,UZB,female,1996-04-22,1.6,,boxing,0,0,0, -607223536,Yoel Segundo Finol,VEN,male,1996-09-21,1.68,,boxing,0,0,1, -652136434,Yoelmis Hernandez Paumier,CUB,male,1986-04-25,1.68,84,weightlifting,0,0,0, -613058255,Yogeshwar Dutt,IND,male,1982-11-02,1.68,65,wrestling,0,0,0, -269473268,Yohan Blake,JAM,male,1989-12-26,1.8,80,athletics,1,0,0, -512633616,Yohann Diniz,FRA,male,1978-01-01,1.85,66,athletics,0,0,0, -266326638,Yoichi Itokazu,JPN,male,1991-05-24,1.6,62,weightlifting,0,0,0, -946096698,Yolande Bukasa,ROT,female,1987-09-08,1.7,70,judo,0,0,0, -336097063,Yolande Juliana Amana Guigolo,CMR,female,1997-09-15,1.84,78,volleyball,0,0,0, -101826251,Yolymar Pineda,VEN,female,1985-11-14,1.65,53,athletics,0,0,0, -237054888,Yon Soriano,DOM,male,1987-01-02,1.66,62,athletics,0,0,0, -437784364,Yona Knight-Wisdom,JAM,male,1995-05-12,1.88,87,aquatics,0,0,0, -822236313,Yonas Kinde,ROT,male,1980-05-07,1.72,57,athletics,0,0,0, -291959436,Yonathan Monsalve,VEN,male,1989-06-28,1.76,62,cycling,0,0,0, -281612078,Yonder Roman Garcia Alvarez,CUB,male,1993-02-26,1.83,78,volleyball,0,0,0, -358811033,Yong Dae Lee,KOR,male,1988-09-11,1.8,74,badminton,0,0,0, -608871682,Yong Gwang Kwon,PRK,male,1996-01-14,1.65,68,weightlifting,0,0,0, -6528240,Yong Hui Pak,PRK,female,1970-08-24,1.6,63,shooting,0,0,0, -798606388,Yong Suk Jo,PRK,female,1988-09-05,1.63,65,shooting,0,0,0, -144141011,Yongli Wei,CHN,female,1991-10-11,1.68,58,athletics,0,0,0, -194045564,Yongqing Lin,CHN,male,1992-12-24,1.9,85,aquatics,0,0,0, -368147232,Yongran Oh,KOR,female,1972-09-06,1.71,73,handball,0,0,0, -338890574,Yongshi Liu,CHN,female,1990-02-19,1.76,62,fencing,0,0,0, -970544941,Yongwoo Park,KOR,male,1993-09-10,1.86,80,football,0,0,0, -430969568,Yoo Na Bae,KOR,female,1989-11-30,1.82,66,volleyball,0,0,0, -366615764,Yoojin Hong,KOR,female,1989-02-21,1.66,56,hockey,0,0,0, -400985709,Yoosun Nam,KOR,female,1985-07-23,1.69,52,aquatics,0,0,0, -824249467,Yordan L. O'Farrill,CUB,male,1993-02-09,1.83,72,athletics,0,0,0, -860020616,Yordani Garcia,CUB,male,1988-11-21,1.95,84,athletics,0,0,0, -365796318,Yordanys Duranona,DMA,male,1988-06-16,1.85,83,athletics,0,0,0, -889022842,Yorgelis Rodriguez,CUB,female,1995-01-25,1.7,66,athletics,0,0,0, -693270892,Yosbany Veitia,CUB,male,1992-03-12,1.6,,boxing,0,0,0, -564568653,Yoshiaki Oiwa,JPN,male,1976-07-19,1.7,67,equestrian,0,0,0, -549187126,Yoshihide Kiryu,JPN,male,1995-12-15,1.75,69,athletics,0,1,0, -133419662,Yoshitaka Tokunaga,JPN,male,1992-04-10,1.85,100,rugby sevens,0,0,0, -435666182,Yoshitaku Nagasako,JPN,male,1993-09-16,1.72,70,cycling,0,0,0, -180574339,Yoshua Shing,VAN,male,1993-06-20,1.73,65,table tennis,0,0,0, -201354275,Yosiry Urrutia,COL,female,1986-06-26,1.76,65,athletics,0,0,0, -844481129,Yosra Dhieb,TUN,female,1995-08-31,1.78,120,weightlifting,0,0,0, -391193514,Yosuke Ideguchi,JPN,male,1996-08-23,1.71,69,football,0,0,0, -326797163,Yosuke Nakayama,JPN,male,1987-03-20,1.61,62,weightlifting,0,0,0, -922648062,Yosvani Gonzalez Nicolas,CUB,male,1988-04-18,1.96,85,volleyball,0,0,0, -942438156,Youba Sissokho Ndiaye,ESP,male,1991-11-07,1.82,,boxing,0,0,0, -897401460,Youcef Reguigui,ALG,male,1990-01-09,1.74,68,cycling,0,0,0, -62442615,Youn Joo Hwang,KOR,female,1986-08-13,1.77,63,volleyball,0,0,0, -462706353,Youndry Andujar,DOM,male,1990-07-05,1.71,60,athletics,0,0,0, -450541080,Younes Essalhi,MAR,male,1993-02-20,1.8,64,athletics,0,0,0, -253601980,Young Mi Kang,KOR,female,1985-03-01,1.64,63,fencing,0,0,0, -654665067,Younghee Son,KOR,female,1993-04-24,1.73,110,weightlifting,0,0,0, -502665912,Youngjun Byun,KOR,male,1984-03-20,1.75,59,athletics,0,0,0, -800057489,Youngjun Won,KOR,male,1998-01-08,1.87,83,aquatics,0,0,0, -447706545,Youngsik Jeoung,KOR,male,1992-01-20,1.82,65,table tennis,0,0,0, -460973844,Youngsil Lee,KOR,female,1987-03-13,1.67,59,hockey,0,0,0, -421409834,Yousef Mirza Banihammad,UAE,male,1988-10-08,1.76,60,cycling,0,0,0, -290661628,Yousef Shriha,LBA,male,1991-11-18,1.77,58,taekwondo,0,0,0, -996923699,Yousra Helmy,EGY,female,1995-12-03,1.65,50,table tennis,0,0,0, -581419074,Youssef Akrout,TUN,male,1990-11-15,1.8,78,sailing,0,0,0, -577987694,Youssef Selim,EGY,male,1997-12-14,1.65,88,aquatics,0,0,0, -906406227,Youssra Zakarani,MAR,female,1995-01-07,1.62,58,fencing,0,0,0, -804864776,Youxue Mo,CHN,male,1996-02-10,1.8,65,athletics,0,0,0, -191719659,Yowlys Bonne Rodriguez,CUB,male,1983-11-02,1.52,57,wrestling,0,0,0, -403722515,Ysaora Thibus,FRA,female,1991-08-22,1.74,59,fencing,0,0,0, -866421007,Yu Asai,JPN,female,1996-01-08,1.72,63,hockey,0,0,0, -470277926,Yu Luo,CHN,female,1991-01-11,1.64,66,badminton,0,0,0, -245945587,Yu Wang,CHN,male,1991-08-18,1.9,65,athletics,0,0,0, -262263057,Yu Xing,CHN,male,1991-03-12,1.88,90,archery,0,0,0, -112835195,Yu Zhou,CHN,female,1989-01-23,1.74,67,canoe,0,0,0, -964683123,Yu-Hsuan Chen,TPE,female,1993-01-16,1.57,50,athletics,0,0,0, -886518793,Yuan Cao,CHN,male,1995-02-07,1.67,62,aquatics,1,0,1, -960243282,Yuan Yue,CHN,female,1987-07-23,1.82,72,volleyball,0,0,0, -50733042,Yuanhui Fu,CHN,female,1996-01-07,1.79,67,aquatics,0,0,1, -247982546,Yuanting Tang,CHN,female,1994-08-02,1.75,70,badminton,0,0,0, -27660873,Yuchen Zou,CHN,male,1996-07-05,2.03,107,basketball,0,0,0, -622790122,Yucheng Han,CHN,male,1978-12-16,1.78,55,athletics,0,0,0, -68915192,Yuderqui Maridalia Contreras,DOM,female,1986-03-27,1.58,58,weightlifting,0,0,0, -427057376,Yudiao Zhao,CHN,female,1989-05-25,1.74,68,hockey,0,0,0, -426336563,Yue Cao,CHN,female,1995-10-29,1.78,72,aquatics,0,0,0, -282448416,Yue Li,CHN,female,1993-10-27,1.7,65,canoe,0,0,0, -500859635,Yue Lin,CHN,male,1991-07-24,1.64,58,aquatics,1,0,0, -920857282,Yue Wu,USA,female,1990-01-04,1.61,50,table tennis,0,0,0, -23443327,Yue Zhang,CHN,female,1990-09-30,1.85,64,football,0,0,0, -517058377,Yuehong Li,CHN,male,1989-08-28,1.73,71,shooting,0,0,1, -607487573,Yuen Yin Lee,HKG,female,1989-07-16,1.61,58,rowing,0,0,0, -968356783,Yufei Zhang,CHN,female,1998-04-19,1.76,62,aquatics,0,0,0, -928265049,Yuhan Tan,BEL,male,1987-04-21,1.82,74,badminton,0,0,0, -97065462,Yuhan Zhang,CHN,female,1995-01-06,1.73,60,aquatics,0,0,0, -122679223,Yuhang Wu,CHN,male,1997-06-03,1.78,72,aquatics,0,0,0, -480817405,Yuhong Qi,CHN,female,1989-08-25,1.66,78,archery,0,0,0, -845709024,Yuichi Sugita,JPN,male,1988-09-18,1.73,66,tennis,0,0,0, -834189492,Yujie Sun,CHN,female,1992-08-10,1.85,78,fencing,0,1,0, -714978858,Yuka Kanematsu,JPN,female,1982-06-17,1.59,59,rugby sevens,0,0,0, -85090644,Yuka Mamiya,JPN,female,1990-04-03,1.85,74,basketball,0,0,0, -192455905,Yuka Sato,JPN,female,1992-01-18,1.71,56,triathlon,0,0,0, -206045487,Yuka Takashima,JPN,female,1988-05-12,1.53,39,athletics,0,0,0, -47621676,Yukari Mano,JPN,female,1994-03-04,1.52,53,hockey,0,0,0, -12505155,Yuki Ebihara,JPN,female,1985-10-28,1.64,68,athletics,0,0,0, -384346925,Yuki Hayashi,JPN,female,1984-10-02,1.63,65,archery,0,0,0, -596523422,Yuki Ishii,JPN,female,1991-05-08,1.8,68,volleyball,0,0,0, -917190651,Yuki Kadono,JPN,male,1990-09-14,1.77,72,aquatics,0,0,0, -324618185,Yuki Kobori,JPN,male,1993-11-25,1.83,77,aquatics,0,0,1, -192515244,Yuki Matsushita,JPN,male,1991-09-09,1.76,65,athletics,0,0,0, -223316076,Yuki Miyazawa,JPN,female,1993-06-02,1.82,70,basketball,0,0,0, -413134994,Yuki Ota,JPN,male,1985-11-25,1.71,69,fencing,0,0,0, -108168547,Yuki Uchiyama,JPN,female,1998-01-13,1.59,49,gymnastics,0,0,0, -581218184,Yukie Nakayama,JPN,female,1979-03-07,1.61,54,shooting,0,0,0, -703800372,Yukiko Inui,JPN,female,1990-12-04,1.7,56,aquatics,0,0,2, -760257652,Yukio Makino,JPN,male,1980-05-06,1.84,78,sailing,0,0,0, -492326920,Yukiya Arashiro,JPN,male,1984-09-22,1.71,64,cycling,0,0,0, -751772771,Yuko Kitai,JPN,female,1973-01-15,1.62,50,equestrian,0,0,0, -440552252,Yulenmis Aguilar,CUB,female,1996-08-03,1.65,66,athletics,0,0,0, -86099624,Yulia Efimova,RUS,female,1992-04-03,,,aquatics,0,2,0, -247132053,Yulia Timoshinina,RUS,female,1998-01-23,1.57,46,aquatics,0,0,0, -13825492,Yuliia Khavaldzhy Blahinya,UKR,female,1990-02-21,1.62,53,wrestling,0,0,0, -541028495,Yuliia Levchenko,UKR,female,1997-11-28,1.79,59,athletics,0,0,0, -957767135,Yuliia Tkach Ostapchuk,UKR,female,1989-09-26,1.7,63,wrestling,0,0,0, -109328208,Yulimar Rojas,VEN,female,1995-10-21,1.92,72,athletics,0,1,0, -750465466,Yuliya Bichyk,BLR,female,1983-04-01,1.84,84,rowing,0,0,0, -313792842,Yuliya Gavrilova,RUS,female,1989-07-20,1.69,56,fencing,1,0,0, -379286270,Yuliya Karol,BLR,female,1991-06-26,1.62,57,athletics,0,0,0, -416483040,Yuliya Khitraya,BLR,female,1989-09-11,1.8,66,aquatics,0,0,0, -131403835,Yuliya Leantsiuk,BLR,female,1984-01-31,1.8,80,athletics,0,0,0, -323145387,Yuliya Lobzhenidze,GEO,female,1977-08-23,1.77,80,archery,0,0,0, -983041007,Yuliya Rakhmanova,KAZ,female,1991-10-25,1.68,58,athletics,0,0,0, -745030632,Yuliya Ratkevich,AZE,female,1985-07-16,1.62,58,wrestling,0,0,0, -521174364,Yuliya Rytsikava,BLR,female,1986-09-08,1.8,69,basketball,0,0,0, -693790163,Yuliya Tarasova,UZB,female,1986-03-13,1.74,66,athletics,0,0,0, -272506840,Yuliya Yelistratova,UKR,female,1988-02-15,1.63,53,triathlon,0,0,0, -346397008,Yume Okuroda,JPN,female,1994-07-06,1.57,62,rugby sevens,0,0,0, -304244735,Yumi Kida,JPN,female,1985-06-30,1.6,55,aquatics,0,0,0, -109766656,Yun Chol Om,PRK,male,1991-11-18,1.51,56,weightlifting,0,1,0, -660495063,Yun Hu,HKG,male,1981-08-31,1.78,73,badminton,0,0,0, -402313954,Yung-Jan Chan,TPE,female,1989-08-17,1.71,65,tennis,0,0,0, -491896324,Yunlei Zhao,CHN,female,1986-08-25,1.73,60,badminton,0,0,1,"At the London 2012 Olympic Games, China's Zhao Yunlei climbed to the top of the podium twice, winning both the singles and doubles tournaments; a feat he went on to repeat at the last two world championships." -787363560,Yunli Xu,CHN,female,1987-08-02,1.95,75,volleyball,1,0,0, -243639998,Yunlong Jiao,CHN,male,1988-05-19,1.9,87,fencing,0,0,0, -274497328,Yuqing Bao,CHN,female,1993-09-23,1.73,55,gymnastics,0,0,0, -16526279,Yura Jung,KOR,female,1992-02-06,1.7,63,handball,0,0,0, -531947330,Yurary Poulsen,DEN,male,1994-06-15,1.93,85,football,0,0,0, -57329234,Yurberjen Herney Martinez,COL,male,1991-11-01,1.65,,boxing,0,1,0, -819486383,Yuri Alvear,COL,female,1986-03-29,1.76,70,judo,0,1,0, -10496716,Yuri Floriani,ITA,male,1981-12-25,1.8,64,athletics,0,0,0, -708404577,Yuri Kisil,CAN,male,1995-09-18,2,84,aquatics,0,0,0, -874782601,Yuri Nagai,JPN,female,1992-05-26,1.55,53,hockey,0,0,0, -575167357,Yuri van Gelder,NED,male,1983-04-20,1.61,63,gymnastics,0,0,0, -409923311,Yuri van der Heijden,BRA,male,1990-07-20,1.78,76,hockey,0,0,0, -341547186,Yurie Kato,JPN,female,1987-01-27,1.61,48,triathlon,0,0,0, -516134396,Yurie Nabeya,JPN,female,1993-12-15,1.76,58,volleyball,0,0,0, -16936763,Yurim Lee,KOR,female,1994-12-14,1.62,59,hockey,0,0,0, -108397344,Yurisandy Hernandez Rios,CUB,male,1990-02-15,1.72,75,wrestling,0,0,0, -246323077,Yuriy Yurkov,KAZ,male,1983-03-11,1.76,83,shooting,0,0,0, -197488298,Yury Shcherbatsevich,BLR,male,1984-07-11,1.78,87,shooting,0,0,0, -273316719,Yusaku Kuwazuru,JPN,male,1985-10-23,1.88,98,rugby sevens,0,0,0, -822567652,Yusleidy Mariana Figueroa Roldan,VEN,female,1993-01-09,1.53,58,weightlifting,0,0,0, -978744590,Yusmari Mengana,CUB,female,1993-10-25,1.7,65,canoe,0,0,0, -529316870,Yusneysi Santiusti,ITA,female,1984-12-24,1.63,48,athletics,0,0,0, -826970631,Yusra Mardini,ROT,female,1998-03-05,1.68,53,aquatics,0,0,0, -865077945,Yusuf Bala,NGR,male,1996-12-22,1.83,82,football,0,0,0, -729458996,Yusuf Dikec,TUR,male,1973-01-01,1.8,80,shooting,0,0,0, -920794610,Yusuke Shimizu,JPN,male,1988-09-07,1.81,93,aquatics,0,0,0, -51119392,Yusuke Tanaka,JPN,male,1989-11-29,1.66,57,gymnastics,1,0,0, -335237956,Yuta Ikeda,JPN,male,1985-12-22,1.76,76,golf,0,0,0, -636535967,Yuta Shitara,JPN,male,1991-12-18,1.7,48,athletics,0,0,0, -116013385,Yuta Wakimoto,JPN,male,1989-03-21,1.81,74,cycling,0,0,0, -904630839,Yuval Filo,ISR,female,1998-03-03,1.68,47,gymnastics,0,0,0, -73681451,Yuwei Wang,CHN,female,1991-07-16,1.87,74,rowing,0,0,0, -766135834,Yuya Kubo,JPN,male,1993-12-24,1.77,72,football,0,0,0, -819716294,Yuzo Kanemaru,JPN,male,1987-09-18,1.78,75,athletics,0,0,0, -939235679,Yvette Broch,NED,female,1990-12-23,1.84,73,handball,0,0,0, -974818228,Yvette Lewis,PAN,female,1985-03-16,1.75,150,athletics,0,0,0, -638722010,Yvette Man-Yi Kong,HKG,female,1993-01-18,1.76,60,aquatics,0,0,0, -457461427,Yvon Belien,NED,female,1993-12-28,1.88,74,volleyball,0,0,0, -102630412,Yvonne Frank,GER,female,1980-02-07,1.82,78,hockey,0,0,0, -157674707,Yvonne Losos de Muniz,DOM,female,1967-09-08,1.83,64,equestrian,0,0,0, -751496609,Yvonne Schuring,AUT,female,1978-01-04,1.75,68,canoe,0,0,0, -308404537,Yvonne Trevino,MEX,female,1989-09-08,1.7,63,athletics,0,0,0, -503085577,Zac Williams,NZL,male,1995-07-21,1.8,89,cycling,0,0,0, -306067063,Zach Garrett,USA,male,1995-04-08,1.78,63,archery,0,1,0, -995684067,Zach Ziemek,USA,male,1993-02-23,1.94,88,athletics,0,0,0, -586642596,Zack Piontek,RSA,male,1991-01-27,1.81,90,judo,0,0,0, -99932834,Zack Test,USA,male,1989-10-13,1.91,92,rugby sevens,0,0,0, -242878558,Zahra Nemati,IRI,female,1985-04-30,1.76,60,archery,0,0,0, -513768691,Zaidatul Husniah Zulkifli,MAS,female,1993-08-20,1.56,40,athletics,0,0,0, -636555666,Zakaria Draoui,ALG,male,1994-02-20,1.6,60,football,0,0,0, -624057492,Zakarias Berg,SWE,male,1995-07-17,1.81,86,wrestling,0,0,0, -71202021,Zakarya Haddouche,ALG,male,1993-08-19,1.7,65,football,0,0,0, -830255142,Zalina Marghieva,MDA,female,1988-02-05,1.7,80,athletics,0,0,0, -917974956,Zan Rudolf,SLO,male,1993-05-09,1.84,64,athletics,0,0,0, -243949907,Zane Robertson,NZL,male,1989-11-14,1.85,62,athletics,0,0,0, -855358294,Zaneta Glanc,POL,female,1983-03-11,1.86,95,athletics,0,0,0, -280809443,Zangjun Xu,CHN,male,1992-02-06,1.75,65,sailing,0,0,0, -802902327,Zarina Kurbonova,UZB,female,1995-05-06,1.7,54,gymnastics,0,0,0, -235109173,Zarko Markovic,QAT,male,1986-06-01,1.96,94,handball,0,0,0, -644379517,Zaza Nadiradze,GEO,male,1993-09-02,1.77,85,canoe,0,0,0, -596326530,Zbigniew Mateusz Baranowski,POL,male,1991-07-02,1.8,86,wrestling,0,0,0, -519061394,Zbigniew Schodowski,POL,male,1987-04-30,2.01,94,rowing,0,0,0, -538896901,Zdenek Stybar,CZE,male,1985-12-11,1.83,72,cycling,0,0,0, -988416903,Zdravko Radic,MNE,male,1979-06-24,1.93,96,aquatics,0,0,0, -879954351,Zeca,BRA,male,1994-05-16,1.7,69,football,1,0,0, -919548868,Zelimkhan Khadjiev,FRA,male,1994-05-20,1.75,80,wrestling,0,0,0, -343970933,Zelin Cai,CHN,male,1991-04-11,1.75,55,athletics,0,1,0, -916408500,Zeljko Sakic,CRO,male,1988-04-14,2.03,105,basketball,0,0,0, -225812170,Zengyi Wang,POL,male,1983-06-24,1.8,74,table tennis,0,0,0, -92162694,Zersenay Tadese,ERI,male,1982-01-01,1.6,54,athletics,0,0,0, -788878355,Zetao Ning,CHN,male,1993-03-06,1.91,80,aquatics,0,0,0, -853131625,Zeyad Mater,YEM,male,1991-12-18,1.74,73,judo,0,0,0, -980866226,Zhaina Shekerbekova,KAZ,female,1989-12-17,1.54,,boxing,0,0,0, -712955052,Zhan Beleniuk,UKR,male,1991-01-24,1.78,85,wrestling,0,1,0, -666529173,Zhanarbek Kenzheev,KGZ,male,1985-08-05,1.8,84,wrestling,0,0,0, -405483135,Zhanibek Alimkhanuly,KAZ,male,1993-04-01,1.82,,boxing,0,0,0, -943438686,Zhansay Smagulov,KAZ,male,1992-09-26,1.69,66,judo,0,0,0, -634255666,Zhanyl Okoeva,KGZ,female,1993-11-15,1.65,48,weightlifting,0,0,0, -989437678,Zhao Juan Meng,HKG,female,1989-12-14,1.7,60,cycling,0,0,0, -162328031,Zhazira Zhapparkul,KAZ,female,1993-12-22,1.55,69,weightlifting,0,1,0, -548518238,Zhe Yang,CHN,male,1991-07-14,1.87,105,weightlifting,0,0,0, -315308490,Zhehui Zhang,CHN,female,1988-01-17,1.77,76,judo,0,0,0, -167115740,Zhelin Wang,CHN,male,1994-01-20,2.14,100,basketball,0,0,0, -448660080,Zhen Wang,CHN,male,1989-06-26,1.72,65,cycling,0,0,0, -920733515,Zhen Wang,CHN,male,1991-08-24,1.75,55,athletics,1,0,0, -604655983,Zhen Zeng,CHN,female,1993-11-28,1.7,61,aquatics,0,1,0, -925389312,Zhendong Wang,CHN,male,1991-01-11,1.8,55,athletics,0,0,0, -659569127,Zheng Wang,CHN,female,1987-12-14,1.75,105,athletics,0,0,0, -60255358,Zheng Wen Quah,SIN,male,1996-09-29,1.79,79,aquatics,0,0,0, -272027054,Zhenye Xie,CHN,male,1993-08-17,1.84,78,athletics,0,0,0, -756808595,Zhifang Zhao,CHN,female,1994-08-11,1.68,57,basketball,0,0,0, -123124501,Zhiwei Deng,CHN,male,1988-02-01,1.88,120,wrestling,0,0,0, -484683254,Zhiwei Wang,CHN,male,1988-07-18,1.78,77,shooting,0,0,0, -71451677,Zhiwen He,ESP,male,1962-05-31,1.73,73,table tennis,0,0,0, -334126873,Zhiyong Shi,CHN,male,1993-10-10,1.68,69,weightlifting,1,0,0, -366579245,Zhongrong Cao,CHN,male,1981-11-03,1.8,73,modern pentathlon,0,0,0, -839669919,Zhuhao Li,CHN,male,1999-01-09,1.85,76,aquatics,0,0,0, -449290079,Zhuldyz Eshimova,KAZ,female,1988-01-02,1.52,48,wrestling,0,0,0, -105609876,Zi He,CHN,female,1990-12-10,1.6,52,aquatics,0,1,0, -955970530,Zi Liang Derek Wong,SIN,male,1989-01-13,1.76,69,badminton,0,0,0, -807355678,Ziao Qiu,CHN,male,1998-08-30,1.82,67,aquatics,0,0,0, -425868187,Zibei Yan,CHN,male,1995-10-12,1.9,75,aquatics,0,0,0, -560564596,Zicheng Hui,CHN,male,1989-06-02,1.77,70,shooting,0,0,0, -875746801,Zied Ait Ouagram,MAR,male,1988-12-18,1.91,75,wrestling,0,0,0, -765883125,Zigismunds Sirmais,LAT,male,1992-05-06,1.9,95,athletics,0,0,0, -192304802,Zihan Zhao,CHN,female,1993-09-04,1.72,62,aquatics,0,0,0, -84587289,Zinaida Sendriute,LTU,female,1984-12-20,1.88,95,athletics,0,0,0, -274387882,Ziv Kalontarov,ISR,male,1997-01-15,1.85,71,aquatics,0,0,0, -782719758,Ziva Dvorsak,SLO,female,1991-07-09,1.68,70,shooting,0,0,0, -428778432,Zivile Vaiciukeviciute,LTU,female,1996-04-03,1.64,54,athletics,0,0,0, -593183472,Zivko Gocic,SRB,male,1982-08-22,1.93,93,aquatics,1,0,0, -799874941,Zixia Ou,CHN,female,1995-09-24,1.68,61,hockey,0,0,0, -47822121,Ziyu Zhang,AUS,female,1990-12-10,1.62,70,table tennis,0,0,0, -432416881,Zlatko Horvat,CRO,male,1984-09-25,1.79,86,handball,0,0,0, -446963221,Zoe Arancini,AUS,female,1991-07-14,1.7,70,aquatics,0,0,0, -499603226,Zoe Buckman,AUS,female,1988-12-21,1.68,50,athletics,0,0,0, -836633838,Zoe Lee,GBR,female,1985-12-15,1.76,70,rowing,0,1,0, -634140075,Zoe Stevenson,NZL,female,1991-06-19,1.83,74,rowing,0,0,0, -343671816,Zoe de Toledo,GBR,female,1987-07-17,1.72,58,rowing,0,1,0, -371106012,Zohar Shikler,ISR,female,1997-07-08,1.78,61,aquatics,0,0,0, -352983859,Zohir Kedache,ALG,male,1986-03-02,1.78,,boxing,0,0,0, -424586991,Zohra Ez Zahraoui,MAR,female,1983-11-18,1.65,,boxing,0,0,0, -211176854,Zoi Kontogianni,GRE,female,1997-09-19,1.65,47,gymnastics,0,0,0, -875374176,Zokhid Kenjaev,UZB,male,1992-03-30,1.68,61,table tennis,0,0,0, -495365659,Zoltan Adam Harcsa,HUN,male,1992-11-20,1.84,,boxing,0,0,0, -672182746,Zoltan Kovago,HUN,male,1979-04-10,2.04,132,athletics,0,0,0, -412827228,Zorana Arunovic,SRB,female,1986-11-22,1.68,90,shooting,0,0,0, -724419150,Zouhair Aouad,BRN,male,1989-04-07,1.75,69,athletics,0,0,0, -281890328,Zoulehia Abzetta Dabonne,CIV,female,1992-12-15,1.75,57,judo,0,0,0, -230998458,Zoya Ananchenko,KAZ,female,1996-09-05,1.65,67,canoe,0,0,0, -778588793,Zsanett Nemeth,HUN,female,1994-01-21,1.75,80,wrestling,0,0,0, -640253635,Zsofia Csonka,HUN,female,1983-09-12,1.64,89,shooting,0,0,0, -999437858,Zsofia Erdelyi,HUN,female,1987-12-10,1.64,53,athletics,0,0,0, -46916465,Zsofia Foldhazi,HUN,female,1993-06-09,1.7,54,modern pentathlon,0,0,0, -738530209,Zsofia Kovacs,HUN,female,1988-02-07,1.8,58,triathlon,0,0,0, -499425013,Zsofia Kovacs,HUN,female,2000-04-06,1.58,49,gymnastics,0,0,0, -862285226,Zsombor Berecz,HUN,male,1986-04-26,1.95,95,sailing,0,0,0, -739315046,Zsuzsanna Jakabos,HUN,female,1989-04-03,1.85,70,aquatics,0,0,0, -600541319,Zurabi Datunashvili,GEO,male,1991-06-18,1.83,75,wrestling,0,0,0, -801825063,Zurabi Iakobishvili,GEO,male,1992-02-04,1.71,68,wrestling,0,0,0, -265605954,Zurian Hechavarria,CUB,female,1995-08-10,1.64,58,athletics,0,0,0, -214461847,Zuzana Hejnova,CZE,female,1986-12-19,1.73,63,athletics,0,0,0, -88361042,di Xiao,CHN,male,1991-05-14,1.85,100,wrestling,0,0,0, -900065925,le Quoc Toan Tran,VIE,male,1989-04-05,1.6,56,weightlifting,0,0,0, -711404576,le Roux Hamman,RSA,male,1992-01-06,1.85,70,athletics,0,0,0, \ No newline at end of file diff --git a/docs/javascript/display.md b/docs/javascript/display.md deleted file mode 100644 index a9025bac6..000000000 --- a/docs/javascript/display.md +++ /dev/null @@ -1,154 +0,0 @@ -# JavaScript: Display - -The built-in `display` function displays the specified value. - -```js echo -const x = Math.random(); - -display(x); -``` - -If you pass `display` a DOM element or node, it will be inserted directly into the page. Use this technique to render dynamic displays of data, such as charts and tables. - - - -```js echo -const span = document.createElement("span"); -span.appendChild(document.createTextNode("Your lucky number is ")); -span.appendChild(document.createTextNode(Math.floor(Math.random () * 10))); -span.appendChild(document.createTextNode("!")); -display(span); -``` - -You can create DOM elements using the standard [DOM API](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction) or a helper library of your choosing. For example, the above can be written using [Hypertext Literal](../lib/htl) as: - -```js echo -display(html`Your lucky number is ${Math.floor(Math.random () * 10)}!`); -``` - -You can call `display` multiple times to display multiple values. Values are displayed in the order they are received. Previously-displayed values will be cleared when the associated code block or inline expression is re-run. - -```js echo -for (let i = 0; i < 5; ++i) { - display(i); -} -``` - -The `display` function returns the passed-in value. You can display any value (any expression) in code, not only top-level variables; use this as an alternative to `console.log` to debug your code. - -```js echo -const y = display(Math.random()); -``` - -The value of `y` is ${y}. - -```md -The value of `y` is ${y}. -``` - -When the value passed to `display` is not a DOM element or node, the behavior of `display` depends on whether it is called within a fenced code block or an inline expression. In fenced code blocks, `display` will use the [Observable Inspector](https://github.com/observablehq/inspector). - -```js echo -display([1, 2, 3]); -``` - -In inline expressions, `display` will coerce non-DOM values to strings and concatenate iterables. - -${display([1, 2, 3])} - -```md -${display([1, 2, 3])} -``` - -## Implicit display - -JavaScript expression fenced code blocks are implicitly wrapped with a call to [`display`](#display(value)). For example, this arithmetic expression displays implicitly: - -```js echo -1 + 2 // implicit display -``` - -Implicit display only applies to expression code blocks, not program code blocks: the value won’t implicitly display if you add a semicolon. (Watch out for [Prettier](https://prettier.io/)!) - -```js echo -1 + 2; // no implicit display -``` - -Implicit display also doesn’t apply if you reference the `display` function explicitly (_i.e._, we wouldn’t want to show `2` twice below). - -```js echo -display(1), display(2) // no implicit display -``` - -The same is true for inline expressions `${…}`. - -${1 + 2} - -```md -${1 + 2} -``` - -${display(1), display(2)} - -```md -${display(1), display(2)} -``` - -## Responsive display - -In Markdown, the built-in `width` reactive variable represents the current width of the main element. This can be a handy thing to pass, say, as the **width** option to [Observable Plot](../lib/plot). - -```html echo -The current width is ${width}. -``` - -```js -import {resize} from "npm:@observablehq/stdlib"; -``` - -(Internally, `width` is implemented by [`Generators.width`](../lib/generators#width(element)).) - -For more control, or in a [grid](../css/grid) where you want to respond to either width or height changing, use the built-in `resize` helper. This takes a render function which is called whenever the width or height [changes](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), and the element returned by the render function is inserted into the DOM. - -```html echo -
-
- ${resize((width) => `This card is ${width}px wide.`)} -
-
-``` - -If your container defines a height, such as `240px` in the example below, then you can use both the `width` and `height` arguments to the render function: - -```html echo -
-
- ${resize((width, height) => Plot.barY([9, 4, 8, 1, 11, 3, 4, 2, 7, 5]).plot({width, height}))} -
-
- ${resize((width, height) => Plot.barY([3, 4, 2, 7, 5, 9, 4, 8, 1, 11]).plot({width, height}))} -
-
-``` - -
If you are using resize with both width and height and see nothing rendered, it may be because your parent container does not have its own height specified. When both arguments are used, the rendered element is implicitly position: absolute to avoid affecting the size of its parent and causing a feedback loop.
- -## display(*value*) - -If `value` is a DOM node, adds it to the page. Otherwise, converts the given `value` to a suitable DOM node and displays that instead. Returns the given `value`. - -The `display` function is scoped to each code block, meaning that the `display` function is a closure bound to where it will display on the page. But you can capture a code block’s `display` function by assigning it to a [top-level variable](./reactivity): - -```js echo -const displayThere = display; -``` - -Then you can reference it from other cells: - -```js echo -Inputs.button("Click me", {value: 0, reduce: (i) => displayThere(++i)}) -``` - -## view(*element*) - -The [`view` function](./inputs#viewelement) is a special type of display function that inserts the given DOM *element* (typically an input), then returns its corresponding value [generator](./generators) via [`Generators.input`](../lib/generators#input(element)). When the user interacts with the input, this triggers the [reactive evaluation](reactivity) of all the JavaScript code that reference this value. diff --git a/docs/javascript/foo.js b/docs/javascript/foo.js deleted file mode 100644 index 9d7381d29..000000000 --- a/docs/javascript/foo.js +++ /dev/null @@ -1 +0,0 @@ -export const foo = 42; diff --git a/docs/javascript/generators.md b/docs/javascript/generators.md deleted file mode 100644 index f8101dd49..000000000 --- a/docs/javascript/generators.md +++ /dev/null @@ -1,84 +0,0 @@ -# JavaScript: Generators - -Values that change over time, such as interactive inputs and animation parameters, can represented as [async generators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator). When a top-level generator is declared, code in other blocks sees the generator’s latest yielded value and runs whenever the generator yields a new value. - - - -For example, here is a generator that increments once a second: - -```js echo -const j = (async function* () { - for (let j = 0; true; ++j) { - yield j; - await new Promise((resolve) => setTimeout(resolve, 1000)); - } -})(); -``` - -The value of j is: ${j}. - -```md -The value of j is: ${j}. -``` - -If the generator is synchronous, the generator will yield every animation frame, which is typically 60 frames per second: - -```js echo -const i = (function* () { - for (let i = 0; true; ++i) { - yield i; - } -})(); -``` - -The value of i is: ${i}. - -```md -The value of i is: ${i}. -``` - -As another example, you can use the built-in [`Generators.observe`](<../lib/generators#observe(change)>) to represent the current pointer coordinates: - -```js echo -const pointer = Generators.observe((change) => { - const pointermoved = (event) => change([event.clientX, event.clientY]); - addEventListener("pointermove", pointermoved); - change([0, 0]); - return () => removeEventListener("pointermove", pointermoved); -}); -``` - -Pointer is: ${pointer.map(Math.round).join(", ")}. - -```md -Pointer is: ${pointer.map(Math.round).join(", ")}. -``` - -Here is a WebSocket that listens for Blockchain transactions: - -```js echo -const socket = new WebSocket("wss://ws.blockchain.info/inv"); -invalidation.then(() => socket.close()); -socket.addEventListener("open", () => socket.send(JSON.stringify({op: "unconfirmed_sub"}))); -const message = Generators.observe((change) => { - const messaged = (event) => change(JSON.parse(event.data)); - socket.addEventListener("message", messaged); - return () => socket.removeEventListener("message", messaged); -}); -``` - -```js echo -message.x // the most recently reported transaction -``` - -And here’s an HTML input element using [`Generators.input`](<../lib/generators#input(element)>): - -```js echo -const nameInput = display(document.createElement("input")); -const name = Generators.input(nameInput); -``` - -```js echo -name -``` diff --git a/docs/javascript/imports.md b/docs/javascript/imports.md deleted file mode 100644 index 57f6b0d3d..000000000 --- a/docs/javascript/imports.md +++ /dev/null @@ -1,128 +0,0 @@ -# JavaScript: Imports - -You can load a library using an `import` statement. For example: - -```js echo -import confetti from "npm:canvas-confetti"; -``` - -
Thanks to reactivity, imports can live in a JavaScript block anywhere on the page. But by convention, imports are commonly placed at the top of source files for readability.
- -You can use an imported library anywhere on the page. - -```js echo -Inputs.button("Throw confetti!", {reduce: () => confetti()}) -``` - -## npm imports - -An `npm:` specifier, as shown above, denotes that the imported library will be loaded from npm rather than from `node_modules`. You don’t have to install imported libraries beforehand — just import, and the cloud shall provide. (This convention is also [used by Deno](https://docs.deno.com/runtime/manual/node/npm_specifiers).) - -Under the hood, `npm:` imports are powered by [jsDelivr’s esm.run CDN](https://www.jsdelivr.com/esm). The import above is thus equivalent to: - -```js run=false -import confetti from "https://cdn.jsdelivr.net/npm/canvas-confetti/+esm"; -``` - -
We plan on supporting importing from node_modules using bare module specifiers (e.g., import confetti from "canvas-confetti"). If you’d like this feature, please upvote #360.
- -To load a specific version of a library, add a semver range: - -```js run=false -import confetti from "npm:canvas-confetti@1"; -``` - -To load a specific entry point, add a slash and the desired path: - -```js run=false -import confetti from "npm:canvas-confetti@1/dist/confetti.module.mjs"; -``` - -If you’re having difficulty getting an import working, it may help to browse the package and see what files are available as well as what’s exported in the `package.json`. You can browse the contents of a published module via jsDelivr; for example, for `canvas-confetti` see . - -## Local imports - -In addition to npm, you can import JavaScript from local modules. This is useful for organizing your code: you can move JavaScript out of Markdown and create components and helpers that can be imported across multiple pages. This also means you can write unit tests for your code, and share code with any other web applications. - -For example, if this is `foo.js`: - -```js run=false -export const foo = 42; -``` - -Then you can say - -```js echo -import {foo} from "./foo.js"; -``` - -and the imported value of `foo` is: ${foo}. - -Observable Framework automatically watches imported local modules during preview, so any changes to these files will instantly update in the browser via hot module replacement. - -
While there is reactivity across JavaScript code blocks in Markdown, there’s no reactivity within a JavaScript module. However, you can write async functions and generator functions to define reactive variables. And you can import the Observable standard library into local modules, so you can reference files and use other standard library features.
- -## Module preloads - -During build, Observable Framework will resolve the current exact version of the imported library from npm. Importing `npm:canvas-confetti` is thus equivalent to: - -```js run=false -import confetti from "https://cdn.jsdelivr.net/npm/canvas-confetti@1.9.2/+esm"; -``` - -Version resolution locks the version of imported libraries so you don’t have to worry about new releases breaking your built site in the future. At the same time, you’ll conveniently get the latest version of libraries during local development and the next time you build. - -In addition to resolving versions of directly-imported modules, Observable Framework recursively resolves dependencies, too! All transitively imported modules are automatically preloaded, greatly improving page load speed because the browser requests all imported modules in parallel. - -```html run=false - -``` - -
We’d also like to download imported modules from the CDN during build, making the built site entirely self-contained; see #20. This would further enable subresource integrity hashes; see #306.
- -## Implicit imports - -For convenience, Observable Framework provides recommended libraries by default in Markdown. These implicit imports are only evaluated if you reference the corresponding symbol and hence don’t add overhead if you don’t use them; for example, D3 won’t be loaded unless you have an unbound reference to `d3`. - -Click on any of the imported symbols below to learn more. - -
import {FileAttachment} from "npm:@observablehq/stdlib";
-
import {Generators} from "npm:@observablehq/stdlib";
-
import {Mutable} from "npm:@observablehq/stdlib";
-
import dot from "npm:@observablehq/dot";
-
import * as duckdb from "npm:@duckdb/duckdb-wasm";
-
import {DuckDBClient} from "npm:@observablehq/duckdb";
-
import * as Inputs from "npm:@observablehq/inputs";
-
import mapboxgl from "npm:mapbox-gl";
-
import mermaid from "npm:@observablehq/mermaid";
-
import * as Plot from "npm:@observablehq/plot";
-
import SQLite from "npm:@observablehq/sqlite";
-
import {SQLiteDatabaseClient} from "npm:@observablehq/sqlite";
-
import tex from "npm:@observablehq/tex";
-
import * as Arrow from "npm:apache-arrow";
-
import * as aq from "npm:arquero";
-
import * as d3 from "npm:d3";
-
import * as htl from "npm:htl";
-
import {html} from "npm:htl";
-
import {svg} from "npm:htl";
-
import * as L from "npm:leaflet";
-
import _ from "npm:lodash";
-
import * as topojson from "npm:topojson-client";
- -## Require - -If you’re familiar with Observable notebooks, you may have noticed that we don’t mention `require` above. We recommend that you avoid `require` as the underlying Asynchronous Module Definition (AMD) convention has been made obsolete by standard imports in JavaScript, and AMD tends to be implemented inconsistently by libraries. - -If you really need `require`, you can import it from [d3-require](https://github.com/d3/d3-require): - -```js run=false -import {require} from "npm:d3-require"; -``` - -Then you can call `require` like so: - -```js run=false -const d3 = require("d3@5"); -``` - -
We recommend that you use import instead of require: it’s the modern standard, more reliable, more forward-looking, and faster.
diff --git a/docs/javascript/inputs.md b/docs/javascript/inputs.md deleted file mode 100644 index c3cbc9c30..000000000 --- a/docs/javascript/inputs.md +++ /dev/null @@ -1,156 +0,0 @@ -# JavaScript: Inputs - -Inputs are user-interface elements that accept data from a user. In a data app, inputs might prompt a viewer to: - -- Select a URL from a dropdown list to view site traffic for a specific page -- Interactively subset a table of users by typing in a domain name -- Choose a date range to explore software downloads over a period of interest - -Inputs can be displayed with the [`view`](#view(element)) function, which is a special type of [display](display) function that additionally returns the input’s value generator, which can then be assigned to a variable for use elsewhere. - -For example, the radio input below prompts a user to select one from a series of values: - -```js echo -const team = view(Inputs.radio(["Metropolis Meteors", "Rockford Peaches", "Bears"], {label: "Favorite team:", value: "Metropolis Meteors"})); -``` - -The `team` variable in this example now reactively updates when the user interacts with the radio input, triggering a new evaluation of the dependent code. Select different teams in the radio input above to update the text. - -```md -My favorite baseball team is the ${team}! -``` - -My favorite baseball team is the ${team}! - -## view(*element*) - -The `view` function used above does two things: (1) it displays the given DOM *element*, then (2) returns its corresponding value [generator](./generators), using [`Generators.input`](../lib/generators#input(element)) under the hood. Use `view` to display an input while also exposing the input’s value as a [reactive variable](./reactivity). You can reference the input’s value anywhere, and the code will run whenever the input changes. - -The `view` function is not limited to Observable Inputs. For example, here is a simple range slider created with [html](../lib/htl): - -```js echo -const topn = view(html``); -``` - -Now we can reference `topn` elsewhere, for example to control how many groups are displayed in a sorted bar chart: - -```js echo -Plot.plot({ - marginLeft: 50, - marks: [ - Plot.barX(olympians, Plot.groupY({x: "count"}, {y: "nationality", sort: {y: "x", reverse: true, limit: topn}})), - Plot.ruleX([0]) - ] -}) -``` - -## Observable Inputs - -The [Observable Inputs](../lib/inputs) library implements commonly used inputs — buttons, sliders, dropdowns, tables, and the like — as functions. Each input function returns an HTML element that emits *input* events for compatibility with [`view`](#view(element)) and [Generators.input](../lib/generators#input(element)). - -### Usage - -Inputs are generally declared as follows: - -```js run=false -const value = view(Inputs.inputName(...)); -``` - -where *value* is the named input value, and *inputName* is the input name (like `radio`, `button`, or `checkbox`). See the full list of [available inputs](../lib/inputs) with live examples, or visit the [Observable Inputs API reference](https://github.com/observablehq/inputs/blob/main/README.md) for more detail and specific input options. - -Options differ between inputs. For example, the checkbox input accepts options to disable all or certain values, sort displayed values, and only display repeated values *once* (among others): - -```js echo -const checkout = view(Inputs.checkbox(["B","A","Z","Z","F","D","G","G","G","Q"], {disabled: ["F", "Q"], sort: true, unique: true, value: "B", label: "Choose categories:"})); -``` - -```js echo -checkout -``` - -### Analysis with Observable Inputs - -To demonstrate Observable Inputs for data analysis, we’ll use the `olympians` sample dataset containing records on athletes that participated in the 2016 Rio olympics (from [Matt Riggott](https://flother.is/2017/olympic-games-data/)). - -```js echo -Inputs.table(olympians) -``` - -Here, we create a subset of columns to simplify outputs: - -```js echo -const columns = olympians.columns.slice(1, -1); // hide the id and info column to simplify -``` - -Now let’s wire up our data to a search input. Type whatever you want into the box and search will find matching rows in the data which we can then use in a table below. - -A few examples to try: **[mal]** will match *sex* = male, but also names that start with “mal”, such as Anna Malova; **[1986]** will match anyone born in 1986 (and a few other results); **[USA gym]** will match USA’s gymnastics team. Each space-separated term in your query is prefix-matched against all columns in the data. - -```js echo -const search = view(Inputs.search(olympians, { - datalist: ["mal", "1986", "USA gym"], - placeholder: "Search athletes" -})) -``` - -```js echo -Inputs.table(search, {columns}) -``` - -If you like, you can sort the table columns by clicking on the column name. Click once to sort ascending, and click again to sort descending. Note that the sort order is temporary: it’ll go away if you reload the page. Specify the column name as the *sort* option above if you want this order to persist. - -For a more structured approach, we can use a select input to choose a sport, then *array*.filter to determine which rows are shown in the table. The *sort* and *unique* options tell the input to show only distinct values and to sort them alphabetically. - -```js echo -const sport = view(Inputs.select(olympians.map(d => d.sport), {sort: true, unique: true, label: "sport"})); -``` - -```js echo -const selectedAthletes = display(olympians.filter(d => d.sport === sport)); -``` - -```js echo -Inputs.table(selectedAthletes, {columns}) -``` - -To visualize a column of data as a histogram, use the value of the select input with [Observable Plot](https://observablehq.com/plot/). - -```js echo -Plot.plot({ - x: { - domain: [1.3, 2.2] - }, - marks: [ - Plot.rectY(selectedAthletes, Plot.binX({y: "count"}, {x: "height", fill: "steelblue"})), - Plot.ruleY([0]) - ] -}) -``` - -You can also pass grouped data to the select input as a [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) from key to array of values, say using [d3.group](https://d3js.org/d3-array/group). The value of the select input in this mode is the data in the selected group. Note that *unique* is no longer required, and that *sort* works here, too, sorting the keys of the map returned by d3.group. - -```js echo -const groups = display(d3.group(olympians, d => d.sport)); -``` - -```js echo -const sportAthletes = view(Inputs.select(groups, {sort: true, label: "sport"})); -``` - -```js echo -Inputs.table(sportAthletes, {columns}) -``` - -The select input works well for categorical data, such as sports or nationalities, but how about quantitative dimensions such as height or weight? Here’s a range input that lets you pick a target weight; we then filter the table rows for any athlete within 10% of the target weight. Notice that some columns, such as sport, are strongly correlated with weight. - -```js echo -const weight = view(Inputs.range(d3.extent(olympians, d => d.weight), {step: 1, label: "weight (kg)"})); -``` - -```js echo -Inputs.table(olympians.filter(d => d.weight < weight * 1.1 && weight * 0.9 < d.weight), {sort: "weight", columns}) -``` - -### License - -Observable Inputs are released under the [ISC license](https://github.com/observablehq/inputs/blob/main/LICENSE) and depend only on [Hypertext Literal](../lib/htl), our tagged template literal for safely generating dynamic HTML. If you are interested in contributing or wish to report an issue, please see [our repository](https://github.com/observablehq/inputs). For recent changes, please see our [release notes](https://github.com/observablehq/inputs/releases). \ No newline at end of file diff --git a/docs/javascript/mutables.md b/docs/javascript/mutables.md deleted file mode 100644 index 2c41293ec..000000000 --- a/docs/javascript/mutables.md +++ /dev/null @@ -1,42 +0,0 @@ -# JavaScript: Mutables - -Normally, only the code block that declares a [top-level variable](./reactivity) can define it or assign to it. You can however use the `Mutable` function to declare a mutable generator, allowing other code to mutate the generator’s value. - -`Mutable` is available by default in Markdown but you can import it explicitly like so: - -```js echo -import {Mutable} from "npm:@observablehq/stdlib"; -``` - -Then to use it: - -```js echo -const count = Mutable(0); -const increment = () => ++count.value; -const reset = () => count.value = 0; -``` - -In other code, you can now create buttons to increment and reset the count like so: - -```js echo -Inputs.button([["Increment", increment], ["Reset", reset]]) -``` - - - -Count is: ${html`${count}`}. - -```md -Count is: ${html`${count}`}. -``` - -Within the defining code block, `count` is a generator and `count.value` can be read and written to as desired; in other code, `count` is the generator’s current value. Other code that references `count` will re-run automatically whenever `count.value` is reassigned — so be careful you don’t cause an infinite loop! diff --git a/docs/javascript/promises.md b/docs/javascript/promises.md deleted file mode 100644 index 6e248b5b4..000000000 --- a/docs/javascript/promises.md +++ /dev/null @@ -1,17 +0,0 @@ -# JavaScript: Promises - -When code refers to a promise defined in another code block, the referencing code implicitly awaits the promise. - -Most often, promises are used to load files, fetch data from a remote server, or query a database. TK Elaborate some more and give more specific examples of promises, including `FileAttachment`, `fetch`, `db.sql`, waiting to click on a button. - -As a contrived example, within the block below, `hello` is a promise that resolves via `setTimeout`; if you reference `hello` from another code block or expression, the other code won’t run until the timeout fires and will see `hello` as a string. - -```js echo -const hello = new Promise((resolve) => { - setTimeout(() => { - resolve("hello"); - }, 1000); -}); -``` - -Hello is: ${hello}. diff --git a/docs/javascript/reactivity.md b/docs/javascript/reactivity.md deleted file mode 100644 index 4ed39d1ae..000000000 --- a/docs/javascript/reactivity.md +++ /dev/null @@ -1,78 +0,0 @@ -# JavaScript: Reactivity - -Observable Framework uses the open-source [Observable Runtime](https://github.com/observablehq/runtime) to run JavaScript in Markdown reactively: in topological order as determined by [top-level variable](#top-level-variables) references, as in a spreadsheet. For example, here we reference variables `x` and `y` even though they are defined in a code block below: - -```js echo -x + y -``` - -When code (such as `x + y`) references top-level variables (such as `x` and `y`) defined by other code, the *referencing* code automatically runs after the *defining* code. Since code runs independently of its order on the page, giving you the flexibility to arrange your code however you like. - -## Top-level variables - -A top-level variable declared in a JavaScript fenced code block can be referenced in another code block or inline expression on the same page. So if you say: - -```js echo -const x = 1, y = 2; -``` - -Then you can reference `x` and `y` elsewhere on the page (with values ${x} and ${y}, respectively). Top-level variable declarations are effectively [hoisted](https://developer.mozilla.org/en-US/docs/Glossary/Hoisting); you can reference variables even if the defining code block appears later on the page, and code runs in topological rather than top-down document order. If multiple blocks define top-level variables with the same name, references to these variables will throw a duplicate definition error. - -To prevent variables from being visible outside the current block, make them local with a block statement: - -```js echo -{ - const z = 3; -} -``` - -## Invalidation - -With reactive evaluation, code blocks can run multiple times, say in response to interaction or streaming data. If you need to “clean up” after a code block, say to cancel an animation loop or close a socket, use the `invalidation` promise to register a disposal hook. - -For example, the cell below uses `requestAnimationFrame` to animate a canvas. The `invalidation` promise is used to cancel the old animation when a new animation starts. Try quickly clicking the button below. - -```js -const clicks = view(Inputs.button("Click", {label: "Run cell"})); -const colors = ["#4269d0", "#efb118", "#ff725c", "#6cc5b0"]; -const duration = 2000; -``` - - - -```js echo -const canvas = document.querySelector("#canvas"); -const context = canvas.getContext("2d"); -const color = colors[clicks % 4]; // cycle through colors on click -const start = performance.now(); // when the animation started - -let frame = requestAnimationFrame(function tick(now) { - const t = Math.min(1, (now - start) / duration); - context.fillStyle = color; - context.fillRect(0, 0, t * canvas.width, canvas.height); - if (t < 1) frame = requestAnimationFrame(tick); -}); - -invalidation.then(() => cancelAnimationFrame(frame)); -``` - -## Visibility - -The `visibility` function returns a promise that resolves when the code block’s display root is visible. This allows you to defer animation or computation until the content scrolls into view. If you missed the animation, try reloading the page and then scrolling down. - - - -```js echo -await visibility(); // wait until this node is visible - -const canvas = document.querySelector("#canvas2"); -const context = canvas.getContext("2d"); -const start = performance.now(); - -let frame = requestAnimationFrame(function tick(now) { - const t = Math.min(1, (now - start) / duration); - context.fillStyle = "#a463f2"; - context.fillRect(0, 0, t * canvas.width, canvas.height); - if (t < 1) frame = requestAnimationFrame(tick); -}); -``` diff --git a/docs/jsx.md b/docs/jsx.md new file mode 100644 index 000000000..43d0033f2 --- /dev/null +++ b/docs/jsx.md @@ -0,0 +1,145 @@ +# JSX + +[React](https://react.dev/) is a popular and powerful library for building interactive interfaces. React is typically written in [JSX](https://react.dev/learn/writing-markup-with-jsx), an extension of JavaScript that allows HTML-like markup. To use JSX and React, declare a JSX fenced code block (\```jsx). You can alternatively use a TSX fenced code block (\```tsx) if using JSX with [TypeScript](./javascript#type-script). + +For example, to define a `Greeting` component that accepts a `subject` prop: + +````md +```jsx +function Greeting({subject}) { + return
Hello, {subject}!
+} +``` +```` + +```jsx +function Greeting({subject}) { + return
Hello, {subject}!
+} +``` + +Then call the built-in display function to render content: + +````md +```jsx +display(); +``` +```` + +```jsx +display(); +``` + +You can combine React with Framework’s built-in [reactivity](./reactivity) by passing reactive values as props. Try changing the `name` below. + +```jsx echo +display(); +``` + +```js echo +const name = view(Inputs.text({label: "Name", placeholder: "Anonymous"})); +``` + +You can use hooks such as [`useState`](https://react.dev/reference/react/useState), [`useEffect`](https://react.dev/reference/react/useEffect), and [`useRef`](https://react.dev/reference/react/useRef). The `Counter` component below counts the number of times you click the button. + +```jsx echo +function Counter() { + const [count, setCount] = React.useState(0); + return ( + + ); +} +``` + +```jsx echo +display(); +``` + +React is available by default as `React` in Markdown, but you can import it explicitly like so: + +```js run=false +import * as React from "npm:react"; +``` + +If you prefer, you can import specific symbols, such as hooks: + +```js run=false +import {useState} from "npm:react"; +``` + +React DOM is also available as `ReactDOM` in Markdown, or can be imported as: + +```js run=false +import * as ReactDOM from "npm:react-dom"; +``` + +You can define components in JSX modules. For example, if this were `components/Card.jsx`: + +```jsx run=false +export function Card({title, children} = {}) { + return ( +
+ {title ?

{title}

: null} + {children} +
+ ); +} +``` + +You could then import the `Card` component as: + +```js echo +import {Card} from "./components/Card.js"; +``` + +
+ +Use the `.js` file extension when importing JSX (`.jsx`) modules; JSX is transpiled to JavaScript during build. + +
+ +And, as before, you can render a card using the display function: + +```jsx echo +display(If you can read this, success!); +``` + +Within a JSX fenced code block, the [display function](./javascript#explicit-display) behaves a bit differently from a JavaScript fenced code block or inline expression: +it replaces the previously-displayed content, if any. In addition, JSX fenced code blocks do not support implicit display; content can only be displayed explicitly. + +
+ +In the future we intend to support other JSX-compatible frameworks, such as Preact. We are also working on server-side rendering with client-side hydration; please upvote [#931](https://github.com/observablehq/framework/issues/931) if you are interested in this feature. + +
+ +## Inline expressions + +JSX is not currently supported in inline expression `${…}`; only JavaScript is allowed in inline expressions. However, you can declare a detached root using [`createRoot`](https://react.dev/reference/react-dom/client/createRoot): + +```js echo +const node = document.createElement("SPAN"); +const root = ReactDOM.createRoot(node); +``` + +Then use a JSX code block to render the desired content into the root: + +```jsx echo +root.render(<>Hello, {name || "anonymous"}!); +``` + +Lastly, interpolate the root into the desired location with an inline expression: + +
+

Rendering into an inline expression

+ ${node} +
+ +```md run=false +
+

Rendering into an inline expression

+ ${node} +
+``` diff --git a/docs/lib/arquero.md b/docs/lib/arquero.md index 05c003f93..0db40ef2f 100644 --- a/docs/lib/arquero.md +++ b/docs/lib/arquero.md @@ -1,8 +1,17 @@ + + # Arquero [Arquero](https://uwdata.github.io/arquero/) is a JavaScript library for “query processing and transformation of array-backed data tables.” Arquero is available by default as `aq` in Markdown, but you can import it explicitly like so: -```js echo +```js run=false import * as aq from "npm:arquero"; ``` @@ -16,17 +25,16 @@ const dt = aq.table({ }); ``` -Arquero is column-oriented: each column is an array of values of a given type. Here, numbers representing hours of sunshine per month. But an Arquero table is also iterable and as such, its contents can be displayed with [`Inputs.table`](/lib/inputs#table). +Arquero is column-oriented: each column is an array of values of a given type. Here, numbers representing hours of sunshine per month. But an Arquero table is also iterable and as such, its contents can be displayed with [`Inputs.table`](/inputs/table). ```js echo -Inputs.table(dt, {maxWidth: 640}) +Inputs.table(dt) ``` An Arquero table can also be used to make charts with [Observable Plot](./plot): ```js echo Plot.plot({ - width: Math.min(width, 640), x: {tickFormat: Plot.formatMonth()}, y: {grid: true, label: "Hours of sunshine ☀️ per month"}, marks: [ @@ -41,25 +49,25 @@ Plot.plot({ Arquero supports a range of data transformation tasks, including filter, sample, aggregation, window, join, and reshaping operations. For example, the following operation derives differences between Seattle and Chicago and sorts the months accordingly. ```js echo -const diffs = dt.derive({ - month: (d) => aq.op.row_number(), - diff: (d) => d.Seattle - d.Chicago - }) - .select("month", "diff") - .orderby(aq.desc("diff")); - -display(Inputs.table(diffs, {maxWidth: 640})); +Inputs.table( + dt.derive({ + month: (d) => aq.op.row_number(), + diff: (d) => d.Seattle - d.Chicago + }) + .select("month", "diff") + .orderby(aq.desc("diff")) +) ``` Is Seattle more correlated with San Francisco or Chicago? ```js echo -const correlations = dt.rollup({ - corr_sf: aq.op.corr("Seattle", "San Francisco"), - corr_chi: aq.op.corr("Seattle", "Chicago") -}); - -display(Inputs.table(correlations, {maxWidth: 640})); +Inputs.table( + dt.rollup({ + corr_sf: aq.op.corr("Seattle", "San Francisco"), + corr_chi: aq.op.corr("Seattle", "Chicago") + }) +) ``` We can aggregate statistics per city. The following code reshapes (or “folds”) the data into two columns _city_ & _sun_ and shows the output as objects: @@ -68,14 +76,25 @@ We can aggregate statistics per city. The following code reshapes (or “folds dt.fold(aq.all(), {as: ["city", "sun"]}) .groupby("city") .rollup({ - min: (d) => aq.op.min(d.sun), // functional form of op.min('sun') - max: (d) => aq.op.max(d.sun), - avg: (d) => aq.op.average(d.sun), - med: (d) => aq.op.median(d.sun), - // functional forms permit flexible table expressions - skew: ({sun: s}) => (aq.op.mean(s) - aq.op.median(s)) / aq.op.stdev(s) || 0 + min: aq.op.min("sun"), + max: aq.op.max("sun"), + avg: (d) => aq.op.average(d.sun), // equivalent to aq.op.average("sun") + med: (d) => aq.op.median(d.sun), // equivalent to aq.op.median("sun") + skew: ({sun}) => (aq.op.mean(sun) - aq.op.median(sun)) / aq.op.stdev(sun) }) .objects() ``` +To load an Arquero table from an Apache Arrow, Apache Parquet, CSV, TSV, or JSON file, use [`file.arquero`](../files#supported-formats) : + +```js run=false +const flights = FileAttachment("flights-200k.arrow").arquero(); +``` + +This is equivalent to: + +```js run=false +const flights = aq.loadArrow(FileAttachment("flights-200k.arrow").href); +``` + For more, see [Arquero’s official documentation](https://uwdata.github.io/arquero/). diff --git a/docs/lib/arrow.md b/docs/lib/arrow.md index e7dbedbb8..ef7a31fee 100644 --- a/docs/lib/arrow.md +++ b/docs/lib/arrow.md @@ -2,13 +2,13 @@ [Apache Arrow](https://arrow.apache.org/) “defines a language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations.” You will probably not consume it directly, but it is used by [Arquero](./arquero), [DuckDB](./duckdb), and other libraries to handle data efficiently. -To load an [Arrow IPC file](https://arrow.apache.org/docs/format/Columnar.html#format-ipc), use [`FileAttachment`](../javascript/files). +To load an [Arrow IPC file](https://arrow.apache.org/docs/format/Columnar.html#format-ipc), use [`FileAttachment`](../files). ```js echo const flights = FileAttachment("flights-200k.arrow").arrow(); ``` -This returns a [promise](../javascript/promises) to an [Arrow table](https://arrow.apache.org/docs/js/classes/Arrow_dom.Table.html). +This returns a [promise](../reactivity#promises) to an [Arrow table](https://arrow.apache.org/docs/js/classes/Arrow_dom.Table.html). ```js echo flights @@ -20,7 +20,7 @@ This table records ${flights.numRows.toLocaleString("en-US")} flights. It’s ea [...flights] ``` -Or using [`Inputs.table`](./inputs#table): +Or using [`Inputs.table`](../inputs/table): ```js echo Inputs.table(flights) @@ -60,6 +60,7 @@ Visualized with [Plot’s difference mark](https://observablehq.com/plot/marks/d ```js echo Plot.plot({ + x: {type: "utc"}, marks: [ Plot.ruleY([0]), Plot.differenceY(table, {x: "date", y: "value"}) @@ -67,9 +68,15 @@ Plot.plot({ }) ``` +
+ +The chart above specifies _x_ as a UTC scale because Apache Arrow represents dates as numbers (milliseconds since [Unix epoch]()) rather than Date objects; without this hint, Plot would assume that _date_ column is quantitative rather than temporal and produce a less legible axis. + +
+ ## Apache Parquet -The [Apache Parquet](https://parquet.apache.org/) format is optimized for storage and transfer. To load a Parquet file — such as this sample of 250,000 stars from the [Gaia Star Catalog](https://observablehq.com/@cmudig/peeking-into-the-gaia-star-catalog) — use [`FileAttachment`](../javascript/files). This is implemented using Kyle Barron’s [parquet-wasm](https://kylebarron.dev/parquet-wasm/) library. +The [Apache Parquet](https://parquet.apache.org/) format is optimized for storage and transfer. To load a Parquet file — such as this sample of 250,000 stars from the [Gaia Star Catalog](https://observablehq.com/@cmudig/peeking-into-the-gaia-star-catalog) — use [`FileAttachment`](../files). This is implemented using Kyle Barron’s [parquet-wasm](https://kylebarron.dev/parquet-wasm/) library. ```js echo const gaia = FileAttachment("gaia-sample.parquet").parquet(); @@ -85,7 +92,7 @@ gaia Inputs.table(gaia) ``` -We can [plot](../lib/plot) these stars binned by intervals of 2° to reveal the [Milky Way](https://en.wikipedia.org/wiki/Milky_Way). +We can [plot](./plot) these stars binned by intervals of 2° to reveal the [Milky Way](https://en.wikipedia.org/wiki/Milky_Way). ```js echo Plot.plot({ @@ -97,4 +104,4 @@ Plot.plot({ }) ``` -Parquet files work especially well with [DuckDB](../lib/duckdb) for in-process SQL queries. The Parquet format is optimized for this use case: data is compressed in a columnar format, allowing DuckDB to load only the subset of data needed (via [range requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests)) to execute the current query. This can give a huge performance boost when working with larger datasets. +Parquet files work especially well with [DuckDB](./duckdb) for in-process SQL queries. The Parquet format is optimized for this use case: data is compressed in a columnar format, allowing DuckDB to load only the subset of data needed (via [range requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests)) to execute the current query. This can give a huge performance boost when working with larger datasets. diff --git a/docs/lib/csv.md b/docs/lib/csv.md index 3c41c1507..efbb2d639 100644 --- a/docs/lib/csv.md +++ b/docs/lib/csv.md @@ -1,12 +1,12 @@ # Comma-separated values -To load a [comma-separated values](https://en.wikipedia.org/wiki/Comma-separated_values) (CSV) file, use [`FileAttachment`](../javascript/files). The `file.csv` and `file.tsv` methods are implemented using [D3](https://d3js.org/d3-dsv) and are based on [RFC 4180](https://datatracker.ietf.org/doc/html/rfc4180). +To load a [comma-separated values](https://en.wikipedia.org/wiki/Comma-separated_values) (CSV) file, use [`FileAttachment`](../files)`.csv`. The `csv`, `tsv`, and `dsv` method implementations are based on [RFC 4180](https://datatracker.ietf.org/doc/html/rfc4180). ```js echo const gistemp = FileAttachment("gistemp.csv").csv({typed: true}); ``` -The value of `gistemp` above is a [promise](./promises) to an array of objects. In other code blocks, the promise is resolved implicitly and hence you can refer to it as an array of objects. +The value of `gistemp` above is a [promise](../reactivity#promises) to an array of objects. In other code blocks, the promise is resolved implicitly and hence you can refer to it as an array of objects. ```js echo gistemp @@ -18,7 +18,7 @@ The column names are listed in the `columns` property: gistemp.columns ``` -You can also load a tab-separated values (TSV) file using [`FileAttachment`](../javascript/files): +You can also load a tab-separated values (TSV) file using `file.tsv`: ```js echo const capitals = FileAttachment("us-state-capitals.tsv").tsv({typed: true}); @@ -28,6 +28,12 @@ const capitals = FileAttachment("us-state-capitals.tsv").tsv({typed: true}); Inputs.table(capitals) ``` +For a different delimiter, use `file.dsv`. For example, for semicolon separated values: + +```js run=false +const capitals = FileAttachment("us-state-capitals.csv").dsv({delimiter: ";", typed: true}); +``` + ## Type coercion A common pitfall with CSV is that it is untyped: numbers, dates, booleans, and every other possible value are represented as text and there is no universal way to automatically determine the correct type. diff --git a/docs/lib/d3.md b/docs/lib/d3.md index 73b717ff9..f63101463 100644 --- a/docs/lib/d3.md +++ b/docs/lib/d3.md @@ -11,7 +11,7 @@ For example, here is an interactive [force-directed](https://github.com/d3/d3-fo ```js echo const width = 640; const height = 640; -const color = d3.scaleOrdinal(d3.schemeCategory10); +const color = d3.scaleOrdinal(d3.schemeObservable10); // Copy the data to protect against mutation by d3.forceSimulation. const links = data.links.map((d) => Object.create(d)); diff --git a/docs/lib/deckgl.md b/docs/lib/deckgl.md new file mode 100644 index 000000000..1df7e2ac8 --- /dev/null +++ b/docs/lib/deckgl.md @@ -0,0 +1,206 @@ +--- +toc: false +--- + +# deck.gl + +[deck.gl](https://deck.gl/) is a “GPU-powered framework for visual exploratory data analysis of large datasets.” You can import deck.gl’s [standalone bundle](https://deck.gl/docs/get-started/using-standalone#using-the-scripting-api) like so: + +```js echo +import deck from "npm:deck.gl"; +``` + +You can then refer to deck.gl’s various components such as `deck.DeckGL` or `deck.HexagonLayer`. Or for more concise references, you can destructure these symbols into top-level variables: + +```js echo +const {DeckGL, AmbientLight, GeoJsonLayer, HexagonLayer, LightingEffect, PointLight} = deck; +``` + +The example below is adapted [from the documentation](https://deck.gl/examples/hexagon-layer). + +
+ +## Personal injury road collisions, 2022 +### ${data.length.toLocaleString("en-US")} reported collisions on public roads + +
+
+
${colorLegend}
+
Data: Department for Transport
+
+ +
+ +```js +const coverage = view(Inputs.range([0, 1], {value: 0.5, label: "Coverage", step: 0.01})); +const radius = view(Inputs.range([500, 20000], {value: 1000, label: "Radius", step: 100})); +const upperPercentile = view(Inputs.range([0, 100], {value: 100, label: "Upper percentile", step: 1})); +``` + +The code powering this example is a bit elaborate. Let’s break it down. + +### 1. The data + +The accidentology data is loaded as a CSV file, generated by a data loader ([`dft-road-collisions.csv.sh`](https://github.com/observablehq/framework/blob/main/docs/data/dft-road-collisions.csv.sh)) using DuckDB to produce an extract from the Department for Transport dataset. The country shapes come from a [TopoJSON](./topojson) file, which we convert to GeoJSON. + +```js echo +const data = FileAttachment("../data/dft-road-collisions.csv").csv({array: true, typed: true}).then((data) => data.slice(1)); +const topo = import.meta.resolve("npm:visionscarto-world-atlas/world/50m.json"); +const world = fetch(topo).then((response) => response.json()); +const countries = world.then((world) => topojson.feature(world, world.objects.countries)); +``` + +### 2. The layout + +Using nested divs, we position a large area for the chart, and a card floating on top that will receive the title, the color legend, and interactive controls: + +````html run=false +
+ +## Personal injury road collisions, 2022 +### ${data.length.toLocaleString("en-US")} reported collisions on public roads + +
+
+
${colorLegend}
+
Data: Department for Transport
+
+ +
+```` + +The colors are represented as (red, green, blue) triplets, as expected by deck.gl. The legend is made using [Observable Plot](./plot): + +```js echo +const colorRange = [ + [1, 152, 189], + [73, 227, 206], + [216, 254, 181], + [254, 237, 177], + [254, 173, 84], + [209, 55, 78] +]; + +const colorLegend = Plot.plot({ + margin: 0, + marginTop: 20, + width: 180, + height: 35, + style: "color: white;", + x: {padding: 0, axis: null}, + marks: [ + Plot.cellX(colorRange, {fill: ([r, g, b]) => `rgb(${r},${g},${b})`, inset: 0.5}), + Plot.text(["Fewer"], {frameAnchor: "top-left", dy: -12}), + Plot.text(["More"], {frameAnchor: "top-right", dy: -12}) + ] +}); +``` + +### 3. The DeckGL instance + +We create a DeckGL instance targetting the container defined in the layout. During development & preview, this code can run several times, so we take care to clean it up each time the code block runs: + +```js echo +const deckInstance = new DeckGL({ + container, + initialViewState, + getTooltip, + effects, + controller: true +}); + +// clean up if this code re-runs +invalidation.then(() => { + deckInstance.finalize(); + container.innerHTML = ""; +}); +``` + +`initialViewState` describes the initial position of the camera: + +```js echo +const initialViewState = { + longitude: -2, + latitude: 53.5, + zoom: 5.7, + minZoom: 5, + maxZoom: 15, + pitch: 40.5, + bearing: -5 +}; +``` + +`getTooltip` generates the contents displayed when you mouse over a hexagon: + +```js echo +function getTooltip({object}) { + if (!object) return null; + const [lng, lat] = object.position; + const count = object.points.length; + return `latitude: ${lat.toFixed(2)} + longitude: ${lng.toFixed(2)} + ${count} collisions`; +} +``` + +`effects` defines the lighting: + +```js echo +const effects = [ + new LightingEffect({ + ambientLight: new AmbientLight({color: [255, 255, 255], intensity: 1.0}), + pointLight: new PointLight({color: [255, 255, 255], intensity: 0.8, position: [-0.144528, 49.739968, 80000]}), + pointLight2: new PointLight({color: [255, 255, 255], intensity: 0.8, position: [-3.807751, 54.104682, 8000]}) + }) +]; +``` + +### 4. The props + +Since some parameters are interactive, we use the `setProps` method to update the layers when their value changes: + +```js echo +deckInstance.setProps({ + layers: [ + new GeoJsonLayer({ + id: "base-map", + data: countries, + lineWidthMinPixels: 1, + getLineColor: [60, 60, 60], + getFillColor: [9, 16, 29] + }), + new HexagonLayer({ + id: "heatmap", + data, + coverage, + radius, + upperPercentile, + colorRange, + elevationScale: 50, + elevationRange: [0, 5000 * t], + extruded: true, + getPosition: (d) => d, + pickable: true, + material: { + ambient: 0.64, + diffuse: 0.6, + shininess: 32, + specularColor: [51, 51, 51] + } + }) + ] +}); +``` + +Lastly, the `t` variable controls the height of the extruded hexagons with a [generator](../reactivity#generators) (that can be reset with a button input): + +```js echo +const t = (function* () { + const duration = 1000; + const start = performance.now(); + const end = start + duration; + let now; + while ((now = performance.now()) < end) yield d3.easeCubicInOut(Math.max(0, (now - start) / duration)); + yield 1; +})(); +``` diff --git a/docs/lib/dot.md b/docs/lib/dot.md index 42da63a6b..6572ba6d5 100644 --- a/docs/lib/dot.md +++ b/docs/lib/dot.md @@ -1,4 +1,4 @@ -# DOT +# DOT (Graphviz) [DOT](https://graphviz.org/doc/info/lang.html) is a language for expressing node-link diagrams using [Graphviz](https://graphviz.org). Observable provides a `dot` tagged template literal powered by [Viz.js](https://github.com/mdaines/viz-js). This is available by default in Markdown, or you can import it like so: @@ -68,3 +68,22 @@ digraph G { end [shape = square] } ``` + +If you don’t mind losing the conveniences of the built-in wrapper such as responsive light and dark mode, you can also use Viz.js directly. For example: + +```js echo +import {instance} from "npm:@viz-js/viz"; + +const viz = await instance(); + +display( + viz.renderSVGElement({ + directed: false, + edges: [ + {tail: "a", head: "b"}, + {tail: "b", head: "c"}, + {tail: "c", head: "a"} + ] + }) +); +``` diff --git a/docs/lib/duckdb.md b/docs/lib/duckdb.md index 45adb0829..96bd2fe87 100644 --- a/docs/lib/duckdb.md +++ b/docs/lib/duckdb.md @@ -1,5 +1,7 @@ # DuckDB +
The most convenient way to use DuckDB in Observable is the built-in SQL code blocks and sql tagged template literal. Use DuckDBClient or DuckDB-Wasm directly, as shown here, if you need greater control.
+ DuckDB is “an in-process SQL OLAP Database Management System. [DuckDB-Wasm](https://github.com/duckdb/duckdb-wasm) brings DuckDB to every browser thanks to WebAssembly.” DuckDB-Wasm is available by default as `duckdb` in Markdown, but you can explicitly import it as: ```js echo @@ -12,7 +14,7 @@ For convenience, we provide a [`DatabaseClient`](https://observablehq.com/@obser import {DuckDBClient} from "npm:@observablehq/duckdb"; ``` -To get a DuckDB client, pass zero or more named tables to `DuckDBClient.of`. Each table can be expressed as a [`FileAttachment`](../javascript/files), [Arquero table](./arquero), [Arrow table](./arrow), an array of objects, or a promise to the same. For example, below we load a sample of 250,000 stars from the [Gaia Star Catalog](https://observablehq.com/@cmudig/peeking-into-the-gaia-star-catalog) as a [Apache Parquet](https://parquet.apache.org/) file: +To get a DuckDB client, pass zero or more named tables to `DuckDBClient.of`. Each table can be expressed as a [`FileAttachment`](../files), [Arquero table](./arquero), [Arrow table](./arrow), an array of objects, or a promise to the same. For file attachments, the following formats are supported: [CSV](./csv), [TSV](./csv), [JSON](../files#json), [Apache Arrow](./arrow), and [Apache Parquet](./arrow#apache-parquet). For example, below we load a sample of 250,000 stars from the [Gaia Star Catalog](https://observablehq.com/@cmudig/peeking-into-the-gaia-star-catalog) as a Parquet file: ```js echo const db = DuckDBClient.of({gaia: FileAttachment("gaia-sample.parquet")}); @@ -53,7 +55,17 @@ Plot.plot({ }) ``` -For externally-hosted data, you can create an empty `DuckDBClient` and load a table from a SQL query, say using [`read_parquet`](https://duckdb.org/docs/guides/import/parquet_import) or [`read_csv`](https://duckdb.org/docs/guides/import/csv_import). +You can also [attach](https://duckdb.org/docs/sql/statements/attach) a complete database saved as DuckDB file, typically using the `.db` file extension (or `.ddb` or `.duckdb`). In this case, the associated name (below `base`) is a _schema_ name rather than a _table_ name. + +```js echo +const db2 = await DuckDBClient.of({base: FileAttachment("quakes.db")}); +``` + +```js echo +db2.queryRow(`SELECT COUNT() FROM base.events`) +``` + +For externally-hosted data, you can create an empty `DuckDBClient` and load a table from a SQL query, say using [`read_parquet`](https://duckdb.org/docs/guides/import/parquet_import) or [`read_csv`](https://duckdb.org/docs/guides/import/csv_import). DuckDB offers many affordances to make this easier. (In many cases it detects the file format and uses the correct loader automatically.) ```js run=false const db = await DuckDBClient.of(); @@ -70,10 +82,123 @@ As an alternative to `db.sql`, there’s also `db.query`: db.query("SELECT * FROM gaia LIMIT 10") ``` +
The db.sql and db.query methods return a promise to an Arrow table. This columnar representation is much more efficient than an array-of-objects. You can inspect the contents of an Arrow table using Inputs.table and pass the data to Plot.
+ And `db.queryRow`: ```js echo db.queryRow("SELECT count() AS count FROM gaia") ``` -See the [DatabaseClient Specification](https://observablehq.com/@observablehq/database-client-specification) for more details. +See the [DatabaseClient Specification](https://observablehq.com/@observablehq/database-client-specification) for more details on these methods. + +Finally, the `DuckDBClient.sql` method takes the same arguments as `DuckDBClient.of` and returns the corresponding `db.sql` tagged template literal. The returned function can be used to redefine the built-in [`sql` tagged template literal](../sql#sql-literals) and thereby change the database used by [SQL code blocks](../sql), allowing you to query dynamically-registered tables (unlike the **sql** front matter option). + +```js +const feed = view(Inputs.select(new Map([["M4.5+", "4.5"], ["M2.5+", "2.5"], ["All", "all"]]), {label: "Earthquake feed"})); +``` + +```js echo +const sql = DuckDBClient.sql({quakes: `https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/${feed}_day.csv`}); +``` + +```sql echo +SELECT * FROM quakes ORDER BY updated DESC; +``` + +## Extensions + +[DuckDB extensions](https://duckdb.org/docs/extensions/overview.html) extend DuckDB’s functionality, adding support for additional file formats, new types, and domain-specific functions. For example, the [`json` extension](https://duckdb.org/docs/data/json/overview.html) provides a `read_json` method for reading JSON files: + +```sql echo +SELECT bbox FROM read_json('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson'); +``` + +To read a local file (or data loader), use `FileAttachment` and interpolation `${…}`: + +```sql echo +SELECT bbox FROM read_json(${FileAttachment("../quakes.json").href}); +``` + +For convenience, Framework configures the `json` and `parquet` extensions by default. Some other [core extensions](https://duckdb.org/docs/extensions/core_extensions.html) also autoload, meaning that you don’t need to explicitly enable them; however, Framework will only [self-host extensions](#self-hosting-of-extensions) if you explicitly configure them, and therefore we recommend that you always use the [**duckdb** config option](../config#duckdb) to configure DuckDB extensions. Any configured extensions will be automatically [installed and loaded](https://duckdb.org/docs/extensions/overview#explicit-install-and-load), making them available in SQL code blocks as well as the `sql` and `DuckDBClient` built-ins. + +For example, to configure the [`spatial` extension](https://duckdb.org/docs/extensions/spatial/overview.html): + +```js run=false +export default { + duckdb: { + extensions: ["spatial"] + } +}; +``` + +You can then use the `ST_Area` function to compute the area of a polygon: + +```sql echo run=false +SELECT ST_Area('POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))'::GEOMETRY) as area; +``` + +To tell which extensions have been loaded, you can run the following query: + +```sql +FROM duckdb_extensions() WHERE loaded AND JSON '1'; +``` + +```sql run=false +FROM duckdb_extensions() WHERE loaded; +``` + +
+ +If the `duckdb_extensions()` function runs before DuckDB autoloads a core extension (such as `json`), it might not be included in the returned set. + +
+ +### Self-hosting of extensions + +As with [npm imports](../imports#self-hosting-of-npm-imports), configured DuckDB extensions are self-hosted, improving performance, stability, & security, and allowing you to develop offline. Extensions are downloaded to the DuckDB cache folder, which lives in .observablehq/cache/\_duckdb within the source root (typically `src`). You can clear the cache and restart the preview server to re-fetch the latest versions of any DuckDB extensions. If you use an [autoloading core extension](https://duckdb.org/docs/extensions/core_extensions.html#list-of-core-extensions) that is not configured, DuckDB-Wasm [will load it](https://duckdb.org/docs/api/wasm/extensions.html#fetching-duckdb-wasm-extensions) from the default extension repository, `extensions.duckdb.org`, at runtime. + +## Configuring + +The second argument to `DuckDBClient.of` and `DuckDBClient.sql` is a [`DuckDBConfig`](https://shell.duckdb.org/docs/interfaces/index.DuckDBConfig.html) object which configures the behavior of DuckDB-Wasm. By default, Framework sets the `castBigIntToDouble` and `castTimestampToDate` query options to true. To instead use [`BigInt`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt): + +```js run=false +const bigdb = DuckDBClient.of({}, {query: {castBigIntToDouble: false}}); +``` + +By default, `DuckDBClient.of` and `DuckDBClient.sql` automatically load all [configured extensions](#extensions). To change the loaded extensions for a particular `DuckDBClient`, use the **extensions** config option. For example, pass an empty array to instantiate a DuckDBClient with no loaded extensions (even if your configuration lists several): + +```js echo run=false +const simpledb = DuckDBClient.of({}, {extensions: []}); +``` + +Alternatively, you can configure extensions to be self-hosted but not load by default using the **duckdb** config option and the `load: false` shorthand: + +```js run=false +export default { + duckdb: { + extensions: { + spatial: false, + h3: false + } + } +}; +``` + +You can then selectively load extensions as needed like so: + +```js echo run=false +const geosql = DuckDBClient.sql({}, {extensions: ["spatial", "h3"]}); +``` + +In the future, we’d like to allow DuckDB to be configured globally (beyond just [extensions](#extensions)) via the [**duckdb** config option](../config#duckdb); please upvote [#1791](https://github.com/observablehq/framework/issues/1791) if you are interested in this feature. + +## Versioning + +Framework currently uses [DuckDB-Wasm 1.29.0](https://github.com/duckdb/duckdb-wasm/releases/tag/v1.29.0), which aligns with [DuckDB 1.1.1](https://github.com/duckdb/duckdb/releases/tag/v1.1.1). You can load a different version of DuckDB-Wasm by importing `npm:@duckdb/duckdb-wasm` directly, for example: + +```js run=false +import * as duckdb from "npm:@duckdb/duckdb-wasm@1.28.0"; +``` + +However, you will not be able to change the version of DuckDB-Wasm used by SQL code blocks or the `sql` or `DuckDBClient` built-ins, nor can you use Framework’s support for self-hosting extensions with a different version of DuckDB-Wasm. diff --git a/docs/lib/echarts.md b/docs/lib/echarts.md new file mode 100644 index 000000000..4212de07b --- /dev/null +++ b/docs/lib/echarts.md @@ -0,0 +1,35 @@ +--- +index: true +--- + +# Apache ECharts + +[Apache ECharts](https://echarts.apache.org), an open-source JavaScript visualization library, is available by default as `echarts` in Markdown. You can also import it explicitly like so: + +```js run=false +import * as echarts from "npm:echarts"; +``` + +To use ECharts, declare a container element with the desired dimensions, [display it](../javascript#explicit-display), and then call `echarts.init`. + +```js echo +const myChart = echarts.init(display(html`
`)); + +myChart.setOption({ + title: { + text: "ECharts getting started example" + }, + tooltip: {}, + xAxis: { + data: ["shirt", "cardigan", "chiffon", "pants", "heels", "socks"] + }, + yAxis: {}, + series: [ + { + name: "sales", + type: "bar", + data: [5, 20, 36, 10, 10, 20] + } + ] +}); +``` diff --git a/docs/lib/generators.md b/docs/lib/generators.md index 6c26ce0be..7c624a708 100644 --- a/docs/lib/generators.md +++ b/docs/lib/generators.md @@ -1,14 +1,18 @@ +--- +keywords: [dark, width] +--- + # Observable Generators The Observable standard library includes several generator utilities. These are available by default in Markdown as `Generators`, but you can import them explicitly: ```js echo -import {Generators} from "npm:@observablehq/stdlib"; +import {Generators} from "observablehq:stdlib"; ``` ## input(*element*) -Returns an async generator that yields whenever the given *element* emits an *input* event, with the given *element*’s current value. (It’s a bit fancier than that because we special-case a few element types.) The built-in [`view` function](<../javascript/display#view(element)>) uses this. +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/input.js) · Returns an async generator that yields whenever the given *element* emits an *input* event, with the given *element*’s current value. (It’s a bit fancier than that because we special-case a few element types.) The built-in [`view` function](<../reactivity#inputs>) uses this. ```js echo const nameInput = display(document.createElement("input")); @@ -19,9 +23,9 @@ const name = Generators.input(nameInput); name ``` -## observe(*change*) +## observe(*initialize*) -Returns an async generator that yields whenever the callback function *change* is called, with the value passed. +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/observe.js) · Returns an async generator that immediately invokes the specified *initialize* function, being passed a *change* callback function, and yields the passed value whenever *change* is called. The *initialize* function may optionally return a *dispose* function that will be called when the generator is terminated. ```js echo const hash = Generators.observe((change) => { @@ -37,7 +41,9 @@ hash ## queue(*change*) -Returns an async generator that yields whenever the callback function *change* is called, with the value passed. This is identical to Generators.observe, except that if *change* is called multiple times before the consumer has a chance to process the yielded result, values will not be dropped; use this if you require that the consumer not miss a yielded value. +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/queue.js) · Returns an async generator that immediately invokes the specified *initialize* function, being passed a *change* callback function, and yields the passed value whenever *change* is called. The *initialize* function may optionally return a *dispose* function that will be called when the generator is terminated. + +This is identical to `Generators.observe` except that if *change* is called multiple times before the consumer has a chance to process the yielded result, values will not be dropped; use this if you require that the consumer not miss a yielded value. ```js run=false const hash = Generators.queue((change) => { @@ -53,7 +59,7 @@ hash ## now() -Returns a generator that repeatedly yields `Date.now()`, forever. This generator is available by default as `now` in Markdown. +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/now.js) · Returns a generator that repeatedly yields `Date.now()`, forever. This generator is available by default as `now` in Markdown. ```js run=false const now = Generators.now(); @@ -65,7 +71,7 @@ now ## width(*element*) -Returns an async generator that yields the width of the given target *element*. Using a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), the generator will yield whenever the width of the *element* changes. This generator for the `main` element is available by default as `width` in Markdown. +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/width.ts) · Returns an async generator that yields the width of the given target *element*. Using a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver), the generator will yield whenever the width of the *element* changes. This generator for the `main` element is available by default as `width` in Markdown. ```js run=false const width = Generators.width(document.querySelector("main")); @@ -74,3 +80,45 @@ const width = Generators.width(document.querySelector("main")); ```js echo width ``` + +## dark() + +[Source](https://github.com/observablehq/framework/blob/main/src/client/stdlib/generators/dark.ts) · Returns an async generator that yields a boolean indicating whether the page is currently displayed with a dark [color scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme). + +```js run=false +const dark = Generators.dark(); +``` + +If the page supports both light and dark mode (as with the [default theme](../themes)), the value reflects the user’s [preferred color scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). The generator will yield a new value if the preferred color changes — as when the user changes their system settings, or if the user’s system adapts automatically to the diurnal cycle — allowing you to update the display as needed without requiring a page reload. + +If the page only supports light mode, the value is always false; likewise it is always true if the page only has a dark theme. + +The current theme is: *${dark ? "dark" : "light"}*. + +```md run=false +The current theme is: *${dark ? "dark" : "light"}*. +``` + +This generator is available by default as `dark` in Markdown. It can be used to pick a [color scheme](https://observablehq.com/plot/features/scales#color-scales) for a chart, or an appropriate [mix-blend-mode](https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode): + +```js echo +Plot.plot({ + height: 260, + color: {scheme: dark ? "turbo" : "ylgnbu"}, + marks: [ + Plot.rectY( + olympians, + Plot.binX( + {y2: "count"}, + { + x: "weight", + fill: "weight", + z: "sex", + mixBlendMode: dark ? "screen" : "multiply" + } + ) + ), + Plot.ruleY([0]) + ] +}) +``` diff --git a/docs/lib/inputs.md b/docs/lib/inputs.md deleted file mode 100644 index 50fa8779a..000000000 --- a/docs/lib/inputs.md +++ /dev/null @@ -1,234 +0,0 @@ -# Observable Inputs - -[Observable Inputs](https://github.com/observablehq/inputs) provides “lightweight interface components — buttons, sliders, dropdowns, tables, and the like — to help you explore data and build interactive displays.” Observable Inputs is available by default as `Inputs` in Markdown, but you can import it explicitly like so: - -```js echo -import * as Inputs from "npm:@observablehq/inputs"; -``` - -Or, just import the specific inputs you want: - -```js echo -import {Button, Color} from "npm:@observablehq/inputs"; -``` - -These basic inputs will get you started. - -* [Button](#button) - do something when a button is clicked -* [Toggle](#toggle) - toggle between two values (on or off) -* [Checkbox](#checkbox) - choose any from a set -* [Radio](#radio) - choose one from a set -* [Range](#range) or [Number](https://observablehq.com/@observablehq/input-range) - choose a number in a range (slider) -* [Select](#select) - choose one or any from a set (drop-down menu) -* [Text](#text) - enter freeform single-line text -* [Textarea](#textarea) - enter freeform multi-line text -* [Date](#date) or [Datetime](https://observablehq.com/@observablehq/input-date) - choose a date -* [Color](#color) - choose a color -* [File](#file) - choose a local file - -These fancy inputs are designed to work with tabular data such as CSV or TSV [file attachments](./files). - -* [Search](#search) - query a tabular dataset -* [Table](#table) - browse a tabular dataset - ---- - -### Button - -Do something when a button is clicked. [Examples ›](https://observablehq.com/@observablehq/input-button) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#button) - -```js echo -const clicks = view(Inputs.button("Click me")); -``` - -```js -clicks -``` - ---- - -### Toggle - -Toggle between two values (on or off). [Examples ›](https://observablehq.com/@observablehq/input-toggle) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#toggle) - -```js echo -const mute = view(Inputs.toggle({label: "Mute"})); -``` - -```js -mute -``` - ---- - -### Checkbox - -Choose any from a set. [Examples ›](https://observablehq.com/@observablehq/input-checkbox) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#checkbox) - -```js echo -const flavors = view(Inputs.checkbox(["salty", "sweet", "bitter", "sour", "umami"], {label: "Flavors"})); -``` - -```js -flavors -``` - ---- - -### Radio - -Choose one from a set. [Examples ›](https://observablehq.com/@observablehq/input-radio) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#radio) - -```js echo -const flavor = view(Inputs.radio(["salty", "sweet", "bitter", "sour", "umami"], {label: "Flavor"})); -``` - -```js -flavor -``` - ---- - -### Range - -Pick a number. [Examples ›](https://observablehq.com/@observablehq/input-range) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#range) - -```js echo -const n = view(Inputs.range([0, 255], {step: 1, label: "Favorite number"})); -``` - -```js -n -``` - ---- - -### Select - -Choose one, or any, from a menu. [Examples ›](https://observablehq.com/@observablehq/input-select) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#select) - -```js -const capitals = FileAttachment("us-state-capitals.tsv").tsv({typed: true}); -const stateNames = capitals.then((capitals) => capitals.map(d => d.State)); -``` - -```js echo -const homeState = view(Inputs.select([null].concat(stateNames), {label: "Home state"})); -``` - -```js -homeState -``` - -```js echo -const visitedStates = view(Inputs.select(stateNames, {label: "Visited states", multiple: true})); -``` - -```js -visitedStates -``` - ---- - -### Text - -Enter freeform single-line text. [Examples ›](https://observablehq.com/@observablehq/input-text) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#text) - -```js echo -const name = view(Inputs.text({label: "Name", placeholder: "What’s your name?"})); -``` - -```js -name -``` - ---- - -### Textarea - -Enter freeform multi-line text. [Examples ›](https://observablehq.com/@observablehq/input-textarea) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#textarea) - -```js echo -const bio = view(Inputs.textarea({label: "Biography", placeholder: "What’s your story?"})); -``` - -```js -bio -``` - ---- - -### Date - -Choose a date, or a date and time. [Examples ›](https://observablehq.com/@observablehq/input-date) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#date) - -```js echo -const birthday = view(Inputs.date({label: "Birthday"})); -``` - -```js -birthday -``` - ---- - -### Color - -Choose a color. [Examples ›](https://observablehq.com/@observablehq/input-color) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#color) - -```js echo -const color = view(Inputs.color({label: "Favorite color", value: "#4682b4"})); -``` - -```js -color -``` - ---- - -### File - -Choose a local file. [Examples ›](https://observablehq.com/@observablehq/input-file) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#file) - -```js echo -const file = view(Inputs.file({label: "CSV file", accept: ".csv", required: true})); -``` - -Once a file has been selected, you can read its contents like so: - -```js echo -const data = display(await file.csv({typed: true})); -``` - ---- - -### Search - -Query a tabular dataset. [Examples ›](https://observablehq.com/@observablehq/input-search) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#search) - -```js echo -const search = view(Inputs.search(capitals, {placeholder: "Search U.S. capitals"})); -``` - -```js -search // see table below! -``` - ---- - -### Table - -Browse a tabular dataset. [Examples ›](https://observablehq.com/@observablehq/input-table) [API Reference ›](https://github.com/observablehq/inputs/blob/main/README.md#table) - -```js echo -const rows = view(Inputs.table(search)); -``` - -```js -rows // click a checkbox in the leftmost column -``` - ---- - - diff --git a/docs/lib/jquery-ui.md b/docs/lib/jquery-ui.md new file mode 100644 index 000000000..a0204f5ca --- /dev/null +++ b/docs/lib/jquery-ui.md @@ -0,0 +1,45 @@ +--- +index: true +--- + +# jQuery UI + +[jQuery UI](https://jqueryui.com/) is a set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. + + + +```html run=false + +``` + +```js echo +import $ from "npm:jquery"; +self.jQuery = $; +await import("npm:jquery-ui"); +``` + +Price range: ${value.join("–")} + +```md run=false +Price range: ${value.join("–")} +``` + +
+ +```html run=false +
+``` + +```js echo +const value = Generators.observe((notify) => { + const slider = $("#slider"); + slider.slider({ + range: true, + min: 0, + max: 500, + values: [5, 300], + slide: (event, ui) => notify(ui.values) + }); + notify(slider.slider("values")); +}); +``` diff --git a/docs/lib/leaflet.md b/docs/lib/leaflet.md index 1f078e9ba..fb19b8a8a 100644 --- a/docs/lib/leaflet.md +++ b/docs/lib/leaflet.md @@ -1,3 +1,7 @@ +--- +keywords: geojson, maps +--- + # Leaflet [Leaflet](https://leafletjs.com/) is an “open-source JavaScript library for mobile-friendly interactive maps.” Leaflet is available by default as `L` in Observable markdown. You can import it explicitly like so: @@ -17,7 +21,9 @@ div.style = "height: 400px;"; const map = L.map(div) .setView([51.505, -0.09], 13); -L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png") +L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", { + attribution: '© OpenStreetMap' +}) .addTo(map); L.marker([51.5, -0.09]) diff --git a/docs/lib/mapbox-gl.md b/docs/lib/mapbox-gl.md index 382b48f8e..47aa2a09b 100644 --- a/docs/lib/mapbox-gl.md +++ b/docs/lib/mapbox-gl.md @@ -1,3 +1,7 @@ +--- +keywords: geojson, maps +--- + # Mapbox GL JS [Mapbox GL JS](https://docs.mapbox.com/mapbox-gl-js/guides/) is a library for building web maps and web applications with Mapbox’s modern mapping technology. Mapbox GL JS is available by default as `mapboxgl` in Markdown, but you can import it explicitly like so: @@ -30,6 +34,6 @@ invalidation.then(() => map.remove()); const ACCESS_TOKEN = "pk.eyJ1Ijoib2JzZXJ2YWJsZWhxLWVuZy1hZG1pbiIsImEiOiJjbHMxaTBwdDkwYnRsMmpxeG12M2kzdWFvIn0.Ga6eIWP2YNQrEW4FzHRcTQ"; ``` -
You will need to create a Mapbox account and obtain an API access token for your project. Replace ACCESS_TOKEN with your token above.
+
You will need to create a Mapbox account and obtain an API access token. Replace ACCESS_TOKEN with your token above.
For inspiration, see Mapbox’s [examples page](https://docs.mapbox.com/mapbox-gl-js/example/). diff --git a/docs/lib/mosaic.md b/docs/lib/mosaic.md new file mode 100644 index 000000000..3a3ed6a3e --- /dev/null +++ b/docs/lib/mosaic.md @@ -0,0 +1,93 @@ +--- +sql: + trips: nyc-taxi.parquet +--- + +# Mosaic vgplot + +[Mosaic](https://uwdata.github.io/mosaic/) is a system for linking data visualizations, tables, and inputs, leveraging [DuckDB](./duckdb) for scalable processing. Mosaic includes an interactive grammar of graphics, [Mosaic vgplot](https://uwdata.github.io/mosaic/vgplot/), built on [Observable Plot](./plot). With vgplot, you can interactively visualize and explore millions — even billions — of data points. + +The example below shows the pickup and dropoff locations of one million taxi rides in New York City from Jan 1–3, 2010. The dataset is stored in a 8MB [Apache Parquet](./arrow#apache-parquet) file, generated with a [data loader](../data-loaders). + +${maps} + +${histogram} + +The views above are coordinated: brushing a time window in the histogram, or a region in either map, will filter both maps. _What spatial patterns can you find?_ + +Mosaic vgplot is available by default in Markdown as `vg` and is backed by the default DuckDB client that is configured using [SQL front matter](../sql). If you would prefer to initialize Mosaic yourself, you can do something like: + +```js run=false +import {DuckDBClient} from "npm:@observablehq/duckdb"; +import * as vgplot from "npm:@uwdata/vgplot"; + +const db = await DuckDBClient.of({trips: FileAttachment("nyc-taxi.parquet")}); +const coordinator = new vgplot.Coordinator(); +coordinator.databaseConnector(vgplot.wasmConnector({duckdb: db._db})); +const vg = vgplot.createAPIContext({coordinator}); +``` + +The code below creates three views, coordinated by Mosaic’s [crossfilter](https://uwdata.github.io/mosaic/api/core/selection.html#selection-crossfilter) helper. + +```js echo +// Create a shared filter +const $filter = vg.Selection.crossfilter(); + +// Shared attributes for the maps +const attributes = [ + vg.width(315), + vg.height(550), + vg.margin(0), + vg.xAxis(null), + vg.yAxis(null), + vg.xDomain([297000, 297000 + 28.36 * 315]), + vg.yDomain([57900, 57900 + 28.36 * 550]), // ensure aspect ratio of 1 + vg.colorScale("symlog") +]; + +// Create two side-by-side maps +const maps = vg.hconcat( + vg.plot( + vg.raster(vg.from("trips", {filterBy: $filter}), {x: "px", y: "py", imageRendering: "pixelated"}), + vg.intervalXY({as: $filter}), + vg.text([{label: "Taxi pickups"}], { + dx: 10, + dy: 10, + text: "label", + fill: "white", + frameAnchor: "top-left" + }), + ...attributes, + vg.colorScheme("turbo"), + vg.frame({stroke: "black"}) + ), + vg.hspace(10), + vg.plot( + vg.raster(vg.from("trips", {filterBy: $filter}), {x: "dx", y: "dy", imageRendering: "pixelated"}), + vg.intervalXY({as: $filter}), + vg.text([{label: "Taxi dropoffs"}], { + dx: 10, + dy: 10, + text: "label", + fill: "white", + frameAnchor: "top-left" + }), + ...attributes, + vg.colorScheme("turbo"), + vg.frame({stroke: "black"}) + ) +); + +// Create the histogram +const histogram = vg.plot( + vg.rectY(vg.from("trips"), {x: vg.bin("time"), y: vg.count(), insetLeft: 0.5, insetRight: 0.5}), + vg.intervalX({as: $filter}), + vg.yTickFormat("s"), + vg.xLabel("Hour of pickup"), + vg.yLabel("Number of rides"), + vg.width(640), + vg.height(100) +); +``` + +For more Mosaic examples, see the [Mosaic + Framework](https://uwdata.github.io/mosaic-framework-example/) website. diff --git a/docs/lib/nyc-taxi.parquet b/docs/lib/nyc-taxi.parquet new file mode 100644 index 000000000..6099b52e2 Binary files /dev/null and b/docs/lib/nyc-taxi.parquet differ diff --git a/docs/lib/nyc-taxi.parquet.sh b/docs/lib/nyc-taxi.parquet.sh new file mode 100644 index 000000000..776226156 --- /dev/null +++ b/docs/lib/nyc-taxi.parquet.sh @@ -0,0 +1,22 @@ +duckdb :memory: << EOF +-- Load spatial extension +INSTALL spatial; LOAD spatial; + +-- Project coordinates, following the example at https://github.com/duckdb/duckdb_spatial +CREATE TEMP TABLE rides AS SELECT + pickup_datetime::TIMESTAMP AS datetime, + ST_Transform(ST_Point(pickup_latitude, pickup_longitude), 'EPSG:4326', 'EPSG:32118') AS pick, + ST_Transform(ST_Point(dropoff_latitude, dropoff_longitude), 'EPSG:4326', 'EPSG:32118') AS drop +FROM 'https://uwdata.github.io/mosaic-datasets/data/nyc-rides-2010.parquet'; + +-- Write output parquet file +COPY (SELECT + HOUR(datetime) + MINUTE(datetime) / 60 AS time, + ST_X(pick)::INTEGER AS px, -- extract pickup x-coord + ST_Y(pick)::INTEGER AS py, -- extract pickup y-coord + ST_X(drop)::INTEGER AS dx, -- extract dropff x-coord + ST_Y(drop)::INTEGER AS dy -- extract dropff y-coord +FROM rides +ORDER BY 2,3,4,5,1 -- optimize output size by sorting +) TO STDOUT (FORMAT 'parquet', COMPRESSION 'zstd', ROW_GROUP_SIZE 10_000_000); +EOF diff --git a/docs/lib/plot.md b/docs/lib/plot.md index 9bcabb87c..d62ceabe1 100644 --- a/docs/lib/plot.md +++ b/docs/lib/plot.md @@ -1,3 +1,7 @@ +--- +keywords: charts, geojson, maps +--- + # Observable Plot [Observable Plot](https://observablehq.com/plot/) is a “JavaScript library for visualizing tabular data, focused on accelerating exploratory data analysis. It has a concise, memorable, yet expressive interface, featuring scales and layered marks.” It’s the sister library to our other visualization library, [D3.js](./d3). Observable Plot is available by default as `Plot` in Markdown, but you can import it explicitly like so: diff --git a/docs/lib/quakes.db b/docs/lib/quakes.db new file mode 100644 index 000000000..7111f654b Binary files /dev/null and b/docs/lib/quakes.db differ diff --git a/docs/lib/quakes.db.sh b/docs/lib/quakes.db.sh new file mode 100644 index 000000000..050ce0f25 --- /dev/null +++ b/docs/lib/quakes.db.sh @@ -0,0 +1 @@ +duckdb docs/lib/quakes.db -c "CREATE TABLE events AS (FROM 'https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.csv');" diff --git a/docs/lib/shapefile.md b/docs/lib/shapefile.md index 56ade8058..b38b7f0a6 100644 --- a/docs/lib/shapefile.md +++ b/docs/lib/shapefile.md @@ -19,7 +19,7 @@ const collection = shapefile.read( (You can omit the `.dbf` file if you only need the geometry.) -The resulting `collection` is a [promise](../javascript/promises) to a GeoJSON `FeatureCollection`: +The resulting `collection` is a promise to a GeoJSON `FeatureCollection`: ```js echo collection @@ -43,7 +43,9 @@ Plot.plot({ Or, streaming to a canvas: - +
+ +
```js echo const canvas = document.querySelector("#map-canvas"); @@ -52,8 +54,12 @@ context.fillStyle = getComputedStyle(canvas).color; context.clearRect(0, 0, canvas.width, canvas.height); const path = d3.geoPath(d3.geoEquirectangular(), context); -const stream = await FileAttachment("ne_110m_land/ne_110m_land.shp").url(); -const source = await shapefile.open(stream); +const source = await shapefile.open( + ...(await Promise.all([ + FileAttachment("ne_110m_land/ne_110m_land.shp").stream(), + FileAttachment("ne_110m_land/ne_110m_land.dbf").stream() + ])) +); while (true) { const {done, value} = await source.read(); diff --git a/docs/lib/sqlite.md b/docs/lib/sqlite.md index 525927150..6dffa75c2 100644 --- a/docs/lib/sqlite.md +++ b/docs/lib/sqlite.md @@ -2,17 +2,25 @@ [SQLite](https://sqlite.org/) is “a small, fast, self-contained, high-reliability, full-featured, SQL database engine” and “the most used database engine in the world.” Observable provides a ESM-compatible distribution of [sql.js](https://sql.js.org), a WASM-based distribution of SQLite. It is available by default as `SQLite` in Markdown, but you can import it like so: -```js echo +```js run=false import SQLite from "npm:@observablehq/sqlite"; ``` +If you prefer to use sql.js directly, you can import and initialize it like so: + +```js run=false +import initSqlJs from "npm:sql.js"; + +const SQLite = await initSqlJs({locateFile: (name) => import.meta.resolve("npm:sql.js/dist/") + name}); +``` + We also provide `SQLiteDatabaseClient`, a [`DatabaseClient`](https://observablehq.com/@observablehq/database-client-specification) implementation. -```js echo +```js run=false import {SQLiteDatabaseClient} from "npm:@observablehq/sqlite"; ``` -The easiest way to construct a SQLite database client is to declare a [`FileAttachment`](../javascript/files) and then call `file.sqlite` to load a SQLite file. This returns a promise. (Here we rely on [implicit await](../javascript/promises).) +The easiest way to construct a SQLite database client is to declare a [`FileAttachment`](../files) and then call `file.sqlite` to load a SQLite file. This returns a promise. (Here we rely on [implicit await](../reactivity#promises).) ```js echo const db = FileAttachment("chinook.db").sqlite(); @@ -26,7 +34,7 @@ const db = SQLiteDatabaseClient.open(FileAttachment("chinook.db")); (Note that unlike [`DuckDBClient`](./duckdb), a `SQLiteDatabaseClient` takes a single argument representing _all_ of the tables in the database; that’s because a SQLite file stores multiple tables, whereas DuckDB typically uses separate Apache Parquet, CSV, or JSON files for each table.) -Using `FileAttachment` means that referenced files are automatically copied to `dist` during build, and you can even generate SQLite files using [data loaders](../loaders). But if you want to “hot” load a live file from an external server, pass a string to `SQLiteDatabaseClient.open`: +Using `FileAttachment` means that referenced files are automatically copied to `dist` during build, and you can even generate SQLite files using [data loaders](../data-loaders). But if you want to “hot” load a live file from an external server, pass a string to `SQLiteDatabaseClient.open`: ```js run=false const db = SQLiteDatabaseClient.open("https://static.observableusercontent.com/files/b3711cfd9bdf50cbe4e74751164d28e907ce366cd4bf56a39a980a48fdc5f998c42a019716a8033e2b54defdd97e4a55ebe4f6464b4f0678ea0311532605a115"); @@ -40,13 +48,13 @@ const customers = db.sql`SELECT * FROM customers`; display(await customers); ``` -A call to `db.sql` returns a promise to an array of objects; each object represents a row returned from the query. For better readability, you can display query results using [`Inputs.table`](./inputs#table). +A call to `db.sql` returns a promise to an array of objects; each object represents a row returned from the query. For better readability, you can display query results using [`Inputs.table`](../inputs/table). ```js echo Inputs.table(customers) ``` -For interactive or dynamic queries, you can interpolate reactive variables into SQL queries. For example, you can declare a [text input](./inputs#text) to prompt the query to enter a search term, and then interpolate the input into the query parameter. +For interactive or dynamic queries, you can interpolate reactive variables into SQL queries. For example, you can declare a [text input](../inputs/text) to prompt the query to enter a search term, and then interpolate the input into the query parameter. ```js echo const name = view(Inputs.text({label: "Name", placeholder: "Search track names"})); diff --git a/docs/lib/tex.md b/docs/lib/tex.md index 26c232abf..47d2facfd 100644 --- a/docs/lib/tex.md +++ b/docs/lib/tex.md @@ -1,3 +1,7 @@ +--- +keywords: katex +--- + # TeX ${tex`\TeX`} is a language for typesetting mathematical formulae. Observable provides a TeX tagged template literal implementation powered by ${tex`\KaTeX`}. It is available by default as `tex` in Markdown, but you can also import it like so: diff --git a/docs/lib/topojson.md b/docs/lib/topojson.md index d210f46f6..10a365843 100644 --- a/docs/lib/topojson.md +++ b/docs/lib/topojson.md @@ -1,3 +1,7 @@ +--- +keywords: geojson +--- + # TopoJSON [TopoJSON](https://github.com/topojson/topojson) is an extension of [GeoJSON](https://geojson.org/), a format for encoding geometry and geographic data structures, that further encodes topology. The [TopoJSON client](https://github.com/topojson/topojson-client) library allows you to transform compact TopoJSON files to GeoJSON and display a map with — for instance — [Leaflet](./leaflet), [D3](./d3), or [Observable Plot](./plot). The TopoJSON client library is available in Markdown as `topojson`, but you can also import it like so: diff --git a/docs/lib/vega-lite.md b/docs/lib/vega-lite.md index 4379ba871..75062e857 100644 --- a/docs/lib/vega-lite.md +++ b/docs/lib/vega-lite.md @@ -25,33 +25,17 @@ Or you can use a [Vega-Lite JSON view specification](https://vega.github.io/vega ```js echo vl.render({ spec: { - "width": 640, - "height": 400, - "data": { - "url": await FileAttachment("gistemp.csv").url() - }, - "mark": "point", - "encoding": { - "x": { - "type": "temporal", - "field": "Date" - }, - "y": { - "type": "quantitative", - "field": "Anomaly" - }, - "color": { - "type": "quantitative", - "field": "Anomaly", - "scale": { - "range": "diverging", - "reverse": true - } - } + width: 640, + height: 400, + data: {url: await FileAttachment("gistemp.csv").url(), format: {type: "csv"}}, + mark: "point", + encoding: { + x: {type: "temporal", field: "Date"}, + y: {type: "quantitative", field: "Anomaly"}, + color: {type: "quantitative", field: "Anomaly", scale: {range: "diverging", reverse: true}} } } }) ``` -
When loading data from a file as above, use FileAttachment so that referenced files are included on build.
- +
When loading data from a file as above, use FileAttachment so that referenced files are included on build.
diff --git a/docs/lib/xlsx.md b/docs/lib/xlsx.md index d55743f17..9d5710c83 100644 --- a/docs/lib/xlsx.md +++ b/docs/lib/xlsx.md @@ -1,12 +1,12 @@ -# XLSX +# Microsoft Excel (XLSX) -[`FileAttachment`](../javascript/files) supports the [Microsoft Excel Open XML format](https://en.wikipedia.org/wiki/Office_Open_XML) via the `file.xlsx` method. This is implemented using the MIT-licensed [ExcelJS](https://github.com/exceljs/exceljs) library. +[`FileAttachment`](../files) supports the [Microsoft Excel Open XML format](https://en.wikipedia.org/wiki/Office_Open_XML) via the `file.xlsx` method. This is implemented using the MIT-licensed [ExcelJS](https://github.com/exceljs/exceljs) library. ```js echo const workbook = FileAttachment("laser-report.xlsx").xlsx(); ``` -This returns a [promise](../javascript/promises) to a `Workbook` instance. +This returns a [promise](../reactivity#promises) to a `Workbook` instance. ```js echo workbook @@ -32,7 +32,7 @@ reports Each object represents a row, and each object property represents a cell value. Values may be represented as numbers, strings, booleans, Date objects, or [other values](https://github.com/exceljs/exceljs/blob/master/README.md#value-types). Row numbers are also exposed as a non-enumerable `#` property to assist with recognition and range specification. -We can display these objects using [`Inputs.table`](./inputs#table): +We can display these objects using [`Inputs.table`](../inputs/table): ```js echo Inputs.table(reports) @@ -60,6 +60,6 @@ Some additional details on values: dates are interpreted as UTC; formula results If you’d prefer to use [ExcelJS](https://github.com/exceljs/exceljs) directly, you can import it like so: -```js echo +```js run=false import Excel from "npm:exceljs"; ``` diff --git a/docs/lib/zip.md b/docs/lib/zip.md index 361a1e6fb..4d984af95 100644 --- a/docs/lib/zip.md +++ b/docs/lib/zip.md @@ -1,6 +1,6 @@ # ZIP -To load a [ZIP archive](), use [`FileAttachment`](../javascript/files). +To load a [ZIP archive](), use [`FileAttachment`](../files). ```js echo const muybridge = FileAttachment("muybridge.zip").zip(); @@ -24,7 +24,7 @@ To pull out a single file from the archive, use the `archive.file` method. It re muybridge.file("deer.jpeg").image({width: 320, alt: "A deer"}) ``` -That said, if you know the name of the file within the ZIP archive statically, you don’t need to load the ZIP archive; you can simply request the [file within the archive](../routing#archives) directly. The specified file is then extracted from the ZIP archive at build time. +That said, if you know the name of the file within the ZIP archive statically, you don’t need to load the ZIP archive; you can simply request the [file within the archive](../data-loaders#archives) directly. The specified file is then extracted from the ZIP archive at build time. ```js echo FileAttachment("muybridge/deer.jpeg").image({width: 320, alt: "A deer"}) @@ -38,7 +38,7 @@ For images and other media, you can simply use static HTML. A deer ``` -One reason to load a ZIP archive is that you don’t know the files statically — maybe there are lots of files and you don’t want to enumerate them statically, or maybe you expect them to change over time and the ZIP archive is generated by a [data loader](../loaders). For example, maybe you want to display an arbitrary collection of images. +One reason to load a ZIP archive is that you don’t know the files statically — maybe there are lots of files and you don’t want to enumerate them statically, or maybe you expect them to change over time and the ZIP archive is generated by a [data loader](../data-loaders). For example, maybe you want to display an arbitrary collection of images. ```js echo Gallery(await Promise.all(muybridge.filenames.map((f) => muybridge.file(f).image()))) diff --git a/docs/loaders.md b/docs/loaders.md deleted file mode 100644 index df6c80156..000000000 --- a/docs/loaders.md +++ /dev/null @@ -1,204 +0,0 @@ -# Data loaders - -**Data loaders** generate files — typically static snapshots of data — at build time. For example, a data loader might query a database and output a CSV file, or server-side render a chart and output a PNG image. - -Why generate data at build time? Conventional dashboards are often slow or even unreliable because database queries are executed for each viewer on load. By preparing static data snapshots ahead of time during build, dashboards load instantly with no external dependency on your database. You can also optimize data snapshots for what your dashboard needs, further improving performance and offering more control over what information is shared with viewers. - -Data loaders can be written in any programming language. They can even invoke binary executables such as ffmpeg or DuckDB! For convenience, Observable Framework has built-in support for common languages: JavaScript, TypeScript, Python, and R. Naturally you can use any third-party library or SDK for these languages, too. - -A data loader can be as simple as a shell script that invokes [curl](https://curl.se/) to fetch recent earthquakes from the [USGS](https://earthquake.usgs.gov/earthquakes/feed/v1.0/geojson.php): - -```sh -curl https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson -``` - -Observable Framework uses [file-based routing](./routing), so assuming this shell script is named `quakes.json.sh`, a `quakes.json` file is then generated at build time. You can access this file from the client using [`FileAttachment`](./javascript/files): - -```js echo -FileAttachment("quakes.json").json() -``` - -A data loader can transform data to perfectly suit the needs of a dashboard. The JavaScript data loader below uses [D3](./lib/d3) to output [CSV](./lib/csv) with three columns representing the _magnitude_, _longitude_, and _latitude_ of each earthquake. - -```js run=false echo -import {csvFormat} from "d3-dsv"; - -// Fetch GeoJSON from the USGS. -const response = await fetch("https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson"); -if (!response.ok) throw new Error(`fetch failed: ${response.status}`); -const collection = await response.json(); - -// Convert to an array of objects. -const features = collection.features.map((f) => ({ - magnitude: f.properties.mag, - longitude: f.geometry.coordinates[0], - latitude: f.geometry.coordinates[1] -})); - -// Output CSV. -process.stdout.write(csvFormat(features)); -``` - -Assuming the loader above is named `quakes.csv.js`, you can access its output from the client as `quakes.csv`: - -```js echo -const quakes = FileAttachment("quakes.csv").csv({typed: true}); -``` - -Now you can display the earthquakes in a map using [Observable Plot](./lib/plot): - -```js -const world = await fetch("https://cdn.jsdelivr.net/npm/world-atlas@1/world/110m.json").then((response) => response.json()); -const land = topojson.feature(world, world.objects.land); -``` - -```js echo -Plot.plot({ - projection: { - type: "orthographic", - rotate: [110, -30] - }, - marks: [ - Plot.graticule(), - Plot.sphere(), - Plot.geo(land, {stroke: "var(--theme-foreground-faint)"}), - Plot.dot(quakes, {x: "longitude", y: "latitude", r: "magnitude", stroke: "#f43f5e"}) - ] -}) -``` - -During preview, the preview server automatically runs the data loader the first time its output is needed and [caches](#caching) the result; if you edit the data loader, the preview server will automatically run it again and push the new result to the client. - -Here are some more details on data loaders. - -## Archives - -Data loaders can generate multi-file archives, either using the [ZIP]() or [tar]() format; individual files can then be pulled from archives using `FileAttachment`. This allows a data loader to output multiple related files from the same source data in one go. - -For example, here is a TypeScript data loader `quakes.zip.ts` that uses [JSZip](https://stuk.github.io/jszip/) to generate a ZIP archive of two files, `metadata.json` and `features.csv`: - -```js run=false -import {csvFormat} from "d3-dsv"; -import JSZip from "jszip"; - -// Fetch GeoJSON from the USGS. -const response = await fetch("https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson"); -if (!response.ok) throw new Error(`fetch failed: ${response.status}`); -const collection = await response.json(); - -// Convert to an array of objects. -const features = collection.features.map((f) => ({ - magnitude: f.properties.mag, - longitude: f.geometry.coordinates[0], - latitude: f.geometry.coordinates[1] -})); - -// Output a ZIP archive to stdout. -const zip = new JSZip(); -zip.file("metadata.json", JSON.stringify(collection.metadata, null, 2)); -zip.file("features.csv", csvFormat(features)); -zip.generateNodeStream().pipe(process.stdout); -``` - -Note how the last part serializes the `metadata` and `features` objects to a readable format corresponding to the file extension (`.json` and `.csv`). - -To load data in the browser, use `FileAttachment`: - -```js run=false -const metadata = FileAttachment("quakes/metadata.json").json(); -const features = FileAttachment("quakes/features.csv").csv({typed: true}); -``` - -The ZIP file itself can be also referenced as a whole — for example if the names of the files are not known in advance — with [`FileAttachment.zip`](../javascript/files#zip): - -```js echo -const zip = FileAttachment("quakes.zip").zip(); -const metadata = zip.then((zip) => zip.file("metadata.json").json()); -``` - -The following archive extensions are supported: - -- `.zip` - for the [ZIP]() archive format -- `.tar` - for [tarballs]() -- `.tar.gz` and `.tgz` - for [compressed tarballs](https://en.wikipedia.org/wiki/Gzip) - -Like with any other file, these files from generated archives are live in preview (they will refresh automatically if the corresponding data loader script is edited), and are added to the build if and only if referenced by `FileAttachment` (see [Files: ZIP](./javascript/files#zip-archives)). - -## Routing - -Data loaders live in the source root (typically `docs`) alongside your other source files. When a file is referenced from JavaScript via `FileAttachment`, if the file does not exist, Observable Framework will look for a file of the same name with a double extension to see if there is a corresponding data loader. The following second extensions are checked, in order, with the corresponding language and interpreter: - -- `.js` - JavaScript (`node`) -- `.ts` - TypeScript (`tsx`) -- `.py` - Python (`python3`) -- `.R` - R (`Rscript`) -- `.rs` - Rust (`rust-script`) -- `.go` - Go (`go run`) -- `.sh` - shell script (`sh`) -- `.exe` - arbitrary executable - -For example, for the file `quakes.csv`, the following data loaders are considered: - -- `quakes.csv.js` -- `quakes.csv.ts` -- `quakes.csv.py` -- `quakes.csv.R` -- `quakes.csv.rs` -- `quakes.csv.sh` -- `quakes.csv.exe` - -If you use `.py`, `.R`, `.rs`, or `.go`, the corresponding interpreter (`python3`, `Rscript`, `rust-script`, or `go run`, respectively) must be installed and available on your `$PATH`. Any additional modules, packages, libraries, _etc._, must also be installed before you can use them. - -Whereas `.js`, `.ts`, `.py`, `.R`, `.rs`, `.go`, and `.sh` data loaders are run via interpreters, `.exe` data loaders are run directly and must have the executable bit set. This is typically done via [`chmod`](https://en.wikipedia.org/wiki/Chmod). For example: - -```sh -chmod +x docs/quakes.csv.exe -``` - -While a `.exe` data loader may be any binary executable (_e.g.,_ compiled from C), it is often convenient to specify another interpreter using a [shebang](). For example, to write a data loader in Julia: - -```julia -#!/usr/bin/env julia - -println("hello world") -``` - -If multiple requests are made concurrently for the same data loader, the data loader will only run once; each concurrent request will receive the same response. - -## Output - -Data loaders must output to [standard output](). The first extension (such as `.csv`) does not affect the generated snapshot; the data loader is solely responsible for producing the expected output (such as CSV). If you wish to log additional information from within a data loader, be sure to log to stderr, say by using [`console.warn`](https://developer.mozilla.org/en-US/docs/Web/API/console/warn); otherwise the logs will be included in the output file and sent to the client. - -## Caching - -When a data loader runs successfully, its output is saved to the cache within the source root, typically `docs/.observablehq/cache`. - -Observable Framework considers the cache “fresh” if the modification time of the cached output is newer than the modification time of the corresponding data loader. So, if you edit a data loader (or update its modification time with `touch`), the cache is invalidated. When previewing a page that uses the data loader, the preview server will detect that the data loader was edited and automatically run it, pushing the new data down to the client and re-evaluating any referencing code — no reload required! - -To purge the data loader cache, delete the cache. For example: - -```sh -rm -rf docs/.observablehq/cache -``` - -## Building - -A data loader is run during build if and only if its corresponding output file is referenced in at least one page. Observable Framework does not scour the source root (`docs`) for data loaders. - -The data loader cache is respected during build. This allows you to bypass some or all data loaders during build, if the previously built data is still fresh. To force Observable Framework to use the data loader cache, ensure that the modification times of the cache are greater than those of the data loaders, say by using `touch` on all files in the cache. - -```sh -find docs/.observablehq/cache -type f -exec touch {} + -``` - -## Errors - -When a data loader fails, it _must_ return a non-zero [exit code](https://en.wikipedia.org/wiki/Exit_status). If a data loader produces a zero exit code, Observable Framework will assume that it was successful and will cache and serve the output to the client. Empty output is not by itself considered an error; however, a warning is displayed in the preview server and build logs. - -During preview, data loader errors will be shown in the preview server log, and a 500 HTTP status code will be returned to the client that attempted to load the corresponding file. This typically results in an error such as: - -``` -RuntimeError: Unable to load file: quakes.csv -``` - -When any data loader fails, the entire build fails. diff --git a/docs/markdown.md b/docs/markdown.md index e4a85767f..16d4fd455 100644 --- a/docs/markdown.md +++ b/docs/markdown.md @@ -1,10 +1,8 @@ # Markdown -Markdown in Observable Framework follows the [CommonMark spec](https://spec.commonmark.org/) and is powered by [markdown-it](https://github.com/markdown-it/markdown-it). We also feature [live JavaScript](./javascript) as either [fenced code blocks](./javascript#fenced-code-blocks) (```js) or [inline expressions](./javascript#inline-expressions) ($\{…}), and [HTML in Markdown](#html), and [front matter](#front-matter) for page-level configuration. If you don’t already know Markdown, please see [GitHub’s guide to Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) for an introduction. + -
Observable Framework currently deviates from CommonMark in how blank lines are handled in HTML; see below. This is a limitation of our parser needed for incremental update during preview.
- -Here are a few examples of Markdown content to get you started. +Markdown is a language for formatting text and content; it’s a lightweight, ergonomic alternative (and complement) to HTML. Markdown in Framework extends [CommonMark](https://commonmark.org/) with a handful of features useful for data apps, including [reactive](./reactivity) [JavaScript](./javascript), [HTML](#html), [YAML front matter](#front-matter), [grids](#grids), [cards](#cards), and [notes](#notes). This page covers Framework’s extensions to Markdown, along with [basic syntax](#basic-syntax). ## Front matter @@ -15,7 +13,279 @@ toc: false --- ``` -## Headings +The front matter supports the following options: + +- **title** - the page title; defaults to the (first) first-level heading of the page, if any +- **index** - whether to index this page if [search](./search) is enabled; defaults to true for listed pages +- **keywords** - additional words to index for [search](./search); boosted at the same weight as the title +- **draft** - whether to skip this page during build; drafts are also not listed in the default sidebar nor searchable +- **sql** - table definitions for [SQL code blocks](./sql) + +The front matter can also override the following [app-level configuration](./config) options: + +- **toc** - the [table of contents](./config#toc) +- **style** - the [custom stylesheet](./config#style) +- **theme** - the [theme](./config#theme) +- **head** - the [head](./config#head) +- **header** - the [header](./config#header) +- **footer** - the [footer](./config#footer) +- **sidebar** - whether to show the [sidebar](./config#sidebar) + +## HTML + +You can write HTML directly into Markdown. HTML is useful for greater control over layout, say to use CSS grid for a responsive bento box layout in a dashboard, or adding an external stylesheet via a link element. For example, here is an HTML details element: + +```html run=false +
+ Click me + This text is not visible by default. +
+``` + +This produces: + +
+ Click me + This text is not visible by default. +
+ +You can put Markdown inside of HTML by surrounding it with blank lines: + +
+
+ +This is **Markdown** inside of _HTML_! + +
+
+ +```md run=false +
+
+ +This is **Markdown** inside of _HTML_! + +
+
+``` + +## Grids + +The `grid` class declares a [CSS grid](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout) container. The `grid` class is designed to pair with the [`card` class](#cards) and the [`dashboard` theme](./themes) for dashboard layout. + +```html echo +
+

A

+

B

+

C

+

D

+
+``` + +Grids have a single column by default, but you can declare two, three, or four columns using the `grid-cols-2`, `grid-cols-3`, or `grid-cols-4` class. + +The built-in `grid` class is automatically responsive: in narrow windows, the number of columns is automatically reduced. The four-column grid can be reduced to two or one columns, while the three- and two-column grid can be reduced to one column. (If you want more columns or more control over the grid layout, you can always write custom styles.) + +
To see the responsive grid layout, resize the window or collapse the sidebar on the left. You can also zoom to change the effective window size.
+ +With multi-column and multi-row grids, you can use the `grid-colspan-*` and `grid-rowspan-*` classes to have cells that span columns and rows, respectively. + +```html echo +
+

A

1 × 1
+

B

1 × 2
+

C

1 × 1
+

D

2 × 1
+
+``` + +By default, the `grid` uses `grid-auto-rows: 1fr`, which means that every row of the grid has the same height. The “rhythm” of equal-height rows is often desirable. + +```html echo +
+
Call me Ishmael.
+
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
+
It is a way I have of driving off the spleen and regulating the circulation.
+
+``` + +On the other hand, forcing all rows to the same height can waste space, since the height of all rows is based on the tallest content across rows. To have variable-height rows instead, you can either set [`grid-auto-rows`](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows) on the grid container: + +```html echo +
+
Call me Ishmael.
+
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
+
It is a way I have of driving off the spleen and regulating the circulation.
+
+``` + +Or break your grid into multiple grids: + +```html echo +
+
Call me Ishmael.
+
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
+
+
+
It is a way I have of driving off the spleen and regulating the circulation.
+
+``` + +The `card` class is not required to use `grid`. If you use `grid` by itself, you’ll get the same layout but without the card aesthetics. + +```html echo +
+
Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.
+
Call me Ishmael.
+
+``` + +Use the `resize` helper to re-render content when the container resizes. + +```html echo +
+
+ ${resize((width) => `This card is ${width}px wide.`)} +
+
+``` + +See [Responsive display](./javascript#responsive-display) for more. + +## Cards + +The `card` class is used to group and delineate content. The `card` classes applies a background and border (with colors determined by the current [theme](./themes)). A card can have a title and subtitle using h2 and h3 elements, respectively. + +```html echo +
+

It gets hotter during summer

+

And months have 28–31 days

+ ${Plot.cell(weather.slice(-365), {x: (d) => d.date.getUTCDate(), y: (d) => d.date.getUTCMonth(), fill: "temp_max", tip: true, inset: 0.5}).plot({marginTop: 0, height: 240, padding: 0})} +
+``` + +
Observable Plot’s title and subtitle options generate h2 and h3 elements, respectively, and so will inherit these card styles.
+ +Cards can be used on their own, but they most often exist in a [grid](#grids). Cards can contain whatever you like, including text, images, charts, tables, inputs, and more. + +```html echo +
+
+

Lorem ipsum

+

Id ornare arcu odio ut sem nulla pharetra. Aliquet lectus proin nibh nisl condimentum id venenatis a. Feugiat sed lectus vestibulum mattis ullamcorper velit. Aliquet nec ullamcorper sit amet. Sit amet tellus cras adipiscing. Condimentum id venenatis a condimentum vitae. Semper eget duis at tellus. Ut faucibus pulvinar elementum integer enim.

+

Et malesuada fames ac turpis. Integer vitae justo eget magna fermentum iaculis eu non diam. Aliquet risus feugiat in ante metus dictum at. Consectetur purus ut faucibus pulvinar.

+
+
+ ${Inputs.table(industries)} +
+
+``` + +
Remove the padding from a card if it contains only a table.
+ +To place an input inside a card, first declare a detached input as a [top-level variable](./reactivity#top-level-variables) and use [`Generators.input`](./lib/generators#input-element) to expose its reactive value: + +```js echo +const industryInput = Inputs.select(industries.map((d) => d.industry), {unique: true, sort: true, label: "Industry:"}); +const industry = Generators.input(industryInput); +``` + +Then, insert the input into the card: + +```html echo +
+ ${industryInput} + ${resize((width) => Plot.plot({ + width, + y: {grid: true, label: "Unemployed (thousands)"}, + marks: [ + Plot.areaY(industries.filter((d) => d.industry === industry), {x: "date", y: "unemployed", fill: "var(--theme-foreground-muted)", curve: "step"}), + Plot.lineY(industries.filter((d) => d.industry === industry), {x: "date", y: "unemployed", curve: "step"}), + Plot.ruleY([0]) + ] + }))} +
+``` + +## Notes + +The `note`, `tip`, `warning`, and `caution` classes can be used to insert labeled notes (also known as callouts) into prose. These are intended to emphasize important information that could otherwise be overlooked. + +
This is a note.
+ +```html run=false +
This is a note.
+``` + +
This is a tip.
+ +```html run=false +
This is a tip.
+``` + +
This is a warning.
+ +```html run=false +
This is a warning.
+``` + +
This is a caution.
+ +```html run=false +
This is a caution.
+``` + +Per [CommonMark](https://spec.commonmark.org/0.30/#html-blocks), the contents of an HTML block (such as a `
`) are interpreted as HTML. For rich formatting or links within a note, use HTML. + +
+

This is a styled tip using HTML.

+
+ +```html run=false +
+

This is a styled tip using HTML.

+
+``` + +Alternatively, use blank lines to separate the contents of the note from the note container, and then the contents will be interpreted as Markdown. + +
+ +This is a *styled* tip using **Markdown**. + +
+ +```md run=false +
+ +This is a *styled* tip using **Markdown**. + +
+``` + +You can override the note’s label using the `label` attribute. + +
No lifeguard on duty. Swim at your own risk!
+ +```html run=false +
No lifeguard on duty. Swim at your own risk!
+``` + +You can disable the label entirely with an empty `label` attribute. + +
This note has no label.
+ +```html run=false +
This note has no label.
+``` + +## Basic syntax + +Here are some examples of common Markdown features. + + + +### Headings ```md # A first-level heading @@ -25,7 +295,7 @@ toc: false
A second-level heading (##) immediately following a first-level heading (#) is styled specially as a subtitle.
-## Styling +### Styling ```md this is **bold** text @@ -37,7 +307,7 @@ this is `monospaced` text > this is quoted text ``` -## Tables +### Tables ```md Column 1 | Column 2 | Column 3 @@ -53,7 +323,7 @@ Cell 1-1 | Cell 2-1 | Cell 3-1 Cell 1-2 | Cell 2-2 | Cell 3-2 ``` -## Lists +### Lists ```md - red @@ -71,7 +341,7 @@ Cell 1-2 | Cell 2-2 | Cell 3-2 1. third second ``` -## Links +### Links ```md @@ -80,54 +350,21 @@ Cell 1-2 | Cell 2-2 | Cell 3-2 [external link]() ``` -## Images - -```md -![A happy kitten](https://placekitten.com/200/300) -``` - -## HTML - -You can write HTML directly into Markdown. HTML is useful for greater control over layout, say to use CSS grid for a responsive bento box layout in a dashboard, or adding an external stylesheet via a link element. For example, here is an HTML details element: - -````html run=false -
- Click me - This text is not visible by default. -
-```` - -This produces: +For privacy and convenience, external links are given a default `rel` attribute of [`noreferrer`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/noreferrer) [`noopener`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/noopener) and a default `target` attribute of [`_blank`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target). Hence by default an external link will open in a new window and not pass the (potentially sensitive) referrer to the (potentially untrusted) external site. You can override this behavior by specifying the `rel` or `target` attribute explicitly. For example `` will open in the same window, and `` will allow the referrer. -
- Click me - This text is not visible by default. -
+Framework normalizes page links, converting absolute paths into relative paths. This allows built sites to be served correctly under any root when deployed. This means you can use absolute paths, such as `/index` for the main page, to link to pages from any other page, including the global [header](./config#header) or [footer](./config#footer). -In Markdown, blank lines denote separate HTML blocks; be sure to avoid blank lines if you want to treat a chunk of HTML as a single block. For example, write this: +To link to a page or asset that’s _not_ controlled by Framework (or to disable link normalization), set the [`rel` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel) to `external`.
For example: -```md - -
    -
  • one
  • -
  • two
  • -
  • three
  • -
+```html run=false +robots.txt ``` -Don’t write this: - -```md - -
    +You may also want to add `noopener noreferrer` if linking to an untrusted origin. See also [Files: Media](./files#media) regarding images and other linked assets. -
  • one
  • -
  • two
  • -
  • three
  • +### Images -
+```md +![A horse](./horse.jpg) +![A happy kitten](https://placekitten.com/200/300) ``` - -In the latter case, the li elements become top-level and wrapped in a span, rather than children of the ul. - -Also see [Hypertext Literal](./lib/htl) for generating dynamic HTML in JavaScript. diff --git a/docs/number.md b/docs/number.md deleted file mode 100644 index 387fe622a..000000000 --- a/docs/number.md +++ /dev/null @@ -1,34 +0,0 @@ -# Big number test - -This is a test of the `big` and `small` classes. - -3,541 -+18 ↗︎ - -Test +18 ↗︎ test - -
-
-
-

GitHub Stars

- 3,541 - +18 ↗︎ -
-
-

Daily pageviews

- 3,699 - +2.5% ↗︎ -
-
-

Daily npm downloads

- 2,737 - −33.5% ↘︎ -
-
-

Total npm downloads

- 1,169,127 - all-time -
-
- -This has been a test of the `big` and `small` classes. diff --git a/docs/observable.png b/docs/observable.png new file mode 100644 index 000000000..cff4f44bc Binary files /dev/null and b/docs/observable.png differ diff --git a/docs/page-loaders.md.js b/docs/page-loaders.md.js new file mode 100644 index 000000000..33ea280e6 --- /dev/null +++ b/docs/page-loaders.md.js @@ -0,0 +1,60 @@ +process.stdout.write(`--- +keywords: server-side rendering, ssr +--- + +# Page loaders + +Page loaders are a special type of [data loader](./data-loaders) for dynamically generating (or “server-side rendering”) pages. Page loaders are programs that emit [Markdown](./markdown) to standard out, and have a double extension starting with \`.md\`, such as \`.md.js\` for a JavaScript page loader or \`.md.py\` for a Python page loader. + +By “baking” dynamically-generated content into static Markdown, you can further improve the performance of pages since the content exists on page load rather than waiting for JavaScript to run. You may even be able to avoid loading additional assets and JavaScript libraries. + +For example, to render a map of recent earthquakes into static inline SVG using D3, you could use a JavaScript page loader as \`quakes.md.js\`: + +~~~js run=false +import * as d3 from "d3-geo"; +import * as topojson from "topojson-client"; + +const quakes = await (await fetch("https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_week.geojson")).json(); +const world = await (await fetch("https://cdn.jsdelivr.net/npm/world-atlas@2.0.2/land-110m.json")).json(); +const land = topojson.feature(world, world.objects.land); + +const projection = d3.geoOrthographic().rotate([110, -40]).fitExtent([[2, 2], [638, 638]], {type: "Sphere"}); +const path = d3.geoPath(projection); + +process.stdout.write(\`# Recent quakes + + + + + + + +\`); +~~~ + +See the [data loaders](./data-loaders) documentation for more on execution, routing, and caching. + +
+ +Page loaders often use [parameterized routes](./params) to generate multiple pages from a single program. + +
+ +
+ +When using page loaders, keep an eye on the generated page size, particularly with complex maps and data visualizations in SVG. To keep the page size small, consider server-side rendering a low-fidelity placeholder and then replacing it with the full graphic using JavaScript on the client. + +
+ +
+ +To allow importing of a JavaScript page loader without running it, have the page loader check whether \`process.argv[1]\` is the same as \`import.meta.url\` before running: + +~~~js run=false +if (process.argv[1] === fileURLToPath(import.meta.url)) { + process.stdout.write(\`# Hello page\`); +} +~~~ + +
+`); diff --git a/docs/params.md b/docs/params.md new file mode 100644 index 000000000..e91e4f423 --- /dev/null +++ b/docs/params.md @@ -0,0 +1,157 @@ +# Parameterized routes + +Parameterized routes allow a single [Markdown](./markdown) source file or [page loader](./page-loaders) to generate many pages, or a single [data loader](./data-loaders) to generate many files. + +A parameterized route is denoted by square brackets, such as `[param]`, in a file or directory name. For example, the following project structure could be used to generate a page for many products: + +``` +. +├─ src +│ ├─ index.md +│ └─ products +│ └─ [product].md +└─ ⋯ +``` + +(File and directory names can also be partially parameterized such as `prefix-[param].md` or `[param]-suffix.md`, or contain multiple parameters such as `[year]-[month]-[day].md`.) + +The [**dynamicPaths** config option](./config#dynamic-paths) would then specify the list of product pages: + +```js run=false +export default { + dynamicPaths: [ + "/products/100736", + "/products/221797", + "/products/399145", + "/products/475651", + … + ] +}; +``` + +Rather than hard-coding the list of paths as above, you’d more commonly use code to enumerate them, say by querying a database for products. In this case, you can either use [top-level await](https://v8.dev/features/top-level-await) or specify the **dynamicPaths** config option as a function that returns an [async iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols). For example, using [Postgres.js](https://github.com/porsager/postgres/blob/master/README.md#usage) you might say: + +```js run=false +import postgres from "postgres"; + +const sql = postgres(); // Note: uses psql environment variables + +export default { + async *dynamicPaths() { + for await (const {id} of sql`SELECT id FROM products`.cursor()) { + yield `/products/${id}`; + } + } +}; +``` + +## Params in JavaScript + +Within a parameterized page, observable.params.param exposes the value of the parameter param to JavaScript [fenced code blocks](./javascript#fenced-code-blocks) and [inline expressions](./javascript#inline-expressions), and likewise for any imported [local modules](./imports#local-imports) with parameterized routes. For example, to display the value of the `product` parameter in Markdown: + +```md run=false +The current product is ${observable.params.product}. +``` + +Since parameter values are known statically at build time, you can reference parameter values in calls to `FileAttachment`. For example, to load the JSON file `/products/[product].json` for the corresponding product from the page `/products/[product].md`, you could say: + +```js run=false +const info = FileAttachment(`${observable.params.product}.json`).json(); +``` + +This is an exception: otherwise `FileAttachment` only accepts a static string literal as an argument since Framework uses [static analysis](./files#static-analysis) to find referenced files. If you need more flexibility, consider using a [page loader](./page-loaders) to generate the page. + +## Params in data loaders + +Parameter values are passed as command-line arguments such as `--product=42` to parameterized [data loaders](./data-loaders). In a JavaScript data loader, you can use [`parseArgs`](https://nodejs.org/api/util.html#utilparseargsconfig) from `node:util` to parse command-line arguments. + +For example, here is a parameterized data loader `sales-[product].csv.js` that generates a CSV of daily sales totals for a particular product by querying a PostgreSQL database: + +```js run=false +import {parseArgs} from "node:util"; +import {csvFormat} from "d3-dsv"; +import postgres from "postgres"; + +const sql = postgres(); // Note: uses psql environment variables + +const { + values: {product} +} = parseArgs({ + options: {product: {type: "string"}} +}); + +const sales = await sql` + SELECT + DATE(sale_date) AS sale_day, + SUM(quantity) AS total_quantity_sold, + SUM(total_amount) AS total_sales_amount + FROM + sales + WHERE + product_id = ${product} + GROUP BY + DATE(sale_date) + ORDER BY + sale_day +`; + +process.stdout.write(csvFormat(sales)); + +await sql.end(); +``` + +Using the above data loader, you could then load `sales-42.csv` to get the daily sales data for product 42. + +## Params in page loaders + +As with data loaders, parameter values are passed as command-line arguments such as `--product=42` to parameterized [page loaders](./page-loaders). In a JavaScript page loader, you can use [`parseArgs`](https://nodejs.org/api/util.html#utilparseargsconfig) from `node:util` to parse command-line arguments. You can then bake parameter values into the resulting page code, or reference them dynamically [in client-side JavaScript](#params-in-java-script) using `observable.params`. + +For example, here is a parameterized page loader `sales-[product].md.js` that renders a chart with daily sales numbers for a particular product, loading the data from the parameterized data loader `sales-[product].csv.js` shown above: + +~~~~js run=false +import {parseArgs} from "node:util"; + +const { + values: {product} +} = parseArgs({ + options: {product: {type: "string"}} +}); + +process.stdout.write(`# Sales of product ${product} + +~~~js +const sales = FileAttachment(\`sales-${product}.csv\`).csv({typed: true}); +~~~ + +~~~js +Plot.plot({ + x: {interval: "day", label: null}, + y: {grid: true}, + marks: [ + Plot.barY(sales, {x: "sale_day", y: "total_sales_amount", tip: true}), + Plot.ruleY([0]) + ] +}) +~~~ + +`); +~~~~ + +In a page generated by a JavaScript page loader, you typically don’t reference `observable.params`; instead, bake the current parameter values directly into the generated code. (You can still reference `observable.params` in the generated client-side JavaScript if you want to.) Framework’s [theme previews](./themes) are implemented as parameterized page loaders; see [their source](https://github.com/observablehq/framework/blob/main/docs/theme/%5Btheme%5D.md.ts) for a practical example. + +## Precedence + +If multiple sources match a particular route, Framework choses the most-specific match. Exact matches are preferred over parameterized matches, and higher directories (closer to the root) are given priority over lower directories. + +For example, for the page `/product/42`, the following sources might be considered: + +* `/product/42.md` (exact match on static file) +* `/product/42.md.js` (exact match on page loader) +* `/product/[id].md` (parameterized static file) +* `/product/[id].md.js` (parameterized page loader) +* `/[category]/42.md` (static file in parameterized directory) +* `/[category]/42.md.js` (page loader in parameterized directory) +* `/[category]/[product].md` (etc.) +* `/[category]/[product].md.js` + +(For brevity, only JavaScript page loaders are shown above; in practice Framework will consider all registered interpreters when checking for page loaders. [Archive data loaders](./data-loaders#archives) are also not shown.) diff --git a/docs/project-structure.md b/docs/project-structure.md new file mode 100644 index 000000000..ef625e8dc --- /dev/null +++ b/docs/project-structure.md @@ -0,0 +1,148 @@ +# Project structure + +A Framework project consists of a home page (`index.md`) and any of the following: + +- Additional pages (`.md`) +- Data loaders (`.csv.py`, `.json.ts`, _etc._) +- Static data files (`.csv`, `.json`, `.parquet`, _etc._) +- Other static assets (`.png`, `.css`, _etc._) +- Shared components (`.js`) +- An app configuration file (`observablehq.config.js`) + +Pages are written in Markdown (`.md`) intermingled with HTML, JavaScript, SQL, and other languages. JavaScript can also be imported from local modules (`.js`) and npm. Data loaders can be written in Python, R, JavaScript, or any other language, and output data snapshots. These snapshots, along with static data files, can be loaded into pages to render charts, tables, and other dynamic content. + +And a typical project is structured like this: + +```ini +. +├─ src # source root +│ ├─ .observablehq +│ │ ├─ cache # data loader cache +│ │ └─ deploy.json # deployment metadata +│ ├─ components +│ │ └─ dotmap.js # shared JavaScript module +│ ├─ data +│ │ └─ quakes.csv.ts # data loader +│ ├─ index.md # home page +│ └─ quakes.md # page +├─ .gitignore +├─ README.md +├─ observablehq.config.js # app configuration +├─ package.json # node package dependencies +└─ yarn.lock # node package lockfile +``` + +#### `src` + +This is the “source root” — where your source files live. It doesn’t have to be named `src`; you can change it using the **root** [config option](./config). (Prior to , the default was docs.) Pages go here. Each page is a Markdown file. Framework uses [file-based routing](#routing), which means that the name of the file controls where the page is served. You can create as many pages as you like. Use folders to organize your pages. + +#### `src/.observablehq/cache` + +This is where the [data loader](./data-loaders) cache lives. You don’t typically have to worry about this since it’s autogenerated when the first data loader is referenced. You can `rm -rf src/.observablehq/cache` to clean the cache and force data loaders to re-run. + +#### `src/.observablehq/deploy.json` + +This file is automatically generated the first time you deploy to Observable, saving some information to make it easier to redeploy next time. + +#### `src/components` + +You can put shared [JavaScript modules](./imports) anywhere in your source root, but we recommend putting them here. This helps you pull code out of Markdown files and into JavaScript, making it easier to reuse code across pages, write tests and run linters, and even share code with vanilla web applications. + +#### `src/data` + +You can put [data loaders](./data-loaders) or static files anywhere in your source root, but we recommend putting them here. + +#### `src/index.md` + +This is the home page for your app. You can have as many additional pages as you’d like, but you should always have a home page, too. + +#### `observablehq.config.js` + +This is the [app configuration](./config) file, such as the pages and sections in the sidebar navigation, and the app’s title. The config file can be written in either TypeScript (`.ts`) or JavaScript (`.js`). + +## Routing + +Framework uses file-based routing: each page in your app has a corresponding Markdown file (`.md`) of the same name. For example, here’s a simple project that only has two pages (`hello.md` and `index.md`) in the source root (`src`): + +```ini +. +├─ src +│ ├─ hello.md +│ └─ index.md +└─ ⋯ +``` + + + +When the site is built, the output root (`dist`) will contain two corresponding static HTML pages (`hello.html` and `index.html`), along with a few additional assets needed for the site to work. + +```ini +. +├─ dist +│ ├─ _observablehq +│ │ └─ ⋯ # additional assets +│ ├─ hello.html +│ └─ index.html +└─ ⋯ +``` + +
+ +While normally a Markdown file generates only a single page, Framework also supports [parameterized pages](./params) (also called _dynamic routes_), allowing a Markdown file to generate many pages with different data. + +
+ +For this site, routes map to files as: + +``` +/ → dist/index.html → src/index.md +/hello → dist/hello.html → src/hello.md +``` + +This assumes [“clean URLs”](./config#preserve-extension) as supported by most static site servers; `/hello` can also be accessed as `/hello.html`, and `/` can be accessed as `/index` and `/index.html`. (Some static site servers automatically redirect to clean URLs, but we recommend being consistent when linking to your site.) + +Apps should always have a top-level `index.md` in the source root; this is your app’s home page, and it’s what people visit by default. + +Pages can live in folders. For example: + +```ini +. +├─ src +│ ├─ missions +│ │ ├─ index.md +│ │ ├─ apollo.md +│ │ └─ gemini.md +│ └─ index.md +└─ ⋯ +``` + +With this setup, routes are served as: + +``` +/ → dist/index.html → src/index.md +/missions/ → dist/missions/index.html → src/missions/index.md +/missions/apollo → dist/missions/apollo.html → src/missions/apollo.md +/missions/gemini → dist/missions/gemini.html → src/missions/gemini.md +``` + +As a variant of the above structure, you can move the `missions/index.md` up to a `missions.md` in the parent folder: + +```ini +. +├─ src +│ ├─ missions +│ │ ├─ apollo.md +│ │ └─ gemini.md +│ ├─ missions.md +│ └─ index.md +└─ ⋯ +``` + +Now routes are served as: + +``` +/ → dist/index.html → src/index.md +/missions → dist/missions.html → src/missions.md +/missions/apollo → dist/missions/apollo.html → src/missions/apollo.md +/missions/gemini → dist/missions/gemini.html → src/missions/gemini.md +``` diff --git a/docs/javascript/pryvit.txt b/docs/pryvit.txt similarity index 100% rename from docs/javascript/pryvit.txt rename to docs/pryvit.txt diff --git a/docs/quakes.json.sh b/docs/quakes.json.sh index 697489a9d..1ade37fc7 100644 --- a/docs/quakes.json.sh +++ b/docs/quakes.json.sh @@ -1 +1 @@ -curl https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson +curl -f https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson diff --git a/docs/reactivity.md b/docs/reactivity.md new file mode 100644 index 000000000..9a5885e4c --- /dev/null +++ b/docs/reactivity.md @@ -0,0 +1,410 @@ +--- +keywords: viewof +--- + +# Reactivity + +Framework runs like a spreadsheet: code re-runs automatically when referenced variables change. This brings: + +- Easier interactivity because state is automatically kept in sync +- Easier asynchronous programming via implicit await of promises +- Better performance with incremental re-rendering +- Greater flexibility by writing code and prose in any order + +Reactivity is especially helpful for data apps because these apps tend to have complex state. (See Observable’s founding essay, [_A Better Way to Code_](https://medium.com/@mbostock/a-better-way-to-code-2b1d2876a3a0).) For example, you might want to update a chart when a user interacts with a menu or composes a query. Or you might simply want to load several datasets in parallel. Reactivity means you don’t have to manage complex state changes — you can code declaratively as if state were static and immutable, letting the runtime manage state for you. + +Unlike reactive libraries, Framework’s reactivity is implemented at the language layer as part of the JavaScript runtime: there’s no new API or syntax to learn. It’s vanilla JavaScript, but the code runs automatically. Code blocks in Markdown run in topological order determined by top-level variable references (a.k.a. _dataflow_), rather than in top-down document order. For example, here we reference variables `x` and `y` even though they are defined in a code block farther down the page: + +```js echo +x + y +``` + +When code (such as `x + y`) references top-level variables (such as `x` and `y`) defined by other code, the *referencing* code automatically runs _after_ the *defining* code. Since code runs independent of its order on the page, you can arrange code however you like. + +Reactivity also allows incremental evaluation of code when values change: only the code blocks that are downstream of changed variables run. This makes interaction and animation more performant because you’re not re-rendering the entire page when state changes. + +To be precise, Framework’s reactivity manifests as: + +- [Promises](#promises) are implicitly awaited across code blocks +- [Generators](#generators) are implicitly iterated across code blocks +- Editing code (or files) triggers reactive updates during preview +- The [`invalidation` promise](#invalidation) allows clean-up + +We’ll cover each of these below. + +## Top-level variables + +
Only pages can declare top-level reactive variables. Components can’t define their own reactive state, but you can pass values to them.
+ +A top-level variable declared in a JavaScript fenced code block can be referenced in another code block or inline expression on the same page. So if you say: + +```js echo +const x = 1, y = 2; +``` + +Then you can reference `x` and `y` elsewhere on the page (with values ${x} and ${y}, respectively); top-level variable declarations are effectively [hoisted](https://developer.mozilla.org/en-US/docs/Glossary/Hoisting). + +To prevent variables from being visible outside the current block, make them local with a block statement (curly braces): + +```js echo +{ + const z = 3; +} +``` + +If multiple blocks define top-level variables with the same name, these blocks will still run, but any references to duplicated variables in other blocks will throw a duplicate definition error because the definition is ambiguous. + +## Promises + +
See MDN’s Using promises for an introduction to promises.
+ +A [promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) represents the result of an asynchronous operation: some data loaded from a file, say, or a module imported dynamically, or the end of an animation, or some text input from the user. + +In Framework, when one code block refers to a promise defined in another code block, the referencing code block implicitly awaits the promise. This means promises are often invisible — you don’t have to worry whether something is a promise or whether it’s resolved. + +
Implicit await only applies across code blocks, not within a code block. Within a code block, a promise is just a promise.
+ +For example, below `file.json` returns a promise, and so the value of `volcano` inside the code block is a promise. + +```js echo +const volcano = FileAttachment("volcano.json").json(); +``` + +And yet if we reference `volcano` in another code block or inline expression, we don’t need to `await`. The `await` is implicit; the code block automatically waits for the `volcano` promise to resolve before running. + +```js echo +volcano +``` + +The volcano dataset has ${volcano.values.length.toLocaleString("en-US")} values. + +```md run=false +The volcano dataset has ${volcano.values.length.toLocaleString("en-US")} values. +``` + +This pattern is especially useful for loading multiple files. The files are loaded in parallel, and referencing code blocks only wait for the files they need. This is faster than loading files sequentially with `await`, and simpler than `Promise.all`. + +```js run=false +const a = FileAttachment("a.csv").csv({typed: true}); +const b = FileAttachment("b.csv").csv({typed: true}); +const c = FileAttachment("c.csv").csv({typed: true}); +``` + +Implicit await causes the entire code block to wait, not just expressions that reference promises. This distinction is usually invisible, but you might notice if you have a code block that references both “slow” and “fast” promises: the code block waits for all promises to resolve, and thus is gated by the slowest promise. Below, “fast” and “slow” are printed at the same time. + +```js echo +const fast = new Promise((resolve) => setTimeout(() => resolve("fast"), 500)); +const slow = new Promise((resolve) => setTimeout(() => resolve("slow"), 5000)); +``` +```js echo +display(fast); +display(slow); +``` + +Implicit await means waiting for the defining code block to fulfill, not only the referenced promises. Below, even though `one` and `two` are defined synchronously, the referencing code block must wait 5 seconds for the defining block to resolve. This allows a defining code block to initialize state asynchronously while preventing referencing code blocks from seeing partially-initialized state. + +```js echo +const one = 1; +const two = 2; +await new Promise((resolve) => setTimeout(resolve, 5000)); +``` +```js echo +one + two // waits 5 seconds! +``` + +Implicit await means that you can’t handle errors across code blocks: if a promise rejects, the reference code block simply doesn’t run, so it has no way of catching errors. That said, you can handle errors _within_ a code block. For example, you can specify fallback data for a file that fails to load. + +```js run=false +const volcano = FileAttachment("volcano.json") + .json() + .catch(() => ({width: 87, height: 61, values: []})); +``` + +## Generators + +Values that change over time — such as interactive inputs, animation parameters, or streaming data — can be represented in Framework as [async generators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator). When a top-level generator is declared, code in other blocks sees the generator’s latest yielded value and runs each time the generator yields a new value. + +
As with implicit await and promises, implicit iteration of generators only applies across code blocks, not within a code block.
+ +As an example, here’s an HTML input element. By passing it to [`Generators.input`](./lib/generators#input-element), we can define a generator that yields the input’s value each time it changes. + + + +```html run=false + +``` +```js echo +const name = Generators.input(nameInput); +``` + +Now when we reference `name` in another code block or inline expression, it refers to the current value of the input element, and the code block runs each time the input changes. Try typing into the input field above. + +```js echo +name +``` + +Hello, ${name || "anonymous"}! + +```md run=false +Hello, ${name || "anonymous"}! +``` + +The above example uses `Generators.input`, which is a helper method that takes an input element and returns a corresponding value generator. More often, you’ll use the `view` function to define an [input](#inputs); we’ll cover that below, but first we’ll take a deeper look at how generators work. + +The `Generators.observe` helper is a more general way to create a generator that “pushes” or “emits” events asynchronously. This helper takes an initializer function and passes it a `notify` callback which you call with each new value; the initializer can also return a disposal function to cleanup when the generator is terminated. The resulting generator yields each value you pass to `notify`. To implement the `name` generator above using `Generators.observe`: + +```js run=false +const name = Generators.observe((notify) => { + const inputted = () => notify(nameInput.value); + inputted(); + nameInput.addEventListener("input", inputted); + return () => nameInput.removeEventListener("input", inputted); +}); +``` + +As another example, here is using `Generators.observe` to expose the current pointer coordinates as `pointer` = [${pointer.join(", ")}]: + +```js echo +const pointer = Generators.observe((notify) => { + const pointermoved = (event) => notify([event.clientX, event.clientY]); + addEventListener("pointermove", pointermoved); + notify([0, 0]); + return () => removeEventListener("pointermove", pointermoved); +}); +``` + +And here’s a generator `j` = ${j}
that increments once a second, defined directly by an immediately-invoked async generator function. + +```js echo +const j = (async function* () { + for (let j = 0; true; ++j) { + yield j; + await new Promise((resolve) => setTimeout(resolve, 1000)); + } +})(); +``` + +If a generator does not explicitly `await`, as `i` = ${i}
below, it will yield once every [animation frame](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame), typically 60 times per second. Generators also automatically pause when the page is put in a background tab. + +```js echo +const i = (function* () { + for (let i = 0; true; ++i) { + yield i; + } +})(); +``` + +As you might imagine, you can use such a generator to drive an animation. A generator is typically easier than a `requestAnimationFrame` loop because the animation is declarative — the code runs automatically whenever `i` changes — and because you don’t have to handle [invalidation](#invalidation) to terminate the loop. + + + +```js +const context0 = canvas0.getContext("2d"); +``` + +```js echo +context0.clearRect(0, 0, canvas0.width, canvas0.height); +context0.fillStyle = "#4269d0"; +context0.fillRect((i % (640 + 32)) - 32, 0, 32, 32); +``` + +You can also use a generator to stream live data. Here is a WebSocket that reports the current price of Bitcoin via Unicorn Data Services. + +```js echo +const socket = new WebSocket("wss://ws.eodhistoricaldata.com/ws/crypto?api_token=demo"); +invalidation.then(() => socket.close()); +socket.addEventListener("open", () => socket.send(JSON.stringify({action: "subscribe", symbols: "BTC-USD"}))); +const btc = Generators.observe((notify) => { + let currentValue; + const messaged = (event) => { + const m = JSON.parse(event.data); + const v = +m.p; + if (isNaN(v) || v === currentValue) return; + notify((currentValue = v)); + }; + socket.addEventListener("message", messaged); + return () => socket.removeEventListener("message", messaged); +}); +``` + +
+
+

Bitcoin price (USD/BTC)

+
${btc.toLocaleString("en-US", {style: "currency", currency: "USD"})}
+
+
+ +```html run=false +
+
+

Bitcoin price (USD/BTC)

+
${btc.toLocaleString("en-US", {style: "currency", currency: "USD"})}
+
+
+``` + +## Inputs + +Inputs are graphical user interface elements such as dropdowns, radios, sliders, and text boxes that accept data from a user and enable interaction via reactivity. They can also be custom elements that you design, such as charts that support interactive selection via pointing or brushing. + +Inputs might prompt a viewer to: + +- Filter a table of users by typing in a name +- Select a URL from a dropdown to view traffic to a specific page +- Choose a date range to explore data within a period of interest + +Inputs are typically displayed using the built-in `view` function, which [displays](./javascript#explicit-display) the given element and returns a corresponding value generator (`Generators.input`) to expose the input’s value to the page. For example, the radio input below prompts for your favorite team: + +```js echo +const team = view(Inputs.radio(["Metropolis Meteors", "Rockford Peaches", "Bears"], {label: "Favorite team:", value: "Metropolis Meteors"})); +``` + +Code blocks that reference `team` re-run automatically when the user interacts with the radio input. Try selecting a different team. + +My favorite baseball team is the ${team}! + +```md run=false +My favorite baseball team is the ${team}! +``` + +The above example uses `Inputs.radio`, which is provided by [Observable Inputs](./inputs/). You can also implement custom inputs using arbitrary HTML. For example, here is a [range input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range) that lets you choose an integer between 1 and 15 (inclusive): + +```js echo +const n = view(html``); +``` + +```js echo +n // Try dragging the slider above +``` + +
To be compatible with view, custom inputs must emit input events when their value changes, and expose their current value as element.value. See Generators.input for more.
+ +To use a chart as an input, you can use Plot’s [pointer interaction](https://observablehq.com/plot/interactions/pointer), say by setting the **tip** option on a mark. In the scatterplot below, the penguin closest to the pointer is exposed as the reactive variable `penguin`. + +```js echo +const penguin = view(Plot.dot(penguins, {x: "culmen_length_mm", y: "flipper_length_mm", tip: true}).plot()); +``` + +```js echo +penguin // try hovering the chart above +``` + +In the future, Plot will support more interaction methods, including brushing. Please upvote [#5](https://github.com/observablehq/plot/issues/5) if you are interested in this feature. + +The `view` function does two things: + +1. it [displays](./javascript#explicit-display) the given DOM *element*, and then +2. returns a corresponding value generator. + +The `view` function uses [`Generators.input`](./lib/generators#input-element) under the hood. As shown above, you can call `Generators.input` directly, say to declare the input as a top-level variable without immediately displaying it. + +```js echo +const subjectInput = html``; +const subject = Generators.input(subjectInput); +``` + +You can then display the input anywhere you like. And you can reference the input’s value reactively anywhere, too. Below, both are displayed in a card. + +
+
Enter your name: ${subjectInput}
+
Hi ${subject || "anonymous"}!
+
+ +```html run=false +
+
Enter your name: ${subjectInput}
+
Hi ${subject || "anonymous"}!
+
+``` + +## Mutables + +Normally, only the code block that declares a top-level variable can define it or assign to it. You can however use the `Mutable` function to declare a mutable generator, allowing other code to mutate the generator’s value. This is similar to React’s `useState` hook. + +`Mutable` is available by default in Markdown but you can import it explicitly like so: + +```js echo +import {Mutable} from "observablehq:stdlib"; +``` + +Then to use it: + +```js echo +const count = Mutable(0); +const increment = () => ++count.value; +const reset = () => count.value = 0; +``` + +In other code, you can now create buttons to increment and reset the count like so: + +```js echo +Inputs.button([["Increment", increment], ["Reset", reset]]) +``` + + + +Count is: ${html`${count}`}. + +```md +Count is: ${html`${count}`}. +``` + +Within the defining code block, `count` is a generator and `count.value` can be read and written to as desired; in other code, `count` is the generator’s current value. Other code that references `count` will re-run automatically whenever `count.value` is reassigned — so be careful you don’t cause an infinite loop! + +## Invalidation + +With reactive evaluation, code blocks can run multiple times, say in response to interaction or streaming data. If you need to “clean up” after a code block, say to cancel an animation loop or close a socket, use the `invalidation` promise to register a disposal hook. + +For example, the cell below uses `requestAnimationFrame` to animate a canvas. The `invalidation` promise is used to cancel the old animation when a new animation starts. Try quickly clicking the button below. + +```js +const clicks = view(Inputs.button("Click", {label: "Run cell"})); +const colors = ["#4269d0", "#efb118", "#ff725c", "#6cc5b0"]; +const duration = 2000; +``` + + + +```js echo +const context1 = canvas1.getContext("2d"); +const color = colors[clicks % 4]; // cycle through colors on click +const start = performance.now(); // when the animation started + +let frame = requestAnimationFrame(function tick(now) { + const t = Math.min(1, (now - start) / duration); + context1.fillStyle = color; + context1.fillRect(0, 0, t * canvas1.width, canvas1.height); + if (t < 1) frame = requestAnimationFrame(tick); +}); + +invalidation.then(() => cancelAnimationFrame(frame)); +``` + +## Visibility + +The `visibility` function returns a promise that resolves when the code block’s display root is visible. This allows you to defer animation or computation until the content scrolls into view. If you missed the animation, try reloading the page and then scrolling down. + + + +```js echo +await visibility(); // wait until this node is visible + +const context2 = canvas2.getContext("2d"); +const start = performance.now(); + +let frame = requestAnimationFrame(function tick(now) { + const t = Math.min(1, (now - start) / duration); + context2.fillStyle = "#a463f2"; + context2.fillRect(0, 0, t * canvas2.width, canvas2.height); + if (t < 1) frame = requestAnimationFrame(tick); +}); +``` diff --git a/docs/routing.md b/docs/routing.md deleted file mode 100644 index ebd14c88d..000000000 --- a/docs/routing.md +++ /dev/null @@ -1,265 +0,0 @@ -# Routing - -Observable Framework uses file-based routing: each page in your project has a corresponding [Markdown](./markdown) file (`.md`) of the same name. In addition to pages, you can have [importable](./javascript/imports) JavaScript modules (`.js`), [data loaders](./loaders) for generating data snapshots (_e.g._, `.csv.py`), and [static assets](./javascript/files) such as images and files (_e.g._, `.png`). - -A typical project looks like this: - -```ini -. -├─ docs -│ ├─ .observablehq -│ │ └─ cache -│ ├─ components -│ │ └─ dotmap.js -│ ├─ data -│ │ └─ quakes.csv.ts -│ ├─ quakes.md -│ └─ index.md -├─ .gitignore -├─ README.md -├─ observablehq.config.ts -├─ yarn.lock -└─ package.json -``` - -#### `docs` - -This is the “source root” — where your source files live. It doesn’t have to be named `docs`, but that’s the default; you can change it using the **root** [config option](./config). Pages go here. Each page is a Markdown file. Observable Framework uses [file-based routing](./routing), which means that the name of the file controls where the page is served. You can create as many pages as you like. Use folders to organize your pages. - -#### `docs/.observablehq/cache` - -This is where the [data loader](./loaders) cache lives. You don’t typically have to worry about this since it’s autogenerated when the first data loader is referenced. You can `rm -rf docs/.observablehq/cache` to clean the cache and force data loaders to re-run. - -#### `docs/.observablehq/deploy.json` - -This file is autogenerated. If you deploy your project to the Observable platform, we’ll save some information here to make it easier to redeploy next time. - -#### `docs/components` - -You can put shared [JavaScript modules](./javascript/imports) anywhere in your source root, but we recommend putting them here. This helps you pull code out of Markdown files and into JavaScript, making it easier to reuse code across pages, write tests and run linters, and even share code with vanilla web applications. - -#### `docs/data` - -You can put [data loaders](./loaders) or static files anywhere in your source root, but we recommend putting them here. - -#### `docs/index.md` - -This is the home page for your site. You can have as many additional pages as you’d like, but you should always have a home page, too. - -#### `observablehq.config.ts` - -This is the [project configuration](./config) file, such as the pages and sections in the sidebar navigation, and the project’s title. The config file can be written in either TypeScript (`.ts`) or JavaScript (`.js`). - -## Pages - -For example, here’s a simple project that only has two pages (`hello.md` and `index.md`) in the source root (`docs`): - -```ini -. -├─ docs -│ ├─ hello.md -│ └─ index.md -└─ ... -``` - -When the site is built, the output root (`dist`) will contain two corresponding static HTML pages (`hello.html` and `index.html`), along with a few additional assets needed for the site to work. - -```ini -. -├─ dist -│ ├─ _observablehq -│ │ └─ ... # additional assets for serving the site -│ ├─ hello.html -│ └─ index.html -└─ ... -``` - -For this site, routes map to files as: - -``` -/ → dist/index.html → docs/index.md -/hello → dist/hello.html → docs/hello.md -``` - -This assumes “clean URLs” as supported by most static site servers; `/hello` can also be accessed as `/hello.html`, and `/` can be accessed as `/index` and `/index.html`. (Some static site servers automatically redirect to clean URLs, but we recommend being consistent when linking to your site.) - -Projects should always have a top-level `index.md`; this is the root page of your project, and it’s what people visit by default. - -## Folders - -Pages can live in folders. For example: - -```ini -. -├─ docs -│ ├─ missions -| | ├─ index.md -| | ├─ apollo.md -│ │ └─ gemini.md -│ └─ index.md -└─ ... -``` - -With this setup, routes are served as: - -``` -/ → dist/index.html → docs/index.md -/missions/ → dist/missions/index.html → docs/missions/index.md -/missions/apollo → dist/missions/apollo.html → docs/missions/apollo.md -/missions/gemini → dist/missions/gemini.html → docs/missions/gemini.md -``` - -As a variant of the above structure, you can move the `missions/index.md` up to a `missions.md` in the parent folder: - -```ini -. -├─ docs -│ ├─ missions -| | ├─ apollo.md -│ │ └─ gemini.md -│ ├─ missions.md -│ └─ index.md -└─ ... -``` - -Now routes are served as: - -``` -/ → dist/index.html → docs/index.md -/missions → dist/missions.html → docs/missions.md -/missions/apollo → dist/missions/apollo.html → docs/missions/apollo.md -/missions/gemini → dist/missions/gemini.html → docs/missions/gemini.md -``` - -## Imports - -If you use a static [`import`](./javascript/imports) (or a dynamic import with a static string literal as the module specifier) to import a local JavaScript file, the imported module will be copied to the output root (`dist`) during build, too. - -For example, if you have the following source root: - -```ini -. -├─ docs -│ ├─ chart.js -│ └─ index.md -└─ ... -``` - -And `index.md` includes a JavaScript code block that says: - -```js run=false -import {Chart} from "./chart.js"; -``` - -The resulting output root is: - -```ini -. -├─ dist -│ ├─ _import -│ │ └─ chart.js -│ ├─ _observablehq -│ │ └─ ... # additional assets for serving the site -│ └─ index.html -└─ ... -``` - -The import declaration is automatically rewritten during build to point to `./_import/chart.js` instead of `./chart.js`. (In the future [#260](https://github.com/observablehq/framework/issues/260), Observable Framework will add a content hash to the imported module name for cache-breaking.) - -Use a leading slash to denote paths relative to the source root, such as `/chart.js` instead of `./chart.js`. This allows you to use the same path to import a module from anywhere, even in nested folders. Observable Framework always generates relative links so that the generated site can be served under a base path. - -## Files - -If you use [`FileAttachment`](./javascript/files), attached files live in the source root (`docs`) alongside your Markdown pages. For example, say `index.md` has some JavaScript code that references `FileAttachment("quakes.csv")`: - -```ini -. -├─ docs -│ ├─ index.md -│ └─ quakes.csv -└─ ... -``` - -Any files referenced by `FileAttachment` will automatically be copied to the `_file` folder under the output root (`dist`), here resulting in: - -```ini -. -├─ dist -│ ├─ _file -│ │ └─ quakes.csv -│ ├─ _observablehq -│ │ └─ ... # additional assets for serving the site -│ └─ index.html -└─ ... -``` - -`FileAttachment` references are automatically rewritten during build; for example, a reference to `quakes.csv` might be replaced with `_file/quakes.csv`. (In the future [#260](https://github.com/observablehq/framework/issues/260), Observable Framework will add a content hash to the attached file name for cache-breaking.) Only the files you reference statically are copied to the output root (`dist`), so nothing extra or unused is included in the built site. - -[Imported modules](#imports) can use `FileAttachment`, too. In this case, the path to the file is _relative to the importing module_ in the same fashion as `import`; this is accomplished by resolving relative paths at runtime with [`import.meta.url`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta). - -Some additional assets are automatically promoted to file attachments and copied to `_file`. For example, if you have a `` declared statically in a Markdown page, the `style.css` file will be copied to `_file`, too. The HTML elements eligible for file attachments are `audio`, `img`, `link`, `picture`, and `video`. - -## Data loaders - -Files can also be generated at build time by [data loaders](./loaders): arbitrary programs that live alongside Markdown pages and other static files in your source root (`docs`). For example, if you want to generate a `quakes.json` file at build time by fetching and caching data from the USGS, you could write a data loader in a shell script like so: - -```ini -. -├─ docs -│ ├─ index.md -│ └─ quakes.json.sh -└─ ... -``` - -Where `quakes.json.sh` is: - -```sh -curl https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson -``` - -This will produce the following output root: - -```ini -. -├─ dist -│ ├─ _file -│ │ └─ quakes.json -│ ├─ _observablehq -│ │ └─ ... # additional assets for serving the site -│ └─ index.html -└─ ... -``` - -See the [data loaders documentation](./loaders#routing) for additional information. - -## Archives - -File attachments can be also be pulled from archives. The following archive extensions are supported: - -- `.zip` - for the [ZIP]() archive format -- `.tar` - for [tarballs]() -- `.tar.gz` and `.tgz` - for [compressed tarballs](https://en.wikipedia.org/wiki/Gzip) - -For example, say you have a `quakes.zip` archive that includes yearly files for observed earthquakes. If you reference `FileAttachment("quakes/2021.csv")` in code, Observable Framework will pull the `2021.csv` from `quakes.zip`. So this source root: - -```ini -. -├─ docs -│ ├─ quakes.zip -│ └─ index.md -└─ ... -``` - -Becomes this output: - -```ini -. -├─ dist -│ ├─ _file -│ │ └─ quakes -│ │ └─ 2021.csv -│ ├─ _observablehq -│ │ └─ ... # additional assets for serving the site -│ └─ index.html -└─ ... -``` diff --git a/docs/sample-datasets.md b/docs/sample-datasets.md new file mode 100644 index 000000000..58cacbb72 --- /dev/null +++ b/docs/sample-datasets.md @@ -0,0 +1,72 @@ +--- +index: true +--- + +# Sample datasets + +To help you get started, Observable Framework provides a handful of sample datasets by default. If you reference any of these variables (`aapl`, `alphabet`, `cars`, `citywages`, `diamonds`, `flare`, `industries`, `miserables`, `olympians`, `penguins`, `pizza`, or `weather`) in your code, their definition defaults to a Promise loading the corresponding file and returning the data. This makes it easier to get started, with simpler examples of charts and data transformations. + +The source data files are downloaded on demand from the [@observablehq/sample-datasets](https://www.npmjs.com/package/@observablehq/sample-datasets) npm package, and served from your app’s cache. Note that these names are not “reserved”: you can define `alphabet` or `industries` as you see fit, if you need a variable or a function with that name in your app. + +The following lists the provenance of each of the sample datasets: + +## aapl + +Yahoo! Finance
+https://finance.yahoo.com/lookup + +## alphabet + +_Cryptographical Mathematics_ by Robert Edward Lewand
+http://cs.wellesley.edu/~fturbak/codman/letterfreq.html + +## cars + +1983 ASA Data Exposition
+http://lib.stat.cmu.edu/datasets/ + +## citywages + +The New York Times
+https://www.nytimes.com/2019/12/02/upshot/wealth-poverty-divide-american-cities.html + +## diamonds + +ggplot2 “diamonds” dataset
+https://github.com/tidyverse/ggplot2/blob/master/data-raw/diamonds.csv + +## flare + +Flare visualization toolkit package hierarchy
+https://observablehq.com/@d3/treemap + +## industries + +Bureau of Labor Statistics
+https://www.bls.gov/ + +## miserables + +Character interactions in the chapters of “Les Miserables”, Donald Knuth, Stanford Graph Base
+https://www-cs-faculty.stanford.edu/~knuth/sgb.html + +## olympians + +Matt Riggott/IOC
+https://www.flother.is/2017/olympic-games-data/ + +## penguins + +Dr. Kristen Gorman
+https://github.com/allisonhorst/palmerpenguins + +## pizza + +Pizza Paradise, Observable
+https://observablehq.com/@observablehq/pizza-paradise-data + +## weather + +NOAA/Vega
+https://www.ncdc.noaa.gov/cdo-web/datatools/records
+https://github.com/vega/vega-datasets/blob/master/scripts/weather.py diff --git a/docs/search.md b/docs/search.md new file mode 100644 index 000000000..6193a42e7 --- /dev/null +++ b/docs/search.md @@ -0,0 +1,43 @@ +--- +index: true +--- + +# Search + +Framework provides built-in full-text page search using [MiniSearch](https://lucaong.github.io/minisearch/). Search results are queried on the client, with fuzzy and prefix matching, using a static index computed during build. + +
Search is not enabled by default. It is intended for larger apps with lots of static text, such as reports and documentation. Search will not index dynamic content such as data or charts. To enable search, set the search option to true in your config.
+ +Search works in two stages: when Framework builds the site, it creates an index of the contents. On the client, as soon as the user focuses the search input and starts typing, the index is retrieved and the matching pages are displayed in the sidebar. The user can then click on a result, or use the up ↑ and down ↓ arrow keys to navigate, then type return to open the page. + +Pages are indexed each time you build or deploy your app. When working in preview, they are reindexed every 10 minutes. + +By default, all the pages found in the source root (typically `src`) or defined in the [**pages** config option](./config#pages) are indexed; you can however opt-out a page from the index by specifying an index: false property in its front matter: + +```yaml +--- +title: This page won’t be indexed +index: false +--- +``` + +Likewise, a page that is not referenced in **pages** can opt-in by having index: true in its front matter: + +```yaml +--- +title: A page that is not in the sidebar, but gets indexed +index: true +--- +``` + +Search is case-insensitive. The indexing script tries to avoid common pitfalls by ignoring HTML tags and non-word characters such as punctuation. It also ignores long words, as well as sequences that contain more than 6 digits (such as API keys, for example). + +You can specify additional comma-separated words to index using the **keywords** option in [Markdown front matter](./markdown). For example: + +```yaml +--- +keywords: file, fileattachment +--- +``` + +These keywords are boosted at the same weight as the page title. diff --git a/docs/sql.md b/docs/sql.md new file mode 100644 index 000000000..4748989ca --- /dev/null +++ b/docs/sql.md @@ -0,0 +1,208 @@ +--- +sql: + gaia: ./lib/gaia-sample.parquet +--- + +# SQL + +
This page covers client-side SQL using DuckDB. To run a SQL query on a remote database such as PostgreSQL or Snowflake, use a data loader.
+ +Framework includes built-in support for client-side SQL powered by [DuckDB](./lib/duckdb). You can use SQL to query data from [CSV](./lib/csv), [TSV](./lib/csv), [JSON](./files#json), [Apache Arrow](./lib/arrow), [Apache Parquet](./lib/arrow#apache-parquet), and DuckDB database files, which can either be static or generated by [data loaders](./data-loaders). + +To use SQL, first register the desired tables in the page’s [front matter](./markdown#front-matter) using the **sql** option. Each key is a table name, and each value is the path to the corresponding data file. For example, to register a table named `gaia` from a Parquet file: + +```yaml +--- +sql: + gaia: ./lib/gaia-sample.parquet +--- +``` + +To load externally-hosted data, use a full URL: + +```yaml +--- +sql: + quakes: https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.csv +--- +``` + +
For performance and reliability, we recommend using local files rather than loading data from external servers at runtime. You can use a data loader to take a snapshot of a remote data during build if needed.
+ +You can also register tables via code (say to have sources that are defined dynamically via user input) by defining the `sql` symbol with [DuckDBClient.sql](./lib/duckdb). To register [DuckDB extensions](./lib/duckdb#extensions), use the [**duckdb** config option](./config#duckdb). + +## SQL code blocks + +To run SQL queries, create a SQL fenced code block (```sql). For example, to query the first 10 rows from the `gaia` table: + +````md +```sql +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 10 +``` +```` + +This produces a table: + +```sql +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 10 +``` + +To refer to the results of a query in JavaScript, use the `id` directive. For example, to refer to the results of the previous query as `top10`: + +````md +```sql id=top10 +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 10 +``` +```` + +```sql id=top10 +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 10 +``` + +This returns an array of 10 rows as an [Apache Arrow](./lib/arrow) table, inspected here: + +```js echo +top10 +``` + +When a SQL code block uses the `id` directive, the results are not displayed by default. You can display them by adding the `display` directive, which produces the table shown above. + +````md +```sql id=top10 display +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 10 +``` +```` + +The `id` directive is often a simple identifier such as `top10` above, but it supports [destructuring assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment), so you can refer to individual rows and columns using array and object patterns. For example, to pull out the top row: + +````md +```sql id=[top] +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 1 +``` +```` + +```sql id=[top] +SELECT * FROM gaia ORDER BY phot_g_mean_mag LIMIT 1 +``` + +```js echo +top +``` + +Or to pull out the minimum value of the `phot_g_mean_mag` column: + +````md +```sql id=[{min}] +SELECT MIN(phot_g_mean_mag) AS min FROM gaia +``` +```` + +```sql id=[{min}] +SELECT MIN(phot_g_mean_mag) AS min FROM gaia +``` + +```js echo +min +``` + +
+ +For complex destructuring patterns, you may need to quote the `id` directive. For example, to pull out the column named `min(phot_g_mean_mag)` to the variable named `min`, say id="[{'min(phot_g_mean_mag)': min}]". Or to pull out the `min` and `max` columns, say id="[{min, max}]". + +
+ +For dynamic or interactive queries that respond to user input, you can interpolate values into SQL queries using inline expressions `${…}`. For example, to show the stars around a given brightness: + +```js echo +const mag = view(Inputs.range([6, 22], {label: "Magnitude"})); +``` + +```sql echo +SELECT * FROM gaia WHERE phot_g_mean_mag BETWEEN ${mag - 0.1} AND ${mag + 0.1}; +``` + +The value of a SQL code block is an [Apache Arrow](./lib/arrow) table. This format is supported by [Observable Plot](./lib/plot), so you can use SQL and Plot together to visualize data. For example, below we count the number of stars in each 2°×2° bin of the sky (where `ra` is [right ascension](https://en.wikipedia.org/wiki/Right_ascension) and `dec` is [declination](https://en.wikipedia.org/wiki/Declination), representing a point on the celestial sphere in the equatorial coordinate system), and then visualize the resulting heatmap using a [raster mark](https://observablehq.com/plot/marks/raster). + +```sql id=bins echo +SELECT + floor(ra / 2) * 2 + 1 AS ra, + floor(dec / 2) * 2 + 1 AS dec, + count() AS count +FROM + gaia +GROUP BY + 1, + 2 +``` + +```js echo +Plot.plot({ + aspectRatio: 1, + x: {domain: [0, 360]}, + y: {domain: [-90, 90]}, + marks: [ + Plot.frame({fill: 0}), + Plot.raster(bins, { + x: "ra", + y: "dec", + fill: "count", + width: 360 / 2, + height: 180 / 2, + imageRendering: "pixelated" + }) + ] +}) +``` + +## SQL literals + +SQL fenced code blocks are shorthand for the `sql` tagged template literal. You can invoke the `sql` tagged template literal directly like so: + +```js echo +const [row] = await sql`SELECT random() AS random`; +``` + +```js echo +row.random +``` + +The `sql` tag is useful for querying data within JavaScript, such as to query data for visualization without needing to create a separate SQL code block and giving the data a name. For example, below we use DuckDB to bin stars by brightness, and then visualize the bins as a histogram using a [rect mark](https://observablehq.com/plot/marks/rect). + +```js echo +Plot.plot({ + x: {round: true, label: "phot_g_mean_mag"}, + marks: [ + Plot.axisY({tickFormat: (d) => d / 1000, label: "count (thousands)"}), + Plot.rectY(await sql` + SELECT FLOOR(phot_g_mean_mag / 0.2) * 0.2 AS mag1 + , mag1 + 0.2 AS mag2 + , COUNT() AS count + FROM gaia + WHERE phot_g_mean_mag IS NOT NULL + GROUP BY 1 + `, {x1: "mag1", x2: "mag2", y: "count", tip: true}) + ] +}) +``` + +The `sql` tag is available by default in Markdown. You can also import it explicitly as: + +```js run=false +import {sql} from "npm:@observablehq/duckdb"; +``` + +The `sql` tag is also useful for working around a current limitation of DuckDB-Wasm: prepared statements do not support array arguments. (Please upvote [#447](https://github.com/duckdb/duckdb-wasm/issues/447) if you run into this issue.) Instead of passing the array as a parameter, you can interpolate the array values directly into the SQL query. + +```js echo +const source_ids = [2028328031008716288n, 2076498116457016960n, 4315266827603868160n, 4123529214004874624n, 5312548578630777344n]; +``` + +```js echo +Inputs.table(await sql([`SELECT * FROM gaia WHERE source_id IN (${[source_ids]})`])) +``` + +
+ +When interpolating values into SQL queries, be careful to avoid [SQL injection](https://en.wikipedia.org/wiki/SQL_injection) by properly escaping or sanitizing user input. The example above is safe only because `source_ids` are known to be numeric. + +
diff --git a/docs/style.css b/docs/style.css index 247c4d867..1948c7779 100644 --- a/docs/style.css +++ b/docs/style.css @@ -2,35 +2,127 @@ @import url("observablehq:theme-air.css") (prefers-color-scheme: light); @import url("observablehq:theme-near-midnight.css") (prefers-color-scheme: dark); +:root { + --sans-serif: Inter, -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto, + noto, "segoe ui", arial, sans-serif; + --monospace: "Spline Sans Mono", Menlo, Consolas, monospace; + --theme-foreground-focus: #148576; +} + +h1 code, +h2 code, +h3 code, +h4 code, +h5 code, +h6 code, +code, +tt { + font-size: revert; +} + +code:not(pre code, h1 code, h2 code, h3 code, h4 code, h5 code, h6 code) { + color: var(--theme-foreground-alt); + background-color: var(--theme-background-alt); + padding: 2px 4px; + border-radius: 4px; +} + +@media (prefers-color-scheme: dark) { + :root { + --theme-foreground: #f5f5f5; + --theme-foreground-focus: #37d5be; + } +} + #observablehq-header a[href] { color: inherit; } -#observablehq-header a[target="_blank"] { +#observablehq-header a[target="_blank"], +.observablehq-link a[target="_blank"] { display: flex; align-items: center; gap: 0.25rem; text-decoration: none; } -#observablehq-header a[target="_blank"]:hover span { +#observablehq-header a[target="_blank"]:is(:hover, :focus) span, +.observablehq-link a[target="_blank"]:is(:hover, :focus) span { text-decoration: underline; } -#observablehq-header a[target="_blank"]::after { - content: "\2197"; +#observablehq-header a[target="_blank"][data-decoration]::after { + content: attr(data-decoration); } -#observablehq-header a[target="_blank"]:not(:hover, :focus)::after { - color: var(--theme-foreground-muted); +#observablehq-header a[target="_blank"]:is(:hover, :focus), +#observablehq-header a[target="_blank"]:is(:hover, :focus)::after { + color: var(--theme-foreground-focus); +} + +.observablehq-link a[target="_blank"]:not(:hover, :focus)::after { + color: var(--theme-foreground-faint); +} + +.observablehq-link-active a[target="_blank"]:not(:hover, :focus)::after { + color: var(--theme-foreground-focus); +} + +body { + font: 16px/1.5 var(--sans-serif); } #observablehq-main { min-height: calc(100vh - 23.8rem); } -@container not (min-width: 640px) { +#observablehq-main a[href]:not(.observablehq-header-anchor) { + color: inherit; + text-decoration: underline; +} + +h1 { + font-family: var(--monospace); + font-weight: 500; +} + +@media (min-width: 640px) { + .hide-if-large { + display: none !important; + } +} + +@media not (min-width: 640px) { .hide-if-small { - display: none; + display: none !important; + } +} + +@media (min-width: calc(640px + 6rem + 272px)) { + #observablehq-sidebar-toggle:is(:checked, :indeterminate) ~ #observablehq-center .hide-if-sidebar { + display: none !important; } } + +#observablehq-sidebar > ol:first-child > li::before { + display: none; +} + +#observablehq-sidebar > ol:first-child > li > a { + background: none; + color: inherit; +} + +a.observablehq-version-badge { + font: 500 12px var(--sans-serif); + display: inline-block; + vertical-align: top; + padding: 2px 8px; + color: var(--theme-green); + background: color-mix(in srgb, var(--theme-green), transparent 80%); + border-radius: 12px; +} + +.observablehq-version-badge::before { + content: attr(data-version); +} diff --git a/docs/telemetry.md b/docs/telemetry.md deleted file mode 100644 index 5e87bb0f4..000000000 --- a/docs/telemetry.md +++ /dev/null @@ -1,60 +0,0 @@ -# Telemetry - -Observable Framework collects anonymous usage data to help us improve the product. This data is sent to Observable and is not shared with third parties. Telemetry data is covered by [Observable’s privacy policy](https://observablehq.com/privacy-policy). - -You can [opt-out of telemetry](#disabling-telemetry) by setting the `OBSERVABLE_TELEMETRY_DISABLE` environment variable to `true`. - -## What is collected? - -The following data is collected: - -```ts -type TelemetryIds = { - session: uuid; // random, held in memory for the duration of the process - device: uuid; // persists to ~/.observablehq - project: string; // one-way hash of private salt + repository URL or cwd -}; - -type TelemetryEnvironment = { - version: string; // version from package.json - node: string; // node.js version - systemPlatform: string; // linux, darwin, win32, ... - systemRelease: string; // 20.04, 11.2.3, ... - systemArchitecture: string; // x64, arm64, ... - cpuCount: number; // number of cpu cores - cpuModel: string | null; // cpu model name - cpuSpeed: number | null; // cpu speed in MHz - memoryInMb: number; // truncated to mb - isCI: string | boolean; // inside CI heuristic, name or false - isDocker: boolean; // inside Docker heuristic - isWSL: boolean; // inside WSL heuristic -}; - -type TelemetryTime = { - now: number; // performance.now - timeOrigin: number; // performance.timeOrigin - timeZoneOffset: number; // minutes from UTC -}; - -type TelemetryData = { - event: "build" | "deploy" | "preview" | "signal"; - step?: "start" | "finish"; - [key: string]: unknown; -}; -``` - -To inspect telemetry data, set the `OBSERVABLE_TELEMETRY_DEBUG` environment variable to `true`. This will print the telemetry data to stderr instead of sending it to Observable. See [`telemetry.ts`](https://github.com/observablehq/framework/blob/main/src/telemetry.ts) for source code. - -## What is not collected? - -We never collect identifying or sensitive information, such as environment variables, file names or paths, or file contents. - -## Disabling telemetry - -Setting the `OBSERVABLE_TELEMETRY_DISABLE` environment variable to `true` disables telemetry collection entirely. For example: - -```sh -OBSERVABLE_TELEMETRY_DISABLE=true yarn build -``` - -Setting the `OBSERVABLE_TELEMETRY_DEBUG` environment variable to `true` also disables telemetry collection, instead printing telemetry data to stderr. Use this to inspect what telemetry data would be collected. diff --git a/docs/telemetry.md.js b/docs/telemetry.md.js new file mode 100644 index 000000000..714be02b4 --- /dev/null +++ b/docs/telemetry.md.js @@ -0,0 +1,32 @@ +import {readFile} from "node:fs/promises"; + +process.stdout.write(`# Telemetry + +Observable Framework collects anonymous usage data to help us improve the product. This data is sent to Observable and is not shared with third parties. Telemetry data is covered by [Observable’s privacy policy](https://observablehq.com/privacy-policy). + +You can [opt-out of telemetry](#disabling-telemetry) by setting the \`OBSERVABLE_TELEMETRY_DISABLE\` environment variable to \`true\`. + +## What is collected? + +The following data is collected: + +~~~ts run=false +${(await readFile("./src/telemetryData.d.ts", "utf-8")).trim()} +~~~ + +To inspect telemetry data, set the \`OBSERVABLE_TELEMETRY_DEBUG\` environment variable to \`true\`. This will print the telemetry data to stderr instead of sending it to Observable. See [\`telemetry.ts\`](https://github.com/observablehq/framework/blob/main/src/telemetry.ts) for source code. + +## What is not collected? + +We never collect identifying or sensitive information, such as environment variables, file names or paths, or file contents. + +## Disabling telemetry + +Setting the \`OBSERVABLE_TELEMETRY_DISABLE\` environment variable to \`true\` disables telemetry collection entirely. For example: + +~~~sh +OBSERVABLE_TELEMETRY_DISABLE=true npm run build +~~~ + +Setting the \`OBSERVABLE_TELEMETRY_DEBUG\` environment variable to \`true\` also disables telemetry collection, instead printing telemetry data to stderr. Use this to inspect what telemetry data would be collected. +`); diff --git a/docs/theme/[theme].md.ts b/docs/theme/[theme].md.ts new file mode 100644 index 000000000..222848423 --- /dev/null +++ b/docs/theme/[theme].md.ts @@ -0,0 +1,94 @@ +import {parseArgs} from "node:util"; +import {fileURLToPath} from "node:url"; + +export default function render(theme: string): string { + return `--- +theme: ${theme} +toc: false +head: false +header: false +sidebar: false +--- + + + +~~~js +const subset = new Set(["Transportation and Utilities", "Mining and Extraction", "Finance", "Agriculture", "Information"]); +const industriesSubset = industries.filter(d => subset.has(d.industry)); +const barData = [ + {Category: "Alpha", Value: 9.8}, + {Category: "Beta", Value: 7.8}, + {Category: "Gamma", Value: 6.3}, + {Category: "Delta", Value: 5}, + {Category: "Epsilon", Value: 4}, + {Category: "Zeta", Value: 3.2}, +]; +~~~ + +# Theme: ${theme} +## A preview of the \`${theme}\` [theme](../themes) + +
+
\${ + resize((width) => Plot.plot({ + title: "Construction unemployment reaches record high", + subtitle: "And it’s not just seasonal variation", + y: {grid: true, transform: (d) => d * 1000}, + color: {range: ["var(--theme-foreground-fainter)", "var(--theme-foreground-focus)"]}, + height: 320, + width, + marks: [ + Plot.ruleY([0]), + Plot.axisY({label: "Unemployed (millions)", tickFormat: (d) => (d / 1e6).toFixed(1)}), + Plot.lineY(industries, {x: "date", y: "unemployed", z: "industry", stroke: "var(--theme-foreground-fainter)", strokeWidth: 1}), + Plot.lineY(industries, {x: "date", y: "unemployed", filter: (d) => d.industry === industry, stroke: "var(--theme-foreground-focus)", tip: true}) + ] + })) + }
+
\${ + resize((width) => Plot.plot({ + title: "Vowels are some of the most frequent letters in English", + x: {grid: true, percent: true}, + marginTop: 0, + color: {domain: "AEIOUY", unknown: "var(--theme-foreground-fainter)", legend: true}, + height: 300, + width, + marks: [ + Plot.rectX(alphabet, {x: "frequency", y: "letter", fill: (d) => /[aeiouy]/i.test(d.letter) ? d.letter : "other", sort: {y: "-x"}, tip: {format: {x: true, y: true}}}), + Plot.ruleX([0]) + ] + })) + }
+
+ +~~~js +const industry = view(Inputs.select(industries.map((d) => d.industry), {unique: true, sort: true, label: "Industry", value: "Construction"})); +~~~ + +Call me Ishmael. Some years ago — never mind how long precisely — having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen and regulating the circulation. + +~~~js +Inputs.table(penguins) +~~~ + +Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos get such an upper hand of me, that it requires a strong moral principle to prevent me from deliberately stepping into the street, and methodically knocking people’s hats off — then, I account it high time to get to sea as soon as I can. This is my substitute for pistol and ball. With a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship. + +There is nothing surprising in this. If they but knew it, almost all men in their degree, some time or other, cherish very nearly the same feelings towards the ocean with me. +`; +} + +function normalizeTheme(theme: string | undefined): string { + if (!theme) throw new Error("missing theme"); + switch (theme) { + case "light-alt": + return "[light, alt]"; + case "dark-alt": + return "[dark, alt]"; + } + return theme; +} + +if (process.argv[1] === fileURLToPath(import.meta.url)) { + const {values} = parseArgs({options: {theme: {type: "string"}}}); + process.stdout.write(render(normalizeTheme(values.theme))); +} diff --git a/docs/theme/generate-themes.ts b/docs/themes.md.ts similarity index 51% rename from docs/theme/generate-themes.ts rename to docs/themes.md.ts index d115c7c62..7f4d347de 100644 --- a/docs/theme/generate-themes.ts +++ b/docs/themes.md.ts @@ -1,12 +1,11 @@ /* eslint-disable import/no-named-as-default-member */ -import {writeFile} from "node:fs/promises"; +import {fileURLToPath} from "node:url"; import he from "he"; -import {faint} from "../../src/tty.js"; const light = "air"; const dark = "near-midnight"; -const themes = { +export const themes = { light: ["air", "cotton", "glacier", "parchment"], dark: ["coffee", "deep-space", "ink", "midnight", "near-midnight", "ocean-floor", "slate", "stark", "sun-faded"] } as const; @@ -23,8 +22,12 @@ function renderThemeSection(themes: readonly string[]): string { return themes.map((theme) => renderThemeThumbnail(theme)).join("\n"); } -function renderIndex(): string { - return `# Themes +export default function render(): string { + return `--- +keywords: [light, dark] +--- + +# Themes -\`\`\`js +~~~js for (const card of document.querySelectorAll(".card")) { const observer = new ResizeObserver(([entry]) => { card.style.setProperty("--container-width", entry.contentRect.width); @@ -58,23 +61,23 @@ for (const card of document.querySelectorAll(".card")) { observer.observe(card); invalidation?.then(() => observer.disconnect()); } -\`\`\` +~~~ Themes affect the visual appearance of pages by specifying colors and fonts, or by augmenting default styles. Framework includes several built-in themes, but you can also design your own themes by specifying a [custom stylesheet](./config#style). The theme is typically set via the [\`theme\` config option](./config#theme), such as: -\`\`\`js run=false +~~~js run=false theme: "cotton" -\`\`\` +~~~ You can also apply a theme to an individual page via the [front matter](./markdown#front-matter): -\`\`\`yaml +~~~yaml --- theme: [glacier, slate] --- -\`\`\` +~~~ Here is an overview of the available themes. @@ -98,7 +101,7 @@ ${themes.dark.map((theme) => `- \`${theme}\`${theme === dark ? " (default)" : "" When both a light and a dark mode theme are specified, theme styles are applied selectively based on the user’s preferred color scheme. This is implemented via [\`prefers-color-scheme\`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) and typically relies on the user’s operating system settings. -
On macOS, you can create a menubar shortcut to quickly toggle between light and dark mode. This is useful for testing.
+
On macOS, you can create a menubar shortcut to quickly toggle between light and dark mode. This is useful for testing.
Designing charts that work well in both light and dark mode can be challenging. If you’d prefer to design for only one mode, set the theme explicitly to light or dark.
@@ -109,11 +112,11 @@ Theme modifiers are intended to compose with the above color themes. They are: - \`alt\` - swap the page and card background colors - \`wide\` - make the main column full-width -The \`alt\` theme swaps the page and card background colors. This brings [cards](./css/card) to the foreground and is recommended for dashboards. +The \`alt\` theme swaps the page and card background colors. This brings [cards](./markdown#cards) to the foreground and is recommended for dashboards.
${renderThemeSection(["light-alt", "light", "dark-alt", "dark"])}
-The \`wide\` theme removes the maximum width constraint of the main column, which is normally 1152 pixels, allowing it to span the full width of the page. This is recommended for dashboards and is typically combined with the \`alt\` theme modifier and \`toc: false\` to disable the table of contents. +The \`wide\` theme removes the maximum width constraint of the main column, which is normally 1440 pixels, allowing it to span the full width of the page. This is recommended for dashboards and is typically combined with the \`alt\` theme modifier and \`toc: false\` to disable the table of contents.
${renderThemeThumbnail( "wide" @@ -134,102 +137,99 @@ In addition to themes and theme modifiers, there are special aliases: - \`light\` - an alias for \`${light}\` - \`dark\` - an alias for \`${dark}\` -On its own, \`default\` is equivalent to \`[light, dark]\` (or \`[${light}, ${dark}]\`). The \`default\` theme is applied by default if you don’t specify any color theme. You can also use \`default\` to combine a specific light or dark theme with the default theme of the opposing mode; for example \`[cotton, default]\` is equivalent to \`[cotton, dark]\`, and \`[coffee, default]\` is equivalent to \`[coffee, light]\`.`; +On its own, \`default\` is equivalent to \`[light, dark]\` (or \`[${light}, ${dark}]\`). The \`default\` theme is applied by default if you don’t specify any color theme. You can also use \`default\` to combine a specific light or dark theme with the default theme of the opposing mode; for example \`[cotton, default]\` is equivalent to \`[cotton, dark]\`, and \`[coffee, default]\` is equivalent to \`[coffee, light]\`. + +## Colors + +The following custom properties are defined by the current theme: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameColorDescription
--theme-foreground
page foreground color
--theme-background
page background color
--theme-background-alt
block background color
--theme-foreground-alt
heading foreground color
--theme-foreground-muted
secondary text foreground color
--theme-foreground-faint
faint border color
--theme-foreground-fainter
fainter border color
--theme-foreground-faintest
faintest border color
--theme-foreground-focus
emphasis foreground color
+ +You can use these properties anywhere you like. For example, to style a line chart to match the focus color: + +~~~js echo +Plot.lineY(aapl, {x: "Date", y: "Close", stroke: "var(--theme-foreground-focus)"}).plot() +~~~ + +A handful of color classes are also provided: + +~~~html echo +
I am red text.
+~~~ + +~~~html echo +
I am yellow text.
+~~~ + +~~~html echo +
I am green text.
+~~~ + +~~~html echo +
I am blue text.
+~~~ + +~~~html echo +
I am muted text.
+~~~ +`; } -function renderTheme(theme: string): string { - return `--- -theme: ${theme} -toc: false -header: false ---- - - - - -\`\`\`js -const subset = new Set(["Transportation and Utilities", "Mining and Extraction", "Finance", "Agriculture", "Information"]); -const industriesSubset = industries.filter(d => subset.has(d.industry)); -const barData = [ - {Category: "Alpha", Value: 9.8}, - {Category: "Beta", Value: 7.8}, - {Category: "Gamma", Value: 6.3}, - {Category: "Delta", Value: 5}, - {Category: "Epsilon", Value: 4}, - {Category: "Zeta", Value: 3.2}, -]; -\`\`\` - -# Theme: ${theme} -## A preview of the \`${theme}\` [theme](../themes) - -
-
\${ - resize((width) => Plot.plot({ - title: "Construction unemployment reaches record high", - subtitle: "And it’s not just seasonal variation", - y: {grid: true, transform: (d) => d * 1000}, - color: {range: ["var(--theme-foreground-fainter)", "var(--theme-foreground-focus)"]}, - height: 320, - width, - marks: [ - Plot.ruleY([0]), - Plot.axisY({label: "Unemployed (millions)", tickFormat: (d) => (d / 1e6).toFixed(1)}), - Plot.lineY(industries, {x: "date", y: "unemployed", z: "industry", stroke: "var(--theme-foreground-fainter)", strokeWidth: 1}), - Plot.lineY(industries, {x: "date", y: "unemployed", filter: (d) => d.industry === industry, stroke: "var(--theme-foreground-focus)", tip: true}) - ] - })) - }
-
\${ - resize((width) => Plot.plot({ - title: "Vowels are some of the most frequent letters in English", - x: {grid: true, percent: true}, - marginTop: 0, - color: {domain: "AEIOUY", unknown: "var(--theme-foreground-fainter)", legend: true}, - height: 300, - width, - marks: [ - Plot.rectX(alphabet, {x: "frequency", y: "letter", fill: (d) => /[aeiouy]/i.test(d.letter) ? d.letter : "other", sort: {y: "-x"}, tip: {format: {x: true, y: true}}}), - Plot.ruleX([0]) - ] - })) - }
-
- -\`\`\`js -const industry = view(Inputs.select(industries.map((d) => d.industry), {unique: true, sort: true, label: "Industry", value: "Construction"})); -\`\`\` - -Call me Ishmael. Some years ago — never mind how long precisely — having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen and regulating the circulation. - -\`\`\`js -Inputs.table(penguins) -\`\`\` - -Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos get such an upper hand of me, that it requires a strong moral principle to prevent me from deliberately stepping into the street, and methodically knocking people’s hats off — then, I account it high time to get to sea as soon as I can. This is my substitute for pistol and ball. With a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship. - -There is nothing surprising in this. If they but knew it, almost all men in their degree, some time or other, cherish very nearly the same feelings towards the ocean with me.`; -} - -async function generateFile(path: string, contents: string): Promise { - console.log(`${faint("generating")} ${path}`); - await writeFile(path, contents); -} - -await generateFile("./docs/themes.md", renderIndex()); - -for (const theme of themes.light) { - await generateFile(`./docs/theme/${theme}.md`, renderTheme(theme)); +if (process.argv[1] === fileURLToPath(import.meta.url)) { + process.stdout.write(render()); } -for (const theme of themes.dark) { - await generateFile(`./docs/theme/${theme}.md`, renderTheme(theme)); -} - -await generateFile("./docs/theme/light.md", renderTheme("light")); -await generateFile("./docs/theme/light-alt.md", renderTheme("[light, alt]")); -await generateFile("./docs/theme/dark.md", renderTheme("dark")); -await generateFile("./docs/theme/dark-alt.md", renderTheme("[dark, alt]")); -await generateFile("./docs/theme/wide.md", renderTheme("wide")); -await generateFile("./docs/theme/dashboard.md", renderTheme("dashboard")); diff --git a/docs/javascript/volcano.json b/docs/volcano.json similarity index 100% rename from docs/javascript/volcano.json rename to docs/volcano.json diff --git a/docs/what-is-framework.md b/docs/what-is-framework.md new file mode 100644 index 000000000..ac74f4b85 --- /dev/null +++ b/docs/what-is-framework.md @@ -0,0 +1,123 @@ +# What is Framework? + + + +Observable Framework — or “Framework” for short — is an open-source static-site generator for data apps. By *data app* we mean an application that is primarily a display of data. Data apps help you derive insights (to understand) and evaluate potential decisions (to take action). + +A data app might be a set of coordinated **interactive visualizations** for “self-service” analysis, perhaps to explore a computational model or to investigate activity; + + + +… or it might be a **live dashboard** that places current events in the context of recent or historical trends; + + + +… or a **point-in-time report** that combines graphics and prose to present in-depth analysis, perhaps with recommendations or hypotheses about observed behavior; + + + +… or any number of other quantitative displays. Data apps are useful in almost every domain: business intelligence, product analytics, monitoring operations, scientific reporting, and more. Data apps are tools for thought — for answering questions, exploring possibilities, organizing knowledge, and communicating insights. + +Why use Framework for your data app? Here are a few reasons. + +## The power of code + +Good data apps are highly customized — they present an opinionated perspective and reflect your brand. Point-and-click tools may be easy to use but suffer from limited expressivity and power. With code, there’s no limit to what you can create. (See our [D3](https://observablehq.com/@d3/gallery) and [Plot](https://observablehq.com/@observablehq/plot-gallery) galleries for inspiration.) + +Modern development is a marvel. Framework is free and open-source, and projects are just local files, making it easy to incorporate into your existing workflow. Use your preferred editor, source control, and code review system. Write unit tests. Run linters. Automate builds with continuous integration or deployment. Work offline. Self-host. Generate or revise content programmatically with AI. You can do it all. + +## Polyglot meets the web + +Most application frameworks focus on a single language, such as JavaScript, Python, or R. Framework is different. Framework is _polyglot_: it brings multiple languages together. This approach is especially valuable for data apps where data teams have preferred languages for data analysis but want the full power of JavaScript for interactive graphics. Have your cake and eat it too. 🍰 + +With Framework, editing a Python or R data loader immediately updates the browser preview; no reloading required. Framework’s preview server automatically watches for changes and re-runs the data loader, pushing updates over a socket. And thanks to reactivity, the browser can efficiently incrementally update the display. + +Whether your team prefers Python, R, SQL — or even some new language you invented — Framework can give you a best-in-class developer experience and help you build a better data app. + +## Static-site architecture + +Performance is critical for dashboards: users don’t like to wait, and dashboards only create value if users look at them. Framework’s data architecture practically forces your app to be fast because data is precomputed at build time. Furthermore, data snapshots can be highly-optimized (and aggregated and anonymized), minimizing what you send to the client. And since data loaders run only during build, viewers don’t need direct access to the underlying data sources and your dashboards are more secure and robust. + +The speed of modern data warehouses is astonishing. But often time-consuming warehouse changes are needed for analysis — say adding some untapped data source or not-yet-materialized view. Framework’s data loaders let you shortcut this work and quickly produce a performant dashboard. Seeing is believing, and Framework lets you validate ideas faster. + +## Automatic reactivity + +Like Observable notebooks, Framework has language-level support for reactivity. Instead of wrangling hooks or signals, you can write declarative code in vanilla JavaScript that automatically re-runs whenever variables change, like a spreadsheet. This helps you build complex, interactive data apps that are easier to understand and maintain. + +## An end-to-end solution + +Well-designed tools let developers focus on high-value, creative work and build better apps. We’ve imbued Framework with defaults and conveniences that foster a good user experience. And since Framework seamlessly deploys to Observable, you can easily collaborate on data apps and securely share them with your team. diff --git a/examples/.eslintrc.json b/examples/.eslintrc.json new file mode 100644 index 000000000..f9345a64a --- /dev/null +++ b/examples/.eslintrc.json @@ -0,0 +1,8 @@ +{ + "env": { + "browser": true + }, + "rules": { + "import/no-unresolved": [2, {"ignore": ["^npm:"]}] + } +} diff --git a/examples/.gitignore b/examples/.gitignore index 23d31d582..16bfe1f54 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -1,2 +1,3 @@ +/*/src/.observablehq/deploy.json package-lock.json yarn.lock diff --git a/examples/README.md b/examples/README.md index f932d04fc..22a5f461d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,14 +1,145 @@ # Observable Framework examples -*First:* [Get started with Observable Framework](https://observablehq.com/framework/getting-started) - -*This repository shows different flavors and features of what you can build with Framework:* - -- **API** — Millions of API requests, stored in Arrow format, are analyzed in a report. [[code](./api)] [[live project](https://observablehq.com/framework/examples/api/)] -- **Chess** — A data loader that retrieves several large zip files from the FIDE, extracts information about the top 10 players, and displays a rank chart. [[code](./chess)] [[live project](https://observablehq.com/framework/examples/chess/)] -- **EIA** — JavaScript data loaders retrieve hourly data from the U.S. Energy Information Administration API to produce a map and time series charts. [[code](./eia)] [[live project](https://observablehq.com/framework/examples/eia/)] -- **Google analytics** — Load data from the G.A. API and analyze your website’s traffic. [[code](./google-analytics)] [[live project](https://observablehq.com/framework/examples/google-analytics/)] -- **Hello, world!** — A minimal test. [[code](./hello-world)] [[live project](https://observablehq.com/framework/examples/hello-world/)] -- **Plot** — TypeScript data loaders that access metadata from the Observable Plot Github repo. [[code](./plot)] [[live project](https://observablehq.com/framework/examples/plot/)] -- **Mortgage rates** — A small dashboard reproducing Freddie Mac’s historic mortgage rates dashboard. [[code](./mortgage-rates)] [[live project](https://observablehq.com/framework/examples/mortgage-rates/)] -- **Penguin classification** — In a Python data loader, we use logistic regression to predict penguin species based on body size measurements. [[code](./penguin-classification)] [[live project](https://observablehq.com/framework/examples/penguin-classification/)] \ No newline at end of file +> [!NOTE] +> To get started with Framework, please read [_Getting started_](https://observablehq.com/framework/getting-started). + +## Showcase examples 🖼️ + +### [`api`](https://observablehq.observablehq.cloud/framework-example-api/) - Analyzing web logs + +Analyzing web logs + +[Source](./api) · This report visualizes millions of requests to Observable’s API servers over a 7-day period in January 2024, revealing both traffic patterns and performance characteristics of Observable’s web service. This example showcases the flexibility of Observable Plot for creating custom, performant visualizations, and hints at the potential of Framework’s data loaders for working with large datasets. This example also demonstrates reading [Apache Parquet files](https://observablehq.com/framework/lib/arrow). (While this public example uses static data, at Observable we use [Snowflake data loaders](https://observablehq.observablehq.cloud/framework-example-loader-snowflake/) internally to create a similar live dashboard.) + +### [`eia`](https://observablehq.observablehq.cloud/framework-example-eia/) - U.S. electricity grid + +U.S. electricity grid + +[Source](./eia) · This dashboard visualizes electricity generation and demand across the U.S. electricity grid. The included data loaders demonstrate how to retrieve live data from the U.S. Energy Information Administration (EIA) API, while the dashboard demonstrates how to produce interactive maps, bar charts, and time-series charts with Observable Plot. A range input allows the user to rewind time to any point in the previous 24 hours, and a table shows details. + +### [`hotel-bookings`](https://observablehq.observablehq.cloud/framework-example-hotel-bookings) - Resort hotel bookings + +Resort hotel bookings + +[Source](./hotel-bookings) · This dashboard visualizes hotel bookings by market segment for a Portuguese resort from 2015 to 2017. The dashboard demonstrates how to produce interactive charts with D3 and Observable Plot, either created as JavaScript components or directly within a markdown file. Donut charts, histograms, a bubble chart and a line chart reveal patterns in room bookings, prices, guest nationalities, and cancellations across different market segments and seasons. + +### [`plot`](https://observablehq.observablehq.cloud/framework-example-plot/) - Observable Plot downloads + +Observable Plot downloads + +[Source](./plot) · This dashboard visualizes the popularity and development of [Observable Plot](https://observablehq.com/plot/), our open-source visualization library. The included data loaders demonstrate how to retrieve data from GitHub and npm APIs, including star counts, releases, downloads, and open issues. A time-series chart shows daily npm downloads with 7- and 28-day moving averages, and a burndown chart shows the age of open issues over time. + +### [`mortgage-rates`](https://observablehq.observablehq.cloud/framework-example-mortgage-rates/) - Primary mortgage market survey + +Primary mortgage market survey + +[Source](./mortgage-rates) · This dashboard visualizes Freddie Mac’s historical mortgage rates data. The included data loader demonstrates how to retrieve CSV data from Freddie Mac and visualize the result as a zoomable chart with Observable Plot. The larger time-series line chart at the bottom allows brushing to select an arbitrary time range, while the smaller visualization above zooms to show the selected range. + +### [`us-dams`](https://observablehq.observablehq.cloud/framework-example-us-dams/) - U.S. dam conditions + +U.S. dams + +[Source](./us-dams) · This dashboard visualizes locations and conditions for 90k+ dams in the U.S. with data from the National Inventory of Dams (NID). An R data loader accesses the data directly from the NID and generates a simplified CSV. Maps created with deck.gl allow a user to zoom and scroll while exploring dam locations nationwide, or by state. Bar and bubble charts made in Observable Plot highlight dam conditions and hazard potential. + +## Technique examples 🛠️ + +### Charts + +- [`geotiff`](https://observablehq.observablehq.cloud/framework-example-geotiff/) - Parse GeoTIFF with geotiff.js, then visualize with Observable Plot +- [`netcdf`](https://observablehq.observablehq.cloud/framework-example-netcdf/) - Parse NetCDF with `netcdfjs`, then visualize with Observable Plot +- [`vega-dark`](https://observablehq.observablehq.cloud/framework-example-vega-dark/) - Responsive dark mode in Vega-Lite +- [`vega-responsive`](https://observablehq.observablehq.cloud/framework-example-vega-responsive/) - Responsive width in Vega-Lite using ResizeObserver + +### Data loaders + +- [`loader-airtable`](https://observablehq.observablehq.cloud/framework-example-loader-airtable/) - Load data from Airtable +- [`loader-arrow`](https://observablehq.observablehq.cloud/framework-example-loader-arrow/) - Generate Apache Arrow IPC files +- [`loader-bigquery`](https://observablehq.observablehq.cloud/framework-example-loader-google-bigquery/) - Load data from Google BigQuery +- [`loader-canvas-to-png`](https://observablehq.observablehq.cloud/framework-example-loader-canvas-to-png/) - Generate PNG using node-canvas +- [`loader-census`](https://observablehq.observablehq.cloud/framework-example-loader-census/) - Load and transform shapefiles from the U.S. Census Bureau +- [`loader-databricks`](https://observablehq.observablehq.cloud/framework-example-loader-databricks/) - Load data from Databricks +- [`loader-duckdb`](https://observablehq.observablehq.cloud/framework-example-loader-duckdb/) - Process data with DuckDB +- [`loader-elasticsearch`](https://observablehq.observablehq.cloud/framework-example-loader-elasticsearch/) - Load data from Elasticsearch +- [`loader-github`](https://observablehq.observablehq.cloud/framework-example-loader-github/) - Load data from GitHub +- [`loader-google-analytics`](https://observablehq.observablehq.cloud/framework-example-loader-google-analytics/) - Load data from Google Analytics +- [`loader-julia-to-txt`](https://observablehq.observablehq.cloud/framework-example-loader-julia-to-txt/) - Generate TXT from Julia +- [`loader-parquet`](https://observablehq.observablehq.cloud/framework-example-loader-parquet/) - Generat Apache Parquet files +- [`loader-postgres`](https://observablehq.observablehq.cloud/framework-example-loader-postgres/) - Load data from PostgreSQL +- [`loader-python-to-csv`](https://observablehq.observablehq.cloud/framework-example-loader-python-to-csv/) - Generate CSV from Python +- [`loader-python-to-parquet`](https://observablehq.observablehq.cloud/framework-example-loader-python-to-parquet) - Generate Apache Parquet from Python +- [`loader-python-to-png`](https://observablehq.observablehq.cloud/framework-example-loader-python-to-png/) - Generate PNG from Python +- [`loader-python-to-zip`](https://observablehq.observablehq.cloud/framework-example-loader-python-to-zip/) - Generate ZIP from Python +- [`loader-r-to-csv`](https://observablehq.observablehq.cloud/framework-example-loader-r-to-csv/) - Generate CSV from R +- [`loader-r-to-jpeg`](https://observablehq.observablehq.cloud/framework-example-loader-r-to-jpeg/) - Generate JPEG from R +- [`loader-r-to-json`](https://observablehq.observablehq.cloud/framework-example-loader-r-to-json/) - Generate JSON from R +- [`loader-r-to-zip`](https://observablehq.observablehq.cloud/framework-example-loader-r-to-zip/) - Generate ZIP from R +- [`loader-rust-to-json`](https://observablehq.observablehq.cloud/framework-example-loader-rust-to-json/) - Generate JSON from Rust +- [`loader-snowflake`](https://observablehq.observablehq.cloud/framework-example-loader-snowflake/) - Load data from Snowflake +- [`netcdf-contours`](https://observablehq.observablehq.cloud/framework-example-netcdf-contours/) - Convert NetCDF to GeoJSON with `netcdfjs` and `d3-geo-voronoi` + +### Inputs + +- [`codemirror`](https://observablehq.observablehq.cloud/framework-example-codemirror/) - A text input powered by CodeMirror +- [`custom-input-2d`](https://observablehq.observablehq.cloud/framework-example-custom-input-2d/) - A custom 2D input with bidirectional binding +- [`input-select-file`](https://observablehq.observablehq.cloud/framework-example-input-select-file/) - Select a file from a drop-down menu + +### Markdown + +- [`markdown-it-container`](https://observablehq.observablehq.cloud/framework-example-markdown-it-container/) - The markdown-it-container plugin +- [`markdown-it-footnote`](https://observablehq.observablehq.cloud/framework-example-markdown-it-footnote/) - The markdown-it-footnote plugin +- [`markdown-it-wikilinks`](https://observablehq.observablehq.cloud/framework-example-markdown-it-wikilinks/) - The markdown-it-wikilinks plugin + +### Other + +- [`chess`](https://observablehq.observablehq.cloud/framework-example-chess/) - Load Zip data from FIDE; create a bump chart with Observable Plot +- [`custom-stylesheet`](https://observablehq.observablehq.cloud/framework-example-custom-stylesheet/) - Define a custom stylesheet (custom theme) +- [`datawrapper-api`](https://observablehq.observablehq.cloud/framework-example-datawrapper-api/) - Create a chart with the Datawrapper API and embed it in your page +- [`google-analytics`](https://observablehq.observablehq.cloud/framework-example-google-analytics/) - A Google Analytics dashboard with numbers and charts +- [`hello-world`](https://observablehq.observablehq.cloud/framework-example-hello-world/) - A minimal Framework project +- [`intersection-observer`](https://observablehq.observablehq.cloud/framework-example-intersection-observer/) - Scrollytelling with IntersectionObserver +- [`responsive-iframe`](https://observablehq.observablehq.cloud/framework-example-responsive-iframe/) - Adjust the height of an embedded iframe to fit its content + +## About these examples + +We offer two types of examples: **techniques** and **showcases**. + +Technique examples address lower-level needs such as “how to load data from Google Analytics” or “how to make a bump chart”. They’re smaller, piecemeal examples for common development tasks. Technique examples are intended to teach you how to accomplish a specific task and to provide reusable code that can be copy-pasted into your Framework project. + +Showcase examples, in contrast, address higher-level user needs such as “how to analyze website traffic” or “how to show the growth of an open-source project”. These larger, complete examples demonstrate how to create useful data apps. Showcase examples are intended primarily to inspire and show Framework’s potential. As applied examples, showcase examples also demonstrate multiple techniques working together; we encourage you to view source. + +### How to use these examples + +You can browse the source code for any of the examples by navigating to the respective folder on GitHub. You can then copy-paste the code into your own project or download individual files. All of the example code in this repository is covered by the same [open-source license](../LICENSE) as Framework itself. + +If you’d like to run (and tinker with) these examples locally, you can [clone the repo](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) like so: + +```sh +git clone git@github.com:observablehq/framework.git +``` + +Then `cd` into the desired example directory. From there you would typically run `npm install` or `yarn` to install dependencies. Please refer to each example’s `README.md` file for specific instructions; some examples may require additional configuration, such as setting environment variables to talk to external data sources. + +### Can’t find what you need? 🧐 + +If there’s an example you’d like to see, please let us know by [filing an issue](https://github.com/observablehq/framework/issues). + +If you have questions about an existing example, please [open a discussion](https://github.com/observablehq/framework/discussions). + +### We welcome contributions! 🤗 + +If you have an example that you’d like to share with the community, please [open a pull request](https://docs.github.com/en/pull-requests). Please follow the conventions set by the existing examples and let us know if you have any questions. + +Here are some technique examples we’d like to see: + +- Visualization + - Big number with area chart + - Daily metric chart with moving average + - Punchcard chart (activity by day of week and hour of day) + - Bump chart/rank chart + - Brushing + - Zooming +- Data loaders + - JSZip data loader + - npm data loader +- Markdown + - Inline TeX `$…$` diff --git a/examples/api/.gitignore b/examples/api/.gitignore index 34c5ee1ce..e58735f55 100644 --- a/examples/api/.gitignore +++ b/examples/api/.gitignore @@ -1,6 +1,4 @@ .DS_Store -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ yarn-error.log -yarn.lock diff --git a/examples/api/README.md b/examples/api/README.md index 76299d739..bbad372bd 100644 --- a/examples/api/README.md +++ b/examples/api/README.md @@ -1,14 +1,51 @@ -# API logs +[Framework examples →](../) -This is an example Observable Framework project. It uses API logs data collected from [observablehq.com](observablehq.com), and visualizes them as heatmaps, histograms and bar charts. +# Analyzing web logs -View the [live project](https://observablehq.com/framework/examples/api/). +View live: -## Data loaders +This report visualizes millions of requests to Observable’s API servers over a 7-day period in January 2024, revealing both traffic patterns and performance characteristics of Observable’s web service. -The datasets used are static snapshots. We use an [Apache Arrow](https://arrow.apache.org/) file to handle the large number of API logs. +This example showcases the flexibility of Observable Plot for creating custom, performant visualizations, and hints at the potential of Framework’s data loaders for working with large datasets. This example also demonstrates reading [Apache Parquet files](https://observablehq.com/framework/lib/arrow). (While this public example uses static data, at Observable we use [Snowflake data loaders](https://observablehq.observablehq.cloud/framework-example-loader-snowflake/) internally to create a similar live dashboard.) -## Charts +> [!TIP] +> Watch [our “last mile” webinar](https://www.youtube.com/watch?v=n5gFBQTClxc&t=696s) where we describe how we used this chart to optimize Observable’s API traffic. + +## Implementation + +``` +. +├── README.md +├── observablehq.config.js +├── package.json +└── src + ├── components + │   ├── apiHeatmap.js + │   └── apiHistogram.js + ├── data + │   ├── latency-heatmap-avatar.parquet + │   ├── latency-heatmap-documents-at.parquet + │   ├── latency-heatmap-documents-public.parquet + │   ├── latency-heatmap.parquet + │   ├── latency-histogram.parquet + │   ├── size-heatmap.parquet + │   ├── top-routes-count.parquet + │   └── top-routes-duration.parquet + └── index.md +``` + +No dependencies other than Framework. No required configuration (static data). + +### Data + +No data loaders; static data committed to git. The data is stored as Apache Parquet files. We use `FileAttachment.parquet` to read the files in the client. The files were generated using Snowflake data loaders, but we aren’t sharing the source code for the data loaders at this time. You can see the other Snowflake data loader example. + +The data is represented as TKTKTK. + +### Components + +Two custom components. This example has two reusable components for building the visualizations: `apiHeatmap.js` and `apiBars.js`. Both use a combination of [Observable Plot](https://observablehq.com/plot/) and [D3](https://d3js.org/) to create highly detailed and interactive charts. +Needs more explanation of how these work. diff --git a/examples/api/docs/components/apiBars.js b/examples/api/docs/components/apiBars.js deleted file mode 100644 index 1d60cc61f..000000000 --- a/examples/api/docs/components/apiBars.js +++ /dev/null @@ -1,19 +0,0 @@ -import * as Plot from "npm:@observablehq/plot"; - -export function ApiBars(routes, {color, title, label, transform = (d) => d, format = Math.round, width, x, y, href}) { - return Plot.plot({ - width, - marginLeft: 10, - x: {grid: true, insetRight: 80, transform, label}, - y: {axis: null, round: false}, - color, - title, - marks: [ - Plot.axisX({anchor: "top", labelAnchor: "left"}), - Plot.rectX(routes, {x, y, fill: color && y, sort: {y: "-x"}}), - Plot.ruleX([0]), - Plot.text(routes, {x, y, dx: -6, text: Plot.valueof(routes, x).map(transform).map(format), fill: "var(--theme-background)", frameAnchor: "right"}), // prettier-ignore - Plot.text(routes, {x, y, dx: 6, text: y, href, target: "_blank", frameAnchor: "left"}) - ] - }); -} diff --git a/examples/api/docs/data/api-heatmaps.arrow b/examples/api/docs/data/api-heatmaps.arrow deleted file mode 100644 index 42aabb12a..000000000 Binary files a/examples/api/docs/data/api-heatmaps.arrow and /dev/null differ diff --git a/examples/api/docs/data/summary.csv b/examples/api/docs/data/summary.csv deleted file mode 100644 index 8912f552b..000000000 --- a/examples/api/docs/data/summary.csv +++ /dev/null @@ -1,436 +0,0 @@ -route,count,type -document/{at}/{slug},3434051885,bytes -{at}/{slug}.js,1729087566,bytes -document/{id}@{version},1585880189,bytes -collection/{at}/{slug},961924073,bytes -avatar/{hash},954189500,bytes -d/{id}.js,889639624,bytes -documents/{at},863029330,bytes -{at}/{slug}@{version}.tgz,831400782,bytes -user,742790143,bytes -user/{at},656612312,bytes -d/{id}.tgz,646750333,bytes -d/{id}@{version}.js,628408817,bytes -signup-avatar,535934027,bytes -document/{id},525577712,bytes -d/{id}@{version}.tgz,410594878,bytes -document/{id}@{version}/imports,280626482,bytes -team/{id}/recent-views,181160415,bytes -search,180041729,bytes -user/recent-views,111968290,bytes -schedule/assign,103491590,bytes -documents/public,75833656,bytes -billing/{id}/trial,67571470,bytes -{at}/{slug}@{version}.js,64366562,bytes -thumbnail/assign,62108458,bytes -collection/{at}/{slug}/public,61026630,bytes -user/has-private-or-unlisted-documents,60808508,bytes -documents/{at}.rss,51455237,bytes -explore/public/tutorials,46913265,bytes -team/{id}/stats,44926544,bytes -document/{at}/{slug}/import,35583939,bytes -team/{id}/documents,30461313,bytes -{at}/{slug}@latest.js,28683311,bytes -thumbnail/{id}/hash,27990438,bytes -collections/{at},22287558,bytes -collections/{at}/public,21771781,bytes -documents/public/top,21524129,bytes -user/stats,21427625,bytes -team/{id}/members,20568967,bytes -collection/{at}/{slug}.rss,17615386,bytes -user/documents,17466536,bytes -{at}/{slug}.tgz,15148100,bytes -team/{id}/activity,13440295,bytes -users-exist,12251405,bytes -document/{at}/{slug}@{version},11723793,bytes -document/{id}/fork,11181993,bytes -avatar/{at},10211518,bytes -document/{id}/import,10019590,bytes -document/{id}@{version}/embed,9930767,bytes -documents/public.rss,9654524,bytes -document/{at}/{slug}/forks,8623793,bytes -billing/{id},7499320,bytes -user/setting,6803973,bytes -user/likes,6744329,bytes -user/activity,6518844,bytes -document/{at}/{slug}@{version}/embed,5871942,bytes -document/{id}/history,5786658,bytes -user/analytics/attribute,5370966,bytes -documents/public/trending,5366205,bytes -document/{id}/file,5225740,bytes -user/continue-editing,5154953,bytes -team/{id}/data-connector/token,4365787,bytes -user/{at}/following.json,4058295,bytes -user/{at}/followers.json,3691116,bytes -user/signpost,3596880,bytes -explore/public/featured-creators,3553813,bytes -team/{id}/groups,3503430,bytes -login,3417742,bytes -project/{at}/{slug},3319409,bytes -explore/public/topics,3176749,bytes -{at}/{slug}@paused.js,2717264,bytes -robots.txt,2712980,bytes -signup,2582838,bytes -document/{id}/members,2565033,bytes -document/{at}/{slug}@latest,2494673,bytes -team/{id}/projects,2481630,bytes -document/new,2342382,bytes -cli/deploy/{id}/file,2103280,bytes -team/new,1960839,bytes -team/{id}/avatar,1860029,bytes -document/{id}/importers,1793936,bytes -prompts/assist,1673431,bytes -team/{id}/data-connectors,1645084,bytes -team/{id}/invitations,1525266,bytes -team/{id}/secrets,1494629,bytes -d/{id}@latest.js,1365565,bytes -users-suggest-logins,1356124,bytes -oidc/google,1304900,bytes -document/{id}/live,1254912,bytes -document/{id}/file/delete,1240597,bytes -documents/{id}@{version}/{id}@{version}/ancestry,1166126,bytes -team/{id}/cloud-file/token,1159794,bytes -explore/public/observable-highlights,1056693,bytes -billing/{id}/invoices,980828,bytes -document/{id}/revert,922261,bytes -,891260,bytes -document/{id}/publish,881366,bytes -document/{at}/{slug}/imports,843075,bytes -github/oauth,808382,bytes -document/{id}/data-connector/token/embed,807804,bytes -document/{at}/{slug}/importers,792237,bytes -document/{id}/slug-exists,758446,bytes -document/{id}/trash,704661,bytes -oembed,650667,bytes -otp/invite,648340,bytes -document/{id}/like,640054,bytes -collection/bulk,621613,bytes -document/{id}/roles,592527,bytes -billing/{id}/invoices/upcoming,526882,bytes -explore/public/social-topics,517193,bytes -document/{id}@{version}/download,510035,bytes -users-match,499672,bytes -document/{id}/forks,489145,bytes -otp/redirect,467835,bytes -user/{at}/identity,294096,bytes -document/{id}/{at}/config/embed/import,292522,bytes -document/{id}/slug,290948,bytes -document/{id}/pause,255162,bytes -document/{id}/{at}/colors/embed/import,240344,bytes -team/{id}/invite,214045,bytes -user/tokens,209891,bytes -team/{id}/assist/provider,203954,bytes -collection/{id}/reorder,195355,bytes -document/{at}/{slug}@{version}/import,191562,bytes -logout,186801,bytes -otp/login,165177,bytes -document/{id}/edit,160128,bytes -team/{id}/policies,153672,bytes -user/data-connector/token,137696,bytes -document/{id}/view,126720,bytes -team/{id}/run-quota,124568,bytes -collection/new,124363,bytes -document/{id}/chat/delete,121336,bytes -team/{id}/accept,117347,bytes -document/{id}/subscribe,113036,bytes -user/secrets,108998,bytes -document/{id}/secrets/embed,108901,bytes -document/{id}/{at}/styles/embed/import,103700,bytes -schedule/{id}/runs,79660,bytes -document/{id}/comments,77568,bytes -document/{id}/{id}/embed/import,62242,bytes -favicon.ico,59600,bytes -document/{id}/{at}/sql/embed/import,54718,bytes -document/{id}/{at}/lazy/embed/import,28217,bytes -document/{id}/{at}/puppeteer/embed/import,27140,bytes -run,2336,bytes -d/{id}.js,1370913,count -{at}/{slug}.js,875032,count -user/{at},649850,count -user,649498,count -document/{at}/{slug},631445,count -avatar/{hash},557661,count -documents/{at},320144,count -d/{id}@{version}.js,312502,count -document/{id}@{version}/imports,310325,count -document/{id}@{version},261593,count -collection/{at}/{slug},177210,count -schedule/assign,117414,count -billing/{id}/trial,100735,count -user/has-private-or-unlisted-documents,100424,count -thumbnail/assign,98192,count -document/{id},97700,count -explore/public/tutorials,78209,count -team/{id}/recent-views,71279,count -team/{id}/stats,68594,count -documents/{at}.rss,52626,count -thumbnail/{id}/hash,52620,count -collection/{at}/{slug}/public,50590,count -{at}/{slug}@latest.js,49934,count -document/{at}/{slug}/import,36769,count -user/recent-views,32394,count -user/stats,31830,count -documents/public/top,30196,count -collections/{at}/public,27755,count -avatar/{at},26587,count -search,21994,count -users-exist,21398,count -collection/{at}/{slug}.rss,12253,count -user/setting,12102,count -{at}/{slug}@{version}.js,11816,count -document/{id}/import,11696,count -user/analytics/attribute,10654,count -team/{id}/activity,10232,count -documents/public,9812,count -team/{id}/documents,8917,count -collections/{at},8305,count -document/{id}/file,7916,count -team/{id}/data-connector/token,7392,count -cli/deploy/{id}/file,6896,count -user/signpost,6619,count -robots.txt,6334,count -team/{id}/members,5660,count -document/{id}/fork,4967,count -user/activity,4938,count -billing/{id},4650,count -user/{at}/following.json,4609,count -user/{at}/followers.json,4594,count -team/{id}/groups,4291,count -user/documents,4193,count -project/{at}/{slug},4120,count -user/likes,4115,count -login,3960,count -signup,3635,count -signup-avatar,3314,count -document/{id}/live,3269,count -documents/public.rss,3196,count -team/{id}/avatar,3134,count -team/new,3131,count -{at}/{slug}@{version}.tgz,2825,count -document/{at}/{slug}@{version},2776,count -document/{id}/members,2702,count -document/{id}/importers,2700,count -document/new,2600,count -team/{id}/data-connectors,2577,count -documents/public/trending,2562,count -document/{id}/file/delete,2491,count -user/continue-editing,2432,count -,2138,count -team/{id}/cloud-file/token,2044,count -oidc/google,2033,count -users-suggest-logins,1985,count -explore/public/observable-highlights,1880,count -explore/public/topics,1871,count -team/{id}/secrets,1782,count -document/{at}/{slug}/forks,1773,count -team/{id}/invitations,1734,count -team/{id}/projects,1634,count -oembed,1594,count -document/{id}@{version}/embed,1463,count -document/{at}/{slug}@{version}/embed,1459,count -otp/invite,1355,count -document/{id}/slug-exists,1295,count -document/{id}/data-connector/token/embed,1285,count -document/{id}/trash,1272,count -github/oauth,1199,count -document/{id}/like,1146,count -document/{id}/history,1067,count -document/{id}/roles,1044,count -collection/bulk,1032,count -prompts/assist,985,count -document/{at}/{slug}/imports,980,count -documents/{id}@{version}/{id}@{version}/ancestry,955,count -otp/redirect,900,count -document/{id}/publish,893,count -d/{id}@{version}.tgz,874,count -d/{id}@latest.js,872,count -{at}/{slug}@paused.js,864,count -explore/public/social-topics,793,count -explore/public/featured-creators,788,count -users-match,549,count -document/{id}/slug,535,count -user/{at}/identity,523,count -d/{id}.tgz,493,count -document/{id}@{version}/download,492,count -document/{id}/{at}/config/embed/import,460,count -document/{id}/pause,458,count -document/{id}/edit,417,count -team/{id}/invite,395,count -document/{id}/{at}/colors/embed/import,382,count -collection/{id}/reorder,333,count -document/{id}/view,330,count -document/{id}/revert,323,count -team/{id}/assist/provider,316,count -billing/{id}/invoices,309,count -billing/{id}/invoices/upcoming,309,count -team/{id}/policies,270,count -user/tokens,264,count -document/{id}/chat/delete,240,count -document/{at}/{slug}@latest,233,count -user/data-connector/token,233,count -document/{id}/forks,232,count -{at}/{slug}.tgz,221,count -logout,213,count -team/{id}/accept,212,count -team/{id}/run-quota,208,count -document/{id}/comments,202,count -document/{at}/{slug}/importers,200,count -document/{at}/{slug}@{version}/import,200,count -document/{id}/subscribe,199,count -document/{id}/secrets/embed,197,count -otp/login,189,count -collection/new,184,count -document/{id}/{at}/styles/embed/import,156,count -favicon.ico,145,count -user/secrets,144,count -schedule/{id}/runs,134,count -document/{id}/{id}/embed/import,98,count -document/{id}/{at}/sql/embed/import,82,count -document/{id}/{at}/lazy/embed/import,44,count -document/{id}/{at}/puppeteer/embed/import,43,count -run,6,count -documents/{at},379005283,duration -avatar/{hash},231156579,duration -document/{at}/{slug},84099568,duration -d/{id}.js,78917118,duration -documents/{at}.rss,56828924,duration -document/{id}@{version}/imports,37214220,duration -billing/{id}/trial,30897430,duration -{at}/{slug}.js,30073851,duration -user/{at},23510163,duration -d/{id}@{version}.js,19381835,duration -collection/{at}/{slug},17973396,duration -user,17968164,duration -team/{id}/stats,15192431,duration -document/{at}/{slug}/import,15182585,duration -documents/public/top,13714845,duration -document/{id}@{version},13260749,duration -explore/public/tutorials,12887494,duration -document/{id},11123902,duration -documents/public,9062762,duration -search,7781202,duration -schedule/assign,7672229,duration -user/has-private-or-unlisted-documents,7628116,duration -team/{id}/recent-views,5803676,duration -{at}/{slug}@{version}.tgz,4272876,duration -collection/{at}/{slug}/public,4156485,duration -document/{id}/file,3715672,duration -documents/public.rss,3434392,duration -user/recent-views,2882338,duration -user/stats,2870106,duration -billing/{id},2510599,duration -{at}/{slug}@latest.js,2384583,duration -team/{id}/documents,1710339,duration -explore/public/topics,1646674,duration -team/new,1529012,duration -team/{id}/activity,1418802,duration -documents/public/trending,1390459,duration -signup,1270917,duration -collection/{at}/{slug}.rss,1178829,duration -document/{id}/import,1006009,duration -users-suggest-logins,984635,duration -avatar/{at},916922,duration -collections/{at},783721,duration -user/continue-editing,681310,duration -d/{id}.tgz,627524,duration -{at}/{slug}@{version}.js,616785,duration -thumbnail/assign,590035,duration -oidc/google,573845,duration -d/{id}@{version}.tgz,505241,duration -github/oauth,479980,duration -collections/{at}/public,477627,duration -user/activity,449620,duration -user/documents,442998,duration -document/{at}/{slug}/forks,424418,duration -signup-avatar,368283,duration -document/{at}/{slug}@{version},345371,duration -team/{id}/invite,340569,duration -document/{id}/fork,336171,duration -cli/deploy/{id}/file,334789,duration -team/{id}/avatar,329815,duration -explore/public/social-topics,323458,duration -thumbnail/{id}/hash,314960,duration -explore/public/observable-highlights,313942,duration -team/{id}/members,296114,duration -document/{id}/publish,271570,duration -explore/public/featured-creators,247116,duration -team/{id}/projects,201808,duration -document/{id}@{version}/embed,176660,duration -project/{at}/{slug},145602,duration -document/{id}/importers,112108,duration -document/{at}/{slug}/imports,109201,duration -otp/redirect,108468,duration -users-exist,108314,duration -document/{id}/history,103218,duration -team/{id}/groups,102657,duration -document/{id}/roles,98960,duration -user/analytics/attribute,94814,duration -user/setting,91747,duration -user/likes,91677,duration -document/{id}/members,84841,duration -billing/{id}/invoices,84595,duration -documents/{id}@{version}/{id}@{version}/ancestry,82085,duration -document/{at}/{slug}@{version}/embed,80218,duration -document/{id}/file/delete,76474,duration -document/new,75711,duration -team/{id}/data-connector/token,74311,duration -document/{id}/data-connector/token/embed,69501,duration -billing/{id}/invoices/upcoming,65715,duration -{at}/{slug}@paused.js,62191,duration -{at}/{slug}.tgz,58375,duration -collection/bulk,58089,duration -document/{at}/{slug}/importers,57857,duration -team/{id}/accept,50669,duration -user/signpost,49665,duration -team/{id}/data-connectors,39976,duration -document/{id}/trash,38464,duration -login,34243,duration -d/{id}@latest.js,33083,duration -team/{id}/cloud-file/token,29890,duration -document/{id}/like,29888,duration -collection/{id}/reorder,24338,duration -document/{at}/{slug}@latest,22833,duration -team/{id}/run-quota,20700,duration -user/{at}/following.json,19980,duration -document/{id}/revert,19672,duration -team/{id}/invitations,19572,duration -user/{at}/followers.json,19399,duration -users-match,19036,duration -team/{id}/secrets,18927,duration -document/{id}/slug-exists,13666,duration -robots.txt,12118,duration -document/{id}/secrets/embed,11007,duration -document/{id}/forks,10341,duration -prompts/assist,8889,duration -document/{id}@{version}/download,8356,duration -document/{id}/{id}/embed/import,7764,duration -document/{id}/{at}/config/embed/import,7758,duration -document/{id}/{at}/colors/embed/import,6058,duration -document/{at}/{slug}@{version}/import,5712,duration -document/{id}/subscribe,5625,duration -document/{id}/slug,5609,duration -document/{id}/live,5472,duration -document/{id}/pause,5345,duration -team/{id}/policies,5342,duration -user/tokens,3972,duration -,3672,duration -otp/login,3472,duration -oembed,3370,duration -document/{id}/chat/delete,3226,duration -user/{at}/identity,2448,duration -otp/invite,2416,duration -user/data-connector/token,2388,duration -schedule/{id}/runs,2162,duration -document/{id}/{at}/styles/embed/import,2055,duration -team/{id}/assist/provider,1849,duration -user/secrets,1795,duration -document/{id}/{at}/sql/embed/import,1612,duration -document/{id}/{at}/lazy/embed/import,1365,duration -collection/new,1152,duration -document/{id}/{at}/puppeteer/embed/import,970,duration -document/{id}/edit,662,duration -document/{id}/view,567,duration -logout,367,duration -favicon.ico,196,duration -document/{id}/comments,96,duration -run,6,duration diff --git a/examples/api/docs/index.md b/examples/api/docs/index.md deleted file mode 100644 index 8977e5d5d..000000000 --- a/examples/api/docs/index.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -toc: true ---- - -```js -import {ApiBars} from "./components/apiBars.js"; -import {ApiHeatmap, ApiHistogram} from "./components/apiHeatmap.js"; -``` - -```js -const heatmaps = FileAttachment("data/api-heatmaps.arrow").arrow(); -const summary = FileAttachment("data/summary.csv").csv(); -``` - -```js -const latencyByRouteCanvas = document.createElement("canvas"); -const latencyCanvas = document.createElement("canvas"); -const bytesCanvas = document.createElement("canvas"); -const topRoutes = summary.filter(d => d.type === 'count').slice(0, 20).map(d => d.route).sort(d3.ascending); -const canvasByRoute = d3.rollup(topRoutes, () => document.createElement("canvas"), d => d); -``` - -```js -const total = d3.sum(heatmaps.getChild("duration_count")) -const color = Plot.scale({ - color: { - domain: d3.groupSort(heatmaps.getChild("duration_route"), (V) => -V.length, (d) => d).filter((d) => d) // prettier-ignore - } -}); - -const routesByCount = summary.filter(d => d.type === 'count').slice(0, 20); -const routesByDuration = summary.filter(d => d.type === 'duration').slice(0, 20); -const routesByBytes = summary.filter(d => d.type === 'bytes').slice(0, 20); -const count = heatmaps.getChild('duration_count'); -const routeDropdown = Inputs.select(topRoutes, {label: 'Select a route', value: 'document/{id}@{version}'}); -const routeFilter = view(routeDropdown); -const endpointLegend = (endpoint) => Plot.rect([endpoint], { x1: 0, y1: 0, x2: 10, y2: 10, fill: d => d }).plot({ - width: 10, height: 10, margin: 0, axis: null, color: color, x: { range: [0, 10] }, y: { range: [0, 10] }}); -const nowrap = node => html`${node}`;; -``` - - -# API logs - -API logs can be helpful for finding under-performing routes and web scrapers, but looking at this data in aggregate often hides interesting trends. This visualization shows a heatmap of ${d3.format('.2s')(total)} API requests for [observablehq.com](https://observablehq.com/) from a sampled 7-day period. Each cell is colored by the most common route at a point in time and duration. Hover over a pixel to read the name of the route. - -
-
${resize((width) => ApiHeatmap(heatmaps, {canvas: latencyByRouteCanvas, color, width, title: "Response latency heatmap", label: "Duration (ms)", y1: 0.5, y2: 10_000, yMetric: 'duration_count', fillMetric: 'duration_route'}))}
-
- -What do we see? There are clear intervals of activity for certain routes, such as ${nowrap(html`${endpointLegend('document/{id}@{version}')} document/{id}@{version}`)}, the route used to request a version of an Observable notebook, and ${nowrap(html`${endpointLegend('documents/{at}')} documents/{at}`)}, which returns all the notebooks for a given user. - -Here is the same data visualized as a bar chart counting the number of requests by route. - -
-
${resize((width) => ApiBars(routesByCount, {color, width, transform: (d) => d / 1000, label: "Total requests (thousands)", title: "Top API routes by count", x: "count", y: "route"}))}
-
- -With the bar chart, we lose a lot of the details available in the heatmap. The ${nowrap(html`${endpointLegend('document/{id}@{version}')} document/{id}@{version}`)} route is a less common in aggregate than ${nowrap(html`${endpointLegend('d/{id}.js')} d/{id}.js`)}, but it likely one that we would want to investigate further. - -A histogram of latencies reveals similar insights to the bar chart view, but with more depth. We can understand the cardinality of each route as well as its distribution in latency. Those routes with a long tail of latencies may be candidates for optimization. - -
- ${resize((width) => ApiHistogram(heatmaps, {color, width, title: "Response latency histogram", label: "duration (ms)", y1: 0.5, y2: 10_000, yMetric: 'duration_count', fillMetric: 'duration_route'}))} -
- -If we want to identify general periodicity in our data, we can change our categorical color scale based on the route name to a sequential scale encoding the frequency of requests at in a given point. - -
-
-
${resize((width) => ApiHeatmap(heatmaps, {canvas: latencyCanvas, color, width, title: "Response latency heatmap", label: "Duration (ms)", y1: 0.5, y2: 10_000, yMetric: 'duration_count', fillMetric: 'duration_route', type: 'frequency'}))}
-
${Plot.legend({color: {domain: d3.extent(count, d => d / 2), nice: true }})}
-
- -The sheer volume of requests that happened on midday January 31st becomes much more apparent with the new color encoding. From what we saw in the earlier heatmap, this trend is likely caused by the ${nowrap(html`${endpointLegend('document/{id}@{version}')} document/{id}@{version}`)} route. We can also filter our data in our heatmap to see if that theory is correct. - -${routeDropdown} - -
-
-
${resize((width) => ApiHeatmap(heatmaps, {canvas: canvasByRoute.get(routeFilter), color, width, title: "Response latency heatmap", label: "Duration (ms)", y1: 0.5, y2: 10_000, yMetric: 'duration_count', fillMetric: 'duration_route', type: 'frequency', routeFilter}))}
-
${Plot.legend({color: {domain: d3.extent(count, d => d / 2), nice: true }})}
-
- -We looked into whether there were specific IP addresses causing the increase of ${nowrap(html`${endpointLegend('document/{id}@{version}')} document/{id}@{version}`)} and found it was an educational institution scraping public notebooks for a content analysis. At the end of each month, they do a longer scrape of more pages, causing the spike in requests on January 31st. - -The heatmap visualization form works well for a variety of metrics, such as bytes written. Our educational instititution scraper appears again with this variation. - -
-
${resize((width) => ApiHeatmap(heatmaps, {canvas: bytesCanvas, color, width, title: "Response size heatmap", label: "Bytes", y1: 400, y2: 160_000, yMetric: 'bytes_count', fillMetric: 'bytes_route'}))}
-
- -This API analysis has been fruitful for the Observable team to identify routes for optimization. With the heatmap visualization, we identified an endpoint that was being called ~1,000 times a day, not enough to be noticed in a bar chart, but accounted for >50% of all requests over 50kb. The route was erronously returning 200 notebooks when we only needed 9. Through granular views, we're able to identify outliers that would otherwise continue unnoticed. diff --git a/examples/api/observablehq.config.js b/examples/api/observablehq.config.js index 3f34a8571..fb0f92431 100644 --- a/examples/api/observablehq.config.js +++ b/examples/api/observablehq.config.js @@ -1,4 +1,3 @@ export default { - title: "API logs", - pager: false + root: "src" }; diff --git a/examples/api/package.json b/examples/api/package.json index 6e3619044..974d8b80c 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,14 +1,20 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../.." + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/api/src/.gitignore b/examples/api/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/api/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/api/docs/components/apiHeatmap.js b/examples/api/src/components/apiHeatmap.js similarity index 63% rename from examples/api/docs/components/apiHeatmap.js rename to examples/api/src/components/apiHeatmap.js index ac274c54a..6bc401a71 100644 --- a/examples/api/docs/components/apiHeatmap.js +++ b/examples/api/src/components/apiHeatmap.js @@ -1,13 +1,11 @@ -/* eslint-disable */ - import * as Plot from "npm:@observablehq/plot"; import * as d3 from "npm:d3"; -const dt = 1000 * 60 * 5; // 5 minute intervals -const x2 = 1706832000000; // end date -const x1 = 1706227200000; // start date -const dx = Math.floor((x2 - x1) / dt); // number of columns -const dy = 500; // number of rows +export const dt = 1000 * 60 * 5; // 5 minute intervals +export const x2 = 1706832000000; // end date +export const x1 = 1706227200000; // start date +export const dx = Math.floor((x2 - x1) / dt); // number of columns +export const dy = 500; // number of rows const margin = 30; const marginTop = 20; @@ -18,35 +16,32 @@ const marginLeft = margin; const canvasCache = new WeakSet(); export function ApiHeatmap( - table, + count, + category, { canvas = document.createElement("canvas"), + opacity = Plot.scale({opacity: {domain: [0, 25], clamp: true}}), color, width, height = 550, y1, y2, - title, label, - yMetric, - fillMetric, - routeFilter, - type = "route" } ) { - const count = table.getChild(yMetric); - const route = table.getChild(fillMetric); + const plot = Plot.plot({ - title, + figure: true, width, height, marginTop, marginRight, marginBottom, marginLeft, + style: "overflow: visible;", x: {type: "utc", domain: [x1, x2]}, y: {type: "log", domain: [y1, y2], label}, - color: {label: type}, + color: {label: color.label}, marks: [ Plot.frame(), Plot.tip({length: 1}, {fill: [""], x: [x1], y: [y1], format: {x: null, y: null}, render: renderTip}) @@ -70,26 +65,22 @@ export function ApiHeatmap( height: calc(100% - ${marginTop + marginBottom}px); `; - function tick(i1, i2) { + const tick = (i1, i2) => { for (let i = i1; i < i2; ++i) { for (let j = 0; j < dy; ++j) { const k = j * dx + i; if (!count.get(k)) continue; - if (routeFilter) { - context.globalAlpha = routeFilter === route.get(k) ? Math.min(1, count.get(k) / 15) : 0; - } else { - context.globalAlpha = Math.min(1, count.get(k) / 25); - } - if (type === "frequency") { - context.fillStyle = d3.interpolateTurbo(count.get(k) / 80); + if (category) { + context.globalAlpha = opacity.apply(count.get(k)); + context.fillStyle = color.apply(category.get(k)); } else { - context.fillStyle = color.apply(route.get(k)); + context.fillStyle = color.apply(count.get(k)); } context.fillRect(i, dy - j - 1, 1, 1); } } if (i2 < dx) requestAnimationFrame(() => tick(i2, i2 + (i2 - i1))); - } + }; const context = canvas.getContext("2d"); context.fillRect(0, 0, dx, dy); @@ -115,12 +106,12 @@ export function ApiHeatmap( const j = Math.floor(k / dx); values.x[0] = ((i + 0.5) / dx) * (width - marginLeft - marginRight) + marginLeft; values.y[0] = ((dy - 0.5 - j) / dy) * (height - marginTop - marginBottom) + marginTop; - if (type === "frequency") { - values.fill[0] = d3.interpolateTurbo(count.get(k) / 80); - values.channels.fill.value[0] = count.get(k); + if (category) { + values.fill[0] = color.apply(category.get(k)); + values.channels.fill.value[0] = category.get(k); } else { - values.fill[0] = color.apply(route.get(k)); - values.channels.fill.value[0] = route.get(k); + values.fill[0] = color.apply(count.get(k)); + values.channels.fill.value[0] = count.get(k); } const r = next([0], scales, values, dimensions, context); g.replaceWith(r); @@ -157,35 +148,3 @@ export function ApiHeatmap( return plot; } - -export function ApiHistogram(heatmap, {color, width, title, label, y1, y2, yMetric, fillMetric}) { - const route = heatmap.getChild(fillMetric); - return Plot.plot({ - title, - width, - marginBottom: 20, - color: {...color, label: "route"}, - x: {type: "log", domain: [y1, y2 - 1], label}, - y: {axis: null, label: "requests"}, - marks: [ - Plot.ruleX( - heatmap.getChild(yMetric), - Plot.stackY( - {order: "-sum"}, - Plot.groupX( - {y: "sum"}, - { - filter: (d, i) => i >= dx && d, - x: (d, i) => Math.exp((Math.floor(i / dx) / dy) * (Math.log(y2) - Math.log(y1)) + Math.log(y1)), - y: Plot.identity, - stroke: (_, i) => route.get(i), - strokeWidth: width / dy + 0.5, - tip: {format: {stroke: true, x: (d) => Math.round(d).toLocaleString("en-US")}} - } - ) - ) - ), - Plot.ruleY([0]) - ] - }); -} diff --git a/examples/api/src/components/apiHistogram.js b/examples/api/src/components/apiHistogram.js new file mode 100644 index 000000000..8913b5ec1 --- /dev/null +++ b/examples/api/src/components/apiHistogram.js @@ -0,0 +1,122 @@ +import * as Plot from "npm:@observablehq/plot"; +import * as d3 from "npm:d3"; +import {dy} from "./apiHeatmap.js"; + +const marginTop = 0; +const marginRight = 20; +const marginBottom = 30; +const marginLeft = 20; + +const canvasCache = new WeakSet(); + +export function ApiHistogram( + value, + count, + category, + {canvas = document.createElement("canvas"), color, width, height = 360, label, y1, y2} +) { + const ky = 165; // number of requests per pixel + + const plot = Plot.plot({ + figure: true, + width, + height, + marginTop, + marginRight, + marginBottom, + marginLeft, + style: "overflow: visible;", + x: {type: "log", domain: [y1, y2 - 1], label}, + y: {axis: null, domain: [0, (height - marginTop - marginBottom) * ky], label: "requests"}, + color: {label: color.label}, + marks: [ + Plot.ruleY([0]), + Plot.tip({length: 1}, {fill: [""], x: [y1], y: [0], format: {x: null, y: null}, render: renderTip}) + ] + }); + + const svg = plot.querySelector("svg"); + const div = document.createElement("div"); + div.style = "position: relative;"; + + if (!canvasCache.has(canvas)) { + canvasCache.add(canvas); + canvas.width = dy; + canvas.height = height - marginTop - marginBottom; + canvas.style = ` + image-rendering: pixelated; + position: absolute; + left: ${marginLeft}px; + top: ${marginTop}px; + width: calc(100% - ${marginLeft + marginRight}px); + height: calc(100% - ${marginTop + marginBottom}px); + `; + + const tick = (i, j1, j2) => { + for (let j = j1; j < j2; ++j) { + let sum = 0; + for (; i < value.length; ++i) { + const currentValue = value.get(i); + if (currentValue < j) continue; + if (currentValue > j) break; + const currentCount = count.get(i); + const currentCategory = category.get(i); + const y0 = plot.scale("y").apply(sum); + const y1 = plot.scale("y").apply((sum += currentCount)); + context.fillStyle = color.apply(currentCategory); + context.fillRect(j, y1, 1, y0 - y1); + } + } + if (j2 < dy) requestAnimationFrame(() => tick(i, j2, j2 + (j2 - j1))); + }; + + const context = canvas.getContext("2d"); + requestAnimationFrame(() => tick(0, 0, 20)); + } + + svg.style.position = "relative"; + svg.replaceWith(div); + div.appendChild(canvas); + div.appendChild(svg); + + function renderTip(index, scales, values, dimensions, context, next) { + let g = next([], scales, values, dimensions, context); + const svg = context.ownerSVGElement; + svg.addEventListener("pointerenter", pointermove); + svg.addEventListener("pointermove", pointermove); + svg.addEventListener("pointerleave", pointerleave); + function pointermove(event) { + const [px, py] = d3.pointer(event); + const found = find(scales.x.invert(px), scales.y.invert(py)); + if (found == null) return pointerleave(); + const [k, y] = found; + values.x[0] = px; + values.y[0] = scales.y(y); + values.fill[0] = color.apply(category.get(k)); + values.channels.fill.value[0] = category.get(k); + const r = next([0], scales, values, dimensions, context); + g.replaceWith(r); + g = r; + } + function pointerleave() { + const r = next([], scales, values, dimensions, context); + g.replaceWith(r); + g = r; + } + return g; + } + + function find(y, currentCount) { + if (!(y1 <= y && y <= y2)) return; + const currentValue = Math.floor(((Math.log(y) - Math.log(y1)) / (Math.log(y2) - Math.log(y1))) * dy); + let i = 0, j, sum = 0; + for (; i < value.length; ++i) { + if (value.get(i) < currentValue) continue; + if (value.get(i) > currentValue) break; + if ((sum += count.get((j = i))) >= currentCount) break; + } + if (sum) return [j, sum - count.get(j) / 2]; + } + + return plot; +} diff --git a/examples/api/src/data/latency-heatmap-avatar.parquet b/examples/api/src/data/latency-heatmap-avatar.parquet new file mode 100644 index 000000000..174b7bb44 Binary files /dev/null and b/examples/api/src/data/latency-heatmap-avatar.parquet differ diff --git a/examples/api/src/data/latency-heatmap-documents-at.parquet b/examples/api/src/data/latency-heatmap-documents-at.parquet new file mode 100644 index 000000000..095979542 Binary files /dev/null and b/examples/api/src/data/latency-heatmap-documents-at.parquet differ diff --git a/examples/api/src/data/latency-heatmap-documents-public.parquet b/examples/api/src/data/latency-heatmap-documents-public.parquet new file mode 100644 index 000000000..18c0045a6 Binary files /dev/null and b/examples/api/src/data/latency-heatmap-documents-public.parquet differ diff --git a/examples/api/src/data/latency-heatmap.parquet b/examples/api/src/data/latency-heatmap.parquet new file mode 100644 index 000000000..8cf11cc43 Binary files /dev/null and b/examples/api/src/data/latency-heatmap.parquet differ diff --git a/examples/api/src/data/latency-histogram.parquet b/examples/api/src/data/latency-histogram.parquet new file mode 100644 index 000000000..607a01e4a Binary files /dev/null and b/examples/api/src/data/latency-histogram.parquet differ diff --git a/examples/api/src/data/size-heatmap.parquet b/examples/api/src/data/size-heatmap.parquet new file mode 100644 index 000000000..19d95f389 Binary files /dev/null and b/examples/api/src/data/size-heatmap.parquet differ diff --git a/examples/api/src/data/top-routes-count.parquet b/examples/api/src/data/top-routes-count.parquet new file mode 100644 index 000000000..e17ba352f Binary files /dev/null and b/examples/api/src/data/top-routes-count.parquet differ diff --git a/examples/api/src/data/top-routes-duration.parquet b/examples/api/src/data/top-routes-duration.parquet new file mode 100644 index 000000000..d35a26139 Binary files /dev/null and b/examples/api/src/data/top-routes-duration.parquet differ diff --git a/examples/api/src/index.md b/examples/api/src/index.md new file mode 100644 index 000000000..11704467b --- /dev/null +++ b/examples/api/src/index.md @@ -0,0 +1,161 @@ +```js +import {ApiHeatmap} from "./components/apiHeatmap.js"; +import {ApiHistogram} from "./components/apiHistogram.js"; +``` + +# Analyzing web logs + +Web logs capture traffic metadata, such as the request time and route, how long the server took to respond, the response size, and so on. Analyzing web logs sheds light on both server performance and client behavior. Yet the common practice of summary statistics (_e.g._, 95th-percentile latency) often hides interesting patterns! This is because performance varies wildly based on the nature of the request, and unusual clients such as bots can easily hide in a sea of “natural” traffic. + +What if — instead of summarizing — we plotted _every_ request as a dot with time along *x*→ and latency (on a log scale) along *y*↑? + +```js +const latencyHeatmap = FileAttachment("data/latency-heatmap.parquet").parquet(); +const latencyByRouteCanvas = document.createElement("canvas"); +``` + +
+

Response latency, color by route

+ ${resize((width) => ApiHeatmap(latencyHeatmap.getChild("count"), latencyHeatmap.getChild("route"), {y1: 0.5, y2: 10_000, canvas: latencyByRouteCanvas, color: routeColor, width, label: "Duration (ms)"}))} +
+ +```js +const topRoutesPixel = d3.sort(d3.rollups(latencyHeatmap.getChild("route"), (D) => D.length, (d) => d).filter(([d]) => d), ([, d]) => -d).map(([route, count]) => ({route, count})); +const routeColor = Object.assign(Plot.scale({color: {domain: topRoutesPixel.map((d) => d.route)}}), {label: "route"}); +const routeSwatch = (route) => html` ${route}`; +``` + +The plot above shows a sample of ${d3.sum(latencyHeatmap.getChild("count")).toLocaleString("en-US")} requests to Observable servers over a 7-day period. Color encodes the associated route. Hover to see the route. + +
Since the image is discrete, this scatterplot is effectively a heatmap: each pixel corresponds to a 5-minute time interval and some narrow latency band, while color encodes the most-frequent route within the pixel. There are many routes, so categorical colors are recycled; yet much like political maps, color reveals boundaries.
+ +The detail in this plot is astonishing: it shows the varying performance of different routes, and intriguing temporal patterns. We’ll tease apart these patterns in a bit. First let’s better understand what we’re looking at. + +Collapsing *x*→ (time) gives a more traditional view of latency: a stacked histogram colored by route. This view focuses on performance. Notice ${routeSwatch("/documents/@{login}")} tends to be slow (~1 second), and ${routeSwatch("/avatar/{hash}")} tends to vary widely. Performance is contextualized by showing how much traffic routes receive in aggregate: area is proportional to request volume. The popular ${routeSwatch("/d/{id}.js")} and ${routeSwatch("/@{login}/{slug}.js")} routes power [notebook imports](https://observablehq.com/@observablehq/import), so we want them to be fast (and they are). + +```js +const latencyHistogram = FileAttachment("data/latency-histogram.parquet").parquet(); +const histogramCanvas = document.createElement("canvas"); +``` + +
+

Response latency histogram

+ ${resize((width) => ApiHistogram(latencyHistogram.getChild("duration"), latencyHistogram.getChild("count"), latencyHistogram.getChild("route"), {canvas: histogramCanvas, color: routeColor, width, label: "Duration (ms)", y1: 0.5, y2: 10_000}))} +
+ +
The artifacts on the left of the histogram (as well as on the bottom of the heatmap above) are due to the millisecond precision of latency values. Latencies are uniformly jittered by ±0.5ms to smooth (or smear) the data.
+ +Analyzing web logs lets us focus on optimizing routes that are both slow and popular, such as ${routeSwatch("/documents/@{login}")} and ${routeSwatch("/avatar/{hash}")}. We can confirm this by aggregating routes by total count and duration. + +```js +const topRoutesCount = visibility().then(() => FileAttachment("data/top-routes-count.parquet").parquet()); +const topRoutesDuration = visibility().then(() => FileAttachment("data/top-routes-duration.parquet").parquet()); +``` + +
+
+

Top routes by total count

+ ${resize((width) => Plot.plot({ + width, + marginLeft: 10, + x: {axis: "top", labelAnchor: "left", grid: true, insetRight: 90, transform: (d) => d / 1000, label: "Requests (thousands)"}, + y: {axis: null, round: false}, + color: routeColor, + marks: [ + Plot.rectX(topRoutesCount, {x: "count", y: "route", fill: "route", sort: {y: "-x", limit: 10}}), + Plot.ruleX([0]), + Plot.text(topRoutesCount, {x: "count", y: "route", dx: -6, text: (d) => d.count / 1000, fill: "var(--theme-background)", frameAnchor: "right"}), + Plot.text(topRoutesCount, {x: "count", y: "route", dx: 6, text: "route", frameAnchor: "left"}) + ] + }))} +
+
+

Top routes by total duration

+ ${resize((width) => Plot.plot({ + width, + marginLeft: 10, + x: {axis: "top", labelAnchor: "left", grid: true, insetRight: 90, transform: (d) => d / (1000 * 60 * 60), label: "Duration (hours)"}, + y: {axis: null, round: false}, + color: routeColor, + marks: [ + Plot.rectX(topRoutesDuration, {x: "duration", y: "route", fill: "route", sort: {y: "-x", limit: 10}}), + Plot.ruleX([0]), + Plot.text(topRoutesDuration, {x: "duration", y: "route", dx: -6, text: (d) => d.duration / (1000 * 60 * 60), fill: "var(--theme-background)", frameAnchor: "right"}), + Plot.text(topRoutesDuration, {x: "duration", y: "route", dx: 6, text: "route", frameAnchor: "left"}) + ] + }))} +
+
+ +But back to those _temporal_ patterns. These are fascinating because they don’t just show server performance — they show how clients behave “in the wild.” + +We can use a dense scatterplot to visualize any quantitative request metric. Below we show response size in bytes along *y*↑. Response sizes are also important for performance, especially if latency measurements only consider the time it takes the server to send the response and not user-perceived latency across the network. + +```js +const sizeHeatmap = visibility().then(() => FileAttachment("data/size-heatmap.parquet").parquet()); +const sizeByRouteCanvas = document.createElement("canvas"); +``` + +
+

Response size, color by route

+ ${resize((width) => ApiHeatmap(sizeHeatmap.getChild("count"), sizeHeatmap.getChild("route"), {y1: 400, y2: 160_000, canvas: sizeByRouteCanvas, color: routeColor, width, label: "Size (bytes)"}))} +
+ +The response size heatmap also highlights individual paths, visible as horizontal striations. The ${routeSwatch("/document/@{login}/{slug}")} line at 15,846 bytes represents the [D3 gallery](https://observablehq.com/@d3/gallery), one of the most popular pages on Observable. And the ${routeSwatch("/@{login}/{slug}.js")} line at 12,193 bytes represents [Jeremy’s Inputs](https://observablehq.com/@jashkenas/inputs), a popular import (though superseded by our official [Observable Inputs](https://observablehq.com/framework/lib/inputs)). This heatmap previously revealed a bug where we were loading 200+ notebooks to serve a gallery of only 4–9 notebooks; by fixing the bug, we reduced the total number of >50KB responses by more than half! + +The daily pattern for ${routeSwatch("/document/{id}@{version}")} sticks out in this heatmap and on the latency heatmap. What’s going on there? By inspecting logs, we believe this represents an academic research project scraping public notebooks for content analysis. The scraper starts by fetching ${routeSwatch("/documents/public")} ([recent notebooks](https://observablehq.com/recent)) and then repeatedly requests ${routeSwatch("/document/{id}@{version}")} to fetch notebook contents. Once a month, they do a deeper scrape. + +By filtering on route, we can see the periodic behavior of the scraper more clearly. + +```js +const latencyDocumentsPublicHeatmap = visibility().then(() => FileAttachment("data/latency-heatmap-documents-public.parquet").parquet()); +const latencyDocumentsPublicCanvas = document.createElement("canvas"); +``` + +
+

Response latency of /documents/{public} and /document/{id}@{version}

+ ${resize((width) => ApiHeatmap(latencyDocumentsPublicHeatmap.getChild("count"), null, {y1: 0.5, y2: 10_000, canvas: latencyDocumentsPublicCanvas, color: Object.assign(Plot.scale({color: {domain: [0, 50]}}), {label: "frequency"}), width, label: "Duration (ms)"}))} +
+ +
We support visualization research. If you’re interested in studying public notebooks, please reach out and let us help you write a polite scraper.
+ +Above, we color by frequency instead of route. This better reveals the density of requests, though we cannot differentiate routes and therefore infer as much about behavior. Notice the spike in the early morning hours of January 31. By looking at the associated logs, we determined this to be a bot scanning for vulnerabilities. + +```js +const latencyCanvas = document.createElement("canvas"); +``` + +
+

Response latency, color by frequency

+ ${resize((width) => ApiHeatmap(latencyHeatmap.getChild("count"), null, {y1: 0.5, y2: 10_000, canvas: latencyCanvas, color: Object.assign(Plot.scale({color: {domain: [0, 100]}}), {label: "frequency"}), width, label: "Duration (ms)"}))} +
+ +Let’s look at a couple more routes of interest. The ${routeSwatch("/avatar/{hash}")} route is responsible for serving avatars (profile images). Avatars are used throughout Observable and this is one of the highest-traffic routes. + +```js +const latencyAvatarHeatmap = visibility().then(() => FileAttachment("data/latency-heatmap-avatar.parquet").parquet()); +const latencyAvatarCanvas = document.createElement("canvas"); +``` + +
+

Response latency of /avatar/{hash}

+ ${resize((width) => ApiHeatmap(latencyAvatarHeatmap.getChild("count"), null, {y1: 0.5, y2: 10_000, canvas: latencyAvatarCanvas, color: Object.assign(Plot.scale({color: {domain: [0, 50]}}), {label: "frequency"}), width, label: "Duration (ms)"}))} +
+ +Unfortunately, avatars are _slow_. Serving an avatar requires fetching an image for S3 and rescaling to the requested size. S3 is slow, and images are often large and expensive to resize. Furthermore, avatars are often requested in bulk — for example, an activity feed might show hundreds of avatars! The vertical streaks here represent individual clients spawning many simultaneous requests. We have room for improvement here. + +The ${routeSwatch("/documents/@{login}")} route is also interesting. It lists the notebooks in the given workspace, such as when you go to your home page, or visit someone’s profile. + +```js +const latencyDocumentsAtHeatmap = visibility().then(() => FileAttachment("data/latency-heatmap-documents-at.parquet").parquet()); +const latencyDocumentsAtCanvas = document.createElement("canvas"); +``` + +
+

Response latency of /documents/@{login}

+ ${resize((width) => ApiHeatmap(latencyDocumentsAtHeatmap.getChild("count"), null, {y1: 0.5, y2: 10_000, canvas: latencyDocumentsAtCanvas, color: Object.assign(Plot.scale({color: {domain: [0, 30]}}), {label: "frequency"}), width, label: "Duration (ms)"}))} +
+ +This route is slower than we like, mostly due to complicated permissions that make the underlying database queries difficult to index. But the temporal pattern is interesting: at midnight UTC, latency noticeably increases for an hour or two. We believe an internal scheduled batch job is causing resource contention. We want to optimize this route, too. + +Web log analysis has been fruitful for the Observable team to prioritize optimization and manage traffic. Using these granular heatmaps, we’ve identified numerous opportunities for improvement that would otherwise go unnoticed. diff --git a/examples/chess/.gitignore b/examples/chess/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/chess/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/chess/README.md b/examples/chess/README.md index 960e6a4fc..51d2b79a1 100644 --- a/examples/chess/README.md +++ b/examples/chess/README.md @@ -1,13 +1,15 @@ -# Chess +[Framework examples →](../) -This page displays chess rankings from the [International Chess Federation](http://ratings.fide.com/) for the past year. +# A year of chess rankings -View the [live project](https://observablehq.com/framework/examples/chess/). +View live: + +This page displays rankings from the [International Chess Federation](https://ratings.fide.com/) for the past year. ## Data loaders -A single JavaScript data loader, `top-ranked-players.json.js`, accesses the data (in a Zip archive) from the site above, performs some basic wrangling, and writes the simplified snapshot of rankings in JSON format to standard out. +A single JavaScript data loader, `top-ranked-players.json.js`, accesses the data (in a Zip archive) from the site above, performs some basic wrangling, and writes the simplified snapshot of rankings in JSON format to standard out. ## Charts -Bump charts are made with [Observable Plot](https://observablehq.com/plot/), and highlight changes in ratings for the top Women’s and Men’s chess players over time. \ No newline at end of file +Bump charts are made with [Observable Plot](https://observablehq.com/plot/), and highlight changes in ratings for the top Women’s and Men’s chess players over time. diff --git a/examples/chess/docs/index.md b/examples/chess/docs/index.md deleted file mode 100644 index c014e0906..000000000 --- a/examples/chess/docs/index.md +++ /dev/null @@ -1,127 +0,0 @@ ---- -toc: false -theme: dashboard ---- - -# A year of chess rankings - -Rankings of the top ${TOP_N_COUNT} players of _standard_ chess in the last ${MONTHS_OF_DATA} months. Data: [International Chess Federation](https://ratings.fide.com/) - -```js -const { womens, mens, MONTHS_OF_DATA, TOP_N_COUNT } = await FileAttachment("data/top-ranked-players.json").json(); -const titleMap = { - "GM": "Grand Master", - "WGM": "Womens Grand Master" -}; -const darkScheme = Generators.observe((change) => { - const mm = window.matchMedia?.('(prefers-color-scheme: dark)'); - if (!mm) return change("lighten"); - change(mm.matches); - mm.addEventListener("change", () => change(mm.matches)); -}); -``` - -```js -function bumpMarks(data, { r = 3, curve = "bump-x", ...options }, [firstMonth, lastMonth]) { - options = Plot.stackY2(options); - options.y.label = "rank"; - return Plot.marks( - Plot.lineY(data, Plot.binX({x: "first", y: "first", filter: null}, { - ...options, - stroke: options.z, - curve, - fill: null, - mixBlendMode: darkScheme ? "lighten" : "darken", - interval: "month" - })), - Plot.text(data, { ...options, text: options.y, fill: "black" }), - Plot.text( - data.filter(d => d.month === lastMonth), - Plot.selectFirst({ - ...options, - text: options.z, - dy: 0, - dx: 10 + (r || options.strokeWidth / 2), - textAnchor: "start", - fill: "currentColor", - }), - ), - Plot.text( - data.filter(d => d.month === firstMonth), - Plot.selectLast({ - ...options, - text: options.z, - dy: 0, - dx: -(10 + (r || options.strokeWidth / 2)), - textAnchor: "end", - fill: "currentColor" - }) - ) - ); -} - -function bumpChart(data, width) { - const months = [...new Set(data.map(d => d.month))].sort(); - const tickFormat = dateString => { - const date = new Date(dateString); - return d3.utcFormat(date.getMonth() === 0 ? "%b %y" : "%b")(date); - } - - return Plot.plot({ - marginTop: 20, - marginBottom: 35, - marginLeft: 125, - marginRight: 125, - width, - x: { - domain: months, - tickFormat, - label: null, - grid: true - }, - y: { - axis: null, - domain: [10.5, 1] - }, - color: { - domain: d3 - .groupSort( - data, - (v) => v[0].rating, - (d) => d.name - ) - .reverse() - }, - marks: [ - bumpMarks(data, { - x: "month", - z: "name", - order: "rating", - reverse: true, - strokeWidth: 24, - strokeLinejoin: "round", - strokeLinecap: "round", - r: 0, - dy: ".35em", - fill: "white", - tip: true, - channels: {rating: "rating"}, - title: (d) => `name: ${d.name}\ntitle: ${titleMap[d.title] ?? ""}\nborn: ${d.born}\nrating: ${d.rating}\nfederation: ${d.federation}\nmonth: ${d3.utcFormat("%b %y")(new Date(d.month))}`, - href: ({ id }) => `https://ratings.fide.com/profile/${id}`, - target: "_blank" - }, [months.at(0), months.at(-1)]) - ] - }) -} -``` - -
-
-

Women’s

- ${resize((width) => bumpChart(womens, width))} -
-
-

Men’s

- ${resize((width) => bumpChart(mens, width))} -
-
diff --git a/examples/chess/observablehq.config.js b/examples/chess/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/chess/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/chess/package.json b/examples/chess/package.json index 4aa4513d0..7314cd7a5 100644 --- a/examples/chess/package.json +++ b/examples/chess/package.json @@ -1,17 +1,23 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../..", + "@observablehq/framework": "^1.7.0", "d3-fetch": "^3.0.1", "d3-time-format": "^4.1.0", "jszip": "^3.10.1" }, + "devDependencies": { + "rimraf": "^5.0.5" + }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/chess/src/.gitignore b/examples/chess/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/chess/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/chess/src/components/BumpChart.js b/examples/chess/src/components/BumpChart.js new file mode 100644 index 000000000..073ce86b9 --- /dev/null +++ b/examples/chess/src/components/BumpChart.js @@ -0,0 +1,73 @@ +import * as Plot from "npm:@observablehq/plot"; +import * as d3 from "npm:d3"; + +export function BumpChart(data, {x = "month", y = "rating", z = "name", interval = "month", width} = {}) { + const rank = Plot.stackY2({x, z, order: y, reverse: true}); + const [xmin, xmax] = d3.extent(Plot.valueof(data, x)); + return Plot.plot({ + width, + x: { + [width < 480 ? "insetRight" : "inset"]: 120, + label: null, + grid: true + }, + y: { + axis: null, + inset: 20, + reverse: true + }, + color: { + scheme: "spectral" + }, + marks: [ + Plot.lineY(data, Plot.binX({x: "first", y: "first", filter: null}, { + ...rank, + stroke: z, + strokeWidth: 24, + curve: "bump-x", + sort: {color: "y", reduce: "first"}, + interval, + render: halo({stroke: "var(--theme-background-alt)", strokeWidth: 27}) + })), + Plot.text(data, { + ...rank, + text: rank.y, + fill: "black", + stroke: z, + channels: {[y]: y, "title\0": (d) => formatTitle(d.title), federation: "federation", born: (d) => String(d.born)}, + tip: {format: {y: null, text: null}} + }), + width < 480 ? null : Plot.text(data, { + ...rank, + filter: (d) => d[x] <= xmin, + text: z, + dx: -20, + textAnchor: "end" + }), + Plot.text(data, { + ...rank, + filter: (d) => d[x] >= xmax, + text: z, + dx: 20, + textAnchor: "start" + }) + ] + }) +} + +function halo({stroke = "currentColor", strokeWidth = 3} = {}) { + return (index, scales, values, dimensions, context, next) => { + const g = next(index, scales, values, dimensions, context); + for (const path of [...g.childNodes]) { + const clone = path.cloneNode(true); + clone.setAttribute("stroke", stroke); + clone.setAttribute("stroke-width", strokeWidth); + path.parentNode.insertBefore(clone, path); + } + return g; + }; +} + +function formatTitle(title) { + return title === "GM" ? "Grand Master" : title; +} diff --git a/examples/chess/src/components/revive.js b/examples/chess/src/components/revive.js new file mode 100644 index 000000000..d2aec747c --- /dev/null +++ b/examples/chess/src/components/revive.js @@ -0,0 +1,20 @@ +export function revive(object) { + if (Array.isArray(object)) { + for (const key in object) { + const value = object[key]; + if (isIsoString(value)) object[key] = new Date(value); + else revive(value); + } + } else if (object && typeof object === "object") { + for (const key in object) { + const value = object[key]; + if (isIsoString(value)) object[key] = new Date(value); + else revive(value); + } + } + return object; +} + +function isIsoString(value) { + return typeof value === "string" && /^\d{4,}-\d{2}-\d{2}T/.test(value); +} diff --git a/examples/chess/docs/data/top-ranked-players.json.js b/examples/chess/src/data/top-ranked-players.json.js similarity index 81% rename from examples/chess/docs/data/top-ranked-players.json.js rename to examples/chess/src/data/top-ranked-players.json.js index 880219216..5d5f8cc53 100644 --- a/examples/chess/docs/data/top-ranked-players.json.js +++ b/examples/chess/src/data/top-ranked-players.json.js @@ -5,13 +5,7 @@ const TOP_N_COUNT = 10; const MONTHS_OF_DATA = 12; function monthlyZipUrl(date) { - const id = date - .toLocaleString("en-US", { - month: "short", - year: "2-digit" - }) - .toLowerCase() - .replace(" ", ""); + const id = date.toLocaleString("en-US", {month: "short", year: "2-digit"}).toLowerCase().replace(" ", ""); return `http://ratings.fide.com/download/standard_${id}frl.zip`; } @@ -22,21 +16,13 @@ function isActivePlayer(player) { async function fetchAndFilterTopPlayers() { const today = utcMonth(); const rankingsByMonth = []; - for (const month of utcMonth.range(utcMonth.offset(today, -(MONTHS_OF_DATA - 1)), utcMonth.offset(today, 1))) { - rankingsByMonth.push( - await fetchFideData(monthlyZipUrl(month)).then((rows) => - rows.sort((a, b) => b.rating - a.rating).map((d) => ({...d, month})) - ) - ); + const rows = await fetchFideData(monthlyZipUrl(month)); + rows.sort((a, b) => b.rating - a.rating); + rankingsByMonth.push(rows.map((d) => ({...d, month}))); } - - // top active women const womens = rankingsByMonth.map((rankings) => rankings.filter((d) => d.sex === "F").slice(0, TOP_N_COUNT)).flat(); - - // top active men const mens = rankingsByMonth.map((rankings) => rankings.filter((d) => d.sex === "M").slice(0, TOP_N_COUNT)).flat(); - return {womens, mens, MONTHS_OF_DATA, TOP_N_COUNT}; } @@ -50,7 +36,6 @@ async function fetchFideData(url) { function parseFideFile(text) { const lines = text.split("\n"); const records = []; - for (let i = 1; i < lines.length; ++i) { const line = lines[i]; const record = { @@ -68,13 +53,11 @@ function parseFideFile(text) { born: +line.substring(126, 131).trim(), flags: line.substring(132, 136).trim() }; - if (isActivePlayer(record)) { records.push(record); } } - return records; } -console.log(JSON.stringify(await fetchAndFilterTopPlayers())); +process.stdout.write(JSON.stringify(await fetchAndFilterTopPlayers())); diff --git a/examples/chess/src/index.md b/examples/chess/src/index.md new file mode 100644 index 000000000..9fd6f7b43 --- /dev/null +++ b/examples/chess/src/index.md @@ -0,0 +1,25 @@ +# A year of chess rankings + +Rankings of the top ${TOP_N_COUNT} players of _standard_ chess in the last ${MONTHS_OF_DATA} months. + +```js +import {revive} from "./components/revive.js"; +import {BumpChart} from "./components/BumpChart.js"; +``` + +```js +const {womens, mens, MONTHS_OF_DATA, TOP_N_COUNT} = await FileAttachment("data/top-ranked-players.json").json().then(revive); +``` + +
+
+

Top ten women players

+ ${resize((width) => BumpChart(womens, {width}))} +
+
+

Top ten men players

+ ${resize((width) => BumpChart(mens, {width}))} +
+
+ +Data: [International Chess Federation](https://ratings.fide.com/) diff --git a/examples/codemirror/.gitignore b/examples/codemirror/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/codemirror/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/codemirror/README.md b/examples/codemirror/README.md new file mode 100644 index 000000000..0c72a4dfa --- /dev/null +++ b/examples/codemirror/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# CodeMirror + +View live: + +This Observable Framework example demonstrates how to implement an editor using CodeMirror. The editor is compatible with the built-in `view` function, letting it serve as a reactive input: the editor emits an *input* event on Shift-Enter or when the run button is clicked. diff --git a/examples/codemirror/observablehq.config.js b/examples/codemirror/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/codemirror/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/codemirror/package.json b/examples/codemirror/package.json new file mode 100644 index 000000000..89cc560df --- /dev/null +++ b/examples/codemirror/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.8.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/codemirror/src/.gitignore b/examples/codemirror/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/codemirror/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/codemirror/src/components/Editor.js b/examples/codemirror/src/components/Editor.js new file mode 100644 index 000000000..e57665af3 --- /dev/null +++ b/examples/codemirror/src/components/Editor.js @@ -0,0 +1,36 @@ +import {javascript} from "npm:@codemirror/lang-javascript"; +import {EditorView, keymap} from "npm:@codemirror/view"; +import {button} from "npm:@observablehq/inputs"; +import {basicSetup} from "npm:codemirror"; + +export function Editor({ + value = "", + style = "font-size: 14px;" +} = {}) { + const parent = document.createElement("div"); + parent.style = style; + parent.value = value; + + const run = () => { + parent.value = String(editor.state.doc); + parent.dispatchEvent(new InputEvent("input", {bubbles: true})); + }; + + const editor = new EditorView({ + parent, + doc: value, + extensions: [ + basicSetup, + javascript(), + keymap.of([ + {key: "Shift-Enter", preventDefault: true, run}, + {key: "Mod-s", preventDefault: true, run} + ]) + ] + }); + + parent.addEventListener("input", (event) => event.isTrusted && event.stopImmediatePropagation()); + parent.appendChild(button([["Run", run]])); + + return parent; +} diff --git a/examples/codemirror/src/index.md b/examples/codemirror/src/index.md new file mode 100644 index 000000000..727d10fce --- /dev/null +++ b/examples/codemirror/src/index.md @@ -0,0 +1,62 @@ +--- +theme: light +--- + +# CodeMirror + +Here’s a basic editor powered by CodeMirror. Its value is exposed as `input`, and then the result of `eval`’ing `input` is shown below. Try editing the code and then running it with Shift-Enter or by clicking the Run button. + +```js echo +const input = view(Editor({value: "1 + 2"})); +``` + +```js echo +eval(input) +``` + +The editor is implemented in a component: + +```js echo +import {Editor} from "./components/Editor.js"; +``` + +The implementation looks like this: + +```js run=false +import {javascript} from "npm:@codemirror/lang-javascript"; +import {EditorView, keymap} from "npm:@codemirror/view"; +import {button} from "npm:@observablehq/inputs"; +import {basicSetup} from "npm:codemirror"; + +export function Editor({ + value = "", + style = "font-size: 14px;" +} = {}) { + const parent = document.createElement("div"); + parent.style = style; + parent.value = value; + + const run = () => { + parent.value = String(editor.state.doc); + parent.dispatchEvent(new InputEvent("input", {bubbles: true})); + }; + + const editor = new EditorView({ + parent, + doc: value, + extensions: [ + basicSetup, + javascript(), + keymap.of([ + {key: "Shift-Enter", preventDefault: true, run}, + {key: "Mod-s", preventDefault: true, run} + ]) + ] + }); + + parent.addEventListener("input", (event) => event.isTrusted && event.stopImmediatePropagation()); + parent.appendChild(button([["Run", run]])); + + return parent; +} +``` diff --git a/examples/custom-input-2d/.gitignore b/examples/custom-input-2d/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/custom-input-2d/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/custom-input-2d/README.md b/examples/custom-input-2d/README.md new file mode 100644 index 000000000..a5cb70abf --- /dev/null +++ b/examples/custom-input-2d/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Custom 2D input + +View live: + +This Observable Framework example demonstrates how to implement a custom 2D range input using a canvas element. The custom input is bound to two separate 1D range inputs using side effects. The custom 2D range input is implemented in [`src/Range2D.js`](./src/Range2D.js) and usage is demonstrated in [`src/index.md`](./src/index.md?plain=1). diff --git a/examples/custom-input-2d/observablehq.config.js b/examples/custom-input-2d/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/custom-input-2d/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/custom-input-2d/package.json b/examples/custom-input-2d/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/custom-input-2d/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/custom-input-2d/src/.gitignore b/examples/custom-input-2d/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/custom-input-2d/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/custom-input-2d/src/Range2D.js b/examples/custom-input-2d/src/Range2D.js new file mode 100644 index 000000000..e14bbbfe0 --- /dev/null +++ b/examples/custom-input-2d/src/Range2D.js @@ -0,0 +1,37 @@ +export function Range2D({width = 100, height = 100, value = [0.5, 0.5]} = {}) { + const canvas = document.createElement("canvas"); + canvas.width = width; + canvas.height = height; + canvas.style.border = "1px solid black"; + + let down = false; + canvas.onpointerup = () => (down = false); + canvas.onpointerdown = (event) => { + down = true; + canvas.setPointerCapture(event.pointerId); + canvas.onpointermove(event); + }; + canvas.onpointermove = (event) => { + if (!down) return; + event.preventDefault(); // prevent scrolling and text selection + set([event.offsetX / width, event.offsetY / height]); + canvas.dispatchEvent(new Event("input", {bubbles: true})); + }; + + const context = canvas.getContext("2d"); + + function set([x, y]) { + x = Math.max(0, Math.min(1, x)); + y = Math.max(0, Math.min(1, y)); + context.fillStyle = "white"; + context.fillRect(0, 0, width, height); + context.fillStyle = "red"; + context.fillRect(Math.floor(x * width), 0, 1, height); + context.fillRect(0, Math.floor(y * height), width, 1); + value = [x, y]; + } + + set(value); + + return Object.defineProperty(canvas, "value", {get: () => value, set}); +} diff --git a/examples/custom-input-2d/src/index.md b/examples/custom-input-2d/src/index.md new file mode 100644 index 000000000..1cd72846b --- /dev/null +++ b/examples/custom-input-2d/src/index.md @@ -0,0 +1,82 @@ +# Custom 2D input + +Here is a 2D range input; click (or drag) to set the _xy_ value: + +```js echo +const xyInput = Range2D(); +const xy = view(xyInput); +``` + +Are here are two linked 1D range inputs: + +```js echo +const xInput = Inputs.range([0, 1], {label: "x", step: 0.01}); +const yInput = Inputs.range([0, 1], {label: "y", step: 0.01}); +const x = view(xInput); +const y = view(yInput); +``` + +The inputs are linked; interacting with either the 2D input or the 1D inputs affects the other. This is implemented with _input_ event listeners: when the _xyInput_ emits an _input_ event, the current _xInput_.value and _yInput_.value are updated; and likewise when the _xInput_ or _yInput_ emits an _input_ event, the _xyInput_.value is updated. To avoid an infinite loop, each event listener checks if the event bubbles to distinguish direct and indirect input. + +```js echo +xyInput.oninput = (event) => { + if (!event.bubbles) return; + xInput.value = xyInput.value[0]; + yInput.value = xyInput.value[1]; + xInput.dispatchEvent(new Event("input")); + yInput.dispatchEvent(new Event("input")); +}; +xInput.oninput = yInput.oninput = (event) => { + if (!event.bubbles) return; + xyInput.value = [xInput.value, yInput.value]; + xyInput.dispatchEvent(new Event("input")); +}; +``` + +Lastly here’s the custom 2D range input implementation, which is stored in a separate module, `Range2D.js`. It uses a canvas element and pointer events to update the selected 2D value. Each value is in the interval [0, 1]. When the pointer is down and moves, an _input_ event is dispatched for compatibility with `Generators.input`. + +```js run=false +export function Range2D({width = 100, height = 100, value = [0.5, 0.5]} = {}) { + const canvas = document.createElement("canvas"); + canvas.width = width; + canvas.height = height; + canvas.style.border = "1px solid black"; + + let down = false; + canvas.onpointerup = () => (down = false); + canvas.onpointerdown = (event) => { + down = true; + canvas.setPointerCapture(event.pointerId); + canvas.onpointermove(event); + }; + canvas.onpointermove = (event) => { + if (!down) return; + event.preventDefault(); // prevent scrolling and text selection + set([event.offsetX / width, event.offsetY / height]); + canvas.dispatchEvent(new Event("input", {bubbles: true})); + }; + + const context = canvas.getContext("2d"); + + function set([x, y]) { + x = Math.max(0, Math.min(1, x)); + y = Math.max(0, Math.min(1, y)); + context.fillStyle = "white"; + context.fillRect(0, 0, width, height); + context.fillStyle = "red"; + context.fillRect(Math.floor(x * width), 0, 1, height); + context.fillRect(0, Math.floor(y * height), width, 1); + value = [x, y]; + } + + set(value); + + return Object.defineProperty(canvas, "value", {get: () => value, set}); +} +``` + +To import `Range2D`: + +```js echo +import {Range2D} from "./Range2D.js"; +``` diff --git a/examples/custom-stylesheet/.gitignore b/examples/custom-stylesheet/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/custom-stylesheet/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/custom-stylesheet/README.md b/examples/custom-stylesheet/README.md new file mode 100644 index 000000000..b100e13d2 --- /dev/null +++ b/examples/custom-stylesheet/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Custom stylesheet + +View live: + +This Observable Framework example demonstrates how to define a custom stylesheet (a custom theme) using the **style** config option in [`observablehq.config.js`](./observablehq.config.js). The custom stylesheet lives in [`src/style.css`](./src/style.css) and augments Framework’s default styles. diff --git a/examples/custom-stylesheet/observablehq.config.js b/examples/custom-stylesheet/observablehq.config.js new file mode 100644 index 000000000..ed7957be3 --- /dev/null +++ b/examples/custom-stylesheet/observablehq.config.js @@ -0,0 +1,6 @@ +export default { + root: "src", + + // Register a custom stylesheet. + style: "style.css" +}; diff --git a/examples/custom-stylesheet/package.json b/examples/custom-stylesheet/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/custom-stylesheet/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/custom-stylesheet/src/.gitignore b/examples/custom-stylesheet/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/custom-stylesheet/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/custom-stylesheet/src/index.md b/examples/custom-stylesheet/src/index.md new file mode 100644 index 000000000..4e3f42db0 --- /dev/null +++ b/examples/custom-stylesheet/src/index.md @@ -0,0 +1,88 @@ +# Custom stylesheet + +This [Observable Framework](https://observablehq.com/framework/) project has a custom stylesheet. It’s very blue. + +The first part of the stylesheet imports Framework’s default styles. This is essentially a “theme-less” theme that does the layout and typography but doesn’t set any colors. + +```css run=false +@import url("observablehq:default.css"); +``` + +Then the stylesheet defines the primary color variables. The `--theme-foreground-alt` variable is used for headings and is typically slightly more muted than the primary foreground color; but here it’s the same color. + +```css run=false +:root { + --theme-foreground: #ffffff; + --theme-foreground-focus: orange; + --theme-background: #4751f8; + --theme-background-alt: #312f2e; + --theme-foreground-alt: var(--theme-foreground); +} +``` + +The secondary color variables are derived using [`color-mix`](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix). This is a relatively modern CSS feature, but it makes it much more convenient to develop since you can redefine the primary colors and the secondary colors will automatically adjust. + +```css run=false +:root { + --theme-foreground-muted: color-mix(in srgb, var(--theme-foreground) 60%, var(--theme-background)); + --theme-foreground-faint: color-mix(in srgb, var(--theme-foreground) 50%, var(--theme-background)); + --theme-foreground-fainter: color-mix(in srgb, var(--theme-foreground) 30%, var(--theme-background)); + --theme-foreground-faintest: color-mix(in srgb, var(--theme-foreground) 14%, var(--theme-background)); +} +``` + +Our custom stylesheet also needs to define syntax highlighting colors. Here we’ve copied Framework’s default colors for dark-mode highlighting, [`syntax-dark.css`](https://github.com/observablehq/framework/blob/main/src/style/syntax-dark.css). + +```css run=false +:root { + --syntax-keyword: #ff7b72; + --syntax-entity: #d2a8ff; + --syntax-constant: #79c0ff; + --syntax-string: #a5d6ff; + --syntax-variable: #ffa657; + --syntax-comment: var(--theme-foreground-muted); + --syntax-entity-tag: #7ee787; + --syntax-storage-modifier-import: #c9d1d9; + --syntax-markup-heading: #1f6feb; + --syntax-markup-list: #f2cc60; + --syntax-markup-italic: #c9d1d9; + --syntax-markup-bold: #c9d1d9; + --syntax-markup-inserted: #aff5b4; + --syntax-markup-inserted-background: #033a16; + --syntax-markup-deleted: #ffdcd7; + --syntax-markup-deleted-background: #67060c; +} +``` + +Lastly, there’s a bit of CSS to adopt a sans-serif body font, while keeping a serif font for headings. Oh, and links are underlined. + +```css run=false +body { + font-family: var(--sans-serif); +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: var(--serif); +} + +#observablehq-main p a[href] { + text-decoration: underline; +} +``` + +And that’s it! Some gibberish follows to demonstrate how text will look. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sed ligula sed sapien placerat elementum sed in urna. Pellentesque lacinia lacinia pulvinar. Phasellus dignissim erat vitae felis commodo cursus. Integer sit amet consequat neque. Praesent eu nisl eu quam luctus ultricies semper et urna. Proin faucibus leo efficitur leo convallis, gravida efficitur nisl lacinia. Donec sodales felis quis mi ultrices pellentesque. Sed lacinia blandit lorem, vel pretium enim luctus non. Aliquam porttitor non leo id volutpat. + +Quisque malesuada, risus quis molestie egestas, purus turpis lobortis ex, sit amet imperdiet leo tellus nec eros. + +> _Sed fringilla congue est eget interdum. Mauris hendrerit nulla vitae posuere ornare. Nulla eleifend dictum viverra. In eget eleifend orci, ut congue sapien. Ut blandit efficitur tortor. In felis nisl, mattis ut quam ut, aliquet rutrum odio. Mauris suscipit in dolor eget convallis._ + +Integer placerat bibendum lorem, et dictum lorem aliquet nec. Aliquam nec condimentum leo. **Donec eu mauris eu elit lacinia malesuada.** Fusce posuere est in ante lobortis, id tempus sapien sodales. Curabitur ante ipsum, fermentum ultrices tortor eu, aliquet porta purus. Praesent hendrerit eget elit vitae sagittis. Donec viverra eros sapien, laoreet molestie orci gravida quis. + +Ut at nisl at orci tincidunt dapibus nec vitae risus. Duis lobortis consequat libero sed sollicitudin. Suspendisse iaculis lectus id enim tincidunt congue. Duis consectetur malesuada magna in condimentum. Donec condimentum libero et venenatis vehicula. Fusce eget tristique dui, vel efficitur sem. Nam ut neque varius, hendrerit eros lobortis, tincidunt justo. Aenean et tortor a est suscipit tincidunt at sit amet massa. Pellentesque consectetur mi ac ultrices aliquet. Praesent eget ex et libero molestie condimentum. diff --git a/examples/custom-stylesheet/src/style.css b/examples/custom-stylesheet/src/style.css new file mode 100644 index 000000000..750f8c001 --- /dev/null +++ b/examples/custom-stylesheet/src/style.css @@ -0,0 +1,52 @@ +@import url("observablehq:default.css"); + +:root { + --theme-foreground: #ffffff; + --theme-foreground-focus: orange; + --theme-background: #4751f8; + --theme-background-alt: #312f2e; + --theme-foreground-alt: var(--theme-foreground); +} + +:root { + --theme-foreground-muted: color-mix(in srgb, var(--theme-foreground) 60%, var(--theme-background)); + --theme-foreground-faint: color-mix(in srgb, var(--theme-foreground) 50%, var(--theme-background)); + --theme-foreground-fainter: color-mix(in srgb, var(--theme-foreground) 30%, var(--theme-background)); + --theme-foreground-faintest: color-mix(in srgb, var(--theme-foreground) 14%, var(--theme-background)); +} + +:root { + --syntax-keyword: #ff7b72; + --syntax-entity: #d2a8ff; + --syntax-constant: #79c0ff; + --syntax-string: #a5d6ff; + --syntax-variable: #ffa657; + --syntax-comment: var(--theme-foreground-muted); + --syntax-entity-tag: #7ee787; + --syntax-storage-modifier-import: #c9d1d9; + --syntax-markup-heading: #1f6feb; + --syntax-markup-list: #f2cc60; + --syntax-markup-italic: #c9d1d9; + --syntax-markup-bold: #c9d1d9; + --syntax-markup-inserted: #aff5b4; + --syntax-markup-inserted-background: #033a16; + --syntax-markup-deleted: #ffdcd7; + --syntax-markup-deleted-background: #67060c; +} + +body { + font-family: var(--sans-serif); +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: var(--serif); +} + +#observablehq-main p a[href] { + text-decoration: underline; +} diff --git a/examples/penguin-classification/.gitignore b/examples/datawrapper-api/.gitignore similarity index 58% rename from examples/penguin-classification/.gitignore rename to examples/datawrapper-api/.gitignore index dffdd3aea..4257275b4 100644 --- a/examples/penguin-classification/.gitignore +++ b/examples/datawrapper-api/.gitignore @@ -1,6 +1,6 @@ -.venv +*.pyc .DS_Store -dist/ -docs/.observablehq/cache/ +.venv +/dist/ node_modules/ yarn-error.log diff --git a/examples/datawrapper-api/README.md b/examples/datawrapper-api/README.md new file mode 100644 index 000000000..d1dd08fcd --- /dev/null +++ b/examples/datawrapper-api/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# Datawrapper API + +View live: + +This Observable Framework example demonstrates how to embed a [Datawrapper](https://www.datawrapper.de/) chart in your page, and write a data loader in Python to generate a new one. + +The data loader lives in [`src/data/chart.txt.py`](./src/data/chart.txt.py). diff --git a/examples/datawrapper-api/observablehq.config.js b/examples/datawrapper-api/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/datawrapper-api/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/datawrapper-api/package.json b/examples/datawrapper-api/package.json new file mode 100644 index 000000000..fecd37ee8 --- /dev/null +++ b/examples/datawrapper-api/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "rimraf dist && observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/datawrapper-api/requirements.txt b/examples/datawrapper-api/requirements.txt new file mode 100644 index 000000000..77ea4073e --- /dev/null +++ b/examples/datawrapper-api/requirements.txt @@ -0,0 +1,2 @@ +pandas +datawrapper diff --git a/examples/datawrapper-api/src/.gitignore b/examples/datawrapper-api/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/datawrapper-api/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/datawrapper-api/src/data/chart.csv b/examples/datawrapper-api/src/data/chart.csv new file mode 100644 index 000000000..2328aeb54 --- /dev/null +++ b/examples/datawrapper-api/src/data/chart.csv @@ -0,0 +1,20 @@ +Country,Combined,Male,Female +1st: Monaco :mc:,53.1,51.7,54.5 +2nd: Japan :jp:,47.3,46,48.7 +3rd: Germany :de:,47.1,46,48.2 +Italy :it:,45.5,44.4,46.5 +Greece :gr:,44.5,43.5,45.6 +Hong Kong :hk:,44.4,43.5,45 +Austria :at:,44,42.8,45.1 +Spain :es:,42.7,41.5,43.9 +Netherlands :nl:,42.6,41.5,43.6 +Finland :fi:,42.5,40.9,44.3 +South Korea :kr:,41.8,40.2,43.4 +France :fr:,41.4,39.6,43.1 +Poland :pl:,40.7,39,42.4 +United Kingdom :gb:,40.5,39.3,41.7 +Russia :ru:,39.6,36.6,42.5 +Norway :no:,39.2,38.4,40 +United States :us:,38.1,36.8,39.4 +New Zealand :nz:,37.9,37.1,38.8 +China :cn:,37.4,36.5,38.4 \ No newline at end of file diff --git a/examples/datawrapper-api/src/data/chart.txt b/examples/datawrapper-api/src/data/chart.txt new file mode 100644 index 000000000..8dda63cdc --- /dev/null +++ b/examples/datawrapper-api/src/data/chart.txt @@ -0,0 +1 @@ +XA2EM \ No newline at end of file diff --git a/examples/datawrapper-api/src/data/chart.txt.py b/examples/datawrapper-api/src/data/chart.txt.py new file mode 100644 index 000000000..fa2c1a117 --- /dev/null +++ b/examples/datawrapper-api/src/data/chart.txt.py @@ -0,0 +1,74 @@ +import sys + +import pandas as pd +from datawrapper import Datawrapper + +# Read in the data file, which is drawn from a Datawrapper example +# https://academy.datawrapper.de/article/281-examples-of-datawrapper-dot-charts +df = pd.read_csv("src/data/chart.csv") + +# Connect to the Datawrapper api +dw = Datawrapper() + +# Search if the chart already exists +title = "Germany is the third-oldest country in the world" +search_result = dw.get_charts(search=title) + +# If the chart already exists, return its id +if search_result['list']: + chart_id = search_result['list'][0]["id"] + sys.stdout.write(chart_id) + sys.exit() + +# If it doesn't exist, create the chart +chart_config = dw.create_chart( + # Headline the chart + title=title, + # Set the type + chart_type="d3-dot-plot", + # Give the data + data=df, + # Configure everything about the chart + metadata={ + # Set the description + "describe": { + "intro": "Median age in the three countries with the oldest population and selected other countries, in years", + "source-name": "Estimates by the CIA World Factbook, 2018", + "source-url": "https://www.cia.gov/library/publications/resources/the-world-factbook/fields/343rank.html", + }, + # Configure the chart + "visualize": { + "custom-range": [ + "35", + "55" + ], + "range-extent": "custom", + "highlight-range": True, + "replace-flags": { + "style": "4x3", + "enabled": True + }, + "color-by-column": True, + "show-color-key": True, + "color-category": { + "map": { + "Male": "#94c4d1", + "Female": "#ffca76", + "Combined": "#545a5d" + }, + }, + }, + "publish": { + "autoDarkMode": True, + }, + } +) + +# Pull out the chart's unique identifier +chart_id = chart_config["id"] + +# Publish the chart +dw.publish_chart(chart_id) + +# Write the chart's unique identifier to stdout +sys.stdout.write(chart_id) diff --git a/examples/datawrapper-api/src/index.md b/examples/datawrapper-api/src/index.md new file mode 100644 index 000000000..ae787976b --- /dev/null +++ b/examples/datawrapper-api/src/index.md @@ -0,0 +1,135 @@ +# Datawrapper API + +Here’s an example of using Datawrapper’s [script embed API](https://blog.datawrapper.de/web-component-embedding/) to embed a Datawrapper chart in Observable Framework. [And below](#using-a-data-loader), we show how to use a data loader to generate a new Datawrapper chart on demand. + +## Script embed + +The chart below is from a recent [Datawrapper blog post](https://blog.datawrapper.de/spotify-music-trends/) on Spotify trends. + +
+ +
+ +To embed a Datawrapper chart in Framework, copy and paste its script embed code. You can find this code by choosing **Embed with script** in Datawrapper’s embed modal; see Datawrapper’s [embedding guide](https://academy.datawrapper.de/article/180-how-to-embed-charts) for details. + +```html run=false +
+ +
+``` + +
+ +Setting the `data-dark` attribute to `auto` will respect the user’s preferred color scheme and assumes you are using a [responsive theme](https://observablehq.com/framework/themes#auto-mode) in Framework. If you are forcing a [dark theme](https://observablehq.com/framework/themes#dark-mode), set this attribute to `true` instead; or for a [light theme](https://observablehq.com/framework/themes#dark-mode), set this attribute to `false`. + +
+ +## Using a data loader + +You can dynamically generate Datawrapper charts with a Python data loader that uses the [Datawrapper API](https://datawrapper.readthedocs.io/en/latest/). The loader will return the chart’s unique identifier, which you can then use to embed the chart in your page. + +```python +import sys + +import pandas as pd +from datawrapper import Datawrapper + +# Read in the data file, which is drawn from a Datawrapper example +# https://academy.datawrapper.de/article/281-examples-of-datawrapper-dot-charts +df = pd.read_csv("src/data/chart.csv") + +# Connect to the Datawrapper api +dw = Datawrapper() + +# Search if the chart already exists +title = "Germany is the third-oldest country in the world" +search_result = dw.get_charts(search=title) + +# If the chart already exists, return its id +if search_result['list']: + chart_id = search_result['list'][0]["id"] + sys.stdout.write(chart_id) + sys.exit() + +# If it doesn't exist, create the chart +chart_config = dw.create_chart( + # Headline the chart + title=title, + # Set the type + chart_type="d3-dot-plot", + # Give the data + data=df, + # Configure everything about the chart + metadata={ + # Set the description + "describe": { + "intro": "Median age in the three countries with the oldest population and selected other countries, in years", + "source-name": "Estimates by the CIA World Factbook, 2018", + "source-url": "https://www.cia.gov/library/publications/resources/the-world-factbook/fields/343rank.html", + }, + # Configure the chart + "visualize": { + "custom-range": [ + "35", + "55" + ], + "range-extent": "custom", + "highlight-range": True, + "replace-flags": { + "style": "4x3", + "enabled": True + }, + "color-by-column": True, + "show-color-key": True, + "color-category": { + "map": { + "Male": "#94c4d1", + "Female": "#ffca76", + "Combined": "#545a5d" + }, + }, + }, + "publish": { + "autoDarkMode": True, + }, + } +) + +# Pull out the chart's unique identifier +chart_id = chart_config["id"] + +# Publish the chart +dw.publish_chart(chart_id) + +# Write the chart's unique identifier to stdout +sys.stdout.write(chart_id) +``` + +
+ +You’ll also need python3 and the [`pandas`](https://pypi.org/project/pandas/) and [`datawrapper`](https://pypi.org/project/datawrapper/) modules installed and available on your `$PATH`. + +We recommend using a [Python virtual environment](https://observablehq.com/framework/loaders#venv), such as with venv or uv, and managing required packages via `requirements.txt` rather than installing them globally. + +You will also need to create an API token with [Datawrapper](https://www.datawrapper.de/) and set it as an environment variable named `DATAWRAPPER_ACCESS_TOKEN`. You can learn how by visiting the site's [“Getting Started” guide](https://developer.datawrapper.de/docs/getting-started). You'll want to give the token permission to create and publish charts (see the [reference documentation](https://developer.datawrapper.de/reference/postchartsidpublish) for details). + +
+ +The above data loader lives in `data/chart.txt.py`, and creates the `data/chart.txt` file attachment, which contains the identifier. Since the identifier is dynamically constructed by the data loader, we can’t hard-code the identifier in HTML; instead, we’ll use a JavaScript helper function to create the embed script. + +```js echo +function DatawrapperChart(chartId) { + const script = document.createElement("script"); + script.setAttribute("data-dark", dark); + script.setAttribute("src", `https://datawrapper.dwcdn.net/${chartId}/embed.js`); + return script; +} +``` + +Lastly, we can read load the generated chart’s identifier and pass it to the helper to display the chart: + +```html echo +
+ ${DatawrapperChart(await FileAttachment("data/chart.txt").text())} +
+``` diff --git a/examples/eia/.gitignore b/examples/eia/.gitignore index bea0d1602..0210d7df8 100644 --- a/examples/eia/.gitignore +++ b/examples/eia/.gitignore @@ -1,6 +1,5 @@ .DS_Store .env -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ -yarn-error.log \ No newline at end of file +yarn-error.log diff --git a/examples/eia/README.md b/examples/eia/README.md index 08ea4b990..bd4f3a1f5 100644 --- a/examples/eia/README.md +++ b/examples/eia/README.md @@ -1,10 +1,12 @@ +[Framework examples →](../) + # U.S. electricity grid -This is an example Observable Framework project, based on parts of the US Energy Information Administration’s Hourly Electric Grid Monitor dashboard. +View live: -Visit About the EIA-930 data to learn more about data collection and quality, the US electric grid, and balancing authorities responsible for nationwide electricity interchange. +This Observable Framework example is based on parts of the US Energy Information Administration’s Hourly Electric Grid Monitor dashboard. -View the [live project](https://observablehq.com/framework/examples/eia/). +Visit About the EIA-930 data to learn more about data collection and quality, the US electric grid, and balancing authorities responsible for nationwide electricity interchange. Move the time slider above the map to see how the “[duck curve](https://en.wikipedia.org/wiki/Duck_curve)” of electricity demand varies during the day in different regions, with greater demand in before- and after-work hours, and lower demand during typical working hours. @@ -13,30 +15,31 @@ Move the time slider above the map to see how the “[duck curve](https://en.wik The (near) real-time hourly electric data needed to create this dashboard is loaded from several API endpoints on the EIA website. These endpoints require an API key that can be [requested from the website](https://www.eia.gov/opendata/documentation.php). To connect the data loaders to the EIA API, we add an `.env` file at the root of the project directory containing the API key: ``` -EIA_KEY=xxxxxxxxxxx +EIA_KEY=xxxxxxxxxxxx ``` -You may want to add `.env` to a `.gitignore` file in your project root to keep the key from being exposed. +We also add `.env` to the `.gitignore` file in the project root to keep the key from being exposed. Three data loaders access US electric grid hourly data from the EIA: - `country-interchange.csv.js`: Hourly electricity interchange between the U.S., Canada, and Mexico -- `us-demand.csv.js`: Total electricity generation, demand, and forecasted demand for the U.S. (lower 48 states) - `eia-ba-hourly.csv.js`: Hourly electricity demand by balancing authority +- `us-demand.csv.js`: Total electricity generation, demand, and forecasted demand for the U.S. (lower 48 states) +- `eia-ba-hourly.csv.js`: Hourly electricity demand by balancing authority -The above data loaders access the updated data from the API at build time, minimize the original datasets by retaining only rows and columns used in dashboard visualizations, then export the data snapshots as csv files. +The above data loaders access the updated data from the API at build time, minimize the original datasets by retaining only rows and columns used in dashboard visualizations, and export the data snapshots as csv files. -The base map is created in the `us-states.json.js` data loader, which uses [TopoJSON](https://github.com/topojson/topojson) to extract the two features we want to draw (the outline and the border mesh) from `us-counties-10m.json` and minimizes the file size. +The base map is created in the `us-states.json.js` data loader, which uses [TopoJSON](https://github.com/topojson/topojson) to extract the two features we want to draw (the outline and the border mesh) from `us-counties-10m.json` and minimize the file size. ### Static files -Several static files used in the dashboard were downloaded from the EIA Hourly Electric Grid Monitor [About page](https://www.eia.gov/electricity/gridmonitor/about) (EIA-930 data reference tables), and not created or processed in data loaders. These files contain reference information that expect to remain unchanged, including: +Several static files used in the dashboard were downloaded from the EIA Hourly Electric Grid Monitor [About page](https://www.eia.gov/electricity/gridmonitor/about) (EIA-930 data reference tables), and not created or processed in data loaders. These files contain reference information that expect to remain unchanged, including: -- `eia-bia-reference.csv`: Reference information about balancing authority name, time zone, region, country, etc. +- `eia-bia-reference.csv`: Reference information about balancing authority name, time zone, region, country, _etc._ - `eia-connections-reference.csv`: Reference information about connections between balancing authorities ## Charts -The charts and map are drawn with [Observable Plot](https://observablehq/com/plot), and saved as components in `components/charts.js` and `components/map.js` to simplify our layout code in `index.md`. +The charts and map are drawn with [Observable Plot](https://observablehq.com/plot/), and saved as components in `components/charts.js` and `components/map.js` to simplify our layout code in `index.md`. ## Thanks diff --git a/examples/eia/docs/components/charts.js b/examples/eia/docs/components/charts.js deleted file mode 100644 index 2e11e562e..000000000 --- a/examples/eia/docs/components/charts.js +++ /dev/null @@ -1,69 +0,0 @@ -import * as Plot from "npm:@observablehq/plot"; -import {extent} from "npm:d3-array"; - -// Top 5 balancing authorities chart -export function top5BalancingAuthoritiesChart(width, height, top5Demand, maxDemand) { - return Plot.plot({ - marginTop: 8, - marginLeft: 250, - height: height - 4, - width, - y: {label: null, tickSize: 0}, - x: {label: null, grid: true, tickSize: 0, tickPadding: 2, domain: [0, maxDemand / 1000], nice: true}, - marks: [ - Plot.barX(top5Demand, { - y: "name", - x: (d) => d.value / 1000, - fill: "#9498a0", - sort: {y: "x", reverse: true, limit: 10}, - tip: true, - title: ({ name, value }) => `name: ${name}\ndemand: ${value / 1000} GWh` - }) - ] - }); -} - -// US electricity demand, generation and forecasting chart -export function usGenDemandForecastChart(width, height, usDemandGenForecast, currentHour) { - return Plot.plot({ - width, - marginTop: 0, - height: height - 50, - y: {label: null}, - x: {type: "time", tickSize: 0, tickPadding: 3}, - color: { - legend: true, - domain: ["Day-ahead demand forecast", "Demand", "Net generation"], - range: ["#6cc5b0", "#ff8ab7", "#a463f2"] - }, - grid: true, - marks: [ - Plot.ruleX([currentHour], {strokeOpacity: 0.5}), - Plot.line(usDemandGenForecast, {x: "date", y: (d) => d.value / 1000, stroke: "name", strokeWidth: 1.2, tip: true}) - ] - }); -} - -// Canada & Mexico interchange area chart -export function countryInterchangeChart(width, height, usDemandGenForecast, countryInterchangeSeries, currentHour) { - return Plot.plot({ - width, - marginTop: 0, - height: height - 50, - color: {legend: true, range: ["#B6B5B1", "#848890"]}, - grid: true, - y: {label: "GWh exported", labelOffset: 0, tickSize: 0}, - x: {type: "time", domain: extent(usDemandGenForecast.map((d) => d.date)), tickSize: 0, tickPadding: 3}, - marks: [ - Plot.ruleX([currentHour], {strokeOpacity: 0.5}), - Plot.areaY(countryInterchangeSeries, { - x: "date", - y: (d) => d.value / 1000, - curve: "step", - fill: "name", - tip: true - }), - Plot.ruleY([0], {strokeOpacity: 0.3}) - ] - }); -} diff --git a/examples/eia/docs/data/country-interchange.csv.js b/examples/eia/docs/data/country-interchange.csv.js deleted file mode 100644 index 7c94e64e0..000000000 --- a/examples/eia/docs/data/country-interchange.csv.js +++ /dev/null @@ -1,33 +0,0 @@ -import {csvFormat} from "d3-dsv"; -import {json} from "d3-fetch"; -import {timeDay, timeHour, utcDay} from "d3-time"; -import {timeFormat, utcParse} from "d3-time-format"; - -const end = timeDay.offset(timeHour(new Date()), 1) -const start = timeHour(utcDay.offset(end, -7)) -const convertDate = timeFormat("%m%d%Y %H:%M:%S") // Convert dates into the format the EIA web API expects - -// Electricity exported (in GWh) from the lower 48 US states to Canada and Mexico -const countryInterchangeUrl = `https://www.eia.gov/electricity/930-api/interchange/series_data?type[0]=TI&start=${convertDate(start)}&end=${convertDate(end)}&frequency=hourly&from_respondent[0]=US48&timezone=Eastern&limit=10000&offset=0` - -const tidySeries = (response, id, name) => { - let series = response[0].data - let datetimeFormat = utcParse("%m/%d/%Y %H:%M:%S") - let dateFormat = utcParse("%m/%d/%Y") - return series.flatMap(s => { - return s.VALUES.DATES.map((d,i) => { - return { - id: s[id], - name: s[name], - date: datetimeFormat(d) ?? dateFormat(d), - value: s.VALUES.DATA[i] - } - }) - }) -} - -const countryInterchangeSeries = await json(countryInterchangeUrl).then(response => { - return tidySeries(response, "TO_RESPONDENT_ID", "TO_RESPONDENT_NAME") -}) - -process.stdout.write(csvFormat(countryInterchangeSeries)); diff --git a/examples/eia/docs/data/eia-ba-hourly.csv.js b/examples/eia/docs/data/eia-ba-hourly.csv.js deleted file mode 100644 index d83aaa267..000000000 --- a/examples/eia/docs/data/eia-ba-hourly.csv.js +++ /dev/null @@ -1,27 +0,0 @@ -import "dotenv/config"; -import {csvFormat} from "d3-dsv"; -import {json} from "d3-fetch"; -import {timeDay, timeHour, utcDay} from "d3-time"; - -// Access key from .env -const {EIA_KEY} = process.env; - -// Start and end dates -const end = timeDay.offset(timeHour(new Date()), 1); -const start = timeHour(utcDay.offset(end, -7)); -const dataLength = 5000; - -// BA Hourly Demand -const regions = new Set(["California", "Carolinas", "Central", "Florida", "Mid-Atlantic", "Midwest", "New England", "New York", "Northwest", "Southeast", "Southwest", "Tennessee", "Texas", "United States Lower 48"]); -const baHourlyUrl = `https://api.eia.gov/v2/electricity/rto/region-data/data/?api_key=${EIA_KEY}&frequency=hourly&data[0]=value&start=${start.toISOString().substring(0, 10)}T00&end=${end.toISOString().substring(0, 10)}T00&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=${dataLength}`; -const baHourly = (await json(baHourlyUrl)).response.data - .filter((d) => d.type == "D") // Only use demand ("D") - .filter((d) => !regions.has(d["respondent-name"])) // Only use demand ("D") - .map((d) => ({ - period: d.period, - ba: d["respondent-name"], - baAbb: d.respondent, - value: d.value - })); - -process.stdout.write(csvFormat(baHourly)); diff --git a/examples/eia/docs/data/eia-system-points.json.sh b/examples/eia/docs/data/eia-system-points.json.sh deleted file mode 100644 index 444a8202b..000000000 --- a/examples/eia/docs/data/eia-system-points.json.sh +++ /dev/null @@ -1,2 +0,0 @@ -curl 'https://www.eia.gov/electricity/930-api//respondents/data?type\[0\]=BA&type\[1\]=BR' \ - --compressed \ No newline at end of file diff --git a/examples/eia/docs/data/us-demand.csv.js b/examples/eia/docs/data/us-demand.csv.js deleted file mode 100644 index 45546e662..000000000 --- a/examples/eia/docs/data/us-demand.csv.js +++ /dev/null @@ -1,33 +0,0 @@ -import * as d3 from "d3"; - -const end = d3.timeDay.offset(d3.timeHour(new Date()), 1) - -const start = d3.timeHour(d3.utcDay.offset(end, -7)) - -const convertDate = d3.timeFormat("%m%d%Y %H:%M:%S") - -const usDemandUrl = `https://www.eia.gov/electricity/930-api/region_data/series_data?type[0]=D&type[1]=DF&type[2]=NG&type[3]=TI&start=${convertDate(start)}&end=${convertDate(end)}&frequency=hourly&timezone=Eastern&limit=10000&respondent[0]=US48` - -const tidySeries = (response, id, name) => { - let series = response[0].data - let datetimeFormat = d3.utcParse("%m/%d/%Y %H:%M:%S") - let dateFormat = d3.utcParse("%m/%d/%Y") - return series.flatMap(s => { - return s.VALUES.DATES.map((d,i) => { - return { - id: s[id], - name: s[name], - date: datetimeFormat(d) ? datetimeFormat(d) : dateFormat(d), - value: s.VALUES.DATA[i], - reported: s.VALUES.DATA_REPORTED[i], - imputed: s.VALUES.DATA_IMPUTED[i] - } - }) - }) - } - -const usOverviewSeries = await d3.json(usDemandUrl).then(response => { - return tidySeries(response, "TYPE_ID", "TYPE_NAME") - }); - -process.stdout.write(d3.csvFormat(usOverviewSeries)); diff --git a/examples/eia/docs/index.md b/examples/eia/docs/index.md deleted file mode 100644 index 9cfddd1c3..000000000 --- a/examples/eia/docs/index.md +++ /dev/null @@ -1,211 +0,0 @@ ---- -toc: false -theme: [air, near-midnight, wide] ---- - -# U.S. electricity grid - -```js -import { - countryInterchangeChart, - top5BalancingAuthoritiesChart, - usGenDemandForecastChart -} from "./components/charts.js"; - -import { - balancingAuthoritiesLegend, - balancingAuthoritiesMap, -} from "./components/map.js"; -``` - -```js -// -// Load data snapshots -// - -// International electricity interchange -const countryInterchangeSeries = FileAttachment("data/country-interchange.csv").csv({typed: true}); - -``` - -```js -// US overall demand, generation, forecast -const usOverview = FileAttachment("data/us-demand.csv").csv({typed: true}); -``` - -```js -const baHourlyDemand = await FileAttachment("data/eia-ba-hourly.csv").csv({typed: true}); -``` - -```js -// BA connections -const eiaConnRef = await FileAttachment("data/eia-connections-reference.csv").csv({typed: true}); -``` - -```js -// BA status (generating or not) -const eiaBARef = await FileAttachment("data/eia-bia-reference.csv").csv({typed: true}); -``` - -```js -// -// Spatial data (country, states, BA locations) -// - -// US states -const us = await FileAttachment("data/us-states.json").json(); -const nation = us.features.find(({id}) => id === "nation"); -const statemesh = us.features.find(({id}) => id === "statemesh"); -``` - -```js -// Balancing authority representative locations -const eiaPoints = await FileAttachment("data/eia-system-points.json").json().then(d => d[0].data); -``` - -```js -// US total demand, generation and forecast excluding total (sum) -const usDemandGenForecast = usOverview.filter(d => d.name != "Total interchange"); -``` - -```js -// Generating only BAs -const genOnlyBA = eiaBARef.filter(d => d["Generation Only BA"] == "Yes").map(d => d["BA Code"]); -``` - -```js -const baHourlyClean = baHourlyDemand - .map(d => ({ - Date: timeParse(d.period).toLocaleString("en-us", { - month: "short", - day: "2-digit", - hour: "2-digit" - }), - 'Balancing authority': d.ba, - Abbreviation: d.baAbb, - Type: "Demand", - 'Value (GWh)': d.value / 1000 - })); -``` - -```js -// Most recent hour for each BA -const baHourlyAll = d3.range(0, hoursBackOfData + 1).map(hour => d3.rollup(baHourlyDemand, d => d[hour]?.value, d => d["ba"])); -const baHourlyCurrent = baHourlyAll[hoursAgo]; -const baHourlyLatest = baHourlyAll[0]; -``` - -```js -// Top 5 BAs by demand -function computeTopDemand(baHourly) { - return Array - .from(baHourly, ([name, value]) => ({ name, value })) - .sort(((a, b) => b.value - a.value)).slice(0, 5); -} -const top5LatestDemand = computeTopDemand(baHourlyCurrent); -const maxDemand = d3.max(baHourlyAll.map(demand => computeTopDemand(demand)[0].value)); -``` - -```js -// Percent change for most recent 2 hours of data by BA -const baHourlyChange = d3.rollup(baHourlyDemand, d => ((d[hoursAgo]?.value - d[hoursAgo + 1]?.value) / d[hoursAgo]?.value) * 100, d => d["ba"] ); -``` - -```js -// Map BA abbreviations to locations -const locations = new Map(eiaPoints.map(d => [d.id, [d.lon, d.lat]])); -``` - -```js -// Gets lat/lon endpoints between balancing authorities -const eiaConnRefSpatial = eiaConnRef.filter(d => d["Active Connection"] == "Yes"). -map(d => ({ - connection: `${d["BA Code"]}-${d["Directly Interconnected BA Code"]}`, - location1: locations.get(d["BA Code"]), - location2: locations.get(d["Directly Interconnected BA Code"]) -})); -``` - -```js -// Date/time format/parse -const timeParse = d3.utcParse("%Y-%m-%dT%H"); -const hourFormat = d3.timeFormat("%-I %p"); - -// Configure hours ago input -const MS_IN_AN_HOUR = 1000 * 60 * 60; -const hours = [...new Set(baHourlyDemand.map(d => d.period))].map(timeParse); -const [startHour, endHour] = d3.extent(hours); -const hoursBackOfData = Math.ceil(Math.abs(endHour - startHour) / (MS_IN_AN_HOUR)) - 1; -const hoursAgoInput = Inputs.range([hoursBackOfData, 0], { step: 1, value: 0, width: 150 }); -const hoursAgo = view(hoursAgoInput); -``` - -```js -// Establish current hour and relative day -const currentHour = new Date(endHour.getTime() - hoursAgo * MS_IN_AN_HOUR); -const relativeDay = () => currentHour.getDate() === endHour.getDate() ? "Today" : "Yesterday"; -``` - - - -
-
-

Change in demand by balancing authority

-

Percent change in electricity demand from previous hour

-
-
-

${hourFormat(currentHour)}

-
${relativeDay()}
-
- -
-${hoursBackOfData} hrs
- ${hoursAgoInput} -
now
-
-
- ${resize((width) => balancingAuthoritiesMap({ - baHourlyChange, - baHourlyLatest, - eiaConnRefSpatial, - eiaPoints, - genOnlyBA, - nation, - statemesh, - width - }))} - ${resize((width) => balancingAuthoritiesLegend(width))} -
-
- Balancing authority location and size are representative. All dates shown in your browser’s local time. -
-
-
-

Top 5 balancing authorities by demand at ${hourFormat(currentHour)} ${relativeDay().toLowerCase()} (GWh)

- ${resize((width, height) => top5BalancingAuthoritiesChart(width, height, top5LatestDemand, maxDemand))} -
-
-

US electricity generation, demand, and demand forecast (GWh)

- ${resize((width, height) => usGenDemandForecastChart(width, height, usDemandGenForecast, currentHour))} -
-
-

Neighboring country interchange (GWh)

- ${resize((width, height) => countryInterchangeChart(width, height, usDemandGenForecast, countryInterchangeSeries, currentHour))} -
-
- -
-
- ${Inputs.table(baHourlyClean, {rows: 16})} -
-
- -
This page reenvisions parts of the US Energy Information Administration's Hourly Electric Grid Monitor. Visit About the EIA-930 data to learn more about data collection and quality, the US electric grid, and balancing authorities responsible for nationwide electricity interchange.

diff --git a/examples/eia/observablehq.config.js b/examples/eia/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/eia/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/eia/package.json b/examples/eia/package.json index 095c2dc0f..f2b649ad8 100644 --- a/examples/eia/package.json +++ b/examples/eia/package.json @@ -1,22 +1,24 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../..", + "@observablehq/framework": "^1.7.0", "d3": "^7.8.5", - "d3-array": "^3.2.4", - "d3-dsv": "^3.0.1", - "d3-time": "^3.1.0", - "d3-time-format": "^4.1.0", "dotenv": "^16.3.1", "topojson-client": "^3.1.0", "topojson-simplify": "^3.0.3" }, + "devDependencies": { + "rimraf": "^5.0.5" + }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/eia/src/.gitignore b/examples/eia/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/eia/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/eia/src/components/charts.js b/examples/eia/src/components/charts.js new file mode 100644 index 000000000..0a41acb97 --- /dev/null +++ b/examples/eia/src/components/charts.js @@ -0,0 +1,125 @@ +import * as Plot from "npm:@observablehq/plot"; +import {extent, format, rollup, timeFormat} from "npm:d3"; + +function friendlyTypeName(d) { + switch (d) { + case "demandActual": + return "Demand (actual)"; + case "demandForecast": + return "Demand (forecast)"; + case "netGeneration": + return "Net generation"; + } +} + +// Top 5 balancing authorities chart +export function top5BalancingAuthoritiesChart(width, height, top5Demand, maxDemand) { + return Plot.plot({ + marginTop: 8, + marginLeft: Math.min(width/2, 250), + height: height - 4, + width, + style: "overflow: hidden;", + y: {label: null, tickSize: 0}, + x: {label: null, grid: true, tickSize: 0, tickPadding: 2, domain: [0, maxDemand / 1000], nice: true}, + marks: [ + Plot.barX(top5Demand, { + y: "name", + x: (d) => d.value / 1000, + fill: "#9498a0", + sort: {y: "x", reverse: true, limit: 10}, + tip: true, + title: ({name, value}) => `name: ${name}\ndemand: ${value / 1000} GWh` + }) + ] + }); +} + +// US electricity demand, generation and forecasting chart +export function usGenDemandForecastChart(width, height, data, currentHour) { + // Roll up each hour's values into a single row for a cohesive tip + const compoundTips = rollup( + data, + (v) => ({...v[0], ...Object.fromEntries(v.map(({name, value}) => [name, value]))}), + (d) => d.date + ).values(); + + return Plot.plot({ + width, + marginTop: 0, + height: height - 50, + y: {tickSize: 0, label: null}, + x: {type: "time", tickSize: 0, tickPadding: 3, label: null}, + color: { + legend: true, + domain: ["demandActual", "demandForecast", "netGeneration"], + tickFormat: friendlyTypeName, + range: ["#ff8ab7", "#6cc5b0", "#a463f2"] + }, + grid: true, + marks: [ + Plot.ruleX([currentHour], {strokeOpacity: 0.5}), + Plot.line(data, { + x: "date", + y: (d) => d.value / 1000, + stroke: "name", + strokeWidth: 1.2 + }), + Plot.ruleX( + compoundTips, + Plot.pointerX({ + x: "date", + strokeDasharray: [2, 2], + channels: { + date: {value: "date", label: "Time"}, + demandActual: {value: "demandActual", label: friendlyTypeName("demandActual")}, + demandForecast: {value: "demandForecast", label: friendlyTypeName("demandForecast")}, + netGeneration: {value: "netGeneration", label: friendlyTypeName("netGeneration")} + }, + tip: { + format: { + date: (d) => timeFormat("%-d %b %-I %p")(d), + demandActual: (d) => `${format(".1f")(d / 1000)} GWh`, + demandForecast: (d) => `${format(".1f")(d / 1000)} GWh`, + netGeneration: (d) => `${format(".1f")(d / 1000)} GWh`, + x: false + }, + fontSize: 12, + anchor: "bottom", + frameAnchor: "top" + } + }) + ) + ] + }); +} + +// Canada & Mexico interchange area chart +export function countryInterchangeChart(width, height, usDemandGenForecast, countryInterchangeSeries, currentHour) { + return Plot.plot({ + width, + marginTop: 10, + height: height - 50, + color: {legend: true, range: ["#B6B5B1", "#848890"]}, + grid: true, + x: {type: "time", domain: extent(usDemandGenForecast.map((d) => d.date)), tickSize: 0, tickPadding: 3}, + y: {label: "GWh exported", labelOffset: 0, tickSize: 0, tickSpacing: 20}, + marks: [ + Plot.ruleX([currentHour], {strokeOpacity: 0.5}), + Plot.areaY(countryInterchangeSeries, { + x: "date", + y: (d) => d.value / 1000, + curve: "step", + fill: "name", + order: "sum", + tip: true, + title: (d) => + `Country: ${d.name}\nDate: ${d.date.toLocaleString("en-US", { + month: "short", + day: "numeric", + hour: "numeric" + })}\nExported: ${(d.value / 1000).toLocaleString("en-US")} GWh` + }) + ] + }); +} diff --git a/examples/eia/docs/components/map.js b/examples/eia/src/components/map.js similarity index 91% rename from examples/eia/docs/components/map.js rename to examples/eia/src/components/map.js index b23cf045e..f870c74a5 100644 --- a/examples/eia/docs/components/map.js +++ b/examples/eia/src/components/map.js @@ -1,7 +1,5 @@ import * as Plot from "npm:@observablehq/plot"; -import {extent} from "npm:d3-array"; -import {format} from "npm:d3-format"; -import {html} from "npm:htl"; +import {format} from "npm:d3"; // Colors and scale const colorGenerating = "#88DCAD"; @@ -26,8 +24,8 @@ export function balancingAuthoritiesMap({ width }) { return Plot.plot({ - width: Math.min(width, 620), - height: Math.min(width, 620) * 0.6, + width, + height: width * 0.67, color: { ...color, transform: (d) => d / 100, @@ -35,10 +33,10 @@ export function balancingAuthoritiesMap({ }, projection: { type: "albers", + domain: nation, insetTop: 15 }, r: { - domain: extent(eiaPoints, (d) => d.radius), range: [4, 30] }, marks: [ @@ -125,28 +123,31 @@ export function balancingAuthoritiesMap({ export function balancingAuthoritiesLegend(width) { return Plot.plot({ marginTop: 15, - width: Math.min(width - 30, 400), + marginRight: 80, + width, height: 60, - y: {axis: null}, + y: {axis: null, domain: [0, 1]}, marks: [ Plot.raster({ y1: 0, y2: 1, x1: -0.19, x2: 0.19, - fill: (x, y) => color.apply(x) + fill: (x) => color.apply(x) }), Plot.ruleX([-0.15, 0, 0.15], {insetBottom: -5}), Plot.axisX([-0.15, 0, 0.15], {tickFormat: format("+.0%"), tickSize: 0}), Plot.dot(["Generating only", "Unavailable"], { - x: [0.23, 0.4], + x: [0.26, 0.26], + y: [0.75, -.25], r: 5, dx: -8, fill: [colorGenerating, colorUnavailable], stroke: "grey" }), Plot.text(["Generating only", "Unavailable"], { - x: [0.23, 0.4], + x: [0.26, 0.26], + y: [0.75, -.25], textAnchor: "start" }) ] diff --git a/examples/eia/src/data/country-interchange.csv b/examples/eia/src/data/country-interchange.csv new file mode 100644 index 000000000..8a3585387 --- /dev/null +++ b/examples/eia/src/data/country-interchange.csv @@ -0,0 +1,219 @@ +id,name,date,value +CAN,Canada,2024-04-11T04:00Z,2412 +MEX,Mexico,2024-04-11T04:00Z,309 +CAN,Canada,2024-04-11T03:00Z,2065 +MEX,Mexico,2024-04-11T03:00Z,341 +MEX,Mexico,2024-04-11T02:00Z,245 +CAN,Canada,2024-04-11T02:00Z,1862 +CAN,Canada,2024-04-11T01:00Z,470 +MEX,Mexico,2024-04-11T01:00Z,258 +MEX,Mexico,2024-04-11,390 +CAN,Canada,2024-04-11,241 +CAN,Canada,2024-04-10T23:00Z,66 +MEX,Mexico,2024-04-10T23:00Z,472 +CAN,Canada,2024-04-10T22:00Z,1049 +MEX,Mexico,2024-04-10T22:00Z,429 +MEX,Mexico,2024-04-10T21:00Z,412 +CAN,Canada,2024-04-10T21:00Z,1317 +MEX,Mexico,2024-04-10T20:00Z,423 +CAN,Canada,2024-04-10T20:00Z,1837 +CAN,Canada,2024-04-10T19:00Z,1745 +MEX,Mexico,2024-04-10T19:00Z,436 +CAN,Canada,2024-04-10T18:00Z,1679 +MEX,Mexico,2024-04-10T18:00Z,392 +CAN,Canada,2024-04-10T17:00Z,1353 +MEX,Mexico,2024-04-10T17:00Z,321 +MEX,Mexico,2024-04-10T16:00Z,166 +CAN,Canada,2024-04-10T16:00Z,1685 +CAN,Canada,2024-04-10T15:00Z,1001 +MEX,Mexico,2024-04-10T15:00Z,130 +MEX,Mexico,2024-04-10T14:00Z,135 +CAN,Canada,2024-04-10T14:00Z,990 +MEX,Mexico,2024-04-10T13:00Z,67 +CAN,Canada,2024-04-10T13:00Z,1843 +CAN,Canada,2024-04-10T12:00Z,780 +MEX,Mexico,2024-04-10T12:00Z,64 +MEX,Mexico,2024-04-10T11:00Z,59 +CAN,Canada,2024-04-10T11:00Z,1844 +MEX,Mexico,2024-04-10T10:00Z,61 +CAN,Canada,2024-04-10T10:00Z,2216 +CAN,Canada,2024-04-10T09:00Z,1763 +MEX,Mexico,2024-04-10T09:00Z,58 +MEX,Mexico,2024-04-10T08:00Z,55 +CAN,Canada,2024-04-10T08:00Z,2193 +CAN,Canada,2024-04-10T07:00Z,2185 +MEX,Mexico,2024-04-10T07:00Z,94 +CAN,Canada,2024-04-10T06:00Z,2175 +MEX,Mexico,2024-04-10T06:00Z,106 +MEX,Mexico,2024-04-10T05:00Z,193 +CAN,Canada,2024-04-10T05:00Z,1724 +MEX,Mexico,2024-04-10T04:00Z,191 +CAN,Canada,2024-04-10T04:00Z,1500 +CAN,Canada,2024-04-10T03:00Z,1491 +MEX,Mexico,2024-04-10T03:00Z,223 +MEX,Mexico,2024-04-10T02:00Z,109 +CAN,Canada,2024-04-10T02:00Z,493 +MEX,Mexico,2024-04-10T01:00Z,198 +CAN,Canada,2024-04-10T01:00Z,-1110 +CAN,Canada,2024-04-10,-1100 +MEX,Mexico,2024-04-10,291 +MEX,Mexico,2024-04-09T23:00Z,322 +CAN,Canada,2024-04-09T23:00Z,87 +CAN,Canada,2024-04-09T22:00Z,825 +MEX,Mexico,2024-04-09T22:00Z,389 +CAN,Canada,2024-04-09T21:00Z,1233 +MEX,Mexico,2024-04-09T21:00Z,382 +MEX,Mexico,2024-04-09T20:00Z,384 +CAN,Canada,2024-04-09T20:00Z,896 +MEX,Mexico,2024-04-09T19:00Z,397 +CAN,Canada,2024-04-09T19:00Z,1401 +MEX,Mexico,2024-04-09T18:00Z,341 +CAN,Canada,2024-04-09T18:00Z,1277 +MEX,Mexico,2024-04-09T17:00Z,370 +CAN,Canada,2024-04-09T17:00Z,1679 +MEX,Mexico,2024-04-09T16:00Z,246 +CAN,Canada,2024-04-09T16:00Z,711 +MEX,Mexico,2024-04-09T15:00Z,151 +CAN,Canada,2024-04-09T15:00Z,777 +MEX,Mexico,2024-04-09T14:00Z,113 +CAN,Canada,2024-04-09T14:00Z,1144 +CAN,Canada,2024-04-09T13:00Z,1258 +MEX,Mexico,2024-04-09T13:00Z,64 +CAN,Canada,2024-04-09T12:00Z,-119 +MEX,Mexico,2024-04-09T12:00Z,67 +CAN,Canada,2024-04-09T11:00Z,740 +MEX,Mexico,2024-04-09T11:00Z,61 +MEX,Mexico,2024-04-09T10:00Z,66 +CAN,Canada,2024-04-09T10:00Z,1987 +MEX,Mexico,2024-04-09T09:00Z,152 +CAN,Canada,2024-04-09T09:00Z,1946 +CAN,Canada,2024-04-09T08:00Z,2240 +MEX,Mexico,2024-04-09T08:00Z,168 +CAN,Canada,2024-04-09T07:00Z,2336 +MEX,Mexico,2024-04-09T07:00Z,163 +MEX,Mexico,2024-04-09T06:00Z,65 +CAN,Canada,2024-04-09T06:00Z,2359 +CAN,Canada,2024-04-09T05:00Z,1994 +MEX,Mexico,2024-04-09T05:00Z,245 +MEX,Mexico,2024-04-09T04:00Z,252 +CAN,Canada,2024-04-09T04:00Z,2141 +CAN,Canada,2024-04-09T03:00Z,1616 +MEX,Mexico,2024-04-09T03:00Z,186 +CAN,Canada,2024-04-09T02:00Z,-322 +MEX,Mexico,2024-04-09T02:00Z,114 +MEX,Mexico,2024-04-09T01:00Z,157 +CAN,Canada,2024-04-09T01:00Z,-1071 +MEX,Mexico,2024-04-09,377 +CAN,Canada,2024-04-09,-785 +CAN,Canada,2024-04-08T23:00Z,556 +MEX,Mexico,2024-04-08T23:00Z,370 +MEX,Mexico,2024-04-08T22:00Z,399 +CAN,Canada,2024-04-08T22:00Z,1183 +MEX,Mexico,2024-04-08T21:00Z,412 +CAN,Canada,2024-04-08T21:00Z,1413 +CAN,Canada,2024-04-08T20:00Z,792 +MEX,Mexico,2024-04-08T20:00Z,330 +CAN,Canada,2024-04-08T19:00Z,1402 +MEX,Mexico,2024-04-08T19:00Z,167 +MEX,Mexico,2024-04-08T18:00Z,115 +CAN,Canada,2024-04-08T18:00Z,1378 +MEX,Mexico,2024-04-08T17:00Z,152 +CAN,Canada,2024-04-08T17:00Z,1425 +CAN,Canada,2024-04-08T16:00Z,1295 +MEX,Mexico,2024-04-08T16:00Z,111 +MEX,Mexico,2024-04-08T15:00Z,18 +CAN,Canada,2024-04-08T15:00Z,1192 +CAN,Canada,2024-04-08T14:00Z,923 +MEX,Mexico,2024-04-08T14:00Z,-16 +CAN,Canada,2024-04-08T13:00Z,814 +MEX,Mexico,2024-04-08T13:00Z,-27 +MEX,Mexico,2024-04-08T12:00Z,-18 +CAN,Canada,2024-04-08T12:00Z,-751 +MEX,Mexico,2024-04-08T11:00Z,-34 +CAN,Canada,2024-04-08T11:00Z,92 +CAN,Canada,2024-04-08T10:00Z,1005 +MEX,Mexico,2024-04-08T10:00Z,-43 +MEX,Mexico,2024-04-08T09:00Z,-27 +CAN,Canada,2024-04-08T09:00Z,1226 +CAN,Canada,2024-04-08T08:00Z,1610 +MEX,Mexico,2024-04-08T08:00Z,-36 +MEX,Mexico,2024-04-08T07:00Z,-37 +CAN,Canada,2024-04-08T07:00Z,1659 +MEX,Mexico,2024-04-08T06:00Z,-37 +CAN,Canada,2024-04-08T06:00Z,1364 +CAN,Canada,2024-04-08T05:00Z,1228 +MEX,Mexico,2024-04-08T05:00Z,67 +MEX,Mexico,2024-04-08T04:00Z,112 +CAN,Canada,2024-04-08T04:00Z,1710 +MEX,Mexico,2024-04-08T03:00Z,7 +CAN,Canada,2024-04-08T03:00Z,680 +CAN,Canada,2024-04-08T02:00Z,-287 +MEX,Mexico,2024-04-08T02:00Z,-198 +CAN,Canada,2024-04-08T01:00Z,361 +MEX,Mexico,2024-04-08T01:00Z,-179 +CAN,Canada,2024-04-08,418 +MEX,Mexico,2024-04-08,-112 +MEX,Mexico,2024-04-07T23:00Z,-49 +CAN,Canada,2024-04-07T23:00Z,1268 +MEX,Mexico,2024-04-07T22:00Z,-47 +CAN,Canada,2024-04-07T22:00Z,2139 +MEX,Mexico,2024-04-07T21:00Z,105 +CAN,Canada,2024-04-07T21:00Z,2715 +MEX,Mexico,2024-04-07T20:00Z,111 +CAN,Canada,2024-04-07T20:00Z,2603 +MEX,Mexico,2024-04-07T19:00Z,129 +CAN,Canada,2024-04-07T19:00Z,2362 +CAN,Canada,2024-04-07T18:00Z,2335 +MEX,Mexico,2024-04-07T18:00Z,152 +MEX,Mexico,2024-04-07T17:00Z,90 +CAN,Canada,2024-04-07T17:00Z,2355 +CAN,Canada,2024-04-07T16:00Z,1803 +MEX,Mexico,2024-04-07T16:00Z,56 +CAN,Canada,2024-04-07T15:00Z,1934 +MEX,Mexico,2024-04-07T15:00Z,0 +CAN,Canada,2024-04-07T14:00Z,2183 +MEX,Mexico,2024-04-07T14:00Z,-22 +CAN,Canada,2024-04-07T13:00Z,1903 +MEX,Mexico,2024-04-07T13:00Z,28 +CAN,Canada,2024-04-07T12:00Z,1617 +MEX,Mexico,2024-04-07T12:00Z,28 +CAN,Canada,2024-04-07T11:00Z,1754 +MEX,Mexico,2024-04-07T11:00Z,131 +CAN,Canada,2024-04-07T10:00Z,2165 +MEX,Mexico,2024-04-07T10:00Z,151 +MEX,Mexico,2024-04-07T09:00Z,153 +CAN,Canada,2024-04-07T09:00Z,2856 +CAN,Canada,2024-04-07T08:00Z,2668 +MEX,Mexico,2024-04-07T08:00Z,152 +MEX,Mexico,2024-04-07T07:00Z,135 +CAN,Canada,2024-04-07T07:00Z,3119 +CAN,Canada,2024-04-07T06:00Z,3237 +MEX,Mexico,2024-04-07T06:00Z,68 +MEX,Mexico,2024-04-07T05:00Z,146 +CAN,Canada,2024-04-07T05:00Z,1882 +MEX,Mexico,2024-04-07T04:00Z,180 +CAN,Canada,2024-04-07T04:00Z,1846 +MEX,Mexico,2024-04-07T03:00Z,189 +CAN,Canada,2024-04-07T03:00Z,1298 +MEX,Mexico,2024-04-07T02:00Z,173 +CAN,Canada,2024-04-07T02:00Z,658 +MEX,Mexico,2024-04-07T01:00Z,190 +CAN,Canada,2024-04-07T01:00Z,685 +CAN,Canada,2024-04-07,912 +MEX,Mexico,2024-04-07,116 +MEX,Mexico,2024-04-06T23:00Z,132 +CAN,Canada,2024-04-06T23:00Z,1643 +MEX,Mexico,2024-04-06T22:00Z,180 +CAN,Canada,2024-04-06T22:00Z,1659 +CAN,Canada,2024-04-06T21:00Z,2845 +MEX,Mexico,2024-04-06T21:00Z,197 +CAN,Canada,2024-04-06T20:00Z,3037 +MEX,Mexico,2024-04-06T20:00Z,165 +MEX,Mexico,2024-04-06T19:00Z,164 +CAN,Canada,2024-04-06T19:00Z,3083 +MEX,Mexico,2024-04-06T18:00Z,179 +CAN,Canada,2024-04-06T18:00Z,2943 +MEX,Mexico,2024-04-06T17:00Z,174 +CAN,Canada,2024-04-06T17:00Z,2690 +CAN,Canada,2024-04-06T16:00Z,1987 +MEX,Mexico,2024-04-06T16:00Z,136 \ No newline at end of file diff --git a/examples/eia/src/data/country-interchange.csv.js b/examples/eia/src/data/country-interchange.csv.js new file mode 100644 index 000000000..c2851847e --- /dev/null +++ b/examples/eia/src/data/country-interchange.csv.js @@ -0,0 +1,27 @@ +import "dotenv/config"; +import * as d3 from "d3"; + +// Access key from .env +const {EIA_KEY} = process.env; + +const end = d3.timeDay.offset(d3.timeHour(new Date()), 1); +const start = d3.timeHour(d3.utcDay.offset(end, -7)); +const convertDate = d3.timeFormat("%Y-%m-%dT%H"); + +// Electricity exported (in GWh) from the lower 48 US states to Canada and Mexico +const countryInterchangeUrl = `https://api.eia.gov/v2/electricity/rto/interchange-data/data/?api_key=${EIA_KEY}&frequency=hourly&data[0]=value&facets[fromba][]=US48&start=${convertDate( + start +)}&end=${convertDate(end)}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000`; + +const countryInterchange = await d3.json(countryInterchangeUrl); + +const dateParse = d3.utcParse("%Y-%m-%dT%H"); + +const countryInterchangeSeries = await countryInterchange.response.data.map((d) => ({ + id: d.toba, + name: d["toba-name"], + date: dateParse(d.period), + value: +d.value +})); + +process.stdout.write(d3.csvFormat(countryInterchangeSeries)); diff --git a/examples/eia/src/data/eia-ba-hourly.csv b/examples/eia/src/data/eia-ba-hourly.csv new file mode 100644 index 000000000..b6ec1a16f --- /dev/null +++ b/examples/eia/src/data/eia-ba-hourly.csv @@ -0,0 +1,1277 @@ +period,ba,baAbb,value +2024-04-12T22,Imperial Irrigation District,IID,447 +2024-04-12T22,Tampa Electric Company,TEC,2634 +2024-04-12T22,Western Area Power Administration - Rocky Mountain Region,WACM,3501 +2024-04-12T22,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,0 +2024-04-12T22,Florida Power & Light Co.,FPL,18531 +2024-04-12T22,South Carolina Public Service Authority,SC,2465 +2024-04-12T22,Tennessee Valley Authority,TVA,15923 +2024-04-12T22,Seminole Electric Cooperative,SEC,276 +2024-04-12T22,Portland General Electric Company,PGE,2278 +2024-04-12T22,"PJM Interconnection, LLC",PJM,82603 +2024-04-12T22,Public Utility District No. 1 of Chelan County,CHPD,163 +2024-04-12T22,Bonneville Power Administration,BPAT,6485 +2024-04-12T22,Tucson Electric Power,TEPC,1268 +2024-04-12T22,"Southern Company Services, Inc. - Trans",SOCO,22917 +2024-04-12T22,"Associated Electric Cooperative, Inc.",AECI,1776 +2024-04-12T22,New York Independent System Operator,NYIS,16055 +2024-04-12T22,JEA,JEA, +2024-04-12T22,City of Homestead,HST,95 +2024-04-12T22,"Midcontinent Independent System Operator, Inc.",MISO,66568 +2024-04-12T22,Nevada Power Company,NEVP,3864 +2024-04-12T22,"Electric Reliability Council of Texas, Inc.",ERCO,50653 +2024-04-12T22,NorthWestern Corporation,NWMT,1253 +2024-04-12T22,ISO New England,ISNE,12784 +2024-04-12T22,Los Angeles Department of Water and Power,LDWP,102 +2024-04-12T22,Salt River Project Agricultural Improvement and Power District,SRP,3891 +2024-04-12T22,Southwestern Power Administration,SPA,-314 +2024-04-12T22,Western Area Power Administration - Desert Southwest Region,WALC,1141 +2024-04-12T22,Gainesville Regional Utilities,GVL,243 +2024-04-12T22,City of Tallahassee,TAL,316 +2024-04-12T22,Southwest Power Pool,SWPP,29644 +2024-04-12T22,Balancing Authority of Northern California,BANC,1809 +2024-04-12T22,Avista Corporation,AVA,1364 +2024-04-12T22,"Dominion Energy South Carolina, Inc.",SCEG,2354 +2024-04-12T22,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,508 +2024-04-12T22,Arizona Public Service Company,AZPS,2878 +2024-04-12T22,Seattle City Light,SCL,948 +2024-04-12T22,Public Service Company of New Mexico,PNM,1451 +2024-04-12T22,El Paso Electric Company,EPE,922 +2024-04-12T22,Idaho Power Company,IPCO,1643 +2024-04-12T22,California Independent System Operator,CISO,22267 +2024-04-12T22,Public Service Company of Colorado,PSCO,4226 +2024-04-12T22,Turlock Irrigation District,TIDC,297 +2024-04-12T22,Florida Municipal Power Pool,FMPP,2321 +2024-04-12T22,PUD No. 1 of Douglas County,DOPD,213 +2024-04-12T21,Seattle City Light,SCL,1096 +2024-04-12T21,New York Independent System Operator,NYIS,16016 +2024-04-12T21,South Carolina Public Service Authority,SC,2530 +2024-04-12T21,"PJM Interconnection, LLC",PJM,82774 +2024-04-12T21,Florida Municipal Power Pool,FMPP,2243 +2024-04-12T21,ISO New England,ISNE,12815 +2024-04-12T21,Imperial Irrigation District,IID,411 +2024-04-12T21,Southwest Power Pool,SWPP,29427 +2024-04-12T21,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,515 +2024-04-12T21,PUD No. 1 of Douglas County,DOPD,219 +2024-04-12T21,JEA,JEA,1539 +2024-04-12T21,Bonneville Power Administration,BPAT,6341 +2024-04-12T21,"Associated Electric Cooperative, Inc.",AECI,1716 +2024-04-12T21,Western Area Power Administration - Rocky Mountain Region,WACM,3456 +2024-04-12T21,Florida Power & Light Co.,FPL,18208 +2024-04-12T21,"Southern Company Services, Inc. - Trans",SOCO,22838 +2024-04-12T21,Salt River Project Agricultural Improvement and Power District,SRP,3684 +2024-04-12T21,Tampa Electric Company,TEC,2574 +2024-04-12T21,Public Service Company of New Mexico,PNM,1379 +2024-04-12T21,Public Utility District No. 1 of Chelan County,CHPD,168 +2024-04-12T21,City of Tallahassee,TAL,315 +2024-04-12T21,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4044 +2024-04-12T21,"Electric Reliability Council of Texas, Inc.",ERCO,49344 +2024-04-12T21,Tennessee Valley Authority,TVA,15789 +2024-04-12T21,City of Homestead,HST,91 +2024-04-12T21,Los Angeles Department of Water and Power,LDWP,107 +2024-04-12T21,Avista Corporation,AVA,1385 +2024-04-12T21,Seminole Electric Cooperative,SEC,267 +2024-04-12T21,"Dominion Energy South Carolina, Inc.",SCEG,2330 +2024-04-12T21,Balancing Authority of Northern California,BANC,1814 +2024-04-12T21,Public Service Company of Colorado,PSCO,4101 +2024-04-12T21,Portland General Electric Company,PGE,2299 +2024-04-12T21,El Paso Electric Company,EPE,894 +2024-04-12T21,Western Area Power Administration - Desert Southwest Region,WALC,1127 +2024-04-12T21,Turlock Irrigation District,TIDC,298 +2024-04-12T21,Southwestern Power Administration,SPA,-253 +2024-04-12T21,"Midcontinent Independent System Operator, Inc.",MISO,66815 +2024-04-12T21,NorthWestern Corporation,NWMT,1270 +2024-04-12T21,Nevada Power Company,NEVP,3726 +2024-04-12T21,California Independent System Operator,CISO,22564 +2024-04-12T21,Arizona Public Service Company,AZPS,2699 +2024-04-12T21,Tucson Electric Power,TEPC,1207 +2024-04-12T21,Idaho Power Company,IPCO,1667 +2024-04-12T21,Gainesville Regional Utilities,GVL,236 +2024-04-12T20,"PJM Interconnection, LLC",PJM,83371 +2024-04-12T20,Public Service Company of Colorado,PSCO,4063 +2024-04-12T20,PUD No. 1 of Douglas County,DOPD,217 +2024-04-12T20,Nevada Power Company,NEVP,3594 +2024-04-12T20,"Electric Reliability Council of Texas, Inc.",ERCO,47869 +2024-04-12T20,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,534 +2024-04-12T20,Florida Municipal Power Pool,FMPP,2185 +2024-04-12T20,"Southern Company Services, Inc. - Trans",SOCO,22663 +2024-04-12T20,Western Area Power Administration - Desert Southwest Region,WALC,1109 +2024-04-12T20,"Associated Electric Cooperative, Inc.",AECI,1736 +2024-04-12T20,Imperial Irrigation District,IID,385 +2024-04-12T20,Southwestern Power Administration,SPA,-268 +2024-04-12T20,Seattle City Light,SCL,1127 +2024-04-12T20,Seminole Electric Cooperative,SEC,251 +2024-04-12T20,Gainesville Regional Utilities,GVL,225 +2024-04-12T20,NorthWestern Corporation,NWMT,1289 +2024-04-12T20,Southwest Power Pool,SWPP,29359 +2024-04-12T20,South Carolina Public Service Authority,SC,2477 +2024-04-12T20,Portland General Electric Company,PGE,2322 +2024-04-12T20,Public Service Company of New Mexico,PNM,1301 +2024-04-12T20,"Midcontinent Independent System Operator, Inc.",MISO,67107 +2024-04-12T20,ISO New England,ISNE,12688 +2024-04-12T20,Turlock Irrigation District,TIDC,294 +2024-04-12T20,California Independent System Operator,CISO,22262 +2024-04-12T20,City of Homestead,HST,85 +2024-04-12T20,Florida Power & Light Co.,FPL,17549 +2024-04-12T20,El Paso Electric Company,EPE,864 +2024-04-12T20,Tampa Electric Company,TEC,2455 +2024-04-12T20,"Dominion Energy South Carolina, Inc.",SCEG,2285 +2024-04-12T20,New York Independent System Operator,NYIS,15808 +2024-04-12T20,Public Utility District No. 1 of Chelan County,CHPD,168 +2024-04-12T20,Tucson Electric Power,TEPC,1164 +2024-04-12T20,Balancing Authority of Northern California,BANC,1698 +2024-04-12T20,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4095 +2024-04-12T20,JEA,JEA,1469 +2024-04-12T20,Los Angeles Department of Water and Power,LDWP,104 +2024-04-12T20,City of Tallahassee,TAL,335 +2024-04-12T20,Salt River Project Agricultural Improvement and Power District,SRP,3537 +2024-04-12T20,Western Area Power Administration - Rocky Mountain Region,WACM,3479 +2024-04-12T20,Tennessee Valley Authority,TVA,15945 +2024-04-12T20,Avista Corporation,AVA,1389 +2024-04-12T20,Arizona Public Service Company,AZPS,2572 +2024-04-12T20,Bonneville Power Administration,BPAT,6491 +2024-04-12T20,Idaho Power Company,IPCO,1630 +2024-04-12T19,California Independent System Operator,CISO,22493 +2024-04-12T19,City of Tallahassee,TAL,322 +2024-04-12T19,Seminole Electric Cooperative,SEC,235 +2024-04-12T19,"Midcontinent Independent System Operator, Inc.",MISO,67604 +2024-04-12T19,Idaho Power Company,IPCO,1615 +2024-04-12T19,PUD No. 1 of Douglas County,DOPD,227 +2024-04-12T19,Western Area Power Administration - Desert Southwest Region,WALC,1098 +2024-04-12T19,Imperial Irrigation District,IID,359 +2024-04-12T19,NorthWestern Corporation,NWMT,1299 +2024-04-12T19,South Carolina Public Service Authority,SC,2433 +2024-04-12T19,Public Service Company of New Mexico,PNM,1257 +2024-04-12T19,"PJM Interconnection, LLC",PJM,83861 +2024-04-12T19,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,545 +2024-04-12T19,Tennessee Valley Authority,TVA,16180 +2024-04-12T19,New York Independent System Operator,NYIS,15769 +2024-04-12T19,Tucson Electric Power,TEPC,1121 +2024-04-12T19,Avista Corporation,AVA,1411 +2024-04-12T19,Portland General Electric Company,PGE,2344 +2024-04-12T19,Salt River Project Agricultural Improvement and Power District,SRP,3352 +2024-04-12T19,Florida Power & Light Co.,FPL,16834 +2024-04-12T19,Turlock Irrigation District,TIDC,289 +2024-04-12T19,Florida Municipal Power Pool,FMPP,2074 +2024-04-12T19,Balancing Authority of Northern California,BANC,1679 +2024-04-12T19,Public Service Company of Colorado,PSCO,4047 +2024-04-12T19,Nevada Power Company,NEVP,3517 +2024-04-12T19,ISO New England,ISNE,12881 +2024-04-12T19,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4163 +2024-04-12T19,"Electric Reliability Council of Texas, Inc.",ERCO,46649 +2024-04-12T19,"Southern Company Services, Inc. - Trans",SOCO,22762 +2024-04-12T19,JEA,JEA,1406 +2024-04-12T19,Western Area Power Administration - Rocky Mountain Region,WACM,3556 +2024-04-12T19,"Dominion Energy South Carolina, Inc.",SCEG,2234 +2024-04-12T19,City of Homestead,HST,80 +2024-04-12T19,Los Angeles Department of Water and Power,LDWP,104 +2024-04-12T19,"Associated Electric Cooperative, Inc.",AECI,1782 +2024-04-12T19,Southwestern Power Administration,SPA,-273 +2024-04-12T19,Southwest Power Pool,SWPP,29292 +2024-04-12T19,Arizona Public Service Company,AZPS,2668 +2024-04-12T19,El Paso Electric Company,EPE,844 +2024-04-12T19,Bonneville Power Administration,BPAT,6661 +2024-04-12T19,Tampa Electric Company,TEC,2352 +2024-04-12T19,Public Utility District No. 1 of Chelan County,CHPD,179 +2024-04-12T19,Seattle City Light,SCL,1161 +2024-04-12T19,Gainesville Regional Utilities,GVL,215 +2024-04-12T18,El Paso Electric Company,EPE,829 +2024-04-12T18,JEA,JEA,1350 +2024-04-12T18,NorthWestern Corporation,NWMT,1313 +2024-04-12T18,Tucson Electric Power,TEPC,1101 +2024-04-12T18,"Electric Reliability Council of Texas, Inc.",ERCO,45522 +2024-04-12T18,Turlock Irrigation District,TIDC,290 +2024-04-12T18,Florida Power & Light Co.,FPL,16183 +2024-04-12T18,Tampa Electric Company,TEC,2257 +2024-04-12T18,ISO New England,ISNE,12934 +2024-04-12T18,New York Independent System Operator,NYIS,16118 +2024-04-12T18,Seminole Electric Cooperative,SEC,222 +2024-04-12T18,Arizona Public Service Company,AZPS,2626 +2024-04-12T18,City of Homestead,HST,76 +2024-04-12T18,Public Service Company of New Mexico,PNM,1270 +2024-04-12T18,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,566 +2024-04-12T18,Imperial Irrigation District,IID,340 +2024-04-12T18,City of Tallahassee,TAL,309 +2024-04-12T18,Florida Municipal Power Pool,FMPP,1991 +2024-04-12T18,Western Area Power Administration - Desert Southwest Region,WALC,1086 +2024-04-12T18,PUD No. 1 of Douglas County,DOPD,231 +2024-04-12T18,Idaho Power Company,IPCO,1636 +2024-04-12T18,"PJM Interconnection, LLC",PJM,84576 +2024-04-12T18,"Dominion Energy South Carolina, Inc.",SCEG,2207 +2024-04-12T18,Seattle City Light,SCL,1187 +2024-04-12T18,Balancing Authority of Northern California,BANC,1675 +2024-04-12T18,Salt River Project Agricultural Improvement and Power District,SRP,3215 +2024-04-12T18,Public Utility District No. 1 of Chelan County,CHPD,185 +2024-04-12T18,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4165 +2024-04-12T18,Southwestern Power Administration,SPA,-302 +2024-04-12T18,"Associated Electric Cooperative, Inc.",AECI,1802 +2024-04-12T18,Nevada Power Company,NEVP,3451 +2024-04-12T18,Tennessee Valley Authority,TVA,16369 +2024-04-12T18,Western Area Power Administration - Rocky Mountain Region,WACM,3586 +2024-04-12T18,Avista Corporation,AVA,1428 +2024-04-12T18,"Southern Company Services, Inc. - Trans",SOCO,22872 +2024-04-12T18,Portland General Electric Company,PGE,2392 +2024-04-12T18,"Midcontinent Independent System Operator, Inc.",MISO,68025 +2024-04-12T18,Southwest Power Pool,SWPP,29221 +2024-04-12T18,South Carolina Public Service Authority,SC,2418 +2024-04-12T18,Los Angeles Department of Water and Power,LDWP,99 +2024-04-12T18,Public Service Company of Colorado,PSCO,4050 +2024-04-12T18,Bonneville Power Administration,BPAT,6818 +2024-04-12T18,Gainesville Regional Utilities,GVL,206 +2024-04-12T18,California Independent System Operator,CISO,22724 +2024-04-12T17,California Independent System Operator,CISO,23403 +2024-04-12T17,Bonneville Power Administration,BPAT,6961 +2024-04-12T17,JEA,JEA,1297 +2024-04-12T17,"Associated Electric Cooperative, Inc.",AECI,1889 +2024-04-12T17,Public Service Company of New Mexico,PNM,1301 +2024-04-12T17,Florida Power & Light Co.,FPL,15576 +2024-04-12T17,Gainesville Regional Utilities,GVL,200 +2024-04-12T17,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,573 +2024-04-12T17,"PJM Interconnection, LLC",PJM,85281 +2024-04-12T17,Southwestern Power Administration,SPA,20 +2024-04-12T17,Imperial Irrigation District,IID,331 +2024-04-12T17,"Dominion Energy South Carolina, Inc.",SCEG,2213 +2024-04-12T17,Seminole Electric Cooperative,SEC,211 +2024-04-12T17,El Paso Electric Company,EPE,812 +2024-04-12T17,City of Homestead,HST,71 +2024-04-12T17,Arizona Public Service Company,AZPS,2794 +2024-04-12T17,PUD No. 1 of Douglas County,DOPD,239 +2024-04-12T17,Tennessee Valley Authority,TVA,16633 +2024-04-12T17,Florida Municipal Power Pool,FMPP,1913 +2024-04-12T17,Balancing Authority of Northern California,BANC,1710 +2024-04-12T17,Avista Corporation,AVA,1460 +2024-04-12T17,Los Angeles Department of Water and Power,LDWP,106 +2024-04-12T17,Tucson Electric Power,TEPC,1122 +2024-04-12T17,"Midcontinent Independent System Operator, Inc.",MISO,68356 +2024-04-12T17,Nevada Power Company,NEVP,3440 +2024-04-12T17,Seattle City Light,SCL,1198 +2024-04-12T17,City of Tallahassee,TAL,281 +2024-04-12T17,Western Area Power Administration - Rocky Mountain Region,WACM,3614 +2024-04-12T17,ISO New England,ISNE,12949 +2024-04-12T17,Southwest Power Pool,SWPP,29389 +2024-04-12T17,Western Area Power Administration - Desert Southwest Region,WALC,1060 +2024-04-12T17,Turlock Irrigation District,TIDC,292 +2024-04-12T17,Idaho Power Company,IPCO,1645 +2024-04-12T17,Tampa Electric Company,TEC,2167 +2024-04-12T17,Salt River Project Agricultural Improvement and Power District,SRP,3040 +2024-04-12T17,"Southern Company Services, Inc. - Trans",SOCO,22998 +2024-04-12T17,Public Service Company of Colorado,PSCO,4136 +2024-04-12T17,South Carolina Public Service Authority,SC,2413 +2024-04-12T17,Public Utility District No. 1 of Chelan County,CHPD,197 +2024-04-12T17,NorthWestern Corporation,NWMT,1323 +2024-04-12T17,Portland General Electric Company,PGE,2487 +2024-04-12T17,New York Independent System Operator,NYIS,15776 +2024-04-12T17,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4104 +2024-04-12T17,"Electric Reliability Council of Texas, Inc.",ERCO,44777 +2024-04-12T16,Turlock Irrigation District,TIDC,294 +2024-04-12T16,South Carolina Public Service Authority,SC,2417 +2024-04-12T16,El Paso Electric Company,EPE,791 +2024-04-12T16,Seminole Electric Cooperative,SEC,204 +2024-04-12T16,Arizona Public Service Company,AZPS,2924 +2024-04-12T16,"Southern Company Services, Inc. - Trans",SOCO,23248 +2024-04-12T16,Florida Municipal Power Pool,FMPP,1863 +2024-04-12T16,Avista Corporation,AVA,1472 +2024-04-12T16,"Dominion Energy South Carolina, Inc.",SCEG,2240 +2024-04-12T16,Southwestern Power Administration,SPA,23 +2024-04-12T16,Southwest Power Pool,SWPP,29556 +2024-04-12T16,Public Service Company of Colorado,PSCO,4221 +2024-04-12T16,Tucson Electric Power,TEPC,1155 +2024-04-12T16,Western Area Power Administration - Desert Southwest Region,WALC,1071 +2024-04-12T16,California Independent System Operator,CISO,23504 +2024-04-12T16,New York Independent System Operator,NYIS,15955 +2024-04-12T16,City of Homestead,HST,66 +2024-04-12T16,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,579 +2024-04-12T16,Bonneville Power Administration,BPAT,7035 +2024-04-12T16,Tennessee Valley Authority,TVA,16725 +2024-04-12T16,"Electric Reliability Council of Texas, Inc.",ERCO,44311 +2024-04-12T16,"Midcontinent Independent System Operator, Inc.",MISO,68990 +2024-04-12T16,"Associated Electric Cooperative, Inc.",AECI,1957 +2024-04-12T16,Florida Power & Light Co.,FPL,15101 +2024-04-12T16,Idaho Power Company,IPCO,1690 +2024-04-12T16,Los Angeles Department of Water and Power,LDWP,123 +2024-04-12T16,NorthWestern Corporation,NWMT,1339 +2024-04-12T16,Imperial Irrigation District,IID,306 +2024-04-12T16,Western Area Power Administration - Rocky Mountain Region,WACM,3620 +2024-04-12T16,PUD No. 1 of Douglas County,DOPD,251 +2024-04-12T16,"PJM Interconnection, LLC",PJM,85273 +2024-04-12T16,Public Service Company of New Mexico,PNM,1350 +2024-04-12T16,Portland General Electric Company,PGE,2650 +2024-04-12T16,JEA,JEA,1319 +2024-04-12T16,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4098 +2024-04-12T16,Public Utility District No. 1 of Chelan County,CHPD,209 +2024-04-12T16,Tampa Electric Company,TEC,2095 +2024-04-12T16,Balancing Authority of Northern California,BANC,1684 +2024-04-12T16,Seattle City Light,SCL,1204 +2024-04-12T16,City of Tallahassee,TAL,276 +2024-04-12T16,ISO New England,ISNE,13182 +2024-04-12T16,Gainesville Regional Utilities,GVL,197 +2024-04-12T16,Salt River Project Agricultural Improvement and Power District,SRP,2962 +2024-04-12T16,Nevada Power Company,NEVP,3466 +2024-04-12T15,Turlock Irrigation District,TIDC,296 +2024-04-12T15,Seminole Electric Cooperative,SEC,198 +2024-04-12T15,"PJM Interconnection, LLC",PJM,85586 +2024-04-12T15,Florida Power & Light Co.,FPL,14622 +2024-04-12T15,Idaho Power Company,IPCO,1733 +2024-04-12T15,City of Tallahassee,TAL,285 +2024-04-12T15,Nevada Power Company,NEVP,3490 +2024-04-12T15,"Midcontinent Independent System Operator, Inc.",MISO,69517 +2024-04-12T15,Seattle City Light,SCL,1165 +2024-04-12T15,South Carolina Public Service Authority,SC,2418 +2024-04-12T15,Gainesville Regional Utilities,GVL,195 +2024-04-12T15,Salt River Project Agricultural Improvement and Power District,SRP,2967 +2024-04-12T15,ISO New England,ISNE,13356 +2024-04-12T15,Bonneville Power Administration,BPAT,7018 +2024-04-12T15,Tucson Electric Power,TEPC,1211 +2024-04-12T15,Tampa Electric Company,TEC,2046 +2024-04-12T15,Avista Corporation,AVA,1465 +2024-04-12T15,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4103 +2024-04-12T15,Florida Municipal Power Pool,FMPP,1813 +2024-04-12T15,Public Utility District No. 1 of Chelan County,CHPD,224 +2024-04-12T15,Western Area Power Administration - Desert Southwest Region,WALC,1011 +2024-04-12T15,Arizona Public Service Company,AZPS,2967 +2024-04-12T15,City of Homestead,HST,61 +2024-04-12T15,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,575 +2024-04-12T15,Balancing Authority of Northern California,BANC,1665 +2024-04-12T15,Public Service Company of New Mexico,PNM,1408 +2024-04-12T15,California Independent System Operator,CISO,22653 +2024-04-12T15,Tennessee Valley Authority,TVA,16742 +2024-04-12T15,"Southern Company Services, Inc. - Trans",SOCO,23341 +2024-04-12T15,New York Independent System Operator,NYIS,16191 +2024-04-12T15,NorthWestern Corporation,NWMT,1370 +2024-04-12T15,"Dominion Energy South Carolina, Inc.",SCEG,2211 +2024-04-12T15,Western Area Power Administration - Rocky Mountain Region,WACM,3608 +2024-04-12T15,Los Angeles Department of Water and Power,LDWP,194 +2024-04-12T15,Southwestern Power Administration,SPA,24 +2024-04-12T15,PUD No. 1 of Douglas County,DOPD,258 +2024-04-12T15,Portland General Electric Company,PGE,2580 +2024-04-12T15,JEA,JEA,1292 +2024-04-12T15,El Paso Electric Company,EPE,805 +2024-04-12T15,Imperial Irrigation District,IID,298 +2024-04-12T15,Southwest Power Pool,SWPP,29789 +2024-04-12T15,"Electric Reliability Council of Texas, Inc.",ERCO,43817 +2024-04-12T15,Public Service Company of Colorado,PSCO,4365 +2024-04-12T15,"Associated Electric Cooperative, Inc.",AECI,2065 +2024-04-12T14,Southwestern Power Administration,SPA,26 +2024-04-12T14,"Dominion Energy South Carolina, Inc.",SCEG,2206 +2024-04-12T14,Los Angeles Department of Water and Power,LDWP,224 +2024-04-12T14,Nevada Power Company,NEVP,3447 +2024-04-12T14,Bonneville Power Administration,BPAT,6645 +2024-04-12T14,Western Area Power Administration - Rocky Mountain Region,WACM,3605 +2024-04-12T14,Seminole Electric Cooperative,SEC,194 +2024-04-12T14,Gainesville Regional Utilities,GVL,191 +2024-04-12T14,"Southern Company Services, Inc. - Trans",SOCO,23377 +2024-04-12T14,Avista Corporation,AVA,1389 +2024-04-12T14,Imperial Irrigation District,IID,278 +2024-04-12T14,Public Service Company of New Mexico,PNM,1492 +2024-04-12T14,Seattle City Light,SCL,1088 +2024-04-12T14,Tucson Electric Power,TEPC,1228 +2024-04-12T14,Tampa Electric Company,TEC,1996 +2024-04-12T14,Public Service Company of Colorado,PSCO,4555 +2024-04-12T14,Florida Municipal Power Pool,FMPP,1744 +2024-04-12T14,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4140 +2024-04-12T14,New York Independent System Operator,NYIS,16316 +2024-04-12T14,"Midcontinent Independent System Operator, Inc.",MISO,70090 +2024-04-12T14,City of Tallahassee,TAL,292 +2024-04-12T14,"PJM Interconnection, LLC",PJM,85593 +2024-04-12T14,Idaho Power Company,IPCO,1718 +2024-04-12T14,Arizona Public Service Company,AZPS,3041 +2024-04-12T14,Southwest Power Pool,SWPP,30137 +2024-04-12T14,South Carolina Public Service Authority,SC,2390 +2024-04-12T14,Portland General Electric Company,PGE,2423 +2024-04-12T14,"Electric Reliability Council of Texas, Inc.",ERCO,42994 +2024-04-12T14,City of Homestead,HST,57 +2024-04-12T14,Western Area Power Administration - Desert Southwest Region,WALC,1049 +2024-04-12T14,NorthWestern Corporation,NWMT,1370 +2024-04-12T14,Florida Power & Light Co.,FPL,14006 +2024-04-12T14,Turlock Irrigation District,TIDC,284 +2024-04-12T14,JEA,JEA,1281 +2024-04-12T14,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,548 +2024-04-12T14,"Associated Electric Cooperative, Inc.",AECI,2185 +2024-04-12T14,Public Utility District No. 1 of Chelan County,CHPD,209 +2024-04-12T14,Balancing Authority of Northern California,BANC,1575 +2024-04-12T14,Tennessee Valley Authority,TVA,16984 +2024-04-12T14,El Paso Electric Company,EPE,810 +2024-04-12T14,Salt River Project Agricultural Improvement and Power District,SRP,2886 +2024-04-12T14,ISO New England,ISNE,13400 +2024-04-12T14,California Independent System Operator,CISO,21016 +2024-04-12T14,PUD No. 1 of Douglas County,DOPD,255 +2024-04-12T13,Public Service Company of Colorado,PSCO,4535 +2024-04-12T13,Los Angeles Department of Water and Power,LDWP,219 +2024-04-12T13,"Southern Company Services, Inc. - Trans",SOCO,23303 +2024-04-12T13,"PJM Interconnection, LLC",PJM,84652 +2024-04-12T13,Public Utility District No. 1 of Chelan County,CHPD,187 +2024-04-12T13,"Midcontinent Independent System Operator, Inc.",MISO,70542 +2024-04-12T13,"Electric Reliability Council of Texas, Inc.",ERCO,42355 +2024-04-12T13,PUD No. 1 of Douglas County,DOPD,229 +2024-04-12T13,ISO New England,ISNE,13248 +2024-04-12T13,City of Tallahassee,TAL,291 +2024-04-12T13,Southwest Power Pool,SWPP,30396 +2024-04-12T13,City of Homestead,HST,54 +2024-04-12T13,"Associated Electric Cooperative, Inc.",AECI,2342 +2024-04-12T13,Tennessee Valley Authority,TVA,17103 +2024-04-12T13,NorthWestern Corporation,NWMT,1308 +2024-04-12T13,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,495 +2024-04-12T13,Bonneville Power Administration,BPAT,6084 +2024-04-12T13,El Paso Electric Company,EPE,795 +2024-04-12T13,Tucson Electric Power,TEPC,1187 +2024-04-12T13,Southwestern Power Administration,SPA,18 +2024-04-12T13,Avista Corporation,AVA,1252 +2024-04-12T13,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4043 +2024-04-12T13,Seattle City Light,SCL,960 +2024-04-12T13,Idaho Power Company,IPCO,1595 +2024-04-12T13,"Dominion Energy South Carolina, Inc.",SCEG,2185 +2024-04-12T13,Salt River Project Agricultural Improvement and Power District,SRP,2742 +2024-04-12T13,Nevada Power Company,NEVP,3353 +2024-04-12T13,Public Service Company of New Mexico,PNM,1488 +2024-04-12T13,JEA,JEA,1234 +2024-04-12T13,Turlock Irrigation District,TIDC,266 +2024-04-12T13,Seminole Electric Cooperative,SEC,188 +2024-04-12T13,Gainesville Regional Utilities,GVL,188 +2024-04-12T13,New York Independent System Operator,NYIS,16013 +2024-04-12T13,Portland General Electric Company,PGE,2185 +2024-04-12T13,California Independent System Operator,CISO,20094 +2024-04-12T13,Tampa Electric Company,TEC,1939 +2024-04-12T13,Western Area Power Administration - Desert Southwest Region,WALC,983 +2024-04-12T13,South Carolina Public Service Authority,SC,2372 +2024-04-12T13,Arizona Public Service Company,AZPS,2905 +2024-04-12T13,Florida Municipal Power Pool,FMPP,1683 +2024-04-12T13,Imperial Irrigation District,IID,263 +2024-04-12T13,Western Area Power Administration - Rocky Mountain Region,WACM,3548 +2024-04-12T13,Balancing Authority of Northern California,BANC,1459 +2024-04-12T13,Florida Power & Light Co.,FPL,13238 +2024-04-12T12,South Carolina Public Service Authority,SC,2321 +2024-04-12T12,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3945 +2024-04-12T12,Tennessee Valley Authority,TVA,16750 +2024-04-12T12,Southwest Power Pool,SWPP,29314 +2024-04-12T12,Seattle City Light,SCL,866 +2024-04-12T12,Public Service Company of Colorado,PSCO,4234 +2024-04-12T12,NorthWestern Corporation,NWMT,1202 +2024-04-12T12,Avista Corporation,AVA,1153 +2024-04-12T12,Western Area Power Administration - Rocky Mountain Region,WACM,3541 +2024-04-12T12,California Independent System Operator,CISO,20181 +2024-04-12T12,"Electric Reliability Council of Texas, Inc.",ERCO,40928 +2024-04-12T12,Seminole Electric Cooperative,SEC,178 +2024-04-12T12,ISO New England,ISNE,12712 +2024-04-12T12,Arizona Public Service Company,AZPS,2814 +2024-04-12T12,City of Homestead,HST,55 +2024-04-12T12,PUD No. 1 of Douglas County,DOPD,215 +2024-04-12T12,Turlock Irrigation District,TIDC,256 +2024-04-12T12,"Dominion Energy South Carolina, Inc.",SCEG,2137 +2024-04-12T12,Western Area Power Administration - Desert Southwest Region,WALC,961 +2024-04-12T12,Bonneville Power Administration,BPAT,5666 +2024-04-12T12,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,449 +2024-04-12T12,Nevada Power Company,NEVP,3250 +2024-04-12T12,"Southern Company Services, Inc. - Trans",SOCO,22950 +2024-04-12T12,JEA,JEA,1202 +2024-04-12T12,Public Service Company of New Mexico,PNM,1383 +2024-04-12T12,New York Independent System Operator,NYIS,15644 +2024-04-12T12,Balancing Authority of Northern California,BANC,1395 +2024-04-12T12,Portland General Electric Company,PGE,2019 +2024-04-12T12,Public Utility District No. 1 of Chelan County,CHPD,170 +2024-04-12T12,El Paso Electric Company,EPE,735 +2024-04-12T12,Idaho Power Company,IPCO,1388 +2024-04-12T12,"PJM Interconnection, LLC",PJM,82892 +2024-04-12T12,Salt River Project Agricultural Improvement and Power District,SRP,2606 +2024-04-12T12,Tucson Electric Power,TEPC,1130 +2024-04-12T12,Los Angeles Department of Water and Power,LDWP,209 +2024-04-12T12,Imperial Irrigation District,IID,267 +2024-04-12T12,Tampa Electric Company,TEC,1907 +2024-04-12T12,City of Tallahassee,TAL,282 +2024-04-12T12,"Associated Electric Cooperative, Inc.",AECI,2327 +2024-04-12T12,Florida Municipal Power Pool,FMPP,1628 +2024-04-12T12,"Midcontinent Independent System Operator, Inc.",MISO,68568 +2024-04-12T12,Gainesville Regional Utilities,GVL,182 +2024-04-12T12,Southwestern Power Administration,SPA,30 +2024-04-12T12,Florida Power & Light Co.,FPL,12551 +2024-04-12T11,Nevada Power Company,NEVP,3231 +2024-04-12T11,City of Homestead,HST,57 +2024-04-12T11,Seattle City Light,SCL,823 +2024-04-12T11,Gainesville Regional Utilities,GVL,170 +2024-04-12T11,Public Utility District No. 1 of Chelan County,CHPD,157 +2024-04-12T11,Bonneville Power Administration,BPAT,5509 +2024-04-12T11,NorthWestern Corporation,NWMT,1151 +2024-04-12T11,Florida Municipal Power Pool,FMPP,1546 +2024-04-12T11,El Paso Electric Company,EPE,689 +2024-04-12T11,Florida Power & Light Co.,FPL,12063 +2024-04-12T11,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3776 +2024-04-12T11,Tucson Electric Power,TEPC,1100 +2024-04-12T11,Western Area Power Administration - Rocky Mountain Region,WACM,3372 +2024-04-12T11,Tennessee Valley Authority,TVA,15507 +2024-04-12T11,ISO New England,ISNE,11704 +2024-04-12T11,Arizona Public Service Company,AZPS,2762 +2024-04-12T11,"PJM Interconnection, LLC",PJM,78678 +2024-04-12T11,"Dominion Energy South Carolina, Inc.",SCEG,2068 +2024-04-12T11,Western Area Power Administration - Desert Southwest Region,WALC,952 +2024-04-12T11,"Electric Reliability Council of Texas, Inc.",ERCO,38150 +2024-04-12T11,Los Angeles Department of Water and Power,LDWP,206 +2024-04-12T11,Avista Corporation,AVA,1110 +2024-04-12T11,Imperial Irrigation District,IID,273 +2024-04-12T11,Salt River Project Agricultural Improvement and Power District,SRP,2571 +2024-04-12T11,Turlock Irrigation District,TIDC,252 +2024-04-12T11,City of Tallahassee,TAL,230 +2024-04-12T11,Idaho Power Company,IPCO,1303 +2024-04-12T11,California Independent System Operator,CISO,20316 +2024-04-12T11,Public Service Company of Colorado,PSCO,3979 +2024-04-12T11,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,428 +2024-04-12T11,PUD No. 1 of Douglas County,DOPD,204 +2024-04-12T11,"Southern Company Services, Inc. - Trans",SOCO,21629 +2024-04-12T11,Seminole Electric Cooperative,SEC,167 +2024-04-12T11,Balancing Authority of Northern California,BANC,1369 +2024-04-12T11,Southwest Power Pool,SWPP,27288 +2024-04-12T11,New York Independent System Operator,NYIS,14622 +2024-04-12T11,Portland General Electric Company,PGE,1961 +2024-04-12T11,Tampa Electric Company,TEC,1852 +2024-04-12T11,Southwestern Power Administration,SPA,19 +2024-04-12T11,"Associated Electric Cooperative, Inc.",AECI,2068 +2024-04-12T11,JEA,JEA,1136 +2024-04-12T11,Public Service Company of New Mexico,PNM,1316 +2024-04-12T11,South Carolina Public Service Authority,SC,2248 +2024-04-12T11,"Midcontinent Independent System Operator, Inc.",MISO,63850 +2024-04-12T10,Salt River Project Agricultural Improvement and Power District,SRP,2646 +2024-04-12T10,NorthWestern Corporation,NWMT,1131 +2024-04-12T10,Gainesville Regional Utilities,GVL,154 +2024-04-12T10,Los Angeles Department of Water and Power,LDWP,208 +2024-04-12T10,Public Utility District No. 1 of Chelan County,CHPD,155 +2024-04-12T10,Tampa Electric Company,TEC,1695 +2024-04-12T10,Florida Municipal Power Pool,FMPP,1414 +2024-04-12T10,Bonneville Power Administration,BPAT,5466 +2024-04-12T10,"Dominion Energy South Carolina, Inc.",SCEG,1906 +2024-04-12T10,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,431 +2024-04-12T10,"PJM Interconnection, LLC",PJM,73245 +2024-04-12T10,"Southern Company Services, Inc. - Trans",SOCO,19750 +2024-04-12T10,New York Independent System Operator,NYIS,13372 +2024-04-12T10,"Electric Reliability Council of Texas, Inc.",ERCO,36520 +2024-04-12T10,Idaho Power Company,IPCO,1288 +2024-04-12T10,Turlock Irrigation District,TIDC,254 +2024-04-12T10,Nevada Power Company,NEVP,3273 +2024-04-12T10,Public Service Company of New Mexico,PNM,1311 +2024-04-12T10,Tennessee Valley Authority,TVA,14311 +2024-04-12T10,Avista Corporation,AVA,1113 +2024-04-12T10,JEA,JEA,1010 +2024-04-12T10,Southwest Power Pool,SWPP,26016 +2024-04-12T10,PUD No. 1 of Douglas County,DOPD,205 +2024-04-12T10,Public Service Company of Colorado,PSCO,3883 +2024-04-12T10,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3448 +2024-04-12T10,South Carolina Public Service Authority,SC,2079 +2024-04-12T10,Tucson Electric Power,TEPC,1102 +2024-04-12T10,Seminole Electric Cooperative,SEC,152 +2024-04-12T10,Florida Power & Light Co.,FPL,11200 +2024-04-12T10,Southwestern Power Administration,SPA,19 +2024-04-12T10,El Paso Electric Company,EPE,662 +2024-04-12T10,California Independent System Operator,CISO,20595 +2024-04-12T10,Western Area Power Administration - Desert Southwest Region,WALC,951 +2024-04-12T10,"Associated Electric Cooperative, Inc.",AECI,1883 +2024-04-12T10,ISO New England,ISNE,10906 +2024-04-12T10,City of Homestead,HST,55 +2024-04-12T10,Seattle City Light,SCL,823 +2024-04-12T10,Balancing Authority of Northern California,BANC,1395 +2024-04-12T10,Imperial Irrigation District,IID,286 +2024-04-12T10,Arizona Public Service Company,AZPS,2800 +2024-04-12T10,Portland General Electric Company,PGE,1957 +2024-04-12T10,Western Area Power Administration - Rocky Mountain Region,WACM,3282 +2024-04-12T10,"Midcontinent Independent System Operator, Inc.",MISO,59913 +2024-04-12T10,City of Tallahassee,TAL,206 +2024-04-12T09,PUD No. 1 of Douglas County,DOPD,201 +2024-04-12T09,"Dominion Energy South Carolina, Inc.",SCEG,1821 +2024-04-12T09,Arizona Public Service Company,AZPS,2895 +2024-04-12T09,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,433 +2024-04-12T09,JEA,JEA,945 +2024-04-12T09,NorthWestern Corporation,NWMT,1120 +2024-04-12T09,Western Area Power Administration - Rocky Mountain Region,WACM,3254 +2024-04-12T09,Southwestern Power Administration,SPA,16 +2024-04-12T09,Portland General Electric Company,PGE,1988 +2024-04-12T09,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3300 +2024-04-12T09,New York Independent System Operator,NYIS,12760 +2024-04-12T09,Public Service Company of New Mexico,PNM,1317 +2024-04-12T09,California Independent System Operator,CISO,21445 +2024-04-12T09,Public Service Company of Colorado,PSCO,3847 +2024-04-12T09,Tampa Electric Company,TEC,1626 +2024-04-12T09,City of Tallahassee,TAL,196 +2024-04-12T09,Salt River Project Agricultural Improvement and Power District,SRP,2736 +2024-04-12T09,South Carolina Public Service Authority,SC,2002 +2024-04-12T09,Bonneville Power Administration,BPAT,5512 +2024-04-12T09,Florida Power & Light Co.,FPL,10813 +2024-04-12T09,Public Utility District No. 1 of Chelan County,CHPD,154 +2024-04-12T09,Tucson Electric Power,TEPC,1114 +2024-04-12T09,Balancing Authority of Northern California,BANC,1443 +2024-04-12T09,El Paso Electric Company,EPE,702 +2024-04-12T09,"Associated Electric Cooperative, Inc.",AECI,1805 +2024-04-12T09,Florida Municipal Power Pool,FMPP,1331 +2024-04-12T09,Southwest Power Pool,SWPP,25548 +2024-04-12T09,"Electric Reliability Council of Texas, Inc.",ERCO,36430 +2024-04-12T09,Avista Corporation,AVA,1126 +2024-04-12T09,Tennessee Valley Authority,TVA,13703 +2024-04-12T09,"Midcontinent Independent System Operator, Inc.",MISO,58350 +2024-04-12T09,Nevada Power Company,NEVP,3356 +2024-04-12T09,Los Angeles Department of Water and Power,LDWP,216 +2024-04-12T09,City of Homestead,HST,53 +2024-04-12T09,Turlock Irrigation District,TIDC,264 +2024-04-12T09,Gainesville Regional Utilities,GVL,148 +2024-04-12T09,"Southern Company Services, Inc. - Trans",SOCO,18795 +2024-04-12T09,"PJM Interconnection, LLC",PJM,71399 +2024-04-12T09,Seminole Electric Cooperative,SEC,141 +2024-04-12T09,Idaho Power Company,IPCO,1289 +2024-04-12T09,ISO New England,ISNE,10552 +2024-04-12T09,Seattle City Light,SCL,833 +2024-04-12T09,Western Area Power Administration - Desert Southwest Region,WALC,959 +2024-04-12T09,Imperial Irrigation District,IID,307 +2024-04-12T08,"Midcontinent Independent System Operator, Inc.",MISO,58103 +2024-04-12T08,El Paso Electric Company,EPE,713 +2024-04-12T08,PUD No. 1 of Douglas County,DOPD,200 +2024-04-12T08,Turlock Irrigation District,TIDC,280 +2024-04-12T08,Seminole Electric Cooperative,SEC,141 +2024-04-12T08,JEA,JEA,945 +2024-04-12T08,Arizona Public Service Company,AZPS,3039 +2024-04-12T08,South Carolina Public Service Authority,SC,1983 +2024-04-12T08,"Southern Company Services, Inc. - Trans",SOCO,18652 +2024-04-12T08,Portland General Electric Company,PGE,2044 +2024-04-12T08,Tucson Electric Power,TEPC,1162 +2024-04-12T08,"Dominion Energy South Carolina, Inc.",SCEG,1824 +2024-04-12T08,Gainesville Regional Utilities,GVL,149 +2024-04-12T08,Western Area Power Administration - Rocky Mountain Region,WACM,3244 +2024-04-12T08,Bonneville Power Administration,BPAT,5640 +2024-04-12T08,"Associated Electric Cooperative, Inc.",AECI,1774 +2024-04-12T08,NorthWestern Corporation,NWMT,1142 +2024-04-12T08,California Independent System Operator,CISO,22494 +2024-04-12T08,Tampa Electric Company,TEC,1622 +2024-04-12T08,"PJM Interconnection, LLC",PJM,70941 +2024-04-12T08,Avista Corporation,AVA,1142 +2024-04-12T08,Florida Municipal Power Pool,FMPP,1342 +2024-04-12T08,Southwestern Power Administration,SPA,25 +2024-04-12T08,ISO New England,ISNE,10318 +2024-04-12T08,Tennessee Valley Authority,TVA,13504 +2024-04-12T08,Los Angeles Department of Water and Power,LDWP,227 +2024-04-12T08,City of Tallahassee,TAL,196 +2024-04-12T08,Imperial Irrigation District,IID,337 +2024-04-12T08,Public Service Company of New Mexico,PNM,1326 +2024-04-12T08,Balancing Authority of Northern California,BANC,1534 +2024-04-12T08,City of Homestead,HST,53 +2024-04-12T08,Idaho Power Company,IPCO,1316 +2024-04-12T08,Public Utility District No. 1 of Chelan County,CHPD,153 +2024-04-12T08,Salt River Project Agricultural Improvement and Power District,SRP,2892 +2024-04-12T08,New York Independent System Operator,NYIS,12596 +2024-04-12T08,Nevada Power Company,NEVP,3486 +2024-04-12T08,Southwest Power Pool,SWPP,25399 +2024-04-12T08,Seattle City Light,SCL,873 +2024-04-12T08,Florida Power & Light Co.,FPL,10997 +2024-04-12T08,Public Service Company of Colorado,PSCO,3878 +2024-04-12T08,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3251 +2024-04-12T08,"Electric Reliability Council of Texas, Inc.",ERCO,36887 +2024-04-12T08,Western Area Power Administration - Desert Southwest Region,WALC,980 +2024-04-12T08,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,446 +2024-04-12T07,Balancing Authority of Northern California,BANC,1625 +2024-04-12T07,City of Tallahassee,TAL,209 +2024-04-12T07,Portland General Electric Company,PGE,2158 +2024-04-12T07,Turlock Irrigation District,TIDC,300 +2024-04-12T07,Seattle City Light,SCL,927 +2024-04-12T07,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3296 +2024-04-12T07,Avista Corporation,AVA,1195 +2024-04-12T07,"Midcontinent Independent System Operator, Inc.",MISO,58620 +2024-04-12T07,Seminole Electric Cooperative,SEC,147 +2024-04-12T07,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,469 +2024-04-12T07,Public Service Company of New Mexico,PNM,1350 +2024-04-12T07,Southwest Power Pool,SWPP,25633 +2024-04-12T07,Nevada Power Company,NEVP,3670 +2024-04-12T07,California Independent System Operator,CISO,23734 +2024-04-12T07,Arizona Public Service Company,AZPS,3231 +2024-04-12T07,Los Angeles Department of Water and Power,LDWP,247 +2024-04-12T07,Tennessee Valley Authority,TVA,13498 +2024-04-12T07,Public Service Company of Colorado,PSCO,3961 +2024-04-12T07,Florida Power & Light Co.,FPL,11484 +2024-04-12T07,Tucson Electric Power,TEPC,1213.84 +2024-04-12T07,Idaho Power Company,IPCO,1350 +2024-04-12T07,Bonneville Power Administration,BPAT,5819 +2024-04-12T07,Western Area Power Administration - Rocky Mountain Region,WACM,3140 +2024-04-12T07,"Southern Company Services, Inc. - Trans",SOCO,18696 +2024-04-12T07,Western Area Power Administration - Desert Southwest Region,WALC,1058 +2024-04-12T07,South Carolina Public Service Authority,SC,2011 +2024-04-12T07,Southwestern Power Administration,SPA,21 +2024-04-12T07,"Electric Reliability Council of Texas, Inc.",ERCO,37482 +2024-04-12T07,Gainesville Regional Utilities,GVL,157 +2024-04-12T07,New York Independent System Operator,NYIS,12720 +2024-04-12T07,Public Utility District No. 1 of Chelan County,CHPD,158 +2024-04-12T07,PUD No. 1 of Douglas County,DOPD,206 +2024-04-12T07,City of Homestead,HST,57 +2024-04-12T07,Tampa Electric Company,TEC,1674 +2024-04-12T07,"Associated Electric Cooperative, Inc.",AECI,1756 +2024-04-12T07,Imperial Irrigation District,IID,363 +2024-04-12T07,Salt River Project Agricultural Improvement and Power District,SRP,3112 +2024-04-12T07,"PJM Interconnection, LLC",PJM,71217 +2024-04-12T07,ISO New England,ISNE,10356 +2024-04-12T07,"Dominion Energy South Carolina, Inc.",SCEG,1851 +2024-04-12T07,JEA,JEA,968 +2024-04-12T07,Florida Municipal Power Pool,FMPP,1390 +2024-04-12T07,NorthWestern Corporation,NWMT,1153 +2024-04-12T07,El Paso Electric Company,EPE,758 +2024-04-12T06,Idaho Power Company,IPCO,1447 +2024-04-12T06,NorthWestern Corporation,NWMT,1182 +2024-04-12T06,South Carolina Public Service Authority,SC,2063 +2024-04-12T06,Southwestern Power Administration,SPA,18 +2024-04-12T06,Imperial Irrigation District,IID,400 +2024-04-12T06,"Electric Reliability Council of Texas, Inc.",ERCO,38832 +2024-04-12T06,Public Service Company of Colorado,PSCO,4458 +2024-04-12T06,Portland General Electric Company,PGE,2327 +2024-04-12T06,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3335 +2024-04-12T06,JEA,JEA,1018 +2024-04-12T06,Tucson Electric Power,TEPC,1313.99 +2024-04-12T06,Balancing Authority of Northern California,BANC,1780 +2024-04-12T06,ISO New England,ISNE,10565 +2024-04-12T06,Western Area Power Administration - Rocky Mountain Region,WACM,3203 +2024-04-12T06,City of Tallahassee,TAL,220 +2024-04-12T06,Seminole Electric Cooperative,SEC,156 +2024-04-12T06,PUD No. 1 of Douglas County,DOPD,212 +2024-04-12T06,Gainesville Regional Utilities,GVL,169 +2024-04-12T06,Tampa Electric Company,TEC,1777 +2024-04-12T06,Seattle City Light,SCL,992 +2024-04-12T06,City of Homestead,HST,63 +2024-04-12T06,"PJM Interconnection, LLC",PJM,72332 +2024-04-12T06,California Independent System Operator,CISO,25328 +2024-04-12T06,Turlock Irrigation District,TIDC,324 +2024-04-12T06,Bonneville Power Administration,BPAT,6139 +2024-04-12T06,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,501 +2024-04-12T06,Public Service Company of New Mexico,PNM,1409 +2024-04-12T06,El Paso Electric Company,EPE,806 +2024-04-12T06,"Associated Electric Cooperative, Inc.",AECI,1767 +2024-04-12T06,Florida Power & Light Co.,FPL,12230 +2024-04-12T06,Western Area Power Administration - Desert Southwest Region,WALC,1114 +2024-04-12T06,Nevada Power Company,NEVP,3920 +2024-04-12T06,Florida Municipal Power Pool,FMPP,1469 +2024-04-12T06,"Southern Company Services, Inc. - Trans",SOCO,19151 +2024-04-12T06,Tennessee Valley Authority,TVA,13733 +2024-04-12T06,Arizona Public Service Company,AZPS,3505 +2024-04-12T06,New York Independent System Operator,NYIS,12988 +2024-04-12T06,"Dominion Energy South Carolina, Inc.",SCEG,1918 +2024-04-12T06,Los Angeles Department of Water and Power,LDWP,247 +2024-04-12T06,Southwest Power Pool,SWPP,25976 +2024-04-12T06,Salt River Project Agricultural Improvement and Power District,SRP,3383 +2024-04-12T06,Avista Corporation,AVA,1257 +2024-04-12T06,Public Utility District No. 1 of Chelan County,CHPD,166 +2024-04-12T06,"Midcontinent Independent System Operator, Inc.",MISO,59765 +2024-04-12T05,Southwestern Power Administration,SPA,18 +2024-04-12T05,NorthWestern Corporation,NWMT,1264 +2024-04-12T05,South Carolina Public Service Authority,SC,2144 +2024-04-12T05,El Paso Electric Company,EPE,886 +2024-04-12T05,California Independent System Operator,CISO,26395 +2024-04-12T05,City of Homestead,HST,71 +2024-04-12T05,"PJM Interconnection, LLC",PJM,73494 +2024-04-12T05,JEA,JEA,1093 +2024-04-12T05,New York Independent System Operator,NYIS,13434 +2024-04-12T05,Bonneville Power Administration,BPAT,6426 +2024-04-12T05,"Associated Electric Cooperative, Inc.",AECI,1812 +2024-04-12T05,Florida Municipal Power Pool,FMPP,1578 +2024-04-12T05,Idaho Power Company,IPCO,1546 +2024-04-12T05,Tennessee Valley Authority,TVA,14095.43 +2024-04-12T05,Arizona Public Service Company,AZPS,3772 +2024-04-12T05,Public Utility District No. 1 of Chelan County,CHPD,177 +2024-04-12T05,Los Angeles Department of Water and Power,LDWP,239 +2024-04-12T05,Salt River Project Agricultural Improvement and Power District,SRP,3678 +2024-04-12T05,Public Service Company of Colorado,PSCO,4589 +2024-04-12T05,Western Area Power Administration - Desert Southwest Region,WALC,1094 +2024-04-12T05,"Midcontinent Independent System Operator, Inc.",MISO,60136 +2024-04-12T05,Western Area Power Administration - Rocky Mountain Region,WACM,3316 +2024-04-12T05,"Electric Reliability Council of Texas, Inc.",ERCO,40963 +2024-04-12T05,Florida Power & Light Co.,FPL,13322 +2024-04-12T05,Tucson Electric Power,TEPC,1391.46 +2024-04-12T05,City of Tallahassee,TAL,233 +2024-04-12T05,Tampa Electric Company,TEC,1916 +2024-04-12T05,Nevada Power Company,NEVP,3775 +2024-04-12T05,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3480 +2024-04-12T05,Southwest Power Pool,SWPP,26731 +2024-04-12T05,ISO New England,ISNE,10714 +2024-04-12T05,Seattle City Light,SCL,1057 +2024-04-12T05,Portland General Electric Company,PGE,2469 +2024-04-12T05,Avista Corporation,AVA,1350 +2024-04-12T05,PUD No. 1 of Douglas County,DOPD,226 +2024-04-12T05,Turlock Irrigation District,TIDC,352 +2024-04-12T05,Gainesville Regional Utilities,GVL,183 +2024-04-12T05,"Dominion Energy South Carolina, Inc.",SCEG,2017 +2024-04-12T05,Imperial Irrigation District,IID,435 +2024-04-12T05,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,538 +2024-04-12T05,Seminole Electric Cooperative,SEC,170 +2024-04-12T05,Public Service Company of New Mexico,PNM,1472 +2024-04-12T05,"Southern Company Services, Inc. - Trans",SOCO,19586 +2024-04-12T05,Balancing Authority of Northern California,BANC,1966 +2024-04-12T04,Bonneville Power Administration,BPAT,6689 +2024-04-12T04,Southwest Power Pool,SWPP,27861 +2024-04-12T04,Seminole Electric Cooperative,SEC,169 +2024-04-12T04,City of Homestead,HST,79 +2024-04-12T04,Tucson Electric Power,TEPC,1416.71 +2024-04-12T04,"Electric Reliability Council of Texas, Inc.",ERCO,43700 +2024-04-12T04,JEA,JEA,1204 +2024-04-12T04,Western Area Power Administration - Rocky Mountain Region,WACM,3495 +2024-04-12T04,Arizona Public Service Company,AZPS,3993 +2024-04-12T04,Public Utility District No. 1 of Chelan County,CHPD,181 +2024-04-12T04,Florida Municipal Power Pool,FMPP,1752 +2024-04-12T04,Gainesville Regional Utilities,GVL,202 +2024-04-12T04,Public Service Company of New Mexico,PNM,1541 +2024-04-12T04,Avista Corporation,AVA,1422 +2024-04-12T04,Salt River Project Agricultural Improvement and Power District,SRP,3899 +2024-04-12T04,Turlock Irrigation District,TIDC,370 +2024-04-12T04,South Carolina Public Service Authority,SC,2295 +2024-04-12T04,Balancing Authority of Northern California,BANC,2097 +2024-04-12T04,NorthWestern Corporation,NWMT,1310 +2024-04-12T04,New York Independent System Operator,NYIS,14106 +2024-04-12T04,California Independent System Operator,CISO,26562 +2024-04-12T04,Tampa Electric Company,TEC,2103 +2024-04-12T04,Public Service Company of Colorado,PSCO,4773 +2024-04-12T04,City of Tallahassee,TAL,256 +2024-04-12T04,El Paso Electric Company,EPE,972 +2024-04-12T04,ISO New England,ISNE,11099 +2024-04-12T04,Imperial Irrigation District,IID,473 +2024-04-12T04,"Associated Electric Cooperative, Inc.",AECI,1922 +2024-04-12T04,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,566 +2024-04-12T04,Tennessee Valley Authority,TVA,14978.36 +2024-04-12T04,"Midcontinent Independent System Operator, Inc.",MISO,62621 +2024-04-12T04,Florida Power & Light Co.,FPL,35907 +2024-04-12T04,Idaho Power Company,IPCO,1689 +2024-04-12T04,Seattle City Light,SCL,1099 +2024-04-12T04,Portland General Electric Company,PGE,2660 +2024-04-12T04,"Southern Company Services, Inc. - Trans",SOCO,21082 +2024-04-12T04,"PJM Interconnection, LLC",PJM,76559 +2024-04-12T04,Southwestern Power Administration,SPA,25 +2024-04-12T04,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3636 +2024-04-12T04,PUD No. 1 of Douglas County,DOPD,228 +2024-04-12T04,Los Angeles Department of Water and Power,LDWP,250 +2024-04-12T04,Nevada Power Company,NEVP,3975 +2024-04-12T04,Western Area Power Administration - Desert Southwest Region,WALC,1117 +2024-04-12T04,"Dominion Energy South Carolina, Inc.",SCEG,2271 +2024-04-12T03,Imperial Irrigation District,IID,508 +2024-04-12T03,Gainesville Regional Utilities,GVL,224 +2024-04-12T03,New York Independent System Operator,NYIS,15102 +2024-04-12T03,PUD No. 1 of Douglas County,DOPD,230 +2024-04-12T03,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3778 +2024-04-12T03,Turlock Irrigation District,TIDC,375 +2024-04-12T03,"Associated Electric Cooperative, Inc.",AECI,2041 +2024-04-12T03,Salt River Project Agricultural Improvement and Power District,SRP,4051 +2024-04-12T03,Seminole Electric Cooperative,SEC,196 +2024-04-12T03,"Electric Reliability Council of Texas, Inc.",ERCO,46267 +2024-04-12T03,Tampa Electric Company,TEC,2316 +2024-04-12T03,Arizona Public Service Company,AZPS,4104 +2024-04-12T03,El Paso Electric Company,EPE,1021 +2024-04-12T03,Western Area Power Administration - Rocky Mountain Region,WACM,3571 +2024-04-12T03,Public Service Company of New Mexico,PNM,1594 +2024-04-12T03,Nevada Power Company,NEVP,4128 +2024-04-12T03,Southwest Power Pool,SWPP,29042 +2024-04-12T03,Florida Power & Light Co.,FPL,37228 +2024-04-12T03,Western Area Power Administration - Desert Southwest Region,WALC,1151 +2024-04-12T03,ISO New England,ISNE,11661 +2024-04-12T03,Public Utility District No. 1 of Chelan County,CHPD,180 +2024-04-12T03,Avista Corporation,AVA,1419 +2024-04-12T03,Tucson Electric Power,TEPC,1469.93 +2024-04-12T03,Public Service Company of Colorado,PSCO,4762 +2024-04-12T03,California Independent System Operator,CISO,25405 +2024-04-12T03,Los Angeles Department of Water and Power,LDWP,250 +2024-04-12T03,City of Tallahassee,TAL,285 +2024-04-12T03,"Dominion Energy South Carolina, Inc.",SCEG,2453 +2024-04-12T03,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,555 +2024-04-12T03,Tennessee Valley Authority,TVA,15789.78 +2024-04-12T03,Portland General Electric Company,PGE,2567 +2024-04-12T03,Bonneville Power Administration,BPAT,6614 +2024-04-12T03,JEA,JEA,1348 +2024-04-12T03,"Midcontinent Independent System Operator, Inc.",MISO,65946 +2024-04-12T03,NorthWestern Corporation,NWMT,1334 +2024-04-12T03,Idaho Power Company,IPCO,1686 +2024-04-12T03,Southwestern Power Administration,SPA,24 +2024-04-12T03,"PJM Interconnection, LLC",PJM,80625 +2024-04-12T03,Florida Municipal Power Pool,FMPP,1946 +2024-04-12T03,City of Homestead,HST,87 +2024-04-12T03,"Southern Company Services, Inc. - Trans",SOCO,22629 +2024-04-12T03,Balancing Authority of Northern California,BANC,2118 +2024-04-12T03,South Carolina Public Service Authority,SC,2495 +2024-04-12T03,Seattle City Light,SCL,1093 +2024-04-12T02,Public Service Company of Colorado,PSCO,4724 +2024-04-12T02,Arizona Public Service Company,AZPS,4020 +2024-04-12T02,Imperial Irrigation District,IID,529 +2024-04-12T02,Los Angeles Department of Water and Power,LDWP,244 +2024-04-12T02,Nevada Power Company,NEVP,4333 +2024-04-12T02,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,547 +2024-04-12T02,NorthWestern Corporation,NWMT,1297 +2024-04-12T02,City of Homestead,HST,94 +2024-04-12T02,New York Independent System Operator,NYIS,16073 +2024-04-12T02,Seminole Electric Cooperative,SEC,224 +2024-04-12T02,South Carolina Public Service Authority,SC,2673 +2024-04-12T02,Southwest Power Pool,SWPP,29477 +2024-04-12T02,Florida Power & Light Co.,FPL,32928 +2024-04-12T02,Gainesville Regional Utilities,GVL,246 +2024-04-12T02,ISO New England,ISNE,12686 +2024-04-12T02,City of Tallahassee,TAL,314 +2024-04-12T02,JEA,JEA,1474 +2024-04-12T02,"Electric Reliability Council of Texas, Inc.",ERCO,47267 +2024-04-12T02,Tampa Electric Company,TEC,2521 +2024-04-12T02,Salt River Project Agricultural Improvement and Power District,SRP,4098 +2024-04-12T02,Turlock Irrigation District,TIDC,370 +2024-04-12T02,Southwestern Power Administration,SPA,20 +2024-04-12T02,"Southern Company Services, Inc. - Trans",SOCO,23884 +2024-04-12T02,California Independent System Operator,CISO,24601 +2024-04-12T02,Bonneville Power Administration,BPAT,6546 +2024-04-12T02,Portland General Electric Company,PGE,2512 +2024-04-12T02,El Paso Electric Company,EPE,1020 +2024-04-12T02,Florida Municipal Power Pool,FMPP,2137 +2024-04-12T02,Public Service Company of New Mexico,PNM,1535 +2024-04-12T02,Tennessee Valley Authority,TVA,16498.83 +2024-04-12T02,Balancing Authority of Northern California,BANC,2122 +2024-04-12T02,Avista Corporation,AVA,1405 +2024-04-12T02,"PJM Interconnection, LLC",PJM,85045 +2024-04-12T02,"Dominion Energy South Carolina, Inc.",SCEG,2645 +2024-04-12T02,Seattle City Light,SCL,1091 +2024-04-12T02,PUD No. 1 of Douglas County,DOPD,231 +2024-04-12T02,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3923 +2024-04-12T02,Public Utility District No. 1 of Chelan County,CHPD,177 +2024-04-12T02,Tucson Electric Power,TEPC,1555.8 +2024-04-12T02,Western Area Power Administration - Desert Southwest Region,WALC,1171 +2024-04-12T02,Western Area Power Administration - Rocky Mountain Region,WACM,3520 +2024-04-12T02,Idaho Power Company,IPCO,1647 +2024-04-12T02,"Midcontinent Independent System Operator, Inc.",MISO,68285 +2024-04-12T02,"Associated Electric Cooperative, Inc.",AECI,2091 +2024-04-12T01,Tampa Electric Company,TEC,2667 +2024-04-12T01,California Independent System Operator,CISO,23133 +2024-04-12T01,Seminole Electric Cooperative,SEC,241 +2024-04-12T01,"Midcontinent Independent System Operator, Inc.",MISO,67784 +2024-04-12T01,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,543 +2024-04-12T01,Florida Municipal Power Pool,FMPP,2267 +2024-04-12T01,"PJM Interconnection, LLC",PJM,87640 +2024-04-12T01,Arizona Public Service Company,AZPS,3829 +2024-04-12T01,Tucson Electric Power,TEPC,1489.88 +2024-04-12T01,Florida Power & Light Co.,FPL,18897 +2024-04-12T01,NorthWestern Corporation,NWMT,1275 +2024-04-12T01,Gainesville Regional Utilities,GVL,260 +2024-04-12T01,Public Service Company of Colorado,PSCO,4727 +2024-04-12T01,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4007 +2024-04-12T01,Turlock Irrigation District,TIDC,359 +2024-04-12T01,New York Independent System Operator,NYIS,16741 +2024-04-12T01,PUD No. 1 of Douglas County,DOPD,225 +2024-04-12T01,JEA,JEA,1568 +2024-04-12T01,Southwestern Power Administration,SPA,23 +2024-04-12T01,Los Angeles Department of Water and Power,LDWP,175 +2024-04-12T01,"Associated Electric Cooperative, Inc.",AECI,2035 +2024-04-12T01,Public Utility District No. 1 of Chelan County,CHPD,176 +2024-04-12T01,Bonneville Power Administration,BPAT,6435 +2024-04-12T01,Southwest Power Pool,SWPP,29021 +2024-04-12T01,Imperial Irrigation District,IID,538 +2024-04-12T01,South Carolina Public Service Authority,SC,2763 +2024-04-12T01,Western Area Power Administration - Rocky Mountain Region,WACM,3466 +2024-04-12T01,Seattle City Light,SCL,1095 +2024-04-12T01,El Paso Electric Company,EPE,1013 +2024-04-12T01,Avista Corporation,AVA,1391 +2024-04-12T01,"Southern Company Services, Inc. - Trans",SOCO,24458 +2024-04-12T01,Portland General Electric Company,PGE,2510 +2024-04-12T01,Public Service Company of New Mexico,PNM,1478 +2024-04-12T01,ISO New England,ISNE,13490 +2024-04-12T01,City of Tallahassee,TAL,333 +2024-04-12T01,Salt River Project Agricultural Improvement and Power District,SRP,4061 +2024-04-12T01,City of Homestead,HST,98 +2024-04-12T01,"Electric Reliability Council of Texas, Inc.",ERCO,47429 +2024-04-12T01,"Dominion Energy South Carolina, Inc.",SCEG,2775 +2024-04-12T01,Western Area Power Administration - Desert Southwest Region,WALC,1114 +2024-04-12T01,Tennessee Valley Authority,TVA,16546.43 +2024-04-12T01,Balancing Authority of Northern California,BANC,2131 +2024-04-12T01,Nevada Power Company,NEVP,4375 +2024-04-12T01,Idaho Power Company,IPCO,1624 +2024-04-12T00,Portland General Electric Company,PGE,2437 +2024-04-12T00,Arizona Public Service Company,AZPS,3468 +2024-04-12T00,PUD No. 1 of Douglas County,DOPD,226 +2024-04-12T00,City of Homestead,HST,97 +2024-04-12T00,Florida Power & Light Co.,FPL,19109 +2024-04-12T00,Avista Corporation,AVA,1373 +2024-04-12T00,"Midcontinent Independent System Operator, Inc.",MISO,67371 +2024-04-12T00,Nevada Power Company,NEVP,4287 +2024-04-12T00,Southwestern Power Administration,SPA,21 +2024-04-12T00,Western Area Power Administration - Desert Southwest Region,WALC,1205 +2024-04-12T00,South Carolina Public Service Authority,SC,2738 +2024-04-12T00,Southwest Power Pool,SWPP,29017 +2024-04-12T00,Idaho Power Company,IPCO,1605 +2024-04-12T00,Imperial Irrigation District,IID,528 +2024-04-12T00,Bonneville Power Administration,BPAT,6318 +2024-04-12T00,Public Service Company of Colorado,PSCO,4787 +2024-04-12T00,Seattle City Light,SCL,1064 +2024-04-12T00,Tucson Electric Power,TEPC,1413.23 +2024-04-12T00,"Dominion Energy South Carolina, Inc.",SCEG,2770 +2024-04-12T00,NorthWestern Corporation,NWMT,1281 +2024-04-12T00,Tampa Electric Company,TEC,2689 +2024-04-12T00,Seminole Electric Cooperative,SEC,250 +2024-04-12T00,Balancing Authority of Northern California,BANC,2049 +2024-04-12T00,"Electric Reliability Council of Texas, Inc.",ERCO,49407 +2024-04-12T00,New York Independent System Operator,NYIS,16990 +2024-04-12T00,Public Service Company of New Mexico,PNM,1420 +2024-04-12T00,Tennessee Valley Authority,TVA,16126.48 +2024-04-12T00,Public Utility District No. 1 of Chelan County,CHPD,174 +2024-04-12T00,Gainesville Regional Utilities,GVL,260 +2024-04-12T00,"Southern Company Services, Inc. - Trans",SOCO,24190 +2024-04-12T00,Salt River Project Agricultural Improvement and Power District,SRP,3921 +2024-04-12T00,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3939 +2024-04-12T00,Western Area Power Administration - Rocky Mountain Region,WACM,3491 +2024-04-12T00,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,529 +2024-04-12T00,"Associated Electric Cooperative, Inc.",AECI,1972 +2024-04-12T00,Turlock Irrigation District,TIDC,346 +2024-04-12T00,City of Tallahassee,TAL,333 +2024-04-12T00,El Paso Electric Company,EPE,999 +2024-04-12T00,Florida Municipal Power Pool,FMPP,2290 +2024-04-12T00,California Independent System Operator,CISO,21738 +2024-04-12T00,ISO New England,ISNE,13855 +2024-04-12T00,Los Angeles Department of Water and Power,LDWP,137 +2024-04-12T00,JEA,JEA,1589 +2024-04-12T00,"PJM Interconnection, LLC",PJM,87218 +2024-04-11T23,New York Independent System Operator,NYIS,16950 +2024-04-11T23,Southwest Power Pool,SWPP,28960 +2024-04-11T23,California Independent System Operator,CISO,21013 +2024-04-11T23,El Paso Electric Company,EPE,958 +2024-04-11T23,City of Homestead,HST,98 +2024-04-11T23,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3969 +2024-04-11T23,"PJM Interconnection, LLC",PJM,86885 +2024-04-11T23,"Electric Reliability Council of Texas, Inc.",ERCO,49544 +2024-04-11T23,Bonneville Power Administration,BPAT,6278 +2024-04-11T23,Portland General Electric Company,PGE,2351 +2024-04-11T23,Seattle City Light,SCL,1051 +2024-04-11T23,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,513 +2024-04-11T23,Western Area Power Administration - Rocky Mountain Region,WACM,3478 +2024-04-11T23,"Midcontinent Independent System Operator, Inc.",MISO,66994 +2024-04-11T23,City of Tallahassee,TAL,348 +2024-04-11T23,Gainesville Regional Utilities,GVL,265 +2024-04-11T23,Balancing Authority of Northern California,BANC,2018 +2024-04-11T23,Florida Municipal Power Pool,FMPP,2383 +2024-04-11T23,South Carolina Public Service Authority,SC,2754 +2024-04-11T23,Seminole Electric Cooperative,SEC,260 +2024-04-11T23,Idaho Power Company,IPCO,1565 +2024-04-11T23,"Southern Company Services, Inc. - Trans",SOCO,23739 +2024-04-11T23,Los Angeles Department of Water and Power,LDWP,138 +2024-04-11T23,Tampa Electric Company,TEC,2752 +2024-04-11T23,Avista Corporation,AVA,1362 +2024-04-11T23,Western Area Power Administration - Desert Southwest Region,WALC,1155 +2024-04-11T23,Public Service Company of New Mexico,PNM,1339 +2024-04-11T23,Public Service Company of Colorado,PSCO,4573 +2024-04-11T23,JEA,JEA,1657 +2024-04-11T23,Tennessee Valley Authority,TVA,16059.68 +2024-04-11T23,Turlock Irrigation District,TIDC,334 +2024-04-11T23,ISO New England,ISNE,13756 +2024-04-11T23,Nevada Power Company,NEVP,4080 +2024-04-11T23,Southwestern Power Administration,SPA,28 +2024-04-11T23,Tucson Electric Power,TEPC,1306.89 +2024-04-11T23,Arizona Public Service Company,AZPS,3168 +2024-04-11T23,"Associated Electric Cooperative, Inc.",AECI,1942 +2024-04-11T23,Florida Power & Light Co.,FPL,19613 +2024-04-11T23,Public Utility District No. 1 of Chelan County,CHPD,168 +2024-04-11T23,Salt River Project Agricultural Improvement and Power District,SRP,3711 +2024-04-11T23,NorthWestern Corporation,NWMT,1278 +2024-04-11T23,"Dominion Energy South Carolina, Inc.",SCEG,2907 +2024-04-11T23,Imperial Irrigation District,IID,514 +2024-04-11T23,PUD No. 1 of Douglas County,DOPD,223 +2024-04-11T22,City of Tallahassee,TAL,366 +2024-04-11T22,New York Independent System Operator,NYIS,16827 +2024-04-11T22,South Carolina Public Service Authority,SC,2709 +2024-04-11T22,"Midcontinent Independent System Operator, Inc.",MISO,66687 +2024-04-11T22,Southwestern Power Administration,SPA,24 +2024-04-11T22,"PJM Interconnection, LLC",PJM,86651 +2024-04-11T22,JEA,JEA,1691 +2024-04-11T22,Tampa Electric Company,TEC,2753 +2024-04-11T22,Bonneville Power Administration,BPAT,6311 +2024-04-11T22,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,523 +2024-04-11T22,PUD No. 1 of Douglas County,DOPD,224 +2024-04-11T22,Avista Corporation,AVA,1388 +2024-04-11T22,Los Angeles Department of Water and Power,LDWP,124 +2024-04-11T22,Western Area Power Administration - Desert Southwest Region,WALC,1134 +2024-04-11T22,Seattle City Light,SCL,1069 +2024-04-11T22,Public Utility District No. 1 of Chelan County,CHPD,177 +2024-04-11T22,"Dominion Energy South Carolina, Inc.",SCEG,3018 +2024-04-11T22,Portland General Electric Company,PGE,2279 +2024-04-11T22,Arizona Public Service Company,AZPS,2885 +2024-04-11T22,Public Service Company of Colorado,PSCO,4520 +2024-04-11T22,Tennessee Valley Authority,TVA,16079.88 +2024-04-11T22,Florida Municipal Power Pool,FMPP,2394 +2024-04-11T22,Gainesville Regional Utilities,GVL,274 +2024-04-11T22,ISO New England,ISNE,13495 +2024-04-11T22,Turlock Irrigation District,TIDC,326 +2024-04-11T22,Western Area Power Administration - Rocky Mountain Region,WACM,3429 +2024-04-11T22,"Electric Reliability Council of Texas, Inc.",ERCO,48587 +2024-04-11T22,"Associated Electric Cooperative, Inc.",AECI,1888 +2024-04-11T22,Florida Power & Light Co.,FPL,20093 +2024-04-11T22,Salt River Project Agricultural Improvement and Power District,SRP,3518 +2024-04-11T22,Balancing Authority of Northern California,BANC,1889 +2024-04-11T22,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3818 +2024-04-11T22,Tucson Electric Power,TEPC,1138.42 +2024-04-11T22,Imperial Irrigation District,IID,480 +2024-04-11T22,Idaho Power Company,IPCO,1531 +2024-04-11T22,Southwest Power Pool,SWPP,28986 +2024-04-11T22,City of Homestead,HST,98 +2024-04-11T22,Public Service Company of New Mexico,PNM,1283 +2024-04-11T22,El Paso Electric Company,EPE,895 +2024-04-11T22,California Independent System Operator,CISO,20596 +2024-04-11T22,"Southern Company Services, Inc. - Trans",SOCO,23357 +2024-04-11T22,Nevada Power Company,NEVP,4095 +2024-04-11T22,NorthWestern Corporation,NWMT,1270 +2024-04-11T22,Seminole Electric Cooperative,SEC,278 +2024-04-11T21,Public Service Company of New Mexico,PNM,1244 +2024-04-11T21,City of Tallahassee,TAL,367 +2024-04-11T21,"Southern Company Services, Inc. - Trans",SOCO,23414 +2024-04-11T21,Turlock Irrigation District,TIDC,316 +2024-04-11T21,Tucson Electric Power,TEPC,1073.55 +2024-04-11T21,"Dominion Energy South Carolina, Inc.",SCEG,3019 +2024-04-11T21,Tennessee Valley Authority,TVA,16149.53 +2024-04-11T21,Florida Power & Light Co.,FPL,20260 +2024-04-11T21,Nevada Power Company,NEVP,4020 +2024-04-11T21,South Carolina Public Service Authority,SC,2643 +2024-04-11T21,JEA,JEA,1692 +2024-04-11T21,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,3859 +2024-04-11T21,Avista Corporation,AVA,1413 +2024-04-11T21,Salt River Project Agricultural Improvement and Power District,SRP,3335 +2024-04-11T21,"PJM Interconnection, LLC",PJM,86244 +2024-04-11T21,Portland General Electric Company,PGE,2309 +2024-04-11T21,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,530 +2024-04-11T21,Arizona Public Service Company,AZPS,2679 +2024-04-11T21,Public Utility District No. 1 of Chelan County,CHPD,179 +2024-04-11T21,Seattle City Light,SCL,1094 +2024-04-11T21,"Electric Reliability Council of Texas, Inc.",ERCO,47141 +2024-04-11T21,Western Area Power Administration - Desert Southwest Region,WALC,1057 +2024-04-11T21,City of Homestead,HST,95 +2024-04-11T21,Bonneville Power Administration,BPAT,6397 +2024-04-11T21,ISO New England,ISNE,13028 +2024-04-11T21,Gainesville Regional Utilities,GVL,267 +2024-04-11T21,"Midcontinent Independent System Operator, Inc.",MISO,66627 +2024-04-11T21,Western Area Power Administration - Rocky Mountain Region,WACM,3460 +2024-04-11T21,PUD No. 1 of Douglas County,DOPD,228 +2024-04-11T21,California Independent System Operator,CISO,20347 +2024-04-11T21,Southwestern Power Administration,SPA,20 +2024-04-11T21,Tampa Electric Company,TEC,2656 +2024-04-11T21,El Paso Electric Company,EPE,845 +2024-04-11T21,Los Angeles Department of Water and Power,LDWP,137 +2024-04-11T21,Imperial Irrigation District,IID,455 +2024-04-11T21,NorthWestern Corporation,NWMT,1267 +2024-04-11T21,Public Service Company of Colorado,PSCO,4365 +2024-04-11T21,Idaho Power Company,IPCO,1531 +2024-04-11T21,Florida Municipal Power Pool,FMPP,2350 +2024-04-11T21,New York Independent System Operator,NYIS,16385 +2024-04-11T21,Balancing Authority of Northern California,BANC,1841 +2024-04-11T21,Seminole Electric Cooperative,SEC,270 +2024-04-11T21,Southwest Power Pool,SWPP,29031 +2024-04-11T21,"Associated Electric Cooperative, Inc.",AECI,1862 +2024-04-11T20,"Associated Electric Cooperative, Inc.",AECI,1858 +2024-04-11T20,Florida Municipal Power Pool,FMPP,2346 +2024-04-11T20,Seminole Electric Cooperative,SEC,250 +2024-04-11T20,ISO New England,ISNE,12695 +2024-04-11T20,Western Area Power Administration - Desert Southwest Region,WALC,1041 +2024-04-11T20,"Southern Company Services, Inc. - Trans",SOCO,23130 +2024-04-11T20,Turlock Irrigation District,TIDC,302 +2024-04-11T20,Portland General Electric Company,PGE,2355 +2024-04-11T20,Avista Corporation,AVA,1436 +2024-04-11T20,Tampa Electric Company,TEC,2543 +2024-04-11T20,Balancing Authority of Northern California,BANC,1767 +2024-04-11T20,"PJM Interconnection, LLC",PJM,85902 +2024-04-11T20,Florida Power & Light Co.,FPL,20191 +2024-04-11T20,Tennessee Valley Authority,TVA,16228.59 +2024-04-11T20,California Independent System Operator,CISO,20473 +2024-04-11T20,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4079 +2024-04-11T20,Arizona Public Service Company,AZPS,2553 +2024-04-11T20,Imperial Irrigation District,IID,417 +2024-04-11T20,"Midcontinent Independent System Operator, Inc.",MISO,66726 +2024-04-11T20,"Electric Reliability Council of Texas, Inc.",ERCO,46118 +2024-04-11T20,South Carolina Public Service Authority,SC,2581 +2024-04-11T20,Public Service Company of Colorado,PSCO,4370 +2024-04-11T20,Idaho Power Company,IPCO,1529 +2024-04-11T20,El Paso Electric Company,EPE,803 +2024-04-11T20,Public Service Company of New Mexico,PNM,1223 +2024-04-11T20,Los Angeles Department of Water and Power,LDWP,131 +2024-04-11T20,Southwestern Power Administration,SPA,30 +2024-04-11T20,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,534 +2024-04-11T20,PUD No. 1 of Douglas County,DOPD,234 +2024-04-11T20,City of Tallahassee,TAL,365 +2024-04-11T20,Seattle City Light,SCL,1073 +2024-04-11T20,JEA,JEA,1650 +2024-04-11T20,Western Area Power Administration - Rocky Mountain Region,WACM,3493 +2024-04-11T20,New York Independent System Operator,NYIS,15935 +2024-04-11T20,NorthWestern Corporation,NWMT,1281 +2024-04-11T20,Bonneville Power Administration,BPAT,6433 +2024-04-11T20,Tucson Electric Power,TEPC,990.72 +2024-04-11T20,Salt River Project Agricultural Improvement and Power District,SRP,3177 +2024-04-11T20,Gainesville Regional Utilities,GVL,256 +2024-04-11T20,"Dominion Energy South Carolina, Inc.",SCEG,2880 +2024-04-11T20,Public Utility District No. 1 of Chelan County,CHPD,184 +2024-04-11T20,Nevada Power Company,NEVP,4109 +2024-04-11T20,City of Homestead,HST,91 +2024-04-11T20,Southwest Power Pool,SWPP,29292 +2024-04-11T19,Avista Corporation,AVA,1477 +2024-04-11T19,Los Angeles Department of Water and Power,LDWP,121 +2024-04-11T19,"Dominion Energy South Carolina, Inc.",SCEG,2642 +2024-04-11T19,"Electric Reliability Council of Texas, Inc.",ERCO,45026 +2024-04-11T19,PUD No. 1 of Douglas County,DOPD,241 +2024-04-11T19,"Midcontinent Independent System Operator, Inc.",MISO,67338 +2024-04-11T19,Balancing Authority of Northern California,BANC,1742 +2024-04-11T19,Florida Municipal Power Pool,FMPP,2399 +2024-04-11T19,New York Independent System Operator,NYIS,15899 +2024-04-11T19,Portland General Electric Company,PGE,2365 +2024-04-11T19,Seattle City Light,SCL,1078 +2024-04-11T19,City of Homestead,HST,89 +2024-04-11T19,Tucson Electric Power,TEPC,967.41 +2024-04-11T19,Florida Power & Light Co.,FPL,20027 +2024-04-11T19,Idaho Power Company,IPCO,1551 +2024-04-11T19,NorthWestern Corporation,NWMT,1327 +2024-04-11T19,Arizona Public Service Company,AZPS,2584 +2024-04-11T19,Gainesville Regional Utilities,GVL,256 +2024-04-11T19,Bonneville Power Administration,BPAT,6559 +2024-04-11T19,"PJM Interconnection, LLC",PJM,85679 +2024-04-11T19,California Independent System Operator,CISO,21215 +2024-04-11T19,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4107 +2024-04-11T19,"Associated Electric Cooperative, Inc.",AECI,1874 +2024-04-11T19,Nevada Power Company,NEVP,4014 +2024-04-11T19,South Carolina Public Service Authority,SC,2534 +2024-04-11T19,Seminole Electric Cooperative,SEC,237 +2024-04-11T19,Public Utility District No. 1 of Chelan County,CHPD,196 +2024-04-11T19,Tennessee Valley Authority,TVA,16422.34 +2024-04-11T19,Salt River Project Agricultural Improvement and Power District,SRP,3044 +2024-04-11T19,City of Tallahassee,TAL,358 +2024-04-11T19,Turlock Irrigation District,TIDC,296 +2024-04-11T19,Western Area Power Administration - Rocky Mountain Region,WACM,3423 +2024-04-11T19,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,536 +2024-04-11T19,Public Service Company of Colorado,PSCO,4335 +2024-04-11T19,ISO New England,ISNE,12792 +2024-04-11T19,Imperial Irrigation District,IID,397 +2024-04-11T19,Public Service Company of New Mexico,PNM,1239 +2024-04-11T19,Southwestern Power Administration,SPA,29 +2024-04-11T19,El Paso Electric Company,EPE,782 +2024-04-11T19,"Southern Company Services, Inc. - Trans",SOCO,22970 +2024-04-11T19,Southwest Power Pool,SWPP,29511 +2024-04-11T19,Tampa Electric Company,TEC,2559 +2024-04-11T19,Western Area Power Administration - Desert Southwest Region,WALC,1007 +2024-04-11T19,JEA,JEA,1568 +2024-04-11T18,Salt River Project Agricultural Improvement and Power District,SRP,2972 +2024-04-11T18,Tennessee Valley Authority,TVA,16595.44 +2024-04-11T18,"PJM Interconnection, LLC",PJM,86056 +2024-04-11T18,California Independent System Operator,CISO,21869 +2024-04-11T18,Florida Municipal Power Pool,FMPP,2432 +2024-04-11T18,Gainesville Regional Utilities,GVL,247 +2024-04-11T18,Los Angeles Department of Water and Power,LDWP,104 +2024-04-11T18,Portland General Electric Company,PGE,2436 +2024-04-11T18,Seattle City Light,SCL,1099 +2024-04-11T18,Public Service Company of New Mexico,PNM,1250 +2024-04-11T18,Southwest Power Pool,SWPP,29667 +2024-04-11T18,Tucson Electric Power,TEPC,1048.95 +2024-04-11T18,Tampa Electric Company,TEC,2692 +2024-04-11T18,Avista Corporation,AVA,1511 +2024-04-11T18,New York Independent System Operator,NYIS,15890 +2024-04-11T18,Public Service Company of Colorado,PSCO,4469 +2024-04-11T18,Nevada Power Company,NEVP,3877 +2024-04-11T18,City of Tallahassee,TAL,346 +2024-04-11T18,Idaho Power Company,IPCO,1596 +2024-04-11T18,Balancing Authority of Northern California,BANC,1719 +2024-04-11T18,Western Area Power Administration - Rocky Mountain Region,WACM,3492 +2024-04-11T18,PUD No. 1 of Douglas County,DOPD,252 +2024-04-11T18,Turlock Irrigation District,TIDC,294 +2024-04-11T18,Bonneville Power Administration,BPAT,6823 +2024-04-11T18,Imperial Irrigation District,IID,345 +2024-04-11T18,Arizona Public Service Company,AZPS,2633 +2024-04-11T18,Louisville Gas and Electric Company and Kentucky Utilities Company,LGEE,4019 +2024-04-11T18,"Midcontinent Independent System Operator, Inc.",MISO,67212 +2024-04-11T18,NorthWestern Corporation,NWMT,1329 +2024-04-11T18,El Paso Electric Company,EPE,766 +2024-04-11T18,City of Homestead,HST,87 +2024-04-11T18,"Electric Reliability Council of Texas, Inc.",ERCO,44103 +2024-04-11T18,ISO New England,ISNE,13128 +2024-04-11T18,"Southern Company Services, Inc. - Trans",SOCO,22627 +2024-04-11T18,Public Utility District No. 1 of Chelan County,CHPD,215 +2024-04-11T18,Seminole Electric Cooperative,SEC,213 +2024-04-11T18,JEA,JEA,1490 +2024-04-11T18,"Associated Electric Cooperative, Inc.",AECI,1918 +2024-04-11T18,Florida Power & Light Co.,FPL,19832 +2024-04-11T18,Southwestern Power Administration,SPA,23 +2024-04-11T18,"City of Tacoma, Department of Public Utilities, Light Division",TPWR,556 +2024-04-11T18,South Carolina Public Service Authority,SC,2518 +2024-04-11T18,Western Area Power Administration - Desert Southwest Region,WALC,997 +2024-04-11T18,"Dominion Energy South Carolina, Inc.",SCEG,2586 \ No newline at end of file diff --git a/examples/eia/src/data/eia-ba-hourly.csv.js b/examples/eia/src/data/eia-ba-hourly.csv.js new file mode 100644 index 000000000..bbadd00b7 --- /dev/null +++ b/examples/eia/src/data/eia-ba-hourly.csv.js @@ -0,0 +1,46 @@ +import "dotenv/config"; +import * as d3 from "d3"; + +// Access key from .env +const {EIA_KEY} = process.env; + +// Start and end dates +const end = d3.timeDay.offset(d3.timeHour(new Date()), 1); +const start = d3.timeHour(d3.utcDay.offset(end, -7)); +const dataLength = 5000; + +// BA Hourly Demand +const regions = new Set([ + "California", + "Carolinas", + "Central", + "Florida", + "Mid-Atlantic", + "Midwest", + "New England", + "New York", + "Northwest", + "Southeast", + "Southwest", + "Tennessee", + "Texas", + "United States Lower 48" +]); + +const baHourlyUrl = `https://api.eia.gov/v2/electricity/rto/region-data/data/?api_key=${EIA_KEY}&frequency=hourly&data[0]=value&start=${start + .toISOString() + .substring(0, 10)}T00&end=${end + .toISOString() + .substring(0, 10)}T00&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=${dataLength}`; + +const baHourly = (await d3.json(baHourlyUrl)).response.data + .filter((d) => d.type == "D") // Only use demand ("D") + .filter((d) => !regions.has(d["respondent-name"])) // Only use demand ("D") + .map((d) => ({ + period: d.period, + ba: d["respondent-name"], + baAbb: d.respondent, + value: d.value + })); + +process.stdout.write(d3.csvFormat(baHourly)); diff --git a/examples/eia/docs/data/eia-bia-reference.csv b/examples/eia/src/data/eia-bia-reference.csv similarity index 100% rename from examples/eia/docs/data/eia-bia-reference.csv rename to examples/eia/src/data/eia-bia-reference.csv diff --git a/examples/eia/docs/data/eia-connections-reference.csv b/examples/eia/src/data/eia-connections-reference.csv similarity index 100% rename from examples/eia/docs/data/eia-connections-reference.csv rename to examples/eia/src/data/eia-connections-reference.csv diff --git a/examples/eia/src/data/eia-system-points.json.sh b/examples/eia/src/data/eia-system-points.json.sh new file mode 100644 index 000000000..a37346737 --- /dev/null +++ b/examples/eia/src/data/eia-system-points.json.sh @@ -0,0 +1,4 @@ +curl -f 'https://www.eia.gov/electricity/930-api//respondents/data?type\[0\]=BA&type\[1\]=BR' \ + -H 'Connection: keep-alive' \ + -A 'Chrome/123.0.0.0' \ + --compressed diff --git a/examples/eia/docs/data/us-counties-10m.json b/examples/eia/src/data/us-counties-10m.json similarity index 100% rename from examples/eia/docs/data/us-counties-10m.json rename to examples/eia/src/data/us-counties-10m.json diff --git a/examples/eia/src/data/us-demand.csv b/examples/eia/src/data/us-demand.csv new file mode 100644 index 000000000..fe27e012e --- /dev/null +++ b/examples/eia/src/data/us-demand.csv @@ -0,0 +1,575 @@ +name,date,value +demandForecast,2024-04-13T04:00Z,363415.8 +demandForecast,2024-04-13T03:00Z,378008.5 +demandForecast,2024-04-13T02:00Z,388589.5 +demandForecast,2024-04-13T01:00Z,392919.6 +demandForecast,2024-04-13,392854.8 +demandForecast,2024-04-12T23:00Z,391734.6 +demandActual,2024-04-12T22:00Z,392640 +demandForecast,2024-04-12T22:00Z,389409 +demandActual,2024-04-12T21:00Z,394358 +demandForecast,2024-04-12T21:00Z,387021.7 +demandForecast,2024-04-12T20:00Z,385569 +demandActual,2024-04-12T20:00Z,391580 +demandForecast,2024-04-12T19:00Z,385379.7 +demandActual,2024-04-12T19:00Z,390983 +demandActual,2024-04-12T18:00Z,390941 +demandForecast,2024-04-12T18:00Z,386347.9 +demandActual,2024-04-12T17:00Z,391758 +demandForecast,2024-04-12T17:00Z,388489 +demandForecast,2024-04-12T16:00Z,391579.8 +demandActual,2024-04-12T16:00Z,392996 +demandActual,2024-04-12T15:00Z,392998 +demandForecast,2024-04-12T15:00Z,393965.2 +demandActual,2024-04-12T14:00Z,390734 +demandForecast,2024-04-12T14:00Z,392735.5 +demandActual,2024-04-12T13:00Z,385519 +demandForecast,2024-04-12T13:00Z,386239.4 +demandForecast,2024-04-12T12:00Z,374309.4 +demandActual,2024-04-12T12:00Z,374593 +demandActual,2024-04-12T11:00Z,353862 +demandForecast,2024-04-12T11:00Z,356180.1 +demandActual,2024-04-12T10:00Z,334471 +demandForecast,2024-04-12T10:00Z,338614 +demandActual,2024-04-12T09:00Z,328245 +demandForecast,2024-04-12T09:00Z,327764.9 +demandActual,2024-04-12T08:00Z,329250 +demandForecast,2024-04-12T08:00Z,325559 +demandActual,2024-04-12T07:00Z,334440.84 +demandForecast,2024-04-12T07:00Z,330380.4 +demandForecast,2024-04-12T06:00Z,339407.2 +demandActual,2024-04-12T06:00Z,344958.99 +demandActual,2024-04-12T05:00Z,355603.89 +demandForecast,2024-04-12T05:00Z,355673.4 +netGeneration,2024-04-12T04:00Z,374050.07 +demandForecast,2024-04-12T04:00Z,373442.7 +demandActual,2024-04-12T04:00Z,373286.07 +totalInterchange,2024-04-12T04:00Z,7897 +totalInterchange,2024-04-12T03:00Z,6617 +demandActual,2024-04-12T03:00Z,390864.71 +netGeneration,2024-04-12T03:00Z,408158.71 +demandForecast,2024-04-12T03:00Z,391319.4 +totalInterchange,2024-04-12T02:00Z,6035 +netGeneration,2024-04-12T02:00Z,423057.63 +demandForecast,2024-04-12T02:00Z,404577.7 +demandActual,2024-04-12T02:00Z,419801.63 +demandForecast,2024-04-12T01:00Z,410191.6 +demandActual,2024-04-12T01:00Z,408206.31 +totalInterchange,2024-04-12T01:00Z,3410 +netGeneration,2024-04-12T01:00Z,411492.31 +demandForecast,2024-04-12,409877.8 +demandActual,2024-04-12,407027.71 +totalInterchange,2024-04-12,2506 +netGeneration,2024-04-12,410837.71 +totalInterchange,2024-04-11T23:00Z,2239 +demandActual,2024-04-11T23:00Z,404438.57 +netGeneration,2024-04-11T23:00Z,408858.57 +demandForecast,2024-04-11T23:00Z,407566.8 +netGeneration,2024-04-11T22:00Z,406594.3 +demandActual,2024-04-11T22:00Z,401158.3 +demandForecast,2024-04-11T22:00Z,404036.2 +totalInterchange,2024-04-11T22:00Z,2847 +netGeneration,2024-04-11T21:00Z,403001.08 +demandForecast,2024-04-11T21:00Z,399923.6 +demandActual,2024-04-11T21:00Z,397502.08 +totalInterchange,2024-04-11T21:00Z,3325 +totalInterchange,2024-04-11T20:00Z,3808 +netGeneration,2024-04-11T20:00Z,400789.31 +demandForecast,2024-04-11T20:00Z,396610.6 +demandActual,2024-04-11T20:00Z,395055.31 +demandForecast,2024-04-11T19:00Z,395831.7 +totalInterchange,2024-04-11T19:00Z,3648 +demandActual,2024-04-11T19:00Z,394812.75 +netGeneration,2024-04-11T19:00Z,400131.75 +netGeneration,2024-04-11T18:00Z,399722.39 +totalInterchange,2024-04-11T18:00Z,3934 +demandActual,2024-04-11T18:00Z,395334.39 +demandForecast,2024-04-11T18:00Z,396092.1 +netGeneration,2024-04-11T17:00Z,399163.14 +totalInterchange,2024-04-11T17:00Z,4078 +demandForecast,2024-04-11T17:00Z,397233.6 +demandActual,2024-04-11T17:00Z,397018.14 +totalInterchange,2024-04-11T16:00Z,5303 +demandActual,2024-04-11T16:00Z,398937.34 +netGeneration,2024-04-11T16:00Z,399549.34 +demandForecast,2024-04-11T16:00Z,398935.3 +totalInterchange,2024-04-11T15:00Z,6688 +demandActual,2024-04-11T15:00Z,399245.22 +netGeneration,2024-04-11T15:00Z,399267.22 +demandForecast,2024-04-11T15:00Z,399633.6 +demandActual,2024-04-11T14:00Z,395368.84 +demandForecast,2024-04-11T14:00Z,396239.2 +netGeneration,2024-04-11T14:00Z,395514.84 +totalInterchange,2024-04-11T14:00Z,7194 +demandActual,2024-04-11T13:00Z,386477.78 +demandForecast,2024-04-11T13:00Z,388447.6 +netGeneration,2024-04-11T13:00Z,386313.78 +totalInterchange,2024-04-11T13:00Z,5753 +demandForecast,2024-04-11T12:00Z,375486.8 +netGeneration,2024-04-11T12:00Z,373271.09 +totalInterchange,2024-04-11T12:00Z,4948 +demandActual,2024-04-11T12:00Z,374025.09 +demandActual,2024-04-11T11:00Z,352951.26 +netGeneration,2024-04-11T11:00Z,352238.26 +totalInterchange,2024-04-11T11:00Z,5616 +demandForecast,2024-04-11T11:00Z,357331.5 +demandForecast,2024-04-11T10:00Z,339538.6 +totalInterchange,2024-04-11T10:00Z,5997 +netGeneration,2024-04-11T10:00Z,334950.48 +demandActual,2024-04-11T10:00Z,335406.48 +totalInterchange,2024-04-11T09:00Z,6199 +netGeneration,2024-04-11T09:00Z,327035.38 +demandForecast,2024-04-11T09:00Z,327537.9 +demandActual,2024-04-11T09:00Z,328253.38 +demandActual,2024-04-11T08:00Z,328975.17 +netGeneration,2024-04-11T08:00Z,328320.17 +totalInterchange,2024-04-11T08:00Z,7073 +demandForecast,2024-04-11T08:00Z,324880 +netGeneration,2024-04-11T07:00Z,338574.7 +totalInterchange,2024-04-11T07:00Z,1667 +demandActual,2024-04-11T07:00Z,339804.7 +demandForecast,2024-04-11T07:00Z,331197.2 +demandForecast,2024-04-11T06:00Z,349216.4 +totalInterchange,2024-04-11T06:00Z,2007 +netGeneration,2024-04-11T06:00Z,354902.94 +demandActual,2024-04-11T06:00Z,355169.94 +demandActual,2024-04-11T05:00Z,367383.37 +demandForecast,2024-04-11T05:00Z,365415.4 +netGeneration,2024-04-11T05:00Z,367760.37 +totalInterchange,2024-04-11T05:00Z,2603 +netGeneration,2024-04-11T04:00Z,405203.26 +demandForecast,2024-04-11T04:00Z,404116.5 +totalInterchange,2024-04-11T04:00Z,3211 +demandActual,2024-04-11T04:00Z,406385.26 +totalInterchange,2024-04-11T03:00Z,3417 +netGeneration,2024-04-11T03:00Z,426964.63 +demandActual,2024-04-11T03:00Z,427085.63 +demandForecast,2024-04-11T03:00Z,424422.7 +netGeneration,2024-04-11T02:00Z,445603.18 +demandForecast,2024-04-11T02:00Z,439771 +totalInterchange,2024-04-11T02:00Z,3913 +demandActual,2024-04-11T02:00Z,443149.18 +netGeneration,2024-04-11T01:00Z,449353.94 +totalInterchange,2024-04-11T01:00Z,2432 +demandActual,2024-04-11T01:00Z,447458.94 +demandForecast,2024-04-11T01:00Z,445721.1 +totalInterchange,2024-04-11,2811 +demandForecast,2024-04-11,444667.3 +netGeneration,2024-04-11,444891.36 +demandActual,2024-04-11,444338.36 +netGeneration,2024-04-10T23:00Z,441499.35 +demandActual,2024-04-10T23:00Z,442737.35 +demandForecast,2024-04-10T23:00Z,442025.6 +totalInterchange,2024-04-10T23:00Z,3273 +totalInterchange,2024-04-10T22:00Z,4608 +demandForecast,2024-04-10T22:00Z,438775.5 +demandActual,2024-04-10T22:00Z,439269.97 +netGeneration,2024-04-10T22:00Z,438597.97 +netGeneration,2024-04-10T21:00Z,435450.84 +totalInterchange,2024-04-10T21:00Z,4871 +demandForecast,2024-04-10T21:00Z,434008.9 +demandActual,2024-04-10T21:00Z,435181.84 +demandActual,2024-04-10T20:00Z,432502.1 +totalInterchange,2024-04-10T20:00Z,5009 +netGeneration,2024-04-10T20:00Z,432794.1 +demandForecast,2024-04-10T20:00Z,429727.2 +netGeneration,2024-04-10T19:00Z,431565.53 +totalInterchange,2024-04-10T19:00Z,5522 +demandActual,2024-04-10T19:00Z,430230.53 +demandForecast,2024-04-10T19:00Z,426596.3 +totalInterchange,2024-04-10T18:00Z,5546 +demandForecast,2024-04-10T18:00Z,426907.8 +netGeneration,2024-04-10T18:00Z,429347.74 +demandActual,2024-04-10T18:00Z,429075.74 +demandForecast,2024-04-10T17:00Z,427308 +totalInterchange,2024-04-10T17:00Z,4726 +demandActual,2024-04-10T17:00Z,428354.18 +netGeneration,2024-04-10T17:00Z,428476.18 +demandForecast,2024-04-10T16:00Z,428160.7 +demandActual,2024-04-10T16:00Z,426393.27 +totalInterchange,2024-04-10T16:00Z,4825 +netGeneration,2024-04-10T16:00Z,426229.27 +netGeneration,2024-04-10T15:00Z,423442.99 +demandForecast,2024-04-10T15:00Z,428315.4 +totalInterchange,2024-04-10T15:00Z,3183 +demandActual,2024-04-10T15:00Z,425204.99 +demandActual,2024-04-10T14:00Z,420675.1 +netGeneration,2024-04-10T14:00Z,419784.1 +totalInterchange,2024-04-10T14:00Z,2519 +demandForecast,2024-04-10T14:00Z,424945.7 +totalInterchange,2024-04-10T13:00Z,2280 +demandForecast,2024-04-10T13:00Z,416844.4 +netGeneration,2024-04-10T13:00Z,414709.18 +demandActual,2024-04-10T13:00Z,414227.18 +demandActual,2024-04-10T12:00Z,402592.91 +netGeneration,2024-04-10T12:00Z,402205.91 +totalInterchange,2024-04-10T12:00Z,827 +demandForecast,2024-04-10T12:00Z,405617.8 +demandActual,2024-04-10T11:00Z,381865.64 +totalInterchange,2024-04-10T11:00Z,1645 +netGeneration,2024-04-10T11:00Z,382200.64 +demandForecast,2024-04-10T11:00Z,387878.7 +demandActual,2024-04-10T10:00Z,362088.65 +totalInterchange,2024-04-10T10:00Z,1863 +netGeneration,2024-04-10T10:00Z,361461.65 +demandForecast,2024-04-10T10:00Z,368259.9 +demandActual,2024-04-10T09:00Z,355655.21 +demandForecast,2024-04-10T09:00Z,355383.1 +netGeneration,2024-04-10T09:00Z,354930.21 +totalInterchange,2024-04-10T09:00Z,1271 +demandActual,2024-04-10T08:00Z,356347.46 +netGeneration,2024-04-10T08:00Z,355685.46 +totalInterchange,2024-04-10T08:00Z,2303 +demandForecast,2024-04-10T08:00Z,352768.5 +totalInterchange,2024-04-10T07:00Z,2530 +netGeneration,2024-04-10T07:00Z,362530.08 +demandActual,2024-04-10T07:00Z,363476.08 +demandForecast,2024-04-10T07:00Z,355063.6 +totalInterchange,2024-04-10T06:00Z,2508 +demandForecast,2024-04-10T06:00Z,368696.9 +netGeneration,2024-04-10T06:00Z,374166.76 +demandActual,2024-04-10T06:00Z,374289.76 +netGeneration,2024-04-10T05:00Z,387647.47 +totalInterchange,2024-04-10T05:00Z,2815 +demandActual,2024-04-10T05:00Z,388840.47 +demandForecast,2024-04-10T05:00Z,385904.6 +demandActual,2024-04-10T04:00Z,406741.4 +demandForecast,2024-04-10T04:00Z,406678.6 +totalInterchange,2024-04-10T04:00Z,1917 +netGeneration,2024-04-10T04:00Z,404208.4 +totalInterchange,2024-04-10T03:00Z,2370 +demandForecast,2024-04-10T03:00Z,426807.3 +netGeneration,2024-04-10T03:00Z,425880.44 +demandActual,2024-04-10T03:00Z,427054.44 +demandActual,2024-04-10T02:00Z,442578.37 +totalInterchange,2024-04-10T02:00Z,1627 +demandForecast,2024-04-10T02:00Z,441498 +netGeneration,2024-04-10T02:00Z,442855.37 +totalInterchange,2024-04-10T01:00Z,-95 +demandForecast,2024-04-10T01:00Z,447399.2 +netGeneration,2024-04-10T01:00Z,444662.74 +demandActual,2024-04-10T01:00Z,446871.74 +netGeneration,2024-04-10,440252.7 +demandForecast,2024-04-10,446768.2 +totalInterchange,2024-04-10,19 +demandActual,2024-04-10,442386.7 +totalInterchange,2024-04-09T23:00Z,749 +demandActual,2024-04-09T23:00Z,438755.81 +demandForecast,2024-04-09T23:00Z,443627.8 +netGeneration,2024-04-09T23:00Z,436850.81 +demandActual,2024-04-09T22:00Z,434454.46 +netGeneration,2024-04-09T22:00Z,434066.46 +demandForecast,2024-04-09T22:00Z,439030 +totalInterchange,2024-04-09T22:00Z,1390 +totalInterchange,2024-04-09T21:00Z,1689 +netGeneration,2024-04-09T21:00Z,429323.92 +demandForecast,2024-04-09T21:00Z,433676.2 +demandActual,2024-04-09T21:00Z,429890.92 +demandForecast,2024-04-09T20:00Z,430332.2 +totalInterchange,2024-04-09T20:00Z,1522 +demandActual,2024-04-09T20:00Z,427103.22 +netGeneration,2024-04-09T20:00Z,426747.22 +demandActual,2024-04-09T19:00Z,426473.08 +demandForecast,2024-04-09T19:00Z,427994.9 +netGeneration,2024-04-09T19:00Z,426101.08 +totalInterchange,2024-04-09T19:00Z,2452 +demandActual,2024-04-09T18:00Z,425606.98 +totalInterchange,2024-04-09T18:00Z,2308 +demandForecast,2024-04-09T18:00Z,426205.1 +netGeneration,2024-04-09T18:00Z,425079.98 +demandForecast,2024-04-09T17:00Z,425815.6 +netGeneration,2024-04-09T17:00Z,425270.06 +totalInterchange,2024-04-09T17:00Z,2918 +demandActual,2024-04-09T17:00Z,426170.06 +netGeneration,2024-04-09T16:00Z,421744.57 +demandActual,2024-04-09T16:00Z,425924.57 +demandForecast,2024-04-09T16:00Z,426097.1 +totalInterchange,2024-04-09T16:00Z,1532 +demandForecast,2024-04-09T15:00Z,426572.9 +totalInterchange,2024-04-09T15:00Z,1263 +demandActual,2024-04-09T15:00Z,424636.56 +netGeneration,2024-04-09T15:00Z,420558.56 +totalInterchange,2024-04-09T14:00Z,1591 +netGeneration,2024-04-09T14:00Z,419140.78 +demandForecast,2024-04-09T14:00Z,424302 +demandActual,2024-04-09T14:00Z,421326.78 +demandForecast,2024-04-09T13:00Z,418416.3 +totalInterchange,2024-04-09T13:00Z,1802 +netGeneration,2024-04-09T13:00Z,416303.6 +demandActual,2024-04-09T13:00Z,417524.6 +netGeneration,2024-04-09T12:00Z,407284.93 +demandForecast,2024-04-09T12:00Z,409280.9 +totalInterchange,2024-04-09T12:00Z,428 +demandActual,2024-04-09T12:00Z,409252.93 +demandForecast,2024-04-09T11:00Z,392136.3 +demandActual,2024-04-09T11:00Z,388918.43 +totalInterchange,2024-04-09T11:00Z,1101 +netGeneration,2024-04-09T11:00Z,387735.43 +demandForecast,2024-04-09T10:00Z,372717.8 +totalInterchange,2024-04-09T10:00Z,2242 +demandActual,2024-04-09T10:00Z,367617.94 +netGeneration,2024-04-09T10:00Z,367585.94 +demandActual,2024-04-09T09:00Z,359182.77 +demandForecast,2024-04-09T09:00Z,359435.3 +netGeneration,2024-04-09T09:00Z,359266.77 +totalInterchange,2024-04-09T09:00Z,2065 +demandForecast,2024-04-09T08:00Z,356101 +totalInterchange,2024-04-09T08:00Z,2560 +netGeneration,2024-04-09T08:00Z,359711.5 +demandActual,2024-04-09T08:00Z,359299.5 +totalInterchange,2024-04-09T07:00Z,2907 +demandActual,2024-04-09T07:00Z,364647.47 +demandForecast,2024-04-09T07:00Z,359743.1 +netGeneration,2024-04-09T07:00Z,364827.47 +netGeneration,2024-04-09T06:00Z,375630.92 +demandForecast,2024-04-09T06:00Z,370060.2 +totalInterchange,2024-04-09T06:00Z,2862 +demandActual,2024-04-09T06:00Z,375013.92 +totalInterchange,2024-04-09T05:00Z,2743 +netGeneration,2024-04-09T05:00Z,389817.17 +demandActual,2024-04-09T05:00Z,389791.17 +demandForecast,2024-04-09T05:00Z,385464 +demandActual,2024-04-09T04:00Z,408416.19 +totalInterchange,2024-04-09T04:00Z,3173 +demandForecast,2024-04-09T04:00Z,406052.5 +netGeneration,2024-04-09T04:00Z,408749.19 +demandForecast,2024-04-09T03:00Z,425368.9 +totalInterchange,2024-04-09T03:00Z,2582 +netGeneration,2024-04-09T03:00Z,429076.73 +demandActual,2024-04-09T03:00Z,428474.73 +demandActual,2024-04-09T02:00Z,443541.51 +netGeneration,2024-04-09T02:00Z,444708.51 +demandForecast,2024-04-09T02:00Z,439746.6 +totalInterchange,2024-04-09T02:00Z,1026 +totalInterchange,2024-04-09T01:00Z,455 +demandActual,2024-04-09T01:00Z,447965.08 +netGeneration,2024-04-09T01:00Z,446148.08 +demandForecast,2024-04-09T01:00Z,445332.9 +demandActual,2024-04-09,443529.05 +demandForecast,2024-04-09,445008.1 +totalInterchange,2024-04-09,730 +netGeneration,2024-04-09,441963.05 +demandForecast,2024-04-08T23:00Z,441082.1 +totalInterchange,2024-04-08T23:00Z,1685 +demandActual,2024-04-08T23:00Z,437730.49 +netGeneration,2024-04-08T23:00Z,437069.49 +totalInterchange,2024-04-08T22:00Z,2419 +demandActual,2024-04-08T22:00Z,432237.96 +demandForecast,2024-04-08T22:00Z,436097.3 +netGeneration,2024-04-08T22:00Z,432317.96 +netGeneration,2024-04-08T21:00Z,426764.86 +demandActual,2024-04-08T21:00Z,425970.86 +demandForecast,2024-04-08T21:00Z,430992 +totalInterchange,2024-04-08T21:00Z,2436 +netGeneration,2024-04-08T20:00Z,427473.33 +totalInterchange,2024-04-08T20:00Z,1609 +demandForecast,2024-04-08T20:00Z,431321.9 +demandActual,2024-04-08T20:00Z,429327.33 +netGeneration,2024-04-08T19:00Z,426643.49 +totalInterchange,2024-04-08T19:00Z,1876 +demandActual,2024-04-08T19:00Z,427871.49 +demandForecast,2024-04-08T19:00Z,427840.3 +totalInterchange,2024-04-08T18:00Z,1745 +netGeneration,2024-04-08T18:00Z,425704.68 +demandForecast,2024-04-08T18:00Z,424725.5 +demandActual,2024-04-08T18:00Z,425517.68 +netGeneration,2024-04-08T17:00Z,427233.87 +totalInterchange,2024-04-08T17:00Z,1524 +demandActual,2024-04-08T17:00Z,427090.87 +demandForecast,2024-04-08T17:00Z,423993.2 +demandActual,2024-04-08T16:00Z,429642.87 +totalInterchange,2024-04-08T16:00Z,944 +netGeneration,2024-04-08T16:00Z,426294.87 +demandForecast,2024-04-08T16:00Z,426405.2 +netGeneration,2024-04-08T15:00Z,427105.38 +demandActual,2024-04-08T15:00Z,428774.38 +demandForecast,2024-04-08T15:00Z,428840.3 +totalInterchange,2024-04-08T15:00Z,1082 +totalInterchange,2024-04-08T14:00Z,993 +netGeneration,2024-04-08T14:00Z,423806.43 +demandForecast,2024-04-08T14:00Z,429410.3 +demandActual,2024-04-08T14:00Z,425709.43 +totalInterchange,2024-04-08T13:00Z,1090 +demandForecast,2024-04-08T13:00Z,425939.6 +demandActual,2024-04-08T13:00Z,422584.58 +netGeneration,2024-04-08T13:00Z,421340.58 +netGeneration,2024-04-08T12:00Z,412767.38 +totalInterchange,2024-04-08T12:00Z,-516 +demandForecast,2024-04-08T12:00Z,417295.7 +demandActual,2024-04-08T12:00Z,415207.38 +demandForecast,2024-04-08T11:00Z,399439 +totalInterchange,2024-04-08T11:00Z,255 +demandActual,2024-04-08T11:00Z,393811.19 +netGeneration,2024-04-08T11:00Z,391833.19 +demandActual,2024-04-08T10:00Z,370501.27 +totalInterchange,2024-04-08T10:00Z,1237 +demandForecast,2024-04-08T10:00Z,378120.9 +netGeneration,2024-04-08T10:00Z,369181.27 +demandActual,2024-04-08T09:00Z,358923.81 +netGeneration,2024-04-08T09:00Z,357644.81 +totalInterchange,2024-04-08T09:00Z,1536 +demandForecast,2024-04-08T09:00Z,361223.6 +demandActual,2024-04-08T08:00Z,356623 +demandForecast,2024-04-08T08:00Z,355515.2 +totalInterchange,2024-04-08T08:00Z,2276 +netGeneration,2024-04-08T08:00Z,356384 +netGeneration,2024-04-08T07:00Z,360218.86 +totalInterchange,2024-04-08T07:00Z,2151 +demandActual,2024-04-08T07:00Z,360773.86 +demandForecast,2024-04-08T07:00Z,358060.3 +demandForecast,2024-04-08T06:00Z,366272.1 +demandActual,2024-04-08T06:00Z,369524.22 +netGeneration,2024-04-08T06:00Z,368917.22 +totalInterchange,2024-04-08T06:00Z,2254 +totalInterchange,2024-04-08T05:00Z,2597 +demandActual,2024-04-08T05:00Z,381323.01 +netGeneration,2024-04-08T05:00Z,381238.01 +demandForecast,2024-04-08T05:00Z,378260.4 +netGeneration,2024-04-08T04:00Z,396819.85 +demandActual,2024-04-08T04:00Z,396563.85 +totalInterchange,2024-04-08T04:00Z,2795 +demandForecast,2024-04-08T04:00Z,392638.8 +totalInterchange,2024-04-08T03:00Z,1428 +demandForecast,2024-04-08T03:00Z,406821.2 +demandActual,2024-04-08T03:00Z,412045.46 +netGeneration,2024-04-08T03:00Z,412685.46 +totalInterchange,2024-04-08T02:00Z,336 +demandForecast,2024-04-08T02:00Z,416518.5 +netGeneration,2024-04-08T02:00Z,423367.37 +demandActual,2024-04-08T02:00Z,423130.37 +totalInterchange,2024-04-08T01:00Z,1269 +demandForecast,2024-04-08T01:00Z,418085.2 +demandActual,2024-04-08T01:00Z,425567 +netGeneration,2024-04-08T01:00Z,425706 +demandForecast,2024-04-08,412894.5 +netGeneration,2024-04-08,419635.86 +demandActual,2024-04-08,420083.86 +totalInterchange,2024-04-08,1235 +demandForecast,2024-04-07T23:00Z,405576.8 +totalInterchange,2024-04-07T23:00Z,1621 +demandActual,2024-04-07T23:00Z,415099.83 +netGeneration,2024-04-07T23:00Z,415372.83 +totalInterchange,2024-04-07T22:00Z,2381 +netGeneration,2024-04-07T22:00Z,408583.76 +demandForecast,2024-04-07T22:00Z,398019.8 +demandActual,2024-04-07T22:00Z,407196.76 +demandForecast,2024-04-07T21:00Z,390203.7 +totalInterchange,2024-04-07T21:00Z,3067 +netGeneration,2024-04-07T21:00Z,401357.21 +demandActual,2024-04-07T21:00Z,398912.21 +demandActual,2024-04-07T20:00Z,393976.31 +netGeneration,2024-04-07T20:00Z,395969.31 +demandForecast,2024-04-07T20:00Z,384288.8 +totalInterchange,2024-04-07T20:00Z,3093 +netGeneration,2024-04-07T19:00Z,394436.05 +demandActual,2024-04-07T19:00Z,393341.05 +demandForecast,2024-04-07T19:00Z,381647.8 +totalInterchange,2024-04-07T19:00Z,3108 +totalInterchange,2024-04-07T18:00Z,3191 +demandForecast,2024-04-07T18:00Z,382933 +demandActual,2024-04-07T18:00Z,392576.75 +netGeneration,2024-04-07T18:00Z,394124.75 +demandForecast,2024-04-07T17:00Z,385763.2 +demandActual,2024-04-07T17:00Z,393999.06 +netGeneration,2024-04-07T17:00Z,395632.06 +totalInterchange,2024-04-07T17:00Z,3079 +demandActual,2024-04-07T16:00Z,394314.83 +netGeneration,2024-04-07T16:00Z,393298.83 +demandForecast,2024-04-07T16:00Z,388713.4 +totalInterchange,2024-04-07T16:00Z,2110 +netGeneration,2024-04-07T15:00Z,394509.44 +demandForecast,2024-04-07T15:00Z,390599.8 +demandActual,2024-04-07T15:00Z,394717.44 +totalInterchange,2024-04-07T15:00Z,2009 +demandActual,2024-04-07T14:00Z,391919.53 +demandForecast,2024-04-07T14:00Z,390974.5 +totalInterchange,2024-04-07T14:00Z,2714 +netGeneration,2024-04-07T14:00Z,393498.53 +netGeneration,2024-04-07T13:00Z,390469.55 +demandForecast,2024-04-07T13:00Z,386645 +demandActual,2024-04-07T13:00Z,389323.55 +totalInterchange,2024-04-07T13:00Z,2333 +totalInterchange,2024-04-07T12:00Z,1796 +demandActual,2024-04-07T12:00Z,384852.46 +demandForecast,2024-04-07T12:00Z,379346.9 +netGeneration,2024-04-07T12:00Z,384711.46 +demandForecast,2024-04-07T11:00Z,370764.7 +demandActual,2024-04-07T11:00Z,376574.84 +netGeneration,2024-04-07T11:00Z,377364.84 +totalInterchange,2024-04-07T11:00Z,2088 +demandForecast,2024-04-07T10:00Z,363510.5 +demandActual,2024-04-07T10:00Z,369869.46 +totalInterchange,2024-04-07T10:00Z,2637 +netGeneration,2024-04-07T10:00Z,370923.46 +demandActual,2024-04-07T09:00Z,367092.83 +totalInterchange,2024-04-07T09:00Z,3273 +demandForecast,2024-04-07T09:00Z,359512 +netGeneration,2024-04-07T09:00Z,368850.83 +totalInterchange,2024-04-07T08:00Z,3101 +netGeneration,2024-04-07T08:00Z,368155.26 +demandForecast,2024-04-07T08:00Z,359781.3 +demandActual,2024-04-07T08:00Z,367618.26 +demandActual,2024-04-07T07:00Z,372136.53 +totalInterchange,2024-04-07T07:00Z,3798 +netGeneration,2024-04-07T07:00Z,374295.53 +demandForecast,2024-04-07T07:00Z,360824.8 +demandForecast,2024-04-07T06:00Z,371550.7 +totalInterchange,2024-04-07T06:00Z,3643 +demandActual,2024-04-07T06:00Z,380013.33 +netGeneration,2024-04-07T06:00Z,382710.33 +totalInterchange,2024-04-07T05:00Z,3199 +netGeneration,2024-04-07T05:00Z,390463.52 +demandActual,2024-04-07T05:00Z,389726.52 +demandForecast,2024-04-07T05:00Z,383907.5 +netGeneration,2024-04-07T04:00Z,402827.21 +demandActual,2024-04-07T04:00Z,401301.21 +totalInterchange,2024-04-07T04:00Z,3179 +demandForecast,2024-04-07T04:00Z,400154.2 +demandForecast,2024-04-07T03:00Z,411751.3 +demandActual,2024-04-07T03:00Z,412286.31 +netGeneration,2024-04-07T03:00Z,414250.31 +totalInterchange,2024-04-07T03:00Z,2703 +demandForecast,2024-04-07T02:00Z,418737.2 +demandActual,2024-04-07T02:00Z,419098.21 +netGeneration,2024-04-07T02:00Z,421816.21 +totalInterchange,2024-04-07T02:00Z,1831 +demandActual,2024-04-07T01:00Z,417982.92 +netGeneration,2024-04-07T01:00Z,419148.92 +demandForecast,2024-04-07T01:00Z,418481 +totalInterchange,2024-04-07T01:00Z,1861 +totalInterchange,2024-04-07,1680 +netGeneration,2024-04-07,412012.37 +demandForecast,2024-04-07,413001 +demandActual,2024-04-07,411621.37 +demandForecast,2024-04-06T23:00Z,406519.9 +totalInterchange,2024-04-06T23:00Z,2452 +netGeneration,2024-04-06T23:00Z,408258.22 +demandActual,2024-04-06T23:00Z,407712.22 +netGeneration,2024-04-06T22:00Z,405395.55 +demandForecast,2024-04-06T22:00Z,401157.4 +totalInterchange,2024-04-06T22:00Z,2534 +demandActual,2024-04-06T22:00Z,405168.55 +netGeneration,2024-04-06T21:00Z,402958.28 +demandActual,2024-04-06T21:00Z,401471.28 +demandForecast,2024-04-06T21:00Z,395472.8 +totalInterchange,2024-04-06T21:00Z,3692 +totalInterchange,2024-04-06T20:00Z,4308 +demandActual,2024-04-06T20:00Z,398583.62 +netGeneration,2024-04-06T20:00Z,400597.62 +demandForecast,2024-04-06T20:00Z,392567.1 +totalInterchange,2024-04-06T19:00Z,4393 +demandActual,2024-04-06T19:00Z,399699.88 +netGeneration,2024-04-06T19:00Z,401543.88 +demandForecast,2024-04-06T19:00Z,392648.7 +totalInterchange,2024-04-06T18:00Z,4177 +netGeneration,2024-04-06T18:00Z,404346.32 +demandActual,2024-04-06T18:00Z,403002.32 +demandForecast,2024-04-06T18:00Z,396268.7 +totalInterchange,2024-04-06T17:00Z,3901 +demandActual,2024-04-06T17:00Z,407260.54 +netGeneration,2024-04-06T17:00Z,406669.54 +demandForecast,2024-04-06T17:00Z,403064.7 +demandForecast,2024-04-06T16:00Z,409783.5 +totalInterchange,2024-04-06T16:00Z,3047 +netGeneration,2024-04-06T16:00Z,408983.81 +demandActual,2024-04-06T16:00Z,411208.81 \ No newline at end of file diff --git a/examples/eia/src/data/us-demand.csv.js b/examples/eia/src/data/us-demand.csv.js new file mode 100644 index 000000000..0d2ea3f87 --- /dev/null +++ b/examples/eia/src/data/us-demand.csv.js @@ -0,0 +1,29 @@ +import "dotenv/config"; +import * as d3 from "d3"; + +// Access key from .env +const {EIA_KEY} = process.env; + +// Construct web API call for last 7 days of hourly demand data in MWh +const end = d3.timeDay.offset(d3.timeHour(new Date()), 1); +const start = d3.timeHour(d3.utcDay.offset(end, -7)); +const convertDate = d3.timeFormat("%Y-%m-%dT%H"); + +const usDemandUrl = `https://api.eia.gov/v2/electricity/rto/region-data/data/?api_key=${EIA_KEY}&frequency=hourly&data[0]=value&facets[respondent][]=US48&start=${convertDate( + start +)}&end=${convertDate(end)}&sort[0][column]=period&sort[0][direction]=desc&offset=0&length=5000`; + +// Types: DF = forecasted demand, D = demand (actual), NG = net generation, TI = total interchange +const typeNameRemap = {DF: "demandForecast", D: "demandActual", NG: "netGeneration", TI: "totalInterchange"}; + +const usDemandJSON = await d3.json(usDemandUrl); + +const dateParse = d3.utcParse("%Y-%m-%dT%H"); + +const usDemand = await usDemandJSON.response.data.map((d) => ({ + name: typeNameRemap[d.type], + date: dateParse(d.period), + value: +d.value +})); + +process.stdout.write(d3.csvFormat(usDemand)); diff --git a/examples/eia/docs/data/us-states.json.js b/examples/eia/src/data/us-states.json.js similarity index 87% rename from examples/eia/docs/data/us-states.json.js rename to examples/eia/src/data/us-states.json.js index 8c5fcc843..9911707f1 100644 --- a/examples/eia/docs/data/us-states.json.js +++ b/examples/eia/src/data/us-states.json.js @@ -2,7 +2,7 @@ import {readFileSync} from "node:fs"; import {merge, mesh} from "topojson-client"; import {presimplify, simplify} from "topojson-simplify"; -const us = simplify(presimplify(JSON.parse(readFileSync("docs/data/us-counties-10m.json", "utf-8"))), 0.1); +const us = simplify(presimplify(JSON.parse(readFileSync("src/data/us-counties-10m.json", "utf-8"))), 0.1); us.objects.states.geometries = us.objects.states.geometries.filter( ({properties: {name}}) => ![ diff --git a/examples/eia/src/index.md b/examples/eia/src/index.md new file mode 100644 index 000000000..239c1d912 --- /dev/null +++ b/examples/eia/src/index.md @@ -0,0 +1,184 @@ +--- +theme: dashboard +toc: false +--- + +# U.S. electricity grid + +```js +// Import components +import {countryInterchangeChart, top5BalancingAuthoritiesChart, usGenDemandForecastChart} from "./components/charts.js"; +import {balancingAuthoritiesLegend, balancingAuthoritiesMap} from "./components/map.js"; +``` + +```js +// +// Load data snapshots +// + +// International electricity interchange +const countryInterchangeSeries = FileAttachment("data/country-interchange.csv").csv({typed: true}); + +// Balancing authority demand +const baHourlyDemand = FileAttachment("data/eia-ba-hourly.csv").csv({typed: true}); + +// US total demand, generation and forecast +const usDemandGenForecastAll = FileAttachment("data/us-demand.csv").csv({typed: true}); + +// BA connections +const eiaConnRef = FileAttachment("data/eia-connections-reference.csv").csv({typed: true}); + +// BA status (generating or not) +const eiaBARef = FileAttachment("data/eia-bia-reference.csv").csv({typed: true}); + +// +// Spatial data (country, states, BA locations) +// + +// US states +const us = FileAttachment("data/us-states.json").json(); +const nation = us.then((us) => us.features.find(({id}) => id === "nation")); +const statemesh = us.then((us) => us.features.find(({id}) => id === "statemesh")); + +// Balancing authority representative locations +const eiaPoints = FileAttachment("data/eia-system-points.json").json().then(d => d[0].data); +``` + +```js +// Omit total interchange +const usDemandGenForecast = usDemandGenForecastAll.filter(d => d.name != "totalInterchange"); + +// Get generating only balancing authorities +const genOnlyBA = eiaBARef.filter(d => d["Generation Only BA"] == "Yes").map(d => d["BA Code"]); + +const baHourlyClean = baHourlyDemand + .map((d) => ({ + "Date": timeParse(d.period).toLocaleString("en-us", {month: "short", day: "2-digit", hour: "2-digit"}), + "Balancing authority": d.ba, + "Abbreviation": d.baAbb, + "Type": "Demand", + "Value (GWh)": d.value / 1000 + })); +``` + +```js +// Most recent hour for each BA +const baHourlyAll = d3.range(0, hoursBackOfData + 1).map((hour) => d3.rollup(baHourlyDemand, (d) => d[hour]?.value, d => d["ba"])); +const baHourlyCurrent = baHourlyAll[hoursAgo]; +const baHourlyLatest = baHourlyAll[0]; +``` + +```js +// Top 5 BAs by demand +function computeTopDemand(baHourly) { + return Array + .from(baHourly, ([name, value]) => ({name, value})) + .sort(((a, b) => b.value - a.value)) + .slice(0, 5); +} +const top5LatestDemand = computeTopDemand(baHourlyCurrent); +const maxDemand = d3.max(baHourlyAll.map((demand) => computeTopDemand(demand)[0].value)); +``` + +```js +// Percent change for most recent 2 hours of data by BA +const baHourlyChange = d3.rollup(baHourlyDemand, (d) => ((d[hoursAgo]?.value - d[hoursAgo + 1]?.value) / d[hoursAgo]?.value) * 100, (d) => d["ba"] ); +``` + +```js +// Map BA abbreviations to locations +const locations = new Map(eiaPoints.map(d => [d.id, [d.lon, d.lat]])); +``` + +```js +// Gets lat/lon endpoints between balancing authorities +const eiaConnRefSpatial = eiaConnRef + .filter((d) => d["Active Connection"] == "Yes") + .map((d) => ({ + connection: `${d["BA Code"]}-${d["Directly Interconnected BA Code"]}`, + location1: locations.get(d["BA Code"]), + location2: locations.get(d["Directly Interconnected BA Code"]) + })); +``` + +```js +// Date/time format/parse +const timeParse = d3.utcParse("%Y-%m-%dT%H"); +const hourFormat = d3.timeFormat("%-I %p"); + +// Configure hours ago input +const MS_IN_AN_HOUR = 1000 * 60 * 60; +const hours = [...new Set(baHourlyDemand.map(d => d.period))].map(timeParse); +const [startHour, endHour] = d3.extent(hours); +const hoursBackOfData = Math.ceil(Math.abs(endHour - startHour) / (MS_IN_AN_HOUR)) - 1; +const hoursAgoInput = Inputs.range([hoursBackOfData, 0], {step: 1, value: 0, width: 150}); +const hoursAgo = Generators.input(hoursAgoInput); +hoursAgoInput.querySelector("input[type=number]").remove(); +``` + +```js +// Get current date in readable format +const formatDate = d3.utcFormat("%B %d, %Y"); +const currentHour = new Date(endHour.getTime() - hoursAgo * MS_IN_AN_HOUR); +const currentDate = d3.timeFormat("%-d %b %Y")(currentHour); +``` + +```js +function centerResize(render) { + const div = resize(render); + div.style.display = "flex"; + div.style.flexDirection = "column"; + div.style.alignItems = "center"; + return div; +} +``` + +
+
+

Change in demand by balancing authority

+

Percent change in electricity demand from previous hour

+
+
+

${hourFormat(currentHour)}

+
${currentDate}
+
+
-${hoursBackOfData} hrs
+ ${hoursAgoInput} +
now
+
+
+ ${centerResize((width) => balancingAuthoritiesMap({ + baHourlyChange, + baHourlyLatest, + eiaConnRefSpatial, + eiaPoints, + genOnlyBA, + nation, + statemesh, + width + }))} + ${centerResize((width) => balancingAuthoritiesLegend(width))} +
+ Balancing authority location and size are representative. Dates shown in your local time. +
+
+
+
+

Top 5 balancing authorities by demand on ${currentDate} at ${hourFormat(currentHour)} (GWh)

+ ${resize((width, height) => top5BalancingAuthoritiesChart(width, height, top5LatestDemand, maxDemand))} +
+
+

US electricity generation demand vs. day-ahead forecast (GWh)

+ ${resize((width, height) => usGenDemandForecastChart(width, height, usDemandGenForecast, currentHour))} +
+
+

Neighboring country interchange (GWh)

+ ${resize((width, height) => countryInterchangeChart(width, height, usDemandGenForecast, countryInterchangeSeries, currentHour))} +
+
+ +
+ ${Inputs.table(baHourlyClean, {rows: 16})} +
+ +
This page reenvisions parts of the US Energy Information Administration’s Hourly Electric Grid Monitor. Visit About the EIA-930 data to learn more about data collection and quality, the US electric grid, and balancing authorities responsible for nationwide electricity interchange.

diff --git a/examples/geotiff/.gitignore b/examples/geotiff/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/geotiff/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/geotiff/README.md b/examples/geotiff/README.md new file mode 100644 index 000000000..b973b0cd3 --- /dev/null +++ b/examples/geotiff/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# GeoTIFF + +View live: + +This Observable Framework example demonstrates how to use the [geotiff.js library](https://geotiffjs.github.io/) to read a GeoTIFF file, and then to display it as a raster plot using Observable Plot. The code is in [`src/index.md`](./src/index.md?plain=1). The example data represents global surface temperatures. diff --git a/examples/geotiff/observablehq.config.js b/examples/geotiff/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/geotiff/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/geotiff/package.json b/examples/geotiff/package.json new file mode 100644 index 000000000..0a03a1af8 --- /dev/null +++ b/examples/geotiff/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.1" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/geotiff/src/.gitignore b/examples/geotiff/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/geotiff/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/geotiff/src/index.md b/examples/geotiff/src/index.md new file mode 100644 index 000000000..9ee18c2b9 --- /dev/null +++ b/examples/geotiff/src/index.md @@ -0,0 +1,61 @@ +# GeoTIFF + +This example demonstrates how to read a GeoTIFF file using [geotiff.js](https://geotiffjs.github.io/) and then visualize it with Observable Plot’s [raster mark](https://observablehq.com/plot/marks/raster). The data represents global surface temperatures (from an unknown source, by way of [Roger Veciana](https://gist.github.com/rveciana/de0bd586eafd7fcdfe29227ccbdcd511)). + +To start, let’s import `fromArrayBuffer` from geotiff.js: + +```js echo +import {fromArrayBuffer} from "npm:geotiff"; +``` + +Then we’ll declare a `FileAttachment` for the GeoTIFF file and load it as an `ArrayBuffer` (since it’s binary). `FileAttachment.arrayBuffer` returns a `Promise`, which we chain with the `fromArrayBuffer` constructor. + +```js echo +const sfctmp = FileAttachment("sfctmp.tiff").arrayBuffer().then(fromArrayBuffer); +``` + +Now `sfctmp` is a promise to a `GeoTIFF`. (Promises are implicitly awaited across code blocks, so we don’t need to explicitly `await` below.) This object allows us to read the contents and metadata of the parsed GeoTIFF file. + +```js echo +const image = await sfctmp.getImage(); +const [values] = await image.readRasters(); +``` + +Now let’s visualize surface temperature using a raster plot. Since the values are represented as a one-dimensional array of numbers, we can use them as the raster mark’s data; but we also need to specify the `width` and `height` of the grid. + +```js echo +Plot.plot({ + width, + aspectRatio: 1, // preserve the aspect ratio of the data + color: {label: "SFCTMP", legend: true}, + y: {reverse: true}, + marks: [ + Plot.raster(values, {width: image.getWidth(), height: image.getHeight()}) + ] +}) +``` + +(I’m not sure what the temperature units are here… it might be degrees Fahrenheit?) + +We can use [Plot’s projection system](https://observablehq.com/plot/features/projections) to apply a suitable global projection. Below we use the Equal Earth projection, an equal-area projection preserving the relative size of areas. The `x1`, `y1`, `x2`, and `y2` options specify the bounds of the grid in geographic coordinates, while the `clip` option clips the data to the globe. + +```js echo +Plot.plot({ + width, + projection: "equal-earth", + color: {label: "SFCTMP", legend: true}, + marks: [ + Plot.raster(values, { + width: image.getWidth(), + height: image.getHeight(), + x1: 0, + y1: 90, + x2: 360, + y2: -90, + interpolate: "barycentric", + clip: "sphere" + }), + Plot.graticule({stroke: "black"}) + ] +}) +``` diff --git a/examples/geotiff/src/sfctmp.tiff b/examples/geotiff/src/sfctmp.tiff new file mode 100644 index 000000000..5e864a2cb Binary files /dev/null and b/examples/geotiff/src/sfctmp.tiff differ diff --git a/examples/google-analytics/.gitignore b/examples/google-analytics/.gitignore index 60cc25a09..0210d7df8 100644 --- a/examples/google-analytics/.gitignore +++ b/examples/google-analytics/.gitignore @@ -1,6 +1,5 @@ .DS_Store .env -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ yarn-error.log diff --git a/examples/google-analytics/README.md b/examples/google-analytics/README.md index f58f5e451..165d7c9a8 100644 --- a/examples/google-analytics/README.md +++ b/examples/google-analytics/README.md @@ -1,8 +1,10 @@ -# Google analytics +[Framework examples →](../) -This dashboard tracks data from Google Analytics using the [Google Analytics Data API](https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries). It contains a single page in `docs/index.md`. +# Google Analytics -View the [live project](https://observablehq.com/framework/examples/google-analytics/). +View live: + +This Observable Framework example tracks data from Google Analytics using the [Google Analytics Data API](https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries). It contains a single page in `src/index.md`. ## Data loaders @@ -14,10 +16,14 @@ GA_CLIENT_EMAIL=xxxx@yyy.gserviceaccount.com GA_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nxxxxxxxxxx-----END PRIVATE KEY-----\n" ``` +> [!TIP] +> It is good practice to add `.env` to your `.gitignore` file to avoid +> leaking these secret variables. + There is also a hard-coded path in the data loaders (in this case, to define a `stringFilter` that restricts the loader to views on the Observable Plot documentation); you can modify it with a different path or remove it entirely. The Google Analytics [API Quickstart](https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries) guide will walk you through how to set this up for your own instance of Google Analytics. ## Charts -The dashboard displays a variety of charts, made with [Observable Plot](https://observablehq.com/plot/). With the key numbers at the top, a line chart or an area chart. Activity by country is represented by a choropleth map. Active users use a horizon chart, faceted by channel. The “new vs. returning” chart is a Marimekko. Finally, the activity by day and hour is a punchcard chart. The code for each of these charts is available in [docs/index.md](https://github.com/observablehq/framework/blob/main/examples/google-analytics/docs/index.md). +The dashboard displays a variety of charts, made with [Observable Plot](https://observablehq.com/plot/). With the key numbers at the top, a line chart or an area chart. Active users are displayed with a horizon chart faceted by channel. The “new vs. returning” chart is a Marimekko. Finally, the activity by day and hour is a punchcard chart. The code for each of these charts is available in [`src/index.md`](./src/index.md?plain=1). diff --git a/examples/google-analytics/docs/components/trend.js b/examples/google-analytics/docs/components/trend.js deleted file mode 100644 index 53ba00142..000000000 --- a/examples/google-analytics/docs/components/trend.js +++ /dev/null @@ -1,31 +0,0 @@ -import * as d3 from "npm:d3"; -import {html} from "npm:htl"; - -export function trend( - value /*: number */, - { - format = "+d", - positive = "green", - negative = "red", - base = "muted", - positiveSuffix = " ↗︎", - negativeSuffix = " ↘︎", - baseSuffix = "" - } = {} /* - as { - format: string | ((x: number) => string); - positive: string; - negative: string; - base: string; - positiveSuffix: string; - negativeSuffix: string; - baseSuffix: string; - } - */ -) /*: Node */ { - if (typeof format === "string") format = d3.format(format); - if (typeof format !== "function") throw new Error(`unsupported format ${format}`); - return html`${format(value)}${ - value > 0 ? positiveSuffix : value < 0 ? negativeSuffix : baseSuffix - }`; -} diff --git a/examples/google-analytics/docs/data/countries-110m.json.ts b/examples/google-analytics/docs/data/countries-110m.json.ts deleted file mode 100644 index f959d20b4..000000000 --- a/examples/google-analytics/docs/data/countries-110m.json.ts +++ /dev/null @@ -1,7 +0,0 @@ -export {}; - -process.stdout.write( - await fetch( - "https://static.observableusercontent.com/files/33f462daa7c36572a70ef54acb6e2521ea40271b4c8df544214ba731d91b9e4d927ed22f559881096780fc81711bea4ca9d12c9115c59ce2415ea7f1cb5115e3?response-content-disposition=attachment%3Bfilename*%3DUTF-8%27%27world-110m-2020.json" - ).then((d) => d.text()) -); diff --git a/examples/google-analytics/docs/data/google-analytics-channel-breakdown.csv.js b/examples/google-analytics/docs/data/google-analytics-channel-breakdown.csv.js deleted file mode 100644 index 815e96b2d..000000000 --- a/examples/google-analytics/docs/data/google-analytics-channel-breakdown.csv.js +++ /dev/null @@ -1,39 +0,0 @@ -import "dotenv/config"; -import {BetaAnalyticsDataClient} from "@google-analytics/data"; -import {csvFormat} from "d3-dsv"; - -const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; - -const analyticsDataClient = new BetaAnalyticsDataClient({ - credentials: { - client_email: GA_CLIENT_EMAIL, - private_key: GA_PRIVATE_KEY - } -}); - -const [response] = await analyticsDataClient.runReport({ - property: `properties/${GA_PROPERTY_ID}`, - dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], - dimensions: [{name: "firstUserDefaultChannelGroup"}, {name: "newVsReturning"}], - metrics: [{name: "active28DayUsers"}], - orderBys: [{dimension: {dimensionName: "firstUserDefaultChannelGroup"}},{dimension: {dimensionName: "newVsReturning"}}], - dimensionFilter: { - filter: { - fieldName: "fullPageUrl", - stringFilter: { - value: "observablehq.com/plot/" - } - } - } -}); - -const types = ["new", "returning"]; -process.stdout.write( - csvFormat( - response.rows.map((d) => ({ - channelGroup: d.dimensionValues[0].value, - type: types.includes(d.dimensionValues[1].value) ? d.dimensionValues[1].value : "Unknown", - active28d: d.metricValues[0].value - })) - ) -); diff --git a/examples/google-analytics/docs/data/google-analytics-channels.csv.js b/examples/google-analytics/docs/data/google-analytics-channels.csv.js deleted file mode 100644 index e0ea00e28..000000000 --- a/examples/google-analytics/docs/data/google-analytics-channels.csv.js +++ /dev/null @@ -1,37 +0,0 @@ -import "dotenv/config"; -import {BetaAnalyticsDataClient} from "@google-analytics/data"; -import {csvFormat} from "d3-dsv"; - -const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; - -const analyticsDataClient = new BetaAnalyticsDataClient({ - credentials: { - client_email: GA_CLIENT_EMAIL, - private_key: GA_PRIVATE_KEY - } -}); - -const [response] = await analyticsDataClient.runReport({ - property: `properties/${GA_PROPERTY_ID}`, - dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], - dimensions: [{name: "date"}, {name: "firstUserDefaultChannelGroup"}], - metrics: [{name: "active28DayUsers"}, {name: "bounceRate"}, {name: "engagementRate"}, {name: "totalUsers"}], - orderBys: [{dimension: {dimensionName: "date"}}] -}); - -process.stdout.write( - csvFormat( - response.rows.map((d) => ({ - date: formatDate(d.dimensionValues[0].value), - channelGroup: d.dimensionValues[1].value, - active28d: d.metricValues[0].value, - bounceRate: d.metricValues[1].value, - engagementRate: d.metricValues[2].value, - totalUsers: d.metricValues[3].value - })) - ) -); - -function formatDate(date) { - return `${date.slice(0, 4)}-${date.slice(4, 6)}-${date.slice(6, 8)}`; -} diff --git a/examples/google-analytics/docs/data/google-analytics-country.csv.js b/examples/google-analytics/docs/data/google-analytics-country.csv.js deleted file mode 100644 index 7737adbcf..000000000 --- a/examples/google-analytics/docs/data/google-analytics-country.csv.js +++ /dev/null @@ -1,36 +0,0 @@ -import "dotenv/config"; -import {BetaAnalyticsDataClient} from "@google-analytics/data"; -import {csvFormat} from "d3-dsv"; - -const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; - -const analyticsDataClient = new BetaAnalyticsDataClient({ - credentials: { - client_email: GA_CLIENT_EMAIL, - private_key: GA_PRIVATE_KEY - } -}); - -const [response] = await analyticsDataClient.runReport({ - property: `properties/${GA_PROPERTY_ID}`, - dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], - dimensions: [{name: "country"}], - metrics: [{name: "engagementRate"}], - dimensionFilter: { - filter: { - fieldName: "fullPageUrl", - stringFilter: { - value: "observablehq.com/plot/" - } - } - } -}); - -process.stdout.write( - csvFormat( - response.rows.map((d) => ({ - country: d.dimensionValues[0].value, - engagementRate: d.metricValues[0].value - })) - ) -); diff --git a/examples/google-analytics/docs/data/google-analytics-time-of-day.csv.js b/examples/google-analytics/docs/data/google-analytics-time-of-day.csv.js deleted file mode 100644 index 4033ce68a..000000000 --- a/examples/google-analytics/docs/data/google-analytics-time-of-day.csv.js +++ /dev/null @@ -1,37 +0,0 @@ -import "dotenv/config"; -import {BetaAnalyticsDataClient} from "@google-analytics/data"; -import {csvFormat} from "d3-dsv"; - -const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; - -const analyticsDataClient = new BetaAnalyticsDataClient({ - credentials: { - client_email: GA_CLIENT_EMAIL, - private_key: GA_PRIVATE_KEY - } -}); - -const [response] = await analyticsDataClient.runReport({ - property: `properties/${GA_PROPERTY_ID}`, - dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], - dimensions: [{name: "hour"}, {name: "dayOfWeekName"}], - metrics: [{name: "activeUsers"}], - dimensionFilter: { - filter: { - fieldName: "fullPageUrl", - stringFilter: { - value: "observablehq.com/plot/" - } - } - } -}); - -process.stdout.write( - csvFormat( - response.rows.map((d) => ({ - hour: d.dimensionValues[0].value, - dayOfWeek: d.dimensionValues[1].value, - activeUsers: d.metricValues[0].value - })) - ) -); diff --git a/examples/google-analytics/docs/index.md b/examples/google-analytics/docs/index.md deleted file mode 100644 index 04156cc79..000000000 --- a/examples/google-analytics/docs/index.md +++ /dev/null @@ -1,319 +0,0 @@ ---- -theme: dashboard -toc: false ---- - -```js -const summary = FileAttachment("data/google-analytics-summary.csv").csv({typed: true}); -const hourly = FileAttachment("data/google-analytics-time-of-day.csv").csv({typed: true}); -const channels = FileAttachment("data/google-analytics-channels.csv").csv({typed: true}); -const channelBreakdown = FileAttachment("data/google-analytics-channel-breakdown.csv").csv({typed: true}); -const countries = FileAttachment("data/google-analytics-country.csv").csv({typed: true}); -const world = FileAttachment("data/countries-110m.json").json(); -``` - -```js -import {svg} from "npm:htl"; -import {Marimekko} from "./components/marimekko.js"; -import {trend} from "./components/trend.js"; -``` - -```js -const bigPercent = d3.format(".0%"); -const bigNumber = d3.format(".3s"); -const date = d3.utcFormat("%m/%d/%Y"); -const color = Plot.scale({ - color: { - domain: ["", "Organic Search", "Direct", "Referral", "Organic Social", "Unassigned"] - } -}); -const bands = 5; -const opacityScale = d3.scaleLinear().domain([0, bands]).range([0.15, 0.85]); - -const filteredChannelBreakdown = channelBreakdown - .filter((d) => color.domain.includes(d.channelGroup) && d.type != "Unknown" && d.channelGroup !== 'Unassigned') - .sort((a, b) => color.domain.indexOf(b.channelGroup) - color.domain.indexOf(a.channelGroup)); - -const countryLookup = d3.rollup( - countries, - (v) => v[0].engagementRate, - (d) => (d.country === "United States" ? "United States of America" : d.country) -); - -const countryShapes = topojson.feature(world, world.objects.countries); -const countryData = countryShapes.features.map((d) => ({...d, value: countryLookup.get(d.properties.name)})); - -function getCompareValue(data, metric) { - const maxDate = data[data.length - 1].date; - const compareDate = d3.utcDay.offset(maxDate, -1); - const match = data.find(d => date(d.date) === date(compareDate))[metric]; - return data[data.length - 1][metric] - match; -} -``` - -```js -function lineChart(data, {width, height, metric}) { - return Plot.plot({ - width, - height: 94, - axis: null, - insetTop: 10, - insetLeft: -15, - insetRight: -16.5, - marks: [ - Plot.ruleY([0]), - Plot.lineY(data, { - x: "date", - y: metric, - tip: true, - }) - ] - }); -} - -function areaChart(data, {width, height, metric}) { - return Plot.plot({ - width, - height: 94, - axis: null, - insetTop: 10, - insetLeft: -15, - insetRight: -17, - marks: [ - Plot.ruleY([0]), - Plot.areaY(data, { - x: "date", - y: metric, - fillOpacity: 0.25 - }), - Plot.lineY(data, { - x: "date", - y: metric, - tip: true - }) - ] - }); -} - -function marrimekoChart(data, {width, height, xDim, yDim, metric, title, caption, color}) { - const xy = (options) => Marimekko({...options, x: xDim, y: yDim, value: metric}); - return Plot.plot({ - width, - height: height - 30, - subtitle: title, - caption, - label: null, - x: {percent: true, ticks: 10, tickFormat: (d) => (d === 100 ? `100%` : d)}, - y: {percent: true, ticks: 10, tickFormat: (d) => (d === 100 ? `100%` : d)}, - color, - marks: [ - Plot.text( - data, - xy({ - text: (d) => d[metric].toLocaleString("en"), - fontSize: 14, - fontWeight: 600, - stroke: yDim, - fill: "var(--theme-background)" - }) - ), - Plot.rect(data, xy({fill: yDim, fillOpacity: 1})), - Plot.frame({fill: "var(--theme-background)", fillOpacity: 0.2}), - Plot.text( - data, - xy({ - text: yDim, - fontSize: 11, - dy: -16, - fill: "var(--theme-background)" - }) - ), - Plot.text( - data, - xy({ - text: (d) => d[metric].toLocaleString("en"), - fontSize: 14, - fontWeight: 600, - fill: "var(--theme-background)" - }) - ), - Plot.text( - data, - Plot.selectMaxY( - xy({ - z: xDim, - text: (d) => `${d[xDim].slice(0, 1).toUpperCase()}${d[xDim].slice(1)}`, - anchor: "top", - lineAnchor: "bottom", - fontSize: 12, - dy: -6 - }) - ) - ) - ] - }); -} - -function horizonChart(data, {width, height, metric, title, caption, format, z, color, order}) { - const step = d3.max(data, (d) => d[metric]) / bands; - return Plot.plot({ - width, - height: height - 40, - subtitle: title, - caption, - axis: null, - marginTop: 20, - color, - y: {domain: [0, step]}, - x: {axis: true}, - fy: {axis: null, domain: order, padding: 0.05}, - facet: {data, y: z}, - marks: [ - d3.range(bands).map((i) => - Plot.areaY(data, { - x: "date", - y: (d) => d[metric] - i * step, - fill: z, - fillOpacity: opacityScale(i), - clip: true - }) - ), - Plot.tip(data, Plot.pointerX({x: "date", channels: {users: metric}, format: {fy: false}})), - Plot.text( - data, - Plot.selectFirst({ - text: z, - fontSize: 12, - frameAnchor: "top-left", - dx: 6, - dy: 6, - stroke: "var(--theme-background)", - paintOrder: "stroke", - fill: "currentColor" - }) - ) - ] - }); -} - -function Punchcard(data, {width, height, label}) { - const aggregatedValues = d3 - .rollups(data, (v) => d3.median(v, (d) => d.activeUsers), (d) => d.hour, (d) => d.dayOfWeek) - .flatMap((d) => d[1].map((d) => d[1])); - - return Plot.plot({ - caption: `${label.slice(0, 1).toUpperCase()}${label.slice(1)} per day and hour of week`, - width, - height: height - 10, - inset: 12, - padding: 0, - marginBottom: 10, - grid: true, - round: false, - label: null, - x: { - axis: "top", - domain: d3.range(24), - interval: 1, - tickFormat: (d) => (d % 12 || 12) + (d === 0 ? " AM" : d === 12 ? " PM" : "") - }, - y: { - domain: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], - tickFormat: (d) => d.substr(0, 3) - }, - r: {label, range: [1, 20], domain: d3.extent(aggregatedValues)}, - marks: [ - Plot.dot( - data, - Plot.group( - {r: "median"}, - { - y: "dayOfWeek", - x: "hour", - r: "activeUsers", - fill: "currentColor", - stroke: "var(--theme-background)", - sort: null, - tip: true - } - ) - ) - ] - }); -} - -function worldMap(data, {width, height, title, caption}) { - return Plot.plot({ - width, - height: height - 60, - caption, - projection: "equal-earth", - color: { - scheme: "cool", - legend: true, - label: "Engagement rate", - tickFormat: "%" - }, - marks: [ - Plot.graticule(), - Plot.geo(data, { - fill: "var(--theme-foreground-fainter)", - stroke: "var(--theme-foreground)", - strokeWidth: 0.25 - }), - Plot.geo(data, { - fill: "value", - stroke: "var(--theme-foreground)", - strokeWidth: 0.5 - }), - Plot.sphere() - ] - }); -} -``` - -# Google analytics - -_Summary of metrics from the [Google Analytics Data API](https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries), a sample of data pulled on ${date(d3.max(summary, d => d.date))}_ - -
-
-

Rolling 28-day Active users

- ${summary[summary.length-1].active28d.toLocaleString("en-US")} - ${trend(getCompareValue(summary, 'active28d'))} - ${resize((width) => areaChart(summary, {width, metric: 'active28d'}))} -
-
-

Engagement Rate

- ${bigPercent(summary[summary.length-1].engagementRate)} - ${trend(getCompareValue(summary, "engagementRate"), {format: "+.2%"})} - ${resize((width) => lineChart(summary, {width, metric: "engagementRate"}))} -
-
-

WAU to MAU ratio

- ${bigPercent(summary[summary.length-1].wauPerMau)} - ${trend(getCompareValue(summary, "wauPerMau"), {format: "+.2%"})} - ${resize((width) => lineChart(summary, {width, metric: 'wauPerMau'}))} -
-
-

Engaged Sessions

- ${summary[summary.length-1].engagedSessions.toLocaleString("en-US")} - ${trend(getCompareValue(summary, 'engagedSessions'))} - ${resize((width) => areaChart(summary, {width, metric: 'engagedSessions'}))} -
-
- -
-
- ${resize((width, height) => horizonChart(channels, {width, height, metric:'active28d', title: 'Active users by channel', caption: 'Rolling 28-day active users', format: 's', z: 'channelGroup', color, order: color.domain.slice(1)}))} -
-
- ${resize((width, height) => worldMap(countryData, {width, height, title: "Active users by country", caption: 'Current rolling 28-day active users by country', lookup: countryLookup}))} -
-
- ${resize((width, height) => marrimekoChart(filteredChannelBreakdown, {width, height: height - 12, metric:'active28d', title: 'New vs. returning users by channel', caption: 'Rolling 28-day active users by channel and split by new vs. returning', format: '%', yDim: 'channelGroup', xDim: 'type', color}))} -
-
- ${resize((width, height) => Punchcard(hourly, {width, height, label: "active users"}))} -
-
diff --git a/examples/google-analytics/observablehq.config.js b/examples/google-analytics/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/google-analytics/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/google-analytics/package.json b/examples/google-analytics/package.json index 85a4e7c83..6501be10f 100644 --- a/examples/google-analytics/package.json +++ b/examples/google-analytics/package.json @@ -1,19 +1,23 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { "@google-analytics/data": "^4.3.0", - "@observablehq/framework": "link:../..", + "@observablehq/framework": "^1.7.0", "dotenv": "^16.3.1" }, - "engines": { - "node": ">=20.6" - }, "devDependencies": { - "@types/node": "^20.10.6" + "@types/node": "^20.10.6", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" } } diff --git a/examples/google-analytics/src/.gitignore b/examples/google-analytics/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/google-analytics/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/google-analytics/docs/components/dailyPlot.js b/examples/google-analytics/src/components/dailyPlot.js similarity index 100% rename from examples/google-analytics/docs/components/dailyPlot.js rename to examples/google-analytics/src/components/dailyPlot.js diff --git a/examples/google-analytics/src/components/lineChart.js b/examples/google-analytics/src/components/lineChart.js new file mode 100644 index 000000000..e7488a558 --- /dev/null +++ b/examples/google-analytics/src/components/lineChart.js @@ -0,0 +1,15 @@ +import * as Plot from "npm:@observablehq/plot"; + +export function lineChart(data, {width, height = 94, x = "date", y, percent} = {}) { + return Plot.plot({ + width, + height, + axis: null, + margin: 0, + insetTop: 10, + insetLeft: -17, + insetRight: -17, + y: {zero: true, percent, domain: percent ? [0, 100] : undefined}, + marks: [Plot.areaY(data, {x, y, fillOpacity: 0.2}), Plot.lineY(data, {x, y, tip: true})] + }); +} diff --git a/examples/google-analytics/docs/components/marimekko.js b/examples/google-analytics/src/components/marimekkoChart.js similarity index 52% rename from examples/google-analytics/docs/components/marimekko.js rename to examples/google-analytics/src/components/marimekkoChart.js index 3df91ab64..ef874c1fd 100644 --- a/examples/google-analytics/docs/components/marimekko.js +++ b/examples/google-analytics/src/components/marimekkoChart.js @@ -1,7 +1,41 @@ import * as Plot from "npm:@observablehq/plot"; import * as d3 from "npm:d3"; -export function Marimekko({x, y, z, value = z, anchor = "middle", inset = 0.5, ...options} = {}) { +export function marimekkoChart(data, {x, y, value, color, ...options} = {}) { + const xy = (options) => Marimekko({...options, x, y, value}); + return Plot.plot({ + ...options, + label: null, + x: {percent: true, tickFormat: (d) => d + (d === 100 ? "%" : "")}, + y: {percent: true, tickFormat: (d) => d + (d === 100 ? "%" : "")}, + color, + marks: [ + Plot.rect(data, xy({fill: y})), + Plot.text(data, xy({text: y, dy: -16, fill: "black"})), + Plot.text(data, xy({text: (d) => d[value].toLocaleString("en-US"), fontSize: 14, fontWeight: 600, fill: "black"})), + Plot.text( + data, + Plot.selectMaxY( + xy({ + z: x, + text: (d) => capitalize(d[x]), + anchor: "top", + lineAnchor: "bottom", + fontSize: 12, + dy: -6 + }) + ) + ) + ] + }); +} + +function capitalize([t, ...text]) { + return t.toUpperCase() + text.join(""); +} + +// https://observablehq.com/@observablehq/plot-marimekko +function Marimekko({x, y, z, value = z, anchor = "middle", inset = 0.5, ...options} = {}) { const stackX = /\bleft$/i.test(anchor) ? Plot.stackX1 : /\bright$/i.test(anchor) ? Plot.stackX2 : Plot.stackX; const stackY = /^top\b/i.test(anchor) ? Plot.stackY2 : /^bottom\b/i.test(anchor) ? Plot.stackY1 : Plot.stackY; const [X, setX] = Plot.column(x); diff --git a/examples/google-analytics/src/components/punchcardChart.js b/examples/google-analytics/src/components/punchcardChart.js new file mode 100644 index 000000000..f3b3da8e6 --- /dev/null +++ b/examples/google-analytics/src/components/punchcardChart.js @@ -0,0 +1,50 @@ +import * as Plot from "npm:@observablehq/plot"; +import * as d3 from "npm:d3"; + +export function punchcardChart(data, {label, value, ...options} = {}) { + const aggregatedValues = d3 + .rollups( + data, + (v) => d3.median(v, (d) => d[value]), + (d) => d.hour, + (d) => d.dayOfWeek + ) + .flatMap((d) => d[1].map((d) => d[1])); + return Plot.plot({ + ...options, + inset: 12, + padding: 0, + marginBottom: 10, + grid: true, + round: false, + label: null, + x: { + axis: "top", + domain: d3.range(24), + interval: 1, + tickFormat: (d) => (d % 12 || 12) + (d === 0 ? " AM" : d === 12 ? " PM" : "") + }, + y: { + domain: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], + tickFormat: (d) => d.substr(0, 3) + }, + r: {label, range: [1, 15], domain: d3.extent(aggregatedValues)}, + marks: [ + Plot.dot( + data, + Plot.group( + {r: "median"}, + { + y: "dayOfWeek", + x: "hour", + r: value, + fill: "currentColor", + stroke: "var(--theme-background)", + sort: null, + tip: true + } + ) + ) + ] + }); +} diff --git a/examples/google-analytics/src/components/trendNumber.js b/examples/google-analytics/src/components/trendNumber.js new file mode 100644 index 000000000..895716114 --- /dev/null +++ b/examples/google-analytics/src/components/trendNumber.js @@ -0,0 +1,26 @@ +import {html} from "npm:htl"; + +export function trendNumber(data, {focus, value, ...options} = {}) { + const focusIndex = data.findIndex((d) => d === focus); + return formatTrend(focus[value] - data[focusIndex - 1]?.[value], options); +} + +export function formatTrend( + value, + { + locale, + format = {}, + positive = "green", + negative = "red", + base = "muted", + positiveSuffix = " ↗︎", + negativeSuffix = " ↘︎", + baseSuffix = "" + } = {} +) { + if (format.signDisplay === undefined) format = {...format, signDisplay: "always"}; + return html`${value.toLocaleString( + locale, + format + )}${value > 0 ? positiveSuffix : value < 0 ? negativeSuffix : baseSuffix}`; +} diff --git a/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv b/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv new file mode 100644 index 000000000..fc098a431 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv @@ -0,0 +1,15 @@ +channelGroup,type,active28d +Direct,Unknown,2285 +Direct,new,4231 +Direct,returning,12630 +Display,new,16 +Email,new,34 +Email,returning,90 +Organic Search,new,4005 +Organic Search,returning,9111 +Organic Social,new,100 +Organic Social,returning,206 +Referral,new,6773 +Referral,returning,10381 +Unassigned,new,15241 +Unassigned,returning,13010 \ No newline at end of file diff --git a/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv.js b/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv.js new file mode 100644 index 000000000..1716762a9 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics-channel-breakdown.csv.js @@ -0,0 +1,24 @@ +import {csvFormat} from "d3-dsv"; +import {runReport} from "./google-analytics.js"; + +const response = await runReport({ + dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], + dimensions: [{name: "firstUserDefaultChannelGroup"}, {name: "newVsReturning"}], + metrics: [{name: "active28DayUsers"}], + orderBys: [ + {dimension: {dimensionName: "firstUserDefaultChannelGroup"}}, + {dimension: {dimensionName: "newVsReturning"}} + ] +}); + +const types = new Set(["new", "returning"]); + +process.stdout.write( + csvFormat( + response.rows.map((d) => ({ + channelGroup: d.dimensionValues[0].value, + type: types.has(d.dimensionValues[1].value) ? d.dimensionValues[1].value : "Unknown", + active28d: d.metricValues[0].value + })) + ) +); diff --git a/examples/google-analytics/src/data/google-analytics-summary.csv b/examples/google-analytics/src/data/google-analytics-summary.csv new file mode 100644 index 000000000..17a16ea32 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics-summary.csv @@ -0,0 +1,254 @@ +date,active28d,engagementRate,wauPerMau,engagedSessions +2023-04-21,84,0.035087719298245612,1,2 +2023-04-24,186,0.018181818181818181,1,1 +2023-04-25,243,0.0547945205479452,1,4 +2023-04-26,1393,0.44657955418908529,1,581 +2023-04-27,4847,0.44076655052264807,0.99401691768103984,1771 +2023-04-28,7610,0.61857426867367227,0.98975032851511169,2178 +2023-04-29,8027,0.42139175257731959,0.987666625140152,327 +2023-04-30,8287,0.35918367346938773,0.9835887534692892,176 +2023-05-01,8654,0.39680232558139533,0.97896926276866192,273 +2023-05-02,9303,0.26871794871794874,0.97441685477802864,262 +2023-05-03,10056,0.20483005366726298,0.87619331742243434,229 +2023-05-04,10593,0.39701173959445035,0.578589634664401,372 +2023-05-05,10940,0.36863823933975243,0.34223034734917734,268 +2023-05-06,11101,0.39473684210526316,0.30871092694351859,135 +2023-05-07,11305,0.35714285714285715,0.29562140645731977,130 +2023-05-08,11517,0.26428571428571429,0.28167057393418427,148 +2023-05-09,11802,0.2361904761904762,0.2432638535841383,124 +2023-05-10,12177,0.28654970760233917,0.20587993758725465,196 +2023-05-11,13023,0.47456140350877191,0.21331490439990786,541 +2023-05-12,13196,0.31223628691983124,0.19862079418005457,148 +2023-05-13,13318,0.27962085308056872,0.1921459678630425,59 +2023-05-14,13441,0.32978723404255317,0.18212930585521911,62 +2023-05-15,13626,0.32830188679245281,0.177308087479818,174 +2023-05-16,13901,0.31203007518796994,0.17502337961297748,166 +2023-05-17,14151,0.403035413153457,0.165500671330648,239 +2023-05-18,14552,0.46268656716417911,0.13853852481491638,372 +2023-05-19,14697,0.3235294117647059,0.133902554719794,154 +2023-05-20,14737,0.32075471698113206,0.13248123351592614,68 +2023-05-21,14811,0.36071428571428571,0.135751783550949,101 +2023-05-22,14982,0.30409356725146197,0.13159466454310173,156 +2023-05-23,15088,0.29896907216494845,0.12466213989056629,145 +2023-05-24,14269,0.32644628099173556,0.11438122705820661,158 +2023-05-25,11492,0.31030150753768843,0.11260568793235973,247 +2023-05-26,9310,0.48714810281517745,0.13530808813827683,398 +2023-05-27,9007,0.42622950819672129,0.17439947351102336,130 +2023-05-28,8892,0.39273927392739272,0.21979848343201414,119 +2023-05-29,8724,0.32801822323462415,0.2267037552155772,144 +2023-05-30,8388,0.33170731707317075,0.23870691500749305,204 +2023-05-31,7905,0.31710914454277284,0.2601985754370818,215 +2023-06-01,7773,0.32926829268292684,0.26098535286284952,243 +2023-06-02,7665,0.38791423001949316,0.24840989399293287,199 +2023-06-03,7656,0.36546184738955823,0.25369094488188976,91 +2023-06-04,7589,0.26991150442477874,0.254181449569184,61 +2023-06-05,7516,0.2928709055876686,0.25480105434919043,152 +2023-06-06,7475,0.33962264150943394,0.23987930600955495,162 +2023-06-07,7298,0.30339321357285431,0.22708757637474541,152 +2023-06-08,6683,0.24840764331210191,0.20171399334868254,117 +2023-06-09,6592,0.28415300546448086,0.19210526315789472,104 +2023-06-10,6559,0.29213483146067415,0.20392727272727273,52 +2023-06-11,6556,0.31854838709677419,0.2071014708067152,79 +2023-06-12,6510,0.30580357142857145,0.19961837663290768,137 +2023-06-13,6433,0.30038759689922478,0.19889902940750398,155 +2023-06-14,6287,0.29113924050632911,0.19433907207470091,138 +2023-06-15,5989,0.34817813765182187,0.19580005915409643,172 +2023-06-16,5954,0.3075,0.20232874640858914,123 +2023-06-17,6001,0.30916030534351147,0.22352382460028494,81 +2023-06-18,6021,0.36827195467422097,0.23881074168797953,130 +2023-06-19,6100,0.3462897526501767,0.24883213952039862,196 +2023-06-20,6226,0.30563380281690139,0.26512265732134693,217 +2023-06-21,6381,0.36949685534591192,0.28291735166641757,235 +2023-06-22,6197,0.3563402889245586,0.29290246421720523,222 +2023-06-23,5968,0.33682008368200839,0.29678362573099415,161 +2023-06-24,5933,0.3,0.31227908406331645,75 +2023-06-25,5936,0.30745341614906835,0.32654709969300372,99 +2023-06-26,6031,0.35209003215434082,0.32378540908371578,219 +2023-06-27,6000,0.36376604850213978,0.317550894509562,255 +2023-06-28,6017,0.36445783132530118,0.31453329279416237,242 +2023-06-29,5996,0.33547351524879615,0.31784471015589527,209 +2023-06-30,6004,0.31692913385826771,0.32200548613227675,161 +2023-07-01,6007,0.31601731601731603,0.33460196638122425,73 +2023-07-02,6029,0.30930930930930933,0.33584,103 +2023-07-03,6116,0.31525423728813562,0.32107804954042685,186 +2023-07-04,6246,0.3089983022071307,0.30800665960345086,182 +2023-07-05,6334,0.27777777777777779,0.29562098341055149,175 +2023-07-06,6471,0.23763955342902712,0.28540017590149519,149 +2023-07-07,6541,0.25056433408577877,0.28244051963217048,111 +2023-07-08,6614,0.29078014184397161,0.28745236001172675,82 +2023-07-09,6737,0.31367292225201071,0.28928260238164394,117 +2023-07-10,6900,0.20344287949921752,0.28599357631615696,130 +2023-07-11,7033,0.19713831478537361,0.28297037738401193,124 +2023-07-12,7176,0.23966942148760331,0.28261159227181881,145 +2023-07-13,7346,0.22838499184339314,0.28222860125260962,140 +2023-07-14,7421,0.25604838709677419,0.28283870967741936,127 +2023-07-15,7412,0.27125506072874495,0.28261434511434513,67 +2023-07-16,7412,0.27793696275071633,0.28048305414881186,97 +2023-07-17,7406,0.23826086956521739,0.271882951653944,137 +2023-07-18,7461,0.21202531645569619,0.26944099378881986,134 +2023-07-19,7519,0.21469740634005763,0.2767527675276753,149 +2023-07-20,7559,0.26158940397350994,0.27774364016222197,158 +2023-07-21,7608,0.29938900203665986,0.27936821322803551,147 +2023-07-22,7614,0.27380952380952384,0.28627105858687452,69 +2023-07-23,7654,0.296,0.28891405561847239,111 +2023-07-24,7709,0.16307692307692306,0.286484499448597,106 +2023-07-25,7696,0.18330605564648117,0.27742246892723543,112 +2023-07-26,7672,0.17045454545454544,0.26460315548596891,105 +2023-07-27,7686,0.18380062305295949,0.262297053517739,118 +2023-07-28,7702,0.26377952755905509,0.26606621226874394,134 +2023-07-29,7749,0.35384615384615387,0.27461204220980756,92 +2023-07-30,7747,0.28173374613003094,0.27198007471980074,91 +2023-07-31,7720,0.21739130434782608,0.2599437033410843,115 +2023-08-01,7723,0.18790849673202614,0.25304253524521025,115 +2023-08-02,7760,0.23037542662116042,0.25195429945880937,135 +2023-08-03,7765,0.22300884955752212,0.24783445620789221,126 +2023-08-04,7778,0.28421052631578947,0.24571773220747889,135 +2023-08-05,7832,0.32415902140672781,0.25204442817038936,106 +2023-08-06,7813,0.32105263157894737,0.25469728601252611,122 +2023-08-07,7797,0.19604612850082373,0.25222837870392678,119 +2023-08-08,7786,0.228310502283105,0.25124851367419737,150 +2023-08-09,7769,0.25185185185185183,0.25282839109205668,170 +2023-08-10,7721,0.27065527065527067,0.2585196699748894,190 +2023-08-11,7680,0.29090909090909089,0.25881642512077296,144 +2023-08-12,7705,0.35338345864661652,0.26009412930393855,94 +2023-08-13,7688,0.32537313432835818,0.2596455950735202,109 +2023-08-14,7643,0.28469750889679718,0.24922658086870436,160 +2023-08-15,7549,0.24684684684684685,0.24048929663608562,137 +2023-08-16,7459,0.14168039538714991,0.23929747530186607,86 +2023-08-17,7395,0.23424878836833601,0.23665436654366542,145 +2023-08-18,7338,0.24943310657596371,0.23874952729106266,110 +2023-08-19,7349,0.27046263345195731,0.24831954498448811,76 +2023-08-20,7335,0.27575757575757576,0.25326882845188287,91 +2023-08-21,7287,0.14,0.253974358974359,84 +2023-08-22,7274,0.20875420875420875,0.25549381156857792,124 +2023-08-23,7195,0.14285714285714285,0.25488443366109054,70 +2023-08-24,7145,0.20106761565836298,0.25462962962962965,113 +2023-08-25,7094,0.24759615384615385,0.25788303022373416,103 +2023-08-26,7050,0.31336405529953915,0.26241421073879695,68 +2023-08-27,7042,0.29166666666666669,0.26472995090016366,91 +2023-08-28,7033,0.18552875695732837,0.25786079011018542,100 +2023-08-29,7025,0.18867924528301888,0.25138121546961328,110 +2023-08-30,7001,0.15752212389380532,0.25695818493602429,89 +2023-08-31,6984,0.20976491862567812,0.2600635593220339,116 +2023-09-01,6938,0.25925925925925924,0.26045703594814912,112 +2023-09-02,6881,0.29441624365482233,0.26646542261251371,58 +2023-09-03,6857,0.27758007117437722,0.26829606999027911,78 +2023-09-04,6822,0.16739130434782609,0.26075010303613133,77 +2023-09-05,6812,0.17679558011049723,0.25436341496414561,96 +2023-09-06,6816,0.16887417218543047,0.26060524182653338,102 +2023-09-07,6768,0.1860036832412523,0.25888256034716572,101 +2023-09-08,6775,0.26470588235294118,0.26157628739243272,126 +2023-09-09,6786,0.30543933054393307,0.27057006458859872,73 +2023-09-10,6810,0.26045016077170419,0.27551454932576297,81 +2023-09-11,6889,0.19636963696369636,0.2795476486001931,119 +2023-09-12,6881,0.21102661596958175,0.27111050773825685,111 +2023-09-13,6895,0.23076923076923078,0.27031754574811623,132 +2023-09-14,6910,0.78510998307952617,0.27649028801071668,464 +2023-09-15,6945,0.78125,0.27938993116479954,375 +2023-09-16,6930,0.74103585657370519,0.28475182180668224,186 +2023-09-17,6973,0.77873563218390807,0.28841118919663772,271 +2023-09-18,6988,0.76175548589341691,0.28117425262590895,486 +2023-09-19,6959,0.77894736842105261,0.28153927532398837,444 +2023-09-20,7033,0.76480263157894735,0.2809655718242976,465 +2023-09-21,7104,0.77408637873754149,0.28368794326241137,466 +2023-09-22,7150,0.73776908023483367,0.28440726702391844,377 +2023-09-23,7150,0.77689243027888444,0.29059829059829062,195 +2023-09-24,7124,0.78431372549019607,0.28920377867746289,240 +2023-09-25,7187,0.78842975206611565,0.28058405682715076,477 +2023-09-26,7260,0.79059180576631261,0.28121788283658788,521 +2023-09-27,7288,0.770764119601329,0.28021978021978022,464 +2023-09-28,7318,0.77289377289377292,0.27518490181076255,422 +2023-09-29,7366,0.78969072164948451,0.27375940808776628,383 +2023-09-30,7384,0.76923076923076927,0.277900194426442,200 +2023-10-01,7402,0.76393442622950825,0.28116017768487067,233 +2023-10-02,7442,0.79096045197740117,0.26963988209662948,420 +2023-10-03,7440,0.80839416058394165,0.25282592313489072,443 +2023-10-04,7451,0.78983050847457625,0.250592490956717,466 +2023-10-05,7431,0.76402321083172142,0.24862155388471177,395 +2023-10-06,7417,0.74743326488706363,0.24987399193548387,364 +2023-10-07,7459,0.76949152542372878,0.2592403120603658,227 +2023-10-08,7456,0.75415282392026584,0.26177536231884058,227 +2023-10-09,7458,0.78354203935599287,0.26038116874921113,438 +2023-10-10,7532,0.81986531986531985,0.26144920380199976,487 +2023-10-11,7522,0.78350515463917525,0.26437492271546925,532 +2023-10-12,7552,0.77621283255086071,0.27127985303123087,496 +2023-10-13,7568,0.75746924428822493,0.27554789460723961,431 +2023-10-14,7616,0.75,0.27964402105790925,222 +2023-10-15,7643,0.76978417266187049,0.28927806475998485,321 +2023-10-16,7630,0.7588325652841782,0.28413284132841327,494 +2023-10-17,7643,0.75846833578792339,0.28394612304332,515 +2023-10-18,7635,0.7720706260032103,0.28158757130719747,481 +2023-10-19,7641,0.78419452887538,0.27875196517112105,516 +2023-10-20,7641,0.76243093922651939,0.27918038785217708,414 +2023-10-21,7659,0.75735294117647056,0.2829601990049751,206 +2023-10-22,7702,0.79591836734693877,0.2840837827668381,312 +2023-10-23,7669,0.804159445407279,0.27306273062730629,464 +2023-10-24,7680,0.79420731707317072,0.2717339097022094,521 +2023-10-25,7683,0.77373417721518989,0.2740170734639894,489 +2023-10-26,7718,0.77674418604651163,0.27256295939269792,501 +2023-10-27,7726,0.759765625,0.27421903488513433,389 +2023-10-28,7741,0.81597222222222221,0.28026185770750989,235 +2023-10-29,7747,0.76010781671159033,0.27763913151984027,282 +2023-10-30,7803,0.771875,0.27566841655475521,494 +2023-10-31,7881,0.78148710166919577,0.26531343283582087,515 +2023-11-01,7831,0.80066445182724255,0.26127954165671996,482 +2023-11-02,7863,0.77272727272727271,0.256522770398482,442 +2023-11-03,7892,0.775390625,0.25993081235834425,397 +2023-11-04,7884,0.74264705882352944,0.26234269119070669,202 +2023-11-05,7941,0.78048780487804881,0.26720893529197526,288 +2023-11-06,7960,0.79937791601866248,0.26224441274369947,514 +2023-11-07,8017,0.812960235640648,0.26051103368176537,552 +2023-11-08,8047,0.82614942528735635,0.26796856944765424,575 +2023-11-09,8045,0.75903614457831325,0.27511769433918937,504 +2023-11-10,8035,0.764,0.274092905015022,382 +2023-11-11,8009,0.742671009771987,0.28103877623621487,228 +2023-11-12,7998,0.7686170212765957,0.27880818475529495,289 +2023-11-13,7923,0.7988826815642458,0.26828115770821026,429 +2023-11-14,7839,0.80467445742904842,0.25983046856604664,482 +2023-11-15,7882,0.785483870967742,0.2577683615819209,487 +2023-11-16,7910,0.84466019417475724,0.25529162746942613,522 +2023-11-17,7897,0.77844311377245512,0.25722748815165875,390 +2023-11-18,7889,0.7385159010600707,0.26329175245246456,209 +2023-11-19,7855,0.82913165266106448,0.26571463444403759,296 +2023-11-20,7860,0.820738137082601,0.26400862068965519,467 +2023-11-21,7837,0.80036297640653353,0.25952211970664774,441 +2023-11-22,7871,0.80840336134453783,0.25794678596656462,481 +2023-11-23,7861,0.7931034482758621,0.25041577571869805,391 +2023-11-24,7782,0.78696741854636587,0.24946030223075077,314 +2023-11-25,7808,0.788961038961039,0.25515651540888135,243 +2023-11-26,7844,0.75916230366492143,0.2592274678111588,290 +2023-11-27,7863,0.82440476190476186,0.25925482209176948,554 +2023-11-28,8198,0.65546218487394958,0.28597326082030367,624 +2023-11-29,8290,0.77291960507757407,0.29240292628024761,548 +2023-11-30,8295,0.78792822185970635,0.30131741920954846,483 +2023-12-01,8260,0.74901185770750989,0.30616864742501415,379 +2023-12-02,8279,0.761744966442953,0.30967964174991386,227 +2023-12-03,8244,0.7769028871391076,0.31100034774545032,296 +2023-12-04,8241,0.7969465648854962,0.305331362964647,522 +2023-12-05,8279,0.8197932053175776,0.26949798296727923,555 +2023-12-06,8229,0.785829307568438,0.26193693693693693,488 +2023-12-07,8209,0.77832512315270941,0.25949651607102719,474 +2023-12-08,8267,0.77372262773722633,0.26516267996825754,424 +2023-12-09,8407,0.71219512195121948,0.27937814357567442,292 +2023-12-10,8538,0.71031746031746035,0.28703913141823117,358 +2023-12-11,8617,0.84843982169390786,0.28313518273888155,571 +2023-12-12,8744,0.78441558441558445,0.28196053196053195,604 +2023-12-13,8768,0.79248120300751879,0.28533247808424206,527 +2023-12-14,8743,0.768033946251768,0.28687299893276413,543 +2023-12-15,8724,0.78251121076233188,0.28449946178686758,349 +2023-12-16,8692,0.7846153846153846,0.27786948387806759,204 +2023-12-17,8651,0.77945619335347427,0.26466666666666666,258 +2023-12-18,8675,0.77147487844408424,0.25568430257979885,476 +2023-12-19,8744,0.76766091051805341,0.23933369156367545,489 +2023-12-20,8714,0.75818181818181818,0.23411802644308288,417 +2023-12-21,8685,0.776937618147448,0.22366288492706646,411 +2023-12-22,8686,0.74193548387096775,0.22087431693989071,276 +2023-12-23,8624,0.76960784313725494,0.22250639386189258,157 +2023-12-24,8548,0.77391304347826084,0.21848362494392104,178 +2023-12-25,8363,0.77031802120141346,0.19695945945945945,218 +2023-12-26,7929,0.75668449197860965,0.17987633501967398,283 +2023-12-27,7758,0.79432624113475181,0.17112299465240641,336 +2023-12-28,7697,0.79732739420935417,0.17797619047619048,358 +2023-12-29,7656,0.7532133676092545,0.18496478017974252,293 +2023-12-30,7661,0.77902621722846443,0.19104884701214978,208 +2023-12-31,7594,0.71363636363636362,0.19416371905002527,157 \ No newline at end of file diff --git a/examples/google-analytics/docs/data/google-analytics-summary.csv.js b/examples/google-analytics/src/data/google-analytics-summary.csv.js similarity index 52% rename from examples/google-analytics/docs/data/google-analytics-summary.csv.js rename to examples/google-analytics/src/data/google-analytics-summary.csv.js index 902459ba9..92e897a6c 100644 --- a/examples/google-analytics/docs/data/google-analytics-summary.csv.js +++ b/examples/google-analytics/src/data/google-analytics-summary.csv.js @@ -1,30 +1,11 @@ -import "dotenv/config"; -import {BetaAnalyticsDataClient} from "@google-analytics/data"; import {csvFormat} from "d3-dsv"; +import {runReport} from "./google-analytics.js"; -const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; - -const analyticsDataClient = new BetaAnalyticsDataClient({ - credentials: { - client_email: GA_CLIENT_EMAIL, - private_key: GA_PRIVATE_KEY - } -}); - -const [response] = await analyticsDataClient.runReport({ - property: `properties/${GA_PROPERTY_ID}`, +const response = await runReport({ dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], dimensions: [{name: "date"}], metrics: [{name: "active28DayUsers"}, {name: "engagementRate"}, {name: "wauPerMau"}, {name: "engagedSessions"}], - orderBys: [{dimension: {dimensionName: "date"}}], - dimensionFilter: { - filter: { - fieldName: "fullPageUrl", - stringFilter: { - value: "observablehq.com/plot/" - } - } - } + orderBys: [{dimension: {dimensionName: "date"}}] }); process.stdout.write( diff --git a/examples/google-analytics/src/data/google-analytics-time-of-day.csv b/examples/google-analytics/src/data/google-analytics-time-of-day.csv new file mode 100644 index 000000000..875e58706 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics-time-of-day.csv @@ -0,0 +1,169 @@ +hour,dayOfWeek,activeUsers,newUsers +4,Tuesday,223,57 +1,Tuesday,216,41 +6,Wednesday,216,32 +6,Tuesday,209,42 +0,Wednesday,202,27 +7,Tuesday,202,33 +2,Wednesday,199,29 +6,Monday,199,36 +8,Wednesday,195,37 +2,Tuesday,192,23 +5,Wednesday,185,41 +9,Tuesday,185,22 +9,Wednesday,185,42 +7,Wednesday,181,23 +0,Tuesday,174,28 +1,Wednesday,174,29 +11,Tuesday,174,18 +3,Tuesday,174,22 +8,Tuesday,174,31 +1,Monday,171,27 +1,Thursday,167,26 +7,Thursday,167,46 +0,Thursday,164,25 +8,Monday,164,29 +7,Monday,160,22 +11,Wednesday,157,25 +3,Wednesday,157,19 +7,Friday,157,35 +8,Thursday,157,6 +23,Monday,153,17 +4,Wednesday,153,25 +23,Tuesday,150,28 +9,Thursday,150,26 +10,Tuesday,146,36 +10,Wednesday,146,23 +5,Thursday,146,16 +5,Tuesday,146,27 +6,Friday,146,26 +2,Monday,143,31 +3,Monday,143,17 +12,Monday,139,17 +2,Friday,139,22 +5,Monday,139,26 +9,Friday,139,47 +13,Monday,136,16 +22,Monday,136,9 +19,Wednesday,132,6 +0,Monday,129,22 +12,Tuesday,129,19 +12,Wednesday,129,37 +22,Tuesday,129,29 +9,Monday,129,23 +11,Monday,125,33 +11,Thursday,125,18 +18,Wednesday,125,32 +14,Monday,122,19 +0,Friday,118,23 +1,Friday,118,30 +6,Thursday,118,20 +10,Monday,115,16 +13,Wednesday,115,28 +22,Wednesday,115,32 +13,Tuesday,111,3 +18,Tuesday,111,16 +13,Thursday,108,9 +17,Tuesday,108,15 +17,Wednesday,108,25 +19,Monday,108,22 +20,Monday,108,20 +3,Friday,108,6 +4,Monday,108,25 +8,Friday,108,33 +15,Wednesday,104,15 +18,Sunday,104,16 +23,Sunday,104,16 +4,Thursday,104,31 +10,Thursday,101,19 +22,Sunday,101,26 +23,Wednesday,101,26 +4,Friday,101,9 +11,Friday,98,6 +14,Wednesday,98,9 +23,Thursday,98,23 +12,Thursday,94,10 +14,Friday,94,19 +14,Thursday,94,22 +16,Tuesday,94,22 +18,Monday,94,22 +10,Friday,91,13 +11,Saturday,91,39 +16,Wednesday,91,7 +17,Sunday,91,13 +17,Thursday,91,13 +19,Tuesday,91,3 +20,Tuesday,91,24 +22,Thursday,91,12 +3,Thursday,91,6 +14,Tuesday,87,16 +18,Thursday,87,33 +8,Sunday,87,19 +10,Sunday,84,23 +12,Friday,84,24 +16,Thursday,84,26 +19,Sunday,84,33 +5,Friday,84,23 +1,Sunday,80,27 +15,Tuesday,80,16 +2,Thursday,80,12 +3,Sunday,80,16 +13,Friday,77,14 +15,Thursday,77,16 +16,Monday,77,10 +20,Sunday,77,6 +21,Wednesday,77,15 +13,Saturday,73,34 +14,Sunday,73,30 +15,Monday,73,13 +17,Monday,73,12 +20,Wednesday,73,9 +10,Saturday,70,27 +12,Sunday,70,13 +19,Thursday,70,10 +21,Monday,70,25 +8,Saturday,70,7 +9,Saturday,70,13 +15,Sunday,66,10 +16,Friday,66,26 +2,Saturday,66,23 +9,Sunday,66,19 +11,Sunday,63,3 +21,Tuesday,63,12 +4,Saturday,63,6 +4,Sunday,63,27 +15,Saturday,59,21 +18,Saturday,59,22 +20,Thursday,59,3 +6,Saturday,59,6 +6,Sunday,59,7 +0,Saturday,56,16 +1,Saturday,56,13 +14,Saturday,56,14 +15,Friday,56,10 +21,Sunday,56,7 +21,Thursday,56,6 +5,Sunday,56,17 +12,Saturday,52,10 +19,Saturday,52,13 +23,Saturday,52,13 +17,Friday,49,7 +22,Saturday,49,19 +5,Saturday,49,6 +16,Saturday,45,10 +16,Sunday,45,6 +17,Saturday,45,20 +7,Saturday,45,0 +7,Sunday,45,10 +18,Friday,42,13 +0,Sunday,38,17 +20,Saturday,38,10 +13,Sunday,35,6 +2,Sunday,35,17 +22,Friday,35,10 +19,Friday,31,9 +21,Saturday,28,10 +20,Friday,24,6 +23,Friday,21,3 +3,Saturday,21,3 +21,Friday,14,3 \ No newline at end of file diff --git a/examples/google-analytics/src/data/google-analytics-time-of-day.csv.js b/examples/google-analytics/src/data/google-analytics-time-of-day.csv.js new file mode 100644 index 000000000..b641cdf00 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics-time-of-day.csv.js @@ -0,0 +1,19 @@ +import {csvFormat} from "d3-dsv"; +import {runReport} from "./google-analytics.js"; + +const response = await runReport({ + dateRanges: [{startDate: "2023-04-01", endDate: "2023-12-31"}], + dimensions: [{name: "hour"}, {name: "dayOfWeekName"}], + metrics: [{name: "activeUsers"}, {name: "newUsers"}] +}); + +process.stdout.write( + csvFormat( + response.rows.map((d) => ({ + hour: d.dimensionValues[0].value, + dayOfWeek: d.dimensionValues[1].value, + activeUsers: d.metricValues[0].value, + newUsers: d.metricValues[1].value + })) + ) +); diff --git a/examples/google-analytics/src/data/google-analytics.js b/examples/google-analytics/src/data/google-analytics.js new file mode 100644 index 000000000..6b250b4c4 --- /dev/null +++ b/examples/google-analytics/src/data/google-analytics.js @@ -0,0 +1,33 @@ +import "dotenv/config"; +import {BetaAnalyticsDataClient} from "@google-analytics/data"; + +const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; + +const analyticsClient = new BetaAnalyticsDataClient({ + credentials: { + client_email: GA_CLIENT_EMAIL, + private_key: GA_PRIVATE_KEY + } +}); + +const defaultProperty = `properties/${GA_PROPERTY_ID}`; + +const defaultDimensionFilter = { + filter: { + fieldName: "fullPageUrl", + stringFilter: { + value: "observablehq.com/plot", + matchType: "BEGINS_WITH", + caseSensitive: false + } + } +}; + +export async function runReport({ + property = defaultProperty, + dimensionFilter = defaultDimensionFilter, + ...options +} = {}) { + const [response] = await analyticsClient.runReport({property, dimensionFilter, ...options}); + return response; +} diff --git a/examples/google-analytics/src/index.md b/examples/google-analytics/src/index.md new file mode 100644 index 000000000..ed062056d --- /dev/null +++ b/examples/google-analytics/src/index.md @@ -0,0 +1,104 @@ +--- +theme: dashboard +--- + +# Google analytics + +```js +const summary = FileAttachment("data/google-analytics-summary.csv").csv({typed: true}); +const hourly = FileAttachment("data/google-analytics-time-of-day.csv").csv({typed: true}); +const channelBreakdown = FileAttachment("data/google-analytics-channel-breakdown.csv").csv({typed: true}); +``` + +```js +import {trendNumber} from "./components/trendNumber.js"; +import {lineChart} from "./components/lineChart.js"; +import {marimekkoChart} from "./components/marimekkoChart.js"; +import {punchcardChart} from "./components/punchcardChart.js"; +``` + +```js +const color = Plot.scale({ + color: { + domain: ["", "Organic Search", "Direct", "Referral", "Organic Social", "Unassigned"] + } +}); + +const filteredChannelBreakdown = channelBreakdown + .filter((d) => color.domain.includes(d.channelGroup) && d.type != "Unknown" && d.channelGroup !== "Unassigned") + .sort((a, b) => color.domain.indexOf(b.channelGroup) - color.domain.indexOf(a.channelGroup)); +``` + + + +```js +// Like Generators.input, but works with resize, and adds a default value. +function generateValue(target, defaultValue) { + return Generators.observe((notify) => { + const changed = ({target}) => notify(target.value ?? defaultValue); + if (defaultValue !== undefined) notify(defaultValue); + target.addEventListener("input", changed); + return () => target.removeEventListener("input", changed); + }); +} + +const activeUsersChart = resize((width) => lineChart(summary, {width, y: "active28d"})); +const engagementRateChart = resize((width) => lineChart(summary, {width, y: "engagementRate", percent: true})); +const wauPerMauChart = resize((width) => lineChart(summary, {width, y: "wauPerMau", percent: true})); +const engagedSessionsChart = resize((width) => lineChart(summary, {width, y: "engagedSessions"})); + +const activeUsers = generateValue(activeUsersChart, summary[summary.length - 1]); +const engagementRate = generateValue(engagementRateChart, summary[summary.length - 1]); +const wauPerMau = generateValue(wauPerMauChart, summary[summary.length - 1]); +const engagedSessions = generateValue(engagedSessionsChart, summary[summary.length - 1]); +``` + +
+
+

Rolling 28-day active users

+ ${activeUsers.active28d.toLocaleString("en-US")} + ${trendNumber(summary, {focus: activeUsers, value: "active28d"})} + ${activeUsersChart} +
+
+

Engagement rate

+ ${engagementRate.engagementRate.toLocaleString("en-US", {style: "percent"})} + ${trendNumber(summary, {focus: engagementRate, value: "engagementRate", format: {style: "percent"}})} + ${engagementRateChart} +
+
+

WAU/MAU ratio

+ ${wauPerMau.wauPerMau.toLocaleString("en-US", {style: "percent"})} + ${trendNumber(summary, {focus: wauPerMau, value: "wauPerMau", format: {style: "percent"}})} + ${wauPerMauChart} +
+
+

Engaged sessions

+ ${engagedSessions.engagedSessions.toLocaleString("en-US")} + ${trendNumber(summary, {focus: engagedSessions, value: "engagedSessions"})} + ${engagedSessionsChart} +
+
+ +
+
+

Active users by channel

+

Rolling 28-day active users

+
${resize((width, height) => marimekkoChart(filteredChannelBreakdown, {width, height, x: "type", y: "channelGroup", value: "active28d", color}))}
+
+
+

Active users per day and hour of week

+ ${resize((width) => punchcardChart(hourly, {width, label: "active users", value: "activeUsers"}))} +
+
+

New users per day and hour of week

+ ${resize((width) => punchcardChart(hourly, {width, label: "new users", value: "newUsers"}))} +
+
diff --git a/examples/hello-world/.gitignore b/examples/hello-world/.gitignore index a82829d70..e58735f55 100644 --- a/examples/hello-world/.gitignore +++ b/examples/hello-world/.gitignore @@ -1,5 +1,4 @@ .DS_Store -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ yarn-error.log diff --git a/examples/hello-world/README.md b/examples/hello-world/README.md index 2662f6dbe..f567497db 100644 --- a/examples/hello-world/README.md +++ b/examples/hello-world/README.md @@ -1,5 +1,7 @@ +[Framework examples →](../) + # Hello, world! -This is a minimal example Observable Framework project. It contains a single page in `docs/index.md`, with no configuration file. +View live: -View the [live project](https://observablehq.com/framework/examples/hello-world/). +This is a minimal Observable Framework example. It contains a single page in [`src/index.md`](./src/index.md?plain=1) and almost no configuration. diff --git a/examples/hello-world/docs/index.md b/examples/hello-world/docs/index.md deleted file mode 100644 index 9c0b68bd1..000000000 --- a/examples/hello-world/docs/index.md +++ /dev/null @@ -1,3 +0,0 @@ -# Hello, world! - -This is a test. diff --git a/examples/hello-world/observablehq.config.js b/examples/hello-world/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/hello-world/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index 6e3619044..974d8b80c 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -1,14 +1,20 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../.." + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/hello-world/src/.gitignore b/examples/hello-world/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/hello-world/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/hello-world/src/index.md b/examples/hello-world/src/index.md new file mode 100644 index 000000000..3d219a418 --- /dev/null +++ b/examples/hello-world/src/index.md @@ -0,0 +1,19 @@ +# Hello, world! + +This is a minimal example of Observable Framework. + +This project has the following structure: + +```ini +. +├─ src +│ └─ index.md +├─ observablehq.config.js +└─ package.json +``` + +You’re currently reading the main (and only) page of this project, `src/index.md`, which lives inside the source root, `src`. + +The `observablehq.config.js` project config file is optional. + +The last file, `package.json`, is used to install Observable Framework via npm. It also provides a few useful common commands such as building and deploying. diff --git a/examples/hotel-bookings/.gitignore b/examples/hotel-bookings/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/hotel-bookings/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/hotel-bookings/README.md b/examples/hotel-bookings/README.md new file mode 100644 index 000000000..175039bb2 --- /dev/null +++ b/examples/hotel-bookings/README.md @@ -0,0 +1,35 @@ +[Framework examples →](../) + +# Hotel bookings + +View live: + +This dashboard explores reservation data for a resort in Portugal from Antonio _et al._ (2021), recorded between July 2015 and August 2017. Charts highlight differences in daily rates, visit seasons, guest nationality, and room type reserved for different booking types (_e.g._ corporate, direct, or online reservations). + +**Data source:** Antonio et al (2021). Hotel booking demand datasets. Data in Brief (22): 41-49. https://doi.org/10.1016/j.dib.2018.11.126 + +## Implementation + +``` +. +├── README.md +├── observablehq.config.js +├── package.json +└── src + ├── components + │ ├── bigNumber.js + │ └── donutChart.js + ├── data + │ ├── hotelData.csv + └── index.md +``` + +No dependencies other than Framework. + +### Data + +Data was downloaded directly from Antonio _et al._ (2021), with minor data wrangling to produce the simplified data (`hotelData.csv`) used in the dashboard. + +### Components + +This example has two reusable components for building the visualizations: `bigNumber.js` and `donutChart.js`. The `bigNumber.js` component creates a simple big number box. The `donutChart.js` component is made with [D3](https://d3js.org/). diff --git a/examples/hotel-bookings/observablehq.config.js b/examples/hotel-bookings/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/hotel-bookings/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/templates/default/package.json b/examples/hotel-bookings/package.json similarity index 66% rename from templates/default/package.json rename to examples/hotel-bookings/package.json index eb47bc57b..9b99c0cfe 100644 --- a/templates/default/package.json +++ b/examples/hotel-bookings/package.json @@ -2,8 +2,8 @@ "type": "module", "private": true, "scripts": { - "clean": "rm -rf docs/.observablehq/cache", - "build": "rm -rf dist && observable build", + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", "deploy": "observable deploy", "observable": "observable" @@ -13,7 +13,10 @@ "d3-dsv": "^3.0.1", "d3-time-format": "^4.1.0" }, + "devDependencies": { + "rimraf": "^5.0.5" + }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/hotel-bookings/src/components/bigNumber.js b/examples/hotel-bookings/src/components/bigNumber.js new file mode 100644 index 000000000..7aa1b3aea --- /dev/null +++ b/examples/hotel-bookings/src/components/bigNumber.js @@ -0,0 +1,11 @@ +import {html} from "npm:htl"; + +export function bigNumber(metric, dateArray, value, compare, width) { + return html` +

${metric}

+
+

${dateArray[0]} to ${dateArray[1]}

+

${value}

+
${compare}
+
`; +} diff --git a/examples/hotel-bookings/src/components/donutChart.js b/examples/hotel-bookings/src/components/donutChart.js new file mode 100644 index 000000000..d67ad89ef --- /dev/null +++ b/examples/hotel-bookings/src/components/donutChart.js @@ -0,0 +1,75 @@ +// https://observablehq.com/@d3/donut-chart/2 + +import * as d3 from "npm:d3"; + +export function DonutChart(data, {centerText, width, colorDomain, colorRange}) { + const height = width; + const radius = Math.min(width, height) / 2; + const arc = d3 + .arc() + .innerRadius(radius * 0.6) + .outerRadius(radius - 1); + + const pie = d3 + .pie() + .padAngle(2 / radius) + .sort(null) + .value((d) => d.value); + + const color = d3.scaleOrdinal().domain(colorDomain).range(colorRange); + + const svg = d3 + .create("svg") + .attr("width", width) + .attr("height", height) + .attr("viewBox", [-width / 2, -height / 2, width, height]) + .attr("style", "max-width: 100%; height: auto;"); + + svg + .append("g") + .selectAll() + .data(pie(data)) + .join("path") + .attr("fill", (d) => color(d.data.name)) + .attr("d", arc); + + svg + .append("g") + .attr("font-family", "sans-serif") + .attr("font-size", 10) + .attr("text-anchor", "middle") + .selectAll() + .data(pie(data)) + .join("text") + .attr("transform", (d) => `translate(${arc.centroid(d)})`) + .call((text) => + text + .append("tspan") + .filter((d) => d.endAngle - d.startAngle > 0.1) + .attr("y", "-0.3em") + .attr("font-weight", "bold") + .attr("fill", "white") + .text((d) => d.data.name) + ) + .call((text) => + text + .filter((d) => d.endAngle - d.startAngle > 0.15) + .append("tspan") + .attr("x", 0) + .attr("y", "0.8em") + .attr("fill", "white") + .attr("fill-opacity", 1) + .text((d) => d.data.value.toLocaleString("en-US")) + ); + + svg + .append("text") + .attr("text-anchor", "middle") + .attr("font-family", "sans-serif") + .attr("font-size", "0.9rem") + .attr("fill", "currentColor") + .attr("font-weight", 600) + .text(centerText); + + return svg.node(); +} diff --git a/examples/hotel-bookings/src/data/hotelData.csv b/examples/hotel-bookings/src/data/hotelData.csv new file mode 100644 index 000000000..e9ca66590 --- /dev/null +++ b/examples/hotel-bookings/src/data/hotelData.csv @@ -0,0 +1,40061 @@ +IsCanceled,LeadTime,ArrivalDateYear,ArrivalDateMonth,ArrivalDateWeekNumber,ArrivalDateDayOfMonth,StaysInWeekendNights,StaysInWeekNights,Adults,Children,Babies,Meal,Country,MarketSegment,DistributionChannel,IsRepeatedGuest,PreviousCancellations,PreviousBookingsNotCanceled,ReservedRoomType,AssignedRoomType,BookingChanges,DepositType,Agent,Company,DaysInWaitingList,CustomerType,ADR,RequiredCarParkingSpaces,TotalOfSpecialRequests,ReservationStatus,ReservationStatusDate,season,arrivalDate +Keep,342,2015,July,27,1,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-07-01,Summer,2015-07-01T07:00Z +Keep,737,2015,July,27,1,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,4,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-07-01,Summer,2015-07-01T07:00Z +Keep,7,2015,July,27,1,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,13,2015,July,27,1,0,1,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 304, NULL,0,Transient,75,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,14,2015,July,27,1,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2015-07-03,Summer,2015-07-01T07:00Z +Keep,14,2015,July,27,1,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2015-07-03,Summer,2015-07-01T07:00Z +Keep,0,2015,July,27,1,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,107,0,0,Check-Out,2015-07-03,Summer,2015-07-01T07:00Z +Keep,9,2015,July,27,1,0,2,2,0,0,FB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 303, NULL,0,Transient,103,0,1,Check-Out,2015-07-03,Summer,2015-07-01T07:00Z +Cancel,85,2015,July,27,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2015-05-06,Summer,2015-07-01T07:00Z +Cancel,75,2015,July,27,1,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,105.5,0,0,Canceled,2015-04-22,Summer,2015-07-01T07:00Z +Cancel,23,2015,July,27,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-06-23,Summer,2015-07-01T07:00Z +Keep,35,2015,July,27,1,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,68,2015,July,27,1,0,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,97,0,3,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,18,2015,July,27,1,0,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,154.77,0,1,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,37,2015,July,27,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94.71,0,0,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,68,2015,July,27,1,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,97,0,3,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,37,2015,July,27,1,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,97.5,0,0,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,12,2015,July,27,1,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,0,2015,July,27,1,0,1,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 110,0,Transient,107.42,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,7,2015,July,27,1,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,153,0,1,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,37,2015,July,27,1,1,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,97.29,0,1,Check-Out,2015-07-06,Summer,2015-07-01T07:00Z +Keep,72,2015,July,27,1,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,84.67,0,1,Check-Out,2015-07-07,Summer,2015-07-01T07:00Z +Keep,72,2015,July,27,1,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,84.67,0,1,Check-Out,2015-07-07,Summer,2015-07-01T07:00Z +Keep,72,2015,July,27,1,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,99.67,0,1,Check-Out,2015-07-07,Summer,2015-07-01T07:00Z +Keep,127,2015,July,27,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 115, NULL,0,Contract,94.95,0,1,Check-Out,2015-07-01,Summer,2015-07-01T07:00Z +Keep,78,2015,July,27,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,63.6,1,0,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,48,2015,July,27,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Cancel,60,2015,July,27,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,2,Canceled,2015-05-11,Summer,2015-07-01T07:00Z +Keep,77,2015,July,27,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94,0,0,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,99,2015,July,27,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.3,1,1,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,118,2015,July,27,1,4,10,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,62,0,2,Check-Out,2015-07-15,Summer,2015-07-01T07:00Z +Keep,95,2015,July,27,1,4,11,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,63.86,0,0,Check-Out,2015-07-16,Summer,2015-07-01T07:00Z +Cancel,96,2015,July,27,1,2,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,108.3,0,2,Canceled,2015-05-29,Summer,2015-07-01T07:00Z +Keep,69,2015,July,27,2,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 175, NULL,0,Transient,65.5,0,0,Check-Out,2015-07-08,Summer,2015-07-02T07:00Z +Cancel,45,2015,July,27,2,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,108.8,0,1,Canceled,2015-05-19,Summer,2015-07-02T07:00Z +Cancel,40,2015,July,27,2,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,108.8,0,1,Canceled,2015-06-19,Summer,2015-07-02T07:00Z +Keep,15,2015,July,27,2,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-07-06,Summer,2015-07-02T07:00Z +Keep,36,2015,July,27,2,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,108.8,0,1,Check-Out,2015-07-06,Summer,2015-07-02T07:00Z +Cancel,43,2015,July,27,2,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,108.8,0,0,Canceled,2015-05-23,Summer,2015-07-02T07:00Z +Keep,70,2015,July,27,2,2,3,2,0,0,HB,ROU,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,137,0,1,Check-Out,2015-07-07,Summer,2015-07-02T07:00Z +Cancel,45,2015,July,27,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,117.81,0,0,Canceled,2015-05-18,Summer,2015-07-02T07:00Z +Keep,45,2015,July,27,2,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-07-07,Summer,2015-07-02T07:00Z +Keep,16,2015,July,27,2,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,123,0,0,Check-Out,2015-07-07,Summer,2015-07-02T07:00Z +Keep,70,2015,July,27,2,2,3,2,0,0,HB,ROU,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,137,0,1,Check-Out,2015-07-07,Summer,2015-07-02T07:00Z +Keep,107,2015,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,2,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Cancel,47,2015,July,27,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-06-02,Summer,2015-07-02T07:00Z +Keep,96,2015,July,27,2,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,58.95,0,1,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,113,2015,July,27,2,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient-Party,82.88,0,2,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,90,2015,July,27,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 243, NULL,0,Contract,82.35,0,0,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,50,2015,July,27,2,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 241, NULL,0,Transient,119.35,0,1,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,113,2015,July,27,2,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient-Party,67.58,0,2,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,93,2015,July,27,2,3,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,56.01,0,0,Check-Out,2015-07-13,Summer,2015-07-02T07:00Z +Keep,76,2015,July,27,2,4,10,2,0,0,BB,OMN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,110.7,0,0,Check-Out,2015-07-16,Summer,2015-07-02T07:00Z +Keep,3,2015,July,27,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,88.2,1,0,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,1,2015,July,27,2,0,1,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,147,1,0,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,1,2015,July,27,2,0,1,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,107,1,2,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,0,2015,July,27,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,147,0,0,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,0,2015,July,27,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,117.9,0,2,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,0,2015,July,27,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,123,0,0,Check-Out,2015-07-03,Summer,2015-07-02T07:00Z +Keep,14,2015,July,27,2,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,98,0,1,Check-Out,2015-07-04,Summer,2015-07-02T07:00Z +Keep,10,2015,July,27,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,117.81,0,0,Check-Out,2015-07-04,Summer,2015-07-02T07:00Z +Keep,5,2015,July,27,2,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,135,1,2,Check-Out,2015-07-04,Summer,2015-07-02T07:00Z +Keep,17,2015,July,27,2,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,133,0,1,Check-Out,2015-07-05,Summer,2015-07-02T07:00Z +Keep,93,2015,July,27,2,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Contract,58.95,0,0,Check-Out,2015-07-05,Summer,2015-07-02T07:00Z +Cancel,3,2015,July,27,2,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,136.33,0,2,Canceled,2015-06-29,Summer,2015-07-02T07:00Z +Keep,10,2015,July,27,3,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,H,0,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Keep,3,2015,July,27,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,110.5,0,0,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Keep,51,2015,July,27,3,0,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,97,0,0,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Cancel,71,2015,July,27,3,0,2,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,110.3,0,2,Canceled,2015-06-16,Summer,2015-07-03T07:00Z +Cancel,63,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Canceled,2015-06-18,Summer,2015-07-03T07:00Z +Cancel,62,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,1,Canceled,2015-07-03,Summer,2015-07-03T07:00Z +Cancel,101,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-06-12,Summer,2015-07-03T07:00Z +Keep,2,2015,July,27,3,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,91.5,0,0,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Keep,15,2015,July,27,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114.5,0,0,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Cancel,51,2015,July,27,3,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,110.3,0,0,Canceled,2015-06-09,Summer,2015-07-03T07:00Z +Keep,3,2015,July,27,3,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.9,1,0,Check-Out,2015-07-06,Summer,2015-07-03T07:00Z +Cancel,48,2015,July,27,3,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-05-26,Summer,2015-07-03T07:00Z +Keep,2,2015,July,27,3,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,0,Check-Out,2015-07-07,Summer,2015-07-03T07:00Z +Keep,72,2015,July,27,3,2,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 105, NULL,0,Transient,110.7,1,0,Check-Out,2015-07-07,Summer,2015-07-03T07:00Z +Keep,81,2015,July,27,3,2,6,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,85.86,0,0,Check-Out,2015-07-11,Summer,2015-07-03T07:00Z +Keep,99,2015,July,27,3,2,7,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.95,0,0,Check-Out,2015-07-12,Summer,2015-07-03T07:00Z +Cancel,368,2015,July,27,3,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,55.68,0,0,Canceled,2015-05-19,Summer,2015-07-03T07:00Z +Keep,364,2015,July,27,3,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-13,Summer,2015-07-03T07:00Z +Cancel,81,2015,July,27,3,3,7,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,124,0,1,Canceled,2015-06-09,Summer,2015-07-03T07:00Z +Keep,99,2015,July,27,3,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Contract,111.15,0,0,Check-Out,2015-07-13,Summer,2015-07-03T07:00Z +Keep,324,2015,July,27,3,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,134.73,0,0,Check-Out,2015-07-17,Summer,2015-07-03T07:00Z +Keep,69,2015,July,27,3,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,92.45,0,1,Check-Out,2015-07-17,Summer,2015-07-03T07:00Z +Cancel,79,2015,July,27,3,6,15,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,108.73,0,2,Canceled,2015-04-15,Summer,2015-07-03T07:00Z +Keep,12,2015,July,27,3,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,73.8,0,0,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Keep,9,2015,July,27,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,98,1,2,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Keep,1,2015,July,27,3,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Keep,21,2015,July,27,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Keep,9,2015,July,27,3,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,94.71,0,0,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Keep,109,2015,July,27,3,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2015-07-04,Summer,2015-07-03T07:00Z +Cancel,109,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-05-26,Summer,2015-07-03T07:00Z +Cancel,72,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-06-29,Summer,2015-07-03T07:00Z +Cancel,63,2015,July,27,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,117,0,1,Canceled,2015-05-13,Summer,2015-07-03T07:00Z +Keep,63,2015,July,27,3,2,5,3,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 105, NULL,0,Transient,196.54,0,1,Check-Out,2015-07-10,Summer,2015-07-03T07:00Z +Keep,101,2015,July,27,3,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99.3,1,2,Check-Out,2015-07-10,Summer,2015-07-03T07:00Z +Keep,102,2015,July,27,3,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,90.95,0,0,Check-Out,2015-07-10,Summer,2015-07-03T07:00Z +Keep,4,2015,July,27,4,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,92.67,0,1,Check-Out,2015-07-07,Summer,2015-07-04T07:00Z +Keep,98,2015,July,27,4,2,1,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,71.55,1,0,Check-Out,2015-07-07,Summer,2015-07-04T07:00Z +Keep,92,2015,July,27,4,2,4,1,2,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,96.49,0,2,Check-Out,2015-07-10,Summer,2015-07-04T07:00Z +Keep,95,2015,July,27,4,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,85.8,1,2,Check-Out,2015-07-10,Summer,2015-07-04T07:00Z +Keep,102,2015,July,27,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96.3,0,1,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Cancel,26,2015,July,27,4,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163,0,0,Canceled,2015-06-09,Summer,2015-07-04T07:00Z +Cancel,73,2015,July,27,4,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,172,0,1,Canceled,2015-05-20,Summer,2015-07-04T07:00Z +Cancel,102,2015,July,27,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,1,Canceled,2015-04-22,Summer,2015-07-04T07:00Z +Keep,115,2015,July,27,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,58.95,0,1,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,102,2015,July,27,4,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,86,2015,July,27,4,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,2,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,78,2015,July,27,4,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,139,0,2,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,52,2015,July,27,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,67.24,0,0,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,29,2015,July,27,4,2,6,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,116.5,0,1,Check-Out,2015-07-12,Summer,2015-07-04T07:00Z +Cancel,101,2015,July,27,4,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96.3,0,1,Canceled,2015-05-12,Summer,2015-07-04T07:00Z +Keep,109,2015,July,27,4,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-07-12,Summer,2015-07-04T07:00Z +Keep,92,2015,July,27,4,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,71.55,0,1,Check-Out,2015-07-14,Summer,2015-07-04T07:00Z +Keep,92,2015,July,27,4,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,71.55,0,1,Check-Out,2015-07-14,Summer,2015-07-04T07:00Z +Keep,79,2015,July,27,4,4,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,149,0,1,Check-Out,2015-07-14,Summer,2015-07-04T07:00Z +Keep,2,2015,July,27,4,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,G,1,No Deposit , 240, NULL,0,Transient,163,1,0,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Keep,30,2015,July,27,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Cancel,51,2015,July,27,4,0,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2015-05-29,Summer,2015-07-04T07:00Z +Cancel,36,2015,July,27,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,1,No Deposit , 250, NULL,0,Transient,123,0,0,No-Show,2015-07-04,Summer,2015-07-04T07:00Z +Cancel,73,2015,July,27,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Canceled,2015-05-13,Summer,2015-07-04T07:00Z +Cancel,33,2015,July,27,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2015-06-16,Summer,2015-07-04T07:00Z +Keep,32,2015,July,27,4,0,1,4,0,0,FB,PRT,Complementary,Direct, 0,0,0,H,H,2,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Keep,8,2015,July,27,4,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Keep,100,2015,July,27,4,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,73.8,1,1,Check-Out,2015-07-06,Summer,2015-07-04T07:00Z +Keep,1,2015,July,27,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114.5,0,0,Check-Out,2015-07-06,Summer,2015-07-04T07:00Z +Keep,100,2015,July,27,4,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,73.8,0,2,Check-Out,2015-07-06,Summer,2015-07-04T07:00Z +Keep,100,2015,July,27,4,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,73.8,0,1,Check-Out,2015-07-06,Summer,2015-07-04T07:00Z +Keep,9,2015,July,28,5,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Cancel,5,2015,July,28,5,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,0,Canceled,2015-07-01,Summer,2015-07-05T07:00Z +Keep,0,2015,July,28,5,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 306, NULL,0,Transient,85.1,0,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,9,2015,July,28,5,1,0,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,89,0,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,2,2015,July,28,5,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,2,2015,July,28,5,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,9,2015,July,28,5,1,0,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,101,1,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Cancel,5,2015,July,28,5,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,0,Canceled,2015-07-01,Summer,2015-07-05T07:00Z +Keep,2,2015,July,28,5,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,167,0,1,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,44,2015,July,28,5,2,0,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,225,2,0,Check-Out,2015-07-07,Summer,2015-07-05T07:00Z +Keep,80,2015,July,28,5,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,97,1,0,Check-Out,2015-07-07,Summer,2015-07-05T07:00Z +Keep,97,2015,July,28,5,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.3,0,2,Check-Out,2015-07-09,Summer,2015-07-05T07:00Z +Keep,109,2015,July,28,5,2,3,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,85.59,1,2,Check-Out,2015-07-10,Summer,2015-07-05T07:00Z +Keep,30,2015,July,28,5,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-10,Summer,2015-07-05T07:00Z +Keep,64,2015,July,28,5,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,0,Check-Out,2015-07-10,Summer,2015-07-05T07:00Z +Keep,39,2015,July,28,5,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163,0,0,Check-Out,2015-07-11,Summer,2015-07-05T07:00Z +Keep,90,2015,July,28,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,0,Check-Out,2015-07-11,Summer,2015-07-05T07:00Z +Cancel,34,2015,July,28,5,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163,0,0,Canceled,2015-06-17,Summer,2015-07-05T07:00Z +Cancel,93,2015,July,28,5,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,105.5,0,0,Canceled,2015-05-01,Summer,2015-07-05T07:00Z +Keep,97,2015,July,28,5,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,164.2,1,1,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Keep,29,2015,July,28,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,97.29,0,1,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Cancel,101,2015,July,28,5,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114,0,1,Canceled,2015-03-30,Summer,2015-07-05T07:00Z +Keep,27,2015,July,28,5,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,98.4,0,0,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Keep,8,2015,July,28,5,4,5,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,175,1,1,Check-Out,2015-07-14,Summer,2015-07-05T07:00Z +Keep,82,2015,July,28,5,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,63.6,1,2,Check-Out,2015-07-15,Summer,2015-07-05T07:00Z +Keep,94,2015,July,28,5,4,6,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,C,3,No Deposit , NULL, NULL,0,Transient,124.45,1,1,Check-Out,2015-07-15,Summer,2015-07-05T07:00Z +Keep,110,2015,July,28,5,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,110.7,0,0,Check-Out,2015-07-16,Summer,2015-07-05T07:00Z +Keep,96,2015,July,28,5,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,74.07,0,0,Check-Out,2015-07-19,Summer,2015-07-05T07:00Z +Keep,79,2015,July,28,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,134.1,0,0,Check-Out,2015-07-19,Summer,2015-07-05T07:00Z +Keep,115,2015,July,28,6,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,167,0,0,Check-Out,2015-07-11,Summer,2015-07-06T07:00Z +Keep,111,2015,July,28,6,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,51,2015,July,28,6,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,117.81,1,2,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,94,2015,July,28,6,1,3,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,171.32,0,1,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,81,2015,July,28,6,1,3,2,2,0,HB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,210,1,0,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,84,2015,July,28,6,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,97,0,2,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,51,2015,July,28,6,1,3,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,117.81,0,2,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,111,2015,July,28,6,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-07-06,Summer,2015-07-06T07:00Z +Keep,0,2015,July,28,6,0,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,H,0,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2015-07-06,Summer,2015-07-06T07:00Z +Keep,2,2015,July,28,6,1,0,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-07-07,Summer,2015-07-06T07:00Z +Keep,7,2015,July,28,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2015-07-08,Summer,2015-07-06T07:00Z +Keep,98,2015,July,28,6,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,87.3,1,1,Check-Out,2015-07-08,Summer,2015-07-06T07:00Z +Keep,95,2015,July,28,6,1,2,2,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2015-07-09,Summer,2015-07-06T07:00Z +Cancel,48,2015,July,28,6,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,167,0,0,Canceled,2015-06-03,Summer,2015-07-06T07:00Z +Keep,66,2015,July,28,6,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 175, NULL,0,Transient,91.5,0,0,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,104,2015,July,28,6,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,28,2015,July,28,6,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-11,Summer,2015-07-06T07:00Z +Keep,34,2015,July,28,6,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,175,1,0,Check-Out,2015-07-11,Summer,2015-07-06T07:00Z +Keep,98,2015,July,28,6,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,117.8,1,1,Check-Out,2015-07-12,Summer,2015-07-06T07:00Z +Keep,104,2015,July,28,6,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,117.63,0,0,Check-Out,2015-07-12,Summer,2015-07-06T07:00Z +Keep,68,2015,July,28,6,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,185,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Cancel,86,2015,July,28,6,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,71,0,1,Canceled,2015-06-26,Summer,2015-07-06T07:00Z +Keep,258,2015,July,28,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,47.25,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,111,2015,July,28,6,3,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,151,0,1,Check-Out,2015-07-14,Summer,2015-07-06T07:00Z +Cancel,94,2015,July,28,6,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.3,0,0,Canceled,2015-05-14,Summer,2015-07-06T07:00Z +Keep,112,2015,July,28,6,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,120.6,0,1,Check-Out,2015-07-16,Summer,2015-07-06T07:00Z +Keep,100,2015,July,28,6,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,63.86,0,1,Check-Out,2015-07-16,Summer,2015-07-06T07:00Z +Keep,33,2015,July,28,6,3,7,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,5,No Deposit , 250, NULL,0,Transient,157.1,0,1,Check-Out,2015-07-16,Summer,2015-07-06T07:00Z +Keep,97,2015,July,28,6,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,91.37,0,2,Check-Out,2015-07-16,Summer,2015-07-06T07:00Z +Keep,80,2015,July,28,6,3,8,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73,0,0,Check-Out,2015-07-17,Summer,2015-07-06T07:00Z +Keep,90,2015,July,28,6,4,10,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,110.7,0,0,Check-Out,2015-07-20,Summer,2015-07-06T07:00Z +Keep,111,2015,July,28,6,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,93.6,0,0,Check-Out,2015-07-20,Summer,2015-07-06T07:00Z +Keep,65,2015,July,28,6,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 127, NULL,0,Transient,83.5,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Cancel,67,2015,July,28,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-05-07,Summer,2015-07-07T07:00Z +Keep,55,2015,July,28,7,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,2,Check-Out,2015-07-10,Summer,2015-07-07T07:00Z +Keep,21,2015,July,28,7,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,185.5,0,1,Check-Out,2015-07-10,Summer,2015-07-07T07:00Z +Keep,8,2015,July,28,7,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-07-07,Summer,2015-07-07T07:00Z +Keep,8,2015,July,28,7,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-07-07,Summer,2015-07-07T07:00Z +Keep,0,2015,July,28,7,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.8,0,3,Check-Out,2015-07-08,Summer,2015-07-07T07:00Z +Keep,0,2015,July,28,7,0,1,3,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,195,1,0,Check-Out,2015-07-08,Summer,2015-07-07T07:00Z +Keep,0,2015,July,28,7,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.8,0,3,Check-Out,2015-07-08,Summer,2015-07-07T07:00Z +Keep,8,2015,July,28,7,0,4,3,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,193,0,1,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,66,2015,July,28,7,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,0,2,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,88,2015,July,28,7,0,4,3,0,0,HB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 95, NULL,0,Transient,150,0,1,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,0,2015,July,28,7,0,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,98,0,0,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Cancel,43,2015,July,28,7,0,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,91.5,0,0,Canceled,2015-05-28,Summer,2015-07-07T07:00Z +Cancel,88,2015,July,28,7,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2015-04-13,Summer,2015-07-07T07:00Z +Keep,54,2015,July,28,7,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,79.5,0,0,Check-Out,2015-07-14,Summer,2015-07-07T07:00Z +Cancel,292,2015,July,28,7,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,47.25,0,0,Canceled,2015-03-25,Summer,2015-07-07T07:00Z +Keep,112,2015,July,28,7,4,10,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,126.65,0,1,Check-Out,2015-07-21,Summer,2015-07-07T07:00Z +Keep,68,2015,July,28,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,1,Check-Out,2015-07-11,Summer,2015-07-08T07:00Z +Keep,7,2015,July,28,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,1,2,Check-Out,2015-07-12,Summer,2015-07-08T07:00Z +Keep,1,2015,July,28,8,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,1,1,Check-Out,2015-07-12,Summer,2015-07-08T07:00Z +Cancel,113,2015,July,28,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-05-28,Summer,2015-07-08T07:00Z +Keep,5,2015,July,28,8,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-07-12,Summer,2015-07-08T07:00Z +Keep,83,2015,July,28,8,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 105, NULL,0,Transient,110.7,0,1,Check-Out,2015-07-12,Summer,2015-07-08T07:00Z +Cancel,105,2015,July,28,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-06-29,Summer,2015-07-08T07:00Z +Keep,0,2015,July,28,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,61,0,0,Check-Out,2015-07-09,Summer,2015-07-08T07:00Z +Cancel,1,2015,July,28,8,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,104.72,0,1,Canceled,2015-07-08,Summer,2015-07-08T07:00Z +Cancel,1,2015,July,28,8,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,104.72,0,1,Canceled,2015-07-08,Summer,2015-07-08T07:00Z +Keep,1,2015,July,28,8,0,2,2,0,0,BB,CHE,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 110,0,Transient,104.72,1,1,Check-Out,2015-07-10,Summer,2015-07-08T07:00Z +Cancel,102,2015,July,28,8,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 9, NULL,0,Transient,66.42,0,1,Canceled,2015-05-28,Summer,2015-07-08T07:00Z +Keep,113,2015,July,28,8,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,77.96,1,1,Check-Out,2015-07-14,Summer,2015-07-08T07:00Z +Cancel,280,2015,July,28,8,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112,0,1,Canceled,2015-04-15,Summer,2015-07-08T07:00Z +Keep,96,2015,July,28,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,107,0,1,Check-Out,2015-07-15,Summer,2015-07-08T07:00Z +Keep,394,2015,July,28,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,89.68,0,0,Check-Out,2015-07-15,Summer,2015-07-08T07:00Z +Keep,33,2015,July,28,8,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,155,0,0,Check-Out,2015-07-15,Summer,2015-07-08T07:00Z +Keep,82,2015,July,28,8,2,6,3,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,112,0,1,Check-Out,2015-07-16,Summer,2015-07-08T07:00Z +Keep,100,2015,July,28,8,2,7,3,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,130.1,0,3,Check-Out,2015-07-17,Summer,2015-07-08T07:00Z +Keep,100,2015,July,28,8,2,7,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,100.1,0,2,Check-Out,2015-07-17,Summer,2015-07-08T07:00Z +Keep,17,2015,July,28,9,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,123,0,3,Check-Out,2015-07-10,Summer,2015-07-09T07:00Z +Keep,68,2015,July,28,9,0,2,3,0,0,BB,ARG,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,124,1,1,Check-Out,2015-07-11,Summer,2015-07-09T07:00Z +Keep,12,2015,July,28,9,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,G,2,No Deposit , NULL, NULL,0,Transient,146,1,0,Check-Out,2015-07-11,Summer,2015-07-09T07:00Z +Cancel,77,2015,July,28,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,97,0,0,Canceled,2015-06-02,Summer,2015-07-09T07:00Z +Cancel,24,2015,July,28,9,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,123,0,1,Canceled,2015-06-16,Summer,2015-07-09T07:00Z +Cancel,44,2015,July,28,9,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-06-16,Summer,2015-07-09T07:00Z +Keep,78,2015,July,28,9,0,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Check-Out,2015-07-12,Summer,2015-07-09T07:00Z +Cancel,17,2015,July,28,9,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105.08,0,0,Canceled,2015-06-23,Summer,2015-07-09T07:00Z +Cancel,103,2015,July,28,9,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.42,0,0,Canceled,2015-06-27,Summer,2015-07-09T07:00Z +Keep,16,2015,July,28,9,1,3,1,0,0,BB,RUS,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,14,2015,July,28,9,2,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,75.46,1,1,Check-Out,2015-07-14,Summer,2015-07-09T07:00Z +Keep,77,2015,July,28,9,2,3,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,65.5,0,0,Check-Out,2015-07-14,Summer,2015-07-09T07:00Z +Keep,90,2015,July,28,9,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,90,2015,July,28,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,93.6,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,90,2015,July,28,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,119.25,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,366,2015,July,28,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,134.73,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,249,2015,July,28,9,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Cancel,69,2015,July,28,9,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.13,0,2,Canceled,2015-05-13,Summer,2015-07-09T07:00Z +Keep,10,2015,July,28,10,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,131,0,0,Check-Out,2015-07-11,Summer,2015-07-10T07:00Z +Keep,22,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,91,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,23,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,11,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.5,0,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,3,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,13,2015,July,28,10,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,185,1,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,108,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,87.3,0,2,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,91,2015,July,28,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,37,2015,July,28,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 105, NULL,0,Transient,120,0,1,Check-Out,2015-07-13,Summer,2015-07-10T07:00Z +Keep,21,2015,July,28,10,1,2,2,0,0,BB,AUS,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-07-13,Summer,2015-07-10T07:00Z +Keep,106,2015,July,28,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96.3,0,2,Check-Out,2015-07-13,Summer,2015-07-10T07:00Z +Keep,30,2015,July,28,10,2,2,2,0,0,FB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,197,0,1,Check-Out,2015-07-14,Summer,2015-07-10T07:00Z +Keep,30,2015,July,28,10,2,2,2,0,0,FB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,197,0,1,Check-Out,2015-07-14,Summer,2015-07-10T07:00Z +Cancel,51,2015,July,28,10,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-06-29,Summer,2015-07-10T07:00Z +Keep,79,2015,July,28,10,2,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Check-Out,2015-07-15,Summer,2015-07-10T07:00Z +Keep,21,2015,July,28,10,2,3,2,0,2,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,165,1,3,Check-Out,2015-07-15,Summer,2015-07-10T07:00Z +Keep,35,2015,July,28,10,2,3,2,2,0,BB,EST,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,149.4,0,0,Check-Out,2015-07-15,Summer,2015-07-10T07:00Z +Keep,78,2015,July,28,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,106.84,1,2,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,31,2015,July,28,10,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,161,1,1,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,78,2015,July,28,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,134.43,0,2,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,78,2015,July,28,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,144.43,1,2,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,44,2015,July,28,10,2,5,1,0,0,HB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 244, NULL,0,Transient,152,0,0,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,34,2015,July,28,10,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,125.54,0,3,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,87,2015,July,28,10,2,5,2,1,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,133.83,0,2,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,11,2015,July,28,10,2,6,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,159.75,1,0,Check-Out,2015-07-18,Summer,2015-07-10T07:00Z +Keep,115,2015,July,28,10,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-07-19,Summer,2015-07-10T07:00Z +Keep,86,2015,July,28,10,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112.2,0,0,Check-Out,2015-07-20,Summer,2015-07-10T07:00Z +Keep,41,2015,July,28,10,4,7,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,110.6,0,0,Check-Out,2015-07-21,Summer,2015-07-10T07:00Z +Keep,32,2015,July,28,10,4,9,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,105.9,0,0,Check-Out,2015-07-23,Summer,2015-07-10T07:00Z +Keep,34,2015,July,28,10,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,95.27,0,3,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,34,2015,July,28,10,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,108.83,0,1,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Cancel,100,2015,July,28,11,2,3,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,153.96,0,0,Canceled,2015-05-29,Summer,2015-07-11T07:00Z +Keep,44,2015,July,28,11,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-07-16,Summer,2015-07-11T07:00Z +Keep,304,2015,July,28,11,2,4,2,0,1,BB,PRT,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,90.67,0,1,Check-Out,2015-07-17,Summer,2015-07-11T07:00Z +Cancel,36,2015,July,28,11,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,126.67,0,0,Canceled,2015-06-08,Summer,2015-07-11T07:00Z +Keep,117,2015,July,28,11,2,4,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,144.4,0,1,Check-Out,2015-07-17,Summer,2015-07-11T07:00Z +Keep,70,2015,July,28,11,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.5,1,2,Check-Out,2015-07-17,Summer,2015-07-11T07:00Z +Keep,110,2015,July,28,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,139.4,0,1,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Cancel,109,2015,July,28,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-04-22,Summer,2015-07-11T07:00Z +Keep,33,2015,July,28,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,89.97,0,1,Check-Out,2015-07-15,Summer,2015-07-11T07:00Z +Keep,33,2015,July,28,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-15,Summer,2015-07-11T07:00Z +Keep,33,2015,July,28,11,2,2,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-15,Summer,2015-07-11T07:00Z +Keep,0,2015,July,28,11,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,123,0,0,Check-Out,2015-07-12,Summer,2015-07-11T07:00Z +Keep,0,2015,July,28,11,0,1,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,144.9,0,1,Check-Out,2015-07-12,Summer,2015-07-11T07:00Z +Keep,0,2015,July,28,11,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-07-12,Summer,2015-07-11T07:00Z +Keep,0,2015,July,28,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2015-07-12,Summer,2015-07-11T07:00Z +Keep,84,2015,July,28,11,1,1,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,100,1,0,Check-Out,2015-07-13,Summer,2015-07-11T07:00Z +Keep,71,2015,July,28,11,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,65.5,0,0,Check-Out,2015-07-13,Summer,2015-07-11T07:00Z +Keep,16,2015,July,28,11,1,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,123,0,1,Check-Out,2015-07-13,Summer,2015-07-11T07:00Z +Keep,54,2015,July,28,11,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-07-14,Summer,2015-07-11T07:00Z +Keep,8,2015,July,28,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2015-07-14,Summer,2015-07-11T07:00Z +Keep,36,2015,July,28,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,104.68,1,0,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,40,2015,July,28,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,166,0,0,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Cancel,59,2015,July,28,11,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,111.25,0,2,Canceled,2015-05-19,Summer,2015-07-11T07:00Z +Keep,79,2015,July,28,11,2,6,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,213.75,0,0,Check-Out,2015-07-19,Summer,2015-07-11T07:00Z +Keep,32,2015,July,28,11,4,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,178,1,0,Check-Out,2015-07-21,Summer,2015-07-11T07:00Z +Keep,110,2015,July,28,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,113.9,0,1,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,33,2015,July,28,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129.29,1,0,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,53,2015,July,29,12,1,0,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2015-07-13,Summer,2015-07-12T07:00Z +Keep,2,2015,July,29,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,1,2,Check-Out,2015-07-13,Summer,2015-07-12T07:00Z +Keep,8,2015,July,29,12,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,1,2,Check-Out,2015-07-18,Summer,2015-07-12T07:00Z +Cancel,72,2015,July,29,12,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93,0,2,Canceled,2015-05-12,Summer,2015-07-12T07:00Z +Keep,12,2015,July,29,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.29,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,48,2015,July,29,12,2,5,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,123,0,1,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,90,2015,July,29,12,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,117.22,0,1,Check-Out,2015-07-12,Summer,2015-07-12T07:00Z +Keep,34,2015,July,29,12,2,5,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 156, NULL,0,Transient,149,0,1,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Cancel,58,2015,July,29,12,2,5,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,164.57,0,1,Canceled,2015-06-29,Summer,2015-07-12T07:00Z +Keep,59,2015,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,107,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,90,2015,July,29,12,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,117.22,1,2,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,116,2015,July,29,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,119.25,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,31,2015,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,123,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Cancel,51,2015,July,29,12,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,105.71,0,0,Canceled,2015-07-03,Summer,2015-07-12T07:00Z +Keep,48,2015,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,123,0,1,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,59,2015,July,29,12,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,144.43,1,2,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Cancel,97,2015,July,29,12,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2015-06-19,Summer,2015-07-12T07:00Z +Keep,12,2015,July,29,12,4,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,148.3,1,2,Check-Out,2015-07-21,Summer,2015-07-12T07:00Z +Keep,64,2015,July,29,12,4,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125.22,0,1,Check-Out,2015-07-21,Summer,2015-07-12T07:00Z +Keep,31,2015,July,29,12,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,123,0,0,Check-Out,2015-07-23,Summer,2015-07-12T07:00Z +Keep,59,2015,July,29,12,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,130,1,1,Check-Out,2015-07-23,Summer,2015-07-12T07:00Z +Cancel,55,2015,July,29,12,4,10,2,10,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 8, NULL,0,Contract,133.16,0,1,No-Show,2015-07-12,Summer,2015-07-12T07:00Z +Keep,81,2015,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,78.84,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,1,2015,July,29,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Check-Out,2015-07-13,Summer,2015-07-12T07:00Z +Keep,34,2015,July,29,12,2,0,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,193,0,1,Check-Out,2015-07-14,Summer,2015-07-12T07:00Z +Keep,13,2015,July,29,12,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Check-Out,2015-07-14,Summer,2015-07-12T07:00Z +Keep,40,2015,July,29,12,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,90.71,0,0,Check-Out,2015-07-14,Summer,2015-07-12T07:00Z +Keep,1,2015,July,29,12,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,114.5,0,1,Check-Out,2015-07-14,Summer,2015-07-12T07:00Z +Keep,34,2015,July,29,12,2,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.2,0,1,Check-Out,2015-07-14,Summer,2015-07-12T07:00Z +Keep,88,2015,July,29,12,2,1,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-07-15,Summer,2015-07-12T07:00Z +Keep,9,2015,July,29,12,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.9,0,3,Check-Out,2015-07-15,Summer,2015-07-12T07:00Z +Cancel,24,2015,July,29,12,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,0,Canceled,2015-06-22,Summer,2015-07-12T07:00Z +Keep,97,2015,July,29,12,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,0,Check-Out,2015-07-16,Summer,2015-07-12T07:00Z +Keep,60,2015,July,29,12,2,2,2,0,1,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,107,0,2,Check-Out,2015-07-16,Summer,2015-07-12T07:00Z +Keep,100,2015,July,29,12,2,2,2,2,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,130.05,1,1,Check-Out,2015-07-16,Summer,2015-07-12T07:00Z +Keep,50,2015,July,29,12,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,123,0,0,Check-Out,2015-07-17,Summer,2015-07-12T07:00Z +Cancel,47,2015,July,29,12,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,103.8,0,0,No-Show,2015-07-12,Summer,2015-07-12T07:00Z +Keep,8,2015,July,29,12,2,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2015-07-17,Summer,2015-07-12T07:00Z +Keep,34,2015,July,29,12,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149.4,1,0,Check-Out,2015-07-17,Summer,2015-07-12T07:00Z +Keep,47,2015,July,29,13,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,175.71,0,0,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Keep,115,2015,July,29,13,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,119.7,0,2,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Cancel,79,2015,July,29,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.86,0,1,Canceled,2015-05-13,Summer,2015-07-13T07:00Z +Keep,91,2015,July,29,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.86,0,0,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Keep,98,2015,July,29,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,82,0,3,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,109,2015,July,29,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,0,2015,July,29,13,1,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,117.9,1,0,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,98,2015,July,29,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,82,0,3,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,0,2015,July,29,13,1,1,4,0,0,BB,PRT,Direct,Direct, 0,0,0,L,H,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,9,2015,July,29,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,1,2,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Keep,62,2015,July,29,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,64,0,2,Check-Out,2015-07-15,Summer,2015-07-13T07:00Z +Cancel,45,2015,July,29,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-06-18,Summer,2015-07-13T07:00Z +Keep,42,2015,July,29,13,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,110,1,0,Check-Out,2015-07-16,Summer,2015-07-13T07:00Z +Keep,54,2015,July,29,13,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.2,1,1,Check-Out,2015-07-16,Summer,2015-07-13T07:00Z +Keep,51,2015,July,29,13,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130,1,0,Check-Out,2015-07-16,Summer,2015-07-13T07:00Z +Keep,54,2015,July,29,13,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Check-Out,2015-07-16,Summer,2015-07-13T07:00Z +Keep,58,2015,July,29,13,1,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,F,2,No Deposit , 250, NULL,0,Transient,165,1,1,Check-Out,2015-07-16,Summer,2015-07-13T07:00Z +Keep,0,2015,July,29,13,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 167, NULL,0,Transient,114,0,0,Check-Out,2015-07-17,Summer,2015-07-13T07:00Z +Cancel,60,2015,July,29,13,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,79.5,0,0,Canceled,2015-06-24,Summer,2015-07-13T07:00Z +Cancel,321,2015,July,29,13,1,4,2,0,0,HB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.8,0,1,Canceled,2015-03-05,Summer,2015-07-13T07:00Z +Keep,40,2015,July,29,13,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,120,0,2,Check-Out,2015-07-18,Summer,2015-07-13T07:00Z +Cancel,51,2015,July,29,13,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,79.5,0,0,Canceled,2015-05-23,Summer,2015-07-13T07:00Z +Keep,38,2015,July,29,13,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,120,0,0,Check-Out,2015-07-18,Summer,2015-07-13T07:00Z +Cancel,75,2015,July,29,13,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144.2,0,1,Canceled,2015-06-22,Summer,2015-07-13T07:00Z +Keep,101,2015,July,29,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107.2,0,0,Check-Out,2015-07-18,Summer,2015-07-13T07:00Z +Cancel,42,2015,July,29,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2015-06-01,Summer,2015-07-13T07:00Z +Keep,40,2015,July,29,13,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,120,0,2,Check-Out,2015-07-18,Summer,2015-07-13T07:00Z +Keep,109,2015,July,29,13,1,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,163.8,0,1,Check-Out,2015-07-18,Summer,2015-07-13T07:00Z +Cancel,81,2015,July,29,13,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98.5,0,2,Canceled,2015-04-24,Summer,2015-07-13T07:00Z +Cancel,98,2015,July,29,13,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130.5,0,0,Canceled,2015-05-12,Summer,2015-07-13T07:00Z +Keep,32,2015,July,29,13,1,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,2,No Deposit , 300, NULL,0,Transient,153,0,0,Check-Out,2015-07-19,Summer,2015-07-13T07:00Z +Keep,72,2015,July,29,13,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98.5,0,2,Check-Out,2015-07-19,Summer,2015-07-13T07:00Z +Keep,115,2015,July,29,13,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,119.7,0,2,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Keep,118,2015,July,29,13,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,184.6,0,1,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Keep,81,2015,July,29,13,2,5,2,1,0,HB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,181.22,0,2,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Cancel,95,2015,July,29,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.86,0,1,Canceled,2015-04-15,Summer,2015-07-13T07:00Z +Keep,16,2015,July,29,13,1,0,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.2,1,3,Check-Out,2015-07-14,Summer,2015-07-13T07:00Z +Keep,56,2015,July,29,13,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134.25,1,0,Check-Out,2015-07-17,Summer,2015-07-13T07:00Z +Keep,88,2015,July,29,13,3,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,96.3,0,0,Check-Out,2015-07-21,Summer,2015-07-13T07:00Z +Keep,41,2015,July,29,13,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,83.09,0,2,Check-Out,2015-07-22,Summer,2015-07-13T07:00Z +Cancel,40,2015,July,29,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,105.5,0,0,Canceled,2015-07-03,Summer,2015-07-14T07:00Z +Keep,1,2015,July,29,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,134,0,0,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Keep,1,2015,July,29,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,8,0,1,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Keep,1,2015,July,29,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,146,1,1,Check-Out,2015-07-16,Summer,2015-07-14T07:00Z +Cancel,76,2015,July,29,14,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2015-05-27,Summer,2015-07-14T07:00Z +Keep,0,2015,July,29,14,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,111.15,0,1,Check-Out,2015-07-18,Summer,2015-07-14T07:00Z +Keep,49,2015,July,29,14,0,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,136.2,0,2,Check-Out,2015-07-19,Summer,2015-07-14T07:00Z +Keep,76,2015,July,29,14,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,101.8,0,0,Check-Out,2015-07-19,Summer,2015-07-14T07:00Z +Keep,73,2015,July,29,14,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,127,0,1,Check-Out,2015-07-20,Summer,2015-07-14T07:00Z +Keep,73,2015,July,29,14,1,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,161.5,0,2,Check-Out,2015-07-20,Summer,2015-07-14T07:00Z +Keep,317,2015,July,29,14,1,5,2,2,0,HB,PRT,Direct,TA/TO, 0,0,0,H,G,1,No Deposit , 240, NULL,0,Transient,230.67,1,2,Check-Out,2015-07-20,Summer,2015-07-14T07:00Z +Cancel,112,2015,July,29,14,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Canceled,2015-04-06,Summer,2015-07-14T07:00Z +Keep,6,2015,July,29,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,1,2,Check-Out,2015-07-21,Summer,2015-07-14T07:00Z +Keep,8,2015,July,29,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,168.57,0,1,Check-Out,2015-07-21,Summer,2015-07-14T07:00Z +Cancel,96,2015,July,29,14,2,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,107.67,0,1,Canceled,2015-04-11,Summer,2015-07-14T07:00Z +Cancel,96,2015,July,29,14,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,96.9,0,1,Canceled,2015-04-11,Summer,2015-07-14T07:00Z +Keep,99,2015,July,29,14,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,107,0,1,Check-Out,2015-07-23,Summer,2015-07-14T07:00Z +Keep,66,2015,July,29,14,2,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 147, NULL,0,Transient,73.41,0,0,Check-Out,2015-07-25,Summer,2015-07-14T07:00Z +Keep,38,2015,July,29,14,4,10,2,0,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,109.9,0,2,Check-Out,2015-07-28,Summer,2015-07-14T07:00Z +Keep,38,2015,July,29,14,4,10,2,0,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,109.9,0,2,Check-Out,2015-07-28,Summer,2015-07-14T07:00Z +Keep,113,2015,July,29,14,4,11,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,187.5,1,3,Check-Out,2015-07-29,Summer,2015-07-14T07:00Z +Keep,0,2015,July,29,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,134,0,0,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Cancel,62,2015,July,29,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,91.5,0,0,Canceled,2015-07-03,Summer,2015-07-15T07:00Z +Cancel,39,2015,July,29,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132.44,0,0,Canceled,2015-06-27,Summer,2015-07-15T07:00Z +Keep,37,2015,July,29,15,2,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,106.9,0,0,Check-Out,2015-07-21,Summer,2015-07-15T07:00Z +Cancel,58,2015,July,29,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,131.86,0,0,Canceled,2015-06-25,Summer,2015-07-15T07:00Z +Keep,37,2015,July,29,15,2,6,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,216.13,1,0,Check-Out,2015-07-23,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,83,2015,July,29,15,2,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,190.33,0,1,Check-Out,2015-07-24,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,1,0,0,FB,PRT,Groups,Direct, 0,0,0,A,F,1,No Deposit , 305, NULL,0,Transient-Party,94,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Cancel,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient-Party,0,0,0,Canceled,2015-07-13,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , 305, NULL,0,Transient-Party,98.75,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,3,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , 305, NULL,0,Transient-Party,148.23,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,1,0,0,FB,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , 305, NULL,0,Transient-Party,94,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,3,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , 305, NULL,0,Transient-Party,148.23,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,1,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 305, NULL,0,Transient-Party,0,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 305, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,57,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , 305, NULL,0,Transient-Party,98.75,0,0,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Cancel,66,2015,July,29,16,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,1,Canceled,2015-07-02,Summer,2015-07-16T07:00Z +Keep,13,2015,July,29,16,0,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,50,2015,July,29,16,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,123.2,0,0,Check-Out,2015-07-17,Summer,2015-07-16T07:00Z +Cancel,48,2015,July,29,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,112,0,0,Canceled,2015-06-05,Summer,2015-07-16T07:00Z +Cancel,0,2015,July,29,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,123.2,0,0,Canceled,2015-07-16,Summer,2015-07-16T07:00Z +Keep,7,2015,July,29,16,0,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,169,1,1,Check-Out,2015-07-17,Summer,2015-07-16T07:00Z +Keep,0,2015,July,29,16,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,G,1,No Deposit , NULL, NULL,0,Transient,198,1,0,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Cancel,66,2015,July,29,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,0,1,Canceled,2015-07-02,Summer,2015-07-16T07:00Z +Keep,13,2015,July,29,16,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,135.6,0,1,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,66,2015,July,29,16,0,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,0,1,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,10,2015,July,29,16,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,184,1,0,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Cancel,10,2015,July,29,16,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134,0,0,Canceled,2015-07-13,Summer,2015-07-16T07:00Z +Cancel,58,2015,July,29,16,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2015-06-19,Summer,2015-07-16T07:00Z +Cancel,17,2015,July,29,16,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.33,0,0,Canceled,2015-06-30,Summer,2015-07-16T07:00Z +Keep,19,2015,July,29,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,121.33,0,1,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,10,2015,July,29,16,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,150.2,0,1,Check-Out,2015-07-21,Summer,2015-07-16T07:00Z +Cancel,12,2015,July,29,16,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, 178,0,Transient,139,0,0,Canceled,2015-07-07,Summer,2015-07-16T07:00Z +Keep,10,2015,July,29,16,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,150.2,0,1,Check-Out,2015-07-21,Summer,2015-07-16T07:00Z +Keep,63,2015,July,29,16,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 147, NULL,0,Transient,75.44,0,1,Check-Out,2015-07-20,Summer,2015-07-16T07:00Z +Cancel,35,2015,July,29,16,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2015-06-13,Summer,2015-07-16T07:00Z +Keep,113,2015,July,29,16,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,1,Check-Out,2015-07-22,Summer,2015-07-16T07:00Z +Cancel,35,2015,July,29,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2015-06-11,Summer,2015-07-16T07:00Z +Keep,68,2015,July,29,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,130,0,0,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,113,2015,July,29,16,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 67, NULL,0,Transient,96.3,0,0,Check-Out,2015-07-24,Summer,2015-07-16T07:00Z +Keep,21,2015,July,29,16,4,10,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,160,0,0,Check-Out,2015-07-30,Summer,2015-07-16T07:00Z +Keep,6,2015,July,29,17,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-07-17,Summer,2015-07-17T07:00Z +Keep,7,2015,July,29,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,127.25,0,1,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,17,2015,July,29,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,164,0,2,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,1,2015,July,29,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,144.5,0,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,2,2015,July,29,17,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,112,0,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Cancel,15,2015,July,29,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-07-06,Summer,2015-07-17T07:00Z +Cancel,7,2015,July,29,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,127.25,0,1,Canceled,2015-07-13,Summer,2015-07-17T07:00Z +Keep,11,2015,July,29,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,155.5,1,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Cancel,6,2015,July,29,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,110.5,0,1,No-Show,2015-07-17,Summer,2015-07-17T07:00Z +Keep,1,2015,July,29,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,144.5,0,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,1,2015,July,29,17,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,144.5,0,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,48,2015,July,29,17,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 196, NULL,0,Transient,123,0,0,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,15,2015,July,29,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Cancel,3,2015,July,29,17,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,107.6,0,0,No-Show,2015-07-17,Summer,2015-07-17T07:00Z +Cancel,23,2015,July,29,17,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-07-04,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,3,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,133.75,1,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,94,2015,July,29,17,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,103.5,0,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,64,2015,July,29,17,2,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,84.8,0,1,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,107,0,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,107,1,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,64,2015,July,29,17,2,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,84.8,0,1,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,107,1,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,24,2015,July,29,17,2,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,195,0,1,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,24,2015,July,29,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2015-07-23,Summer,2015-07-17T07:00Z +Keep,23,2015,July,29,17,2,5,2,2,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,195,0,0,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Keep,53,2015,July,29,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,125,0,2,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Cancel,23,2015,July,29,17,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,195,0,0,Canceled,2015-06-24,Summer,2015-07-17T07:00Z +Keep,90,2015,July,29,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,132.3,0,3,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Keep,79,2015,July,29,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,2,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Keep,43,2015,July,29,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,92,0,0,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Keep,90,2015,July,29,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,132.3,0,3,Check-Out,2015-07-24,Summer,2015-07-17T07:00Z +Keep,65,2015,July,29,17,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,2,Check-Out,2015-07-25,Summer,2015-07-17T07:00Z +Keep,65,2015,July,29,17,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,1,2,Check-Out,2015-07-25,Summer,2015-07-17T07:00Z +Keep,99,2015,July,29,17,2,6,3,0,0,BB,FRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,210,0,1,Check-Out,2015-07-25,Summer,2015-07-17T07:00Z +Keep,25,2015,July,29,17,3,7,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,194.9,0,2,Check-Out,2015-07-27,Summer,2015-07-17T07:00Z +Keep,92,2015,July,29,17,1,2,2,0,0,BB,MOZ,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,103.5,1,3,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,91,2015,July,29,17,1,2,2,1,0,BB,BWA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,118.5,0,3,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,38,2015,July,29,17,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,6,2015,July,29,17,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,128.27,0,0,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,38,2015,July,29,17,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,13,2015,July,29,17,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126.3,0,2,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Cancel,32,2015,July,29,17,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-06-24,Summer,2015-07-17T07:00Z +Keep,315,2015,July,29,17,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,96.3,0,0,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,8,2015,July,29,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,126.3,0,2,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Cancel,0,2015,July,29,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,L,C,0,No Deposit , NULL, NULL,0,Transient,136,0,0,Canceled,2015-07-17,Summer,2015-07-17T07:00Z +Keep,91,2015,July,29,17,1,2,2,1,0,BB,MOZ,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,118.5,0,3,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,3,2015,July,29,17,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,116.33,1,1,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,9,2015,July,29,17,2,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,164,0,1,Check-Out,2015-07-21,Summer,2015-07-17T07:00Z +Keep,19,2015,July,29,18,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,147.67,0,2,Check-Out,2015-07-21,Summer,2015-07-18T07:00Z +Keep,25,2015,July,29,18,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2015-07-24,Summer,2015-07-18T07:00Z +Keep,108,2015,July,29,18,2,4,2,1,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,147,1,2,Check-Out,2015-07-24,Summer,2015-07-18T07:00Z +Cancel,37,2015,July,29,18,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,168.3,0,0,Canceled,2015-07-18,Summer,2015-07-18T07:00Z +Keep,45,2015,July,29,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,0,0,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,64,2015,July,29,18,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,137.75,1,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,44,2015,July,29,18,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2015-07-22,Summer,2015-07-18T07:00Z +Keep,26,2015,July,29,18,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.6,1,0,Check-Out,2015-07-22,Summer,2015-07-18T07:00Z +Cancel,96,2015,July,29,18,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2015-04-29,Summer,2015-07-18T07:00Z +Cancel,123,2015,July,29,18,2,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,157,0,2,Canceled,2015-06-04,Summer,2015-07-18T07:00Z +Cancel,42,2015,July,29,18,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2015-06-11,Summer,2015-07-18T07:00Z +Keep,59,2015,July,29,18,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,132.5,0,0,Check-Out,2015-07-23,Summer,2015-07-18T07:00Z +Keep,28,2015,July,29,18,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98.02,0,1,Check-Out,2015-07-23,Summer,2015-07-18T07:00Z +Keep,106,2015,July,29,18,2,3,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,126,0,2,Check-Out,2015-07-23,Summer,2015-07-18T07:00Z +Keep,1,2015,July,29,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,173,0,1,Check-Out,2015-07-19,Summer,2015-07-18T07:00Z +Keep,0,2015,July,29,18,0,1,2,2,0,FB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,249,0,0,Check-Out,2015-07-19,Summer,2015-07-18T07:00Z +Keep,4,2015,July,29,18,1,1,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,186.5,0,0,Check-Out,2015-07-20,Summer,2015-07-18T07:00Z +Keep,3,2015,July,29,18,2,1,1,0,0,BB,CN,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,95,0,1,Check-Out,2015-07-21,Summer,2015-07-18T07:00Z +Keep,73,2015,July,29,18,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,241.5,0,2,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,44,2015,July,29,18,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,177,1,0,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,95,2015,July,29,18,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,153.73,1,0,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,94,2015,July,29,18,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,115,0,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Cancel,40,2015,July,29,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,127.03,0,2,Canceled,2015-06-24,Summer,2015-07-18T07:00Z +Keep,64,2015,July,29,18,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,128.25,0,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,64,2015,July,29,18,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,128.25,0,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,94,2015,July,29,18,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,115,0,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,57,2015,July,29,18,2,6,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,1,Check-Out,2015-07-26,Summer,2015-07-18T07:00Z +Cancel,60,2015,July,29,18,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,0,0,Canceled,2015-06-01,Summer,2015-07-18T07:00Z +Keep,57,2015,July,29,18,2,6,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,1,Check-Out,2015-07-26,Summer,2015-07-18T07:00Z +Keep,87,2015,July,29,18,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124.5,0,0,Check-Out,2015-08-01,Summer,2015-07-18T07:00Z +Keep,0,2015,July,30,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,98,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,0,2015,July,30,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Group,98,1,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,6,2015,July,30,19,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,0,2015,July,30,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 240,0,Group,88.2,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,19,2015,July,30,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,1,1,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,4,2015,July,30,19,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154.5,1,2,Check-Out,2015-07-21,Summer,2015-07-19T07:00Z +Cancel,59,2015,July,30,19,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2015-05-23,Summer,2015-07-19T07:00Z +Keep,44,2015,July,30,19,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,92,0,0,Check-Out,2015-07-23,Summer,2015-07-19T07:00Z +Cancel,37,2015,July,30,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-06-29,Summer,2015-07-19T07:00Z +Keep,66,2015,July,30,19,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,115,0,1,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Cancel,38,2015,July,30,19,2,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,110.53,0,0,Canceled,2015-06-19,Summer,2015-07-19T07:00Z +Cancel,62,2015,July,30,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 261, NULL,0,Transient,158.5,0,1,Canceled,2015-06-17,Summer,2015-07-19T07:00Z +Keep,41,2015,July,30,19,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,131.37,0,1,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Cancel,60,2015,July,30,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.71,0,0,Canceled,2015-05-27,Summer,2015-07-19T07:00Z +Keep,104,2015,July,30,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,123,0,1,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Cancel,62,2015,July,30,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 261, NULL,0,Transient,158.5,0,1,Canceled,2015-06-17,Summer,2015-07-19T07:00Z +Keep,117,2015,July,30,19,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,117.84,0,2,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Cancel,31,2015,July,30,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-06-19,Summer,2015-07-19T07:00Z +Keep,34,2015,July,30,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,116.85,0,0,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Keep,47,2015,July,30,19,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,129.16,0,1,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Cancel,24,2015,July,30,19,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2015-06-29,Summer,2015-07-19T07:00Z +Cancel,104,2015,July,30,19,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2015-07-02,Summer,2015-07-19T07:00Z +Keep,104,2015,July,30,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,123,0,1,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Keep,32,2015,July,30,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,123,0,0,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Cancel,47,2015,July,30,19,3,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2015-07-14,Summer,2015-07-19T07:00Z +Keep,29,2015,July,30,19,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Contract,135.2,0,0,Check-Out,2015-07-29,Summer,2015-07-19T07:00Z +Keep,30,2015,July,30,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,123,0,2,Check-Out,2015-08-02,Summer,2015-07-19T07:00Z +Keep,123,2015,July,30,19,2,4,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,130.5,0,1,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Keep,14,2015,July,30,20,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 104, NULL,0,Transient,123,0,0,Check-Out,2015-07-21,Summer,2015-07-20T07:00Z +Cancel,118,2015,July,30,20,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179.1,0,2,Canceled,2015-05-13,Summer,2015-07-20T07:00Z +Keep,0,2015,July,30,20,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 5, NULL,0,Transient,0,0,0,Check-Out,2015-07-20,Summer,2015-07-20T07:00Z +Keep,0,2015,July,30,20,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2015-07-20,Summer,2015-07-20T07:00Z +Keep,79,2015,July,30,20,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,115,0,3,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,63,2015,July,30,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,68,2015,July,30,20,1,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient,103.5,1,2,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,96,2015,July,30,20,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,157,1,0,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Cancel,41,2015,July,30,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-06-15,Summer,2015-07-20T07:00Z +Keep,46,2015,July,30,20,1,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,111.65,0,0,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Cancel,41,2015,July,30,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-06-15,Summer,2015-07-20T07:00Z +Cancel,60,2015,July,30,20,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2015-06-17,Summer,2015-07-20T07:00Z +Keep,41,2015,July,30,20,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,104,0,0,Check-Out,2015-07-25,Summer,2015-07-20T07:00Z +Cancel,69,2015,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2015-06-08,Summer,2015-07-20T07:00Z +Cancel,41,2015,July,30,20,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,1,Canceled,2015-06-22,Summer,2015-07-20T07:00Z +Keep,52,2015,July,30,20,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,133.17,0,0,Check-Out,2015-07-26,Summer,2015-07-20T07:00Z +Cancel,41,2015,July,30,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,141.33,0,1,Canceled,2015-06-22,Summer,2015-07-20T07:00Z +Keep,89,2015,July,30,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,121.01,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Cancel,28,2015,July,30,20,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,240.64,0,0,Canceled,2015-07-20,Summer,2015-07-20T07:00Z +Keep,65,2015,July,30,20,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 105, NULL,0,Transient,167.5,0,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,82,2015,July,30,20,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.43,0,3,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,42,2015,July,30,20,2,5,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,148.34,0,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,62,2015,July,30,20,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,167,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Cancel,86,2015,July,30,20,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,172.93,0,1,Canceled,2015-05-11,Summer,2015-07-20T07:00Z +Cancel,118,2015,July,30,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179.1,0,1,Canceled,2015-04-23,Summer,2015-07-20T07:00Z +Keep,28,2015,July,30,20,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 15, NULL,0,Transient,192.5,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Cancel,52,2015,July,30,20,3,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,92,0,0,Canceled,2015-06-02,Summer,2015-07-20T07:00Z +Cancel,49,2015,July,30,20,3,6,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,111.2,0,0,Canceled,2015-06-01,Summer,2015-07-20T07:00Z +Keep,39,2015,July,30,20,3,7,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 142, NULL,0,Transient,141.6,0,1,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Keep,39,2015,July,30,20,3,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,141.6,0,1,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Keep,39,2015,July,30,20,3,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,141.6,0,1,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Cancel,7,2015,July,30,20,3,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,200,0,0,Canceled,2015-07-14,Summer,2015-07-20T07:00Z +Cancel,7,2015,July,30,20,3,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,200,0,0,Canceled,2015-07-14,Summer,2015-07-20T07:00Z +Cancel,42,2015,July,30,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157,0,0,Canceled,2015-07-08,Summer,2015-07-21T07:00Z +Keep,5,2015,July,30,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 154,0,Transient,99.5,0,0,Check-Out,2015-07-23,Summer,2015-07-21T07:00Z +Cancel,81,2015,July,30,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2015-06-01,Summer,2015-07-21T07:00Z +Cancel,63,2015,July,30,21,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2015-06-19,Summer,2015-07-21T07:00Z +Keep,61,2015,July,30,21,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,103.5,0,0,Check-Out,2015-07-25,Summer,2015-07-21T07:00Z +Keep,8,2015,July,30,21,0,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,207,1,0,Check-Out,2015-07-26,Summer,2015-07-21T07:00Z +Keep,89,2015,July,30,21,1,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,163.33,1,1,Check-Out,2015-07-27,Summer,2015-07-21T07:00Z +Keep,57,2015,July,30,21,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,151.86,0,0,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,102,2015,July,30,21,2,5,3,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,95.57,0,1,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,108,2015,July,30,21,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112.05,0,1,Check-Out,2015-07-29,Summer,2015-07-21T07:00Z +Keep,28,2015,July,30,21,2,7,2,1,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,160,0,1,Check-Out,2015-07-30,Summer,2015-07-21T07:00Z +Keep,29,2015,July,30,21,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.18,0,1,Check-Out,2015-07-31,Summer,2015-07-21T07:00Z +Keep,0,2015,July,30,22,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,153,1,0,Check-Out,2015-07-23,Summer,2015-07-22T07:00Z +Cancel,96,2015,July,30,22,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119.75,0,1,Canceled,2015-04-22,Summer,2015-07-22T07:00Z +Cancel,44,2015,July,30,22,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-06-09,Summer,2015-07-22T07:00Z +Keep,44,2015,July,30,22,0,4,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,167.69,0,1,Check-Out,2015-07-26,Summer,2015-07-22T07:00Z +Cancel,44,2015,July,30,22,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,1,Canceled,2015-06-09,Summer,2015-07-22T07:00Z +Cancel,44,2015,July,30,22,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-06-09,Summer,2015-07-22T07:00Z +Cancel,41,2015,July,30,22,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,178.4,0,0,Canceled,2015-06-29,Summer,2015-07-22T07:00Z +Keep,16,2015,July,30,23,0,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,I,0,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2015-07-23,Summer,2015-07-23T07:00Z +Keep,73,2015,July,30,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,1,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-07-23,Summer,2015-07-23T07:00Z +Keep,3,2015,July,30,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Keep,0,2015,July,30,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Cancel,55,2015,July,30,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,112,0,0,Canceled,2015-06-05,Summer,2015-07-23T07:00Z +Keep,33,2015,July,30,23,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,194,1,1,Check-Out,2015-07-26,Summer,2015-07-23T07:00Z +Cancel,19,2015,July,30,23,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-07-07,Summer,2015-07-23T07:00Z +Cancel,55,2015,July,30,23,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2015-06-19,Summer,2015-07-23T07:00Z +Keep,33,2015,July,30,23,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2015-07-26,Summer,2015-07-23T07:00Z +Cancel,19,2015,July,30,23,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2015-07-06,Summer,2015-07-23T07:00Z +Cancel,19,2015,July,30,23,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, 178,0,Transient,139,0,0,Canceled,2015-07-07,Summer,2015-07-23T07:00Z +Keep,117,2015,July,30,23,2,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,101.46,1,0,Check-Out,2015-07-28,Summer,2015-07-23T07:00Z +Cancel,72,2015,July,30,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2015-07-04,Summer,2015-07-23T07:00Z +Cancel,19,2015,July,30,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2015-07-06,Summer,2015-07-23T07:00Z +Keep,34,2015,July,30,23,2,6,3,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,217.05,1,1,Check-Out,2015-07-31,Summer,2015-07-23T07:00Z +Keep,9,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,164,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,8,2015,July,30,24,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,173,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Cancel,36,2015,July,30,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112.5,0,0,Canceled,2015-07-22,Summer,2015-07-24T07:00Z +Keep,22,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,22,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,173,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,22,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,36,2015,July,30,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,22,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Cancel,22,2015,July,30,24,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,233,0,2,Canceled,2015-07-14,Summer,2015-07-24T07:00Z +Keep,18,2015,July,30,24,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,G,0,No Deposit , 250, NULL,0,Transient,154,0,0,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,8,2015,July,30,24,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,173,0,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Cancel,67,2015,July,30,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-07-06,Summer,2015-07-24T07:00Z +Cancel,105,2015,July,30,24,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,132.5,0,0,Canceled,2015-07-01,Summer,2015-07-24T07:00Z +Keep,1,2015,July,30,24,1,2,3,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,222.67,0,0,Check-Out,2015-07-27,Summer,2015-07-24T07:00Z +Cancel,67,2015,July,30,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2015-07-06,Summer,2015-07-24T07:00Z +Keep,39,2015,July,30,24,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Cancel,45,2015,July,30,24,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127,0,0,Canceled,2015-06-17,Summer,2015-07-24T07:00Z +Cancel,45,2015,July,30,24,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2015-06-18,Summer,2015-07-24T07:00Z +Keep,14,2015,July,30,24,2,2,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,149.7,1,1,Check-Out,2015-07-28,Summer,2015-07-24T07:00Z +Cancel,53,2015,July,30,24,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161.25,0,0,Canceled,2015-06-08,Summer,2015-07-24T07:00Z +Keep,28,2015,July,30,24,2,2,2,0,0,BB,ALB,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,107,0,0,Check-Out,2015-07-28,Summer,2015-07-24T07:00Z +Keep,55,2015,July,30,24,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,75.44,0,1,Check-Out,2015-07-29,Summer,2015-07-24T07:00Z +Keep,55,2015,July,30,24,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,75.44,0,1,Check-Out,2015-07-29,Summer,2015-07-24T07:00Z +Keep,25,2015,July,30,24,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,115,0,0,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Cancel,43,2015,July,30,24,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,159.2,0,1,Canceled,2015-07-14,Summer,2015-07-24T07:00Z +Cancel,109,2015,July,30,24,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,163.29,0,2,Canceled,2015-04-22,Summer,2015-07-24T07:00Z +Cancel,62,2015,July,30,24,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2015-05-25,Summer,2015-07-24T07:00Z +Keep,25,2015,July,30,24,2,6,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-01,Summer,2015-07-24T07:00Z +Keep,43,2015,July,30,24,2,7,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,0,Check-Out,2015-08-02,Summer,2015-07-24T07:00Z +Keep,35,2015,July,30,24,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,132.5,0,0,Check-Out,2015-08-03,Summer,2015-07-24T07:00Z +Cancel,42,2015,July,30,24,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,107,0,0,Canceled,2015-06-26,Summer,2015-07-24T07:00Z +Cancel,312,2015,July,30,24,4,10,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,121.98,0,1,Canceled,2015-07-21,Summer,2015-07-24T07:00Z +Keep,30,2015,July,30,25,0,0,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,0,0,0,Check-Out,2015-07-25,Summer,2015-07-25T07:00Z +Keep,47,2015,July,30,25,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 261, NULL,0,Transient,133,0,0,Check-Out,2015-07-28,Summer,2015-07-25T07:00Z +Keep,40,2015,July,30,25,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-07-26,Summer,2015-07-25T07:00Z +Keep,11,2015,July,30,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,117.81,0,0,Check-Out,2015-07-26,Summer,2015-07-25T07:00Z +Keep,39,2015,July,30,25,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-07-26,Summer,2015-07-25T07:00Z +Cancel,39,2015,July,30,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-07-11,Summer,2015-07-25T07:00Z +Keep,1,2015,July,30,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,147,0,0,Check-Out,2015-07-27,Summer,2015-07-25T07:00Z +Cancel,12,2015,July,30,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,2,Canceled,2015-07-14,Summer,2015-07-25T07:00Z +Cancel,16,2015,July,30,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,153,0,1,Canceled,2015-07-10,Summer,2015-07-25T07:00Z +Cancel,16,2015,July,30,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,134,0,0,Canceled,2015-07-23,Summer,2015-07-25T07:00Z +Keep,12,2015,July,30,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-07-27,Summer,2015-07-25T07:00Z +Keep,51,2015,July,30,25,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,118,0,0,Check-Out,2015-07-28,Summer,2015-07-25T07:00Z +Keep,67,2015,July,30,25,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-07-29,Summer,2015-07-25T07:00Z +Keep,52,2015,July,30,25,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,2,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,25,2015,July,30,25,2,3,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,158.77,0,2,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,94,2015,July,30,25,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Cancel,54,2015,July,30,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-06-26,Summer,2015-07-25T07:00Z +Keep,33,2015,July,30,25,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,142.03,0,1,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,47,2015,July,30,25,2,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,240,0,0,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,43,2015,July,30,25,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-07-31,Summer,2015-07-25T07:00Z +Cancel,87,2015,July,30,25,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,3,Canceled,2015-06-02,Summer,2015-07-25T07:00Z +Keep,54,2015,July,30,25,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,147,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,32,2015,July,30,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,176,1,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Cancel,29,2015,July,30,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-27,Summer,2015-07-25T07:00Z +Cancel,96,2015,July,30,25,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2015-05-12,Summer,2015-07-25T07:00Z +Cancel,100,2015,July,30,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-04-17,Summer,2015-07-25T07:00Z +Keep,54,2015,July,30,25,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,147,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,75,2015,July,30,25,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,167,0,1,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,31,2015,July,30,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,107.2,1,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Cancel,25,2015,July,30,25,2,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,131.63,0,0,Canceled,2015-07-03,Summer,2015-07-25T07:00Z +Keep,61,2015,July,30,25,2,6,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 105, NULL,0,Transient,233.05,1,0,Check-Out,2015-08-02,Summer,2015-07-25T07:00Z +Keep,60,2015,July,30,25,2,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 147, NULL,0,Transient,90.12,0,1,Check-Out,2015-08-02,Summer,2015-07-25T07:00Z +Cancel,31,2015,July,30,25,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-29,Summer,2015-07-25T07:00Z +Cancel,107,2015,July,30,25,3,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125,0,2,Canceled,2015-04-15,Summer,2015-07-25T07:00Z +Cancel,31,2015,July,30,25,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-06-29,Summer,2015-07-25T07:00Z +Keep,115,2015,July,30,25,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-08-04,Summer,2015-07-25T07:00Z +Keep,59,2015,July,30,25,4,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,114.25,0,1,Check-Out,2015-08-06,Summer,2015-07-25T07:00Z +Cancel,85,2015,July,30,25,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,107,0,0,Canceled,2015-07-03,Summer,2015-07-25T07:00Z +Keep,0,2015,July,30,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,88.55,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Cancel,299,2015,July,30,25,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,1,Canceled,2015-03-25,Summer,2015-07-25T07:00Z +Keep,50,2015,July,30,25,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,195,1,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Cancel,50,2015,July,30,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-06-08,Summer,2015-07-25T07:00Z +Cancel,88,2015,July,31,26,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-05-15,Summer,2015-07-26T07:00Z +Cancel,116,2015,July,31,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-18,Summer,2015-07-26T07:00Z +Keep,47,2015,July,31,26,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,103.5,0,0,Check-Out,2015-07-29,Summer,2015-07-26T07:00Z +Keep,48,2015,July,31,26,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,115,0,3,Check-Out,2015-07-29,Summer,2015-07-26T07:00Z +Cancel,54,2015,July,31,26,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,95.02,0,2,Canceled,2015-06-03,Summer,2015-07-26T07:00Z +Cancel,33,2015,July,31,26,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,132.5,0,0,Canceled,2015-06-25,Summer,2015-07-26T07:00Z +Keep,73,2015,July,31,26,2,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,209,0,1,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Cancel,54,2015,July,31,26,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,95.02,0,2,Canceled,2015-06-03,Summer,2015-07-26T07:00Z +Cancel,33,2015,July,31,26,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,132.5,0,0,Canceled,2015-06-25,Summer,2015-07-26T07:00Z +Keep,38,2015,July,31,26,2,5,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,180,0,0,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,34,2015,July,31,26,2,0,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.18,0,0,Check-Out,2015-07-28,Summer,2015-07-26T07:00Z +Keep,130,2015,July,31,26,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,174.01,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Cancel,39,2015,July,31,26,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,1,Canceled,2015-06-17,Summer,2015-07-26T07:00Z +Cancel,39,2015,July,31,26,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,1,Canceled,2015-06-17,Summer,2015-07-26T07:00Z +Keep,45,2015,July,31,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,107.2,0,0,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,31,2015,July,31,27,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 241, NULL,0,Transient,0,0,0,Check-Out,2015-07-27,Summer,2015-07-27T07:00Z +Cancel,48,2015,July,31,27,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2015-07-03,Summer,2015-07-27T07:00Z +Keep,59,2015,July,31,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,1,0,Check-Out,2015-07-29,Summer,2015-07-27T07:00Z +Cancel,48,2015,July,31,27,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,1,Canceled,2015-07-03,Summer,2015-07-27T07:00Z +Cancel,48,2015,July,31,27,1,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,124.2,0,1,Canceled,2015-06-15,Summer,2015-07-27T07:00Z +Cancel,48,2015,July,31,27,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,0,1,Canceled,2015-06-15,Summer,2015-07-27T07:00Z +Keep,48,2015,July,31,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,145,1,0,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,96,2015,July,31,27,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,166,0,2,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,51,2015,July,31,27,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,G,0,No Deposit , 250, NULL,0,Transient,115,0,0,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,96,2015,July,31,27,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,166,1,2,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Cancel,41,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-17,Summer,2015-07-27T07:00Z +Keep,6,2015,July,31,27,1,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,5,No Deposit , NULL, NULL,0,Transient,162,0,2,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,27,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,28,2015,July,31,27,1,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 142, NULL,0,Transient,133.2,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,30,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,45,2015,July,31,27,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,1,2,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,52,2015,July,31,27,1,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,145,0,2,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,31,2015,July,31,27,1,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Cancel,74,2015,July,31,27,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,107,0,1,Canceled,2015-06-29,Summer,2015-07-27T07:00Z +Keep,31,2015,July,31,27,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,167.2,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Cancel,87,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-05-09,Summer,2015-07-27T07:00Z +Keep,48,2015,July,31,27,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,130,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Cancel,41,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-06-17,Summer,2015-07-27T07:00Z +Keep,35,2015,July,31,27,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,149,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,28,2015,July,31,27,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,1,0,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,77,2015,July,31,27,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,195,0,1,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Cancel,33,2015,July,31,27,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-06-25,Summer,2015-07-27T07:00Z +Keep,30,2015,July,31,27,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,107.2,0,0,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Cancel,34,2015,July,31,27,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-07-06,Summer,2015-07-27T07:00Z +Cancel,298,2015,July,31,27,1,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,183.45,0,1,Canceled,2015-03-17,Summer,2015-07-27T07:00Z +Keep,35,2015,July,31,27,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159.6,1,1,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Keep,40,2015,July,31,27,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Cancel,101,2015,July,31,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Canceled,2015-05-13,Summer,2015-07-27T07:00Z +Cancel,101,2015,July,31,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219.43,0,2,Canceled,2015-05-13,Summer,2015-07-27T07:00Z +Cancel,101,2015,July,31,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-05-13,Summer,2015-07-27T07:00Z +Cancel,101,2015,July,31,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Canceled,2015-05-13,Summer,2015-07-27T07:00Z +Keep,38,2015,July,31,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,107.2,0,0,Check-Out,2015-08-03,Summer,2015-07-27T07:00Z +Keep,76,2015,July,31,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,102.72,0,1,Check-Out,2015-08-03,Summer,2015-07-27T07:00Z +Keep,70,2015,July,31,28,0,1,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,114.85,0,1,Check-Out,2015-07-29,Summer,2015-07-28T07:00Z +Keep,70,2015,July,31,28,0,1,2,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,114.85,0,1,Check-Out,2015-07-29,Summer,2015-07-28T07:00Z +Keep,68,2015,July,31,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,135,1,1,Check-Out,2015-07-30,Summer,2015-07-28T07:00Z +Cancel,63,2015,July,31,28,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2015-07-07,Summer,2015-07-28T07:00Z +Cancel,11,2015,July,31,28,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2015-07-27,Summer,2015-07-28T07:00Z +Keep,32,2015,July,31,28,0,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,107,0,1,Check-Out,2015-08-01,Summer,2015-07-28T07:00Z +Keep,29,2015,July,31,28,0,4,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,107,0,1,Check-Out,2015-08-01,Summer,2015-07-28T07:00Z +Keep,47,2015,July,31,28,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,164,0,2,Check-Out,2015-08-01,Summer,2015-07-28T07:00Z +Keep,50,2015,July,31,28,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.8,0,1,Check-Out,2015-08-02,Summer,2015-07-28T07:00Z +Cancel,29,2015,July,31,28,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,2,Canceled,2015-07-16,Summer,2015-07-28T07:00Z +Keep,36,2015,July,31,28,0,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2015-08-02,Summer,2015-07-28T07:00Z +Keep,49,2015,July,31,28,1,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.18,0,1,Check-Out,2015-08-03,Summer,2015-07-28T07:00Z +Cancel,70,2015,July,31,28,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,115.5,0,0,Canceled,2015-05-22,Summer,2015-07-28T07:00Z +Keep,110,2015,July,31,28,2,8,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,90.95,0,1,Check-Out,2015-08-07,Summer,2015-07-28T07:00Z +Keep,8,2015,July,31,29,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 142, NULL,0,Contract,0,0,0,Check-Out,2015-07-29,Summer,2015-07-29T07:00Z +Cancel,119,2015,July,31,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.54,0,1,Canceled,2015-04-04,Summer,2015-07-29T07:00Z +Keep,30,2015,July,31,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,146,1,2,Check-Out,2015-08-02,Summer,2015-07-29T07:00Z +Cancel,29,2015,July,31,29,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165.4,0,1,Canceled,2015-07-02,Summer,2015-07-29T07:00Z +Keep,71,2015,July,31,29,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-03,Summer,2015-07-29T07:00Z +Cancel,37,2015,July,31,29,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,133,0,1,Canceled,2015-07-27,Summer,2015-07-29T07:00Z +Cancel,40,2015,July,31,29,1,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,240,0,0,Canceled,2015-06-22,Summer,2015-07-29T07:00Z +Keep,37,2015,July,31,29,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,157,0,1,Check-Out,2015-08-03,Summer,2015-07-29T07:00Z +Keep,0,2015,July,31,29,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,188,0,0,Check-Out,2015-07-30,Summer,2015-07-29T07:00Z +Cancel,37,2015,July,31,29,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,133,0,1,Canceled,2015-07-27,Summer,2015-07-29T07:00Z +Keep,37,2015,July,31,29,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2015-08-03,Summer,2015-07-29T07:00Z +Keep,97,2015,July,31,29,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-08-03,Summer,2015-07-29T07:00Z +Cancel,71,2015,July,31,29,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-05-23,Summer,2015-07-29T07:00Z +Cancel,118,2015,July,31,29,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,186,0,2,Canceled,2015-07-10,Summer,2015-07-29T07:00Z +Keep,102,2015,July,31,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,1,Check-Out,2015-08-05,Summer,2015-07-29T07:00Z +Cancel,54,2015,July,31,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,141.65,0,0,Canceled,2015-06-08,Summer,2015-07-29T07:00Z +Cancel,58,2015,July,31,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,99.24,0,0,Canceled,2015-06-05,Summer,2015-07-29T07:00Z +Keep,34,2015,July,31,29,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,108.06,0,1,Check-Out,2015-08-04,Summer,2015-07-29T07:00Z +Cancel,105,2015,July,31,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,0,Canceled,2015-04-15,Summer,2015-07-29T07:00Z +Cancel,47,2015,July,31,29,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,148.63,0,1,Canceled,2015-06-17,Summer,2015-07-29T07:00Z +Cancel,15,2015,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,173,0,3,Canceled,2015-07-16,Summer,2015-07-30T07:00Z +Keep,37,2015,July,31,30,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-07-31,Summer,2015-07-30T07:00Z +Cancel,0,2015,July,31,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,114,0,0,Canceled,2015-07-30,Summer,2015-07-30T07:00Z +Cancel,8,2015,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,153,0,1,Canceled,2015-07-30,Summer,2015-07-30T07:00Z +Keep,17,2015,July,31,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-08-01,Summer,2015-07-30T07:00Z +Keep,3,2015,July,31,30,0,3,3,1,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,250.33,0,2,Check-Out,2015-08-02,Summer,2015-07-30T07:00Z +Cancel,30,2015,July,31,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,146.67,0,2,Canceled,2015-07-06,Summer,2015-07-30T07:00Z +Cancel,31,2015,July,31,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,154,0,2,Canceled,2015-06-30,Summer,2015-07-30T07:00Z +Cancel,66,2015,July,31,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-11,Summer,2015-07-30T07:00Z +Keep,52,2015,July,31,30,0,3,2,2,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,280.74,1,0,Check-Out,2015-07-30,Summer,2015-07-30T07:00Z +Keep,20,2015,July,31,30,1,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,193,0,1,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Cancel,30,2015,July,31,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,146.67,0,2,Canceled,2015-07-06,Summer,2015-07-30T07:00Z +Cancel,31,2015,July,31,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,154,0,2,Canceled,2015-06-30,Summer,2015-07-30T07:00Z +Cancel,62,2015,July,31,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154.5,0,0,Canceled,2015-06-09,Summer,2015-07-30T07:00Z +Cancel,65,2015,July,31,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-11,Summer,2015-07-30T07:00Z +Cancel,64,2015,July,31,30,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,137.8,0,0,Canceled,2015-06-08,Summer,2015-07-30T07:00Z +Keep,77,2015,July,31,30,2,7,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,160,1,3,Check-Out,2015-08-08,Summer,2015-07-30T07:00Z +Keep,75,2015,July,31,30,2,7,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient-Party,125.89,0,1,Check-Out,2015-08-08,Summer,2015-07-30T07:00Z +Keep,75,2015,July,31,30,2,7,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient-Party,125.89,0,1,Check-Out,2015-08-08,Summer,2015-07-30T07:00Z +Cancel,62,2015,July,31,30,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,126.71,0,0,Canceled,2015-06-24,Summer,2015-07-30T07:00Z +Keep,42,2015,July,31,31,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 142, NULL,0,Contract,0,0,0,Check-Out,2015-07-31,Summer,2015-07-31T07:00Z +Keep,46,2015,July,31,31,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,1,0,Check-Out,2015-07-31,Summer,2015-07-31T07:00Z +Keep,0,2015,July,31,31,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,188,0,0,Check-Out,2015-08-01,Summer,2015-07-31T07:00Z +Cancel,25,2015,July,31,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,2,Canceled,2015-07-06,Summer,2015-07-31T07:00Z +Cancel,16,2015,July,31,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,3,Canceled,2015-07-16,Summer,2015-07-31T07:00Z +Cancel,16,2015,July,31,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,3,Canceled,2015-07-16,Summer,2015-07-31T07:00Z +Keep,16,2015,July,31,31,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,120,0,1,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Cancel,4,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,154.8,0,3,Canceled,2015-07-31,Summer,2015-07-31T07:00Z +Keep,4,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,192,0,2,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Cancel,25,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-07-06,Summer,2015-07-31T07:00Z +Cancel,83,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-16,Summer,2015-07-31T07:00Z +Keep,4,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,192,1,2,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Cancel,56,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-07-21,Summer,2015-07-31T07:00Z +Cancel,32,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Canceled,2015-07-13,Summer,2015-07-31T07:00Z +Keep,32,2015,July,31,31,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219.5,0,0,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,0,2015,July,31,31,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,192.5,0,1,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Cancel,18,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.7,0,1,Canceled,2015-07-15,Summer,2015-07-31T07:00Z +Cancel,23,2015,July,31,31,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,111.92,0,0,Canceled,2015-07-14,Summer,2015-07-31T07:00Z +Cancel,39,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-07-11,Summer,2015-07-31T07:00Z +Cancel,18,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.7,0,1,Canceled,2015-07-15,Summer,2015-07-31T07:00Z +Cancel,18,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,3,Canceled,2015-07-15,Summer,2015-07-31T07:00Z +Cancel,23,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,112,0,1,Canceled,2015-07-14,Summer,2015-07-31T07:00Z +Keep,286,2015,July,31,31,2,2,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Transient,57.6,0,0,Check-Out,2015-08-04,Summer,2015-07-31T07:00Z +Keep,72,2015,July,31,31,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,1,0,Check-Out,2015-08-04,Summer,2015-07-31T07:00Z +Cancel,136,2015,July,31,31,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,0,Canceled,2015-07-09,Summer,2015-07-31T07:00Z +Keep,58,2015,July,31,31,2,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 105, NULL,0,Transient,157.8,0,0,Check-Out,2015-08-05,Summer,2015-07-31T07:00Z +Keep,80,2015,July,31,31,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170.33,1,1,Check-Out,2015-08-06,Summer,2015-07-31T07:00Z +Keep,113,2015,July,31,31,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,119.25,0,0,Check-Out,2015-08-10,Summer,2015-07-31T07:00Z +Keep,129,2015,August,31,1,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient,96.3,0,0,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Cancel,84,2015,August,31,1,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,118.06,0,0,Canceled,2015-05-12,Summer,2015-08-01T07:00Z +Cancel,84,2015,August,31,1,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,118.06,0,0,Canceled,2015-05-12,Summer,2015-08-01T07:00Z +Cancel,89,2015,August,31,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154,0,0,Canceled,2015-05-04,Summer,2015-08-01T07:00Z +Cancel,10,2015,August,31,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,202,0,0,Canceled,2015-07-29,Summer,2015-08-01T07:00Z +Cancel,80,2015,August,31,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-07-16,Summer,2015-08-01T07:00Z +Cancel,10,2015,August,31,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,202,0,0,Canceled,2015-07-29,Summer,2015-08-01T07:00Z +Cancel,10,2015,August,31,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,252,0,0,Canceled,2015-07-29,Summer,2015-08-01T07:00Z +Cancel,24,2015,August,31,1,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,233,0,1,Canceled,2015-07-16,Summer,2015-08-01T07:00Z +Keep,1,2015,August,31,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,211,0,2,Check-Out,2015-08-02,Summer,2015-08-01T07:00Z +Cancel,9,2015,August,31,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,211,0,2,Canceled,2015-07-31,Summer,2015-08-01T07:00Z +Cancel,3,2015,August,31,1,2,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,237,0,1,Canceled,2015-07-29,Summer,2015-08-01T07:00Z +Keep,3,2015,August,31,1,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,188.29,0,2,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Cancel,124,2015,August,31,1,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-06,Summer,2015-08-01T07:00Z +Cancel,74,2015,August,31,1,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,177.14,0,0,Canceled,2015-07-15,Summer,2015-08-01T07:00Z +Cancel,82,2015,August,31,1,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,222.14,0,0,Canceled,2015-06-11,Summer,2015-08-01T07:00Z +Cancel,91,2015,August,31,1,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,127.82,0,2,Canceled,2015-05-22,Summer,2015-08-01T07:00Z +Cancel,77,2015,August,31,1,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194.14,0,0,Canceled,2015-05-19,Summer,2015-08-01T07:00Z +Cancel,130,2015,August,31,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Canceled,2015-05-19,Summer,2015-08-01T07:00Z +Cancel,91,2015,August,31,1,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,144.53,0,3,Canceled,2015-06-06,Summer,2015-08-01T07:00Z +Keep,79,2015,August,31,1,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,185,1,4,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Cancel,130,2015,August,31,1,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,96.3,0,0,Canceled,2015-05-22,Summer,2015-08-01T07:00Z +Keep,66,2015,August,31,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,193.13,0,0,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Cancel,53,2015,August,31,1,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,210.78,0,0,Canceled,2015-06-16,Summer,2015-08-01T07:00Z +Cancel,80,2015,August,31,1,4,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,169,0,1,Canceled,2015-07-21,Summer,2015-08-01T07:00Z +Cancel,77,2015,August,31,1,4,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,174.7,0,3,Canceled,2015-07-22,Summer,2015-08-01T07:00Z +Cancel,57,2015,August,31,1,4,10,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,135.53,0,0,Canceled,2015-07-07,Summer,2015-08-01T07:00Z +Keep,11,2015,August,31,1,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 104, NULL,0,Transient,172,0,0,Check-Out,2015-08-15,Summer,2015-08-01T07:00Z +Cancel,25,2015,August,32,2,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,144,0,2,Canceled,2015-07-08,Summer,2015-08-02T07:00Z +Cancel,2,2015,August,32,2,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,162.5,0,1,Canceled,2015-08-01,Summer,2015-08-02T07:00Z +Cancel,36,2015,August,32,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209.6,0,2,Canceled,2015-06-29,Summer,2015-08-02T07:00Z +Cancel,36,2015,August,32,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209.6,0,2,Canceled,2015-06-29,Summer,2015-08-02T07:00Z +Keep,115,2015,August,32,2,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,195.5,1,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,95,2015,August,32,2,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient,186,1,4,Check-Out,2015-08-08,Summer,2015-08-02T07:00Z +Keep,67,2015,August,32,2,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,163.5,0,1,Check-Out,2015-08-08,Summer,2015-08-02T07:00Z +Keep,60,2015,August,32,2,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,180.28,0,0,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,34,2015,August,32,2,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,174.76,1,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,78,2015,August,32,2,4,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,116.85,0,0,Check-Out,2015-08-11,Summer,2015-08-02T07:00Z +Keep,93,2015,August,32,2,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,159,0,0,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Cancel,327,2015,August,32,2,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,104.55,0,0,Canceled,2015-04-23,Summer,2015-08-02T07:00Z +Keep,21,2015,August,32,3,0,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,F,0,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2015-08-03,Summer,2015-08-03T07:00Z +Keep,0,2015,August,32,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,144.76,0,0,Check-Out,2015-08-04,Summer,2015-08-03T07:00Z +Cancel,47,2015,August,32,3,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2015-06-17,Summer,2015-08-03T07:00Z +Cancel,81,2015,August,32,3,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,123,0,0,Canceled,2015-07-18,Summer,2015-08-03T07:00Z +Cancel,52,2015,August,32,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2015-07-13,Summer,2015-08-03T07:00Z +Cancel,13,2015,August,32,3,1,4,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 142, NULL,0,Contract,220.55,0,0,Canceled,2015-07-24,Summer,2015-08-03T07:00Z +Keep,83,2015,August,32,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,162.14,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Cancel,131,2015,August,32,3,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,119.7,0,1,Canceled,2015-03-28,Summer,2015-08-03T07:00Z +Keep,460,2015,August,32,3,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,77.54,0,0,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Cancel,82,2015,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-07-06,Summer,2015-08-03T07:00Z +Cancel,61,2015,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-07-23,Summer,2015-08-03T07:00Z +Keep,94,2015,August,32,4,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-08-04,Summer,2015-08-04T07:00Z +Keep,1,2015,August,32,4,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-04,Summer,2015-08-04T07:00Z +Keep,0,2015,August,32,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,172,0,0,Check-Out,2015-08-05,Summer,2015-08-04T07:00Z +Cancel,36,2015,August,32,4,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,221,0,0,Canceled,2015-07-29,Summer,2015-08-04T07:00Z +Cancel,61,2015,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-07-06,Summer,2015-08-04T07:00Z +Keep,13,2015,August,32,4,0,4,2,0,1,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient-Party,230.5,0,2,Check-Out,2015-08-08,Summer,2015-08-04T07:00Z +Keep,13,2015,August,32,4,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient-Party,230.5,1,2,Check-Out,2015-08-08,Summer,2015-08-04T07:00Z +Cancel,15,2015,August,32,4,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,1,Canceled,2015-07-21,Summer,2015-08-04T07:00Z +Keep,14,2015,August,32,4,0,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,241,0,2,Check-Out,2015-08-09,Summer,2015-08-04T07:00Z +Cancel,13,2015,August,32,4,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,1,Canceled,2015-07-25,Summer,2015-08-04T07:00Z +Keep,140,2015,August,32,4,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,1,0,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,6,2015,August,32,4,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,188.29,0,2,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,140,2015,August,32,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,0,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,81,2015,August,32,4,2,8,2,0,0,HB,RUS,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,187.8,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,1,2015,August,32,5,0,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-05,Summer,2015-08-05T07:00Z +Keep,65,2015,August,32,5,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 261, NULL,0,Transient,0,0,0,Check-Out,2015-08-05,Summer,2015-08-05T07:00Z +Cancel,0,2015,August,32,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,172,0,1,Canceled,2015-08-05,Summer,2015-08-05T07:00Z +Keep,2,2015,August,32,5,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,171.9,0,0,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Keep,0,2015,August,32,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,L,F,0,No Deposit , NULL, NULL,0,Transient,200,0,0,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Cancel,114,2015,August,32,5,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.4,0,0,Canceled,2015-07-04,Summer,2015-08-05T07:00Z +Cancel,111,2015,August,32,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-06-15,Summer,2015-08-05T07:00Z +Keep,44,2015,August,32,5,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,148.25,1,0,Check-Out,2015-08-09,Summer,2015-08-05T07:00Z +Keep,139,2015,August,32,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2015-08-09,Summer,2015-08-05T07:00Z +Cancel,57,2015,August,32,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,183,0,0,Canceled,2015-07-23,Summer,2015-08-05T07:00Z +Cancel,16,2015,August,32,5,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,242.6,0,1,Canceled,2015-07-22,Summer,2015-08-05T07:00Z +Keep,139,2015,August,32,5,0,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,172,0,2,Check-Out,2015-08-09,Summer,2015-08-05T07:00Z +Keep,84,2015,August,32,5,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,168.71,0,3,Check-Out,2015-08-12,Summer,2015-08-05T07:00Z +Cancel,117,2015,August,32,5,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,0,Canceled,2015-04-22,Summer,2015-08-05T07:00Z +Cancel,69,2015,August,32,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,112,0,0,Canceled,2015-06-05,Summer,2015-08-06T07:00Z +Keep,2,2015,August,32,6,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,0,Check-Out,2015-08-07,Summer,2015-08-06T07:00Z +Cancel,118,2015,August,32,6,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-05-20,Summer,2015-08-06T07:00Z +Keep,129,2015,August,32,6,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,1,Check-Out,2015-08-09,Summer,2015-08-06T07:00Z +Keep,9,2015,August,32,6,0,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,C,2,No Deposit , 240, NULL,0,Transient,268,1,1,Check-Out,2015-08-09,Summer,2015-08-06T07:00Z +Keep,52,2015,August,32,6,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,173,0,0,Check-Out,2015-08-10,Summer,2015-08-06T07:00Z +Keep,65,2015,August,32,6,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 142, NULL,0,Transient,149.2,0,0,Check-Out,2015-08-11,Summer,2015-08-06T07:00Z +Keep,7,2015,August,32,6,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,217.2,1,4,Check-Out,2015-08-11,Summer,2015-08-06T07:00Z +Cancel,28,2015,August,32,6,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,239.3,0,1,Canceled,2015-07-21,Summer,2015-08-06T07:00Z +Keep,3,2015,August,32,6,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.5,0,3,Check-Out,2015-08-12,Summer,2015-08-06T07:00Z +Keep,87,2015,August,32,6,2,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-14,Summer,2015-08-06T07:00Z +Keep,51,2015,August,32,6,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Check-Out,2015-08-14,Summer,2015-08-06T07:00Z +Keep,136,2015,August,32,6,2,8,3,1,0,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,181.9,0,3,Check-Out,2015-08-16,Summer,2015-08-06T07:00Z +Keep,4,2015,August,32,7,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-07,Summer,2015-08-07T07:00Z +Keep,1,2015,August,32,7,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 144,0,Transient,114,0,0,Check-Out,2015-08-08,Summer,2015-08-07T07:00Z +Cancel,49,2015,August,32,7,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,267,0,0,Canceled,2015-06-22,Summer,2015-08-07T07:00Z +Keep,4,2015,August,32,7,0,2,2,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,226,0,4,Check-Out,2015-08-09,Summer,2015-08-07T07:00Z +Cancel,45,2015,August,32,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2015-07-27,Summer,2015-08-07T07:00Z +Keep,6,2015,August,32,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-09,Summer,2015-08-07T07:00Z +Keep,4,2015,August,32,7,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,191,0,3,Check-Out,2015-08-09,Summer,2015-08-07T07:00Z +Cancel,53,2015,August,32,7,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2015-06-22,Summer,2015-08-07T07:00Z +Keep,52,2015,August,32,7,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,173,0,1,Check-Out,2015-08-10,Summer,2015-08-07T07:00Z +Cancel,4,2015,August,32,7,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,277.5,0,2,Canceled,2015-08-04,Summer,2015-08-07T07:00Z +Keep,98,2015,August,32,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-08-11,Summer,2015-08-07T07:00Z +Cancel,46,2015,August,32,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-07-14,Summer,2015-08-07T07:00Z +Cancel,122,2015,August,32,7,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186,0,1,Canceled,2015-04-13,Summer,2015-08-07T07:00Z +Keep,83,2015,August,32,7,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,107.2,0,2,Check-Out,2015-08-11,Summer,2015-08-07T07:00Z +Keep,16,2015,August,32,7,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,221,0,2,Check-Out,2015-08-12,Summer,2015-08-07T07:00Z +Cancel,43,2015,August,32,7,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,0,Canceled,2015-06-27,Summer,2015-08-07T07:00Z +Cancel,73,2015,August,32,7,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 105, NULL,0,Transient,169,0,0,Canceled,2015-07-09,Summer,2015-08-07T07:00Z +Keep,116,2015,August,32,7,2,5,2,1,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,133.5,1,2,Check-Out,2015-08-14,Summer,2015-08-07T07:00Z +Cancel,113,2015,August,32,7,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 105, NULL,0,Transient-Party,154.38,0,1,Canceled,2015-05-14,Summer,2015-08-07T07:00Z +Cancel,113,2015,August,32,7,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 105, NULL,0,Transient-Party,154.38,0,1,Canceled,2015-05-14,Summer,2015-08-07T07:00Z +Keep,51,2015,August,32,7,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205,0,2,Check-Out,2015-08-14,Summer,2015-08-07T07:00Z +Keep,65,2015,August,32,7,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,121.39,1,1,Check-Out,2015-08-16,Summer,2015-08-07T07:00Z +Keep,0,2015,August,32,8,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.9,1,0,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Cancel,87,2015,August,32,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,1,Canceled,2015-07-27,Summer,2015-08-08T07:00Z +Cancel,106,2015,August,32,8,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-07-09,Summer,2015-08-08T07:00Z +Keep,5,2015,August,32,8,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,H,0,No Deposit , 240, NULL,0,Transient,250,0,1,Check-Out,2015-08-10,Summer,2015-08-08T07:00Z +Keep,98,2015,August,32,8,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,208,1,1,Check-Out,2015-08-10,Summer,2015-08-08T07:00Z +Cancel,78,2015,August,32,8,1,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,181,0,0,Canceled,2015-06-12,Summer,2015-08-08T07:00Z +Keep,4,2015,August,32,8,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,3,Check-Out,2015-08-11,Summer,2015-08-08T07:00Z +Keep,5,2015,August,32,8,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,157.59,0,1,Check-Out,2015-08-11,Summer,2015-08-08T07:00Z +Keep,3,2015,August,32,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,211.75,1,3,Check-Out,2015-08-12,Summer,2015-08-08T07:00Z +Keep,85,2015,August,32,8,2,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,246,0,1,Check-Out,2015-08-12,Summer,2015-08-08T07:00Z +Cancel,137,2015,August,32,8,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.54,0,1,Canceled,2015-04-06,Summer,2015-08-08T07:00Z +Cancel,67,2015,August,32,8,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186,0,0,Canceled,2015-06-17,Summer,2015-08-08T07:00Z +Cancel,54,2015,August,32,8,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2015-06-22,Summer,2015-08-08T07:00Z +Cancel,87,2015,August,32,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-05-19,Summer,2015-08-08T07:00Z +Cancel,54,2015,August,32,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,200.71,0,0,No-Show,2015-08-08,Summer,2015-08-08T07:00Z +Keep,12,2015,August,32,8,2,5,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,252,1,1,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Cancel,60,2015,August,32,8,2,5,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,135.2,0,0,Canceled,2015-07-27,Summer,2015-08-08T07:00Z +Keep,75,2015,August,32,8,2,5,2,2,0,FB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,276.43,1,3,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Cancel,54,2015,August,32,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,228,0,0,Canceled,2015-08-08,Summer,2015-08-08T07:00Z +Keep,126,2015,August,32,8,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,133,1,2,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Cancel,54,2015,August,32,8,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2015-06-22,Summer,2015-08-08T07:00Z +Cancel,84,2015,August,32,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-05-16,Summer,2015-08-08T07:00Z +Cancel,106,2015,August,32,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,119.7,0,1,Canceled,2015-08-08,Summer,2015-08-08T07:00Z +Keep,136,2015,August,32,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,1,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,98,2015,August,32,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,138,0,0,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Cancel,91,2015,August,32,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-05-14,Summer,2015-08-08T07:00Z +Cancel,58,2015,August,32,8,2,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,173,0,0,Canceled,2015-07-20,Summer,2015-08-08T07:00Z +Keep,61,2015,August,32,8,4,9,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165.69,1,0,Check-Out,2015-08-21,Summer,2015-08-08T07:00Z +Keep,0,2015,August,33,9,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,195,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,5,2015,August,33,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 306, NULL,0,Transient,127.31,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,2,2015,August,33,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Cancel,9,2015,August,33,9,2,0,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,207,0,2,Canceled,2015-08-01,Summer,2015-08-09T07:00Z +Cancel,10,2015,August,33,9,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,211.5,0,1,Canceled,2015-07-30,Summer,2015-08-09T07:00Z +Keep,62,2015,August,33,9,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,210.33,1,2,Check-Out,2015-08-12,Summer,2015-08-09T07:00Z +Keep,34,2015,August,33,9,2,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-13,Summer,2015-08-09T07:00Z +Keep,82,2015,August,33,9,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-13,Summer,2015-08-09T07:00Z +Cancel,65,2015,August,33,9,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.4,0,0,Canceled,2015-06-22,Summer,2015-08-09T07:00Z +Cancel,129,2015,August,33,9,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101.25,0,0,Canceled,2015-04-06,Summer,2015-08-09T07:00Z +Keep,55,2015,August,33,9,2,4,2,0,0,HB,MEX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,179.38,0,0,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Cancel,122,2015,August,33,9,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,2,Canceled,2015-05-27,Summer,2015-08-09T07:00Z +Cancel,41,2015,August,33,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,202,0,2,Canceled,2015-07-17,Summer,2015-08-09T07:00Z +Cancel,41,2015,August,33,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2015-07-17,Summer,2015-08-09T07:00Z +Keep,81,2015,August,33,9,2,4,2,1,1,FB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,277,1,1,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,59,2015,August,33,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,104,0,0,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,72,2015,August,33,9,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,0,1,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Cancel,68,2015,August,33,9,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2015-06-03,Summer,2015-08-09T07:00Z +Keep,81,2015,August,33,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,130,0,0,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Cancel,72,2015,August,33,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-06-08,Summer,2015-08-09T07:00Z +Keep,68,2015,August,33,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,106.4,0,0,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Cancel,127,2015,August,33,9,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 29, NULL,0,Transient-Party,133,0,1,Canceled,2015-06-03,Summer,2015-08-09T07:00Z +Cancel,127,2015,August,33,9,4,10,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 29, NULL,0,Transient-Party,120,0,1,Canceled,2015-06-03,Summer,2015-08-09T07:00Z +Keep,5,2015,August,33,10,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-10,Summer,2015-08-10T07:00Z +Keep,68,2015,August,33,10,1,2,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,254,1,1,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Cancel,47,2015,August,33,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2015-06-25,Summer,2015-08-10T07:00Z +Keep,19,2015,August,33,10,1,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,221,0,2,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Cancel,72,2015,August,33,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-04,Summer,2015-08-10T07:00Z +Keep,30,2015,August,33,10,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,211,0,0,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Cancel,139,2015,August,33,10,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147.6,0,1,Canceled,2015-05-09,Summer,2015-08-10T07:00Z +Keep,112,2015,August,33,10,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 258, NULL,0,Transient,129,0,0,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Cancel,63,2015,August,33,10,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2015-06-19,Summer,2015-08-10T07:00Z +Keep,35,2015,August,33,10,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,147.07,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Cancel,75,2015,August,33,10,1,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,107.2,0,0,Canceled,2015-06-02,Summer,2015-08-10T07:00Z +Keep,136,2015,August,33,10,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179.1,1,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,35,2015,August,33,10,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,164.65,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Cancel,63,2015,August,33,10,1,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,200,0,1,Canceled,2015-06-24,Summer,2015-08-10T07:00Z +Cancel,77,2015,August,33,10,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-07-08,Summer,2015-08-10T07:00Z +Keep,62,2015,August,33,10,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,233,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Cancel,95,2015,August,33,10,2,5,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,190,0,0,Canceled,2015-06-26,Summer,2015-08-10T07:00Z +Cancel,101,2015,August,33,10,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,2,Canceled,2015-07-30,Summer,2015-08-10T07:00Z +Cancel,38,2015,August,33,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.57,0,2,Canceled,2015-07-14,Summer,2015-08-10T07:00Z +Cancel,60,2015,August,33,10,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,175,0,1,Canceled,2015-06-22,Summer,2015-08-10T07:00Z +Cancel,60,2015,August,33,10,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,175,0,1,Canceled,2015-06-22,Summer,2015-08-10T07:00Z +Keep,76,2015,August,33,10,3,8,2,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,169,0,1,Check-Out,2015-08-21,Summer,2015-08-10T07:00Z +Keep,90,2015,August,33,11,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-11,Summer,2015-08-11T07:00Z +Keep,90,2015,August,33,11,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-11,Summer,2015-08-11T07:00Z +Cancel,87,2015,August,33,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,134,0,0,Canceled,2015-08-05,Summer,2015-08-11T07:00Z +Cancel,31,2015,August,33,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,2,Canceled,2015-07-20,Summer,2015-08-11T07:00Z +Cancel,74,2015,August,33,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,134,0,1,Canceled,2015-07-20,Summer,2015-08-11T07:00Z +Cancel,120,2015,August,33,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-11,Summer,2015-08-11T07:00Z +Cancel,120,2015,August,33,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-11,Summer,2015-08-11T07:00Z +Cancel,120,2015,August,33,11,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112.5,0,1,Canceled,2015-06-11,Summer,2015-08-11T07:00Z +Cancel,116,2015,August,33,11,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-06-01,Summer,2015-08-11T07:00Z +Cancel,83,2015,August,33,11,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-05-23,Summer,2015-08-11T07:00Z +Keep,80,2015,August,33,11,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Cancel,27,2015,August,33,11,0,4,1,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,207,0,2,Canceled,2015-07-17,Summer,2015-08-11T07:00Z +Cancel,78,2015,August,33,11,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2015-06-25,Summer,2015-08-11T07:00Z +Cancel,117,2015,August,33,11,0,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,186,0,1,Canceled,2015-04-20,Summer,2015-08-11T07:00Z +Keep,70,2015,August,33,11,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-16,Summer,2015-08-11T07:00Z +Cancel,85,2015,August,33,11,0,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,162.3,0,3,Canceled,2015-06-30,Summer,2015-08-11T07:00Z +Cancel,117,2015,August,33,11,0,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,186,0,1,Canceled,2015-04-20,Summer,2015-08-11T07:00Z +Cancel,22,2015,August,33,11,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2015-07-22,Summer,2015-08-11T07:00Z +Cancel,34,2015,August,33,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,274.93,0,2,Canceled,2015-07-17,Summer,2015-08-11T07:00Z +Keep,68,2015,August,33,11,2,5,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,156.73,0,0,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Cancel,69,2015,August,33,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,156.73,0,0,Canceled,2015-06-04,Summer,2015-08-11T07:00Z +Cancel,85,2015,August,33,11,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,134,0,2,Canceled,2015-06-30,Summer,2015-08-11T07:00Z +Cancel,102,2015,August,33,11,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-05-06,Summer,2015-08-11T07:00Z +Keep,31,2015,August,33,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,49,2015,August,33,11,2,8,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,200.7,1,2,Check-Out,2015-08-21,Summer,2015-08-11T07:00Z +Keep,84,2015,August,33,11,2,8,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,142.26,0,1,Check-Out,2015-08-21,Summer,2015-08-11T07:00Z +Cancel,102,2015,August,33,11,2,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,2,Canceled,2015-05-06,Summer,2015-08-11T07:00Z +Keep,66,2015,August,33,11,2,10,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,129.41,0,1,Check-Out,2015-08-23,Summer,2015-08-11T07:00Z +Cancel,80,2015,August,33,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98.02,0,0,Canceled,2015-05-23,Summer,2015-08-11T07:00Z +Cancel,85,2015,August,33,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-05-23,Summer,2015-08-11T07:00Z +Cancel,33,2015,August,33,12,0,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,191,0,0,No-Show,2015-08-12,Summer,2015-08-12T07:00Z +Cancel,1,2015,August,33,12,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,191,0,2,Canceled,2015-08-12,Summer,2015-08-12T07:00Z +Keep,33,2015,August,33,12,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, 307,0,Transient-Party,252,0,1,Check-Out,2015-08-13,Summer,2015-08-12T07:00Z +Keep,47,2015,August,33,12,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,157.08,0,2,Check-Out,2015-08-15,Summer,2015-08-12T07:00Z +Cancel,2,2015,August,33,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,258.33,0,1,No-Show,2015-08-12,Summer,2015-08-12T07:00Z +Cancel,22,2015,August,33,12,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,211,0,3,Canceled,2015-08-03,Summer,2015-08-12T07:00Z +Cancel,22,2015,August,33,12,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,211,0,3,Canceled,2015-08-03,Summer,2015-08-12T07:00Z +Cancel,55,2015,August,33,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,133.21,0,0,Canceled,2015-06-19,Summer,2015-08-12T07:00Z +Cancel,68,2015,August,33,12,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,173.5,0,0,Canceled,2015-08-11,Summer,2015-08-12T07:00Z +Cancel,128,2015,August,33,12,2,8,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Canceled,2015-06-15,Summer,2015-08-12T07:00Z +Keep,128,2015,August,33,12,2,8,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-22,Summer,2015-08-12T07:00Z +Keep,128,2015,August,33,12,2,8,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-22,Summer,2015-08-12T07:00Z +Keep,78,2015,August,33,12,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-17,Summer,2015-08-12T07:00Z +Cancel,85,2015,August,33,12,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-17,Summer,2015-08-12T07:00Z +Keep,0,2015,August,33,13,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2015-08-14,Summer,2015-08-13T07:00Z +Keep,9,2015,August,33,13,0,1,2,0,0,BB,CN,Corporate,Corporate, 0,0,0,E,F,0,No Deposit , 110, NULL,0,Transient,184.45,1,0,Check-Out,2015-08-14,Summer,2015-08-13T07:00Z +Keep,1,2015,August,33,13,0,1,3,0,0,BB,IRL,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 110,0,Transient,158,1,1,Check-Out,2015-08-14,Summer,2015-08-13T07:00Z +Cancel,9,2015,August,33,13,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 110, NULL,0,Transient,184.45,0,0,Canceled,2015-08-13,Summer,2015-08-13T07:00Z +Cancel,120,2015,August,33,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Canceled,2015-06-22,Summer,2015-08-13T07:00Z +Cancel,72,2015,August,33,13,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,114.14,0,1,Canceled,2015-06-02,Summer,2015-08-13T07:00Z +Keep,23,2015,August,33,13,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 142, NULL,0,Contract,168.8,0,0,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Cancel,8,2015,August,33,13,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,178.33,0,2,Canceled,2015-08-12,Summer,2015-08-13T07:00Z +Keep,47,2015,August,33,13,0,3,2,1,1,HB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,255,0,2,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Cancel,8,2015,August,33,13,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,178.33,0,2,Canceled,2015-08-12,Summer,2015-08-13T07:00Z +Keep,135,2015,August,33,13,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2015-08-17,Summer,2015-08-13T07:00Z +Keep,76,2015,August,33,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,87.91,0,1,Check-Out,2015-08-17,Summer,2015-08-13T07:00Z +Cancel,15,2015,August,33,13,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,211,0,0,Canceled,2015-08-11,Summer,2015-08-13T07:00Z +Cancel,23,2015,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,187.2,0,2,Canceled,2015-07-29,Summer,2015-08-13T07:00Z +Keep,87,2015,August,33,13,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-18,Summer,2015-08-13T07:00Z +Keep,19,2015,August,33,13,2,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,243,0,1,Check-Out,2015-08-18,Summer,2015-08-13T07:00Z +Keep,21,2015,August,33,13,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,222.2,0,2,Check-Out,2015-08-18,Summer,2015-08-13T07:00Z +Keep,19,2015,August,33,13,2,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,243,0,2,Check-Out,2015-08-18,Summer,2015-08-13T07:00Z +Cancel,23,2015,August,33,13,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178.2,0,2,Canceled,2015-07-29,Summer,2015-08-13T07:00Z +Cancel,89,2015,August,33,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 142, NULL,0,Contract,107.2,0,2,Canceled,2015-08-11,Summer,2015-08-13T07:00Z +Keep,51,2015,August,33,14,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-14,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,0,1,2,2,0,BB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,203,0,0,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,173,0,0,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,172,0,2,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,172,0,2,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,38,2015,August,33,14,0,2,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 242, NULL,0,Transient,266.4,0,2,Check-Out,2015-08-16,Summer,2015-08-14T07:00Z +Keep,21,2015,August,33,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,0,1,Check-Out,2015-08-16,Summer,2015-08-14T07:00Z +Cancel,34,2015,August,33,14,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,271,0,0,Canceled,2015-08-04,Summer,2015-08-14T07:00Z +Cancel,51,2015,August,33,14,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,232,0,1,Canceled,2015-06-26,Summer,2015-08-14T07:00Z +Keep,38,2015,August,33,14,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,223,0,1,Check-Out,2015-08-16,Summer,2015-08-14T07:00Z +Keep,0,2015,August,33,14,1,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,178.67,0,2,Check-Out,2015-08-17,Summer,2015-08-14T07:00Z +Cancel,84,2015,August,33,14,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Canceled,2015-05-29,Summer,2015-08-14T07:00Z +Cancel,63,2015,August,33,14,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.5,0,0,Canceled,2015-07-31,Summer,2015-08-14T07:00Z +Keep,7,2015,August,33,14,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,167.25,0,0,Check-Out,2015-08-18,Summer,2015-08-14T07:00Z +Cancel,91,2015,August,33,14,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,209,0,0,Canceled,2015-05-25,Summer,2015-08-14T07:00Z +Keep,81,2015,August,33,14,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,166,1,0,Check-Out,2015-08-19,Summer,2015-08-14T07:00Z +Keep,6,2015,August,33,14,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.8,1,1,Check-Out,2015-08-19,Summer,2015-08-14T07:00Z +Cancel,64,2015,August,33,14,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,229,0,1,Canceled,2015-06-15,Summer,2015-08-14T07:00Z +Keep,52,2015,August,33,14,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , NULL, NULL,0,Transient,160,1,0,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Cancel,22,2015,August,33,14,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,266,0,0,Canceled,2015-08-05,Summer,2015-08-14T07:00Z +Keep,150,2015,August,33,14,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient,96.3,0,1,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Keep,64,2015,August,33,14,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient,107,0,0,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Cancel,22,2015,August,33,14,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,262,0,2,Canceled,2015-08-05,Summer,2015-08-14T07:00Z +Keep,3,2015,August,33,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , 250, NULL,0,Transient,182.5,0,1,Check-Out,2015-08-17,Summer,2015-08-15T07:00Z +Keep,68,2015,August,33,15,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,157,0,1,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Keep,35,2015,August,33,15,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,234,1,0,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Keep,2,2015,August,33,15,2,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,242.5,0,0,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Keep,68,2015,August,33,15,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,157,0,1,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Cancel,11,2015,August,33,15,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.4,0,2,Canceled,2015-08-06,Summer,2015-08-15T07:00Z +Cancel,80,2015,August,33,15,2,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,208,0,3,Canceled,2015-06-08,Summer,2015-08-15T07:00Z +Cancel,80,2015,August,33,15,2,3,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,183.45,0,1,Canceled,2015-08-05,Summer,2015-08-15T07:00Z +Keep,72,2015,August,33,15,2,3,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,131.2,0,1,Check-Out,2015-08-20,Summer,2015-08-15T07:00Z +Cancel,80,2015,August,33,15,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,133,0,1,Canceled,2015-08-05,Summer,2015-08-15T07:00Z +Keep,77,2015,August,33,15,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,135,0,1,Check-Out,2015-08-20,Summer,2015-08-15T07:00Z +Cancel,80,2015,August,33,15,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,133,0,1,Canceled,2015-08-05,Summer,2015-08-15T07:00Z +Keep,31,2015,August,33,15,2,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,248,0,1,Check-Out,2015-08-21,Summer,2015-08-15T07:00Z +Cancel,77,2015,August,33,15,2,4,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,209.2,0,0,Canceled,2015-06-04,Summer,2015-08-15T07:00Z +Keep,93,2015,August,33,15,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-08-21,Summer,2015-08-15T07:00Z +Keep,31,2015,August,33,15,2,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,299.33,1,1,Check-Out,2015-08-21,Summer,2015-08-15T07:00Z +Keep,89,2015,August,33,15,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 67, NULL,0,Transient,156.45,0,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Cancel,68,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,0,Canceled,2015-07-21,Summer,2015-08-15T07:00Z +Cancel,72,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,149,0,0,Canceled,2015-07-08,Summer,2015-08-15T07:00Z +Keep,65,2015,August,33,15,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,107,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Cancel,71,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,0,Canceled,2015-07-21,Summer,2015-08-15T07:00Z +Cancel,65,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,0,Canceled,2015-06-11,Summer,2015-08-15T07:00Z +Keep,89,2015,August,33,15,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient,145.75,1,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Cancel,98,2015,August,33,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.6,0,1,Canceled,2015-08-04,Summer,2015-08-15T07:00Z +Keep,26,2015,August,33,15,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,200.71,1,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Cancel,67,2015,August,33,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,198.71,0,0,Canceled,2015-07-25,Summer,2015-08-15T07:00Z +Cancel,54,2015,August,33,15,2,5,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,218,0,0,Canceled,2015-07-06,Summer,2015-08-15T07:00Z +Keep,75,2015,August,33,15,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,101.65,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Cancel,78,2015,August,33,15,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186,0,0,Canceled,2015-06-11,Summer,2015-08-15T07:00Z +Cancel,53,2015,August,33,15,2,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,160,0,0,Canceled,2015-06-25,Summer,2015-08-15T07:00Z +Cancel,65,2015,August,33,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,188.71,0,0,Canceled,2015-07-03,Summer,2015-08-15T07:00Z +Keep,84,2015,August,33,15,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,107,0,1,Check-Out,2015-08-29,Summer,2015-08-15T07:00Z +Cancel,47,2015,August,33,15,6,12,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,181.94,0,0,Canceled,2015-07-06,Summer,2015-08-15T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Cancel,4,2015,August,34,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,185,0,0,Canceled,2015-08-13,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Cancel,12,2015,August,34,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 110, NULL,0,Transient,184.45,0,0,Canceled,2015-08-10,Summer,2015-08-16T07:00Z +Keep,0,2015,August,34,16,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Group,195,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,2,2015,August,34,16,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Cancel,12,2015,August,34,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 110, NULL,0,Transient,184.45,0,0,Canceled,2015-08-10,Summer,2015-08-16T07:00Z +Cancel,12,2015,August,34,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 110, NULL,0,Transient,184.45,0,0,Canceled,2015-08-10,Summer,2015-08-16T07:00Z +Cancel,11,2015,August,34,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,185,0,0,Canceled,2015-08-11,Summer,2015-08-16T07:00Z +Cancel,143,2015,August,34,16,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.54,0,1,Canceled,2015-03-31,Summer,2015-08-16T07:00Z +Cancel,99,2015,August,34,16,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-07-27,Summer,2015-08-16T07:00Z +Cancel,22,2015,August,34,16,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2015-08-06,Summer,2015-08-16T07:00Z +Cancel,15,2015,August,34,16,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150.53,0,2,Canceled,2015-08-12,Summer,2015-08-16T07:00Z +Cancel,15,2015,August,34,16,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150.53,0,2,Canceled,2015-08-12,Summer,2015-08-16T07:00Z +Cancel,66,2015,August,34,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-06-15,Summer,2015-08-16T07:00Z +Cancel,55,2015,August,34,16,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,223.99,0,3,Canceled,2015-07-18,Summer,2015-08-16T07:00Z +Cancel,66,2015,August,34,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Canceled,2015-06-15,Summer,2015-08-16T07:00Z +Cancel,79,2015,August,34,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-05-30,Summer,2015-08-16T07:00Z +Cancel,66,2015,August,34,16,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-06-15,Summer,2015-08-16T07:00Z +Keep,95,2015,August,34,16,4,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,214,0,0,Check-Out,2015-08-25,Summer,2015-08-16T07:00Z +Cancel,151,2015,August,34,16,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,96.3,0,0,Canceled,2015-05-29,Summer,2015-08-16T07:00Z +Cancel,54,2015,August,34,16,4,10,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,175.79,0,0,Canceled,2015-07-20,Summer,2015-08-16T07:00Z +Cancel,122,2015,August,34,16,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-06-19,Summer,2015-08-16T07:00Z +Cancel,132,2015,August,34,17,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-05-01,Summer,2015-08-17T07:00Z +Keep,58,2015,August,34,17,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,183,0,0,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Cancel,98,2015,August,34,17,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,149.4,0,0,Canceled,2015-07-29,Summer,2015-08-17T07:00Z +Cancel,126,2015,August,34,17,1,4,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,165.11,0,0,Canceled,2015-04-14,Summer,2015-08-17T07:00Z +Cancel,97,2015,August,34,17,1,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,209.4,0,0,Canceled,2015-05-13,Summer,2015-08-17T07:00Z +Keep,96,2015,August,34,17,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,134,0,3,Check-Out,2015-08-23,Summer,2015-08-17T07:00Z +Keep,125,2015,August,34,17,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,225.9,0,2,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,80,2015,August,34,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,131.1,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Cancel,110,2015,August,34,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-06-19,Summer,2015-08-17T07:00Z +Cancel,157,2015,August,34,17,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,187,0,2,Canceled,2015-03-24,Summer,2015-08-17T07:00Z +Cancel,108,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,0,0,Canceled,2015-05-22,Summer,2015-08-17T07:00Z +Keep,74,2015,August,34,17,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,101.65,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,79,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Cancel,79,2015,August,34,17,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,120,0,0,Canceled,2015-07-27,Summer,2015-08-17T07:00Z +Cancel,116,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient-Party,133,0,1,Canceled,2015-05-12,Summer,2015-08-17T07:00Z +Keep,80,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,133,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Cancel,116,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient-Party,133,0,1,Canceled,2015-05-12,Summer,2015-08-17T07:00Z +Cancel,93,2015,August,34,17,3,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-08-03,Summer,2015-08-17T07:00Z +Cancel,87,2015,August,34,17,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,87.9,0,0,Canceled,2015-07-01,Summer,2015-08-17T07:00Z +Cancel,13,2015,August,34,18,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,1,Canceled,2015-08-07,Summer,2015-08-18T07:00Z +Cancel,56,2015,August,34,18,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213,0,1,Canceled,2015-07-31,Summer,2015-08-18T07:00Z +Cancel,1,2015,August,34,18,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,172.55,0,0,Canceled,2015-08-18,Summer,2015-08-18T07:00Z +Keep,13,2015,August,34,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,172,0,0,Check-Out,2015-08-19,Summer,2015-08-18T07:00Z +Keep,13,2015,August,34,18,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2015-08-21,Summer,2015-08-18T07:00Z +Cancel,56,2015,August,34,18,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213,0,1,Canceled,2015-07-31,Summer,2015-08-18T07:00Z +Cancel,81,2015,August,34,18,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,179,0,0,Canceled,2015-08-01,Summer,2015-08-18T07:00Z +Cancel,24,2015,August,34,18,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,0,2,Canceled,2015-08-05,Summer,2015-08-18T07:00Z +Keep,57,2015,August,34,18,1,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,229.67,0,1,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Keep,74,2015,August,34,18,1,5,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,135.2,0,0,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Keep,126,2015,August,34,18,1,5,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,121.5,0,3,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Keep,126,2015,August,34,18,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,96.3,0,1,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Keep,126,2015,August,34,18,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,96.3,0,1,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Cancel,147,2015,August,34,18,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-05-21,Summer,2015-08-18T07:00Z +Keep,68,2015,August,34,18,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,176.64,0,2,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,57,2015,August,34,18,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,179.86,0,1,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,10,2015,August,34,18,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,187,0,2,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,92,2015,August,34,18,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-28,Summer,2015-08-18T07:00Z +Keep,92,2015,August,34,18,2,8,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,239.5,0,1,Check-Out,2015-08-28,Summer,2015-08-18T07:00Z +Keep,33,2015,August,34,19,0,0,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,A,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2015-08-19,Summer,2015-08-19T07:00Z +Keep,1,2015,August,34,19,0,1,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,3,No Deposit , 240, NULL,0,Transient,153,0,2,Check-Out,2015-08-20,Summer,2015-08-19T07:00Z +Keep,91,2015,August,34,19,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,166,0,0,Check-Out,2015-08-23,Summer,2015-08-19T07:00Z +Cancel,33,2015,August,34,19,0,4,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient,186.25,0,0,Canceled,2015-07-22,Summer,2015-08-19T07:00Z +Keep,16,2015,August,34,19,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,192,0,2,Check-Out,2015-08-23,Summer,2015-08-19T07:00Z +Keep,128,2015,August,34,19,1,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,1,0,Check-Out,2015-08-24,Summer,2015-08-19T07:00Z +Keep,61,2015,August,34,19,1,4,3,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,220.4,0,2,Check-Out,2015-08-24,Summer,2015-08-19T07:00Z +Cancel,23,2015,August,34,19,2,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,241,0,0,Canceled,2015-08-03,Summer,2015-08-19T07:00Z +Cancel,23,2015,August,34,19,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,1,Canceled,2015-08-04,Summer,2015-08-19T07:00Z +Cancel,29,2015,August,34,19,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,2,Canceled,2015-08-01,Summer,2015-08-19T07:00Z +Cancel,98,2015,August,34,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Canceled,2015-07-31,Summer,2015-08-19T07:00Z +Cancel,23,2015,August,34,19,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,1,Canceled,2015-08-04,Summer,2015-08-19T07:00Z +Keep,98,2015,August,34,19,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,8,0,0,Check-Out,2015-08-28,Summer,2015-08-19T07:00Z +Keep,138,2015,August,34,19,2,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2015-08-28,Summer,2015-08-19T07:00Z +Cancel,82,2015,August,34,19,2,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2015-06-18,Summer,2015-08-19T07:00Z +Keep,10,2015,August,34,20,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-20,Summer,2015-08-20T07:00Z +Cancel,100,2015,August,34,20,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 134, NULL,0,Transient,158.5,0,0,Canceled,2015-08-10,Summer,2015-08-20T07:00Z +Keep,10,2015,August,34,20,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-08-20,Summer,2015-08-20T07:00Z +Keep,0,2015,August,34,20,0,1,1,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,200,0,0,Check-Out,2015-08-21,Summer,2015-08-20T07:00Z +Keep,65,2015,August,34,20,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 156, NULL,0,Transient,107,0,1,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,64,2015,August,34,20,2,4,3,1,0,HB,MAR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,4,No Deposit , 142, NULL,0,Transient,163.23,0,0,Check-Out,2015-08-26,Summer,2015-08-20T07:00Z +Cancel,56,2015,August,34,20,2,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,222.07,0,0,Canceled,2015-06-30,Summer,2015-08-20T07:00Z +Cancel,94,2015,August,34,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,229,0,0,Canceled,2015-07-15,Summer,2015-08-20T07:00Z +Cancel,58,2015,August,34,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,133,0,0,Canceled,2015-07-08,Summer,2015-08-20T07:00Z +Keep,80,2015,August,34,20,2,7,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Check-Out,2015-08-29,Summer,2015-08-20T07:00Z +Keep,40,2015,August,34,20,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,176.8,1,1,Check-Out,2015-08-25,Summer,2015-08-20T07:00Z +Keep,102,2015,August,34,21,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-23,Summer,2015-08-21T07:00Z +Keep,16,2015,August,34,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,163.35,0,1,Check-Out,2015-08-23,Summer,2015-08-21T07:00Z +Keep,24,2015,August,34,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.9,0,2,Check-Out,2015-08-23,Summer,2015-08-21T07:00Z +Keep,24,2015,August,34,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.9,0,2,Check-Out,2015-08-23,Summer,2015-08-21T07:00Z +Cancel,18,2015,August,34,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,213.5,0,2,Canceled,2015-08-06,Summer,2015-08-21T07:00Z +Cancel,95,2015,August,34,21,1,2,1,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2015-06-22,Summer,2015-08-21T07:00Z +Cancel,36,2015,August,34,21,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178.33,0,1,Canceled,2015-07-17,Summer,2015-08-21T07:00Z +Keep,16,2015,August,34,21,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.75,0,1,Check-Out,2015-08-25,Summer,2015-08-21T07:00Z +Keep,50,2015,August,34,21,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,123,0,2,Check-Out,2015-08-26,Summer,2015-08-21T07:00Z +Keep,76,2015,August,34,21,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-26,Summer,2015-08-21T07:00Z +Keep,112,2015,August,34,21,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,146,1,2,Check-Out,2015-08-26,Summer,2015-08-21T07:00Z +Keep,16,2015,August,34,21,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,192,0,0,Check-Out,2015-08-26,Summer,2015-08-21T07:00Z +Keep,51,2015,August,34,21,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,183,0,1,Check-Out,2015-08-27,Summer,2015-08-21T07:00Z +Keep,13,2015,August,34,21,2,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,236,0,0,Check-Out,2015-08-27,Summer,2015-08-21T07:00Z +Cancel,22,2015,August,34,21,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,3,Canceled,2015-08-10,Summer,2015-08-21T07:00Z +Keep,32,2015,August,34,21,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178.33,0,2,Check-Out,2015-08-27,Summer,2015-08-21T07:00Z +Keep,51,2015,August,34,21,2,4,3,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,248,0,1,Check-Out,2015-08-27,Summer,2015-08-21T07:00Z +Keep,65,2015,August,34,21,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,188.71,0,0,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Cancel,63,2015,August,34,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123.04,0,0,Canceled,2015-07-27,Summer,2015-08-21T07:00Z +Keep,35,2015,August,34,21,2,5,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,260.71,1,1,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Keep,37,2015,August,34,21,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Keep,35,2015,August,34,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.71,0,1,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Cancel,71,2015,August,34,21,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.7,0,0,Canceled,2015-07-20,Summer,2015-08-21T07:00Z +Keep,71,2015,August,34,21,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,116.85,0,3,Check-Out,2015-08-30,Summer,2015-08-21T07:00Z +Keep,77,2015,August,34,21,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,129.55,0,1,Check-Out,2015-08-31,Summer,2015-08-21T07:00Z +Keep,0,2015,August,34,22,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,172,0,0,Check-Out,2015-08-23,Summer,2015-08-22T07:00Z +Cancel,21,2015,August,34,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,172,0,0,Canceled,2015-08-19,Summer,2015-08-22T07:00Z +Cancel,87,2015,August,34,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-05-29,Summer,2015-08-22T07:00Z +Keep,54,2015,August,34,22,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,179.83,0,0,Check-Out,2015-08-28,Summer,2015-08-22T07:00Z +Cancel,156,2015,August,34,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2015-03-24,Summer,2015-08-22T07:00Z +Keep,46,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,160.43,1,2,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,46,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,149,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Cancel,72,2015,August,34,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-06-12,Summer,2015-08-22T07:00Z +Keep,85,2015,August,34,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,146.3,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,36,2015,August,34,22,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,161.26,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,65,2015,August,34,22,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 134, NULL,0,Transient,195.45,1,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Cancel,68,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,133,0,0,Canceled,2015-07-09,Summer,2015-08-22T07:00Z +Keep,46,2015,August,34,22,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,186.25,0,3,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,22,2015,August,34,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 5, NULL,0,Transient,162.29,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,12,2015,August,34,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient-Party,221.43,1,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Cancel,42,2015,August,34,22,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,177.57,0,0,Canceled,2015-08-10,Summer,2015-08-22T07:00Z +Keep,72,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,133,0,2,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Cancel,112,2015,August,34,22,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178,0,2,Canceled,2015-06-02,Summer,2015-08-22T07:00Z +Keep,85,2015,August,34,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,146.3,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,102,2015,August,34,22,2,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,218.5,1,1,Check-Out,2015-08-30,Summer,2015-08-22T07:00Z +Cancel,80,2015,August,34,22,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,151.89,0,2,Canceled,2015-06-27,Summer,2015-08-22T07:00Z +Cancel,72,2015,August,34,22,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,148.3,0,0,Canceled,2015-06-12,Summer,2015-08-22T07:00Z +Keep,151,2015,August,34,22,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 181, NULL,0,Transient-Party,96.3,0,1,Check-Out,2015-08-26,Summer,2015-08-22T07:00Z +Cancel,99,2015,August,34,22,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,2,Canceled,2015-07-23,Summer,2015-08-22T07:00Z +Keep,151,2015,August,34,22,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 181, NULL,0,Transient-Party,96.3,1,1,Check-Out,2015-08-27,Summer,2015-08-22T07:00Z +Keep,66,2015,August,34,22,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,149,0,2,Check-Out,2015-08-27,Summer,2015-08-22T07:00Z +Cancel,44,2015,August,34,22,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.95,0,1,Canceled,2015-08-13,Summer,2015-08-22T07:00Z +Keep,46,2015,August,34,22,2,4,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 261, NULL,0,Transient,191.67,1,1,Check-Out,2015-08-28,Summer,2015-08-22T07:00Z +Keep,70,2015,August,34,22,2,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,211,1,0,Check-Out,2015-08-28,Summer,2015-08-22T07:00Z +Keep,92,2015,August,35,23,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,149.4,0,1,Check-Out,2015-08-26,Summer,2015-08-23T07:00Z +Keep,6,2015,August,35,23,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,201,0,0,Check-Out,2015-08-27,Summer,2015-08-23T07:00Z +Cancel,23,2015,August,35,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,2,Canceled,2015-08-01,Summer,2015-08-23T07:00Z +Cancel,79,2015,August,35,23,2,3,3,1,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,259,0,0,Canceled,2015-08-23,Summer,2015-08-23T07:00Z +Cancel,41,2015,August,35,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.4,0,0,Canceled,2015-08-11,Summer,2015-08-23T07:00Z +Cancel,58,2015,August,35,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-07-02,Summer,2015-08-23T07:00Z +Keep,62,2015,August,35,23,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Cancel,83,2015,August,35,23,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,229,0,0,Canceled,2015-07-31,Summer,2015-08-23T07:00Z +Keep,82,2015,August,35,23,2,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,199,0,0,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,69,2015,August,35,23,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112.5,0,1,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Cancel,64,2015,August,35,23,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2015-07-23,Summer,2015-08-23T07:00Z +Cancel,116,2015,August,35,23,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.4,0,1,Canceled,2015-07-14,Summer,2015-08-23T07:00Z +Keep,20,2015,August,35,23,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,155.77,0,0,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,132,2015,August,35,23,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,131.7,1,2,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Cancel,33,2015,August,35,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.71,0,2,Canceled,2015-07-27,Summer,2015-08-23T07:00Z +Keep,62,2015,August,35,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,101.65,0,0,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Cancel,127,2015,August,35,23,2,5,2,0,1,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,206,0,4,Canceled,2015-08-13,Summer,2015-08-23T07:00Z +Cancel,78,2015,August,35,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-07-21,Summer,2015-08-23T07:00Z +Cancel,29,2015,August,35,23,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,201.5,0,1,Canceled,2015-07-27,Summer,2015-08-23T07:00Z +Cancel,78,2015,August,35,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-07-21,Summer,2015-08-23T07:00Z +Cancel,31,2015,August,35,23,4,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,138.79,0,0,Canceled,2015-08-13,Summer,2015-08-23T07:00Z +Cancel,9,2015,August,35,23,4,6,1,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,122,0,2,Canceled,2015-08-18,Summer,2015-08-23T07:00Z +Keep,59,2015,August,35,23,4,10,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,113.47,0,1,Check-Out,2015-09-06,Summer,2015-08-23T07:00Z +Keep,40,2015,August,35,24,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,99.5,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,0,2015,August,35,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,30,2015,August,35,24,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,233,1,1,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,0,2015,August,35,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Cancel,35,2015,August,35,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2015-07-21,Summer,2015-08-24T07:00Z +Keep,84,2015,August,35,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.6,1,1,Check-Out,2015-08-26,Summer,2015-08-24T07:00Z +Cancel,25,2015,August,35,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.9,0,1,Canceled,2015-08-11,Summer,2015-08-24T07:00Z +Keep,103,2015,August,35,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-26,Summer,2015-08-24T07:00Z +Cancel,35,2015,August,35,24,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2015-08-13,Summer,2015-08-24T07:00Z +Cancel,26,2015,August,35,24,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,2,Canceled,2015-08-22,Summer,2015-08-24T07:00Z +Cancel,55,2015,August,35,24,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,148.25,0,2,Canceled,2015-08-03,Summer,2015-08-24T07:00Z +Keep,76,2015,August,35,24,1,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-28,Summer,2015-08-24T07:00Z +Cancel,102,2015,August,35,24,1,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,231.6,0,1,Canceled,2015-06-03,Summer,2015-08-24T07:00Z +Keep,58,2015,August,35,24,1,4,2,2,0,FB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,261.4,1,0,Check-Out,2015-08-29,Summer,2015-08-24T07:00Z +Keep,11,2015,August,35,24,1,4,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,199.4,0,3,Check-Out,2015-08-29,Summer,2015-08-24T07:00Z +Cancel,33,2015,August,35,24,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,209.6,0,1,Canceled,2015-07-29,Summer,2015-08-24T07:00Z +Keep,11,2015,August,35,24,1,4,1,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,199.4,0,2,Check-Out,2015-08-29,Summer,2015-08-24T07:00Z +Cancel,61,2015,August,35,24,1,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,150.83,0,1,Canceled,2015-06-30,Summer,2015-08-24T07:00Z +Cancel,89,2015,August,35,24,3,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,129.27,0,1,Canceled,2015-06-01,Summer,2015-08-24T07:00Z +Cancel,89,2015,August,35,24,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,129.27,0,1,Canceled,2015-06-01,Summer,2015-08-24T07:00Z +Keep,37,2015,August,35,24,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,133.76,0,0,Check-Out,2015-09-03,Summer,2015-08-24T07:00Z +Cancel,70,2015,August,35,24,2,5,2,1,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,197.7,0,1,Canceled,2015-06-16,Summer,2015-08-24T07:00Z +Cancel,54,2015,August,35,24,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,196,0,1,Canceled,2015-07-29,Summer,2015-08-24T07:00Z +Keep,69,2015,August,35,25,0,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,164,0,2,Check-Out,2015-08-28,Summer,2015-08-25T07:00Z +Cancel,71,2015,August,35,25,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2015-08-04,Summer,2015-08-25T07:00Z +Cancel,49,2015,August,35,25,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,219.33,0,2,Canceled,2015-07-17,Summer,2015-08-25T07:00Z +Cancel,50,2015,August,35,25,0,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,200.8,0,2,Canceled,2015-08-10,Summer,2015-08-25T07:00Z +Cancel,74,2015,August,35,25,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130.2,0,0,Canceled,2015-08-10,Summer,2015-08-25T07:00Z +Cancel,74,2015,August,35,25,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,189.67,0,0,Canceled,2015-06-12,Summer,2015-08-25T07:00Z +Cancel,118,2015,August,35,25,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,186.13,0,0,Canceled,2015-05-01,Summer,2015-08-25T07:00Z +Cancel,42,2015,August,35,25,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,158.38,0,0,Canceled,2015-07-15,Summer,2015-08-25T07:00Z +Cancel,77,2015,August,35,25,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,166,0,0,Canceled,2015-07-20,Summer,2015-08-25T07:00Z +Cancel,84,2015,August,35,25,2,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,149,0,0,Canceled,2015-06-08,Summer,2015-08-25T07:00Z +Keep,43,2015,August,35,25,2,8,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,206.6,0,0,Check-Out,2015-09-04,Summer,2015-08-25T07:00Z +Cancel,73,2015,August,35,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-06-15,Summer,2015-08-25T07:00Z +Cancel,73,2015,August,35,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112.5,0,1,Canceled,2015-06-15,Summer,2015-08-25T07:00Z +Keep,21,2015,August,35,26,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,0,0,0,Check-Out,2015-08-26,Summer,2015-08-26T07:00Z +Keep,0,2015,August,35,26,0,1,2,2,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,193,1,0,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Keep,2,2015,August,35,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,96.3,0,1,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Cancel,2,2015,August,35,26,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,137.7,0,0,Canceled,2015-08-25,Summer,2015-08-26T07:00Z +Keep,0,2015,August,35,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112,0,0,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Keep,76,2015,August,35,26,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,116.85,0,3,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Cancel,41,2015,August,35,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,173.5,0,3,Canceled,2015-08-10,Summer,2015-08-26T07:00Z +Cancel,41,2015,August,35,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,173.5,0,3,Canceled,2015-08-10,Summer,2015-08-26T07:00Z +Cancel,44,2015,August,35,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129.15,0,2,Canceled,2015-07-15,Summer,2015-08-26T07:00Z +Cancel,93,2015,August,35,26,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192.2,0,0,Canceled,2015-07-10,Summer,2015-08-26T07:00Z +Cancel,106,2015,August,35,26,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,202.77,0,0,Canceled,2015-05-18,Summer,2015-08-26T07:00Z +Keep,57,2015,August,35,26,2,9,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,111.27,0,0,Check-Out,2015-09-06,Summer,2015-08-26T07:00Z +Cancel,29,2015,August,35,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,1,Canceled,2015-08-11,Summer,2015-08-27T07:00Z +Keep,1,2015,August,35,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,153,1,2,Check-Out,2015-08-28,Summer,2015-08-27T07:00Z +Keep,41,2015,August,35,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,154,1,2,Check-Out,2015-08-29,Summer,2015-08-27T07:00Z +Keep,90,2015,August,35,27,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-30,Summer,2015-08-27T07:00Z +Cancel,57,2015,August,35,27,0,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,157.67,0,3,Canceled,2015-07-06,Summer,2015-08-27T07:00Z +Cancel,57,2015,August,35,27,1,3,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,1,Canceled,2015-07-02,Summer,2015-08-27T07:00Z +Cancel,41,2015,August,35,27,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112.34,0,0,Canceled,2015-07-17,Summer,2015-08-27T07:00Z +Cancel,61,2015,August,35,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124.5,0,1,Canceled,2015-08-17,Summer,2015-08-27T07:00Z +Keep,49,2015,August,35,27,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-08-31,Summer,2015-08-27T07:00Z +Cancel,57,2015,August,35,27,1,3,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,133,0,1,Canceled,2015-07-02,Summer,2015-08-27T07:00Z +Cancel,31,2015,August,35,27,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,191,0,2,Canceled,2015-08-03,Summer,2015-08-27T07:00Z +Cancel,62,2015,August,35,27,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,172.6,0,1,Canceled,2015-07-03,Summer,2015-08-27T07:00Z +Keep,43,2015,August,35,27,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 156, NULL,0,Contract,79.5,0,0,Check-Out,2015-09-02,Summer,2015-08-27T07:00Z +Keep,27,2015,August,35,27,2,4,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,120.27,0,1,Check-Out,2015-09-02,Summer,2015-08-27T07:00Z +Cancel,106,2015,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.29,0,2,Canceled,2015-05-13,Summer,2015-08-27T07:00Z +Keep,45,2015,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,75.53,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Cancel,106,2015,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,8,0,1,Canceled,2015-05-13,Summer,2015-08-27T07:00Z +Cancel,108,2015,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,8,0,2,Canceled,2015-08-14,Summer,2015-08-27T07:00Z +Keep,49,2015,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.39,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,10,2015,August,35,27,2,5,2,1,0,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,155.86,0,2,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Cancel,108,2015,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.29,0,1,Canceled,2015-08-14,Summer,2015-08-27T07:00Z +Keep,30,2015,August,35,28,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,G,0,No Deposit , 250, NULL,0,Transient,115,0,3,Check-Out,2015-08-29,Summer,2015-08-28T07:00Z +Cancel,164,2015,August,35,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 134, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-13,Summer,2015-08-28T07:00Z +Cancel,164,2015,August,35,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 134, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-13,Summer,2015-08-28T07:00Z +Cancel,164,2015,August,35,28,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,120.38,0,0,Canceled,2015-08-13,Summer,2015-08-28T07:00Z +Keep,0,2015,August,35,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,195,0,0,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Cancel,46,2015,August,35,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-07-27,Summer,2015-08-28T07:00Z +Keep,31,2015,August,35,28,0,2,3,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,176,1,1,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,34,2015,August,35,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,1,3,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Cancel,66,2015,August,35,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112.05,0,0,Canceled,2015-07-01,Summer,2015-08-28T07:00Z +Keep,4,2015,August,35,28,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 242, NULL,0,Transient,180.55,0,2,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,23,2015,August,35,28,0,2,2,0,0,FB,ESP,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,179,0,1,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,31,2015,August,35,28,0,2,2,2,0,BB,BRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,181,1,2,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,32,2015,August,35,28,1,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,1,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Cancel,42,2015,August,35,28,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,195,0,2,Canceled,2015-07-24,Summer,2015-08-28T07:00Z +Keep,30,2015,August,35,28,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,184,0,0,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Cancel,30,2015,August,35,28,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,152,0,0,Canceled,2015-08-24,Summer,2015-08-28T07:00Z +Keep,10,2015,August,35,28,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,127.67,0,1,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Keep,11,2015,August,35,28,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,127.67,0,1,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Keep,11,2015,August,35,28,1,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 5, NULL,0,Transient,114.13,0,1,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Keep,8,2015,August,35,28,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,113.7,0,2,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Keep,39,2015,August,35,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-08-31,Summer,2015-08-28T07:00Z +Keep,4,2015,August,35,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,165,1,1,Check-Out,2015-08-29,Summer,2015-08-28T07:00Z +Keep,34,2015,August,35,28,0,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,3,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Cancel,55,2015,August,35,28,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,2,Canceled,2015-07-06,Summer,2015-08-28T07:00Z +Keep,25,2015,August,35,28,2,2,2,0,0,FB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,208,0,2,Check-Out,2015-09-01,Summer,2015-08-28T07:00Z +Keep,106,2015,August,35,28,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,166.5,1,1,Check-Out,2015-09-01,Summer,2015-08-28T07:00Z +Keep,30,2015,August,35,28,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101.16,0,2,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Cancel,1,2015,August,35,28,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,130.6,0,1,Canceled,2015-08-28,Summer,2015-08-28T07:00Z +Cancel,22,2015,August,35,28,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2015-08-10,Summer,2015-08-28T07:00Z +Cancel,42,2015,August,35,28,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,158,0,1,Canceled,2015-08-13,Summer,2015-08-28T07:00Z +Keep,67,2015,August,35,28,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.83,0,0,Check-Out,2015-09-03,Summer,2015-08-28T07:00Z +Cancel,35,2015,August,35,28,2,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,141.67,0,2,Canceled,2015-07-31,Summer,2015-08-28T07:00Z +Keep,21,2015,August,35,28,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,175,0,1,Check-Out,2015-09-03,Summer,2015-08-28T07:00Z +Keep,50,2015,August,35,28,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,98.63,0,0,Check-Out,2015-09-04,Summer,2015-08-28T07:00Z +Keep,28,2015,August,35,28,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,166.14,0,0,Check-Out,2015-09-04,Summer,2015-08-28T07:00Z +Keep,30,2015,August,35,28,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,150.71,0,0,Check-Out,2015-09-04,Summer,2015-08-28T07:00Z +Keep,127,2015,August,35,28,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,97.74,0,1,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Cancel,29,2015,August,35,28,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,189.86,0,0,Canceled,2015-08-01,Summer,2015-08-28T07:00Z +Keep,66,2015,August,35,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,97.5,0,0,Check-Out,2015-09-04,Summer,2015-08-28T07:00Z +Cancel,59,2015,August,35,28,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,123.11,0,0,Canceled,2015-07-03,Summer,2015-08-28T07:00Z +Keep,28,2015,August,35,28,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,104.8,1,0,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Cancel,59,2015,August,35,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Canceled,2015-07-06,Summer,2015-08-29T07:00Z +Keep,0,2015,August,35,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-31,Summer,2015-08-29T07:00Z +Keep,47,2015,August,35,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,146,1,2,Check-Out,2015-08-31,Summer,2015-08-29T07:00Z +Keep,47,2015,August,35,29,2,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.18,0,1,Check-Out,2015-09-01,Summer,2015-08-29T07:00Z +Keep,47,2015,August,35,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,103.18,0,1,Check-Out,2015-09-01,Summer,2015-08-29T07:00Z +Keep,57,2015,August,35,29,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2015-08-30,Summer,2015-08-29T07:00Z +Keep,1,2015,August,35,29,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,142.5,0,1,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,4,2015,August,35,29,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient,77.5,1,0,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Cancel,32,2015,August,35,29,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135.2,0,2,Canceled,2015-08-06,Summer,2015-08-29T07:00Z +Cancel,24,2015,August,35,29,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,149,0,0,Canceled,2015-08-06,Summer,2015-08-29T07:00Z +Keep,11,2015,August,35,29,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,140.4,1,2,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,136,2015,August,35,29,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112,0,2,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,2,2015,August,35,29,2,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,5,No Deposit , NULL, NULL,0,Transient,173.25,0,0,Check-Out,2015-09-04,Summer,2015-08-29T07:00Z +Cancel,54,2015,August,35,29,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121.5,0,0,Canceled,2015-08-03,Summer,2015-08-29T07:00Z +Cancel,87,2015,August,35,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.86,0,0,Canceled,2015-07-31,Summer,2015-08-29T07:00Z +Cancel,98,2015,August,35,29,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,130.9,0,0,Canceled,2015-05-27,Summer,2015-08-29T07:00Z +Keep,9,2015,August,35,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,1,2,Check-Out,2015-09-05,Summer,2015-08-29T07:00Z +Keep,2,2015,August,36,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,154,1,0,Check-Out,2015-08-31,Summer,2015-08-30T07:00Z +Keep,11,2015,August,36,30,2,0,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,103.5,1,4,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,11,2015,August,36,30,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,1,3,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Cancel,69,2015,August,36,30,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,129.33,0,1,Canceled,2015-08-24,Summer,2015-08-30T07:00Z +Keep,37,2015,August,36,30,2,1,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.2,1,0,Check-Out,2015-09-02,Summer,2015-08-30T07:00Z +Keep,103,2015,August,36,30,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,71.72,0,0,Check-Out,2015-09-02,Summer,2015-08-30T07:00Z +Keep,5,2015,August,36,30,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,106.8,0,0,Check-Out,2015-09-03,Summer,2015-08-30T07:00Z +Keep,34,2015,August,36,30,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,71.69,0,1,Check-Out,2015-09-03,Summer,2015-08-30T07:00Z +Keep,44,2015,August,36,30,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,136.2,0,2,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,83,2015,August,36,30,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112.33,1,1,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Keep,83,2015,August,36,30,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112.33,0,1,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Cancel,72,2015,August,36,30,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,157.67,0,0,Canceled,2015-06-20,Summer,2015-08-30T07:00Z +Cancel,143,2015,August,36,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,2,Canceled,2015-06-16,Summer,2015-08-30T07:00Z +Cancel,47,2015,August,36,30,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.43,0,0,Canceled,2015-07-20,Summer,2015-08-30T07:00Z +Cancel,104,2015,August,36,30,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161.29,0,1,Canceled,2015-08-06,Summer,2015-08-30T07:00Z +Keep,25,2015,August,36,30,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.86,1,0,Check-Out,2015-09-06,Summer,2015-08-30T07:00Z +Keep,82,2015,August,36,30,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,103.07,0,1,Check-Out,2015-09-06,Summer,2015-08-30T07:00Z +Cancel,104,2015,August,36,30,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161.29,0,0,Canceled,2015-05-18,Summer,2015-08-30T07:00Z +Cancel,346,2015,August,36,30,4,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,96.3,0,0,Canceled,2015-08-14,Summer,2015-08-30T07:00Z +Keep,0,2015,August,36,31,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,92.86,0,1,Check-Out,2015-09-01,Summer,2015-08-31T07:00Z +Keep,35,2015,August,36,31,1,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,128,1,1,Check-Out,2015-09-02,Summer,2015-08-31T07:00Z +Keep,34,2015,August,36,31,1,1,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.2,0,1,Check-Out,2015-09-02,Summer,2015-08-31T07:00Z +Keep,83,2015,August,36,31,1,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.55,0,0,Check-Out,2015-09-02,Summer,2015-08-31T07:00Z +Keep,41,2015,August,36,31,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120.33,0,1,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Keep,26,2015,August,36,31,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,126.67,0,2,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Cancel,143,2015,August,36,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.33,0,3,Canceled,2015-04-20,Summer,2015-08-31T07:00Z +Keep,26,2015,August,36,31,1,2,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,75.46,0,1,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Cancel,0,2015,August,36,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,96.33,0,1,No-Show,2015-08-31,Summer,2015-08-31T07:00Z +Cancel,42,2015,August,36,31,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,117.83,0,2,Canceled,2015-07-25,Summer,2015-08-31T07:00Z +Keep,6,2015,August,36,31,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120.33,0,1,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Keep,28,2015,August,36,31,1,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Keep,26,2015,August,36,31,1,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,155.5,0,0,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Keep,10,2015,August,36,31,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,122.6,0,0,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Keep,59,2015,August,36,31,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,105.5,0,2,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Cancel,159,2015,August,36,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.44,0,0,Canceled,2015-06-17,Summer,2015-08-31T07:00Z +Cancel,124,2015,August,36,31,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2015-04-29,Summer,2015-08-31T07:00Z +Cancel,60,2015,August,36,31,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.5,0,1,Canceled,2015-07-03,Summer,2015-08-31T07:00Z +Keep,26,2015,August,36,31,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126.29,0,2,Check-Out,2015-09-07,Summer,2015-08-31T07:00Z +Keep,160,2015,August,36,31,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,87.75,0,0,Check-Out,2015-09-10,Summer,2015-08-31T07:00Z +Keep,68,2015,August,36,31,3,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113.55,0,3,Check-Out,2015-09-11,Summer,2015-08-31T07:00Z +Cancel,38,2015,September,36,1,0,2,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,123,0,0,Canceled,2015-08-06,Fall,2015-09-01T07:00Z +Cancel,47,2015,September,36,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2015-07-22,Fall,2015-09-01T07:00Z +Keep,48,2015,September,36,1,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,0,Check-Out,2015-09-04,Fall,2015-09-01T07:00Z +Keep,48,2015,September,36,1,0,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,134.67,0,1,Check-Out,2015-09-04,Fall,2015-09-01T07:00Z +Keep,27,2015,September,36,1,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,153,0,2,Check-Out,2015-09-04,Fall,2015-09-01T07:00Z +Cancel,71,2015,September,36,1,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,137.67,0,1,Canceled,2015-07-06,Fall,2015-09-01T07:00Z +Cancel,85,2015,September,36,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,0,0,Canceled,2015-07-31,Fall,2015-09-01T07:00Z +Cancel,132,2015,September,36,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-06-08,Fall,2015-09-01T07:00Z +Keep,50,2015,September,36,1,0,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,122,2015,September,36,1,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,155,0,2,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,64,2015,September,36,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,109,0,2,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,48,2015,September,36,1,0,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,B,2,No Deposit , 250, NULL,0,Transient,158,0,0,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,0,2015,September,36,1,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,128,0,0,Check-Out,2015-09-06,Fall,2015-09-01T07:00Z +Cancel,14,2015,September,36,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2015-08-21,Fall,2015-09-01T07:00Z +Keep,5,2015,September,36,1,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,113,0,0,Check-Out,2015-09-03,Fall,2015-09-01T07:00Z +Cancel,161,2015,September,36,1,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.12,0,2,Canceled,2015-07-01,Fall,2015-09-01T07:00Z +Keep,62,2015,September,36,1,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,128,0,0,Check-Out,2015-09-06,Fall,2015-09-01T07:00Z +Cancel,161,2015,September,36,1,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.12,0,2,Canceled,2015-07-01,Fall,2015-09-01T07:00Z +Keep,333,2015,September,36,1,1,5,1,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-01T07:00Z +Keep,27,2015,September,36,1,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,101.03,0,0,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Cancel,73,2015,September,36,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120.71,0,1,Canceled,2015-08-17,Fall,2015-09-01T07:00Z +Keep,123,2015,September,36,1,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,82.72,0,1,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Cancel,27,2015,September,36,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,2,Canceled,2015-08-10,Fall,2015-09-01T07:00Z +Cancel,97,2015,September,36,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120.71,0,0,Canceled,2015-06-06,Fall,2015-09-01T07:00Z +Keep,73,2015,September,36,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110.71,0,0,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Cancel,97,2015,September,36,1,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,136,0,0,Canceled,2015-07-25,Fall,2015-09-01T07:00Z +Keep,27,2015,September,36,1,2,6,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,186,0,1,Check-Out,2015-09-09,Fall,2015-09-01T07:00Z +Keep,27,2015,September,36,1,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,114.19,0,1,Check-Out,2015-09-09,Fall,2015-09-01T07:00Z +Cancel,27,2015,September,36,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,186,0,2,Canceled,2015-08-18,Fall,2015-09-01T07:00Z +Keep,140,2015,September,36,1,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,86.95,1,0,Check-Out,2015-09-11,Fall,2015-09-01T07:00Z +Keep,62,2015,September,36,1,2,10,2,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,2,Check-Out,2015-09-13,Fall,2015-09-01T07:00Z +Keep,381,2015,September,36,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,82.88,0,0,Check-Out,2015-09-15,Fall,2015-09-01T07:00Z +Keep,0,2015,September,36,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 88, NULL,0,Transient,134,0,0,Check-Out,2015-09-03,Fall,2015-09-02T07:00Z +Cancel,149,2015,September,36,2,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,155,0,3,Canceled,2015-04-20,Fall,2015-09-02T07:00Z +Cancel,1,2015,September,36,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2015-09-01,Fall,2015-09-02T07:00Z +Cancel,149,2015,September,36,2,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,155,0,3,Canceled,2015-04-20,Fall,2015-09-02T07:00Z +Keep,4,2015,September,36,2,0,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154.25,0,0,Check-Out,2015-09-06,Fall,2015-09-02T07:00Z +Keep,104,2015,September,36,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,71.69,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,104,2015,September,36,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,71.69,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,68,2015,September,36,2,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,150.71,1,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Cancel,4,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Canceled,2015-09-01,Fall,2015-09-02T07:00Z +Cancel,71,2015,September,36,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-06-26,Fall,2015-09-02T07:00Z +Cancel,149,2015,September,36,2,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-04-10,Fall,2015-09-02T07:00Z +Keep,1,2015,September,36,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,131.4,0,0,Check-Out,2015-09-05,Fall,2015-09-03T07:00Z +Keep,55,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 5, NULL,0,Transient,90.4,1,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,SMR,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,57,2015,September,36,3,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,65.5,1,0,Check-Out,2015-09-04,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,29,2015,September,36,3,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,F,2,No Deposit , 250, NULL,0,Transient,211,0,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,1,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,A,1,No Deposit , NULL, 268,0,Transient-Party,80,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,6,2015,September,36,3,0,3,2,0,0,BB,FRA,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Cancel,304,2015,September,36,3,0,3,40,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-03T07:00Z +Keep,29,2015,September,36,3,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 8, NULL,0,Contract,109.5,0,1,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,29,2015,September,36,3,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,144.9,0,2,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,29,2015,September,36,3,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,29,2015,September,36,3,1,3,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 8, NULL,0,Contract,124.5,1,2,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,297,2015,September,36,3,1,3,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,123,0,2,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Cancel,297,2015,September,36,3,1,3,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Canceled,2014-11-18,Fall,2015-09-03T07:00Z +Keep,52,2015,September,36,3,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,113,1,2,Check-Out,2015-09-12,Fall,2015-09-03T07:00Z +Keep,92,2015,September,36,3,2,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,1,0,Check-Out,2015-09-12,Fall,2015-09-03T07:00Z +Keep,52,2015,September,36,3,2,7,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,166,0,3,Check-Out,2015-09-12,Fall,2015-09-03T07:00Z +Keep,56,2015,September,36,3,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,79.5,0,1,Check-Out,2015-09-13,Fall,2015-09-03T07:00Z +Keep,65,2015,September,36,3,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,79.5,0,0,Check-Out,2015-09-13,Fall,2015-09-03T07:00Z +Keep,50,2015,September,36,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,79.5,0,1,Check-Out,2015-09-10,Fall,2015-09-03T07:00Z +Keep,163,2015,September,36,3,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91.46,0,1,Check-Out,2015-09-10,Fall,2015-09-03T07:00Z +Cancel,48,2015,September,36,3,2,8,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,I,0,No Deposit , 250, NULL,0,Transient,153,0,0,No-Show,2015-09-03,Fall,2015-09-03T07:00Z +Keep,327,2015,September,36,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,1,Check-Out,2015-09-17,Fall,2015-09-03T07:00Z +Keep,0,2015,September,36,4,0,1,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,D,F,1,No Deposit , NULL, 110,0,Transient,124.1,1,0,Check-Out,2015-09-05,Fall,2015-09-04T07:00Z +Cancel,1,2015,September,36,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,117.9,0,0,Canceled,2015-09-04,Fall,2015-09-04T07:00Z +Keep,1,2015,September,36,4,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,143,1,2,Check-Out,2015-09-05,Fall,2015-09-04T07:00Z +Keep,0,2015,September,36,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,131,0,0,Check-Out,2015-09-05,Fall,2015-09-04T07:00Z +Keep,14,2015,September,36,4,0,2,3,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,0,Refundable , 96, NULL,0,Transient-Party,128,1,0,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,88,2015,September,36,4,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,167,1,0,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Cancel,105,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2015-06-04,Fall,2015-09-04T07:00Z +Keep,0,2015,September,36,4,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,172,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Cancel,77,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-06-29,Fall,2015-09-04T07:00Z +Keep,15,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Cancel,29,2015,September,36,4,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Canceled,2015-08-06,Fall,2015-09-04T07:00Z +Keep,28,2015,September,36,4,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,116.8,0,0,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Cancel,23,2015,September,36,4,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,155,0,0,Canceled,2015-08-14,Fall,2015-09-04T07:00Z +Keep,28,2015,September,36,4,1,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 8, NULL,0,Contract,79.5,1,0,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,3,2015,September,36,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,1,2,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Cancel,28,2015,September,36,4,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,116.8,0,0,Canceled,2015-08-07,Fall,2015-09-04T07:00Z +Keep,0,2015,September,36,4,2,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient,176,0,0,Check-Out,2015-09-08,Fall,2015-09-04T07:00Z +Keep,4,2015,September,36,4,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,151.25,0,2,Check-Out,2015-09-08,Fall,2015-09-04T07:00Z +Keep,63,2015,September,36,4,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,168,1,1,Check-Out,2015-09-09,Fall,2015-09-04T07:00Z +Keep,67,2015,September,36,4,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-09-09,Fall,2015-09-04T07:00Z +Cancel,29,2015,September,36,4,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,151.88,0,1,Canceled,2015-08-06,Fall,2015-09-04T07:00Z +Keep,73,2015,September,36,4,2,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-09-13,Fall,2015-09-04T07:00Z +Keep,51,2015,September,36,4,3,7,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,104.8,1,0,Check-Out,2015-09-14,Fall,2015-09-04T07:00Z +Keep,150,2015,September,36,4,3,7,2,0,0,HB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,183,1,0,Check-Out,2015-09-14,Fall,2015-09-04T07:00Z +Keep,23,2015,September,36,4,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,2,Check-Out,2015-09-10,Fall,2015-09-04T07:00Z +Keep,67,2015,September,36,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,97.5,0,0,Check-Out,2015-09-11,Fall,2015-09-04T07:00Z +Cancel,30,2015,September,36,5,0,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 149, NULL,0,Transient,143.5,0,0,Canceled,2015-08-28,Fall,2015-09-05T07:00Z +Cancel,15,2015,September,36,5,1,1,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163,0,0,Canceled,2015-08-21,Fall,2015-09-05T07:00Z +Keep,68,2015,September,36,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2015-09-11,Fall,2015-09-05T07:00Z +Keep,47,2015,September,36,5,2,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,171,0,1,Check-Out,2015-09-11,Fall,2015-09-05T07:00Z +Keep,47,2015,September,36,5,2,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,171,0,2,Check-Out,2015-09-11,Fall,2015-09-05T07:00Z +Cancel,74,2015,September,36,5,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,143,0,0,Canceled,2015-06-29,Fall,2015-09-05T07:00Z +Cancel,333,2015,September,36,5,2,5,26,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-05T07:00Z +Keep,26,2015,September,36,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,156,0,0,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Keep,25,2015,September,36,5,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,139.5,1,1,Check-Out,2015-09-07,Fall,2015-09-05T07:00Z +Keep,71,2015,September,36,5,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,0,Check-Out,2015-09-09,Fall,2015-09-05T07:00Z +Cancel,314,2015,September,36,5,2,5,2,1,0,HB,PRT,Direct,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,154.14,0,0,Canceled,2015-01-02,Fall,2015-09-05T07:00Z +Keep,54,2015,September,36,5,2,5,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98,0,2,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Cancel,74,2015,September,36,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2015-06-26,Fall,2015-09-05T07:00Z +Keep,74,2015,September,36,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,107.5,0,0,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Keep,26,2015,September,36,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Contract,124.8,0,0,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Cancel,94,2015,September,36,5,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,153,0,0,No-Show,2015-09-05,Fall,2015-09-05T07:00Z +Cancel,54,2015,September,36,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,131,0,2,Canceled,2015-07-14,Fall,2015-09-05T07:00Z +Keep,52,2015,September,36,5,2,5,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 149, NULL,0,Transient,111.5,1,0,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Keep,47,2015,September,36,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Cancel,74,2015,September,36,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-07-13,Fall,2015-09-05T07:00Z +Cancel,1,2015,September,36,5,2,6,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,153,0,0,Canceled,2015-09-04,Fall,2015-09-05T07:00Z +Cancel,50,2015,September,36,5,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,123,0,0,Canceled,2015-09-04,Fall,2015-09-05T07:00Z +Cancel,155,2015,September,36,5,3,6,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,197,0,2,Canceled,2015-04-07,Fall,2015-09-05T07:00Z +Cancel,323,2015,September,36,5,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient-Party,97.5,0,1,Canceled,2015-05-01,Fall,2015-09-05T07:00Z +Cancel,323,2015,September,36,5,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient-Party,97.5,0,1,Canceled,2015-05-01,Fall,2015-09-05T07:00Z +Keep,340,2015,September,36,5,4,6,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 96, NULL,0,Transient,87.75,0,2,Check-Out,2015-09-15,Fall,2015-09-05T07:00Z +Keep,103,2015,September,36,5,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,83.7,1,1,Check-Out,2015-09-19,Fall,2015-09-05T07:00Z +Keep,356,2015,September,36,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,91.77,0,0,Check-Out,2015-09-19,Fall,2015-09-05T07:00Z +Keep,5,2015,September,37,6,0,0,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-09-06,Fall,2015-09-06T07:00Z +Keep,40,2015,September,37,6,2,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,128,0,1,Check-Out,2015-09-08,Fall,2015-09-06T07:00Z +Cancel,116,2015,September,37,6,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,3,Canceled,2015-05-13,Fall,2015-09-06T07:00Z +Keep,74,2015,September,37,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,71.69,0,1,Check-Out,2015-09-09,Fall,2015-09-06T07:00Z +Keep,25,2015,September,37,6,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114.5,0,1,Check-Out,2015-09-10,Fall,2015-09-06T07:00Z +Cancel,32,2015,September,37,6,1,0,2,0,0,HB,PRT,Offline travel agent / tour operator,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,149,0,0,Canceled,2015-08-06,Fall,2015-09-06T07:00Z +Cancel,12,2015,September,37,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,123,0,1,Canceled,2015-08-25,Fall,2015-09-06T07:00Z +Cancel,26,2015,September,37,6,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,117.8,0,1,Canceled,2015-08-31,Fall,2015-09-06T07:00Z +Cancel,73,2015,September,37,6,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2015-06-29,Fall,2015-09-06T07:00Z +Cancel,26,2015,September,37,6,2,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,198,0,2,Canceled,2015-08-11,Fall,2015-09-06T07:00Z +Cancel,27,2015,September,37,6,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Contract,124.8,0,0,Canceled,2015-08-18,Fall,2015-09-06T07:00Z +Keep,110,2015,September,37,6,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,1,0,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Cancel,75,2015,September,37,6,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2015-07-31,Fall,2015-09-06T07:00Z +Keep,61,2015,September,37,6,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,128,0,0,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Cancel,60,2015,September,37,6,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2015-08-24,Fall,2015-09-06T07:00Z +Cancel,61,2015,September,37,6,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,3,Canceled,2015-08-25,Fall,2015-09-06T07:00Z +Keep,57,2015,September,37,6,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,98,0,0,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,61,2015,September,37,6,2,4,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,161,0,3,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,47,2015,September,37,6,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,79.5,0,0,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,30,2015,September,37,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,126.29,1,2,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,59,2015,September,37,6,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Transient,105.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,78,2015,September,37,6,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,208.14,1,1,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Cancel,142,2015,September,37,6,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,103.85,0,1,Canceled,2015-05-23,Fall,2015-09-06T07:00Z +Keep,94,2015,September,37,6,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,79.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,69,2015,September,37,6,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 240, NULL,0,Transient,113,1,3,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,78,2015,September,37,6,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,163,1,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,115,2015,September,37,6,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,107.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,128,2015,September,37,6,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,97.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Cancel,90,2015,September,37,6,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,113,0,1,Canceled,2015-08-01,Fall,2015-09-06T07:00Z +Keep,328,2015,September,37,6,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,66.15,0,1,Check-Out,2015-09-16,Fall,2015-09-06T07:00Z +Cancel,136,2015,September,37,6,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,99.8,0,0,Canceled,2015-06-05,Fall,2015-09-06T07:00Z +Keep,143,2015,September,37,6,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,111.96,0,0,Check-Out,2015-09-16,Fall,2015-09-06T07:00Z +Keep,90,2015,September,37,6,4,7,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139.18,0,0,Check-Out,2015-09-17,Fall,2015-09-06T07:00Z +Keep,144,2015,September,37,6,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83.15,0,1,Check-Out,2015-09-20,Fall,2015-09-06T07:00Z +Cancel,336,2015,September,37,7,1,2,50,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-18,Fall,2015-09-07T07:00Z +Keep,90,2015,September,37,7,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,77.6,0,0,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,35,2015,September,37,7,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,144.9,0,2,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,4,2015,September,37,7,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,161,0,0,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Cancel,55,2015,September,37,7,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,131,0,1,Canceled,2015-07-21,Fall,2015-09-07T07:00Z +Keep,0,2015,September,37,7,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,2,2015,September,37,7,1,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,188,0,2,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,112,2015,September,37,7,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,64.29,0,0,Check-Out,2015-09-13,Fall,2015-09-07T07:00Z +Cancel,105,2015,September,37,7,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-09-05,Fall,2015-09-07T07:00Z +Cancel,109,2015,September,37,7,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-06-05,Fall,2015-09-07T07:00Z +Cancel,40,2015,September,37,7,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.29,0,2,Canceled,2015-08-04,Fall,2015-09-07T07:00Z +Cancel,75,2015,September,37,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,2,Canceled,2015-08-27,Fall,2015-09-07T07:00Z +Keep,30,2015,September,37,7,13,33,2,0,0,SC,ESP,Online travel agent,TA/TO, 0,0,0,A,I,17,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-10-23,Fall,2015-09-07T07:00Z +Cancel,144,2015,September,37,7,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.96,0,0,No-Show,2015-09-07,Fall,2015-09-07T07:00Z +Keep,248,2015,September,37,7,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,83.5,0,1,Check-Out,2015-09-07,Fall,2015-09-07T07:00Z +Keep,0,2015,September,37,8,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-09-10,Fall,2015-09-08T07:00Z +Cancel,302,2015,September,37,8,0,3,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.47,0,0,Canceled,2015-01-22,Fall,2015-09-08T07:00Z +Cancel,302,2015,September,37,8,0,3,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.47,0,0,Canceled,2015-01-22,Fall,2015-09-08T07:00Z +Cancel,302,2015,September,37,8,0,3,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,84.47,0,0,Canceled,2015-01-22,Fall,2015-09-08T07:00Z +Cancel,61,2015,September,37,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,156,0,0,Canceled,2015-07-27,Fall,2015-09-08T07:00Z +Cancel,12,2015,September,37,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,98,0,1,Canceled,2015-08-28,Fall,2015-09-08T07:00Z +Cancel,47,2015,September,37,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.9,0,2,Canceled,2015-08-10,Fall,2015-09-08T07:00Z +Keep,11,2015,September,37,8,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-09-12,Fall,2015-09-08T07:00Z +Keep,117,2015,September,37,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 156, NULL,0,Contract,101.53,0,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,160,2015,September,37,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 40, NULL,0,Contract,97.54,0,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,175,2015,September,37,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,91.5,0,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,71,2015,September,37,8,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,0,Check-Out,2015-09-16,Fall,2015-09-08T07:00Z +Cancel,344,2015,September,37,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,58.95,0,0,Canceled,2015-01-01,Fall,2015-09-08T07:00Z +Keep,12,2015,September,37,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,133,1,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,382,2015,September,37,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,76.5,0,0,Check-Out,2015-09-22,Fall,2015-09-08T07:00Z +Cancel,0,2015,September,37,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,146,0,2,Canceled,2015-09-09,Fall,2015-09-09T07:00Z +Keep,0,2015,September,37,9,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,146,1,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,28,2015,September,37,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,80,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,58,2015,September,37,9,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,68.5,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Cancel,0,2015,September,37,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,146,0,2,Canceled,2015-09-09,Fall,2015-09-09T07:00Z +Cancel,20,2015,September,37,9,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,124.8,0,0,Canceled,2015-08-22,Fall,2015-09-09T07:00Z +Keep,48,2015,September,37,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,131,0,2,Check-Out,2015-09-11,Fall,2015-09-09T07:00Z +Keep,2,2015,September,37,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,146,1,0,Check-Out,2015-09-12,Fall,2015-09-09T07:00Z +Keep,0,2015,September,37,9,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,134,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,137,2015,September,37,9,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,86.69,1,2,Check-Out,2015-09-12,Fall,2015-09-09T07:00Z +Cancel,1,2015,September,37,9,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,124.4,0,0,Canceled,2015-09-09,Fall,2015-09-09T07:00Z +Keep,130,2015,September,37,9,2,4,1,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2015-09-15,Fall,2015-09-09T07:00Z +Keep,130,2015,September,37,9,2,4,1,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,77.7,1,2,Check-Out,2015-09-15,Fall,2015-09-09T07:00Z +Keep,118,2015,September,37,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,59,0,1,Check-Out,2015-09-16,Fall,2015-09-09T07:00Z +Keep,146,2015,September,37,9,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient,76.5,0,0,Check-Out,2015-09-16,Fall,2015-09-09T07:00Z +Cancel,159,2015,September,37,9,2,7,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,82,0,2,Canceled,2015-04-29,Fall,2015-09-09T07:00Z +Cancel,78,2015,September,37,9,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,92.67,0,1,Canceled,2015-07-23,Fall,2015-09-09T07:00Z +Cancel,159,2015,September,37,9,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,82,0,1,Canceled,2015-04-29,Fall,2015-09-09T07:00Z +Keep,49,2015,September,37,9,1,4,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.4,0,2,Check-Out,2015-09-14,Fall,2015-09-09T07:00Z +Keep,1,2015,September,37,9,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,158.4,0,0,Check-Out,2015-09-14,Fall,2015-09-09T07:00Z +Keep,31,2015,September,37,10,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2015-09-13,Fall,2015-09-10T07:00Z +Cancel,114,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,87.05,0,1,Canceled,2015-05-22,Fall,2015-09-10T07:00Z +Keep,170,2015,September,37,10,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 26, NULL,0,Contract,70.98,0,0,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Cancel,27,2015,September,37,10,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,119.7,0,1,Canceled,2015-08-14,Fall,2015-09-10T07:00Z +Keep,166,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Cancel,114,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,87.05,0,1,Canceled,2015-05-22,Fall,2015-09-10T07:00Z +Cancel,114,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,87.05,0,0,Canceled,2015-05-21,Fall,2015-09-10T07:00Z +Keep,108,2015,September,37,10,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,82.44,0,1,Check-Out,2015-09-15,Fall,2015-09-10T07:00Z +Keep,82,2015,September,37,10,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-09-15,Fall,2015-09-10T07:00Z +Keep,113,2015,September,37,10,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,57.54,0,0,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Cancel,94,2015,September,37,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,120.43,0,0,Canceled,2015-06-11,Fall,2015-09-10T07:00Z +Keep,0,2015,September,37,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,131,1,2,Check-Out,2015-09-11,Fall,2015-09-10T07:00Z +Keep,3,2015,September,37,10,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,C,H,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-09-11,Fall,2015-09-10T07:00Z +Keep,12,2015,September,37,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,75.46,0,1,Check-Out,2015-09-12,Fall,2015-09-10T07:00Z +Cancel,132,2015,September,37,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Group,82,0,2,Canceled,2015-05-11,Fall,2015-09-10T07:00Z +Keep,12,2015,September,37,10,0,2,2,0,1,BB,PRI,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,75.46,0,2,Check-Out,2015-09-12,Fall,2015-09-10T07:00Z +Cancel,56,2015,September,37,10,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,208,0,2,Canceled,2015-08-12,Fall,2015-09-10T07:00Z +Keep,140,2015,September,37,10,2,5,2,1,0,HB,SRB,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,106.25,0,1,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Cancel,147,2015,September,37,10,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,70.48,0,0,Canceled,2015-08-25,Fall,2015-09-10T07:00Z +Keep,140,2015,September,37,10,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,85,0,0,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Keep,97,2015,September,37,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,83.5,0,0,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Keep,160,2015,September,37,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,48.88,0,0,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Keep,91,2015,September,37,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,73.5,0,1,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Keep,111,2015,September,37,10,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,101.5,0,0,Check-Out,2015-09-19,Fall,2015-09-10T07:00Z +Cancel,80,2015,September,37,10,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,133,0,1,Canceled,2015-07-15,Fall,2015-09-10T07:00Z +Cancel,114,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,87.05,0,1,Canceled,2015-05-22,Fall,2015-09-10T07:00Z +Keep,90,2015,September,37,10,2,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118.2,1,1,Check-Out,2015-09-20,Fall,2015-09-10T07:00Z +Keep,338,2015,September,37,10,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,66.15,0,1,Check-Out,2015-09-20,Fall,2015-09-10T07:00Z +Keep,167,2015,September,37,10,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,50.15,0,2,Check-Out,2015-09-24,Fall,2015-09-10T07:00Z +Keep,2,2015,September,37,11,0,1,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,112.42,0,1,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,0,2015,September,37,11,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,131,1,0,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,73,2015,September,37,11,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,68.5,0,0,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,0,2015,September,37,11,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 142, NULL,0,Transient,104.8,0,0,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,63,2015,September,37,11,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,117.9,0,3,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,3,2015,September,37,11,0,1,1,0,0,BB,GBR,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 59,0,Transient,134,0,0,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,8,2015,September,37,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,113,0,0,Check-Out,2015-09-13,Fall,2015-09-11T07:00Z +Keep,1,2015,September,37,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,138.5,0,0,Check-Out,2015-09-13,Fall,2015-09-11T07:00Z +Keep,70,2015,September,37,11,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,1,0,Check-Out,2015-09-13,Fall,2015-09-11T07:00Z +Keep,4,2015,September,37,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,133,1,0,Check-Out,2015-09-13,Fall,2015-09-11T07:00Z +Keep,157,2015,September,37,11,1,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,F,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,1,2015,September,37,11,1,2,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Group,131,1,0,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,1,2015,September,37,11,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,135,1,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,8,2015,September,37,11,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111.2,0,2,Check-Out,2015-09-16,Fall,2015-09-11T07:00Z +Keep,102,2015,September,37,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.5,0,0,Check-Out,2015-09-18,Fall,2015-09-11T07:00Z +Cancel,310,2015,September,37,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,58.95,0,0,Canceled,2015-07-21,Fall,2015-09-11T07:00Z +Keep,11,2015,September,37,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,77.11,0,0,Check-Out,2015-09-18,Fall,2015-09-11T07:00Z +Cancel,148,2015,September,37,11,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,97.99,0,0,Canceled,2015-06-25,Fall,2015-09-11T07:00Z +Keep,165,2015,September,37,11,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.75,0,0,Check-Out,2015-09-21,Fall,2015-09-11T07:00Z +Cancel,101,2015,September,37,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2015-06-23,Fall,2015-09-12T07:00Z +Cancel,101,2015,September,37,12,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,1,Canceled,2015-06-23,Fall,2015-09-12T07:00Z +Keep,9,2015,September,37,12,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,141.5,1,2,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Cancel,172,2015,September,37,12,2,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Canceled,2015-08-06,Fall,2015-09-12T07:00Z +Cancel,171,2015,September,37,12,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,59.13,0,1,Canceled,2015-05-09,Fall,2015-09-12T07:00Z +Keep,143,2015,September,37,12,2,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Check-Out,2015-09-18,Fall,2015-09-12T07:00Z +Cancel,145,2015,September,37,12,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,129,0,2,Canceled,2015-09-08,Fall,2015-09-12T07:00Z +Cancel,121,2015,September,37,12,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Canceled,2015-08-26,Fall,2015-09-12T07:00Z +Keep,0,2015,September,37,12,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient,58.05,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,96,2015,September,37,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.86,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,136,2015,September,37,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,68.45,0,1,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Cancel,340,2015,September,37,12,2,5,26,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-12T07:00Z +Keep,2,2015,September,37,12,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,131.14,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,170,2015,September,37,12,6,12,2,0,0,HB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,72.25,0,0,Check-Out,2015-09-30,Fall,2015-09-12T07:00Z +Keep,149,2015,September,37,12,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient,53.1,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,0,2015,September,38,13,1,0,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,123,0,0,Check-Out,2015-09-14,Fall,2015-09-13T07:00Z +Cancel,127,2015,September,38,13,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,0,Canceled,2015-05-20,Fall,2015-09-13T07:00Z +Cancel,149,2015,September,38,13,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2015-05-09,Fall,2015-09-13T07:00Z +Keep,19,2015,September,38,13,2,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,127.75,0,1,Check-Out,2015-09-17,Fall,2015-09-13T07:00Z +Cancel,12,2015,September,38,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110.75,0,0,Canceled,2015-09-09,Fall,2015-09-13T07:00Z +Cancel,178,2015,September,38,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,91,0,1,Canceled,2015-08-10,Fall,2015-09-13T07:00Z +Keep,12,2015,September,38,13,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.75,1,1,Check-Out,2015-09-17,Fall,2015-09-13T07:00Z +Cancel,178,2015,September,38,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,91,0,1,Canceled,2015-08-10,Fall,2015-09-13T07:00Z +Keep,26,2015,September,38,13,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,132.6,1,2,Check-Out,2015-09-18,Fall,2015-09-13T07:00Z +Keep,2,2015,September,38,13,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,124,1,0,Check-Out,2015-09-18,Fall,2015-09-13T07:00Z +Cancel,10,2015,September,38,13,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,138.6,0,0,Canceled,2015-09-04,Fall,2015-09-13T07:00Z +Cancel,120,2015,September,38,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,2,Canceled,2015-07-31,Fall,2015-09-13T07:00Z +Cancel,123,2015,September,38,13,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.2,0,1,Canceled,2015-05-16,Fall,2015-09-13T07:00Z +Keep,137,2015,September,38,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,66.15,0,1,Check-Out,2015-09-20,Fall,2015-09-13T07:00Z +Keep,104,2015,September,38,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,93.21,0,0,Check-Out,2015-09-20,Fall,2015-09-13T07:00Z +Keep,172,2015,September,38,13,3,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,53.1,0,1,Check-Out,2015-09-21,Fall,2015-09-13T07:00Z +Keep,305,2015,September,38,13,4,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Group,53.1,0,2,Check-Out,2015-09-24,Fall,2015-09-13T07:00Z +Keep,83,2015,September,38,13,4,8,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,105,0,1,Check-Out,2015-09-25,Fall,2015-09-13T07:00Z +Keep,173,2015,September,38,13,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,66.15,0,0,Check-Out,2015-09-25,Fall,2015-09-13T07:00Z +Cancel,94,2015,September,38,13,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,79.5,0,0,Canceled,2015-06-19,Fall,2015-09-13T07:00Z +Keep,118,2015,September,38,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,73.5,0,0,Check-Out,2015-09-27,Fall,2015-09-13T07:00Z +Keep,156,2015,September,38,14,1,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,58.5,1,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,21,2015,September,38,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,132,1,2,Check-Out,2015-09-17,Fall,2015-09-14T07:00Z +Cancel,17,2015,September,38,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,2,Canceled,2015-09-03,Fall,2015-09-14T07:00Z +Keep,128,2015,September,38,14,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,73.5,1,1,Check-Out,2015-09-19,Fall,2015-09-14T07:00Z +Keep,34,2015,September,38,14,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 241, NULL,0,Transient,212.83,1,2,Check-Out,2015-09-19,Fall,2015-09-14T07:00Z +Keep,19,2015,September,38,14,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Transient,120.08,0,2,Check-Out,2015-09-19,Fall,2015-09-14T07:00Z +Cancel,108,2015,September,38,14,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.2,0,0,Canceled,2015-08-20,Fall,2015-09-14T07:00Z +Keep,25,2015,September,38,14,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,160.8,0,2,Check-Out,2015-09-19,Fall,2015-09-14T07:00Z +Keep,107,2015,September,38,14,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,1,Check-Out,2015-09-20,Fall,2015-09-14T07:00Z +Keep,11,2015,September,38,14,1,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,100.5,0,1,Check-Out,2015-09-20,Fall,2015-09-14T07:00Z +Cancel,94,2015,September,38,14,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2015-07-21,Fall,2015-09-14T07:00Z +Keep,83,2015,September,38,14,3,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2015-09-22,Fall,2015-09-14T07:00Z +Keep,84,2015,September,38,14,4,10,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,103.51,1,0,Check-Out,2015-09-28,Fall,2015-09-14T07:00Z +Keep,135,2015,September,38,14,8,20,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,82,0,0,Check-Out,2015-10-12,Fall,2015-09-14T07:00Z +Keep,11,2015,September,38,14,1,2,2,2,0,BB,IND,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2015-09-17,Fall,2015-09-14T07:00Z +Keep,5,2015,September,38,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,G,0,No Deposit , 250, NULL,0,Transient,146,0,0,Check-Out,2015-09-16,Fall,2015-09-15T07:00Z +Cancel,175,2015,September,38,15,0,4,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,0,0,0,Canceled,2015-09-02,Fall,2015-09-15T07:00Z +Cancel,105,2015,September,38,15,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68.4,0,0,Canceled,2015-08-17,Fall,2015-09-15T07:00Z +Keep,99,2015,September,38,15,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,55.79,0,0,Check-Out,2015-09-20,Fall,2015-09-15T07:00Z +Cancel,81,2015,September,38,15,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.8,0,1,Canceled,2015-07-14,Fall,2015-09-15T07:00Z +Keep,152,2015,September,38,15,1,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Check-Out,2015-09-21,Fall,2015-09-15T07:00Z +Cancel,103,2015,September,38,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.14,0,0,Canceled,2015-08-28,Fall,2015-09-15T07:00Z +Cancel,96,2015,September,38,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.14,0,0,Canceled,2015-06-13,Fall,2015-09-15T07:00Z +Cancel,81,2015,September,38,15,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.8,0,1,Canceled,2015-07-14,Fall,2015-09-15T07:00Z +Keep,124,2015,September,38,15,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,73.5,0,1,Check-Out,2015-09-24,Fall,2015-09-15T07:00Z +Keep,354,2015,September,38,15,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,68.88,0,0,Check-Out,2015-09-29,Fall,2015-09-15T07:00Z +Cancel,116,2015,September,38,15,4,11,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.53,0,0,Canceled,2015-05-27,Fall,2015-09-15T07:00Z +Keep,119,2015,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,71.66,0,0,Check-Out,2015-09-29,Fall,2015-09-15T07:00Z +Keep,1,2015,September,38,16,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,5,2015,September,38,16,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,1,2,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,8,1,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,46,2015,September,38,16,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.5,0,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,6,2015,September,38,16,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 204,0,Transient,55,0,0,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,44,2015,September,38,16,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,2,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,42,2015,September,38,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,1,1,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Cancel,64,2015,September,38,16,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2015-07-15,Fall,2015-09-16T07:00Z +Keep,65,2015,September,38,16,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,129,0,2,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,93,2015,September,38,16,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,72,2015,September,38,16,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,83,0,0,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,42,2015,September,38,16,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,74,0,0,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Cancel,65,2015,September,38,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,77.75,0,1,Canceled,2015-08-17,Fall,2015-09-16T07:00Z +Cancel,121,2015,September,38,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,0,Canceled,2015-05-19,Fall,2015-09-16T07:00Z +Keep,104,2015,September,38,16,1,4,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,0,Check-Out,2015-09-21,Fall,2015-09-16T07:00Z +Keep,1,2015,September,38,16,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150.25,0,0,Check-Out,2015-09-20,Fall,2015-09-16T07:00Z +Keep,56,2015,September,38,16,1,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,92,1,2,Check-Out,2015-09-21,Fall,2015-09-16T07:00Z +Keep,114,2015,September,38,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,85.5,0,0,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Keep,85,2015,September,38,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,71.2,0,1,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Cancel,65,2015,September,38,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.5,0,1,Canceled,2015-07-20,Fall,2015-09-16T07:00Z +Keep,85,2015,September,38,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,71.2,0,1,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Cancel,95,2015,September,38,16,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2015-07-31,Fall,2015-09-16T07:00Z +Cancel,97,2015,September,38,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2015-09-10,Fall,2015-09-16T07:00Z +Cancel,97,2015,September,38,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Canceled,2015-06-13,Fall,2015-09-16T07:00Z +Keep,6,2015,September,38,17,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,71.2,1,0,Check-Out,2015-09-18,Fall,2015-09-17T07:00Z +Keep,78,2015,September,38,17,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,1,2,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,1,2015,September,38,17,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-09-17,Fall,2015-09-17T07:00Z +Keep,50,2015,September,38,17,0,1,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,2,Check-Out,2015-09-18,Fall,2015-09-17T07:00Z +Keep,0,2015,September,38,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,106.2,1,0,Check-Out,2015-09-18,Fall,2015-09-17T07:00Z +Cancel,105,2015,September,38,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2015-09-15,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,138,2015,September,38,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,2,Check-Out,2015-09-22,Fall,2015-09-17T07:00Z +Cancel,89,2015,September,38,17,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,2,Canceled,2015-08-10,Fall,2015-09-17T07:00Z +Cancel,62,2015,September,38,17,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2015-07-31,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,65,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,110,2015,September,38,17,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Cancel,76,2015,September,38,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.71,0,1,Canceled,2015-07-20,Fall,2015-09-17T07:00Z +Keep,87,2015,September,38,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,59.2,0,0,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Cancel,35,2015,September,38,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,114,0,0,Canceled,2015-08-13,Fall,2015-09-17T07:00Z +Keep,104,2015,September,38,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,73.5,0,0,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Keep,66,2015,September,38,17,2,5,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.71,0,2,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Keep,34,2015,September,38,17,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,90.43,0,0,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Keep,131,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,80.63,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,45.9,0,1,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,7,2015,September,38,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,120,1,1,Check-Out,2015-09-20,Fall,2015-09-18T07:00Z +Keep,7,2015,September,38,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,114,0,1,Check-Out,2015-09-20,Fall,2015-09-18T07:00Z +Keep,71,2015,September,38,18,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.6,1,1,Check-Out,2015-09-21,Fall,2015-09-18T07:00Z +Cancel,101,2015,September,38,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2015-08-18,Fall,2015-09-18T07:00Z +Keep,48,2015,September,38,18,1,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,G,1,No Deposit , 250, NULL,0,Transient,113,1,0,Check-Out,2015-09-21,Fall,2015-09-18T07:00Z +Keep,99,2015,September,38,18,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 142, NULL,0,Transient,81.2,0,0,Check-Out,2015-09-21,Fall,2015-09-18T07:00Z +Cancel,102,2015,September,38,18,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,59.2,0,0,Canceled,2015-08-12,Fall,2015-09-18T07:00Z +Cancel,32,2015,September,38,18,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,126,0,0,Canceled,2015-08-22,Fall,2015-09-18T07:00Z +Keep,71,2015,September,38,18,2,3,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 196, NULL,0,Transient,99.5,0,2,Check-Out,2015-09-23,Fall,2015-09-18T07:00Z +Cancel,102,2015,September,38,18,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2015-07-21,Fall,2015-09-18T07:00Z +Keep,127,2015,September,38,18,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Contract,73.5,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,119,2015,September,38,18,2,5,2,0,0,HB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,85,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Cancel,77,2015,September,38,18,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87.33,0,1,Canceled,2015-07-08,Fall,2015-09-18T07:00Z +Keep,79,2015,September,38,18,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,75.1,0,0,Check-Out,2015-09-28,Fall,2015-09-18T07:00Z +Keep,4,2015,September,38,19,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,59,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,65,2015,September,38,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,1,2,Check-Out,2015-09-23,Fall,2015-09-19T07:00Z +Keep,61,2015,September,38,19,2,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,120,1,2,Check-Out,2015-09-23,Fall,2015-09-19T07:00Z +Cancel,36,2015,September,38,19,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,162,0,1,Canceled,2015-08-17,Fall,2015-09-19T07:00Z +Cancel,124,2015,September,38,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2015-06-02,Fall,2015-09-19T07:00Z +Keep,33,2015,September,38,19,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,152,1,1,Check-Out,2015-09-24,Fall,2015-09-19T07:00Z +Cancel,68,2015,September,38,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,0,0,Canceled,2015-07-24,Fall,2015-09-19T07:00Z +Keep,99,2015,September,38,19,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,127,1,0,Check-Out,2015-09-24,Fall,2015-09-19T07:00Z +Keep,99,2015,September,38,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,69.83,0,0,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,85,2015,September,38,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,102.93,0,0,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,110,2015,September,38,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,65.1,0,0,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,75,2015,September,38,19,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 156, NULL,0,Transient,96.26,0,1,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,33,2015,September,38,19,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,124.74,0,2,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Cancel,347,2015,September,38,19,2,5,26,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-19T07:00Z +Cancel,65,2015,September,38,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,2,Canceled,2015-07-27,Fall,2015-09-19T07:00Z +Keep,35,2015,September,38,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,1,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,87,2015,September,38,19,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,59.2,0,2,Check-Out,2015-09-29,Fall,2015-09-19T07:00Z +Keep,128,2015,September,38,19,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,138.29,0,2,Check-Out,2015-09-29,Fall,2015-09-19T07:00Z +Keep,87,2015,September,38,19,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,59.2,0,2,Check-Out,2015-09-29,Fall,2015-09-19T07:00Z +Cancel,92,2015,September,38,19,4,10,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125.71,0,0,Canceled,2015-06-29,Fall,2015-09-19T07:00Z +Cancel,114,2015,September,39,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,0,Canceled,2015-08-10,Fall,2015-09-20T07:00Z +Keep,65,2015,September,39,20,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,116,0,0,Check-Out,2015-09-24,Fall,2015-09-20T07:00Z +Cancel,106,2015,September,39,20,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95.4,0,0,Canceled,2015-07-31,Fall,2015-09-20T07:00Z +Keep,83,2015,September,39,20,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 134, NULL,0,Transient,100.93,0,0,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Cancel,158,2015,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Canceled,2015-04-18,Fall,2015-09-20T07:00Z +Keep,86,2015,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.93,0,0,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,103,2015,September,39,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,58.98,0,0,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Cancel,158,2015,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Canceled,2015-04-18,Fall,2015-09-20T07:00Z +Keep,125,2015,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,58.93,0,2,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Cancel,4,2015,September,39,20,4,6,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,103.22,0,0,Canceled,2015-09-18,Fall,2015-09-20T07:00Z +Keep,131,2015,September,39,20,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,42.5,0,0,Check-Out,2015-10-01,Fall,2015-09-20T07:00Z +Keep,125,2015,September,39,20,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,68.5,0,0,Check-Out,2015-10-01,Fall,2015-09-20T07:00Z +Keep,93,2015,September,39,20,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,55.64,0,1,Check-Out,2015-10-01,Fall,2015-09-20T07:00Z +Cancel,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,26,0,0,Canceled,2015-08-18,Fall,2015-09-21T07:00Z +Cancel,34,2015,September,39,21,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Canceled,2015-09-09,Fall,2015-09-21T07:00Z +Cancel,12,2015,September,39,21,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Canceled,2015-09-18,Fall,2015-09-21T07:00Z +Keep,130,2015,September,39,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Cancel,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,26,0,0,Canceled,2015-08-18,Fall,2015-09-21T07:00Z +Cancel,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,26,0,0,Canceled,2015-08-18,Fall,2015-09-21T07:00Z +Cancel,33,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Canceled,2015-08-20,Fall,2015-09-21T07:00Z +Cancel,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,26,0,0,Canceled,2015-08-18,Fall,2015-09-21T07:00Z +Keep,121,2015,September,39,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 242, NULL,0,Transient,99,0,2,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Cancel,58,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Canceled,2015-08-18,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,1,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,128,2015,September,39,21,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2015-09-24,Fall,2015-09-21T07:00Z +Keep,111,2015,September,39,21,1,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2015-09-24,Fall,2015-09-21T07:00Z +Cancel,349,2015,September,39,21,1,3,27,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-21T07:00Z +Cancel,73,2015,September,39,21,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2015-07-11,Fall,2015-09-21T07:00Z +Cancel,61,2015,September,39,21,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2015-07-29,Fall,2015-09-21T07:00Z +Keep,94,2015,September,39,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,59.02,0,0,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,96,2015,September,39,21,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 8, NULL,0,Transient,79.5,1,1,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,109,2015,September,39,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,74.93,0,0,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,65,2015,September,39,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,89.14,0,1,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,124,2015,September,39,21,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,53.69,1,0,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,84,2015,September,39,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 26, NULL,0,Transient,114.48,0,0,Check-Out,2015-09-28,Fall,2015-09-21T07:00Z +Keep,95,2015,September,39,21,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,73.98,0,0,Check-Out,2015-09-30,Fall,2015-09-21T07:00Z +Keep,90,2015,September,39,21,3,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 147, NULL,0,Transient,99.5,0,1,Check-Out,2015-10-01,Fall,2015-09-21T07:00Z +Keep,90,2015,September,39,21,3,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 147, NULL,0,Transient,99.5,0,1,Check-Out,2015-10-01,Fall,2015-09-21T07:00Z +Keep,112,2015,September,39,21,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,59.2,0,0,Check-Out,2015-10-01,Fall,2015-09-21T07:00Z +Keep,130,2015,September,39,21,3,8,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 71, NULL,0,Contract,65.64,0,0,Check-Out,2015-10-02,Fall,2015-09-21T07:00Z +Keep,78,2015,September,39,22,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2015-09-24,Fall,2015-09-22T07:00Z +Cancel,36,2015,September,39,22,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,79,0,1,Canceled,2015-09-08,Fall,2015-09-22T07:00Z +Cancel,159,2015,September,39,22,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,2,Canceled,2015-04-22,Fall,2015-09-22T07:00Z +Cancel,75,2015,September,39,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.71,0,2,Canceled,2015-09-08,Fall,2015-09-22T07:00Z +Keep,158,2015,September,39,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.43,0,3,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Keep,108,2015,September,39,22,2,5,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,77.73,1,0,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Keep,158,2015,September,39,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,1,3,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Keep,70,2015,September,39,22,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,80.63,0,0,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Cancel,1,2015,September,39,22,0,3,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,129,0,0,Canceled,2015-09-21,Fall,2015-09-22T07:00Z +Keep,76,2015,September,39,22,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 242, NULL,0,Transient,140.63,1,1,Check-Out,2015-09-30,Fall,2015-09-22T07:00Z +Cancel,183,2015,September,39,22,2,8,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,3,No Deposit , NULL, NULL,0,Transient,73.5,0,0,Canceled,2015-06-15,Fall,2015-09-22T07:00Z +Keep,21,2015,September,39,23,0,1,2,0,0,HB,DEU,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 110,0,Transient-Party,108.65,0,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,21,2015,September,39,23,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 110,0,Transient-Party,75.65,0,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,21,2015,September,39,23,0,1,2,0,0,HB,DEU,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 110,0,Transient-Party,108.85,0,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Cancel,21,2015,September,39,23,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 110,0,Transient,75.65,0,0,Canceled,2015-09-22,Fall,2015-09-23T07:00Z +Cancel,21,2015,September,39,23,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 110,0,Transient-Party,75.65,0,0,Canceled,2015-09-22,Fall,2015-09-23T07:00Z +Keep,34,2015,September,39,23,0,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,1,1,Check-Out,2015-09-25,Fall,2015-09-23T07:00Z +Keep,119,2015,September,39,23,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,56.98,0,1,Check-Out,2015-09-25,Fall,2015-09-23T07:00Z +Cancel,6,2015,September,39,23,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 156, NULL,0,Transient,0,0,1,Canceled,2015-09-22,Fall,2015-09-23T07:00Z +Cancel,6,2015,September,39,23,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 156, NULL,0,Transient,0,0,1,Canceled,2015-09-22,Fall,2015-09-23T07:00Z +Keep,8,2015,September,39,23,1,4,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 175, NULL,0,Transient,74.8,1,0,Check-Out,2015-09-28,Fall,2015-09-23T07:00Z +Cancel,68,2015,September,39,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2015-09-14,Fall,2015-09-23T07:00Z +Cancel,68,2015,September,39,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,0,1,Canceled,2015-09-18,Fall,2015-09-23T07:00Z +Keep,137,2015,September,39,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87.86,0,1,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,154,2015,September,39,23,2,6,3,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,130.5,0,1,Check-Out,2015-10-01,Fall,2015-09-23T07:00Z +Keep,76,2015,September,39,23,2,7,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Contract,64,0,0,Check-Out,2015-10-02,Fall,2015-09-23T07:00Z +Keep,21,2015,September,39,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112,1,0,Check-Out,2015-09-27,Fall,2015-09-24T07:00Z +Keep,71,2015,September,39,24,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,75.5,0,0,Check-Out,2015-09-26,Fall,2015-09-24T07:00Z +Keep,36,2015,September,39,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,89,0,3,Check-Out,2015-09-26,Fall,2015-09-24T07:00Z +Keep,64,2015,September,39,24,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Check-Out,2015-09-27,Fall,2015-09-24T07:00Z +Keep,29,2015,September,39,24,0,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 175, NULL,0,Transient,97.2,0,0,Check-Out,2015-09-25,Fall,2015-09-24T07:00Z +Cancel,352,2015,September,39,24,1,3,27,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-24T07:00Z +Keep,76,2015,September,39,24,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,76.3,0,1,Check-Out,2015-09-29,Fall,2015-09-24T07:00Z +Keep,76,2015,September,39,24,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,74.7,0,0,Check-Out,2015-09-29,Fall,2015-09-24T07:00Z +Keep,75,2015,September,39,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,55.43,0,1,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,115,2015,September,39,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 147, NULL,0,Transient,48.54,0,0,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,84,2015,September,39,24,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,83.8,0,1,Check-Out,2015-10-04,Fall,2015-09-24T07:00Z +Keep,77,2015,September,39,24,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,43.93,0,0,Check-Out,2015-10-08,Fall,2015-09-24T07:00Z +Cancel,7,2015,September,39,25,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,C,G,0,No Deposit , NULL, NULL,0,Transient,129,0,0,Canceled,2015-09-23,Fall,2015-09-25T07:00Z +Keep,0,2015,September,39,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 240,0,Group,80.1,0,0,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,16,2015,September,39,25,0,1,1,0,0,SC,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , NULL, 312,0,Transient-Party,80,0,1,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,2,2015,September,39,25,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,173,1,0,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,16,2015,September,39,25,0,1,1,0,0,SC,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , NULL, 312,0,Transient-Party,80,0,1,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,0,2015,September,39,25,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,89,0,0,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,9,2015,September,39,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,108.5,1,1,Check-Out,2015-09-27,Fall,2015-09-25T07:00Z +Keep,8,2015,September,39,25,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,136.5,0,1,Check-Out,2015-09-27,Fall,2015-09-25T07:00Z +Cancel,109,2015,September,39,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2015-06-19,Fall,2015-09-25T07:00Z +Keep,9,2015,September,39,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,96.5,0,1,Check-Out,2015-09-27,Fall,2015-09-25T07:00Z +Keep,8,2015,September,39,25,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,142.5,1,1,Check-Out,2015-09-27,Fall,2015-09-25T07:00Z +Cancel,60,2015,September,39,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Canceled,2015-09-08,Fall,2015-09-25T07:00Z +Keep,79,2015,September,39,25,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,89,0,1,Check-Out,2015-09-30,Fall,2015-09-25T07:00Z +Keep,79,2015,September,39,25,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,89,0,1,Check-Out,2015-09-30,Fall,2015-09-25T07:00Z +Cancel,67,2015,September,39,25,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,2,Canceled,2015-08-31,Fall,2015-09-25T07:00Z +Cancel,74,2015,September,39,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.06,0,3,Canceled,2015-07-18,Fall,2015-09-25T07:00Z +Keep,119,2015,September,39,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,72.14,0,0,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,51,2015,September,39,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.49,0,1,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,106,2015,September,39,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,53.68,0,1,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,119,2015,September,39,25,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,85.5,1,1,Check-Out,2015-10-03,Fall,2015-09-25T07:00Z +Cancel,74,2015,September,39,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.06,0,3,Canceled,2015-07-18,Fall,2015-09-25T07:00Z +Keep,39,2015,September,39,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,80.08,0,1,Check-Out,2015-09-27,Fall,2015-09-26T07:00Z +Keep,1,2015,September,39,26,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Cancel,37,2015,September,39,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,0,3,Canceled,2015-08-20,Fall,2015-09-26T07:00Z +Cancel,37,2015,September,39,26,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,119,0,4,Canceled,2015-08-20,Fall,2015-09-26T07:00Z +Keep,10,2015,September,39,26,1,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,F,0,No Deposit , NULL, 110,0,Transient-Party,104.72,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Cancel,75,2015,September,39,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.35,0,1,Canceled,2015-07-17,Fall,2015-09-26T07:00Z +Cancel,59,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient,74,0,0,Canceled,2015-08-24,Fall,2015-09-26T07:00Z +Cancel,61,2015,September,39,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2015-08-27,Fall,2015-09-26T07:00Z +Cancel,61,2015,September,39,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,2,Canceled,2015-08-27,Fall,2015-09-26T07:00Z +Cancel,61,2015,September,39,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,94,0,1,Canceled,2015-09-01,Fall,2015-09-26T07:00Z +Keep,44,2015,September,39,26,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,116,0,1,Check-Out,2015-09-29,Fall,2015-09-26T07:00Z +Keep,47,2015,September,39,26,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,82.8,0,1,Check-Out,2015-10-01,Fall,2015-09-26T07:00Z +Keep,64,2015,September,39,26,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.5,0,1,Check-Out,2015-10-02,Fall,2015-09-26T07:00Z +Cancel,354,2015,September,39,26,2,5,26,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-09-26T07:00Z +Keep,98,2015,September,39,26,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,128.42,1,0,Check-Out,2015-10-03,Fall,2015-09-26T07:00Z +Keep,136,2015,September,39,26,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,55.09,0,0,Check-Out,2015-10-03,Fall,2015-09-26T07:00Z +Keep,116,2015,September,39,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,93.86,0,0,Check-Out,2015-10-03,Fall,2015-09-26T07:00Z +Cancel,54,2015,September,39,26,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,69.13,0,1,Canceled,2015-09-16,Fall,2015-09-26T07:00Z +Keep,41,2015,September,40,27,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,122,1,1,Check-Out,2015-10-01,Fall,2015-09-27T07:00Z +Keep,11,2015,September,40,27,1,0,2,0,0,BB,DEU,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient-Party,88.4,0,0,Check-Out,2015-09-28,Fall,2015-09-27T07:00Z +Keep,32,2015,September,40,27,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,94.5,0,0,Check-Out,2015-09-28,Fall,2015-09-27T07:00Z +Cancel,73,2015,September,40,27,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.6,0,2,Canceled,2015-08-04,Fall,2015-09-27T07:00Z +Keep,53,2015,September,40,27,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,85.08,0,2,Check-Out,2015-10-02,Fall,2015-09-27T07:00Z +Keep,100,2015,September,40,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,55.43,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,73,2015,September,40,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,93.43,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,177,2015,September,40,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,36.13,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,51,2015,September,40,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,55.43,0,1,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Cancel,81,2015,September,40,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.29,0,0,Canceled,2015-07-17,Fall,2015-09-27T07:00Z +Keep,47,2015,September,40,27,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,90.74,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Cancel,81,2015,September,40,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.29,0,0,Canceled,2015-07-20,Fall,2015-09-27T07:00Z +Keep,163,2015,September,40,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,38.25,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,59,2015,September,40,27,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,106.31,0,2,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Cancel,55,2015,September,40,27,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,74.2,0,0,Canceled,2015-09-21,Fall,2015-09-27T07:00Z +Keep,97,2015,September,40,27,4,6,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,93.2,0,0,Check-Out,2015-10-07,Fall,2015-09-27T07:00Z +Keep,85,2015,September,40,27,4,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83.67,0,1,Check-Out,2015-10-09,Fall,2015-09-27T07:00Z +Keep,177,2015,September,40,27,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.23,0,0,Check-Out,2015-10-11,Fall,2015-09-27T07:00Z +Keep,0,2015,September,40,28,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.53,1,1,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,0,2015,September,40,28,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.1,1,2,Check-Out,2015-09-30,Fall,2015-09-28T07:00Z +Cancel,80,2015,September,40,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,63.14,0,1,Canceled,2015-07-13,Fall,2015-09-28T07:00Z +Cancel,77,2015,September,40,28,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,74.6,0,1,Canceled,2015-07-25,Fall,2015-09-28T07:00Z +Keep,69,2015,September,40,28,1,3,1,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60.5,0,2,Check-Out,2015-10-02,Fall,2015-09-28T07:00Z +Cancel,80,2015,September,40,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.5,0,2,Canceled,2015-07-20,Fall,2015-09-28T07:00Z +Cancel,77,2015,September,40,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Canceled,2015-07-25,Fall,2015-09-28T07:00Z +Keep,56,2015,September,40,28,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-02,Fall,2015-09-28T07:00Z +Cancel,77,2015,September,40,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Canceled,2015-07-25,Fall,2015-09-28T07:00Z +Cancel,80,2015,September,40,28,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Canceled,2015-07-13,Fall,2015-09-28T07:00Z +Cancel,80,2015,September,40,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Canceled,2015-07-13,Fall,2015-09-28T07:00Z +Cancel,98,2015,September,40,28,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.5,0,0,Canceled,2015-07-06,Fall,2015-09-28T07:00Z +Cancel,56,2015,September,40,28,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.09,0,2,Canceled,2015-09-10,Fall,2015-09-28T07:00Z +Keep,60,2015,September,40,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,1,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,77,2015,September,40,28,2,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,78.1,0,2,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,53,2015,September,40,28,2,5,2,0,0,HB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,70.5,0,0,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,72,2015,September,40,28,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.5,1,2,Check-Out,2015-10-06,Fall,2015-09-28T07:00Z +Cancel,119,2015,September,40,28,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.8,0,0,Canceled,2015-06-02,Fall,2015-09-28T07:00Z +Keep,164,2015,September,40,28,3,9,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,39.24,0,0,Check-Out,2015-10-10,Fall,2015-09-28T07:00Z +Cancel,64,2015,September,40,29,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.78,0,1,Canceled,2015-09-03,Fall,2015-09-29T07:00Z +Cancel,89,2015,September,40,29,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,0,2,Canceled,2015-07-11,Fall,2015-09-29T07:00Z +Cancel,57,2015,September,40,29,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,54.4,0,1,Canceled,2015-09-14,Fall,2015-09-29T07:00Z +Keep,54,2015,September,40,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,56.59,0,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,172,2015,September,40,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,59.03,0,2,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,60,2015,September,40,29,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 5, NULL,0,Transient,62,0,0,Check-Out,2015-10-03,Fall,2015-09-29T07:00Z +Cancel,13,2015,September,40,29,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,148.12,0,0,No-Show,2015-09-29,Fall,2015-09-29T07:00Z +Keep,165,2015,September,40,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Cancel,57,2015,September,40,29,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,54.4,0,1,Canceled,2015-09-14,Fall,2015-09-29T07:00Z +Keep,55,2015,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,44.5,0,1,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Cancel,76,2015,September,40,29,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.45,0,1,Canceled,2015-09-01,Fall,2015-09-29T07:00Z +Keep,81,2015,September,40,29,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.75,0,3,Check-Out,2015-10-07,Fall,2015-09-29T07:00Z +Cancel,76,2015,September,40,29,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.45,0,1,Canceled,2015-09-01,Fall,2015-09-29T07:00Z +Keep,96,2015,September,40,29,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,48.8,0,2,Check-Out,2015-10-08,Fall,2015-09-29T07:00Z +Keep,61,2015,September,40,29,2,10,2,0,0,HB,BLR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Check-Out,2015-10-11,Fall,2015-09-29T07:00Z +Keep,19,2015,September,40,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,106,0,1,Check-Out,2015-10-01,Fall,2015-09-30T07:00Z +Keep,50,2015,September,40,30,0,1,1,1,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,104,0,0,Check-Out,2015-10-01,Fall,2015-09-30T07:00Z +Keep,0,2015,September,40,30,0,1,2,0,0,BB,DEU,Corporate,Corporate, 0,0,0,G,G,0,No Deposit , 110, NULL,0,Transient,90.1,0,0,Check-Out,2015-10-01,Fall,2015-09-30T07:00Z +Keep,2,2015,September,40,30,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 318,0,Transient,55.5,0,1,Check-Out,2015-10-02,Fall,2015-09-30T07:00Z +Keep,2,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,2,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,55,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,56,2015,September,40,30,0,3,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,2,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,2,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,55,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,55,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Cancel,55,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,67.5,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Cancel,2,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 256, NULL,0,Transient-Party,13,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Keep,54,2015,September,40,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,64.33,0,1,Check-Out,2015-10-06,Fall,2015-09-30T07:00Z +Cancel,142,2015,September,40,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.83,0,1,Canceled,2015-06-15,Fall,2015-09-30T07:00Z +Keep,51,2015,September,40,30,2,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,100.33,1,2,Check-Out,2015-10-06,Fall,2015-09-30T07:00Z +Keep,49,2015,September,40,30,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,93,2015,September,40,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Transient,71.93,0,0,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,48,2015,September,40,30,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,52.73,0,0,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Cancel,68,2015,September,40,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.57,0,0,Canceled,2015-08-12,Fall,2015-09-30T07:00Z +Keep,92,2015,September,40,30,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,48,0,1,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,97,2015,September,40,30,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,62.43,1,2,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,48,2015,September,40,30,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,52.73,0,0,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,58,2015,September,40,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.27,0,1,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Cancel,70,2015,September,40,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.57,0,0,Canceled,2015-08-12,Fall,2015-09-30T07:00Z +Keep,41,2015,September,40,30,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,54.4,0,0,Check-Out,2015-10-14,Fall,2015-09-30T07:00Z +Keep,0,2015,October,40,1,0,1,3,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient-Party,120,0,2,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Cancel,63,2015,October,40,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.4,0,2,Canceled,2015-09-08,Fall,2015-10-01T07:00Z +Keep,44,2015,October,40,1,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,118.5,0,2,Check-Out,2015-10-04,Fall,2015-10-01T07:00Z +Keep,19,2015,October,40,1,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,87,0,1,Check-Out,2015-10-04,Fall,2015-10-01T07:00Z +Keep,57,2015,October,40,1,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,48.3,1,2,Check-Out,2015-10-04,Fall,2015-10-01T07:00Z +Keep,24,2015,October,40,1,0,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93,1,2,Check-Out,2015-10-04,Fall,2015-10-01T07:00Z +Keep,22,2015,October,40,1,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2015-10-05,Fall,2015-10-01T07:00Z +Keep,51,2015,October,40,1,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,3,Check-Out,2015-10-05,Fall,2015-10-01T07:00Z +Keep,23,2015,October,40,1,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2015-10-05,Fall,2015-10-01T07:00Z +Keep,79,2015,October,40,1,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Contract,66,0,0,Check-Out,2015-10-06,Fall,2015-10-01T07:00Z +Keep,48,2015,October,40,1,2,3,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2015-10-06,Fall,2015-10-01T07:00Z +Keep,51,2015,October,40,1,2,3,1,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,74.4,0,0,Check-Out,2015-10-06,Fall,2015-10-01T07:00Z +Keep,78,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,74.23,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,24,2015,October,40,1,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,103,1,1,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,45,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,82,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Cancel,24,2015,October,40,1,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2015-09-12,Fall,2015-10-01T07:00Z +Keep,44,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,69.93,0,1,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,78,2015,October,40,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,43.93,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,45,2015,October,40,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.43,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,115,2015,October,40,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,36.74,0,1,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,50,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,63.08,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,45,2015,October,40,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Cancel,103,2015,October,40,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Canceled,2015-06-22,Fall,2015-10-01T07:00Z +Keep,145,2015,October,40,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,55.43,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,113,2015,October,40,2,0,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,76,1,0,Check-Out,2015-10-04,Fall,2015-10-02T07:00Z +Keep,102,2015,October,40,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,0,Check-Out,2015-10-04,Fall,2015-10-02T07:00Z +Keep,113,2015,October,40,2,0,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2015-10-04,Fall,2015-10-02T07:00Z +Keep,0,2015,October,40,2,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2015-10-04,Fall,2015-10-02T07:00Z +Cancel,29,2015,October,40,2,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,117,0,0,Canceled,2015-09-25,Fall,2015-10-02T07:00Z +Cancel,115,2015,October,40,2,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2015-07-21,Fall,2015-10-02T07:00Z +Keep,73,2015,October,40,2,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,47,0,0,Check-Out,2015-10-06,Fall,2015-10-02T07:00Z +Keep,115,2015,October,40,2,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-06,Fall,2015-10-02T07:00Z +Keep,115,2015,October,40,2,2,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2015-10-07,Fall,2015-10-02T07:00Z +Keep,20,2015,October,40,2,2,5,2,0,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,44.5,0,1,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,56,2015,October,40,2,2,5,1,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 71, NULL,0,Contract,77,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,50,2015,October,40,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,20,2015,October,40,2,2,5,2,0,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,53,2015,October,40,2,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,46,2015,October,40,2,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 71, NULL,0,Transient,55.43,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Cancel,23,2015,October,40,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,44.5,0,0,Canceled,2015-09-09,Fall,2015-10-02T07:00Z +Keep,63,2015,October,40,2,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.23,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,200,2015,October,40,2,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,72,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,56,2015,October,40,2,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60.9,1,3,Check-Out,2015-10-10,Fall,2015-10-02T07:00Z +Keep,49,2015,October,40,2,2,6,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.25,0,2,Check-Out,2015-10-10,Fall,2015-10-02T07:00Z +Keep,56,2015,October,40,2,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.9,0,3,Check-Out,2015-10-10,Fall,2015-10-02T07:00Z +Keep,0,2015,October,40,3,0,1,1,0,0,BB,AUT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,74,1,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Keep,114,2015,October,40,3,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.3,0,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,1,2015,October,40,3,0,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,90,0,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,5,2015,October,40,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,1,2015,October,40,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient,110,1,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,87,2015,October,40,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,4,2015,October,40,3,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,58,0,1,Canceled,2015-09-30,Fall,2015-10-03T07:00Z +Cancel,4,2015,October,40,3,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,58,0,1,Canceled,2015-09-30,Fall,2015-10-03T07:00Z +Keep,192,2015,October,40,3,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,38.07,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,192,2015,October,40,3,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,40.07,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,192,2015,October,40,3,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,38.07,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,39,2015,October,40,3,2,2,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,81.6,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,25,2015,October,40,3,2,2,1,0,0,BB,OMN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,59.29,0,1,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Cancel,192,2015,October,40,3,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.07,0,0,Canceled,2015-09-01,Fall,2015-10-03T07:00Z +Keep,192,2015,October,40,3,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,40.07,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,53,2015,October,40,3,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Cancel,21,2015,October,40,3,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2015-09-18,Fall,2015-10-03T07:00Z +Keep,19,2015,October,40,3,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.14,0,1,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,10,2015,October,40,3,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116,1,1,Check-Out,2015-10-06,Fall,2015-10-03T07:00Z +Keep,61,2015,October,40,3,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2015-10-06,Fall,2015-10-03T07:00Z +Cancel,72,2015,October,40,3,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Canceled,2015-09-14,Fall,2015-10-03T07:00Z +Keep,70,2015,October,40,3,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,40.96,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,46,2015,October,40,3,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,44.8,1,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,38,2015,October,40,3,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,93.43,1,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,53,2015,October,40,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,47.33,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,51,2015,October,40,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,83.05,0,2,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,124,2015,October,40,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,3,No Deposit , 240, NULL,0,Transient,87.43,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Cancel,361,2015,October,40,3,2,5,26,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-03T07:00Z +Keep,25,2015,October,40,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68.16,0,1,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Cancel,49,2015,October,40,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2015-08-20,Fall,2015-10-03T07:00Z +Keep,53,2015,October,40,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,14,2015,October,40,3,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,136.71,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,163,2015,October,40,3,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,51.3,0,1,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,2,2015,October,41,4,1,0,2,0,0,HB,DEU,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 110, NULL,0,Transient,92.6,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,1,2015,October,41,4,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,47,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,4,2,0,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,56,0,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Cancel,338,2015,October,41,4,2,0,55,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,4,2,0,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,56,0,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Cancel,34,2015,October,41,4,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2015-09-11,Fall,2015-10-04T07:00Z +Cancel,34,2015,October,41,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,122,0,0,Canceled,2015-09-21,Fall,2015-10-04T07:00Z +Keep,81,2015,October,41,4,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 175, NULL,0,Transient,63.66,0,0,Check-Out,2015-10-11,Fall,2015-10-04T07:00Z +Keep,26,2015,October,41,4,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.43,0,1,Check-Out,2015-10-11,Fall,2015-10-04T07:00Z +Keep,75,2015,October,41,4,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,60.4,0,1,Check-Out,2015-10-14,Fall,2015-10-04T07:00Z +Keep,54,2015,October,41,4,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,78.2,0,0,Check-Out,2015-10-15,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Cancel,170,2015,October,41,4,4,8,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,44.5,0,0,Canceled,2015-07-17,Fall,2015-10-04T07:00Z +Keep,69,2015,October,41,4,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,41.25,0,1,Check-Out,2015-10-09,Fall,2015-10-04T07:00Z +Keep,69,2015,October,41,4,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,40.05,0,1,Check-Out,2015-10-09,Fall,2015-10-04T07:00Z +Cancel,38,2015,October,41,4,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,117,0,1,Canceled,2015-08-31,Fall,2015-10-04T07:00Z +Keep,90,2015,October,41,4,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107.43,0,0,Check-Out,2015-10-18,Fall,2015-10-04T07:00Z +Keep,111,2015,October,41,4,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.67,0,0,Check-Out,2015-10-10,Fall,2015-10-04T07:00Z +Keep,18,2015,October,41,4,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.47,0,1,Check-Out,2015-10-10,Fall,2015-10-04T07:00Z +Keep,7,2015,October,41,5,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60.3,1,1,Check-Out,2015-10-06,Fall,2015-10-05T07:00Z +Keep,1,2015,October,41,5,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Group,61.5,0,1,Check-Out,2015-10-07,Fall,2015-10-05T07:00Z +Keep,69,2015,October,41,5,1,1,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,88,0,1,Check-Out,2015-10-07,Fall,2015-10-05T07:00Z +Cancel,7,2015,October,41,5,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 110,0,Transient,56.95,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Keep,10,2015,October,41,5,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,67,0,1,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,55,2015,October,41,5,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 2, NULL,0,Contract,54.5,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,10,2015,October,41,5,1,3,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,67,0,2,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,52,2015,October,41,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,54.72,0,0,Check-Out,2015-10-12,Fall,2015-10-05T07:00Z +Keep,14,2015,October,41,5,2,5,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,83.6,0,2,Check-Out,2015-10-12,Fall,2015-10-05T07:00Z +Keep,17,2015,October,41,5,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73,1,1,Check-Out,2015-10-12,Fall,2015-10-05T07:00Z +Cancel,74,2015,October,41,5,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-08-11,Fall,2015-10-05T07:00Z +Cancel,74,2015,October,41,5,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-08-11,Fall,2015-10-05T07:00Z +Cancel,74,2015,October,41,5,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-08-11,Fall,2015-10-05T07:00Z +Cancel,74,2015,October,41,5,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-08-11,Fall,2015-10-05T07:00Z +Keep,207,2015,October,41,5,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,65.45,0,0,Check-Out,2015-10-15,Fall,2015-10-05T07:00Z +Cancel,102,2015,October,41,5,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.67,0,0,Canceled,2015-06-26,Fall,2015-10-05T07:00Z +Cancel,1,2015,October,41,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Canceled,2015-10-05,Fall,2015-10-06T07:00Z +Cancel,1,2015,October,41,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Canceled,2015-10-05,Fall,2015-10-06T07:00Z +Cancel,1,2015,October,41,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Canceled,2015-10-05,Fall,2015-10-06T07:00Z +Keep,0,2015,October,41,6,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-10-06,Fall,2015-10-06T07:00Z +Cancel,43,2015,October,41,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2015-09-04,Fall,2015-10-06T07:00Z +Keep,70,2015,October,41,6,0,1,2,0,0,BB,MEX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.12,0,1,Check-Out,2015-10-07,Fall,2015-10-06T07:00Z +Keep,0,2015,October,41,6,0,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2015-10-08,Fall,2015-10-06T07:00Z +Cancel,91,2015,October,41,6,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2015-08-21,Fall,2015-10-06T07:00Z +Cancel,1,2015,October,41,6,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Canceled,2015-10-05,Fall,2015-10-06T07:00Z +Keep,1,2015,October,41,6,0,3,0,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,1,No Deposit , NULL, 174,0,Transient-Party,0,0,0,Check-Out,2015-10-06,Fall,2015-10-06T07:00Z +Keep,43,2015,October,41,6,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.8,0,1,Check-Out,2015-10-10,Fall,2015-10-06T07:00Z +Keep,3,2015,October,41,6,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,87,0,0,Check-Out,2015-10-08,Fall,2015-10-06T07:00Z +Keep,31,2015,October,41,6,1,5,2,2,0,BB,ZAF,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,96.67,1,0,Check-Out,2015-10-12,Fall,2015-10-06T07:00Z +Cancel,328,2015,October,41,6,2,5,20,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-09-03,Fall,2015-10-06T07:00Z +Cancel,328,2015,October,41,6,2,5,6,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-06T07:00Z +Keep,87,2015,October,41,6,2,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Cancel,328,2015,October,41,6,2,5,5,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-06T07:00Z +Keep,84,2015,October,41,6,2,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98.4,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,123,2015,October,41,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,43.3,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Cancel,4,2015,October,41,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,3,Canceled,2015-10-05,Fall,2015-10-07T07:00Z +Keep,13,2015,October,41,7,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,58,0,0,Check-Out,2015-10-08,Fall,2015-10-07T07:00Z +Cancel,4,2015,October,41,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,3,Canceled,2015-10-05,Fall,2015-10-07T07:00Z +Cancel,4,2015,October,41,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,3,Canceled,2015-10-05,Fall,2015-10-07T07:00Z +Cancel,4,2015,October,41,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,3,Canceled,2015-10-05,Fall,2015-10-07T07:00Z +Keep,33,2015,October,41,7,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.3,1,2,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,13,2015,October,41,7,0,2,2,0,0,FB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,21,2015,October,41,7,0,2,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,47,0,1,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,0,2015,October,41,7,0,1,3,0,0,BB,AGO,Complementary,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-10-08,Fall,2015-10-07T07:00Z +Keep,2,2015,October,41,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,67,0,1,Check-Out,2015-10-08,Fall,2015-10-07T07:00Z +Keep,6,2015,October,41,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,49.01,0,0,Check-Out,2015-10-08,Fall,2015-10-07T07:00Z +Keep,78,2015,October,41,7,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,64.29,1,0,Check-Out,2015-10-11,Fall,2015-10-07T07:00Z +Keep,21,2015,October,41,7,0,2,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,47,0,1,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,175,2015,October,41,7,2,5,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient,41.6,1,0,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Keep,158,2015,October,41,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient-Party,55.43,0,1,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Keep,11,2015,October,41,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,48.74,0,0,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Keep,158,2015,October,41,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient-Party,55.43,0,1,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Cancel,16,2015,October,41,7,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.86,0,1,Canceled,2015-09-25,Fall,2015-10-07T07:00Z +Keep,174,2015,October,41,7,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,67,0,1,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Keep,174,2015,October,41,7,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,68.43,0,1,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Cancel,21,2015,October,41,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,1,Canceled,2015-10-08,Fall,2015-10-08T07:00Z +Keep,13,2015,October,41,8,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,Direct, 0,0,0,A,G,0,No Deposit , 126, NULL,0,Transient,40,0,0,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,67,0,1,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,1,1,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Cancel,22,2015,October,41,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,47,0,1,Canceled,2015-10-08,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,87,1,1,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,33,2015,October,41,8,0,3,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,67.5,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,73.67,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,44,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Contract,50,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,77,2015,October,41,8,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Contract,50,0,1,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,10,2015,October,41,8,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,73.66,0,2,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,44,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Contract,50,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,76,2015,October,41,8,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,56,1,1,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,71,2015,October,41,8,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,48,1,1,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,9,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,33,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,67,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,77,2015,October,41,8,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Contract,71,1,2,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,59,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,50,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,77,2015,October,41,8,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,50,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Cancel,77,2015,October,41,8,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,66,0,2,No-Show,2015-10-08,Fall,2015-10-08T07:00Z +Keep,3,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,71,2015,October,41,8,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,71,1,2,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,29,2015,October,41,8,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2015-10-12,Fall,2015-10-08T07:00Z +Keep,10,2015,October,41,8,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,41.37,0,1,Check-Out,2015-10-15,Fall,2015-10-08T07:00Z +Cancel,330,2015,October,41,8,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,0,0,0,Canceled,2015-01-02,Fall,2015-10-08T07:00Z +Keep,22,2015,October,41,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,53.37,0,1,Check-Out,2015-10-15,Fall,2015-10-08T07:00Z +Keep,132,2015,October,41,8,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,44.5,0,0,Check-Out,2015-10-12,Fall,2015-10-08T07:00Z +Keep,10,2015,October,41,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,48.57,0,1,Check-Out,2015-10-15,Fall,2015-10-08T07:00Z +Keep,94,2015,October,41,8,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,77.43,0,0,Check-Out,2015-10-15,Fall,2015-10-08T07:00Z +Cancel,94,2015,October,41,8,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,123.56,0,1,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Keep,128,2015,October,41,8,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 314, NULL,0,Transient,62.47,0,0,Check-Out,2015-10-20,Fall,2015-10-08T07:00Z +Keep,1,2015,October,41,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Keep,16,2015,October,41,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient-Party,48,0,0,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Keep,1,2015,October,41,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,67,0,1,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Cancel,134,2015,October,41,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2015-08-29,Fall,2015-10-09T07:00Z +Keep,77,2015,October,41,9,0,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,56,1,2,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,77,2015,October,41,9,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,42,0,1,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,34,2015,October,41,9,0,2,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,67.5,0,1,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,4,2015,October,41,9,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Contract,50,0,0,Canceled,2015-07-23,Fall,2015-10-09T07:00Z +Cancel,77,2015,October,41,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,50,0,1,Canceled,2015-10-08,Fall,2015-10-09T07:00Z +Keep,77,2015,October,41,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,56,1,1,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Keep,63,2015,October,41,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.12,0,2,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Keep,8,2015,October,41,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,104.67,1,1,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,4,2015,October,41,9,1,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,113.33,0,1,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,77,2015,October,41,9,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Contract,50,1,2,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,67,2015,October,41,9,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Contract,50,0,2,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,21,2015,October,41,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,0,1,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,13,2015,October,41,9,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,72.8,0,1,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Keep,63,2015,October,41,9,1,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,54.02,0,3,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,9,2015,October,41,9,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,63.33,0,1,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,3,2015,October,41,9,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83.33,0,2,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Keep,63,2015,October,41,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.12,0,2,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,14,2015,October,41,9,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,78.8,1,0,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,8,2015,October,41,9,1,2,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,55.73,0,0,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Keep,25,2015,October,41,9,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-12,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Cancel,78,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 134, NULL,0,Transient,92,0,0,Canceled,2015-08-14,Fall,2015-10-09T07:00Z +Keep,22,2015,October,41,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83,1,2,Check-Out,2015-10-13,Fall,2015-10-09T07:00Z +Keep,0,2015,October,41,9,2,2,2,0,0,BB,ISR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2015-10-13,Fall,2015-10-09T07:00Z +Keep,22,2015,October,41,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,0,2,Check-Out,2015-10-13,Fall,2015-10-09T07:00Z +Keep,10,2015,October,41,9,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.5,0,2,Check-Out,2015-10-13,Fall,2015-10-09T07:00Z +Keep,4,2015,October,41,9,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70.4,0,1,Check-Out,2015-10-14,Fall,2015-10-09T07:00Z +Keep,7,2015,October,41,9,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,73.68,1,0,Check-Out,2015-10-14,Fall,2015-10-09T07:00Z +Keep,350,2015,October,41,9,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,82,0,0,Check-Out,2015-10-09,Fall,2015-10-09T07:00Z +Cancel,2,2015,October,41,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Canceled,2015-10-09,Fall,2015-10-10T07:00Z +Keep,11,2015,October,41,10,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,11,2015,October,41,10,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,5,2015,October,41,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,60.3,0,1,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Cancel,35,2015,October,41,10,0,1,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient,67.5,0,0,No-Show,2015-10-10,Fall,2015-10-10T07:00Z +Keep,12,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61.5,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,4,2015,October,41,10,1,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,107.5,1,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,5,2015,October,41,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,101.5,0,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,12,2015,October,41,10,1,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,76.35,1,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Cancel,21,2015,October,41,10,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,49.2,0,1,Canceled,2015-09-28,Fall,2015-10-10T07:00Z +Keep,11,2015,October,41,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,H,1,No Deposit , 240, NULL,0,Transient,82.35,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,4,2015,October,41,10,1,1,2,2,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,111.5,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,5,2015,October,41,10,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,67.5,1,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,19,2015,October,41,10,1,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,117,0,3,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,5,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.5,1,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,4,2015,October,41,10,1,1,2,1,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,102.5,1,3,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,4,2015,October,41,10,1,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,101.5,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,5,2015,October,41,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,101.5,0,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,12,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,61.35,1,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,16,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61.35,1,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Cancel,21,2015,October,41,10,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,49.2,0,1,Canceled,2015-09-28,Fall,2015-10-10T07:00Z +Keep,0,2015,October,41,10,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,90,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,368,2015,October,41,10,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,4,0,0,Canceled,2015-05-20,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-07-08,Fall,2015-10-10T07:00Z +Cancel,143,2015,October,41,10,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-05-20,Fall,2015-10-10T07:00Z +Keep,78,2015,October,41,10,3,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,79.22,0,1,Check-Out,2015-10-19,Fall,2015-10-10T07:00Z +Keep,78,2015,October,41,10,6,15,2,0,0,HB,BEL,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,106,0,1,Check-Out,2015-10-31,Fall,2015-10-10T07:00Z +Keep,2,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,2,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,2,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,39,2015,October,42,11,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,46.5,0,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Cancel,46,2015,October,42,11,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Canceled,2015-09-21,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,9,2015,October,42,11,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,6,2015,October,42,11,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, 113,0,Transient,82,1,1,Check-Out,2015-10-13,Fall,2015-10-11T07:00Z +Keep,5,2015,October,42,11,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2015-10-13,Fall,2015-10-11T07:00Z +Keep,2,2015,October,42,11,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,37.6,0,0,Check-Out,2015-10-13,Fall,2015-10-11T07:00Z +Keep,1,2015,October,42,11,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.4,1,0,Check-Out,2015-10-13,Fall,2015-10-11T07:00Z +Cancel,99,2015,October,42,11,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 251, NULL,0,Transient,67,0,0,Canceled,2015-09-28,Fall,2015-10-11T07:00Z +Keep,1,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.4,1,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Cancel,87,2015,October,42,11,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,0,Canceled,2015-09-11,Fall,2015-10-11T07:00Z +Cancel,12,2015,October,42,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Canceled,2015-09-30,Fall,2015-10-11T07:00Z +Keep,41,2015,October,42,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-15,Fall,2015-10-11T07:00Z +Cancel,102,2015,October,42,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Canceled,2015-07-31,Fall,2015-10-11T07:00Z +Cancel,87,2015,October,42,11,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,0,Canceled,2015-09-11,Fall,2015-10-11T07:00Z +Keep,83,2015,October,42,11,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.52,0,2,Check-Out,2015-10-16,Fall,2015-10-11T07:00Z +Keep,13,2015,October,42,11,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,58.24,0,0,Check-Out,2015-10-16,Fall,2015-10-11T07:00Z +Keep,5,2015,October,42,11,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,69.85,0,1,Check-Out,2015-10-18,Fall,2015-10-11T07:00Z +Keep,5,2015,October,42,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,92.71,0,0,Check-Out,2015-10-18,Fall,2015-10-11T07:00Z +Keep,5,2015,October,42,11,4,5,1,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 174,0,Transient-Party,0,0,0,Check-Out,2015-10-11,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,12,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,A,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-10-12,Fall,2015-10-12T07:00Z +Keep,0,2015,October,42,12,0,0,0,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 174,0,Transient,0,0,0,Check-Out,2015-10-12,Fall,2015-10-12T07:00Z +Keep,13,2015,October,42,12,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,48,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,13,2015,October,42,12,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,53,0,1,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,20,2015,October,42,12,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,48,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,0,2015,October,42,12,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,37,0,0,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,2,2015,October,42,12,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,4,2015,October,42,12,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,48,0,0,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,6,2015,October,42,12,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,61.28,0,1,Check-Out,2015-10-18,Fall,2015-10-12T07:00Z +Cancel,334,2015,October,42,12,2,5,10,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-12T07:00Z +Cancel,334,2015,October,42,12,2,5,20,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-12T07:00Z +Cancel,334,2015,October,42,12,2,5,5,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,0,0,0,Canceled,2015-01-02,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,FRA,Groups,Direct, 0,0,0,E,F,0,No Deposit , 273, NULL,0,Transient-Party,79,0,0,Check-Out,2015-10-12,Fall,2015-10-12T07:00Z +Keep,19,2015,October,42,12,3,5,2,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 147, NULL,0,Transient,74.28,0,0,Check-Out,2015-10-20,Fall,2015-10-12T07:00Z +Keep,1,2015,October,42,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,1,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,1,2015,October,42,13,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,13,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,17,2015,October,42,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,8,0,1,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,13,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,1,Check-Out,2015-10-15,Fall,2015-10-13T07:00Z +Cancel,21,2015,October,42,13,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2015-09-30,Fall,2015-10-13T07:00Z +Keep,56,2015,October,42,13,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,107.43,0,0,Check-Out,2015-10-20,Fall,2015-10-13T07:00Z +Keep,73,2015,October,42,13,2,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,73.38,0,2,Check-Out,2015-10-21,Fall,2015-10-13T07:00Z +Keep,32,2015,October,42,14,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,117,1,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,1,2015,October,42,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient-Party,37.6,1,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,2,2015,October,42,14,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.3,1,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,October,42,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,1,2015,October,42,14,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient-Party,37.6,0,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,October,42,14,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,2,2015,October,42,14,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.3,0,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,106,2015,October,42,14,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,64.5,0,1,Check-Out,2015-10-22,Fall,2015-10-14T07:00Z +Keep,7,2015,October,42,15,0,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,3,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2015-10-15,Fall,2015-10-15T07:00Z +Keep,7,2015,October,42,15,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,43,1,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,27,2015,October,42,15,1,3,2,1,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,111.5,0,1,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,150,2015,October,42,15,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,33.3,0,0,Check-Out,2015-10-21,Fall,2015-10-15T07:00Z +Keep,153,2015,October,42,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,0,0,3,Check-Out,2015-10-16,Fall,2015-10-16T07:00Z +Keep,153,2015,October,42,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,0,0,3,Check-Out,2015-10-16,Fall,2015-10-16T07:00Z +Keep,153,2015,October,42,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,0,0,3,Check-Out,2015-10-16,Fall,2015-10-16T07:00Z +Keep,0,2015,October,42,16,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73,1,0,Check-Out,2015-10-17,Fall,2015-10-16T07:00Z +Keep,8,2015,October,42,16,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-17,Fall,2015-10-16T07:00Z +Keep,1,2015,October,42,16,0,1,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient,0,0,3,Check-Out,2015-10-17,Fall,2015-10-16T07:00Z +Keep,8,2015,October,42,16,0,2,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,1,Check-Out,2015-10-18,Fall,2015-10-16T07:00Z +Keep,130,2015,October,42,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,98.4,1,0,Check-Out,2015-10-18,Fall,2015-10-16T07:00Z +Keep,88,2015,October,42,16,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,1,2,Check-Out,2015-10-19,Fall,2015-10-16T07:00Z +Keep,88,2015,October,42,16,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2015-10-19,Fall,2015-10-16T07:00Z +Keep,0,2015,October,42,16,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.83,1,0,Check-Out,2015-10-20,Fall,2015-10-16T07:00Z +Keep,25,2015,October,42,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 314, NULL,0,Transient,68.57,0,0,Check-Out,2015-10-23,Fall,2015-10-16T07:00Z +Keep,2,2015,October,42,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2015-10-18,Fall,2015-10-17T07:00Z +Cancel,9,2015,October,42,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.5,0,1,Canceled,2015-10-14,Fall,2015-10-17T07:00Z +Keep,136,2015,October,42,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.77,0,0,Check-Out,2015-10-24,Fall,2015-10-17T07:00Z +Keep,95,2015,October,42,17,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.56,0,2,Check-Out,2015-10-25,Fall,2015-10-17T07:00Z +Cancel,50,2015,October,43,18,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59.4,0,1,Canceled,2015-09-22,Fall,2015-10-18T07:00Z +Keep,9,2015,October,43,18,2,2,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,108,0,1,Check-Out,2015-10-22,Fall,2015-10-18T07:00Z +Cancel,37,2015,October,43,18,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,56,0,3,Canceled,2015-09-23,Fall,2015-10-18T07:00Z +Cancel,37,2015,October,43,18,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,3,Canceled,2015-09-23,Fall,2015-10-18T07:00Z +Cancel,73,2015,October,43,18,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,3,Canceled,2015-10-14,Fall,2015-10-18T07:00Z +Keep,17,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Transient,42.5,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,74,2015,October,43,18,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,50.05,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Cancel,92,2015,October,43,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,86.5,0,0,Canceled,2015-07-22,Fall,2015-10-18T07:00Z +Keep,47,2015,October,43,18,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,67.92,0,1,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,41,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 243, NULL,0,Contract,43.93,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Cancel,72,2015,October,43,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45,0,2,Canceled,2015-09-07,Fall,2015-10-18T07:00Z +Cancel,82,2015,October,43,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,55.14,0,2,Canceled,2015-10-08,Fall,2015-10-18T07:00Z +Keep,86,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,38.25,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,68,2015,October,43,18,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-10-28,Fall,2015-10-18T07:00Z +Keep,80,2015,October,43,18,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 147, NULL,0,Transient,81.34,0,0,Check-Out,2015-10-27,Fall,2015-10-18T07:00Z +Cancel,119,2015,October,43,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Canceled,2015-07-06,Fall,2015-10-19T07:00Z +Cancel,119,2015,October,43,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Canceled,2015-07-06,Fall,2015-10-19T07:00Z +Keep,5,2015,October,43,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,37,0,0,Check-Out,2015-10-20,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,19,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,7,2015,October,43,19,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,7,2015,October,43,19,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,68.4,0,0,Check-Out,2015-10-20,Fall,2015-10-19T07:00Z +Keep,7,2015,October,43,19,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,39,0,0,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,10,2015,October,43,19,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,34,2015,October,43,19,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,10,2015,October,43,19,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,73,2015,October,43,19,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,40.23,0,1,Check-Out,2015-10-23,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,5,2015,October,43,19,1,4,1,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,58.4,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Cancel,33,2015,October,43,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Canceled,2015-10-09,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,124,2015,October,43,19,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,57,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,3,2015,October,43,19,1,4,1,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58.4,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,86,2015,October,43,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,79.63,0,0,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,69,2015,October,43,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,37.56,0,0,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,75,2015,October,43,19,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,36.9,0,1,Check-Out,2015-10-27,Fall,2015-10-19T07:00Z +Keep,118,2015,October,43,19,3,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,70,0,1,Check-Out,2015-10-30,Fall,2015-10-19T07:00Z +Cancel,125,2015,October,43,19,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,62,0,0,Canceled,2015-06-23,Fall,2015-10-19T07:00Z +Keep,60,2015,October,43,19,5,12,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,67.56,0,0,Check-Out,2015-11-05,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,20,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,20,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,66,0,0,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,99,2015,October,43,20,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,75,0,1,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,12,2015,October,43,20,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,47,0,0,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,75,2015,October,43,20,0,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Contract,67.15,0,1,Check-Out,2015-10-25,Fall,2015-10-20T07:00Z +Keep,22,2015,October,43,20,0,5,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 171, NULL,0,Transient,88.67,0,0,Check-Out,2015-10-25,Fall,2015-10-20T07:00Z +Cancel,106,2015,October,43,20,0,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,95,0,2,Canceled,2015-10-01,Fall,2015-10-20T07:00Z +Keep,40,2015,October,43,20,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,113.33,0,1,Check-Out,2015-10-27,Fall,2015-10-20T07:00Z +Keep,108,2015,October,43,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,36,0,1,Check-Out,2015-10-27,Fall,2015-10-20T07:00Z +Keep,75,2015,October,43,20,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,54.4,0,0,Check-Out,2015-10-29,Fall,2015-10-20T07:00Z +Keep,75,2015,October,43,20,2,8,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-10-30,Fall,2015-10-20T07:00Z +Cancel,197,2015,October,43,20,2,9,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,2,Canceled,2015-04-10,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,21,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-10-21,Fall,2015-10-21T07:00Z +Keep,121,2015,October,43,21,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-10-21,Fall,2015-10-21T07:00Z +Cancel,1,2015,October,43,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,37,0,0,Canceled,2015-10-20,Fall,2015-10-21T07:00Z +Cancel,19,2015,October,43,21,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,8,0,0,Canceled,2015-10-02,Fall,2015-10-21T07:00Z +Cancel,28,2015,October,43,21,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Canceled,2015-10-02,Fall,2015-10-21T07:00Z +Cancel,92,2015,October,43,21,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2015-10-19,Fall,2015-10-21T07:00Z +Cancel,28,2015,October,43,21,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Canceled,2015-10-02,Fall,2015-10-21T07:00Z +Keep,19,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,28,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Cancel,19,2015,October,43,21,0,2,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Canceled,2015-10-02,Fall,2015-10-21T07:00Z +Keep,83,2015,October,43,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,34.65,0,2,Check-Out,2015-10-24,Fall,2015-10-21T07:00Z +Keep,40,2015,October,43,21,0,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,1,3,Check-Out,2015-10-24,Fall,2015-10-21T07:00Z +Keep,83,2015,October,43,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.98,1,2,Check-Out,2015-10-24,Fall,2015-10-21T07:00Z +Keep,54,2015,October,43,21,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,40.05,0,0,Check-Out,2015-10-25,Fall,2015-10-21T07:00Z +Keep,86,2015,October,43,21,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61,1,2,Check-Out,2015-10-25,Fall,2015-10-21T07:00Z +Cancel,145,2015,October,43,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,0,Canceled,2015-08-20,Fall,2015-10-21T07:00Z +Cancel,120,2015,October,43,21,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,34.65,0,1,Canceled,2015-06-25,Fall,2015-10-21T07:00Z +Cancel,118,2015,October,43,21,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,45.55,0,2,Canceled,2015-10-06,Fall,2015-10-21T07:00Z +Cancel,107,2015,October,43,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Canceled,2015-07-10,Fall,2015-10-21T07:00Z +Keep,34,2015,October,43,21,2,5,2,0,0,BB,LUX,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,59.4,0,0,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Keep,48,2015,October,43,21,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,86,0,3,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Keep,92,2015,October,43,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,66.43,0,1,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Keep,160,2015,October,43,21,2,5,1,0,0,BB,FIN,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Keep,21,2015,October,43,21,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,112.29,0,1,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Cancel,107,2015,October,43,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Canceled,2015-07-10,Fall,2015-10-21T07:00Z +Keep,21,2015,October,43,21,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,1,2,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Cancel,30,2015,October,43,21,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,59.4,0,0,Canceled,2015-10-05,Fall,2015-10-21T07:00Z +Keep,92,2015,October,43,22,1,3,2,0,0,BB,CYM,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,40.5,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,61.6,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,36,2015,October,43,22,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 2, NULL,0,Contract,42.5,0,0,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,82,1,2,Check-Out,2015-10-27,Fall,2015-10-22T07:00Z +Keep,47,2015,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 177, NULL,0,Transient,81,0,0,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient-Party,60,1,2,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 243, NULL,0,Transient,43.93,0,0,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,0,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Transient,42.5,0,1,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Cancel,3,2015,October,43,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,36,0,0,No-Show,2015-10-22,Fall,2015-10-22T07:00Z +Keep,133,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,60,1,1,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Cancel,122,2015,October,43,22,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,2,Canceled,2015-10-20,Fall,2015-10-22T07:00Z +Keep,122,2015,October,43,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,55,2,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,92,2015,October,43,22,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient-Party,40.5,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Cancel,64,2015,October,43,22,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Canceled,2015-08-26,Fall,2015-10-22T07:00Z +Keep,120,2015,October,43,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,40.5,0,0,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,122,2015,October,43,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,122,2015,October,43,22,1,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,122,2015,October,43,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,122,2015,October,43,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,19,2015,October,43,22,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.5,0,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,1,3,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,56.4,1,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient-Party,42.5,0,2,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,55.43,0,0,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,52,2015,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 26, NULL,0,Contract,70.31,0,0,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,61,2015,October,43,22,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,104.67,0,0,Check-Out,2015-10-25,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,76,0,2,Check-Out,2015-10-25,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,76,0,2,Check-Out,2015-10-25,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,76,0,2,Check-Out,2015-10-25,Fall,2015-10-22T07:00Z +Cancel,29,2015,October,43,22,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, 317,0,Transient,56,0,0,Canceled,2015-10-08,Fall,2015-10-22T07:00Z +Cancel,22,2015,October,43,22,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,66,0,0,No-Show,2015-10-22,Fall,2015-10-22T07:00Z +Keep,24,2015,October,43,22,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient-Party,82,1,2,Check-Out,2015-10-25,Fall,2015-10-22T07:00Z +Keep,29,2015,October,43,22,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, 317,0,Transient-Party,56,0,0,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,4,2015,October,43,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2015-10-24,Fall,2015-10-23T07:00Z +Keep,10,2015,October,43,23,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2015-10-24,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,73,1,1,Check-Out,2015-10-24,Fall,2015-10-23T07:00Z +Keep,1,2015,October,43,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,1,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,30,2015,October,43,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, 317,0,Transient-Party,56,0,0,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,29,2015,October,43,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,56,0,2,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,11,2015,October,43,23,0,2,1,0,0,BB,ESP,Complementary,TA/TO, 0,0,0,F,G,0,No Deposit , 253, NULL,0,Transient,0,0,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,29,2015,October,43,23,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,56,0,2,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,3,2015,October,43,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,29,2015,October,43,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,56,0,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,23,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,1,0,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Keep,93,2015,October,43,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,34.65,0,1,Check-Out,2015-10-27,Fall,2015-10-23T07:00Z +Keep,39,2015,October,43,23,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-10-27,Fall,2015-10-23T07:00Z +Keep,93,2015,October,43,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,34.65,0,1,Check-Out,2015-10-27,Fall,2015-10-23T07:00Z +Keep,119,2015,October,43,23,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 2, NULL,0,Contract,44.5,0,1,Check-Out,2015-10-28,Fall,2015-10-23T07:00Z +Keep,119,2015,October,43,23,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 2, NULL,0,Contract,44.5,0,1,Check-Out,2015-10-28,Fall,2015-10-23T07:00Z +Keep,73,2015,October,43,23,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.92,1,1,Check-Out,2015-10-29,Fall,2015-10-23T07:00Z +Keep,51,2015,October,43,23,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,119.43,1,0,Check-Out,2015-10-30,Fall,2015-10-23T07:00Z +Cancel,165,2015,October,43,23,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Canceled,2015-05-18,Fall,2015-10-23T07:00Z +Cancel,165,2015,October,43,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2015-05-18,Fall,2015-10-23T07:00Z +Keep,27,2015,October,43,23,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2015-10-30,Fall,2015-10-23T07:00Z +Cancel,165,2015,October,43,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Canceled,2015-05-18,Fall,2015-10-23T07:00Z +Cancel,165,2015,October,43,23,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Canceled,2015-05-18,Fall,2015-10-23T07:00Z +Cancel,52,2015,October,43,23,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106,0,2,Canceled,2015-09-02,Fall,2015-10-23T07:00Z +Keep,22,2015,October,43,23,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 2, NULL,0,Transient,99.5,0,0,Check-Out,2015-10-30,Fall,2015-10-23T07:00Z +Keep,72,2015,October,43,23,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,52.51,0,0,Check-Out,2015-11-03,Fall,2015-10-23T07:00Z +Keep,23,2015,October,43,23,4,11,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,49.8,0,0,Check-Out,2015-11-07,Fall,2015-10-23T07:00Z +Keep,13,2015,October,43,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,73,1,0,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,39,2015,October,43,23,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,96,0,0,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,163,2015,October,43,23,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,47,0,1,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Keep,30,2015,October,43,23,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , NULL, 317,0,Transient-Party,56,0,0,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Cancel,7,2015,October,43,23,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,106,0,2,Canceled,2015-10-20,Fall,2015-10-23T07:00Z +Keep,11,2015,October,43,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.3,1,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Cancel,111,2015,October,43,23,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45,0,1,Canceled,2015-07-20,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,53,2015,October,43,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,3,Canceled,2015-09-24,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,53,2015,October,43,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,3,Canceled,2015-09-24,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,99,2015,October,43,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2015-08-26,Fall,2015-10-24T07:00Z +Keep,3,2015,October,43,24,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2015-10-26,Fall,2015-10-24T07:00Z +Cancel,4,2015,October,43,24,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,No-Show,2015-10-24,Fall,2015-10-24T07:00Z +Keep,9,2015,October,43,24,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-27,Fall,2015-10-24T07:00Z +Cancel,9,2015,October,43,24,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,54,0,0,Canceled,2015-10-20,Fall,2015-10-24T07:00Z +Cancel,4,2015,October,43,24,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,No-Show,2015-10-24,Fall,2015-10-24T07:00Z +Keep,50,2015,October,43,24,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,42.05,0,0,Check-Out,2015-10-28,Fall,2015-10-24T07:00Z +Keep,5,2015,October,43,24,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,47,0,0,Check-Out,2015-10-28,Fall,2015-10-24T07:00Z +Keep,98,2015,October,43,24,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,52,0,0,Check-Out,2015-10-29,Fall,2015-10-24T07:00Z +Cancel,110,2015,October,43,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2015-07-07,Fall,2015-10-24T07:00Z +Keep,96,2015,October,43,24,2,4,2,2,0,BB,ZMB,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,96.67,0,3,Check-Out,2015-10-30,Fall,2015-10-24T07:00Z +Cancel,40,2015,October,43,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,2,Canceled,2015-10-03,Fall,2015-10-24T07:00Z +Cancel,40,2015,October,43,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,2,Canceled,2015-10-03,Fall,2015-10-24T07:00Z +Keep,50,2015,October,43,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,42.5,0,1,Check-Out,2015-10-31,Fall,2015-10-24T07:00Z +Keep,120,2015,October,43,24,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,34.56,0,0,Check-Out,2015-11-03,Fall,2015-10-24T07:00Z +Keep,9,2015,October,43,24,4,7,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.82,0,2,Check-Out,2015-11-04,Fall,2015-10-24T07:00Z +Keep,28,2015,October,43,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,66,1,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,47,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Cancel,148,2015,October,43,24,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,39,0,0,Canceled,2015-06-26,Fall,2015-10-24T07:00Z +Keep,1,2015,October,43,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,0,3,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Cancel,16,2015,October,44,25,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2015-10-10,Fall,2015-10-25T07:00Z +Keep,115,2015,October,44,25,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,36,0,2,Check-Out,2015-10-31,Fall,2015-10-25T07:00Z +Keep,62,2015,October,44,25,2,4,1,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Contract,44.8,0,0,Check-Out,2015-10-31,Fall,2015-10-25T07:00Z +Keep,68,2015,October,44,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,69.93,0,0,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,62,2015,October,44,25,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,47,0,2,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,9,2015,October,44,25,3,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,75,0,0,Check-Out,2015-11-02,Fall,2015-10-25T07:00Z +Keep,35,2015,October,44,26,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2015-10-26,Fall,2015-10-26T07:00Z +Keep,1,2015,October,44,26,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Cancel,51,2015,October,44,26,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 8, NULL,0,Contract,48.6,0,1,Canceled,2015-10-14,Fall,2015-10-26T07:00Z +Cancel,25,2015,October,44,26,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,48.6,0,1,Canceled,2015-10-14,Fall,2015-10-26T07:00Z +Keep,60,2015,October,44,26,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2015-10-31,Fall,2015-10-26T07:00Z +Cancel,27,2015,October,44,26,5,14,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 281,0,Transient,36,0,3,Canceled,2015-10-26,Fall,2015-10-26T07:00Z +Keep,24,2015,October,44,26,7,15,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,G,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-10-26T07:00Z +Cancel,114,2015,October,44,26,7,16,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 281, NULL,0,Contract,36,0,0,Canceled,2015-10-10,Fall,2015-10-26T07:00Z +Cancel,114,2015,October,44,26,7,16,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 281, NULL,0,Contract,36,0,0,Canceled,2015-10-10,Fall,2015-10-26T07:00Z +Cancel,114,2015,October,44,26,7,16,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 281, NULL,0,Contract,36,0,0,Canceled,2015-10-10,Fall,2015-10-26T07:00Z +Cancel,114,2015,October,44,26,7,16,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 281, NULL,0,Contract,36,0,0,Canceled,2015-10-10,Fall,2015-10-26T07:00Z +Cancel,114,2015,October,44,26,7,16,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 281, NULL,0,Transient,36,0,0,Canceled,2015-10-10,Fall,2015-10-26T07:00Z +Keep,3,2015,October,44,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Cancel,0,2015,October,44,27,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,No-Show,2015-10-27,Fall,2015-10-27T07:00Z +Keep,3,2015,October,44,27,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.2,1,1,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,10,2015,October,44,27,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,72.5,0,2,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,10,2015,October,44,27,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,72.5,0,2,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,1,2015,October,44,27,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2015-10-30,Fall,2015-10-27T07:00Z +Keep,34,2015,October,44,27,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-31,Fall,2015-10-27T07:00Z +Keep,42,2015,October,44,27,0,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,1,2,Check-Out,2015-10-31,Fall,2015-10-27T07:00Z +Keep,3,2015,October,44,27,2,5,2,0,0,HB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,70.2,0,3,Check-Out,2015-11-03,Fall,2015-10-27T07:00Z +Keep,61,2015,October,44,27,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,49.01,0,1,Check-Out,2015-11-03,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,1,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,2,2015,October,44,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 118,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,19,2015,October,44,28,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,77.4,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,49,2015,October,44,28,2,5,1,0,0,HB,CHE,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,63.76,0,1,Check-Out,2015-11-04,Fall,2015-10-28T07:00Z +Keep,49,2015,October,44,28,2,5,1,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,69.76,1,1,Check-Out,2015-11-04,Fall,2015-10-28T07:00Z +Keep,49,2015,October,44,28,2,5,1,0,0,HB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63.76,0,1,Check-Out,2015-11-04,Fall,2015-10-28T07:00Z +Keep,49,2015,October,44,28,2,5,1,0,0,HB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65.19,0,1,Check-Out,2015-11-04,Fall,2015-10-28T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 59,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,2,2015,October,44,28,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2015-10-30,Fall,2015-10-28T07:00Z +Keep,1,2015,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,1,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,1,2015,October,44,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,1,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,2,2015,October,44,29,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.1,0,1,Check-Out,2015-10-31,Fall,2015-10-29T07:00Z +Keep,2,2015,October,44,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,41.1,1,1,Check-Out,2015-10-31,Fall,2015-10-29T07:00Z +Keep,3,2015,October,44,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Cancel,7,2015,October,44,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient,48,0,0,Canceled,2015-10-26,Fall,2015-10-29T07:00Z +Keep,3,2015,October,44,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,2,2015,October,44,29,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,3,2015,October,44,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,153,2015,October,44,29,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,153,2015,October,44,29,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-02,Fall,2015-10-29T07:00Z +Cancel,63,2015,October,44,29,3,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,56.02,0,0,Canceled,2015-09-29,Fall,2015-10-29T07:00Z +Keep,153,2015,October,44,29,2,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Check-Out,2015-11-03,Fall,2015-10-29T07:00Z +Keep,1,2015,October,44,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,76,1,1,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,2,2015,October,44,30,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,16,2015,October,44,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,1,2015,October,44,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,154,2015,October,44,30,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,154,2015,October,44,30,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,25,2015,October,44,30,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,3,2015,October,44,30,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,42,1,1,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,154,2015,October,44,30,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,13,2015,October,44,30,0,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,76,0,3,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,6,2015,October,44,30,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,1,0,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,1,2015,October,44,30,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-10-30,Fall,2015-10-30T07:00Z +Keep,3,2015,October,44,30,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,1,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,3,2015,October,44,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,72,1,1,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,4,2015,October,44,30,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,11,2015,October,44,30,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,41.45,0,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,11,2015,October,44,30,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,47.45,1,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,154,2015,October,44,30,1,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,4,2015,October,44,30,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.12,0,0,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,45,2015,October,44,30,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,54,0,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,11,2015,October,44,30,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45.66,0,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,7,2015,October,44,30,2,2,2,0,0,BB,CPV,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-03,Fall,2015-10-30T07:00Z +Keep,85,2015,October,44,30,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,37.4,0,1,Check-Out,2015-11-06,Fall,2015-10-30T07:00Z +Keep,4,2015,October,44,30,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,49.74,0,0,Check-Out,2015-11-07,Fall,2015-10-30T07:00Z +Keep,10,2015,October,44,31,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-10-31,Fall,2015-10-31T07:00Z +Keep,12,2015,October,44,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,5,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,CHE,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Canceled,2015-10-29,Fall,2015-10-31T07:00Z +Keep,4,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,4,2015,October,44,31,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,44.5,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,3,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,8,2015,October,44,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-29,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,1,2015,October,44,31,0,1,2,1,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,58,0,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-29,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Keep,4,2015,October,44,31,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,44.5,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,3,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,4,2015,October,44,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,37,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,3,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-30,Fall,2015-10-31T07:00Z +Keep,54,2015,October,44,31,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,38.81,1,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,3,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,1,2015,October,44,31,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,39.2,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-29,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-26,Fall,2015-10-31T07:00Z +Cancel,1,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-31,Fall,2015-10-31T07:00Z +Keep,2,2015,October,44,31,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,88,0,1,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Cancel,74,2015,October,44,31,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,2,Canceled,2015-08-20,Fall,2015-10-31T07:00Z +Keep,2,2015,October,44,31,1,1,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,114,1,1,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Cancel,11,2015,October,44,31,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2015-10-20,Fall,2015-10-31T07:00Z +Keep,12,2015,October,44,31,1,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,1,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,1,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,48,0,0,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Keep,155,2015,October,44,31,1,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,1,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Keep,0,2015,October,44,31,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,69,0,1,Check-Out,2015-11-03,Fall,2015-10-31T07:00Z +Cancel,75,2015,October,44,31,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,71,0,2,Canceled,2015-10-09,Fall,2015-10-31T07:00Z +Cancel,128,2015,October,44,31,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,34.43,0,2,Canceled,2015-10-02,Fall,2015-10-31T07:00Z +Cancel,128,2015,October,44,31,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,34.43,0,2,Canceled,2015-10-02,Fall,2015-10-31T07:00Z +Cancel,51,2015,October,44,31,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.84,0,2,Canceled,2015-09-21,Fall,2015-10-31T07:00Z +Keep,25,2015,October,44,31,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,46.65,1,1,Check-Out,2015-11-06,Fall,2015-10-31T07:00Z +Cancel,81,2015,October,44,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.29,0,1,Canceled,2015-09-11,Fall,2015-10-31T07:00Z +Keep,39,2015,October,44,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,47.6,0,0,Check-Out,2015-11-07,Fall,2015-10-31T07:00Z +Cancel,58,2015,October,44,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,34.97,0,0,Canceled,2015-09-04,Fall,2015-10-31T07:00Z +Keep,5,2015,October,44,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,46.76,0,2,Check-Out,2015-11-07,Fall,2015-10-31T07:00Z +Cancel,33,2015,November,45,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Cancel,1,2015,November,45,1,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,1,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Keep,4,2015,November,45,1,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Keep,5,2015,November,45,1,1,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,55,0,0,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Keep,1,2015,November,45,1,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,44.1,0,1,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Cancel,33,2015,November,45,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Keep,76,2015,November,45,1,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,55.04,0,0,Check-Out,2015-11-06,Fall,2015-11-01T07:00Z +Cancel,171,2015,November,45,1,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,0,Canceled,2015-10-15,Fall,2015-11-01T07:00Z +Keep,146,2015,November,45,1,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,56.16,0,0,Check-Out,2015-11-10,Fall,2015-11-01T07:00Z +Keep,83,2015,November,45,2,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,61.87,0,0,Check-Out,2015-11-07,Fall,2015-11-02T08:00Z +Keep,39,2015,November,45,2,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,24.8,0,1,Check-Out,2015-11-07,Fall,2015-11-02T08:00Z +Keep,24,2015,November,45,2,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,1,Check-Out,2015-11-07,Fall,2015-11-02T08:00Z +Keep,1,2015,November,45,2,1,2,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,48,0,2,Check-Out,2015-11-05,Fall,2015-11-02T08:00Z +Keep,0,2015,November,45,2,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,50.5,0,1,Check-Out,2015-11-08,Fall,2015-11-02T08:00Z +Keep,20,2015,November,45,2,2,5,2,0,1,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 69, NULL,0,Transient,29,0,1,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,20,2015,November,45,2,2,5,2,0,1,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 69, NULL,0,Transient,29,0,1,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,21,2015,November,45,2,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69.43,0,0,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Cancel,31,2015,November,45,2,5,11,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-02T08:00Z +Keep,36,2015,November,45,3,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2015-11-03,Fall,2015-11-03T08:00Z +Keep,5,2015,November,45,3,0,1,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,5,2015,November,45,3,0,1,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2015,November,45,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,1,1,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2015,November,45,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,7,2015,November,45,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,1,1,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2015,November,45,3,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,1,1,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Cancel,6,2015,November,45,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43.2,0,2,Canceled,2015-11-03,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,0,3,2,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-06,Fall,2015-11-03T08:00Z +Keep,6,2015,November,45,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43.2,0,2,Check-Out,2015-11-06,Fall,2015-11-03T08:00Z +Keep,26,2015,November,45,3,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,33.3,0,0,Check-Out,2015-11-07,Fall,2015-11-03T08:00Z +Keep,3,2015,November,45,3,0,4,2,2,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,41.4,0,0,Check-Out,2015-11-07,Fall,2015-11-03T08:00Z +Cancel,26,2015,November,45,3,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,26.1,0,0,Canceled,2015-10-08,Fall,2015-11-03T08:00Z +Keep,49,2015,November,45,3,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 53,0,Transient,35,0,0,Check-Out,2015-11-07,Fall,2015-11-03T08:00Z +Keep,25,2015,November,45,3,0,4,1,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,47.6,0,0,Check-Out,2015-11-07,Fall,2015-11-03T08:00Z +Cancel,26,2015,November,45,3,0,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,22.5,0,0,Canceled,2015-10-08,Fall,2015-11-03T08:00Z +Keep,6,2015,November,45,3,2,5,3,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,48.9,0,1,Check-Out,2015-11-10,Fall,2015-11-03T08:00Z +Keep,8,2015,November,45,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,1,1,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,2,10,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 328, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 326, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 326, 281,0,Transient,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,2,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,6,No Deposit , 328, 281,0,Transient,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 326, 281,0,Transient,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,F,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,1,2015,November,45,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 286,0,Transient,35,0,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Keep,2,2015,November,45,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59,0,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Keep,2,2015,November,45,4,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Keep,0,2015,November,45,4,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,44.1,0,1,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Cancel,50,2015,November,45,4,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,24.79,0,0,Canceled,2015-09-16,Fall,2015-11-04T08:00Z +Cancel,25,2015,November,45,4,2,9,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 281,0,Transient-Party,48,0,0,Canceled,2015-10-22,Fall,2015-11-04T08:00Z +Cancel,25,2015,November,45,4,2,9,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 281,0,Transient-Party,40,0,0,Canceled,2015-10-22,Fall,2015-11-04T08:00Z +Keep,33,2015,November,45,4,2,9,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 185, 281,0,Transient-Party,42.55,0,0,Check-Out,2015-11-15,Fall,2015-11-04T08:00Z +Keep,0,2015,November,45,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 12,0,Transient,35,0,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,0,2015,November,45,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,0,2015,November,45,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,28,2015,November,45,5,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,105.5,0,2,Check-Out,2015-11-11,Fall,2015-11-05T08:00Z +Keep,28,2015,November,45,5,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,111.5,1,2,Check-Out,2015-11-11,Fall,2015-11-05T08:00Z +Keep,34,2015,November,45,5,2,8,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-05T08:00Z +Keep,65,2015,November,45,5,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,54.99,0,0,Check-Out,2015-11-15,Fall,2015-11-05T08:00Z +Keep,34,2015,November,45,5,2,8,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-05T08:00Z +Keep,11,2015,November,45,6,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,44.1,0,1,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,1,2015,November,45,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,4,2015,November,45,6,0,1,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,0,2015,November,45,6,0,1,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,93,0,0,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,15,2015,November,45,6,0,2,2,0,0,BB,ZWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,0,2015,November,45,6,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,0,1,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,38,2015,November,45,6,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,57,0,1,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,0,2015,November,45,6,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 241, NULL,0,Transient,77.3,1,0,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,91,2015,November,45,6,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 156, NULL,0,Contract,24.8,0,2,Check-Out,2015-11-10,Fall,2015-11-06T08:00Z +Cancel,123,2015,November,45,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,62.5,0,0,Canceled,2015-09-28,Fall,2015-11-06T08:00Z +Cancel,123,2015,November,45,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,62.5,0,0,Canceled,2015-09-28,Fall,2015-11-06T08:00Z +Keep,27,2015,November,45,6,2,7,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,35,2015,November,45,6,4,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-11-06T08:00Z +Keep,35,2015,November,45,6,4,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-17,Fall,2015-11-06T08:00Z +Keep,35,2015,November,45,6,4,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-17,Fall,2015-11-06T08:00Z +Keep,35,2015,November,45,6,4,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-17,Fall,2015-11-06T08:00Z +Keep,27,2015,November,45,6,2,7,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,35,2015,November,45,6,2,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,1,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,54,2015,November,45,7,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,0,0,3,Check-Out,2015-11-07,Fall,2015-11-07T08:00Z +Keep,0,2015,November,45,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,1,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,25,2015,November,45,7,0,1,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 321, NULL,0,Transient,30,1,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Cancel,18,2015,November,45,7,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,32.62,0,1,Canceled,2015-10-20,Fall,2015-11-07T08:00Z +Cancel,30,2015,November,45,7,0,1,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,40.5,0,0,Canceled,2015-10-09,Fall,2015-11-07T08:00Z +Keep,0,2015,November,45,7,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Cancel,19,2015,November,45,7,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,32.62,0,1,Canceled,2015-11-04,Fall,2015-11-07T08:00Z +Cancel,30,2015,November,45,7,0,1,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,40.5,0,0,Canceled,2015-10-09,Fall,2015-11-07T08:00Z +Keep,4,2015,November,45,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,0,2015,November,45,7,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,104,1,1,Check-Out,2015-11-09,Fall,2015-11-07T08:00Z +Keep,4,2015,November,45,7,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,94,1,3,Check-Out,2015-11-10,Fall,2015-11-07T08:00Z +Keep,18,2015,November,45,7,2,3,1,0,0,BB,DZA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,62.16,1,0,Check-Out,2015-11-12,Fall,2015-11-07T08:00Z +Keep,18,2015,November,45,7,2,3,1,0,0,BB,DZA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,56.16,0,0,Check-Out,2015-11-12,Fall,2015-11-07T08:00Z +Keep,51,2015,November,45,7,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,60.3,0,2,Check-Out,2015-11-14,Fall,2015-11-07T08:00Z +Keep,54,2015,November,45,7,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,38.47,0,0,Check-Out,2015-11-14,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,241,2015,November,45,7,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2015-07-10,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,172,2015,November,45,7,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Canceled,2015-10-01,Fall,2015-11-07T08:00Z +Keep,171,2015,November,45,7,2,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,32.4,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Canceled,2015-11-04,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,BEL,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,28,2015,November,45,7,2,6,1,0,0,BB,CZE,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , 328, 281,0,Transient-Party,42,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Cancel,36,2015,November,45,7,2,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36.75,1,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,172,2015,November,45,7,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,30,0,1,Canceled,2015-10-01,Fall,2015-11-07T08:00Z +Cancel,241,2015,November,45,7,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2015-07-10,Fall,2015-11-07T08:00Z +Keep,96,2015,November,45,7,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54.88,0,1,Check-Out,2015-11-17,Fall,2015-11-07T08:00Z +Cancel,13,2015,November,46,8,2,0,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2015-10-28,Fall,2015-11-08T08:00Z +Keep,11,2015,November,46,8,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2015-11-10,Fall,2015-11-08T08:00Z +Cancel,15,2015,November,46,8,2,0,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,79,0,2,Canceled,2015-10-26,Fall,2015-11-08T08:00Z +Cancel,193,2015,November,46,8,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,54,0,0,Canceled,2015-10-21,Fall,2015-11-08T08:00Z +Keep,0,2015,November,46,8,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,74,1,0,Check-Out,2015-11-14,Fall,2015-11-08T08:00Z +Keep,10,2015,November,46,8,2,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,71.33,0,0,Check-Out,2015-11-14,Fall,2015-11-08T08:00Z +Keep,17,2015,November,46,8,2,5,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,17,2015,November,46,8,2,5,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,29,2015,November,46,8,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72.29,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Cancel,37,2015,November,46,8,2,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Canceled,2015-10-23,Fall,2015-11-08T08:00Z +Cancel,10,2015,November,46,8,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.92,0,0,Canceled,2015-10-30,Fall,2015-11-08T08:00Z +Keep,89,2015,November,46,9,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,0,0,1,Check-Out,2015-11-09,Fall,2015-11-09T08:00Z +Keep,3,2015,November,46,9,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,3,2015,November,46,9,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,2,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,5,2015,November,46,9,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,0,2015,November,46,9,1,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,108,1,0,Check-Out,2015-11-11,Fall,2015-11-09T08:00Z +Cancel,0,2015,November,46,9,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Canceled,2015-11-09,Fall,2015-11-09T08:00Z +Keep,0,2015,November,46,9,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 334, 281,0,Group,48,0,0,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,11,2015,November,46,9,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2015-11-12,Fall,2015-11-09T08:00Z +Keep,14,2015,November,46,9,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Keep,2,2015,November,46,9,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,77.23,1,1,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Cancel,38,2015,November,46,9,1,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 185, 281,0,Transient-Party,36,0,0,No-Show,2015-11-09,Fall,2015-11-09T08:00Z +Cancel,38,2015,November,46,9,1,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 185, 281,0,Transient-Party,36,0,0,No-Show,2015-11-09,Fall,2015-11-09T08:00Z +Keep,79,2015,November,46,9,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,56.16,0,1,Check-Out,2015-11-15,Fall,2015-11-09T08:00Z +Keep,79,2015,November,46,9,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,56.16,0,1,Check-Out,2015-11-15,Fall,2015-11-09T08:00Z +Keep,49,2015,November,46,9,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Cancel,30,2015,November,46,9,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,4,No Deposit , 326, 281,0,Transient-Party,48,0,0,No-Show,2015-11-09,Fall,2015-11-09T08:00Z +Keep,164,2015,November,46,9,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61.2,1,0,Check-Out,2015-11-16,Fall,2015-11-09T08:00Z +Keep,50,2015,November,46,10,0,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,55.04,0,0,Check-Out,2015-11-12,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,10,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-11-12,Fall,2015-11-10T08:00Z +Cancel,39,2015,November,46,10,0,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-10T08:00Z +Cancel,39,2015,November,46,10,0,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-10T08:00Z +Cancel,39,2015,November,46,10,0,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-10T08:00Z +Cancel,42,2015,November,46,10,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,47.7,0,0,Canceled,2015-10-16,Fall,2015-11-10T08:00Z +Cancel,39,2015,November,46,10,0,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-10T08:00Z +Keep,36,2015,November,46,10,0,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,73.2,1,0,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Keep,6,2015,November,46,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient,37,1,0,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Keep,32,2015,November,46,11,0,4,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,4,No Deposit , 324, 324,0,Transient-Party,40.5,1,0,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Canceled,2015-11-11,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,56,2015,November,46,11,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53,0,1,Canceled,2015-09-22,Fall,2015-11-11T08:00Z +Keep,60,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,166,2015,November,46,11,0,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,27.9,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,0,2015,November,46,11,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,37,2015,November,46,11,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Contract,48,0,2,Canceled,2015-11-05,Fall,2015-11-11T08:00Z +Keep,53,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,85.5,1,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,60,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,61,2015,November,46,11,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , 281, NULL,0,Contract,48,0,0,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Keep,56,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,32,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 281,0,Transient-Party,40,0,0,Canceled,2015-10-22,Fall,2015-11-11T08:00Z +Keep,32,2015,November,46,11,0,4,2,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,4,No Deposit , 324, 324,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Keep,166,2015,November,46,11,0,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,27.9,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Cancel,40,2015,November,46,11,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-11T08:00Z +Keep,56,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,56,2015,November,46,11,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53,0,1,Canceled,2015-09-22,Fall,2015-11-11T08:00Z +Keep,60,2015,November,46,11,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,59,1,1,Check-Out,2015-11-15,Fall,2015-11-11T08:00Z +Cancel,37,2015,November,46,11,0,4,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Contract,63,0,2,Canceled,2015-11-05,Fall,2015-11-11T08:00Z +Keep,39,2015,November,46,11,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.64,0,0,Check-Out,2015-11-16,Fall,2015-11-11T08:00Z +Keep,103,2015,November,46,11,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.59,0,2,Check-Out,2015-11-16,Fall,2015-11-11T08:00Z +Keep,32,2015,November,46,11,0,3,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 324, 324,0,Transient,36,0,0,Check-Out,2015-11-14,Fall,2015-11-11T08:00Z +Cancel,55,2015,November,46,11,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Contract,53,0,0,Canceled,2015-10-22,Fall,2015-11-11T08:00Z +Keep,49,2015,November,46,12,0,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , 324, 324,0,Transient-Party,36,0,0,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Keep,41,2015,November,46,12,0,3,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,E,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,70,2015,November,46,12,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,21,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,21,2015,November,46,12,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Cancel,33,2015,November,46,12,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 324, 324,0,Transient-Party,36,0,0,Canceled,2015-11-09,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,E,4,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Transient-Party,40,0,0,Canceled,2015-10-10,Fall,2015-11-12T08:00Z +Keep,49,2015,November,46,12,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Keep,2,2015,November,46,12,0,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,78,0,1,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Cancel,3,2015,November,46,12,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,40,0,0,Canceled,2015-11-12,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,3,2015,November,46,12,0,3,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,104,1,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,2,2015,November,46,12,0,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,78,0,1,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,21,2015,November,46,12,0,3,2,0,0,BB,NLD,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , 334, 281,0,Transient-Party,40,1,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,82,2015,November,46,12,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.1,1,1,Check-Out,2015-11-16,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Canceled,2015-11-09,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Canceled,2015-10-23,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Canceled,2015-11-09,Fall,2015-11-12T08:00Z +Cancel,41,2015,November,46,12,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Canceled,2015-10-23,Fall,2015-11-12T08:00Z +Keep,33,2015,November,46,12,0,2,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,F,4,No Deposit , 324, 324,0,Transient-Party,36,0,0,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Keep,42,2015,November,46,13,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient-Party,0,0,2,Check-Out,2015-11-13,Fall,2015-11-13T08:00Z +Keep,42,2015,November,46,13,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,0,0,2,Check-Out,2015-11-13,Fall,2015-11-13T08:00Z +Keep,2,2015,November,46,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-14,Fall,2015-11-13T08:00Z +Keep,1,2015,November,46,13,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-11-14,Fall,2015-11-13T08:00Z +Cancel,43,2015,November,46,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2015-11-05,Fall,2015-11-13T08:00Z +Keep,31,2015,November,46,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Keep,3,2015,November,46,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-11-14,Fall,2015-11-13T08:00Z +Cancel,44,2015,November,46,13,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,65.25,0,1,No-Show,2015-11-13,Fall,2015-11-13T08:00Z +Keep,2,2015,November,46,13,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Keep,15,2015,November,46,13,0,2,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Cancel,121,2015,November,46,14,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.93,0,1,Canceled,2015-11-05,Fall,2015-11-14T08:00Z +Cancel,38,2015,November,46,14,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.47,0,2,Canceled,2015-11-03,Fall,2015-11-14T08:00Z +Keep,5,2015,November,46,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,67.99,1,1,Check-Out,2015-11-18,Fall,2015-11-14T08:00Z +Cancel,54,2015,November,46,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62.83,0,1,Canceled,2015-11-14,Fall,2015-11-14T08:00Z +Keep,94,2015,November,46,14,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.1,0,2,Check-Out,2015-11-22,Fall,2015-11-14T08:00Z +Keep,10,2015,November,47,15,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-17,Fall,2015-11-15T08:00Z +Keep,79,2015,November,47,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,72.5,1,0,Check-Out,2015-11-22,Fall,2015-11-15T08:00Z +Cancel,53,2015,November,47,15,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,65.23,0,0,Canceled,2015-09-23,Fall,2015-11-15T08:00Z +Cancel,60,2015,November,47,15,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,45.64,0,2,Canceled,2015-11-05,Fall,2015-11-15T08:00Z +Cancel,125,2015,November,47,15,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,3,Canceled,2015-10-26,Fall,2015-11-15T08:00Z +Keep,74,2015,November,47,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2015-11-16,Fall,2015-11-16T08:00Z +Keep,74,2015,November,47,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2015-11-16,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,16,0,0,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,0,0,1,Check-Out,2015-11-16,Fall,2015-11-16T08:00Z +Cancel,27,2015,November,47,16,1,2,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2015-10-30,Fall,2015-11-16T08:00Z +Cancel,27,2015,November,47,16,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2015-10-30,Fall,2015-11-16T08:00Z +Cancel,27,2015,November,47,16,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2015-10-30,Fall,2015-11-16T08:00Z +Cancel,73,2015,November,47,16,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,47.4,0,1,Canceled,2015-11-02,Fall,2015-11-16T08:00Z +Cancel,80,2015,November,47,16,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,3,Canceled,2015-08-31,Fall,2015-11-16T08:00Z +Cancel,74,2015,November,47,16,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,0,2,Canceled,2015-09-04,Fall,2015-11-16T08:00Z +Cancel,42,2015,November,47,16,3,7,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,34.51,0,0,Canceled,2015-10-10,Fall,2015-11-16T08:00Z +Cancel,97,2015,November,47,16,6,15,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,1,Canceled,2015-08-29,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,17,0,0,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 321, NULL,0,Transient,0,1,1,Check-Out,2015-11-17,Fall,2015-11-17T08:00Z +Keep,28,2015,November,47,17,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,46,2015,November,47,17,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Cancel,134,2015,November,47,17,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,61.2,0,1,Canceled,2015-10-08,Fall,2015-11-17T08:00Z +Keep,16,2015,November,47,18,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,1,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,193,2015,November,47,18,0,3,1,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,4,0,1,Check-Out,2015-11-21,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Cancel,62,2015,November,47,18,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,73,0,0,Canceled,2015-11-05,Fall,2015-11-18T08:00Z +Keep,62,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,62,2015,November,47,18,2,4,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,49,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 313, NULL,65,Transient-Party,71,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,18.5,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,12,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,62,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,62,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Cancel,12,2015,November,47,18,2,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient,73,0,0,Canceled,2015-11-17,Fall,2015-11-18T08:00Z +Keep,62,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,163,2015,November,47,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,26.33,0,1,Check-Out,2015-11-25,Fall,2015-11-18T08:00Z +Keep,10,2015,November,47,19,0,2,2,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,47.12,0,1,Check-Out,2015-11-21,Fall,2015-11-19T08:00Z +Keep,19,2015,November,47,19,0,3,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-22,Fall,2015-11-19T08:00Z +Cancel,31,2015,November,47,19,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,31,0,0,Canceled,2015-11-16,Fall,2015-11-19T08:00Z +Keep,45,2015,November,47,19,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2015-11-22,Fall,2015-11-19T08:00Z +Keep,16,2015,November,47,19,1,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,1,0,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,50,2015,November,47,19,1,3,2,0,0,HB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,77.6,0,1,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Cancel,121,2015,November,47,19,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-19T08:00Z +Keep,50,2015,November,47,19,1,3,2,0,0,HB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,77.6,0,1,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Cancel,120,2015,November,47,19,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,66.32,0,0,Canceled,2015-07-23,Fall,2015-11-19T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,39,2015,November,47,20,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36.45,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,235,2015,November,47,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,58.32,0,0,Canceled,2015-09-02,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Keep,8,2015,November,47,20,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,37,1,2,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-17,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,73,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,29.16,0,1,No-Show,2015-11-20,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,122,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-08,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-17,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,48,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Cancel,36,2015,November,47,20,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-14,Fall,2015-11-20T08:00Z +Cancel,123,2015,November,47,20,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,2,Canceled,2015-10-13,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,1,2,0,0,0,SC,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Cancel,129,2015,November,47,20,1,2,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,22.5,0,0,Canceled,2015-09-17,Fall,2015-11-20T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,1,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 342,0,Transient-Party,32,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,1,No Deposit , NULL, 342,0,Transient-Party,44,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,15,2015,November,47,21,0,1,2,2,0,BB,PRT,Corporate,Corporate, 0,0,0,C,H,2,No Deposit , NULL, 342,0,Transient-Party,56,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,44,2015,November,47,21,0,1,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,73.5,1,3,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,15,2015,November,47,21,0,1,2,2,0,BB,PRT,Corporate,Corporate, 0,0,0,C,H,3,No Deposit , NULL, 342,0,Transient-Party,56,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,124,2015,November,47,21,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,54.05,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,44,2015,November,47,21,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,3,No Deposit , 240, NULL,0,Transient,73.5,1,3,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,1,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,15,2015,November,47,21,0,1,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,1,No Deposit , NULL, 342,0,Transient-Party,44,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,33,2015,November,47,21,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,15,2015,November,47,21,0,1,2,2,0,BB,PRT,Corporate,Corporate, 0,0,0,C,H,2,No Deposit , NULL, 342,0,Transient-Party,56,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,15,2015,November,47,21,0,1,2,0,1,BB,PRT,Corporate,Corporate, 0,0,0,A,G,3,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,40,2015,November,47,21,0,1,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient,67.5,0,2,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Cancel,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Canceled,2015-11-21,Fall,2015-11-21T08:00Z +Keep,78,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Cancel,39,2015,November,47,21,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,147.1,0,0,Canceled,2015-10-27,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,24,2015,November,47,21,0,1,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,2,No Deposit , NULL, 342,0,Transient-Party,44,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,14,2015,November,47,21,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-11-28,Fall,2015-11-21T08:00Z +Keep,0,2015,November,48,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-11-23,Fall,2015-11-23T08:00Z +Keep,56,2015,November,48,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-11-23,Fall,2015-11-23T08:00Z +Keep,20,2015,November,48,23,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.53,1,1,Check-Out,2015-11-26,Fall,2015-11-23T08:00Z +Cancel,20,2015,November,48,23,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2015-11-11,Fall,2015-11-23T08:00Z +Cancel,157,2015,November,48,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,0,No-Show,2015-11-23,Fall,2015-11-23T08:00Z +Cancel,17,2015,November,48,23,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Canceled,2015-11-19,Fall,2015-11-23T08:00Z +Cancel,13,2015,November,48,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,No-Show,2015-11-23,Fall,2015-11-23T08:00Z +Keep,21,2015,November,48,24,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,40,2015,November,48,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,1,2,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,12,2015,November,48,24,0,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-11-29,Fall,2015-11-24T08:00Z +Keep,72,2015,November,48,25,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Check-Out,2015-11-29,Fall,2015-11-25T08:00Z +Keep,17,2015,November,48,26,0,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,17,2015,November,48,26,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,46.4,0,0,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,14,2015,November,48,26,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,57,2015,November,48,26,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,174,2015,November,48,26,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,46.5,1,0,Check-Out,2015-12-04,Fall,2015-11-26T08:00Z +Keep,28,2015,November,48,27,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Cancel,32,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2015-11-11,Fall,2015-11-27T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Canceled,2015-11-16,Fall,2015-11-27T08:00Z +Keep,28,2015,November,48,28,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-11-28,Fall,2015-11-28T08:00Z +Keep,22,2015,November,48,28,0,1,3,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,108.15,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Cancel,74,2015,November,48,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,0,Canceled,2015-10-22,Fall,2015-11-28T08:00Z +Cancel,164,2015,November,48,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,0,Canceled,2015-07-11,Fall,2015-11-28T08:00Z +Keep,36,2015,November,48,28,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,32.1,1,0,Check-Out,2015-12-04,Fall,2015-11-28T08:00Z +Cancel,88,2015,November,48,28,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,0,Canceled,2015-11-19,Fall,2015-11-28T08:00Z +Cancel,26,2015,November,48,28,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2015-11-16,Fall,2015-11-28T08:00Z +Cancel,82,2015,November,49,29,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,32.4,0,1,Canceled,2015-11-14,Fall,2015-11-29T08:00Z +Cancel,133,2015,November,49,30,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,29.16,0,1,Canceled,2015-07-29,Fall,2015-11-30T08:00Z +Keep,62,2015,November,49,30,1,3,2,0,0,HB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,83.6,1,1,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Cancel,93,2015,November,49,30,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-08-31,Fall,2015-11-30T08:00Z +Cancel,91,2015,November,49,30,3,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2015-09-05,Fall,2015-11-30T08:00Z +Keep,20,2015,December,49,1,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-12-01,Winter,2015-12-01T08:00Z +Keep,118,2015,December,49,1,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,1,Check-Out,2015-12-06,Winter,2015-12-01T08:00Z +Cancel,87,2015,December,49,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Canceled,2015-10-19,Winter,2015-12-01T08:00Z +Keep,118,2015,December,49,1,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Check-Out,2015-12-08,Winter,2015-12-01T08:00Z +Keep,82,2015,December,49,2,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-12-02,Winter,2015-12-02T08:00Z +Keep,21,2015,December,49,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,1,2,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,21,2015,December,49,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,2,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,21,2015,December,49,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,2,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,21,2015,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,2,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,119,2015,December,49,2,8,21,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,68.2,0,0,Check-Out,2015-12-31,Winter,2015-12-02T08:00Z +Keep,31,2015,December,49,3,0,1,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Cancel,23,2015,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Canceled,2015-11-13,Winter,2015-12-03T08:00Z +Cancel,20,2015,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Canceled,2015-11-13,Winter,2015-12-03T08:00Z +Keep,45,2015,December,49,3,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55.95,1,1,Check-Out,2015-12-05,Winter,2015-12-03T08:00Z +Keep,48,2015,December,49,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2015-12-10,Winter,2015-12-03T08:00Z +Keep,52,2015,December,49,3,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,87.53,0,0,Check-Out,2015-12-10,Winter,2015-12-03T08:00Z +Keep,108,2015,December,49,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,49.5,0,0,Check-Out,2015-12-10,Winter,2015-12-03T08:00Z +Keep,30,2015,December,49,3,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,30,0,0,Check-Out,2015-12-17,Winter,2015-12-03T08:00Z +Cancel,121,2015,December,49,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Canceled,2015-08-17,Winter,2015-12-04T08:00Z +Cancel,58,2015,December,49,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,0,Canceled,2015-11-11,Winter,2015-12-04T08:00Z +Cancel,81,2015,December,49,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Canceled,2015-10-26,Winter,2015-12-04T08:00Z +Cancel,80,2015,December,49,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-09-17,Winter,2015-12-04T08:00Z +Keep,23,2015,December,49,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,41.4,0,0,Check-Out,2015-12-06,Winter,2015-12-04T08:00Z +Cancel,88,2015,December,49,4,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,47.6,0,0,Canceled,2015-11-30,Winter,2015-12-04T08:00Z +Cancel,44,2015,December,49,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,0,0,Canceled,2015-10-22,Winter,2015-12-04T08:00Z +Cancel,74,2015,December,49,4,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,92.1,0,0,Canceled,2015-10-19,Winter,2015-12-04T08:00Z +Cancel,34,2015,December,49,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2015-11-12,Winter,2015-12-04T08:00Z +Keep,22,2015,December,49,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,0,2,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,22,2015,December,49,4,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Cancel,34,2015,December,49,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2015-11-12,Winter,2015-12-04T08:00Z +Keep,22,2015,December,49,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,0,2,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,130,2015,December,49,4,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Contract,35.7,1,0,Check-Out,2015-12-12,Winter,2015-12-04T08:00Z +Keep,44,2015,December,49,5,0,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,I,1,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Check-Out,2015-12-05,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,1,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,52,0,0,Canceled,2015-12-03,Winter,2015-12-05T08:00Z +Cancel,54,2015,December,49,5,1,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,39.1,0,1,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,26,2015,December,49,5,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,3,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 155, NULL,0,Transient-Party,86.4,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,1,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,52,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,1,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,52,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-04,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 155, NULL,0,Transient-Party,52,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,64,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,66,2015,December,49,5,1,1,1,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,0,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,66,2015,December,49,5,1,1,1,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 155, NULL,0,Transient-Party,52,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Keep,59,2015,December,49,5,2,1,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48.4,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,59,2015,December,49,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,68.45,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,23,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,24,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,54,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,2,Canceled,2015-11-18,Winter,2015-12-05T08:00Z +Keep,59,2015,December,49,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,68.45,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,60,2015,December,49,5,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,0,Canceled,2015-11-10,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,F,4,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Keep,54,2015,December,49,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,72.5,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,46,2015,December,49,5,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,1,No-Show,2015-12-05,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Keep,113,2015,December,49,5,2,1,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Contract,55.92,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,59,2015,December,49,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,68.45,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,59,2015,December,49,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,68.45,0,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,58,2015,December,49,5,2,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,22.5,0,1,Canceled,2015-11-27,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Keep,33,2015,December,49,5,2,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,109,1,2,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,149,2015,December,49,5,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,68,0,0,Canceled,2015-11-19,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,44,2015,December,49,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,45,2015,December,49,5,2,1,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 38, NULL,0,Transient-Party,91.8,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Cancel,45,2015,December,49,5,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Cancel,54,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,2,Canceled,2015-11-26,Winter,2015-12-05T08:00Z +Keep,39,2015,December,50,6,2,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,63.72,0,0,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,68,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Cancel,81,2015,December,50,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,2,Canceled,2015-11-17,Winter,2015-12-06T08:00Z +Keep,31,2015,December,50,6,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2015-12-10,Winter,2015-12-06T08:00Z +Keep,35,2015,December,50,7,1,0,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,45,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Cancel,49,2015,December,50,7,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,39.96,0,0,Canceled,2015-11-13,Winter,2015-12-07T08:00Z +Cancel,35,2015,December,50,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.49,0,1,Canceled,2015-11-02,Winter,2015-12-07T08:00Z +Cancel,25,2015,December,50,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.49,0,0,Canceled,2015-11-13,Winter,2015-12-07T08:00Z +Keep,183,2015,December,50,8,8,20,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,44.5,0,1,Check-Out,2016-01-05,Winter,2015-12-08T08:00Z +Keep,140,2015,December,50,10,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2015-12-10,Winter,2015-12-10T08:00Z +Keep,192,2015,December,50,10,0,1,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,32.4,0,2,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,29,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,1,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,29,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,0,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,29,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,1,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,66,2015,December,50,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,50.93,0,0,Check-Out,2015-12-17,Winter,2015-12-10T08:00Z +Keep,29,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,0,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,29,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,1,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,126,2015,December,50,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,24.95,0,1,Check-Out,2015-12-15,Winter,2015-12-11T08:00Z +Keep,56,2015,December,50,11,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58.7,0,1,Check-Out,2015-12-16,Winter,2015-12-11T08:00Z +Keep,66,2015,December,50,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,56.7,0,0,Check-Out,2015-12-19,Winter,2015-12-12T08:00Z +Keep,194,2015,December,50,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,28.33,0,0,Check-Out,2015-12-19,Winter,2015-12-12T08:00Z +Cancel,149,2015,December,51,13,6,13,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,31.12,0,2,Canceled,2015-07-30,Winter,2015-12-13T08:00Z +Keep,70,2015,December,51,14,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,21.37,0,0,Check-Out,2015-12-17,Winter,2015-12-14T08:00Z +Cancel,33,2015,December,51,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Canceled,2015-11-24,Winter,2015-12-14T08:00Z +Keep,103,2015,December,51,14,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,26.95,0,1,Check-Out,2015-12-19,Winter,2015-12-14T08:00Z +Keep,71,2015,December,51,15,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-12-15,Winter,2015-12-15T08:00Z +Keep,50,2015,December,51,17,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,44,2015,December,51,17,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,1,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,261,2015,December,51,17,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,38.7,0,2,Check-Out,2015-12-26,Winter,2015-12-17T08:00Z +Cancel,125,2015,December,51,17,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.16,0,2,Canceled,2015-09-14,Winter,2015-12-17T08:00Z +Keep,52,2015,December,51,17,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,37.3,0,1,Check-Out,2015-12-27,Winter,2015-12-17T08:00Z +Keep,49,2015,December,51,17,6,13,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45.33,0,0,Check-Out,2016-01-05,Winter,2015-12-17T08:00Z +Cancel,58,2015,December,51,17,6,13,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,51.99,0,0,Canceled,2015-10-21,Winter,2015-12-17T08:00Z +Keep,113,2015,December,51,18,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-12-18,Winter,2015-12-18T08:00Z +Keep,60,2015,December,51,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,56.7,1,2,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,45,2015,December,51,18,2,2,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 8, NULL,0,Transient,47,1,1,Check-Out,2015-12-22,Winter,2015-12-18T08:00Z +Keep,86,2015,December,51,18,2,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,56.4,1,0,Check-Out,2015-12-23,Winter,2015-12-18T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Cancel,93,2015,December,51,19,0,1,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,80,0,0,Canceled,2015-11-09,Winter,2015-12-19T08:00Z +Keep,39,2015,December,51,19,2,1,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-22,Winter,2015-12-19T08:00Z +Keep,88,2015,December,51,19,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,40.5,0,0,Check-Out,2015-12-23,Winter,2015-12-19T08:00Z +Cancel,113,2015,December,51,19,2,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2015-08-31,Winter,2015-12-19T08:00Z +Cancel,118,2015,December,52,20,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.33,0,2,Canceled,2015-10-26,Winter,2015-12-20T08:00Z +Cancel,260,2015,December,52,20,4,9,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,33.58,0,1,Canceled,2015-04-04,Winter,2015-12-20T08:00Z +Cancel,216,2015,December,52,20,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.29,0,1,Canceled,2015-07-04,Winter,2015-12-20T08:00Z +Cancel,169,2015,December,52,20,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.26,0,1,Canceled,2015-10-31,Winter,2015-12-20T08:00Z +Cancel,216,2015,December,52,20,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.77,0,1,Canceled,2015-07-04,Winter,2015-12-20T08:00Z +Cancel,169,2015,December,52,20,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.26,0,1,Canceled,2015-10-31,Winter,2015-12-20T08:00Z +Cancel,260,2015,December,52,20,4,9,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47.54,0,1,Canceled,2015-08-24,Winter,2015-12-20T08:00Z +Keep,48,2015,December,52,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-24,Winter,2015-12-20T08:00Z +Cancel,113,2015,December,52,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,32.4,0,1,Canceled,2015-08-31,Winter,2015-12-20T08:00Z +Cancel,113,2015,December,52,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,1,Canceled,2015-08-31,Winter,2015-12-20T08:00Z +Keep,126,2015,December,52,21,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,58.52,0,0,Check-Out,2015-12-27,Winter,2015-12-21T08:00Z +Keep,67,2015,December,52,21,1,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,58.5,0,0,Check-Out,2015-12-27,Winter,2015-12-21T08:00Z +Cancel,209,2015,December,52,21,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Contract,54,0,1,Canceled,2015-12-16,Winter,2015-12-21T08:00Z +Keep,49,2015,December,52,21,3,5,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,46.27,0,1,Check-Out,2015-12-29,Winter,2015-12-21T08:00Z +Cancel,94,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,31.88,0,2,Canceled,2015-09-21,Winter,2015-12-21T08:00Z +Cancel,94,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.18,0,2,Canceled,2015-09-21,Winter,2015-12-21T08:00Z +Cancel,39,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.77,0,2,Canceled,2015-11-16,Winter,2015-12-21T08:00Z +Cancel,94,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,31.88,0,2,Canceled,2015-09-21,Winter,2015-12-21T08:00Z +Cancel,39,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.77,0,2,Canceled,2015-11-16,Winter,2015-12-21T08:00Z +Cancel,94,2015,December,52,21,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.18,0,1,Canceled,2015-09-21,Winter,2015-12-21T08:00Z +Cancel,94,2015,December,52,21,3,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,38.81,0,1,Canceled,2015-09-22,Winter,2015-12-21T08:00Z +Keep,119,2015,December,52,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,24.95,0,1,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Cancel,3,2015,December,52,22,0,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,110.75,0,0,Canceled,2015-12-20,Winter,2015-12-22T08:00Z +Cancel,57,2015,December,52,22,0,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,54.68,0,1,Canceled,2015-10-29,Winter,2015-12-22T08:00Z +Keep,54,2015,December,52,22,0,5,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,85,1,1,Check-Out,2015-12-27,Winter,2015-12-22T08:00Z +Cancel,43,2015,December,52,22,1,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2015-11-24,Winter,2015-12-22T08:00Z +Keep,60,2015,December,52,22,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,139,2015,December,52,22,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,25.11,0,1,Check-Out,2015-12-26,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,65.57,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Keep,70,2015,December,52,22,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,34.79,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,65.57,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 335, NULL,0,Transient-Party,75.57,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient-Party,81.29,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Cancel,1,2015,December,52,22,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,51,0,0,Canceled,2015-12-22,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,1,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,42.57,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Cancel,131,2015,December,52,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,55,0,0,Canceled,2015-12-02,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,72.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,72.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,83,2015,December,52,23,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43.57,0,2,Check-Out,2015-12-26,Winter,2015-12-23T08:00Z +Keep,119,2015,December,52,23,0,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,85.2,1,1,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,49,2015,December,52,23,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2015-12-23,Winter,2015-12-23T08:00Z +Keep,49,2015,December,52,23,0,0,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2015-12-23,Winter,2015-12-23T08:00Z +Keep,48,2015,December,52,23,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.2,0,2,Check-Out,2015-12-28,Winter,2015-12-23T08:00Z +Keep,111,2015,December,52,23,2,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,38.29,0,1,Check-Out,2015-12-29,Winter,2015-12-23T08:00Z +Keep,100,2015,December,52,23,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,31.64,0,0,Check-Out,2015-12-29,Winter,2015-12-23T08:00Z +Cancel,70,2015,December,52,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Canceled,2015-10-28,Winter,2015-12-23T08:00Z +Keep,44,2015,December,52,23,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,73.4,0,0,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,99,2015,December,52,23,2,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.67,0,1,Check-Out,2015-12-29,Winter,2015-12-23T08:00Z +Keep,44,2015,December,52,23,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,56,1,0,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,65,2015,December,52,23,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.17,0,1,Check-Out,2016-01-02,Winter,2015-12-23T08:00Z +Keep,45,2015,December,52,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,31,0,0,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,44,2015,December,52,24,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,27,0,0,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,45,2015,December,52,24,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,66,2015,December,52,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,59,2015,December,52,24,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,45,0,1,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,155,2015,December,52,24,0,3,2,0,1,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient-Party,47.6,0,3,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,59,2015,December,52,24,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,51,1,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,155,2015,December,52,24,0,3,3,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient-Party,73.1,0,2,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,44,2015,December,52,24,0,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,58,0,1,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Cancel,113,2015,December,52,24,2,4,2,2,1,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,73.1,0,1,Canceled,2015-12-16,Winter,2015-12-24T08:00Z +Keep,86,2015,December,52,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,34.33,0,1,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Keep,127,2015,December,52,24,2,5,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,94.36,0,1,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Keep,131,2015,December,52,24,2,5,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,90.07,0,0,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Keep,119,2015,December,52,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29.96,0,0,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Keep,127,2015,December,52,24,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,37.29,0,1,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Keep,79,2015,December,52,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,57.29,0,2,Check-Out,2015-12-31,Winter,2015-12-24T08:00Z +Cancel,113,2015,December,52,24,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.95,0,1,Canceled,2015-09-04,Winter,2015-12-24T08:00Z +Keep,57,2015,December,52,24,2,6,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68.55,1,0,Check-Out,2016-01-01,Winter,2015-12-24T08:00Z +Cancel,87,2015,December,52,24,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93.3,0,1,Canceled,2015-10-05,Winter,2015-12-24T08:00Z +Cancel,110,2015,December,52,24,2,7,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,35.64,0,0,Canceled,2015-09-07,Winter,2015-12-24T08:00Z +Cancel,99,2015,December,52,24,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,61.39,0,0,Canceled,2015-10-06,Winter,2015-12-24T08:00Z +Keep,178,2015,December,52,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,29.16,0,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,51,2015,December,52,24,1,3,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.25,0,0,Check-Out,2015-12-28,Winter,2015-12-24T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,Non Refund , 240, NULL,0,Transient,75,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,Non Refund , 240, NULL,0,Transient,75,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,Non Refund , 240, NULL,0,Transient,75,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,Non Refund , 240, NULL,0,Transient,75,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,Non Refund , 240, NULL,0,Transient,115,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Cancel,0,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,55,0,0,No-Show,2015-12-25,Winter,2015-12-25T08:00Z +Keep,55,2015,December,52,25,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,26.1,0,3,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Cancel,56,2015,December,52,25,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2015-10-30,Winter,2015-12-25T08:00Z +Cancel,56,2015,December,52,25,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2015-10-30,Winter,2015-12-25T08:00Z +Cancel,56,2015,December,52,25,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2015-10-30,Winter,2015-12-25T08:00Z +Keep,55,2015,December,52,25,1,2,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,22.5,0,3,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,55,2015,December,52,25,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,26.1,0,3,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,45,2015,December,52,25,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2015-12-30,Winter,2015-12-25T08:00Z +Cancel,130,2015,December,52,26,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,2,Canceled,2015-09-28,Winter,2015-12-26T08:00Z +Keep,93,2015,December,52,26,2,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48.42,0,1,Check-Out,2015-12-31,Winter,2015-12-26T08:00Z +Keep,112,2015,December,52,26,2,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,92.55,0,1,Check-Out,2016-01-01,Winter,2015-12-26T08:00Z +Cancel,107,2015,December,52,26,2,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,63.68,0,0,No-Show,2015-12-26,Winter,2015-12-26T08:00Z +Keep,114,2015,December,52,26,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 156, NULL,0,Contract,41.33,0,1,Check-Out,2016-01-01,Winter,2015-12-26T08:00Z +Cancel,238,2015,December,52,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,79.86,0,0,Canceled,2015-06-02,Winter,2015-12-26T08:00Z +Cancel,89,2015,December,52,26,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Canceled,2015-10-29,Winter,2015-12-26T08:00Z +Cancel,215,2015,December,52,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.06,0,0,Canceled,2015-05-27,Winter,2015-12-26T08:00Z +Cancel,59,2015,December,52,26,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65.18,0,1,Canceled,2015-12-10,Winter,2015-12-26T08:00Z +Keep,129,2015,December,52,26,4,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,71.88,1,0,Check-Out,2016-01-05,Winter,2015-12-26T08:00Z +Keep,62,2015,December,53,27,2,0,2,0,0,BB,CRI,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.26,0,0,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Cancel,31,2015,December,53,27,2,0,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,80,0,0,No-Show,2015-12-27,Winter,2015-12-27T08:00Z +Keep,62,2015,December,53,27,2,0,2,0,0,BB,CRI,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.26,1,1,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Cancel,27,2015,December,53,27,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,1,Canceled,2015-12-22,Winter,2015-12-27T08:00Z +Cancel,83,2015,December,53,27,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,71.28,0,0,Canceled,2015-10-12,Winter,2015-12-27T08:00Z +Cancel,133,2015,December,53,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Canceled,2015-10-26,Winter,2015-12-28T08:00Z +Cancel,49,2015,December,53,28,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2015-12-28,Winter,2015-12-28T08:00Z +Cancel,3,2015,December,53,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,0,Canceled,2015-12-27,Winter,2015-12-28T08:00Z +Cancel,49,2015,December,53,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2015-12-28,Winter,2015-12-28T08:00Z +Cancel,49,2015,December,53,28,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2015-12-10,Winter,2015-12-28T08:00Z +Cancel,126,2015,December,53,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.42,0,1,Canceled,2015-12-01,Winter,2015-12-28T08:00Z +Cancel,77,2015,December,53,28,1,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2015-10-19,Winter,2015-12-28T08:00Z +Keep,90,2015,December,53,28,1,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,125.51,1,0,Check-Out,2016-01-02,Winter,2015-12-28T08:00Z +Cancel,105,2015,December,53,28,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,106.92,0,0,Canceled,2015-09-22,Winter,2015-12-28T08:00Z +Keep,81,2015,December,53,28,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 36, NULL,0,Transient-Party,49.92,0,0,Check-Out,2016-01-03,Winter,2015-12-28T08:00Z +Keep,81,2015,December,53,28,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 36, NULL,0,Transient-Party,51.92,0,0,Check-Out,2016-01-03,Winter,2015-12-28T08:00Z +Keep,118,2015,December,53,28,2,5,1,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,99.51,0,1,Check-Out,2016-01-04,Winter,2015-12-28T08:00Z +Cancel,76,2015,December,53,28,3,8,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.64,0,1,Canceled,2015-11-17,Winter,2015-12-28T08:00Z +Keep,101,2015,December,53,28,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,72.63,0,1,Check-Out,2016-01-11,Winter,2015-12-28T08:00Z +Cancel,66,2015,December,53,28,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,73.5,0,0,Canceled,2015-12-26,Winter,2015-12-28T08:00Z +Keep,49,2015,December,53,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.5,1,2,Check-Out,2016-01-01,Winter,2015-12-28T08:00Z +Keep,53,2015,December,53,28,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.9,0,1,Check-Out,2016-01-01,Winter,2015-12-28T08:00Z +Cancel,75,2015,December,53,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.83,0,1,Canceled,2015-12-04,Winter,2015-12-29T08:00Z +Keep,94,2015,December,53,29,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,73.7,0,1,Check-Out,2016-01-07,Winter,2015-12-29T08:00Z +Cancel,160,2015,December,53,29,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,62.88,0,2,Canceled,2015-09-25,Winter,2015-12-29T08:00Z +Keep,76,2015,December,53,30,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,204.33,1,1,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,65,2015,December,53,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,102.6,0,2,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,84.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Cancel,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Canceled,2015-12-21,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Cancel,54,2015,December,53,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107.75,0,2,Canceled,2015-12-15,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,84.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,84.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,138.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,3,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 308, NULL,122,Transient-Party,192.25,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,65,2015,December,53,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,102.6,0,2,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Cancel,9,2015,December,53,30,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129.2,0,0,Canceled,2015-12-22,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,1,4,0,0,0,SC,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-04,Winter,2015-12-30T08:00Z +Cancel,9,2015,December,53,30,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129.2,0,0,Canceled,2015-12-22,Winter,2015-12-30T08:00Z +Keep,53,2015,December,53,30,0,3,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,221.2,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Cancel,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Canceled,2015-12-21,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 308, NULL,122,Transient-Party,94.25,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,B,0,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 308, NULL,122,Transient,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 308, NULL,122,Transient-Party,136.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , 308, NULL,122,Transient-Party,84.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,0,4,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 308, NULL,122,Transient-Party,84.5,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Cancel,55,2015,December,53,30,0,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,146.5,0,2,Canceled,2015-12-15,Winter,2015-12-30T08:00Z +Keep,165,2015,December,53,30,2,4,0,0,0,SC,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 308, NULL,122,Transient-Party,0,0,0,Check-Out,2016-01-05,Winter,2015-12-30T08:00Z +Cancel,41,2015,December,53,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86.29,0,1,Canceled,2015-12-25,Winter,2015-12-30T08:00Z +Cancel,85,2015,December,53,31,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,144,0,0,Canceled,2015-11-11,Winter,2015-12-31T08:00Z +Cancel,43,2015,December,53,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Canceled,2015-12-23,Winter,2015-12-31T08:00Z +Keep,52,2015,December,53,31,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,332,1,1,Check-Out,2016-01-01,Winter,2015-12-31T08:00Z +Cancel,66,2015,December,53,31,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,270,0,0,Canceled,2015-10-27,Winter,2015-12-31T08:00Z +Keep,86,2015,December,53,31,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,73.35,0,1,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Cancel,114,2015,December,53,31,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,95.85,0,0,Canceled,2015-12-19,Winter,2015-12-31T08:00Z +Keep,90,2015,December,53,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.02,0,0,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Keep,161,2015,December,53,31,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,136.1,0,0,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Cancel,161,2015,December,53,31,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,148.1,0,1,Canceled,2015-07-23,Winter,2015-12-31T08:00Z +Keep,86,2015,December,53,31,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,103.35,0,2,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Keep,69,2015,December,53,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154.98,0,2,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Cancel,62,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,102.6,0,0,Canceled,2015-11-02,Winter,2015-12-31T08:00Z +Keep,141,2015,December,53,31,0,3,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,92.43,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,72,2015,December,53,31,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95.07,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Cancel,101,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.6,0,0,Canceled,2015-10-01,Winter,2015-12-31T08:00Z +Cancel,66,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,1,Canceled,2015-10-29,Winter,2015-12-31T08:00Z +Cancel,69,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,1,Canceled,2015-10-29,Winter,2015-12-31T08:00Z +Cancel,55,2015,December,53,31,0,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,276.6,0,0,Canceled,2015-11-17,Winter,2015-12-31T08:00Z +Cancel,45,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,109,0,1,Canceled,2015-12-20,Winter,2015-12-31T08:00Z +Keep,69,2015,December,53,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,160.98,0,2,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Cancel,49,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,145.87,0,1,Canceled,2015-11-17,Winter,2015-12-31T08:00Z +Keep,79,2015,December,53,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,169.48,1,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,69,2015,December,53,31,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,199.73,0,3,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,70,2015,December,53,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154.98,0,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,92,2015,December,53,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,59.18,0,2,Check-Out,2016-01-07,Winter,2015-12-31T08:00Z +Keep,92,2015,December,53,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,59.18,0,2,Check-Out,2016-01-07,Winter,2015-12-31T08:00Z +Keep,92,2015,December,53,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,59.18,0,2,Check-Out,2016-01-07,Winter,2015-12-31T08:00Z +Cancel,92,2015,December,53,31,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,66.6,0,0,Canceled,2015-10-03,Winter,2015-12-31T08:00Z +Keep,109,2016,January,1,1,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,59.94,0,1,Check-Out,2016-01-02,Winter,2016-01-01T08:00Z +Keep,109,2016,January,1,1,0,1,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,116.1,1,1,Check-Out,2016-01-02,Winter,2016-01-01T08:00Z +Cancel,2,2016,January,1,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,1,No-Show,2016-01-01,Winter,2016-01-01T08:00Z +Keep,88,2016,January,1,1,0,2,2,0,0,HB,ARG,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,73.46,0,2,Check-Out,2016-01-03,Winter,2016-01-01T08:00Z +Cancel,20,2016,January,1,1,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2015-12-22,Winter,2016-01-01T08:00Z +Cancel,76,2016,January,1,1,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.9,0,1,Canceled,2015-12-20,Winter,2016-01-01T08:00Z +Keep,88,2016,January,1,1,0,2,2,1,0,HB,ARG,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,90.17,0,2,Check-Out,2016-01-03,Winter,2016-01-01T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Cancel,113,2016,January,1,2,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 305, NULL,0,Transient,72,0,0,Canceled,2015-11-16,Winter,2016-01-02T08:00Z +Keep,110,2016,January,1,2,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,46.93,0,3,Check-Out,2016-01-09,Winter,2016-01-02T08:00Z +Cancel,103,2016,January,2,3,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,1,Canceled,2015-12-12,Winter,2016-01-03T08:00Z +Cancel,22,2016,January,2,3,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,0,2,Canceled,2015-12-26,Winter,2016-01-03T08:00Z +Cancel,0,2016,January,2,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,32.3,0,0,Canceled,2016-01-04,Winter,2016-01-04T08:00Z +Cancel,3,2016,January,2,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,1,Canceled,2016-01-04,Winter,2016-01-04T08:00Z +Cancel,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Canceled,2015-12-30,Winter,2016-01-04T08:00Z +Cancel,5,2016,January,2,4,1,3,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,61,0,0,Canceled,2015-12-30,Winter,2016-01-04T08:00Z +Cancel,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Canceled,2015-12-30,Winter,2016-01-04T08:00Z +Cancel,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Canceled,2015-12-30,Winter,2016-01-04T08:00Z +Cancel,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Canceled,2015-12-30,Winter,2016-01-04T08:00Z +Cancel,20,2016,January,2,4,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,54.4,0,1,Canceled,2015-12-26,Winter,2016-01-04T08:00Z +Cancel,62,2016,January,2,4,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Canceled,2015-11-17,Winter,2016-01-04T08:00Z +Cancel,189,2016,January,2,5,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,25.11,0,2,Canceled,2015-12-26,Winter,2016-01-05T08:00Z +Cancel,132,2016,January,2,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Canceled,2015-09-14,Winter,2016-01-05T08:00Z +Cancel,13,2016,January,2,5,8,20,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient,65,0,0,Canceled,2015-12-29,Winter,2016-01-05T08:00Z +Keep,86,2016,January,2,6,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.5,1,1,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,187,2016,January,2,6,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-01-10,Winter,2016-01-06T08:00Z +Keep,85,2016,January,2,6,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,47.4,1,1,Check-Out,2016-01-10,Winter,2016-01-06T08:00Z +Cancel,93,2016,January,2,6,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,47.6,0,1,Canceled,2015-11-12,Winter,2016-01-06T08:00Z +Cancel,93,2016,January,2,6,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,73.1,0,1,Canceled,2015-11-12,Winter,2016-01-06T08:00Z +Cancel,0,2016,January,2,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-07,Winter,2016-01-07T08:00Z +Cancel,143,2016,January,2,7,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.4,0,2,Canceled,2015-09-05,Winter,2016-01-07T08:00Z +Cancel,223,2016,January,2,7,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,107,0,0,Canceled,2015-06-26,Winter,2016-01-07T08:00Z +Cancel,117,2016,January,2,7,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,33.08,0,2,Canceled,2015-11-26,Winter,2016-01-07T08:00Z +Cancel,13,2016,January,2,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2015-12-28,Winter,2016-01-08T08:00Z +Cancel,24,2016,January,2,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2015-12-28,Winter,2016-01-08T08:00Z +Cancel,2,2016,January,2,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,No-Show,2016-01-08,Winter,2016-01-08T08:00Z +Keep,59,2016,January,2,8,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Cancel,6,2016,January,2,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,0,0,Canceled,2016-01-04,Winter,2016-01-08T08:00Z +Cancel,11,2016,January,2,8,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,1,No-Show,2016-01-08,Winter,2016-01-08T08:00Z +Cancel,19,2016,January,2,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,0,Canceled,2016-01-06,Winter,2016-01-08T08:00Z +Cancel,19,2016,January,2,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.8,0,0,Canceled,2016-01-06,Winter,2016-01-08T08:00Z +Keep,74,2016,January,2,8,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-01-12,Winter,2016-01-08T08:00Z +Keep,169,2016,January,2,8,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2016-01-13,Winter,2016-01-08T08:00Z +Cancel,200,2016,January,2,8,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Canceled,2015-09-21,Winter,2016-01-08T08:00Z +Cancel,1,2016,January,2,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-01-08,Winter,2016-01-09T08:00Z +Cancel,28,2016,January,2,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-01-05,Winter,2016-01-09T08:00Z +Cancel,1,2016,January,2,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-01-08,Winter,2016-01-09T08:00Z +Cancel,28,2016,January,2,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-01-05,Winter,2016-01-09T08:00Z +Cancel,110,2016,January,2,9,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,0,Canceled,2015-10-05,Winter,2016-01-09T08:00Z +Cancel,15,2016,January,2,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,0,Canceled,2015-12-30,Winter,2016-01-09T08:00Z +Cancel,103,2016,January,2,9,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,77.4,0,1,Canceled,2015-10-05,Winter,2016-01-09T08:00Z +Keep,87,2016,January,2,9,4,10,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.1,0,0,Check-Out,2016-01-23,Winter,2016-01-09T08:00Z +Cancel,177,2016,January,3,10,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,25.11,0,1,Canceled,2015-09-04,Winter,2016-01-10T08:00Z +Cancel,6,2016,January,3,10,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-06,Winter,2016-01-10T08:00Z +Cancel,8,2016,January,3,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,No-Show,2016-01-12,Winter,2016-01-12T08:00Z +Cancel,99,2016,January,3,12,2,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,0,Canceled,2015-10-28,Winter,2016-01-12T08:00Z +Cancel,99,2016,January,3,12,2,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,1,No-Show,2016-01-12,Winter,2016-01-12T08:00Z +Keep,172,2016,January,3,12,8,20,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,25.92,0,1,Check-Out,2016-02-09,Winter,2016-01-12T08:00Z +Cancel,284,2016,January,3,12,8,20,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.1,0,0,Canceled,2015-09-12,Winter,2016-01-12T08:00Z +Cancel,122,2016,January,3,12,12,30,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,22.11,0,0,Canceled,2015-12-04,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,13,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2016-01-13,Winter,2016-01-13T08:00Z +Cancel,15,2016,January,3,13,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-01-08,Winter,2016-01-13T08:00Z +Cancel,15,2016,January,3,13,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-01-08,Winter,2016-01-13T08:00Z +Cancel,15,2016,January,3,13,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-01-08,Winter,2016-01-13T08:00Z +Keep,23,2016,January,3,14,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Cancel,0,2016,January,3,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Canceled,2016-01-15,Winter,2016-01-15T08:00Z +Cancel,34,2016,January,3,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Canceled,2015-12-26,Winter,2016-01-15T08:00Z +Cancel,1,2016,January,3,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59,0,1,No-Show,2016-01-16,Winter,2016-01-16T08:00Z +Cancel,7,2016,January,3,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,57.6,0,0,Canceled,2016-01-15,Winter,2016-01-16T08:00Z +Cancel,172,2016,January,4,17,3,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-21,Winter,2016-01-17T08:00Z +Cancel,172,2016,January,4,17,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Canceled,2016-01-17,Winter,2016-01-17T08:00Z +Cancel,12,2016,January,4,18,1,0,1,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 15, NULL,0,Transient,0,0,0,Canceled,2016-01-07,Winter,2016-01-18T08:00Z +Cancel,31,2016,January,4,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Canceled,2015-12-26,Winter,2016-01-18T08:00Z +Cancel,3,2016,January,4,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2016-01-19,Winter,2016-01-19T08:00Z +Cancel,3,2016,January,4,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 47,0,Transient,30,0,0,Canceled,2016-01-18,Winter,2016-01-21T08:00Z +Cancel,34,2016,January,4,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Canceled,2015-12-26,Winter,2016-01-21T08:00Z +Cancel,26,2016,January,4,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Canceled,2015-12-29,Winter,2016-01-21T08:00Z +Cancel,3,2016,January,4,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,38,0,2,Canceled,2016-01-21,Winter,2016-01-22T08:00Z +Keep,101,2016,January,4,22,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,66.98,1,0,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Cancel,3,2016,January,4,22,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,43,0,2,Canceled,2016-01-21,Winter,2016-01-22T08:00Z +Cancel,3,2016,January,4,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,52.8,0,1,Canceled,2016-01-22,Winter,2016-01-22T08:00Z +Cancel,13,2016,January,4,22,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,2,No-Show,2016-01-22,Winter,2016-01-22T08:00Z +Cancel,11,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,No-Show,2016-01-23,Winter,2016-01-23T08:00Z +Cancel,1,2016,January,4,23,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,96,0,1,No-Show,2016-01-23,Winter,2016-01-23T08:00Z +Cancel,173,2016,January,5,25,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-08-10,Winter,2016-01-25T08:00Z +Cancel,14,2016,January,5,25,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,2,Canceled,2016-01-18,Winter,2016-01-25T08:00Z +Keep,160,2016,January,5,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,36.86,0,1,Check-Out,2016-01-29,Winter,2016-01-25T08:00Z +Keep,154,2016,January,5,26,0,1,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.16,1,2,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Cancel,4,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Canceled,2016-01-25,Winter,2016-01-26T08:00Z +Keep,214,2016,January,5,26,12,30,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,31.45,0,0,Check-Out,2016-03-08,Winter,2016-01-26T08:00Z +Keep,154,2016,January,5,26,0,1,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,29.16,0,2,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Cancel,5,2016,January,5,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 373,0,Transient,39,0,0,Canceled,2016-01-26,Winter,2016-01-27T08:00Z +Cancel,16,2016,January,5,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-16,Winter,2016-01-27T08:00Z +Cancel,2,2016,January,5,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 126, NULL,0,Transient,30,0,0,Canceled,2016-01-26,Winter,2016-01-28T08:00Z +Cancel,80,2016,January,5,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2015-12-26,Winter,2016-01-28T08:00Z +Cancel,33,2016,January,5,28,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2016-01-20,Winter,2016-01-28T08:00Z +Cancel,33,2016,January,5,28,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2016-01-20,Winter,2016-01-28T08:00Z +Cancel,185,2016,January,5,28,2,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,3,Canceled,2015-07-28,Winter,2016-01-28T08:00Z +Keep,1,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,75,1,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Cancel,48,2016,January,5,29,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Canceled,2016-01-07,Winter,2016-01-29T08:00Z +Cancel,157,2016,January,5,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,88.2,0,1,Canceled,2016-01-05,Winter,2016-01-29T08:00Z +Cancel,15,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-18,Winter,2016-01-30T08:00Z +Cancel,22,2016,January,6,31,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,2,Canceled,2016-01-11,Winter,2016-01-31T08:00Z +Cancel,3,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Canceled,2016-02-01,Winter,2016-02-01T08:00Z +Cancel,3,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Canceled,2016-02-01,Winter,2016-02-01T08:00Z +Keep,0,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Cancel,13,2016,February,6,1,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,67,0,0,Canceled,2016-01-27,Winter,2016-02-01T08:00Z +Cancel,11,2016,February,6,1,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Canceled,2016-01-25,Winter,2016-02-01T08:00Z +Cancel,28,2016,February,6,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Canceled,2016-01-11,Winter,2016-02-01T08:00Z +Keep,101,2016,February,6,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2016-02-08,Winter,2016-02-01T08:00Z +Cancel,202,2016,February,6,2,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,27.9,0,1,Canceled,2015-11-11,Winter,2016-02-02T08:00Z +Cancel,133,2016,February,6,2,5,15,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,24.94,0,0,Canceled,2016-01-21,Winter,2016-02-02T08:00Z +Cancel,4,2016,February,6,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-01-30,Winter,2016-02-03T08:00Z +Keep,116,2016,February,6,3,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,56.1,0,1,Check-Out,2016-02-07,Winter,2016-02-03T08:00Z +Cancel,100,2016,February,6,3,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,56.1,0,0,Canceled,2015-10-26,Winter,2016-02-03T08:00Z +Keep,97,2016,February,6,3,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,50.54,0,0,Check-Out,2016-02-07,Winter,2016-02-03T08:00Z +Cancel,39,2016,February,6,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Canceled,2016-01-12,Winter,2016-02-03T08:00Z +Cancel,46,2016,February,6,3,7,19,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,30,0,1,Canceled,2016-01-15,Winter,2016-02-03T08:00Z +Cancel,46,2016,February,6,3,7,19,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,38,0,1,Canceled,2016-01-15,Winter,2016-02-03T08:00Z +Cancel,20,2016,February,6,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-01-18,Winter,2016-02-04T08:00Z +Cancel,142,2016,February,6,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Canceled,2016-01-20,Winter,2016-02-04T08:00Z +Cancel,17,2016,February,6,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.67,0,1,Canceled,2016-01-19,Winter,2016-02-04T08:00Z +Cancel,26,2016,February,6,4,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2016-01-11,Winter,2016-02-04T08:00Z +Cancel,83,2016,February,6,4,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-01-09,Winter,2016-02-04T08:00Z +Cancel,99,2016,February,6,4,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.88,0,1,Canceled,2015-12-25,Winter,2016-02-04T08:00Z +Cancel,13,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53,0,1,Canceled,2016-01-28,Winter,2016-02-05T08:00Z +Cancel,2,2016,February,6,5,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,36.25,0,1,Canceled,2016-02-05,Winter,2016-02-05T08:00Z +Cancel,18,2016,February,6,5,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,69.67,0,2,Canceled,2016-02-03,Winter,2016-02-05T08:00Z +Keep,88,2016,February,6,5,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,26,1,0,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,88,2016,February,6,5,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,26,0,0,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Cancel,18,2016,February,6,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.57,0,2,Canceled,2016-01-26,Winter,2016-02-05T08:00Z +Cancel,18,2016,February,6,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.57,0,2,Canceled,2016-01-26,Winter,2016-02-05T08:00Z +Keep,211,2016,February,6,5,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,72.55,0,0,Check-Out,2016-02-13,Winter,2016-02-05T08:00Z +Cancel,29,2016,February,6,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,12,2016,February,6,6,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,78,0,1,Canceled,2016-01-25,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,22,2016,February,6,6,2,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-01-18,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,72,2016,February,6,6,2,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Canceled,2016-01-19,Winter,2016-02-06T08:00Z +Cancel,155,2016,February,6,6,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,59.4,0,0,Canceled,2016-01-04,Winter,2016-02-06T08:00Z +Keep,94,2016,February,6,6,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,2,Check-Out,2016-02-10,Winter,2016-02-06T08:00Z +Keep,94,2016,February,6,6,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,1,Check-Out,2016-02-10,Winter,2016-02-06T08:00Z +Cancel,81,2016,February,6,6,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.2,0,1,Canceled,2016-01-18,Winter,2016-02-06T08:00Z +Keep,168,2016,February,6,6,2,5,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,36.86,0,1,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Cancel,120,2016,February,6,6,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Canceled,2016-01-04,Winter,2016-02-06T08:00Z +Cancel,8,2016,February,6,6,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Canceled,2016-02-02,Winter,2016-02-06T08:00Z +Cancel,4,2016,February,7,7,2,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,39,0,0,Canceled,2016-02-04,Winter,2016-02-07T08:00Z +Cancel,111,2016,February,7,8,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,0,Canceled,2015-11-11,Winter,2016-02-08T08:00Z +Keep,143,2016,February,7,8,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-02-10,Winter,2016-02-08T08:00Z +Keep,143,2016,February,7,8,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-02-10,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,102,2016,February,7,8,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-02,Winter,2016-02-08T08:00Z +Cancel,5,2016,February,7,8,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,1,No-Show,2016-02-08,Winter,2016-02-08T08:00Z +Keep,117,2016,February,7,8,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,43.4,0,2,Check-Out,2016-02-12,Winter,2016-02-08T08:00Z +Keep,152,2016,February,7,8,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 241, NULL,0,Transient,67.88,1,2,Check-Out,2016-02-12,Winter,2016-02-08T08:00Z +Cancel,32,2016,February,7,8,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,53.44,0,1,Canceled,2016-01-12,Winter,2016-02-08T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,1,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient,50,0,1,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Cancel,103,2016,February,7,9,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Canceled,2016-01-16,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,103,2016,February,7,9,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,52,0,1,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Cancel,312,2016,February,7,9,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.1,0,0,Canceled,2015-09-12,Winter,2016-02-09T08:00Z +Keep,2,2016,February,7,10,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, 371,0,Transient,30,0,2,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,103,2016,February,7,10,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,1,0,Check-Out,2016-02-12,Winter,2016-02-10T08:00Z +Keep,103,2016,February,7,10,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,67.2,1,1,Check-Out,2016-02-13,Winter,2016-02-10T08:00Z +Cancel,39,2016,February,7,10,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Canceled,2016-01-27,Winter,2016-02-10T08:00Z +Cancel,39,2016,February,7,10,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,1,Canceled,2016-01-27,Winter,2016-02-10T08:00Z +Keep,103,2016,February,7,10,2,4,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.1,0,0,Check-Out,2016-02-16,Winter,2016-02-10T08:00Z +Cancel,7,2016,February,7,11,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Canceled,2016-02-04,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,0,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,25,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,27,2016,February,7,11,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,118,0,1,No-Show,2016-02-11,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Keep,230,2016,February,7,11,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,46.8,0,0,Check-Out,2016-02-16,Winter,2016-02-11T08:00Z +Cancel,0,2016,February,7,11,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,40.32,0,0,Canceled,2016-02-11,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,29,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,64,2016,February,7,11,1,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,25,0,0,Canceled,2015-12-30,Winter,2016-02-11T08:00Z +Cancel,2,2016,February,7,12,0,1,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,49.95,0,1,No-Show,2016-02-12,Winter,2016-02-12T08:00Z +Cancel,88,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 134, NULL,0,Transient-Party,94.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,55,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,35,2016,February,7,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-20,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-10,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-10,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-10,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,88,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,151,2016,February,7,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,1,Canceled,2016-02-02,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,88,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 134, NULL,0,Transient-Party,94.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,55,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,25,2016,February,7,12,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2016-01-28,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,88,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Cancel,111,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,70,0,0,Canceled,2016-01-26,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 134, NULL,0,Transient-Party,94.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,112,2016,February,7,12,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-10,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,112,2016,February,7,12,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,68,0,0,Canceled,2016-02-05,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-28,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,140,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,7,2016,February,7,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,82,0,0,Canceled,2016-02-08,Winter,2016-02-12T08:00Z +Cancel,47,2016,February,7,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-19,Winter,2016-02-12T08:00Z +Keep,230,2016,February,7,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,31.88,0,3,Check-Out,2016-02-15,Winter,2016-02-12T08:00Z +Cancel,32,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,78,0,0,Canceled,2016-02-10,Winter,2016-02-13T08:00Z +Cancel,1,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Canceled,2016-02-13,Winter,2016-02-13T08:00Z +Cancel,0,2016,February,7,13,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,107,0,0,Canceled,2016-02-13,Winter,2016-02-13T08:00Z +Cancel,38,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-01-16,Winter,2016-02-13T08:00Z +Cancel,25,2016,February,7,13,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Canceled,2016-02-11,Winter,2016-02-13T08:00Z +Cancel,14,2016,February,7,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-02-01,Winter,2016-02-13T08:00Z +Keep,203,2016,February,7,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,23.7,0,1,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,101,2016,February,7,13,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Cancel,161,2016,February,7,13,6,15,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,77.4,0,1,Canceled,2016-01-18,Winter,2016-02-13T08:00Z +Cancel,20,2016,February,8,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-01-27,Winter,2016-02-14T08:00Z +Keep,103,2016,February,8,14,1,0,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,45,1,1,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Cancel,3,2016,February,8,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,No-Show,2016-02-14,Winter,2016-02-14T08:00Z +Cancel,4,2016,February,8,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,2,Canceled,2016-02-13,Winter,2016-02-14T08:00Z +Cancel,18,2016,February,8,14,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Canceled,2016-02-06,Winter,2016-02-14T08:00Z +Cancel,41,2016,February,8,14,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Canceled,2016-01-14,Winter,2016-02-14T08:00Z +Cancel,46,2016,February,8,14,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,29,0,0,Canceled,2016-01-25,Winter,2016-02-14T08:00Z +Cancel,41,2016,February,8,14,2,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,86.4,0,1,Canceled,2016-01-14,Winter,2016-02-14T08:00Z +Cancel,72,2016,February,8,14,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-01-04,Winter,2016-02-14T08:00Z +Cancel,109,2016,February,8,14,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2015-11-02,Winter,2016-02-14T08:00Z +Keep,117,2016,February,8,14,2,4,2,1,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,61.5,1,2,Check-Out,2016-02-20,Winter,2016-02-14T08:00Z +Cancel,0,2016,February,8,15,0,0,0,0,0,SC,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,P,P,0,No Deposit , NULL, 383,0,Transient,0,0,0,Canceled,2016-02-15,Winter,2016-02-15T08:00Z +Cancel,200,2016,February,8,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Canceled,2015-12-04,Winter,2016-02-15T08:00Z +Keep,133,2016,February,8,15,1,1,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,26.1,0,1,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,133,2016,February,8,15,1,1,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,26.1,1,1,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Cancel,41,2016,February,8,15,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,0,Canceled,2016-02-15,Winter,2016-02-15T08:00Z +Cancel,192,2016,February,8,15,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,3,Canceled,2015-08-17,Winter,2016-02-15T08:00Z +Keep,192,2016,February,8,15,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2016-02-21,Winter,2016-02-15T08:00Z +Keep,188,2016,February,8,15,1,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,59.6,0,3,Check-Out,2016-02-21,Winter,2016-02-15T08:00Z +Cancel,38,2016,February,8,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,0,Canceled,2016-02-11,Winter,2016-02-15T08:00Z +Cancel,118,2016,February,8,15,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,26.1,0,0,Canceled,2015-11-10,Winter,2016-02-15T08:00Z +Keep,232,2016,February,8,16,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,38.81,0,1,Check-Out,2016-02-24,Winter,2016-02-16T08:00Z +Keep,99,2016,February,8,16,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-02-25,Winter,2016-02-16T08:00Z +Keep,131,2016,February,8,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,56.4,1,1,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Cancel,53,2016,February,8,17,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-12-31,Winter,2016-02-17T08:00Z +Cancel,72,2016,February,8,17,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,68,0,2,Canceled,2015-12-20,Winter,2016-02-17T08:00Z +Cancel,44,2016,February,8,17,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-01,Winter,2016-02-17T08:00Z +Cancel,33,2016,February,8,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-01-25,Winter,2016-02-18T08:00Z +Cancel,14,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Canceled,2016-02-19,Winter,2016-02-19T08:00Z +Cancel,69,2016,February,8,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,54.4,0,1,Canceled,2016-02-01,Winter,2016-02-19T08:00Z +Cancel,21,2016,February,8,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-19,Winter,2016-02-19T08:00Z +Cancel,35,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,99,0,0,No-Show,2016-02-19,Winter,2016-02-19T08:00Z +Cancel,2,2016,February,8,19,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-02-18,Winter,2016-02-19T08:00Z +Cancel,34,2016,February,8,19,2,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,118,0,1,Canceled,2016-02-19,Winter,2016-02-19T08:00Z +Keep,150,2016,February,8,19,2,5,1,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,23.93,0,0,Check-Out,2016-02-26,Winter,2016-02-19T08:00Z +Keep,172,2016,February,8,19,2,5,2,0,0,FB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,83.9,0,0,Check-Out,2016-02-26,Winter,2016-02-19T08:00Z +Keep,150,2016,February,8,19,2,5,1,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,22.5,0,0,Check-Out,2016-02-26,Winter,2016-02-19T08:00Z +Cancel,10,2016,February,8,19,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,29,0,0,Canceled,2016-02-10,Winter,2016-02-19T08:00Z +Cancel,29,2016,February,8,20,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,78,0,2,Canceled,2016-01-23,Winter,2016-02-20T08:00Z +Cancel,1,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,52.36,0,1,No-Show,2016-02-20,Winter,2016-02-20T08:00Z +Cancel,5,2016,February,8,20,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,No-Show,2016-02-20,Winter,2016-02-20T08:00Z +Cancel,26,2016,February,8,20,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63,0,1,Canceled,2016-02-04,Winter,2016-02-20T08:00Z +Cancel,100,2016,February,8,20,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,38.32,0,2,Canceled,2016-02-08,Winter,2016-02-20T08:00Z +Keep,100,2016,February,8,20,2,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,38.32,0,1,Check-Out,2016-02-23,Winter,2016-02-20T08:00Z +Cancel,55,2016,February,8,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-01-04,Winter,2016-02-20T08:00Z +Keep,108,2016,February,8,20,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient-Party,63.9,0,1,Check-Out,2016-03-05,Winter,2016-02-20T08:00Z +Keep,108,2016,February,8,20,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient-Party,63.9,0,1,Check-Out,2016-03-05,Winter,2016-02-20T08:00Z +Cancel,31,2016,February,9,21,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Canceled,2016-02-17,Winter,2016-02-21T08:00Z +Cancel,38,2016,February,9,21,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,68.8,0,0,Canceled,2016-02-10,Winter,2016-02-21T08:00Z +Cancel,11,2016,February,9,21,2,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,151,0,0,Canceled,2016-02-10,Winter,2016-02-21T08:00Z +Cancel,85,2016,February,9,21,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,63,0,0,Canceled,2016-01-20,Winter,2016-02-21T08:00Z +Cancel,3,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Canceled,2016-02-22,Winter,2016-02-22T08:00Z +Cancel,24,2016,February,9,22,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,2,Canceled,2016-01-29,Winter,2016-02-22T08:00Z +Cancel,24,2016,February,9,22,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,2,Canceled,2016-01-29,Winter,2016-02-22T08:00Z +Keep,187,2016,February,9,22,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,65.9,0,0,Check-Out,2016-02-27,Winter,2016-02-22T08:00Z +Keep,117,2016,February,9,22,3,7,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,24.5,0,1,Check-Out,2016-03-03,Winter,2016-02-22T08:00Z +Keep,117,2016,February,9,22,3,7,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,22.5,0,1,Check-Out,2016-03-03,Winter,2016-02-22T08:00Z +Cancel,78,2016,February,9,23,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,2,Canceled,2016-02-10,Winter,2016-02-23T08:00Z +Cancel,45,2016,February,9,23,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,0,Canceled,2016-01-28,Winter,2016-02-23T08:00Z +Cancel,8,2016,February,9,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 86,0,Transient,38,0,0,Canceled,2016-02-16,Winter,2016-02-24T08:00Z +Cancel,9,2016,February,9,24,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-02-22,Winter,2016-02-24T08:00Z +Cancel,26,2016,February,9,24,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-02-09,Winter,2016-02-24T08:00Z +Cancel,1,2016,February,9,25,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,60,0,1,No-Show,2016-02-25,Winter,2016-02-25T08:00Z +Cancel,1,2016,February,9,25,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,60,0,1,No-Show,2016-02-25,Winter,2016-02-25T08:00Z +Cancel,16,2016,February,9,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-02-15,Winter,2016-02-25T08:00Z +Cancel,44,2016,February,9,25,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,80.44,0,0,Canceled,2016-01-19,Winter,2016-02-25T08:00Z +Keep,709,2016,February,9,25,8,20,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-03-24,Winter,2016-02-25T08:00Z +Cancel,73,2016,February,9,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-04,Winter,2016-02-26T08:00Z +Cancel,73,2016,February,9,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-04,Winter,2016-02-26T08:00Z +Cancel,24,2016,February,9,26,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-02-15,Winter,2016-02-26T08:00Z +Cancel,36,2016,February,9,26,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,2,Canceled,2016-01-22,Winter,2016-02-26T08:00Z +Cancel,50,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,0,Canceled,2016-02-02,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,30,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,3,Canceled,2016-02-21,Winter,2016-02-26T08:00Z +Cancel,45,2016,February,9,26,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,52.8,0,1,Canceled,2016-01-23,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,81,2016,February,9,26,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2015-12-26,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,36,2016,February,9,26,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,2,Canceled,2016-01-22,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Cancel,74,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,70,0,0,Canceled,2016-01-21,Winter,2016-02-26T08:00Z +Keep,211,2016,February,9,26,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,25.11,0,2,Check-Out,2016-03-04,Winter,2016-02-26T08:00Z +Cancel,53,2016,February,9,26,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-05,Winter,2016-02-26T08:00Z +Cancel,135,2016,February,9,26,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,0,Canceled,2015-10-30,Winter,2016-02-26T08:00Z +Cancel,53,2016,February,9,26,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-05,Winter,2016-02-26T08:00Z +Cancel,69,2016,February,9,27,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-12-26,Winter,2016-02-27T08:00Z +Cancel,12,2016,February,9,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-02-25,Winter,2016-02-27T08:00Z +Cancel,0,2016,February,9,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Canceled,2016-02-27,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,74,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-11,Winter,2016-02-27T08:00Z +Cancel,44,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-02,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,123,2016,February,9,27,1,1,2,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2016-02-24,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,123,2016,February,9,27,1,1,2,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2016-02-24,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,42,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-02-03,Winter,2016-02-27T08:00Z +Cancel,46,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,2,Canceled,2016-01-15,Winter,2016-02-27T08:00Z +Cancel,74,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-11,Winter,2016-02-27T08:00Z +Cancel,44,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-02,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,123,2016,February,9,27,1,1,2,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Canceled,2016-02-24,Winter,2016-02-27T08:00Z +Cancel,44,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-02,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,74,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-11,Winter,2016-02-27T08:00Z +Cancel,82,2016,February,9,27,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Canceled,2016-01-25,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,123,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Cancel,5,2016,February,9,27,1,1,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,85,0,0,Canceled,2016-02-27,Winter,2016-02-27T08:00Z +Cancel,42,2016,February,9,27,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,3,No-Show,2016-02-27,Winter,2016-02-27T08:00Z +Cancel,120,2016,February,9,27,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,31.59,0,0,Canceled,2016-01-04,Winter,2016-02-27T08:00Z +Cancel,119,2016,February,9,27,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,35.1,0,0,Canceled,2016-01-04,Winter,2016-02-27T08:00Z +Cancel,44,2016,February,10,28,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-02-22,Winter,2016-02-28T08:00Z +Cancel,40,2016,February,10,28,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,79.33,0,0,Canceled,2016-01-20,Winter,2016-02-28T08:00Z +Cancel,41,2016,February,10,28,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,43,0,0,Canceled,2016-02-27,Winter,2016-02-28T08:00Z +Cancel,59,2016,February,10,28,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,86.57,0,1,Canceled,2016-02-18,Winter,2016-02-28T08:00Z +Cancel,32,2016,February,10,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-01-29,Winter,2016-02-28T08:00Z +Cancel,19,2016,February,10,28,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-02-19,Winter,2016-02-28T08:00Z +Cancel,28,2016,February,10,29,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55.2,0,1,Canceled,2016-02-17,Winter,2016-02-29T08:00Z +Cancel,138,2016,February,10,29,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Canceled,2015-12-31,Winter,2016-02-29T08:00Z +Cancel,40,2016,February,10,29,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-01-23,Winter,2016-02-29T08:00Z +Cancel,15,2016,March,10,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,No-Show,2016-03-01,Spring,2016-03-01T08:00Z +Cancel,144,2016,March,10,1,0,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,70,0,2,Canceled,2016-01-12,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,78,0,0,Canceled,2016-02-27,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,45,2016,March,10,1,0,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-01T08:00Z +Cancel,33,2016,March,10,1,2,6,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-02-25,Spring,2016-03-01T08:00Z +Cancel,57,2016,March,10,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-15,Spring,2016-03-01T08:00Z +Cancel,33,2016,March,10,1,2,6,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Canceled,2016-02-25,Spring,2016-03-01T08:00Z +Cancel,61,2016,March,10,1,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Canceled,2016-01-06,Spring,2016-03-01T08:00Z +Cancel,0,2016,March,10,2,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,No-Show,2016-03-02,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,118,2016,March,10,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.26,0,0,Canceled,2016-01-27,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Cancel,219,2016,March,10,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 310, NULL,0,Transient,52,0,0,Canceled,2015-11-20,Spring,2016-03-02T08:00Z +Keep,131,2016,March,10,2,8,20,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,31.45,0,1,Check-Out,2016-03-30,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 286,0,Transient,30,0,0,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Cancel,7,2016,March,10,3,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,43,0,1,No-Show,2016-03-03,Spring,2016-03-03T08:00Z +Cancel,7,2016,March,10,3,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,43,0,1,No-Show,2016-03-03,Spring,2016-03-03T08:00Z +Cancel,2,2016,March,10,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,0,1,No-Show,2016-03-04,Spring,2016-03-04T08:00Z +Cancel,30,2016,March,10,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-02-09,Spring,2016-03-04T08:00Z +Cancel,0,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-04,Spring,2016-03-04T08:00Z +Cancel,0,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-04,Spring,2016-03-04T08:00Z +Cancel,52,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,No-Show,2016-03-04,Spring,2016-03-04T08:00Z +Cancel,30,2016,March,10,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-02-09,Spring,2016-03-04T08:00Z +Cancel,0,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-03-04,Spring,2016-03-04T08:00Z +Cancel,29,2016,March,10,4,2,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Canceled,2016-03-03,Spring,2016-03-04T08:00Z +Cancel,58,2016,March,10,4,3,7,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-01-08,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,162,2016,March,10,4,6,15,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,82,0,0,Canceled,2015-11-03,Spring,2016-03-04T08:00Z +Cancel,50,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-02-03,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,No-Show,2016-03-05,Spring,2016-03-05T08:00Z +Cancel,38,2016,March,10,5,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-02-22,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,38,2016,March,10,5,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Canceled,2016-02-22,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-20,Spring,2016-03-05T08:00Z +Cancel,19,2016,March,10,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-02-20,Spring,2016-03-05T08:00Z +Cancel,11,2016,March,11,7,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 82,0,Transient,35,0,0,No-Show,2016-03-07,Spring,2016-03-07T08:00Z +Cancel,3,2016,March,11,7,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,25,0,0,Canceled,2016-03-07,Spring,2016-03-07T08:00Z +Cancel,196,2016,March,11,7,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,2,Canceled,2015-08-31,Spring,2016-03-07T08:00Z +Cancel,196,2016,March,11,7,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,2,Canceled,2015-08-31,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Cancel,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68.4,0,0,Canceled,2016-03-01,Spring,2016-03-07T08:00Z +Keep,119,2016,March,11,7,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-03-14,Spring,2016-03-07T08:00Z +Cancel,67,2016,March,11,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-02-19,Spring,2016-03-07T08:00Z +Keep,157,2016,March,11,7,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,63.9,0,0,Check-Out,2016-03-21,Spring,2016-03-07T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Cancel,12,2016,March,11,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 82,0,Transient,30,0,0,Canceled,2016-02-29,Spring,2016-03-08T08:00Z +Keep,190,2016,March,11,8,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,2,Check-Out,2016-03-12,Spring,2016-03-08T08:00Z +Keep,190,2016,March,11,8,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,1,2,Check-Out,2016-03-12,Spring,2016-03-08T08:00Z +Keep,259,2016,March,11,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 2, NULL,0,Contract,26.1,0,0,Check-Out,2016-03-22,Spring,2016-03-08T08:00Z +Cancel,81,2016,March,11,9,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,81,2016,March,11,9,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,81,2016,March,11,9,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,81,2016,March,11,9,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,15,2016,March,11,9,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,81,2016,March,11,9,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,59,0,0,Canceled,2016-02-25,Spring,2016-03-09T08:00Z +Cancel,26,2016,March,11,9,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,40.8,0,0,Canceled,2016-03-07,Spring,2016-03-09T08:00Z +Cancel,32,2016,March,11,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,40.8,0,0,Canceled,2016-02-16,Spring,2016-03-09T08:00Z +Cancel,49,2016,March,11,9,2,9,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,63,0,0,Canceled,2016-01-21,Spring,2016-03-09T08:00Z +Cancel,6,2016,March,11,10,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,58,0,0,Canceled,2016-03-04,Spring,2016-03-10T08:00Z +Cancel,6,2016,March,11,10,0,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,58,0,0,Canceled,2016-03-04,Spring,2016-03-10T08:00Z +Cancel,36,2016,March,11,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-03-01,Spring,2016-03-10T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-10,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-10,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-10,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-10,Spring,2016-03-11T08:00Z +Cancel,50,2016,March,11,11,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-03-03,Spring,2016-03-11T08:00Z +Cancel,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-11T08:00Z +Cancel,22,2016,March,11,11,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-02-29,Spring,2016-03-11T08:00Z +Cancel,22,2016,March,11,11,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-02-29,Spring,2016-03-11T08:00Z +Cancel,7,2016,March,11,11,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,40,0,0,Canceled,2016-03-04,Spring,2016-03-11T08:00Z +Cancel,24,2016,March,11,11,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-02-29,Spring,2016-03-11T08:00Z +Cancel,228,2016,March,11,11,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,39.1,0,1,No-Show,2016-03-11,Spring,2016-03-11T08:00Z +Cancel,51,2016,March,11,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-26,Spring,2016-03-11T08:00Z +Cancel,31,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-04,Spring,2016-03-12T08:00Z +Cancel,31,2016,March,11,12,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-12T08:00Z +Cancel,31,2016,March,11,12,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-12T08:00Z +Cancel,31,2016,March,11,12,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 375, NULL,0,Transient-Party,25,0,0,Canceled,2016-03-02,Spring,2016-03-12T08:00Z +Cancel,65,2016,March,11,12,2,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Contract,34.2,0,0,Canceled,2016-01-29,Spring,2016-03-12T08:00Z +Cancel,65,2016,March,11,12,2,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Contract,34.2,0,0,Canceled,2016-01-29,Spring,2016-03-12T08:00Z +Cancel,65,2016,March,11,12,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Contract,49.5,0,0,Canceled,2016-01-29,Spring,2016-03-12T08:00Z +Cancel,65,2016,March,11,12,2,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Contract,34.2,0,0,Canceled,2016-01-29,Spring,2016-03-12T08:00Z +Cancel,54,2016,March,11,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,29,0,0,Canceled,2016-02-23,Spring,2016-03-12T08:00Z +Cancel,44,2016,March,12,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-02-29,Spring,2016-03-13T08:00Z +Cancel,153,2016,March,12,13,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Canceled,2016-02-25,Spring,2016-03-13T08:00Z +Cancel,153,2016,March,12,13,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Canceled,2016-02-25,Spring,2016-03-13T08:00Z +Cancel,25,2016,March,12,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,46.4,0,1,Canceled,2016-03-08,Spring,2016-03-13T08:00Z +Keep,130,2016,March,12,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,27.81,0,0,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Cancel,0,2016,March,12,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 218,0,Transient,40,0,0,Canceled,2016-03-14,Spring,2016-03-14T07:00Z +Cancel,45,2016,March,12,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-02-29,Spring,2016-03-14T07:00Z +Cancel,85,2016,March,12,14,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,0,Canceled,2016-01-05,Spring,2016-03-14T07:00Z +Cancel,14,2016,March,12,14,3,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Canceled,2016-03-03,Spring,2016-03-14T07:00Z +Cancel,14,2016,March,12,14,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-03-03,Spring,2016-03-14T07:00Z +Cancel,145,2016,March,12,14,3,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,0,0,Canceled,2015-10-21,Spring,2016-03-14T07:00Z +Cancel,110,2016,March,12,14,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65.31,0,0,Canceled,2016-02-22,Spring,2016-03-14T07:00Z +Cancel,0,2016,March,12,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,0,Canceled,2016-03-15,Spring,2016-03-15T07:00Z +Cancel,46,2016,March,12,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-02-29,Spring,2016-03-15T07:00Z +Keep,1,2016,March,12,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,132,2016,March,12,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Cancel,14,2016,March,12,15,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45,0,0,Canceled,2016-03-05,Spring,2016-03-15T07:00Z +Cancel,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,30,0,0,Canceled,2016-03-16,Spring,2016-03-16T07:00Z +Cancel,9,2016,March,12,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,0,0,Canceled,2016-03-07,Spring,2016-03-16T07:00Z +Keep,176,2016,March,12,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,42.45,1,1,Check-Out,2016-03-19,Spring,2016-03-16T07:00Z +Cancel,15,2016,March,12,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45,0,0,Canceled,2016-03-07,Spring,2016-03-16T07:00Z +Keep,250,2016,March,12,16,2,9,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,60.74,0,1,Check-Out,2016-03-27,Spring,2016-03-16T07:00Z +Cancel,3,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 126, NULL,0,Transient-Party,36,0,0,Canceled,2016-03-15,Spring,2016-03-17T07:00Z +Keep,1,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Cancel,2,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,30,0,0,Canceled,2016-03-16,Spring,2016-03-17T07:00Z +Cancel,51,2016,March,12,17,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 66, NULL,0,Transient-Party,26,0,0,Canceled,2016-02-17,Spring,2016-03-17T07:00Z +Cancel,30,2016,March,12,17,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-02-24,Spring,2016-03-17T07:00Z +Cancel,24,2016,March,12,17,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Canceled,2016-02-27,Spring,2016-03-17T07:00Z +Cancel,56,2016,March,12,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-01-26,Spring,2016-03-17T07:00Z +Keep,148,2016,March,12,17,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,0,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Cancel,66,2016,March,12,17,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60.64,0,0,Canceled,2016-03-16,Spring,2016-03-17T07:00Z +Cancel,105,2016,March,12,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-14,Spring,2016-03-18T07:00Z +Cancel,22,2016,March,12,18,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-03-09,Spring,2016-03-18T07:00Z +Cancel,45,2016,March,12,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-03-04,Spring,2016-03-18T07:00Z +Cancel,7,2016,March,12,18,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-03-15,Spring,2016-03-18T07:00Z +Cancel,63,2016,March,12,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-01-20,Spring,2016-03-18T07:00Z +Cancel,7,2016,March,12,18,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-03-11,Spring,2016-03-18T07:00Z +Cancel,35,2016,March,12,18,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-02-15,Spring,2016-03-18T07:00Z +Keep,133,2016,March,12,18,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,32,1,0,Check-Out,2016-03-22,Spring,2016-03-18T07:00Z +Cancel,25,2016,March,12,18,2,4,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,38,0,0,Canceled,2016-03-12,Spring,2016-03-18T07:00Z +Keep,157,2016,March,12,18,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.68,0,2,Check-Out,2016-03-26,Spring,2016-03-18T07:00Z +Cancel,129,2016,March,12,18,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,102.33,0,0,Canceled,2015-12-29,Spring,2016-03-18T07:00Z +Keep,167,2016,March,12,18,4,9,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-31,Spring,2016-03-18T07:00Z +Keep,143,2016,March,12,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Cancel,17,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Canceled,2016-03-04,Spring,2016-03-19T07:00Z +Cancel,18,2016,March,12,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-03-01,Spring,2016-03-19T07:00Z +Cancel,1,2016,March,12,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,53,0,0,No-Show,2016-03-19,Spring,2016-03-19T07:00Z +Cancel,14,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Canceled,2016-03-05,Spring,2016-03-19T07:00Z +Cancel,23,2016,March,12,19,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-03-01,Spring,2016-03-19T07:00Z +Cancel,57,2016,March,12,19,1,1,3,1,0,BB,PRT,Complementary,Direct, 0,0,0,C,G,0,No Deposit , NULL, NULL,0,Transient,20,0,0,Canceled,2016-03-14,Spring,2016-03-19T07:00Z +Cancel,45,2016,March,12,19,2,1,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,65.65,0,0,Canceled,2016-02-04,Spring,2016-03-19T07:00Z +Cancel,30,2016,March,12,19,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,55,0,0,Canceled,2016-02-23,Spring,2016-03-19T07:00Z +Cancel,30,2016,March,12,19,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,55,0,0,Canceled,2016-02-23,Spring,2016-03-19T07:00Z +Cancel,61,2016,March,12,19,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,25,0,0,Canceled,2016-01-19,Spring,2016-03-19T07:00Z +Cancel,30,2016,March,12,19,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,55,0,0,Canceled,2016-02-23,Spring,2016-03-19T07:00Z +Cancel,30,2016,March,12,19,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,55,0,0,Canceled,2016-02-23,Spring,2016-03-19T07:00Z +Cancel,73,2016,March,12,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,3,Canceled,2016-02-01,Spring,2016-03-19T07:00Z +Cancel,31,2016,March,12,19,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Canceled,2016-02-18,Spring,2016-03-19T07:00Z +Cancel,197,2016,March,12,19,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,77.4,0,3,Canceled,2015-09-04,Spring,2016-03-19T07:00Z +Cancel,17,2016,March,12,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-03-04,Spring,2016-03-19T07:00Z +Cancel,17,2016,March,12,19,2,3,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Canceled,2016-03-18,Spring,2016-03-19T07:00Z +Keep,154,2016,March,12,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,25.65,0,0,Check-Out,2016-03-26,Spring,2016-03-19T07:00Z +Keep,166,2016,March,12,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,42.5,0,0,Check-Out,2016-03-26,Spring,2016-03-19T07:00Z +Cancel,201,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.54,0,1,Canceled,2015-09-01,Spring,2016-03-19T07:00Z +Cancel,151,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-02-29,Spring,2016-03-19T07:00Z +Cancel,186,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.33,0,2,Canceled,2016-02-17,Spring,2016-03-19T07:00Z +Cancel,201,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.54,0,1,Canceled,2016-02-13,Spring,2016-03-19T07:00Z +Cancel,185,2016,March,12,19,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-02-13,Spring,2016-03-19T07:00Z +Cancel,199,2016,March,12,19,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.01,0,0,Canceled,2016-02-15,Spring,2016-03-19T07:00Z +Cancel,180,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.33,0,1,Canceled,2016-02-13,Spring,2016-03-19T07:00Z +Cancel,201,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.54,0,0,Canceled,2016-02-22,Spring,2016-03-19T07:00Z +Cancel,35,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62.86,0,2,Canceled,2016-02-15,Spring,2016-03-19T07:00Z +Cancel,186,2016,March,12,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.33,0,2,Canceled,2016-02-17,Spring,2016-03-19T07:00Z +Cancel,66,2016,March,12,19,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,82.73,0,1,Canceled,2016-01-15,Spring,2016-03-19T07:00Z +Cancel,23,2016,March,12,19,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-02-25,Spring,2016-03-19T07:00Z +Cancel,19,2016,March,12,19,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70.17,0,1,Canceled,2016-03-02,Spring,2016-03-19T07:00Z +Cancel,11,2016,March,13,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient,40,0,0,Canceled,2016-03-19,Spring,2016-03-20T07:00Z +Cancel,9,2016,March,13,20,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-03-14,Spring,2016-03-20T07:00Z +Cancel,20,2016,March,13,20,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-02-29,Spring,2016-03-20T07:00Z +Cancel,20,2016,March,13,20,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-02-29,Spring,2016-03-20T07:00Z +Keep,135,2016,March,13,20,2,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,67.4,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Cancel,93,2016,March,13,20,2,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,96,0,0,Canceled,2016-02-15,Spring,2016-03-20T07:00Z +Cancel,19,2016,March,13,20,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,29,0,0,Canceled,2016-03-01,Spring,2016-03-20T07:00Z +Keep,135,2016,March,13,20,2,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,73.4,1,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Cancel,33,2016,March,13,20,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,71.28,0,1,Canceled,2016-03-15,Spring,2016-03-20T07:00Z +Cancel,99,2016,March,13,20,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,110.6,0,0,Canceled,2015-12-18,Spring,2016-03-20T07:00Z +Cancel,34,2016,March,13,20,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,106.4,0,0,Canceled,2016-03-07,Spring,2016-03-20T07:00Z +Keep,177,2016,March,13,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,43.25,0,1,Check-Out,2016-03-26,Spring,2016-03-20T07:00Z +Cancel,16,2016,March,13,20,2,4,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 387, NULL,0,Transient,105,0,0,Canceled,2016-03-09,Spring,2016-03-20T07:00Z +Keep,207,2016,March,13,20,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,70.91,0,0,Check-Out,2016-03-27,Spring,2016-03-20T07:00Z +Cancel,202,2016,March,13,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.11,0,2,Canceled,2015-09-01,Spring,2016-03-20T07:00Z +Cancel,202,2016,March,13,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.11,0,1,Canceled,2015-09-01,Spring,2016-03-20T07:00Z +Cancel,108,2016,March,13,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-01-04,Spring,2016-03-21T07:00Z +Cancel,38,2016,March,13,21,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-02-22,Spring,2016-03-21T07:00Z +Cancel,18,2016,March,13,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.25,0,0,Canceled,2016-03-08,Spring,2016-03-21T07:00Z +Cancel,20,2016,March,13,21,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Canceled,2016-03-21,Spring,2016-03-21T07:00Z +Cancel,20,2016,March,13,21,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Canceled,2016-03-21,Spring,2016-03-21T07:00Z +Cancel,27,2016,March,13,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,55.63,0,1,Canceled,2016-03-03,Spring,2016-03-21T07:00Z +Cancel,18,2016,March,13,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.25,0,0,Canceled,2016-03-08,Spring,2016-03-21T07:00Z +Cancel,39,2016,March,13,21,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,96.8,0,0,Canceled,2016-03-05,Spring,2016-03-21T07:00Z +Cancel,39,2016,March,13,21,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.8,0,0,Canceled,2016-03-05,Spring,2016-03-21T07:00Z +Cancel,66,2016,March,13,21,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,0,Canceled,2016-01-16,Spring,2016-03-21T07:00Z +Keep,194,2016,March,13,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,39.27,0,2,Check-Out,2016-03-28,Spring,2016-03-21T07:00Z +Cancel,203,2016,March,13,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.69,0,0,Canceled,2015-09-01,Spring,2016-03-21T07:00Z +Cancel,206,2016,March,13,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.69,0,1,Canceled,2015-08-31,Spring,2016-03-21T07:00Z +Cancel,203,2016,March,13,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.69,0,0,Canceled,2015-09-01,Spring,2016-03-21T07:00Z +Cancel,18,2016,March,13,22,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-07,Spring,2016-03-22T07:00Z +Cancel,9,2016,March,13,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-20,Spring,2016-03-22T07:00Z +Cancel,238,2016,March,13,22,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.4,0,2,Canceled,2015-08-15,Spring,2016-03-22T07:00Z +Cancel,82,2016,March,13,22,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.67,0,1,Canceled,2016-01-06,Spring,2016-03-22T07:00Z +Cancel,238,2016,March,13,22,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.4,0,2,Canceled,2015-08-15,Spring,2016-03-22T07:00Z +Cancel,238,2016,March,13,22,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.4,0,2,Canceled,2015-08-15,Spring,2016-03-22T07:00Z +Cancel,36,2016,March,13,22,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110.2,0,1,Canceled,2016-02-24,Spring,2016-03-22T07:00Z +Cancel,60,2016,March,13,22,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83.4,0,1,Canceled,2016-02-13,Spring,2016-03-22T07:00Z +Keep,140,2016,March,13,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,52.68,1,0,Check-Out,2016-03-29,Spring,2016-03-22T07:00Z +Keep,153,2016,March,13,22,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.9,0,1,Check-Out,2016-03-30,Spring,2016-03-22T07:00Z +Keep,146,2016,March,13,22,2,8,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,85.72,0,1,Check-Out,2016-04-01,Spring,2016-03-22T07:00Z +Keep,138,2016,March,13,23,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,H,1,No Deposit , 314, NULL,0,Transient,42.67,0,0,Check-Out,2016-03-26,Spring,2016-03-23T07:00Z +Cancel,50,2016,March,13,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87.75,0,2,Canceled,2016-02-12,Spring,2016-03-23T07:00Z +Cancel,65,2016,March,13,23,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,0,0,Canceled,2016-03-01,Spring,2016-03-23T07:00Z +Cancel,50,2016,March,13,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87.75,0,2,Canceled,2016-02-12,Spring,2016-03-23T07:00Z +Cancel,12,2016,March,13,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,85.75,0,0,Canceled,2016-03-14,Spring,2016-03-23T07:00Z +Cancel,41,2016,March,13,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76.5,0,0,Canceled,2016-02-15,Spring,2016-03-23T07:00Z +Keep,141,2016,March,13,24,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-03-24,Spring,2016-03-24T07:00Z +Cancel,11,2016,March,13,24,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,No-Show,2016-03-24,Spring,2016-03-24T07:00Z +Cancel,70,2016,March,13,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,2,Canceled,2016-03-10,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,113.4,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 387, NULL,0,Transient-Party,62,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 387, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,147,2016,March,13,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.4,0,1,Canceled,2015-12-20,Spring,2016-03-24T07:00Z +Cancel,43,2016,March,13,24,0,3,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,81,0,0,Canceled,2016-03-17,Spring,2016-03-24T07:00Z +Cancel,69,2016,March,13,24,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2016-02-26,Spring,2016-03-24T07:00Z +Cancel,152,2016,March,13,24,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,2,Canceled,2015-12-19,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,136,2016,March,13,24,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,46,0,0,Canceled,2015-11-09,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,42,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,3,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,113.4,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,79,2016,March,13,24,0,3,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,91,0,0,Canceled,2016-03-14,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,58,2016,March,13,24,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2016-01-27,Spring,2016-03-24T07:00Z +Cancel,57,2016,March,13,24,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,95,0,1,Canceled,2016-01-28,Spring,2016-03-24T07:00Z +Cancel,59,2016,March,13,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Canceled,2016-01-30,Spring,2016-03-24T07:00Z +Cancel,3,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Canceled,2016-03-21,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,13,2016,March,13,24,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,92,0,0,Canceled,2016-03-23,Spring,2016-03-24T07:00Z +Cancel,56,2016,March,13,24,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,110,0,0,Canceled,2016-02-03,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,21,0,0,Canceled,2016-03-21,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,37,2016,March,13,24,0,3,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,81,0,0,Canceled,2016-03-17,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,42,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,3,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,113.4,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 387, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,57,2016,March,13,24,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2016-01-29,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,136,2016,March,13,24,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,46,0,0,Canceled,2015-11-09,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,3,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,113.4,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,136,2016,March,13,24,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,38,0,0,Canceled,2015-11-09,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 387, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,42,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,0,3,3,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 387, NULL,0,Transient-Party,113.4,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Keep,136,2016,March,13,24,1,3,2,0,0,SC,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 387, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Cancel,41,2016,March,13,24,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102.75,0,1,Canceled,2016-03-02,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,77,2016,March,13,24,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,70.8,0,1,Canceled,2016-03-14,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,36,2016,March,13,24,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.75,0,1,Canceled,2016-03-19,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,69,2016,March,13,24,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,49.22,0,0,Canceled,2016-01-15,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,63,2016,March,13,24,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,74,0,2,Canceled,2016-03-01,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Keep,162,2016,March,13,24,1,3,2,0,0,SC,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 387, NULL,0,Transient-Party,63,0,0,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,106,2016,March,13,24,1,3,2,0,0,FB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-22,Spring,2016-03-24T07:00Z +Cancel,69,2016,March,13,24,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,0,0,Canceled,2016-03-09,Spring,2016-03-24T07:00Z +Cancel,66,2016,March,13,24,2,8,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,99.7,0,0,Canceled,2016-03-01,Spring,2016-03-24T07:00Z +Cancel,5,2016,March,13,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107,0,0,Canceled,2016-03-20,Spring,2016-03-25T07:00Z +Cancel,67,2016,March,13,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2016-03-12,Spring,2016-03-25T07:00Z +Cancel,127,2016,March,13,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,47,0,0,Canceled,2016-01-21,Spring,2016-03-25T07:00Z +Keep,192,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Cancel,199,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.36,0,1,Canceled,2016-03-12,Spring,2016-03-25T07:00Z +Cancel,199,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.36,0,1,Canceled,2016-03-12,Spring,2016-03-25T07:00Z +Keep,192,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Cancel,49,2016,March,13,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.75,0,0,Canceled,2016-03-23,Spring,2016-03-25T07:00Z +Cancel,64,2016,March,13,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Canceled,2016-02-15,Spring,2016-03-25T07:00Z +Keep,142,2016,March,13,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,43.7,0,0,Check-Out,2016-04-01,Spring,2016-03-25T07:00Z +Cancel,60,2016,March,13,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,70.11,0,1,Canceled,2016-01-27,Spring,2016-03-25T07:00Z +Keep,149,2016,March,13,25,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,47.97,0,0,Check-Out,2016-04-02,Spring,2016-03-25T07:00Z +Cancel,40,2016,March,13,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-02-22,Spring,2016-03-26T07:00Z +Cancel,40,2016,March,13,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,73.67,0,0,Canceled,2016-03-15,Spring,2016-03-26T07:00Z +Cancel,58,2016,March,13,26,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95.67,0,0,Canceled,2016-03-15,Spring,2016-03-26T07:00Z +Cancel,33,2016,March,13,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,73.29,0,0,No-Show,2016-03-26,Spring,2016-03-26T07:00Z +Cancel,110,2016,March,13,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.63,0,1,Canceled,2016-01-21,Spring,2016-03-26T07:00Z +Cancel,78,2016,March,14,27,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-02-03,Spring,2016-03-27T07:00Z +Cancel,10,2016,March,14,27,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,105,0,2,Canceled,2016-03-25,Spring,2016-03-27T07:00Z +Cancel,21,2016,March,14,27,2,0,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2016-03-13,Spring,2016-03-27T07:00Z +Cancel,24,2016,March,14,27,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-03-04,Spring,2016-03-27T07:00Z +Cancel,148,2016,March,14,27,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,90,0,1,Canceled,2016-01-06,Spring,2016-03-27T07:00Z +Cancel,92,2016,March,14,27,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,96,0,0,Canceled,2016-01-25,Spring,2016-03-27T07:00Z +Cancel,20,2016,March,14,27,2,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2016-03-21,Spring,2016-03-27T07:00Z +Cancel,108,2016,March,14,27,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-03-09,Spring,2016-03-27T07:00Z +Cancel,67,2016,March,14,27,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,50.67,0,0,Canceled,2016-01-25,Spring,2016-03-27T07:00Z +Cancel,143,2016,March,14,27,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,45.6,0,2,Canceled,2016-02-05,Spring,2016-03-27T07:00Z +Cancel,62,2016,March,14,27,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,69.33,0,2,Canceled,2016-01-28,Spring,2016-03-27T07:00Z +Cancel,143,2016,March,14,27,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,45.6,0,2,Canceled,2016-02-05,Spring,2016-03-27T07:00Z +Cancel,62,2016,March,14,27,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,90.17,0,2,Canceled,2016-01-28,Spring,2016-03-27T07:00Z +Cancel,20,2016,March,14,28,1,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-03-16,Spring,2016-03-28T07:00Z +Cancel,22,2016,March,14,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-03-15,Spring,2016-03-28T07:00Z +Cancel,45,2016,March,14,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-24,Spring,2016-03-28T07:00Z +Cancel,45,2016,March,14,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,96,0,0,No-Show,2016-03-28,Spring,2016-03-28T07:00Z +Cancel,76,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-02-17,Spring,2016-03-28T07:00Z +Cancel,38,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-03-14,Spring,2016-03-28T07:00Z +Cancel,73,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-26,Spring,2016-03-28T07:00Z +Cancel,74,2016,March,14,28,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,40,0,0,No-Show,2016-03-28,Spring,2016-03-28T07:00Z +Cancel,79,2016,March,14,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50,0,1,Canceled,2016-01-12,Spring,2016-03-28T07:00Z +Cancel,66,2016,March,14,28,1,4,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,80.16,0,2,Canceled,2016-03-28,Spring,2016-03-28T07:00Z +Cancel,66,2016,March,14,28,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52,0,2,Canceled,2016-02-03,Spring,2016-03-28T07:00Z +Cancel,66,2016,March,14,28,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,2,Canceled,2016-02-03,Spring,2016-03-28T07:00Z +Cancel,24,2016,March,14,28,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Cancel,24,2016,March,14,28,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Cancel,2,2016,March,14,28,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35.14,0,0,Canceled,2016-03-26,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Cancel,24,2016,March,14,28,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Cancel,147,2016,March,14,28,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Cancel,2,2016,March,14,28,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,88.84,0,0,Canceled,2016-03-28,Spring,2016-03-28T07:00Z +Cancel,2,2016,March,14,28,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60.84,0,0,Canceled,2016-03-28,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Cancel,147,2016,March,14,28,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Cancel,24,2016,March,14,28,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Canceled,2016-03-04,Spring,2016-03-28T07:00Z +Keep,147,2016,March,14,28,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,73,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Cancel,29,2016,March,14,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-03-03,Spring,2016-03-29T07:00Z +Cancel,29,2016,March,14,29,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.5,0,0,Canceled,2016-03-08,Spring,2016-03-29T07:00Z +Cancel,53,2016,March,14,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2016-03-28,Spring,2016-03-29T07:00Z +Keep,167,2016,March,14,29,1,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-29T07:00Z +Cancel,36,2016,March,14,29,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-03-29,Spring,2016-03-29T07:00Z +Cancel,36,2016,March,14,29,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105.22,0,1,Canceled,2016-03-28,Spring,2016-03-29T07:00Z +Cancel,43,2016,March,14,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-02-17,Spring,2016-03-30T07:00Z +Cancel,2,2016,March,14,30,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 31,0,Transient,42,0,0,No-Show,2016-03-30,Spring,2016-03-30T07:00Z +Cancel,2,2016,March,14,30,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 31,0,Transient,42,0,0,No-Show,2016-03-30,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,0,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,0,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,4,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,0,4,1,0,0,BB,DEU,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,1,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,83.5,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,F,2,No Deposit , NULL, 223,0,Transient-Party,88,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,156,2016,March,14,30,1,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,53.94,1,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,1,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Cancel,123,2016,March,14,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,110.71,0,0,Canceled,2016-01-11,Spring,2016-03-30T07:00Z +Cancel,205,2016,March,14,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.69,0,2,Canceled,2015-10-03,Spring,2016-03-30T07:00Z +Keep,169,2016,March,14,31,0,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,I,2,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-03-31,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Cancel,224,2016,March,14,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.3,0,2,Canceled,2015-08-24,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,B,1,Refundable , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,C,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,AUT,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,POL,Groups,Direct, 0,0,0,A,E,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,E,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,3,0,0,BB,PRT,Groups,Direct, 0,0,0,A,C,1,Refundable , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,BEL,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,68,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,1,0,BB,PRT,Groups,Direct, 0,0,0,A,C,2,Refundable , NULL, 223,0,Transient-Party,83.5,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,C,1,Refundable , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,Refundable , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,67.5,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,C,3,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,BEL,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Cancel,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-03-24,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,2,3,2,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-05,Spring,2016-03-31T07:00Z +Cancel,37,2016,March,14,31,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Canceled,2016-03-17,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,3,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,2,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-05,Spring,2016-03-31T07:00Z +Cancel,91,2016,March,14,31,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106.8,0,0,Canceled,2016-02-24,Spring,2016-03-31T07:00Z +Cancel,76,2016,March,14,31,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,51.87,0,1,Canceled,2016-01-20,Spring,2016-03-31T07:00Z +Cancel,45,2016,March,14,31,4,13,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,69.76,0,1,Canceled,2016-03-14,Spring,2016-03-31T07:00Z +Cancel,31,2016,April,14,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,94.16,0,1,Canceled,2016-03-28,Spring,2016-04-01T07:00Z +Keep,0,2016,April,14,1,0,2,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,0,Non Refund , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-04-01T07:00Z +Keep,144,2016,April,14,1,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-05,Spring,2016-04-01T07:00Z +Keep,144,2016,April,14,1,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-05,Spring,2016-04-01T07:00Z +Keep,144,2016,April,14,1,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-05,Spring,2016-04-01T07:00Z +Keep,163,2016,April,14,1,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60.2,1,2,Check-Out,2016-04-08,Spring,2016-04-01T07:00Z +Cancel,38,2016,April,14,1,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68.56,0,1,Canceled,2016-02-29,Spring,2016-04-01T07:00Z +Keep,175,2016,April,14,2,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-06,Spring,2016-04-02T07:00Z +Cancel,39,2016,April,14,2,2,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2016-03-15,Spring,2016-04-02T07:00Z +Cancel,32,2016,April,14,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75.8,0,1,Canceled,2016-03-29,Spring,2016-04-02T07:00Z +Keep,222,2016,April,14,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.19,0,2,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Cancel,59,2016,April,14,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,112.71,0,0,Canceled,2016-03-07,Spring,2016-04-02T07:00Z +Keep,222,2016,April,14,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.19,0,2,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Cancel,32,2016,April,14,2,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-01,Spring,2016-04-02T07:00Z +Keep,0,2016,April,15,3,2,0,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-04-05,Spring,2016-04-03T07:00Z +Cancel,60,2016,April,15,3,2,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,89,0,2,Canceled,2016-02-05,Spring,2016-04-03T07:00Z +Keep,1,2016,April,15,3,2,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,F,2,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-04-06,Spring,2016-04-03T07:00Z +Cancel,33,2016,April,15,3,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.75,0,2,Canceled,2016-03-02,Spring,2016-04-03T07:00Z +Cancel,33,2016,April,15,3,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.75,0,2,Canceled,2016-03-02,Spring,2016-04-03T07:00Z +Cancel,61,2016,April,15,3,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2016-03-28,Spring,2016-04-03T07:00Z +Keep,182,2016,April,15,4,0,0,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 156, NULL,0,Transient,0,0,1,Check-Out,2016-04-04,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient,0,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Cancel,27,2016,April,15,4,1,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-03-08,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,2,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Cancel,171,2016,April,15,4,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-04,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Cancel,139,2016,April,15,4,1,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,94,0,1,Canceled,2016-03-08,Spring,2016-04-04T07:00Z +Cancel,171,2016,April,15,4,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-30,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,42.5,0,1,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Cancel,42,2016,April,15,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.67,0,2,Canceled,2016-04-04,Spring,2016-04-04T07:00Z +Keep,171,2016,April,15,4,1,3,2,0,0,SC,DEU,Groups,TA/TO, 0,0,0,A,I,4,No Deposit , 298, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-08,Spring,2016-04-04T07:00Z +Cancel,27,2016,April,15,4,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2016-03-08,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,86,2016,April,15,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-01-25,Spring,2016-04-04T07:00Z +Cancel,83,2016,April,15,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,3,Canceled,2016-03-01,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Cancel,116,2016,April,15,4,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-04T07:00Z +Keep,186,2016,April,15,5,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-09,Spring,2016-04-05T07:00Z +Cancel,40,2016,April,15,5,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-02-29,Spring,2016-04-05T07:00Z +Cancel,40,2016,April,15,5,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-02-29,Spring,2016-04-05T07:00Z +Cancel,40,2016,April,15,5,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-02-29,Spring,2016-04-05T07:00Z +Keep,200,2016,April,15,5,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,70.4,0,1,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Keep,200,2016,April,15,5,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,71.83,0,1,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Cancel,36,2016,April,15,6,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-03-22,Spring,2016-04-06T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,31,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Canceled,2016-04-01,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,23,2016,April,15,7,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-03-16,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,85,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,64,0,0,Canceled,2016-01-18,Spring,2016-04-07T07:00Z +Cancel,31,2016,April,15,7,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Canceled,2016-04-01,Spring,2016-04-07T07:00Z +Cancel,21,2016,April,15,7,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-03-17,Spring,2016-04-07T07:00Z +Keep,210,2016,April,15,8,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-04-08,Spring,2016-04-08T07:00Z +Cancel,26,2016,April,15,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2016-03-15,Spring,2016-04-08T07:00Z +Cancel,3,2016,April,15,8,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,45,0,0,Canceled,2016-04-08,Spring,2016-04-08T07:00Z +Cancel,15,2016,April,15,8,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,0,Canceled,2016-03-28,Spring,2016-04-08T07:00Z +Cancel,15,2016,April,15,8,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-28,Spring,2016-04-08T07:00Z +Cancel,26,2016,April,15,8,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-14,Spring,2016-04-08T07:00Z +Cancel,65,2016,April,15,8,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-03-28,Spring,2016-04-08T07:00Z +Keep,149,2016,April,15,8,2,6,2,2,0,HB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient-Party,118,0,0,Check-Out,2016-04-16,Spring,2016-04-08T07:00Z +Cancel,46,2016,April,15,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-02-23,Spring,2016-04-09T07:00Z +Cancel,46,2016,April,15,9,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-02-23,Spring,2016-04-09T07:00Z +Cancel,46,2016,April,15,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-02-23,Spring,2016-04-09T07:00Z +Cancel,22,2016,April,15,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,35.1,0,0,Canceled,2016-03-18,Spring,2016-04-09T07:00Z +Cancel,10,2016,April,15,9,2,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,1,Canceled,2016-04-04,Spring,2016-04-09T07:00Z +Cancel,10,2016,April,15,9,2,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,1,Canceled,2016-04-04,Spring,2016-04-09T07:00Z +Cancel,84,2016,April,15,9,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,63.5,0,0,Canceled,2016-03-01,Spring,2016-04-09T07:00Z +Cancel,37,2016,April,15,9,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,35.1,0,0,Canceled,2016-03-03,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,74,2016,April,15,9,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 91, NULL,0,Transient-Party,36,0,0,Canceled,2016-02-27,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,72,0,0,Canceled,2016-01-14,Spring,2016-04-09T07:00Z +Cancel,72,2016,April,16,10,2,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,86.3,0,2,Canceled,2016-02-16,Spring,2016-04-10T07:00Z +Cancel,15,2016,April,16,10,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,0,0,Canceled,2016-03-28,Spring,2016-04-10T07:00Z +Cancel,27,2016,April,16,10,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,72,0,0,Canceled,2016-03-15,Spring,2016-04-10T07:00Z +Cancel,32,2016,April,16,10,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-24,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Cancel,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.66,0,0,Canceled,2016-01-14,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,45.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,BRA,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,45.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,72.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Cancel,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.66,0,0,Canceled,2016-01-14,Spring,2016-04-10T07:00Z +Cancel,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.66,0,0,Canceled,2016-01-14,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,74.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Cancel,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.66,0,0,Canceled,2016-01-14,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,4,No Deposit , 273, NULL,0,Transient-Party,72.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,6,11,2,0,0,SC,GBR,Groups,Direct, 0,0,0,D,I,6,No Deposit , 273, NULL,0,Transient-Party,11.53,0,0,Check-Out,2016-04-27,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,72.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Cancel,52,2016,April,16,11,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-03-15,Spring,2016-04-11T07:00Z +Keep,0,2016,April,16,11,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,42,1,0,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Cancel,79,2016,April,16,11,1,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-03-22,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Keep,214,2016,April,16,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-04-18,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,52,2016,April,16,11,1,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2016-02-22,Spring,2016-04-11T07:00Z +Cancel,35,2016,April,16,11,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Canceled,2016-03-16,Spring,2016-04-11T07:00Z +Cancel,28,2016,April,16,11,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-30,Spring,2016-04-11T07:00Z +Cancel,68,2016,April,16,11,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-03-23,Spring,2016-04-11T07:00Z +Cancel,38,2016,April,16,11,1,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2016-03-22,Spring,2016-04-11T07:00Z +Cancel,66,2016,April,16,11,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-02-29,Spring,2016-04-11T07:00Z +Keep,214,2016,April,16,11,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-04-18,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,67.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Keep,187,2016,April,16,11,3,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,108,0,2,Check-Out,2016-04-21,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,212,2016,April,16,11,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,76.05,0,0,Canceled,2015-10-16,Spring,2016-04-11T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Cancel,168,2016,April,16,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 245, NULL,0,Transient,86,0,0,Canceled,2016-01-05,Spring,2016-04-12T07:00Z +Keep,192,2016,April,16,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-19,Spring,2016-04-12T07:00Z +Cancel,197,2016,April,16,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2015-10-07,Spring,2016-04-12T07:00Z +Keep,229,2016,April,16,12,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,62.05,0,0,Check-Out,2016-04-20,Spring,2016-04-12T07:00Z +Cancel,78,2016,April,16,12,4,10,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,80,0,0,Canceled,2016-01-25,Spring,2016-04-12T07:00Z +Cancel,78,2016,April,16,12,4,10,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,80,0,0,Canceled,2016-01-29,Spring,2016-04-12T07:00Z +Cancel,35,2016,April,16,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,56,0,1,Canceled,2016-03-10,Spring,2016-04-13T07:00Z +Cancel,26,2016,April,16,13,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-04-10,Spring,2016-04-13T07:00Z +Cancel,27,2016,April,16,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-18,Spring,2016-04-14T07:00Z +Cancel,30,2016,April,16,14,0,3,2,0,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,91,0,1,Canceled,2016-04-13,Spring,2016-04-14T07:00Z +Cancel,21,2016,April,16,14,1,3,2,0,0,BB,BRA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,101,0,0,Canceled,2016-04-11,Spring,2016-04-14T07:00Z +Cancel,9,2016,April,16,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-04-06,Spring,2016-04-15T07:00Z +Cancel,10,2016,April,16,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-04-07,Spring,2016-04-15T07:00Z +Cancel,164,2016,April,16,15,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,2,Canceled,2015-11-10,Spring,2016-04-15T07:00Z +Cancel,15,2016,April,16,15,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65,0,0,No-Show,2016-04-15,Spring,2016-04-15T07:00Z +Cancel,164,2016,April,16,15,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,2,Canceled,2015-11-10,Spring,2016-04-15T07:00Z +Cancel,164,2016,April,16,15,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,2,Canceled,2015-11-10,Spring,2016-04-15T07:00Z +Cancel,164,2016,April,16,15,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,2,Canceled,2015-11-10,Spring,2016-04-15T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,42.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,B,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-07,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 298, NULL,0,Transient-Party,102.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Cancel,183,2016,April,16,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-03-16,Spring,2016-04-16T07:00Z +Keep,183,2016,April,16,16,2,2,2,0,0,SC,DEU,Groups,TA/TO, 0,0,0,A,I,2,No Deposit , 298, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-20,Spring,2016-04-16T07:00Z +Keep,169,2016,April,16,16,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,67.5,0,1,Check-Out,2016-04-22,Spring,2016-04-16T07:00Z +Keep,169,2016,April,16,16,2,4,3,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,80.1,0,1,Check-Out,2016-04-22,Spring,2016-04-16T07:00Z +Cancel,34,2016,April,16,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,65.45,0,0,Canceled,2016-04-04,Spring,2016-04-16T07:00Z +Cancel,232,2016,April,16,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-01-05,Spring,2016-04-16T07:00Z +Keep,192,2016,April,16,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,37.4,0,0,Check-Out,2016-04-23,Spring,2016-04-16T07:00Z +Cancel,51,2016,April,16,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,53.28,0,0,Canceled,2016-03-07,Spring,2016-04-16T07:00Z +Cancel,30,2016,April,17,17,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65,0,0,Canceled,2016-04-12,Spring,2016-04-17T07:00Z +Keep,200,2016,April,17,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.2,1,1,Check-Out,2016-04-21,Spring,2016-04-17T07:00Z +Cancel,82,2016,April,17,17,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56.89,0,0,No-Show,2016-04-17,Spring,2016-04-17T07:00Z +Keep,218,2016,April,17,17,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,83,0,1,Check-Out,2016-04-20,Spring,2016-04-17T07:00Z +Cancel,54,2016,April,17,17,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 8, NULL,0,Transient,42.3,0,0,Canceled,2016-03-16,Spring,2016-04-17T07:00Z +Cancel,89,2016,April,17,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-01,Spring,2016-04-17T07:00Z +Cancel,206,2016,April,17,17,4,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,1,Non Refund , 273, NULL,0,Transient,50.85,0,0,Canceled,2016-03-18,Spring,2016-04-17T07:00Z +Cancel,53,2016,April,17,18,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-02-29,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,42.5,0,1,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-08,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,SC,DEU,Groups,TA/TO, 0,0,0,A,I,2,No Deposit , 298, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,185,2016,April,17,18,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-18,Spring,2016-04-18T07:00Z +Cancel,34,2016,April,17,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,85,0,0,Canceled,2016-04-07,Spring,2016-04-18T07:00Z +Cancel,49,2016,April,17,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2016-04-12,Spring,2016-04-18T07:00Z +Cancel,110,2016,April,17,18,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Canceled,2016-04-06,Spring,2016-04-18T07:00Z +Cancel,128,2016,April,17,18,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-03-21,Spring,2016-04-18T07:00Z +Cancel,114,2016,April,17,18,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-03-16,Spring,2016-04-18T07:00Z +Cancel,97,2016,April,17,18,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Canceled,2016-01-28,Spring,2016-04-18T07:00Z +Cancel,37,2016,April,17,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,63,0,0,Canceled,2016-04-08,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,48.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,48.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,48.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,68.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,215,2016,April,17,18,3,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,62.05,0,2,Check-Out,2016-04-28,Spring,2016-04-18T07:00Z +Cancel,22,2016,April,17,18,3,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2016-03-27,Spring,2016-04-18T07:00Z +Keep,215,2016,April,17,18,3,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,62.05,0,2,Check-Out,2016-04-28,Spring,2016-04-18T07:00Z +Cancel,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 397,0,Transient-Party,59,0,0,Canceled,2016-04-13,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Canceled,2016-04-13,Spring,2016-04-19T07:00Z +Keep,162,2016,April,17,19,0,3,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,0,0,Check-Out,2016-04-22,Spring,2016-04-19T07:00Z +Cancel,92,2016,April,17,19,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,52.2,0,0,Canceled,2016-01-19,Spring,2016-04-19T07:00Z +Cancel,40,2016,April,17,19,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-03-10,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,Non Refund , 273, NULL,0,Transient,60.3,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,50.85,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,133,2016,April,17,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2016-01-12,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,44.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,91,2016,April,17,19,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,53.1,0,0,Canceled,2016-03-14,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,50.85,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,44.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,96,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,50.85,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,44.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,Non Refund , 273, NULL,0,Transient,60.3,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,Non Refund , 273, NULL,0,Transient,86.29,0,0,Canceled,2016-02-29,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,32,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,Non Refund , 273, NULL,0,Transient,60.3,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,Non Refund , 273, NULL,0,Transient,50.85,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , 273, NULL,0,Transient,44.36,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,208,2016,April,17,19,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,1,Non Refund , 273, NULL,0,Transient-Party,60.3,0,0,Canceled,2016-03-18,Spring,2016-04-19T07:00Z +Cancel,56,2016,April,17,19,2,7,2,2,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-02-24,Spring,2016-04-19T07:00Z +Cancel,90,2016,April,17,19,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.14,0,2,Canceled,2016-04-01,Spring,2016-04-19T07:00Z +Cancel,0,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 392,0,Transient-Party,58.5,0,0,Canceled,2016-04-20,Spring,2016-04-20T07:00Z +Cancel,50,2016,April,17,20,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121,0,0,Canceled,2016-03-09,Spring,2016-04-20T07:00Z +Cancel,28,2016,April,17,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,0,1,Canceled,2016-04-19,Spring,2016-04-21T07:00Z +Cancel,6,2016,April,17,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,73,0,0,Canceled,2016-04-18,Spring,2016-04-21T07:00Z +Cancel,66,2016,April,17,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-02-24,Spring,2016-04-21T07:00Z +Cancel,66,2016,April,17,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94,0,1,Canceled,2016-02-24,Spring,2016-04-21T07:00Z +Cancel,31,2016,April,17,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,0,1,Canceled,2016-04-19,Spring,2016-04-21T07:00Z +Keep,206,2016,April,17,21,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,52.98,1,2,Check-Out,2016-04-24,Spring,2016-04-21T07:00Z +Keep,206,2016,April,17,21,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,46.98,0,2,Check-Out,2016-04-24,Spring,2016-04-21T07:00Z +Cancel,100,2016,April,17,21,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,44.1,0,0,Canceled,2016-04-01,Spring,2016-04-21T07:00Z +Cancel,116,2016,April,17,21,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-03-12,Spring,2016-04-21T07:00Z +Keep,168,2016,April,17,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,58.95,0,0,Check-Out,2016-04-28,Spring,2016-04-21T07:00Z +Cancel,93,2016,April,17,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-01-20,Spring,2016-04-21T07:00Z +Cancel,57,2016,April,17,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-03,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Cancel,191,2016,April,17,22,1,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Canceled,2016-04-15,Spring,2016-04-22T07:00Z +Cancel,92,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-04-21,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Cancel,181,2016,April,17,22,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Canceled,2015-12-19,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,1,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Cancel,7,2016,April,17,22,1,2,1,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,19,0,0,Canceled,2016-04-15,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Cancel,191,2016,April,17,22,1,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Canceled,2016-04-15,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , 71, NULL,0,Transient,70,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,42,2016,April,17,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71,0,0,Canceled,2016-03-12,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-02,Spring,2016-04-22T07:00Z +Cancel,80,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Keep,41,2016,April,17,22,2,5,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,1,No Deposit , NULL, NULL,0,Transient,122,0,1,Check-Out,2016-04-29,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , 71, NULL,0,Transient,70,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,83,2016,April,17,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , 71, NULL,0,Transient,70,0,0,Canceled,2016-02-22,Spring,2016-04-22T07:00Z +Cancel,25,2016,April,17,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,87,0,0,Canceled,2016-03-29,Spring,2016-04-23T07:00Z +Cancel,35,2016,April,17,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-03-29,Spring,2016-04-23T07:00Z +Keep,197,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,49.3,0,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Cancel,106,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-01-18,Spring,2016-04-23T07:00Z +Cancel,61,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-03-09,Spring,2016-04-23T07:00Z +Cancel,52,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-04-22,Spring,2016-04-23T07:00Z +Cancel,27,2016,April,17,23,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-03-30,Spring,2016-04-23T07:00Z +Cancel,36,2016,April,17,23,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.33,0,0,Canceled,2016-04-12,Spring,2016-04-23T07:00Z +Cancel,21,2016,April,17,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,79,0,0,Canceled,2016-04-07,Spring,2016-04-23T07:00Z +Cancel,98,2016,April,17,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-01-29,Spring,2016-04-23T07:00Z +Cancel,106,2016,April,17,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-04-21,Spring,2016-04-23T07:00Z +Cancel,17,2016,April,17,23,2,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2016-04-06,Spring,2016-04-23T07:00Z +Cancel,229,2016,April,17,23,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,52.2,0,1,Canceled,2016-04-20,Spring,2016-04-23T07:00Z +Cancel,191,2016,April,17,23,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Canceled,2015-11-17,Spring,2016-04-23T07:00Z +Keep,218,2016,April,17,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,40.76,0,0,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Cancel,80,2016,April,17,23,2,5,1,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,54,0,1,Canceled,2016-03-03,Spring,2016-04-23T07:00Z +Cancel,80,2016,April,17,23,2,5,1,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,54,0,1,Canceled,2016-03-03,Spring,2016-04-23T07:00Z +Keep,222,2016,April,17,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 156, NULL,0,Transient,41.33,0,2,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Cancel,103,2016,April,17,23,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-01-27,Spring,2016-04-23T07:00Z +Cancel,95,2016,April,17,23,4,10,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-02-11,Spring,2016-04-23T07:00Z +Cancel,95,2016,April,17,23,4,10,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,8,0,0,Canceled,2016-01-19,Spring,2016-04-23T07:00Z +Cancel,95,2016,April,17,23,4,10,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-02-11,Spring,2016-04-23T07:00Z +Cancel,95,2016,April,17,23,4,10,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-02-11,Spring,2016-04-23T07:00Z +Cancel,9,2016,April,18,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,81,0,0,Canceled,2016-04-20,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,62,2016,April,18,24,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Canceled,2016-04-14,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,143,2016,April,18,24,2,2,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,84,0,0,Canceled,2016-01-05,Spring,2016-04-24T07:00Z +Cancel,46,2016,April,18,24,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,67.5,0,0,Canceled,2016-03-30,Spring,2016-04-24T07:00Z +Cancel,42,2016,April,18,24,2,3,3,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,124.4,0,0,Canceled,2016-03-13,Spring,2016-04-24T07:00Z +Cancel,89,2016,April,18,24,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,52.2,0,0,Canceled,2016-03-31,Spring,2016-04-24T07:00Z +Keep,167,2016,April,18,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,56.95,0,0,Check-Out,2016-05-01,Spring,2016-04-24T07:00Z +Cancel,72,2016,April,18,24,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,88,0,0,Canceled,2016-02-22,Spring,2016-04-24T07:00Z +Cancel,98,2016,April,18,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-02-25,Spring,2016-04-25T07:00Z +Cancel,9,2016,April,18,25,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.12,0,0,Canceled,2016-04-17,Spring,2016-04-25T07:00Z +Cancel,53,2016,April,18,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-03-07,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,13,2016,April,18,25,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,85,0,0,Canceled,2016-04-19,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,138,2016,April,18,25,1,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient,65,0,0,Canceled,2016-01-18,Spring,2016-04-25T07:00Z +Cancel,18,2016,April,18,25,1,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-04-13,Spring,2016-04-25T07:00Z +Cancel,110,2016,April,18,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-04-07,Spring,2016-04-25T07:00Z +Cancel,27,2016,April,18,25,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-03-30,Spring,2016-04-25T07:00Z +Cancel,56,2016,April,18,25,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,47,0,1,Canceled,2016-04-21,Spring,2016-04-25T07:00Z +Cancel,13,2016,April,18,25,1,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,85,0,0,Canceled,2016-04-19,Spring,2016-04-25T07:00Z +Cancel,93,2016,April,18,25,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2016-01-27,Spring,2016-04-25T07:00Z +Cancel,93,2016,April,18,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.57,0,1,Canceled,2016-01-27,Spring,2016-04-25T07:00Z +Cancel,93,2016,April,18,25,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113.57,0,0,Canceled,2016-01-27,Spring,2016-04-25T07:00Z +Cancel,13,2016,April,18,25,9,24,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,77,0,0,Canceled,2016-04-19,Spring,2016-04-25T07:00Z +Cancel,56,2016,April,18,25,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,47,0,1,Canceled,2016-04-21,Spring,2016-04-25T07:00Z +Cancel,3,2016,April,18,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59,0,0,Canceled,2016-04-23,Spring,2016-04-26T07:00Z +Keep,7,2016,April,18,26,0,2,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient,30,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,189,2016,April,18,26,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient,46,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Keep,189,2016,April,18,26,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,189,2016,April,18,26,0,2,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 248, NULL,0,Transient-Party,30,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-04-26T07:00Z +Keep,189,2016,April,18,26,0,2,1,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 248, NULL,0,Transient-Party,30,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,189,2016,April,18,26,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-22,Spring,2016-04-26T07:00Z +Cancel,27,2016,April,18,26,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2016-04-26,Spring,2016-04-26T07:00Z +Cancel,53,2016,April,18,26,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-03-23,Spring,2016-04-26T07:00Z +Cancel,11,2016,April,18,26,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,96,0,0,Canceled,2016-04-25,Spring,2016-04-26T07:00Z +Cancel,26,2016,April,18,26,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,78.2,0,0,Canceled,2016-04-13,Spring,2016-04-26T07:00Z +Cancel,53,2016,April,18,26,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-04-03,Spring,2016-04-26T07:00Z +Keep,179,2016,April,18,26,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,82.95,0,1,Check-Out,2016-05-10,Spring,2016-04-26T07:00Z +Cancel,6,2016,April,18,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-22,Spring,2016-04-27T07:00Z +Cancel,6,2016,April,18,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-26,Spring,2016-04-27T07:00Z +Cancel,179,2016,April,18,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-03-16,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Canceled,2016-04-27,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Canceled,2016-04-27,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-15,Spring,2016-04-27T07:00Z +Cancel,89,2016,April,18,27,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,125.67,0,1,Canceled,2016-03-08,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-15,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-15,Spring,2016-04-27T07:00Z +Cancel,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,72,0,0,Canceled,2016-04-15,Spring,2016-04-27T07:00Z +Cancel,91,2016,April,18,27,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-01-29,Spring,2016-04-27T07:00Z +Cancel,209,2016,April,18,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2016-04-26,Spring,2016-04-27T07:00Z +Cancel,97,2016,April,18,27,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 26, NULL,0,Transient,83.7,0,0,No-Show,2016-04-27,Spring,2016-04-27T07:00Z +Keep,200,2016,April,18,27,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Check-Out,2016-05-02,Spring,2016-04-27T07:00Z +Cancel,66,2016,April,18,28,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-03-07,Spring,2016-04-28T07:00Z +Cancel,15,2016,April,18,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65,0,0,Canceled,2016-04-13,Spring,2016-04-28T07:00Z +Cancel,27,2016,April,18,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-04-04,Spring,2016-04-28T07:00Z +Cancel,113,2016,April,18,28,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2016-04-16,Spring,2016-04-28T07:00Z +Cancel,113,2016,April,18,28,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2016-04-16,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Keep,206,2016,April,18,28,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,39.33,0,1,Check-Out,2016-05-02,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,43,2016,April,18,28,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.75,0,0,Canceled,2016-04-09,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,168,2016,April,18,28,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 257, NULL,0,Transient,80,0,0,Canceled,2016-01-19,Spring,2016-04-28T07:00Z +Cancel,41,2016,April,18,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-19,Spring,2016-04-29T07:00Z +Cancel,14,2016,April,18,29,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-04-27,Spring,2016-04-29T07:00Z +Cancel,1,2016,April,18,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,No-Show,2016-04-29,Spring,2016-04-29T07:00Z +Cancel,0,2016,April,18,29,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Canceled,2016-04-29,Spring,2016-04-29T07:00Z +Cancel,1,2016,April,18,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,No-Show,2016-04-29,Spring,2016-04-29T07:00Z +Cancel,7,2016,April,18,29,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 154,0,Transient,23,0,0,Canceled,2016-04-22,Spring,2016-04-29T07:00Z +Cancel,65,2016,April,18,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-04-02,Spring,2016-04-29T07:00Z +Cancel,13,2016,April,18,29,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-04-16,Spring,2016-04-29T07:00Z +Cancel,114,2016,April,18,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-04-04,Spring,2016-04-29T07:00Z +Cancel,34,2016,April,18,29,0,2,2,2,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2016-04-15,Spring,2016-04-29T07:00Z +Cancel,25,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2016-04-08,Spring,2016-04-29T07:00Z +Cancel,26,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.33,0,0,Canceled,2016-04-16,Spring,2016-04-29T07:00Z +Cancel,102,2016,April,18,29,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,1,Canceled,2016-01-19,Spring,2016-04-29T07:00Z +Cancel,50,2016,April,18,29,1,2,1,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,62.4,0,0,Canceled,2016-03-16,Spring,2016-04-29T07:00Z +Cancel,47,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.33,0,0,Canceled,2016-04-17,Spring,2016-04-29T07:00Z +Cancel,199,2016,April,18,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,1,Canceled,2016-03-26,Spring,2016-04-29T07:00Z +Cancel,114,2016,April,18,29,1,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-01-13,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,1,Canceled,2016-04-04,Spring,2016-04-29T07:00Z +Cancel,31,2016,April,18,29,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.67,0,0,Canceled,2016-04-06,Spring,2016-04-29T07:00Z +Cancel,116,2016,April,18,29,1,2,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120.33,0,2,Canceled,2016-03-29,Spring,2016-04-29T07:00Z +Cancel,29,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82.67,0,0,Canceled,2016-04-17,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,52,2016,April,18,29,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-13,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,147,2016,April,18,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Canceled,2016-04-28,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,10,2016,April,18,29,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2016-04-28,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,147,2016,April,18,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,0,Canceled,2016-04-28,Spring,2016-04-29T07:00Z +Cancel,108,2016,April,18,29,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,84,0,0,Canceled,2016-02-12,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-03-28,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,39,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-03-28,Spring,2016-04-29T07:00Z +Cancel,37,2016,April,18,29,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,39,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , 71, NULL,0,Transient,70,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-03-28,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Canceled,2016-03-28,Spring,2016-04-29T07:00Z +Cancel,101,2016,April,18,29,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 95, NULL,0,Transient-Party,60,0,0,Canceled,2016-03-28,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,37,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-04-13,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 71, NULL,0,Transient,46,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,87,2016,April,18,29,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 71, NULL,0,Transient,58,0,0,Canceled,2016-03-01,Spring,2016-04-29T07:00Z +Cancel,76,2016,April,18,29,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,88,0,1,Canceled,2016-04-09,Spring,2016-04-29T07:00Z +Cancel,78,2016,April,18,29,2,7,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 95, NULL,0,Transient-Party,40,0,0,Canceled,2016-04-15,Spring,2016-04-29T07:00Z +Cancel,157,2016,April,18,29,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2016-01-05,Spring,2016-04-29T07:00Z +Cancel,157,2016,April,18,29,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2016-01-05,Spring,2016-04-29T07:00Z +Cancel,157,2016,April,18,29,4,10,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,2,Canceled,2016-01-05,Spring,2016-04-29T07:00Z +Cancel,0,2016,April,18,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,80,0,0,Canceled,2016-04-30,Spring,2016-04-30T07:00Z +Cancel,14,2016,April,18,30,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-17,Spring,2016-04-30T07:00Z +Cancel,3,2016,April,18,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2016-04-30,Spring,2016-04-30T07:00Z +Cancel,19,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Canceled,2016-04-27,Spring,2016-04-30T07:00Z +Cancel,0,2016,April,18,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,80,0,0,Canceled,2016-04-30,Spring,2016-04-30T07:00Z +Cancel,32,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,82.5,0,1,Canceled,2016-04-26,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,39,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-30,Spring,2016-04-30T07:00Z +Cancel,19,2016,April,18,30,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127,0,0,Canceled,2016-04-18,Spring,2016-04-30T07:00Z +Cancel,31,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-30,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,52,2016,April,18,30,1,1,2,0,0,BB,TUN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.5,0,0,Canceled,2016-03-10,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,18,2016,April,18,30,1,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,1,Canceled,2016-04-14,Spring,2016-04-30T07:00Z +Cancel,8,2016,April,18,30,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,91,0,1,Canceled,2016-04-22,Spring,2016-04-30T07:00Z +Cancel,45,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-30,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,197,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-15,Spring,2016-04-30T07:00Z +Cancel,197,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-21,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,31,2016,April,18,30,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-03-30,Spring,2016-04-30T07:00Z +Cancel,19,2016,April,18,30,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127,0,0,Canceled,2016-04-18,Spring,2016-04-30T07:00Z +Cancel,178,2016,April,18,30,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,48.06,0,1,Canceled,2016-03-29,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Cancel,22,2016,April,18,30,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2016-04-09,Spring,2016-04-30T07:00Z +Cancel,187,2016,April,18,30,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2015-10-29,Spring,2016-04-30T07:00Z +Cancel,187,2016,April,18,30,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,0,Canceled,2015-10-29,Spring,2016-04-30T07:00Z +Cancel,187,2016,April,18,30,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2015-10-29,Spring,2016-04-30T07:00Z +Cancel,32,2016,April,18,30,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.57,0,0,Canceled,2016-04-18,Spring,2016-04-30T07:00Z +Keep,171,2016,April,18,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,64.83,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Cancel,55,2016,April,18,30,2,5,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2016-04-15,Spring,2016-04-30T07:00Z +Cancel,32,2016,April,18,30,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.57,0,0,Canceled,2016-04-18,Spring,2016-04-30T07:00Z +Cancel,246,2016,April,18,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,0,Canceled,2016-02-03,Spring,2016-04-30T07:00Z +Keep,173,2016,April,18,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,46.98,0,2,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,206,2016,April,18,30,2,6,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 69, NULL,0,Transient,37.4,0,0,Check-Out,2016-05-08,Spring,2016-04-30T07:00Z +Keep,255,2016,April,18,30,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,42.3,0,0,Check-Out,2016-05-12,Spring,2016-04-30T07:00Z +Cancel,171,2016,April,18,30,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Canceled,2015-11-28,Spring,2016-04-30T07:00Z +Cancel,171,2016,April,18,30,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Canceled,2015-11-28,Spring,2016-04-30T07:00Z +Keep,171,2016,April,18,30,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63.4,0,1,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Cancel,36,2016,May,19,1,2,0,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2016-03-27,Spring,2016-05-01T07:00Z +Cancel,14,2016,May,19,1,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,72,0,0,Canceled,2016-04-18,Spring,2016-05-01T07:00Z +Cancel,76,2016,May,19,1,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-03-11,Spring,2016-05-01T07:00Z +Cancel,32,2016,May,19,1,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-04-18,Spring,2016-05-01T07:00Z +Cancel,232,2016,May,19,1,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,70.4,0,0,Canceled,2016-02-23,Spring,2016-05-01T07:00Z +Keep,229,2016,May,19,1,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,70.4,0,1,Check-Out,2016-05-07,Spring,2016-05-01T07:00Z +Cancel,186,2016,May,19,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,0,Canceled,2016-03-29,Spring,2016-05-01T07:00Z +Cancel,0,2016,May,19,1,1,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2016-05-01,Spring,2016-05-01T07:00Z +Cancel,3,2016,May,19,1,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,70,0,0,No-Show,2016-05-01,Spring,2016-05-01T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-18,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-18,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,42.5,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,1,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,199,2016,May,19,2,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,1,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Cancel,199,2016,May,19,2,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-09,Spring,2016-05-02T07:00Z +Cancel,89,2016,May,19,2,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2016-03-28,Spring,2016-05-02T07:00Z +Cancel,6,2016,May,19,2,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-04-29,Spring,2016-05-02T07:00Z +Cancel,45,2016,May,19,2,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-18,Spring,2016-05-02T07:00Z +Cancel,5,2016,May,19,2,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,84,0,0,Canceled,2016-04-28,Spring,2016-05-02T07:00Z +Keep,215,2016,May,19,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-06,Spring,2016-05-02T07:00Z +Keep,203,2016,May,19,2,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,46.98,0,1,Check-Out,2016-05-08,Spring,2016-05-02T07:00Z +Cancel,80,2016,May,19,2,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-04-15,Spring,2016-05-02T07:00Z +Cancel,200,2016,May,19,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Canceled,2016-04-28,Spring,2016-05-02T07:00Z +Cancel,187,2016,May,19,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-02-03,Spring,2016-05-02T07:00Z +Cancel,68,2016,May,19,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,58,0,1,Canceled,2016-03-04,Spring,2016-05-02T07:00Z +Cancel,127,2016,May,19,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-01-11,Spring,2016-05-02T07:00Z +Cancel,187,2016,May,19,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-02-03,Spring,2016-05-02T07:00Z +Cancel,200,2016,May,19,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Canceled,2016-04-28,Spring,2016-05-02T07:00Z +Cancel,187,2016,May,19,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-02-22,Spring,2016-05-02T07:00Z +Cancel,109,2016,May,19,2,2,5,1,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,72.5,0,1,Canceled,2016-02-09,Spring,2016-05-02T07:00Z +Keep,201,2016,May,19,2,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Transient,84.96,0,0,Check-Out,2016-05-12,Spring,2016-05-02T07:00Z +Keep,226,2016,May,19,2,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Transient,46.75,0,0,Check-Out,2016-05-12,Spring,2016-05-02T07:00Z +Keep,188,2016,May,19,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.76,0,1,Check-Out,2016-05-10,Spring,2016-05-03T07:00Z +Keep,288,2016,May,19,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,55.83,0,0,Check-Out,2016-05-10,Spring,2016-05-03T07:00Z +Cancel,108,2016,May,19,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-02-12,Spring,2016-05-03T07:00Z +Cancel,108,2016,May,19,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-02-12,Spring,2016-05-03T07:00Z +Keep,188,2016,May,19,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.76,0,1,Check-Out,2016-05-10,Spring,2016-05-03T07:00Z +Keep,288,2016,May,19,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,56.11,0,0,Check-Out,2016-05-10,Spring,2016-05-03T07:00Z +Cancel,74,2016,May,19,3,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-04-30,Spring,2016-05-03T07:00Z +Cancel,129,2016,May,19,3,2,7,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,115.55,0,0,Canceled,2016-04-22,Spring,2016-05-03T07:00Z +Cancel,49,2016,May,19,3,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,1,Canceled,2016-05-03,Spring,2016-05-03T07:00Z +Cancel,101,2016,May,19,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-02-22,Spring,2016-05-03T07:00Z +Cancel,12,2016,May,19,4,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,73.8,0,0,Canceled,2016-04-29,Spring,2016-05-04T07:00Z +Cancel,12,2016,May,19,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,65.6,0,0,Canceled,2016-04-29,Spring,2016-05-04T07:00Z +Keep,188,2016,May,19,4,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.7,1,0,Check-Out,2016-05-08,Spring,2016-05-04T07:00Z +Cancel,19,2016,May,19,4,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-04-16,Spring,2016-05-04T07:00Z +Cancel,141,2016,May,19,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-04-26,Spring,2016-05-05T07:00Z +Cancel,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2016-05-03,Spring,2016-05-05T07:00Z +Cancel,45,2016,May,19,5,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-04-07,Spring,2016-05-05T07:00Z +Keep,209,2016,May,19,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.98,0,2,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Cancel,164,2016,May,19,5,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,65.7,0,0,Canceled,2016-02-02,Spring,2016-05-05T07:00Z +Keep,189,2016,May,19,5,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Keep,209,2016,May,19,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,2,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Cancel,71,2016,May,19,5,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,2,Canceled,2016-02-24,Spring,2016-05-05T07:00Z +Keep,209,2016,May,19,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.98,0,2,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Keep,253,2016,May,19,5,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,31.45,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Cancel,113,2016,May,19,5,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,100.3,0,0,Canceled,2016-04-30,Spring,2016-05-05T07:00Z +Keep,253,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Cancel,154,2016,May,19,5,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,52.56,0,0,Canceled,2016-01-22,Spring,2016-05-05T07:00Z +Keep,252,2016,May,19,6,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,0,0,0,Check-Out,2016-05-06,Spring,2016-05-06T07:00Z +Cancel,2,2016,May,19,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Canceled,2016-05-05,Spring,2016-05-06T07:00Z +Cancel,0,2016,May,19,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,0,0,Canceled,2016-05-06,Spring,2016-05-06T07:00Z +Cancel,153,2016,May,19,6,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Canceled,2016-04-22,Spring,2016-05-06T07:00Z +Cancel,81,2016,May,19,6,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,73,0,0,Canceled,2016-02-29,Spring,2016-05-06T07:00Z +Cancel,165,2016,May,19,6,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,65.7,0,0,Canceled,2016-01-05,Spring,2016-05-06T07:00Z +Cancel,71,2016,May,19,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,74.75,0,0,Canceled,2016-02-25,Spring,2016-05-06T07:00Z +Cancel,44,2016,May,19,6,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-23,Spring,2016-05-06T07:00Z +Cancel,19,2016,May,19,6,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,118.7,0,0,Canceled,2016-04-22,Spring,2016-05-06T07:00Z +Cancel,66,2016,May,19,6,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.4,0,1,Canceled,2016-03-04,Spring,2016-05-06T07:00Z +Cancel,36,2016,May,19,6,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-04-12,Spring,2016-05-06T07:00Z +Keep,354,2016,May,19,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,37.56,0,0,Check-Out,2016-05-13,Spring,2016-05-06T07:00Z +Cancel,174,2016,May,19,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,0,Canceled,2015-12-26,Spring,2016-05-06T07:00Z +Cancel,119,2016,May,19,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Canceled,2016-01-12,Spring,2016-05-06T07:00Z +Cancel,80,2016,May,19,6,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-02-25,Spring,2016-05-06T07:00Z +Keep,260,2016,May,19,6,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,40.76,0,1,Check-Out,2016-05-13,Spring,2016-05-06T07:00Z +Cancel,58,2016,May,19,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-03,Spring,2016-05-06T07:00Z +Keep,179,2016,May,19,6,2,6,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Check-Out,2016-05-14,Spring,2016-05-06T07:00Z +Cancel,35,2016,May,19,6,2,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,124.5,0,0,Canceled,2016-05-02,Spring,2016-05-06T07:00Z +Cancel,54,2016,May,19,7,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,0,0,Canceled,2016-03-16,Spring,2016-05-07T07:00Z +Cancel,49,2016,May,19,7,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-04-19,Spring,2016-05-07T07:00Z +Cancel,122,2016,May,19,7,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,0,Canceled,2016-04-11,Spring,2016-05-07T07:00Z +Cancel,119,2016,May,19,7,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,1,Canceled,2016-01-11,Spring,2016-05-07T07:00Z +Cancel,95,2016,May,19,7,2,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,3,Canceled,2016-05-04,Spring,2016-05-07T07:00Z +Cancel,80,2016,May,19,7,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-02-24,Spring,2016-05-07T07:00Z +Cancel,89,2016,May,19,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-03-28,Spring,2016-05-07T07:00Z +Keep,262,2016,May,19,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,65.4,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,232,2016,May,19,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,50.59,0,1,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Cancel,16,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-29,Spring,2016-05-07T07:00Z +Cancel,75,2016,May,19,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-03-14,Spring,2016-05-07T07:00Z +Keep,232,2016,May,19,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.62,0,1,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Cancel,81,2016,May,19,7,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Canceled,2016-05-04,Spring,2016-05-07T07:00Z +Keep,236,2016,May,19,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Cancel,1,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 393, NULL,0,Transient-Party,48.6,0,1,Canceled,2016-05-07,Spring,2016-05-08T07:00Z +Cancel,59,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,41.4,0,0,Canceled,2016-03-11,Spring,2016-05-08T07:00Z +Cancel,39,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient,39,0,0,No-Show,2016-05-08,Spring,2016-05-08T07:00Z +Cancel,1,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 393, NULL,0,Transient-Party,48.6,0,1,Canceled,2016-05-07,Spring,2016-05-08T07:00Z +Cancel,20,2016,May,20,8,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Canceled,2016-04-20,Spring,2016-05-08T07:00Z +Cancel,20,2016,May,20,8,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Canceled,2016-04-20,Spring,2016-05-08T07:00Z +Cancel,59,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,35.1,0,0,Canceled,2016-03-11,Spring,2016-05-08T07:00Z +Cancel,59,2016,May,20,8,2,0,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,55.89,0,0,Canceled,2016-03-11,Spring,2016-05-08T07:00Z +Cancel,158,2016,May,20,8,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,83.05,0,1,Canceled,2016-01-21,Spring,2016-05-08T07:00Z +Cancel,46,2016,May,20,8,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,95,0,0,Canceled,2016-04-29,Spring,2016-05-08T07:00Z +Cancel,68,2016,May,20,8,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,122,0,0,Canceled,2016-03-05,Spring,2016-05-08T07:00Z +Cancel,192,2016,May,20,8,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,53.87,0,0,Canceled,2016-04-27,Spring,2016-05-08T07:00Z +Cancel,92,2016,May,20,8,4,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.7,0,0,Canceled,2016-02-12,Spring,2016-05-08T07:00Z +Cancel,230,2016,May,20,8,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,1,Canceled,2016-02-03,Spring,2016-05-08T07:00Z +Keep,256,2016,May,20,8,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,58.95,0,0,Check-Out,2016-05-18,Spring,2016-05-08T07:00Z +Keep,212,2016,May,20,8,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,82.96,0,1,Check-Out,2016-05-19,Spring,2016-05-08T07:00Z +Cancel,163,2016,May,20,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,71,0,1,Canceled,2016-04-05,Spring,2016-05-09T07:00Z +Cancel,163,2016,May,20,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-04-05,Spring,2016-05-09T07:00Z +Cancel,22,2016,May,20,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-04-20,Spring,2016-05-09T07:00Z +Cancel,7,2016,May,20,9,1,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,144,0,0,Canceled,2016-05-06,Spring,2016-05-09T07:00Z +Cancel,59,2016,May,20,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-03-11,Spring,2016-05-09T07:00Z +Keep,202,2016,May,20,9,1,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,39.95,0,0,Check-Out,2016-05-15,Spring,2016-05-09T07:00Z +Keep,235,2016,May,20,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2016-05-16,Spring,2016-05-09T07:00Z +Cancel,87,2016,May,20,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-03-10,Spring,2016-05-09T07:00Z +Cancel,122,2016,May,20,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.09,0,0,Canceled,2016-03-29,Spring,2016-05-09T07:00Z +Cancel,234,2016,May,20,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,88,0,0,Canceled,2016-04-23,Spring,2016-05-09T07:00Z +Cancel,254,2016,May,20,9,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2016-02-02,Spring,2016-05-09T07:00Z +Keep,203,2016,May,20,10,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-31,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Keep,203,2016,May,20,10,0,2,1,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 248, NULL,0,Transient-Party,30,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,203,2016,May,20,10,0,2,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 248, NULL,0,Transient,30,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-29,Spring,2016-05-10T07:00Z +Keep,203,2016,May,20,10,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,203,2016,May,20,10,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Cancel,203,2016,May,20,10,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Canceled,2016-03-11,Spring,2016-05-10T07:00Z +Cancel,56,2016,May,20,10,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-03-26,Spring,2016-05-10T07:00Z +Cancel,235,2016,May,20,10,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Canceled,2016-04-11,Spring,2016-05-10T07:00Z +Keep,29,2016,May,20,10,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52.2,0,0,Check-Out,2016-05-15,Spring,2016-05-10T07:00Z +Cancel,49,2016,May,20,10,0,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2016-04-29,Spring,2016-05-10T07:00Z +Cancel,90,2016,May,20,10,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,70.4,0,0,Canceled,2016-04-29,Spring,2016-05-10T07:00Z +Cancel,48,2016,May,20,11,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,0,0,Canceled,2016-04-08,Spring,2016-05-11T07:00Z +Cancel,7,2016,May,20,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 405, 405,0,Transient-Party,70,0,0,No-Show,2016-05-11,Spring,2016-05-11T07:00Z +Cancel,59,2016,May,20,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,73.15,0,0,Canceled,2016-04-11,Spring,2016-05-11T07:00Z +Cancel,189,2016,May,20,11,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,0,0,Canceled,2015-11-04,Spring,2016-05-11T07:00Z +Keep,188,2016,May,20,11,2,8,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,80.16,0,0,Check-Out,2016-05-21,Spring,2016-05-11T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,30,2016,May,20,12,0,2,1,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-04-13,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,30,2016,May,20,12,0,2,1,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-04-13,Spring,2016-05-12T07:00Z +Cancel,52,2016,May,20,12,0,2,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,0,1,Canceled,2016-04-26,Spring,2016-05-12T07:00Z +Cancel,69,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-05-03,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 249, NULL,0,Transient-Party,26,0,0,Canceled,2016-05-03,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-03-04,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2016-05-03,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 315, NULL,0,Transient-Party,58,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,50,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,48,0,1,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,50,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,1,3,2,0,0,SC,GBR,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 315, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-16,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,114,2016,May,20,12,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-01-19,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-05-06,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,236,2016,May,20,12,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2015-09-28,Spring,2016-05-12T07:00Z +Cancel,25,2016,May,20,12,2,3,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-04-21,Spring,2016-05-12T07:00Z +Cancel,197,2016,May,20,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,63.36,0,0,No-Show,2016-05-12,Spring,2016-05-12T07:00Z +Keep,189,2016,May,20,12,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,1,2,Check-Out,2016-05-19,Spring,2016-05-12T07:00Z +Keep,189,2016,May,20,12,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,124,0,2,Check-Out,2016-05-19,Spring,2016-05-12T07:00Z +Keep,213,2016,May,20,12,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient-Party,58.95,0,2,Check-Out,2016-05-22,Spring,2016-05-12T07:00Z +Keep,213,2016,May,20,12,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient-Party,58.95,0,2,Check-Out,2016-05-22,Spring,2016-05-12T07:00Z +Keep,237,2016,May,20,13,0,0,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 315, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-13,Spring,2016-05-13T07:00Z +Cancel,54,2016,May,20,13,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-03-29,Spring,2016-05-13T07:00Z +Keep,237,2016,May,20,13,0,2,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Cancel,30,2016,May,20,13,0,2,1,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,135,0,0,Canceled,2016-04-21,Spring,2016-05-13T07:00Z +Cancel,9,2016,May,20,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,119,0,2,Canceled,2016-05-05,Spring,2016-05-13T07:00Z +Cancel,9,2016,May,20,13,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,109,0,2,Canceled,2016-05-05,Spring,2016-05-13T07:00Z +Cancel,119,2016,May,20,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,2,Canceled,2016-01-18,Spring,2016-05-13T07:00Z +Cancel,22,2016,May,20,13,2,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,130,0,0,No-Show,2016-05-13,Spring,2016-05-13T07:00Z +Cancel,119,2016,May,20,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,2,Canceled,2016-01-18,Spring,2016-05-13T07:00Z +Cancel,17,2016,May,20,13,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-05-02,Spring,2016-05-13T07:00Z +Cancel,198,2016,May,20,13,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2016-01-15,Spring,2016-05-13T07:00Z +Keep,195,2016,May,20,13,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,43.19,0,2,Check-Out,2016-05-20,Spring,2016-05-13T07:00Z +Cancel,259,2016,May,20,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.4,0,1,Canceled,2016-03-09,Spring,2016-05-13T07:00Z +Keep,195,2016,May,20,13,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,43.76,0,2,Check-Out,2016-05-20,Spring,2016-05-13T07:00Z +Cancel,259,2016,May,20,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.4,0,1,Canceled,2016-03-09,Spring,2016-05-13T07:00Z +Cancel,3,2016,May,20,13,4,10,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,85,0,0,Canceled,2016-05-12,Spring,2016-05-13T07:00Z +Cancel,35,2016,May,20,14,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,53.87,0,0,Canceled,2016-05-02,Spring,2016-05-14T07:00Z +Cancel,113,2016,May,20,14,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,52.56,0,0,Canceled,2016-05-05,Spring,2016-05-14T07:00Z +Cancel,39,2016,May,20,14,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,53.87,0,0,Canceled,2016-05-05,Spring,2016-05-14T07:00Z +Cancel,35,2016,May,20,14,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,53.87,0,0,Canceled,2016-04-09,Spring,2016-05-14T07:00Z +Cancel,117,2016,May,20,14,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,2,Canceled,2016-02-12,Spring,2016-05-14T07:00Z +Cancel,190,2016,May,20,14,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.69,0,2,Canceled,2015-11-09,Spring,2016-05-14T07:00Z +Cancel,158,2016,May,20,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Canceled,2015-12-26,Spring,2016-05-14T07:00Z +Cancel,128,2016,May,20,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,46.18,0,1,Canceled,2016-05-13,Spring,2016-05-14T07:00Z +Cancel,128,2016,May,20,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,46.18,0,1,Canceled,2016-05-13,Spring,2016-05-14T07:00Z +Cancel,128,2016,May,20,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,46.18,0,1,Canceled,2016-05-14,Spring,2016-05-14T07:00Z +Cancel,190,2016,May,20,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2015-11-09,Spring,2016-05-14T07:00Z +Cancel,120,2016,May,20,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,3,Canceled,2016-02-12,Spring,2016-05-14T07:00Z +Cancel,115,2016,May,20,14,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-02-12,Spring,2016-05-14T07:00Z +Keep,206,2016,May,20,14,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,59.93,0,0,Check-Out,2016-05-24,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,42.5,0,1,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-04-08,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,1,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-04-08,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-04-08,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,1,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,NLD,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,2,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-12,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,211,2016,May,20,14,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Cancel,211,2016,May,20,14,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,86,0,0,Canceled,2016-04-08,Spring,2016-05-14T07:00Z +Keep,9,2016,May,21,15,0,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-15,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,70,0,0,Canceled,2016-05-06,Spring,2016-05-15T07:00Z +Cancel,137,2016,May,21,15,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,79.2,0,1,No-Show,2016-05-15,Spring,2016-05-15T07:00Z +Cancel,30,2016,May,21,15,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,113.19,0,1,Canceled,2016-04-18,Spring,2016-05-15T07:00Z +Cancel,38,2016,May,21,15,2,5,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,152,0,0,Canceled,2016-05-03,Spring,2016-05-15T07:00Z +Keep,239,2016,May,21,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.4,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Cancel,117,2016,May,21,15,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,3,Canceled,2016-02-12,Spring,2016-05-15T07:00Z +Cancel,117,2016,May,21,15,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,0,Canceled,2016-02-18,Spring,2016-05-15T07:00Z +Keep,205,2016,May,21,15,4,6,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2016-05-25,Spring,2016-05-15T07:00Z +Keep,208,2016,May,21,15,4,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 171, NULL,0,Transient,41.4,0,2,Check-Out,2016-05-26,Spring,2016-05-15T07:00Z +Cancel,62,2016,May,21,16,1,0,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Cancel,62,2016,May,21,16,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Cancel,65,2016,May,21,16,1,0,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Cancel,0,2016,May,21,16,1,0,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63,0,0,No-Show,2016-05-16,Spring,2016-05-16T07:00Z +Cancel,65,2016,May,21,16,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Canceled,2016-05-13,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 298, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,56.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,213,2016,May,21,16,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Cancel,213,2016,May,21,16,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-19,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-22,Spring,2016-05-16T07:00Z +Cancel,95,2016,May,21,16,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Cancel,39,2016,May,21,16,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-04-21,Spring,2016-05-16T07:00Z +Cancel,95,2016,May,21,16,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-04-04,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-22,Spring,2016-05-16T07:00Z +Cancel,263,2016,May,21,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,0,Canceled,2016-04-21,Spring,2016-05-16T07:00Z +Keep,189,2016,May,21,16,2,5,1,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,44.45,0,0,Check-Out,2016-05-23,Spring,2016-05-16T07:00Z +Cancel,28,2016,May,21,16,3,6,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-04-22,Spring,2016-05-16T07:00Z +Keep,265,2016,May,21,16,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,1,Check-Out,2016-05-26,Spring,2016-05-16T07:00Z +Cancel,250,2016,May,21,16,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Canceled,2015-11-17,Spring,2016-05-16T07:00Z +Cancel,215,2016,May,21,16,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,2,Canceled,2015-11-17,Spring,2016-05-16T07:00Z +Keep,215,2016,May,21,16,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.76,0,0,Check-Out,2016-05-26,Spring,2016-05-16T07:00Z +Keep,265,2016,May,21,16,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,1,Check-Out,2016-05-26,Spring,2016-05-16T07:00Z +Cancel,5,2016,May,21,16,3,7,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,85,0,0,Canceled,2016-05-12,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,3,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,46.98,0,2,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,189,2016,May,21,16,3,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48.08,0,1,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,3,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,46.98,0,2,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,3,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,2,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,201,2016,May,21,16,3,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,46.98,0,2,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,196,2016,May,21,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,41.75,0,0,Check-Out,2016-05-23,Spring,2016-05-16T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,151,2016,May,21,17,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,46,0,0,Canceled,2016-01-25,Spring,2016-05-17T07:00Z +Cancel,40,2016,May,21,17,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-05-05,Spring,2016-05-17T07:00Z +Keep,253,2016,May,21,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.4,0,1,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,224,2016,May,21,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,37.4,0,2,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,224,2016,May,21,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,37.4,0,2,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Cancel,132,2016,May,21,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2016-01-11,Spring,2016-05-17T07:00Z +Cancel,143,2016,May,21,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2016-01-22,Spring,2016-05-17T07:00Z +Cancel,199,2016,May,21,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,1,Canceled,2015-12-01,Spring,2016-05-17T07:00Z +Cancel,132,2016,May,21,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2016-01-11,Spring,2016-05-17T07:00Z +Keep,139,2016,May,21,17,2,6,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,I,0,No Deposit , 143, NULL,0,Transient,5.25,0,0,Check-Out,2016-05-17,Spring,2016-05-17T07:00Z +Keep,239,2016,May,21,17,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,63.36,0,0,Check-Out,2016-05-27,Spring,2016-05-17T07:00Z +Cancel,0,2016,May,21,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,0,0,Canceled,2016-05-18,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,37,2016,May,21,18,2,4,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,0,0,Canceled,2016-04-12,Spring,2016-05-18T07:00Z +Keep,191,2016,May,21,18,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Cancel,76,2016,May,21,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-03-14,Spring,2016-05-18T07:00Z +Cancel,124,2016,May,21,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-02-15,Spring,2016-05-18T07:00Z +Cancel,124,2016,May,21,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-04-12,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,92,2016,May,21,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,67.2,0,0,Canceled,2016-04-05,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,8,2016,May,21,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,72,0,0,Canceled,2016-05-10,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,40,2016,May,21,18,0,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,55,0,0,Canceled,2016-04-13,Spring,2016-05-18T07:00Z +Cancel,144,2016,May,21,18,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,0,Canceled,2015-12-26,Spring,2016-05-18T07:00Z +Cancel,41,2016,May,21,19,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-04-19,Spring,2016-05-19T07:00Z +Cancel,0,2016,May,21,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,82,0,0,Canceled,2016-05-19,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,19,0,2,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,F,G,0,No Deposit , 69, NULL,0,Transient,0,0,2,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Cancel,80,2016,May,21,19,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110.25,0,1,Canceled,2016-02-29,Spring,2016-05-19T07:00Z +Cancel,124,2016,May,21,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-04-11,Spring,2016-05-19T07:00Z +Keep,304,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.83,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Cancel,87,2016,May,21,19,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-04-04,Spring,2016-05-19T07:00Z +Cancel,258,2016,May,21,19,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,0,Canceled,2015-11-02,Spring,2016-05-19T07:00Z +Keep,304,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.83,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,274,2016,May,21,19,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,41.33,0,2,Check-Out,2016-05-27,Spring,2016-05-19T07:00Z +Cancel,155,2016,May,21,19,2,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,125.5,0,2,Canceled,2016-01-20,Spring,2016-05-19T07:00Z +Cancel,125,2016,May,21,19,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-01-27,Spring,2016-05-19T07:00Z +Keep,237,2016,May,21,19,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,58.95,0,0,Check-Out,2016-05-29,Spring,2016-05-19T07:00Z +Cancel,101,2016,May,21,19,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,63,0,0,Canceled,2016-02-10,Spring,2016-05-19T07:00Z +Cancel,118,2016,May,21,19,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,60.3,0,1,Canceled,2016-04-01,Spring,2016-05-19T07:00Z +Cancel,118,2016,May,21,19,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,60.3,0,1,Canceled,2016-04-01,Spring,2016-05-19T07:00Z +Cancel,101,2016,May,21,19,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,63,0,0,Canceled,2016-02-10,Spring,2016-05-19T07:00Z +Cancel,66,2016,May,21,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-04-06,Spring,2016-05-20T07:00Z +Cancel,49,2016,May,21,20,0,2,2,1,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,17.5,0,0,Canceled,2016-05-16,Spring,2016-05-20T07:00Z +Cancel,109,2016,May,21,20,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.7,0,1,Canceled,2016-03-07,Spring,2016-05-20T07:00Z +Cancel,32,2016,May,21,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-05-03,Spring,2016-05-20T07:00Z +Cancel,2,2016,May,21,20,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-05-18,Spring,2016-05-20T07:00Z +Keep,193,2016,May,21,20,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,50.02,0,1,Check-Out,2016-05-28,Spring,2016-05-20T07:00Z +Keep,217,2016,May,21,20,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,84.96,0,0,Check-Out,2016-05-28,Spring,2016-05-20T07:00Z +Cancel,202,2016,May,21,20,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,1,Canceled,2015-12-01,Spring,2016-05-20T07:00Z +Cancel,178,2016,May,21,20,4,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.11,0,1,Canceled,2016-01-15,Spring,2016-05-20T07:00Z +Cancel,171,2016,May,21,20,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.03,0,0,Canceled,2016-03-18,Spring,2016-05-20T07:00Z +Cancel,0,2016,May,21,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-05-21,Spring,2016-05-21T07:00Z +Cancel,126,2016,May,21,21,0,1,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 367,0,Transient,0,0,0,No-Show,2016-05-21,Spring,2016-05-21T07:00Z +Cancel,1,2016,May,21,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,89,0,0,Canceled,2016-05-21,Spring,2016-05-21T07:00Z +Cancel,126,2016,May,21,21,0,1,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 367,0,Transient,0,0,0,No-Show,2016-05-21,Spring,2016-05-21T07:00Z +Cancel,79,2016,May,21,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-04-11,Spring,2016-05-21T07:00Z +Cancel,78,2016,May,21,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-09,Spring,2016-05-21T07:00Z +Keep,5,2016,May,21,21,1,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,135.6,1,0,Check-Out,2016-05-23,Spring,2016-05-21T07:00Z +Cancel,116,2016,May,21,21,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,41.4,0,0,Canceled,2016-04-29,Spring,2016-05-21T07:00Z +Keep,210,2016,May,21,21,1,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,89.3,1,0,Check-Out,2016-05-23,Spring,2016-05-21T07:00Z +Cancel,82,2016,May,21,21,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75.33,0,1,Canceled,2016-03-14,Spring,2016-05-21T07:00Z +Cancel,117,2016,May,21,21,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,103,0,1,Canceled,2016-03-01,Spring,2016-05-21T07:00Z +Cancel,123,2016,May,21,21,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,88,0,2,Canceled,2016-03-29,Spring,2016-05-21T07:00Z +Cancel,123,2016,May,21,21,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,88,0,2,Canceled,2016-03-29,Spring,2016-05-21T07:00Z +Cancel,82,2016,May,21,21,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.83,0,1,Canceled,2016-03-01,Spring,2016-05-21T07:00Z +Cancel,25,2016,May,21,21,2,4,2,2,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-05-02,Spring,2016-05-21T07:00Z +Keep,192,2016,May,21,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Cancel,256,2016,May,21,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2015-12-30,Spring,2016-05-21T07:00Z +Cancel,70,2016,May,21,21,2,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129.29,0,0,Canceled,2016-04-26,Spring,2016-05-21T07:00Z +Cancel,262,2016,May,21,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,2,Canceled,2015-09-11,Spring,2016-05-21T07:00Z +Keep,220,2016,May,21,21,3,6,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-21T07:00Z +Keep,248,2016,May,21,21,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,76.76,0,1,Check-Out,2016-05-31,Spring,2016-05-21T07:00Z +Keep,236,2016,May,21,21,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,113.57,0,2,Check-Out,2016-05-31,Spring,2016-05-21T07:00Z +Keep,212,2016,May,21,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.76,0,1,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Cancel,46,2016,May,22,22,1,0,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2016-04-12,Spring,2016-05-22T07:00Z +Cancel,0,2016,May,22,22,2,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,72,0,0,Canceled,2016-05-22,Spring,2016-05-22T07:00Z +Cancel,241,2016,May,22,22,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-04-05,Spring,2016-05-22T07:00Z +Cancel,262,2016,May,22,22,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-05-06,Spring,2016-05-22T07:00Z +Keep,307,2016,May,22,22,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,50.88,0,0,Check-Out,2016-06-01,Spring,2016-05-22T07:00Z +Keep,221,2016,May,22,22,4,6,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-06-01,Spring,2016-05-22T07:00Z +Cancel,46,2016,May,22,22,1,0,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-05-05,Spring,2016-05-22T07:00Z +Cancel,34,2016,May,22,23,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2016-05-02,Spring,2016-05-23T07:00Z +Cancel,73,2016,May,22,23,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-03-18,Spring,2016-05-23T07:00Z +Cancel,98,2016,May,22,23,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-03-04,Spring,2016-05-23T07:00Z +Cancel,101,2016,May,22,23,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-05-11,Spring,2016-05-23T07:00Z +Keep,233,2016,May,22,23,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.2,1,1,Check-Out,2016-05-29,Spring,2016-05-23T07:00Z +Cancel,32,2016,May,22,23,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-04-25,Spring,2016-05-23T07:00Z +Keep,222,2016,May,22,23,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-23T07:00Z +Cancel,201,2016,May,22,23,3,7,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,63.92,0,1,Canceled,2016-04-29,Spring,2016-05-23T07:00Z +Keep,257,2016,May,22,23,3,8,2,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,107,0,0,Check-Out,2016-06-03,Spring,2016-05-23T07:00Z +Cancel,126,2016,May,22,23,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,34.85,0,2,Canceled,2016-04-30,Spring,2016-05-23T07:00Z +Keep,206,2016,May,22,23,2,5,2,0,0,HB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,79.3,0,2,Check-Out,2016-05-30,Spring,2016-05-23T07:00Z +Cancel,200,2016,May,22,23,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,63.36,0,0,Canceled,2015-11-06,Spring,2016-05-23T07:00Z +Cancel,68,2016,May,22,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2016-04-24,Spring,2016-05-24T07:00Z +Cancel,30,2016,May,22,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-04-24,Spring,2016-05-24T07:00Z +Cancel,209,2016,May,22,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.72,0,1,Canceled,2016-01-05,Spring,2016-05-24T07:00Z +Cancel,197,2016,May,22,24,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,0,Canceled,2016-02-16,Spring,2016-05-24T07:00Z +Cancel,139,2016,May,22,24,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,118,0,1,Canceled,2016-04-23,Spring,2016-05-24T07:00Z +Keep,222,2016,May,22,24,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,52.98,1,1,Check-Out,2016-05-28,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,0,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,1,0,Check-Out,2016-05-29,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,0,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,67.6,0,0,Check-Out,2016-05-29,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,67.67,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,1,BB,GBR,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,67.67,0,1,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,45,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,B,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Cancel,28,2016,May,22,24,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,0,Canceled,2016-04-26,Spring,2016-05-24T07:00Z +Cancel,28,2016,May,22,24,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,0,Canceled,2016-04-26,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,70.29,1,0,Check-Out,2016-05-31,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,2,Refundable , NULL, 223,0,Transient-Party,71.14,1,0,Check-Out,2016-05-31,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,6,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66.75,1,0,Check-Out,2016-06-01,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,6,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-06-01,Spring,2016-05-24T07:00Z +Keep,213,2016,May,22,24,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,53.87,0,2,Check-Out,2016-06-01,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-06-01,Spring,2016-05-24T07:00Z +Keep,223,2016,May,22,24,2,6,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-06-01,Spring,2016-05-24T07:00Z +Cancel,213,2016,May,22,24,2,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,55.68,0,1,Canceled,2015-10-29,Spring,2016-05-24T07:00Z +Keep,227,2016,May,22,24,2,8,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,79.13,0,1,Check-Out,2016-06-03,Spring,2016-05-24T07:00Z +Keep,227,2016,May,22,24,2,8,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,79.13,0,1,Check-Out,2016-06-03,Spring,2016-05-24T07:00Z +Cancel,69,2016,May,22,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,80.85,0,0,Canceled,2016-03-18,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,3,Canceled,2016-02-15,Spring,2016-05-25T07:00Z +Cancel,99,2016,May,22,25,0,4,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,109.75,0,0,Canceled,2016-05-04,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,0,0,Canceled,2016-03-09,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-02-15,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,2,Canceled,2016-03-03,Spring,2016-05-25T07:00Z +Keep,257,2016,May,22,25,0,2,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,0,Check-Out,2016-05-27,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,0,4,2,0,0,BB,FRA,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,46,0,0,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,0,4,2,0,0,BB,ITA,Groups,Direct, 0,0,0,A,D,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,0,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,65,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,52,1,1,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Cancel,105,2016,May,22,25,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.4,0,0,Canceled,2016-05-18,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,46,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,109.4,0,0,Canceled,2016-02-15,Spring,2016-05-25T07:00Z +Cancel,228,2016,May,22,25,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Canceled,2016-05-18,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,65,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,224,2016,May,22,25,1,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,40,0,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Cancel,100,2016,May,22,25,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,26,0,0,Canceled,2016-02-16,Spring,2016-05-25T07:00Z +Cancel,141,2016,May,22,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,53.87,0,0,Canceled,2016-05-25,Spring,2016-05-25T07:00Z +Keep,197,2016,May,22,25,4,10,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.96,1,1,Check-Out,2016-06-08,Spring,2016-05-25T07:00Z +Cancel,276,2016,May,22,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,1,Canceled,2016-05-16,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,2,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-05-28,Spring,2016-05-26T07:00Z +Cancel,26,2016,May,22,26,0,3,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,175,0,0,Canceled,2016-05-23,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,64,1,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,F,0,No Deposit , NULL, 223,0,Transient-Party,96,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Cancel,22,2016,May,22,26,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 281,0,Transient,59,0,1,Canceled,2016-05-11,Spring,2016-05-26T07:00Z +Cancel,101,2016,May,22,26,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-03-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Cancel,183,2016,May,22,26,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Canceled,2016-03-09,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,ROU,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,64,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,62,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,1,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,46,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,1,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,3,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,2,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,80,2,0,Check-Out,2016-05-31,Spring,2016-05-26T07:00Z +Cancel,139,2016,May,22,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Canceled,2016-01-15,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,2,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,I,2,Non Refund , NULL, 223,0,Transient-Party,6,1,0,Check-Out,2016-05-31,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,225,2016,May,22,26,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,264,2016,May,22,26,2,5,2,1,0,BB,JAM,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient-Party,115,0,3,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,311,2016,May,22,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 40, NULL,0,Contract,43.78,0,0,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,238,2016,May,22,26,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 156, NULL,0,Transient-Party,87.46,0,4,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,264,2016,May,22,26,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient-Party,87.46,0,3,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Cancel,18,2016,May,22,27,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,1,Canceled,2016-05-14,Spring,2016-05-27T07:00Z +Cancel,143,2016,May,22,27,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,100.55,0,0,Canceled,2016-05-11,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,122,2016,May,22,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,2,Canceled,2016-04-26,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,277,2016,May,22,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.98,0,1,Canceled,2016-05-16,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,7,2016,May,22,27,0,1,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 20,0,Transient,58,0,0,Canceled,2016-05-25,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Keep,226,2016,May,22,27,0,2,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,3,Non Refund , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-05-29,Spring,2016-05-27T07:00Z +Cancel,135,2016,May,22,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57.8,0,0,Canceled,2016-04-13,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Cancel,143,2016,May,22,27,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,100.55,0,0,Canceled,2016-05-11,Spring,2016-05-27T07:00Z +Cancel,100,2016,May,22,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-04-06,Spring,2016-05-27T07:00Z +Cancel,11,2016,May,22,27,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2016-05-16,Spring,2016-05-27T07:00Z +Cancel,102,2016,May,22,27,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.2,0,0,Canceled,2016-05-05,Spring,2016-05-27T07:00Z +Cancel,18,2016,May,22,27,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2016-05-14,Spring,2016-05-27T07:00Z +Keep,204,2016,May,22,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.28,0,2,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,312,2016,May,22,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,1,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,204,2016,May,22,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.28,0,2,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,204,2016,May,22,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,57.28,0,2,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,312,2016,May,22,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,1,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Cancel,227,2016,May,22,28,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,4,Non Refund , NULL, 223,0,Transient-Party,60,0,0,No-Show,2016-05-28,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,F,1,No Deposit , 298, NULL,0,Transient-Party,42.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Cancel,225,2016,May,22,28,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-26,Spring,2016-05-28T07:00Z +Cancel,212,2016,May,22,28,1,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,83.16,0,0,Canceled,2015-11-21,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,F,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Cancel,225,2016,May,22,28,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-26,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,F,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,87,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Cancel,225,2016,May,22,28,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Canceled,2016-04-26,Spring,2016-05-28T07:00Z +Keep,213,2016,May,22,28,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.93,0,1,Check-Out,2016-06-02,Spring,2016-05-28T07:00Z +Cancel,145,2016,May,22,28,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,59.3,0,1,Canceled,2016-01-05,Spring,2016-05-28T07:00Z +Cancel,145,2016,May,22,28,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,59.24,0,1,Canceled,2016-01-05,Spring,2016-05-28T07:00Z +Cancel,145,2016,May,22,28,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,59.3,0,1,Canceled,2016-01-05,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,225,2016,May,22,28,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Cancel,145,2016,May,22,28,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,59.3,0,1,Canceled,2016-01-05,Spring,2016-05-28T07:00Z +Cancel,116,2016,May,22,28,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient-Party,55,0,1,Canceled,2016-02-03,Spring,2016-05-28T07:00Z +Cancel,144,2016,May,22,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.63,0,1,Canceled,2016-03-25,Spring,2016-05-28T07:00Z +Cancel,108,2016,May,22,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.86,0,1,No-Show,2016-05-28,Spring,2016-05-28T07:00Z +Cancel,144,2016,May,22,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.63,0,1,Canceled,2016-03-25,Spring,2016-05-28T07:00Z +Cancel,116,2016,May,22,28,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient-Party,55,0,1,Canceled,2016-02-03,Spring,2016-05-28T07:00Z +Cancel,102,2016,May,22,28,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 314, NULL,0,Transient,128.28,0,0,Canceled,2016-03-31,Spring,2016-05-28T07:00Z +Keep,210,2016,May,22,28,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,82.83,0,0,Check-Out,2016-06-05,Spring,2016-05-28T07:00Z +Cancel,168,2016,May,22,28,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79.84,0,1,Canceled,2015-12-31,Spring,2016-05-28T07:00Z +Cancel,5,2016,May,23,29,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,99,0,0,No-Show,2016-05-29,Spring,2016-05-29T07:00Z +Cancel,11,2016,May,23,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,0,Canceled,2016-05-18,Spring,2016-05-29T07:00Z +Cancel,16,2016,May,23,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,0,Canceled,2016-05-18,Spring,2016-05-29T07:00Z +Cancel,5,2016,May,23,29,2,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 168, NULL,0,Transient,65.2,0,0,Canceled,2016-05-25,Spring,2016-05-29T07:00Z +Cancel,139,2016,May,23,29,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,105.81,0,0,Canceled,2016-01-13,Spring,2016-05-29T07:00Z +Keep,314,2016,May,23,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 40, NULL,0,Contract,52.58,0,0,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Cancel,139,2016,May,23,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,105.81,0,0,Canceled,2016-01-13,Spring,2016-05-29T07:00Z +Cancel,107,2016,May,23,29,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,79.2,0,0,Canceled,2016-05-26,Spring,2016-05-29T07:00Z +Keep,0,2016,May,23,30,0,0,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,I,0,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-05-30,Spring,2016-05-30T07:00Z +Keep,0,2016,May,23,30,0,0,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,I,0,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-05-30,Spring,2016-05-30T07:00Z +Keep,229,2016,May,23,30,0,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,5,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-05-30,Spring,2016-05-30T07:00Z +Cancel,50,2016,May,23,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.67,0,1,Canceled,2016-05-26,Spring,2016-05-30T07:00Z +Cancel,43,2016,May,23,30,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2016-05-25,Spring,2016-05-30T07:00Z +Cancel,125,2016,May,23,30,1,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,136.2,0,0,Canceled,2016-05-09,Spring,2016-05-30T07:00Z +Cancel,0,2016,May,23,30,1,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,57,0,0,No-Show,2016-05-30,Spring,2016-05-30T07:00Z +Cancel,117,2016,May,23,30,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.2,0,1,Canceled,2016-02-09,Spring,2016-05-30T07:00Z +Cancel,126,2016,May,23,30,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,79.26,0,0,Canceled,2016-01-28,Spring,2016-05-30T07:00Z +Keep,215,2016,May,23,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,66.34,0,1,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Cancel,136,2016,May,23,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.71,0,1,Canceled,2016-01-25,Spring,2016-05-30T07:00Z +Cancel,237,2016,May,23,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.34,0,2,Canceled,2016-02-10,Spring,2016-05-30T07:00Z +Keep,215,2016,May,23,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,68.06,0,1,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Cancel,71,2016,May,23,30,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,116.43,0,0,Canceled,2016-03-28,Spring,2016-05-30T07:00Z +Cancel,71,2016,May,23,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,116.43,0,0,Canceled,2016-03-28,Spring,2016-05-30T07:00Z +Keep,215,2016,May,23,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,66.34,0,1,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Cancel,207,2016,May,23,30,3,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95.95,0,0,Canceled,2015-12-26,Spring,2016-05-30T07:00Z +Cancel,152,2016,May,23,30,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,56.72,0,0,Canceled,2016-04-14,Spring,2016-05-30T07:00Z +Keep,213,2016,May,23,30,4,10,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Contract,58.95,0,1,Check-Out,2016-06-13,Spring,2016-05-30T07:00Z +Cancel,76,2016,May,23,31,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,0,Canceled,2016-03-20,Spring,2016-05-31T07:00Z +Cancel,63,2016,May,23,31,0,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105.8,0,1,Canceled,2016-05-13,Spring,2016-05-31T07:00Z +Keep,290,2016,May,23,31,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95.04,0,3,Check-Out,2016-06-05,Spring,2016-05-31T07:00Z +Keep,235,2016,May,23,31,1,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient-Party,83,0,1,Check-Out,2016-06-06,Spring,2016-05-31T07:00Z +Keep,235,2016,May,23,31,1,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,48.71,0,1,Check-Out,2016-06-06,Spring,2016-05-31T07:00Z +Cancel,102,2016,May,23,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-14,Spring,2016-05-31T07:00Z +Keep,105,2016,May,23,31,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,131.5,0,1,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Cancel,124,2016,May,23,31,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,67.79,0,1,Canceled,2016-04-27,Spring,2016-05-31T07:00Z +Keep,241,2016,May,23,31,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,87.49,0,0,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Cancel,102,2016,May,23,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-14,Spring,2016-05-31T07:00Z +Cancel,102,2016,May,23,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-14,Spring,2016-05-31T07:00Z +Cancel,77,2016,May,23,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,123.71,0,0,Canceled,2016-04-19,Spring,2016-05-31T07:00Z +Cancel,134,2016,May,23,31,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,0,No-Show,2016-05-31,Spring,2016-05-31T07:00Z +Keep,232,2016,May,23,31,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,57.34,0,0,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Cancel,90,2016,May,23,31,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,72.9,0,0,Canceled,2016-03-02,Spring,2016-05-31T07:00Z +Cancel,102,2016,May,23,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-14,Spring,2016-05-31T07:00Z +Cancel,46,2016,May,23,31,2,7,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116.11,0,0,Canceled,2016-04-17,Spring,2016-05-31T07:00Z +Cancel,33,2016,May,23,31,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,162.71,0,0,Canceled,2016-05-04,Spring,2016-05-31T07:00Z +Cancel,102,2016,May,23,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-04-14,Spring,2016-05-31T07:00Z +Keep,206,2016,May,23,31,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient-Party,64.9,0,1,Check-Out,2016-06-10,Spring,2016-05-31T07:00Z +Keep,206,2016,May,23,31,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient-Party,64.9,0,1,Check-Out,2016-06-10,Spring,2016-05-31T07:00Z +Keep,266,2016,May,23,31,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 40, NULL,0,Contract,88.5,0,0,Check-Out,2016-06-11,Spring,2016-05-31T07:00Z +Cancel,7,2016,June,23,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 83,0,Transient,57,0,0,Canceled,2016-05-31,Summer,2016-06-01T07:00Z +Cancel,179,2016,June,23,1,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Canceled,2016-05-13,Summer,2016-06-01T07:00Z +Cancel,2,2016,June,23,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 83,0,Transient,57,0,0,Canceled,2016-06-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,118,2016,June,23,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-05-05,Summer,2016-06-01T07:00Z +Cancel,30,2016,June,23,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2016-05-10,Summer,2016-06-01T07:00Z +Cancel,43,2016,June,23,1,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2016-05-03,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,30,2016,June,23,1,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-05-31,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,215,2016,June,23,1,0,3,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,110,0,0,Canceled,2015-12-01,Summer,2016-06-01T07:00Z +Cancel,133,2016,June,23,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,85.5,0,1,Canceled,2016-01-25,Summer,2016-06-01T07:00Z +Keep,217,2016,June,23,1,1,4,2,0,0,HB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,148,0,0,Check-Out,2016-06-06,Summer,2016-06-01T07:00Z +Keep,235,2016,June,23,1,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,64,0,0,Check-Out,2016-06-06,Summer,2016-06-01T07:00Z +Keep,208,2016,June,23,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Transient,64.9,0,0,Check-Out,2016-06-08,Summer,2016-06-01T07:00Z +Keep,216,2016,June,23,1,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 8, NULL,0,Transient,58.1,0,0,Check-Out,2016-06-10,Summer,2016-06-01T07:00Z +Cancel,107,2016,June,23,1,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Canceled,2016-02-19,Summer,2016-06-01T07:00Z +Cancel,40,2016,June,23,1,2,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114,0,0,Canceled,2016-05-02,Summer,2016-06-01T07:00Z +Cancel,168,2016,June,23,1,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-05-18,Summer,2016-06-01T07:00Z +Cancel,147,2016,June,23,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-02-12,Summer,2016-06-02T07:00Z +Cancel,34,2016,June,23,2,0,3,1,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,145,0,0,Canceled,2016-04-30,Summer,2016-06-02T07:00Z +Cancel,98,2016,June,23,2,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-02-29,Summer,2016-06-02T07:00Z +Cancel,250,2016,June,23,2,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-02-12,Summer,2016-06-02T07:00Z +Cancel,101,2016,June,23,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,148,0,0,Canceled,2016-03-14,Summer,2016-06-02T07:00Z +Cancel,139,2016,June,23,2,2,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,137.89,0,0,Canceled,2016-01-29,Summer,2016-06-02T07:00Z +Keep,237,2016,June,23,2,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,82,0,1,Check-Out,2016-06-16,Summer,2016-06-02T07:00Z +Cancel,237,2016,June,23,2,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,81,0,1,Canceled,2016-04-21,Summer,2016-06-02T07:00Z +Cancel,91,2016,June,23,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient,70.11,0,1,Canceled,2016-03-07,Summer,2016-06-03T07:00Z +Cancel,20,2016,June,23,3,0,2,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-05-15,Summer,2016-06-03T07:00Z +Cancel,54,2016,June,23,3,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,0,Canceled,2016-05-26,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,150,2016,June,23,3,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-04-23,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Cancel,122,2016,June,23,3,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,97.5,0,3,No-Show,2016-06-03,Summer,2016-06-03T07:00Z +Cancel,122,2016,June,23,3,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,109.5,0,3,No-Show,2016-06-03,Summer,2016-06-03T07:00Z +Cancel,81,2016,June,23,3,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-05-18,Summer,2016-06-03T07:00Z +Cancel,182,2016,June,23,3,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,97.3,0,0,Canceled,2016-01-20,Summer,2016-06-03T07:00Z +Keep,270,2016,June,23,3,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,3,No Deposit , 40, NULL,0,Contract,77.85,0,1,Check-Out,2016-06-08,Summer,2016-06-03T07:00Z +Cancel,237,2016,June,23,3,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2015-12-26,Summer,2016-06-03T07:00Z +Cancel,143,2016,June,23,3,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-01-15,Summer,2016-06-03T07:00Z +Cancel,227,2016,June,23,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-05-25,Summer,2016-06-03T07:00Z +Cancel,198,2016,June,23,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2016-03-15,Summer,2016-06-03T07:00Z +Cancel,44,2016,June,23,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.71,0,0,Canceled,2016-04-25,Summer,2016-06-03T07:00Z +Cancel,136,2016,June,23,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-04-14,Summer,2016-06-03T07:00Z +Keep,294,2016,June,23,3,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,59,0,0,Check-Out,2016-06-12,Summer,2016-06-03T07:00Z +Keep,227,2016,June,23,3,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,92.7,0,0,Check-Out,2016-06-13,Summer,2016-06-03T07:00Z +Keep,216,2016,June,23,3,4,7,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 40, NULL,0,Transient,60.9,0,0,Check-Out,2016-06-14,Summer,2016-06-03T07:00Z +Keep,219,2016,June,23,3,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 40, NULL,0,Transient,90.9,0,2,Check-Out,2016-06-17,Summer,2016-06-03T07:00Z +Keep,270,2016,June,23,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,77.84,0,0,Check-Out,2016-06-10,Summer,2016-06-03T07:00Z +Keep,319,2016,June,23,3,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,53.55,0,1,Check-Out,2016-06-17,Summer,2016-06-03T07:00Z +Keep,319,2016,June,23,3,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,72.98,0,2,Check-Out,2016-06-17,Summer,2016-06-03T07:00Z +Cancel,264,2016,June,23,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.8,0,3,Canceled,2015-11-17,Summer,2016-06-04T07:00Z +Cancel,264,2016,June,23,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,3,Canceled,2015-11-17,Summer,2016-06-04T07:00Z +Cancel,264,2016,June,23,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,3,Canceled,2015-11-17,Summer,2016-06-04T07:00Z +Cancel,157,2016,June,23,4,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,105,0,0,Canceled,2016-01-04,Summer,2016-06-04T07:00Z +Cancel,37,2016,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.14,0,0,Canceled,2016-05-11,Summer,2016-06-04T07:00Z +Cancel,113,2016,June,23,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-02-13,Summer,2016-06-04T07:00Z +Cancel,130,2016,June,23,4,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,138.71,0,0,Canceled,2016-04-04,Summer,2016-06-04T07:00Z +Cancel,144,2016,June,23,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.34,0,1,Canceled,2016-02-01,Summer,2016-06-04T07:00Z +Cancel,128,2016,June,23,4,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,148.71,0,0,Canceled,2016-04-14,Summer,2016-06-04T07:00Z +Cancel,78,2016,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-04-04,Summer,2016-06-04T07:00Z +Cancel,151,2016,June,23,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2016-04-05,Summer,2016-06-04T07:00Z +Cancel,161,2016,June,23,4,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-03-30,Summer,2016-06-04T07:00Z +Keep,252,2016,June,23,4,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,64.9,0,3,Check-Out,2016-06-14,Summer,2016-06-04T07:00Z +Cancel,290,2016,June,23,4,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.85,0,0,Canceled,2016-02-03,Summer,2016-06-04T07:00Z +Keep,250,2016,June,23,4,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,79.84,0,0,Check-Out,2016-06-14,Summer,2016-06-04T07:00Z +Cancel,2,2016,June,24,5,1,0,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,109,0,1,Canceled,2016-06-04,Summer,2016-06-05T07:00Z +Cancel,29,2016,June,24,5,2,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-05-08,Summer,2016-06-05T07:00Z +Cancel,6,2016,June,24,5,2,1,2,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-05-31,Summer,2016-06-05T07:00Z +Cancel,46,2016,June,24,5,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-05-13,Summer,2016-06-05T07:00Z +Cancel,32,2016,June,24,5,2,3,2,0,0,BB,ALB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113,0,0,Canceled,2016-05-19,Summer,2016-06-05T07:00Z +Cancel,107,2016,June,24,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-05-20,Summer,2016-06-05T07:00Z +Cancel,107,2016,June,24,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2016-05-20,Summer,2016-06-05T07:00Z +Cancel,123,2016,June,24,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102.43,0,1,Canceled,2016-04-04,Summer,2016-06-05T07:00Z +Cancel,282,2016,June,24,5,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2015-12-30,Summer,2016-06-05T07:00Z +Cancel,114,2016,June,24,5,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-02-15,Summer,2016-06-05T07:00Z +Cancel,176,2016,June,24,5,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,2,Canceled,2016-01-18,Summer,2016-06-05T07:00Z +Cancel,256,2016,June,24,5,4,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,0,2,Canceled,2016-01-05,Summer,2016-06-05T07:00Z +Cancel,257,2016,June,24,5,4,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,121.5,0,1,Canceled,2015-09-22,Summer,2016-06-05T07:00Z +Cancel,3,2016,June,24,6,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Canceled,2016-06-06,Summer,2016-06-06T07:00Z +Cancel,3,2016,June,24,6,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Canceled,2016-06-06,Summer,2016-06-06T07:00Z +Cancel,3,2016,June,24,6,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Canceled,2016-06-03,Summer,2016-06-06T07:00Z +Cancel,76,2016,June,24,6,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-04-15,Summer,2016-06-06T07:00Z +Cancel,18,2016,June,24,6,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,0,Canceled,2016-05-24,Summer,2016-06-06T07:00Z +Keep,282,2016,June,24,6,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2016-06-10,Summer,2016-06-06T07:00Z +Cancel,40,2016,June,24,6,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,116.1,0,0,Canceled,2016-05-27,Summer,2016-06-06T07:00Z +Cancel,35,2016,June,24,6,1,4,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,117,0,1,Canceled,2016-05-31,Summer,2016-06-06T07:00Z +Cancel,195,2016,June,24,6,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-05-05,Summer,2016-06-06T07:00Z +Keep,251,2016,June,24,6,1,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 147, NULL,0,Transient,95.73,0,0,Check-Out,2016-06-12,Summer,2016-06-06T07:00Z +Cancel,94,2016,June,24,6,1,5,1,0,1,BB,POL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,99.9,0,0,Canceled,2016-05-04,Summer,2016-06-06T07:00Z +Cancel,94,2016,June,24,6,1,5,2,0,0,HB,POL,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,129.9,0,0,Canceled,2016-05-04,Summer,2016-06-06T07:00Z +Cancel,151,2016,June,24,6,3,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-01-11,Summer,2016-06-06T07:00Z +Keep,322,2016,June,24,6,3,7,1,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 40, NULL,0,Contract,78.5,0,2,Check-Out,2016-06-16,Summer,2016-06-06T07:00Z +Keep,322,2016,June,24,6,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,50.88,0,1,Check-Out,2016-06-16,Summer,2016-06-06T07:00Z +Cancel,12,2016,June,24,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,0,Canceled,2016-05-27,Summer,2016-06-07T07:00Z +Cancel,35,2016,June,24,7,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.67,0,0,Canceled,2016-05-04,Summer,2016-06-07T07:00Z +Cancel,34,2016,June,24,7,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.67,0,0,Canceled,2016-05-04,Summer,2016-06-07T07:00Z +Cancel,34,2016,June,24,7,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-05-06,Summer,2016-06-07T07:00Z +Cancel,41,2016,June,24,7,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-04,Summer,2016-06-07T07:00Z +Cancel,125,2016,June,24,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94.86,0,1,Canceled,2016-02-09,Summer,2016-06-07T07:00Z +Cancel,136,2016,June,24,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94.86,0,1,Canceled,2016-02-03,Summer,2016-06-07T07:00Z +Cancel,144,2016,June,24,7,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,85.5,0,1,Canceled,2016-04-04,Summer,2016-06-07T07:00Z +Cancel,95,2016,June,24,7,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.86,0,1,Canceled,2016-04-09,Summer,2016-06-07T07:00Z +Cancel,144,2016,June,24,7,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,85.5,0,1,Canceled,2016-04-04,Summer,2016-06-07T07:00Z +Cancel,125,2016,June,24,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,109.86,0,1,Canceled,2016-02-09,Summer,2016-06-07T07:00Z +Keep,323,2016,June,24,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,78.5,0,0,Check-Out,2016-06-14,Summer,2016-06-07T07:00Z +Cancel,58,2016,June,24,7,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-04-10,Summer,2016-06-07T07:00Z +Keep,229,2016,June,24,7,2,9,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 143, NULL,0,Transient,102.3,0,0,Check-Out,2016-06-18,Summer,2016-06-07T07:00Z +Cancel,151,2016,June,24,7,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Canceled,2016-01-12,Summer,2016-06-07T07:00Z +Keep,215,2016,June,24,7,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.5,0,0,Check-Out,2016-06-21,Summer,2016-06-07T07:00Z +Cancel,24,2016,June,24,8,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.33,0,0,Canceled,2016-05-21,Summer,2016-06-08T07:00Z +Cancel,21,2016,June,24,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.33,0,0,Canceled,2016-05-18,Summer,2016-06-08T07:00Z +Cancel,160,2016,June,24,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-05-16,Summer,2016-06-08T07:00Z +Keep,291,2016,June,24,8,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-06-12,Summer,2016-06-08T07:00Z +Cancel,97,2016,June,24,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,1,Canceled,2016-06-05,Summer,2016-06-08T07:00Z +Cancel,142,2016,June,24,8,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125.6,0,1,Canceled,2016-01-21,Summer,2016-06-08T07:00Z +Cancel,14,2016,June,24,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,137.67,0,0,Canceled,2016-05-26,Summer,2016-06-08T07:00Z +Cancel,131,2016,June,24,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,93,0,1,Canceled,2016-04-28,Summer,2016-06-08T07:00Z +Cancel,152,2016,June,24,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-04-04,Summer,2016-06-08T07:00Z +Keep,253,2016,June,24,8,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 156, NULL,0,Transient,56.52,0,2,Check-Out,2016-06-18,Summer,2016-06-08T07:00Z +Cancel,59,2016,June,24,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-05-11,Summer,2016-06-09T07:00Z +Cancel,269,2016,June,24,9,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.9,0,2,Canceled,2016-05-27,Summer,2016-06-09T07:00Z +Cancel,229,2016,June,24,9,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.9,0,1,Canceled,2015-12-19,Summer,2016-06-09T07:00Z +Cancel,286,2016,June,24,9,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2016-05-23,Summer,2016-06-09T07:00Z +Cancel,143,2016,June,24,9,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,120.3,0,1,Canceled,2016-01-23,Summer,2016-06-09T07:00Z +Cancel,15,2016,June,24,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-25,Summer,2016-06-09T07:00Z +Cancel,15,2016,June,24,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2016-05-25,Summer,2016-06-09T07:00Z +Keep,141,2016,June,24,9,2,5,2,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,105.56,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Cancel,57,2016,June,24,10,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2016-05-28,Summer,2016-06-10T07:00Z +Cancel,240,2016,June,24,10,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60.35,0,0,Canceled,2016-01-21,Summer,2016-06-10T07:00Z +Cancel,93,2016,June,24,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,151,0,0,Canceled,2016-05-25,Summer,2016-06-10T07:00Z +Cancel,162,2016,June,24,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-04-21,Summer,2016-06-10T07:00Z +Cancel,151,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2016-05-02,Summer,2016-06-10T07:00Z +Keep,269,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Cancel,142,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,95.4,0,1,Canceled,2016-02-06,Summer,2016-06-10T07:00Z +Cancel,129,2016,June,24,10,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161,0,1,Canceled,2016-06-09,Summer,2016-06-10T07:00Z +Cancel,17,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,129,0,0,Canceled,2016-06-10,Summer,2016-06-10T07:00Z +Cancel,17,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,0,Canceled,2016-06-10,Summer,2016-06-10T07:00Z +Keep,266,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Cancel,116,2016,June,24,10,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-05-09,Summer,2016-06-10T07:00Z +Cancel,16,2016,June,24,10,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-05-29,Summer,2016-06-10T07:00Z +Cancel,155,2016,June,24,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-03-30,Summer,2016-06-10T07:00Z +Keep,255,2016,June,24,10,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,53.85,0,1,Check-Out,2016-06-24,Summer,2016-06-10T07:00Z +Cancel,271,2016,June,24,11,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Canceled,2015-11-17,Summer,2016-06-11T07:00Z +Cancel,271,2016,June,24,11,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Canceled,2015-11-17,Summer,2016-06-11T07:00Z +Cancel,271,2016,June,24,11,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Canceled,2015-11-17,Summer,2016-06-11T07:00Z +Cancel,16,2016,June,24,11,2,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2016-05-31,Summer,2016-06-11T07:00Z +Cancel,17,2016,June,24,11,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-05-29,Summer,2016-06-11T07:00Z +Cancel,115,2016,June,24,11,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131.67,0,1,Canceled,2016-05-11,Summer,2016-06-11T07:00Z +Keep,220,2016,June,24,11,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,81,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Cancel,191,2016,June,24,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,54.9,0,0,Canceled,2016-03-23,Summer,2016-06-11T07:00Z +Keep,241,2016,June,24,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,99,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,220,2016,June,24,11,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,81,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Cancel,57,2016,June,24,11,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-04-15,Summer,2016-06-11T07:00Z +Cancel,120,2016,June,24,11,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2016-04-11,Summer,2016-06-11T07:00Z +Cancel,227,2016,June,24,11,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-04-04,Summer,2016-06-11T07:00Z +Keep,241,2016,June,24,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,113,1,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Cancel,227,2016,June,24,11,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-04-04,Summer,2016-06-11T07:00Z +Cancel,184,2016,June,24,11,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,77.85,0,0,No-Show,2016-06-11,Summer,2016-06-11T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,55,2016,June,25,12,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,129,0,0,Canceled,2016-04-18,Summer,2016-06-12T07:00Z +Keep,19,2016,June,25,12,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,1,Check-Out,2016-06-14,Summer,2016-06-12T07:00Z +Cancel,55,2016,June,25,12,2,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,0,Canceled,2016-04-18,Summer,2016-06-12T07:00Z +Cancel,36,2016,June,25,12,2,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-05-08,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,277,2016,June,25,12,2,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,110,0,0,Canceled,2016-03-29,Summer,2016-06-12T07:00Z +Cancel,17,2016,June,25,12,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-05-30,Summer,2016-06-12T07:00Z +Cancel,199,2016,June,25,12,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-02-22,Summer,2016-06-12T07:00Z +Cancel,149,2016,June,25,12,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.9,0,2,Canceled,2016-01-16,Summer,2016-06-12T07:00Z +Cancel,40,2016,June,25,12,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-05-05,Summer,2016-06-12T07:00Z +Cancel,141,2016,June,25,12,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-02-03,Summer,2016-06-12T07:00Z +Cancel,70,2016,June,25,12,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,193,0,0,Canceled,2016-04-04,Summer,2016-06-12T07:00Z +Keep,328,2016,June,25,12,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,0,Check-Out,2016-06-21,Summer,2016-06-12T07:00Z +Cancel,221,2016,June,25,12,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,114.75,0,1,Canceled,2015-11-09,Summer,2016-06-12T07:00Z +Keep,221,2016,June,25,13,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-06-13,Summer,2016-06-13T07:00Z +Cancel,65,2016,June,25,13,1,0,2,0,0,BB,RUS,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,107.1,0,0,Canceled,2016-04-27,Summer,2016-06-13T07:00Z +Cancel,150,2016,June,25,13,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Canceled,2016-01-27,Summer,2016-06-13T07:00Z +Keep,259,2016,June,25,13,1,3,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2016-06-17,Summer,2016-06-13T07:00Z +Cancel,0,2016,June,25,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2016-06-13,Summer,2016-06-13T07:00Z +Cancel,32,2016,June,25,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-14,Summer,2016-06-13T07:00Z +Cancel,72,2016,June,25,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-04-28,Summer,2016-06-13T07:00Z +Cancel,146,2016,June,25,13,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,103.05,0,0,Canceled,2016-04-04,Summer,2016-06-13T07:00Z +Cancel,39,2016,June,25,13,1,4,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2016-05-05,Summer,2016-06-13T07:00Z +Cancel,206,2016,June,25,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-04-08,Summer,2016-06-13T07:00Z +Cancel,206,2016,June,25,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,2,Canceled,2016-04-08,Summer,2016-06-13T07:00Z +Cancel,65,2016,June,25,13,1,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,232,0,0,Canceled,2016-04-19,Summer,2016-06-13T07:00Z +Cancel,50,2016,June,25,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-04-24,Summer,2016-06-13T07:00Z +Cancel,50,2016,June,25,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,2,Canceled,2016-04-28,Summer,2016-06-13T07:00Z +Cancel,114,2016,June,25,13,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2016-02-20,Summer,2016-06-13T07:00Z +Cancel,205,2016,June,25,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-03-29,Summer,2016-06-13T07:00Z +Keep,217,2016,June,25,13,2,5,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,223,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,53.12,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,223,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,53.12,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Cancel,112,2016,June,25,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,57.6,0,0,Canceled,2016-03-01,Summer,2016-06-13T07:00Z +Keep,217,2016,June,25,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,67.54,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Cancel,223,2016,June,25,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2015-11-09,Summer,2016-06-13T07:00Z +Keep,145,2016,June,25,13,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient,51.85,0,2,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Cancel,223,2016,June,25,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2015-11-09,Summer,2016-06-13T07:00Z +Cancel,166,2016,June,25,13,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-01-25,Summer,2016-06-13T07:00Z +Cancel,104,2016,June,25,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Canceled,2016-03-07,Summer,2016-06-14T07:00Z +Cancel,248,2016,June,25,14,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-04-12,Summer,2016-06-14T07:00Z +Cancel,147,2016,June,25,14,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161,0,1,Canceled,2016-01-25,Summer,2016-06-14T07:00Z +Cancel,97,2016,June,25,14,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,0,Canceled,2016-03-13,Summer,2016-06-14T07:00Z +Cancel,62,2016,June,25,14,0,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,201.5,0,0,Canceled,2016-05-04,Summer,2016-06-14T07:00Z +Cancel,110,2016,June,25,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,89.1,0,0,Canceled,2016-05-11,Summer,2016-06-14T07:00Z +Cancel,95,2016,June,25,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,57.6,0,1,Canceled,2016-03-21,Summer,2016-06-14T07:00Z +Cancel,98,2016,June,25,14,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,138.47,0,0,Canceled,2016-04-15,Summer,2016-06-14T07:00Z +Cancel,330,2016,June,25,14,2,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,48.88,0,0,Canceled,2016-01-25,Summer,2016-06-14T07:00Z +Keep,225,2016,June,25,14,2,9,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,88.9,0,1,Check-Out,2016-06-25,Summer,2016-06-14T07:00Z +Keep,231,2016,June,25,15,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,81,0,2,Check-Out,2016-06-18,Summer,2016-06-15T07:00Z +Keep,231,2016,June,25,15,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,81,0,2,Check-Out,2016-06-18,Summer,2016-06-15T07:00Z +Keep,268,2016,June,25,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,57.15,1,1,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Cancel,274,2016,June,25,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2015-11-20,Summer,2016-06-15T07:00Z +Keep,250,2016,June,25,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 314, NULL,0,Transient,59.31,0,1,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,268,2016,June,25,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Cancel,249,2016,June,25,15,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2015-12-26,Summer,2016-06-15T07:00Z +Keep,246,2016,June,25,15,2,9,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,102.35,0,1,Check-Out,2016-06-26,Summer,2016-06-15T07:00Z +Cancel,83,2016,June,25,16,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,176,0,0,Canceled,2016-04-27,Summer,2016-06-16T07:00Z +Cancel,85,2016,June,25,16,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,176,0,0,Canceled,2016-03-24,Summer,2016-06-16T07:00Z +Cancel,40,2016,June,25,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-10,Summer,2016-06-16T07:00Z +Cancel,37,2016,June,25,16,2,4,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-05,Summer,2016-06-16T07:00Z +Cancel,37,2016,June,25,16,2,4,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-05,Summer,2016-06-16T07:00Z +Cancel,250,2016,June,25,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,99,0,1,Canceled,2016-01-09,Summer,2016-06-16T07:00Z +Keep,234,2016,June,25,16,2,5,2,0,0,BB,NOR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,69.71,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Cancel,275,2016,June,25,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2015-09-21,Summer,2016-06-16T07:00Z +Cancel,73,2016,June,25,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,96.43,0,1,Canceled,2016-06-02,Summer,2016-06-16T07:00Z +Cancel,21,2016,June,25,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129,0,0,Canceled,2016-06-08,Summer,2016-06-16T07:00Z +Keep,247,2016,June,25,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,98.6,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Cancel,32,2016,June,25,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Canceled,2016-06-14,Summer,2016-06-17T07:00Z +Cancel,37,2016,June,25,17,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Canceled,2016-05-11,Summer,2016-06-17T07:00Z +Cancel,37,2016,June,25,17,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Canceled,2016-05-11,Summer,2016-06-17T07:00Z +Cancel,32,2016,June,25,17,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Canceled,2016-06-14,Summer,2016-06-17T07:00Z +Cancel,43,2016,June,25,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-09,Summer,2016-06-17T07:00Z +Cancel,72,2016,June,25,17,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-04-20,Summer,2016-06-17T07:00Z +Cancel,92,2016,June,25,17,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,176,0,0,Canceled,2016-03-30,Summer,2016-06-17T07:00Z +Cancel,61,2016,June,25,17,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Canceled,2016-04-29,Summer,2016-06-17T07:00Z +Keep,221,2016,June,25,17,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,113,1,1,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Cancel,60,2016,June,25,17,2,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-06-06,Summer,2016-06-17T07:00Z +Cancel,155,2016,June,25,17,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.64,0,2,Canceled,2016-06-17,Summer,2016-06-17T07:00Z +Cancel,73,2016,June,25,17,2,4,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,183.5,0,0,Canceled,2016-05-03,Summer,2016-06-17T07:00Z +Keep,228,2016,June,25,17,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,147,1,1,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Cancel,174,2016,June,25,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,2,Canceled,2016-02-22,Summer,2016-06-17T07:00Z +Keep,273,2016,June,25,17,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,77.64,0,1,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Keep,300,2016,June,25,17,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,121.5,0,1,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Keep,273,2016,June,25,17,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,77.64,0,1,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Cancel,256,2016,June,25,17,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2015-12-30,Summer,2016-06-17T07:00Z +Keep,246,2016,June,25,17,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-26,Summer,2016-06-17T07:00Z +Keep,248,2016,June,25,17,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,59.6,0,0,Check-Out,2016-07-01,Summer,2016-06-17T07:00Z +Cancel,304,2016,June,25,17,4,10,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121.5,0,1,Canceled,2015-08-31,Summer,2016-06-17T07:00Z +Cancel,23,2016,June,25,18,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Canceled,2016-06-06,Summer,2016-06-18T07:00Z +Cancel,67,2016,June,25,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2016-04-15,Summer,2016-06-18T07:00Z +Cancel,10,2016,June,25,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,103.2,0,0,No-Show,2016-06-18,Summer,2016-06-18T07:00Z +Cancel,23,2016,June,25,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-07,Summer,2016-06-18T07:00Z +Cancel,12,2016,June,25,18,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,128.8,0,0,Canceled,2016-06-15,Summer,2016-06-18T07:00Z +Cancel,81,2016,June,25,18,2,1,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-05-23,Summer,2016-06-18T07:00Z +Cancel,62,2016,June,25,18,2,2,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-04-30,Summer,2016-06-18T07:00Z +Cancel,117,2016,June,25,18,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2016-02-27,Summer,2016-06-18T07:00Z +Cancel,250,2016,June,25,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2016-01-18,Summer,2016-06-18T07:00Z +Cancel,301,2016,June,25,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,121.5,0,1,Canceled,2015-08-22,Summer,2016-06-18T07:00Z +Keep,250,2016,June,25,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,78.5,0,0,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Cancel,228,2016,June,25,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2015-11-03,Summer,2016-06-18T07:00Z +Cancel,250,2016,June,25,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2016-01-18,Summer,2016-06-18T07:00Z +Keep,256,2016,June,25,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,75.65,0,2,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Cancel,231,2016,June,25,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,57.6,0,0,Canceled,2015-12-15,Summer,2016-06-18T07:00Z +Cancel,164,2016,June,25,18,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-01-07,Summer,2016-06-18T07:00Z +Keep,241,2016,June,25,18,2,6,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-26,Summer,2016-06-18T07:00Z +Cancel,291,2016,June,25,18,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2016-02-25,Summer,2016-06-18T07:00Z +Keep,241,2016,June,25,18,2,6,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-26,Summer,2016-06-18T07:00Z +Keep,249,2016,June,25,18,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,85,0,4,Check-Out,2016-06-28,Summer,2016-06-18T07:00Z +Keep,249,2016,June,25,18,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 143, NULL,0,Transient,85,0,4,Check-Out,2016-06-28,Summer,2016-06-18T07:00Z +Cancel,175,2016,June,25,18,4,7,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-01-11,Summer,2016-06-18T07:00Z +Keep,143,2016,June,25,18,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,65.75,0,1,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Cancel,81,2016,June,26,19,2,1,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,189.19,0,0,Canceled,2016-04-01,Summer,2016-06-19T07:00Z +Cancel,5,2016,June,26,19,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.33,0,1,Canceled,2016-06-17,Summer,2016-06-19T07:00Z +Keep,267,2016,June,26,19,2,4,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60.35,0,1,Check-Out,2016-06-25,Summer,2016-06-19T07:00Z +Keep,267,2016,June,26,19,2,4,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60.35,0,1,Check-Out,2016-06-25,Summer,2016-06-19T07:00Z +Cancel,163,2016,June,26,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,1,No-Show,2016-06-19,Summer,2016-06-19T07:00Z +Cancel,235,2016,June,26,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,136,0,2,Canceled,2016-03-18,Summer,2016-06-19T07:00Z +Cancel,128,2016,June,26,19,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.75,0,0,Canceled,2016-02-12,Summer,2016-06-19T07:00Z +Cancel,128,2016,June,26,19,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.75,0,0,Canceled,2016-02-12,Summer,2016-06-19T07:00Z +Cancel,128,2016,June,26,19,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.75,0,0,Canceled,2016-02-12,Summer,2016-06-19T07:00Z +Cancel,128,2016,June,26,19,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.75,0,0,Canceled,2016-02-12,Summer,2016-06-19T07:00Z +Cancel,185,2016,June,26,19,4,10,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150.57,0,2,Canceled,2016-01-05,Summer,2016-06-19T07:00Z +Cancel,11,2016,June,26,20,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Canceled,2016-06-15,Summer,2016-06-20T07:00Z +Keep,244,2016,June,26,20,1,0,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,72,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,72,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,191,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-06-02,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Keep,271,2016,June,26,20,1,5,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,156.75,1,0,Check-Out,2016-06-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,72,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,Non Refund , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,177,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient,72,0,0,Canceled,2016-01-26,Summer,2016-06-20T07:00Z +Cancel,167,2016,June,26,20,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,3,Canceled,2016-02-23,Summer,2016-06-20T07:00Z +Cancel,152,2016,June,26,20,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,62.9,0,0,Canceled,2016-01-20,Summer,2016-06-20T07:00Z +Cancel,152,2016,June,26,20,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,62.9,0,0,Canceled,2016-01-20,Summer,2016-06-20T07:00Z +Keep,306,2016,June,26,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,79.84,0,0,Check-Out,2016-06-27,Summer,2016-06-20T07:00Z +Cancel,216,2016,June,26,20,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-05-04,Summer,2016-06-20T07:00Z +Keep,304,2016,June,26,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,1,Check-Out,2016-07-04,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Cancel,293,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,0,Canceled,2016-05-19,Summer,2016-06-21T07:00Z +Cancel,293,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,1,Canceled,2016-05-19,Summer,2016-06-21T07:00Z +Cancel,293,2016,June,26,21,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,0,Canceled,2016-05-19,Summer,2016-06-21T07:00Z +Cancel,293,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,0,Canceled,2016-05-19,Summer,2016-06-21T07:00Z +Cancel,293,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,0,Canceled,2016-05-19,Summer,2016-06-21T07:00Z +Cancel,203,2016,June,26,21,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2016-03-01,Summer,2016-06-21T07:00Z +Cancel,294,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-06-10,Summer,2016-06-21T07:00Z +Cancel,309,2016,June,26,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2015-09-17,Summer,2016-06-21T07:00Z +Keep,227,2016,June,26,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Cancel,155,2016,June,26,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2016-02-09,Summer,2016-06-21T07:00Z +Keep,272,2016,June,26,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 143, NULL,0,Transient,100.3,0,1,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Cancel,167,2016,June,26,21,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,54.72,0,0,Canceled,2016-02-04,Summer,2016-06-21T07:00Z +Cancel,124,2016,June,26,21,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.17,0,1,Canceled,2016-06-09,Summer,2016-06-21T07:00Z +Cancel,242,2016,June,26,21,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,57.6,0,0,Canceled,2016-06-14,Summer,2016-06-21T07:00Z +Keep,237,2016,June,26,21,2,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,3,Check-Out,2016-06-30,Summer,2016-06-21T07:00Z +Keep,237,2016,June,26,21,2,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,141.67,0,2,Check-Out,2016-06-30,Summer,2016-06-21T07:00Z +Cancel,127,2016,June,26,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,1,No-Show,2016-06-21,Summer,2016-06-21T07:00Z +Keep,235,2016,June,26,21,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,92.36,0,0,Check-Out,2016-07-05,Summer,2016-06-21T07:00Z +Cancel,247,2016,June,26,22,0,3,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Canceled,2016-05-24,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,253,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,253,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Cancel,29,2016,June,26,22,0,3,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Canceled,2016-05-24,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,253,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,253,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,247,2016,June,26,22,0,3,1,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,76,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Cancel,2,2016,June,26,22,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,169,0,0,Canceled,2016-06-22,Summer,2016-06-22T07:00Z +Keep,253,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,1,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,75,Transient-Party,76,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Cancel,267,2016,June,26,22,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.51,0,1,Canceled,2016-03-09,Summer,2016-06-22T07:00Z +Cancel,0,2016,June,26,22,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-06-22,Summer,2016-06-22T07:00Z +Cancel,267,2016,June,26,22,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.51,0,1,Canceled,2016-03-09,Summer,2016-06-22T07:00Z +Cancel,295,2016,June,26,22,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.51,0,1,Canceled,2016-06-15,Summer,2016-06-22T07:00Z +Cancel,295,2016,June,26,22,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.51,0,1,Canceled,2016-03-10,Summer,2016-06-22T07:00Z +Keep,322,2016,June,26,22,2,4,1,0,0,SC,POL,Groups,Direct, 0,0,0,A,I,2,No Deposit , NULL, NULL,75,Transient-Party,0,0,0,Check-Out,2016-06-28,Summer,2016-06-22T07:00Z +Cancel,3,2016,June,26,22,0,1,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-06-19,Summer,2016-06-22T07:00Z +Keep,2,2016,June,26,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 331,0,Transient,79,0,0,Check-Out,2016-06-23,Summer,2016-06-22T07:00Z +Cancel,128,2016,June,26,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Canceled,2016-02-15,Summer,2016-06-22T07:00Z +Cancel,155,2016,June,26,22,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,76.5,0,0,Canceled,2016-06-15,Summer,2016-06-22T07:00Z +Cancel,18,2016,June,26,23,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-11,Summer,2016-06-23T07:00Z +Cancel,225,2016,June,26,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-05-13,Summer,2016-06-23T07:00Z +Cancel,225,2016,June,26,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-03-21,Summer,2016-06-23T07:00Z +Keep,286,2016,June,26,23,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,1,No Deposit , 240, NULL,0,Transient,85.5,0,2,Check-Out,2016-06-27,Summer,2016-06-23T07:00Z +Cancel,131,2016,June,26,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,0,Canceled,2016-02-24,Summer,2016-06-23T07:00Z +Keep,286,2016,June,26,23,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,73.5,0,2,Check-Out,2016-06-27,Summer,2016-06-23T07:00Z +Keep,262,2016,June,26,23,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 156, NULL,0,Transient,56.72,0,0,Check-Out,2016-06-27,Summer,2016-06-23T07:00Z +Keep,227,2016,June,26,23,3,8,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,94,0,0,Check-Out,2016-07-04,Summer,2016-06-23T07:00Z +Cancel,11,2016,June,26,24,0,1,1,2,1,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,174,0,0,Canceled,2016-06-24,Summer,2016-06-24T07:00Z +Cancel,3,2016,June,26,24,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179,0,0,No-Show,2016-06-24,Summer,2016-06-24T07:00Z +Cancel,13,2016,June,26,24,0,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-11,Summer,2016-06-24T07:00Z +Cancel,284,2016,June,26,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,3,No-Show,2016-06-24,Summer,2016-06-24T07:00Z +Keep,252,2016,June,26,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 40, NULL,0,Transient,53.84,0,0,Check-Out,2016-07-01,Summer,2016-06-24T07:00Z +Cancel,294,2016,June,26,24,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121.5,0,1,Canceled,2016-05-17,Summer,2016-06-24T07:00Z +Keep,291,2016,June,26,24,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,1,Check-Out,2016-07-08,Summer,2016-06-24T07:00Z +Keep,232,2016,June,26,24,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,2,Check-Out,2016-07-08,Summer,2016-06-24T07:00Z +Keep,310,2016,June,26,24,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-07-08,Summer,2016-06-24T07:00Z +Keep,232,2016,June,26,24,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-07-08,Summer,2016-06-24T07:00Z +Cancel,170,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-01-25,Summer,2016-06-25T07:00Z +Cancel,170,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-01-25,Summer,2016-06-25T07:00Z +Cancel,0,2016,June,26,25,0,1,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,179,0,0,No-Show,2016-06-25,Summer,2016-06-25T07:00Z +Cancel,170,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-01-25,Summer,2016-06-25T07:00Z +Cancel,3,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2016-06-23,Summer,2016-06-25T07:00Z +Cancel,24,2016,June,26,25,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2016-06-10,Summer,2016-06-25T07:00Z +Cancel,4,2016,June,26,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,169,0,0,Canceled,2016-06-22,Summer,2016-06-25T07:00Z +Cancel,75,2016,June,26,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-04-12,Summer,2016-06-25T07:00Z +Cancel,234,2016,June,26,25,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-01-05,Summer,2016-06-25T07:00Z +Cancel,127,2016,June,26,25,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-02-29,Summer,2016-06-25T07:00Z +Cancel,112,2016,June,26,25,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,191.43,0,0,Canceled,2016-04-17,Summer,2016-06-25T07:00Z +Keep,229,2016,June,26,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.29,0,2,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Cancel,165,2016,June,26,25,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,141.01,0,2,Canceled,2016-01-15,Summer,2016-06-25T07:00Z +Cancel,226,2016,June,26,25,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,118.15,0,0,Canceled,2016-02-01,Summer,2016-06-25T07:00Z +Cancel,117,2016,June,26,25,3,6,2,1,1,FB,PRT,Direct,Direct, 0,0,0,C,C,4,No Deposit , NULL, NULL,0,Transient,196.5,0,0,Canceled,2016-05-24,Summer,2016-06-25T07:00Z +Cancel,196,2016,June,26,25,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.5,0,0,Canceled,2016-06-08,Summer,2016-06-25T07:00Z +Keep,285,2016,June,26,25,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,126.64,0,0,Check-Out,2016-07-09,Summer,2016-06-25T07:00Z +Keep,241,2016,June,26,25,4,10,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150.71,0,0,Check-Out,2016-07-09,Summer,2016-06-25T07:00Z +Keep,3,2016,June,27,26,1,0,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120,0,1,Check-Out,2016-06-27,Summer,2016-06-26T07:00Z +Cancel,92,2016,June,27,26,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-05-08,Summer,2016-06-26T07:00Z +Cancel,92,2016,June,27,26,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-04-11,Summer,2016-06-26T07:00Z +Cancel,94,2016,June,27,26,2,3,1,0,0,BB,HKG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107,0,0,Canceled,2016-04-23,Summer,2016-06-26T07:00Z +Cancel,90,2016,June,27,26,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123.33,0,1,Canceled,2016-05-06,Summer,2016-06-26T07:00Z +Cancel,90,2016,June,27,26,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123.33,0,1,Canceled,2016-05-06,Summer,2016-06-26T07:00Z +Cancel,123,2016,June,27,26,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2016-06-07,Summer,2016-06-26T07:00Z +Keep,227,2016,June,27,26,2,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,C,0,No Deposit , NULL, NULL,0,Transient,145.25,1,2,Check-Out,2016-06-30,Summer,2016-06-26T07:00Z +Cancel,172,2016,June,27,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.57,0,1,Canceled,2016-01-26,Summer,2016-06-26T07:00Z +Cancel,105,2016,June,27,26,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,143.57,0,0,Canceled,2016-03-22,Summer,2016-06-26T07:00Z +Cancel,116,2016,June,27,26,3,5,2,0,2,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,145.88,0,0,Canceled,2016-05-27,Summer,2016-06-26T07:00Z +Cancel,116,2016,June,27,26,3,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,145.88,0,0,Canceled,2016-05-27,Summer,2016-06-26T07:00Z +Cancel,105,2016,June,27,26,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155.57,0,0,Canceled,2016-03-22,Summer,2016-06-26T07:00Z +Keep,274,2016,June,27,26,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,85.3,0,1,Check-Out,2016-07-08,Summer,2016-06-26T07:00Z +Cancel,0,2016,June,27,27,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-06-27,Summer,2016-06-27T07:00Z +Cancel,47,2016,June,27,27,1,0,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-05-11,Summer,2016-06-27T07:00Z +Cancel,5,2016,June,27,27,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,165,0,0,Canceled,2016-06-23,Summer,2016-06-27T07:00Z +Cancel,26,2016,June,27,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-06-02,Summer,2016-06-27T07:00Z +Cancel,10,2016,June,27,27,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 416,0,Transient,79,0,0,Canceled,2016-06-24,Summer,2016-06-27T07:00Z +Cancel,167,2016,June,27,27,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,155.33,0,1,Canceled,2016-01-25,Summer,2016-06-27T07:00Z +Cancel,91,2016,June,27,27,1,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130.67,0,0,Canceled,2016-03-28,Summer,2016-06-27T07:00Z +Cancel,198,2016,June,27,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.64,0,2,Canceled,2016-01-12,Summer,2016-06-27T07:00Z +Keep,247,2016,June,27,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,73.49,0,0,Check-Out,2016-07-04,Summer,2016-06-27T07:00Z +Cancel,172,2016,June,27,27,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 128, NULL,0,Transient,48.6,0,0,Canceled,2016-06-22,Summer,2016-06-27T07:00Z +Cancel,174,2016,June,27,27,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2016-05-28,Summer,2016-06-27T07:00Z +Cancel,174,2016,June,27,27,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2016-05-28,Summer,2016-06-27T07:00Z +Cancel,184,2016,June,27,27,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,61.92,0,0,Canceled,2016-01-11,Summer,2016-06-27T07:00Z +Keep,240,2016,June,27,27,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,93.96,0,0,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Cancel,171,2016,June,27,27,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91.5,0,0,Canceled,2016-01-09,Summer,2016-06-27T07:00Z +Keep,290,2016,June,27,27,3,7,3,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,120.16,0,0,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Cancel,172,2016,June,27,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.64,0,1,Canceled,2016-06-17,Summer,2016-06-28T07:00Z +Keep,244,2016,June,27,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,57.25,0,0,Check-Out,2016-07-05,Summer,2016-06-28T07:00Z +Cancel,246,2016,June,27,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.14,0,1,Canceled,2016-01-30,Summer,2016-06-28T07:00Z +Cancel,174,2016,June,27,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,77.14,0,0,Canceled,2016-03-07,Summer,2016-06-28T07:00Z +Cancel,106,2016,June,27,28,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,185.33,0,0,Canceled,2016-03-29,Summer,2016-06-28T07:00Z +Keep,241,2016,June,27,28,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,98,0,1,Check-Out,2016-07-07,Summer,2016-06-28T07:00Z +Keep,230,2016,June,27,28,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 2, NULL,0,Contract,96,0,0,Check-Out,2016-07-07,Summer,2016-06-28T07:00Z +Keep,237,2016,June,27,28,2,8,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,60.29,0,3,Check-Out,2016-07-08,Summer,2016-06-28T07:00Z +Keep,237,2016,June,27,28,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,60.29,0,3,Check-Out,2016-07-08,Summer,2016-06-28T07:00Z +Cancel,266,2016,June,27,28,2,8,2,3,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,151.8,0,0,Canceled,2015-10-12,Summer,2016-06-28T07:00Z +Keep,237,2016,June,27,28,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,60.29,0,3,Check-Out,2016-07-08,Summer,2016-06-28T07:00Z +Keep,314,2016,June,27,28,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-08,Summer,2016-06-28T07:00Z +Cancel,208,2016,June,27,28,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,73.95,0,2,Canceled,2016-06-23,Summer,2016-06-28T07:00Z +Keep,295,2016,June,27,28,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-07-12,Summer,2016-06-28T07:00Z +Cancel,114,2016,June,27,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124,0,0,Canceled,2016-03-08,Summer,2016-06-29T07:00Z +Cancel,166,2016,June,27,29,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,118,0,1,Canceled,2016-01-15,Summer,2016-06-29T07:00Z +Keep,186,2016,June,27,29,4,10,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,62.9,0,2,Check-Out,2016-06-29,Summer,2016-06-29T07:00Z +Keep,186,2016,June,27,29,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,80.2,0,2,Check-Out,2016-06-29,Summer,2016-06-29T07:00Z +Cancel,168,2016,June,27,29,4,11,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105.54,0,0,Canceled,2016-03-21,Summer,2016-06-29T07:00Z +Cancel,2,2016,June,27,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,159,0,0,Canceled,2016-06-28,Summer,2016-06-30T07:00Z +Cancel,78,2016,June,27,30,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,206.33,0,0,Canceled,2016-05-13,Summer,2016-06-30T07:00Z +Cancel,20,2016,June,27,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-06-10,Summer,2016-06-30T07:00Z +Cancel,159,2016,June,27,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,130.75,0,1,Canceled,2016-02-24,Summer,2016-06-30T07:00Z +Cancel,32,2016,June,27,30,2,7,2,0,0,BB,SWE,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,208.56,0,0,Canceled,2016-06-13,Summer,2016-06-30T07:00Z +Cancel,201,2016,June,27,30,2,8,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,2,Canceled,2016-04-27,Summer,2016-06-30T07:00Z +Cancel,164,2016,June,27,30,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,64.85,0,1,Canceled,2016-06-07,Summer,2016-06-30T07:00Z +Cancel,68,2016,July,27,1,0,1,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,225,0,0,Canceled,2016-05-30,Summer,2016-07-01T07:00Z +Cancel,62,2016,July,27,1,0,2,2,2,0,BB,IND,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2016-05-01,Summer,2016-07-01T07:00Z +Cancel,9,2016,July,27,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,169,0,1,No-Show,2016-07-01,Summer,2016-07-01T07:00Z +Cancel,255,2016,July,27,1,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,142.5,0,0,Canceled,2015-10-20,Summer,2016-07-01T07:00Z +Keep,254,2016,July,27,1,2,2,3,1,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,135.25,1,0,Check-Out,2016-07-05,Summer,2016-07-01T07:00Z +Cancel,178,2016,July,27,1,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,81,0,1,Canceled,2016-02-12,Summer,2016-07-01T07:00Z +Cancel,170,2016,July,27,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Transient,57.8,0,0,Canceled,2016-02-06,Summer,2016-07-01T07:00Z +Cancel,220,2016,July,27,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2016-03-01,Summer,2016-07-01T07:00Z +Cancel,220,2016,July,27,1,2,6,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,111,0,1,Canceled,2016-03-01,Summer,2016-07-01T07:00Z +Keep,0,2016,July,27,1,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,83,0,2,Check-Out,2016-07-10,Summer,2016-07-01T07:00Z +Cancel,301,2016,July,27,1,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-06-20,Summer,2016-07-01T07:00Z +Cancel,301,2016,July,27,1,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,2,Canceled,2015-09-07,Summer,2016-07-01T07:00Z +Keep,304,2016,July,27,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,59.8,0,1,Check-Out,2016-07-15,Summer,2016-07-01T07:00Z +Keep,305,2016,July,27,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-15,Summer,2016-07-01T07:00Z +Cancel,164,2016,July,27,1,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,105.4,0,1,Canceled,2016-06-30,Summer,2016-07-01T07:00Z +Cancel,68,2016,July,27,1,0,1,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2016-05-30,Summer,2016-07-01T07:00Z +Keep,305,2016,July,27,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-15,Summer,2016-07-01T07:00Z +Keep,241,2016,July,27,2,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,110,1,1,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Cancel,170,2016,July,27,2,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,103.26,0,2,Canceled,2016-03-10,Summer,2016-07-02T07:00Z +Cancel,170,2016,July,27,2,2,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,114.65,0,3,Canceled,2016-03-10,Summer,2016-07-02T07:00Z +Cancel,73,2016,July,27,2,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,36.5,0,0,Canceled,2016-04-22,Summer,2016-07-02T07:00Z +Cancel,189,2016,July,27,2,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-06-22,Summer,2016-07-02T07:00Z +Cancel,179,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-03-23,Summer,2016-07-02T07:00Z +Keep,273,2016,July,27,2,2,5,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,74,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Cancel,179,2016,July,27,2,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,1,Canceled,2016-03-23,Summer,2016-07-02T07:00Z +Cancel,170,2016,July,27,2,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,103.76,0,3,Canceled,2016-03-10,Summer,2016-07-02T07:00Z +Cancel,171,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,1,Canceled,2016-05-23,Summer,2016-07-02T07:00Z +Cancel,172,2016,July,27,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,174,0,0,Canceled,2016-06-22,Summer,2016-07-02T07:00Z +Cancel,264,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,1,Canceled,2015-10-17,Summer,2016-07-02T07:00Z +Cancel,203,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-02-16,Summer,2016-07-02T07:00Z +Keep,248,2016,July,27,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 143, NULL,0,Transient,81.9,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Cancel,179,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-03-23,Summer,2016-07-02T07:00Z +Keep,236,2016,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Cancel,172,2016,July,27,2,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,134.1,0,1,Canceled,2016-02-16,Summer,2016-07-02T07:00Z +Cancel,138,2016,July,27,2,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-02-19,Summer,2016-07-02T07:00Z +Keep,149,2016,July,27,2,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 69, NULL,0,Transient,1.8,0,1,Check-Out,2016-07-02,Summer,2016-07-02T07:00Z +Cancel,138,2016,July,27,2,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-02-19,Summer,2016-07-02T07:00Z +Cancel,266,2016,July,27,2,4,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,139.5,0,0,Canceled,2016-06-13,Summer,2016-07-02T07:00Z +Cancel,138,2016,July,27,2,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2016-02-19,Summer,2016-07-02T07:00Z +Keep,243,2016,July,27,2,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,112.2,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Cancel,178,2016,July,27,2,4,11,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-06-11,Summer,2016-07-02T07:00Z +Cancel,265,2016,July,28,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-06-13,Summer,2016-07-03T07:00Z +Cancel,152,2016,July,28,3,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,121.6,0,1,Canceled,2016-06-22,Summer,2016-07-03T07:00Z +Cancel,169,2016,July,28,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,96,0,0,Canceled,2016-06-27,Summer,2016-07-03T07:00Z +Cancel,265,2016,July,28,3,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-06-13,Summer,2016-07-03T07:00Z +Cancel,139,2016,July,28,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,181,0,0,Canceled,2016-05-19,Summer,2016-07-03T07:00Z +Cancel,139,2016,July,28,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,193,0,0,Canceled,2016-05-19,Summer,2016-07-03T07:00Z +Cancel,265,2016,July,28,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-06-13,Summer,2016-07-03T07:00Z +Cancel,167,2016,July,28,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,79.06,0,1,Canceled,2016-03-22,Summer,2016-07-03T07:00Z +Cancel,265,2016,July,28,3,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-06-13,Summer,2016-07-03T07:00Z +Cancel,314,2016,July,28,3,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-06-20,Summer,2016-07-03T07:00Z +Keep,349,2016,July,28,3,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,111.3,0,0,Check-Out,2016-07-14,Summer,2016-07-03T07:00Z +Cancel,208,2016,July,28,3,4,9,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,119.25,0,0,Canceled,2016-01-27,Summer,2016-07-03T07:00Z +Cancel,15,2016,July,28,4,1,2,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,272,0,0,Canceled,2016-06-23,Summer,2016-07-04T07:00Z +Cancel,18,2016,July,28,4,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-23,Summer,2016-07-04T07:00Z +Cancel,38,2016,July,28,4,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,178.64,0,0,Canceled,2016-06-16,Summer,2016-07-04T07:00Z +Keep,256,2016,July,28,4,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93,1,1,Check-Out,2016-07-09,Summer,2016-07-04T07:00Z +Keep,317,2016,July,28,4,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,163.2,1,1,Check-Out,2016-07-08,Summer,2016-07-04T07:00Z +Keep,317,2016,July,28,4,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,2,Check-Out,2016-07-10,Summer,2016-07-04T07:00Z +Cancel,166,2016,July,28,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,57.8,0,1,Canceled,2016-07-01,Summer,2016-07-04T07:00Z +Cancel,171,2016,July,28,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,75.6,0,0,Canceled,2016-01-15,Summer,2016-07-04T07:00Z +Cancel,166,2016,July,28,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,57.8,0,1,Canceled,2016-07-01,Summer,2016-07-04T07:00Z +Cancel,308,2016,July,28,4,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,99.9,0,0,Canceled,2016-05-27,Summer,2016-07-04T07:00Z +Keep,166,2016,July,28,4,3,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,83.8,0,0,Check-Out,2016-07-14,Summer,2016-07-04T07:00Z +Cancel,398,2016,July,28,4,3,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,134.73,0,0,Canceled,2016-01-15,Summer,2016-07-04T07:00Z +Keep,166,2016,July,28,4,3,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,83.8,0,0,Check-Out,2016-07-14,Summer,2016-07-04T07:00Z +Cancel,175,2016,July,28,4,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,57.8,0,0,Canceled,2016-01-28,Summer,2016-07-04T07:00Z +Cancel,261,2016,July,28,4,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,2,Canceled,2016-06-20,Summer,2016-07-04T07:00Z +Keep,198,2016,July,28,4,4,10,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,128.35,0,1,Check-Out,2016-07-04,Summer,2016-07-04T07:00Z +Keep,255,2016,July,28,4,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,105.2,0,0,Check-Out,2016-07-18,Summer,2016-07-04T07:00Z +Keep,198,2016,July,28,4,4,10,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,128.35,0,1,Check-Out,2016-07-04,Summer,2016-07-04T07:00Z +Cancel,211,2016,July,28,5,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,135,0,3,Canceled,2016-03-02,Summer,2016-07-05T07:00Z +Keep,272,2016,July,28,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,113.3,0,3,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Cancel,172,2016,July,28,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,75.6,0,0,Canceled,2016-01-19,Summer,2016-07-05T07:00Z +Keep,272,2016,July,28,5,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,55.65,0,3,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,272,2016,July,28,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,111.3,0,3,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,273,2016,July,28,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,91.81,0,0,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,283,2016,July,28,5,2,8,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,117,0,0,Check-Out,2016-07-15,Summer,2016-07-05T07:00Z +Cancel,16,2016,July,28,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,105,0,0,Canceled,2016-06-21,Summer,2016-07-06T07:00Z +Cancel,9,2016,July,28,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 146, NULL,0,Transient,65,0,0,Canceled,2016-07-05,Summer,2016-07-06T07:00Z +Cancel,180,2016,July,28,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-01-13,Summer,2016-07-06T07:00Z +Keep,317,2016,July,28,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,101,0,3,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Cancel,34,2016,July,28,6,0,2,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2016-06-03,Summer,2016-07-06T07:00Z +Cancel,179,2016,July,28,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107.1,0,1,Canceled,2016-01-20,Summer,2016-07-06T07:00Z +Keep,292,2016,July,28,6,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,97.2,0,1,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Cancel,8,2016,July,28,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 51,0,Transient,126,0,0,Canceled,2016-07-01,Summer,2016-07-07T07:00Z +Cancel,24,2016,July,28,7,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,1,Canceled,2016-06-23,Summer,2016-07-07T07:00Z +Cancel,123,2016,July,28,7,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-03-12,Summer,2016-07-07T07:00Z +Cancel,15,2016,July,28,7,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-06-26,Summer,2016-07-07T07:00Z +Keep,240,2016,July,28,7,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-07-12,Summer,2016-07-07T07:00Z +Cancel,324,2016,July,28,7,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,2,Canceled,2015-11-10,Summer,2016-07-07T07:00Z +Cancel,178,2016,July,28,7,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,72.25,0,0,Canceled,2016-05-30,Summer,2016-07-07T07:00Z +Cancel,181,2016,July,28,7,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,1,Canceled,2016-01-09,Summer,2016-07-07T07:00Z +Cancel,259,2016,July,28,7,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,99,0,0,Canceled,2016-03-23,Summer,2016-07-07T07:00Z +Keep,323,2016,July,28,7,2,5,3,1,0,BB,IRL,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,131.75,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Cancel,18,2016,July,28,8,0,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-20,Summer,2016-07-08T07:00Z +Cancel,10,2016,July,28,8,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,199,0,1,Canceled,2016-07-05,Summer,2016-07-08T07:00Z +Cancel,24,2016,July,28,8,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-15,Summer,2016-07-08T07:00Z +Cancel,144,2016,July,28,8,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,166,0,0,Canceled,2016-05-30,Summer,2016-07-08T07:00Z +Cancel,14,2016,July,28,8,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,181,0,0,Canceled,2016-06-25,Summer,2016-07-08T07:00Z +Cancel,23,2016,July,28,8,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,162.24,0,0,Canceled,2016-06-22,Summer,2016-07-08T07:00Z +Cancel,16,2016,July,28,8,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-06-22,Summer,2016-07-08T07:00Z +Cancel,23,2016,July,28,8,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,162.24,0,0,Canceled,2016-06-15,Summer,2016-07-08T07:00Z +Cancel,22,2016,July,28,8,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-24,Summer,2016-07-08T07:00Z +Cancel,40,2016,July,28,8,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,154,0,0,Canceled,2016-06-05,Summer,2016-07-08T07:00Z +Cancel,135,2016,July,28,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,178.5,0,1,Canceled,2016-06-24,Summer,2016-07-08T07:00Z +Keep,272,2016,July,28,8,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,142.5,1,0,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Cancel,209,2016,July,28,8,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,163,0,0,Canceled,2016-04-01,Summer,2016-07-08T07:00Z +Cancel,309,2016,July,28,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-06-24,Summer,2016-07-08T07:00Z +Cancel,241,2016,July,28,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,1,Canceled,2016-03-07,Summer,2016-07-08T07:00Z +Cancel,147,2016,July,28,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.1,0,0,Canceled,2016-05-27,Summer,2016-07-08T07:00Z +Cancel,113,2016,July,28,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,190,0,1,Canceled,2016-07-06,Summer,2016-07-08T07:00Z +Cancel,191,2016,July,28,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-02-15,Summer,2016-07-08T07:00Z +Cancel,241,2016,July,28,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,1,Canceled,2016-03-07,Summer,2016-07-08T07:00Z +Cancel,142,2016,July,28,8,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121.33,0,1,Canceled,2016-02-22,Summer,2016-07-08T07:00Z +Keep,254,2016,July,28,8,4,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,120.8,0,1,Check-Out,2016-07-20,Summer,2016-07-08T07:00Z +Cancel,2,2016,July,28,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,147.2,0,0,Canceled,2016-07-07,Summer,2016-07-09T07:00Z +Cancel,22,2016,July,28,9,2,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,224,0,0,Canceled,2016-06-20,Summer,2016-07-09T07:00Z +Cancel,11,2016,July,28,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-06-29,Summer,2016-07-09T07:00Z +Cancel,180,2016,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-01-23,Summer,2016-07-09T07:00Z +Cancel,291,2016,July,28,9,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2015-09-22,Summer,2016-07-09T07:00Z +Cancel,180,2016,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-01-23,Summer,2016-07-09T07:00Z +Cancel,327,2016,July,28,9,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,130.5,0,0,Canceled,2015-11-11,Summer,2016-07-09T07:00Z +Cancel,185,2016,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-01-08,Summer,2016-07-09T07:00Z +Cancel,227,2016,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-02-22,Summer,2016-07-09T07:00Z +Cancel,180,2016,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-01-23,Summer,2016-07-09T07:00Z +Cancel,120,2016,July,28,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160.71,0,1,Canceled,2016-05-10,Summer,2016-07-09T07:00Z +Cancel,127,2016,July,28,9,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159.5,0,1,Canceled,2016-06-18,Summer,2016-07-09T07:00Z +Cancel,262,2016,July,28,9,4,8,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.15,0,2,Canceled,2015-10-28,Summer,2016-07-09T07:00Z +Keep,290,2016,July,28,9,4,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,93.77,0,1,Check-Out,2016-07-21,Summer,2016-07-09T07:00Z +Cancel,262,2016,July,28,9,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.25,0,2,Canceled,2015-10-28,Summer,2016-07-09T07:00Z +Cancel,262,2016,July,28,9,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107.63,0,2,Canceled,2015-10-28,Summer,2016-07-09T07:00Z +Keep,303,2016,July,28,9,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.05,0,2,Check-Out,2016-07-23,Summer,2016-07-09T07:00Z +Cancel,207,2016,July,28,9,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110.25,0,0,Canceled,2015-12-18,Summer,2016-07-09T07:00Z +Keep,356,2016,July,29,10,4,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,136.73,0,0,Check-Out,2016-07-19,Summer,2016-07-10T07:00Z +Keep,292,2016,July,29,10,1,0,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,2,Check-Out,2016-07-11,Summer,2016-07-10T07:00Z +Cancel,149,2016,July,29,10,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Canceled,2016-02-22,Summer,2016-07-10T07:00Z +Cancel,146,2016,July,29,10,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,119,0,1,Canceled,2016-06-30,Summer,2016-07-10T07:00Z +Keep,292,2016,July,29,10,1,0,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,2,Check-Out,2016-07-11,Summer,2016-07-10T07:00Z +Keep,292,2016,July,29,10,1,0,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,1,2,Check-Out,2016-07-11,Summer,2016-07-10T07:00Z +Cancel,35,2016,July,29,10,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-27,Summer,2016-07-10T07:00Z +Cancel,187,2016,July,29,10,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,2,Canceled,2016-06-28,Summer,2016-07-10T07:00Z +Cancel,146,2016,July,29,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Canceled,2016-07-05,Summer,2016-07-10T07:00Z +Cancel,7,2016,July,29,11,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 9, NULL,0,Transient,126,0,0,Canceled,2016-07-05,Summer,2016-07-11T07:00Z +Cancel,159,2016,July,29,11,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2016-03-29,Summer,2016-07-11T07:00Z +Cancel,133,2016,July,29,11,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,138.6,0,0,Canceled,2016-06-25,Summer,2016-07-11T07:00Z +Cancel,144,2016,July,29,11,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2016-03-09,Summer,2016-07-11T07:00Z +Cancel,26,2016,July,29,11,1,4,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,165.75,0,0,Canceled,2016-06-21,Summer,2016-07-11T07:00Z +Keep,276,2016,July,29,11,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,142.5,1,0,Check-Out,2016-07-16,Summer,2016-07-11T07:00Z +Cancel,294,2016,July,29,11,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,139.5,0,1,Canceled,2016-06-01,Summer,2016-07-11T07:00Z +Cancel,273,2016,July,29,11,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.5,0,0,Canceled,2016-01-05,Summer,2016-07-11T07:00Z +Cancel,275,2016,July,29,11,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.5,0,0,Canceled,2015-10-12,Summer,2016-07-11T07:00Z +Cancel,103,2016,July,29,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-05-07,Summer,2016-07-11T07:00Z +Cancel,126,2016,July,29,11,2,5,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,151.43,0,2,Canceled,2016-03-20,Summer,2016-07-11T07:00Z +Cancel,245,2016,July,29,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2015-12-16,Summer,2016-07-11T07:00Z +Keep,424,2016,July,29,11,3,7,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,112.63,0,1,Check-Out,2016-07-21,Summer,2016-07-11T07:00Z +Cancel,165,2016,July,29,11,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2016-03-11,Summer,2016-07-11T07:00Z +Cancel,177,2016,July,29,11,3,9,3,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,238.63,0,1,Canceled,2016-04-29,Summer,2016-07-11T07:00Z +Cancel,284,2016,July,29,11,4,10,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115.93,0,2,Canceled,2016-04-07,Summer,2016-07-11T07:00Z +Cancel,140,2016,July,29,11,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160.56,0,0,Canceled,2016-03-01,Summer,2016-07-11T07:00Z +Cancel,12,2016,July,29,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,184,0,0,Canceled,2016-06-30,Summer,2016-07-12T07:00Z +Cancel,24,2016,July,29,12,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-19,Summer,2016-07-12T07:00Z +Cancel,134,2016,July,29,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-03-26,Summer,2016-07-12T07:00Z +Cancel,141,2016,July,29,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,131,0,0,Canceled,2016-02-24,Summer,2016-07-12T07:00Z +Cancel,24,2016,July,29,12,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-06-19,Summer,2016-07-12T07:00Z +Cancel,134,2016,July,29,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-03-26,Summer,2016-07-12T07:00Z +Cancel,141,2016,July,29,12,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,193,0,1,Canceled,2016-02-24,Summer,2016-07-12T07:00Z +Keep,309,2016,July,29,12,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,84.9,1,2,Check-Out,2016-07-16,Summer,2016-07-12T07:00Z +Cancel,44,2016,July,29,12,0,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,225.8,0,0,Canceled,2016-06-29,Summer,2016-07-12T07:00Z +Cancel,29,2016,July,29,12,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,235,0,0,Canceled,2016-06-18,Summer,2016-07-12T07:00Z +Cancel,100,2016,July,29,12,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-04-04,Summer,2016-07-12T07:00Z +Cancel,244,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-12-08,Summer,2016-07-12T07:00Z +Cancel,277,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-10-16,Summer,2016-07-12T07:00Z +Cancel,277,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-10-16,Summer,2016-07-12T07:00Z +Cancel,277,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-10-16,Summer,2016-07-12T07:00Z +Cancel,277,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-10-16,Summer,2016-07-12T07:00Z +Cancel,218,2016,July,29,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,57.8,0,2,Canceled,2016-02-08,Summer,2016-07-12T07:00Z +Cancel,244,2016,July,29,12,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,84.47,0,1,Canceled,2015-12-08,Summer,2016-07-12T07:00Z +Cancel,244,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-12-08,Summer,2016-07-12T07:00Z +Cancel,277,2016,July,29,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.57,0,1,Canceled,2015-10-16,Summer,2016-07-12T07:00Z +Keep,298,2016,July,29,12,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127.5,0,1,Check-Out,2016-07-21,Summer,2016-07-12T07:00Z +Cancel,100,2016,July,29,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-08,Summer,2016-07-13T07:00Z +Cancel,90,2016,July,29,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2016-04-16,Summer,2016-07-13T07:00Z +Cancel,88,2016,July,29,13,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,204,0,0,Canceled,2016-04-22,Summer,2016-07-13T07:00Z +Cancel,26,2016,July,29,13,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,169.67,0,1,Canceled,2016-06-27,Summer,2016-07-13T07:00Z +Cancel,23,2016,July,29,13,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,161.1,0,0,Canceled,2016-06-21,Summer,2016-07-13T07:00Z +Cancel,82,2016,July,29,13,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,176.25,0,0,Canceled,2016-06-10,Summer,2016-07-13T07:00Z +Cancel,23,2016,July,29,13,0,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2016-06-28,Summer,2016-07-13T07:00Z +Cancel,80,2016,July,29,13,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-10,Summer,2016-07-13T07:00Z +Cancel,95,2016,July,29,13,2,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,231.43,0,0,Canceled,2016-04-28,Summer,2016-07-13T07:00Z +Cancel,74,2016,July,29,13,2,5,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-05-05,Summer,2016-07-13T07:00Z +Keep,259,2016,July,29,13,2,5,2,0,0,HB,IRN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,123.43,0,2,Check-Out,2016-07-20,Summer,2016-07-13T07:00Z +Cancel,217,2016,July,29,14,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2016-02-20,Summer,2016-07-14T07:00Z +Cancel,28,2016,July,29,14,0,3,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,237.33,0,0,Canceled,2016-06-30,Summer,2016-07-14T07:00Z +Cancel,102,2016,July,29,14,2,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,280,0,0,Canceled,2016-04-03,Summer,2016-07-14T07:00Z +Cancel,35,2016,July,29,14,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,203,0,0,Canceled,2016-06-21,Summer,2016-07-14T07:00Z +Cancel,50,2016,July,29,14,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-24,Summer,2016-07-14T07:00Z +Cancel,74,2016,July,29,14,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,215.33,0,1,Canceled,2016-06-14,Summer,2016-07-14T07:00Z +Cancel,279,2016,July,29,14,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,184.5,0,0,Canceled,2015-10-12,Summer,2016-07-14T07:00Z +Cancel,72,2016,July,29,14,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,128,0,0,Canceled,2016-05-04,Summer,2016-07-14T07:00Z +Cancel,10,2016,July,29,14,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,175,0,2,No-Show,2016-07-14,Summer,2016-07-14T07:00Z +Cancel,297,2016,July,29,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,117,0,1,Canceled,2016-03-05,Summer,2016-07-14T07:00Z +Cancel,72,2016,July,29,14,1,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,177.5,0,0,Canceled,2016-06-13,Summer,2016-07-14T07:00Z +Cancel,16,2016,July,29,14,2,5,2,2,0,BB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,212.14,0,0,Canceled,2016-06-30,Summer,2016-07-14T07:00Z +Cancel,331,2016,July,29,14,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,135,0,2,Canceled,2015-12-26,Summer,2016-07-14T07:00Z +Keep,311,2016,July,29,14,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,127.71,0,0,Check-Out,2016-07-28,Summer,2016-07-14T07:00Z +Keep,248,2016,July,29,14,4,10,3,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 315, NULL,0,Transient,123.64,0,2,Check-Out,2016-07-28,Summer,2016-07-14T07:00Z +Cancel,63,2016,July,29,15,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,177.5,0,0,Canceled,2016-07-06,Summer,2016-07-15T07:00Z +Cancel,0,2016,July,29,15,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,197.1,0,0,Canceled,2016-07-15,Summer,2016-07-15T07:00Z +Cancel,67,2016,July,29,15,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-21,Summer,2016-07-15T07:00Z +Cancel,25,2016,July,29,15,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-06-28,Summer,2016-07-15T07:00Z +Cancel,54,2016,July,29,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-13,Summer,2016-07-15T07:00Z +Cancel,23,2016,July,29,15,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,201,0,0,Canceled,2016-06-24,Summer,2016-07-15T07:00Z +Cancel,0,2016,July,29,15,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,147.6,0,0,Canceled,2016-07-15,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,333,2016,July,29,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.5,0,2,Canceled,2015-10-17,Summer,2016-07-15T07:00Z +Cancel,51,2016,July,29,15,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,163.8,0,0,Canceled,2016-06-21,Summer,2016-07-15T07:00Z +Cancel,66,2016,July,29,15,2,4,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2016-06-09,Summer,2016-07-15T07:00Z +Cancel,216,2016,July,29,15,2,4,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,193.83,0,0,Canceled,2016-03-14,Summer,2016-07-15T07:00Z +Cancel,66,2016,July,29,15,2,4,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,236.67,0,0,Canceled,2016-05-27,Summer,2016-07-15T07:00Z +Cancel,305,2016,July,29,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.71,0,2,Canceled,2015-09-16,Summer,2016-07-15T07:00Z +Cancel,305,2016,July,29,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.71,0,2,Canceled,2015-09-16,Summer,2016-07-15T07:00Z +Cancel,143,2016,July,29,15,2,7,2,2,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,12,0,0,Canceled,2016-02-24,Summer,2016-07-15T07:00Z +Cancel,172,2016,July,29,15,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,141.56,0,1,Canceled,2016-05-25,Summer,2016-07-15T07:00Z +Cancel,191,2016,July,29,15,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142.88,0,2,Canceled,2016-05-23,Summer,2016-07-15T07:00Z +Cancel,138,2016,July,29,16,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,187,0,1,Canceled,2016-06-20,Summer,2016-07-16T07:00Z +Cancel,83,2016,July,29,16,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-04-24,Summer,2016-07-16T07:00Z +Cancel,58,2016,July,29,16,2,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-17,Summer,2016-07-16T07:00Z +Cancel,103,2016,July,29,16,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-06-25,Summer,2016-07-16T07:00Z +Cancel,35,2016,July,29,16,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-12,Summer,2016-07-16T07:00Z +Cancel,20,2016,July,29,16,2,3,1,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-27,Summer,2016-07-16T07:00Z +Cancel,19,2016,July,29,16,2,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-28,Summer,2016-07-16T07:00Z +Cancel,19,2016,July,29,16,2,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-28,Summer,2016-07-16T07:00Z +Cancel,66,2016,July,29,16,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-06-27,Summer,2016-07-16T07:00Z +Cancel,66,2016,July,29,16,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-06-20,Summer,2016-07-16T07:00Z +Cancel,17,2016,July,29,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Canceled,2016-07-03,Summer,2016-07-16T07:00Z +Cancel,152,2016,July,29,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2016-06-20,Summer,2016-07-16T07:00Z +Cancel,177,2016,July,29,16,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,161.4,0,1,Canceled,2016-04-22,Summer,2016-07-16T07:00Z +Cancel,20,2016,July,29,16,2,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-27,Summer,2016-07-16T07:00Z +Cancel,144,2016,July,29,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,110.7,0,0,Canceled,2016-03-03,Summer,2016-07-16T07:00Z +Cancel,155,2016,July,29,16,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,150.8,0,1,Canceled,2016-04-15,Summer,2016-07-16T07:00Z +Cancel,177,2016,July,29,16,2,5,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,183,0,2,Canceled,2016-04-22,Summer,2016-07-16T07:00Z +Cancel,109,2016,July,29,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-03-29,Summer,2016-07-16T07:00Z +Cancel,109,2016,July,29,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-03-29,Summer,2016-07-16T07:00Z +Cancel,113,2016,July,29,16,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-05-16,Summer,2016-07-16T07:00Z +Cancel,144,2016,July,29,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,110.7,0,1,Canceled,2016-03-03,Summer,2016-07-16T07:00Z +Cancel,144,2016,July,29,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,119.7,0,0,Canceled,2016-03-03,Summer,2016-07-16T07:00Z +Cancel,144,2016,July,29,16,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,149.45,0,1,Canceled,2016-03-03,Summer,2016-07-16T07:00Z +Cancel,234,2016,July,29,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-02-22,Summer,2016-07-16T07:00Z +Cancel,109,2016,July,29,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-03-29,Summer,2016-07-16T07:00Z +Cancel,108,2016,July,29,16,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,239,0,0,Canceled,2016-04-13,Summer,2016-07-16T07:00Z +Cancel,105,2016,July,29,16,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,227,0,0,Canceled,2016-04-13,Summer,2016-07-16T07:00Z +Cancel,162,2016,July,29,16,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,100.8,0,0,Canceled,2016-06-30,Summer,2016-07-16T07:00Z +Cancel,281,2016,July,29,16,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,115.92,0,0,Canceled,2016-01-07,Summer,2016-07-16T07:00Z +Cancel,164,2016,July,29,16,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165,0,2,Canceled,2016-02-09,Summer,2016-07-16T07:00Z +Cancel,165,2016,July,29,16,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.1,0,0,Canceled,2016-05-09,Summer,2016-07-16T07:00Z +Cancel,203,2016,July,29,16,6,12,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,204.44,0,0,Canceled,2015-12-31,Summer,2016-07-16T07:00Z +Cancel,146,2016,July,30,17,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,242,0,0,Canceled,2016-07-17,Summer,2016-07-17T07:00Z +Cancel,263,2016,July,30,17,2,3,2,2,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,190.2,0,0,Canceled,2016-02-25,Summer,2016-07-17T07:00Z +Cancel,137,2016,July,30,17,2,3,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,250,0,0,Canceled,2016-07-04,Summer,2016-07-17T07:00Z +Cancel,21,2016,July,30,17,2,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-28,Summer,2016-07-17T07:00Z +Cancel,107,2016,July,30,17,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,237,0,1,Canceled,2016-04-04,Summer,2016-07-17T07:00Z +Cancel,203,2016,July,30,17,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2016-02-12,Summer,2016-07-17T07:00Z +Cancel,15,2016,July,30,17,2,4,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,233,0,1,Canceled,2016-07-02,Summer,2016-07-17T07:00Z +Cancel,136,2016,July,30,17,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,115.2,0,0,Canceled,2016-06-20,Summer,2016-07-17T07:00Z +Cancel,193,2016,July,30,17,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,81.98,0,0,Canceled,2016-03-24,Summer,2016-07-17T07:00Z +Cancel,181,2016,July,30,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.86,0,1,No-Show,2016-03-28,Summer,2016-07-17T07:00Z +Cancel,184,2016,July,30,17,4,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116.18,0,1,Canceled,2016-01-18,Summer,2016-07-17T07:00Z +Cancel,181,2016,July,30,17,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-01-26,Summer,2016-07-17T07:00Z +Cancel,181,2016,July,30,17,4,8,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2016-01-26,Summer,2016-07-17T07:00Z +Cancel,181,2016,July,30,17,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-01-26,Summer,2016-07-17T07:00Z +Cancel,181,2016,July,30,17,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-01-26,Summer,2016-07-17T07:00Z +Cancel,125,2016,July,30,17,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172.71,0,0,Canceled,2016-06-13,Summer,2016-07-17T07:00Z +Cancel,185,2016,July,30,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,172.86,0,0,Canceled,2016-07-01,Summer,2016-07-17T07:00Z +Cancel,165,2016,July,30,17,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,163,0,2,Canceled,2016-02-15,Summer,2016-07-17T07:00Z +Cancel,0,2016,July,30,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,2,Canceled,2016-07-18,Summer,2016-07-18T07:00Z +Cancel,6,2016,July,30,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 53,0,Transient,126,0,0,Canceled,2016-07-14,Summer,2016-07-18T07:00Z +Cancel,0,2016,July,30,18,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-07-18,Summer,2016-07-18T07:00Z +Cancel,200,2016,July,30,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2016-06-27,Summer,2016-07-18T07:00Z +Cancel,15,2016,July,30,18,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-07-06,Summer,2016-07-18T07:00Z +Cancel,200,2016,July,30,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2016-06-27,Summer,2016-07-18T07:00Z +Cancel,46,2016,July,30,18,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-06,Summer,2016-07-18T07:00Z +Cancel,200,2016,July,30,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2016-06-27,Summer,2016-07-18T07:00Z +Cancel,182,2016,July,30,18,1,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,154.3,0,3,Canceled,2016-01-18,Summer,2016-07-18T07:00Z +Cancel,99,2016,July,30,18,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-04-11,Summer,2016-07-18T07:00Z +Cancel,100,2016,July,30,18,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2016-04-10,Summer,2016-07-18T07:00Z +Cancel,130,2016,July,30,18,1,4,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,0,0,Canceled,2016-04-02,Summer,2016-07-18T07:00Z +Cancel,224,2016,July,30,18,1,4,2,1,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,187.2,0,2,Canceled,2016-06-14,Summer,2016-07-18T07:00Z +Cancel,182,2016,July,30,18,1,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,154.3,0,3,Canceled,2016-01-18,Summer,2016-07-18T07:00Z +Cancel,119,2016,July,30,18,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,100.8,0,0,Canceled,2016-06-30,Summer,2016-07-18T07:00Z +Cancel,109,2016,July,30,18,1,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,287,0,0,Canceled,2016-04-01,Summer,2016-07-18T07:00Z +Cancel,118,2016,July,30,18,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-05-22,Summer,2016-07-18T07:00Z +Cancel,93,2016,July,30,18,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2016-05-03,Summer,2016-07-18T07:00Z +Keep,305,2016,July,30,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,118.57,0,1,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Cancel,14,2016,July,30,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,169.43,0,0,Canceled,2016-07-04,Summer,2016-07-18T07:00Z +Keep,305,2016,July,30,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,116.57,0,1,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Cancel,167,2016,July,30,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,145.71,0,1,Canceled,2016-02-09,Summer,2016-07-18T07:00Z +Keep,305,2016,July,30,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,116.57,0,1,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Cancel,25,2016,July,30,18,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,160,0,2,Canceled,2016-07-04,Summer,2016-07-18T07:00Z +Cancel,114,2016,July,30,18,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-04-24,Summer,2016-07-18T07:00Z +Cancel,261,2016,July,30,18,3,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2015-12-01,Summer,2016-07-18T07:00Z +Cancel,0,2016,July,30,19,0,1,1,0,0,SC,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-07-19,Summer,2016-07-19T07:00Z +Cancel,17,2016,July,30,19,0,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Canceled,2016-07-02,Summer,2016-07-19T07:00Z +Cancel,17,2016,July,30,19,0,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-07-02,Summer,2016-07-19T07:00Z +Cancel,46,2016,July,30,19,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-12,Summer,2016-07-19T07:00Z +Cancel,17,2016,July,30,19,0,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-07-02,Summer,2016-07-19T07:00Z +Cancel,174,2016,July,30,19,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2016-02-24,Summer,2016-07-19T07:00Z +Cancel,88,2016,July,30,19,0,5,2,0,0,HB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-04-27,Summer,2016-07-19T07:00Z +Cancel,119,2016,July,30,19,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,227,0,1,Canceled,2016-06-13,Summer,2016-07-19T07:00Z +Cancel,161,2016,July,30,19,2,8,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2016-02-18,Summer,2016-07-19T07:00Z +Cancel,29,2016,July,30,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,115,0,0,Canceled,2016-06-21,Summer,2016-07-20T07:00Z +Cancel,1,2016,July,30,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 204,0,Transient,73,0,2,Canceled,2016-07-20,Summer,2016-07-20T07:00Z +Keep,266,2016,July,30,20,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97.2,0,2,Check-Out,2016-07-22,Summer,2016-07-20T07:00Z +Keep,266,2016,July,30,20,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.2,1,2,Check-Out,2016-07-22,Summer,2016-07-20T07:00Z +Cancel,114,2016,July,30,20,0,4,1,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,247,0,0,Canceled,2016-06-26,Summer,2016-07-20T07:00Z +Cancel,155,2016,July,30,20,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,100.8,0,0,Canceled,2016-03-22,Summer,2016-07-20T07:00Z +Cancel,29,2016,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,143.2,0,0,Canceled,2016-07-05,Summer,2016-07-20T07:00Z +Cancel,28,2016,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 339, NULL,0,Transient,167.2,0,0,Canceled,2016-06-22,Summer,2016-07-20T07:00Z +Cancel,155,2016,July,30,20,1,4,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,133.2,0,0,Canceled,2016-03-22,Summer,2016-07-20T07:00Z +Cancel,28,2016,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 339, NULL,0,Transient,167.2,0,0,Canceled,2016-06-22,Summer,2016-07-20T07:00Z +Cancel,163,2016,July,30,20,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,115,0,1,Canceled,2016-02-09,Summer,2016-07-20T07:00Z +Cancel,119,2016,July,30,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-03-29,Summer,2016-07-20T07:00Z +Cancel,2,2016,July,30,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,124,0,1,Canceled,2016-07-21,Summer,2016-07-21T07:00Z +Cancel,8,2016,July,30,21,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 204,0,Transient,73,0,2,Canceled,2016-07-20,Summer,2016-07-21T07:00Z +Cancel,55,2016,July,30,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Canceled,2016-06-24,Summer,2016-07-21T07:00Z +Cancel,55,2016,July,30,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Canceled,2016-06-24,Summer,2016-07-21T07:00Z +Cancel,106,2016,July,30,21,1,3,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,0,0,Canceled,2016-06-13,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,1,3,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-03-29,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-03-29,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-03-29,Summer,2016-07-21T07:00Z +Cancel,106,2016,July,30,21,1,3,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-06-13,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,2,3,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-06-21,Summer,2016-07-21T07:00Z +Cancel,37,2016,July,30,21,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Canceled,2016-07-10,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-06-21,Summer,2016-07-21T07:00Z +Cancel,114,2016,July,30,21,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-06-21,Summer,2016-07-21T07:00Z +Cancel,169,2016,July,30,21,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2016-02-12,Summer,2016-07-21T07:00Z +Keep,306,2016,July,30,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,137.43,0,0,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Cancel,113,2016,July,30,21,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-04-03,Summer,2016-07-21T07:00Z +Cancel,10,2016,July,30,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-22T07:00Z +Cancel,23,2016,July,30,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-29,Summer,2016-07-22T07:00Z +Cancel,23,2016,July,30,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-29,Summer,2016-07-22T07:00Z +Cancel,10,2016,July,30,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-22T07:00Z +Cancel,112,2016,July,30,22,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,216,0,0,Canceled,2016-07-22,Summer,2016-07-22T07:00Z +Cancel,59,2016,July,30,22,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-09,Summer,2016-07-22T07:00Z +Cancel,99,2016,July,30,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-04-15,Summer,2016-07-22T07:00Z +Cancel,34,2016,July,30,22,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-07-11,Summer,2016-07-22T07:00Z +Cancel,59,2016,July,30,22,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-09,Summer,2016-07-22T07:00Z +Cancel,127,2016,July,30,22,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,119,0,0,Canceled,2016-07-07,Summer,2016-07-22T07:00Z +Cancel,147,2016,July,30,22,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,100.8,0,0,Canceled,2016-02-26,Summer,2016-07-22T07:00Z +Cancel,32,2016,July,30,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-21,Summer,2016-07-22T07:00Z +Cancel,40,2016,July,30,22,2,4,2,0,0,BB,DZA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-12,Summer,2016-07-22T07:00Z +Cancel,59,2016,July,30,22,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-06-07,Summer,2016-07-22T07:00Z +Cancel,139,2016,July,30,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,195,0,2,Canceled,2016-03-08,Summer,2016-07-22T07:00Z +Cancel,17,2016,July,30,22,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180.25,0,0,Canceled,2016-07-09,Summer,2016-07-22T07:00Z +Cancel,209,2016,July,30,22,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,182,0,0,Canceled,2016-01-11,Summer,2016-07-22T07:00Z +Cancel,0,2016,July,30,23,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,190,0,0,Canceled,2016-07-23,Summer,2016-07-23T07:00Z +Cancel,31,2016,July,30,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,160.93,0,0,Canceled,2016-06-24,Summer,2016-07-23T07:00Z +Cancel,119,2016,July,30,23,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,204,0,0,Canceled,2016-06-15,Summer,2016-07-23T07:00Z +Cancel,142,2016,July,30,23,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,126,0,0,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,51,2016,July,30,23,2,4,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,226,0,1,Canceled,2016-06-16,Summer,2016-07-23T07:00Z +Cancel,110,2016,July,30,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,195,0,0,Canceled,2016-07-20,Summer,2016-07-23T07:00Z +Cancel,149,2016,July,30,23,2,5,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 96, NULL,0,Transient,195.75,0,1,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,74,2016,July,30,23,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,160,0,2,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,149,2016,July,30,23,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 96, NULL,0,Transient,195.75,0,1,Canceled,2016-03-17,Summer,2016-07-23T07:00Z +Cancel,149,2016,July,30,23,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 96, NULL,0,Transient,195.75,0,1,Canceled,2016-03-17,Summer,2016-07-23T07:00Z +Cancel,35,2016,July,30,23,2,5,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-07-18,Summer,2016-07-23T07:00Z +Cancel,59,2016,July,30,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-06-12,Summer,2016-07-23T07:00Z +Cancel,271,2016,July,30,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-04-18,Summer,2016-07-23T07:00Z +Cancel,209,2016,July,30,23,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2016-06-14,Summer,2016-07-23T07:00Z +Cancel,149,2016,July,30,23,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 96, NULL,0,Transient,156.6,0,1,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,162,2016,July,30,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-02-24,Summer,2016-07-23T07:00Z +Cancel,74,2016,July,30,23,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,160,0,2,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,149,2016,July,30,23,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient,156.6,0,1,Canceled,2016-05-17,Summer,2016-07-23T07:00Z +Cancel,241,2016,July,30,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-02-22,Summer,2016-07-23T07:00Z +Cancel,111,2016,July,30,23,2,5,2,0,0,BB,AND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-04-17,Summer,2016-07-23T07:00Z +Cancel,98,2016,July,30,23,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224.43,0,0,Canceled,2016-04-30,Summer,2016-07-23T07:00Z +Cancel,162,2016,July,30,23,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,1,Canceled,2016-02-24,Summer,2016-07-23T07:00Z +Cancel,199,2016,July,30,23,2,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2016-01-15,Summer,2016-07-23T07:00Z +Cancel,339,2016,July,30,23,4,8,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,187,0,0,Canceled,2016-02-08,Summer,2016-07-23T07:00Z +Cancel,12,2016,July,31,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,12,2016,July,31,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,12,2016,July,31,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,12,2016,July,31,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,12,2016,July,31,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,191,2016,July,31,24,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,26.1,0,0,Canceled,2016-07-13,Summer,2016-07-24T07:00Z +Cancel,159,2016,July,31,24,2,2,2,2,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,223,0,1,Canceled,2016-03-07,Summer,2016-07-24T07:00Z +Cancel,110,2016,July,31,24,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-07-04,Summer,2016-07-24T07:00Z +Cancel,139,2016,July,31,24,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,115.2,0,0,Canceled,2016-05-31,Summer,2016-07-24T07:00Z +Keep,284,2016,July,31,24,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,169.5,1,1,Check-Out,2016-07-29,Summer,2016-07-24T07:00Z +Cancel,140,2016,July,31,24,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-03-20,Summer,2016-07-24T07:00Z +Cancel,200,2016,July,31,24,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2016-02-24,Summer,2016-07-24T07:00Z +Cancel,81,2016,July,31,24,2,4,2,0,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-06-14,Summer,2016-07-24T07:00Z +Cancel,48,2016,July,31,24,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-09,Summer,2016-07-24T07:00Z +Cancel,109,2016,July,31,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,193.43,0,0,Canceled,2016-04-26,Summer,2016-07-24T07:00Z +Cancel,186,2016,July,31,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,167.14,0,1,Canceled,2016-07-12,Summer,2016-07-24T07:00Z +Keep,269,2016,July,31,24,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,92.1,0,0,Check-Out,2016-08-03,Summer,2016-07-24T07:00Z +Cancel,42,2016,July,31,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-21,Summer,2016-07-25T07:00Z +Cancel,154,2016,July,31,25,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,170,0,0,No-Show,2016-07-25,Summer,2016-07-25T07:00Z +Cancel,24,2016,July,31,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,209,0,0,Canceled,2016-07-01,Summer,2016-07-25T07:00Z +Cancel,72,2016,July,31,25,1,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,227,0,0,Canceled,2016-05-22,Summer,2016-07-25T07:00Z +Cancel,42,2016,July,31,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-21,Summer,2016-07-25T07:00Z +Cancel,42,2016,July,31,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-21,Summer,2016-07-25T07:00Z +Cancel,48,2016,July,31,25,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-14,Summer,2016-07-25T07:00Z +Cancel,131,2016,July,31,25,1,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,288,0,0,Canceled,2016-06-18,Summer,2016-07-25T07:00Z +Cancel,262,2016,July,31,25,1,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient,8,0,2,Canceled,2016-04-18,Summer,2016-07-25T07:00Z +Cancel,196,2016,July,31,25,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,190,0,0,Canceled,2016-06-20,Summer,2016-07-25T07:00Z +Cancel,174,2016,July,31,25,1,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,186,0,1,Canceled,2016-03-17,Summer,2016-07-25T07:00Z +Cancel,115,2016,July,31,25,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161.67,0,0,Canceled,2016-04-02,Summer,2016-07-25T07:00Z +Cancel,145,2016,July,31,25,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.33,0,0,Canceled,2016-03-03,Summer,2016-07-25T07:00Z +Cancel,154,2016,July,31,25,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,222.33,0,1,Canceled,2016-03-24,Summer,2016-07-25T07:00Z +Cancel,115,2016,July,31,25,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,173.67,0,0,Canceled,2016-04-02,Summer,2016-07-25T07:00Z +Cancel,118,2016,July,31,25,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162.86,0,3,Canceled,2016-03-31,Summer,2016-07-25T07:00Z +Cancel,118,2016,July,31,25,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.86,0,3,Canceled,2016-03-31,Summer,2016-07-25T07:00Z +Cancel,105,2016,July,31,25,2,5,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,139,0,0,Canceled,2016-05-03,Summer,2016-07-25T07:00Z +Cancel,5,2016,July,31,25,2,5,2,0,0,BB,DZA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209.71,0,1,Canceled,2016-07-25,Summer,2016-07-25T07:00Z +Cancel,0,2016,July,31,25,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,130,0,0,Canceled,2016-07-25,Summer,2016-07-25T07:00Z +Cancel,173,2016,July,31,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,115.2,0,0,Canceled,2016-07-22,Summer,2016-07-25T07:00Z +Cancel,105,2016,July,31,25,3,5,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,139,0,0,Canceled,2016-05-03,Summer,2016-07-25T07:00Z +Keep,83,2016,July,31,25,3,5,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,1,No Deposit , 307, NULL,0,Transient-Party,139,0,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Cancel,105,2016,July,31,25,3,5,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient,139,0,0,Canceled,2016-05-03,Summer,2016-07-25T07:00Z +Cancel,221,2016,July,31,25,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2016-03-02,Summer,2016-07-25T07:00Z +Cancel,110,2016,July,31,26,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-04-08,Summer,2016-07-26T07:00Z +Cancel,183,2016,July,31,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 395,0,Transient,114.75,0,0,Canceled,2016-07-13,Summer,2016-07-26T07:00Z +Cancel,115,2016,July,31,26,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,175.33,0,3,Canceled,2016-07-15,Summer,2016-07-26T07:00Z +Cancel,40,2016,July,31,26,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,0,0,Canceled,2016-06-29,Summer,2016-07-26T07:00Z +Cancel,27,2016,July,31,26,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,0,0,Canceled,2016-07-05,Summer,2016-07-26T07:00Z +Cancel,40,2016,July,31,26,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,0,0,Canceled,2016-06-29,Summer,2016-07-26T07:00Z +Cancel,115,2016,July,31,26,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,163.33,0,3,Canceled,2016-07-15,Summer,2016-07-26T07:00Z +Cancel,40,2016,July,31,26,1,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,226,0,1,Canceled,2016-07-15,Summer,2016-07-26T07:00Z +Cancel,69,2016,July,31,26,1,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.33,0,0,Canceled,2016-06-23,Summer,2016-07-26T07:00Z +Cancel,70,2016,July,31,27,0,1,3,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2016-06-28,Summer,2016-07-27T07:00Z +Cancel,115,2016,July,31,27,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,0,Canceled,2016-06-06,Summer,2016-07-27T07:00Z +Cancel,145,2016,July,31,27,0,3,3,0,0,BB,ROU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,222,0,0,Canceled,2016-05-17,Summer,2016-07-27T07:00Z +Cancel,22,2016,July,31,27,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,0,1,Canceled,2016-07-08,Summer,2016-07-27T07:00Z +Cancel,251,2016,July,31,27,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,117.9,0,1,Canceled,2016-01-15,Summer,2016-07-27T07:00Z +Cancel,107,2016,July,31,27,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Canceled,2016-05-03,Summer,2016-07-27T07:00Z +Cancel,107,2016,July,31,27,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Canceled,2016-05-03,Summer,2016-07-27T07:00Z +Keep,301,2016,July,31,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,2,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Cancel,188,2016,July,31,27,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,177.5,0,0,Canceled,2016-06-24,Summer,2016-07-27T07:00Z +Cancel,42,2016,July,31,27,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.29,0,0,Canceled,2016-06-15,Summer,2016-07-27T07:00Z +Keep,147,2016,July,31,27,2,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,165,1,3,Check-Out,2016-08-04,Summer,2016-07-27T07:00Z +Cancel,26,2016,July,31,28,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2016-07-08,Summer,2016-07-28T07:00Z +Cancel,47,2016,July,31,28,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,243.32,0,0,Canceled,2016-07-25,Summer,2016-07-28T07:00Z +Cancel,37,2016,July,31,28,1,3,2,2,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-27,Summer,2016-07-28T07:00Z +Cancel,108,2016,July,31,28,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Canceled,2016-05-03,Summer,2016-07-28T07:00Z +Cancel,108,2016,July,31,28,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Canceled,2016-05-03,Summer,2016-07-28T07:00Z +Cancel,201,2016,July,31,28,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-01-28,Summer,2016-07-28T07:00Z +Cancel,154,2016,July,31,28,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,184,0,0,Canceled,2016-07-18,Summer,2016-07-28T07:00Z +Keep,292,2016,July,31,28,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,136,0,0,Check-Out,2016-08-02,Summer,2016-07-28T07:00Z +Cancel,120,2016,July,31,28,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,219.8,0,1,Canceled,2016-04-04,Summer,2016-07-28T07:00Z +Keep,322,2016,July,31,28,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,1,Check-Out,2016-08-03,Summer,2016-07-28T07:00Z +Keep,159,2016,July,31,28,3,8,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 315, NULL,0,Transient,113.05,0,0,Check-Out,2016-08-08,Summer,2016-07-28T07:00Z +Keep,159,2016,July,31,28,3,8,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 315, NULL,0,Transient,113.05,0,0,Check-Out,2016-08-08,Summer,2016-07-28T07:00Z +Keep,292,2016,July,31,28,4,9,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,132.17,0,1,Check-Out,2016-08-10,Summer,2016-07-28T07:00Z +Cancel,44,2016,July,31,29,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-06-16,Summer,2016-07-29T07:00Z +Cancel,38,2016,July,31,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-07-19,Summer,2016-07-29T07:00Z +Cancel,36,2016,July,31,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-17,Summer,2016-07-29T07:00Z +Cancel,22,2016,July,31,29,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,209.1,0,0,Canceled,2016-07-20,Summer,2016-07-29T07:00Z +Cancel,43,2016,July,31,29,0,2,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,189.6,0,0,Canceled,2016-06-16,Summer,2016-07-29T07:00Z +Cancel,124,2016,July,31,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178.67,0,0,Canceled,2016-03-31,Summer,2016-07-29T07:00Z +Keep,324,2016,July,31,29,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Cancel,6,2016,July,31,29,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,182,0,1,Canceled,2016-07-29,Summer,2016-07-29T07:00Z +Cancel,59,2016,July,31,29,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2016-06-02,Summer,2016-07-29T07:00Z +Cancel,191,2016,July,31,29,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2016-02-04,Summer,2016-07-29T07:00Z +Cancel,109,2016,July,31,29,2,5,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-04-19,Summer,2016-07-29T07:00Z +Cancel,307,2016,July,31,29,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,144,0,2,Canceled,2015-11-09,Summer,2016-07-29T07:00Z +Cancel,46,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-22,Summer,2016-07-30T07:00Z +Cancel,46,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-22,Summer,2016-07-30T07:00Z +Cancel,46,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-22,Summer,2016-07-30T07:00Z +Cancel,121,2016,July,31,30,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,188.33,0,0,Canceled,2016-07-04,Summer,2016-07-30T07:00Z +Cancel,151,2016,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2016-06-07,Summer,2016-07-30T07:00Z +Cancel,187,2016,July,31,30,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,173.79,0,0,Canceled,2016-02-15,Summer,2016-07-30T07:00Z +Cancel,35,2016,July,31,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,210.43,0,0,Canceled,2016-06-28,Summer,2016-07-30T07:00Z +Cancel,14,2016,July,31,30,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 181, NULL,0,Transient,199.2,0,0,Canceled,2016-07-18,Summer,2016-07-30T07:00Z +Cancel,192,2016,July,31,30,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2016-01-28,Summer,2016-07-30T07:00Z +Keep,150,2016,July,31,30,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,204,0,3,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Cancel,129,2016,July,31,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.43,0,0,Canceled,2016-03-24,Summer,2016-07-30T07:00Z +Cancel,26,2016,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200.43,0,1,Canceled,2016-07-07,Summer,2016-07-30T07:00Z +Cancel,129,2016,July,31,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.43,0,0,Canceled,2016-03-24,Summer,2016-07-30T07:00Z +Cancel,151,2016,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-06-07,Summer,2016-07-30T07:00Z +Cancel,162,2016,July,31,30,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,150,0,0,Canceled,2016-02-20,Summer,2016-07-30T07:00Z +Cancel,228,2016,July,31,30,2,6,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,222,0,1,Canceled,2016-07-19,Summer,2016-07-30T07:00Z +Cancel,142,2016,July,31,30,2,6,2,1,1,FB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,292,0,0,Canceled,2016-07-19,Summer,2016-07-30T07:00Z +Cancel,199,2016,July,31,30,3,6,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,162.94,0,0,Canceled,2016-04-11,Summer,2016-07-30T07:00Z +Cancel,161,2016,July,31,30,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-07-04,Summer,2016-07-30T07:00Z +Cancel,161,2016,July,31,30,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-07-04,Summer,2016-07-30T07:00Z +Cancel,161,2016,July,31,30,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2016-07-04,Summer,2016-07-30T07:00Z +Cancel,125,2016,July,31,30,4,9,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.62,0,0,Canceled,2016-05-04,Summer,2016-07-30T07:00Z +Cancel,108,2016,July,32,31,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-04-19,Summer,2016-07-31T07:00Z +Cancel,67,2016,July,32,31,1,0,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-03,Summer,2016-07-31T07:00Z +Cancel,87,2016,July,32,31,2,0,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-05-09,Summer,2016-07-31T07:00Z +Cancel,87,2016,July,32,31,2,0,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-05-09,Summer,2016-07-31T07:00Z +Cancel,141,2016,July,32,31,2,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,266.5,0,0,Canceled,2016-04-19,Summer,2016-07-31T07:00Z +Cancel,9,2016,July,32,31,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-22,Summer,2016-07-31T07:00Z +Cancel,16,2016,July,32,31,2,5,2,0,1,BB,DEU,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,253.57,0,2,Canceled,2016-07-16,Summer,2016-07-31T07:00Z +Cancel,186,2016,July,32,31,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,167.4,0,0,Canceled,2016-06-27,Summer,2016-07-31T07:00Z +Cancel,133,2016,July,32,31,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,197.71,0,0,Canceled,2016-03-23,Summer,2016-07-31T07:00Z +Cancel,187,2016,July,32,31,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,150.8,0,0,Canceled,2016-01-28,Summer,2016-07-31T07:00Z +Cancel,96,2016,July,32,31,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-24,Summer,2016-07-31T07:00Z +Cancel,153,2016,July,32,31,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,192.5,0,0,Canceled,2016-05-31,Summer,2016-07-31T07:00Z +Cancel,153,2016,July,32,31,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,204.5,0,0,Canceled,2016-05-31,Summer,2016-07-31T07:00Z +Cancel,148,2016,August,32,1,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-03-06,Summer,2016-08-01T07:00Z +Cancel,148,2016,August,32,1,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-03-06,Summer,2016-08-01T07:00Z +Cancel,199,2016,August,32,1,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,170,0,0,No-Show,2016-08-01,Summer,2016-08-01T07:00Z +Cancel,201,2016,August,32,1,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,172.8,0,1,Canceled,2016-02-03,Summer,2016-08-01T07:00Z +Cancel,265,2016,August,32,1,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-04-26,Summer,2016-08-01T07:00Z +Keep,285,2016,August,32,1,1,3,2,2,0,BB,LUX,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,153.25,0,1,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,285,2016,August,32,1,1,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,165.25,0,1,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Cancel,147,2016,August,32,1,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,115.2,0,0,Canceled,2016-05-18,Summer,2016-08-01T07:00Z +Cancel,270,2016,August,32,1,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient,232,0,1,Canceled,2016-03-23,Summer,2016-08-01T07:00Z +Cancel,173,2016,August,32,1,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,204,0,1,Canceled,2016-04-13,Summer,2016-08-01T07:00Z +Cancel,141,2016,August,32,1,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-03-13,Summer,2016-08-01T07:00Z +Cancel,247,2016,August,32,1,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2016-02-15,Summer,2016-08-01T07:00Z +Cancel,247,2016,August,32,1,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2016-02-15,Summer,2016-08-01T07:00Z +Cancel,78,2016,August,32,1,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-07-18,Summer,2016-08-01T07:00Z +Cancel,167,2016,August,32,1,1,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2016-03-10,Summer,2016-08-01T07:00Z +Keep,194,2016,August,32,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,116.1,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Cancel,28,2016,August,32,1,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,195,0,1,Canceled,2016-07-17,Summer,2016-08-01T07:00Z +Cancel,180,2016,August,32,1,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,165,0,1,Canceled,2016-02-09,Summer,2016-08-01T07:00Z +Cancel,179,2016,August,32,1,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,146.8,0,2,Canceled,2016-07-26,Summer,2016-08-01T07:00Z +Cancel,243,2016,August,32,1,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2016-06-02,Summer,2016-08-01T07:00Z +Keep,194,2016,August,32,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,130.55,0,0,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Cancel,152,2016,August,32,1,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,212.14,0,0,Canceled,2016-07-11,Summer,2016-08-01T07:00Z +Cancel,180,2016,August,32,1,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,177.5,0,2,Canceled,2016-02-09,Summer,2016-08-01T07:00Z +Cancel,177,2016,August,32,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,103.5,0,1,Canceled,2016-06-06,Summer,2016-08-01T07:00Z +Keep,194,2016,August,32,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,130.55,0,0,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Cancel,180,2016,August,32,1,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,177.5,0,2,Canceled,2016-02-09,Summer,2016-08-01T07:00Z +Cancel,150,2016,August,32,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162.86,0,0,Canceled,2016-06-07,Summer,2016-08-01T07:00Z +Keep,163,2016,August,32,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,140.76,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,265,2016,August,32,1,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,143.3,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Cancel,149,2016,August,32,1,3,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.44,0,2,Canceled,2016-04-27,Summer,2016-08-01T07:00Z +Cancel,161,2016,August,32,1,3,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,256.5,0,0,Canceled,2016-04-05,Summer,2016-08-01T07:00Z +Cancel,158,2016,August,32,1,3,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,1,Canceled,2016-07-26,Summer,2016-08-01T07:00Z +Cancel,209,2016,August,32,1,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2016-01-06,Summer,2016-08-01T07:00Z +Cancel,127,2016,August,32,1,5,14,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,191,0,1,Canceled,2016-04-19,Summer,2016-08-01T07:00Z +Cancel,5,2016,August,32,2,0,1,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-07-28,Summer,2016-08-02T07:00Z +Cancel,197,2016,August,32,2,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,166.5,0,2,Canceled,2016-03-15,Summer,2016-08-02T07:00Z +Cancel,210,2016,August,32,2,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-03-14,Summer,2016-08-02T07:00Z +Cancel,56,2016,August,32,2,0,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-14,Summer,2016-08-02T07:00Z +Cancel,56,2016,August,32,2,0,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-14,Summer,2016-08-02T07:00Z +Cancel,29,2016,August,32,2,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-04,Summer,2016-08-02T07:00Z +Cancel,152,2016,August,32,2,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,0,1,Canceled,2016-07-13,Summer,2016-08-02T07:00Z +Keep,274,2016,August,32,2,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Cancel,152,2016,August,32,2,0,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,252,0,1,Canceled,2016-07-13,Summer,2016-08-02T07:00Z +Cancel,29,2016,August,32,2,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-04,Summer,2016-08-02T07:00Z +Cancel,274,2016,August,32,2,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-06-21,Summer,2016-08-02T07:00Z +Cancel,36,2016,August,32,2,0,4,2,0,1,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,244.5,0,0,Canceled,2016-07-28,Summer,2016-08-02T07:00Z +Cancel,55,2016,August,32,2,0,4,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,1,Canceled,2016-06-14,Summer,2016-08-02T07:00Z +Cancel,220,2016,August,32,2,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,282,0,1,Canceled,2016-05-10,Summer,2016-08-02T07:00Z +Cancel,434,2016,August,32,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,160.5,0,0,Canceled,2015-10-14,Summer,2016-08-02T07:00Z +Cancel,190,2016,August,32,2,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,250,0,0,Canceled,2016-03-10,Summer,2016-08-02T07:00Z +Cancel,215,2016,August,32,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-07-26,Summer,2016-08-02T07:00Z +Cancel,48,2016,August,32,2,2,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-19,Summer,2016-08-02T07:00Z +Cancel,209,2016,August,32,2,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,158,0,0,Canceled,2016-01-08,Summer,2016-08-02T07:00Z +Cancel,208,2016,August,32,2,4,12,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,141.1,0,0,Canceled,2016-01-11,Summer,2016-08-02T07:00Z +Cancel,58,2016,August,32,3,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2016-06-06,Summer,2016-08-03T07:00Z +Cancel,58,2016,August,32,3,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-06,Summer,2016-08-03T07:00Z +Cancel,15,2016,August,32,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Canceled,2016-07-20,Summer,2016-08-03T07:00Z +Cancel,16,2016,August,32,3,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,283.32,0,0,Canceled,2016-07-21,Summer,2016-08-03T07:00Z +Cancel,143,2016,August,32,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-03-24,Summer,2016-08-03T07:00Z +Cancel,143,2016,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-03-24,Summer,2016-08-03T07:00Z +Cancel,267,2016,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2015-11-17,Summer,2016-08-03T07:00Z +Cancel,143,2016,August,32,3,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-03-24,Summer,2016-08-03T07:00Z +Cancel,169,2016,August,32,3,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,204,0,0,Canceled,2016-05-23,Summer,2016-08-03T07:00Z +Cancel,162,2016,August,32,3,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,100.8,0,2,Canceled,2016-07-19,Summer,2016-08-03T07:00Z +Cancel,247,2016,August,32,4,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,0,Canceled,2016-08-01,Summer,2016-08-04T07:00Z +Cancel,24,2016,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-07-11,Summer,2016-08-04T07:00Z +Cancel,23,2016,August,32,4,0,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,272.7,0,0,Canceled,2016-07-30,Summer,2016-08-04T07:00Z +Cancel,44,2016,August,32,4,1,3,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2016-06-23,Summer,2016-08-04T07:00Z +Cancel,104,2016,August,32,4,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-10,Summer,2016-08-04T07:00Z +Cancel,349,2016,August,32,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125.4,0,3,Canceled,2016-06-21,Summer,2016-08-04T07:00Z +Cancel,349,2016,August,32,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.4,0,3,Canceled,2016-06-21,Summer,2016-08-04T07:00Z +Cancel,157,2016,August,32,4,2,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2016-02-29,Summer,2016-08-04T07:00Z +Cancel,199,2016,August,32,4,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,1,Canceled,2016-01-18,Summer,2016-08-04T07:00Z +Cancel,64,2016,August,32,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Canceled,2016-06-03,Summer,2016-08-04T07:00Z +Cancel,93,2016,August,32,4,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-05-03,Summer,2016-08-04T07:00Z +Cancel,91,2016,August,32,4,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,246,0,1,Canceled,2016-05-13,Summer,2016-08-04T07:00Z +Cancel,98,2016,August,32,4,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,201,0,0,Canceled,2016-07-16,Summer,2016-08-04T07:00Z +Cancel,100,2016,August,32,4,2,6,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-06,Summer,2016-08-04T07:00Z +Cancel,0,2016,August,32,5,0,1,2,2,1,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,199,0,0,Canceled,2016-08-05,Summer,2016-08-05T07:00Z +Cancel,116,2016,August,32,5,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,0,0,Canceled,2016-04-14,Summer,2016-08-05T07:00Z +Cancel,52,2016,August,32,5,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,186.88,0,0,Canceled,2016-07-06,Summer,2016-08-05T07:00Z +Cancel,145,2016,August,32,5,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-03-23,Summer,2016-08-05T07:00Z +Cancel,96,2016,August,32,5,0,2,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,233,0,0,Canceled,2016-07-12,Summer,2016-08-05T07:00Z +Cancel,96,2016,August,32,5,0,2,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2016-07-12,Summer,2016-08-05T07:00Z +Cancel,20,2016,August,32,5,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,299,0,0,Canceled,2016-07-21,Summer,2016-08-05T07:00Z +Cancel,105,2016,August,32,5,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-11,Summer,2016-08-05T07:00Z +Cancel,151,2016,August,32,5,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245.67,0,1,Canceled,2016-07-24,Summer,2016-08-05T07:00Z +Cancel,44,2016,August,32,5,2,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,186.88,0,0,Canceled,2016-06-24,Summer,2016-08-05T07:00Z +Cancel,47,2016,August,32,5,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-11,Summer,2016-08-05T07:00Z +Cancel,210,2016,August,32,5,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2016-01-22,Summer,2016-08-05T07:00Z +Cancel,156,2016,August,32,5,2,5,3,0,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,187.7,0,1,Canceled,2016-07-28,Summer,2016-08-05T07:00Z +Cancel,156,2016,August,32,5,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,182.2,0,0,Canceled,2016-07-28,Summer,2016-08-05T07:00Z +Cancel,162,2016,August,32,5,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2016-07-21,Summer,2016-08-05T07:00Z +Cancel,149,2016,August,32,5,2,6,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,248.75,0,0,Canceled,2016-03-10,Summer,2016-08-05T07:00Z +Cancel,149,2016,August,32,5,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,188.75,0,0,Canceled,2016-03-10,Summer,2016-08-05T07:00Z +Cancel,149,2016,August,32,5,2,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,248.89,0,0,Canceled,2016-03-10,Summer,2016-08-05T07:00Z +Cancel,149,2016,August,32,5,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,188.89,0,0,Canceled,2016-03-10,Summer,2016-08-05T07:00Z +Cancel,177,2016,August,32,5,2,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,298,0,0,Canceled,2016-02-15,Summer,2016-08-05T07:00Z +Cancel,105,2016,August,32,5,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 244, NULL,0,Transient,185,0,0,Canceled,2016-04-28,Summer,2016-08-05T07:00Z +Cancel,4,2016,August,32,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,0,Canceled,2016-08-03,Summer,2016-08-06T07:00Z +Cancel,33,2016,August,32,6,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,289,0,0,Canceled,2016-07-07,Summer,2016-08-06T07:00Z +Cancel,199,2016,August,32,6,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2016-01-25,Summer,2016-08-06T07:00Z +Cancel,221,2016,August,32,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-02-02,Summer,2016-08-06T07:00Z +Cancel,33,2016,August,32,6,2,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2016-07-13,Summer,2016-08-06T07:00Z +Cancel,155,2016,August,32,6,2,2,2,0,0,BB,MOZ,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,0,Canceled,2016-04-27,Summer,2016-08-06T07:00Z +Cancel,156,2016,August,32,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,0,Canceled,2016-07-26,Summer,2016-08-06T07:00Z +Cancel,90,2016,August,32,6,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-05-11,Summer,2016-08-06T07:00Z +Cancel,16,2016,August,32,6,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,0,0,Canceled,2016-07-26,Summer,2016-08-06T07:00Z +Cancel,76,2016,August,32,6,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,202.33,0,0,Canceled,2016-06-19,Summer,2016-08-06T07:00Z +Cancel,157,2016,August,32,6,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,213,0,1,Canceled,2016-05-05,Summer,2016-08-06T07:00Z +Cancel,357,2016,August,32,6,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,176,0,3,Canceled,2016-07-22,Summer,2016-08-06T07:00Z +Cancel,325,2016,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2015-10-22,Summer,2016-08-06T07:00Z +Cancel,100,2016,August,32,6,2,6,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-05-10,Summer,2016-08-06T07:00Z +Cancel,168,2016,August,32,6,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,205,0,0,Canceled,2016-02-29,Summer,2016-08-06T07:00Z +Cancel,48,2016,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-03,Summer,2016-08-06T07:00Z +Cancel,168,2016,August,32,6,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,180,0,0,Canceled,2016-02-29,Summer,2016-08-06T07:00Z +Cancel,248,2016,August,32,6,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2015-12-26,Summer,2016-08-06T07:00Z +Cancel,187,2016,August,32,6,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,95.4,0,1,Canceled,2016-03-03,Summer,2016-08-06T07:00Z +Cancel,125,2016,August,33,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-22,Summer,2016-08-07T07:00Z +Cancel,47,2016,August,33,7,1,0,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,0,0,Canceled,2016-07-05,Summer,2016-08-07T07:00Z +Cancel,1,2016,August,33,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,165.55,0,0,Canceled,2016-08-06,Summer,2016-08-07T07:00Z +Cancel,1,2016,August,33,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,165.55,0,0,Canceled,2016-08-06,Summer,2016-08-07T07:00Z +Cancel,44,2016,August,33,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,230,0,0,Canceled,2016-07-20,Summer,2016-08-07T07:00Z +Cancel,9,2016,August,33,7,2,0,3,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,299,0,0,No-Show,2016-08-07,Summer,2016-08-07T07:00Z +Cancel,290,2016,August,33,7,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,2,Canceled,2016-06-14,Summer,2016-08-07T07:00Z +Cancel,98,2016,August,33,7,2,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-05-04,Summer,2016-08-07T07:00Z +Cancel,91,2016,August,33,7,2,3,3,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,273,0,0,Canceled,2016-07-26,Summer,2016-08-07T07:00Z +Cancel,52,2016,August,33,7,2,3,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,269,0,0,Canceled,2016-07-08,Summer,2016-08-07T07:00Z +Cancel,148,2016,August,33,7,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,269,0,0,Canceled,2016-06-14,Summer,2016-08-07T07:00Z +Cancel,167,2016,August,33,7,2,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,254,0,0,Canceled,2016-06-14,Summer,2016-08-07T07:00Z +Cancel,148,2016,August,33,7,2,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-14,Summer,2016-08-07T07:00Z +Cancel,91,2016,August,33,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 240, NULL,0,Transient,236.71,0,0,Canceled,2016-05-22,Summer,2016-08-07T07:00Z +Cancel,208,2016,August,33,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,2,Canceled,2016-01-19,Summer,2016-08-07T07:00Z +Cancel,139,2016,August,33,7,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Canceled,2016-03-21,Summer,2016-08-07T07:00Z +Cancel,139,2016,August,33,7,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-03-28,Summer,2016-08-07T07:00Z +Cancel,139,2016,August,33,7,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-03-28,Summer,2016-08-07T07:00Z +Cancel,139,2016,August,33,7,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Canceled,2016-03-21,Summer,2016-08-07T07:00Z +Cancel,141,2016,August,33,7,4,10,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-19,Summer,2016-08-07T07:00Z +Cancel,161,2016,August,33,8,1,2,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,144,0,0,Canceled,2016-03-01,Summer,2016-08-08T07:00Z +Cancel,257,2016,August,33,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156,0,1,Canceled,2016-07-04,Summer,2016-08-08T07:00Z +Cancel,245,2016,August,33,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2016-03-08,Summer,2016-08-08T07:00Z +Cancel,290,2016,August,33,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Canceled,2016-03-18,Summer,2016-08-08T07:00Z +Keep,329,2016,August,33,8,1,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,172,0,1,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Cancel,236,2016,August,33,8,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,138,0,2,Canceled,2016-06-14,Summer,2016-08-08T07:00Z +Cancel,60,2016,August,33,8,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,243.63,0,0,Canceled,2016-06-09,Summer,2016-08-08T07:00Z +Cancel,60,2016,August,33,8,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,202.28,0,0,Canceled,2016-06-14,Summer,2016-08-08T07:00Z +Cancel,22,2016,August,33,8,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-07-22,Summer,2016-08-08T07:00Z +Cancel,22,2016,August,33,8,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-07-22,Summer,2016-08-08T07:00Z +Cancel,60,2016,August,33,8,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,243.63,0,0,Canceled,2016-06-14,Summer,2016-08-08T07:00Z +Cancel,13,2016,August,33,8,1,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,369,0,0,Canceled,2016-07-27,Summer,2016-08-08T07:00Z +Cancel,150,2016,August,33,8,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2016-03-14,Summer,2016-08-08T07:00Z +Cancel,55,2016,August,33,8,1,4,2,2,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,278.6,0,0,Canceled,2016-06-14,Summer,2016-08-08T07:00Z +Cancel,113,2016,August,33,8,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,246.5,0,1,Canceled,2016-04-28,Summer,2016-08-08T07:00Z +Cancel,30,2016,August,33,8,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,271,0,2,Canceled,2016-07-21,Summer,2016-08-08T07:00Z +Keep,346,2016,August,33,8,1,4,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,216,0,1,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Cancel,161,2016,August,33,8,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234,0,1,Canceled,2016-07-01,Summer,2016-08-08T07:00Z +Cancel,157,2016,August,33,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,0,Canceled,2016-03-07,Summer,2016-08-08T07:00Z +Cancel,119,2016,August,33,8,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206.78,0,0,Canceled,2016-04-12,Summer,2016-08-08T07:00Z +Keep,201,2016,August,33,8,3,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,116.1,0,2,Check-Out,2016-08-18,Summer,2016-08-08T07:00Z +Cancel,65,2016,August,33,8,3,9,2,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,222.5,0,0,Canceled,2016-06-06,Summer,2016-08-08T07:00Z +Cancel,126,2016,August,33,8,3,7,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,218,0,0,Canceled,2016-06-15,Summer,2016-08-08T07:00Z +Keep,201,2016,August,33,8,3,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,116.1,0,1,Check-Out,2016-08-18,Summer,2016-08-08T07:00Z +Cancel,157,2016,August,33,8,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,135.15,0,0,Canceled,2016-07-25,Summer,2016-08-08T07:00Z +Cancel,181,2016,August,33,8,4,10,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Transient,196.7,0,1,Canceled,2016-02-10,Summer,2016-08-08T07:00Z +Cancel,160,2016,August,33,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-07-26,Summer,2016-08-09T07:00Z +Cancel,86,2016,August,33,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205.67,0,0,Canceled,2016-07-16,Summer,2016-08-09T07:00Z +Cancel,179,2016,August,33,9,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-02-13,Summer,2016-08-09T07:00Z +Cancel,169,2016,August,33,9,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2016-06-06,Summer,2016-08-09T07:00Z +Cancel,179,2016,August,33,9,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-02-13,Summer,2016-08-09T07:00Z +Cancel,329,2016,August,33,9,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,216,0,0,Canceled,2015-12-26,Summer,2016-08-09T07:00Z +Cancel,83,2016,August,33,9,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,187.33,0,1,Canceled,2016-07-22,Summer,2016-08-09T07:00Z +Keep,308,2016,August,33,9,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,2,No Deposit , 143, NULL,0,Contract,169.36,0,0,Check-Out,2016-08-16,Summer,2016-08-09T07:00Z +Cancel,182,2016,August,33,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,140,0,1,Canceled,2016-05-16,Summer,2016-08-09T07:00Z +Cancel,217,2016,August,33,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2016-06-20,Summer,2016-08-09T07:00Z +Cancel,112,2016,August,33,9,2,5,2,2,0,HB,RUS,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,254.31,0,0,Canceled,2016-04-21,Summer,2016-08-09T07:00Z +Cancel,55,2016,August,33,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-27,Summer,2016-08-10T07:00Z +Cancel,36,2016,August,33,10,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-17,Summer,2016-08-10T07:00Z +Cancel,317,2016,August,33,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-06-25,Summer,2016-08-10T07:00Z +Cancel,208,2016,August,33,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,103.5,0,0,Canceled,2016-06-30,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-05-12,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2016-03-08,Summer,2016-08-10T07:00Z +Cancel,13,2016,August,33,10,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,261.5,0,0,Canceled,2016-07-29,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2016-03-08,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-05-12,Summer,2016-08-10T07:00Z +Cancel,42,2016,August,33,10,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2016-07-21,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2016-03-08,Summer,2016-08-10T07:00Z +Cancel,155,2016,August,33,10,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-05-12,Summer,2016-08-10T07:00Z +Keep,278,2016,August,33,10,1,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159.5,0,1,Check-Out,2016-08-15,Summer,2016-08-10T07:00Z +Cancel,153,2016,August,33,10,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,202,0,0,Canceled,2016-06-16,Summer,2016-08-10T07:00Z +Cancel,205,2016,August,33,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2016-06-21,Summer,2016-08-10T07:00Z +Cancel,153,2016,August,33,10,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,214,0,0,Canceled,2016-06-16,Summer,2016-08-10T07:00Z +Cancel,146,2016,August,33,10,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,246,0,0,Canceled,2016-06-17,Summer,2016-08-10T07:00Z +Cancel,217,2016,August,33,10,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-06-21,Summer,2016-08-10T07:00Z +Cancel,149,2016,August,33,10,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-06-10,Summer,2016-08-10T07:00Z +Keep,314,2016,August,33,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 40, NULL,0,Transient,132.56,0,2,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Cancel,76,2016,August,33,10,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,202.57,0,0,Canceled,2016-07-22,Summer,2016-08-10T07:00Z +Cancel,127,2016,August,33,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-21,Summer,2016-08-11T07:00Z +Cancel,132,2016,August,33,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-04-16,Summer,2016-08-11T07:00Z +Cancel,132,2016,August,33,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-04-16,Summer,2016-08-11T07:00Z +Cancel,145,2016,August,33,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,2,Canceled,2016-08-11,Summer,2016-08-11T07:00Z +Cancel,12,2016,August,33,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-08-03,Summer,2016-08-11T07:00Z +Cancel,86,2016,August,33,11,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-28,Summer,2016-08-11T07:00Z +Cancel,12,2016,August,33,11,0,3,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,225.67,0,0,Canceled,2016-07-31,Summer,2016-08-11T07:00Z +Cancel,28,2016,August,33,11,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,219,0,0,Canceled,2016-07-24,Summer,2016-08-11T07:00Z +Cancel,139,2016,August,33,11,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231.5,0,0,Canceled,2016-03-28,Summer,2016-08-11T07:00Z +Cancel,18,2016,August,33,11,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,226.5,0,0,Canceled,2016-07-26,Summer,2016-08-11T07:00Z +Cancel,139,2016,August,33,11,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231.5,0,0,Canceled,2016-03-28,Summer,2016-08-11T07:00Z +Cancel,48,2016,August,33,11,2,3,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,251,0,0,Canceled,2016-07-27,Summer,2016-08-11T07:00Z +Cancel,55,2016,August,33,11,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-21,Summer,2016-08-11T07:00Z +Cancel,69,2016,August,33,11,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-16,Summer,2016-08-11T07:00Z +Cancel,332,2016,August,33,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,2,Canceled,2015-11-14,Summer,2016-08-11T07:00Z +Cancel,338,2016,August,33,11,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,210.86,0,1,Canceled,2015-10-20,Summer,2016-08-11T07:00Z +Cancel,197,2016,August,33,11,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,103.7,0,2,Canceled,2016-01-27,Summer,2016-08-11T07:00Z +Cancel,199,2016,August,33,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,100.8,0,0,Canceled,2016-07-18,Summer,2016-08-11T07:00Z +Cancel,239,2016,August,33,11,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2016-01-28,Summer,2016-08-11T07:00Z +Cancel,13,2016,August,33,12,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,256,0,0,Canceled,2016-07-31,Summer,2016-08-12T07:00Z +Cancel,51,2016,August,33,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,209,0,1,Canceled,2016-06-24,Summer,2016-08-12T07:00Z +Keep,304,2016,August,33,12,0,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,216,0,1,Check-Out,2016-08-13,Summer,2016-08-12T07:00Z +Cancel,152,2016,August,33,12,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-21,Summer,2016-08-12T07:00Z +Cancel,13,2016,August,33,12,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,291,0,0,Canceled,2016-07-31,Summer,2016-08-12T07:00Z +Cancel,68,2016,August,33,12,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-15,Summer,2016-08-12T07:00Z +Cancel,121,2016,August,33,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,189,0,0,Canceled,2016-06-19,Summer,2016-08-12T07:00Z +Cancel,87,2016,August,33,12,1,2,2,1,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,204,0,0,Canceled,2016-06-02,Summer,2016-08-12T07:00Z +Cancel,118,2016,August,33,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,201,0,0,Canceled,2016-05-27,Summer,2016-08-12T07:00Z +Cancel,129,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-04-08,Summer,2016-08-12T07:00Z +Cancel,138,2016,August,33,12,1,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,249,0,0,Canceled,2016-07-07,Summer,2016-08-12T07:00Z +Cancel,23,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Canceled,2016-07-23,Summer,2016-08-12T07:00Z +Cancel,21,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,225.67,0,1,Canceled,2016-07-27,Summer,2016-08-12T07:00Z +Cancel,57,2016,August,33,12,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2016-07-11,Summer,2016-08-12T07:00Z +Cancel,23,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Canceled,2016-07-23,Summer,2016-08-12T07:00Z +Cancel,19,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,225.67,0,0,Canceled,2016-07-30,Summer,2016-08-12T07:00Z +Cancel,138,2016,August,33,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-07-07,Summer,2016-08-12T07:00Z +Cancel,92,2016,August,33,12,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,251.5,0,0,Canceled,2016-05-16,Summer,2016-08-12T07:00Z +Cancel,41,2016,August,33,12,2,2,2,1,0,BB,RUS,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,234.6,0,0,Canceled,2016-08-08,Summer,2016-08-12T07:00Z +Cancel,51,2016,August,33,12,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-13,Summer,2016-08-12T07:00Z +Cancel,116,2016,August,33,12,3,7,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234,0,0,Canceled,2016-04-21,Summer,2016-08-12T07:00Z +Cancel,343,2016,August,33,12,3,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2015-11-10,Summer,2016-08-12T07:00Z +Cancel,291,2016,August,33,12,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,195.3,0,1,Canceled,2016-05-26,Summer,2016-08-12T07:00Z +Cancel,10,2016,August,33,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-08-10,Summer,2016-08-13T07:00Z +Cancel,114,2016,August,33,13,1,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,279,0,0,Canceled,2016-04-22,Summer,2016-08-13T07:00Z +Cancel,69,2016,August,33,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,209,0,2,Canceled,2016-08-01,Summer,2016-08-13T07:00Z +Cancel,53,2016,August,33,13,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189,0,1,Canceled,2016-07-19,Summer,2016-08-13T07:00Z +Cancel,69,2016,August,33,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,209,0,2,Canceled,2016-07-29,Summer,2016-08-13T07:00Z +Cancel,113,2016,August,33,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-05,Summer,2016-08-13T07:00Z +Cancel,140,2016,August,33,13,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-04-04,Summer,2016-08-13T07:00Z +Cancel,91,2016,August,33,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-14,Summer,2016-08-13T07:00Z +Cancel,113,2016,August,33,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-06-05,Summer,2016-08-13T07:00Z +Cancel,8,2016,August,33,13,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,254,0,2,Canceled,2016-08-05,Summer,2016-08-13T07:00Z +Cancel,140,2016,August,33,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,191,0,0,Canceled,2016-04-04,Summer,2016-08-13T07:00Z +Cancel,99,2016,August,33,13,2,1,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,277.67,0,1,Canceled,2016-06-13,Summer,2016-08-13T07:00Z +Cancel,24,2016,August,33,13,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,299,0,0,Canceled,2016-07-20,Summer,2016-08-13T07:00Z +Cancel,121,2016,August,33,13,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,197.67,0,0,Canceled,2016-04-18,Summer,2016-08-13T07:00Z +Cancel,131,2016,August,33,13,2,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,195.6,0,0,Canceled,2016-08-05,Summer,2016-08-13T07:00Z +Cancel,345,2016,August,33,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.4,0,0,Canceled,2016-01-18,Summer,2016-08-13T07:00Z +Cancel,107,2016,August,33,13,2,2,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,227.92,0,0,Canceled,2016-04-28,Summer,2016-08-13T07:00Z +Cancel,360,2016,August,33,13,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.4,0,2,Canceled,2015-08-31,Summer,2016-08-13T07:00Z +Cancel,348,2016,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.4,0,2,Canceled,2015-09-03,Summer,2016-08-13T07:00Z +Cancel,166,2016,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2016-07-27,Summer,2016-08-13T07:00Z +Cancel,19,2016,August,33,13,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,258,0,0,Canceled,2016-07-26,Summer,2016-08-13T07:00Z +Cancel,61,2016,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-07-18,Summer,2016-08-13T07:00Z +Cancel,61,2016,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-07-18,Summer,2016-08-13T07:00Z +Cancel,166,2016,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2016-07-27,Summer,2016-08-13T07:00Z +Cancel,10,2016,August,33,13,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,247.67,0,0,Canceled,2016-08-08,Summer,2016-08-13T07:00Z +Cancel,57,2016,August,33,13,2,4,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,269,0,0,Canceled,2016-07-26,Summer,2016-08-13T07:00Z +Cancel,85,2016,August,33,13,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,263,0,0,Canceled,2016-06-17,Summer,2016-08-13T07:00Z +Cancel,162,2016,August,33,13,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,235.57,0,0,Canceled,2016-03-13,Summer,2016-08-13T07:00Z +Cancel,110,2016,August,33,13,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201.86,0,0,Canceled,2016-04-25,Summer,2016-08-13T07:00Z +Cancel,82,2016,August,33,13,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201.86,0,0,Canceled,2016-05-27,Summer,2016-08-13T07:00Z +Cancel,162,2016,August,33,13,2,5,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,189,0,1,Canceled,2016-03-08,Summer,2016-08-13T07:00Z +Cancel,82,2016,August,33,13,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201.86,0,0,Canceled,2016-05-27,Summer,2016-08-13T07:00Z +Cancel,169,2016,August,33,13,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,154.64,0,0,Canceled,2016-03-02,Summer,2016-08-13T07:00Z +Cancel,141,2016,August,33,13,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-21,Summer,2016-08-13T07:00Z +Cancel,169,2016,August,33,13,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,141.6,0,0,Canceled,2016-02-26,Summer,2016-08-13T07:00Z +Cancel,105,2016,August,33,13,4,6,2,2,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,309,0,0,Canceled,2016-07-30,Summer,2016-08-13T07:00Z +Cancel,133,2016,August,33,13,4,6,2,1,0,FB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,289.9,0,0,Canceled,2016-07-15,Summer,2016-08-13T07:00Z +Cancel,12,2016,August,34,14,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 102,0,Transient,197.1,0,0,Canceled,2016-08-05,Summer,2016-08-14T07:00Z +Cancel,60,2016,August,34,14,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-24,Summer,2016-08-14T07:00Z +Cancel,3,2016,August,34,14,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-08-11,Summer,2016-08-14T07:00Z +Cancel,49,2016,August,34,14,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,230,0,0,Canceled,2016-06-26,Summer,2016-08-14T07:00Z +Cancel,123,2016,August,34,14,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,216,0,2,Canceled,2016-07-20,Summer,2016-08-14T07:00Z +Cancel,63,2016,August,34,14,2,3,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 241, NULL,0,Transient,248.16,0,0,Canceled,2016-06-13,Summer,2016-08-14T07:00Z +Cancel,87,2016,August,34,14,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,261,0,0,Canceled,2016-05-19,Summer,2016-08-14T07:00Z +Cancel,54,2016,August,34,14,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-22,Summer,2016-08-14T07:00Z +Cancel,95,2016,August,34,14,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,195.86,0,0,Canceled,2016-05-23,Summer,2016-08-14T07:00Z +Cancel,95,2016,August,34,14,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,214.99,0,1,Canceled,2016-05-23,Summer,2016-08-14T07:00Z +Cancel,212,2016,August,34,14,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-01-21,Summer,2016-08-14T07:00Z +Cancel,85,2016,August,34,14,4,10,2,0,1,BB,GBR,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient-Party,217.14,0,1,Canceled,2016-06-06,Summer,2016-08-14T07:00Z +Cancel,212,2016,August,34,14,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2016-01-21,Summer,2016-08-14T07:00Z +Cancel,212,2016,August,34,14,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-01-21,Summer,2016-08-14T07:00Z +Cancel,212,2016,August,34,14,4,10,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,2,Canceled,2016-01-21,Summer,2016-08-14T07:00Z +Cancel,212,2016,August,34,14,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-01-21,Summer,2016-08-14T07:00Z +Keep,291,2016,August,34,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,291,2016,August,34,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,291,2016,August,34,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,291,2016,August,34,15,1,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,236.67,0,2,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,291,2016,August,34,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Cancel,135,2016,August,34,15,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,236.5,0,0,Canceled,2016-04-17,Summer,2016-08-15T07:00Z +Cancel,154,2016,August,34,15,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-03-14,Summer,2016-08-15T07:00Z +Keep,348,2016,August,34,15,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,140.16,0,2,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Cancel,83,2016,August,34,15,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,216.5,0,0,Canceled,2016-08-03,Summer,2016-08-15T07:00Z +Cancel,175,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Canceled,2016-02-29,Summer,2016-08-15T07:00Z +Cancel,78,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,219,0,0,Canceled,2016-05-30,Summer,2016-08-15T07:00Z +Cancel,175,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2016-02-29,Summer,2016-08-15T07:00Z +Cancel,78,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,219,0,0,Canceled,2016-05-30,Summer,2016-08-15T07:00Z +Cancel,20,2016,August,34,15,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,256,0,0,Canceled,2016-08-01,Summer,2016-08-15T07:00Z +Cancel,205,2016,August,34,15,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,157.25,0,0,Canceled,2016-07-12,Summer,2016-08-15T07:00Z +Cancel,78,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,219,0,0,Canceled,2016-05-30,Summer,2016-08-15T07:00Z +Cancel,135,2016,August,34,15,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,246,0,0,Canceled,2016-04-02,Summer,2016-08-15T07:00Z +Cancel,222,2016,August,34,15,1,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient-Party,144.61,0,0,Canceled,2016-01-29,Summer,2016-08-15T07:00Z +Cancel,90,2016,August,34,15,1,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-05-25,Summer,2016-08-15T07:00Z +Cancel,54,2016,August,34,15,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2016-06-22,Summer,2016-08-15T07:00Z +Cancel,222,2016,August,34,15,1,5,1,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient-Party,161.55,0,0,Canceled,2016-01-29,Summer,2016-08-15T07:00Z +Cancel,200,2016,August,34,15,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient-Party,110.32,0,0,Canceled,2016-02-17,Summer,2016-08-15T07:00Z +Cancel,240,2016,August,34,15,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,113.05,0,1,Canceled,2015-12-30,Summer,2016-08-15T07:00Z +Cancel,96,2016,August,34,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-08-03,Summer,2016-08-15T07:00Z +Cancel,149,2016,August,34,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209.71,0,0,Canceled,2016-03-25,Summer,2016-08-15T07:00Z +Cancel,240,2016,August,34,15,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,113.05,0,1,Canceled,2015-12-30,Summer,2016-08-15T07:00Z +Cancel,166,2016,August,34,15,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,188.14,0,1,Canceled,2016-08-15,Summer,2016-08-15T07:00Z +Cancel,201,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2016-06-21,Summer,2016-08-15T07:00Z +Cancel,196,2016,August,34,15,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,201.25,0,1,Canceled,2016-02-19,Summer,2016-08-15T07:00Z +Cancel,146,2016,August,34,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209.71,0,0,Canceled,2016-03-22,Summer,2016-08-15T07:00Z +Cancel,158,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-07-12,Summer,2016-08-15T07:00Z +Cancel,200,2016,August,34,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient-Party,124.2,0,0,Canceled,2016-02-17,Summer,2016-08-15T07:00Z +Cancel,119,2016,August,34,15,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,246,0,0,Canceled,2016-04-22,Summer,2016-08-15T07:00Z +Cancel,119,2016,August,34,15,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,231,0,0,Canceled,2016-04-22,Summer,2016-08-15T07:00Z +Cancel,0,2016,August,34,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,221,0,1,Canceled,2016-08-16,Summer,2016-08-16T07:00Z +Cancel,12,2016,August,34,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2016-08-06,Summer,2016-08-16T07:00Z +Cancel,100,2016,August,34,16,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,195,0,0,Canceled,2016-07-31,Summer,2016-08-16T07:00Z +Cancel,10,2016,August,34,16,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,229,0,3,Canceled,2016-08-13,Summer,2016-08-16T07:00Z +Cancel,142,2016,August,34,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-06-02,Summer,2016-08-16T07:00Z +Cancel,28,2016,August,34,16,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-03,Summer,2016-08-16T07:00Z +Cancel,75,2016,August,34,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,217.33,0,0,Canceled,2016-06-13,Summer,2016-08-16T07:00Z +Cancel,292,2016,August,34,16,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2015-12-02,Summer,2016-08-16T07:00Z +Cancel,293,2016,August,34,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2015-12-02,Summer,2016-08-16T07:00Z +Cancel,79,2016,August,34,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,202.33,0,1,Canceled,2016-06-20,Summer,2016-08-16T07:00Z +Cancel,28,2016,August,34,16,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-03,Summer,2016-08-16T07:00Z +Cancel,75,2016,August,34,16,0,4,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,314.5,0,0,Canceled,2016-06-02,Summer,2016-08-16T07:00Z +Cancel,75,2016,August,34,16,0,4,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,266.5,0,0,Canceled,2016-07-19,Summer,2016-08-16T07:00Z +Cancel,61,2016,August,34,16,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-08-03,Summer,2016-08-16T07:00Z +Cancel,155,2016,August,34,16,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,258,0,0,Canceled,2016-03-19,Summer,2016-08-16T07:00Z +Cancel,183,2016,August,34,16,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,115.2,0,0,Canceled,2016-08-04,Summer,2016-08-16T07:00Z +Cancel,167,2016,August,34,16,0,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,131,0,0,Canceled,2016-03-08,Summer,2016-08-16T07:00Z +Cancel,168,2016,August,34,16,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-04-27,Summer,2016-08-16T07:00Z +Cancel,55,2016,August,34,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168.63,0,0,Canceled,2016-06-24,Summer,2016-08-16T07:00Z +Cancel,127,2016,August,34,16,2,7,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,216.5,0,0,Canceled,2016-04-15,Summer,2016-08-16T07:00Z +Cancel,245,2016,August,34,16,2,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2016-02-20,Summer,2016-08-16T07:00Z +Cancel,195,2016,August,34,16,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,124.2,0,0,Canceled,2016-06-22,Summer,2016-08-16T07:00Z +Cancel,143,2016,August,34,16,4,10,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,286.79,0,0,Canceled,2016-05-08,Summer,2016-08-16T07:00Z +Cancel,143,2016,August,34,16,4,10,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.79,0,0,Canceled,2016-05-08,Summer,2016-08-16T07:00Z +Cancel,143,2016,August,34,16,4,10,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.79,0,0,Canceled,2016-05-08,Summer,2016-08-16T07:00Z +Cancel,106,2016,August,34,17,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-21,Summer,2016-08-17T07:00Z +Cancel,23,2016,August,34,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-04,Summer,2016-08-17T07:00Z +Cancel,137,2016,August,34,17,0,3,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,281,0,0,Canceled,2016-04-03,Summer,2016-08-17T07:00Z +Cancel,22,2016,August,34,17,0,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Canceled,2016-07-29,Summer,2016-08-17T07:00Z +Cancel,23,2016,August,34,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-04,Summer,2016-08-17T07:00Z +Cancel,16,2016,August,34,17,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Canceled,2016-08-02,Summer,2016-08-17T07:00Z +Cancel,56,2016,August,34,17,0,4,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,2,Canceled,2016-07-21,Summer,2016-08-17T07:00Z +Cancel,78,2016,August,34,17,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-06-05,Summer,2016-08-17T07:00Z +Cancel,79,2016,August,34,17,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,199,0,0,Canceled,2016-07-14,Summer,2016-08-17T07:00Z +Cancel,24,2016,August,34,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-03,Summer,2016-08-17T07:00Z +Cancel,187,2016,August,34,17,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,143.1,0,1,Canceled,2016-06-02,Summer,2016-08-17T07:00Z +Cancel,144,2016,August,34,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176,0,0,Canceled,2016-07-18,Summer,2016-08-17T07:00Z +Cancel,112,2016,August,34,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Canceled,2016-07-18,Summer,2016-08-17T07:00Z +Cancel,134,2016,August,34,17,2,4,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,274,0,0,Canceled,2016-06-30,Summer,2016-08-17T07:00Z +Cancel,26,2016,August,34,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-07-23,Summer,2016-08-17T07:00Z +Cancel,173,2016,August,34,17,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,1,Canceled,2016-04-07,Summer,2016-08-17T07:00Z +Cancel,180,2016,August,34,17,3,9,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,143.1,0,0,Canceled,2016-07-29,Summer,2016-08-17T07:00Z +Cancel,73,2016,August,34,17,4,9,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,227.92,0,0,Canceled,2016-06-21,Summer,2016-08-17T07:00Z +Cancel,3,2016,August,34,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,0,1,Canceled,2016-08-17,Summer,2016-08-18T07:00Z +Cancel,77,2016,August,34,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-06-25,Summer,2016-08-18T07:00Z +Cancel,51,2016,August,34,18,0,2,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,275,0,1,Canceled,2016-08-08,Summer,2016-08-18T07:00Z +Cancel,81,2016,August,34,18,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-05-31,Summer,2016-08-18T07:00Z +Cancel,27,2016,August,34,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,200.1,0,0,Canceled,2016-08-11,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,237,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,237,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,16,2016,August,34,18,0,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,247.33,0,1,Canceled,2016-08-08,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,237,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,149,2016,August,34,18,1,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,256.75,0,0,Canceled,2016-04-30,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,3,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,288,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,165,2016,August,34,18,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,0,Canceled,2016-04-27,Summer,2016-08-18T07:00Z +Cancel,29,2016,August,34,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,251.86,0,1,Canceled,2016-08-03,Summer,2016-08-18T07:00Z +Cancel,116,2016,August,34,18,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,238.16,0,0,Canceled,2016-04-24,Summer,2016-08-18T07:00Z +Cancel,14,2016,August,34,18,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,208.48,0,0,Canceled,2016-08-04,Summer,2016-08-18T07:00Z +Cancel,54,2016,August,34,18,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,226.14,0,0,Canceled,2016-06-25,Summer,2016-08-18T07:00Z +Cancel,86,2016,August,34,18,2,8,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-05-24,Summer,2016-08-18T07:00Z +Cancel,80,2016,August,34,18,4,8,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,210.67,0,0,Canceled,2016-07-20,Summer,2016-08-18T07:00Z +Keep,360,2016,August,34,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-09-01,Summer,2016-08-18T07:00Z +Cancel,48,2016,August,34,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2016-07-05,Summer,2016-08-19T07:00Z +Cancel,159,2016,August,34,19,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2016-06-21,Summer,2016-08-19T07:00Z +Cancel,12,2016,August,34,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234,0,1,Canceled,2016-08-08,Summer,2016-08-19T07:00Z +Cancel,59,2016,August,34,19,1,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,0,0,Canceled,2016-07-04,Summer,2016-08-19T07:00Z +Keep,328,2016,August,34,19,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,120.1,0,0,Check-Out,2016-08-23,Summer,2016-08-19T07:00Z +Cancel,70,2016,August,34,19,2,3,1,3,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,200.7,0,0,Canceled,2016-06-17,Summer,2016-08-19T07:00Z +Cancel,13,2016,August,34,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,227,0,1,Canceled,2016-08-08,Summer,2016-08-19T07:00Z +Cancel,174,2016,August,34,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2016-08-05,Summer,2016-08-19T07:00Z +Cancel,104,2016,August,34,19,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,188.78,0,0,Canceled,2016-05-07,Summer,2016-08-19T07:00Z +Cancel,166,2016,August,34,19,2,7,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,203.89,0,0,Canceled,2016-05-25,Summer,2016-08-19T07:00Z +Keep,288,2016,August,34,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,117.19,0,0,Check-Out,2016-08-26,Summer,2016-08-19T07:00Z +Cancel,0,2016,August,34,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-08-20,Summer,2016-08-20T07:00Z +Cancel,26,2016,August,34,20,1,1,3,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,304,0,0,Canceled,2016-07-30,Summer,2016-08-20T07:00Z +Cancel,26,2016,August,34,20,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,286,0,0,Canceled,2016-08-01,Summer,2016-08-20T07:00Z +Cancel,151,2016,August,34,20,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,194.5,0,0,Canceled,2016-03-24,Summer,2016-08-20T07:00Z +Cancel,140,2016,August,34,20,2,2,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,329,0,0,Canceled,2016-07-12,Summer,2016-08-20T07:00Z +Cancel,86,2016,August,34,20,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-06-14,Summer,2016-08-20T07:00Z +Cancel,86,2016,August,34,20,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-06-14,Summer,2016-08-20T07:00Z +Cancel,86,2016,August,34,20,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-06-14,Summer,2016-08-20T07:00Z +Cancel,190,2016,August,34,20,2,3,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient,144,0,2,Canceled,2016-07-21,Summer,2016-08-20T07:00Z +Cancel,86,2016,August,34,20,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,211,0,0,Canceled,2016-06-22,Summer,2016-08-20T07:00Z +Cancel,32,2016,August,34,20,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,235.67,0,0,Canceled,2016-07-19,Summer,2016-08-20T07:00Z +Cancel,116,2016,August,34,20,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-07-14,Summer,2016-08-20T07:00Z +Cancel,100,2016,August,34,20,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,281,0,0,Canceled,2016-05-13,Summer,2016-08-20T07:00Z +Cancel,107,2016,August,34,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-06-15,Summer,2016-08-20T07:00Z +Cancel,227,2016,August,34,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2016-05-24,Summer,2016-08-20T07:00Z +Cancel,137,2016,August,34,20,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,189.42,0,0,Canceled,2016-04-06,Summer,2016-08-20T07:00Z +Cancel,185,2016,August,34,20,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,185,0,0,Canceled,2016-05-12,Summer,2016-08-20T07:00Z +Cancel,173,2016,August,34,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,0,Canceled,2016-05-18,Summer,2016-08-20T07:00Z +Cancel,131,2016,August,34,20,2,6,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,143.2,0,0,Canceled,2016-04-14,Summer,2016-08-20T07:00Z +Cancel,249,2016,August,34,20,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140.4,0,1,Canceled,2016-01-21,Summer,2016-08-20T07:00Z +Cancel,193,2016,August,34,20,4,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,122.4,0,0,Canceled,2016-07-22,Summer,2016-08-20T07:00Z +Cancel,100,2016,August,34,20,4,7,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,226.73,0,0,Canceled,2016-05-23,Summer,2016-08-20T07:00Z +Cancel,100,2016,August,34,20,4,7,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,251.73,0,0,Canceled,2016-05-23,Summer,2016-08-20T07:00Z +Cancel,218,2016,August,34,20,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,91.55,0,0,Canceled,2016-01-18,Summer,2016-08-20T07:00Z +Cancel,165,2016,August,35,21,2,0,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-03-16,Summer,2016-08-21T07:00Z +Cancel,55,2016,August,35,21,2,2,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,0,0,Canceled,2016-06-28,Summer,2016-08-21T07:00Z +Cancel,17,2016,August,35,21,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206.5,0,1,Canceled,2016-08-05,Summer,2016-08-21T07:00Z +Cancel,73,2016,August,35,21,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2016-08-08,Summer,2016-08-21T07:00Z +Cancel,200,2016,August,35,21,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,175,0,2,Canceled,2016-05-09,Summer,2016-08-21T07:00Z +Cancel,115,2016,August,35,21,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,184.8,0,0,Canceled,2016-05-13,Summer,2016-08-21T07:00Z +Cancel,115,2016,August,35,21,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,184.8,0,0,Canceled,2016-05-12,Summer,2016-08-21T07:00Z +Cancel,167,2016,August,35,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180.57,0,1,Canceled,2016-06-22,Summer,2016-08-21T07:00Z +Cancel,305,2016,August,35,21,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,161,0,1,No-Show,2016-08-21,Summer,2016-08-21T07:00Z +Cancel,67,2016,August,35,21,4,6,2,0,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,197.1,0,0,Canceled,2016-06-15,Summer,2016-08-21T07:00Z +Keep,367,2016,August,35,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Transient,70,0,1,Check-Out,2016-09-04,Summer,2016-08-21T07:00Z +Keep,367,2016,August,35,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,57.8,0,1,Check-Out,2016-09-04,Summer,2016-08-21T07:00Z +Cancel,6,2016,August,35,22,1,0,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,0,No-Show,2016-08-22,Summer,2016-08-22T07:00Z +Cancel,12,2016,August,35,22,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189,0,0,Canceled,2016-08-12,Summer,2016-08-22T07:00Z +Cancel,45,2016,August,35,22,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-04,Summer,2016-08-22T07:00Z +Cancel,45,2016,August,35,22,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2016-08-04,Summer,2016-08-22T07:00Z +Cancel,42,2016,August,35,22,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,249,0,0,Canceled,2016-07-20,Summer,2016-08-22T07:00Z +Cancel,12,2016,August,35,22,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2016-08-22,Summer,2016-08-22T07:00Z +Cancel,259,2016,August,35,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-08-04,Summer,2016-08-22T07:00Z +Cancel,18,2016,August,35,22,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,271,0,0,Canceled,2016-08-08,Summer,2016-08-22T07:00Z +Cancel,77,2016,August,35,22,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,202,0,0,Canceled,2016-07-13,Summer,2016-08-22T07:00Z +Cancel,14,2016,August,35,22,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,198,0,0,Canceled,2016-08-10,Summer,2016-08-22T07:00Z +Cancel,54,2016,August,35,22,1,4,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,322,0,1,Canceled,2016-08-11,Summer,2016-08-22T07:00Z +Cancel,223,2016,August,35,22,1,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Canceled,2016-08-01,Summer,2016-08-22T07:00Z +Cancel,306,2016,August,35,22,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2016-06-21,Summer,2016-08-22T07:00Z +Cancel,77,2016,August,35,22,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2016-08-07,Summer,2016-08-22T07:00Z +Cancel,60,2016,August,35,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,187,0,0,Canceled,2016-07-07,Summer,2016-08-22T07:00Z +Cancel,50,2016,August,35,22,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200.67,0,1,Canceled,2016-07-06,Summer,2016-08-22T07:00Z +Cancel,50,2016,August,35,22,3,6,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200.67,0,1,Canceled,2016-07-06,Summer,2016-08-22T07:00Z +Cancel,80,2016,August,35,22,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,A,0,No Deposit , 242, NULL,0,Transient,194,0,1,Canceled,2016-08-20,Summer,2016-08-22T07:00Z +Cancel,192,2016,August,35,22,3,6,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2016-08-10,Summer,2016-08-22T07:00Z +Cancel,353,2016,August,35,22,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2015-09-04,Summer,2016-08-22T07:00Z +Cancel,144,2016,August,35,22,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,200.57,0,0,Canceled,2016-05-03,Summer,2016-08-22T07:00Z +Cancel,210,2016,August,35,22,3,8,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.18,0,2,Canceled,2016-02-15,Summer,2016-08-22T07:00Z +Cancel,210,2016,August,35,22,3,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192.73,0,2,Canceled,2016-02-15,Summer,2016-08-22T07:00Z +Cancel,67,2016,August,35,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,168.63,0,0,Canceled,2016-06-18,Summer,2016-08-23T07:00Z +Cancel,80,2016,August,35,23,0,2,2,0,0,BB,URY,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-07-03,Summer,2016-08-23T07:00Z +Cancel,199,2016,August,35,23,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,131,0,0,Canceled,2016-02-11,Summer,2016-08-23T07:00Z +Cancel,59,2016,August,35,23,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-31,Summer,2016-08-23T07:00Z +Cancel,292,2016,August,35,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-06-25,Summer,2016-08-23T07:00Z +Cancel,299,2016,August,35,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,1,Canceled,2015-11-03,Summer,2016-08-23T07:00Z +Keep,292,2016,August,35,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,169.5,1,1,Check-Out,2016-08-27,Summer,2016-08-23T07:00Z +Cancel,41,2016,August,35,23,0,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,287,0,0,Canceled,2016-08-11,Summer,2016-08-23T07:00Z +Cancel,174,2016,August,35,23,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2016-03-03,Summer,2016-08-23T07:00Z +Cancel,92,2016,August,35,23,2,5,1,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,175.34,0,0,Canceled,2016-06-15,Summer,2016-08-23T07:00Z +Cancel,129,2016,August,35,23,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170.56,0,0,Canceled,2016-05-06,Summer,2016-08-23T07:00Z +Cancel,14,2016,August,35,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,239,0,1,Canceled,2016-08-12,Summer,2016-08-24T07:00Z +Keep,43,2016,August,35,24,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,F,3,No Deposit , 250, NULL,0,Transient,239.1,1,0,Check-Out,2016-08-27,Summer,2016-08-24T07:00Z +Cancel,47,2016,August,35,24,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-07-09,Summer,2016-08-24T07:00Z +Cancel,225,2016,August,35,24,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2016-01-18,Summer,2016-08-24T07:00Z +Cancel,54,2016,August,35,24,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,204,0,0,Canceled,2016-07-05,Summer,2016-08-24T07:00Z +Cancel,35,2016,August,35,24,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,160,0,0,Canceled,2016-07-21,Summer,2016-08-24T07:00Z +Cancel,62,2016,August,35,24,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-24,Summer,2016-08-24T07:00Z +Cancel,44,2016,August,35,24,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2016-08-20,Summer,2016-08-24T07:00Z +Cancel,137,2016,August,35,24,1,4,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,189.6,0,3,Canceled,2016-04-21,Summer,2016-08-24T07:00Z +Cancel,84,2016,August,35,24,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-06-29,Summer,2016-08-24T07:00Z +Cancel,15,2016,August,35,24,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,220.49,0,0,Canceled,2016-08-10,Summer,2016-08-24T07:00Z +Cancel,74,2016,August,35,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.43,0,0,Canceled,2016-07-19,Summer,2016-08-24T07:00Z +Cancel,90,2016,August,35,24,2,8,2,2,0,BB,DEU,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,195,0,0,Canceled,2016-06-09,Summer,2016-08-24T07:00Z +Cancel,0,2016,August,35,25,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-08-25,Summer,2016-08-25T07:00Z +Cancel,6,2016,August,35,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,269,0,0,Canceled,2016-08-25,Summer,2016-08-25T07:00Z +Cancel,6,2016,August,35,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,229,0,1,Canceled,2016-08-25,Summer,2016-08-25T07:00Z +Cancel,12,2016,August,35,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-08-13,Summer,2016-08-25T07:00Z +Cancel,31,2016,August,35,25,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,3,No Deposit , 250, NULL,0,Transient,197.1,0,1,Canceled,2016-08-17,Summer,2016-08-25T07:00Z +Cancel,0,2016,August,35,25,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,214.6,0,1,Canceled,2016-08-25,Summer,2016-08-25T07:00Z +Cancel,29,2016,August,35,25,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-07-29,Summer,2016-08-25T07:00Z +Cancel,31,2016,August,35,25,0,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2016-07-27,Summer,2016-08-25T07:00Z +Cancel,52,2016,August,35,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,157.08,0,0,Canceled,2016-07-08,Summer,2016-08-25T07:00Z +Cancel,92,2016,August,35,25,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-05-27,Summer,2016-08-25T07:00Z +Cancel,28,2016,August,35,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,226.5,0,2,Canceled,2016-08-09,Summer,2016-08-25T07:00Z +Cancel,44,2016,August,35,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,193.29,0,3,Canceled,2016-08-11,Summer,2016-08-25T07:00Z +Cancel,44,2016,August,35,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,193.29,0,3,Canceled,2016-08-11,Summer,2016-08-25T07:00Z +Cancel,80,2016,August,35,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2016-06-09,Summer,2016-08-26T07:00Z +Cancel,0,2016,August,35,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,179,0,0,Canceled,2016-08-26,Summer,2016-08-26T07:00Z +Cancel,234,2016,August,35,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,1,Canceled,2016-03-31,Summer,2016-08-26T07:00Z +Cancel,234,2016,August,35,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,1,Canceled,2016-03-31,Summer,2016-08-26T07:00Z +Cancel,57,2016,August,35,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-27,Summer,2016-08-26T07:00Z +Cancel,27,2016,August,35,26,0,2,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,179.2,0,0,Canceled,2016-08-09,Summer,2016-08-26T07:00Z +Cancel,12,2016,August,35,26,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,205.67,0,0,Canceled,2016-08-26,Summer,2016-08-26T07:00Z +Cancel,51,2016,August,35,26,1,2,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,265.67,0,0,Canceled,2016-07-07,Summer,2016-08-26T07:00Z +Cancel,77,2016,August,35,26,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182.33,0,0,Canceled,2016-06-22,Summer,2016-08-26T07:00Z +Cancel,161,2016,August,35,26,1,2,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178.67,0,0,Canceled,2016-03-20,Summer,2016-08-26T07:00Z +Cancel,121,2016,August,35,26,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,249.5,0,0,Canceled,2016-05-16,Summer,2016-08-26T07:00Z +Cancel,140,2016,August,35,26,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,204.5,0,0,Canceled,2016-05-16,Summer,2016-08-26T07:00Z +Cancel,73,2016,August,35,26,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2016-06-21,Summer,2016-08-26T07:00Z +Cancel,228,2016,August,35,26,2,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-04-18,Summer,2016-08-26T07:00Z +Cancel,145,2016,August,35,26,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,249.5,0,0,Canceled,2016-04-27,Summer,2016-08-26T07:00Z +Cancel,74,2016,August,35,26,2,3,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2016-06-14,Summer,2016-08-26T07:00Z +Cancel,95,2016,August,35,26,2,3,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,253,0,0,Canceled,2016-08-08,Summer,2016-08-26T07:00Z +Cancel,76,2016,August,35,26,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190.67,0,0,Canceled,2016-07-19,Summer,2016-08-26T07:00Z +Cancel,81,2016,August,35,26,2,5,2,0,0,HB,BLR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206.71,0,0,Canceled,2016-06-26,Summer,2016-08-26T07:00Z +Cancel,14,2016,August,35,26,2,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,209.86,0,1,Canceled,2016-08-18,Summer,2016-08-26T07:00Z +Cancel,102,2016,August,35,26,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,207.25,0,0,Canceled,2016-06-30,Summer,2016-08-26T07:00Z +Cancel,164,2016,August,35,26,2,6,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,232.25,0,0,Canceled,2016-03-22,Summer,2016-08-26T07:00Z +Keep,373,2016,August,35,26,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-09-05,Summer,2016-08-26T07:00Z +Cancel,81,2016,August,35,26,2,5,2,0,0,HB,BLR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206.71,0,0,Canceled,2016-06-26,Summer,2016-08-26T07:00Z +Cancel,185,2016,August,35,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,166.14,0,1,Canceled,2016-08-25,Summer,2016-08-26T07:00Z +Cancel,41,2016,August,35,27,2,1,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,322,0,0,Canceled,2016-07-17,Summer,2016-08-27T07:00Z +Cancel,73,2016,August,35,27,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-06-15,Summer,2016-08-27T07:00Z +Cancel,41,2016,August,35,27,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-07-17,Summer,2016-08-27T07:00Z +Cancel,42,2016,August,35,27,2,2,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,269,0,0,Canceled,2016-08-01,Summer,2016-08-27T07:00Z +Cancel,32,2016,August,35,27,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,209,0,1,Canceled,2016-08-18,Summer,2016-08-27T07:00Z +Cancel,178,2016,August,35,27,2,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,209.5,0,0,Canceled,2016-05-11,Summer,2016-08-27T07:00Z +Cancel,219,2016,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,91.55,0,1,Canceled,2016-02-09,Summer,2016-08-27T07:00Z +Cancel,225,2016,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,82.29,0,0,Canceled,2016-01-19,Summer,2016-08-27T07:00Z +Cancel,90,2016,August,35,27,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.43,0,0,Canceled,2016-06-06,Summer,2016-08-27T07:00Z +Cancel,225,2016,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114.29,0,1,Canceled,2016-01-16,Summer,2016-08-27T07:00Z +Cancel,219,2016,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,91.55,0,1,Canceled,2016-02-09,Summer,2016-08-27T07:00Z +Cancel,213,2016,August,35,27,2,5,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,178.28,0,1,Canceled,2016-03-04,Summer,2016-08-27T07:00Z +Cancel,94,2016,August,35,27,2,6,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient,128,0,0,Canceled,2016-08-16,Summer,2016-08-27T07:00Z +Cancel,206,2016,August,35,27,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,99.63,0,1,Canceled,2016-08-24,Summer,2016-08-27T07:00Z +Cancel,172,2016,August,35,27,2,6,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,234,0,0,Canceled,2016-04-02,Summer,2016-08-27T07:00Z +Cancel,206,2016,August,35,27,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,99.63,0,1,Canceled,2016-08-24,Summer,2016-08-27T07:00Z +Cancel,40,2016,August,35,27,2,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,202.13,0,2,Canceled,2016-08-24,Summer,2016-08-27T07:00Z +Cancel,219,2016,August,35,27,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2016-07-11,Summer,2016-08-27T07:00Z +Keep,374,2016,August,35,27,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-09-10,Summer,2016-08-27T07:00Z +Cancel,226,2016,August,36,28,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,102,0,1,Canceled,2016-03-18,Summer,2016-08-28T07:00Z +Cancel,26,2016,August,36,28,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,1,Canceled,2016-08-11,Summer,2016-08-28T07:00Z +Cancel,8,2016,August,36,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-08-21,Summer,2016-08-28T07:00Z +Cancel,115,2016,August,36,28,2,1,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,194,0,0,Canceled,2016-05-20,Summer,2016-08-28T07:00Z +Cancel,139,2016,August,36,28,2,1,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-06-03,Summer,2016-08-28T07:00Z +Cancel,128,2016,August,36,28,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2016-04-22,Summer,2016-08-28T07:00Z +Cancel,115,2016,August,36,28,2,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,243.8,0,0,Canceled,2016-05-09,Summer,2016-08-28T07:00Z +Cancel,21,2016,August,36,28,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,213.8,0,1,Canceled,2016-08-08,Summer,2016-08-28T07:00Z +Cancel,23,2016,August,36,28,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.8,0,1,Canceled,2016-08-08,Summer,2016-08-28T07:00Z +Cancel,48,2016,August,36,28,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Canceled,2016-08-05,Summer,2016-08-28T07:00Z +Cancel,123,2016,August,36,28,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,189.8,0,0,Canceled,2016-07-23,Summer,2016-08-28T07:00Z +Cancel,208,2016,August,36,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,122.86,0,1,Canceled,2016-08-16,Summer,2016-08-28T07:00Z +Cancel,333,2016,August,36,28,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.5,0,0,Canceled,2016-05-16,Summer,2016-08-28T07:00Z +Cancel,328,2016,August,36,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2015-10-06,Summer,2016-08-28T07:00Z +Cancel,333,2016,August,36,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.79,0,1,Canceled,2016-05-16,Summer,2016-08-28T07:00Z +Cancel,333,2016,August,36,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.79,0,2,Canceled,2016-05-16,Summer,2016-08-28T07:00Z +Cancel,0,2016,August,36,29,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Canceled,2016-08-29,Summer,2016-08-29T07:00Z +Cancel,116,2016,August,36,29,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,204.75,0,0,Canceled,2016-06-09,Summer,2016-08-29T07:00Z +Cancel,168,2016,August,36,29,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,241.75,0,0,Canceled,2016-04-22,Summer,2016-08-29T07:00Z +Cancel,124,2016,August,36,29,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,188.5,0,0,Canceled,2016-07-23,Summer,2016-08-29T07:00Z +Cancel,84,2016,August,36,29,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.5,0,0,Canceled,2016-06-15,Summer,2016-08-29T07:00Z +Cancel,95,2016,August,36,29,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,0,Canceled,2016-05-28,Summer,2016-08-29T07:00Z +Cancel,246,2016,August,36,29,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97.2,0,0,Canceled,2016-07-29,Summer,2016-08-29T07:00Z +Cancel,145,2016,August,36,29,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,163.6,0,0,Canceled,2016-04-06,Summer,2016-08-29T07:00Z +Cancel,25,2016,August,36,29,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,2,Canceled,2016-08-05,Summer,2016-08-29T07:00Z +Cancel,236,2016,August,36,29,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-06-16,Summer,2016-08-29T07:00Z +Cancel,45,2016,August,36,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 11, NULL,0,Transient,128,0,0,Canceled,2016-08-18,Summer,2016-08-29T07:00Z +Keep,222,2016,August,36,29,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,109.3,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Cancel,109,2016,August,36,29,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,196.71,0,0,Canceled,2016-07-23,Summer,2016-08-29T07:00Z +Cancel,160,2016,August,36,29,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,197.14,0,0,Canceled,2016-03-24,Summer,2016-08-29T07:00Z +Cancel,52,2016,August,36,29,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,247.57,0,0,Canceled,2016-07-08,Summer,2016-08-29T07:00Z +Cancel,196,2016,August,36,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,121.47,0,1,Canceled,2016-08-17,Summer,2016-08-29T07:00Z +Cancel,294,2016,August,36,29,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,142.1,0,0,No-Show,2016-08-29,Summer,2016-08-29T07:00Z +Keep,314,2016,August,36,29,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,68.61,0,0,Check-Out,2016-09-09,Summer,2016-08-29T07:00Z +Keep,406,2016,August,36,29,3,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,55.68,0,1,Check-Out,2016-09-10,Summer,2016-08-29T07:00Z +Keep,406,2016,August,36,29,3,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.88,1,0,Check-Out,2016-09-10,Summer,2016-08-29T07:00Z +Keep,406,2016,August,36,29,3,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,82.88,0,0,Check-Out,2016-09-10,Summer,2016-08-29T07:00Z +Cancel,406,2016,August,36,29,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,88.4,0,1,Canceled,2015-07-20,Summer,2016-08-29T07:00Z +Cancel,406,2016,August,36,29,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,88.4,0,1,Canceled,2015-07-20,Summer,2016-08-29T07:00Z +Cancel,23,2016,August,36,29,3,5,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.38,0,1,Canceled,2016-08-26,Summer,2016-08-29T07:00Z +Cancel,0,2016,August,36,30,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-08-30,Summer,2016-08-30T07:00Z +Cancel,14,2016,August,36,30,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,221,0,1,Canceled,2016-08-19,Summer,2016-08-30T07:00Z +Cancel,117,2016,August,36,30,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,246.67,0,1,Canceled,2016-05-10,Summer,2016-08-30T07:00Z +Cancel,112,2016,August,36,30,0,3,2,2,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,246.67,0,0,Canceled,2016-08-23,Summer,2016-08-30T07:00Z +Cancel,127,2016,August,36,30,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.5,0,0,Canceled,2016-07-27,Summer,2016-08-30T07:00Z +Cancel,38,2016,August,36,30,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,231.8,0,1,Canceled,2016-08-05,Summer,2016-08-30T07:00Z +Cancel,76,2016,August,36,30,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,191.5,0,0,Canceled,2016-06-21,Summer,2016-08-30T07:00Z +Cancel,38,2016,August,36,30,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,231.8,0,1,Canceled,2016-08-04,Summer,2016-08-30T07:00Z +Cancel,39,2016,August,36,30,0,5,2,0,0,HB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,159,0,5,Canceled,2016-07-22,Summer,2016-08-30T07:00Z +Cancel,269,2016,August,36,30,0,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,201.8,0,1,Canceled,2016-07-29,Summer,2016-08-30T07:00Z +Cancel,187,2016,August,36,30,1,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149.33,0,2,Canceled,2016-04-08,Summer,2016-08-30T07:00Z +Cancel,88,2016,August,36,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,223.29,0,0,Canceled,2016-06-15,Summer,2016-08-30T07:00Z +Cancel,230,2016,August,36,30,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,145.8,0,0,Canceled,2016-03-08,Summer,2016-08-30T07:00Z +Keep,223,2016,August,36,30,2,8,2,0,0,SC,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,I,0,No Deposit , 40, NULL,0,Contract,0,0,0,Check-Out,2016-08-30,Summer,2016-08-30T07:00Z +Keep,400,2016,August,36,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.68,0,0,Check-Out,2016-09-09,Summer,2016-08-30T07:00Z +Keep,326,2016,August,36,30,2,8,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,71.4,0,0,Check-Out,2016-09-09,Summer,2016-08-30T07:00Z +Keep,340,2016,August,36,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,57.8,0,0,Check-Out,2016-09-09,Summer,2016-08-30T07:00Z +Keep,315,2016,August,36,30,4,10,2,0,0,HB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,81.9,0,0,Check-Out,2016-09-13,Summer,2016-08-30T07:00Z +Cancel,1,2016,August,36,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,125,0,0,Canceled,2016-08-31,Summer,2016-08-31T07:00Z +Cancel,83,2016,August,36,31,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,0,0,Canceled,2016-06-15,Summer,2016-08-31T07:00Z +Cancel,127,2016,August,36,31,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,2,No Deposit , 5, NULL,0,Transient,154.4,0,0,Canceled,2016-08-05,Summer,2016-08-31T07:00Z +Cancel,239,2016,August,36,31,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,82.88,0,0,Canceled,2016-06-15,Summer,2016-08-31T07:00Z +Cancel,34,2016,August,36,31,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,170,0,1,Canceled,2016-08-22,Summer,2016-08-31T07:00Z +Cancel,232,2016,August,36,31,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111.94,0,0,Canceled,2016-06-13,Summer,2016-08-31T07:00Z +Cancel,162,2016,August,36,31,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141.33,0,0,Canceled,2016-07-21,Summer,2016-08-31T07:00Z +Keep,194,2016,August,36,31,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 75, NULL,0,Transient,86.46,0,0,Check-Out,2016-08-31,Summer,2016-08-31T07:00Z +Keep,327,2016,August,36,31,4,10,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,117.48,0,2,Check-Out,2016-09-14,Summer,2016-08-31T07:00Z +Cancel,346,2016,September,36,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2015-10-21,Fall,2016-09-01T07:00Z +Cancel,43,2016,September,36,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,1,Canceled,2016-07-26,Fall,2016-09-01T07:00Z +Cancel,346,2016,September,36,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2015-10-21,Fall,2016-09-01T07:00Z +Cancel,346,2016,September,36,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,2,Canceled,2015-10-21,Fall,2016-09-01T07:00Z +Cancel,22,2016,September,36,1,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,189,0,2,Canceled,2016-09-01,Fall,2016-09-01T07:00Z +Cancel,41,2016,September,36,1,1,3,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,234,0,3,Canceled,2016-08-17,Fall,2016-09-01T07:00Z +Cancel,239,2016,September,36,1,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-02-03,Fall,2016-09-01T07:00Z +Keep,223,2016,September,36,1,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,I,2,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2016-09-01,Fall,2016-09-01T07:00Z +Cancel,144,2016,September,36,1,2,4,2,0,1,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,151,0,1,Canceled,2016-06-27,Fall,2016-09-01T07:00Z +Cancel,249,2016,September,36,1,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-07-12,Fall,2016-09-01T07:00Z +Cancel,226,2016,September,36,1,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,157,0,0,Canceled,2016-08-22,Fall,2016-09-01T07:00Z +Cancel,218,2016,September,36,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2016-03-03,Fall,2016-09-01T07:00Z +Cancel,169,2016,September,36,1,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 3, NULL,0,Transient,139.5,0,0,Canceled,2016-07-22,Fall,2016-09-01T07:00Z +Cancel,148,2016,September,36,1,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,179,0,0,Canceled,2016-04-13,Fall,2016-09-01T07:00Z +Cancel,226,2016,September,36,1,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-04-05,Fall,2016-09-01T07:00Z +Cancel,143,2016,September,36,1,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,1,Canceled,2016-06-01,Fall,2016-09-01T07:00Z +Cancel,158,2016,September,36,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2016-08-19,Fall,2016-09-01T07:00Z +Cancel,345,2016,September,36,1,2,7,2,0,2,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2016-02-23,Fall,2016-09-01T07:00Z +Cancel,303,2016,September,36,1,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-02-27,Fall,2016-09-01T07:00Z +Keep,379,2016,September,36,1,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.8,0,0,Check-Out,2016-09-12,Fall,2016-09-01T07:00Z +Cancel,282,2016,September,36,1,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-02-04,Fall,2016-09-01T07:00Z +Keep,303,2016,September,36,1,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,90.06,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Cancel,223,2016,September,36,1,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.1,0,2,Canceled,2016-05-06,Fall,2016-09-01T07:00Z +Cancel,223,2016,September,36,1,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.1,0,2,Canceled,2016-05-06,Fall,2016-09-01T07:00Z +Cancel,223,2016,September,36,1,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,0,Canceled,2016-02-18,Fall,2016-09-01T07:00Z +Keep,399,2016,September,36,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 40, NULL,0,Transient,57.54,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Cancel,282,2016,September,36,1,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-02-04,Fall,2016-09-01T07:00Z +Keep,332,2016,September,36,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,70,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Cancel,52,2016,September,36,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,189,0,2,Canceled,2016-07-26,Fall,2016-09-02T07:00Z +Cancel,138,2016,September,36,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,179,0,2,Canceled,2016-08-21,Fall,2016-09-02T07:00Z +Cancel,19,2016,September,36,2,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,227.1,0,0,Canceled,2016-08-29,Fall,2016-09-02T07:00Z +Cancel,73,2016,September,36,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-06-26,Fall,2016-09-02T07:00Z +Cancel,103,2016,September,36,2,0,2,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-07-24,Fall,2016-09-02T07:00Z +Cancel,65,2016,September,36,2,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186,0,0,Canceled,2016-07-08,Fall,2016-09-02T07:00Z +Cancel,138,2016,September,36,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,179,0,2,Canceled,2016-08-21,Fall,2016-09-02T07:00Z +Cancel,30,2016,September,36,2,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,0,1,Canceled,2016-08-14,Fall,2016-09-02T07:00Z +Cancel,121,2016,September,36,2,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-05-05,Fall,2016-09-02T07:00Z +Cancel,121,2016,September,36,2,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-05-05,Fall,2016-09-02T07:00Z +Cancel,36,2016,September,36,2,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,1,Canceled,2016-07-29,Fall,2016-09-02T07:00Z +Cancel,121,2016,September,36,2,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-05-04,Fall,2016-09-02T07:00Z +Cancel,241,2016,September,36,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2016-01-14,Fall,2016-09-02T07:00Z +Cancel,205,2016,September,36,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161,0,1,Canceled,2016-02-15,Fall,2016-09-02T07:00Z +Cancel,156,2016,September,36,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,98,0,0,Canceled,2016-06-30,Fall,2016-09-02T07:00Z +Keep,316,2016,September,36,2,2,5,2,0,0,BB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,88.2,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,265,2016,September,36,2,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 171, NULL,0,Transient,100,0,0,Check-Out,2016-09-02,Fall,2016-09-02T07:00Z +Keep,315,2016,September,36,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,64.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Cancel,315,2016,September,36,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,86.4,0,0,Canceled,2015-10-29,Fall,2016-09-02T07:00Z +Keep,346,2016,September,36,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,315,2016,September,36,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,86.4,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,322,2016,September,36,2,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,90.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,265,2016,September,36,2,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,101.43,0,0,Check-Out,2016-09-02,Fall,2016-09-02T07:00Z +Cancel,156,2016,September,36,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,98,0,0,Canceled,2016-06-30,Fall,2016-09-02T07:00Z +Cancel,241,2016,September,36,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-01-14,Fall,2016-09-02T07:00Z +Keep,265,2016,September,36,2,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 171, NULL,0,Transient,100,0,0,Check-Out,2016-09-02,Fall,2016-09-02T07:00Z +Cancel,241,2016,September,36,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2016-01-14,Fall,2016-09-02T07:00Z +Cancel,315,2016,September,36,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,64.8,0,0,Canceled,2015-10-29,Fall,2016-09-02T07:00Z +Keep,361,2016,September,36,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Cancel,60,2016,September,36,3,1,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,204,0,0,Canceled,2016-07-05,Fall,2016-09-03T07:00Z +Cancel,20,2016,September,36,3,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,179.1,0,0,Canceled,2016-08-25,Fall,2016-09-03T07:00Z +Cancel,262,2016,September,36,3,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2015-12-31,Fall,2016-09-03T07:00Z +Cancel,262,2016,September,36,3,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2015-12-31,Fall,2016-09-03T07:00Z +Cancel,309,2016,September,36,3,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,65.61,0,0,Canceled,2016-08-11,Fall,2016-09-03T07:00Z +Cancel,233,2016,September,36,3,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,66.6,0,1,Canceled,2016-08-12,Fall,2016-09-03T07:00Z +Cancel,60,2016,September,36,3,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,156.54,0,0,Canceled,2016-07-10,Fall,2016-09-03T07:00Z +Keep,341,2016,September,36,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,2,No Deposit , 40, NULL,0,Contract,87.8,0,1,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Cancel,235,2016,September,36,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,1,Canceled,2016-01-23,Fall,2016-09-03T07:00Z +Keep,304,2016,September,36,3,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-09-12,Fall,2016-09-03T07:00Z +Cancel,83,2016,September,37,4,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2016-06-13,Fall,2016-09-04T07:00Z +Cancel,60,2016,September,37,4,2,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-07-07,Fall,2016-09-04T07:00Z +Cancel,170,2016,September,37,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,101.68,0,0,Canceled,2016-03-30,Fall,2016-09-04T07:00Z +Cancel,170,2016,September,37,4,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,107.2,0,0,Canceled,2016-08-24,Fall,2016-09-04T07:00Z +Cancel,237,2016,September,37,4,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,89.3,0,0,Canceled,2016-08-25,Fall,2016-09-04T07:00Z +Cancel,19,2016,September,37,4,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,175.5,0,1,No-Show,2016-09-04,Fall,2016-09-04T07:00Z +Keep,330,2016,September,37,4,2,4,2,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,95.16,0,2,Check-Out,2016-09-10,Fall,2016-09-04T07:00Z +Cancel,226,2016,September,37,4,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,52.7,0,1,Canceled,2016-05-12,Fall,2016-09-04T07:00Z +Cancel,164,2016,September,37,4,2,5,2,2,0,FB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,240.6,0,0,Canceled,2016-08-11,Fall,2016-09-04T07:00Z +Cancel,230,2016,September,37,4,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2016-01-20,Fall,2016-09-04T07:00Z +Cancel,171,2016,September,37,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2016-06-10,Fall,2016-09-04T07:00Z +Cancel,283,2016,September,37,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,64.8,0,0,Canceled,2016-08-17,Fall,2016-09-04T07:00Z +Cancel,78,2016,September,37,4,3,5,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,252,0,0,Canceled,2016-06-19,Fall,2016-09-04T07:00Z +Keep,347,2016,September,37,4,4,6,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,54.5,0,1,Check-Out,2016-09-14,Fall,2016-09-04T07:00Z +Keep,373,2016,September,37,4,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,105.02,0,0,Check-Out,2016-09-14,Fall,2016-09-04T07:00Z +Cancel,361,2016,September,37,4,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,108.91,0,0,Canceled,2016-09-02,Fall,2016-09-04T07:00Z +Cancel,347,2016,September,37,4,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,83.3,0,1,Canceled,2016-08-27,Fall,2016-09-04T07:00Z +Cancel,46,2016,September,37,5,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2016-08-02,Fall,2016-09-05T07:00Z +Cancel,116,2016,September,37,5,1,0,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2016-05-29,Fall,2016-09-05T07:00Z +Cancel,10,2016,September,37,5,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,197.1,0,0,Canceled,2016-08-26,Fall,2016-09-05T07:00Z +Keep,320,2016,September,37,5,1,2,4,0,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,161.75,0,0,Check-Out,2016-09-08,Fall,2016-09-05T07:00Z +Cancel,77,2016,September,37,5,1,2,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,264,0,0,Canceled,2016-08-08,Fall,2016-09-05T07:00Z +Cancel,223,2016,September,37,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2016-01-28,Fall,2016-09-05T07:00Z +Cancel,183,2016,September,37,5,1,5,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,0,Canceled,2016-03-06,Fall,2016-09-05T07:00Z +Cancel,188,2016,September,37,5,1,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,150.6,0,0,Canceled,2016-03-05,Fall,2016-09-05T07:00Z +Cancel,183,2016,September,37,5,1,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-03-06,Fall,2016-09-05T07:00Z +Cancel,183,2016,September,37,5,1,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-06-27,Fall,2016-09-05T07:00Z +Keep,304,2016,September,37,5,3,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2016-09-13,Fall,2016-09-05T07:00Z +Cancel,364,2016,September,37,5,3,7,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 40, NULL,0,Contract,94,0,0,Canceled,2016-08-26,Fall,2016-09-05T07:00Z +Cancel,203,2016,September,37,5,3,7,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,118,0,0,Canceled,2016-08-26,Fall,2016-09-05T07:00Z +Keep,338,2016,September,37,5,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,96,0,0,Check-Out,2016-09-15,Fall,2016-09-05T07:00Z +Cancel,235,2016,September,37,5,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-02-12,Fall,2016-09-05T07:00Z +Keep,301,2016,September,37,5,4,10,2,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 315, NULL,0,Transient,130.5,0,0,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Keep,301,2016,September,37,5,4,10,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,77.85,0,0,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Cancel,168,2016,September,37,6,0,1,2,0,0,BB,JEY,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2016-07-16,Fall,2016-09-06T07:00Z +Cancel,217,2016,September,37,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2016-02-04,Fall,2016-09-06T07:00Z +Cancel,144,2016,September,37,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2016-04-24,Fall,2016-09-06T07:00Z +Cancel,242,2016,September,37,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-03-22,Fall,2016-09-06T07:00Z +Keep,354,2016,September,37,6,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,142.55,1,1,Check-Out,2016-09-14,Fall,2016-09-06T07:00Z +Keep,305,2016,September,37,6,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Transient,62.9,0,0,Check-Out,2016-09-16,Fall,2016-09-06T07:00Z +Cancel,235,2016,September,37,6,2,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99.17,0,1,Canceled,2016-01-29,Fall,2016-09-06T07:00Z +Cancel,12,2016,September,37,7,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,149.1,0,0,Canceled,2016-08-26,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,1,2016,September,37,7,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-09-07,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,1,2016,September,37,7,0,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2016-09-07,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,211,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,238,2016,September,37,7,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 1, NULL,0,Transient,89,0,0,Canceled,2016-02-09,Fall,2016-09-07T07:00Z +Cancel,130,2016,September,37,7,2,4,1,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-07-26,Fall,2016-09-07T07:00Z +Keep,348,2016,September,37,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 40, NULL,0,Transient,87.8,0,0,Check-Out,2016-09-14,Fall,2016-09-07T07:00Z +Cancel,29,2016,September,37,7,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient,159,0,2,Canceled,2016-09-05,Fall,2016-09-07T07:00Z +Cancel,314,2016,September,37,7,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-03-08,Fall,2016-09-07T07:00Z +Cancel,208,2016,September,37,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2016-03-07,Fall,2016-09-07T07:00Z +Keep,385,2016,September,37,7,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,78.36,0,0,Check-Out,2016-09-21,Fall,2016-09-07T07:00Z +Keep,355,2016,September,37,7,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,92.9,0,0,Check-Out,2016-09-21,Fall,2016-09-07T07:00Z +Cancel,27,2016,September,37,8,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,88.29,0,1,Canceled,2016-08-16,Fall,2016-09-08T07:00Z +Cancel,13,2016,September,37,8,0,3,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,161,0,0,Canceled,2016-08-29,Fall,2016-09-08T07:00Z +Cancel,145,2016,September,37,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2016-09-06,Fall,2016-09-08T07:00Z +Cancel,116,2016,September,37,8,0,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,216,0,0,Canceled,2016-05-16,Fall,2016-09-08T07:00Z +Cancel,50,2016,September,37,8,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219,0,1,Canceled,2016-07-20,Fall,2016-09-08T07:00Z +Cancel,50,2016,September,37,8,0,3,4,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,254,0,0,Canceled,2016-08-27,Fall,2016-09-08T07:00Z +Cancel,218,2016,September,37,8,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2016-08-23,Fall,2016-09-08T07:00Z +Cancel,293,2016,September,37,8,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-07-21,Fall,2016-09-08T07:00Z +Cancel,244,2016,September,37,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-07-04,Fall,2016-09-08T07:00Z +Keep,363,2016,September,37,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,112.48,1,0,Check-Out,2016-09-15,Fall,2016-09-08T07:00Z +Cancel,360,2016,September,37,8,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,2,Canceled,2015-11-24,Fall,2016-09-08T07:00Z +Cancel,241,2016,September,37,8,2,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-02-09,Fall,2016-09-08T07:00Z +Keep,358,2016,September,37,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,53.85,0,1,Check-Out,2016-09-22,Fall,2016-09-08T07:00Z +Cancel,311,2016,September,37,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,85.11,0,0,Canceled,2015-11-03,Fall,2016-09-08T07:00Z +Cancel,3,2016,September,37,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Canceled,2016-09-06,Fall,2016-09-09T07:00Z +Cancel,10,2016,September,37,9,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Canceled,2016-08-30,Fall,2016-09-09T07:00Z +Cancel,43,2016,September,37,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-08-04,Fall,2016-09-09T07:00Z +Keep,233,2016,September,37,9,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 315, NULL,0,Transient,0,0,0,Check-Out,2016-09-09,Fall,2016-09-09T07:00Z +Cancel,0,2016,September,37,9,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-09-09,Fall,2016-09-09T07:00Z +Cancel,43,2016,September,37,9,0,2,1,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2016-08-02,Fall,2016-09-09T07:00Z +Cancel,234,2016,September,37,9,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,58.32,0,1,Canceled,2016-07-20,Fall,2016-09-09T07:00Z +Cancel,80,2016,September,37,9,2,3,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,196,0,0,Canceled,2016-07-07,Fall,2016-09-09T07:00Z +Cancel,18,2016,September,37,9,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,179,0,0,Canceled,2016-08-31,Fall,2016-09-09T07:00Z +Cancel,38,2016,September,37,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.67,0,2,Canceled,2016-08-25,Fall,2016-09-09T07:00Z +Keep,333,2016,September,37,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,51.85,0,0,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Cancel,163,2016,September,37,9,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,98,0,0,Canceled,2016-06-07,Fall,2016-09-09T07:00Z +Cancel,219,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,115,0,1,Canceled,2016-08-17,Fall,2016-09-10T07:00Z +Cancel,219,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,115,0,1,Canceled,2016-08-17,Fall,2016-09-10T07:00Z +Cancel,219,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,115,0,1,Canceled,2016-08-17,Fall,2016-09-10T07:00Z +Cancel,219,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,115,0,1,Canceled,2016-08-17,Fall,2016-09-10T07:00Z +Cancel,129,2016,September,37,10,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,133.2,0,0,Canceled,2016-07-20,Fall,2016-09-10T07:00Z +Cancel,228,2016,September,37,10,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,61.2,0,0,Canceled,2016-02-01,Fall,2016-09-10T07:00Z +Cancel,57,2016,September,37,10,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133,0,0,Canceled,2016-07-19,Fall,2016-09-10T07:00Z +Cancel,57,2016,September,37,10,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133,0,0,Canceled,2016-07-19,Fall,2016-09-10T07:00Z +Keep,311,2016,September,37,10,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,73.95,0,0,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,338,2016,September,37,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,75.95,0,2,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Cancel,214,2016,September,37,10,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,85.62,0,0,Canceled,2016-07-20,Fall,2016-09-10T07:00Z +Cancel,118,2016,September,37,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130.43,0,0,Canceled,2016-06-19,Fall,2016-09-10T07:00Z +Keep,305,2016,September,37,10,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,74.72,0,0,Check-Out,2016-09-20,Fall,2016-09-10T07:00Z +Cancel,247,2016,September,37,10,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,90.1,0,0,Canceled,2016-06-28,Fall,2016-09-10T07:00Z +Cancel,33,2016,September,38,11,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,143.1,0,0,Canceled,2016-09-03,Fall,2016-09-11T07:00Z +Keep,311,2016,September,38,11,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,120,1,0,Check-Out,2016-09-12,Fall,2016-09-11T07:00Z +Cancel,125,2016,September,38,11,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,181,0,0,Canceled,2016-08-09,Fall,2016-09-11T07:00Z +Cancel,88,2016,September,38,11,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,148.4,0,0,Canceled,2016-06-17,Fall,2016-09-11T07:00Z +Cancel,75,2016,September,38,11,2,1,2,0,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,117.73,0,0,Canceled,2016-06-30,Fall,2016-09-11T07:00Z +Cancel,75,2016,September,38,11,2,1,2,0,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,117.73,0,0,Canceled,2016-06-30,Fall,2016-09-11T07:00Z +Cancel,17,2016,September,38,11,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,171,0,2,Canceled,2016-09-02,Fall,2016-09-11T07:00Z +Cancel,47,2016,September,38,11,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146.78,0,2,Canceled,2016-08-19,Fall,2016-09-11T07:00Z +Cancel,75,2016,September,38,11,2,1,2,1,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,190.67,0,0,Canceled,2016-06-30,Fall,2016-09-11T07:00Z +Cancel,53,2016,September,38,11,2,2,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,159.75,0,1,Canceled,2016-07-22,Fall,2016-09-11T07:00Z +Cancel,60,2016,September,38,11,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.75,0,1,Canceled,2016-08-23,Fall,2016-09-11T07:00Z +Cancel,34,2016,September,38,11,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,129,0,2,Canceled,2016-09-01,Fall,2016-09-11T07:00Z +Cancel,195,2016,September,38,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,119,0,1,Canceled,2016-03-07,Fall,2016-09-11T07:00Z +Cancel,111,2016,September,38,11,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-06-12,Fall,2016-09-11T07:00Z +Cancel,91,2016,September,38,11,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-07-04,Fall,2016-09-11T07:00Z +Cancel,19,2016,September,38,11,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,189,0,2,Canceled,2016-08-31,Fall,2016-09-11T07:00Z +Cancel,69,2016,September,38,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,102.25,0,0,Canceled,2016-07-04,Fall,2016-09-11T07:00Z +Cancel,55,2016,September,38,11,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,114.9,0,0,Canceled,2016-07-22,Fall,2016-09-11T07:00Z +Cancel,26,2016,September,38,11,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,169,0,0,Canceled,2016-08-26,Fall,2016-09-11T07:00Z +Cancel,47,2016,September,38,11,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,158.78,0,2,Canceled,2016-08-19,Fall,2016-09-11T07:00Z +Cancel,69,2016,September,38,11,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,119.65,0,0,Canceled,2016-07-25,Fall,2016-09-11T07:00Z +Cancel,65,2016,September,38,11,2,3,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,195,0,0,Canceled,2016-07-16,Fall,2016-09-11T07:00Z +Cancel,83,2016,September,38,11,2,4,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,2,Canceled,2016-08-30,Fall,2016-09-11T07:00Z +Cancel,247,2016,September,38,11,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,143.33,0,0,Canceled,2016-07-18,Fall,2016-09-11T07:00Z +Cancel,118,2016,September,38,11,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Canceled,2016-06-20,Fall,2016-09-11T07:00Z +Cancel,244,2016,September,38,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.71,0,0,Canceled,2016-01-19,Fall,2016-09-11T07:00Z +Cancel,19,2016,September,38,12,1,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,246,0,1,Canceled,2016-08-29,Fall,2016-09-12T07:00Z +Cancel,333,2016,September,38,12,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,130.5,0,1,Canceled,2016-07-14,Fall,2016-09-12T07:00Z +Cancel,332,2016,September,38,12,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,117,0,0,Canceled,2016-04-29,Fall,2016-09-12T07:00Z +Cancel,24,2016,September,38,12,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,173,0,1,Canceled,2016-08-22,Fall,2016-09-12T07:00Z +Cancel,69,2016,September,38,12,1,2,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2016-08-21,Fall,2016-09-12T07:00Z +Cancel,174,2016,September,38,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,64.8,0,0,No-Show,2016-09-12,Fall,2016-09-12T07:00Z +Cancel,296,2016,September,38,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,85.11,0,0,Canceled,2016-09-05,Fall,2016-09-12T07:00Z +Cancel,175,2016,September,38,12,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,148.29,0,0,Canceled,2016-03-22,Fall,2016-09-12T07:00Z +Cancel,271,2016,September,38,12,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.3,0,1,Canceled,2016-03-12,Fall,2016-09-12T07:00Z +Keep,422,2016,September,38,12,3,7,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 2, NULL,0,Contract,62.9,0,2,Check-Out,2016-09-22,Fall,2016-09-12T07:00Z +Cancel,272,2016,September,38,12,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,102.6,0,1,Canceled,2016-03-12,Fall,2016-09-12T07:00Z +Keep,390,2016,September,38,12,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,53.85,0,0,Check-Out,2016-09-22,Fall,2016-09-12T07:00Z +Cancel,257,2016,September,38,12,1,4,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143,0,1,Canceled,2016-09-01,Fall,2016-09-12T07:00Z +Keep,236,2016,September,38,12,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,76.5,0,0,Check-Out,2016-09-19,Fall,2016-09-12T07:00Z +Keep,390,2016,September,38,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,53.85,0,0,Check-Out,2016-09-26,Fall,2016-09-12T07:00Z +Cancel,245,2016,September,38,12,5,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.4,0,0,Canceled,2016-03-14,Fall,2016-09-12T07:00Z +Cancel,236,2016,September,38,12,5,10,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,137.67,0,1,Canceled,2016-03-14,Fall,2016-09-12T07:00Z +Cancel,15,2016,September,38,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2016-09-01,Fall,2016-09-13T07:00Z +Cancel,15,2016,September,38,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2016-09-01,Fall,2016-09-13T07:00Z +Cancel,193,2016,September,38,13,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149,0,0,Canceled,2016-05-29,Fall,2016-09-13T07:00Z +Cancel,251,2016,September,38,13,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.4,0,3,Canceled,2016-02-04,Fall,2016-09-13T07:00Z +Keep,334,2016,September,38,13,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,69.43,0,0,Check-Out,2016-09-20,Fall,2016-09-13T07:00Z +Cancel,239,2016,September,38,13,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,98,0,1,Canceled,2016-09-05,Fall,2016-09-13T07:00Z +Keep,356,2016,September,38,13,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,90.9,0,0,Check-Out,2016-09-23,Fall,2016-09-13T07:00Z +Cancel,0,2016,September,38,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-09-14,Fall,2016-09-14T07:00Z +Cancel,0,2016,September,38,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-09-14,Fall,2016-09-14T07:00Z +Cancel,0,2016,September,38,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-09-14,Fall,2016-09-14T07:00Z +Cancel,36,2016,September,38,14,0,2,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,194,0,0,Canceled,2016-08-11,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 201, NULL,0,Transient-Party,59.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 201, NULL,0,Transient,59.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Cancel,193,2016,September,38,14,1,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2016-03-19,Fall,2016-09-14T07:00Z +Keep,229,2016,September,38,14,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,114,0,1,Check-Out,2016-09-14,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,76.4,1,0,Check-Out,2016-09-19,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,1,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-09-19,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,2,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,68,1,0,Check-Out,2016-09-20,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,2,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,71,1,0,Check-Out,2016-09-20,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,2,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-20,Fall,2016-09-14T07:00Z +Keep,335,2016,September,38,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,78,1,0,Check-Out,2016-09-21,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Cancel,130,2016,September,38,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2016-08-07,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,70,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,74,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,78,1,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Cancel,336,2016,September,38,15,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Canceled,2016-09-07,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,74,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,74,1,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,74,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Cancel,130,2016,September,38,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2016-08-07,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,62,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,110.5,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Cancel,51,2016,September,38,15,1,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,189.25,0,1,Canceled,2016-08-06,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Cancel,336,2016,September,38,15,1,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Canceled,2016-09-15,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,73.2,0,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,73.2,0,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,2,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,1,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,370,2016,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,78.5,0,3,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Cancel,261,2016,September,38,16,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2016-04-21,Fall,2016-09-16T07:00Z +Cancel,246,2016,September,38,16,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-04-23,Fall,2016-09-16T07:00Z +Cancel,261,2016,September,38,16,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2015-12-30,Fall,2016-09-16T07:00Z +Cancel,261,2016,September,38,16,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-01-18,Fall,2016-09-16T07:00Z +Keep,363,2016,September,38,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,64.9,0,0,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Cancel,170,2016,September,38,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,90,0,0,Canceled,2016-06-30,Fall,2016-09-16T07:00Z +Keep,350,2016,September,38,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,53.85,0,0,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Keep,338,2016,September,38,16,2,5,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 171, NULL,0,Transient,96.4,0,0,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Keep,394,2016,September,38,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,92.9,0,0,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Cancel,242,2016,September,38,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-03-12,Fall,2016-09-16T07:00Z +Cancel,170,2016,September,38,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,76,0,0,Canceled,2016-06-07,Fall,2016-09-16T07:00Z +Cancel,255,2016,September,38,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,64.98,0,1,Canceled,2016-01-06,Fall,2016-09-16T07:00Z +Cancel,347,2016,September,38,16,4,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,221.07,0,0,Canceled,2016-03-21,Fall,2016-09-16T07:00Z +Cancel,7,2016,September,38,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2016-09-10,Fall,2016-09-17T07:00Z +Cancel,245,2016,September,38,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Canceled,2016-09-06,Fall,2016-09-17T07:00Z +Cancel,245,2016,September,38,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Canceled,2016-07-02,Fall,2016-09-17T07:00Z +Cancel,167,2016,September,38,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106.43,0,0,Canceled,2016-06-12,Fall,2016-09-17T07:00Z +Cancel,33,2016,September,39,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-08-17,Fall,2016-09-18T07:00Z +Cancel,49,2016,September,39,18,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-09-14,Fall,2016-09-18T07:00Z +Cancel,51,2016,September,39,18,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,1,Canceled,2016-08-18,Fall,2016-09-18T07:00Z +Cancel,29,2016,September,39,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Canceled,2016-08-23,Fall,2016-09-18T07:00Z +Cancel,55,2016,September,39,18,2,1,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,C,2,No Deposit , 250, NULL,0,Transient,102,0,3,No-Show,2016-09-18,Fall,2016-09-18T07:00Z +Cancel,244,2016,September,39,18,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2016-01-19,Fall,2016-09-18T07:00Z +Cancel,55,2016,September,39,18,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,0,Canceled,2016-07-25,Fall,2016-09-18T07:00Z +Cancel,206,2016,September,39,18,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104.75,0,1,Canceled,2016-03-07,Fall,2016-09-18T07:00Z +Cancel,53,2016,September,39,18,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111.75,0,0,Canceled,2016-08-02,Fall,2016-09-18T07:00Z +Cancel,248,2016,September,39,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Canceled,2016-01-20,Fall,2016-09-18T07:00Z +Cancel,128,2016,September,39,18,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,116,0,0,Canceled,2016-07-18,Fall,2016-09-18T07:00Z +Keep,376,2016,September,39,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,0,Check-Out,2016-10-02,Fall,2016-09-18T07:00Z +Keep,376,2016,September,39,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,0,Check-Out,2016-10-02,Fall,2016-09-18T07:00Z +Keep,342,2016,September,39,18,4,10,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,48.75,0,1,Check-Out,2016-10-02,Fall,2016-09-18T07:00Z +Keep,376,2016,September,39,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,0,Check-Out,2016-10-02,Fall,2016-09-18T07:00Z +Keep,375,2016,September,39,18,4,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,58.95,0,1,Check-Out,2016-10-01,Fall,2016-09-18T07:00Z +Cancel,6,2016,September,39,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 34,0,Transient,59,0,0,Canceled,2016-09-13,Fall,2016-09-19T07:00Z +Cancel,38,2016,September,39,19,1,1,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,2,Canceled,2016-08-24,Fall,2016-09-19T07:00Z +Cancel,33,2016,September,39,19,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-08-17,Fall,2016-09-19T07:00Z +Cancel,60,2016,September,39,19,1,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112.33,0,0,Canceled,2016-07-21,Fall,2016-09-19T07:00Z +Cancel,144,2016,September,39,19,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2016-09-08,Fall,2016-09-19T07:00Z +Cancel,215,2016,September,39,19,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2016-02-24,Fall,2016-09-19T07:00Z +Cancel,60,2016,September,39,19,1,2,2,0,0,HB,TUR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142.2,0,0,Canceled,2016-07-25,Fall,2016-09-19T07:00Z +Cancel,61,2016,September,39,19,1,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122.33,0,1,Canceled,2016-07-21,Fall,2016-09-19T07:00Z +Cancel,196,2016,September,39,19,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2016-05-02,Fall,2016-09-19T07:00Z +Cancel,189,2016,September,39,19,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,68.35,0,0,Canceled,2016-09-13,Fall,2016-09-19T07:00Z +Cancel,152,2016,September,39,19,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-07-17,Fall,2016-09-19T07:00Z +Cancel,76,2016,September,39,19,1,4,2,0,0,BB,HKG,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,292.4,0,1,Canceled,2016-07-15,Fall,2016-09-19T07:00Z +Cancel,171,2016,September,39,19,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.33,0,2,Canceled,2016-09-04,Fall,2016-09-19T07:00Z +Cancel,252,2016,September,39,19,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-03-09,Fall,2016-09-19T07:00Z +Cancel,200,2016,September,39,19,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-03-04,Fall,2016-09-19T07:00Z +Cancel,199,2016,September,39,19,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,158,0,0,Canceled,2016-05-10,Fall,2016-09-19T07:00Z +Cancel,206,2016,September,39,19,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-05-13,Fall,2016-09-19T07:00Z +Keep,243,2016,September,39,19,2,5,1,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient,71.9,0,1,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Cancel,243,2016,September,39,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient,51.85,0,0,Canceled,2016-03-16,Fall,2016-09-19T07:00Z +Cancel,215,2016,September,39,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Group,95,0,1,Canceled,2016-06-09,Fall,2016-09-19T07:00Z +Keep,243,2016,September,39,19,2,5,1,0,0,FB,CAF,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient,71.9,0,1,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,243,2016,September,39,19,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient,51.85,0,0,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Cancel,297,2016,September,39,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,88.9,0,1,Canceled,2016-09-09,Fall,2016-09-19T07:00Z +Cancel,243,2016,September,39,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient,77.85,0,0,Canceled,2016-03-16,Fall,2016-09-19T07:00Z +Cancel,46,2016,September,39,19,1,0,2,0,0,BB,CYP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,0,Canceled,2016-08-24,Fall,2016-09-19T07:00Z +Cancel,42,2016,September,39,19,1,0,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-08-31,Fall,2016-09-19T07:00Z +Cancel,139,2016,September,39,20,0,4,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-09-08,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Keep,328,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,53.85,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Keep,223,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,68.6,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Keep,328,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,51.85,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Cancel,244,2016,September,39,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2016-01-28,Fall,2016-09-20T07:00Z +Keep,328,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,51.85,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,94,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,72.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 96, NULL,0,Transient-Party,60.25,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,1,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 183, NULL,0,Transient-Party,56.5,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,72.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , 183, NULL,0,Transient-Party,94,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,119,2016,September,39,21,1,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,130.9,0,0,Canceled,2016-06-16,Fall,2016-09-21T07:00Z +Cancel,168,2016,September,39,21,2,4,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95.67,0,0,Canceled,2016-08-16,Fall,2016-09-21T07:00Z +Cancel,202,2016,September,39,21,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,68.4,0,0,Canceled,2016-03-09,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,197,2016,September,39,21,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Non Refund , 253, NULL,0,Transient,66.6,0,0,Canceled,2016-03-31,Fall,2016-09-21T07:00Z +Cancel,181,2016,September,39,21,4,10,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,114.73,0,0,Canceled,2016-07-29,Fall,2016-09-21T07:00Z +Keep,329,2016,September,39,21,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Contract,70.85,0,1,Check-Out,2016-10-05,Fall,2016-09-21T07:00Z +Cancel,164,2016,September,39,21,2,7,1,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,123.1,0,0,Canceled,2016-09-05,Fall,2016-09-21T07:00Z +Cancel,260,2016,September,39,21,2,8,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,85.5,0,1,Canceled,2016-01-18,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,60.25,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,397,2016,September,39,21,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-06-17,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,72.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,96,2016,September,39,21,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-08-09,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , 183, NULL,0,Transient-Party,92,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,70.5,0,1,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,397,2016,September,39,21,0,4,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,62.25,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,385,2016,September,39,21,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,66,0,0,Canceled,2015-10-14,Fall,2016-09-21T07:00Z +Cancel,18,2016,September,39,22,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2016-09-04,Fall,2016-09-22T07:00Z +Cancel,232,2016,September,39,22,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,0,Canceled,2016-06-24,Fall,2016-09-22T07:00Z +Cancel,18,2016,September,39,22,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-09-04,Fall,2016-09-22T07:00Z +Cancel,14,2016,September,39,22,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,0,Canceled,2016-09-08,Fall,2016-09-22T07:00Z +Cancel,18,2016,September,39,22,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2016-09-04,Fall,2016-09-22T07:00Z +Cancel,22,2016,September,39,22,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,146.2,0,1,Canceled,2016-09-02,Fall,2016-09-22T07:00Z +Cancel,174,2016,September,39,22,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125.67,0,2,Canceled,2016-08-25,Fall,2016-09-22T07:00Z +Cancel,191,2016,September,39,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,81,0,1,Canceled,2016-09-19,Fall,2016-09-22T07:00Z +Cancel,195,2016,September,39,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 243, NULL,0,Contract,51.85,0,0,Canceled,2016-08-05,Fall,2016-09-22T07:00Z +Cancel,191,2016,September,39,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,66.6,0,0,Canceled,2016-09-19,Fall,2016-09-22T07:00Z +Cancel,13,2016,September,39,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,90,0,0,Canceled,2016-09-09,Fall,2016-09-22T07:00Z +Cancel,42,2016,September,39,23,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,1,Canceled,2016-08-26,Fall,2016-09-23T07:00Z +Cancel,27,2016,September,39,23,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159,0,1,Canceled,2016-09-02,Fall,2016-09-23T07:00Z +Cancel,27,2016,September,39,23,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159,0,1,Canceled,2016-09-02,Fall,2016-09-23T07:00Z +Cancel,41,2016,September,39,23,0,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,1,Canceled,2016-08-26,Fall,2016-09-23T07:00Z +Cancel,63,2016,September,39,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,1,Canceled,2016-08-30,Fall,2016-09-23T07:00Z +Cancel,39,2016,September,39,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,1,Canceled,2016-08-17,Fall,2016-09-23T07:00Z +Cancel,38,2016,September,39,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2016-09-11,Fall,2016-09-23T07:00Z +Cancel,29,2016,September,39,23,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,142.53,0,0,Canceled,2016-08-26,Fall,2016-09-23T07:00Z +Cancel,31,2016,September,39,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145.67,0,2,Canceled,2016-08-30,Fall,2016-09-23T07:00Z +Cancel,44,2016,September,39,23,2,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,124.55,0,0,Canceled,2016-08-10,Fall,2016-09-23T07:00Z +Cancel,36,2016,September,39,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131.75,0,2,Canceled,2016-08-19,Fall,2016-09-23T07:00Z +Cancel,197,2016,September,39,23,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,92.1,0,0,Canceled,2016-06-16,Fall,2016-09-23T07:00Z +Cancel,44,2016,September,39,23,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,182.25,0,2,Canceled,2016-08-24,Fall,2016-09-23T07:00Z +Cancel,168,2016,September,39,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,111.14,0,0,Canceled,2016-06-21,Fall,2016-09-23T07:00Z +Keep,338,2016,September,39,23,2,5,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,85.6,0,0,Check-Out,2016-09-30,Fall,2016-09-23T07:00Z +Cancel,177,2016,September,39,23,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,76,0,0,Canceled,2016-07-29,Fall,2016-09-23T07:00Z +Cancel,63,2016,September,39,23,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,212.86,0,0,Canceled,2016-08-10,Fall,2016-09-23T07:00Z +Cancel,155,2016,September,39,23,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,156.14,0,0,Canceled,2016-07-04,Fall,2016-09-23T07:00Z +Cancel,168,2016,September,39,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,111.14,0,0,Canceled,2016-07-16,Fall,2016-09-23T07:00Z +Cancel,73,2016,September,39,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154,0,0,Canceled,2016-07-19,Fall,2016-09-24T07:00Z +Cancel,22,2016,September,39,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,119,0,0,Canceled,2016-09-04,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,2,2016,September,39,24,2,1,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2016-09-23,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,2,2016,September,39,24,2,1,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2016-09-23,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,176,2016,September,39,24,2,1,2,0,0,BB,URY,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,122.33,0,0,Canceled,2016-04-04,Fall,2016-09-24T07:00Z +Cancel,289,2016,September,39,24,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,64,0,0,Canceled,2016-05-19,Fall,2016-09-24T07:00Z +Cancel,23,2016,September,39,24,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156.25,0,1,Canceled,2016-09-02,Fall,2016-09-24T07:00Z +Cancel,56,2016,September,39,24,2,4,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,164.17,0,0,Canceled,2016-07-30,Fall,2016-09-24T07:00Z +Cancel,29,2016,September,40,25,1,0,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-08-29,Fall,2016-09-25T07:00Z +Cancel,49,2016,September,40,25,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2016-09-02,Fall,2016-09-25T07:00Z +Cancel,29,2016,September,40,25,1,0,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-08-29,Fall,2016-09-25T07:00Z +Cancel,19,2016,September,40,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2016-09-08,Fall,2016-09-25T07:00Z +Cancel,71,2016,September,40,25,2,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.33,0,0,Canceled,2016-07-16,Fall,2016-09-25T07:00Z +Cancel,70,2016,September,40,25,2,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.75,0,0,Canceled,2016-07-24,Fall,2016-09-25T07:00Z +Cancel,20,2016,September,40,25,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,162.1,0,0,Canceled,2016-09-05,Fall,2016-09-25T07:00Z +Cancel,140,2016,September,40,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91.86,0,1,Canceled,2016-09-14,Fall,2016-09-25T07:00Z +Keep,344,2016,September,40,25,4,10,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 69, NULL,0,Transient,46.75,0,1,Check-Out,2016-10-09,Fall,2016-09-25T07:00Z +Keep,344,2016,September,40,25,4,10,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,46.75,0,1,Check-Out,2016-10-09,Fall,2016-09-25T07:00Z +Cancel,310,2016,September,40,25,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,76.5,0,0,Canceled,2016-08-18,Fall,2016-09-25T07:00Z +Cancel,20,2016,September,40,26,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,124,0,2,Canceled,2016-09-16,Fall,2016-09-26T07:00Z +Cancel,14,2016,September,40,26,1,2,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,233,0,1,Canceled,2016-09-25,Fall,2016-09-26T07:00Z +Cancel,56,2016,September,40,26,1,3,1,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-08-11,Fall,2016-09-26T07:00Z +Cancel,53,2016,September,40,26,1,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2016-08-07,Fall,2016-09-26T07:00Z +Cancel,177,2016,September,40,26,1,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-07-12,Fall,2016-09-26T07:00Z +Cancel,44,2016,September,40,26,1,5,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,217,0,0,Canceled,2016-09-14,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 253, NULL,0,Transient-Party,69.71,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,19,2016,September,40,26,2,5,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, 84,0,Transient,0,0,0,Canceled,2016-09-26,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,87,0,3,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,347,2016,September,40,26,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 253, NULL,0,Transient-Party,68,0,0,Canceled,2016-06-27,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,87,0,2,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,89,0,3,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,168,2016,September,40,26,3,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,108.26,0,0,Canceled,2016-09-05,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Cancel,339,2016,September,40,26,3,6,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 15, NULL,0,Transient,80,0,0,Canceled,2016-01-22,Fall,2016-09-26T07:00Z +Keep,333,2016,September,40,26,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,79.42,1,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,354,2016,September,40,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,86.4,0,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 253, NULL,0,Transient-Party,70,0,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,137,2016,September,40,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,0,Canceled,2016-06-27,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,89,0,2,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,87,0,3,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 253, NULL,0,Transient-Party,99,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,98,2016,September,40,26,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,119.71,0,1,Canceled,2016-08-16,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,68,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Cancel,143,2016,September,40,26,3,7,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient-Party,81,0,0,Canceled,2016-09-15,Fall,2016-09-26T07:00Z +Keep,333,2016,September,40,26,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Transient,74.62,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,3,7,2,0,0,SC,USA,Groups,TA/TO, 0,0,0,A,I,1,No Deposit , 253, NULL,0,Transient-Party,22.4,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Cancel,168,2016,September,40,26,3,7,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,94.1,0,0,Canceled,2016-04-15,Fall,2016-09-26T07:00Z +Cancel,148,2016,September,40,26,3,9,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,189.5,0,0,Canceled,2016-09-11,Fall,2016-09-26T07:00Z +Cancel,36,2016,September,40,27,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-08-29,Fall,2016-09-27T07:00Z +Cancel,129,2016,September,40,27,0,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,0,Canceled,2016-05-23,Fall,2016-09-27T07:00Z +Cancel,167,2016,September,40,27,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,0,Canceled,2016-04-21,Fall,2016-09-27T07:00Z +Cancel,173,2016,September,40,27,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.14,0,0,Canceled,2016-04-08,Fall,2016-09-27T07:00Z +Cancel,167,2016,September,40,27,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,0,Canceled,2016-04-21,Fall,2016-09-27T07:00Z +Cancel,173,2016,September,40,27,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.14,0,0,Canceled,2016-04-08,Fall,2016-09-27T07:00Z +Keep,342,2016,September,40,27,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,110.36,0,1,Check-Out,2016-10-11,Fall,2016-09-27T07:00Z +Keep,342,2016,September,40,27,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,110.36,0,1,Check-Out,2016-10-11,Fall,2016-09-27T07:00Z +Cancel,96,2016,September,40,28,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,124,0,1,Canceled,2016-09-24,Fall,2016-09-28T07:00Z +Cancel,98,2016,September,40,28,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120.25,0,0,Canceled,2016-06-23,Fall,2016-09-28T07:00Z +Cancel,131,2016,September,40,28,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91.5,0,0,Canceled,2016-07-19,Fall,2016-09-28T07:00Z +Cancel,63,2016,September,40,28,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,0,Canceled,2016-09-15,Fall,2016-09-28T07:00Z +Cancel,63,2016,September,40,28,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,0,Canceled,2016-09-15,Fall,2016-09-28T07:00Z +Cancel,63,2016,September,40,28,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,0,Canceled,2016-09-15,Fall,2016-09-28T07:00Z +Cancel,63,2016,September,40,28,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,0,Canceled,2016-09-15,Fall,2016-09-28T07:00Z +Cancel,229,2016,September,40,28,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105.2,0,0,Canceled,2016-07-07,Fall,2016-09-28T07:00Z +Cancel,263,2016,September,40,28,4,10,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,71.04,0,2,Canceled,2016-03-11,Fall,2016-09-28T07:00Z +Cancel,127,2016,September,40,29,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Canceled,2016-09-02,Fall,2016-09-29T07:00Z +Cancel,161,2016,September,40,29,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102.33,0,0,Canceled,2016-08-11,Fall,2016-09-29T07:00Z +Cancel,136,2016,September,40,29,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-07-15,Fall,2016-09-29T07:00Z +Cancel,94,2016,September,40,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,119,0,1,Canceled,2016-09-06,Fall,2016-09-29T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Cancel,69,2016,September,40,30,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2016-07-23,Fall,2016-09-30T07:00Z +Cancel,14,2016,September,40,30,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-09-17,Fall,2016-09-30T07:00Z +Cancel,55,2016,September,40,30,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,154,0,0,Canceled,2016-08-30,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,20,2016,September,40,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,126.9,0,1,Canceled,2016-09-29,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,58,2016,September,40,30,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112.33,0,0,Canceled,2016-08-03,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,231,2016,September,40,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,Non Refund , 96, NULL,0,Transient,57.6,0,0,Canceled,2016-06-17,Fall,2016-09-30T07:00Z +Cancel,132,2016,September,40,30,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2016-08-08,Fall,2016-09-30T07:00Z +Cancel,48,2016,September,40,30,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,0,Canceled,2016-08-14,Fall,2016-09-30T07:00Z +Cancel,35,2016,September,40,30,2,3,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,100.2,0,2,Canceled,2016-09-15,Fall,2016-09-30T07:00Z +Cancel,24,2016,September,40,30,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101,0,1,Canceled,2016-09-12,Fall,2016-09-30T07:00Z +Cancel,174,2016,September,40,30,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,0,Canceled,2016-06-21,Fall,2016-09-30T07:00Z +Cancel,101,2016,September,40,30,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,116.5,0,0,Canceled,2016-07-22,Fall,2016-09-30T07:00Z +Cancel,184,2016,September,40,30,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,90,0,0,Canceled,2016-07-21,Fall,2016-09-30T07:00Z +Cancel,71,2016,September,40,30,2,7,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.89,0,0,Canceled,2016-07-23,Fall,2016-09-30T07:00Z +Cancel,71,2016,September,40,30,2,7,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.89,0,0,Canceled,2016-07-23,Fall,2016-09-30T07:00Z +Cancel,269,2016,September,40,30,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.64,0,2,Canceled,2016-01-14,Fall,2016-09-30T07:00Z +Cancel,65,2016,October,40,1,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-09-09,Fall,2016-10-01T07:00Z +Cancel,24,2016,October,40,1,1,1,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,169,0,3,Canceled,2016-09-19,Fall,2016-10-01T07:00Z +Cancel,65,2016,October,40,1,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-09-16,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,207,2016,October,40,1,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83,0,0,Canceled,2016-03-13,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,157,2016,October,40,1,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,Non Refund , 96, NULL,0,Transient,52,0,0,Canceled,2016-05-09,Fall,2016-10-01T07:00Z +Cancel,48,2016,October,40,1,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2016-09-07,Fall,2016-10-01T07:00Z +Cancel,68,2016,October,40,1,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,89,0,0,Canceled,2016-07-26,Fall,2016-10-01T07:00Z +Cancel,319,2016,October,40,1,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,81,0,0,Canceled,2016-05-03,Fall,2016-10-01T07:00Z +Cancel,403,2016,October,40,1,6,15,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,52.2,0,1,Canceled,2015-08-27,Fall,2016-10-01T07:00Z +Cancel,403,2016,October,40,1,6,15,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,52.2,0,0,Canceled,2015-08-25,Fall,2016-10-01T07:00Z +Cancel,19,2016,October,41,2,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2016-09-18,Fall,2016-10-02T07:00Z +Cancel,243,2016,October,41,2,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-04-11,Fall,2016-10-02T07:00Z +Cancel,158,2016,October,41,2,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,1,Canceled,2016-05-06,Fall,2016-10-02T07:00Z +Cancel,166,2016,October,41,2,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Canceled,2016-09-16,Fall,2016-10-02T07:00Z +Cancel,14,2016,October,41,2,2,3,1,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,167,0,0,Canceled,2016-09-18,Fall,2016-10-02T07:00Z +Cancel,258,2016,October,41,2,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.6,0,1,Canceled,2016-01-20,Fall,2016-10-02T07:00Z +Cancel,103,2016,October,41,3,1,2,2,2,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-07-28,Fall,2016-10-03T07:00Z +Cancel,67,2016,October,41,3,1,2,2,2,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2016-09-20,Fall,2016-10-03T07:00Z +Cancel,142,2016,October,41,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,53.13,0,0,Canceled,2016-05-21,Fall,2016-10-03T07:00Z +Cancel,186,2016,October,41,3,1,3,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,139.3,0,0,Canceled,2016-06-06,Fall,2016-10-03T07:00Z +Cancel,141,2016,October,41,3,1,4,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-07-21,Fall,2016-10-03T07:00Z +Cancel,160,2016,October,41,3,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2016-07-19,Fall,2016-10-03T07:00Z +Cancel,86,2016,October,41,3,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,1,Canceled,2016-07-28,Fall,2016-10-03T07:00Z +Cancel,113,2016,October,41,3,1,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,0,Canceled,2016-08-09,Fall,2016-10-03T07:00Z +Cancel,181,2016,October,41,3,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2016-09-13,Fall,2016-10-03T07:00Z +Cancel,235,2016,October,41,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-07-29,Fall,2016-10-03T07:00Z +Cancel,182,2016,October,41,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,79.8,0,0,No-Show,2016-10-03,Fall,2016-10-03T07:00Z +Cancel,55,2016,October,41,3,3,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,2,Canceled,2016-09-17,Fall,2016-10-03T07:00Z +Cancel,55,2016,October,41,3,3,6,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,2,Canceled,2016-09-17,Fall,2016-10-03T07:00Z +Keep,341,2016,October,41,3,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 40, NULL,0,Transient-Party,37.4,0,1,Check-Out,2016-10-13,Fall,2016-10-03T07:00Z +Cancel,65,2016,October,41,4,0,1,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-08-17,Fall,2016-10-04T07:00Z +Cancel,65,2016,October,41,4,0,1,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-08-17,Fall,2016-10-04T07:00Z +Cancel,169,2016,October,41,4,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-05-14,Fall,2016-10-04T07:00Z +Cancel,149,2016,October,41,4,0,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2016-08-11,Fall,2016-10-04T07:00Z +Cancel,65,2016,October,41,4,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2016-08-02,Fall,2016-10-04T07:00Z +Cancel,65,2016,October,41,4,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2016-08-02,Fall,2016-10-04T07:00Z +Cancel,64,2016,October,41,4,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-08-02,Fall,2016-10-04T07:00Z +Cancel,13,2016,October,41,5,0,1,3,1,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2016-09-22,Fall,2016-10-05T07:00Z +Cancel,157,2016,October,41,5,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101,0,1,Canceled,2016-09-02,Fall,2016-10-05T07:00Z +Cancel,29,2016,October,41,5,0,3,3,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,174,0,0,Canceled,2016-09-06,Fall,2016-10-05T07:00Z +Cancel,180,2016,October,41,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-04-12,Fall,2016-10-05T07:00Z +Cancel,59,2016,October,41,5,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2016-09-23,Fall,2016-10-05T07:00Z +Cancel,7,2016,October,41,5,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Canceled,2016-09-28,Fall,2016-10-05T07:00Z +Cancel,7,2016,October,41,5,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Canceled,2016-09-28,Fall,2016-10-05T07:00Z +Cancel,7,2016,October,41,5,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Canceled,2016-09-28,Fall,2016-10-05T07:00Z +Cancel,198,2016,October,41,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,65.37,0,0,Canceled,2016-09-07,Fall,2016-10-05T07:00Z +Cancel,198,2016,October,41,5,2,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.6,0,0,Canceled,2016-04-11,Fall,2016-10-05T07:00Z +Cancel,198,2016,October,41,5,2,7,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.56,0,0,Canceled,2016-03-26,Fall,2016-10-05T07:00Z +Cancel,261,2016,October,41,6,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,85,0,0,Canceled,2016-01-19,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,2,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,2,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Cancel,59,2016,October,41,6,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2016-08-30,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 315, NULL,0,Transient-Party,50,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Cancel,59,2016,October,41,6,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2016-08-30,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient-Party,66,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 315, NULL,0,Transient-Party,52,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Cancel,59,2016,October,41,6,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2016-08-30,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,50,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,44,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,ROU,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,67,2016,October,41,6,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2016-08-03,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,383,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Canceled,2016-03-04,Fall,2016-10-06T07:00Z +Cancel,94,2016,October,41,6,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161.86,0,0,Canceled,2016-07-04,Fall,2016-10-06T07:00Z +Cancel,239,2016,October,41,6,3,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,88.61,0,0,Canceled,2016-02-16,Fall,2016-10-06T07:00Z +Keep,384,2016,October,41,7,0,2,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,1,Refundable , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Cancel,144,2016,October,41,7,0,2,2,1,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-09-28,Fall,2016-10-07T07:00Z +Cancel,14,2016,October,41,7,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,80.4,0,0,No-Show,2016-10-07,Fall,2016-10-07T07:00Z +Cancel,60,2016,October,41,7,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-08-08,Fall,2016-10-07T07:00Z +Cancel,40,2016,October,41,7,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2016-09-22,Fall,2016-10-07T07:00Z +Cancel,183,2016,October,41,7,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,52.27,0,0,Canceled,2016-04-09,Fall,2016-10-07T07:00Z +Cancel,94,2016,October,41,7,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-07T07:00Z +Cancel,181,2016,October,41,7,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,127.14,0,0,Canceled,2016-05-17,Fall,2016-10-07T07:00Z +Keep,359,2016,October,41,7,2,7,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,67.78,0,1,Check-Out,2016-10-16,Fall,2016-10-07T07:00Z +Cancel,40,2016,October,41,7,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163.75,0,0,Canceled,2016-08-28,Fall,2016-10-07T07:00Z +Cancel,385,2016,October,41,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,2,Refundable , 315, NULL,0,Transient-Party,48,0,0,No-Show,2016-10-08,Fall,2016-10-08T07:00Z +Cancel,151,2016,October,41,8,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,54.5,0,0,Canceled,2016-05-27,Fall,2016-10-08T07:00Z +Cancel,151,2016,October,41,8,1,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,63.5,0,0,Canceled,2016-05-27,Fall,2016-10-08T07:00Z +Cancel,151,2016,October,41,8,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.5,0,0,Canceled,2016-05-27,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,19,2016,October,41,8,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,56,2016,October,41,8,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Canceled,2016-08-13,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,393,2016,October,41,8,2,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 68, NULL,0,Transient,72,0,0,Canceled,2015-12-17,Fall,2016-10-08T07:00Z +Cancel,151,2016,October,41,8,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,54.5,0,0,Canceled,2016-05-27,Fall,2016-10-08T07:00Z +Cancel,151,2016,October,41,8,1,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,63.5,0,0,Canceled,2016-05-11,Fall,2016-10-08T07:00Z +Cancel,134,2016,October,41,8,1,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,63.5,0,0,Canceled,2016-05-27,Fall,2016-10-08T07:00Z +Cancel,48,2016,October,41,8,2,1,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,2,Canceled,2016-08-23,Fall,2016-10-08T07:00Z +Cancel,315,2016,October,41,8,3,6,2,0,0,BB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,64.8,0,0,Canceled,2016-01-14,Fall,2016-10-08T07:00Z +Keep,360,2016,October,41,8,3,6,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,4,No Deposit , NULL, 223,0,Transient-Party,72,1,1,Check-Out,2016-10-17,Fall,2016-10-08T07:00Z +Keep,360,2016,October,41,8,4,6,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,2,No Deposit , NULL, 223,0,Transient-Party,88.4,1,0,Check-Out,2016-10-18,Fall,2016-10-08T07:00Z +Keep,360,2016,October,41,8,4,6,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,2,No Deposit , NULL, 223,0,Transient-Party,91.8,0,0,Check-Out,2016-10-18,Fall,2016-10-08T07:00Z +Cancel,368,2016,October,41,8,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,61.2,0,0,Canceled,2015-11-04,Fall,2016-10-08T07:00Z +Keep,2,2016,October,42,9,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-07-05,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-07-05,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-07-05,Fall,2016-10-09T07:00Z +Cancel,10,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-29,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,96,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,96,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-07,Fall,2016-10-09T07:00Z +Cancel,30,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,92,2016,October,42,9,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,106.5,0,0,Canceled,2016-08-13,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Cancel,184,2016,October,42,9,2,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,126.4,0,0,Canceled,2016-04-09,Fall,2016-10-09T07:00Z +Cancel,131,2016,October,42,9,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2016-09-23,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,2,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , 273, NULL,101,Transient-Party,42.81,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , 273, NULL,101,Transient-Party,42.81,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , 273, NULL,101,Transient-Party,44.81,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Cancel,337,2016,October,42,9,4,6,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,72.45,0,0,Canceled,2016-09-20,Fall,2016-10-09T07:00Z +Cancel,316,2016,October,42,9,4,6,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,72.45,0,0,Canceled,2016-09-20,Fall,2016-10-09T07:00Z +Cancel,236,2016,October,42,9,4,6,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,63.45,0,0,Canceled,2016-05-11,Fall,2016-10-09T07:00Z +Cancel,10,2016,October,42,10,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 394,0,Transient-Party,41.4,0,0,Canceled,2016-10-04,Fall,2016-10-10T07:00Z +Cancel,10,2016,October,42,10,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 394,0,Transient-Party,41.4,0,0,Canceled,2016-10-04,Fall,2016-10-10T07:00Z +Cancel,12,2016,October,42,10,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-09-29,Fall,2016-10-10T07:00Z +Keep,362,2016,October,42,10,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-10-17,Fall,2016-10-10T07:00Z +Cancel,18,2016,October,42,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Canceled,2016-09-29,Fall,2016-10-11T07:00Z +Cancel,1,2016,October,42,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Canceled,2016-10-10,Fall,2016-10-11T07:00Z +Cancel,12,2016,October,42,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.6,0,0,Canceled,2016-10-04,Fall,2016-10-11T07:00Z +Cancel,5,2016,October,42,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.6,0,0,Canceled,2016-10-11,Fall,2016-10-11T07:00Z +Cancel,6,2016,October,42,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,2,No-Show,2016-10-11,Fall,2016-10-11T07:00Z +Cancel,18,2016,October,42,11,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,80.4,0,0,Canceled,2016-10-08,Fall,2016-10-11T07:00Z +Cancel,18,2016,October,42,11,0,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-10-06,Fall,2016-10-11T07:00Z +Keep,363,2016,October,42,11,1,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,Refundable , 273, NULL,150,Transient-Party,80.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , 273, NULL,150,Transient-Party,44.36,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,363,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , 273, NULL,150,Transient-Party,46.36,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,Refundable , 273, NULL,150,Transient-Party,80.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,364,2016,October,42,12,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-15,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Cancel,364,2016,October,42,12,0,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-09-29,Fall,2016-10-12T07:00Z +Cancel,364,2016,October,42,12,0,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46,0,0,Canceled,2016-09-29,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Cancel,2,2016,October,42,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,39,0,0,Canceled,2016-10-10,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Cancel,257,2016,October,42,12,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76,0,0,Canceled,2016-02-12,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,1,BB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,G,3,No Deposit , NULL, 223,0,Transient-Party,137,1,1,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,1,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Cancel,364,2016,October,42,12,1,4,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Canceled,2016-10-10,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,74,1,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , 223, 223,0,Transient-Party,101,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,86,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,86,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-18,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-19,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-18,Fall,2016-10-12T07:00Z +Cancel,0,2016,October,42,13,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 457,0,Transient,50,0,0,Canceled,2016-10-13,Fall,2016-10-13T07:00Z +Cancel,149,2016,October,42,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,246.02,0,1,Canceled,2016-08-25,Fall,2016-10-13T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,B,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,365,2016,October,42,13,2,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-18,Fall,2016-10-13T07:00Z +Keep,365,2016,October,42,13,2,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-18,Fall,2016-10-13T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,1,No Deposit , 273, NULL,125,Transient-Party,71.56,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,1,No Deposit , 273, NULL,125,Transient-Party,71.56,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,G,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Cancel,249,2016,October,42,14,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,60.36,0,0,Canceled,2016-09-29,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Cancel,342,2016,October,42,14,2,5,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,G,0,No Deposit , 273, NULL,125,Transient-Party,78.81,0,0,Canceled,2016-10-12,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,1,No Deposit , 273, NULL,125,Transient-Party,71.56,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , 273, NULL,125,Transient-Party,44.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,125,Transient-Party,71.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,1,No Deposit , 273, NULL,125,Transient-Party,71.56,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,No Deposit , 273, NULL,125,Transient-Party,46.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Cancel,435,2016,October,42,14,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,63.4,0,0,Canceled,2016-05-25,Fall,2016-10-14T07:00Z +Keep,342,2016,October,42,14,2,5,2,0,0,BB,BRA,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,125,Transient-Party,80.81,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Cancel,18,2016,October,42,15,1,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2016-09-27,Fall,2016-10-15T07:00Z +Cancel,12,2016,October,42,15,0,1,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 382,0,Transient,0,0,0,Canceled,2016-10-06,Fall,2016-10-15T07:00Z +Cancel,115,2016,October,42,15,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.85,0,0,Canceled,2016-09-20,Fall,2016-10-15T07:00Z +Cancel,24,2016,October,42,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,141,0,1,Canceled,2016-10-03,Fall,2016-10-15T07:00Z +Cancel,24,2016,October,42,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,135,0,1,Canceled,2016-10-03,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,27,2016,October,42,15,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140.71,0,0,Canceled,2016-09-19,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,60.83,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,27,2016,October,42,15,2,5,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,145.71,0,0,Canceled,2016-09-19,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,60.83,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,198,2016,October,42,15,2,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,124.14,0,0,Canceled,2016-08-02,Fall,2016-10-15T07:00Z +Cancel,375,2016,October,42,15,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,59.5,0,0,Canceled,2016-09-20,Fall,2016-10-15T07:00Z +Cancel,27,2016,October,43,16,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,57,0,0,Canceled,2016-09-20,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,181,2016,October,43,16,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,37,0,0,Canceled,2016-07-18,Fall,2016-10-16T07:00Z +Cancel,23,2016,October,43,16,2,2,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-10-06,Fall,2016-10-16T07:00Z +Cancel,23,2016,October,43,16,2,2,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-10-06,Fall,2016-10-16T07:00Z +Cancel,14,2016,October,43,16,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-10-11,Fall,2016-10-16T07:00Z +Cancel,19,2016,October,43,16,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-09-29,Fall,2016-10-16T07:00Z +Cancel,30,2016,October,43,16,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-09-17,Fall,2016-10-16T07:00Z +Cancel,47,2016,October,43,16,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2016-09-05,Fall,2016-10-16T07:00Z +Cancel,31,2016,October,43,16,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-10-02,Fall,2016-10-16T07:00Z +Cancel,47,2016,October,43,16,2,4,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,193,0,0,Canceled,2016-09-20,Fall,2016-10-16T07:00Z +Cancel,247,2016,October,43,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,120,0,0,Canceled,2016-02-16,Fall,2016-10-16T07:00Z +Cancel,247,2016,October,43,16,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,141.7,0,1,Canceled,2016-02-16,Fall,2016-10-16T07:00Z +Cancel,244,2016,October,43,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2016-02-16,Fall,2016-10-16T07:00Z +Cancel,247,2016,October,43,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,120,0,2,Canceled,2016-02-16,Fall,2016-10-16T07:00Z +Cancel,142,2016,October,43,16,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,93.15,0,0,Canceled,2016-07-29,Fall,2016-10-16T07:00Z +Cancel,243,2016,October,43,16,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,141.7,0,1,No-Show,2016-10-16,Fall,2016-10-16T07:00Z +Keep,382,2016,October,43,16,3,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-16T07:00Z +Cancel,67,2016,October,43,17,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Canceled,2016-08-29,Fall,2016-10-17T07:00Z +Cancel,68,2016,October,43,17,1,0,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,1,Canceled,2016-08-11,Fall,2016-10-17T07:00Z +Cancel,161,2016,October,43,17,1,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-05-09,Fall,2016-10-17T07:00Z +Cancel,161,2016,October,43,17,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-08-10,Fall,2016-10-17T07:00Z +Cancel,161,2016,October,43,17,1,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Canceled,2016-05-09,Fall,2016-10-17T07:00Z +Cancel,17,2016,October,43,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-10-04,Fall,2016-10-17T07:00Z +Cancel,22,2016,October,43,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-09-29,Fall,2016-10-17T07:00Z +Cancel,154,2016,October,43,17,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.25,0,0,Canceled,2016-07-21,Fall,2016-10-17T07:00Z +Cancel,58,2016,October,43,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-09-04,Fall,2016-10-17T07:00Z +Cancel,62,2016,October,43,17,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2016-08-24,Fall,2016-10-17T07:00Z +Cancel,30,2016,October,43,17,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.25,0,0,Canceled,2016-09-18,Fall,2016-10-17T07:00Z +Cancel,95,2016,October,43,17,1,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-07-19,Fall,2016-10-17T07:00Z +Cancel,224,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,62.29,0,0,Canceled,2016-03-08,Fall,2016-10-17T07:00Z +Cancel,180,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57,0,0,Canceled,2016-05-02,Fall,2016-10-17T07:00Z +Cancel,224,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.29,0,0,Canceled,2016-04-27,Fall,2016-10-17T07:00Z +Cancel,224,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,62.29,0,0,Canceled,2016-03-08,Fall,2016-10-17T07:00Z +Cancel,224,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.29,0,0,Canceled,2016-04-27,Fall,2016-10-17T07:00Z +Cancel,109,2016,October,43,17,3,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-06-30,Fall,2016-10-17T07:00Z +Cancel,0,2016,October,43,18,0,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2016-10-18,Fall,2016-10-18T07:00Z +Cancel,47,2016,October,43,18,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,52,0,0,Canceled,2016-10-04,Fall,2016-10-18T07:00Z +Cancel,71,2016,October,43,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2016-09-20,Fall,2016-10-18T07:00Z +Cancel,71,2016,October,43,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2016-09-20,Fall,2016-10-18T07:00Z +Cancel,71,2016,October,43,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2016-09-20,Fall,2016-10-18T07:00Z +Cancel,71,2016,October,43,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2016-09-20,Fall,2016-10-18T07:00Z +Cancel,18,2016,October,43,18,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,3,Canceled,2016-10-02,Fall,2016-10-18T07:00Z +Cancel,71,2016,October,43,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2016-09-20,Fall,2016-10-18T07:00Z +Cancel,41,2016,October,43,18,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.67,0,1,Canceled,2016-09-26,Fall,2016-10-18T07:00Z +Cancel,22,2016,October,43,18,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-10-06,Fall,2016-10-18T07:00Z +Cancel,14,2016,October,43,18,0,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,0,0,Canceled,2016-10-06,Fall,2016-10-18T07:00Z +Cancel,18,2016,October,43,18,0,3,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Canceled,2016-10-08,Fall,2016-10-18T07:00Z +Cancel,386,2016,October,43,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50.4,0,2,Canceled,2015-10-09,Fall,2016-10-18T07:00Z +Cancel,91,2016,October,43,18,0,4,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,75.5,0,0,Canceled,2016-07-21,Fall,2016-10-18T07:00Z +Cancel,132,2016,October,43,18,0,4,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-06-09,Fall,2016-10-18T07:00Z +Cancel,116,2016,October,43,18,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-06-24,Fall,2016-10-18T07:00Z +Cancel,132,2016,October,43,18,0,4,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,103,0,0,Canceled,2016-06-09,Fall,2016-10-18T07:00Z +Cancel,63,2016,October,43,18,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74,0,2,Canceled,2016-10-05,Fall,2016-10-18T07:00Z +Cancel,111,2016,October,43,18,0,4,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-07-21,Fall,2016-10-18T07:00Z +Cancel,386,2016,October,43,18,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,50.4,0,2,Canceled,2015-10-09,Fall,2016-10-18T07:00Z +Cancel,2,2016,October,43,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,52.8,0,0,Canceled,2016-10-17,Fall,2016-10-19T07:00Z +Cancel,127,2016,October,43,19,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-10-06,Fall,2016-10-19T07:00Z +Cancel,127,2016,October,43,19,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-10-06,Fall,2016-10-19T07:00Z +Cancel,15,2016,October,43,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2016-10-10,Fall,2016-10-19T07:00Z +Cancel,23,2016,October,43,19,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2016-10-05,Fall,2016-10-19T07:00Z +Cancel,23,2016,October,43,19,0,3,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-10-06,Fall,2016-10-19T07:00Z +Cancel,211,2016,October,43,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.8,0,0,Canceled,2016-03-22,Fall,2016-10-19T07:00Z +Cancel,123,2016,October,43,19,0,4,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-09-29,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,2,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,1,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,1,4,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,79,0,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Cancel,127,2016,October,43,19,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Canceled,2016-06-28,Fall,2016-10-19T07:00Z +Cancel,20,2016,October,43,19,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-09-29,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,51,0,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Keep,385,2016,October,43,19,2,5,2,0,1,BB,GBR,Groups,Corporate, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient-Party,57,1,1,Check-Out,2016-10-26,Fall,2016-10-19T07:00Z +Cancel,145,2016,October,43,19,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.14,0,0,Canceled,2016-06-13,Fall,2016-10-19T07:00Z +Cancel,123,2016,October,43,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-06-26,Fall,2016-10-19T07:00Z +Cancel,99,2016,October,43,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-09-07,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,0,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-07-11,Fall,2016-10-20T07:00Z +Cancel,113,2016,October,43,20,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-06-29,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Cancel,34,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-16,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,386,2016,October,43,20,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Canceled,2016-09-14,Fall,2016-10-20T07:00Z +Cancel,3,2016,October,43,20,2,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-10-17,Fall,2016-10-20T07:00Z +Cancel,101,2016,October,43,20,2,5,3,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Canceled,2016-07-11,Fall,2016-10-20T07:00Z +Cancel,130,2016,October,43,21,0,1,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-06-20,Fall,2016-10-21T07:00Z +Cancel,111,2016,October,43,21,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-09-25,Fall,2016-10-21T07:00Z +Cancel,70,2016,October,43,21,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Canceled,2016-08-31,Fall,2016-10-21T07:00Z +Cancel,24,2016,October,43,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,60,0,1,Canceled,2016-10-11,Fall,2016-10-21T07:00Z +Cancel,130,2016,October,43,21,0,1,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-06-20,Fall,2016-10-21T07:00Z +Cancel,131,2016,October,43,21,0,2,3,1,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,171,0,0,Canceled,2016-06-20,Fall,2016-10-21T07:00Z +Keep,8,2016,October,43,21,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,129,0,0,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Cancel,135,2016,October,43,21,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-07-13,Fall,2016-10-21T07:00Z +Cancel,124,2016,October,43,21,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,92.4,0,2,No-Show,2016-10-21,Fall,2016-10-21T07:00Z +Cancel,110,2016,October,43,21,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,77,0,0,Canceled,2016-08-01,Fall,2016-10-21T07:00Z +Cancel,135,2016,October,43,21,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-07-13,Fall,2016-10-21T07:00Z +Cancel,24,2016,October,43,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Canceled,2016-10-21,Fall,2016-10-21T07:00Z +Cancel,179,2016,October,43,21,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.33,0,3,Canceled,2016-10-05,Fall,2016-10-21T07:00Z +Cancel,27,2016,October,43,21,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2016-10-05,Fall,2016-10-21T07:00Z +Cancel,130,2016,October,43,21,0,1,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2016-06-20,Fall,2016-10-21T07:00Z +Cancel,173,2016,October,43,21,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.33,0,0,Canceled,2016-05-01,Fall,2016-10-21T07:00Z +Cancel,78,2016,October,43,21,2,2,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,48.88,0,0,Canceled,2016-08-04,Fall,2016-10-21T07:00Z +Cancel,164,2016,October,43,21,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.5,0,3,Canceled,2016-09-06,Fall,2016-10-21T07:00Z +Cancel,4,2016,October,43,21,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-10-17,Fall,2016-10-21T07:00Z +Cancel,73,2016,October,43,21,2,3,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2016-08-16,Fall,2016-10-21T07:00Z +Cancel,4,2016,October,43,21,2,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-10-17,Fall,2016-10-21T07:00Z +Cancel,319,2016,October,43,21,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,78.31,0,0,Canceled,2016-09-17,Fall,2016-10-21T07:00Z +Cancel,314,2016,October,43,21,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,82.8,0,0,Canceled,2016-09-08,Fall,2016-10-21T07:00Z +Cancel,100,2016,October,43,22,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-10-10,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Canceled,2016-08-01,Fall,2016-10-22T07:00Z +Cancel,138,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,141,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,115.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,110.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,66,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,115,0,0,Canceled,2016-10-03,Fall,2016-10-22T07:00Z +Cancel,138,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,17,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-10-11,Fall,2016-10-22T07:00Z +Cancel,17,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-10-11,Fall,2016-10-22T07:00Z +Cancel,82,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Canceled,2016-10-03,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,141,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,17,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-10-11,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,141,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Canceled,2016-10-03,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,110.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,5,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-10-17,Fall,2016-10-22T07:00Z +Cancel,17,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,0,Canceled,2016-10-11,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,115,0,0,Canceled,2016-08-03,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,138,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,138,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,115.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,110.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,2,2,1,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,4,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2016-10-20,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Canceled,2016-10-03,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,141,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,124,2016,October,43,22,2,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2016-09-23,Fall,2016-10-22T07:00Z +Cancel,17,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-10-11,Fall,2016-10-22T07:00Z +Cancel,138,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,135,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,178,2016,October,43,22,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.75,0,0,Canceled,2016-06-20,Fall,2016-10-22T07:00Z +Cancel,114,2016,October,43,22,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,88,0,2,Canceled,2016-07-18,Fall,2016-10-22T07:00Z +Cancel,119,2016,October,43,22,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-07-04,Fall,2016-10-22T07:00Z +Cancel,167,2016,October,43,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.57,0,0,Canceled,2016-05-10,Fall,2016-10-22T07:00Z +Cancel,18,2016,October,44,23,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,46,0,0,Canceled,2016-10-06,Fall,2016-10-23T07:00Z +Cancel,39,2016,October,44,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-09-14,Fall,2016-10-23T07:00Z +Cancel,59,2016,October,44,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,120,0,2,Canceled,2016-09-03,Fall,2016-10-23T07:00Z +Cancel,203,2016,October,44,23,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-04-04,Fall,2016-10-23T07:00Z +Cancel,151,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-06-12,Fall,2016-10-23T07:00Z +Cancel,89,2016,October,44,23,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,46,0,0,Canceled,2016-08-23,Fall,2016-10-23T07:00Z +Cancel,133,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-06-29,Fall,2016-10-23T07:00Z +Cancel,133,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-06-29,Fall,2016-10-23T07:00Z +Cancel,87,2016,October,44,23,2,4,2,0,0,HB,DZA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-07-30,Fall,2016-10-23T07:00Z +Cancel,76,2016,October,44,23,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-08-08,Fall,2016-10-23T07:00Z +Cancel,7,2016,October,44,24,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-10-17,Fall,2016-10-24T07:00Z +Cancel,35,2016,October,44,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-09-19,Fall,2016-10-24T07:00Z +Cancel,63,2016,October,44,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2016-09-13,Fall,2016-10-24T07:00Z +Cancel,29,2016,October,44,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2016-10-01,Fall,2016-10-24T07:00Z +Cancel,29,2016,October,44,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-10-01,Fall,2016-10-24T07:00Z +Cancel,28,2016,October,44,24,1,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51,0,0,Canceled,2016-09-28,Fall,2016-10-24T07:00Z +Cancel,31,2016,October,44,24,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-09-23,Fall,2016-10-24T07:00Z +Cancel,40,2016,October,44,24,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2016-09-14,Fall,2016-10-24T07:00Z +Cancel,50,2016,October,44,24,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2016-09-11,Fall,2016-10-24T07:00Z +Cancel,180,2016,October,44,24,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-08-30,Fall,2016-10-24T07:00Z +Cancel,66,2016,October,44,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,49,0,1,Canceled,2016-09-03,Fall,2016-10-24T07:00Z +Cancel,66,2016,October,44,24,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-09-03,Fall,2016-10-24T07:00Z +Cancel,176,2016,October,44,24,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-05-02,Fall,2016-10-24T07:00Z +Cancel,65,2016,October,44,24,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-08-20,Fall,2016-10-24T07:00Z +Cancel,86,2016,October,44,24,1,5,2,0,0,HB,DZA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,2,Canceled,2016-08-30,Fall,2016-10-24T07:00Z +Cancel,71,2016,October,44,24,2,5,2,1,1,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,106.2,0,2,Canceled,2016-08-27,Fall,2016-10-24T07:00Z +Cancel,72,2016,October,44,24,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,85.74,0,2,Canceled,2016-08-26,Fall,2016-10-24T07:00Z +Cancel,71,2016,October,44,24,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Canceled,2016-08-31,Fall,2016-10-24T07:00Z +Cancel,65,2016,October,44,24,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,76.2,0,0,Canceled,2016-08-29,Fall,2016-10-24T07:00Z +Cancel,43,2016,October,44,24,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,63,0,1,Canceled,2016-10-10,Fall,2016-10-24T07:00Z +Cancel,8,2016,October,44,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,40,0,0,No-Show,2016-10-25,Fall,2016-10-25T07:00Z +Cancel,0,2016,October,44,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,42,0,0,Canceled,2016-10-25,Fall,2016-10-25T07:00Z +Cancel,8,2016,October,44,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,40,0,0,No-Show,2016-10-25,Fall,2016-10-25T07:00Z +Keep,0,2016,October,44,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,48,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Cancel,20,2016,October,44,25,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.5,0,0,Canceled,2016-10-05,Fall,2016-10-25T07:00Z +Cancel,70,2016,October,44,25,0,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,166,0,0,Canceled,2016-08-17,Fall,2016-10-25T07:00Z +Cancel,51,2016,October,44,25,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2016-09-05,Fall,2016-10-25T07:00Z +Cancel,86,2016,October,44,25,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59.16,0,1,Canceled,2016-09-08,Fall,2016-10-25T07:00Z +Cancel,138,2016,October,44,25,2,7,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,161.67,0,0,Canceled,2016-08-18,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient-Party,63,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Cancel,0,2016,October,44,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,70,0,0,Canceled,2016-10-26,Fall,2016-10-26T07:00Z +Cancel,42,2016,October,44,26,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-09-15,Fall,2016-10-26T07:00Z +Cancel,65,2016,October,44,26,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,2,Canceled,2016-10-05,Fall,2016-10-26T07:00Z +Cancel,153,2016,October,44,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.86,0,0,Canceled,2016-05-30,Fall,2016-10-26T07:00Z +Cancel,78,2016,October,44,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59.66,0,1,Canceled,2016-08-11,Fall,2016-10-26T07:00Z +Cancel,213,2016,October,44,26,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79.84,0,0,Canceled,2016-08-25,Fall,2016-10-26T07:00Z +Cancel,79,2016,October,44,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,46.51,0,1,Canceled,2016-10-26,Fall,2016-10-26T07:00Z +Cancel,43,2016,October,44,26,2,5,2,0,0,BB,JEY,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2016-09-15,Fall,2016-10-26T07:00Z +Cancel,213,2016,October,44,26,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79.84,0,0,Canceled,2016-08-25,Fall,2016-10-26T07:00Z +Cancel,188,2016,October,44,26,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,37.2,0,0,Canceled,2016-07-20,Fall,2016-10-26T07:00Z +Cancel,79,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58.05,0,3,Canceled,2016-08-30,Fall,2016-10-26T07:00Z +Cancel,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.04,0,0,Canceled,2016-09-02,Fall,2016-10-26T07:00Z +Cancel,188,2016,October,44,26,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,37.2,0,0,Canceled,2016-07-20,Fall,2016-10-26T07:00Z +Cancel,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.04,0,0,Canceled,2016-09-02,Fall,2016-10-26T07:00Z +Cancel,79,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58.05,0,3,Canceled,2016-08-30,Fall,2016-10-26T07:00Z +Cancel,188,2016,October,44,26,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,37.2,0,0,Canceled,2016-07-20,Fall,2016-10-26T07:00Z +Cancel,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.04,0,0,Canceled,2016-09-02,Fall,2016-10-26T07:00Z +Cancel,79,2016,October,44,26,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58.05,0,3,Canceled,2016-08-30,Fall,2016-10-26T07:00Z +Cancel,0,2016,October,44,27,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,52.8,0,0,Canceled,2016-10-27,Fall,2016-10-27T07:00Z +Cancel,0,2016,October,44,27,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,52.8,0,0,Canceled,2016-10-27,Fall,2016-10-27T07:00Z +Cancel,8,2016,October,44,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 461,0,Transient,50,0,0,Canceled,2016-10-24,Fall,2016-10-27T07:00Z +Cancel,0,2016,October,44,27,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-10-27,Fall,2016-10-27T07:00Z +Cancel,142,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-08-01,Fall,2016-10-27T07:00Z +Cancel,87,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-10-17,Fall,2016-10-27T07:00Z +Cancel,87,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-10-17,Fall,2016-10-27T07:00Z +Cancel,142,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-08-01,Fall,2016-10-27T07:00Z +Cancel,248,2016,October,44,27,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2016-08-23,Fall,2016-10-27T07:00Z +Cancel,24,2016,October,44,27,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2016-10-09,Fall,2016-10-27T07:00Z +Cancel,87,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-10-16,Fall,2016-10-27T07:00Z +Cancel,142,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-08-01,Fall,2016-10-27T07:00Z +Cancel,31,2016,October,44,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Canceled,2016-10-15,Fall,2016-10-27T07:00Z +Cancel,121,2016,October,44,27,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-07-11,Fall,2016-10-27T07:00Z +Cancel,53,2016,October,44,27,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.75,0,3,Canceled,2016-10-03,Fall,2016-10-27T07:00Z +Cancel,20,2016,October,44,27,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-10-12,Fall,2016-10-27T07:00Z +Cancel,69,2016,October,44,27,2,4,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,116,0,0,Canceled,2016-08-30,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,8,No Deposit , 240, NULL,0,Transient,53.79,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,117,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,55.43,0,0,Canceled,2016-07-02,Fall,2016-10-27T07:00Z +Cancel,117,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , 240, NULL,0,Transient-Party,66.02,0,0,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,117,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient-Party,66.02,0,0,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,181,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,8,No Deposit , 240, NULL,0,Transient-Party,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,177,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,7,No Deposit , 240, NULL,0,Transient-Party,55.25,0,0,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,181,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,6,No Deposit , 240, NULL,0,Transient-Party,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,96,2016,October,44,27,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,66.02,0,0,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,10,No Deposit , 240, NULL,0,Transient,53.79,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,66,2016,October,44,27,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.49,0,0,Canceled,2016-09-28,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,16,No Deposit , 240, NULL,0,Transient,46.88,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,7,No Deposit , 240, NULL,0,Transient,55.25,0,1,Canceled,2016-07-25,Fall,2016-10-27T07:00Z +Cancel,206,2016,October,44,27,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient-Party,65.43,0,1,Canceled,2016-04-29,Fall,2016-10-27T07:00Z +Cancel,3,2016,October,44,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2016-10-26,Fall,2016-10-28T07:00Z +Cancel,0,2016,October,44,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-10-28,Fall,2016-10-28T07:00Z +Cancel,79,2016,October,44,28,0,1,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 127, NULL,0,Transient,0,0,1,Canceled,2016-10-27,Fall,2016-10-28T07:00Z +Cancel,0,2016,October,44,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-10-28,Fall,2016-10-28T07:00Z +Cancel,179,2016,October,44,28,0,1,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-10-13,Fall,2016-10-28T07:00Z +Cancel,120,2016,October,44,28,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-06-30,Fall,2016-10-28T07:00Z +Cancel,179,2016,October,44,28,0,1,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-10-13,Fall,2016-10-28T07:00Z +Keep,14,2016,October,44,28,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,16,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,44,1,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Cancel,10,2016,October,44,28,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2016-10-27,Fall,2016-10-28T07:00Z +Cancel,79,2016,October,44,28,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2016-08-30,Fall,2016-10-28T07:00Z +Cancel,42,2016,October,44,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,57.55,0,0,No-Show,2016-10-28,Fall,2016-10-28T07:00Z +Cancel,32,2016,October,44,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 336, NULL,0,Transient,70,0,0,Canceled,2016-09-28,Fall,2016-10-28T07:00Z +Cancel,129,2016,October,44,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,48.95,0,2,Canceled,2016-09-02,Fall,2016-10-28T07:00Z +Cancel,72,2016,October,44,28,2,4,2,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,84.4,0,2,Canceled,2016-08-23,Fall,2016-10-28T07:00Z +Cancel,69,2016,October,44,28,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,59.75,0,2,Canceled,2016-08-23,Fall,2016-10-28T07:00Z +Cancel,178,2016,October,44,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,42.56,0,0,Canceled,2016-07-22,Fall,2016-10-28T07:00Z +Cancel,131,2016,October,44,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63.03,0,0,Canceled,2016-06-21,Fall,2016-10-28T07:00Z +Cancel,255,2016,October,44,28,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,41.27,0,0,Canceled,2016-10-28,Fall,2016-10-28T07:00Z +Cancel,131,2016,October,44,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63.03,0,0,Canceled,2016-06-21,Fall,2016-10-28T07:00Z +Cancel,131,2016,October,44,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63.03,0,0,Canceled,2016-06-21,Fall,2016-10-28T07:00Z +Cancel,131,2016,October,44,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63.03,0,0,Canceled,2016-06-21,Fall,2016-10-28T07:00Z +Cancel,178,2016,October,44,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,42.56,0,0,Canceled,2016-07-22,Fall,2016-10-28T07:00Z +Cancel,208,2016,October,44,28,2,7,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-04-27,Fall,2016-10-28T07:00Z +Keep,18,2016,October,44,29,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,18,2016,October,44,29,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,12,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Cancel,1,2016,October,44,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,1,Canceled,2016-10-29,Fall,2016-10-29T07:00Z +Cancel,18,2016,October,44,29,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2016-10-28,Fall,2016-10-29T07:00Z +Cancel,50,2016,October,44,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-10-19,Fall,2016-10-29T07:00Z +Cancel,16,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Canceled,2016-10-24,Fall,2016-10-29T07:00Z +Cancel,18,2016,October,44,29,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,No-Show,2016-10-29,Fall,2016-10-29T07:00Z +Cancel,67,2016,October,44,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.5,0,3,Canceled,2016-09-26,Fall,2016-10-29T07:00Z +Cancel,39,2016,October,44,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74,0,0,Canceled,2016-09-20,Fall,2016-10-29T07:00Z +Cancel,40,2016,October,44,29,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114.73,0,1,Canceled,2016-10-07,Fall,2016-10-29T07:00Z +Cancel,39,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.23,0,0,Canceled,2016-09-20,Fall,2016-10-29T07:00Z +Cancel,40,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.73,0,1,Canceled,2016-10-07,Fall,2016-10-29T07:00Z +Cancel,112,2016,October,44,29,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65.27,0,1,Canceled,2016-09-01,Fall,2016-10-29T07:00Z +Cancel,46,2016,October,44,29,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112,0,2,Canceled,2016-10-26,Fall,2016-10-29T07:00Z +Cancel,58,2016,October,44,29,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.52,0,1,Canceled,2016-09-05,Fall,2016-10-29T07:00Z +Cancel,142,2016,October,44,29,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,103.57,0,0,Canceled,2016-10-18,Fall,2016-10-29T07:00Z +Cancel,101,2016,October,44,29,2,5,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95.71,0,0,Canceled,2016-07-26,Fall,2016-10-29T07:00Z +Cancel,49,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.86,0,1,Canceled,2016-09-21,Fall,2016-10-29T07:00Z +Cancel,126,2016,October,44,29,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.29,0,0,Canceled,2016-07-25,Fall,2016-10-29T07:00Z +Cancel,201,2016,October,44,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,42.29,0,0,Canceled,2016-04-12,Fall,2016-10-29T07:00Z +Cancel,96,2016,October,44,29,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.1,0,1,Canceled,2016-09-06,Fall,2016-10-29T07:00Z +Cancel,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,63,0,0,Canceled,2016-10-24,Fall,2016-10-30T07:00Z +Cancel,2,2016,October,45,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Canceled,2016-10-30,Fall,2016-10-30T07:00Z +Cancel,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,63,0,0,Canceled,2016-10-24,Fall,2016-10-30T07:00Z +Cancel,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,63,0,0,Canceled,2016-10-27,Fall,2016-10-30T07:00Z +Cancel,5,2016,October,45,30,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Canceled,2016-10-29,Fall,2016-10-30T07:00Z +Cancel,81,2016,October,45,30,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,44.53,0,0,No-Show,2016-10-30,Fall,2016-10-30T07:00Z +Cancel,19,2016,October,45,30,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,78,0,2,Canceled,2016-10-19,Fall,2016-10-30T07:00Z +Cancel,20,2016,October,45,30,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.1,0,1,Canceled,2016-10-13,Fall,2016-10-30T07:00Z +Cancel,186,2016,October,45,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,49.17,0,0,Canceled,2016-06-09,Fall,2016-10-30T07:00Z +Cancel,34,2016,October,45,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.57,0,0,Canceled,2016-10-02,Fall,2016-10-30T07:00Z +Cancel,89,2016,October,45,30,4,6,2,0,0,HB,ITA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,94.8,0,0,Canceled,2016-08-10,Fall,2016-10-30T07:00Z +Cancel,75,2016,October,45,31,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,3,Canceled,2016-09-19,Fall,2016-10-31T07:00Z +Cancel,245,2016,October,45,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-04-26,Fall,2016-10-31T07:00Z +Cancel,245,2016,October,45,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-04-26,Fall,2016-10-31T07:00Z +Cancel,192,2016,October,45,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30.86,0,0,Canceled,2016-07-20,Fall,2016-10-31T07:00Z +Cancel,96,2016,October,45,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-08-05,Fall,2016-10-31T07:00Z +Cancel,76,2016,October,45,31,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Canceled,2016-08-25,Fall,2016-10-31T07:00Z +Cancel,53,2016,October,45,31,2,5,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93.57,0,0,Canceled,2016-09-24,Fall,2016-10-31T07:00Z +Cancel,214,2016,October,45,31,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 156, NULL,0,Transient,80.57,0,1,Canceled,2016-09-05,Fall,2016-10-31T07:00Z +Cancel,87,2016,October,45,31,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,38.03,0,0,Canceled,2016-10-17,Fall,2016-10-31T07:00Z +Cancel,70,2016,October,45,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Canceled,2016-08-25,Fall,2016-10-31T07:00Z +Cancel,214,2016,October,45,31,2,5,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,32.23,0,1,Canceled,2016-08-02,Fall,2016-10-31T07:00Z +Cancel,1,2016,November,45,1,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,0,No-Show,2016-11-01,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-03-11,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,22,2016,November,45,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63,0,2,Canceled,2016-10-15,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-03-11,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-03-11,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,378,2016,November,45,1,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 248, NULL,0,Transient,46,0,0,Canceled,2016-10-18,Fall,2016-11-01T07:00Z +Cancel,58,2016,November,45,1,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-09-24,Fall,2016-11-01T07:00Z +Cancel,46,2016,November,45,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-02,Fall,2016-11-01T07:00Z +Cancel,113,2016,November,45,2,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-30,Fall,2016-11-02T07:00Z +Cancel,113,2016,November,45,2,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-30,Fall,2016-11-02T07:00Z +Cancel,113,2016,November,45,2,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-30,Fall,2016-11-02T07:00Z +Cancel,113,2016,November,45,2,0,2,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-30,Fall,2016-11-02T07:00Z +Cancel,42,2016,November,45,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-10-01,Fall,2016-11-02T07:00Z +Cancel,37,2016,November,45,2,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-05,Fall,2016-11-02T07:00Z +Cancel,27,2016,November,45,2,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-10-07,Fall,2016-11-02T07:00Z +Cancel,49,2016,November,45,2,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,42.1,0,0,Canceled,2016-09-14,Fall,2016-11-02T07:00Z +Cancel,20,2016,November,45,2,2,5,1,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95.91,0,0,Canceled,2016-10-13,Fall,2016-11-02T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,13,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,13,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,13,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,292,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,13,2016,November,45,3,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,0,Canceled,2016-10-21,Fall,2016-11-03T07:00Z +Cancel,44,2016,November,45,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-09-24,Fall,2016-11-03T07:00Z +Cancel,70,2016,November,45,3,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Canceled,2016-09-24,Fall,2016-11-03T07:00Z +Cancel,192,2016,November,45,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-06-28,Fall,2016-11-03T07:00Z +Cancel,66,2016,November,45,3,2,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Canceled,2016-09-01,Fall,2016-11-03T07:00Z +Cancel,0,2016,November,45,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,70,0,0,Canceled,2016-11-04,Fall,2016-11-04T07:00Z +Cancel,57,2016,November,45,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 105, NULL,0,Transient,37.8,0,0,Canceled,2016-10-05,Fall,2016-11-04T07:00Z +Cancel,64,2016,November,45,4,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-09-02,Fall,2016-11-04T07:00Z +Cancel,46,2016,November,45,4,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-10-10,Fall,2016-11-04T07:00Z +Cancel,22,2016,November,45,4,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2016-10-14,Fall,2016-11-04T07:00Z +Cancel,46,2016,November,45,4,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-10-10,Fall,2016-11-04T07:00Z +Cancel,26,2016,November,45,4,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,84.6,0,0,Canceled,2016-10-09,Fall,2016-11-04T07:00Z +Cancel,24,2016,November,45,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,54.98,0,0,Canceled,2016-10-11,Fall,2016-11-04T07:00Z +Cancel,84,2016,November,45,5,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-19,Fall,2016-11-05T07:00Z +Cancel,201,2016,November,45,5,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-04-18,Fall,2016-11-05T07:00Z +Cancel,42,2016,November,45,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-10-11,Fall,2016-11-05T07:00Z +Cancel,46,2016,November,45,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-24,Fall,2016-11-05T07:00Z +Cancel,23,2016,November,45,5,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-11-04,Fall,2016-11-05T07:00Z +Cancel,33,2016,November,45,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-10-13,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,99,2016,November,45,5,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-30,Fall,2016-11-05T07:00Z +Cancel,201,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,201,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,99,2016,November,45,5,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-08-28,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,201,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,99,2016,November,45,5,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-30,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,201,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,211,2016,November,45,5,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-07-18,Fall,2016-11-05T07:00Z +Cancel,44,2016,November,45,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2016-09-23,Fall,2016-11-05T07:00Z +Cancel,75,2016,November,45,5,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2016-09-27,Fall,2016-11-05T07:00Z +Cancel,44,2016,November,45,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,0,Canceled,2016-09-22,Fall,2016-11-05T07:00Z +Cancel,47,2016,November,45,5,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,88.96,0,0,Canceled,2016-09-20,Fall,2016-11-05T07:00Z +Cancel,13,2016,November,46,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,43.2,0,0,Canceled,2016-10-27,Fall,2016-11-06T07:00Z +Cancel,13,2016,November,46,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,43.2,0,0,Canceled,2016-10-27,Fall,2016-11-06T07:00Z +Cancel,36,2016,November,46,6,2,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-10-25,Fall,2016-11-06T07:00Z +Cancel,33,2016,November,46,6,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-16,Fall,2016-11-06T07:00Z +Cancel,67,2016,November,46,6,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-09-21,Fall,2016-11-06T07:00Z +Cancel,224,2016,November,46,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,35.1,0,0,Canceled,2016-06-06,Fall,2016-11-06T07:00Z +Cancel,98,2016,November,46,6,3,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-02,Fall,2016-11-06T07:00Z +Cancel,44,2016,November,46,6,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-24,Fall,2016-11-06T07:00Z +Cancel,0,2016,November,46,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,85,0,0,Canceled,2016-11-07,Fall,2016-11-07T08:00Z +Cancel,0,2016,November,46,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,85,0,0,Canceled,2016-11-07,Fall,2016-11-07T08:00Z +Cancel,28,2016,November,46,7,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,No-Show,2016-11-07,Fall,2016-11-07T08:00Z +Cancel,157,2016,November,46,7,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55.13,0,2,Canceled,2016-10-27,Fall,2016-11-07T08:00Z +Cancel,25,2016,November,46,7,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.66,0,1,Canceled,2016-10-14,Fall,2016-11-07T08:00Z +Cancel,21,2016,November,46,7,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,33.26,0,0,Canceled,2016-11-03,Fall,2016-11-07T08:00Z +Cancel,32,2016,November,46,7,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,51.84,0,0,Canceled,2016-10-10,Fall,2016-11-07T08:00Z +Cancel,194,2016,November,46,7,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,26.93,0,0,Canceled,2016-10-10,Fall,2016-11-07T08:00Z +Cancel,20,2016,November,46,8,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,67.5,0,0,Canceled,2016-10-19,Fall,2016-11-08T08:00Z +Cancel,38,2016,November,46,8,0,3,2,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-10-01,Fall,2016-11-08T08:00Z +Cancel,38,2016,November,46,8,0,3,1,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-10-01,Fall,2016-11-08T08:00Z +Cancel,75,2016,November,46,8,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-10-29,Fall,2016-11-08T08:00Z +Cancel,43,2016,November,46,8,0,4,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,46.8,0,2,Canceled,2016-10-14,Fall,2016-11-08T08:00Z +Cancel,32,2016,November,46,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,37.8,0,2,Canceled,2016-10-08,Fall,2016-11-08T08:00Z +Cancel,245,2016,November,46,8,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,0,2,Canceled,2016-10-26,Fall,2016-11-08T08:00Z +Cancel,93,2016,November,46,8,4,11,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2016-09-30,Fall,2016-11-08T08:00Z +Cancel,2,2016,November,46,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 291, NULL,0,Transient,30,0,0,Canceled,2016-11-07,Fall,2016-11-09T08:00Z +Cancel,86,2016,November,46,9,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-15,Fall,2016-11-09T08:00Z +Cancel,105,2016,November,46,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-10-04,Fall,2016-11-10T08:00Z +Cancel,61,2016,November,46,10,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,73.8,0,0,Canceled,2016-09-10,Fall,2016-11-10T08:00Z +Cancel,37,2016,November,46,10,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-10-25,Fall,2016-11-10T08:00Z +Cancel,37,2016,November,46,10,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-25,Fall,2016-11-10T08:00Z +Cancel,74,2016,November,46,10,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2016-10-16,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,150,2016,November,46,10,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Canceled,2016-07-22,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,37,2016,November,46,10,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-26,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,135,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-31,Fall,2016-11-10T08:00Z +Cancel,19,2016,November,46,10,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,No-Show,2016-11-10,Fall,2016-11-10T08:00Z +Cancel,33,2016,November,46,11,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-04,Fall,2016-11-11T08:00Z +Cancel,33,2016,November,46,11,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-10,Fall,2016-11-11T08:00Z +Cancel,33,2016,November,46,11,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-09,Fall,2016-11-11T08:00Z +Cancel,53,2016,November,46,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Canceled,2016-10-06,Fall,2016-11-11T08:00Z +Cancel,39,2016,November,46,11,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Canceled,2016-10-17,Fall,2016-11-11T08:00Z +Cancel,31,2016,November,46,11,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.4,0,2,Canceled,2016-10-25,Fall,2016-11-11T08:00Z +Cancel,58,2016,November,46,11,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-13,Fall,2016-11-11T08:00Z +Cancel,100,2016,November,46,11,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,3,Canceled,2016-10-19,Fall,2016-11-11T08:00Z +Cancel,85,2016,November,46,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-08-18,Fall,2016-11-11T08:00Z +Cancel,53,2016,November,46,11,2,3,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-09-22,Fall,2016-11-11T08:00Z +Cancel,53,2016,November,46,11,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,49.9,0,1,Canceled,2016-10-11,Fall,2016-11-11T08:00Z +Cancel,122,2016,November,46,11,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,4,No Deposit , 240, NULL,0,Transient,37.8,0,3,Canceled,2016-10-28,Fall,2016-11-11T08:00Z +Cancel,59,2016,November,46,12,0,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-09-21,Fall,2016-11-12T08:00Z +Cancel,32,2016,November,46,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2016-10-23,Fall,2016-11-12T08:00Z +Cancel,40,2016,November,46,12,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Canceled,2016-10-25,Fall,2016-11-12T08:00Z +Cancel,217,2016,November,46,12,0,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-10-14,Fall,2016-11-12T08:00Z +Cancel,51,2016,November,46,12,0,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-14,Fall,2016-11-12T08:00Z +Cancel,44,2016,November,46,12,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Canceled,2016-10-23,Fall,2016-11-12T08:00Z +Cancel,159,2016,November,46,12,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,44.64,0,0,Canceled,2016-06-07,Fall,2016-11-12T08:00Z +Cancel,53,2016,November,46,12,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.81,0,1,Canceled,2016-09-29,Fall,2016-11-12T08:00Z +Cancel,47,2016,November,46,12,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,0,Canceled,2016-09-27,Fall,2016-11-12T08:00Z +Cancel,53,2016,November,46,12,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.81,0,1,Canceled,2016-09-29,Fall,2016-11-12T08:00Z +Cancel,30,2016,November,46,12,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,36.84,0,0,Canceled,2016-10-13,Fall,2016-11-12T08:00Z +Cancel,211,2016,November,46,12,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-17,Fall,2016-11-12T08:00Z +Cancel,54,2016,November,46,12,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-09-19,Fall,2016-11-12T08:00Z +Cancel,81,2016,November,46,12,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-09-30,Fall,2016-11-12T08:00Z +Cancel,139,2016,November,46,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-07-07,Fall,2016-11-12T08:00Z +Cancel,59,2016,November,46,12,9,21,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.7,0,1,Canceled,2016-10-20,Fall,2016-11-12T08:00Z +Cancel,59,2016,November,46,12,9,21,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.7,0,1,Canceled,2016-10-19,Fall,2016-11-12T08:00Z +Cancel,124,2016,November,47,14,1,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,57.28,0,0,Canceled,2016-07-13,Fall,2016-11-14T08:00Z +Cancel,0,2016,November,47,14,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,No-Show,2016-11-14,Fall,2016-11-14T08:00Z +Cancel,1,2016,November,47,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-11-14,Fall,2016-11-14T08:00Z +Cancel,0,2016,November,47,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-11-14,Fall,2016-11-14T08:00Z +Cancel,21,2016,November,47,14,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-11-02,Fall,2016-11-14T08:00Z +Cancel,0,2016,November,47,14,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 478,0,Transient,45,0,1,Canceled,2016-11-14,Fall,2016-11-14T08:00Z +Cancel,48,2016,November,47,14,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Canceled,2016-09-27,Fall,2016-11-14T08:00Z +Cancel,136,2016,November,47,14,3,7,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-07-01,Fall,2016-11-14T08:00Z +Cancel,50,2016,November,47,15,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,41.18,0,0,Canceled,2016-10-31,Fall,2016-11-15T08:00Z +Cancel,47,2016,November,47,16,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-01,Fall,2016-11-16T08:00Z +Cancel,73,2016,November,47,16,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-11-04,Fall,2016-11-16T08:00Z +Cancel,22,2016,November,47,16,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,38.7,0,1,Canceled,2016-11-03,Fall,2016-11-16T08:00Z +Cancel,185,2016,November,47,17,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Canceled,2016-08-30,Fall,2016-11-17T08:00Z +Cancel,42,2016,November,47,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,1,Canceled,2016-10-06,Fall,2016-11-17T08:00Z +Cancel,116,2016,November,47,17,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-07-28,Fall,2016-11-17T08:00Z +Cancel,100,2016,November,47,17,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Canceled,2016-11-07,Fall,2016-11-17T08:00Z +Cancel,100,2016,November,47,17,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Canceled,2016-11-07,Fall,2016-11-17T08:00Z +Cancel,80,2016,November,47,17,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-12,Fall,2016-11-17T08:00Z +Cancel,80,2016,November,47,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Canceled,2016-10-24,Fall,2016-11-17T08:00Z +Cancel,115,2016,November,47,17,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Canceled,2016-11-07,Fall,2016-11-17T08:00Z +Cancel,94,2016,November,47,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-08-31,Fall,2016-11-17T08:00Z +Cancel,37,2016,November,47,17,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-21,Fall,2016-11-17T08:00Z +Cancel,52,2016,November,47,17,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-06,Fall,2016-11-17T08:00Z +Cancel,28,2016,November,47,17,2,5,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-10-20,Fall,2016-11-17T08:00Z +Cancel,8,2016,November,47,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-11-11,Fall,2016-11-18T08:00Z +Cancel,21,2016,November,47,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Canceled,2016-11-07,Fall,2016-11-18T08:00Z +Cancel,45,2016,November,47,18,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,46.96,0,1,Canceled,2016-11-08,Fall,2016-11-18T08:00Z +Cancel,46,2016,November,47,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-10-16,Fall,2016-11-18T08:00Z +Cancel,91,2016,November,47,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-05,Fall,2016-11-18T08:00Z +Cancel,65,2016,November,47,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,37,0,0,Canceled,2016-09-16,Fall,2016-11-18T08:00Z +Cancel,84,2016,November,47,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-03,Fall,2016-11-18T08:00Z +Cancel,67,2016,November,47,18,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,64,0,0,Canceled,2016-10-25,Fall,2016-11-18T08:00Z +Cancel,94,2016,November,47,18,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.83,0,2,Canceled,2016-08-17,Fall,2016-11-18T08:00Z +Keep,24,2016,November,47,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 26, NULL,0,Transient,42.4,0,3,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Cancel,44,2016,November,47,19,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-07,Fall,2016-11-19T08:00Z +Cancel,44,2016,November,47,19,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-07,Fall,2016-11-19T08:00Z +Cancel,110,2016,November,47,19,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,0,Canceled,2016-08-03,Fall,2016-11-19T08:00Z +Cancel,20,2016,November,47,19,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-10-31,Fall,2016-11-19T08:00Z +Cancel,40,2016,November,47,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-26,Fall,2016-11-19T08:00Z +Cancel,25,2016,November,48,20,2,1,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Canceled,2016-11-09,Fall,2016-11-20T08:00Z +Cancel,5,2016,November,48,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65.83,0,3,Canceled,2016-11-20,Fall,2016-11-20T08:00Z +Cancel,0,2016,November,48,21,0,0,0,0,0,SC,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,P,P,0,No Deposit , NULL, 386,0,Group,0,0,0,Canceled,2016-11-21,Fall,2016-11-21T08:00Z +Cancel,66,2016,November,48,21,1,0,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,2,Canceled,2016-10-21,Fall,2016-11-21T08:00Z +Cancel,67,2016,November,48,21,1,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,56.16,0,0,Canceled,2016-09-16,Fall,2016-11-21T08:00Z +Cancel,159,2016,November,48,21,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-06-15,Fall,2016-11-21T08:00Z +Cancel,64,2016,November,48,21,1,3,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-09-18,Fall,2016-11-21T08:00Z +Cancel,163,2016,November,48,21,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.6,0,2,Canceled,2016-11-09,Fall,2016-11-21T08:00Z +Cancel,18,2016,November,48,21,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,32,0,0,Canceled,2016-11-07,Fall,2016-11-21T08:00Z +Cancel,40,2016,November,48,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,59.64,0,1,Canceled,2016-10-13,Fall,2016-11-21T08:00Z +Cancel,159,2016,November,48,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-07,Fall,2016-11-21T08:00Z +Cancel,56,2016,November,48,21,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-11-08,Fall,2016-11-21T08:00Z +Cancel,32,2016,November,48,22,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2016-10-22,Fall,2016-11-22T08:00Z +Cancel,1,2016,November,48,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,55,0,0,Canceled,2016-11-22,Fall,2016-11-22T08:00Z +Cancel,11,2016,November,48,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-16,Fall,2016-11-22T08:00Z +Cancel,44,2016,November,48,22,2,6,2,0,0,BB,JEY,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-11,Fall,2016-11-22T08:00Z +Cancel,7,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 112,0,Transient-Party,30,0,0,Canceled,2016-11-23,Fall,2016-11-23T08:00Z +Cancel,7,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 112,0,Transient-Party,30,0,0,Canceled,2016-11-17,Fall,2016-11-23T08:00Z +Cancel,7,2016,November,48,23,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 112,0,Transient-Party,35,0,1,Canceled,2016-11-23,Fall,2016-11-23T08:00Z +Cancel,32,2016,November,48,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,43.65,0,1,Canceled,2016-11-07,Fall,2016-11-23T08:00Z +Cancel,59,2016,November,48,23,0,4,1,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46.8,0,2,Canceled,2016-10-15,Fall,2016-11-23T08:00Z +Cancel,199,2016,November,48,23,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.6,0,0,No-Show,2016-11-23,Fall,2016-11-23T08:00Z +Cancel,59,2016,November,48,24,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-17,Fall,2016-11-24T08:00Z +Cancel,215,2016,November,48,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,55.8,0,0,Canceled,2016-04-23,Fall,2016-11-24T08:00Z +Cancel,242,2016,November,48,24,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Canceled,2016-11-06,Fall,2016-11-24T08:00Z +Cancel,220,2016,November,48,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,55.8,0,0,Canceled,2016-04-23,Fall,2016-11-24T08:00Z +Cancel,46,2016,November,48,24,0,3,1,0,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-05,Fall,2016-11-24T08:00Z +Cancel,64,2016,November,48,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-11-07,Fall,2016-11-24T08:00Z +Cancel,101,2016,November,48,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-08-31,Fall,2016-11-24T08:00Z +Cancel,16,2016,November,48,25,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-11-15,Fall,2016-11-25T08:00Z +Cancel,45,2016,November,48,25,0,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,69.66,0,0,Canceled,2016-10-17,Fall,2016-11-25T08:00Z +Cancel,73,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,3,Canceled,2016-10-26,Fall,2016-11-25T08:00Z +Cancel,58,2016,November,48,25,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Canceled,2016-10-21,Fall,2016-11-25T08:00Z +Cancel,96,2016,November,48,25,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-11,Fall,2016-11-25T08:00Z +Cancel,48,2016,November,48,25,1,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-10-12,Fall,2016-11-25T08:00Z +Cancel,48,2016,November,48,25,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-11-13,Fall,2016-11-25T08:00Z +Cancel,25,2016,November,48,25,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,45.36,0,0,Canceled,2016-11-07,Fall,2016-11-25T08:00Z +Cancel,59,2016,November,48,26,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-07,Fall,2016-11-26T08:00Z +Cancel,46,2016,November,48,26,0,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-10-12,Fall,2016-11-26T08:00Z +Cancel,29,2016,November,48,26,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,45.36,0,0,Canceled,2016-11-08,Fall,2016-11-26T08:00Z +Cancel,222,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,222,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,222,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,222,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,232,2016,November,48,26,2,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2016-10-18,Fall,2016-11-26T08:00Z +Cancel,48,2016,November,48,26,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-14,Fall,2016-11-26T08:00Z +Cancel,101,2016,November,48,26,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-09-18,Fall,2016-11-26T08:00Z +Cancel,69,2016,November,48,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,0,Canceled,2016-09-19,Fall,2016-11-26T08:00Z +Cancel,12,2016,November,49,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,49.75,0,0,Canceled,2016-11-15,Fall,2016-11-27T08:00Z +Cancel,152,2016,November,49,27,2,0,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-08-04,Fall,2016-11-27T08:00Z +Cancel,15,2016,November,49,27,2,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-12,Fall,2016-11-27T08:00Z +Cancel,8,2016,November,49,27,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,57.55,0,0,Canceled,2016-11-21,Fall,2016-11-27T08:00Z +Cancel,7,2016,November,49,28,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-11-21,Fall,2016-11-28T08:00Z +Cancel,25,2016,November,49,28,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,32,0,0,Canceled,2016-11-07,Fall,2016-11-28T08:00Z +Cancel,34,2016,November,49,29,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-11-27,Fall,2016-11-29T08:00Z +Cancel,76,2016,November,49,29,0,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Canceled,2016-11-17,Fall,2016-11-29T08:00Z +Cancel,76,2016,November,49,29,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 481, NULL,0,Transient,8,0,0,Canceled,2016-11-19,Fall,2016-11-29T08:00Z +Cancel,76,2016,November,49,29,0,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Canceled,2016-11-17,Fall,2016-11-29T08:00Z +Cancel,76,2016,November,49,29,0,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Canceled,2016-11-17,Fall,2016-11-29T08:00Z +Cancel,76,2016,November,49,29,0,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Canceled,2016-11-17,Fall,2016-11-29T08:00Z +Cancel,8,2016,November,49,29,0,3,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-23,Fall,2016-11-29T08:00Z +Cancel,132,2016,November,49,29,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,1,Canceled,2016-10-28,Fall,2016-11-29T08:00Z +Cancel,44,2016,November,49,30,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2016-11-10,Fall,2016-11-30T08:00Z +Cancel,2,2016,November,49,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 486,0,Transient,43,0,1,Canceled,2016-11-30,Fall,2016-11-30T08:00Z +Cancel,139,2016,November,49,30,0,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Fall,2016-11-30T08:00Z +Cancel,69,2016,November,49,30,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,58.4,0,1,Canceled,2016-10-04,Fall,2016-11-30T08:00Z +Cancel,0,2016,November,49,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-11-30,Fall,2016-11-30T08:00Z +Cancel,214,2016,November,49,30,0,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-07-13,Fall,2016-11-30T08:00Z +Cancel,7,2016,December,49,1,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,1,Canceled,2016-11-30,Winter,2016-12-01T08:00Z +Cancel,16,2016,December,49,1,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-11-15,Winter,2016-12-01T08:00Z +Cancel,43,2016,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2016-10-24,Winter,2016-12-01T08:00Z +Cancel,88,2016,December,49,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.9,0,1,Canceled,2016-09-23,Winter,2016-12-01T08:00Z +Cancel,139,2016,December,49,1,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-19,Winter,2016-12-01T08:00Z +Cancel,135,2016,December,49,1,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-11-13,Winter,2016-12-01T08:00Z +Cancel,14,2016,December,49,1,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-11-17,Winter,2016-12-01T08:00Z +Cancel,87,2016,December,49,2,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.95,0,2,Canceled,2016-09-07,Winter,2016-12-02T08:00Z +Cancel,63,2016,December,49,2,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,C,4,No Deposit , 250, NULL,0,Transient,116.6,0,3,Canceled,2016-11-18,Winter,2016-12-02T08:00Z +Cancel,82,2016,December,49,2,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,2,No-Show,2016-12-02,Winter,2016-12-02T08:00Z +Cancel,92,2016,December,49,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.5,0,2,Canceled,2016-10-17,Winter,2016-12-02T08:00Z +Cancel,55,2016,December,49,2,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,43.92,0,0,Canceled,2016-11-21,Winter,2016-12-02T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,45,2016,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Canceled,2016-10-24,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2016-11-23,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,183,2016,December,49,3,2,1,2,0,0,FB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 38, NULL,0,Transient,72,0,0,Canceled,2016-10-26,Winter,2016-12-03T08:00Z +Cancel,102,2016,December,50,4,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 275, NULL,0,Transient,30.6,0,0,Canceled,2016-12-04,Winter,2016-12-04T08:00Z +Cancel,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Canceled,2016-12-02,Winter,2016-12-05T08:00Z +Cancel,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Canceled,2016-11-29,Winter,2016-12-05T08:00Z +Cancel,85,2016,December,50,5,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.33,0,1,Canceled,2016-10-15,Winter,2016-12-05T08:00Z +Cancel,14,2016,December,50,5,1,2,1,0,0,Undefined,PRT,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Canceled,2016-11-30,Winter,2016-12-05T08:00Z +Cancel,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Canceled,2016-11-29,Winter,2016-12-05T08:00Z +Cancel,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Canceled,2016-11-30,Winter,2016-12-05T08:00Z +Cancel,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Canceled,2016-11-29,Winter,2016-12-05T08:00Z +Cancel,3,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,42,0,0,Canceled,2016-12-02,Winter,2016-12-05T08:00Z +Cancel,67,2016,December,50,5,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.38,0,1,Canceled,2016-10-18,Winter,2016-12-05T08:00Z +Cancel,239,2016,December,50,5,1,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-07-03,Winter,2016-12-05T08:00Z +Cancel,95,2016,December,50,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.06,0,0,Canceled,2016-09-01,Winter,2016-12-05T08:00Z +Keep,1,2016,December,50,6,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,1,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Cancel,34,2016,December,50,6,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,0,Canceled,2016-11-28,Winter,2016-12-06T08:00Z +Cancel,51,2016,December,50,6,0,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,0,0,Canceled,2016-12-03,Winter,2016-12-06T08:00Z +Cancel,57,2016,December,50,6,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-15,Winter,2016-12-06T08:00Z +Cancel,65,2016,December,50,6,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-03,Winter,2016-12-06T08:00Z +Cancel,95,2016,December,50,6,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-09-02,Winter,2016-12-06T08:00Z +Cancel,75,2016,December,50,6,0,5,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,No-Show,2016-12-06,Winter,2016-12-06T08:00Z +Cancel,35,2016,December,50,7,0,4,2,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,120.5,0,0,Canceled,2016-11-24,Winter,2016-12-07T08:00Z +Cancel,57,2016,December,50,7,0,4,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,33.3,0,0,Canceled,2016-11-25,Winter,2016-12-07T08:00Z +Cancel,82,2016,December,50,7,0,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,86.4,0,0,Canceled,2016-11-02,Winter,2016-12-07T08:00Z +Cancel,16,2016,December,50,7,0,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,96,0,0,No-Show,2016-12-07,Winter,2016-12-07T08:00Z +Cancel,33,2016,December,50,7,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Canceled,2016-11-10,Winter,2016-12-07T08:00Z +Cancel,21,2016,December,50,7,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,57.6,0,2,No-Show,2016-12-07,Winter,2016-12-07T08:00Z +Cancel,38,2016,December,50,8,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-01,Winter,2016-12-08T08:00Z +Cancel,16,2016,December,50,8,0,1,1,0,0,BB,GGY,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,0,Canceled,2016-12-08,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,38,2016,December,50,8,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-01,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,22,2016,December,50,8,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Canceled,2016-12-03,Winter,2016-12-08T08:00Z +Cancel,99,2016,December,50,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-09-02,Winter,2016-12-08T08:00Z +Cancel,92,2016,December,50,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-09-08,Winter,2016-12-08T08:00Z +Cancel,105,2016,December,50,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,3,Canceled,2016-11-24,Winter,2016-12-08T08:00Z +Cancel,149,2016,December,50,8,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-08-04,Winter,2016-12-08T08:00Z +Cancel,200,2016,December,50,8,2,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,46.8,0,3,Canceled,2016-11-03,Winter,2016-12-08T08:00Z +Cancel,86,2016,December,50,8,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,50.2,0,0,Canceled,2016-10-17,Winter,2016-12-08T08:00Z +Cancel,63,2016,December,50,9,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,26.64,0,0,Canceled,2016-12-05,Winter,2016-12-09T08:00Z +Cancel,92,2016,December,50,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-09-13,Winter,2016-12-09T08:00Z +Cancel,26,2016,December,50,9,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,70.07,0,1,Canceled,2016-11-16,Winter,2016-12-09T08:00Z +Cancel,4,2016,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-12-10,Winter,2016-12-10T08:00Z +Cancel,12,2016,December,50,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Canceled,2016-11-28,Winter,2016-12-10T08:00Z +Cancel,71,2016,December,50,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-04,Winter,2016-12-10T08:00Z +Cancel,23,2016,December,50,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-11-27,Winter,2016-12-10T08:00Z +Cancel,23,2016,December,50,10,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-11-27,Winter,2016-12-10T08:00Z +Cancel,51,2016,December,50,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-10-20,Winter,2016-12-10T08:00Z +Cancel,25,2016,December,50,10,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,1,Canceled,2016-11-18,Winter,2016-12-10T08:00Z +Cancel,58,2016,December,50,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-10-15,Winter,2016-12-10T08:00Z +Cancel,20,2016,December,51,11,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,3,Canceled,2016-11-30,Winter,2016-12-11T08:00Z +Cancel,81,2016,December,51,11,2,0,3,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-09-22,Winter,2016-12-11T08:00Z +Cancel,152,2016,December,51,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-08-22,Winter,2016-12-11T08:00Z +Cancel,5,2016,December,51,12,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,39,0,0,Canceled,2016-12-08,Winter,2016-12-12T08:00Z +Cancel,5,2016,December,51,12,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,39,0,0,Canceled,2016-12-08,Winter,2016-12-12T08:00Z +Cancel,48,2016,December,51,12,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,2,Canceled,2016-11-01,Winter,2016-12-12T08:00Z +Cancel,5,2016,December,51,12,5,13,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 10, NULL,0,Transient,41.4,0,0,Canceled,2016-12-07,Winter,2016-12-12T08:00Z +Cancel,1,2016,December,51,13,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 178,0,Transient,4,0,0,Canceled,2016-12-13,Winter,2016-12-13T08:00Z +Cancel,210,2016,December,51,13,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,47.57,0,0,Canceled,2016-07-19,Winter,2016-12-13T08:00Z +Cancel,0,2016,December,51,14,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,0,Canceled,2016-12-14,Winter,2016-12-14T08:00Z +Cancel,245,2016,December,51,15,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-04-25,Winter,2016-12-15T08:00Z +Cancel,245,2016,December,51,15,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-04-25,Winter,2016-12-15T08:00Z +Cancel,50,2016,December,51,15,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-03,Winter,2016-12-15T08:00Z +Cancel,50,2016,December,51,15,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-11-03,Winter,2016-12-15T08:00Z +Cancel,125,2016,December,51,15,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2016-09-02,Winter,2016-12-15T08:00Z +Cancel,45,2016,December,51,16,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-01,Winter,2016-12-16T08:00Z +Cancel,23,2016,December,51,16,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-12-16,Winter,2016-12-16T08:00Z +Cancel,15,2016,December,51,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.12,0,0,Canceled,2016-12-03,Winter,2016-12-16T08:00Z +Cancel,121,2016,December,51,16,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Canceled,2016-10-24,Winter,2016-12-16T08:00Z +Cancel,38,2016,December,51,16,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 240, NULL,0,Transient,66,0,1,Canceled,2016-11-14,Winter,2016-12-16T08:00Z +Cancel,17,2016,December,51,16,1,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,64,0,0,Canceled,2016-12-08,Winter,2016-12-16T08:00Z +Cancel,19,2016,December,51,17,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient-Party,95,0,0,Canceled,2016-12-05,Winter,2016-12-17T08:00Z +Cancel,4,2016,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Canceled,2016-12-15,Winter,2016-12-17T08:00Z +Cancel,86,2016,December,51,17,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Canceled,2016-11-21,Winter,2016-12-17T08:00Z +Cancel,52,2016,December,51,17,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient-Party,27,0,1,No-Show,2016-12-17,Winter,2016-12-17T08:00Z +Cancel,53,2016,December,51,17,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Canceled,2016-10-26,Winter,2016-12-17T08:00Z +Cancel,52,2016,December,51,17,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient-Party,27,0,1,No-Show,2016-12-17,Winter,2016-12-17T08:00Z +Cancel,53,2016,December,51,17,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Canceled,2016-10-26,Winter,2016-12-17T08:00Z +Cancel,79,2016,December,51,17,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-12-04,Winter,2016-12-17T08:00Z +Cancel,11,2016,December,51,17,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,No-Show,2016-12-17,Winter,2016-12-17T08:00Z +Cancel,49,2016,December,51,17,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-10-29,Winter,2016-12-17T08:00Z +Cancel,60,2016,December,51,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2016-11-01,Winter,2016-12-17T08:00Z +Cancel,105,2016,December,51,17,2,6,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-04,Winter,2016-12-17T08:00Z +Cancel,14,2016,December,51,17,3,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.22,0,1,Canceled,2016-12-06,Winter,2016-12-17T08:00Z +Cancel,200,2016,December,51,17,6,12,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.67,0,0,Canceled,2016-06-03,Winter,2016-12-17T08:00Z +Cancel,206,2016,December,51,17,6,12,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.8,0,0,Canceled,2016-05-31,Winter,2016-12-17T08:00Z +Cancel,52,2016,December,52,18,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2016-11-05,Winter,2016-12-18T08:00Z +Cancel,52,2016,December,52,18,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-11-03,Winter,2016-12-18T08:00Z +Cancel,92,2016,December,52,18,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83.06,0,0,Canceled,2016-10-07,Winter,2016-12-18T08:00Z +Cancel,95,2016,December,52,18,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-09-14,Winter,2016-12-18T08:00Z +Cancel,21,2016,December,52,19,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-06,Winter,2016-12-19T08:00Z +Cancel,0,2016,December,52,19,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,43,0,0,Canceled,2016-12-19,Winter,2016-12-19T08:00Z +Cancel,244,2016,December,52,19,1,2,3,2,0,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,144.57,0,0,Canceled,2016-07-11,Winter,2016-12-19T08:00Z +Cancel,30,2016,December,52,19,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,64.4,0,0,Canceled,2016-12-19,Winter,2016-12-19T08:00Z +Cancel,85,2016,December,52,19,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,0,Canceled,2016-09-25,Winter,2016-12-19T08:00Z +Cancel,350,2016,December,52,19,3,8,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2016-10-24,Winter,2016-12-19T08:00Z +Cancel,308,2016,December,52,19,5,14,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116.53,0,1,Canceled,2016-02-22,Winter,2016-12-19T08:00Z +Cancel,4,2016,December,52,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 204,0,Transient,30,0,2,Canceled,2016-12-19,Winter,2016-12-20T08:00Z +Cancel,19,2016,December,52,20,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-12-04,Winter,2016-12-20T08:00Z +Cancel,4,2016,December,52,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 204,0,Transient,30,0,2,Canceled,2016-12-19,Winter,2016-12-20T08:00Z +Cancel,102,2016,December,52,20,0,1,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-09-12,Winter,2016-12-20T08:00Z +Cancel,188,2016,December,52,20,0,4,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,97,0,0,Canceled,2016-08-16,Winter,2016-12-20T08:00Z +Cancel,194,2016,December,52,20,0,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-10-06,Winter,2016-12-20T08:00Z +Cancel,172,2016,December,52,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-09-10,Winter,2016-12-20T08:00Z +Cancel,208,2016,December,52,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-06-07,Winter,2016-12-20T08:00Z +Cancel,250,2016,December,52,20,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.4,0,0,Canceled,2016-04-18,Winter,2016-12-20T08:00Z +Cancel,250,2016,December,52,20,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.4,0,0,Canceled,2016-04-18,Winter,2016-12-20T08:00Z +Cancel,250,2016,December,52,20,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.4,0,0,Canceled,2016-04-18,Winter,2016-12-20T08:00Z +Cancel,250,2016,December,52,20,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.4,0,0,Canceled,2016-04-18,Winter,2016-12-20T08:00Z +Cancel,250,2016,December,52,20,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.4,0,0,Canceled,2016-04-18,Winter,2016-12-20T08:00Z +Cancel,0,2016,December,52,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-12-21,Winter,2016-12-21T08:00Z +Cancel,226,2016,December,52,21,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-05-10,Winter,2016-12-21T08:00Z +Cancel,2,2016,December,52,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,43,0,0,Canceled,2016-12-20,Winter,2016-12-21T08:00Z +Cancel,247,2016,December,52,21,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-19,Winter,2016-12-21T08:00Z +Cancel,84,2016,December,52,21,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-10-07,Winter,2016-12-21T08:00Z +Cancel,75,2016,December,52,21,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-07,Winter,2016-12-21T08:00Z +Cancel,251,2016,December,52,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-04-18,Winter,2016-12-21T08:00Z +Cancel,126,2016,December,52,21,4,11,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Canceled,2016-12-21,Winter,2016-12-21T08:00Z +Cancel,1,2016,December,52,22,0,1,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,47.4,0,0,Canceled,2016-12-22,Winter,2016-12-22T08:00Z +Cancel,159,2016,December,52,22,0,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,97,0,0,Canceled,2016-07-16,Winter,2016-12-22T08:00Z +Cancel,130,2016,December,52,22,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-12-14,Winter,2016-12-22T08:00Z +Cancel,252,2016,December,52,22,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-04-18,Winter,2016-12-22T08:00Z +Cancel,252,2016,December,52,22,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-04-18,Winter,2016-12-22T08:00Z +Cancel,248,2016,December,52,22,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-19,Winter,2016-12-22T08:00Z +Cancel,252,2016,December,52,22,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-04-18,Winter,2016-12-22T08:00Z +Cancel,252,2016,December,52,22,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-04-18,Winter,2016-12-22T08:00Z +Cancel,248,2016,December,52,22,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-19,Winter,2016-12-22T08:00Z +Cancel,156,2016,December,52,22,2,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,50.22,0,1,Canceled,2016-11-15,Winter,2016-12-22T08:00Z +Cancel,248,2016,December,52,22,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-07-19,Winter,2016-12-22T08:00Z +Cancel,248,2016,December,52,22,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-07-19,Winter,2016-12-22T08:00Z +Cancel,227,2016,December,52,22,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Canceled,2016-05-12,Winter,2016-12-22T08:00Z +Cancel,128,2016,December,52,22,4,8,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,57.23,0,1,Canceled,2016-08-19,Winter,2016-12-22T08:00Z +Cancel,181,2016,December,52,22,4,9,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,56.42,0,0,Canceled,2016-07-05,Winter,2016-12-22T08:00Z +Cancel,2,2016,December,52,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 154, NULL,0,Transient,27,0,0,Canceled,2016-12-23,Winter,2016-12-23T08:00Z +Cancel,99,2016,December,52,23,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,57.53,0,1,Canceled,2016-09-24,Winter,2016-12-23T08:00Z +Cancel,53,2016,December,52,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,64,0,0,Canceled,2016-12-06,Winter,2016-12-23T08:00Z +Cancel,59,2016,December,52,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,103,0,1,Canceled,2016-12-06,Winter,2016-12-23T08:00Z +Cancel,59,2016,December,52,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,103,0,1,Canceled,2016-12-06,Winter,2016-12-23T08:00Z +Cancel,99,2016,December,52,23,2,2,1,0,0,BB,BLR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.4,0,0,Canceled,2016-09-15,Winter,2016-12-23T08:00Z +Cancel,73,2016,December,52,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,81.9,0,1,Canceled,2016-12-06,Winter,2016-12-23T08:00Z +Cancel,57,2016,December,52,23,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,4,Canceled,2016-11-30,Winter,2016-12-23T08:00Z +Cancel,57,2016,December,52,23,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,4,Canceled,2016-11-30,Winter,2016-12-23T08:00Z +Cancel,88,2016,December,52,23,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,39.6,0,1,Canceled,2016-10-03,Winter,2016-12-23T08:00Z +Cancel,88,2016,December,52,23,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,39.6,0,1,Canceled,2016-10-03,Winter,2016-12-23T08:00Z +Cancel,91,2016,December,52,23,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,75.6,0,1,Canceled,2016-10-11,Winter,2016-12-23T08:00Z +Cancel,91,2016,December,52,23,2,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,75.6,0,1,Canceled,2016-10-11,Winter,2016-12-23T08:00Z +Cancel,91,2016,December,52,23,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,137.5,0,0,Canceled,2016-10-11,Winter,2016-12-23T08:00Z +Cancel,91,2016,December,52,23,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,75.6,0,1,Canceled,2016-10-11,Winter,2016-12-23T08:00Z +Cancel,91,2016,December,52,23,2,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,75.6,0,1,Canceled,2016-10-11,Winter,2016-12-23T08:00Z +Cancel,90,2016,December,52,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-10-18,Winter,2016-12-23T08:00Z +Cancel,90,2016,December,52,23,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-10-18,Winter,2016-12-23T08:00Z +Cancel,92,2016,December,52,23,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,25.64,0,1,Canceled,2016-11-20,Winter,2016-12-23T08:00Z +Cancel,88,2016,December,52,23,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83.06,0,2,Canceled,2016-10-13,Winter,2016-12-23T08:00Z +Cancel,38,2016,December,52,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-11-16,Winter,2016-12-24T08:00Z +Cancel,38,2016,December,52,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-11-16,Winter,2016-12-24T08:00Z +Cancel,59,2016,December,52,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2016-11-19,Winter,2016-12-24T08:00Z +Cancel,76,2016,December,52,24,1,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,73.8,0,2,Canceled,2016-10-31,Winter,2016-12-24T08:00Z +Cancel,9,2016,December,52,24,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 270,0,Transient,45,0,1,No-Show,2016-12-24,Winter,2016-12-24T08:00Z +Cancel,73,2016,December,52,24,2,1,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,104.73,0,0,Canceled,2016-10-17,Winter,2016-12-24T08:00Z +Cancel,168,2016,December,52,24,2,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.4,0,2,Canceled,2016-10-12,Winter,2016-12-24T08:00Z +Cancel,79,2016,December,52,24,2,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-06,Winter,2016-12-24T08:00Z +Cancel,79,2016,December,52,24,2,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-06,Winter,2016-12-24T08:00Z +Cancel,79,2016,December,52,24,2,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-06,Winter,2016-12-24T08:00Z +Cancel,4,2016,December,52,24,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-12-21,Winter,2016-12-24T08:00Z +Cancel,18,2016,December,52,24,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,90.5,0,1,Canceled,2016-12-13,Winter,2016-12-24T08:00Z +Cancel,131,2016,December,52,24,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.33,0,0,Canceled,2016-08-15,Winter,2016-12-24T08:00Z +Cancel,226,2016,December,52,24,2,5,1,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.33,0,0,Canceled,2016-06-27,Winter,2016-12-24T08:00Z +Cancel,196,2016,December,52,24,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,6,No Deposit , 240, NULL,0,Transient,46.35,0,0,Canceled,2016-06-28,Winter,2016-12-24T08:00Z +Cancel,295,2016,December,52,24,3,6,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,110.11,0,0,Canceled,2016-03-04,Winter,2016-12-24T08:00Z +Cancel,247,2016,December,53,25,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Canceled,2016-12-14,Winter,2016-12-25T08:00Z +Cancel,107,2016,December,53,25,2,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,59.5,0,1,Canceled,2016-12-08,Winter,2016-12-25T08:00Z +Cancel,161,2016,December,53,26,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,37.8,0,0,Canceled,2016-07-25,Winter,2016-12-26T08:00Z +Cancel,62,2016,December,53,26,1,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2016-12-02,Winter,2016-12-26T08:00Z +Cancel,91,2016,December,53,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-09-26,Winter,2016-12-26T08:00Z +Cancel,15,2016,December,53,26,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-12-15,Winter,2016-12-26T08:00Z +Cancel,83,2016,December,53,26,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,55.8,0,1,Canceled,2016-12-13,Winter,2016-12-26T08:00Z +Cancel,65,2016,December,53,26,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-10-23,Winter,2016-12-26T08:00Z +Cancel,90,2016,December,53,26,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-12-14,Winter,2016-12-26T08:00Z +Cancel,155,2016,December,53,26,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-04,Winter,2016-12-26T08:00Z +Cancel,168,2016,December,53,26,1,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91.44,0,0,Canceled,2016-08-11,Winter,2016-12-26T08:00Z +Cancel,161,2016,December,53,26,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.2,0,2,Canceled,2016-09-15,Winter,2016-12-26T08:00Z +Cancel,126,2016,December,53,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,51.22,0,0,Canceled,2016-09-17,Winter,2016-12-26T08:00Z +Cancel,98,2016,December,53,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,109.03,0,1,Canceled,2016-09-30,Winter,2016-12-26T08:00Z +Cancel,172,2016,December,53,26,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,52.46,0,1,Canceled,2016-10-09,Winter,2016-12-26T08:00Z +Cancel,126,2016,December,53,26,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,51.22,0,0,Canceled,2016-09-17,Winter,2016-12-26T08:00Z +Cancel,126,2016,December,53,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,51.22,0,0,Canceled,2016-09-17,Winter,2016-12-26T08:00Z +Cancel,258,2016,December,53,26,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,81.01,0,0,Canceled,2016-09-05,Winter,2016-12-26T08:00Z +Cancel,172,2016,December,53,26,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,52.46,0,1,Canceled,2016-10-09,Winter,2016-12-26T08:00Z +Cancel,126,2016,December,53,26,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,51.22,0,0,Canceled,2016-09-17,Winter,2016-12-26T08:00Z +Cancel,125,2016,December,53,26,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,56.88,0,0,Canceled,2016-12-16,Winter,2016-12-26T08:00Z +Cancel,288,2016,December,53,26,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96.4,0,0,Canceled,2016-03-14,Winter,2016-12-26T08:00Z +Cancel,288,2016,December,53,26,3,6,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,148.11,0,0,Canceled,2016-03-14,Winter,2016-12-26T08:00Z +Cancel,12,2016,December,53,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, 421,0,Transient,50.4,0,0,Canceled,2016-12-24,Winter,2016-12-27T08:00Z +Cancel,12,2016,December,53,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, 421,0,Transient,50.4,0,0,Canceled,2016-12-24,Winter,2016-12-27T08:00Z +Cancel,135,2016,December,53,27,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-11-22,Winter,2016-12-27T08:00Z +Cancel,44,2016,December,53,27,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-11-13,Winter,2016-12-27T08:00Z +Cancel,137,2016,December,53,27,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-12-01,Winter,2016-12-27T08:00Z +Cancel,122,2016,December,53,27,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,74.75,0,2,Canceled,2016-11-27,Winter,2016-12-27T08:00Z +Cancel,309,2016,December,53,27,2,8,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,116.4,0,0,Canceled,2016-12-06,Winter,2016-12-27T08:00Z +Cancel,135,2016,December,53,28,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-09-19,Winter,2016-12-28T08:00Z +Cancel,12,2016,December,53,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 9,0,Transient,30,0,0,Canceled,2016-12-27,Winter,2016-12-28T08:00Z +Cancel,10,2016,December,53,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,76,0,0,Canceled,2016-12-20,Winter,2016-12-28T08:00Z +Cancel,119,2016,December,53,28,0,2,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2016-10-21,Winter,2016-12-28T08:00Z +Cancel,335,2016,December,53,28,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,0,1,Canceled,2016-02-25,Winter,2016-12-28T08:00Z +Cancel,13,2016,December,53,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-12-17,Winter,2016-12-28T08:00Z +Cancel,294,2016,December,53,28,2,4,1,0,0,HB,ITA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,84.5,0,0,Canceled,2016-03-09,Winter,2016-12-28T08:00Z +Cancel,131,2016,December,53,28,2,8,1,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,96,0,2,Canceled,2016-08-23,Winter,2016-12-28T08:00Z +Cancel,16,2016,December,53,29,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97.67,0,1,Canceled,2016-12-14,Winter,2016-12-29T08:00Z +Cancel,64,2016,December,53,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65.4,0,0,Canceled,2016-10-26,Winter,2016-12-29T08:00Z +Cancel,9,2016,December,53,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,5,No Deposit , NULL, NULL,0,Transient,78.8,0,1,No-Show,2016-12-29,Winter,2016-12-29T08:00Z +Cancel,182,2016,December,53,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60.6,0,0,Canceled,2016-06-30,Winter,2016-12-29T08:00Z +Cancel,258,2016,December,53,29,4,8,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,96.5,0,0,Canceled,2016-04-16,Winter,2016-12-29T08:00Z +Cancel,258,2016,December,53,29,4,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59.48,0,0,Canceled,2016-04-16,Winter,2016-12-29T08:00Z +Cancel,51,2016,December,53,30,0,1,2,0,0,HB,KWT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2016-12-10,Winter,2016-12-30T08:00Z +Cancel,31,2016,December,53,30,0,2,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,340,0,1,Canceled,2016-12-30,Winter,2016-12-30T08:00Z +Cancel,95,2016,December,53,30,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,384,0,0,Canceled,2016-09-26,Winter,2016-12-30T08:00Z +Cancel,131,2016,December,53,30,0,2,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,127.5,0,1,Canceled,2016-11-01,Winter,2016-12-30T08:00Z +Cancel,70,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2016-10-23,Winter,2016-12-30T08:00Z +Cancel,317,2016,December,53,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,72,0,0,Canceled,2016-06-06,Winter,2016-12-30T08:00Z +Cancel,238,2016,December,53,30,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,112.5,0,0,Canceled,2016-06-17,Winter,2016-12-30T08:00Z +Cancel,187,2016,December,53,30,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,86.16,0,1,Canceled,2016-07-26,Winter,2016-12-30T08:00Z +Cancel,44,2016,December,53,30,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,302.11,0,0,Canceled,2016-11-16,Winter,2016-12-30T08:00Z +Cancel,70,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2016-10-23,Winter,2016-12-30T08:00Z +Cancel,187,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72,0,0,Canceled,2016-07-26,Winter,2016-12-30T08:00Z +Cancel,239,2016,December,53,30,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,103.5,0,0,Canceled,2016-05-06,Winter,2016-12-30T08:00Z +Cancel,21,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,1,Canceled,2016-12-12,Winter,2016-12-30T08:00Z +Cancel,17,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2016-12-15,Winter,2016-12-30T08:00Z +Cancel,317,2016,December,53,30,0,2,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,72,0,0,Canceled,2016-06-06,Winter,2016-12-30T08:00Z +Cancel,315,2016,December,53,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,54,0,0,Canceled,2016-06-06,Winter,2016-12-30T08:00Z +Cancel,319,2016,December,53,30,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2016-05-06,Winter,2016-12-30T08:00Z +Cancel,66,2016,December,53,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,162,0,1,Canceled,2016-10-25,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, 308,0,Transient-Party,180,0,0,Canceled,2016-12-19,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-22,Winter,2016-12-30T08:00Z +Cancel,11,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-19,Winter,2016-12-30T08:00Z +Cancel,135,2016,December,53,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.5,0,0,Canceled,2016-09-20,Winter,2016-12-30T08:00Z +Cancel,109,2016,December,53,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.33,0,1,Canceled,2016-12-12,Winter,2016-12-30T08:00Z +Cancel,72,2016,December,53,30,1,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Canceled,2016-12-21,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,180,0,0,Canceled,2016-12-20,Winter,2016-12-30T08:00Z +Cancel,156,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,173.1,0,0,Canceled,2016-09-28,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-22,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,180,0,0,Canceled,2016-12-20,Winter,2016-12-30T08:00Z +Cancel,72,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,159,0,0,Canceled,2016-11-23,Winter,2016-12-30T08:00Z +Cancel,135,2016,December,53,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.5,0,0,Canceled,2016-09-20,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-22,Winter,2016-12-30T08:00Z +Cancel,62,2016,December,53,30,1,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,165.33,0,1,Canceled,2016-11-21,Winter,2016-12-30T08:00Z +Cancel,11,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-19,Winter,2016-12-30T08:00Z +Cancel,20,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2016-12-12,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, 308,0,Transient-Party,180,0,0,Canceled,2016-12-19,Winter,2016-12-30T08:00Z +Cancel,10,2016,December,53,30,1,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Canceled,2016-12-22,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Canceled,2016-12-22,Winter,2016-12-30T08:00Z +Cancel,196,2016,December,53,30,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,180,0,0,Canceled,2016-12-20,Winter,2016-12-30T08:00Z +Cancel,2,2016,December,53,30,2,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,71.25,0,2,No-Show,2016-12-30,Winter,2016-12-30T08:00Z +Cancel,280,2016,December,53,30,2,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,81.5,0,3,Canceled,2016-11-06,Winter,2016-12-30T08:00Z +Cancel,280,2016,December,53,30,2,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,81.5,0,1,Canceled,2016-11-06,Winter,2016-12-30T08:00Z +Cancel,99,2016,December,53,30,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165.08,0,0,Canceled,2016-09-22,Winter,2016-12-30T08:00Z +Cancel,319,2016,December,53,31,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,382,0,0,Canceled,2016-02-22,Winter,2016-12-31T08:00Z +Cancel,42,2016,December,53,31,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,275,0,0,Canceled,2016-12-10,Winter,2016-12-31T08:00Z +Cancel,284,2016,December,53,31,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229.4,0,2,Canceled,2016-12-03,Winter,2016-12-31T08:00Z +Cancel,42,2016,December,53,31,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,275,0,0,Canceled,2016-12-10,Winter,2016-12-31T08:00Z +Cancel,78,2016,December,53,31,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 181, NULL,0,Transient,162,0,0,Canceled,2016-10-20,Winter,2016-12-31T08:00Z +Cancel,130,2016,December,53,31,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,67.95,0,3,Canceled,2016-08-25,Winter,2016-12-31T08:00Z +Cancel,55,2016,December,53,31,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94.29,0,0,Canceled,2016-11-07,Winter,2016-12-31T08:00Z +Cancel,74,2017,January,1,1,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,57.6,0,0,Canceled,2016-10-20,Winter,2017-01-01T08:00Z +Cancel,62,2017,January,1,1,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.5,0,1,Canceled,2016-12-04,Winter,2017-01-01T08:00Z +Cancel,62,2017,January,1,1,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.5,0,1,Canceled,2016-11-11,Winter,2017-01-01T08:00Z +Cancel,62,2017,January,1,1,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.5,0,1,Canceled,2016-12-04,Winter,2017-01-01T08:00Z +Cancel,71,2017,January,1,1,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,32.22,0,1,Canceled,2016-10-29,Winter,2017-01-01T08:00Z +Cancel,88,2017,January,1,1,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.64,0,1,Canceled,2016-11-20,Winter,2017-01-01T08:00Z +Cancel,172,2017,January,1,1,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.69,0,0,Canceled,2016-07-13,Winter,2017-01-01T08:00Z +Cancel,168,2017,January,1,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.69,0,0,Canceled,2016-07-17,Winter,2017-01-01T08:00Z +Cancel,52,2017,January,1,1,2,5,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.43,0,0,Canceled,2016-11-11,Winter,2017-01-01T08:00Z +Cancel,25,2017,January,1,1,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 10, NULL,0,Transient,41.4,0,0,Canceled,2016-12-07,Winter,2017-01-01T08:00Z +Cancel,42,2017,January,1,2,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,42,0,0,Canceled,2016-12-17,Winter,2017-01-02T08:00Z +Cancel,42,2017,January,1,2,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,42,0,0,Canceled,2016-12-17,Winter,2017-01-02T08:00Z +Cancel,143,2017,January,1,2,1,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,34.02,0,1,Canceled,2016-12-24,Winter,2017-01-02T08:00Z +Cancel,89,2017,January,1,2,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,No-Show,2017-01-02,Winter,2017-01-02T08:00Z +Cancel,131,2017,January,1,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-19,Winter,2017-01-02T08:00Z +Cancel,21,2017,January,1,2,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-12,Winter,2017-01-02T08:00Z +Cancel,89,2017,January,1,2,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-10-05,Winter,2017-01-02T08:00Z +Cancel,48,2017,January,1,2,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,47.8,0,2,Canceled,2016-12-05,Winter,2017-01-02T08:00Z +Cancel,31,2017,January,1,2,1,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2016-12-07,Winter,2017-01-02T08:00Z +Cancel,47,2017,January,1,2,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-11-20,Winter,2017-01-02T08:00Z +Cancel,20,2017,January,1,2,1,5,2,1,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-12-19,Winter,2017-01-02T08:00Z +Cancel,173,2017,January,1,2,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 242, NULL,0,Transient,78.3,0,1,Canceled,2016-10-26,Winter,2017-01-02T08:00Z +Cancel,36,2017,January,1,2,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-12-22,Winter,2017-01-02T08:00Z +Cancel,23,2017,January,1,3,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2016-12-11,Winter,2017-01-03T08:00Z +Cancel,46,2017,January,1,3,0,3,2,1,0,BB,BRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,79.8,0,0,Canceled,2016-12-23,Winter,2017-01-03T08:00Z +Cancel,56,2017,January,1,3,0,4,3,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62,0,2,Canceled,2016-12-21,Winter,2017-01-03T08:00Z +Cancel,56,2017,January,1,3,0,4,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,2,Canceled,2016-12-21,Winter,2017-01-03T08:00Z +Cancel,149,2017,January,1,3,0,5,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-11-05,Winter,2017-01-03T08:00Z +Cancel,44,2017,January,1,3,2,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-11-20,Winter,2017-01-03T08:00Z +Cancel,68,2017,January,1,3,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Canceled,2016-11-21,Winter,2017-01-03T08:00Z +Cancel,6,2017,January,1,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Canceled,2017-01-03,Winter,2017-01-04T08:00Z +Cancel,23,2017,January,1,4,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-12-13,Winter,2017-01-04T08:00Z +Cancel,43,2017,January,1,4,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-11-22,Winter,2017-01-04T08:00Z +Cancel,43,2017,January,1,4,1,4,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-11-22,Winter,2017-01-04T08:00Z +Cancel,112,2017,January,1,4,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,No-Show,2017-01-04,Winter,2017-01-04T08:00Z +Cancel,59,2017,January,1,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-11-08,Winter,2017-01-04T08:00Z +Cancel,65,2017,January,1,4,2,8,3,1,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-10-31,Winter,2017-01-04T08:00Z +Cancel,93,2017,January,1,5,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 339, NULL,0,Transient,51.84,0,0,Canceled,2016-12-19,Winter,2017-01-05T08:00Z +Cancel,4,2017,January,1,5,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-01,Winter,2017-01-05T08:00Z +Cancel,115,2017,January,1,5,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,92,0,0,Canceled,2016-11-03,Winter,2017-01-05T08:00Z +Cancel,187,2017,January,1,5,2,5,1,0,0,HB,EST,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-07-03,Winter,2017-01-05T08:00Z +Cancel,11,2017,January,1,6,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,60,0,1,Canceled,2016-12-26,Winter,2017-01-06T08:00Z +Cancel,11,2017,January,1,6,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,60,0,1,Canceled,2016-12-26,Winter,2017-01-06T08:00Z +Cancel,2,2017,January,1,6,2,3,1,0,0,BB,NGA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,No-Show,2017-01-06,Winter,2017-01-06T08:00Z +Cancel,32,2017,January,1,6,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,53.5,0,0,Canceled,2016-12-05,Winter,2017-01-06T08:00Z +Cancel,27,2017,January,1,6,4,10,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,38.86,0,0,Canceled,2016-12-28,Winter,2017-01-06T08:00Z +Cancel,15,2017,January,1,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2016-12-23,Winter,2017-01-07T08:00Z +Cancel,42,2017,January,1,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Canceled,2016-12-26,Winter,2017-01-07T08:00Z +Cancel,86,2017,January,1,7,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56.4,0,2,Canceled,2016-10-22,Winter,2017-01-07T08:00Z +Cancel,23,2017,January,1,7,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-20,Winter,2017-01-07T08:00Z +Cancel,36,2017,January,1,7,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44,0,0,Canceled,2016-12-20,Winter,2017-01-07T08:00Z +Cancel,66,2017,January,1,7,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-11-14,Winter,2017-01-07T08:00Z +Cancel,140,2017,January,1,7,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-30,Winter,2017-01-07T08:00Z +Cancel,113,2017,January,2,8,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-10-05,Winter,2017-01-08T08:00Z +Cancel,113,2017,January,2,8,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-10-05,Winter,2017-01-08T08:00Z +Cancel,102,2017,January,2,8,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-12-18,Winter,2017-01-08T08:00Z +Cancel,52,2017,January,2,8,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,67.8,0,0,Canceled,2016-11-19,Winter,2017-01-08T08:00Z +Cancel,85,2017,January,2,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-11-11,Winter,2017-01-08T08:00Z +Cancel,125,2017,January,2,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-10-21,Winter,2017-01-09T08:00Z +Cancel,161,2017,January,2,9,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-02,Winter,2017-01-09T08:00Z +Cancel,161,2017,January,2,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-02,Winter,2017-01-09T08:00Z +Cancel,154,2017,January,2,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-08,Winter,2017-01-09T08:00Z +Cancel,154,2017,January,2,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-08,Winter,2017-01-09T08:00Z +Cancel,0,2017,January,2,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-01-10,Winter,2017-01-10T08:00Z +Cancel,322,2017,January,2,10,16,40,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25.5,0,0,Canceled,2016-10-31,Winter,2017-01-10T08:00Z +Cancel,1,2017,January,2,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 10, NULL,0,Transient,41,0,0,Canceled,2017-01-10,Winter,2017-01-11T08:00Z +Cancel,0,2017,January,2,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-11,Winter,2017-01-11T08:00Z +Cancel,2,2017,January,2,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Canceled,2017-01-10,Winter,2017-01-11T08:00Z +Cancel,1,2017,January,2,11,0,2,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,0,0,0,Canceled,2017-01-11,Winter,2017-01-11T08:00Z +Cancel,5,2017,January,2,11,0,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-07,Winter,2017-01-11T08:00Z +Cancel,35,2017,January,2,11,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,62,0,1,Canceled,2017-01-10,Winter,2017-01-11T08:00Z +Cancel,37,2017,January,2,11,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-12-16,Winter,2017-01-11T08:00Z +Cancel,58,2017,January,2,11,4,10,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-11-20,Winter,2017-01-11T08:00Z +Cancel,60,2017,January,2,12,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,2,Canceled,2017-01-10,Winter,2017-01-12T08:00Z +Cancel,129,2017,January,2,12,2,3,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,47.8,0,0,Canceled,2016-09-08,Winter,2017-01-12T08:00Z +Cancel,84,2017,January,2,12,4,12,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,33.31,0,1,No-Show,2017-01-12,Winter,2017-01-12T08:00Z +Cancel,115,2017,January,2,12,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Canceled,2017-01-10,Winter,2017-01-12T08:00Z +Cancel,78,2017,January,2,13,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,54.27,0,1,Canceled,2017-01-11,Winter,2017-01-13T08:00Z +Cancel,10,2017,January,2,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,0,Canceled,2017-01-04,Winter,2017-01-13T08:00Z +Cancel,82,2017,January,2,13,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-10-23,Winter,2017-01-13T08:00Z +Cancel,11,2017,January,2,14,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2017-01-04,Winter,2017-01-14T08:00Z +Cancel,8,2017,January,2,14,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,75.5,0,2,Canceled,2017-01-07,Winter,2017-01-14T08:00Z +Cancel,18,2017,January,2,14,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Canceled,2017-01-01,Winter,2017-01-14T08:00Z +Cancel,22,2017,January,2,14,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,69.35,0,1,Canceled,2017-01-10,Winter,2017-01-14T08:00Z +Cancel,33,2017,January,2,14,2,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-12-12,Winter,2017-01-14T08:00Z +Cancel,108,2017,January,2,14,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-09-30,Winter,2017-01-14T08:00Z +Cancel,87,2017,January,2,14,2,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,46.43,0,0,Canceled,2016-10-19,Winter,2017-01-14T08:00Z +Cancel,275,2017,January,2,14,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,51.3,0,2,Canceled,2016-09-28,Winter,2017-01-14T08:00Z +Cancel,87,2017,January,2,14,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,0,Canceled,2016-10-19,Winter,2017-01-14T08:00Z +Cancel,106,2017,January,2,14,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-11-27,Winter,2017-01-14T08:00Z +Cancel,45,2017,January,2,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-11-30,Winter,2017-01-14T08:00Z +Cancel,45,2017,January,2,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Canceled,2016-12-05,Winter,2017-01-14T08:00Z +Cancel,90,2017,January,2,14,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Canceled,2016-10-19,Winter,2017-01-14T08:00Z +Cancel,242,2017,January,2,14,4,10,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-05-20,Winter,2017-01-14T08:00Z +Cancel,19,2017,January,3,15,2,2,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,1,Canceled,2016-12-27,Winter,2017-01-15T08:00Z +Cancel,18,2017,January,3,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 154,0,Transient,35,0,0,Canceled,2017-01-16,Winter,2017-01-16T08:00Z +Cancel,281,2017,January,3,16,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-04-14,Winter,2017-01-16T08:00Z +Cancel,281,2017,January,3,16,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2016-04-14,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-14,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-13,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-05,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-05,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-13,Winter,2017-01-16T08:00Z +Cancel,27,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-14,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-04,Winter,2017-01-16T08:00Z +Cancel,17,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-03,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-04,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-11,Winter,2017-01-16T08:00Z +Cancel,17,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-03,Winter,2017-01-16T08:00Z +Cancel,0,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-16,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-10,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-06,Winter,2017-01-16T08:00Z +Cancel,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-05,Winter,2017-01-16T08:00Z +Cancel,5,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 135,0,Transient,35,0,0,Canceled,2017-01-17,Winter,2017-01-17T08:00Z +Cancel,0,2017,January,3,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-01-17,Winter,2017-01-17T08:00Z +Cancel,16,2017,January,3,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.43,0,1,Canceled,2017-01-05,Winter,2017-01-17T08:00Z +Cancel,1,2017,January,3,17,0,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,H,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Canceled,2017-01-17,Winter,2017-01-17T08:00Z +Cancel,41,2017,January,3,17,0,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,No-Show,2017-01-17,Winter,2017-01-17T08:00Z +Cancel,134,2017,January,3,18,2,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,87,0,0,Canceled,2016-09-06,Winter,2017-01-18T08:00Z +Cancel,1,2017,January,3,18,3,9,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-01-17,Winter,2017-01-18T08:00Z +Cancel,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Canceled,2017-01-17,Winter,2017-01-19T08:00Z +Cancel,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Canceled,2017-01-17,Winter,2017-01-19T08:00Z +Cancel,41,2017,January,3,19,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient,57.6,0,0,Canceled,2016-12-24,Winter,2017-01-19T08:00Z +Cancel,41,2017,January,3,19,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient,57.6,0,0,Canceled,2016-12-24,Winter,2017-01-19T08:00Z +Cancel,135,2017,January,3,19,2,4,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-12-22,Winter,2017-01-19T08:00Z +Cancel,123,2017,January,3,19,2,5,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-09-18,Winter,2017-01-19T08:00Z +Cancel,3,2017,January,3,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,60,0,0,Canceled,2017-01-20,Winter,2017-01-20T08:00Z +Cancel,128,2017,January,3,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-09-19,Winter,2017-01-20T08:00Z +Cancel,47,2017,January,3,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-12-09,Winter,2017-01-20T08:00Z +Cancel,128,2017,January,3,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2016-11-23,Winter,2017-01-20T08:00Z +Cancel,10,2017,January,3,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-11,Winter,2017-01-20T08:00Z +Cancel,123,2017,January,3,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-08,Winter,2017-01-20T08:00Z +Cancel,72,2017,January,3,20,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Canceled,2016-12-22,Winter,2017-01-20T08:00Z +Cancel,86,2017,January,3,20,2,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-11-08,Winter,2017-01-20T08:00Z +Cancel,12,2017,January,3,21,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65.5,0,2,Canceled,2017-01-16,Winter,2017-01-21T08:00Z +Cancel,43,2017,January,3,21,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Canceled,2016-12-11,Winter,2017-01-21T08:00Z +Cancel,15,2017,January,4,22,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-07,Winter,2017-01-22T08:00Z +Cancel,124,2017,January,4,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-09-26,Winter,2017-01-22T08:00Z +Cancel,44,2017,January,4,22,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-09,Winter,2017-01-22T08:00Z +Cancel,103,2017,January,4,22,4,9,2,2,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2016-12-13,Winter,2017-01-22T08:00Z +Cancel,8,2017,January,4,23,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2017-01-16,Winter,2017-01-23T08:00Z +Cancel,5,2017,January,4,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,35,0,0,Canceled,2017-01-20,Winter,2017-01-23T08:00Z +Cancel,5,2017,January,4,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,35,0,0,Canceled,2017-01-20,Winter,2017-01-23T08:00Z +Cancel,5,2017,January,4,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,35,0,0,Canceled,2017-01-20,Winter,2017-01-23T08:00Z +Cancel,5,2017,January,4,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,35,0,0,Canceled,2017-01-20,Winter,2017-01-23T08:00Z +Cancel,160,2017,January,4,23,1,4,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-08-20,Winter,2017-01-23T08:00Z +Cancel,13,2017,January,4,24,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-01-12,Winter,2017-01-24T08:00Z +Cancel,6,2017,January,4,24,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 224,0,Transient,35,0,0,Canceled,2017-01-20,Winter,2017-01-24T08:00Z +Cancel,54,2017,January,4,24,1,5,3,1,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-12-01,Winter,2017-01-24T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 178,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Cancel,33,2017,January,4,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-05,Winter,2017-01-25T08:00Z +Cancel,77,2017,January,4,25,3,9,1,0,0,BB,DZA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-11-09,Winter,2017-01-25T08:00Z +Cancel,58,2017,January,4,26,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-11-30,Winter,2017-01-26T08:00Z +Cancel,65,2017,January,4,26,2,3,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Canceled,2016-12-15,Winter,2017-01-26T08:00Z +Cancel,281,2017,January,4,26,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-05-24,Winter,2017-01-26T08:00Z +Cancel,27,2017,January,4,27,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,93,0,1,Canceled,2016-12-31,Winter,2017-01-27T08:00Z +Cancel,24,2017,January,4,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-23,Winter,2017-01-27T08:00Z +Cancel,30,2017,January,4,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-12,Winter,2017-01-27T08:00Z +Cancel,27,2017,January,4,27,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-31,Winter,2017-01-27T08:00Z +Cancel,24,2017,January,4,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-11,Winter,2017-01-27T08:00Z +Cancel,27,2017,January,4,27,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-31,Winter,2017-01-27T08:00Z +Cancel,124,2017,January,4,27,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-25,Winter,2017-01-27T08:00Z +Cancel,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-05,Winter,2017-01-27T08:00Z +Cancel,16,2017,January,4,27,1,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,5,No Deposit , NULL, NULL,0,Transient-Party,35,0,0,Canceled,2017-01-27,Winter,2017-01-27T08:00Z +Cancel,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-05,Winter,2017-01-27T08:00Z +Cancel,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-05,Winter,2017-01-27T08:00Z +Cancel,73,2017,January,4,27,8,21,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.83,0,1,Canceled,2016-11-18,Winter,2017-01-27T08:00Z +Cancel,78,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2017-01-17,Winter,2017-01-28T08:00Z +Cancel,16,2017,January,4,28,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-12,Winter,2017-01-28T08:00Z +Cancel,17,2017,January,4,28,0,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,32,0,0,Canceled,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,94,2017,January,4,28,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-10-27,Winter,2017-01-28T08:00Z +Cancel,2,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,1,Canceled,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,17,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Canceled,2017-01-11,Winter,2017-01-28T08:00Z +Cancel,9,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-19,Winter,2017-01-28T08:00Z +Cancel,3,2017,January,4,28,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,No-Show,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,94,2017,January,4,28,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-10-27,Winter,2017-01-28T08:00Z +Cancel,33,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2016-12-30,Winter,2017-01-28T08:00Z +Cancel,18,2017,January,4,28,0,1,2,0,0,HB,PRT,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Canceled,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Canceled,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-01-27,Winter,2017-01-28T08:00Z +Cancel,209,2017,January,4,28,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-07-29,Winter,2017-01-28T08:00Z +Cancel,5,2017,January,4,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,No-Show,2017-01-28,Winter,2017-01-28T08:00Z +Cancel,3,2017,January,4,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2017-01-25,Winter,2017-01-28T08:00Z +Cancel,219,2017,January,4,28,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,50.22,0,1,Canceled,2017-01-06,Winter,2017-01-28T08:00Z +Cancel,60,2017,January,4,28,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,61.8,0,0,Canceled,2016-12-05,Winter,2017-01-28T08:00Z +Cancel,178,2017,January,4,28,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,55.8,0,3,Canceled,2016-10-23,Winter,2017-01-28T08:00Z +Cancel,11,2017,January,4,28,2,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2017-01-24,Winter,2017-01-28T08:00Z +Cancel,84,2017,January,5,29,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-11-11,Winter,2017-01-29T08:00Z +Cancel,82,2017,January,5,29,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-11-08,Winter,2017-01-29T08:00Z +Cancel,125,2017,January,5,29,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-09-27,Winter,2017-01-29T08:00Z +Cancel,79,2017,January,5,29,2,4,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2016-12-05,Winter,2017-01-29T08:00Z +Cancel,12,2017,January,5,30,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,55.1,0,1,Canceled,2017-01-29,Winter,2017-01-30T08:00Z +Cancel,12,2017,January,5,30,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,83.6,0,1,Canceled,2017-01-29,Winter,2017-01-30T08:00Z +Cancel,12,2017,January,5,30,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-18,Winter,2017-01-30T08:00Z +Cancel,72,2017,January,5,30,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,45.36,0,0,Canceled,2016-12-18,Winter,2017-01-30T08:00Z +Cancel,15,2017,January,5,30,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-17,Winter,2017-01-30T08:00Z +Cancel,71,2017,January,5,30,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2016-12-25,Winter,2017-01-30T08:00Z +Cancel,17,2017,January,5,30,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2017-01-15,Winter,2017-01-30T08:00Z +Cancel,36,2017,January,5,30,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-13,Winter,2017-01-30T08:00Z +Cancel,292,2017,January,5,31,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Canceled,2017-01-03,Winter,2017-01-31T08:00Z +Cancel,106,2017,January,5,31,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,56.24,0,0,Canceled,2016-11-15,Winter,2017-01-31T08:00Z +Cancel,20,2017,January,5,31,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-01-11,Winter,2017-01-31T08:00Z +Cancel,186,2017,January,5,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2017-01-05,Winter,2017-01-31T08:00Z +Cancel,76,2017,February,5,1,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2016-11-21,Winter,2017-02-01T08:00Z +Cancel,11,2017,February,5,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-21,Winter,2017-02-01T08:00Z +Cancel,0,2017,February,5,1,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59,0,0,Canceled,2017-02-01,Winter,2017-02-01T08:00Z +Cancel,123,2017,February,5,1,4,10,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-12-24,Winter,2017-02-01T08:00Z +Cancel,85,2017,February,5,1,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-11-13,Winter,2017-02-01T08:00Z +Cancel,0,2017,February,5,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,No-Show,2017-02-02,Winter,2017-02-02T08:00Z +Cancel,2,2017,February,5,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-31,Winter,2017-02-02T08:00Z +Cancel,169,2017,February,5,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-11-13,Winter,2017-02-02T08:00Z +Cancel,169,2017,February,5,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Canceled,2016-11-13,Winter,2017-02-02T08:00Z +Cancel,81,2017,February,5,2,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient-Party,37,0,1,Canceled,2017-01-14,Winter,2017-02-02T08:00Z +Cancel,110,2017,February,5,2,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,1,Canceled,2016-12-22,Winter,2017-02-02T08:00Z +Cancel,0,2017,February,5,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,43,0,0,Canceled,2017-02-02,Winter,2017-02-02T08:00Z +Cancel,2,2017,February,5,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,No-Show,2017-02-03,Winter,2017-02-03T08:00Z +Cancel,21,2017,February,5,3,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-17,Winter,2017-02-03T08:00Z +Cancel,31,2017,February,5,3,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2017-01-03,Winter,2017-02-03T08:00Z +Cancel,98,2017,February,5,3,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,6,No Deposit , 240, NULL,0,Transient,67.33,0,3,Canceled,2017-01-25,Winter,2017-02-03T08:00Z +Cancel,166,2017,February,5,3,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,51.3,0,0,Canceled,2016-08-22,Winter,2017-02-03T08:00Z +Cancel,28,2017,February,5,3,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,0,Canceled,2017-01-07,Winter,2017-02-03T08:00Z +Cancel,31,2017,February,5,3,2,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-03,Winter,2017-02-03T08:00Z +Cancel,0,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,2,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,1,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,1,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,1,2017,February,5,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,0,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,2,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,1,2017,February,5,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2017-02-04,Winter,2017-02-04T08:00Z +Cancel,29,2017,February,5,4,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.1,0,2,Canceled,2017-01-19,Winter,2017-02-04T08:00Z +Cancel,83,2017,February,5,4,2,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2017-01-06,Winter,2017-02-04T08:00Z +Cancel,83,2017,February,5,4,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2017-01-06,Winter,2017-02-04T08:00Z +Cancel,111,2017,February,5,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-10-27,Winter,2017-02-04T08:00Z +Cancel,54,2017,February,5,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2016-12-13,Winter,2017-02-04T08:00Z +Cancel,85,2017,February,5,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,29,0,2,Canceled,2017-01-18,Winter,2017-02-04T08:00Z +Cancel,200,2017,February,5,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,45,0,0,Canceled,2016-08-01,Winter,2017-02-04T08:00Z +Cancel,135,2017,February,5,4,4,7,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-01,Winter,2017-02-04T08:00Z +Cancel,131,2017,February,5,4,8,20,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-09-26,Winter,2017-02-04T08:00Z +Cancel,3,2017,February,6,5,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2017-02-02,Winter,2017-02-05T08:00Z +Cancel,80,2017,February,6,5,2,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Canceled,2016-11-18,Winter,2017-02-05T08:00Z +Cancel,145,2017,February,6,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-09-13,Winter,2017-02-05T08:00Z +Cancel,40,2017,February,6,5,4,7,2,0,0,BB,MOZ,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2017-01-17,Winter,2017-02-05T08:00Z +Cancel,102,2017,February,6,6,1,0,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,62,0,2,Canceled,2016-12-09,Winter,2017-02-06T08:00Z +Cancel,102,2017,February,6,6,1,0,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,62,0,2,Canceled,2016-12-09,Winter,2017-02-06T08:00Z +Cancel,0,2017,February,6,6,1,0,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,No-Show,2017-02-06,Winter,2017-02-06T08:00Z +Cancel,102,2017,February,6,6,1,0,3,1,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,93,0,2,Canceled,2016-12-09,Winter,2017-02-06T08:00Z +Cancel,95,2017,February,6,6,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,62,0,0,Canceled,2016-11-03,Winter,2017-02-06T08:00Z +Cancel,35,2017,February,6,6,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-02,Winter,2017-02-06T08:00Z +Cancel,170,2017,February,6,6,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-15,Winter,2017-02-06T08:00Z +Cancel,170,2017,February,6,6,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-09-15,Winter,2017-02-06T08:00Z +Cancel,125,2017,February,6,6,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-25,Winter,2017-02-06T08:00Z +Cancel,307,2017,February,6,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,No-Show,2017-02-06,Winter,2017-02-06T08:00Z +Cancel,298,2017,February,6,6,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,34.11,0,0,No-Show,2017-02-06,Winter,2017-02-06T08:00Z +Cancel,348,2017,February,6,7,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,41.4,0,0,Canceled,2016-07-28,Winter,2017-02-07T08:00Z +Cancel,55,2017,February,6,7,2,5,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2016-12-14,Winter,2017-02-07T08:00Z +Cancel,55,2017,February,6,7,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-12-14,Winter,2017-02-07T08:00Z +Cancel,94,2017,February,6,7,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,84.57,0,1,Canceled,2017-01-26,Winter,2017-02-07T08:00Z +Cancel,55,2017,February,6,7,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2016-12-14,Winter,2017-02-07T08:00Z +Cancel,77,2017,February,6,8,0,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,33.26,0,0,Canceled,2016-11-28,Winter,2017-02-08T08:00Z +Cancel,8,2017,February,6,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2017-02-07,Winter,2017-02-08T08:00Z +Cancel,35,2017,February,6,8,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2017-01-05,Winter,2017-02-08T08:00Z +Cancel,11,2017,February,6,8,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-28,Winter,2017-02-08T08:00Z +Cancel,135,2017,February,6,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,45,0,0,Canceled,2017-02-08,Winter,2017-02-08T08:00Z +Cancel,98,2017,February,6,8,6,15,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,37.8,0,0,Canceled,2017-01-19,Winter,2017-02-08T08:00Z +Cancel,32,2017,February,6,9,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,45.6,0,1,Canceled,2017-01-30,Winter,2017-02-09T08:00Z +Cancel,25,2017,February,6,9,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-15,Winter,2017-02-09T08:00Z +Cancel,18,2017,February,6,9,2,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,111,0,1,No-Show,2017-02-09,Winter,2017-02-09T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,47,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,24,2017,February,6,10,0,2,3,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-01-20,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,43,2017,February,6,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-31,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,47,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,7,2017,February,6,10,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2017-02-04,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,19,2017,February,6,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-27,Winter,2017-02-10T08:00Z +Cancel,24,2017,February,6,10,0,2,2,1,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,141,0,0,Canceled,2017-01-20,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,211,2017,February,6,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-08-24,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,238,2017,February,6,10,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 155, NULL,0,Transient,54,0,0,Canceled,2016-12-15,Winter,2017-02-10T08:00Z +Cancel,54,2017,February,6,10,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-30,Winter,2017-02-10T08:00Z +Cancel,55,2017,February,6,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2017-01-07,Winter,2017-02-10T08:00Z +Cancel,77,2017,February,6,10,1,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36.43,0,0,Canceled,2016-11-28,Winter,2017-02-10T08:00Z +Cancel,54,2017,February,6,10,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2016-12-18,Winter,2017-02-10T08:00Z +Cancel,89,2017,February,6,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient,46,0,0,Canceled,2016-12-08,Winter,2017-02-10T08:00Z +Cancel,14,2017,February,6,10,1,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-02-07,Winter,2017-02-10T08:00Z +Cancel,77,2017,February,6,10,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.5,0,0,Canceled,2017-01-10,Winter,2017-02-10T08:00Z +Cancel,137,2017,February,6,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Canceled,2017-01-20,Winter,2017-02-10T08:00Z +Cancel,15,2017,February,6,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-28,Winter,2017-02-11T08:00Z +Cancel,39,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-09,Winter,2017-02-11T08:00Z +Cancel,32,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-13,Winter,2017-02-11T08:00Z +Cancel,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-02-11,Winter,2017-02-11T08:00Z +Cancel,1,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Canceled,2017-02-10,Winter,2017-02-11T08:00Z +Cancel,25,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,54.4,0,0,Canceled,2017-01-18,Winter,2017-02-11T08:00Z +Cancel,1,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Canceled,2017-02-10,Winter,2017-02-11T08:00Z +Cancel,19,2017,February,6,11,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-24,Winter,2017-02-11T08:00Z +Cancel,33,2017,February,6,11,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-16,Winter,2017-02-11T08:00Z +Cancel,161,2017,February,6,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,46.8,0,1,No-Show,2017-02-11,Winter,2017-02-11T08:00Z +Cancel,55,2017,February,6,11,2,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,1,Canceled,2017-01-17,Winter,2017-02-11T08:00Z +Cancel,26,2017,February,6,11,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-17,Winter,2017-02-11T08:00Z +Cancel,149,2017,February,6,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Canceled,2016-10-12,Winter,2017-02-11T08:00Z +Cancel,22,2017,February,6,11,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,51.84,0,0,Canceled,2017-02-01,Winter,2017-02-11T08:00Z +Cancel,82,2017,February,6,11,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30,0,1,No-Show,2017-02-11,Winter,2017-02-11T08:00Z +Cancel,82,2017,February,6,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,42,0,1,No-Show,2017-02-11,Winter,2017-02-11T08:00Z +Cancel,239,2017,February,6,11,8,20,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-08-29,Winter,2017-02-11T08:00Z +Cancel,0,2017,February,7,12,0,0,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Canceled,2017-02-12,Winter,2017-02-12T08:00Z +Cancel,18,2017,February,7,12,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-26,Winter,2017-02-12T08:00Z +Cancel,108,2017,February,7,12,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,101.7,0,0,Canceled,2016-11-04,Winter,2017-02-12T08:00Z +Cancel,40,2017,February,7,12,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-03,Winter,2017-02-12T08:00Z +Cancel,40,2017,February,7,12,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-03,Winter,2017-02-12T08:00Z +Cancel,12,2017,February,7,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.29,0,1,No-Show,2017-02-12,Winter,2017-02-12T08:00Z +Cancel,206,2017,February,7,12,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-08-02,Winter,2017-02-12T08:00Z +Cancel,134,2017,February,7,12,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,26,0,0,Canceled,2016-10-01,Winter,2017-02-12T08:00Z +Cancel,19,2017,February,7,13,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78,0,3,Canceled,2017-02-09,Winter,2017-02-13T08:00Z +Cancel,19,2017,February,7,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-25,Winter,2017-02-13T08:00Z +Cancel,9,2017,February,7,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-07,Winter,2017-02-13T08:00Z +Cancel,42,2017,February,7,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2017-01-24,Winter,2017-02-13T08:00Z +Cancel,179,2017,February,7,13,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,No-Show,2017-02-13,Winter,2017-02-13T08:00Z +Cancel,20,2017,February,7,13,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,0,Canceled,2017-02-01,Winter,2017-02-13T08:00Z +Cancel,11,2017,February,7,13,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-02,Winter,2017-02-13T08:00Z +Cancel,46,2017,February,7,13,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Canceled,2016-12-30,Winter,2017-02-13T08:00Z +Cancel,205,2017,February,7,13,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2017-01-11,Winter,2017-02-13T08:00Z +Cancel,60,2017,February,7,13,1,4,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-01-25,Winter,2017-02-13T08:00Z +Cancel,123,2017,February,7,13,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,40.8,0,2,Canceled,2016-10-14,Winter,2017-02-13T08:00Z +Cancel,142,2017,February,7,13,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2017-01-06,Winter,2017-02-13T08:00Z +Cancel,2,2017,February,7,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,50.85,0,0,No-Show,2017-02-13,Winter,2017-02-13T08:00Z +Cancel,47,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,No-Show,2017-02-14,Winter,2017-02-14T08:00Z +Cancel,38,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,No-Show,2017-02-14,Winter,2017-02-14T08:00Z +Cancel,33,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Canceled,2017-01-25,Winter,2017-02-14T08:00Z +Cancel,17,2017,February,7,14,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2017-01-31,Winter,2017-02-14T08:00Z +Cancel,19,2017,February,7,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60.5,0,3,Canceled,2017-02-03,Winter,2017-02-14T08:00Z +Cancel,14,2017,February,7,14,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 269,0,Transient,35,0,0,No-Show,2017-02-14,Winter,2017-02-14T08:00Z +Cancel,14,2017,February,7,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-02-01,Winter,2017-02-14T08:00Z +Cancel,31,2017,February,7,14,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Canceled,2017-02-13,Winter,2017-02-14T08:00Z +Cancel,30,2017,February,7,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,No-Show,2017-02-14,Winter,2017-02-14T08:00Z +Cancel,38,2017,February,7,14,0,5,2,1,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,79,0,0,Canceled,2017-01-24,Winter,2017-02-14T08:00Z +Cancel,55,2017,February,7,14,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,3,Canceled,2017-02-10,Winter,2017-02-14T08:00Z +Cancel,92,2017,February,7,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,39.9,0,1,Canceled,2016-11-18,Winter,2017-02-15T08:00Z +Cancel,92,2017,February,7,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,39.9,0,1,Canceled,2016-11-18,Winter,2017-02-15T08:00Z +Cancel,2,2017,February,7,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 356,0,Transient,35,0,0,Canceled,2017-02-14,Winter,2017-02-15T08:00Z +Cancel,91,2017,February,7,15,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,62,0,3,Canceled,2016-11-21,Winter,2017-02-15T08:00Z +Cancel,24,2017,February,7,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2017-01-28,Winter,2017-02-16T08:00Z +Cancel,56,2017,February,7,16,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Canceled,2016-12-22,Winter,2017-02-16T08:00Z +Cancel,38,2017,February,7,16,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-01-16,Winter,2017-02-16T08:00Z +Cancel,38,2017,February,7,16,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-16,Winter,2017-02-16T08:00Z +Cancel,24,2017,February,7,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2017-01-28,Winter,2017-02-16T08:00Z +Cancel,30,2017,February,7,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-17,Winter,2017-02-16T08:00Z +Cancel,29,2017,February,7,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-26,Winter,2017-02-16T08:00Z +Cancel,29,2017,February,7,16,1,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,49.5,0,0,Canceled,2017-01-21,Winter,2017-02-16T08:00Z +Cancel,56,2017,February,7,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-25,Winter,2017-02-16T08:00Z +Cancel,34,2017,February,7,16,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,39.6,0,0,Canceled,2017-02-16,Winter,2017-02-16T08:00Z +Cancel,261,2017,February,7,16,8,20,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-12,Winter,2017-02-16T08:00Z +Cancel,342,2017,February,7,16,2,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-09-27,Winter,2017-02-16T08:00Z +Cancel,0,2017,February,7,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78,0,1,No-Show,2017-02-17,Winter,2017-02-17T08:00Z +Cancel,30,2017,February,7,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-20,Winter,2017-02-17T08:00Z +Cancel,36,2017,February,7,17,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-02-03,Winter,2017-02-17T08:00Z +Cancel,15,2017,February,7,17,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,0,Canceled,2017-02-02,Winter,2017-02-17T08:00Z +Cancel,71,2017,February,7,17,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,48,0,2,Canceled,2017-01-06,Winter,2017-02-17T08:00Z +Cancel,33,2017,February,7,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-01-17,Winter,2017-02-17T08:00Z +Cancel,30,2017,February,7,17,0,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36,0,0,Canceled,2017-01-21,Winter,2017-02-17T08:00Z +Cancel,92,2017,February,7,17,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Canceled,2016-12-16,Winter,2017-02-17T08:00Z +Cancel,16,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Canceled,2017-02-13,Winter,2017-02-17T08:00Z +Cancel,44,2017,February,7,17,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.1,0,1,Canceled,2017-02-04,Winter,2017-02-17T08:00Z +Cancel,119,2017,February,7,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2016-12-12,Winter,2017-02-17T08:00Z +Cancel,16,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Canceled,2017-02-13,Winter,2017-02-17T08:00Z +Cancel,73,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-17T08:00Z +Cancel,93,2017,February,7,17,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Canceled,2017-01-13,Winter,2017-02-17T08:00Z +Cancel,93,2017,February,7,17,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2017-01-13,Winter,2017-02-17T08:00Z +Cancel,73,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-03,Winter,2017-02-17T08:00Z +Cancel,16,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-03,Winter,2017-02-17T08:00Z +Cancel,320,2017,February,7,17,2,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-05-28,Winter,2017-02-17T08:00Z +Cancel,34,2017,February,7,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2017-01-16,Winter,2017-02-17T08:00Z +Cancel,23,2017,February,7,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-02-03,Winter,2017-02-17T08:00Z +Cancel,42,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Canceled,2017-01-10,Winter,2017-02-18T08:00Z +Cancel,127,2017,February,7,18,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.4,0,2,Canceled,2016-12-13,Winter,2017-02-18T08:00Z +Cancel,39,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-15,Winter,2017-02-18T08:00Z +Cancel,21,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-02-06,Winter,2017-02-18T08:00Z +Cancel,27,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2017-02-02,Winter,2017-02-18T08:00Z +Cancel,38,2017,February,7,18,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2017-01-27,Winter,2017-02-18T08:00Z +Cancel,21,2017,February,7,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-02-03,Winter,2017-02-18T08:00Z +Cancel,4,2017,February,7,18,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 390, NULL,0,Transient,40,0,0,Canceled,2017-02-18,Winter,2017-02-18T08:00Z +Cancel,186,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-12,Winter,2017-02-18T08:00Z +Cancel,42,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2017-01-10,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,1,2017,February,7,18,1,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,C,3,No Deposit , NULL, 390,0,Transient-Party,35,0,1,No-Show,2017-02-18,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,74,2017,February,7,18,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Canceled,2017-02-01,Winter,2017-02-18T08:00Z +Cancel,35,2017,February,7,18,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-15,Winter,2017-02-18T08:00Z +Cancel,34,2017,February,7,18,2,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,48.6,0,1,No-Show,2017-02-18,Winter,2017-02-18T08:00Z +Cancel,266,2017,February,7,18,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2017-01-29,Winter,2017-02-18T08:00Z +Cancel,58,2017,February,7,18,2,6,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Canceled,2016-12-22,Winter,2017-02-18T08:00Z +Cancel,0,2017,February,8,19,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-19,Winter,2017-02-19T08:00Z +Cancel,200,2017,February,8,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-08-10,Winter,2017-02-19T08:00Z +Cancel,69,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-02-03,Winter,2017-02-19T08:00Z +Cancel,69,2017,February,8,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37,0,1,Canceled,2017-02-03,Winter,2017-02-19T08:00Z +Cancel,73,2017,February,8,19,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-08,Winter,2017-02-19T08:00Z +Cancel,13,2017,February,8,19,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2017-02-10,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,69,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Canceled,2017-02-08,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-12-02,Winter,2017-02-19T08:00Z +Cancel,28,2017,February,8,19,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-01-30,Winter,2017-02-19T08:00Z +Cancel,140,2017,February,8,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,37.44,0,1,Canceled,2017-01-26,Winter,2017-02-19T08:00Z +Cancel,284,2017,February,8,19,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-09-28,Winter,2017-02-19T08:00Z +Cancel,0,2017,February,8,20,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,35,0,0,Canceled,2017-02-20,Winter,2017-02-20T08:00Z +Cancel,5,2017,February,8,20,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-02-15,Winter,2017-02-20T08:00Z +Cancel,28,2017,February,8,20,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,84,0,1,Canceled,2017-02-03,Winter,2017-02-20T08:00Z +Cancel,25,2017,February,8,20,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,3,Canceled,2017-01-31,Winter,2017-02-20T08:00Z +Cancel,6,2017,February,8,20,1,2,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,68,0,1,Canceled,2017-02-17,Winter,2017-02-20T08:00Z +Cancel,137,2017,February,8,20,1,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2017-02-07,Winter,2017-02-20T08:00Z +Cancel,14,2017,February,8,20,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-02-10,Winter,2017-02-20T08:00Z +Cancel,2,2017,February,8,20,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,1,No-Show,2017-02-20,Winter,2017-02-20T08:00Z +Cancel,164,2017,February,8,20,1,5,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-10-05,Winter,2017-02-20T08:00Z +Cancel,20,2017,February,8,21,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 513,0,Transient-Party,44,0,0,Canceled,2017-02-21,Winter,2017-02-21T08:00Z +Cancel,20,2017,February,8,21,0,2,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 513,0,Transient-Party,60,0,0,Canceled,2017-02-21,Winter,2017-02-21T08:00Z +Cancel,1,2017,February,8,21,0,5,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,42,0,0,Canceled,2017-02-20,Winter,2017-02-21T08:00Z +Cancel,69,2017,February,8,21,1,5,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Canceled,2017-02-01,Winter,2017-02-21T08:00Z +Cancel,1,2017,February,8,21,1,5,3,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,12,0,0,Canceled,2017-02-20,Winter,2017-02-21T08:00Z +Cancel,28,2017,February,8,21,2,5,1,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,95,0,0,Canceled,2017-01-24,Winter,2017-02-21T08:00Z +Cancel,29,2017,February,8,21,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Canceled,2017-01-24,Winter,2017-02-21T08:00Z +Cancel,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-02-22,Winter,2017-02-22T08:00Z +Cancel,7,2017,February,8,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,87,0,0,Canceled,2017-02-15,Winter,2017-02-22T08:00Z +Cancel,51,2017,February,8,22,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-03,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,42,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2017-02-01,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,4,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,4,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,4,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2017-02-01,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Canceled,2017-02-01,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,70,2017,February,8,22,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Canceled,2016-12-14,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,4,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,2,2017,February,8,22,0,4,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2017-02-20,Winter,2017-02-22T08:00Z +Cancel,35,2017,February,8,22,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-29,Winter,2017-02-22T08:00Z +Cancel,232,2017,February,8,22,7,19,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Canceled,2016-11-22,Winter,2017-02-22T08:00Z +Cancel,0,2017,February,8,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-02-23,Winter,2017-02-23T08:00Z +Cancel,44,2017,February,8,23,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-01-11,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,55,2017,February,8,23,0,2,2,1,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2016-12-30,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,55,2017,February,8,23,0,2,3,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2016-12-30,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,46,0,0,Canceled,2017-02-21,Winter,2017-02-23T08:00Z +Cancel,120,2017,February,8,23,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Canceled,2016-10-26,Winter,2017-02-23T08:00Z +Cancel,26,2017,February,8,23,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,42.5,0,0,Canceled,2017-01-31,Winter,2017-02-23T08:00Z +Cancel,23,2017,February,8,24,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 405,0,Transient-Party,42,0,0,No-Show,2017-02-24,Winter,2017-02-24T08:00Z +Cancel,35,2017,February,8,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-26,Winter,2017-02-24T08:00Z +Cancel,36,2017,February,8,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,68,0,2,No-Show,2017-02-24,Winter,2017-02-24T08:00Z +Cancel,128,2017,February,8,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,42,0,2,No-Show,2017-02-24,Winter,2017-02-24T08:00Z +Cancel,20,2017,February,8,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Canceled,2017-02-22,Winter,2017-02-24T08:00Z +Cancel,46,2017,February,8,24,1,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Canceled,2017-01-16,Winter,2017-02-24T08:00Z +Cancel,27,2017,February,8,24,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,110,0,0,Canceled,2017-01-28,Winter,2017-02-24T08:00Z +Cancel,46,2017,February,8,24,1,2,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,87,0,0,Canceled,2017-01-16,Winter,2017-02-24T08:00Z +Cancel,46,2017,February,8,24,1,2,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,87,0,0,Canceled,2017-01-16,Winter,2017-02-24T08:00Z +Cancel,112,2017,February,8,24,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-02-15,Winter,2017-02-24T08:00Z +Cancel,76,2017,February,8,24,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-02-07,Winter,2017-02-24T08:00Z +Cancel,105,2017,February,8,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,No-Show,2017-02-24,Winter,2017-02-24T08:00Z +Cancel,39,2017,February,8,24,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-21,Winter,2017-02-24T08:00Z +Cancel,25,2017,February,8,24,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Canceled,2017-02-14,Winter,2017-02-24T08:00Z +Cancel,29,2017,February,8,24,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,1,Canceled,2017-01-26,Winter,2017-02-24T08:00Z +Cancel,18,2017,February,8,24,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94,0,0,Canceled,2017-02-06,Winter,2017-02-24T08:00Z +Cancel,17,2017,February,8,24,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,0,Canceled,2017-02-11,Winter,2017-02-24T08:00Z +Cancel,50,2017,February,8,24,2,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,0,0,Canceled,2017-02-13,Winter,2017-02-24T08:00Z +Cancel,51,2017,February,8,24,2,2,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,0,1,Canceled,2017-02-13,Winter,2017-02-24T08:00Z +Cancel,17,2017,February,8,24,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,54.72,0,0,Canceled,2017-02-07,Winter,2017-02-24T08:00Z +Cancel,34,2017,February,8,24,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-23,Winter,2017-02-24T08:00Z +Cancel,191,2017,February,8,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,44.64,0,0,Canceled,2016-11-21,Winter,2017-02-24T08:00Z +Cancel,46,2017,February,8,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Canceled,2017-02-13,Winter,2017-02-25T08:00Z +Cancel,13,2017,February,8,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2017-02-12,Winter,2017-02-25T08:00Z +Cancel,19,2017,February,8,25,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2017-02-06,Winter,2017-02-25T08:00Z +Cancel,19,2017,February,8,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,3,Canceled,2017-02-12,Winter,2017-02-25T08:00Z +Cancel,16,2017,February,8,25,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2017-02-10,Winter,2017-02-25T08:00Z +Cancel,18,2017,February,8,25,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,69,0,0,Canceled,2017-02-09,Winter,2017-02-25T08:00Z +Cancel,18,2017,February,8,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,0,0,Canceled,2017-02-10,Winter,2017-02-25T08:00Z +Cancel,22,2017,February,8,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2017-02-08,Winter,2017-02-25T08:00Z +Cancel,19,2017,February,8,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,3,Canceled,2017-02-12,Winter,2017-02-25T08:00Z +Cancel,48,2017,February,8,25,1,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,84,0,0,Canceled,2017-02-18,Winter,2017-02-25T08:00Z +Cancel,29,2017,February,8,25,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,51,0,0,Canceled,2017-02-14,Winter,2017-02-25T08:00Z +Cancel,78,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2017-01-17,Winter,2017-02-25T08:00Z +Cancel,21,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,2,Canceled,2017-02-08,Winter,2017-02-25T08:00Z +Cancel,26,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2017-02-03,Winter,2017-02-25T08:00Z +Cancel,35,2017,February,8,25,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60,0,0,Canceled,2017-01-31,Winter,2017-02-25T08:00Z +Cancel,18,2017,February,8,25,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,64.68,0,0,Canceled,2017-02-08,Winter,2017-02-25T08:00Z +Cancel,12,2017,February,8,25,2,1,1,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,62.8,0,1,Canceled,2017-02-17,Winter,2017-02-25T08:00Z +Cancel,54,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-01-09,Winter,2017-02-25T08:00Z +Cancel,82,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-02-07,Winter,2017-02-25T08:00Z +Cancel,75,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Canceled,2017-01-25,Winter,2017-02-25T08:00Z +Cancel,45,2017,February,8,25,2,1,2,1,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,69,0,2,Canceled,2017-01-16,Winter,2017-02-25T08:00Z +Cancel,26,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2017-02-01,Winter,2017-02-25T08:00Z +Cancel,82,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-02-13,Winter,2017-02-25T08:00Z +Cancel,38,2017,February,8,25,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Canceled,2017-01-20,Winter,2017-02-25T08:00Z +Cancel,35,2017,February,8,25,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60,0,0,Canceled,2017-01-31,Winter,2017-02-25T08:00Z +Cancel,29,2017,February,8,25,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.67,0,1,Canceled,2017-02-21,Winter,2017-02-25T08:00Z +Cancel,21,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Canceled,2017-02-09,Winter,2017-02-25T08:00Z +Cancel,38,2017,February,8,25,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60,0,0,Canceled,2017-01-27,Winter,2017-02-25T08:00Z +Cancel,37,2017,February,8,25,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,77,0,1,No-Show,2017-02-25,Winter,2017-02-25T08:00Z +Cancel,186,2017,February,8,25,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.6,0,1,Canceled,2017-02-22,Winter,2017-02-25T08:00Z +Cancel,172,2017,February,8,25,2,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Canceled,2016-09-22,Winter,2017-02-25T08:00Z +Cancel,116,2017,February,8,25,2,5,1,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.14,0,0,Canceled,2017-01-10,Winter,2017-02-25T08:00Z +Cancel,116,2017,February,8,25,2,5,1,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.14,0,0,Canceled,2017-01-10,Winter,2017-02-25T08:00Z +Cancel,184,2017,February,9,26,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2016-12-11,Winter,2017-02-26T08:00Z +Cancel,33,2017,February,9,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-25,Winter,2017-02-26T08:00Z +Cancel,17,2017,February,9,26,2,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,71.46,0,0,Canceled,2017-02-14,Winter,2017-02-26T08:00Z +Cancel,40,2017,February,9,26,2,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,40,0,0,Canceled,2017-01-18,Winter,2017-02-26T08:00Z +Cancel,33,2017,February,9,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Canceled,2017-01-25,Winter,2017-02-26T08:00Z +Cancel,15,2017,February,9,26,2,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,76.5,0,0,Canceled,2017-02-20,Winter,2017-02-26T08:00Z +Cancel,2,2017,February,9,27,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,1,Canceled,2017-02-26,Winter,2017-02-27T08:00Z +Cancel,53,2017,February,9,27,1,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,54,0,0,Canceled,2017-01-06,Winter,2017-02-27T08:00Z +Cancel,16,2017,February,9,27,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-21,Winter,2017-02-27T08:00Z +Cancel,79,2017,February,9,27,1,4,1,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72.8,0,1,Canceled,2016-12-21,Winter,2017-02-27T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,0,2017,February,9,28,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,44.8,0,0,No-Show,2017-02-28,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,63,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,14,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,49,2017,February,9,28,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 332, NULL,0,Transient,35,0,0,Canceled,2017-01-19,Winter,2017-02-28T08:00Z +Cancel,187,2017,February,9,28,0,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,0,Canceled,2017-01-06,Winter,2017-02-28T08:00Z +Cancel,194,2017,March,9,1,2,5,2,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2016-10-02,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,26,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2017-02-10,Spring,2017-03-01T08:00Z +Cancel,50,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,0,Canceled,2017-02-10,Spring,2017-03-01T08:00Z +Cancel,240,2017,March,9,1,4,10,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.64,0,0,Canceled,2016-07-22,Spring,2017-03-01T08:00Z +Cancel,240,2017,March,9,1,4,10,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.64,0,0,Canceled,2016-07-22,Spring,2017-03-01T08:00Z +Cancel,84,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,0,Canceled,2017-02-10,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,84,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,0,Canceled,2017-02-10,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,84,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,0,Canceled,2017-02-10,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,58.6,0,0,Canceled,2016-12-07,Spring,2017-03-01T08:00Z +Cancel,182,2017,March,9,1,8,22,2,2,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2016-11-24,Spring,2017-03-01T08:00Z +Cancel,21,2017,March,9,2,0,3,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2017-02-13,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,BEL,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,1,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Cancel,5,2017,March,9,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2017-02-27,Spring,2017-03-03T08:00Z +Cancel,8,2017,March,9,3,1,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,2,No Deposit , NULL, 223,0,Transient-Party,47,0,0,No-Show,2017-03-03,Spring,2017-03-03T08:00Z +Cancel,8,2017,March,9,3,1,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,No-Show,2017-03-03,Spring,2017-03-03T08:00Z +Cancel,8,2017,March,9,3,1,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,37,0,0,No-Show,2017-03-03,Spring,2017-03-03T08:00Z +Cancel,8,2017,March,9,3,1,2,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,No-Show,2017-03-03,Spring,2017-03-03T08:00Z +Cancel,8,2017,March,9,3,1,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,No-Show,2017-03-03,Spring,2017-03-03T08:00Z +Cancel,39,2017,March,9,4,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,101.3,0,0,Canceled,2017-01-24,Spring,2017-03-04T08:00Z +Cancel,266,2017,March,9,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,33.6,0,0,Canceled,2017-02-18,Spring,2017-03-04T08:00Z +Cancel,11,2017,March,9,4,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,75,0,0,Canceled,2017-02-24,Spring,2017-03-04T08:00Z +Cancel,82,2017,March,9,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2016-12-12,Spring,2017-03-04T08:00Z +Cancel,168,2017,March,9,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47.54,0,0,Canceled,2016-09-18,Spring,2017-03-04T08:00Z +Cancel,167,2017,March,9,4,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47.45,0,0,Canceled,2016-09-18,Spring,2017-03-04T08:00Z +Cancel,316,2017,March,9,4,6,15,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-08-20,Spring,2017-03-04T08:00Z +Cancel,9,2017,March,10,5,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Canceled,2017-02-24,Spring,2017-03-05T08:00Z +Cancel,15,2017,March,10,5,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-21,Spring,2017-03-05T08:00Z +Cancel,30,2017,March,10,5,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-15,Spring,2017-03-05T08:00Z +Cancel,25,2017,March,10,5,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,0,0,Canceled,2017-02-09,Spring,2017-03-05T08:00Z +Cancel,17,2017,March,10,5,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-17,Spring,2017-03-05T08:00Z +Cancel,270,2017,March,10,5,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,55.8,0,0,Canceled,2016-06-08,Spring,2017-03-05T08:00Z +Cancel,270,2017,March,10,5,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,55.8,0,0,Canceled,2016-06-08,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 298, NULL,0,Transient-Party,45,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,53,2017,March,10,5,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,171,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,45,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,35,2017,March,10,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-20,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,53,2017,March,10,5,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,53,2017,March,10,5,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2016-09-15,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,30,0,0,Canceled,2017-01-11,Spring,2017-03-05T08:00Z +Cancel,312,2017,March,10,5,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 298, NULL,0,Transient-Party,58,0,0,Canceled,2017-02-21,Spring,2017-03-05T08:00Z +Cancel,124,2017,March,10,5,4,6,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,28.8,0,0,Canceled,2016-12-15,Spring,2017-03-05T08:00Z +Cancel,195,2017,March,10,5,4,6,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,40.14,0,0,Canceled,2017-02-10,Spring,2017-03-05T08:00Z +Cancel,4,2017,March,10,6,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,30,0,0,No-Show,2017-03-06,Spring,2017-03-06T08:00Z +Cancel,6,2017,March,10,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,0,No-Show,2017-03-06,Spring,2017-03-06T08:00Z +Cancel,5,2017,March,10,6,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-03-02,Spring,2017-03-06T08:00Z +Cancel,3,2017,March,10,6,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,No-Show,2017-03-06,Spring,2017-03-06T08:00Z +Cancel,142,2017,March,10,6,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,37.8,0,0,Canceled,2016-10-15,Spring,2017-03-06T08:00Z +Cancel,1,2017,March,10,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Canceled,2017-03-06,Spring,2017-03-07T08:00Z +Cancel,19,2017,March,10,7,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,60,0,0,Canceled,2017-02-27,Spring,2017-03-07T08:00Z +Cancel,21,2017,March,10,7,0,2,2,2,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-02-24,Spring,2017-03-07T08:00Z +Cancel,220,2017,March,10,7,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,1,Canceled,2017-02-21,Spring,2017-03-07T08:00Z +Cancel,218,2017,March,10,7,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,0,Canceled,2016-08-01,Spring,2017-03-07T08:00Z +Cancel,2,2017,March,10,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 203,0,Transient,35,0,0,Canceled,2017-03-08,Spring,2017-03-08T08:00Z +Cancel,8,2017,March,10,8,0,2,2,2,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-03-06,Spring,2017-03-08T08:00Z +Cancel,25,2017,March,10,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-14,Spring,2017-03-08T08:00Z +Cancel,321,2017,March,10,8,4,10,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Canceled,2016-12-02,Spring,2017-03-08T08:00Z +Cancel,211,2017,March,10,9,0,1,1,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,33.3,0,0,No-Show,2017-03-09,Spring,2017-03-09T08:00Z +Cancel,0,2017,March,10,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Canceled,2017-03-09,Spring,2017-03-09T08:00Z +Cancel,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Canceled,2017-01-06,Spring,2017-03-09T08:00Z +Cancel,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-11-14,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-11-14,Spring,2017-03-09T08:00Z +Cancel,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-11-14,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,17,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56.7,0,0,Canceled,2017-03-06,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-11-14,Spring,2017-03-09T08:00Z +Cancel,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Canceled,2016-11-14,Spring,2017-03-09T08:00Z +Cancel,26,2017,March,10,9,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-15,Spring,2017-03-09T08:00Z +Cancel,100,2017,March,10,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-01-05,Spring,2017-03-09T08:00Z +Cancel,146,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,60,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,16,2017,March,10,9,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,0,Canceled,2017-02-21,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,86,2017,March,10,9,0,3,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 67, NULL,0,Transient,46,0,0,Canceled,2016-12-13,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2016-10-26,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,60.3,0,0,Canceled,2017-02-21,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2016-10-26,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,66.3,0,0,Canceled,2017-02-21,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2016-10-26,Spring,2017-03-09T08:00Z +Cancel,142,2017,March,10,9,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,60.3,0,0,Canceled,2017-02-21,Spring,2017-03-09T08:00Z +Cancel,125,2017,March,10,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2017-01-01,Spring,2017-03-09T08:00Z +Cancel,64,2017,March,10,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,60,0,1,Canceled,2017-02-24,Spring,2017-03-09T08:00Z +Cancel,18,2017,March,10,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-23,Spring,2017-03-10T08:00Z +Cancel,14,2017,March,10,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2017-02-24,Spring,2017-03-10T08:00Z +Cancel,16,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,80,0,0,No-Show,2017-03-10,Spring,2017-03-10T08:00Z +Cancel,14,2017,March,10,10,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-02-24,Spring,2017-03-10T08:00Z +Cancel,32,2017,March,10,10,2,3,2,0,0,BB,POL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,97,0,0,Canceled,2017-02-07,Spring,2017-03-10T08:00Z +Cancel,31,2017,March,10,10,2,3,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-02-18,Spring,2017-03-10T08:00Z +Cancel,148,2017,March,10,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,41.4,0,2,No-Show,2017-03-10,Spring,2017-03-10T08:00Z +Cancel,46,2017,March,10,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,2,Canceled,2017-02-11,Spring,2017-03-11T08:00Z +Cancel,81,2017,March,10,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-16,Spring,2017-03-11T08:00Z +Cancel,22,2017,March,10,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-19,Spring,2017-03-11T08:00Z +Cancel,88,2017,March,10,11,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Canceled,2017-03-07,Spring,2017-03-11T08:00Z +Cancel,57,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-01-26,Spring,2017-03-11T08:00Z +Cancel,9,2017,March,10,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-03-10,Spring,2017-03-11T08:00Z +Cancel,15,2017,March,10,11,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Canceled,2017-03-07,Spring,2017-03-11T08:00Z +Cancel,39,2017,March,10,11,2,5,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-02-21,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,332,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,332,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Canceled,2016-04-13,Spring,2017-03-11T08:00Z +Cancel,57,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Canceled,2017-01-26,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Canceled,2016-04-13,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Canceled,2016-04-13,Spring,2017-03-11T08:00Z +Cancel,88,2017,March,10,11,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Canceled,2017-03-07,Spring,2017-03-11T08:00Z +Cancel,57,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-02-09,Spring,2017-03-11T08:00Z +Cancel,332,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,39,2017,March,10,11,2,5,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-21,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,46,2017,March,10,11,2,5,2,0,0,BB,POL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,89,0,0,Canceled,2017-03-02,Spring,2017-03-11T08:00Z +Cancel,332,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Canceled,2017-01-13,Spring,2017-03-11T08:00Z +Cancel,57,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-01-26,Spring,2017-03-11T08:00Z +Cancel,57,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Canceled,2017-01-26,Spring,2017-03-11T08:00Z +Cancel,339,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Canceled,2016-04-13,Spring,2017-03-11T08:00Z +Cancel,252,2017,March,10,11,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,55.8,0,0,Canceled,2016-07-15,Spring,2017-03-11T08:00Z +Cancel,2,2017,March,11,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2017-03-12,Spring,2017-03-12T08:00Z +Cancel,30,2017,March,11,12,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 263,0,Transient-Party,48,0,0,Canceled,2017-03-10,Spring,2017-03-12T08:00Z +Cancel,66,2017,March,11,12,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-01-05,Spring,2017-03-12T08:00Z +Cancel,39,2017,March,11,12,2,5,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-26,Spring,2017-03-12T08:00Z +Cancel,96,2017,March,11,12,4,7,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-12-06,Spring,2017-03-12T08:00Z +Cancel,96,2017,March,11,12,4,7,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-12-06,Spring,2017-03-12T08:00Z +Cancel,96,2017,March,11,12,4,7,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-12-06,Spring,2017-03-12T08:00Z +Cancel,96,2017,March,11,12,4,7,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,8,0,0,Canceled,2016-12-06,Spring,2017-03-12T08:00Z +Cancel,133,2017,March,11,13,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,42,0,2,Canceled,2016-11-03,Spring,2017-03-13T07:00Z +Cancel,112,2017,March,11,13,1,0,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 66, NULL,0,Transient-Party,36,0,0,Canceled,2016-11-21,Spring,2017-03-13T07:00Z +Cancel,146,2017,March,11,13,1,0,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 66, NULL,34,Transient-Party,36,0,0,Canceled,2016-11-21,Spring,2017-03-13T07:00Z +Cancel,24,2017,March,11,13,1,0,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 66, NULL,0,Transient-Party,32,0,0,Canceled,2017-03-06,Spring,2017-03-13T07:00Z +Cancel,24,2017,March,11,13,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 66, NULL,0,Transient-Party,36,0,0,Canceled,2017-03-06,Spring,2017-03-13T07:00Z +Cancel,58,2017,March,11,13,1,1,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-28,Spring,2017-03-13T07:00Z +Cancel,27,2017,March,11,13,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-02-19,Spring,2017-03-13T07:00Z +Cancel,115,2017,March,11,13,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97.33,0,1,Canceled,2017-03-13,Spring,2017-03-13T07:00Z +Cancel,208,2017,March,11,13,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-21,Spring,2017-03-13T07:00Z +Cancel,0,2017,March,11,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,53.2,0,1,No-Show,2017-03-14,Spring,2017-03-14T07:00Z +Cancel,61,2017,March,11,14,0,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-01-12,Spring,2017-03-14T07:00Z +Cancel,140,2017,March,11,14,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Canceled,2017-03-01,Spring,2017-03-14T07:00Z +Cancel,168,2017,March,11,14,0,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Canceled,2017-03-14,Spring,2017-03-14T07:00Z +Cancel,177,2017,March,11,14,0,5,1,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,0,Canceled,2016-11-29,Spring,2017-03-14T07:00Z +Cancel,157,2017,March,11,14,0,5,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-16,Spring,2017-03-14T07:00Z +Cancel,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-03-14T07:00Z +Cancel,278,2017,March,11,14,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,69.04,0,0,Canceled,2016-10-18,Spring,2017-03-14T07:00Z +Cancel,19,2017,March,11,14,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,112,0,0,Canceled,2017-03-02,Spring,2017-03-14T07:00Z +Cancel,94,2017,March,11,14,2,7,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,55,0,0,Canceled,2017-01-24,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,44,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,194,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,50,Transient-Party,62,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,44,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,144,2017,March,11,14,4,14,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 440, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-07,Spring,2017-03-14T07:00Z +Cancel,194,2017,March,11,14,4,14,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,50,Transient-Party,44,0,0,Canceled,2017-01-10,Spring,2017-03-14T07:00Z +Cancel,177,2017,March,11,14,0,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-11-29,Spring,2017-03-14T07:00Z +Cancel,159,2017,March,11,14,6,15,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,68.4,0,1,Canceled,2017-02-10,Spring,2017-03-14T07:00Z +Cancel,112,2017,March,11,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Canceled,2017-02-16,Spring,2017-03-15T07:00Z +Cancel,112,2017,March,11,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Canceled,2017-02-16,Spring,2017-03-15T07:00Z +Cancel,112,2017,March,11,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Canceled,2017-02-16,Spring,2017-03-15T07:00Z +Cancel,112,2017,March,11,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Canceled,2017-02-16,Spring,2017-03-15T07:00Z +Cancel,112,2017,March,11,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Canceled,2017-02-16,Spring,2017-03-15T07:00Z +Cancel,285,2017,March,11,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Canceled,2016-06-03,Spring,2017-03-15T07:00Z +Cancel,211,2017,March,11,15,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-08-16,Spring,2017-03-15T07:00Z +Cancel,24,2017,March,11,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-22,Spring,2017-03-15T07:00Z +Cancel,210,2017,March,11,15,1,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,47.8,0,2,Canceled,2017-03-08,Spring,2017-03-15T07:00Z +Cancel,232,2017,March,11,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2017-02-22,Spring,2017-03-16T07:00Z +Cancel,148,2017,March,11,16,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Canceled,2017-01-14,Spring,2017-03-16T07:00Z +Cancel,10,2017,March,11,16,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,142,0,0,Canceled,2017-03-06,Spring,2017-03-16T07:00Z +Cancel,139,2017,March,11,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Canceled,2016-11-13,Spring,2017-03-16T07:00Z +Cancel,24,2017,March,11,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2017-03-12,Spring,2017-03-17T07:00Z +Cancel,50,2017,March,11,17,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-01-26,Spring,2017-03-17T07:00Z +Cancel,27,2017,March,11,17,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-18,Spring,2017-03-17T07:00Z +Cancel,28,2017,March,11,17,1,2,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-03-02,Spring,2017-03-17T07:00Z +Cancel,134,2017,March,11,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2016-11-03,Spring,2017-03-17T07:00Z +Cancel,28,2017,March,11,17,1,2,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-03-02,Spring,2017-03-17T07:00Z +Cancel,204,2017,March,11,18,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Canceled,2017-02-03,Spring,2017-03-18T07:00Z +Cancel,30,2017,March,11,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Canceled,2017-03-13,Spring,2017-03-18T07:00Z +Cancel,14,2017,March,11,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2017-03-05,Spring,2017-03-18T07:00Z +Cancel,26,2017,March,11,18,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-20,Spring,2017-03-18T07:00Z +Cancel,68,2017,March,11,18,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-01-09,Spring,2017-03-18T07:00Z +Cancel,201,2017,March,11,18,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2017-03-18,Spring,2017-03-18T07:00Z +Cancel,115,2017,March,11,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.86,0,1,Canceled,2017-01-09,Spring,2017-03-18T07:00Z +Cancel,201,2017,March,11,18,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2017-03-18,Spring,2017-03-18T07:00Z +Cancel,282,2017,March,11,18,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,0,Canceled,2016-07-21,Spring,2017-03-18T07:00Z +Cancel,201,2017,March,11,18,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2017-03-18,Spring,2017-03-18T07:00Z +Cancel,205,2017,March,11,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Canceled,2016-10-16,Spring,2017-03-18T07:00Z +Cancel,74,2017,March,11,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 468, NULL,0,Transient,80,0,0,Canceled,2017-02-20,Spring,2017-03-18T07:00Z +Cancel,309,2017,March,11,18,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.6,0,0,Canceled,2016-05-27,Spring,2017-03-18T07:00Z +Cancel,283,2017,March,12,19,1,0,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,63.3,0,0,Canceled,2017-03-03,Spring,2017-03-19T07:00Z +Cancel,3,2017,March,12,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,35,0,0,Canceled,2017-03-17,Spring,2017-03-19T07:00Z +Cancel,320,2017,March,12,19,1,0,2,0,0,BB,MDV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Canceled,2016-12-05,Spring,2017-03-19T07:00Z +Cancel,216,2017,March,12,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,30.24,0,0,Canceled,2016-08-30,Spring,2017-03-19T07:00Z +Cancel,96,2017,March,12,19,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Canceled,2017-03-07,Spring,2017-03-19T07:00Z +Cancel,12,2017,March,12,19,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Canceled,2017-03-07,Spring,2017-03-19T07:00Z +Cancel,6,2017,March,12,20,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,3,Canceled,2017-03-18,Spring,2017-03-20T07:00Z +Cancel,20,2017,March,12,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,45,0,0,Canceled,2017-03-17,Spring,2017-03-22T07:00Z +Cancel,61,2017,March,12,22,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-01-21,Spring,2017-03-22T07:00Z +Cancel,98,2017,March,12,22,2,7,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.33,0,1,Canceled,2017-02-13,Spring,2017-03-22T07:00Z +Cancel,40,2017,March,12,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-02-11,Spring,2017-03-23T07:00Z +Cancel,123,2017,March,12,23,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.21,0,1,Canceled,2016-11-23,Spring,2017-03-23T07:00Z +Cancel,340,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,39,2017,March,12,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2017-03-13,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,340,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,340,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,340,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,16,2017,March,12,24,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-03-24,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,350,2017,March,12,24,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 11, NULL,0,Transient,30,0,0,Canceled,2017-03-10,Spring,2017-03-24T07:00Z +Cancel,214,2017,March,12,24,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,46,0,0,Canceled,2016-12-15,Spring,2017-03-24T07:00Z +Cancel,214,2017,March,12,24,3,7,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,28,0,0,Canceled,2016-11-01,Spring,2017-03-24T07:00Z +Cancel,186,2017,March,12,24,3,7,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,48,0,0,Canceled,2016-11-01,Spring,2017-03-24T07:00Z +Cancel,214,2017,March,12,24,3,7,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,48,0,0,Canceled,2016-11-01,Spring,2017-03-24T07:00Z +Cancel,214,2017,March,12,24,3,7,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,28,0,0,Canceled,2016-11-01,Spring,2017-03-24T07:00Z +Cancel,186,2017,March,12,24,3,7,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,48,0,0,Canceled,2016-11-01,Spring,2017-03-24T07:00Z +Cancel,214,2017,March,12,24,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,46,0,0,Canceled,2016-12-15,Spring,2017-03-24T07:00Z +Cancel,13,2017,March,12,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-03-13,Spring,2017-03-25T07:00Z +Cancel,13,2017,March,12,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-03-13,Spring,2017-03-25T07:00Z +Cancel,226,2017,March,12,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,0,Canceled,2016-08-11,Spring,2017-03-25T07:00Z +Cancel,226,2017,March,12,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,0,Canceled,2016-08-11,Spring,2017-03-25T07:00Z +Cancel,105,2017,March,12,25,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Canceled,2017-02-08,Spring,2017-03-25T07:00Z +Cancel,120,2017,March,12,25,2,4,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55.83,0,0,Canceled,2017-01-06,Spring,2017-03-25T07:00Z +Cancel,273,2017,March,12,25,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-06-26,Spring,2017-03-25T07:00Z +Cancel,273,2017,March,12,25,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-06-26,Spring,2017-03-25T07:00Z +Cancel,273,2017,March,12,25,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Canceled,2016-06-26,Spring,2017-03-25T07:00Z +Cancel,102,2017,March,13,26,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,39.33,0,0,Canceled,2016-12-23,Spring,2017-03-26T07:00Z +Cancel,102,2017,March,13,26,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,39.33,0,0,Canceled,2016-12-23,Spring,2017-03-26T07:00Z +Cancel,102,2017,March,13,26,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,39.33,0,0,Canceled,2016-12-23,Spring,2017-03-26T07:00Z +Cancel,102,2017,March,13,26,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,39.33,0,0,Canceled,2016-12-23,Spring,2017-03-26T07:00Z +Cancel,102,2017,March,13,26,2,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,39.33,0,0,Canceled,2016-12-23,Spring,2017-03-26T07:00Z +Cancel,74,2017,March,13,26,2,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,6,No Deposit , 240, NULL,0,Transient,96.2,0,1,Canceled,2017-03-22,Spring,2017-03-26T07:00Z +Cancel,11,2017,March,13,26,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,44.64,0,0,No-Show,2017-03-26,Spring,2017-03-26T07:00Z +Cancel,182,2017,March,13,26,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.7,0,2,Canceled,2016-09-29,Spring,2017-03-26T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,42,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,42,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,42,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , 495, NULL,0,Transient,42,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,Non Refund , 495, NULL,0,Transient,65,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,103,2017,March,13,27,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,E,0,Non Refund , 495, NULL,0,Transient,73,0,0,Canceled,2016-12-23,Spring,2017-03-27T07:00Z +Cancel,6,2017,March,13,27,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 135,0,Transient,35,0,0,Canceled,2017-03-27,Spring,2017-03-27T07:00Z +Cancel,34,2017,March,13,27,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Canceled,2017-02-21,Spring,2017-03-27T07:00Z +Cancel,21,2017,March,13,27,1,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.5,0,2,Canceled,2017-03-11,Spring,2017-03-27T07:00Z +Cancel,136,2017,March,13,27,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45,0,2,Canceled,2017-01-05,Spring,2017-03-27T07:00Z +Cancel,176,2017,March,13,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.03,0,0,Canceled,2016-10-02,Spring,2017-03-27T07:00Z +Cancel,0,2017,March,13,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Canceled,2017-03-28,Spring,2017-03-28T07:00Z +Cancel,54,2017,March,13,28,0,2,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,0,Canceled,2017-03-13,Spring,2017-03-28T07:00Z +Cancel,26,2017,March,13,28,0,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,30,0,0,No-Show,2017-03-28,Spring,2017-03-28T07:00Z +Cancel,180,2017,March,13,28,0,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,55.8,0,1,Canceled,2016-10-03,Spring,2017-03-28T07:00Z +Cancel,125,2017,March,13,28,0,4,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,1,Canceled,2017-01-20,Spring,2017-03-28T07:00Z +Cancel,63,2017,March,13,28,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.71,0,0,Canceled,2017-03-17,Spring,2017-03-28T07:00Z +Cancel,192,2017,March,13,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,47.14,0,0,Canceled,2016-09-23,Spring,2017-03-28T07:00Z +Cancel,60,2017,March,13,28,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,37.95,0,0,Canceled,2017-02-14,Spring,2017-03-28T07:00Z +Cancel,40,2017,March,13,28,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Canceled,2017-02-18,Spring,2017-03-28T07:00Z +Cancel,188,2017,March,13,28,4,11,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74.28,0,0,No-Show,2017-03-28,Spring,2017-03-28T07:00Z +Cancel,118,2017,March,13,29,0,1,2,0,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-03-22,Spring,2017-03-29T07:00Z +Cancel,0,2017,March,13,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-03-29,Spring,2017-03-29T07:00Z +Cancel,72,2017,March,13,29,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Canceled,2017-01-17,Spring,2017-03-29T07:00Z +Cancel,40,2017,March,13,29,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,55,0,0,Canceled,2017-02-24,Spring,2017-03-29T07:00Z +Cancel,25,2017,March,13,29,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2017-03-22,Spring,2017-03-29T07:00Z +Cancel,113,2017,March,13,29,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,37.5,0,0,Canceled,2016-12-07,Spring,2017-03-29T07:00Z +Cancel,175,2017,March,13,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.85,0,1,Canceled,2016-10-07,Spring,2017-03-29T07:00Z +Cancel,50,2017,March,13,29,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-23,Spring,2017-03-29T07:00Z +Cancel,66,2017,March,13,30,0,3,2,0,0,BB,POL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,80.07,0,0,Canceled,2017-03-08,Spring,2017-03-30T07:00Z +Cancel,9,2017,March,13,30,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,56,0,1,No-Show,2017-03-30,Spring,2017-03-30T07:00Z +Cancel,47,2017,March,13,30,0,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70.33,0,1,Canceled,2017-02-27,Spring,2017-03-30T07:00Z +Cancel,156,2017,March,13,30,0,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,53.7,0,0,Canceled,2017-01-17,Spring,2017-03-30T07:00Z +Cancel,30,2017,March,13,30,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2017-03-07,Spring,2017-03-30T07:00Z +Cancel,34,2017,March,13,30,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,146.57,0,2,Canceled,2017-02-26,Spring,2017-03-30T07:00Z +Cancel,47,2017,March,13,30,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-26,Spring,2017-03-30T07:00Z +Cancel,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-03-17,Spring,2017-03-30T07:00Z +Cancel,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-03-17,Spring,2017-03-30T07:00Z +Cancel,0,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 521,0,Transient,65,0,0,Canceled,2017-03-31,Spring,2017-03-31T07:00Z +Cancel,19,2017,March,13,31,0,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,95,0,1,Canceled,2017-03-22,Spring,2017-03-31T07:00Z +Cancel,57,2017,March,13,31,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-02,Spring,2017-03-31T07:00Z +Cancel,27,2017,March,13,31,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2017-03-08,Spring,2017-03-31T07:00Z +Cancel,23,2017,March,13,31,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-03-08,Spring,2017-03-31T07:00Z +Cancel,24,2017,March,13,31,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2017-03-19,Spring,2017-03-31T07:00Z +Cancel,64,2017,March,13,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Canceled,2017-02-01,Spring,2017-03-31T07:00Z +Cancel,27,2017,March,13,31,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.5,0,1,Canceled,2017-03-19,Spring,2017-03-31T07:00Z +Cancel,145,2017,March,13,31,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,69.25,0,2,Canceled,2016-11-08,Spring,2017-03-31T07:00Z +Cancel,32,2017,March,13,31,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113.6,0,2,Canceled,2017-03-02,Spring,2017-03-31T07:00Z +Cancel,162,2017,March,13,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.43,0,0,Canceled,2016-10-22,Spring,2017-03-31T07:00Z +Cancel,69,2017,March,13,31,2,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,86.88,0,1,Canceled,2017-01-23,Spring,2017-03-31T07:00Z +Cancel,63,2017,April,13,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Canceled,2017-03-10,Spring,2017-04-01T07:00Z +Cancel,94,2017,April,13,1,2,3,3,1,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,176.4,0,0,Canceled,2017-02-10,Spring,2017-04-01T07:00Z +Cancel,35,2017,April,13,1,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2017-02-27,Spring,2017-04-01T07:00Z +Cancel,48,2017,April,13,1,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,70,0,0,Canceled,2017-03-13,Spring,2017-04-01T07:00Z +Cancel,69,2017,April,13,1,2,5,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129.57,0,0,Canceled,2017-01-22,Spring,2017-04-01T07:00Z +Cancel,177,2017,April,13,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.57,0,0,Canceled,2016-10-06,Spring,2017-04-01T07:00Z +Cancel,174,2017,April,13,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.57,0,2,Canceled,2016-10-11,Spring,2017-04-01T07:00Z +Cancel,57,2017,April,13,1,2,6,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.88,0,1,Canceled,2017-02-06,Spring,2017-04-01T07:00Z +Cancel,2,2017,April,14,2,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,77,0,0,No-Show,2017-04-02,Spring,2017-04-02T07:00Z +Cancel,82,2017,April,14,2,2,1,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2017-01-12,Spring,2017-04-02T07:00Z +Cancel,117,2017,April,14,2,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63,0,1,Canceled,2017-02-23,Spring,2017-04-02T07:00Z +Cancel,38,2017,April,14,2,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-02-23,Spring,2017-04-02T07:00Z +Cancel,84,2017,April,14,2,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114.75,0,2,Canceled,2017-03-20,Spring,2017-04-02T07:00Z +Cancel,38,2017,April,14,2,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-02-23,Spring,2017-04-02T07:00Z +Cancel,174,2017,April,14,2,4,6,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2016-11-10,Spring,2017-04-02T07:00Z +Cancel,10,2017,April,14,3,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,80,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,80,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,255,2017,April,14,3,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2017-01-08,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,10,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,Non Refund , NULL, 135,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-03T07:00Z +Cancel,55,2017,April,14,3,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-17,Spring,2017-04-03T07:00Z +Cancel,26,2017,April,14,3,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,72,0,0,Canceled,2017-03-18,Spring,2017-04-03T07:00Z +Cancel,12,2017,April,14,3,1,3,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-03-23,Spring,2017-04-03T07:00Z +Cancel,112,2017,April,14,3,1,3,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,87.48,0,0,Canceled,2017-02-17,Spring,2017-04-03T07:00Z +Cancel,364,2017,April,14,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,195.98,0,0,Canceled,2016-07-04,Spring,2017-04-03T07:00Z +Cancel,12,2017,April,14,3,1,3,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-03-23,Spring,2017-04-03T07:00Z +Cancel,255,2017,April,14,3,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-01-08,Spring,2017-04-03T07:00Z +Cancel,255,2017,April,14,3,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-01-08,Spring,2017-04-03T07:00Z +Cancel,255,2017,April,14,3,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-01-08,Spring,2017-04-03T07:00Z +Cancel,273,2017,April,14,3,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,81.18,0,0,Canceled,2016-12-12,Spring,2017-04-03T07:00Z +Cancel,48,2017,April,14,4,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-02-20,Spring,2017-04-04T07:00Z +Cancel,26,2017,April,14,4,0,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-03-12,Spring,2017-04-04T07:00Z +Cancel,121,2017,April,14,4,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83.25,0,1,Canceled,2017-02-28,Spring,2017-04-04T07:00Z +Cancel,240,2017,April,14,4,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,57.43,0,1,Canceled,2016-12-03,Spring,2017-04-04T07:00Z +Cancel,192,2017,April,14,4,2,5,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68.57,0,1,Canceled,2016-09-25,Spring,2017-04-04T07:00Z +Cancel,205,2017,April,14,5,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-12-13,Spring,2017-04-05T07:00Z +Cancel,6,2017,April,14,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 20,0,Transient,45,0,0,Canceled,2017-04-03,Spring,2017-04-05T07:00Z +Cancel,12,2017,April,14,5,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-04-05,Spring,2017-04-05T07:00Z +Cancel,46,2017,April,14,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Canceled,2017-02-21,Spring,2017-04-05T07:00Z +Cancel,152,2017,April,14,5,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Canceled,2017-03-28,Spring,2017-04-05T07:00Z +Cancel,226,2017,April,14,5,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2016-08-23,Spring,2017-04-05T07:00Z +Cancel,59,2017,April,14,5,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.75,0,0,Canceled,2017-02-05,Spring,2017-04-05T07:00Z +Cancel,52,2017,April,14,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.75,0,0,Canceled,2017-02-17,Spring,2017-04-05T07:00Z +Cancel,57,2017,April,14,5,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.75,0,1,Canceled,2017-03-07,Spring,2017-04-05T07:00Z +Cancel,152,2017,April,14,5,0,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Canceled,2017-03-28,Spring,2017-04-05T07:00Z +Cancel,252,2017,April,14,5,1,4,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,C,C,4,No Deposit , NULL, 223,100,Transient-Party,42,0,0,Canceled,2017-03-29,Spring,2017-04-05T07:00Z +Cancel,1,2017,April,14,5,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116,0,2,Canceled,2017-04-04,Spring,2017-04-05T07:00Z +Cancel,21,2017,April,14,5,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,125.29,0,1,Canceled,2017-03-26,Spring,2017-04-05T07:00Z +Cancel,41,2017,April,14,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.86,0,1,Canceled,2017-02-27,Spring,2017-04-05T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,10,2017,April,14,6,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,162,0,0,Canceled,2017-03-28,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,22,2017,April,14,6,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-03-15,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,175,2017,April,14,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-22,Spring,2017-04-06T07:00Z +Cancel,180,2017,April,14,6,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.75,0,1,Canceled,2017-03-03,Spring,2017-04-06T07:00Z +Cancel,31,2017,April,14,6,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,51.75,0,1,Canceled,2017-03-27,Spring,2017-04-06T07:00Z +Cancel,32,2017,April,14,6,2,3,3,1,0,BB,VEN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-03-26,Spring,2017-04-06T07:00Z +Cancel,84,2017,April,14,6,2,5,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,206.5,0,0,Canceled,2017-03-31,Spring,2017-04-06T07:00Z +Cancel,0,2017,April,14,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-04-07,Spring,2017-04-07T07:00Z +Cancel,1,2017,April,14,7,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,110,0,0,Canceled,2017-04-07,Spring,2017-04-07T07:00Z +Cancel,47,2017,April,14,7,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.33,0,2,No-Show,2017-04-07,Spring,2017-04-07T07:00Z +Cancel,53,2017,April,14,7,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,137.71,0,0,Canceled,2017-02-13,Spring,2017-04-07T07:00Z +Cancel,32,2017,April,14,7,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,159.29,0,0,Canceled,2017-03-25,Spring,2017-04-07T07:00Z +Cancel,53,2017,April,14,7,2,5,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,187.71,0,0,Canceled,2017-02-14,Spring,2017-04-07T07:00Z +Cancel,53,2017,April,14,7,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,137.71,0,0,Canceled,2017-02-13,Spring,2017-04-07T07:00Z +Cancel,84,2017,April,14,7,2,4,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,193,0,0,Canceled,2017-01-26,Spring,2017-04-07T07:00Z +Cancel,223,2017,April,14,7,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,0,2,Canceled,2017-02-26,Spring,2017-04-07T07:00Z +Cancel,24,2017,April,14,8,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,147,0,1,No-Show,2017-04-08,Spring,2017-04-08T07:00Z +Cancel,45,2017,April,14,8,0,1,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,138.4,0,1,Canceled,2017-03-10,Spring,2017-04-08T07:00Z +Cancel,155,2017,April,14,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,No-Show,2017-04-08,Spring,2017-04-08T07:00Z +Cancel,62,2017,April,14,8,2,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2017-02-06,Spring,2017-04-08T07:00Z +Cancel,123,2017,April,14,8,2,1,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2016-12-15,Spring,2017-04-08T07:00Z +Cancel,45,2017,April,14,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,137,0,1,Canceled,2017-03-28,Spring,2017-04-08T07:00Z +Cancel,45,2017,April,14,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,137,0,1,Canceled,2017-03-28,Spring,2017-04-08T07:00Z +Cancel,58,2017,April,14,8,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-02-19,Spring,2017-04-08T07:00Z +Cancel,30,2017,April,14,8,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-10,Spring,2017-04-08T07:00Z +Cancel,95,2017,April,14,8,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2017-01-19,Spring,2017-04-08T07:00Z +Cancel,32,2017,April,14,8,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-03-28,Spring,2017-04-08T07:00Z +Cancel,313,2017,April,14,8,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,46,2017,April,14,8,2,5,2,2,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153.57,0,0,Canceled,2017-02-23,Spring,2017-04-08T07:00Z +Cancel,60,2017,April,14,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,76,0,0,Canceled,2017-03-09,Spring,2017-04-08T07:00Z +Cancel,47,2017,April,14,8,2,5,2,2,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153.57,0,0,Canceled,2017-02-20,Spring,2017-04-08T07:00Z +Cancel,89,2017,April,14,8,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,147.86,0,0,Canceled,2017-01-11,Spring,2017-04-08T07:00Z +Cancel,313,2017,April,14,8,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,313,2017,April,14,8,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,313,2017,April,14,8,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,86,2017,April,14,8,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195.86,0,0,Canceled,2017-02-07,Spring,2017-04-08T07:00Z +Cancel,313,2017,April,14,8,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,187,2017,April,14,8,2,5,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2017-02-11,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,58,2017,April,14,8,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,147.86,0,0,Canceled,2017-02-09,Spring,2017-04-08T07:00Z +Cancel,233,2017,April,14,8,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.34,0,1,Canceled,2016-12-25,Spring,2017-04-08T07:00Z +Cancel,233,2017,April,14,8,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.34,0,1,Canceled,2016-12-25,Spring,2017-04-08T07:00Z +Cancel,70,2017,April,14,8,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.86,0,0,Canceled,2017-01-29,Spring,2017-04-08T07:00Z +Cancel,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Canceled,2017-01-26,Spring,2017-04-08T07:00Z +Cancel,200,2017,April,14,8,4,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,74.46,0,2,Canceled,2016-11-19,Spring,2017-04-08T07:00Z +Cancel,3,2017,April,15,9,1,0,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,Non Refund , NULL, NULL,0,Transient,100,0,0,Canceled,2017-04-06,Spring,2017-04-09T07:00Z +Cancel,29,2017,April,15,9,1,0,2,2,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2017-03-14,Spring,2017-04-09T07:00Z +Cancel,3,2017,April,15,9,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,Non Refund , NULL, NULL,0,Transient,100,0,0,Canceled,2017-04-06,Spring,2017-04-09T07:00Z +Cancel,210,2017,April,15,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,43.2,0,0,Canceled,2016-10-04,Spring,2017-04-09T07:00Z +Cancel,79,2017,April,15,9,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,79.2,0,0,Canceled,2017-02-17,Spring,2017-04-09T07:00Z +Cancel,212,2017,April,15,9,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,43.2,0,0,Canceled,2016-09-11,Spring,2017-04-09T07:00Z +Cancel,3,2017,April,15,9,2,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,Non Refund , NULL, NULL,0,Transient,100,0,0,Canceled,2017-04-06,Spring,2017-04-09T07:00Z +Cancel,3,2017,April,15,9,2,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,Non Refund , NULL, NULL,0,Transient,100,0,0,Canceled,2017-04-06,Spring,2017-04-09T07:00Z +Cancel,68,2017,April,15,9,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-02-19,Spring,2017-04-09T07:00Z +Cancel,55,2017,April,15,9,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2017-02-13,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,E,E,0,Non Refund , 492, NULL,0,Transient,105,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,105,2017,April,15,9,2,5,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,149.29,0,0,Canceled,2017-03-19,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,1,0,HB,PRT,Groups,TA/TO, 0,0,0,H,H,1,Non Refund , 492, NULL,0,Transient,120,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,146,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,22,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,Non Refund , 492, NULL,0,Transient,80,0,0,Canceled,2017-02-28,Spring,2017-04-09T07:00Z +Cancel,30,2017,April,15,9,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,60,0,0,Canceled,2017-03-17,Spring,2017-04-09T07:00Z +Cancel,216,2017,April,15,9,4,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87.9,0,0,Canceled,2016-09-05,Spring,2017-04-09T07:00Z +Cancel,216,2017,April,15,9,4,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87.9,0,0,Canceled,2016-09-05,Spring,2017-04-09T07:00Z +Cancel,97,2017,April,15,9,4,10,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,187.64,0,0,Canceled,2017-01-12,Spring,2017-04-09T07:00Z +Cancel,188,2017,April,15,10,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,43.2,0,0,Canceled,2016-11-07,Spring,2017-04-10T07:00Z +Cancel,21,2017,April,15,10,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,120,0,2,Canceled,2017-03-29,Spring,2017-04-10T07:00Z +Cancel,217,2017,April,15,10,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,71.2,0,0,Canceled,2016-09-08,Spring,2017-04-10T07:00Z +Cancel,214,2017,April,15,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,43.2,0,0,Canceled,2016-09-09,Spring,2017-04-10T07:00Z +Cancel,56,2017,April,15,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-03-07,Spring,2017-04-10T07:00Z +Cancel,54,2017,April,15,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2017-03-07,Spring,2017-04-10T07:00Z +Cancel,24,2017,April,15,10,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,121.25,0,1,Canceled,2017-03-21,Spring,2017-04-10T07:00Z +Cancel,148,2017,April,15,10,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,111.25,0,2,Canceled,2017-01-09,Spring,2017-04-10T07:00Z +Cancel,148,2017,April,15,10,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,184.25,0,2,Canceled,2017-01-09,Spring,2017-04-10T07:00Z +Cancel,29,2017,April,15,10,1,4,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,127,0,0,Canceled,2017-03-12,Spring,2017-04-10T07:00Z +Cancel,62,2017,April,15,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Canceled,2017-02-07,Spring,2017-04-10T07:00Z +Cancel,65,2017,April,15,10,1,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 314, NULL,0,Transient,103.68,0,0,Canceled,2017-04-08,Spring,2017-04-10T07:00Z +Cancel,238,2017,April,15,10,1,5,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,77.85,0,0,Canceled,2016-08-15,Spring,2017-04-10T07:00Z +Cancel,212,2017,April,15,10,3,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.9,0,1,Canceled,2016-09-21,Spring,2017-04-10T07:00Z +Cancel,39,2017,April,15,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2017-03-28,Spring,2017-04-10T07:00Z +Cancel,62,2017,April,15,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94,0,1,Canceled,2017-02-07,Spring,2017-04-10T07:00Z +Cancel,5,2017,April,15,11,0,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,Non Refund , NULL, NULL,0,Transient,100,0,0,Canceled,2017-04-06,Spring,2017-04-11T07:00Z +Cancel,23,2017,April,15,11,0,2,2,1,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,135.5,0,1,Canceled,2017-03-23,Spring,2017-04-11T07:00Z +Cancel,52,2017,April,15,11,0,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2017-04-04,Spring,2017-04-11T07:00Z +Cancel,70,2017,April,15,11,0,4,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,128.8,0,1,Canceled,2017-03-20,Spring,2017-04-11T07:00Z +Cancel,51,2017,April,15,11,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2017-03-05,Spring,2017-04-11T07:00Z +Cancel,70,2017,April,15,11,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2017-02-01,Spring,2017-04-11T07:00Z +Cancel,70,2017,April,15,11,0,4,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,128.8,0,1,Canceled,2017-03-20,Spring,2017-04-11T07:00Z +Cancel,70,2017,April,15,11,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Canceled,2017-02-01,Spring,2017-04-11T07:00Z +Cancel,62,2017,April,15,11,0,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,128,0,0,Canceled,2017-02-11,Spring,2017-04-11T07:00Z +Cancel,76,2017,April,15,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2017-03-26,Spring,2017-04-11T07:00Z +Cancel,25,2017,April,15,11,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,Refundable , 250, NULL,0,Transient,115.5,0,1,Canceled,2017-04-10,Spring,2017-04-11T07:00Z +Cancel,25,2017,April,15,11,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,115.5,0,1,Canceled,2017-04-10,Spring,2017-04-11T07:00Z +Cancel,220,2017,April,15,12,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.3,0,0,Canceled,2016-09-06,Spring,2017-04-12T07:00Z +Cancel,27,2017,April,15,12,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,102.5,0,1,Canceled,2017-03-18,Spring,2017-04-12T07:00Z +Cancel,50,2017,April,15,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-03-07,Spring,2017-04-12T07:00Z +Cancel,32,2017,April,15,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,3,Canceled,2017-03-22,Spring,2017-04-12T07:00Z +Cancel,77,2017,April,15,12,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.67,0,0,Canceled,2017-01-25,Spring,2017-04-12T07:00Z +Cancel,42,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97.5,0,2,Canceled,2017-03-21,Spring,2017-04-12T07:00Z +Cancel,141,2017,April,15,12,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-02-19,Spring,2017-04-12T07:00Z +Cancel,141,2017,April,15,12,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-02-19,Spring,2017-04-12T07:00Z +Cancel,95,2017,April,15,12,1,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,2,Canceled,2017-02-08,Spring,2017-04-12T07:00Z +Cancel,203,2017,April,15,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-09-22,Spring,2017-04-12T07:00Z +Cancel,66,2017,April,15,12,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-02-05,Spring,2017-04-12T07:00Z +Cancel,19,2017,April,15,12,2,4,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,182.5,0,0,Canceled,2017-03-25,Spring,2017-04-12T07:00Z +Cancel,13,2017,April,15,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Canceled,2017-03-31,Spring,2017-04-13T07:00Z +Cancel,26,2017,April,15,13,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,200,0,1,Canceled,2017-03-27,Spring,2017-04-13T07:00Z +Cancel,153,2017,April,15,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2017-01-24,Spring,2017-04-13T07:00Z +Cancel,63,2017,April,15,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-02-11,Spring,2017-04-13T07:00Z +Cancel,66,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,0,Canceled,2017-02-06,Spring,2017-04-13T07:00Z +Cancel,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient-Party,95.4,0,1,Canceled,2017-03-10,Spring,2017-04-13T07:00Z +Cancel,73,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2017-01-30,Spring,2017-04-13T07:00Z +Cancel,23,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2017-03-22,Spring,2017-04-13T07:00Z +Cancel,40,2017,April,15,13,0,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,193,0,1,Canceled,2017-03-09,Spring,2017-04-13T07:00Z +Cancel,66,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,0,Canceled,2017-02-06,Spring,2017-04-13T07:00Z +Cancel,246,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Canceled,2017-03-29,Spring,2017-04-13T07:00Z +Cancel,80,2017,April,15,13,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,102.34,0,1,Canceled,2017-01-24,Spring,2017-04-13T07:00Z +Cancel,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient-Party,95.4,0,1,Canceled,2017-03-10,Spring,2017-04-13T07:00Z +Cancel,32,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-04-01,Spring,2017-04-13T07:00Z +Cancel,35,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,167,0,3,Canceled,2017-03-22,Spring,2017-04-13T07:00Z +Cancel,180,2017,April,15,13,0,3,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-03-05,Spring,2017-04-13T07:00Z +Cancel,43,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Canceled,2017-03-30,Spring,2017-04-13T07:00Z +Cancel,261,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-07-26,Spring,2017-04-13T07:00Z +Cancel,62,2017,April,15,13,1,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,116.75,0,0,Canceled,2017-03-09,Spring,2017-04-13T07:00Z +Cancel,35,2017,April,15,13,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,162,0,0,Canceled,2017-03-09,Spring,2017-04-13T07:00Z +Cancel,90,2017,April,15,13,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108.75,0,2,Canceled,2017-01-20,Spring,2017-04-13T07:00Z +Cancel,43,2017,April,15,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-03-01,Spring,2017-04-13T07:00Z +Cancel,230,2017,April,15,13,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,111.83,0,2,Canceled,2017-03-03,Spring,2017-04-13T07:00Z +Cancel,167,2017,April,15,13,2,3,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.5,0,3,Canceled,2016-11-14,Spring,2017-04-13T07:00Z +Cancel,230,2017,April,15,13,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,195.25,0,2,Canceled,2017-03-03,Spring,2017-04-13T07:00Z +Cancel,76,2017,April,15,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.75,0,1,Canceled,2017-02-20,Spring,2017-04-13T07:00Z +Cancel,167,2017,April,15,13,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.5,0,3,Canceled,2016-11-14,Spring,2017-04-13T07:00Z +Cancel,86,2017,April,15,13,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,93.94,0,0,Canceled,2017-04-11,Spring,2017-04-13T07:00Z +Cancel,72,2017,April,15,13,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.5,0,1,Canceled,2017-01-31,Spring,2017-04-13T07:00Z +Cancel,159,2017,April,15,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-12-18,Spring,2017-04-13T07:00Z +Cancel,227,2017,April,15,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.04,0,2,Canceled,2016-09-01,Spring,2017-04-13T07:00Z +Cancel,224,2017,April,15,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.04,0,2,Canceled,2016-09-05,Spring,2017-04-13T07:00Z +Cancel,162,2017,April,15,13,2,7,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,5,No Deposit , 240, NULL,0,Transient,130,0,0,Canceled,2017-03-13,Spring,2017-04-13T07:00Z +Cancel,161,2017,April,15,13,2,7,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Canceled,2017-03-12,Spring,2017-04-13T07:00Z +Cancel,162,2017,April,15,13,2,7,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , 240, NULL,0,Transient-Party,90,0,0,Canceled,2016-11-07,Spring,2017-04-13T07:00Z +Cancel,162,2017,April,15,13,2,7,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , 240, NULL,0,Transient-Party,90,0,0,Canceled,2016-11-03,Spring,2017-04-13T07:00Z +Cancel,161,2017,April,15,13,2,7,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2017-03-13,Spring,2017-04-13T07:00Z +Cancel,162,2017,April,15,13,2,7,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,6,No Deposit , 240, NULL,0,Transient-Party,90,0,0,Canceled,2016-11-03,Spring,2017-04-13T07:00Z +Cancel,58,2017,April,15,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-15,Spring,2017-04-14T07:00Z +Cancel,71,2017,April,15,14,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,2,Canceled,2017-03-06,Spring,2017-04-14T07:00Z +Cancel,58,2017,April,15,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-15,Spring,2017-04-14T07:00Z +Cancel,43,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-03-13,Spring,2017-04-14T07:00Z +Cancel,43,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-03-13,Spring,2017-04-14T07:00Z +Cancel,43,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-03-13,Spring,2017-04-14T07:00Z +Cancel,80,2017,April,15,14,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2017-01-24,Spring,2017-04-14T07:00Z +Cancel,186,2017,April,15,14,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,76.67,0,1,Canceled,2017-01-05,Spring,2017-04-14T07:00Z +Cancel,14,2017,April,15,14,1,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,243,0,0,Canceled,2017-04-06,Spring,2017-04-14T07:00Z +Cancel,172,2017,April,15,14,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,1,Canceled,2017-01-25,Spring,2017-04-14T07:00Z +Cancel,98,2017,April,15,14,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.67,0,0,Canceled,2017-01-07,Spring,2017-04-14T07:00Z +Cancel,72,2017,April,15,14,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2017-03-07,Spring,2017-04-14T07:00Z +Cancel,60,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91.67,0,1,Canceled,2017-02-28,Spring,2017-04-14T07:00Z +Cancel,55,2017,April,15,14,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98.33,0,0,Canceled,2017-02-20,Spring,2017-04-14T07:00Z +Cancel,79,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2017-01-27,Spring,2017-04-14T07:00Z +Cancel,72,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Canceled,2017-02-05,Spring,2017-04-14T07:00Z +Cancel,70,2017,April,15,14,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91.67,0,1,Canceled,2017-02-04,Spring,2017-04-14T07:00Z +Cancel,208,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.8,0,2,Canceled,2017-03-07,Spring,2017-04-14T07:00Z +Cancel,87,2017,April,15,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,76.67,0,1,Canceled,2017-04-04,Spring,2017-04-14T07:00Z +Cancel,229,2017,April,15,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,70.25,0,1,Canceled,2016-10-05,Spring,2017-04-14T07:00Z +Cancel,75,2017,April,15,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.5,0,0,Canceled,2017-02-04,Spring,2017-04-14T07:00Z +Cancel,272,2017,April,15,14,2,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91.35,0,0,Canceled,2016-07-25,Spring,2017-04-14T07:00Z +Cancel,111,2017,April,15,14,2,3,2,2,0,BB,MDV,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-02-21,Spring,2017-04-14T07:00Z +Cancel,102,2017,April,15,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-04-01,Spring,2017-04-14T07:00Z +Cancel,69,2017,April,15,14,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,2,Canceled,2017-02-15,Spring,2017-04-14T07:00Z +Cancel,111,2017,April,15,14,2,3,1,0,0,BB,MDV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,61,0,1,Canceled,2017-02-21,Spring,2017-04-14T07:00Z +Cancel,46,2017,April,15,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93,0,0,Canceled,2017-02-28,Spring,2017-04-14T07:00Z +Cancel,173,2017,April,15,14,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.5,0,3,Canceled,2016-11-24,Spring,2017-04-14T07:00Z +Cancel,173,2017,April,15,14,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.5,0,3,Canceled,2016-11-24,Spring,2017-04-14T07:00Z +Cancel,161,2017,April,15,14,2,5,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2017-03-11,Spring,2017-04-14T07:00Z +Cancel,105,2017,April,15,14,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97.14,0,0,Canceled,2017-03-03,Spring,2017-04-14T07:00Z +Cancel,267,2017,April,15,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,0,Canceled,2016-07-21,Spring,2017-04-14T07:00Z +Cancel,267,2017,April,15,14,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.81,0,1,Canceled,2017-03-24,Spring,2017-04-14T07:00Z +Cancel,249,2017,April,15,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,0,Canceled,2016-08-09,Spring,2017-04-14T07:00Z +Cancel,267,2017,April,15,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,0,Canceled,2016-07-21,Spring,2017-04-14T07:00Z +Cancel,267,2017,April,15,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,0,Canceled,2016-07-21,Spring,2017-04-14T07:00Z +Cancel,267,2017,April,15,14,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.81,0,1,Canceled,2017-03-24,Spring,2017-04-14T07:00Z +Cancel,119,2017,April,15,14,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80.56,0,1,Canceled,2017-02-05,Spring,2017-04-14T07:00Z +Cancel,3,2017,April,15,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,131,0,0,Canceled,2017-04-13,Spring,2017-04-15T07:00Z +Cancel,19,2017,April,15,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-03-27,Spring,2017-04-15T07:00Z +Cancel,102,2017,April,15,15,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,102.5,0,0,Canceled,2017-03-23,Spring,2017-04-15T07:00Z +Cancel,102,2017,April,15,15,1,1,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,79.5,0,0,Canceled,2017-03-23,Spring,2017-04-15T07:00Z +Cancel,98,2017,April,15,15,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.5,0,2,Canceled,2017-03-12,Spring,2017-04-15T07:00Z +Cancel,29,2017,April,15,15,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,88.67,0,1,Canceled,2017-03-17,Spring,2017-04-15T07:00Z +Cancel,73,2017,April,15,15,2,1,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.33,0,0,Canceled,2017-02-01,Spring,2017-04-15T07:00Z +Cancel,73,2017,April,15,15,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,82.49,0,0,Canceled,2017-02-01,Spring,2017-04-15T07:00Z +Cancel,73,2017,April,15,15,2,1,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.33,0,0,Canceled,2017-02-01,Spring,2017-04-15T07:00Z +Cancel,10,2017,April,15,15,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,No-Show,2017-04-15,Spring,2017-04-15T07:00Z +Cancel,102,2017,April,15,15,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2017-03-03,Spring,2017-04-15T07:00Z +Cancel,210,2017,April,15,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.14,0,0,Canceled,2016-10-01,Spring,2017-04-15T07:00Z +Cancel,98,2017,April,15,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,75.36,0,1,Canceled,2017-04-04,Spring,2017-04-15T07:00Z +Cancel,86,2017,April,15,15,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,203.21,0,0,Canceled,2017-01-20,Spring,2017-04-15T07:00Z +Cancel,239,2017,April,15,15,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.89,0,1,Canceled,2016-10-03,Spring,2017-04-15T07:00Z +Cancel,93,2017,April,15,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78.57,0,0,Canceled,2017-01-28,Spring,2017-04-15T07:00Z +Cancel,239,2017,April,15,15,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.89,0,1,Canceled,2016-10-03,Spring,2017-04-15T07:00Z +Cancel,125,2017,April,15,15,2,5,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123.57,0,1,Canceled,2016-12-16,Spring,2017-04-15T07:00Z +Cancel,24,2017,April,16,16,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-03-23,Spring,2017-04-16T07:00Z +Cancel,184,2017,April,16,16,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Canceled,2016-10-26,Spring,2017-04-16T07:00Z +Cancel,4,2017,April,16,16,2,0,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,181,0,0,Canceled,2017-04-13,Spring,2017-04-16T07:00Z +Cancel,94,2017,April,16,16,2,2,4,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,Refundable , 147, NULL,0,Transient,108.36,0,0,Canceled,2017-04-12,Spring,2017-04-16T07:00Z +Cancel,72,2017,April,16,16,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-04-02,Spring,2017-04-16T07:00Z +Cancel,116,2017,April,16,16,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-04-02,Spring,2017-04-16T07:00Z +Cancel,179,2017,April,16,16,2,4,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,183,0,2,Canceled,2017-04-02,Spring,2017-04-16T07:00Z +Cancel,158,2017,April,16,16,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,70.8,0,1,Canceled,2017-03-17,Spring,2017-04-16T07:00Z +Cancel,179,2017,April,16,16,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,96.3,0,2,Canceled,2017-04-02,Spring,2017-04-16T07:00Z +Cancel,132,2017,April,16,16,2,4,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,83.84,0,1,Canceled,2017-04-15,Spring,2017-04-16T07:00Z +Cancel,154,2017,April,16,16,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-11-27,Spring,2017-04-16T07:00Z +Cancel,131,2017,April,16,16,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 493, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-04-16T07:00Z +Cancel,210,2017,April,16,16,2,5,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,84.21,0,2,Canceled,2017-04-15,Spring,2017-04-16T07:00Z +Cancel,95,2017,April,16,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.4,0,0,Canceled,2017-01-24,Spring,2017-04-16T07:00Z +Cancel,221,2017,April,16,16,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2017-03-08,Spring,2017-04-16T07:00Z +Cancel,131,2017,April,16,16,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-28,Spring,2017-04-16T07:00Z +Cancel,87,2017,April,16,16,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-03-26,Spring,2017-04-16T07:00Z +Cancel,95,2017,April,16,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.4,0,0,Canceled,2017-01-24,Spring,2017-04-16T07:00Z +Cancel,131,2017,April,16,16,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 493, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-04-16T07:00Z +Cancel,104,2017,April,16,16,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-01-27,Spring,2017-04-16T07:00Z +Cancel,87,2017,April,16,16,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2017-01-21,Spring,2017-04-16T07:00Z +Cancel,131,2017,April,16,16,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 493, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-16,Spring,2017-04-16T07:00Z +Cancel,131,2017,April,16,16,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Transient-Party,80,0,0,Canceled,2017-02-28,Spring,2017-04-16T07:00Z +Cancel,184,2017,April,16,16,1,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,117,0,1,Canceled,2016-10-25,Spring,2017-04-16T07:00Z +Cancel,144,2017,April,16,16,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,0,Canceled,2017-02-27,Spring,2017-04-16T07:00Z +Cancel,133,2017,April,16,16,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-03,Spring,2017-04-16T07:00Z +Cancel,184,2017,April,16,16,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Canceled,2016-10-25,Spring,2017-04-16T07:00Z +Cancel,65,2017,April,16,17,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-02-15,Spring,2017-04-17T07:00Z +Cancel,92,2017,April,16,17,1,0,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51,0,0,Canceled,2017-02-25,Spring,2017-04-17T07:00Z +Cancel,68,2017,April,16,17,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-02-09,Spring,2017-04-17T07:00Z +Cancel,92,2017,April,16,17,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-25,Spring,2017-04-17T07:00Z +Cancel,92,2017,April,16,17,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2017-02-25,Spring,2017-04-17T07:00Z +Cancel,39,2017,April,16,17,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2017-03-27,Spring,2017-04-17T07:00Z +Cancel,126,2017,April,16,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54,0,1,Canceled,2017-04-06,Spring,2017-04-17T07:00Z +Cancel,126,2017,April,16,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54,0,1,Canceled,2017-04-06,Spring,2017-04-17T07:00Z +Cancel,39,2017,April,16,17,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2017-03-27,Spring,2017-04-17T07:00Z +Cancel,126,2017,April,16,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54,0,1,Canceled,2017-04-06,Spring,2017-04-17T07:00Z +Cancel,168,2017,April,16,17,1,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-11-27,Spring,2017-04-17T07:00Z +Cancel,95,2017,April,16,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-04-03,Spring,2017-04-17T07:00Z +Cancel,85,2017,April,16,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-01-22,Spring,2017-04-17T07:00Z +Cancel,80,2017,April,16,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-01-28,Spring,2017-04-17T07:00Z +Cancel,95,2017,April,16,17,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-02-01,Spring,2017-04-17T07:00Z +Cancel,64,2017,April,16,17,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2017-03-12,Spring,2017-04-17T07:00Z +Cancel,228,2017,April,16,17,1,5,2,1,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,2,Canceled,2017-01-08,Spring,2017-04-17T07:00Z +Cancel,228,2017,April,16,17,1,5,2,1,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,2,Canceled,2017-01-08,Spring,2017-04-17T07:00Z +Cancel,287,2017,April,16,17,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2016-07-04,Spring,2017-04-17T07:00Z +Cancel,38,2017,April,16,18,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-03-14,Spring,2017-04-18T07:00Z +Cancel,206,2017,April,16,18,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Canceled,2017-03-14,Spring,2017-04-18T07:00Z +Cancel,72,2017,April,16,18,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,0,1,Canceled,2017-03-05,Spring,2017-04-18T07:00Z +Cancel,24,2017,April,16,18,0,5,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,223,0,0,Canceled,2017-04-06,Spring,2017-04-18T07:00Z +Cancel,76,2017,April,16,18,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2017-03-04,Spring,2017-04-18T07:00Z +Cancel,88,2017,April,16,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,72,0,1,Canceled,2017-03-31,Spring,2017-04-18T07:00Z +Cancel,88,2017,April,16,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,72,0,1,Canceled,2017-03-31,Spring,2017-04-18T07:00Z +Cancel,93,2017,April,16,18,2,5,2,0,0,HB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131.29,0,1,Canceled,2017-04-11,Spring,2017-04-18T07:00Z +Cancel,88,2017,April,16,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,72,0,1,Canceled,2017-03-31,Spring,2017-04-18T07:00Z +Cancel,88,2017,April,16,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,72,0,1,Canceled,2017-03-31,Spring,2017-04-18T07:00Z +Cancel,100,2017,April,16,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.29,0,0,Canceled,2017-01-09,Spring,2017-04-18T07:00Z +Cancel,9,2017,April,16,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 269,0,Transient,45,0,0,Canceled,2017-04-19,Spring,2017-04-19T07:00Z +Cancel,96,2017,April,16,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-03-31,Spring,2017-04-19T07:00Z +Cancel,28,2017,April,16,19,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-03-24,Spring,2017-04-19T07:00Z +Cancel,174,2017,April,16,19,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-03-07,Spring,2017-04-19T07:00Z +Cancel,213,2017,April,16,19,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,2,Canceled,2016-11-30,Spring,2017-04-19T07:00Z +Cancel,26,2017,April,16,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-03-25,Spring,2017-04-20T07:00Z +Cancel,29,2017,April,16,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-04-19,Spring,2017-04-20T07:00Z +Cancel,29,2017,April,16,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-04-19,Spring,2017-04-20T07:00Z +Cancel,72,2017,April,16,20,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-02-28,Spring,2017-04-20T07:00Z +Cancel,63,2017,April,16,20,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Canceled,2017-04-12,Spring,2017-04-20T07:00Z +Cancel,216,2017,April,16,20,2,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.3,0,0,Canceled,2016-09-16,Spring,2017-04-20T07:00Z +Cancel,105,2017,April,16,20,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,0,1,Canceled,2017-01-06,Spring,2017-04-20T07:00Z +Cancel,105,2017,April,16,20,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,77.85,0,1,Canceled,2017-02-06,Spring,2017-04-20T07:00Z +Keep,8,2017,April,16,21,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, 367,0,Transient,0,1,1,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Cancel,8,2017,April,16,21,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, 367,0,Transient,0,0,1,Canceled,2017-04-19,Spring,2017-04-21T07:00Z +Cancel,157,2017,April,16,21,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,3,Canceled,2016-11-16,Spring,2017-04-21T07:00Z +Cancel,157,2017,April,16,21,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,3,Canceled,2016-11-16,Spring,2017-04-21T07:00Z +Cancel,2,2017,April,16,21,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,185.33,0,0,Canceled,2017-04-19,Spring,2017-04-21T07:00Z +Cancel,78,2017,April,16,21,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.5,0,1,Canceled,2017-03-15,Spring,2017-04-21T07:00Z +Cancel,278,2017,April,16,21,2,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-08-04,Spring,2017-04-21T07:00Z +Cancel,4,2017,April,16,21,2,2,1,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,0,4,Canceled,2017-04-20,Spring,2017-04-21T07:00Z +Cancel,180,2017,April,16,21,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.67,0,1,Canceled,2016-11-01,Spring,2017-04-21T07:00Z +Cancel,171,2017,April,16,21,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Canceled,2016-12-16,Spring,2017-04-21T07:00Z +Keep,108,2017,April,16,21,4,7,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,85,0,5,Check-Out,2017-05-02,Spring,2017-04-21T07:00Z +Cancel,253,2017,April,16,22,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-08-24,Spring,2017-04-22T07:00Z +Cancel,296,2017,April,16,22,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2017-02-19,Spring,2017-04-22T07:00Z +Cancel,214,2017,April,16,22,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.34,0,1,Canceled,2016-09-27,Spring,2017-04-22T07:00Z +Cancel,208,2017,April,16,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,71.28,0,0,Canceled,2016-09-26,Spring,2017-04-22T07:00Z +Cancel,109,2017,April,16,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Canceled,2017-03-13,Spring,2017-04-22T07:00Z +Cancel,23,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,116,0,0,Canceled,2017-03-31,Spring,2017-04-22T07:00Z +Cancel,234,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,232,2017,April,16,22,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,34.2,0,0,Canceled,2017-01-26,Spring,2017-04-22T07:00Z +Cancel,239,2017,April,16,22,2,5,3,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,158,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,234,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,15,2017,April,16,22,2,5,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165.71,0,0,Canceled,2017-04-09,Spring,2017-04-22T07:00Z +Cancel,234,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,214,2017,April,16,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,51.97,0,1,Canceled,2016-09-26,Spring,2017-04-22T07:00Z +Cancel,23,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,116,0,0,Canceled,2017-03-31,Spring,2017-04-22T07:00Z +Cancel,208,2017,April,16,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,71.28,0,0,Canceled,2016-09-26,Spring,2017-04-22T07:00Z +Cancel,239,2017,April,16,22,2,5,3,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,158,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,239,2017,April,16,22,2,5,3,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,158,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,214,2017,April,16,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,51.97,0,1,Canceled,2016-09-26,Spring,2017-04-22T07:00Z +Cancel,239,2017,April,16,22,2,5,3,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,158,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,239,2017,April,16,22,2,5,3,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,158,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,252,2017,April,16,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,49,0,0,Canceled,2016-11-01,Spring,2017-04-22T07:00Z +Cancel,224,2017,April,16,22,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2016-09-25,Spring,2017-04-22T07:00Z +Cancel,234,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,67,2017,April,16,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,68.95,0,0,Canceled,2017-03-30,Spring,2017-04-22T07:00Z +Cancel,23,2017,April,16,22,2,5,2,0,0,FB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,116,0,0,Canceled,2017-03-31,Spring,2017-04-22T07:00Z +Cancel,31,2017,April,17,23,1,0,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 298, NULL,0,Transient-Party,74,0,0,No-Show,2017-04-23,Spring,2017-04-23T07:00Z +Cancel,240,2017,April,17,23,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient,43.2,0,0,Canceled,2016-10-22,Spring,2017-04-23T07:00Z +Cancel,130,2017,April,17,23,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,62,0,0,Canceled,2016-12-15,Spring,2017-04-23T07:00Z +Cancel,253,2017,April,17,23,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,I,1,No Deposit , 273, NULL,0,Transient-Party,62,0,0,Canceled,2016-11-01,Spring,2017-04-23T07:00Z +Cancel,253,2017,April,17,23,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,42,0,0,Canceled,2016-11-01,Spring,2017-04-23T07:00Z +Cancel,39,2017,April,17,23,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Canceled,2017-04-22,Spring,2017-04-23T07:00Z +Cancel,201,2017,April,17,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2017-03-30,Spring,2017-04-23T07:00Z +Cancel,259,2017,April,17,23,4,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2016-12-11,Spring,2017-04-23T07:00Z +Cancel,259,2017,April,17,23,4,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2016-12-11,Spring,2017-04-23T07:00Z +Cancel,4,2017,April,17,24,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 515,0,Transient,52.5,0,0,No-Show,2017-04-24,Spring,2017-04-24T07:00Z +Cancel,211,2017,April,17,24,3,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2016-12-11,Spring,2017-04-24T07:00Z +Cancel,211,2017,April,17,24,3,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,2,Canceled,2016-12-11,Spring,2017-04-24T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,203,2017,April,17,25,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Canceled,2017-01-06,Spring,2017-04-25T07:00Z +Cancel,266,2017,April,17,25,0,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-08-04,Spring,2017-04-25T07:00Z +Cancel,80,2017,April,17,25,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2017-03-12,Spring,2017-04-25T07:00Z +Cancel,36,2017,April,17,25,0,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,1,Canceled,2017-03-22,Spring,2017-04-25T07:00Z +Cancel,5,2017,April,17,25,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2017-04-20,Spring,2017-04-25T07:00Z +Cancel,245,2017,April,17,25,0,4,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2017-03-28,Spring,2017-04-25T07:00Z +Cancel,63,2017,April,17,26,2,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-20,Spring,2017-04-26T07:00Z +Cancel,225,2017,April,17,26,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,41.58,0,2,Canceled,2017-01-09,Spring,2017-04-26T07:00Z +Cancel,218,2017,April,17,26,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,3,Canceled,2016-10-05,Spring,2017-04-26T07:00Z +Cancel,36,2017,April,17,27,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Canceled,2017-04-16,Spring,2017-04-27T07:00Z +Keep,0,2017,April,17,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,76,0,2,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Cancel,90,2017,April,17,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,74,0,0,Canceled,2017-02-17,Spring,2017-04-27T07:00Z +Cancel,224,2017,April,17,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2017-02-13,Spring,2017-04-27T07:00Z +Cancel,224,2017,April,17,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-02-13,Spring,2017-04-27T07:00Z +Cancel,224,2017,April,17,27,0,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-02-13,Spring,2017-04-27T07:00Z +Cancel,224,2017,April,17,27,0,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-02-13,Spring,2017-04-27T07:00Z +Cancel,224,2017,April,17,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-02-13,Spring,2017-04-27T07:00Z +Cancel,9,2017,April,17,27,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,0,Canceled,2017-04-22,Spring,2017-04-27T07:00Z +Cancel,90,2017,April,17,27,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,99.9,0,0,Canceled,2017-02-17,Spring,2017-04-27T07:00Z +Cancel,61,2017,April,17,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,0,1,Canceled,2017-04-24,Spring,2017-04-27T07:00Z +Cancel,34,2017,April,17,27,2,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,173,0,2,Canceled,2017-04-09,Spring,2017-04-27T07:00Z +Cancel,17,2017,April,17,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,96,0,1,Canceled,2017-04-11,Spring,2017-04-28T07:00Z +Cancel,18,2017,April,17,28,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-04-12,Spring,2017-04-28T07:00Z +Cancel,4,2017,April,17,28,1,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,128,0,0,Canceled,2017-04-24,Spring,2017-04-28T07:00Z +Cancel,250,2017,April,17,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-08-21,Spring,2017-04-28T07:00Z +Cancel,80,2017,April,17,28,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,113,0,2,Canceled,2017-02-09,Spring,2017-04-28T07:00Z +Cancel,302,2017,April,17,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2017-02-19,Spring,2017-04-28T07:00Z +Cancel,201,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.5,0,1,Canceled,2017-03-07,Spring,2017-04-28T07:00Z +Cancel,201,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.5,0,1,Canceled,2017-03-07,Spring,2017-04-28T07:00Z +Cancel,113,2017,April,17,28,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,111,0,0,Canceled,2017-04-18,Spring,2017-04-28T07:00Z +Cancel,112,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112.5,0,0,Canceled,2017-01-07,Spring,2017-04-28T07:00Z +Cancel,215,2017,April,17,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-09-25,Spring,2017-04-28T07:00Z +Cancel,215,2017,April,17,28,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,2,Canceled,2016-09-26,Spring,2017-04-28T07:00Z +Cancel,267,2017,April,17,28,2,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2016-10-22,Spring,2017-04-28T07:00Z +Cancel,59,2017,April,17,28,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-02-28,Spring,2017-04-28T07:00Z +Cancel,26,2017,April,17,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-04-03,Spring,2017-04-29T07:00Z +Cancel,16,2017,April,17,29,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,111,0,0,Canceled,2017-04-18,Spring,2017-04-29T07:00Z +Cancel,109,2017,April,17,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-03-26,Spring,2017-04-29T07:00Z +Cancel,37,2017,April,17,29,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-03-25,Spring,2017-04-29T07:00Z +Cancel,21,2017,April,17,29,1,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,114,0,0,Canceled,2017-04-26,Spring,2017-04-29T07:00Z +Cancel,6,2017,April,17,29,1,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,146,0,2,Canceled,2017-04-25,Spring,2017-04-29T07:00Z +Cancel,110,2017,April,17,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-03-03,Spring,2017-04-29T07:00Z +Cancel,12,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Canceled,2017-04-18,Spring,2017-04-29T07:00Z +Cancel,255,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2017-04-17,Spring,2017-04-29T07:00Z +Cancel,21,2017,April,17,29,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,2,Canceled,2017-04-16,Spring,2017-04-29T07:00Z +Cancel,23,2017,April,17,29,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2017-04-10,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,89,2017,April,17,29,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.33,0,0,Canceled,2017-02-05,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,34,2017,April,17,29,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2017-03-31,Spring,2017-04-29T07:00Z +Cancel,54,2017,April,17,29,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,2,Canceled,2017-03-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,15,2017,April,17,29,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,111,0,1,Canceled,2017-04-16,Spring,2017-04-29T07:00Z +Cancel,221,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,121,Transient-Party,85,0,0,Canceled,2017-04-24,Spring,2017-04-29T07:00Z +Cancel,5,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,26,0,0,Canceled,2017-04-24,Spring,2017-04-29T07:00Z +Cancel,100,2017,April,17,29,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,85,0,0,Canceled,2017-04-21,Spring,2017-04-29T07:00Z +Cancel,13,2017,April,17,29,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108,0,0,Canceled,2017-04-18,Spring,2017-04-29T07:00Z +Cancel,59,2017,April,17,29,2,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-03-02,Spring,2017-04-29T07:00Z +Cancel,59,2017,April,17,29,2,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-03-02,Spring,2017-04-29T07:00Z +Cancel,233,2017,April,17,29,2,4,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,1,Canceled,2016-09-12,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,287,2017,April,17,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,62.37,0,0,Canceled,2016-07-18,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,86.91,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,86.91,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,287,2017,April,17,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,62.37,0,0,Canceled,2016-07-18,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,104,2017,April,17,29,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-01-16,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,251,2017,April,17,29,2,5,2,2,0,BB,POL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,108,0,0,Canceled,2017-01-25,Spring,2017-04-29T07:00Z +Cancel,103,2017,April,17,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-02-14,Spring,2017-04-29T07:00Z +Cancel,78,2017,April,17,29,2,5,2,2,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,120.14,0,2,Canceled,2017-02-21,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,86.91,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,86.91,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,20,2017,April,17,29,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,127,0,1,Canceled,2017-04-17,Spring,2017-04-29T07:00Z +Cancel,85,2017,April,17,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,48,0,0,Canceled,2017-02-22,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,97.71,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,172,2017,April,17,29,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,86.91,0,0,Canceled,2016-12-27,Spring,2017-04-29T07:00Z +Cancel,38,2017,April,18,30,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 468, NULL,0,Transient,105.61,0,0,Canceled,2017-03-24,Spring,2017-04-30T07:00Z +Cancel,25,2017,April,18,30,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102,0,1,Canceled,2017-04-13,Spring,2017-04-30T07:00Z +Cancel,25,2017,April,18,30,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102,0,1,Canceled,2017-04-17,Spring,2017-04-30T07:00Z +Cancel,179,2017,April,18,30,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,131.16,0,0,Canceled,2016-11-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,87,2017,April,18,30,2,3,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Canceled,2017-02-02,Spring,2017-04-30T07:00Z +Cancel,43,2017,April,18,30,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-03-20,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2016-10-21,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Canceled,2016-10-13,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,82,0,0,Canceled,2016-10-07,Spring,2017-04-30T07:00Z +Cancel,243,2017,April,18,30,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,130,0,2,Canceled,2016-09-23,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Canceled,2017-03-06,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,82,0,0,Canceled,2016-10-07,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,82,0,0,Canceled,2016-10-07,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Canceled,2016-10-13,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2017-03-06,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2017-03-06,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2017-03-06,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2016-10-21,Spring,2017-04-30T07:00Z +Cancel,219,2017,April,18,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,117,0,1,Canceled,2017-04-24,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Canceled,2016-10-13,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2017-03-06,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Canceled,2016-10-21,Spring,2017-04-30T07:00Z +Cancel,221,2017,April,18,30,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,82,0,0,Canceled,2016-10-07,Spring,2017-04-30T07:00Z +Cancel,105,2017,April,18,30,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-01-15,Spring,2017-04-30T07:00Z +Cancel,188,2017,April,18,30,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,80.85,0,0,Canceled,2017-02-09,Spring,2017-04-30T07:00Z +Cancel,190,2017,April,18,30,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,117,0,1,Canceled,2017-01-04,Spring,2017-04-30T07:00Z +Cancel,72,2017,May,18,1,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2017-02-19,Spring,2017-05-01T07:00Z +Cancel,237,2017,May,18,1,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-12,Spring,2017-05-01T07:00Z +Cancel,18,2017,May,18,1,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,133.5,0,0,Canceled,2017-04-13,Spring,2017-05-01T07:00Z +Cancel,65,2017,May,18,1,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Canceled,2017-02-25,Spring,2017-05-01T07:00Z +Cancel,65,2017,May,18,1,1,3,2,1,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,150,0,0,Canceled,2017-04-10,Spring,2017-05-01T07:00Z +Cancel,208,2017,May,18,1,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-10-06,Spring,2017-05-01T07:00Z +Cancel,155,2017,May,18,1,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-01-14,Spring,2017-05-01T07:00Z +Cancel,13,2017,May,18,1,1,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,2,Canceled,2017-04-21,Spring,2017-05-01T07:00Z +Cancel,152,2017,May,18,1,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-04-11,Spring,2017-05-01T07:00Z +Cancel,37,2017,May,18,1,1,4,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,213,0,0,Canceled,2017-03-28,Spring,2017-05-01T07:00Z +Cancel,155,2017,May,18,1,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2017-01-14,Spring,2017-05-01T07:00Z +Cancel,73,2017,May,18,1,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-03-12,Spring,2017-05-01T07:00Z +Cancel,308,2017,May,18,1,3,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-06-28,Spring,2017-05-01T07:00Z +Cancel,37,2017,May,18,2,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,0,Canceled,2017-04-18,Spring,2017-05-02T07:00Z +Cancel,87,2017,May,18,2,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-03-25,Spring,2017-05-02T07:00Z +Cancel,19,2017,May,18,2,0,4,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,133.5,0,1,Canceled,2017-04-19,Spring,2017-05-02T07:00Z +Cancel,111,2017,May,18,2,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-01-11,Spring,2017-05-02T07:00Z +Cancel,70,2017,May,18,2,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,42,0,0,Canceled,2017-03-07,Spring,2017-05-02T07:00Z +Cancel,74,2017,May,18,2,2,5,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2017-02-17,Spring,2017-05-02T07:00Z +Cancel,84,2017,May,18,2,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-08,Spring,2017-05-02T07:00Z +Cancel,127,2017,May,18,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-01-06,Spring,2017-05-02T07:00Z +Cancel,18,2017,May,18,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,73.5,0,0,Canceled,2017-04-19,Spring,2017-05-02T07:00Z +Cancel,113,2017,May,18,2,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,82,0,2,Canceled,2017-05-02,Spring,2017-05-02T07:00Z +Cancel,41,2017,May,18,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-03-23,Spring,2017-05-02T07:00Z +Cancel,237,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,109.8,0,0,Canceled,2016-10-06,Spring,2017-05-03T07:00Z +Cancel,237,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,109.8,0,0,Canceled,2016-12-29,Spring,2017-05-03T07:00Z +Cancel,209,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-11-02,Spring,2017-05-03T07:00Z +Cancel,237,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,92,0,0,Canceled,2016-10-06,Spring,2017-05-03T07:00Z +Cancel,209,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-11-02,Spring,2017-05-03T07:00Z +Cancel,237,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,92,0,0,Canceled,2016-10-06,Spring,2017-05-03T07:00Z +Cancel,237,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,92,0,0,Canceled,2016-10-06,Spring,2017-05-03T07:00Z +Cancel,209,2017,May,18,3,0,1,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Canceled,2016-11-02,Spring,2017-05-03T07:00Z +Cancel,94,2017,May,18,3,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2017-04-10,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,93,2017,May,18,3,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,2,Canceled,2017-03-19,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,83,2017,May,18,3,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-09,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,95,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,95,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,125,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,95,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,125,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,95,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,125,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,65,2017,May,18,3,3,9,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,125,0,0,Canceled,2017-03-21,Spring,2017-05-03T07:00Z +Cancel,229,2017,May,18,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-09-17,Spring,2017-05-03T07:00Z +Cancel,228,2017,May,18,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,No-Show,2017-05-03,Spring,2017-05-03T07:00Z +Cancel,217,2017,May,18,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.86,0,1,Canceled,2016-10-25,Spring,2017-05-03T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,0,2017,May,18,4,0,1,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,137,0,0,No-Show,2017-05-04,Spring,2017-05-04T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,202,2017,May,18,4,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,90,0,0,Canceled,2017-02-07,Spring,2017-05-04T07:00Z +Cancel,43,2017,May,18,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-04-28,Spring,2017-05-04T07:00Z +Cancel,108,2017,May,18,4,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-01-18,Spring,2017-05-04T07:00Z +Cancel,51,2017,May,18,4,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-03-16,Spring,2017-05-04T07:00Z +Cancel,108,2017,May,18,4,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-01-18,Spring,2017-05-04T07:00Z +Cancel,108,2017,May,18,4,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-01-18,Spring,2017-05-04T07:00Z +Cancel,54,2017,May,18,4,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-04-13,Spring,2017-05-04T07:00Z +Cancel,108,2017,May,18,4,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-01-18,Spring,2017-05-04T07:00Z +Cancel,15,2017,May,18,4,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.25,0,1,Canceled,2017-04-23,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,90,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,223,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,223,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,223,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,121,2017,May,18,4,2,5,2,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,120,0,1,Canceled,2017-05-03,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,223,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-09-23,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,253,2017,May,18,4,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,50.85,0,0,Canceled,2017-02-02,Spring,2017-05-04T07:00Z +Cancel,223,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,68.4,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,210,2017,May,18,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,90,0,1,Canceled,2016-11-02,Spring,2017-05-04T07:00Z +Cancel,227,2017,May,18,4,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-09-19,Spring,2017-05-04T07:00Z +Cancel,194,2017,May,18,4,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,139.51,0,0,Canceled,2016-10-23,Spring,2017-05-04T07:00Z +Cancel,1,2017,May,18,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient,85,0,1,No-Show,2017-05-05,Spring,2017-05-05T07:00Z +Cancel,19,2017,May,18,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-04-24,Spring,2017-05-05T07:00Z +Cancel,37,2017,May,18,5,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2017-04-12,Spring,2017-05-05T07:00Z +Cancel,5,2017,May,18,5,0,2,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2017-05-05,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,14,2017,May,18,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-04-24,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,29,2017,May,18,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,1,Canceled,2017-04-20,Spring,2017-05-05T07:00Z +Cancel,5,2017,May,18,5,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2017-05-05,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,214,2017,May,18,5,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-10-04,Spring,2017-05-05T07:00Z +Cancel,49,2017,May,18,5,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-03-17,Spring,2017-05-05T07:00Z +Cancel,89,2017,May,18,5,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-03-23,Spring,2017-05-05T07:00Z +Cancel,44,2017,May,18,5,1,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,107.17,0,2,Canceled,2017-03-28,Spring,2017-05-05T07:00Z +Cancel,183,2017,May,18,5,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,3,Refundable , 240, NULL,0,Transient,76,0,1,Canceled,2017-05-03,Spring,2017-05-05T07:00Z +Cancel,54,2017,May,18,5,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-04-07,Spring,2017-05-05T07:00Z +Cancel,6,2017,May,18,5,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,195,0,0,Canceled,2017-04-29,Spring,2017-05-05T07:00Z +Cancel,15,2017,May,18,5,2,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Canceled,2017-04-21,Spring,2017-05-05T07:00Z +Cancel,106,2017,May,18,5,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-03-20,Spring,2017-05-05T07:00Z +Cancel,226,2017,May,18,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,0,Canceled,2016-09-22,Spring,2017-05-05T07:00Z +Cancel,225,2017,May,18,5,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2017-03-08,Spring,2017-05-05T07:00Z +Cancel,226,2017,May,18,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,0,Canceled,2016-09-22,Spring,2017-05-05T07:00Z +Cancel,233,2017,May,18,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Canceled,2016-10-12,Spring,2017-05-05T07:00Z +Cancel,233,2017,May,18,5,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,66.24,0,0,Canceled,2016-09-14,Spring,2017-05-05T07:00Z +Cancel,93,2017,May,18,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-02-14,Spring,2017-05-05T07:00Z +Cancel,295,2017,May,18,5,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-01-09,Spring,2017-05-05T07:00Z +Cancel,330,2017,May,18,5,6,12,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Canceled,2016-06-10,Spring,2017-05-05T07:00Z +Cancel,116,2017,May,18,6,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-01-23,Spring,2017-05-06T07:00Z +Cancel,116,2017,May,18,6,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Canceled,2017-01-23,Spring,2017-05-06T07:00Z +Cancel,115,2017,May,18,6,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-01-19,Spring,2017-05-06T07:00Z +Cancel,23,2017,May,18,6,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,127.5,0,1,Canceled,2017-04-14,Spring,2017-05-06T07:00Z +Cancel,227,2017,May,18,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,0,Canceled,2016-09-21,Spring,2017-05-06T07:00Z +Cancel,227,2017,May,18,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Canceled,2016-10-07,Spring,2017-05-06T07:00Z +Cancel,90,2017,May,18,6,2,6,2,1,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98,0,0,Canceled,2017-02-13,Spring,2017-05-06T07:00Z +Cancel,17,2017,May,18,6,2,6,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,168.13,0,0,Canceled,2017-04-23,Spring,2017-05-06T07:00Z +Cancel,152,2017,May,18,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2016-12-17,Spring,2017-05-06T07:00Z +Cancel,86,2017,May,18,6,4,6,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-02-11,Spring,2017-05-06T07:00Z +Cancel,33,2017,May,18,6,4,8,2,2,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,127.83,0,1,Canceled,2017-04-03,Spring,2017-05-06T07:00Z +Cancel,49,2017,May,19,7,2,0,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,0,Canceled,2017-04-09,Spring,2017-05-07T07:00Z +Cancel,136,2017,May,19,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,115,0,1,Canceled,2017-01-31,Spring,2017-05-07T07:00Z +Cancel,136,2017,May,19,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,115,0,1,Canceled,2017-01-31,Spring,2017-05-07T07:00Z +Cancel,62,2017,May,19,7,2,1,1,0,0,Undefined,PRT,Complementary,Direct, 0,0,0,A,C,3,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-05-04,Spring,2017-05-07T07:00Z +Cancel,17,2017,May,19,7,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Canceled,2017-04-26,Spring,2017-05-07T07:00Z +Cancel,41,2017,May,19,7,2,1,2,2,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,2,Canceled,2017-03-28,Spring,2017-05-07T07:00Z +Cancel,319,2017,May,19,7,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-06-30,Spring,2017-05-07T07:00Z +Cancel,123,2017,May,19,7,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,90,0,1,Canceled,2017-03-13,Spring,2017-05-07T07:00Z +Cancel,257,2017,May,19,7,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-01-17,Spring,2017-05-07T07:00Z +Cancel,70,2017,May,19,7,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-03-08,Spring,2017-05-07T07:00Z +Cancel,2,2017,May,19,8,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 152, NULL,0,Transient,64,0,1,Canceled,2017-05-08,Spring,2017-05-08T07:00Z +Cancel,2,2017,May,19,8,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 152, NULL,0,Transient,64,0,1,Canceled,2017-05-08,Spring,2017-05-08T07:00Z +Cancel,2,2017,May,19,8,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 152, NULL,0,Transient,64,0,1,Canceled,2017-05-08,Spring,2017-05-08T07:00Z +Cancel,2,2017,May,19,8,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 152, NULL,0,Transient,64,0,1,Canceled,2017-05-08,Spring,2017-05-08T07:00Z +Cancel,82,2017,May,19,8,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-02-17,Spring,2017-05-08T07:00Z +Cancel,104,2017,May,19,8,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,40.95,0,0,Canceled,2017-01-24,Spring,2017-05-08T07:00Z +Cancel,140,2017,May,19,8,1,4,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-02-24,Spring,2017-05-08T07:00Z +Cancel,158,2017,May,19,8,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-04-11,Spring,2017-05-08T07:00Z +Cancel,31,2017,May,19,8,1,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,129,0,2,Canceled,2017-04-27,Spring,2017-05-08T07:00Z +Cancel,82,2017,May,19,8,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-02-15,Spring,2017-05-08T07:00Z +Cancel,156,2017,May,19,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Canceled,2017-04-18,Spring,2017-05-08T07:00Z +Cancel,217,2017,May,19,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 434, NULL,61,Transient-Party,80,0,0,Canceled,2017-05-08,Spring,2017-05-08T07:00Z +Cancel,183,2017,May,19,8,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.43,0,2,Canceled,2017-02-25,Spring,2017-05-08T07:00Z +Cancel,15,2017,May,19,9,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-04-24,Spring,2017-05-09T07:00Z +Cancel,7,2017,May,19,9,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-05-02,Spring,2017-05-09T07:00Z +Cancel,7,2017,May,19,9,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-05-02,Spring,2017-05-09T07:00Z +Cancel,257,2017,May,19,9,0,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,67.5,0,0,Canceled,2016-09-20,Spring,2017-05-09T07:00Z +Cancel,54,2017,May,19,9,0,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-04-18,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,47,2017,May,19,9,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-03-23,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,257,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,91,0,0,Canceled,2016-09-20,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,231,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2017-03-10,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,57.5,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,302,2017,May,19,9,0,4,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Canceled,2016-08-25,Spring,2017-05-09T07:00Z +Cancel,84,2017,May,19,9,0,5,3,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2017-04-03,Spring,2017-05-09T07:00Z +Cancel,29,2017,May,19,9,1,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2017-04-13,Spring,2017-05-09T07:00Z +Cancel,120,2017,May,19,9,1,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-20,Spring,2017-05-09T07:00Z +Cancel,115,2017,May,19,9,2,6,2,0,1,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,100,0,3,Canceled,2017-01-24,Spring,2017-05-09T07:00Z +Cancel,296,2017,May,19,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,2,Canceled,2016-07-20,Spring,2017-05-10T07:00Z +Cancel,303,2017,May,19,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,67.5,0,2,Canceled,2016-07-13,Spring,2017-05-10T07:00Z +Cancel,16,2017,May,19,10,0,3,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,130,0,1,Canceled,2017-04-25,Spring,2017-05-10T07:00Z +Cancel,79,2017,May,19,10,0,4,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-02-27,Spring,2017-05-10T07:00Z +Cancel,78,2017,May,19,10,0,4,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-02-25,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,14,2017,May,19,10,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,96.14,0,0,Canceled,2017-04-27,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,140,2017,May,19,10,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,48,0,0,Canceled,2017-01-12,Spring,2017-05-10T07:00Z +Cancel,130,2017,May,19,10,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-01-24,Spring,2017-05-10T07:00Z +Cancel,130,2017,May,19,10,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-01-24,Spring,2017-05-10T07:00Z +Cancel,67,2017,May,19,10,2,8,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,175,0,1,Canceled,2017-04-29,Spring,2017-05-10T07:00Z +Cancel,288,2017,May,19,10,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2017-04-24,Spring,2017-05-10T07:00Z +Cancel,0,2017,May,19,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,0,Canceled,2017-05-11,Spring,2017-05-11T07:00Z +Cancel,13,2017,May,19,11,0,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87.67,0,1,Canceled,2017-05-01,Spring,2017-05-11T07:00Z +Cancel,29,2017,May,19,11,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2017-04-28,Spring,2017-05-11T07:00Z +Cancel,77,2017,May,19,11,0,3,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-02-23,Spring,2017-05-11T07:00Z +Cancel,24,2017,May,19,11,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,130,0,2,Canceled,2017-04-17,Spring,2017-05-11T07:00Z +Cancel,154,2017,May,19,11,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-01-23,Spring,2017-05-11T07:00Z +Cancel,150,2017,May,19,11,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-04-28,Spring,2017-05-11T07:00Z +Cancel,77,2017,May,19,11,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,85,0,1,Canceled,2017-03-30,Spring,2017-05-11T07:00Z +Cancel,233,2017,May,19,11,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-11-04,Spring,2017-05-11T07:00Z +Cancel,233,2017,May,19,11,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-02-05,Spring,2017-05-11T07:00Z +Cancel,10,2017,May,19,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,96.67,0,3,Canceled,2017-05-10,Spring,2017-05-11T07:00Z +Cancel,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,0,Canceled,2017-04-27,Spring,2017-05-11T07:00Z +Cancel,94,2017,May,19,11,2,6,2,0,0,HB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,127,0,0,Canceled,2017-02-23,Spring,2017-05-11T07:00Z +Cancel,8,2017,May,19,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Canceled,2017-05-10,Spring,2017-05-12T07:00Z +Cancel,98,2017,May,19,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-04-22,Spring,2017-05-12T07:00Z +Cancel,22,2017,May,19,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-04-21,Spring,2017-05-12T07:00Z +Cancel,52,2017,May,19,12,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2017-05-04,Spring,2017-05-12T07:00Z +Cancel,102,2017,May,19,12,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2017-02-03,Spring,2017-05-12T07:00Z +Cancel,120,2017,May,19,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-01-25,Spring,2017-05-12T07:00Z +Cancel,120,2017,May,19,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Canceled,2017-01-25,Spring,2017-05-12T07:00Z +Cancel,263,2017,May,19,12,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,2,Canceled,2016-10-22,Spring,2017-05-12T07:00Z +Cancel,201,2017,May,19,13,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2016-10-26,Spring,2017-05-13T07:00Z +Cancel,201,2017,May,19,13,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2016-10-26,Spring,2017-05-13T07:00Z +Cancel,95,2017,May,19,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-02-07,Spring,2017-05-13T07:00Z +Cancel,201,2017,May,19,13,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2016-10-26,Spring,2017-05-13T07:00Z +Cancel,38,2017,May,19,13,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,151,0,2,Canceled,2017-05-08,Spring,2017-05-13T07:00Z +Cancel,2,2017,May,19,13,2,2,2,0,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,119.5,0,0,No-Show,2017-05-13,Spring,2017-05-13T07:00Z +Cancel,9,2017,May,19,13,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,119.08,0,1,Canceled,2017-05-06,Spring,2017-05-13T07:00Z +Cancel,134,2017,May,19,13,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,0,2,Canceled,2017-04-09,Spring,2017-05-13T07:00Z +Cancel,70,2017,May,19,13,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-04-24,Spring,2017-05-13T07:00Z +Cancel,124,2017,May,19,13,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-05-02,Spring,2017-05-13T07:00Z +Cancel,189,2017,May,19,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Canceled,2017-02-13,Spring,2017-05-13T07:00Z +Cancel,81,2017,May,19,13,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2017-04-04,Spring,2017-05-13T07:00Z +Cancel,261,2017,May,19,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-09-01,Spring,2017-05-13T07:00Z +Cancel,89,2017,May,19,13,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2017-04-03,Spring,2017-05-13T07:00Z +Cancel,89,2017,May,19,13,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2017-04-03,Spring,2017-05-13T07:00Z +Cancel,217,2017,May,19,13,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-01-08,Spring,2017-05-13T07:00Z +Cancel,337,2017,May,19,13,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-07-05,Spring,2017-05-13T07:00Z +Cancel,338,2017,May,19,13,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Canceled,2016-06-10,Spring,2017-05-13T07:00Z +Cancel,10,2017,May,19,13,4,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,56.5,0,1,No-Show,2017-05-13,Spring,2017-05-13T07:00Z +Cancel,47,2017,May,20,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2017-04-22,Spring,2017-05-14T07:00Z +Cancel,101,2017,May,20,14,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Canceled,2017-04-18,Spring,2017-05-14T07:00Z +Cancel,101,2017,May,20,14,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient-Party,44,0,0,Canceled,2017-04-18,Spring,2017-05-14T07:00Z +Cancel,3,2017,May,20,14,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 445,0,Transient,95,0,0,Canceled,2017-05-14,Spring,2017-05-14T07:00Z +Cancel,98,2017,May,20,14,2,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76,0,2,Canceled,2017-02-25,Spring,2017-05-14T07:00Z +Cancel,313,2017,May,20,14,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-12-19,Spring,2017-05-14T07:00Z +Cancel,272,2017,May,20,14,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2017-03-04,Spring,2017-05-14T07:00Z +Cancel,28,2017,May,20,14,2,5,2,2,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2017-04-16,Spring,2017-05-14T07:00Z +Cancel,305,2017,May,20,14,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,0,Canceled,2016-07-13,Spring,2017-05-14T07:00Z +Cancel,278,2017,May,20,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Canceled,2016-11-15,Spring,2017-05-14T07:00Z +Cancel,180,2017,May,20,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Canceled,2017-01-18,Spring,2017-05-14T07:00Z +Cancel,305,2017,May,20,14,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,0,Canceled,2016-07-16,Spring,2017-05-14T07:00Z +Cancel,302,2017,May,20,14,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,109.8,0,1,Canceled,2016-08-03,Spring,2017-05-14T07:00Z +Cancel,158,2017,May,20,14,4,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,50.85,0,0,Canceled,2017-01-10,Spring,2017-05-14T07:00Z +Keep,3,2017,May,20,15,1,0,1,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 337,0,Transient,0,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Cancel,41,2017,May,20,15,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,1,Canceled,2017-05-05,Spring,2017-05-15T07:00Z +Cancel,41,2017,May,20,15,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,1,Canceled,2017-05-05,Spring,2017-05-15T07:00Z +Cancel,284,2017,May,20,15,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Canceled,2016-08-12,Spring,2017-05-15T07:00Z +Cancel,41,2017,May,20,15,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,1,Canceled,2017-05-05,Spring,2017-05-15T07:00Z +Cancel,60,2017,May,20,15,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,125,0,1,Canceled,2017-04-30,Spring,2017-05-15T07:00Z +Cancel,258,2017,May,20,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,54,0,0,Canceled,2016-10-18,Spring,2017-05-15T07:00Z +Cancel,144,2017,May,20,15,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,8,0,0,Canceled,2016-12-26,Spring,2017-05-15T07:00Z +Cancel,201,2017,May,20,15,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,74.03,0,0,Canceled,2016-10-31,Spring,2017-05-15T07:00Z +Cancel,14,2017,May,20,16,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,132,0,1,Canceled,2017-05-04,Spring,2017-05-16T07:00Z +Cancel,96,2017,May,20,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,78.85,0,2,No-Show,2017-05-16,Spring,2017-05-16T07:00Z +Cancel,134,2017,May,20,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-01-05,Spring,2017-05-16T07:00Z +Cancel,90,2017,May,20,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,98.4,0,0,Canceled,2017-05-15,Spring,2017-05-16T07:00Z +Cancel,72,2017,May,20,16,2,5,2,2,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,173,0,0,Canceled,2017-03-05,Spring,2017-05-16T07:00Z +Cancel,80,2017,May,20,17,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2017-02-28,Spring,2017-05-17T07:00Z +Cancel,30,2017,May,20,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-04-18,Spring,2017-05-17T07:00Z +Cancel,25,2017,May,20,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-04-30,Spring,2017-05-17T07:00Z +Cancel,230,2017,May,20,17,0,3,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Canceled,2016-12-14,Spring,2017-05-17T07:00Z +Cancel,322,2017,May,20,17,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Canceled,2016-11-08,Spring,2017-05-17T07:00Z +Cancel,81,2017,May,20,17,0,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Canceled,2017-04-11,Spring,2017-05-17T07:00Z +Cancel,81,2017,May,20,17,0,4,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-04-29,Spring,2017-05-17T07:00Z +Cancel,116,2017,May,20,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-02-10,Spring,2017-05-17T07:00Z +Cancel,336,2017,May,20,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.86,0,1,Canceled,2017-01-24,Spring,2017-05-17T07:00Z +Cancel,310,2017,May,20,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-07-13,Spring,2017-05-17T07:00Z +Cancel,107,2017,May,20,17,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-04,Spring,2017-05-17T07:00Z +Cancel,222,2017,May,20,17,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,64.8,0,0,Canceled,2017-02-27,Spring,2017-05-17T07:00Z +Cancel,107,2017,May,20,17,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-02-04,Spring,2017-05-17T07:00Z +Cancel,70,2017,May,20,17,2,5,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,173,0,2,Canceled,2017-03-23,Spring,2017-05-17T07:00Z +Cancel,43,2017,May,20,18,0,1,2,2,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Canceled,2017-04-17,Spring,2017-05-18T07:00Z +Cancel,152,2017,May,20,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,125,0,1,Canceled,2016-12-23,Spring,2017-05-18T07:00Z +Cancel,27,2017,May,20,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,69,0,0,Canceled,2017-05-02,Spring,2017-05-18T07:00Z +Cancel,178,2017,May,20,18,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-11-22,Spring,2017-05-18T07:00Z +Cancel,21,2017,May,20,18,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2017-05-06,Spring,2017-05-18T07:00Z +Cancel,178,2017,May,20,18,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Canceled,2016-11-22,Spring,2017-05-18T07:00Z +Cancel,333,2017,May,20,18,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-06-22,Spring,2017-05-18T07:00Z +Cancel,124,2017,May,20,18,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-01-24,Spring,2017-05-18T07:00Z +Cancel,165,2017,May,20,18,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Canceled,2016-12-06,Spring,2017-05-18T07:00Z +Cancel,262,2017,May,20,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-01-28,Spring,2017-05-18T07:00Z +Cancel,266,2017,May,20,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Canceled,2017-02-20,Spring,2017-05-18T07:00Z +Cancel,45,2017,May,20,18,2,5,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,1,Canceled,2017-04-04,Spring,2017-05-18T07:00Z +Cancel,15,2017,May,20,19,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,102.5,0,0,Canceled,2017-05-07,Spring,2017-05-19T07:00Z +Cancel,33,2017,May,20,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-04-26,Spring,2017-05-19T07:00Z +Cancel,38,2017,May,20,19,0,2,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,209,0,2,Canceled,2017-05-16,Spring,2017-05-19T07:00Z +Cancel,87,2017,May,20,19,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-05-09,Spring,2017-05-19T07:00Z +Cancel,207,2017,May,20,19,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,117,0,1,Canceled,2016-12-04,Spring,2017-05-19T07:00Z +Cancel,207,2017,May,20,19,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,117,0,1,Canceled,2016-12-04,Spring,2017-05-19T07:00Z +Cancel,112,2017,May,20,19,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,112.5,0,0,Canceled,2017-04-28,Spring,2017-05-19T07:00Z +Cancel,299,2017,May,20,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2017-01-28,Spring,2017-05-19T07:00Z +Cancel,300,2017,May,20,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Canceled,2016-07-24,Spring,2017-05-19T07:00Z +Cancel,205,2017,May,20,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,67.32,0,0,Canceled,2016-12-06,Spring,2017-05-19T07:00Z +Cancel,98,2017,May,20,19,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Canceled,2017-02-20,Spring,2017-05-19T07:00Z +Cancel,131,2017,May,20,20,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 171, NULL,0,Transient,43.2,0,0,Canceled,2017-05-04,Spring,2017-05-20T07:00Z +Cancel,93,2017,May,20,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,80,0,0,Canceled,2017-02-23,Spring,2017-05-20T07:00Z +Cancel,86,2017,May,20,20,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-23,Spring,2017-05-20T07:00Z +Cancel,263,2017,May,20,20,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114.15,0,2,Canceled,2016-12-27,Spring,2017-05-20T07:00Z +Cancel,101,2017,May,20,20,2,4,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-07,Spring,2017-05-20T07:00Z +Cancel,61,2017,May,20,20,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,213,0,0,Canceled,2017-03-28,Spring,2017-05-20T07:00Z +Cancel,15,2017,May,20,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,105.6,0,0,Canceled,2017-05-06,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,104,2017,May,20,20,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,0,Canceled,2017-02-06,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,226,2017,May,20,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.03,0,1,Canceled,2016-10-08,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,471,2017,May,20,20,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 96, NULL,0,Transient,47,0,0,Canceled,2017-05-03,Spring,2017-05-20T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 169,0,Transient-Party,60,0,1,No-Show,2017-05-21,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,60,2017,May,21,21,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Canceled,2017-05-17,Spring,2017-05-21T07:00Z +Cancel,259,2017,May,21,21,2,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Canceled,2016-11-23,Spring,2017-05-21T07:00Z +Cancel,139,2017,May,21,21,2,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-10,Spring,2017-05-21T07:00Z +Cancel,191,2017,May,21,21,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-04-28,Spring,2017-05-21T07:00Z +Cancel,139,2017,May,21,21,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Canceled,2017-01-02,Spring,2017-05-21T07:00Z +Cancel,253,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,89.7,0,1,Canceled,2016-09-12,Spring,2017-05-21T07:00Z +Cancel,237,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.2,0,1,Canceled,2017-05-06,Spring,2017-05-21T07:00Z +Cancel,251,2017,May,21,21,2,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,89.7,0,1,Canceled,2016-09-12,Spring,2017-05-21T07:00Z +Cancel,237,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.2,0,1,Canceled,2017-05-06,Spring,2017-05-21T07:00Z +Cancel,249,2017,May,21,21,4,6,2,2,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195.4,0,0,Canceled,2017-01-20,Spring,2017-05-21T07:00Z +Cancel,107,2017,May,21,22,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,117,0,0,Canceled,2017-04-06,Spring,2017-05-22T07:00Z +Cancel,5,2017,May,21,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2017-05-17,Spring,2017-05-22T07:00Z +Cancel,139,2017,May,21,22,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-01-25,Spring,2017-05-22T07:00Z +Cancel,18,2017,May,21,22,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,133.75,0,1,Canceled,2017-05-04,Spring,2017-05-22T07:00Z +Cancel,62,2017,May,21,22,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2017-03-21,Spring,2017-05-22T07:00Z +Cancel,78,2017,May,21,22,1,4,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Canceled,2017-04-22,Spring,2017-05-22T07:00Z +Cancel,40,2017,May,21,22,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,183.57,0,0,Canceled,2017-04-16,Spring,2017-05-22T07:00Z +Cancel,220,2017,May,21,22,3,7,3,2,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,156,0,0,Canceled,2017-04-03,Spring,2017-05-22T07:00Z +Cancel,220,2017,May,21,22,3,7,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,86.5,0,0,Canceled,2017-04-03,Spring,2017-05-22T07:00Z +Cancel,17,2017,May,21,22,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147.36,0,1,Canceled,2017-05-05,Spring,2017-05-22T07:00Z +Cancel,13,2017,May,21,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Canceled,2017-05-12,Spring,2017-05-23T07:00Z +Cancel,53,2017,May,21,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,2,Canceled,2017-04-07,Spring,2017-05-23T07:00Z +Cancel,8,2017,May,21,23,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-05-22,Spring,2017-05-23T07:00Z +Cancel,8,2017,May,21,23,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-05-22,Spring,2017-05-23T07:00Z +Cancel,92,2017,May,21,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,85,0,1,Canceled,2017-04-11,Spring,2017-05-23T07:00Z +Cancel,8,2017,May,21,23,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-05-22,Spring,2017-05-23T07:00Z +Cancel,8,2017,May,21,23,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.9,0,1,Canceled,2017-05-22,Spring,2017-05-23T07:00Z +Cancel,8,2017,May,21,23,0,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-05-22,Spring,2017-05-23T07:00Z +Cancel,280,2017,May,21,23,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-08-18,Spring,2017-05-23T07:00Z +Cancel,86,2017,May,21,23,0,4,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Canceled,2017-04-04,Spring,2017-05-23T07:00Z +Cancel,160,2017,May,21,23,2,6,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, 223,0,Transient-Party,8,0,0,Canceled,2016-12-14,Spring,2017-05-23T07:00Z +Cancel,2,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Group,42,0,0,No-Show,2017-05-24,Spring,2017-05-24T07:00Z +Cancel,18,2017,May,21,24,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,119.16,0,3,Canceled,2017-05-13,Spring,2017-05-24T07:00Z +Cancel,7,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,42,0,0,Canceled,2017-05-23,Spring,2017-05-24T07:00Z +Cancel,92,2017,May,21,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Canceled,2017-04-09,Spring,2017-05-24T07:00Z +Cancel,92,2017,May,21,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Canceled,2017-04-09,Spring,2017-05-24T07:00Z +Cancel,47,2017,May,21,24,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Canceled,2017-04-07,Spring,2017-05-24T07:00Z +Cancel,49,2017,May,21,24,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Canceled,2017-04-10,Spring,2017-05-24T07:00Z +Cancel,269,2017,May,21,24,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.25,0,3,Canceled,2016-09-01,Spring,2017-05-24T07:00Z +Cancel,317,2017,May,21,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Canceled,2016-07-22,Spring,2017-05-24T07:00Z +Cancel,41,2017,May,21,25,0,1,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,0,1,Canceled,2017-04-22,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,203,2017,May,21,25,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,Refundable , NULL, 223,0,Transient-Party,60,0,0,Canceled,2016-12-14,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,8,2017,May,21,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,45,0,0,No-Show,2017-05-25,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,16,2017,May,21,25,0,3,2,1,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,190,0,0,Canceled,2017-05-10,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,95,2017,May,21,25,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-03-21,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,462,2017,May,21,25,0,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,78,0,0,Canceled,2016-06-07,Spring,2017-05-25T07:00Z +Cancel,38,2017,May,21,25,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,175,0,0,Canceled,2017-05-11,Spring,2017-05-25T07:00Z +Cancel,312,2017,May,21,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2016-07-25,Spring,2017-05-25T07:00Z +Cancel,224,2017,May,21,25,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2017-01-16,Spring,2017-05-25T07:00Z +Cancel,177,2017,May,21,25,1,3,2,2,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-03-04,Spring,2017-05-25T07:00Z +Cancel,224,2017,May,21,25,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,1,Canceled,2017-01-16,Spring,2017-05-25T07:00Z +Cancel,263,2017,May,21,25,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,Non Refund , 240, NULL,0,Transient-Party,80.1,0,1,Canceled,2016-11-27,Spring,2017-05-25T07:00Z +Cancel,227,2017,May,21,25,2,3,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Canceled,2017-03-14,Spring,2017-05-25T07:00Z +Cancel,162,2017,May,21,25,2,5,2,1,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,10,0,0,Canceled,2016-12-14,Spring,2017-05-25T07:00Z +Cancel,305,2017,May,21,25,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Canceled,2016-12-29,Spring,2017-05-25T07:00Z +Cancel,162,2017,May,21,25,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,C,C,0,Refundable , NULL, 223,0,Transient-Party,8,0,0,Canceled,2016-12-14,Spring,2017-05-25T07:00Z +Cancel,351,2017,May,21,25,2,5,2,0,1,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,122,0,2,Canceled,2017-03-03,Spring,2017-05-25T07:00Z +Cancel,162,2017,May,21,25,2,5,2,2,0,BB,PRT,Groups,TA/TO, 0,0,0,C,C,0,Refundable , NULL, 223,0,Transient-Party,99,0,0,Canceled,2016-12-14,Spring,2017-05-25T07:00Z +Cancel,352,2017,May,21,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,61.5,0,0,Canceled,2017-05-16,Spring,2017-05-25T07:00Z +Cancel,352,2017,May,21,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Canceled,2017-05-08,Spring,2017-05-25T07:00Z +Cancel,305,2017,May,21,25,2,5,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,168,0,1,Canceled,2016-12-29,Spring,2017-05-25T07:00Z +Cancel,219,2017,May,21,25,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,34.2,0,0,Canceled,2017-03-06,Spring,2017-05-25T07:00Z +Cancel,305,2017,May,21,25,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-03-18,Spring,2017-05-25T07:00Z +Cancel,222,2017,May,21,25,2,7,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,133.1,0,1,Canceled,2016-11-14,Spring,2017-05-25T07:00Z +Cancel,24,2017,May,21,26,1,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2017-05-09,Spring,2017-05-26T07:00Z +Cancel,20,2017,May,21,26,1,2,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127,0,1,Canceled,2017-05-12,Spring,2017-05-26T07:00Z +Cancel,146,2017,May,21,26,1,2,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-01-01,Spring,2017-05-26T07:00Z +Cancel,136,2017,May,21,26,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155,0,0,Canceled,2017-04-08,Spring,2017-05-26T07:00Z +Cancel,139,2017,May,21,26,1,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-04-08,Spring,2017-05-26T07:00Z +Cancel,14,2017,May,21,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-05-12,Spring,2017-05-26T07:00Z +Cancel,251,2017,May,21,26,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,0,0,Canceled,2017-04-20,Spring,2017-05-26T07:00Z +Cancel,297,2017,May,21,26,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,64.8,0,0,Canceled,2016-08-02,Spring,2017-05-26T07:00Z +Cancel,39,2017,May,21,26,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-04-28,Spring,2017-05-26T07:00Z +Cancel,304,2017,May,21,26,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Canceled,2017-01-01,Spring,2017-05-26T07:00Z +Cancel,165,2017,May,21,26,2,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2017-04-22,Spring,2017-05-26T07:00Z +Cancel,231,2017,May,21,26,2,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.4,0,1,Canceled,2016-10-09,Spring,2017-05-26T07:00Z +Cancel,229,2017,May,21,26,2,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,118.8,0,1,No-Show,2017-05-26,Spring,2017-05-26T07:00Z +Cancel,322,2017,May,21,26,2,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Canceled,2017-03-09,Spring,2017-05-26T07:00Z +Cancel,350,2017,May,21,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.29,0,1,Canceled,2017-03-03,Spring,2017-05-26T07:00Z +Cancel,232,2017,May,21,26,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,207,0,1,No-Show,2017-05-26,Spring,2017-05-26T07:00Z +Cancel,212,2017,May,21,26,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Refundable , 40, NULL,0,Contract,71.76,0,1,Canceled,2017-05-22,Spring,2017-05-26T07:00Z +Cancel,355,2017,May,21,27,0,1,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,122.5,0,0,Canceled,2016-07-26,Spring,2017-05-27T07:00Z +Cancel,305,2017,May,21,27,0,1,2,1,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,121.5,0,0,Canceled,2017-05-17,Spring,2017-05-27T07:00Z +Cancel,60,2017,May,21,27,1,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.2,0,2,Canceled,2017-05-08,Spring,2017-05-27T07:00Z +Cancel,38,2017,May,21,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-04-19,Spring,2017-05-27T07:00Z +Cancel,140,2017,May,21,27,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Canceled,2017-05-11,Spring,2017-05-27T07:00Z +Cancel,311,2017,May,21,27,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,43.2,0,0,Canceled,2016-07-20,Spring,2017-05-27T07:00Z +Cancel,107,2017,May,21,27,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-09,Spring,2017-05-27T07:00Z +Cancel,67,2017,May,21,27,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Canceled,2017-04-08,Spring,2017-05-27T07:00Z +Cancel,312,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,59.79,0,1,Canceled,2016-10-16,Spring,2017-05-27T07:00Z +Cancel,337,2017,May,21,27,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102.21,0,0,Canceled,2016-06-24,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,59.79,0,0,Canceled,2016-10-17,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,86.91,0,0,Canceled,2016-10-13,Spring,2017-05-27T07:00Z +Cancel,33,2017,May,21,27,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,143.43,0,1,Canceled,2017-04-26,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,86.91,0,0,Canceled,2016-10-13,Spring,2017-05-27T07:00Z +Cancel,353,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81.57,0,0,Canceled,2016-06-08,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,73.41,0,0,Canceled,2017-01-06,Spring,2017-05-27T07:00Z +Cancel,116,2017,May,21,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,67.41,0,1,Canceled,2017-02-06,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,1,Canceled,2016-10-12,Spring,2017-05-27T07:00Z +Cancel,200,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.14,0,1,Canceled,2016-12-20,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.79,0,1,Canceled,2016-10-12,Spring,2017-05-27T07:00Z +Cancel,313,2017,May,21,27,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,86.91,0,0,Canceled,2016-09-29,Spring,2017-05-27T07:00Z +Cancel,353,2017,May,21,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.41,0,1,Canceled,2016-09-02,Spring,2017-05-27T07:00Z +Cancel,230,2017,May,21,27,2,6,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,161.5,0,0,Canceled,2016-10-09,Spring,2017-05-27T07:00Z +Cancel,13,2017,May,22,28,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Transient,48,0,0,No-Show,2017-05-28,Spring,2017-05-28T07:00Z +Cancel,77,2017,May,22,28,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,2,Canceled,2017-03-22,Spring,2017-05-28T07:00Z +Cancel,198,2017,May,22,28,2,0,2,0,0,HB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-01-21,Spring,2017-05-28T07:00Z +Cancel,51,2017,May,22,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,96.21,0,0,Canceled,2017-04-11,Spring,2017-05-28T07:00Z +Cancel,352,2017,May,22,28,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,60,0,1,No-Show,2017-05-28,Spring,2017-05-28T07:00Z +Cancel,7,2017,May,22,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,110,0,1,Canceled,2017-05-21,Spring,2017-05-28T07:00Z +Cancel,103,2017,May,22,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,1,Canceled,2017-02-14,Spring,2017-05-28T07:00Z +Cancel,80,2017,May,22,28,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,80,0,0,No-Show,2017-05-28,Spring,2017-05-28T07:00Z +Cancel,63,2017,May,22,28,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-05-03,Spring,2017-05-28T07:00Z +Cancel,63,2017,May,22,28,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-05-03,Spring,2017-05-28T07:00Z +Cancel,12,2017,May,22,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,4,Canceled,2017-05-23,Spring,2017-05-28T07:00Z +Cancel,11,2017,May,22,28,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,146.25,0,4,Canceled,2017-05-26,Spring,2017-05-28T07:00Z +Cancel,107,2017,May,22,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-10,Spring,2017-05-28T07:00Z +Cancel,108,2017,May,22,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-09,Spring,2017-05-28T07:00Z +Cancel,103,2017,May,22,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,1,Canceled,2017-02-14,Spring,2017-05-28T07:00Z +Cancel,199,2017,May,22,28,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,38,0,1,Canceled,2017-03-03,Spring,2017-05-28T07:00Z +Cancel,102,2017,May,22,28,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Canceled,2017-02-15,Spring,2017-05-28T07:00Z +Cancel,222,2017,May,22,28,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155.8,0,0,Canceled,2016-10-18,Spring,2017-05-28T07:00Z +Cancel,139,2017,May,22,28,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,2,No Deposit , 250, NULL,0,Transient,56,0,0,Canceled,2017-04-17,Spring,2017-05-28T07:00Z +Cancel,222,2017,May,22,28,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155.8,0,0,Canceled,2016-10-18,Spring,2017-05-28T07:00Z +Cancel,214,2017,May,22,28,2,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,163.33,0,0,Canceled,2016-12-03,Spring,2017-05-28T07:00Z +Cancel,222,2017,May,22,28,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.22,0,0,Canceled,2016-10-18,Spring,2017-05-28T07:00Z +Cancel,247,2017,May,22,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-09-23,Spring,2017-05-28T07:00Z +Cancel,338,2017,May,22,28,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118.67,0,0,Canceled,2016-08-05,Spring,2017-05-28T07:00Z +Cancel,321,2017,May,22,28,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,89.87,0,2,Canceled,2016-12-03,Spring,2017-05-28T07:00Z +Cancel,342,2017,May,22,28,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129.86,0,0,Canceled,2016-06-20,Spring,2017-05-28T07:00Z +Cancel,247,2017,May,22,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-09-23,Spring,2017-05-28T07:00Z +Cancel,30,2017,May,22,28,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,111.44,0,0,No-Show,2017-05-28,Spring,2017-05-28T07:00Z +Cancel,132,2017,May,22,28,4,6,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-01-18,Spring,2017-05-28T07:00Z +Cancel,184,2017,May,22,28,4,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.2,0,0,Canceled,2017-03-13,Spring,2017-05-28T07:00Z +Cancel,312,2017,May,22,28,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 57, NULL,0,Transient,28,0,0,Canceled,2016-08-30,Spring,2017-05-28T07:00Z +Cancel,4,2017,May,22,29,1,2,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,152,0,1,Canceled,2017-05-26,Spring,2017-05-29T07:00Z +Cancel,128,2017,May,22,29,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-02-05,Spring,2017-05-29T07:00Z +Cancel,128,2017,May,22,29,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-02-05,Spring,2017-05-29T07:00Z +Cancel,22,2017,May,22,29,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,91.2,0,1,Canceled,2017-05-27,Spring,2017-05-29T07:00Z +Cancel,97,2017,May,22,29,1,5,3,1,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,225.5,0,0,Canceled,2017-02-24,Spring,2017-05-29T07:00Z +Cancel,72,2017,May,22,29,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,Refundable , 242, NULL,0,Transient,158.33,0,1,Canceled,2017-05-25,Spring,2017-05-29T07:00Z +Cancel,254,2017,May,22,29,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,62.1,0,0,Canceled,2017-01-26,Spring,2017-05-29T07:00Z +Cancel,42,2017,May,22,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 468, NULL,0,Transient,86.1,0,0,Canceled,2017-04-18,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,113,2017,May,22,30,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Canceled,2017-02-08,Spring,2017-05-30T07:00Z +Cancel,155,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123.33,0,2,Canceled,2017-01-15,Spring,2017-05-30T07:00Z +Cancel,216,2017,May,22,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,54,0,1,Canceled,2016-12-29,Spring,2017-05-30T07:00Z +Cancel,7,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-05-24,Spring,2017-05-30T07:00Z +Cancel,137,2017,May,22,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,108.33,0,0,Canceled,2017-04-01,Spring,2017-05-30T07:00Z +Cancel,71,2017,May,22,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,126.67,0,0,Canceled,2017-03-20,Spring,2017-05-30T07:00Z +Cancel,155,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123.33,0,2,Canceled,2017-01-15,Spring,2017-05-30T07:00Z +Cancel,7,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-05-24,Spring,2017-05-30T07:00Z +Cancel,289,2017,May,22,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-03-08,Spring,2017-05-30T07:00Z +Cancel,314,2017,May,22,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,48.6,0,0,Canceled,2016-10-04,Spring,2017-05-30T07:00Z +Cancel,279,2017,May,22,30,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,80.1,0,2,Canceled,2017-01-15,Spring,2017-05-30T07:00Z +Cancel,279,2017,May,22,30,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,80.1,0,2,Canceled,2017-01-14,Spring,2017-05-30T07:00Z +Cancel,138,2017,May,22,30,0,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115,0,1,Canceled,2017-01-20,Spring,2017-05-30T07:00Z +Cancel,138,2017,May,22,30,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,100,0,1,Canceled,2017-01-20,Spring,2017-05-30T07:00Z +Cancel,152,2017,May,22,30,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,134.44,0,1,Canceled,2017-05-17,Spring,2017-05-30T07:00Z +Cancel,295,2017,May,22,30,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-08-31,Spring,2017-05-30T07:00Z +Cancel,238,2017,May,22,30,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,2,Canceled,2017-02-27,Spring,2017-05-30T07:00Z +Cancel,23,2017,May,22,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,45,0,0,Canceled,2017-05-29,Spring,2017-05-31T07:00Z +Cancel,14,2017,May,22,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,91.2,0,2,Canceled,2017-05-19,Spring,2017-05-31T07:00Z +Cancel,143,2017,May,22,31,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.75,0,2,Canceled,2017-01-15,Spring,2017-05-31T07:00Z +Cancel,144,2017,May,22,31,1,4,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2017-04-19,Spring,2017-05-31T07:00Z +Cancel,46,2017,May,22,31,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Canceled,2017-05-10,Spring,2017-05-31T07:00Z +Cancel,322,2017,May,22,31,0,3,2,2,0,BB,FJI,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135.33,0,0,Canceled,2017-04-29,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,450,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,39,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,411,2017,May,22,31,2,4,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,71.1,0,0,Canceled,2016-04-15,Spring,2017-05-31T07:00Z +Cancel,350,2017,May,22,31,2,7,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140.44,0,0,Canceled,2016-06-27,Spring,2017-05-31T07:00Z +Cancel,1,2017,June,22,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-05-31,Summer,2017-06-01T07:00Z +Cancel,1,2017,June,22,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Canceled,2017-05-31,Summer,2017-06-01T07:00Z +Cancel,18,2017,June,22,1,0,2,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Canceled,2017-05-15,Summer,2017-06-01T07:00Z +Cancel,43,2017,June,22,1,0,2,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2017-04-21,Summer,2017-06-01T07:00Z +Cancel,13,2017,June,22,1,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-05-20,Summer,2017-06-01T07:00Z +Cancel,19,2017,June,22,1,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100,0,1,Canceled,2017-05-14,Summer,2017-06-01T07:00Z +Cancel,255,2017,June,22,1,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Canceled,2017-03-28,Summer,2017-06-01T07:00Z +Cancel,309,2017,June,22,1,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Canceled,2017-04-22,Summer,2017-06-01T07:00Z +Cancel,17,2017,June,22,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,76,0,1,Canceled,2017-05-17,Summer,2017-06-01T07:00Z +Cancel,123,2017,June,22,1,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2017-03-02,Summer,2017-06-01T07:00Z +Cancel,309,2017,June,22,1,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Canceled,2017-04-22,Summer,2017-06-01T07:00Z +Cancel,104,2017,June,22,1,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,121.5,0,0,Canceled,2017-03-08,Summer,2017-06-01T07:00Z +Cancel,113,2017,June,22,1,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-02-09,Summer,2017-06-01T07:00Z +Cancel,263,2017,June,22,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-09-24,Summer,2017-06-01T07:00Z +Cancel,263,2017,June,22,1,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,159,0,0,Canceled,2016-09-24,Summer,2017-06-01T07:00Z +Cancel,263,2017,June,22,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2016-09-24,Summer,2017-06-01T07:00Z +Cancel,160,2017,June,22,1,2,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Canceled,2017-03-31,Summer,2017-06-01T07:00Z +Cancel,344,2017,June,22,1,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68.4,0,0,Canceled,2017-03-29,Summer,2017-06-01T07:00Z +Cancel,239,2017,June,22,1,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,1,Canceled,2017-05-10,Summer,2017-06-01T07:00Z +Cancel,321,2017,June,22,1,4,10,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,143,0,0,Canceled,2017-05-14,Summer,2017-06-01T07:00Z +Cancel,344,2017,June,22,1,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,0,Canceled,2017-03-01,Summer,2017-06-01T07:00Z +Cancel,239,2017,June,22,1,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,2,No-Show,2017-06-01,Summer,2017-06-01T07:00Z +Cancel,74,2017,June,22,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 59,0,Transient,96.3,0,0,Canceled,2017-03-23,Summer,2017-06-02T07:00Z +Cancel,7,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Canceled,2017-05-27,Summer,2017-06-02T07:00Z +Cancel,49,2017,June,22,2,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228,0,1,Canceled,2017-04-21,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,23,2017,June,22,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,127.5,0,1,Canceled,2017-05-22,Summer,2017-06-02T07:00Z +Cancel,19,2017,June,22,2,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,137,0,2,Canceled,2017-05-14,Summer,2017-06-02T07:00Z +Cancel,41,2017,June,22,2,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228,0,0,Canceled,2017-05-22,Summer,2017-06-02T07:00Z +Cancel,48,2017,June,22,2,0,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,203,0,1,Canceled,2017-04-20,Summer,2017-06-02T07:00Z +Cancel,65,2017,June,22,2,0,2,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,262.5,0,0,Canceled,2017-05-12,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,43,2017,June,22,2,0,2,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,203,0,1,Canceled,2017-05-22,Summer,2017-06-02T07:00Z +Cancel,36,2017,June,22,2,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2017-05-30,Summer,2017-06-02T07:00Z +Cancel,88,2017,June,22,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-04-10,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,41,2017,June,22,2,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,187,0,0,Canceled,2017-05-22,Summer,2017-06-02T07:00Z +Cancel,18,2017,June,22,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Canceled,2017-05-25,Summer,2017-06-02T07:00Z +Cancel,49,2017,June,22,2,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,187,0,1,Canceled,2017-04-21,Summer,2017-06-02T07:00Z +Cancel,282,2017,June,22,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-04-09,Summer,2017-06-02T07:00Z +Cancel,1,2017,June,22,2,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,105,0,0,Canceled,2017-06-01,Summer,2017-06-02T07:00Z +Cancel,43,2017,June,22,2,0,2,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,1,Canceled,2017-05-22,Summer,2017-06-02T07:00Z +Cancel,131,2017,June,22,2,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,3,Canceled,2017-04-29,Summer,2017-06-02T07:00Z +Cancel,247,2017,June,22,2,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,79.66,0,0,Canceled,2016-09-29,Summer,2017-06-02T07:00Z +Cancel,113,2017,June,22,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,110,0,1,Canceled,2017-02-13,Summer,2017-06-02T07:00Z +Cancel,28,2017,June,22,2,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-05-05,Summer,2017-06-02T07:00Z +Cancel,219,2017,June,22,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,93.5,0,0,Canceled,2016-10-31,Summer,2017-06-02T07:00Z +Cancel,241,2017,June,22,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,1,Canceled,2016-10-07,Summer,2017-06-02T07:00Z +Cancel,264,2017,June,22,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,92,0,2,Canceled,2017-03-08,Summer,2017-06-02T07:00Z +Cancel,264,2017,June,22,2,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,101,0,1,Canceled,2017-03-08,Summer,2017-06-02T07:00Z +Cancel,99,2017,June,22,2,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,155,0,0,Canceled,2017-05-29,Summer,2017-06-02T07:00Z +Cancel,22,2017,June,22,2,2,5,2,2,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,210.86,0,1,Canceled,2017-05-11,Summer,2017-06-02T07:00Z +Cancel,278,2017,June,22,2,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,135.9,0,1,Canceled,2017-01-16,Summer,2017-06-02T07:00Z +Cancel,282,2017,June,22,2,2,6,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,150.25,0,0,Canceled,2016-09-03,Summer,2017-06-02T07:00Z +Cancel,43,2017,June,22,2,3,7,2,2,0,HB,KAZ,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,223,0,1,Canceled,2017-05-20,Summer,2017-06-02T07:00Z +Cancel,248,2017,June,22,2,4,10,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,207,0,0,Canceled,2016-10-02,Summer,2017-06-02T07:00Z +Cancel,175,2017,June,22,2,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2017-01-24,Summer,2017-06-02T07:00Z +Cancel,16,2017,June,22,3,0,1,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,0,Canceled,2017-05-22,Summer,2017-06-03T07:00Z +Cancel,22,2017,June,22,3,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2017-05-23,Summer,2017-06-03T07:00Z +Cancel,2,2017,June,22,3,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-06-02,Summer,2017-06-03T07:00Z +Cancel,114,2017,June,22,3,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,150,0,1,Canceled,2017-02-09,Summer,2017-06-03T07:00Z +Cancel,252,2017,June,22,3,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,99.9,0,2,Canceled,2017-03-29,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,74.25,0,1,Canceled,2017-05-30,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-03-28,Summer,2017-06-03T07:00Z +Cancel,310,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,88.2,0,0,Canceled,2016-10-06,Summer,2017-06-03T07:00Z +Cancel,274,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,0,Canceled,2017-06-02,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-03-28,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,240,2017,June,22,3,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,1,Canceled,2016-11-26,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-03-16,Summer,2017-06-03T07:00Z +Cancel,310,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Canceled,2017-01-28,Summer,2017-06-03T07:00Z +Cancel,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,88.2,0,1,Canceled,2017-03-28,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-04-30,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-06-02,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-05-15,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-02-03,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-03-28,Summer,2017-06-03T07:00Z +Cancel,314,2017,June,22,3,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,143,0,0,Canceled,2016-07-24,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,310,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,88.2,0,0,Canceled,2016-10-06,Summer,2017-06-03T07:00Z +Cancel,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-06-02,Summer,2017-06-03T07:00Z +Cancel,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Canceled,2017-03-28,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,323,2017,June,22,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,72,0,0,Canceled,2016-07-21,Summer,2017-06-03T07:00Z +Cancel,355,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.7,0,0,Canceled,2016-08-30,Summer,2017-06-03T07:00Z +Cancel,310,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Canceled,2017-01-28,Summer,2017-06-03T07:00Z +Cancel,141,2017,June,22,3,2,6,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2017-03-06,Summer,2017-06-03T07:00Z +Cancel,141,2017,June,22,3,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2017-03-06,Summer,2017-06-03T07:00Z +Cancel,219,2017,June,22,3,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Canceled,2016-10-28,Summer,2017-06-03T07:00Z +Cancel,244,2017,June,22,3,4,10,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2016-10-21,Summer,2017-06-03T07:00Z +Cancel,69,2017,June,23,4,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,1,Canceled,2017-05-15,Summer,2017-06-04T07:00Z +Cancel,69,2017,June,23,4,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,1,Canceled,2017-05-15,Summer,2017-06-04T07:00Z +Cancel,87,2017,June,23,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,120,0,0,No-Show,2017-06-04,Summer,2017-06-04T07:00Z +Cancel,67,2017,June,23,4,2,2,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2017-03-30,Summer,2017-06-04T07:00Z +Cancel,83,2017,June,23,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,96,0,1,Canceled,2017-03-14,Summer,2017-06-04T07:00Z +Cancel,102,2017,June,23,4,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-22,Summer,2017-06-04T07:00Z +Cancel,87,2017,June,23,4,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,120,0,0,No-Show,2017-06-04,Summer,2017-06-04T07:00Z +Cancel,127,2017,June,23,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-03-28,Summer,2017-06-04T07:00Z +Cancel,119,2017,June,23,4,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,148,0,1,Canceled,2017-04-09,Summer,2017-06-04T07:00Z +Cancel,272,2017,June,23,4,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98.06,0,3,Canceled,2017-05-23,Summer,2017-06-04T07:00Z +Cancel,25,2017,June,23,4,4,6,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,No-Show,2017-06-04,Summer,2017-06-04T07:00Z +Cancel,326,2017,June,23,4,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.5,0,1,Canceled,2016-08-15,Summer,2017-06-04T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,75,2017,June,23,5,1,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,208,0,1,Canceled,2017-03-25,Summer,2017-06-05T07:00Z +Cancel,24,2017,June,23,5,1,2,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,213.33,0,0,Canceled,2017-05-22,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,318,2017,June,23,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,74.25,0,2,Canceled,2017-01-06,Summer,2017-06-05T07:00Z +Cancel,21,2017,June,23,5,1,3,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,215,0,0,Canceled,2017-05-15,Summer,2017-06-05T07:00Z +Cancel,128,2017,June,23,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-01-28,Summer,2017-06-05T07:00Z +Cancel,319,2017,June,23,5,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.08,0,1,Canceled,2016-10-13,Summer,2017-06-05T07:00Z +Cancel,319,2017,June,23,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-09-28,Summer,2017-06-05T07:00Z +Cancel,35,2017,June,23,5,1,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,193.67,0,1,Canceled,2017-05-17,Summer,2017-06-05T07:00Z +Cancel,321,2017,June,23,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-04-04,Summer,2017-06-05T07:00Z +Cancel,303,2017,June,23,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-08-10,Summer,2017-06-05T07:00Z +Cancel,60,2017,June,23,5,3,6,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,2,Canceled,2017-05-20,Summer,2017-06-05T07:00Z +Cancel,222,2017,June,23,5,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,102.85,0,0,Canceled,2016-12-09,Summer,2017-06-05T07:00Z +Cancel,149,2017,June,23,6,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-01-08,Summer,2017-06-06T07:00Z +Cancel,4,2017,June,23,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,151,0,0,Canceled,2017-06-05,Summer,2017-06-06T07:00Z +Cancel,149,2017,June,23,6,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-01-08,Summer,2017-06-06T07:00Z +Cancel,91,2017,June,23,6,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-03-08,Summer,2017-06-06T07:00Z +Cancel,91,2017,June,23,6,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-03-08,Summer,2017-06-06T07:00Z +Cancel,120,2017,June,23,6,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,115.5,0,0,Canceled,2017-05-29,Summer,2017-06-06T07:00Z +Cancel,132,2017,June,23,6,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-03-06,Summer,2017-06-06T07:00Z +Cancel,329,2017,June,23,6,2,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,28,0,2,Canceled,2016-08-30,Summer,2017-06-06T07:00Z +Cancel,223,2017,June,23,6,6,15,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,93.5,0,0,Canceled,2016-12-06,Summer,2017-06-06T07:00Z +Cancel,257,2017,June,23,6,6,15,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,93.6,0,1,Canceled,2016-10-03,Summer,2017-06-06T07:00Z +Cancel,35,2017,June,23,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,126,0,0,Canceled,2017-05-03,Summer,2017-06-07T07:00Z +Cancel,18,2017,June,23,7,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.8,0,0,Canceled,2017-05-31,Summer,2017-06-07T07:00Z +Cancel,18,2017,June,23,7,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2017-05-31,Summer,2017-06-07T07:00Z +Cancel,340,2017,June,23,7,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,2,Canceled,2016-12-08,Summer,2017-06-07T07:00Z +Cancel,47,2017,June,23,7,0,4,1,0,0,HB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,0,Canceled,2017-05-10,Summer,2017-06-07T07:00Z +Cancel,2,2017,June,23,7,0,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,140,0,2,Canceled,2017-06-06,Summer,2017-06-07T07:00Z +Cancel,33,2017,June,23,7,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-05-05,Summer,2017-06-07T07:00Z +Cancel,29,2017,June,23,7,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-05-09,Summer,2017-06-07T07:00Z +Cancel,156,2017,June,23,7,2,4,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-01-02,Summer,2017-06-07T07:00Z +Cancel,247,2017,June,23,7,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,113.52,0,0,Canceled,2016-10-03,Summer,2017-06-07T07:00Z +Cancel,328,2017,June,23,7,2,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2016-09-08,Summer,2017-06-07T07:00Z +Cancel,1,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 428,0,Transient,75,0,0,Canceled,2017-06-07,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,94,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,235,2017,June,23,8,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,1,Canceled,2016-12-08,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,309,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,5,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,21,2017,June,23,8,2,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-05-18,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient,94,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,309,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,5,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,60,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient,94,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,94,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,122,2017,June,23,8,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-02-19,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,74,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,94,0,0,Canceled,2017-04-05,Summer,2017-06-08T07:00Z +Cancel,304,2017,June,23,8,2,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient,66,0,0,Canceled,2017-03-20,Summer,2017-06-08T07:00Z +Cancel,20,2017,June,23,8,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-05-27,Summer,2017-06-08T07:00Z +Cancel,6,2017,June,23,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,127.5,0,0,Canceled,2017-06-06,Summer,2017-06-08T07:00Z +Cancel,288,2017,June,23,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Transient,78.4,0,0,Canceled,2016-09-28,Summer,2017-06-08T07:00Z +Cancel,197,2017,June,23,8,2,6,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-04-10,Summer,2017-06-08T07:00Z +Cancel,307,2017,June,23,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,0,Canceled,2017-04-11,Summer,2017-06-08T07:00Z +Cancel,8,2017,June,23,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-06-07,Summer,2017-06-09T07:00Z +Cancel,0,2017,June,23,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-06-09,Summer,2017-06-09T07:00Z +Cancel,39,2017,June,23,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,135,0,2,Canceled,2017-05-07,Summer,2017-06-09T07:00Z +Cancel,101,2017,June,23,9,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,158,0,1,Canceled,2017-05-02,Summer,2017-06-09T07:00Z +Cancel,40,2017,June,23,9,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,6,No Deposit , 240, NULL,0,Transient,167,0,2,Canceled,2017-05-01,Summer,2017-06-09T07:00Z +Cancel,65,2017,June,23,9,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-04-21,Summer,2017-06-09T07:00Z +Cancel,104,2017,June,23,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-02-27,Summer,2017-06-09T07:00Z +Cancel,17,2017,June,23,9,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,223,0,0,Canceled,2017-05-24,Summer,2017-06-09T07:00Z +Cancel,23,2017,June,23,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 242, NULL,0,Transient,140,0,1,No-Show,2017-06-09,Summer,2017-06-09T07:00Z +Cancel,98,2017,June,23,9,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,184.16,0,0,Canceled,2017-03-05,Summer,2017-06-09T07:00Z +Cancel,76,2017,June,23,9,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-04-01,Summer,2017-06-09T07:00Z +Cancel,37,2017,June,23,9,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,137.5,0,1,Canceled,2017-05-05,Summer,2017-06-09T07:00Z +Cancel,143,2017,June,23,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,125,0,2,Canceled,2017-01-20,Summer,2017-06-09T07:00Z +Cancel,95,2017,June,23,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,136,0,1,Canceled,2017-05-23,Summer,2017-06-09T07:00Z +Cancel,179,2017,June,23,9,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,1,Canceled,2017-06-09,Summer,2017-06-09T07:00Z +Cancel,179,2017,June,23,9,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,1,Canceled,2017-06-09,Summer,2017-06-09T07:00Z +Cancel,234,2017,June,23,9,2,5,3,0,0,HB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,171.39,0,1,Canceled,2016-11-21,Summer,2017-06-09T07:00Z +Cancel,150,2017,June,23,9,2,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-05-18,Summer,2017-06-09T07:00Z +Cancel,66,2017,June,23,9,2,7,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,108,0,4,Canceled,2017-04-26,Summer,2017-06-09T07:00Z +Cancel,6,2017,June,23,10,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,0,No-Show,2017-06-10,Summer,2017-06-10T07:00Z +Cancel,6,2017,June,23,10,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132,0,1,Canceled,2017-06-06,Summer,2017-06-10T07:00Z +Cancel,37,2017,June,23,10,2,2,2,2,0,HB,PAK,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228,0,1,Canceled,2017-05-06,Summer,2017-06-10T07:00Z +Cancel,37,2017,June,23,10,2,2,2,2,0,HB,PAK,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228,0,1,Canceled,2017-05-06,Summer,2017-06-10T07:00Z +Cancel,21,2017,June,23,10,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-05-20,Summer,2017-06-10T07:00Z +Cancel,128,2017,June,23,10,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,157,0,2,Canceled,2017-06-07,Summer,2017-06-10T07:00Z +Cancel,155,2017,June,23,10,2,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,233,0,0,Canceled,2017-04-05,Summer,2017-06-10T07:00Z +Cancel,193,2017,June,23,10,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,112.5,0,0,Canceled,2017-03-13,Summer,2017-06-10T07:00Z +Cancel,131,2017,June,23,10,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-01-30,Summer,2017-06-10T07:00Z +Cancel,330,2017,June,23,10,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-04-08,Summer,2017-06-10T07:00Z +Cancel,257,2017,June,23,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2017-03-18,Summer,2017-06-10T07:00Z +Cancel,58,2017,June,23,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.71,0,0,Canceled,2017-05-17,Summer,2017-06-10T07:00Z +Cancel,332,2017,June,23,10,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,No-Show,2017-06-10,Summer,2017-06-10T07:00Z +Cancel,118,2017,June,23,10,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,196,0,2,Canceled,2017-04-14,Summer,2017-06-10T07:00Z +Cancel,314,2017,June,23,10,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.7,0,2,Canceled,2017-05-12,Summer,2017-06-10T07:00Z +Cancel,306,2017,June,23,10,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,107.1,0,0,Canceled,2016-08-08,Summer,2017-06-10T07:00Z +Cancel,306,2017,June,23,10,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,107.1,0,0,Canceled,2016-08-09,Summer,2017-06-10T07:00Z +Cancel,0,2017,June,24,11,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-06-11,Summer,2017-06-11T07:00Z +Cancel,278,2017,June,24,11,1,0,2,0,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,0,Canceled,2016-09-06,Summer,2017-06-11T07:00Z +Cancel,20,2017,June,24,11,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Group,66,0,0,No-Show,2017-06-11,Summer,2017-06-11T07:00Z +Cancel,29,2017,June,24,11,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,136,0,1,Canceled,2017-05-13,Summer,2017-06-11T07:00Z +Cancel,27,2017,June,24,11,2,1,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 292,0,Transient,120,0,1,Canceled,2017-05-18,Summer,2017-06-11T07:00Z +Cancel,29,2017,June,24,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2017-05-21,Summer,2017-06-11T07:00Z +Cancel,83,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-03-20,Summer,2017-06-11T07:00Z +Cancel,108,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-23,Summer,2017-06-11T07:00Z +Cancel,27,2017,June,24,11,2,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 292,0,Transient,106.67,0,1,Canceled,2017-05-18,Summer,2017-06-11T07:00Z +Cancel,231,2017,June,24,11,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-10-31,Summer,2017-06-11T07:00Z +Cancel,131,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-05-19,Summer,2017-06-11T07:00Z +Cancel,184,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-05-23,Summer,2017-06-11T07:00Z +Cancel,184,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-05-23,Summer,2017-06-11T07:00Z +Cancel,135,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-27,Summer,2017-06-11T07:00Z +Cancel,125,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-06,Summer,2017-06-11T07:00Z +Cancel,141,2017,June,24,11,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,1,Canceled,2017-03-07,Summer,2017-06-11T07:00Z +Cancel,117,2017,June,24,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-14,Summer,2017-06-11T07:00Z +Cancel,167,2017,June,24,11,2,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101,0,2,Canceled,2017-02-07,Summer,2017-06-11T07:00Z +Cancel,114,2017,June,24,11,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient-Party,126.4,0,3,Canceled,2017-06-07,Summer,2017-06-11T07:00Z +Cancel,192,2017,June,24,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,88,0,0,Canceled,2016-12-02,Summer,2017-06-11T07:00Z +Cancel,114,2017,June,24,11,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,117.04,0,1,Canceled,2017-02-18,Summer,2017-06-11T07:00Z +Cancel,140,2017,June,24,11,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2017-03-06,Summer,2017-06-11T07:00Z +Cancel,41,2017,June,24,11,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,157.5,0,0,Canceled,2017-05-03,Summer,2017-06-11T07:00Z +Cancel,6,2017,June,24,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,107.95,0,0,Canceled,2017-06-07,Summer,2017-06-12T07:00Z +Cancel,319,2017,June,24,12,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-07-29,Summer,2017-06-12T07:00Z +Cancel,13,2017,June,24,12,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 388,0,Transient,75,0,0,Canceled,2017-05-30,Summer,2017-06-12T07:00Z +Cancel,70,2017,June,24,12,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2017-04-03,Summer,2017-06-12T07:00Z +Cancel,237,2017,June,24,12,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Canceled,2016-10-28,Summer,2017-06-12T07:00Z +Cancel,19,2017,June,24,12,1,4,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,260,0,0,Canceled,2017-05-31,Summer,2017-06-12T07:00Z +Cancel,120,2017,June,24,12,1,5,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,196,0,0,Canceled,2017-02-12,Summer,2017-06-12T07:00Z +Cancel,230,2017,June,24,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,83.7,0,1,Canceled,2017-02-01,Summer,2017-06-12T07:00Z +Cancel,201,2017,June,24,12,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 11, NULL,0,Transient,80.19,0,0,Canceled,2017-01-31,Summer,2017-06-12T07:00Z +Cancel,52,2017,June,24,12,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.43,0,1,Canceled,2017-04-22,Summer,2017-06-12T07:00Z +Cancel,210,2017,June,24,12,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,115.2,0,0,Canceled,2016-11-28,Summer,2017-06-12T07:00Z +Cancel,230,2017,June,24,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,83.7,0,1,Canceled,2017-02-01,Summer,2017-06-12T07:00Z +Cancel,94,2017,June,24,12,3,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-06-12,Summer,2017-06-12T07:00Z +Cancel,271,2017,June,24,12,3,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,137.7,0,1,Canceled,2017-03-31,Summer,2017-06-12T07:00Z +Cancel,298,2017,June,24,12,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,0,Canceled,2016-08-18,Summer,2017-06-12T07:00Z +Cancel,230,2017,June,24,12,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Contract,93.6,0,0,Canceled,2016-10-25,Summer,2017-06-12T07:00Z +Cancel,216,2017,June,24,12,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Contract,93.6,0,0,Canceled,2017-05-22,Summer,2017-06-12T07:00Z +Cancel,162,2017,June,24,13,0,2,3,1,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,185,0,1,Canceled,2017-03-28,Summer,2017-06-13T07:00Z +Cancel,12,2017,June,24,13,0,3,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,202,0,1,Canceled,2017-06-02,Summer,2017-06-13T07:00Z +Cancel,133,2017,June,24,13,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-31,Summer,2017-06-13T07:00Z +Cancel,138,2017,June,24,13,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-26,Summer,2017-06-13T07:00Z +Cancel,140,2017,June,24,13,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-24,Summer,2017-06-13T07:00Z +Cancel,140,2017,June,24,13,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-24,Summer,2017-06-13T07:00Z +Cancel,135,2017,June,24,13,2,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-03-06,Summer,2017-06-13T07:00Z +Cancel,130,2017,June,24,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-02-09,Summer,2017-06-13T07:00Z +Cancel,113,2017,June,24,13,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-02-25,Summer,2017-06-13T07:00Z +Cancel,247,2017,June,24,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-04-04,Summer,2017-06-13T07:00Z +Cancel,247,2017,June,24,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-04-04,Summer,2017-06-13T07:00Z +Cancel,50,2017,June,24,13,2,7,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 134, NULL,0,Transient,162,0,0,Canceled,2017-04-25,Summer,2017-06-13T07:00Z +Cancel,30,2017,June,24,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,167.2,0,2,Canceled,2017-05-22,Summer,2017-06-14T07:00Z +Cancel,135,2017,June,24,14,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2017-02-12,Summer,2017-06-14T07:00Z +Cancel,30,2017,June,24,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,167.2,0,2,Canceled,2017-05-22,Summer,2017-06-14T07:00Z +Cancel,175,2017,June,24,14,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-03-08,Summer,2017-06-14T07:00Z +Cancel,141,2017,June,24,14,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172,0,2,Canceled,2017-02-13,Summer,2017-06-14T07:00Z +Cancel,97,2017,June,24,14,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-05-25,Summer,2017-06-14T07:00Z +Cancel,288,2017,June,24,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-09-05,Summer,2017-06-14T07:00Z +Cancel,155,2017,June,24,14,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,142,0,2,Canceled,2017-05-02,Summer,2017-06-14T07:00Z +Cancel,97,2017,June,24,14,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-05-25,Summer,2017-06-14T07:00Z +Cancel,288,2017,June,24,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-09-05,Summer,2017-06-14T07:00Z +Cancel,134,2017,June,24,14,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-31,Summer,2017-06-14T07:00Z +Cancel,134,2017,June,24,14,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-31,Summer,2017-06-14T07:00Z +Cancel,120,2017,June,24,14,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,133.13,0,0,Canceled,2017-05-04,Summer,2017-06-14T07:00Z +Cancel,97,2017,June,24,14,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-05-25,Summer,2017-06-14T07:00Z +Cancel,146,2017,June,24,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-01-20,Summer,2017-06-14T07:00Z +Cancel,86,2017,June,24,14,2,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient,94,0,0,Canceled,2017-03-20,Summer,2017-06-14T07:00Z +Cancel,150,2017,June,24,14,2,8,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2017-06-01,Summer,2017-06-14T07:00Z +Cancel,118,2017,June,24,14,4,9,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,195,0,1,Canceled,2017-03-01,Summer,2017-06-14T07:00Z +Cancel,218,2017,June,24,14,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Canceled,2017-02-20,Summer,2017-06-14T07:00Z +Cancel,345,2017,June,24,14,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Transient,8,0,1,Canceled,2016-09-13,Summer,2017-06-14T07:00Z +Cancel,292,2017,June,24,14,8,19,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,49.95,0,0,Canceled,2017-06-14,Summer,2017-06-14T07:00Z +Cancel,13,2017,June,24,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 420, NULL,0,Transient-Party,95,0,0,Canceled,2017-06-08,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,130,2017,June,24,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2017-06-04,Summer,2017-06-15T07:00Z +Cancel,131,2017,June,24,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-02-12,Summer,2017-06-15T07:00Z +Cancel,103,2017,June,24,15,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2017-06-01,Summer,2017-06-15T07:00Z +Cancel,106,2017,June,24,15,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-03-04,Summer,2017-06-15T07:00Z +Cancel,54,2017,June,24,15,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2017-06-04,Summer,2017-06-15T07:00Z +Cancel,132,2017,June,24,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2017-02-08,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,151,2017,June,24,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-02-03,Summer,2017-06-15T07:00Z +Cancel,219,2017,June,24,15,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,84.6,0,1,Canceled,2016-11-21,Summer,2017-06-15T07:00Z +Cancel,123,2017,June,24,15,1,3,2,2,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-02-15,Summer,2017-06-15T07:00Z +Cancel,125,2017,June,24,15,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,196,0,2,Canceled,2017-02-10,Summer,2017-06-15T07:00Z +Cancel,223,2017,June,24,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,81.9,0,0,Canceled,2017-04-10,Summer,2017-06-15T07:00Z +Cancel,206,2017,June,24,15,2,5,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,68.4,0,0,Canceled,2017-03-01,Summer,2017-06-15T07:00Z +Cancel,223,2017,June,24,15,2,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-11-04,Summer,2017-06-15T07:00Z +Cancel,249,2017,June,24,15,2,7,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,108.9,0,2,Canceled,2016-10-17,Summer,2017-06-15T07:00Z +Cancel,249,2017,June,24,15,2,7,3,1,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,212,0,4,Canceled,2016-10-17,Summer,2017-06-15T07:00Z +Cancel,223,2017,June,24,15,2,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2016-11-04,Summer,2017-06-15T07:00Z +Cancel,295,2017,June,24,15,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,0,Canceled,2017-03-01,Summer,2017-06-15T07:00Z +Cancel,86,2017,June,24,16,0,1,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-04-10,Summer,2017-06-16T07:00Z +Cancel,8,2017,June,24,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 130,0,Transient,75,0,0,Canceled,2017-06-14,Summer,2017-06-16T07:00Z +Cancel,20,2017,June,24,16,0,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,238,0,0,Canceled,2017-05-29,Summer,2017-06-16T07:00Z +Cancel,0,2017,June,24,16,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,No-Show,2017-06-16,Summer,2017-06-16T07:00Z +Cancel,253,2017,June,24,16,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-10-08,Summer,2017-06-16T07:00Z +Cancel,269,2017,June,24,16,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,107.1,0,2,Canceled,2016-12-09,Summer,2017-06-16T07:00Z +Cancel,158,2017,June,24,16,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,0,Canceled,2017-01-11,Summer,2017-06-16T07:00Z +Cancel,343,2017,June,24,16,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,70.2,0,0,Canceled,2016-10-21,Summer,2017-06-16T07:00Z +Cancel,30,2017,June,24,16,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-05-22,Summer,2017-06-16T07:00Z +Cancel,30,2017,June,24,16,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-05-22,Summer,2017-06-16T07:00Z +Cancel,30,2017,June,24,16,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-05-22,Summer,2017-06-16T07:00Z +Cancel,110,2017,June,24,16,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,158,0,0,Canceled,2017-02-27,Summer,2017-06-16T07:00Z +Cancel,33,2017,June,24,16,2,2,2,2,0,HB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,273,0,0,Canceled,2017-05-14,Summer,2017-06-16T07:00Z +Cancel,36,2017,June,24,16,2,2,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,261,0,0,Canceled,2017-05-11,Summer,2017-06-16T07:00Z +Cancel,255,2017,June,24,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,1,Canceled,2017-01-15,Summer,2017-06-16T07:00Z +Cancel,254,2017,June,24,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-01-15,Summer,2017-06-16T07:00Z +Cancel,60,2017,June,24,16,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167,0,1,Canceled,2017-04-17,Summer,2017-06-16T07:00Z +Cancel,55,2017,June,24,16,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167,0,1,Canceled,2017-04-22,Summer,2017-06-16T07:00Z +Cancel,254,2017,June,24,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-01-15,Summer,2017-06-16T07:00Z +Cancel,250,2017,June,24,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-05-09,Summer,2017-06-16T07:00Z +Cancel,247,2017,June,24,16,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,72.09,0,1,Canceled,2017-02-01,Summer,2017-06-16T07:00Z +Cancel,248,2017,June,24,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-10-12,Summer,2017-06-16T07:00Z +Cancel,55,2017,June,24,16,2,5,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2017-04-22,Summer,2017-06-16T07:00Z +Cancel,60,2017,June,24,16,2,5,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2017-04-17,Summer,2017-06-16T07:00Z +Cancel,107,2017,June,24,16,2,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,185,0,0,Canceled,2017-03-03,Summer,2017-06-16T07:00Z +Cancel,308,2017,June,24,16,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-08-27,Summer,2017-06-16T07:00Z +Cancel,310,2017,June,24,16,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-08-11,Summer,2017-06-16T07:00Z +Cancel,308,2017,June,24,16,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-08-27,Summer,2017-06-16T07:00Z +Cancel,310,2017,June,24,16,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-08-11,Summer,2017-06-16T07:00Z +Cancel,94,2017,June,24,17,0,1,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,135.5,0,0,Canceled,2017-05-29,Summer,2017-06-17T07:00Z +Cancel,368,2017,June,24,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2016-08-29,Summer,2017-06-17T07:00Z +Cancel,368,2017,June,24,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2016-08-29,Summer,2017-06-17T07:00Z +Cancel,5,2017,June,24,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 348, NULL,0,Transient,158,0,0,Canceled,2017-06-13,Summer,2017-06-17T07:00Z +Cancel,139,2017,June,24,17,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-06-08,Summer,2017-06-17T07:00Z +Cancel,145,2017,June,24,17,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,100.8,0,0,Canceled,2017-06-07,Summer,2017-06-17T07:00Z +Cancel,155,2017,June,24,17,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-03-04,Summer,2017-06-17T07:00Z +Cancel,250,2017,June,24,17,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,3,Canceled,2017-05-31,Summer,2017-06-17T07:00Z +Cancel,215,2017,June,24,17,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2016-11-19,Summer,2017-06-17T07:00Z +Cancel,250,2017,June,24,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Canceled,2016-10-11,Summer,2017-06-17T07:00Z +Cancel,77,2017,June,24,17,2,5,2,2,0,Undefined,USA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,311,0,2,Canceled,2017-04-04,Summer,2017-06-17T07:00Z +Cancel,141,2017,June,24,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,104.66,0,0,Canceled,2017-01-31,Summer,2017-06-17T07:00Z +Cancel,112,2017,June,24,17,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,158,0,0,Canceled,2017-02-28,Summer,2017-06-17T07:00Z +Cancel,331,2017,June,24,17,2,5,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,143,0,0,Canceled,2017-05-03,Summer,2017-06-17T07:00Z +Cancel,307,2017,June,24,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,2,Canceled,2017-02-18,Summer,2017-06-17T07:00Z +Cancel,321,2017,June,24,17,2,6,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.5,0,1,Canceled,2016-12-31,Summer,2017-06-17T07:00Z +Cancel,251,2017,June,24,17,3,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.9,0,1,Canceled,2016-10-18,Summer,2017-06-17T07:00Z +Cancel,277,2017,June,24,17,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Canceled,2017-03-06,Summer,2017-06-17T07:00Z +Cancel,250,2017,June,24,17,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,56.7,0,0,Canceled,2016-12-20,Summer,2017-06-17T07:00Z +Cancel,326,2017,June,24,17,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,86.7,0,0,Canceled,2016-07-26,Summer,2017-06-17T07:00Z +Cancel,326,2017,June,24,17,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,86.7,0,0,Canceled,2016-07-26,Summer,2017-06-17T07:00Z +Cancel,28,2017,June,25,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,102.6,0,1,Canceled,2017-05-21,Summer,2017-06-18T07:00Z +Cancel,11,2017,June,25,18,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-06-07,Summer,2017-06-18T07:00Z +Cancel,28,2017,June,25,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,136,0,1,Canceled,2017-05-21,Summer,2017-06-18T07:00Z +Cancel,50,2017,June,25,18,2,0,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212,0,1,Canceled,2017-05-26,Summer,2017-06-18T07:00Z +Cancel,147,2017,June,25,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-03-04,Summer,2017-06-18T07:00Z +Cancel,131,2017,June,25,18,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-07,Summer,2017-06-18T07:00Z +Cancel,165,2017,June,25,18,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,49.95,0,2,Canceled,2017-04-11,Summer,2017-06-18T07:00Z +Cancel,131,2017,June,25,18,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-07,Summer,2017-06-18T07:00Z +Cancel,115,2017,June,25,18,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-23,Summer,2017-06-18T07:00Z +Cancel,143,2017,June,25,18,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-01-26,Summer,2017-06-18T07:00Z +Cancel,116,2017,June,25,18,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-22,Summer,2017-06-18T07:00Z +Cancel,26,2017,June,25,18,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,136,0,1,Canceled,2017-06-03,Summer,2017-06-18T07:00Z +Cancel,135,2017,June,25,18,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2017-03-13,Summer,2017-06-18T07:00Z +Cancel,45,2017,June,25,18,2,4,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,203.67,0,0,Canceled,2017-05-18,Summer,2017-06-18T07:00Z +Cancel,217,2017,June,25,18,2,4,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2016-11-14,Summer,2017-06-18T07:00Z +Cancel,129,2017,June,25,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 483, NULL,0,Transient,63,0,0,Canceled,2017-02-09,Summer,2017-06-18T07:00Z +Cancel,244,2017,June,25,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Canceled,2017-01-09,Summer,2017-06-18T07:00Z +Cancel,312,2017,June,25,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-01-04,Summer,2017-06-18T07:00Z +Cancel,101,2017,June,25,18,2,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,167,0,1,Canceled,2017-03-09,Summer,2017-06-18T07:00Z +Cancel,57,2017,June,25,18,2,5,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2017-04-25,Summer,2017-06-18T07:00Z +Cancel,193,2017,June,25,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,68.4,0,0,Canceled,2016-12-13,Summer,2017-06-18T07:00Z +Cancel,263,2017,June,25,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,96.4,0,0,Canceled,2016-12-13,Summer,2017-06-18T07:00Z +Cancel,57,2017,June,25,18,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167,0,1,Canceled,2017-04-25,Summer,2017-06-18T07:00Z +Cancel,282,2017,June,25,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Canceled,2017-03-28,Summer,2017-06-18T07:00Z +Cancel,160,2017,June,25,18,4,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,165,0,0,Canceled,2017-01-13,Summer,2017-06-18T07:00Z +Cancel,269,2017,June,25,18,4,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,0,Canceled,2016-09-22,Summer,2017-06-18T07:00Z +Cancel,340,2017,June,25,18,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,0,Canceled,2016-10-20,Summer,2017-06-18T07:00Z +Cancel,285,2017,June,25,18,6,15,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,49.95,0,1,Canceled,2016-12-29,Summer,2017-06-18T07:00Z +Cancel,39,2017,June,25,19,1,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2017-05-17,Summer,2017-06-19T07:00Z +Cancel,108,2017,June,25,19,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2017-03-06,Summer,2017-06-19T07:00Z +Cancel,298,2017,June,25,19,1,2,2,0,0,HB,URY,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.4,0,2,Canceled,2017-05-02,Summer,2017-06-19T07:00Z +Cancel,101,2017,June,25,19,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,0,Canceled,2017-06-02,Summer,2017-06-19T07:00Z +Cancel,114,2017,June,25,19,1,4,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 5, 250,0,Transient,117.5,0,0,Canceled,2017-05-15,Summer,2017-06-19T07:00Z +Cancel,98,2017,June,25,19,1,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,258,0,0,Canceled,2017-03-13,Summer,2017-06-19T07:00Z +Cancel,135,2017,June,25,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114,0,2,Canceled,2017-05-15,Summer,2017-06-19T07:00Z +Cancel,148,2017,June,25,19,1,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-01-22,Summer,2017-06-19T07:00Z +Cancel,294,2017,June,25,19,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,122.4,0,0,Canceled,2017-02-13,Summer,2017-06-19T07:00Z +Cancel,210,2017,June,25,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,70.2,0,0,Canceled,2017-01-31,Summer,2017-06-19T07:00Z +Cancel,132,2017,June,25,19,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,153.71,0,2,Canceled,2017-04-14,Summer,2017-06-19T07:00Z +Cancel,237,2017,June,25,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,108.9,0,0,Canceled,2016-10-25,Summer,2017-06-19T07:00Z +Cancel,34,2017,June,25,19,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143.33,0,2,Canceled,2017-05-22,Summer,2017-06-19T07:00Z +Cancel,166,2017,June,25,19,3,6,2,2,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,228,0,0,Canceled,2017-03-28,Summer,2017-06-19T07:00Z +Cancel,330,2017,June,25,19,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-07-24,Summer,2017-06-19T07:00Z +Cancel,125,2017,June,25,19,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,153.71,0,2,Canceled,2017-03-04,Summer,2017-06-19T07:00Z +Cancel,330,2017,June,25,19,3,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-09-14,Summer,2017-06-19T07:00Z +Cancel,313,2017,June,25,19,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,2,Canceled,2017-03-29,Summer,2017-06-19T07:00Z +Cancel,15,2017,June,25,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,135,0,0,Canceled,2017-06-05,Summer,2017-06-20T07:00Z +Cancel,57,2017,June,25,20,0,3,2,2,0,HB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,288,0,0,Canceled,2017-04-24,Summer,2017-06-20T07:00Z +Cancel,126,2017,June,25,20,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-14,Summer,2017-06-20T07:00Z +Cancel,87,2017,June,25,20,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-03-25,Summer,2017-06-20T07:00Z +Cancel,321,2017,June,25,20,0,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.05,0,1,Canceled,2016-08-05,Summer,2017-06-20T07:00Z +Cancel,258,2017,June,25,20,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Canceled,2017-01-05,Summer,2017-06-20T07:00Z +Cancel,78,2017,June,25,20,1,5,1,2,0,HB,NGA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228,0,0,Canceled,2017-04-21,Summer,2017-06-20T07:00Z +Cancel,326,2017,June,25,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.4,0,0,Canceled,2016-09-02,Summer,2017-06-20T07:00Z +Cancel,285,2017,June,25,20,2,8,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,71.6,0,0,Canceled,2016-09-08,Summer,2017-06-20T07:00Z +Cancel,289,2017,June,25,20,2,8,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,77.61,0,1,Canceled,2016-09-08,Summer,2017-06-20T07:00Z +Cancel,213,2017,June,25,20,2,8,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-11-21,Summer,2017-06-20T07:00Z +Cancel,320,2017,June,25,20,2,8,2,0,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,135.9,0,1,Canceled,2016-09-09,Summer,2017-06-20T07:00Z +Cancel,153,2017,June,25,21,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2017-03-06,Summer,2017-06-21T07:00Z +Cancel,94,2017,June,25,21,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-04-21,Summer,2017-06-21T07:00Z +Cancel,261,2017,June,25,21,0,4,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2017-02-13,Summer,2017-06-21T07:00Z +Cancel,43,2017,June,25,21,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-21T07:00Z +Cancel,17,2017,June,25,21,0,3,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,1,Canceled,2017-06-10,Summer,2017-06-21T07:00Z +Cancel,18,2017,June,25,21,1,4,2,0,0,BB,IDN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,222,0,2,Canceled,2017-06-12,Summer,2017-06-21T07:00Z +Cancel,18,2017,June,25,21,1,4,2,0,0,BB,IDN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,222,0,2,Canceled,2017-06-12,Summer,2017-06-21T07:00Z +Cancel,17,2017,June,25,21,1,4,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-06-10,Summer,2017-06-21T07:00Z +Cancel,253,2017,June,25,21,2,5,2,0,1,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,107.1,0,2,Canceled,2017-03-28,Summer,2017-06-21T07:00Z +Cancel,329,2017,June,25,21,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2017-05-09,Summer,2017-06-21T07:00Z +Cancel,324,2017,June,25,21,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,0,Canceled,2016-09-01,Summer,2017-06-21T07:00Z +Cancel,336,2017,June,25,21,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,178.46,0,1,Canceled,2016-07-22,Summer,2017-06-21T07:00Z +Cancel,129,2017,June,25,22,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2017-04-16,Summer,2017-06-22T07:00Z +Cancel,28,2017,June,25,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,106.4,0,1,Canceled,2017-06-03,Summer,2017-06-22T07:00Z +Cancel,107,2017,June,25,22,0,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,2,Canceled,2017-03-07,Summer,2017-06-22T07:00Z +Cancel,150,2017,June,25,22,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,2,Canceled,2017-03-27,Summer,2017-06-22T07:00Z +Cancel,105,2017,June,25,22,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,120,0,1,Canceled,2017-06-13,Summer,2017-06-22T07:00Z +Cancel,170,2017,June,25,22,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-04-04,Summer,2017-06-22T07:00Z +Cancel,44,2017,June,25,22,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-22T07:00Z +Cancel,153,2017,June,25,22,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,123.97,0,2,Canceled,2017-01-23,Summer,2017-06-22T07:00Z +Cancel,154,2017,June,25,22,1,3,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,150.92,0,1,Canceled,2017-01-23,Summer,2017-06-22T07:00Z +Cancel,22,2017,June,25,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,2,Canceled,2017-06-09,Summer,2017-06-22T07:00Z +Cancel,188,2017,June,25,22,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,49.95,0,0,Canceled,2017-04-06,Summer,2017-06-22T07:00Z +Cancel,154,2017,June,25,22,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,123.97,0,1,Canceled,2017-01-23,Summer,2017-06-22T07:00Z +Cancel,244,2017,June,25,22,1,3,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.8,0,2,Canceled,2017-06-09,Summer,2017-06-22T07:00Z +Cancel,244,2017,June,25,22,1,3,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.8,0,2,Canceled,2017-06-09,Summer,2017-06-22T07:00Z +Cancel,153,2017,June,25,22,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,123.97,0,1,Canceled,2017-01-23,Summer,2017-06-22T07:00Z +Cancel,188,2017,June,25,22,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,49.95,0,0,Canceled,2017-04-06,Summer,2017-06-22T07:00Z +Cancel,332,2017,June,25,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,0,Canceled,2016-10-15,Summer,2017-06-22T07:00Z +Cancel,279,2017,June,25,22,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-03-08,Summer,2017-06-22T07:00Z +Cancel,240,2017,June,25,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,81.9,0,1,Canceled,2017-04-10,Summer,2017-06-22T07:00Z +Cancel,240,2017,June,25,22,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,102.38,0,1,Canceled,2017-04-10,Summer,2017-06-22T07:00Z +Cancel,336,2017,June,25,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Canceled,2016-12-21,Summer,2017-06-22T07:00Z +Cancel,10,2017,June,25,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2017-06-16,Summer,2017-06-23T07:00Z +Cancel,95,2017,June,25,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,182,0,1,Canceled,2017-03-23,Summer,2017-06-23T07:00Z +Cancel,37,2017,June,25,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-05-23,Summer,2017-06-23T07:00Z +Cancel,227,2017,June,25,23,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2016-11-11,Summer,2017-06-23T07:00Z +Cancel,28,2017,June,25,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,2,Canceled,2017-06-01,Summer,2017-06-23T07:00Z +Cancel,11,2017,June,25,23,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2017-06-12,Summer,2017-06-23T07:00Z +Cancel,55,2017,June,25,23,2,3,1,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172.8,0,1,Canceled,2017-04-29,Summer,2017-06-23T07:00Z +Cancel,45,2017,June,25,23,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-23T07:00Z +Cancel,205,2017,June,25,23,2,7,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-05-11,Summer,2017-06-23T07:00Z +Cancel,280,2017,June,25,23,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.76,0,0,Canceled,2016-10-04,Summer,2017-06-23T07:00Z +Cancel,280,2017,June,25,23,3,7,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,116.18,0,1,Canceled,2016-10-04,Summer,2017-06-23T07:00Z +Cancel,42,2017,June,25,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-05-16,Summer,2017-06-24T07:00Z +Cancel,49,2017,June,25,24,1,1,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,153.6,0,0,Canceled,2017-05-08,Summer,2017-06-24T07:00Z +Cancel,326,2017,June,25,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Canceled,2017-04-25,Summer,2017-06-24T07:00Z +Cancel,129,2017,June,25,24,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-02-21,Summer,2017-06-24T07:00Z +Cancel,326,2017,June,25,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Canceled,2016-09-15,Summer,2017-06-24T07:00Z +Cancel,123,2017,June,25,24,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111,0,1,Canceled,2017-04-16,Summer,2017-06-24T07:00Z +Cancel,259,2017,June,25,24,2,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,116.1,0,0,Canceled,2016-10-10,Summer,2017-06-24T07:00Z +Cancel,80,2017,June,25,24,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Canceled,2017-06-24,Summer,2017-06-24T07:00Z +Cancel,331,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.4,0,1,Canceled,2016-08-09,Summer,2017-06-24T07:00Z +Cancel,317,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,68.47,0,1,Canceled,2017-02-15,Summer,2017-06-24T07:00Z +Cancel,317,2017,June,25,24,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,98.09,0,1,Canceled,2017-02-15,Summer,2017-06-24T07:00Z +Cancel,209,2017,June,25,24,2,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,162.12,0,0,Canceled,2017-05-19,Summer,2017-06-24T07:00Z +Cancel,119,2017,June,25,24,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,190,0,0,Canceled,2017-02-28,Summer,2017-06-24T07:00Z +Cancel,325,2017,June,25,24,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,0,Canceled,2016-08-04,Summer,2017-06-24T07:00Z +Cancel,305,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Canceled,2017-03-16,Summer,2017-06-24T07:00Z +Cancel,119,2017,June,25,24,2,5,2,2,0,HB,SVK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,238,0,0,Canceled,2017-03-09,Summer,2017-06-24T07:00Z +Cancel,86,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-06-05,Summer,2017-06-24T07:00Z +Cancel,331,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.4,0,1,Canceled,2016-08-09,Summer,2017-06-24T07:00Z +Cancel,274,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-09-23,Summer,2017-06-24T07:00Z +Cancel,273,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-09-25,Summer,2017-06-24T07:00Z +Cancel,288,2017,June,25,24,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 240, NULL,0,Transient,156,0,1,Canceled,2016-09-20,Summer,2017-06-24T07:00Z +Cancel,176,2017,June,25,24,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,131.67,0,1,Canceled,2017-06-13,Summer,2017-06-24T07:00Z +Cancel,273,2017,June,25,24,2,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,81.76,0,1,Canceled,2017-04-20,Summer,2017-06-24T07:00Z +Cancel,275,2017,June,25,24,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.76,0,0,Canceled,2016-09-22,Summer,2017-06-24T07:00Z +Cancel,241,2017,June,25,24,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,105.66,0,0,Canceled,2016-10-31,Summer,2017-06-24T07:00Z +Cancel,253,2017,June,25,24,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.42,0,2,Canceled,2017-02-01,Summer,2017-06-24T07:00Z +Cancel,296,2017,June,25,24,4,7,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.93,0,1,Canceled,2017-02-09,Summer,2017-06-24T07:00Z +Cancel,243,2017,June,25,24,4,10,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2016-11-24,Summer,2017-06-24T07:00Z +Cancel,278,2017,June,25,24,4,6,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111.15,0,2,Canceled,2016-09-24,Summer,2017-06-24T07:00Z +Cancel,5,2017,June,26,25,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,91.2,0,0,Canceled,2017-06-20,Summer,2017-06-25T07:00Z +Cancel,27,2017,June,26,25,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Canceled,2017-05-29,Summer,2017-06-25T07:00Z +Cancel,27,2017,June,26,25,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Canceled,2017-05-29,Summer,2017-06-25T07:00Z +Cancel,103,2017,June,26,25,2,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,209,0,1,Canceled,2017-06-19,Summer,2017-06-25T07:00Z +Cancel,109,2017,June,26,25,2,1,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-03-08,Summer,2017-06-25T07:00Z +Cancel,128,2017,June,26,25,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Canceled,2017-02-17,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,2,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,171,2017,June,26,25,2,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,216,0,1,Canceled,2017-06-09,Summer,2017-06-25T07:00Z +Cancel,253,2017,June,26,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2017-01-10,Summer,2017-06-25T07:00Z +Cancel,238,2017,June,26,25,2,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2016-11-01,Summer,2017-06-25T07:00Z +Cancel,113,2017,June,26,25,2,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,248,0,0,Canceled,2017-03-05,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,159,2017,June,26,25,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient-Party,200,0,0,Canceled,2017-03-10,Summer,2017-06-25T07:00Z +Cancel,163,2017,June,26,25,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,170.7,0,2,Canceled,2017-04-28,Summer,2017-06-25T07:00Z +Cancel,311,2017,June,26,25,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,151.14,0,2,Canceled,2016-08-20,Summer,2017-06-25T07:00Z +Cancel,172,2017,June,26,25,2,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-01-19,Summer,2017-06-25T07:00Z +Cancel,97,2017,June,26,25,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Canceled,2017-03-20,Summer,2017-06-25T07:00Z +Cancel,342,2017,June,26,25,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,265,0,0,Canceled,2016-07-18,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,311,2017,June,26,25,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,151.14,0,0,Canceled,2016-08-18,Summer,2017-06-25T07:00Z +Cancel,263,2017,June,26,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Canceled,2016-10-16,Summer,2017-06-25T07:00Z +Cancel,330,2017,June,26,25,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,105.78,0,1,Canceled,2017-01-23,Summer,2017-06-25T07:00Z +Cancel,342,2017,June,26,25,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Canceled,2016-07-24,Summer,2017-06-25T07:00Z +Cancel,311,2017,June,26,25,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,151.14,0,0,Canceled,2016-08-18,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,251,2017,June,26,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.4,0,0,Canceled,2017-01-23,Summer,2017-06-25T07:00Z +Cancel,159,2017,June,26,25,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient-Party,167,0,0,Canceled,2017-03-08,Summer,2017-06-25T07:00Z +Cancel,311,2017,June,26,25,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,151.14,0,1,Canceled,2016-08-20,Summer,2017-06-25T07:00Z +Cancel,311,2017,June,26,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.03,0,1,Canceled,2016-08-20,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,336,2017,June,26,25,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,146,0,0,Canceled,2016-09-19,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,4,6,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,47,2017,June,26,25,4,6,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-25T07:00Z +Cancel,270,2017,June,26,25,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,84.7,0,1,Canceled,2016-10-17,Summer,2017-06-25T07:00Z +Cancel,98,2017,June,26,26,1,0,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2017-03-20,Summer,2017-06-26T07:00Z +Cancel,50,2017,June,26,26,1,1,2,0,0,BB,LBN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176,0,1,Canceled,2017-05-31,Summer,2017-06-26T07:00Z +Cancel,227,2017,June,26,26,1,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2016-11-16,Summer,2017-06-26T07:00Z +Cancel,50,2017,June,26,26,1,1,2,0,0,BB,LBN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176,0,1,Canceled,2017-05-31,Summer,2017-06-26T07:00Z +Cancel,312,2017,June,26,26,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Canceled,2016-09-07,Summer,2017-06-26T07:00Z +Cancel,169,2017,June,26,26,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2017-04-15,Summer,2017-06-26T07:00Z +Cancel,48,2017,June,26,26,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-26T07:00Z +Cancel,116,2017,June,26,26,1,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-03-21,Summer,2017-06-26T07:00Z +Cancel,106,2017,June,26,26,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-03-14,Summer,2017-06-26T07:00Z +Cancel,250,2017,June,26,26,1,4,2,1,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,114.3,0,1,Canceled,2016-10-19,Summer,2017-06-26T07:00Z +Cancel,48,2017,June,26,26,1,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-26T07:00Z +Cancel,119,2017,June,26,26,1,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,206,0,1,Canceled,2017-04-16,Summer,2017-06-26T07:00Z +Cancel,178,2017,June,26,26,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,131.67,0,0,Canceled,2016-12-30,Summer,2017-06-26T07:00Z +Cancel,250,2017,June,26,26,1,4,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,132.6,0,0,Canceled,2017-05-29,Summer,2017-06-26T07:00Z +Cancel,313,2017,June,26,26,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Refundable , 40, NULL,0,Contract,84.7,0,1,Canceled,2017-06-21,Summer,2017-06-26T07:00Z +Cancel,165,2017,June,26,26,1,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Canceled,2017-03-08,Summer,2017-06-26T07:00Z +Cancel,309,2017,June,26,26,1,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,89.08,0,0,Canceled,2017-01-05,Summer,2017-06-26T07:00Z +Cancel,170,2017,June,26,26,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,3,No Deposit , 314, NULL,0,Transient,118.4,0,0,Canceled,2017-05-05,Summer,2017-06-26T07:00Z +Cancel,165,2017,June,26,26,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-01-13,Summer,2017-06-26T07:00Z +Cancel,262,2017,June,26,26,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113.01,0,0,Canceled,2017-01-13,Summer,2017-06-26T07:00Z +Cancel,319,2017,June,26,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,71.29,0,1,Canceled,2017-02-15,Summer,2017-06-26T07:00Z +Cancel,319,2017,June,26,26,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,100.91,0,1,Canceled,2017-02-15,Summer,2017-06-26T07:00Z +Cancel,48,2017,June,26,26,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 531, NULL,0,Transient,162.57,0,2,Canceled,2017-06-26,Summer,2017-06-26T07:00Z +Cancel,296,2017,June,26,26,2,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,187.53,0,0,Canceled,2017-06-05,Summer,2017-06-26T07:00Z +Cancel,274,2017,June,26,26,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97.46,0,1,Canceled,2016-09-28,Summer,2017-06-26T07:00Z +Cancel,127,2017,June,26,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125.71,0,1,Canceled,2017-06-13,Summer,2017-06-26T07:00Z +Cancel,336,2017,June,26,26,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105.13,0,1,Canceled,2016-11-17,Summer,2017-06-26T07:00Z +Cancel,48,2017,June,26,26,3,7,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-26T07:00Z +Cancel,188,2017,June,26,26,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2016-12-20,Summer,2017-06-26T07:00Z +Cancel,2,2017,June,26,27,0,1,2,1,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-06-27,Summer,2017-06-27T07:00Z +Cancel,2,2017,June,26,27,0,1,2,1,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-06-27,Summer,2017-06-27T07:00Z +Cancel,130,2017,June,26,27,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2017-04-23,Summer,2017-06-27T07:00Z +Cancel,183,2017,June,26,27,0,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,104.1,0,0,Canceled,2017-01-05,Summer,2017-06-27T07:00Z +Cancel,104,2017,June,26,27,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,121,0,1,Canceled,2017-06-20,Summer,2017-06-27T07:00Z +Cancel,167,2017,June,26,27,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2017-06-22,Summer,2017-06-27T07:00Z +Cancel,145,2017,June,26,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Canceled,2017-02-02,Summer,2017-06-27T07:00Z +Cancel,179,2017,June,26,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2017-05-30,Summer,2017-06-27T07:00Z +Cancel,309,2017,June,26,27,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 147, NULL,0,Transient,91.67,0,0,Canceled,2016-09-07,Summer,2017-06-27T07:00Z +Cancel,310,2017,June,26,27,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,155.43,0,1,Canceled,2016-12-08,Summer,2017-06-27T07:00Z +Cancel,218,2017,June,26,27,2,8,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2016-11-21,Summer,2017-06-27T07:00Z +Cancel,310,2017,June,26,27,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,160.43,0,0,Canceled,2016-09-15,Summer,2017-06-27T07:00Z +Cancel,122,2017,June,26,28,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,0,Canceled,2017-03-04,Summer,2017-06-28T07:00Z +Cancel,118,2017,June,26,28,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,160,0,1,Canceled,2017-03-07,Summer,2017-06-28T07:00Z +Cancel,0,2017,June,26,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,93,0,2,Canceled,2017-06-28,Summer,2017-06-28T07:00Z +Cancel,267,2017,June,26,28,0,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,112.22,0,0,Canceled,2017-03-13,Summer,2017-06-28T07:00Z +Cancel,139,2017,June,26,28,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,111.6,0,0,Canceled,2017-05-29,Summer,2017-06-28T07:00Z +Cancel,160,2017,June,26,28,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,102.24,0,0,Canceled,2017-01-27,Summer,2017-06-28T07:00Z +Cancel,50,2017,June,26,28,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-28T07:00Z +Cancel,219,2017,June,26,28,2,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-06-15,Summer,2017-06-28T07:00Z +Cancel,339,2017,June,26,28,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,0,1,Canceled,2017-01-10,Summer,2017-06-28T07:00Z +Cancel,154,2017,June,26,28,2,7,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,196,0,0,Canceled,2017-01-25,Summer,2017-06-28T07:00Z +Cancel,178,2017,June,26,28,2,8,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,106.56,0,0,Canceled,2017-02-06,Summer,2017-06-28T07:00Z +Cancel,282,2017,June,26,28,4,10,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,160.17,0,0,Canceled,2016-09-19,Summer,2017-06-28T07:00Z +Cancel,22,2017,June,26,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Canceled,2017-06-28,Summer,2017-06-29T07:00Z +Cancel,114,2017,June,26,29,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-05-27,Summer,2017-06-29T07:00Z +Cancel,333,2017,June,26,29,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.5,0,2,Canceled,2017-01-16,Summer,2017-06-29T07:00Z +Cancel,213,2017,June,26,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,76.24,0,1,Canceled,2017-02-21,Summer,2017-06-29T07:00Z +Cancel,196,2017,June,26,29,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-02-28,Summer,2017-06-29T07:00Z +Cancel,201,2017,June,26,29,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-12-15,Summer,2017-06-29T07:00Z +Cancel,201,2017,June,26,29,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,110,0,1,Canceled,2016-12-15,Summer,2017-06-29T07:00Z +Cancel,137,2017,June,26,29,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-02-15,Summer,2017-06-29T07:00Z +Cancel,319,2017,June,26,29,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,97.71,0,0,Canceled,2016-08-16,Summer,2017-06-29T07:00Z +Cancel,317,2017,June,26,29,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,130.25,0,0,Canceled,2017-01-05,Summer,2017-06-29T07:00Z +Cancel,51,2017,June,26,29,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-29T07:00Z +Cancel,263,2017,June,26,29,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115.74,0,0,Canceled,2017-04-21,Summer,2017-06-29T07:00Z +Cancel,263,2017,June,26,29,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115.74,0,0,Canceled,2017-04-21,Summer,2017-06-29T07:00Z +Cancel,248,2017,June,26,30,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,101.25,0,1,Canceled,2017-06-29,Summer,2017-06-30T07:00Z +Cancel,17,2017,June,26,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,124,0,0,Canceled,2017-06-14,Summer,2017-06-30T07:00Z +Cancel,21,2017,June,26,30,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,136,0,0,Canceled,2017-06-09,Summer,2017-06-30T07:00Z +Cancel,17,2017,June,26,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,124,0,0,Canceled,2017-06-14,Summer,2017-06-30T07:00Z +Cancel,106,2017,June,26,30,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-04-03,Summer,2017-06-30T07:00Z +Cancel,17,2017,June,26,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,2,Canceled,2017-06-14,Summer,2017-06-30T07:00Z +Cancel,0,2017,June,26,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,144,0,0,No-Show,2017-06-30,Summer,2017-06-30T07:00Z +Cancel,60,2017,June,26,30,0,2,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,211,0,1,Canceled,2017-05-10,Summer,2017-06-30T07:00Z +Cancel,151,2017,June,26,30,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Canceled,2017-01-30,Summer,2017-06-30T07:00Z +Cancel,109,2017,June,26,30,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-05-31,Summer,2017-06-30T07:00Z +Cancel,248,2017,June,26,30,0,2,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient-Party,131.25,0,1,Canceled,2017-06-29,Summer,2017-06-30T07:00Z +Cancel,175,2017,June,26,30,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2017-04-19,Summer,2017-06-30T07:00Z +Cancel,51,2017,June,26,30,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-30T07:00Z +Cancel,51,2017,June,26,30,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-30T07:00Z +Cancel,51,2017,June,26,30,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,76,0,0,Canceled,2017-05-12,Summer,2017-06-30T07:00Z +Cancel,264,2017,June,26,30,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118.62,0,0,Canceled,2016-10-12,Summer,2017-06-30T07:00Z +Cancel,202,2017,June,26,30,2,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-05-22,Summer,2017-06-30T07:00Z +Cancel,264,2017,June,26,30,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118.62,0,0,Canceled,2016-10-12,Summer,2017-06-30T07:00Z +Cancel,162,2017,June,26,30,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-05-19,Summer,2017-06-30T07:00Z +Cancel,215,2017,June,26,30,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2016-11-28,Summer,2017-06-30T07:00Z +Cancel,353,2017,June,26,30,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,110.74,0,0,Canceled,2017-02-09,Summer,2017-06-30T07:00Z +Cancel,204,2017,June,26,30,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2016-12-19,Summer,2017-06-30T07:00Z +Cancel,51,2017,June,26,30,3,7,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,93,0,0,Canceled,2017-05-12,Summer,2017-06-30T07:00Z +Cancel,130,2017,July,26,1,2,1,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 181, NULL,0,Transient-Party,138.4,0,1,Canceled,2017-03-10,Summer,2017-07-01T07:00Z +Cancel,130,2017,July,26,1,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient-Party,120,0,1,Canceled,2017-03-10,Summer,2017-07-01T07:00Z +Cancel,303,2017,July,26,1,2,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,2,Canceled,2016-09-03,Summer,2017-07-01T07:00Z +Cancel,59,2017,July,26,1,2,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,250,0,0,Canceled,2017-05-06,Summer,2017-07-01T07:00Z +Cancel,303,2017,July,26,1,2,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,2,Canceled,2016-09-03,Summer,2017-07-01T07:00Z +Cancel,130,2017,July,26,1,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient-Party,120,0,1,Canceled,2017-03-10,Summer,2017-07-01T07:00Z +Cancel,130,2017,July,26,1,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient-Party,120,0,1,Canceled,2017-03-10,Summer,2017-07-01T07:00Z +Cancel,110,2017,July,26,1,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165,0,1,Canceled,2017-03-19,Summer,2017-07-01T07:00Z +Cancel,224,2017,July,26,1,2,2,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,185,0,0,Canceled,2017-02-03,Summer,2017-07-01T07:00Z +Cancel,110,2017,July,26,1,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165,0,1,Canceled,2017-03-19,Summer,2017-07-01T07:00Z +Cancel,127,2017,July,26,1,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,178,0,1,Canceled,2017-03-16,Summer,2017-07-01T07:00Z +Cancel,146,2017,July,26,1,2,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,0,0,Canceled,2017-02-06,Summer,2017-07-01T07:00Z +Cancel,145,2017,July,26,1,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,162.5,0,1,Canceled,2017-06-26,Summer,2017-07-01T07:00Z +Cancel,218,2017,July,26,1,2,3,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,138.64,0,0,Canceled,2017-06-27,Summer,2017-07-01T07:00Z +Cancel,305,2017,July,26,1,2,4,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,1,Canceled,2016-09-04,Summer,2017-07-01T07:00Z +Cancel,198,2017,July,26,1,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,3,Canceled,2016-12-17,Summer,2017-07-01T07:00Z +Cancel,197,2017,July,26,1,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,127.8,0,2,Canceled,2017-01-06,Summer,2017-07-01T07:00Z +Cancel,305,2017,July,26,1,2,4,3,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,1,Canceled,2016-09-04,Summer,2017-07-01T07:00Z +Cancel,145,2017,July,26,1,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,188.5,0,2,Canceled,2017-06-26,Summer,2017-07-01T07:00Z +Cancel,146,2017,July,26,1,2,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,243,0,0,Canceled,2017-02-06,Summer,2017-07-01T07:00Z +Cancel,305,2017,July,26,1,2,4,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,179,0,1,Canceled,2016-09-04,Summer,2017-07-01T07:00Z +Cancel,164,2017,July,26,1,2,5,2,1,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,141.12,0,0,Canceled,2017-01-27,Summer,2017-07-01T07:00Z +Cancel,259,2017,July,26,1,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,158.5,0,0,Canceled,2016-10-16,Summer,2017-07-01T07:00Z +Cancel,59,2017,July,26,1,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,178.31,0,1,Canceled,2017-05-03,Summer,2017-07-01T07:00Z +Cancel,334,2017,July,26,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,107.1,0,1,Canceled,2017-03-06,Summer,2017-07-01T07:00Z +Cancel,155,2017,July,26,1,2,5,2,1,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,146.93,0,0,Canceled,2017-05-17,Summer,2017-07-01T07:00Z +Cancel,117,2017,July,26,1,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,217.5,0,2,Canceled,2017-03-07,Summer,2017-07-01T07:00Z +Cancel,209,2017,July,26,1,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,2,Canceled,2016-12-11,Summer,2017-07-01T07:00Z +Cancel,334,2017,July,26,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,107.1,0,0,Canceled,2016-08-15,Summer,2017-07-01T07:00Z +Cancel,243,2017,July,26,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,126,0,1,Canceled,2017-05-02,Summer,2017-07-01T07:00Z +Cancel,303,2017,July,26,1,3,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.1,0,3,Canceled,2017-01-03,Summer,2017-07-01T07:00Z +Cancel,184,2017,July,26,1,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Canceled,2017-01-09,Summer,2017-07-01T07:00Z +Cancel,52,2017,July,26,1,4,6,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-01T07:00Z +Cancel,141,2017,July,26,1,4,7,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136.82,0,1,Canceled,2017-02-18,Summer,2017-07-01T07:00Z +Cancel,325,2017,July,26,1,4,7,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,130.36,0,1,Canceled,2016-10-27,Summer,2017-07-01T07:00Z +Cancel,306,2017,July,26,1,4,10,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.25,0,2,Canceled,2017-01-08,Summer,2017-07-01T07:00Z +Cancel,248,2017,July,26,1,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.2,0,0,Canceled,2016-11-01,Summer,2017-07-01T07:00Z +Cancel,183,2017,July,26,1,4,10,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,204.29,0,1,Canceled,2017-01-03,Summer,2017-07-01T07:00Z +Cancel,110,2017,July,27,2,2,0,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-06-18,Summer,2017-07-02T07:00Z +Cancel,109,2017,July,27,2,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,171,0,1,Canceled,2017-06-20,Summer,2017-07-02T07:00Z +Cancel,171,2017,July,27,2,2,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-01-12,Summer,2017-07-02T07:00Z +Cancel,104,2017,July,27,2,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,165,0,1,Canceled,2017-05-20,Summer,2017-07-02T07:00Z +Cancel,146,2017,July,27,2,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,78,0,0,Canceled,2017-02-06,Summer,2017-07-02T07:00Z +Cancel,159,2017,July,27,2,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,70.2,0,0,Canceled,2017-01-24,Summer,2017-07-02T07:00Z +Cancel,95,2017,July,27,2,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2017-05-10,Summer,2017-07-02T07:00Z +Cancel,143,2017,July,27,2,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Canceled,2017-02-10,Summer,2017-07-02T07:00Z +Cancel,100,2017,July,27,2,2,4,1,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,190,0,2,Canceled,2017-03-26,Summer,2017-07-02T07:00Z +Cancel,110,2017,July,27,2,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,238,0,1,Canceled,2017-03-14,Summer,2017-07-02T07:00Z +Cancel,219,2017,July,27,2,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,126,0,1,Canceled,2017-03-13,Summer,2017-07-02T07:00Z +Cancel,268,2017,July,27,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,122.53,0,0,Canceled,2016-10-10,Summer,2017-07-02T07:00Z +Cancel,177,2017,July,27,2,2,5,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,182.86,0,0,Canceled,2017-01-11,Summer,2017-07-02T07:00Z +Cancel,259,2017,July,27,2,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,151.33,0,0,Canceled,2016-10-16,Summer,2017-07-02T07:00Z +Cancel,280,2017,July,27,2,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,176.86,0,0,Canceled,2016-10-06,Summer,2017-07-02T07:00Z +Cancel,57,2017,July,27,2,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,300.86,0,0,Canceled,2017-05-06,Summer,2017-07-02T07:00Z +Cancel,174,2017,July,27,2,2,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,182.86,0,1,Canceled,2017-03-21,Summer,2017-07-02T07:00Z +Cancel,188,2017,July,27,2,4,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,203.11,0,1,Canceled,2017-05-10,Summer,2017-07-02T07:00Z +Cancel,320,2017,July,27,2,4,7,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,150.22,0,1,Canceled,2016-10-27,Summer,2017-07-02T07:00Z +Cancel,275,2017,July,27,2,4,8,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,162.68,0,3,Canceled,2017-01-17,Summer,2017-07-02T07:00Z +Cancel,179,2017,July,27,2,4,8,2,0,0,BB,LTU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,111,0,0,Canceled,2017-01-13,Summer,2017-07-02T07:00Z +Cancel,53,2017,July,27,2,4,8,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-02T07:00Z +Cancel,53,2017,July,27,2,4,10,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,120,0,1,Canceled,2017-06-08,Summer,2017-07-02T07:00Z +Cancel,133,2017,July,27,3,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-05-08,Summer,2017-07-03T07:00Z +Cancel,102,2017,July,27,3,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2017-04-17,Summer,2017-07-03T07:00Z +Cancel,159,2017,July,27,3,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,0,Canceled,2017-05-16,Summer,2017-07-03T07:00Z +Cancel,103,2017,July,27,3,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,2,Canceled,2017-04-23,Summer,2017-07-03T07:00Z +Cancel,144,2017,July,27,3,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,78,0,0,Canceled,2017-02-09,Summer,2017-07-03T07:00Z +Cancel,178,2017,July,27,3,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155.83,0,0,Canceled,2017-03-19,Summer,2017-07-03T07:00Z +Cancel,146,2017,July,27,3,1,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,206.33,0,1,Canceled,2017-02-16,Summer,2017-07-03T07:00Z +Cancel,150,2017,July,27,3,2,5,2,2,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,206.57,0,2,Canceled,2017-04-23,Summer,2017-07-03T07:00Z +Cancel,157,2017,July,27,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,158.57,0,0,Canceled,2017-01-27,Summer,2017-07-03T07:00Z +Cancel,171,2017,July,27,3,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,140,0,1,Canceled,2017-04-06,Summer,2017-07-03T07:00Z +Cancel,190,2017,July,27,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,106.2,0,0,Canceled,2017-06-21,Summer,2017-07-03T07:00Z +Cancel,169,2017,July,27,3,2,5,2,1,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,178.13,0,0,Canceled,2017-01-15,Summer,2017-07-03T07:00Z +Cancel,262,2017,July,27,3,2,5,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.09,0,2,Canceled,2016-12-07,Summer,2017-07-03T07:00Z +Cancel,280,2017,July,27,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.8,0,0,Canceled,2017-02-27,Summer,2017-07-03T07:00Z +Cancel,54,2017,July,27,3,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-03T07:00Z +Cancel,186,2017,July,27,3,2,5,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,238.71,0,0,Canceled,2017-01-22,Summer,2017-07-03T07:00Z +Cancel,251,2017,July,27,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,95.4,0,0,Canceled,2017-05-03,Summer,2017-07-03T07:00Z +Cancel,262,2017,July,27,3,2,5,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.09,0,2,Canceled,2016-12-07,Summer,2017-07-03T07:00Z +Cancel,177,2017,July,27,3,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,137.57,0,0,Canceled,2017-01-24,Summer,2017-07-03T07:00Z +Cancel,171,2017,July,27,3,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,185.71,0,0,Canceled,2017-01-13,Summer,2017-07-03T07:00Z +Cancel,150,2017,July,27,3,2,5,2,2,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,243.71,0,0,Canceled,2017-02-19,Summer,2017-07-03T07:00Z +Cancel,280,2017,July,27,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.8,0,0,Canceled,2017-02-27,Summer,2017-07-03T07:00Z +Cancel,300,2017,July,27,3,3,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,166.92,0,1,Canceled,2016-09-07,Summer,2017-07-03T07:00Z +Cancel,47,2017,July,27,3,3,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180.67,0,2,Canceled,2017-06-12,Summer,2017-07-03T07:00Z +Cancel,317,2017,July,27,3,3,7,3,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,184,0,0,Canceled,2016-08-29,Summer,2017-07-03T07:00Z +Cancel,347,2017,July,27,3,3,7,2,1,0,HB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,232,0,0,Canceled,2016-07-21,Summer,2017-07-03T07:00Z +Cancel,268,2017,July,27,3,3,8,3,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,208.73,0,0,Canceled,2016-10-08,Summer,2017-07-03T07:00Z +Cancel,277,2017,July,27,3,4,10,2,2,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259.86,0,0,Canceled,2016-10-01,Summer,2017-07-03T07:00Z +Cancel,347,2017,July,27,3,3,7,3,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,184,0,0,Canceled,2016-08-19,Summer,2017-07-03T07:00Z +Cancel,269,2017,July,27,3,3,7,3,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,204.7,0,0,Canceled,2016-10-07,Summer,2017-07-03T07:00Z +Cancel,6,2017,July,27,4,0,1,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,0,0,2,Canceled,2017-06-29,Summer,2017-07-04T07:00Z +Cancel,320,2017,July,27,4,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,0,Canceled,2016-08-18,Summer,2017-07-04T07:00Z +Cancel,153,2017,July,27,4,0,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,242,0,0,Canceled,2017-02-02,Summer,2017-07-04T07:00Z +Cancel,237,2017,July,27,4,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,163.43,0,1,Canceled,2016-11-29,Summer,2017-07-04T07:00Z +Cancel,324,2017,July,27,4,2,5,3,1,0,HB,IRL,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,211.03,0,0,Canceled,2016-08-16,Summer,2017-07-04T07:00Z +Cancel,315,2017,July,27,4,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,171.14,0,0,Canceled,2016-08-23,Summer,2017-07-04T07:00Z +Cancel,131,2017,July,27,4,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,223.57,0,0,Canceled,2017-03-03,Summer,2017-07-04T07:00Z +Cancel,55,2017,July,27,4,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-04T07:00Z +Cancel,271,2017,July,27,4,2,5,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.81,0,2,Canceled,2017-01-21,Summer,2017-07-04T07:00Z +Cancel,324,2017,July,27,4,2,5,2,2,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219.14,0,1,Canceled,2017-04-30,Summer,2017-07-04T07:00Z +Cancel,236,2017,July,27,4,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,199.86,0,0,Canceled,2016-12-16,Summer,2017-07-04T07:00Z +Cancel,271,2017,July,27,4,2,5,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.81,0,2,Canceled,2017-01-21,Summer,2017-07-04T07:00Z +Cancel,217,2017,July,27,4,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,162.86,0,1,Canceled,2017-02-10,Summer,2017-07-04T07:00Z +Cancel,269,2017,July,27,4,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,105.47,0,0,Canceled,2016-10-08,Summer,2017-07-04T07:00Z +Cancel,270,2017,July,27,4,2,6,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105.47,0,2,Canceled,2016-10-11,Summer,2017-07-04T07:00Z +Cancel,55,2017,July,27,4,2,8,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,113,0,0,Canceled,2017-05-12,Summer,2017-07-04T07:00Z +Cancel,55,2017,July,27,4,2,8,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-04T07:00Z +Cancel,55,2017,July,27,4,2,8,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-04T07:00Z +Cancel,335,2017,July,27,4,4,10,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,192.57,0,0,Canceled,2016-08-03,Summer,2017-07-04T07:00Z +Cancel,8,2017,July,27,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 355,0,Transient,135,0,0,Canceled,2017-07-04,Summer,2017-07-05T07:00Z +Cancel,8,2017,July,27,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 254,0,Transient,135,0,0,Canceled,2017-06-28,Summer,2017-07-05T07:00Z +Cancel,8,2017,July,27,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 355,0,Transient,135,0,0,Canceled,2017-07-04,Summer,2017-07-05T07:00Z +Cancel,345,2017,July,27,5,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107.1,0,2,Canceled,2016-10-03,Summer,2017-07-05T07:00Z +Cancel,164,2017,July,27,5,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,0,Canceled,2017-03-16,Summer,2017-07-05T07:00Z +Cancel,14,2017,July,27,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,128,0,0,Canceled,2017-06-21,Summer,2017-07-05T07:00Z +Cancel,168,2017,July,27,5,1,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,241,0,0,Canceled,2017-05-13,Summer,2017-07-05T07:00Z +Cancel,14,2017,July,27,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,145.14,0,0,Canceled,2017-06-21,Summer,2017-07-05T07:00Z +Cancel,334,2017,July,27,5,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,123.38,0,0,Canceled,2017-06-26,Summer,2017-07-05T07:00Z +Cancel,352,2017,July,27,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,193.5,0,0,Canceled,2016-08-12,Summer,2017-07-05T07:00Z +Cancel,251,2017,July,27,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.25,0,2,Canceled,2017-01-12,Summer,2017-07-05T07:00Z +Cancel,158,2017,July,27,5,2,5,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,179.71,0,0,Canceled,2017-05-23,Summer,2017-07-05T07:00Z +Cancel,183,2017,July,27,5,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,148.5,0,1,Canceled,2017-04-08,Summer,2017-07-05T07:00Z +Cancel,168,2017,July,27,5,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,165.6,0,0,Canceled,2017-04-08,Summer,2017-07-05T07:00Z +Cancel,65,2017,July,27,5,2,8,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,264,0,0,Canceled,2017-05-06,Summer,2017-07-05T07:00Z +Cancel,338,2017,July,27,6,0,1,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2016-08-27,Summer,2017-07-06T07:00Z +Cancel,168,2017,July,27,6,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142.67,0,2,Canceled,2017-05-18,Summer,2017-07-06T07:00Z +Cancel,171,2017,July,27,6,0,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,156.67,0,1,Canceled,2017-04-23,Summer,2017-07-06T07:00Z +Cancel,57,2017,July,27,6,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,113,0,0,Canceled,2017-05-12,Summer,2017-07-06T07:00Z +Cancel,130,2017,July,27,6,1,3,1,2,0,HB,NOR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,247,0,0,Canceled,2017-06-28,Summer,2017-07-06T07:00Z +Cancel,86,2017,July,27,6,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,187.5,0,1,Canceled,2017-04-27,Summer,2017-07-06T07:00Z +Cancel,210,2017,July,27,6,2,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2017-05-17,Summer,2017-07-06T07:00Z +Cancel,210,2017,July,27,6,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,0,0,Canceled,2016-12-08,Summer,2017-07-06T07:00Z +Cancel,210,2017,July,27,6,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,0,0,Canceled,2016-12-08,Summer,2017-07-06T07:00Z +Cancel,210,2017,July,27,6,2,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2017-05-17,Summer,2017-07-06T07:00Z +Cancel,326,2017,July,27,6,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,169.89,0,2,Canceled,2016-11-07,Summer,2017-07-06T07:00Z +Cancel,339,2017,July,27,6,4,10,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125.52,0,0,Canceled,2016-08-01,Summer,2017-07-06T07:00Z +Cancel,335,2017,July,27,6,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,108,0,1,Canceled,2017-02-02,Summer,2017-07-06T07:00Z +Cancel,140,2017,July,27,6,4,8,2,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,188.42,0,0,Canceled,2017-03-20,Summer,2017-07-06T07:00Z +Cancel,288,2017,July,27,7,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,133.2,0,0,Canceled,2017-04-17,Summer,2017-07-07T07:00Z +Cancel,150,2017,July,27,7,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,159.33,0,0,Canceled,2017-02-08,Summer,2017-07-07T07:00Z +Cancel,113,2017,July,27,7,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,190,0,0,Canceled,2017-04-02,Summer,2017-07-07T07:00Z +Cancel,11,2017,July,27,7,2,2,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,173.75,0,1,Canceled,2017-06-27,Summer,2017-07-07T07:00Z +Cancel,58,2017,July,27,7,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-07T07:00Z +Cancel,58,2017,July,27,7,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-07T07:00Z +Cancel,179,2017,July,27,7,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,1,Canceled,2017-06-08,Summer,2017-07-07T07:00Z +Cancel,184,2017,July,27,7,2,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,156,0,1,Canceled,2017-01-11,Summer,2017-07-07T07:00Z +Cancel,58,2017,July,27,7,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-07T07:00Z +Cancel,227,2017,July,27,7,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.86,0,0,Canceled,2016-11-25,Summer,2017-07-07T07:00Z +Cancel,227,2017,July,27,7,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.86,0,0,Canceled,2016-11-25,Summer,2017-07-07T07:00Z +Cancel,51,2017,July,27,7,1,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,241,0,0,Canceled,2017-06-19,Summer,2017-07-07T07:00Z +Cancel,313,2017,July,27,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,119.08,0,2,Canceled,2016-10-09,Summer,2017-07-07T07:00Z +Cancel,58,2017,July,27,7,3,7,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-07T07:00Z +Cancel,19,2017,July,27,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2017-06-21,Summer,2017-07-08T07:00Z +Cancel,9,2017,July,27,8,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-07-08,Summer,2017-07-08T07:00Z +Cancel,3,2017,July,27,8,2,2,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,265,0,1,Canceled,2017-07-05,Summer,2017-07-08T07:00Z +Cancel,135,2017,July,27,8,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-02-23,Summer,2017-07-08T07:00Z +Cancel,135,2017,July,27,8,2,3,2,0,0,BB,RUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,155,0,0,Canceled,2017-05-10,Summer,2017-07-08T07:00Z +Cancel,186,2017,July,27,8,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,274.67,0,0,Canceled,2017-02-22,Summer,2017-07-08T07:00Z +Cancel,152,2017,July,27,8,2,5,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,165.71,0,2,Canceled,2017-02-27,Summer,2017-07-08T07:00Z +Cancel,209,2017,July,27,8,2,5,2,1,0,BB,ROU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,127.24,0,0,Canceled,2016-12-12,Summer,2017-07-08T07:00Z +Cancel,264,2017,July,27,8,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,2,Canceled,2016-12-19,Summer,2017-07-08T07:00Z +Cancel,150,2017,July,27,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,152.71,0,0,Canceled,2017-05-16,Summer,2017-07-08T07:00Z +Cancel,59,2017,July,27,8,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,0,Canceled,2017-05-12,Summer,2017-07-08T07:00Z +Cancel,109,2017,July,27,8,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,197.5,0,1,Canceled,2017-03-23,Summer,2017-07-08T07:00Z +Cancel,162,2017,July,27,8,3,6,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,204,0,0,Canceled,2017-01-31,Summer,2017-07-08T07:00Z +Cancel,162,2017,July,27,8,3,6,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,204,0,0,Canceled,2017-01-31,Summer,2017-07-08T07:00Z +Cancel,192,2017,July,27,8,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,129.7,0,0,Canceled,2017-04-17,Summer,2017-07-08T07:00Z +Cancel,154,2017,July,27,8,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,176.18,0,1,Canceled,2017-06-04,Summer,2017-07-08T07:00Z +Cancel,8,2017,July,28,9,1,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,210,0,0,Canceled,2017-07-03,Summer,2017-07-09T07:00Z +Cancel,256,2017,July,28,9,2,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,172.8,0,1,Canceled,2016-11-19,Summer,2017-07-09T07:00Z +Cancel,154,2017,July,28,9,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140,0,0,Canceled,2017-06-22,Summer,2017-07-09T07:00Z +Cancel,61,2017,July,28,9,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,270,0,1,Canceled,2017-05-12,Summer,2017-07-09T07:00Z +Cancel,258,2017,July,28,9,2,0,3,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,239,0,1,Canceled,2016-10-30,Summer,2017-07-09T07:00Z +Cancel,33,2017,July,28,9,2,1,2,2,0,HB,SWE,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,303,0,0,Canceled,2017-07-03,Summer,2017-07-09T07:00Z +Cancel,151,2017,July,28,9,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,2,Canceled,2017-03-08,Summer,2017-07-09T07:00Z +Cancel,349,2017,July,28,9,2,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,178.75,0,0,Canceled,2016-12-28,Summer,2017-07-09T07:00Z +Cancel,157,2017,July,28,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126.67,0,1,Canceled,2017-06-27,Summer,2017-07-09T07:00Z +Cancel,216,2017,July,28,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,164.29,0,0,Canceled,2017-01-04,Summer,2017-07-09T07:00Z +Cancel,60,2017,July,28,9,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,92,0,2,Canceled,2017-05-12,Summer,2017-07-09T07:00Z +Cancel,60,2017,July,28,9,2,5,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,120,0,0,Canceled,2017-06-09,Summer,2017-07-09T07:00Z +Cancel,315,2017,July,28,9,3,5,3,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,242.75,0,0,Canceled,2016-08-29,Summer,2017-07-09T07:00Z +Cancel,190,2017,July,28,9,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.98,0,1,Canceled,2017-01-11,Summer,2017-07-09T07:00Z +Cancel,4,2017,July,28,10,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2017-07-07,Summer,2017-07-10T07:00Z +Cancel,10,2017,July,28,10,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,145,0,0,Canceled,2017-07-07,Summer,2017-07-10T07:00Z +Cancel,10,2017,July,28,10,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,145,0,0,Canceled,2017-07-07,Summer,2017-07-10T07:00Z +Cancel,112,2017,July,28,10,1,2,2,0,0,HB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,1,Canceled,2017-04-21,Summer,2017-07-10T07:00Z +Cancel,117,2017,July,28,10,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,2,Canceled,2017-03-30,Summer,2017-07-10T07:00Z +Cancel,149,2017,July,28,10,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,1,Canceled,2017-06-29,Summer,2017-07-10T07:00Z +Cancel,9,2017,July,28,10,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,175,0,0,Canceled,2017-07-01,Summer,2017-07-10T07:00Z +Cancel,148,2017,July,28,10,1,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-06-22,Summer,2017-07-10T07:00Z +Cancel,217,2017,July,28,10,1,3,3,1,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,293,0,0,Canceled,2017-05-06,Summer,2017-07-10T07:00Z +Cancel,125,2017,July,28,10,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,148.5,0,0,Canceled,2017-03-16,Summer,2017-07-10T07:00Z +Cancel,156,2017,July,28,10,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Canceled,2017-06-29,Summer,2017-07-10T07:00Z +Cancel,76,2017,July,28,10,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,1,Canceled,2017-06-30,Summer,2017-07-10T07:00Z +Cancel,76,2017,July,28,10,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,222,0,1,Canceled,2017-06-30,Summer,2017-07-10T07:00Z +Cancel,289,2017,July,28,10,1,4,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,0,Canceled,2017-05-22,Summer,2017-07-10T07:00Z +Cancel,163,2017,July,28,10,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,0,Canceled,2017-01-30,Summer,2017-07-10T07:00Z +Cancel,140,2017,July,28,10,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,183.83,0,1,Canceled,2017-03-14,Summer,2017-07-10T07:00Z +Cancel,114,2017,July,28,10,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,232,0,2,Canceled,2017-03-20,Summer,2017-07-10T07:00Z +Cancel,48,2017,July,28,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,169.6,0,0,Canceled,2017-05-24,Summer,2017-07-10T07:00Z +Cancel,153,2017,July,28,10,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,137.14,0,1,Canceled,2017-05-22,Summer,2017-07-10T07:00Z +Cancel,153,2017,July,28,10,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,130.05,0,0,Canceled,2017-02-16,Summer,2017-07-10T07:00Z +Cancel,137,2017,July,28,10,3,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,186.84,0,0,Canceled,2017-03-01,Summer,2017-07-10T07:00Z +Cancel,5,2017,July,28,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,1,Canceled,2017-07-06,Summer,2017-07-11T07:00Z +Cancel,1,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 543,0,Transient,119.7,0,3,Canceled,2017-07-11,Summer,2017-07-11T07:00Z +Cancel,3,2017,July,28,11,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,145,0,1,Canceled,2017-07-08,Summer,2017-07-11T07:00Z +Cancel,21,2017,July,28,11,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 269,0,Transient,135,0,0,Canceled,2017-06-20,Summer,2017-07-11T07:00Z +Cancel,95,2017,July,28,11,0,3,2,0,0,BB,HKG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2017-04-29,Summer,2017-07-11T07:00Z +Cancel,47,2017,July,28,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2017-06-20,Summer,2017-07-11T07:00Z +Cancel,47,2017,July,28,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,0,Canceled,2017-05-25,Summer,2017-07-11T07:00Z +Cancel,47,2017,July,28,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2017-05-25,Summer,2017-07-11T07:00Z +Cancel,48,2017,July,28,11,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180.67,0,0,Canceled,2017-05-25,Summer,2017-07-11T07:00Z +Cancel,47,2017,July,28,11,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,0,Canceled,2017-05-25,Summer,2017-07-11T07:00Z +Cancel,73,2017,July,28,11,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2017-05-03,Summer,2017-07-11T07:00Z +Cancel,151,2017,July,28,11,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Canceled,2017-04-07,Summer,2017-07-11T07:00Z +Cancel,24,2017,July,28,11,0,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-06-21,Summer,2017-07-11T07:00Z +Cancel,23,2017,July,28,11,0,5,2,0,0,FB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,275,0,1,Canceled,2017-06-20,Summer,2017-07-11T07:00Z +Cancel,110,2017,July,28,11,0,5,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,1,Canceled,2017-03-28,Summer,2017-07-11T07:00Z +Cancel,110,2017,July,28,11,0,5,2,1,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-03-28,Summer,2017-07-11T07:00Z +Cancel,110,2017,July,28,11,0,5,2,1,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-03-28,Summer,2017-07-11T07:00Z +Cancel,62,2017,July,28,11,1,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,146,0,0,Canceled,2017-05-12,Summer,2017-07-11T07:00Z +Cancel,151,2017,July,28,11,2,5,2,2,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,230.86,0,0,Canceled,2017-02-11,Summer,2017-07-11T07:00Z +Cancel,62,2017,July,28,11,2,5,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,163,0,0,Canceled,2017-06-09,Summer,2017-07-11T07:00Z +Cancel,234,2017,July,28,11,2,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,2,Canceled,2017-01-11,Summer,2017-07-11T07:00Z +Cancel,346,2017,July,28,11,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165.6,0,0,Canceled,2016-07-30,Summer,2017-07-11T07:00Z +Cancel,87,2017,July,28,12,0,1,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,270,0,0,Canceled,2017-04-24,Summer,2017-07-12T07:00Z +Cancel,5,2017,July,28,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient-Party,73.95,0,0,Canceled,2017-07-11,Summer,2017-07-12T07:00Z +Cancel,32,2017,July,28,12,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-06-29,Summer,2017-07-12T07:00Z +Cancel,21,2017,July,28,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,160,0,1,Canceled,2017-06-21,Summer,2017-07-12T07:00Z +Cancel,82,2017,July,28,12,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,184,0,1,Canceled,2017-04-21,Summer,2017-07-12T07:00Z +Cancel,20,2017,July,28,12,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,2,Canceled,2017-06-29,Summer,2017-07-12T07:00Z +Cancel,16,2017,July,28,12,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,1,Transient,192.38,0,1,Canceled,2017-07-12,Summer,2017-07-12T07:00Z +Cancel,72,2017,July,28,12,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2017-05-03,Summer,2017-07-12T07:00Z +Cancel,33,2017,July,28,12,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Canceled,2017-06-16,Summer,2017-07-12T07:00Z +Cancel,89,2017,July,28,12,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,2,Canceled,2017-04-19,Summer,2017-07-12T07:00Z +Cancel,20,2017,July,28,12,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,2,Canceled,2017-06-29,Summer,2017-07-12T07:00Z +Cancel,27,2017,July,28,12,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,219.5,0,2,Canceled,2017-06-26,Summer,2017-07-12T07:00Z +Cancel,38,2017,July,28,12,0,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,207.5,0,1,Canceled,2017-06-07,Summer,2017-07-12T07:00Z +Cancel,29,2017,July,28,12,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,168.75,0,2,Canceled,2017-06-13,Summer,2017-07-12T07:00Z +Cancel,134,2017,July,28,12,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,196.25,0,0,Canceled,2017-03-08,Summer,2017-07-12T07:00Z +Cancel,20,2017,July,28,12,1,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,272,0,0,Canceled,2017-06-23,Summer,2017-07-12T07:00Z +Cancel,77,2017,July,28,12,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.75,0,0,Canceled,2017-04-26,Summer,2017-07-12T07:00Z +Cancel,51,2017,July,28,12,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,0,1,Canceled,2017-05-23,Summer,2017-07-12T07:00Z +Cancel,128,2017,July,28,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.29,0,1,Canceled,2017-03-07,Summer,2017-07-12T07:00Z +Cancel,0,2017,July,28,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Canceled,2017-07-13,Summer,2017-07-13T07:00Z +Cancel,17,2017,July,28,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,135,0,0,No-Show,2017-07-13,Summer,2017-07-13T07:00Z +Cancel,31,2017,July,28,13,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,200,0,1,Canceled,2017-06-15,Summer,2017-07-13T07:00Z +Cancel,31,2017,July,28,13,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,200,0,1,Canceled,2017-06-15,Summer,2017-07-13T07:00Z +Cancel,27,2017,July,28,13,2,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2017-06-16,Summer,2017-07-13T07:00Z +Cancel,184,2017,July,28,13,2,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,No-Show,2017-07-13,Summer,2017-07-13T07:00Z +Cancel,145,2017,July,28,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2017-02-26,Summer,2017-07-13T07:00Z +Cancel,145,2017,July,28,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2017-02-26,Summer,2017-07-13T07:00Z +Cancel,74,2017,July,28,13,2,5,2,0,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,230.3,0,0,Canceled,2017-05-07,Summer,2017-07-13T07:00Z +Cancel,201,2017,July,28,13,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,1,Canceled,2017-04-06,Summer,2017-07-13T07:00Z +Cancel,154,2017,July,28,13,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,203,0,1,Canceled,2017-07-01,Summer,2017-07-13T07:00Z +Cancel,281,2017,July,28,13,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2016-12-15,Summer,2017-07-13T07:00Z +Cancel,161,2017,July,28,13,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,113.14,0,0,Canceled,2017-02-06,Summer,2017-07-13T07:00Z +Cancel,31,2017,July,28,14,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,215,0,1,Canceled,2017-07-02,Summer,2017-07-14T07:00Z +Cancel,36,2017,July,28,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,Refundable , 242, NULL,0,Transient,180,0,1,Canceled,2017-07-10,Summer,2017-07-14T07:00Z +Cancel,95,2017,July,28,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,219,0,1,Canceled,2017-05-22,Summer,2017-07-14T07:00Z +Cancel,135,2017,July,28,14,1,2,2,2,0,BB,USA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,198.33,0,2,No-Show,2017-07-14,Summer,2017-07-14T07:00Z +Cancel,35,2017,July,28,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,1,Canceled,2017-07-03,Summer,2017-07-14T07:00Z +Cancel,35,2017,July,28,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-06-11,Summer,2017-07-14T07:00Z +Cancel,67,2017,July,28,14,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,293.33,0,0,Canceled,2017-05-29,Summer,2017-07-14T07:00Z +Cancel,66,2017,July,28,14,2,2,2,1,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,253.25,0,1,Canceled,2017-05-12,Summer,2017-07-14T07:00Z +Cancel,148,2017,July,28,14,2,3,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,311,0,1,Canceled,2017-05-27,Summer,2017-07-14T07:00Z +Cancel,169,2017,July,28,14,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.43,0,1,Canceled,2017-02-11,Summer,2017-07-14T07:00Z +Cancel,172,2017,July,28,14,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,163.53,0,2,Canceled,2017-01-25,Summer,2017-07-14T07:00Z +Cancel,21,2017,July,28,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217.71,0,1,Canceled,2017-06-23,Summer,2017-07-14T07:00Z +Cancel,172,2017,July,28,14,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,163.53,0,0,Canceled,2017-01-25,Summer,2017-07-14T07:00Z +Cancel,169,2017,July,28,14,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.43,0,1,Canceled,2017-02-11,Summer,2017-07-14T07:00Z +Cancel,123,2017,July,28,14,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,151,0,0,Canceled,2017-03-23,Summer,2017-07-14T07:00Z +Cancel,70,2017,July,28,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2017-06-23,Summer,2017-07-14T07:00Z +Cancel,242,2017,July,28,14,2,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,233.1,0,1,Canceled,2017-04-25,Summer,2017-07-14T07:00Z +Cancel,212,2017,July,28,14,3,7,2,2,0,HB,SEN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,289.6,0,0,Canceled,2017-06-14,Summer,2017-07-14T07:00Z +Cancel,283,2017,July,28,14,4,7,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,169,0,1,Canceled,2017-04-27,Summer,2017-07-14T07:00Z +Cancel,0,2017,July,28,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,155,0,1,Canceled,2017-07-15,Summer,2017-07-15T07:00Z +Cancel,0,2017,July,28,15,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,147,0,0,Canceled,2017-07-15,Summer,2017-07-15T07:00Z +Cancel,24,2017,July,28,15,1,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,2,Canceled,2017-07-11,Summer,2017-07-15T07:00Z +Cancel,59,2017,July,28,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,214,0,1,Canceled,2017-07-03,Summer,2017-07-15T07:00Z +Cancel,0,2017,July,28,15,2,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,205.33,0,1,Canceled,2017-07-15,Summer,2017-07-15T07:00Z +Cancel,0,2017,July,28,15,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,168,0,1,Canceled,2017-07-15,Summer,2017-07-15T07:00Z +Cancel,183,2017,July,28,15,2,1,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,2,Canceled,2017-01-16,Summer,2017-07-15T07:00Z +Cancel,55,2017,July,28,15,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,252,0,1,Canceled,2017-06-21,Summer,2017-07-15T07:00Z +Cancel,55,2017,July,28,15,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,252,0,0,Canceled,2017-06-21,Summer,2017-07-15T07:00Z +Cancel,253,2017,July,28,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , 240, NULL,0,Transient,188,0,0,Canceled,2016-12-28,Summer,2017-07-15T07:00Z +Cancel,122,2017,July,28,15,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,232,0,2,Canceled,2017-04-01,Summer,2017-07-15T07:00Z +Cancel,126,2017,July,28,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,2,Canceled,2017-04-23,Summer,2017-07-15T07:00Z +Cancel,109,2017,July,28,15,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2017-04-01,Summer,2017-07-15T07:00Z +Cancel,125,2017,July,28,15,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-04-03,Summer,2017-07-15T07:00Z +Cancel,158,2017,July,28,15,2,5,2,2,0,BB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,209,0,0,Canceled,2017-07-10,Summer,2017-07-15T07:00Z +Cancel,125,2017,July,28,15,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-04-03,Summer,2017-07-15T07:00Z +Cancel,126,2017,July,28,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2017-03-12,Summer,2017-07-15T07:00Z +Cancel,109,2017,July,28,15,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2017-04-01,Summer,2017-07-15T07:00Z +Cancel,123,2017,July,28,15,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,1,Canceled,2017-04-08,Summer,2017-07-15T07:00Z +Cancel,126,2017,July,28,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2017-03-12,Summer,2017-07-15T07:00Z +Cancel,126,2017,July,28,15,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,2,Canceled,2017-04-23,Summer,2017-07-15T07:00Z +Cancel,125,2017,July,28,15,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-04-03,Summer,2017-07-15T07:00Z +Cancel,167,2017,July,28,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.86,0,0,Canceled,2017-01-29,Summer,2017-07-15T07:00Z +Cancel,17,2017,July,28,15,3,6,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,234.67,0,1,Canceled,2017-06-28,Summer,2017-07-15T07:00Z +Cancel,113,2017,July,28,15,3,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,184.44,0,1,Canceled,2017-03-31,Summer,2017-07-15T07:00Z +Cancel,354,2017,July,28,15,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194.4,0,2,Canceled,2016-10-19,Summer,2017-07-15T07:00Z +Cancel,185,2017,July,28,15,4,6,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,242,0,1,Canceled,2017-05-29,Summer,2017-07-15T07:00Z +Cancel,192,2017,July,28,15,4,7,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,190.18,0,1,Canceled,2017-02-21,Summer,2017-07-15T07:00Z +Cancel,51,2017,July,29,16,2,0,1,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 75, NULL,0,Transient,0,0,2,Canceled,2017-07-14,Summer,2017-07-16T07:00Z +Cancel,137,2017,July,29,16,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,172,0,1,Canceled,2017-03-14,Summer,2017-07-16T07:00Z +Cancel,25,2017,July,29,16,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,210,0,2,Canceled,2017-07-07,Summer,2017-07-16T07:00Z +Cancel,213,2017,July,29,16,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,1,Canceled,2017-05-02,Summer,2017-07-16T07:00Z +Cancel,145,2017,July,29,16,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient,213,0,1,Canceled,2017-03-04,Summer,2017-07-16T07:00Z +Cancel,213,2017,July,29,16,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,1,Canceled,2017-05-02,Summer,2017-07-16T07:00Z +Cancel,157,2017,July,29,16,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,169.2,0,0,Canceled,2017-02-13,Summer,2017-07-16T07:00Z +Cancel,156,2017,July,29,16,2,3,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,188.65,0,0,No-Show,2017-07-16,Summer,2017-07-16T07:00Z +Cancel,333,2017,July,29,16,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,152.1,0,4,Canceled,2017-05-16,Summer,2017-07-16T07:00Z +Cancel,128,2017,July,29,16,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-03-10,Summer,2017-07-16T07:00Z +Cancel,175,2017,July,29,16,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,181.54,0,1,Canceled,2017-05-15,Summer,2017-07-16T07:00Z +Cancel,180,2017,July,29,16,2,5,2,1,0,HB,BEL,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,212.54,0,0,Canceled,2017-03-20,Summer,2017-07-16T07:00Z +Cancel,188,2017,July,29,16,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,171.71,0,0,Canceled,2017-01-09,Summer,2017-07-16T07:00Z +Cancel,181,2017,July,29,16,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,171.71,0,2,Canceled,2017-05-10,Summer,2017-07-16T07:00Z +Cancel,188,2017,July,29,16,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,154.54,0,0,Canceled,2017-01-17,Summer,2017-07-16T07:00Z +Cancel,170,2017,July,29,16,2,5,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,154.29,0,0,Canceled,2017-05-25,Summer,2017-07-16T07:00Z +Cancel,188,2017,July,29,16,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,203.71,0,0,Canceled,2017-01-09,Summer,2017-07-16T07:00Z +Cancel,340,2017,July,29,16,4,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,156,0,1,Canceled,2016-08-26,Summer,2017-07-16T07:00Z +Cancel,340,2017,July,29,16,4,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,156,0,1,Canceled,2016-08-26,Summer,2017-07-16T07:00Z +Cancel,158,2017,July,29,16,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,115.2,0,0,Canceled,2017-02-09,Summer,2017-07-16T07:00Z +Cancel,184,2017,July,29,16,4,9,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,216.93,0,2,Canceled,2017-04-05,Summer,2017-07-16T07:00Z +Cancel,25,2017,July,29,17,1,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,338,0,1,Canceled,2017-07-04,Summer,2017-07-17T07:00Z +Cancel,21,2017,July,29,17,1,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-06-29,Summer,2017-07-17T07:00Z +Cancel,103,2017,July,29,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,229,0,1,Canceled,2017-04-11,Summer,2017-07-17T07:00Z +Cancel,190,2017,July,29,17,1,2,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,302,0,0,Canceled,2017-06-10,Summer,2017-07-17T07:00Z +Cancel,27,2017,July,29,17,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,174.25,0,0,Canceled,2017-06-22,Summer,2017-07-17T07:00Z +Cancel,103,2017,July,29,17,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,243.16,0,1,Canceled,2017-04-11,Summer,2017-07-17T07:00Z +Cancel,118,2017,July,29,17,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-03-24,Summer,2017-07-17T07:00Z +Cancel,209,2017,July,29,17,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,151.5,0,1,Canceled,2017-01-04,Summer,2017-07-17T07:00Z +Cancel,64,2017,July,29,17,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,201.4,0,1,Canceled,2017-06-18,Summer,2017-07-17T07:00Z +Cancel,252,2017,July,29,17,1,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2016-11-08,Summer,2017-07-17T07:00Z +Cancel,182,2017,July,29,17,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.88,0,1,Canceled,2017-03-05,Summer,2017-07-17T07:00Z +Cancel,323,2017,July,29,17,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,1,Canceled,2017-03-17,Summer,2017-07-17T07:00Z +Cancel,2,2017,July,29,17,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,209.5,0,0,Canceled,2017-07-15,Summer,2017-07-17T07:00Z +Cancel,140,2017,July,29,17,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,1,Canceled,2017-03-22,Summer,2017-07-17T07:00Z +Cancel,42,2017,July,29,17,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,342.29,0,0,Canceled,2017-06-21,Summer,2017-07-17T07:00Z +Cancel,190,2017,July,29,17,2,5,3,0,0,Undefined,CHE,Direct,Direct, 0,0,0,D,D,3,No Deposit , 250, NULL,0,Transient,274.45,0,0,Canceled,2017-07-03,Summer,2017-07-17T07:00Z +Cancel,322,2017,July,29,17,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2016-09-02,Summer,2017-07-17T07:00Z +Cancel,133,2017,July,29,17,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,165.6,0,0,Canceled,2017-03-07,Summer,2017-07-17T07:00Z +Cancel,133,2017,July,29,17,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,216.25,0,0,Canceled,2017-03-07,Summer,2017-07-17T07:00Z +Cancel,221,2017,July,29,17,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,234.56,0,2,Canceled,2017-03-20,Summer,2017-07-17T07:00Z +Cancel,390,2017,July,29,17,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104.85,0,0,Canceled,2017-03-01,Summer,2017-07-17T07:00Z +Cancel,141,2017,July,29,17,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,1,Canceled,2017-02-26,Summer,2017-07-17T07:00Z +Cancel,332,2017,July,29,17,3,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,219.5,0,0,Canceled,2017-03-16,Summer,2017-07-17T07:00Z +Cancel,211,2017,July,29,17,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.5,0,1,Canceled,2017-02-25,Summer,2017-07-17T07:00Z +Cancel,195,2017,July,29,17,3,6,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,290.67,0,0,Canceled,2017-01-09,Summer,2017-07-17T07:00Z +Cancel,159,2017,July,29,17,3,6,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-02-08,Summer,2017-07-17T07:00Z +Cancel,211,2017,July,29,17,3,6,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.5,0,2,Canceled,2017-02-25,Summer,2017-07-17T07:00Z +Cancel,194,2017,July,29,17,3,6,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,290.67,0,0,Canceled,2017-07-06,Summer,2017-07-17T07:00Z +Cancel,55,2017,July,29,17,3,8,2,0,0,BB,RUS,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,260,0,0,Canceled,2017-05-29,Summer,2017-07-17T07:00Z +Cancel,268,2017,July,29,17,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,183.59,0,1,Canceled,2017-07-14,Summer,2017-07-17T07:00Z +Cancel,240,2017,July,29,17,5,11,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.05,0,0,Canceled,2016-11-23,Summer,2017-07-17T07:00Z +Cancel,236,2017,July,29,17,5,11,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,182.92,0,0,Canceled,2017-05-06,Summer,2017-07-17T07:00Z +Cancel,253,2017,July,29,17,3,10,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186.74,0,2,Canceled,2016-11-11,Summer,2017-07-17T07:00Z +Cancel,0,2017,July,29,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,174,0,1,Canceled,2017-07-18,Summer,2017-07-18T07:00Z +Cancel,7,2017,July,29,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,255,0,0,Canceled,2017-07-12,Summer,2017-07-18T07:00Z +Cancel,163,2017,July,29,18,0,1,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,0,1,Canceled,2017-03-12,Summer,2017-07-18T07:00Z +Cancel,1,2017,July,29,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,174,0,0,Canceled,2017-07-17,Summer,2017-07-18T07:00Z +Cancel,163,2017,July,29,18,0,1,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2017-03-12,Summer,2017-07-18T07:00Z +Cancel,227,2017,July,29,18,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.25,0,3,Canceled,2017-05-28,Summer,2017-07-18T07:00Z +Cancel,227,2017,July,29,18,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151.25,0,3,Canceled,2017-05-28,Summer,2017-07-18T07:00Z +Cancel,78,2017,July,29,18,0,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Canceled,2017-06-05,Summer,2017-07-18T07:00Z +Cancel,165,2017,July,29,18,0,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-02-08,Summer,2017-07-18T07:00Z +Cancel,39,2017,July,29,18,0,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Canceled,2017-06-09,Summer,2017-07-18T07:00Z +Cancel,158,2017,July,29,18,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,156,0,0,Canceled,2017-02-17,Summer,2017-07-18T07:00Z +Cancel,43,2017,July,29,18,1,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,255,0,0,Canceled,2017-07-04,Summer,2017-07-18T07:00Z +Cancel,67,2017,July,29,18,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,1,Canceled,2017-05-13,Summer,2017-07-18T07:00Z +Cancel,128,2017,July,29,18,2,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,188.57,0,1,Canceled,2017-07-04,Summer,2017-07-18T07:00Z +Cancel,299,2017,July,29,18,2,10,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.6,0,2,Canceled,2016-09-26,Summer,2017-07-18T07:00Z +Cancel,299,2017,July,29,18,2,10,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.6,0,2,Canceled,2016-09-26,Summer,2017-07-18T07:00Z +Cancel,108,2017,July,29,19,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,199.2,0,0,Canceled,2017-04-08,Summer,2017-07-19T07:00Z +Cancel,108,2017,July,29,19,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,183.2,0,0,Canceled,2017-04-02,Summer,2017-07-19T07:00Z +Cancel,211,2017,July,29,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,6,No Deposit , 240, NULL,0,Transient,152.5,0,1,Canceled,2017-01-04,Summer,2017-07-19T07:00Z +Cancel,197,2017,July,29,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,152.5,0,0,Canceled,2017-01-03,Summer,2017-07-19T07:00Z +Cancel,143,2017,July,29,19,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2017-03-06,Summer,2017-07-19T07:00Z +Cancel,327,2017,July,29,19,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,0,Canceled,2016-08-28,Summer,2017-07-19T07:00Z +Cancel,247,2017,July,29,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,137.7,0,1,Canceled,2017-06-30,Summer,2017-07-19T07:00Z +Cancel,72,2017,July,29,19,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,306,0,0,Canceled,2017-05-08,Summer,2017-07-19T07:00Z +Cancel,187,2017,July,29,19,2,6,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.28,0,1,Canceled,2017-01-21,Summer,2017-07-19T07:00Z +Cancel,187,2017,July,29,19,2,7,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,183.33,0,0,Canceled,2017-01-13,Summer,2017-07-19T07:00Z +Cancel,20,2017,July,29,19,2,9,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,232.91,0,1,Canceled,2017-07-06,Summer,2017-07-19T07:00Z +Cancel,176,2017,July,29,20,0,2,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,303,0,0,Canceled,2017-01-25,Summer,2017-07-20T07:00Z +Cancel,2,2017,July,29,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,139.2,0,1,Canceled,2017-07-19,Summer,2017-07-20T07:00Z +Cancel,144,2017,July,29,20,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2017-03-06,Summer,2017-07-20T07:00Z +Cancel,171,2017,July,29,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,156,0,0,Canceled,2017-01-30,Summer,2017-07-20T07:00Z +Cancel,21,2017,July,29,20,1,3,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,249.5,0,0,Canceled,2017-07-06,Summer,2017-07-20T07:00Z +Cancel,123,2017,July,29,20,0,3,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,210,0,0,Canceled,2017-03-20,Summer,2017-07-20T07:00Z +Cancel,5,2017,July,29,20,0,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,250,0,0,Canceled,2017-07-15,Summer,2017-07-20T07:00Z +Cancel,160,2017,July,29,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,115.2,0,1,Canceled,2017-07-10,Summer,2017-07-20T07:00Z +Cancel,64,2017,July,29,20,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,135,0,0,Canceled,2017-06-09,Summer,2017-07-20T07:00Z +Cancel,168,2017,July,29,20,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,142.2,0,0,Canceled,2017-02-10,Summer,2017-07-20T07:00Z +Cancel,41,2017,July,29,20,2,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,209.58,0,0,Canceled,2017-07-07,Summer,2017-07-20T07:00Z +Cancel,193,2017,July,29,20,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-01-08,Summer,2017-07-20T07:00Z +Cancel,172,2017,July,29,20,2,5,1,2,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,180,0,0,Canceled,2017-02-27,Summer,2017-07-20T07:00Z +Cancel,328,2017,July,29,20,2,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.6,0,1,Canceled,2016-09-12,Summer,2017-07-20T07:00Z +Cancel,202,2017,July,29,20,4,10,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,158.63,0,0,Canceled,2017-01-04,Summer,2017-07-20T07:00Z +Cancel,2,2017,July,29,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,147.9,0,0,Canceled,2017-07-20,Summer,2017-07-21T07:00Z +Cancel,2,2017,July,29,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,147.9,0,0,Canceled,2017-07-20,Summer,2017-07-21T07:00Z +Cancel,2,2017,July,29,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,147.9,0,0,Canceled,2017-07-20,Summer,2017-07-21T07:00Z +Cancel,19,2017,July,29,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,217.5,0,2,Canceled,2017-07-05,Summer,2017-07-21T07:00Z +Cancel,147,2017,July,29,21,1,2,2,0,0,BB,SYC,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,1,Canceled,2017-04-05,Summer,2017-07-21T07:00Z +Cancel,347,2017,July,29,21,2,4,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,237.34,0,3,Canceled,2017-05-16,Summer,2017-07-21T07:00Z +Cancel,178,2017,July,29,21,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,179.34,0,2,Canceled,2017-05-25,Summer,2017-07-21T07:00Z +Cancel,101,2017,July,29,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,1,Canceled,2017-05-13,Summer,2017-07-21T07:00Z +Cancel,73,2017,July,29,21,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,237,0,1,No-Show,2017-07-21,Summer,2017-07-21T07:00Z +Cancel,268,2017,July,29,21,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165.38,0,0,Canceled,2016-10-26,Summer,2017-07-21T07:00Z +Cancel,116,2017,July,29,21,2,6,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,289,0,0,Canceled,2017-05-23,Summer,2017-07-21T07:00Z +Cancel,109,2017,July,29,21,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2017-04-07,Summer,2017-07-21T07:00Z +Cancel,108,2017,July,29,21,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,229,0,1,Canceled,2017-04-07,Summer,2017-07-21T07:00Z +Cancel,91,2017,July,29,21,3,7,2,1,0,BB,MDV,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,278,0,0,Canceled,2017-05-22,Summer,2017-07-21T07:00Z +Cancel,200,2017,July,29,21,4,11,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172.2,0,1,Canceled,2017-01-11,Summer,2017-07-21T07:00Z +Cancel,192,2017,July,29,22,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-03-16,Summer,2017-07-22T07:00Z +Cancel,372,2017,July,29,22,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2016-08-22,Summer,2017-07-22T07:00Z +Cancel,127,2017,July,29,22,2,3,3,0,0,Undefined,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,289.5,0,0,Canceled,2017-03-21,Summer,2017-07-22T07:00Z +Cancel,82,2017,July,29,22,2,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,317,0,0,Canceled,2017-06-12,Summer,2017-07-22T07:00Z +Cancel,28,2017,July,29,22,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,353,0,0,Canceled,2017-07-10,Summer,2017-07-22T07:00Z +Cancel,194,2017,July,29,22,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.75,0,2,Canceled,2017-04-27,Summer,2017-07-22T07:00Z +Cancel,82,2017,July,29,22,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,257,0,0,Canceled,2017-05-01,Summer,2017-07-22T07:00Z +Cancel,28,2017,July,29,22,2,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,0,0,Canceled,2017-06-25,Summer,2017-07-22T07:00Z +Cancel,186,2017,July,29,22,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-01-19,Summer,2017-07-22T07:00Z +Cancel,180,2017,July,29,22,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,187.52,0,0,Canceled,2017-03-16,Summer,2017-07-22T07:00Z +Cancel,312,2017,July,29,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,3,Canceled,2016-10-24,Summer,2017-07-22T07:00Z +Cancel,151,2017,July,29,22,2,5,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,265,0,0,Canceled,2017-03-22,Summer,2017-07-22T07:00Z +Cancel,151,2017,July,29,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,151,0,0,Canceled,2017-05-22,Summer,2017-07-22T07:00Z +Cancel,198,2017,July,29,22,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-02-04,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-02-16,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-02-16,Summer,2017-07-22T07:00Z +Cancel,122,2017,July,29,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-03-22,Summer,2017-07-22T07:00Z +Cancel,312,2017,July,29,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,3,Canceled,2016-10-24,Summer,2017-07-22T07:00Z +Cancel,180,2017,July,29,22,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,187.52,0,0,Canceled,2017-03-16,Summer,2017-07-22T07:00Z +Cancel,151,2017,July,29,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,151,0,0,Canceled,2017-05-22,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-02-16,Summer,2017-07-22T07:00Z +Cancel,151,2017,July,29,22,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,208.05,0,0,Canceled,2017-05-22,Summer,2017-07-22T07:00Z +Cancel,270,2017,July,29,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2017-03-21,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-02-16,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-02-16,Summer,2017-07-22T07:00Z +Cancel,151,2017,July,29,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,151,0,0,Canceled,2017-05-22,Summer,2017-07-22T07:00Z +Cancel,134,2017,July,29,22,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-06-15,Summer,2017-07-22T07:00Z +Cancel,180,2017,July,29,22,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,139.68,0,0,Canceled,2017-01-27,Summer,2017-07-22T07:00Z +Cancel,312,2017,July,29,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,3,Canceled,2016-10-24,Summer,2017-07-22T07:00Z +Cancel,159,2017,July,29,22,2,6,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,1,Canceled,2017-07-03,Summer,2017-07-22T07:00Z +Cancel,66,2017,July,29,22,2,6,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,135,0,0,Canceled,2017-06-29,Summer,2017-07-22T07:00Z +Cancel,26,2017,July,29,22,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2017-07-07,Summer,2017-07-22T07:00Z +Cancel,139,2017,July,29,22,2,5,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,278.57,0,0,Canceled,2017-03-25,Summer,2017-07-22T07:00Z +Cancel,84,2017,July,29,22,2,6,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,225,0,1,Canceled,2017-05-03,Summer,2017-07-22T07:00Z +Cancel,174,2017,July,29,22,3,6,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-06-17,Summer,2017-07-22T07:00Z +Cancel,174,2017,July,29,22,3,6,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-06-17,Summer,2017-07-22T07:00Z +Cancel,163,2017,July,29,22,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2017-06-10,Summer,2017-07-22T07:00Z +Cancel,352,2017,July,29,22,4,10,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2017-06-19,Summer,2017-07-22T07:00Z +Cancel,44,2017,July,30,23,2,0,3,1,0,BB,CYP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,0,0,Canceled,2017-06-22,Summer,2017-07-23T07:00Z +Cancel,45,2017,July,30,23,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,166.7,0,1,Canceled,2017-07-11,Summer,2017-07-23T07:00Z +Cancel,40,2017,July,30,23,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,234,0,0,Canceled,2017-06-23,Summer,2017-07-23T07:00Z +Cancel,170,2017,July,30,23,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-03-14,Summer,2017-07-23T07:00Z +Cancel,165,2017,July,30,23,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-07-03,Summer,2017-07-23T07:00Z +Cancel,13,2017,July,30,23,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 11, NULL,0,Transient,208.05,0,0,Canceled,2017-07-18,Summer,2017-07-23T07:00Z +Cancel,67,2017,July,30,23,2,5,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,174,0,0,Canceled,2017-06-13,Summer,2017-07-23T07:00Z +Cancel,195,2017,July,30,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-02-06,Summer,2017-07-23T07:00Z +Cancel,175,2017,July,30,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2017-01-29,Summer,2017-07-23T07:00Z +Cancel,192,2017,July,30,23,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,154.54,0,0,Canceled,2017-01-12,Summer,2017-07-23T07:00Z +Cancel,175,2017,July,30,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2017-01-29,Summer,2017-07-23T07:00Z +Cancel,84,2017,July,30,23,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,1,Canceled,2017-05-10,Summer,2017-07-23T07:00Z +Cancel,70,2017,July,30,23,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,277,0,1,Canceled,2017-06-24,Summer,2017-07-23T07:00Z +Cancel,154,2017,July,30,23,2,5,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,270.71,0,0,Canceled,2017-02-22,Summer,2017-07-23T07:00Z +Cancel,84,2017,July,30,23,3,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,277,0,0,Canceled,2017-05-10,Summer,2017-07-23T07:00Z +Cancel,251,2017,July,30,23,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,174,0,1,Canceled,2017-02-01,Summer,2017-07-23T07:00Z +Cancel,200,2017,July,30,23,4,8,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-01-04,Summer,2017-07-23T07:00Z +Cancel,1,2017,July,30,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,140,0,0,Canceled,2017-07-24,Summer,2017-07-24T07:00Z +Cancel,27,2017,July,30,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,225,0,0,Canceled,2017-07-11,Summer,2017-07-24T07:00Z +Cancel,153,2017,July,30,24,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,213,0,0,Canceled,2017-03-08,Summer,2017-07-24T07:00Z +Cancel,134,2017,July,30,24,1,3,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-04-13,Summer,2017-07-24T07:00Z +Cancel,32,2017,July,30,24,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,135,0,0,Canceled,2017-06-23,Summer,2017-07-24T07:00Z +Cancel,158,2017,July,30,24,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2017-07-11,Summer,2017-07-24T07:00Z +Cancel,181,2017,July,30,24,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,0,0,Canceled,2017-01-25,Summer,2017-07-24T07:00Z +Cancel,24,2017,July,30,24,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,228,0,0,Canceled,2017-07-01,Summer,2017-07-24T07:00Z +Cancel,207,2017,July,30,24,1,4,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2017-02-24,Summer,2017-07-24T07:00Z +Cancel,85,2017,July,30,24,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,237,0,0,Canceled,2017-05-02,Summer,2017-07-24T07:00Z +Cancel,95,2017,July,30,24,1,4,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,305,0,0,Canceled,2017-06-02,Summer,2017-07-24T07:00Z +Cancel,88,2017,July,30,24,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,237,0,1,Canceled,2017-04-30,Summer,2017-07-24T07:00Z +Cancel,12,2017,July,30,24,1,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,299,0,0,Canceled,2017-07-13,Summer,2017-07-24T07:00Z +Cancel,181,2017,July,30,24,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2017-01-25,Summer,2017-07-24T07:00Z +Cancel,181,2017,July,30,24,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224,0,0,Canceled,2017-01-25,Summer,2017-07-24T07:00Z +Cancel,132,2017,July,30,24,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,2,Canceled,2017-04-23,Summer,2017-07-24T07:00Z +Cancel,187,2017,July,30,24,1,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-01-21,Summer,2017-07-24T07:00Z +Cancel,132,2017,July,30,24,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,1,Canceled,2017-04-23,Summer,2017-07-24T07:00Z +Cancel,89,2017,July,30,24,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,1,Canceled,2017-06-06,Summer,2017-07-24T07:00Z +Cancel,189,2017,July,30,24,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.75,0,0,Canceled,2017-01-21,Summer,2017-07-24T07:00Z +Cancel,347,2017,July,30,24,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2016-08-11,Summer,2017-07-24T07:00Z +Cancel,196,2017,July,30,24,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,2,Canceled,2017-01-15,Summer,2017-07-24T07:00Z +Cancel,189,2017,July,30,24,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.75,0,0,Canceled,2017-01-21,Summer,2017-07-24T07:00Z +Cancel,272,2017,July,30,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,156.6,0,0,Canceled,2017-03-15,Summer,2017-07-24T07:00Z +Cancel,196,2017,July,30,24,3,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-11,Summer,2017-07-24T07:00Z +Cancel,193,2017,July,30,24,3,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.75,0,1,Canceled,2017-03-08,Summer,2017-07-24T07:00Z +Cancel,184,2017,July,30,24,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,174,0,0,Canceled,2017-01-21,Summer,2017-07-24T07:00Z +Cancel,190,2017,July,30,24,3,8,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,224,0,1,Canceled,2017-01-27,Summer,2017-07-24T07:00Z +Cancel,73,2017,July,30,24,3,9,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,213.33,0,1,Canceled,2017-05-15,Summer,2017-07-24T07:00Z +Cancel,129,2017,July,30,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,175.5,0,0,Canceled,2017-03-20,Summer,2017-07-25T07:00Z +Cancel,129,2017,July,30,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,175.5,0,0,Canceled,2017-03-20,Summer,2017-07-25T07:00Z +Cancel,129,2017,July,30,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,175.5,0,0,Canceled,2017-03-20,Summer,2017-07-25T07:00Z +Cancel,154,2017,July,30,25,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,215.33,0,0,Canceled,2017-03-15,Summer,2017-07-25T07:00Z +Cancel,8,2017,July,30,25,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,211.3,0,0,Canceled,2017-07-17,Summer,2017-07-25T07:00Z +Cancel,169,2017,July,30,25,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-02-13,Summer,2017-07-25T07:00Z +Cancel,117,2017,July,30,25,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,190.23,0,0,Canceled,2017-04-03,Summer,2017-07-25T07:00Z +Cancel,289,2017,July,30,25,0,4,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,0,Canceled,2017-04-19,Summer,2017-07-25T07:00Z +Cancel,289,2017,July,30,25,0,4,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-04-19,Summer,2017-07-25T07:00Z +Cancel,117,2017,July,30,25,0,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,206.62,0,2,Canceled,2017-04-03,Summer,2017-07-25T07:00Z +Cancel,46,2017,July,30,25,0,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,221.6,0,1,Canceled,2017-06-26,Summer,2017-07-25T07:00Z +Cancel,15,2017,July,30,25,0,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,255,0,0,Canceled,2017-07-20,Summer,2017-07-25T07:00Z +Cancel,173,2017,July,30,25,0,5,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,212.16,0,1,Canceled,2017-02-10,Summer,2017-07-25T07:00Z +Cancel,197,2017,July,30,25,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-01-11,Summer,2017-07-25T07:00Z +Cancel,120,2017,July,30,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2017-03-28,Summer,2017-07-26T07:00Z +Cancel,36,2017,July,30,26,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2017-07-12,Summer,2017-07-26T07:00Z +Cancel,173,2017,July,30,26,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,115.2,0,0,Canceled,2017-07-16,Summer,2017-07-26T07:00Z +Cancel,74,2017,July,30,26,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,186.2,0,0,Canceled,2017-05-31,Summer,2017-07-26T07:00Z +Cancel,165,2017,July,30,26,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-03-26,Summer,2017-07-26T07:00Z +Cancel,35,2017,July,30,26,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-06-24,Summer,2017-07-26T07:00Z +Cancel,141,2017,July,30,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,180,0,0,Canceled,2017-03-09,Summer,2017-07-26T07:00Z +Cancel,166,2017,July,30,26,0,4,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,224.16,0,0,Canceled,2017-02-23,Summer,2017-07-26T07:00Z +Cancel,23,2017,July,30,26,1,4,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,245,0,3,No-Show,2017-07-26,Summer,2017-07-26T07:00Z +Cancel,174,2017,July,30,26,1,4,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,212.16,0,0,Canceled,2017-02-02,Summer,2017-07-26T07:00Z +Cancel,23,2017,July,30,26,1,4,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,255,0,2,No-Show,2017-07-26,Summer,2017-07-26T07:00Z +Cancel,335,2017,July,30,26,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,2,Canceled,2017-02-12,Summer,2017-07-26T07:00Z +Cancel,17,2017,July,30,26,2,4,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2017-07-09,Summer,2017-07-26T07:00Z +Cancel,25,2017,July,30,26,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,1,Canceled,2017-07-02,Summer,2017-07-26T07:00Z +Cancel,42,2017,July,30,26,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,220,0,2,Canceled,2017-06-19,Summer,2017-07-26T07:00Z +Cancel,93,2017,July,30,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 241, NULL,0,Transient,206.12,0,1,Canceled,2017-06-19,Summer,2017-07-26T07:00Z +Cancel,148,2017,July,30,26,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,267.86,0,0,Canceled,2017-03-01,Summer,2017-07-26T07:00Z +Cancel,20,2017,July,30,26,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,2,Canceled,2017-07-06,Summer,2017-07-26T07:00Z +Cancel,17,2017,July,30,26,2,4,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2017-07-09,Summer,2017-07-26T07:00Z +Cancel,42,2017,July,30,26,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,220,0,2,Canceled,2017-06-19,Summer,2017-07-26T07:00Z +Cancel,157,2017,July,30,26,2,8,1,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,266.5,0,1,Canceled,2017-02-24,Summer,2017-07-26T07:00Z +Cancel,203,2017,July,30,26,2,9,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,156.34,0,1,Canceled,2017-01-25,Summer,2017-07-26T07:00Z +Cancel,203,2017,July,30,26,2,9,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,156.34,0,1,Canceled,2017-01-25,Summer,2017-07-26T07:00Z +Cancel,193,2017,July,30,27,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,No-Show,2017-07-27,Summer,2017-07-27T07:00Z +Cancel,31,2017,July,30,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,135,0,0,Canceled,2017-06-27,Summer,2017-07-27T07:00Z +Cancel,381,2017,July,30,27,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2016-08-22,Summer,2017-07-27T07:00Z +Cancel,340,2017,July,30,27,0,3,2,2,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,192.6,0,0,Canceled,2017-01-30,Summer,2017-07-27T07:00Z +Cancel,196,2017,July,30,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-01-13,Summer,2017-07-27T07:00Z +Cancel,165,2017,July,30,27,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,160,0,1,Canceled,2017-05-21,Summer,2017-07-27T07:00Z +Cancel,71,2017,July,30,27,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,146,0,0,Canceled,2017-06-30,Summer,2017-07-27T07:00Z +Cancel,198,2017,July,30,27,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2017-05-14,Summer,2017-07-27T07:00Z +Cancel,279,2017,July,30,27,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,151.5,0,0,Canceled,2017-04-17,Summer,2017-07-27T07:00Z +Cancel,199,2017,July,30,27,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,183.75,0,2,Canceled,2017-06-19,Summer,2017-07-27T07:00Z +Cancel,198,2017,July,30,27,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-05-14,Summer,2017-07-27T07:00Z +Cancel,59,2017,July,30,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,212.14,0,2,Canceled,2017-07-26,Summer,2017-07-27T07:00Z +Cancel,71,2017,July,30,27,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,146,0,0,Canceled,2017-06-30,Summer,2017-07-27T07:00Z +Cancel,198,2017,July,30,27,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-05-14,Summer,2017-07-27T07:00Z +Cancel,191,2017,July,30,27,2,5,2,2,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2017-01-17,Summer,2017-07-27T07:00Z +Cancel,167,2017,July,30,27,2,6,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,182.25,0,0,Canceled,2017-02-17,Summer,2017-07-27T07:00Z +Cancel,300,2017,July,30,27,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,125.28,0,0,Canceled,2017-06-15,Summer,2017-07-27T07:00Z +Cancel,18,2017,July,30,28,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184.5,0,1,Canceled,2017-07-11,Summer,2017-07-28T07:00Z +Cancel,33,2017,July,30,28,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,257,0,1,Canceled,2017-07-04,Summer,2017-07-28T07:00Z +Cancel,19,2017,July,30,28,0,2,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184.5,0,2,No-Show,2017-07-28,Summer,2017-07-28T07:00Z +Cancel,318,2017,July,30,28,1,2,4,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 147, NULL,0,Transient,139.68,0,0,Canceled,2017-03-09,Summer,2017-07-28T07:00Z +Cancel,50,2017,July,30,28,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,0,Canceled,2017-06-28,Summer,2017-07-28T07:00Z +Cancel,0,2017,July,30,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Canceled,2017-07-28,Summer,2017-07-28T07:00Z +Cancel,203,2017,July,30,28,0,1,2,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249,0,1,Canceled,2017-03-06,Summer,2017-07-28T07:00Z +Cancel,203,2017,July,30,28,0,1,3,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-03-06,Summer,2017-07-28T07:00Z +Cancel,18,2017,July,30,28,0,2,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,229.5,0,1,Canceled,2017-07-11,Summer,2017-07-28T07:00Z +Cancel,16,2017,July,30,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,279.5,0,0,Canceled,2017-07-12,Summer,2017-07-28T07:00Z +Cancel,16,2017,July,30,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,310,0,0,Canceled,2017-07-12,Summer,2017-07-28T07:00Z +Cancel,18,2017,July,30,28,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,245,0,1,Canceled,2017-07-11,Summer,2017-07-28T07:00Z +Cancel,17,2017,July,30,28,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-07-13,Summer,2017-07-28T07:00Z +Cancel,4,2017,July,30,28,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192.5,0,2,Canceled,2017-07-28,Summer,2017-07-28T07:00Z +Cancel,318,2017,July,30,28,1,2,4,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 147, NULL,0,Transient,139.68,0,0,Canceled,2017-03-09,Summer,2017-07-28T07:00Z +Cancel,25,2017,July,30,28,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-07-03,Summer,2017-07-28T07:00Z +Cancel,261,2017,July,30,28,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2016-11-09,Summer,2017-07-28T07:00Z +Cancel,69,2017,July,30,28,2,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,257,0,0,Canceled,2017-06-10,Summer,2017-07-28T07:00Z +Cancel,69,2017,July,30,28,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,193.6,0,1,Canceled,2017-05-20,Summer,2017-07-28T07:00Z +Cancel,33,2017,July,30,28,2,4,3,1,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,0,0,Canceled,2017-07-01,Summer,2017-07-28T07:00Z +Cancel,129,2017,July,30,28,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,252,0,1,Canceled,2017-03-28,Summer,2017-07-28T07:00Z +Cancel,292,2017,July,30,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2017-07-04,Summer,2017-07-28T07:00Z +Cancel,205,2017,July,30,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,2,Canceled,2017-02-20,Summer,2017-07-28T07:00Z +Cancel,128,2017,July,30,28,2,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224.44,0,1,Canceled,2017-05-21,Summer,2017-07-28T07:00Z +Cancel,141,2017,July,30,29,0,1,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,278,0,1,Canceled,2017-06-26,Summer,2017-07-29T07:00Z +Cancel,19,2017,July,30,29,0,1,3,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,0,0,Canceled,2017-07-11,Summer,2017-07-29T07:00Z +Cancel,60,2017,July,30,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-06-26,Summer,2017-07-29T07:00Z +Cancel,43,2017,July,30,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-06-28,Summer,2017-07-29T07:00Z +Cancel,42,2017,July,30,29,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,220,0,0,Canceled,2017-07-11,Summer,2017-07-29T07:00Z +Cancel,116,2017,July,30,29,2,1,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,287,0,1,Canceled,2017-06-12,Summer,2017-07-29T07:00Z +Cancel,67,2017,July,30,29,2,1,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,1,Canceled,2017-07-01,Summer,2017-07-29T07:00Z +Cancel,52,2017,July,30,29,2,2,2,1,0,BB,MAR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,237.5,0,0,Canceled,2017-06-30,Summer,2017-07-29T07:00Z +Cancel,239,2017,July,30,29,2,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,244,0,1,Canceled,2017-02-05,Summer,2017-07-29T07:00Z +Cancel,239,2017,July,30,29,2,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,192,0,1,Canceled,2017-02-05,Summer,2017-07-29T07:00Z +Cancel,23,2017,July,30,29,2,3,3,1,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,363,0,0,Canceled,2017-07-09,Summer,2017-07-29T07:00Z +Cancel,20,2017,July,30,29,2,3,3,1,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,363,0,0,Canceled,2017-07-09,Summer,2017-07-29T07:00Z +Cancel,173,2017,July,30,29,2,4,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,3,Canceled,2017-02-10,Summer,2017-07-29T07:00Z +Cancel,172,2017,July,30,29,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,1,Canceled,2017-07-11,Summer,2017-07-29T07:00Z +Cancel,147,2017,July,30,29,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2017-03-06,Summer,2017-07-29T07:00Z +Cancel,335,2017,July,30,29,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2016-11-05,Summer,2017-07-29T07:00Z +Cancel,358,2017,July,30,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165.6,0,0,Canceled,2016-08-08,Summer,2017-07-29T07:00Z +Cancel,231,2017,July,30,29,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155.79,0,2,Canceled,2016-12-12,Summer,2017-07-29T07:00Z +Cancel,335,2017,July,30,29,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2016-11-05,Summer,2017-07-29T07:00Z +Cancel,191,2017,July,30,29,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,246,0,0,Canceled,2017-06-08,Summer,2017-07-29T07:00Z +Cancel,247,2017,July,30,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2016-12-15,Summer,2017-07-29T07:00Z +Cancel,56,2017,July,30,29,2,5,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,2,Canceled,2017-06-03,Summer,2017-07-29T07:00Z +Cancel,137,2017,July,30,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,178.29,0,1,Canceled,2017-03-19,Summer,2017-07-29T07:00Z +Cancel,56,2017,July,30,29,2,5,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,305,0,1,Canceled,2017-06-18,Summer,2017-07-29T07:00Z +Cancel,247,2017,July,30,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2016-12-15,Summer,2017-07-29T07:00Z +Cancel,60,2017,July,30,29,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219.29,0,1,Canceled,2017-05-31,Summer,2017-07-29T07:00Z +Cancel,306,2017,July,30,29,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,204.62,0,1,Canceled,2016-11-19,Summer,2017-07-29T07:00Z +Cancel,237,2017,July,30,29,2,6,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2016-12-04,Summer,2017-07-29T07:00Z +Cancel,38,2017,July,30,29,2,6,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,242.1,0,0,Canceled,2017-07-06,Summer,2017-07-29T07:00Z +Cancel,137,2017,July,30,29,3,6,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,229.33,0,1,Canceled,2017-03-19,Summer,2017-07-29T07:00Z +Cancel,358,2017,July,30,29,4,6,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,266.6,0,0,Canceled,2016-11-24,Summer,2017-07-29T07:00Z +Cancel,342,2017,July,30,29,4,6,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,266.6,0,0,Canceled,2016-08-21,Summer,2017-07-29T07:00Z +Cancel,343,2017,July,30,29,4,6,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.34,0,2,Canceled,2016-09-05,Summer,2017-07-29T07:00Z +Cancel,158,2017,July,31,30,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,1,Canceled,2017-02-22,Summer,2017-07-30T07:00Z +Cancel,51,2017,July,31,30,2,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,206.9,0,0,Canceled,2017-06-09,Summer,2017-07-30T07:00Z +Cancel,56,2017,July,31,30,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,257,0,2,Canceled,2017-07-17,Summer,2017-07-30T07:00Z +Cancel,39,2017,July,31,30,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-06-21,Summer,2017-07-30T07:00Z +Cancel,63,2017,July,31,30,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,252,0,2,Canceled,2017-06-27,Summer,2017-07-30T07:00Z +Cancel,124,2017,July,31,30,2,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,201.6,0,0,Canceled,2017-04-11,Summer,2017-07-30T07:00Z +Cancel,255,2017,July,31,30,2,4,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,183.6,0,0,Canceled,2017-02-04,Summer,2017-07-30T07:00Z +Cancel,188,2017,July,31,30,2,4,2,2,0,FB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,311.7,0,0,Canceled,2017-01-26,Summer,2017-07-30T07:00Z +Cancel,224,2017,July,31,30,2,4,2,0,0,BB,HUN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,197.7,0,0,Canceled,2017-07-04,Summer,2017-07-30T07:00Z +Cancel,359,2017,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165.6,0,0,Canceled,2017-04-09,Summer,2017-07-30T07:00Z +Cancel,109,2017,July,31,30,2,5,2,0,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,294.86,0,1,Canceled,2017-04-12,Summer,2017-07-30T07:00Z +Cancel,309,2017,July,31,30,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,0,Canceled,2016-12-16,Summer,2017-07-30T07:00Z +Cancel,359,2017,July,31,30,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219,0,0,Canceled,2017-03-23,Summer,2017-07-30T07:00Z +Cancel,18,2017,July,31,30,3,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,152.1,0,2,Canceled,2017-07-26,Summer,2017-07-30T07:00Z +Cancel,18,2017,July,31,30,3,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,152.1,0,2,Canceled,2017-07-26,Summer,2017-07-30T07:00Z +Cancel,228,2017,July,31,30,4,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212.17,0,1,Canceled,2017-07-19,Summer,2017-07-30T07:00Z +Cancel,0,2017,July,31,31,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,No-Show,2017-07-31,Summer,2017-07-31T07:00Z +Cancel,20,2017,July,31,31,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,123,0,0,Canceled,2017-07-12,Summer,2017-07-31T07:00Z +Cancel,2,2017,July,31,31,1,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2017-07-29,Summer,2017-07-31T07:00Z +Cancel,2,2017,July,31,31,1,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-29,Summer,2017-07-31T07:00Z +Cancel,39,2017,July,31,31,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Canceled,2017-06-23,Summer,2017-07-31T07:00Z +Cancel,125,2017,July,31,31,1,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,2,Canceled,2017-03-28,Summer,2017-07-31T07:00Z +Cancel,170,2017,July,31,31,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,0,Canceled,2017-02-12,Summer,2017-07-31T07:00Z +Cancel,125,2017,July,31,31,1,3,2,1,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,299,0,1,Canceled,2017-03-28,Summer,2017-07-31T07:00Z +Cancel,20,2017,July,31,31,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,2,Canceled,2017-07-19,Summer,2017-07-31T07:00Z +Cancel,142,2017,July,31,31,1,4,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , 250, NULL,0,Transient,309.1,0,1,Canceled,2017-06-26,Summer,2017-07-31T07:00Z +Cancel,75,2017,July,31,31,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,257,0,0,Canceled,2017-06-30,Summer,2017-07-31T07:00Z +Cancel,172,2017,July,31,31,1,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-04-24,Summer,2017-07-31T07:00Z +Cancel,211,2017,July,31,31,1,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170.6,0,3,Canceled,2017-03-14,Summer,2017-07-31T07:00Z +Cancel,134,2017,July,31,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224,0,1,Canceled,2017-03-21,Summer,2017-07-31T07:00Z +Cancel,172,2017,July,31,31,1,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2017-02-09,Summer,2017-07-31T07:00Z +Cancel,164,2017,July,31,31,1,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,0,Canceled,2017-06-07,Summer,2017-07-31T07:00Z +Cancel,181,2017,July,31,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,194,0,1,Canceled,2017-06-01,Summer,2017-07-31T07:00Z +Cancel,357,2017,July,31,31,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,3,Canceled,2016-12-13,Summer,2017-07-31T07:00Z +Cancel,167,2017,July,31,31,1,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,220,0,2,Canceled,2017-07-18,Summer,2017-07-31T07:00Z +Cancel,329,2017,July,31,31,1,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,0,Canceled,2017-02-22,Summer,2017-07-31T07:00Z +Cancel,23,2017,July,31,31,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,229.17,0,1,Canceled,2017-07-08,Summer,2017-07-31T07:00Z +Cancel,26,2017,July,31,31,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,266.3,0,1,Canceled,2017-07-06,Summer,2017-07-31T07:00Z +Cancel,189,2017,July,31,31,2,5,3,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,172.49,0,1,Canceled,2017-03-06,Summer,2017-07-31T07:00Z +Cancel,254,2017,July,31,31,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2016-11-27,Summer,2017-07-31T07:00Z +Cancel,130,2017,July,31,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,228.57,0,2,Canceled,2017-05-13,Summer,2017-07-31T07:00Z +Cancel,189,2017,July,31,31,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,129.48,0,1,Canceled,2017-03-06,Summer,2017-07-31T07:00Z +Cancel,343,2017,July,31,31,3,7,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,227.8,0,0,Canceled,2017-07-04,Summer,2017-07-31T07:00Z +Cancel,172,2017,July,31,31,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,138,0,0,Canceled,2017-02-09,Summer,2017-07-31T07:00Z +Cancel,172,2017,July,31,31,3,9,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,138,0,0,Canceled,2017-02-09,Summer,2017-07-31T07:00Z +Cancel,122,2017,August,31,1,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Canceled,2017-04-03,Summer,2017-08-01T07:00Z +Cancel,78,2017,August,31,1,0,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-16,Summer,2017-08-01T07:00Z +Cancel,67,2017,August,31,1,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,188.6,0,1,Canceled,2017-05-28,Summer,2017-08-01T07:00Z +Cancel,69,2017,August,31,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,230,0,1,Canceled,2017-07-11,Summer,2017-08-01T07:00Z +Cancel,198,2017,August,31,1,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,157.31,0,0,Canceled,2017-01-15,Summer,2017-08-01T07:00Z +Cancel,98,2017,August,31,1,0,4,2,0,0,BB,AND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-04-26,Summer,2017-08-01T07:00Z +Cancel,159,2017,August,31,1,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,1,Canceled,2017-06-06,Summer,2017-08-01T07:00Z +Cancel,298,2017,August,31,1,0,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2017-02-22,Summer,2017-08-01T07:00Z +Cancel,298,2017,August,31,1,0,5,3,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,218.18,0,3,Canceled,2017-02-22,Summer,2017-08-01T07:00Z +Cancel,334,2017,August,31,1,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156.6,0,0,Canceled,2016-09-01,Summer,2017-08-01T07:00Z +Cancel,334,2017,August,31,1,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156.6,0,0,Canceled,2016-09-03,Summer,2017-08-01T07:00Z +Cancel,195,2017,August,31,1,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231,0,0,Canceled,2017-04-02,Summer,2017-08-01T07:00Z +Cancel,181,2017,August,31,1,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166.67,0,1,Canceled,2017-03-23,Summer,2017-08-01T07:00Z +Cancel,176,2017,August,31,1,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,150.17,0,0,Canceled,2017-02-08,Summer,2017-08-01T07:00Z +Cancel,136,2017,August,31,1,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,301.43,0,0,Canceled,2017-07-04,Summer,2017-08-01T07:00Z +Cancel,28,2017,August,31,1,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,258.27,0,1,Canceled,2017-07-05,Summer,2017-08-01T07:00Z +Cancel,242,2017,August,31,1,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-07-16,Summer,2017-08-01T07:00Z +Cancel,27,2017,August,31,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.71,0,1,Canceled,2017-07-15,Summer,2017-08-01T07:00Z +Cancel,215,2017,August,31,1,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,145.44,0,0,Canceled,2017-07-22,Summer,2017-08-01T07:00Z +Cancel,176,2017,August,31,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,134.86,0,0,Canceled,2017-02-20,Summer,2017-08-01T07:00Z +Cancel,162,2017,August,31,1,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 181, NULL,0,Transient,242.25,0,0,Canceled,2017-07-20,Summer,2017-08-01T07:00Z +Cancel,28,2017,August,31,1,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,315.71,0,0,Canceled,2017-07-05,Summer,2017-08-01T07:00Z +Cancel,81,2017,August,31,1,2,7,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,244.72,0,1,Canceled,2017-06-03,Summer,2017-08-01T07:00Z +Cancel,328,2017,August,31,1,2,9,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156.6,0,0,Canceled,2017-05-11,Summer,2017-08-01T07:00Z +Cancel,203,2017,August,31,1,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,126.9,0,0,Canceled,2017-01-24,Summer,2017-08-01T07:00Z +Cancel,358,2017,August,31,1,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190.96,0,2,Canceled,2017-04-26,Summer,2017-08-01T07:00Z +Cancel,352,2017,August,31,1,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190.96,0,1,Canceled,2017-03-28,Summer,2017-08-01T07:00Z +Cancel,378,2017,August,31,1,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,450,0,0,Canceled,2016-07-22,Summer,2017-08-01T07:00Z +Cancel,300,2017,August,31,2,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,202.92,0,0,Canceled,2016-10-06,Summer,2017-08-02T07:00Z +Cancel,15,2017,August,31,2,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,264,0,1,Canceled,2017-07-19,Summer,2017-08-02T07:00Z +Cancel,205,2017,August,31,2,1,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,300.4,0,2,Canceled,2017-01-17,Summer,2017-08-02T07:00Z +Cancel,205,2017,August,31,2,1,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,300.4,0,2,Canceled,2017-01-17,Summer,2017-08-02T07:00Z +Cancel,231,2017,August,31,2,2,4,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,183.33,0,1,Canceled,2017-05-10,Summer,2017-08-02T07:00Z +Cancel,231,2017,August,31,2,2,4,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,183.33,0,2,Canceled,2017-05-10,Summer,2017-08-02T07:00Z +Cancel,231,2017,August,31,2,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,253.33,0,1,Canceled,2017-05-10,Summer,2017-08-02T07:00Z +Cancel,248,2017,August,31,2,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,179.77,0,0,Canceled,2017-03-15,Summer,2017-08-02T07:00Z +Cancel,310,2017,August,31,2,2,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,148.74,0,0,Canceled,2017-07-05,Summer,2017-08-02T07:00Z +Cancel,78,2017,August,31,2,2,8,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,241.6,0,2,Canceled,2017-05-18,Summer,2017-08-02T07:00Z +Cancel,187,2017,August,31,2,2,8,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,193.1,0,0,No-Show,2017-08-02,Summer,2017-08-02T07:00Z +Cancel,188,2017,August,31,2,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,188,0,1,Canceled,2017-07-19,Summer,2017-08-02T07:00Z +Cancel,76,2017,August,31,2,2,8,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,257.34,0,0,Canceled,2017-05-24,Summer,2017-08-02T07:00Z +Cancel,213,2017,August,31,2,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165.15,0,2,Canceled,2017-01-22,Summer,2017-08-02T07:00Z +Cancel,187,2017,August,31,2,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168.57,0,0,Canceled,2017-02-02,Summer,2017-08-02T07:00Z +Cancel,101,2017,August,31,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,213.75,0,0,Canceled,2017-06-28,Summer,2017-08-03T07:00Z +Cancel,15,2017,August,31,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,Refundable , 240, NULL,0,Transient,229,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,0,Canceled,2017-07-06,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,101,2017,August,31,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,213.75,0,0,Canceled,2017-06-28,Summer,2017-08-03T07:00Z +Cancel,28,2017,August,31,3,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,205,0,1,Canceled,2017-08-01,Summer,2017-08-03T07:00Z +Cancel,195,2017,August,31,3,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,183.33,0,1,Canceled,2017-06-19,Summer,2017-08-03T07:00Z +Cancel,17,2017,August,31,3,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.67,0,3,Canceled,2017-07-18,Summer,2017-08-03T07:00Z +Cancel,43,2017,August,31,3,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,213.33,0,1,Canceled,2017-06-30,Summer,2017-08-03T07:00Z +Cancel,22,2017,August,31,3,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,266,0,2,Canceled,2017-07-29,Summer,2017-08-03T07:00Z +Cancel,246,2017,August,31,3,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-07-04,Summer,2017-08-03T07:00Z +Cancel,246,2017,August,31,3,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-07-04,Summer,2017-08-03T07:00Z +Cancel,246,2017,August,31,3,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-07-04,Summer,2017-08-03T07:00Z +Cancel,153,2017,August,31,3,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,282.29,0,0,Canceled,2017-03-17,Summer,2017-08-03T07:00Z +Cancel,273,2017,August,31,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,0,Canceled,2016-11-03,Summer,2017-08-03T07:00Z +Cancel,296,2017,August,31,3,2,5,2,0,0,HB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2017-01-20,Summer,2017-08-03T07:00Z +Cancel,104,2017,August,31,3,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,No-Show,2017-08-03,Summer,2017-08-03T07:00Z +Cancel,178,2017,August,31,3,2,8,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,175.5,0,0,Canceled,2017-02-07,Summer,2017-08-03T07:00Z +Cancel,83,2017,August,31,3,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2017-05-19,Summer,2017-08-03T07:00Z +Cancel,83,2017,August,31,3,3,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-05-19,Summer,2017-08-03T07:00Z +Cancel,29,2017,August,31,4,0,1,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,205,0,2,No-Show,2017-08-04,Summer,2017-08-04T07:00Z +Cancel,304,2017,August,31,4,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,1,Canceled,2016-10-09,Summer,2017-08-04T07:00Z +Cancel,304,2017,August,31,4,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2016-12-02,Summer,2017-08-04T07:00Z +Cancel,28,2017,August,31,4,0,2,2,0,0,HB,MOZ,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,269.5,0,1,Canceled,2017-07-09,Summer,2017-08-04T07:00Z +Cancel,42,2017,August,31,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,212.5,0,0,Canceled,2017-07-21,Summer,2017-08-04T07:00Z +Cancel,42,2017,August,31,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,212.5,0,0,Canceled,2017-07-21,Summer,2017-08-04T07:00Z +Cancel,113,2017,August,31,4,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-10,Summer,2017-08-04T07:00Z +Cancel,304,2017,August,31,4,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2016-10-09,Summer,2017-08-04T07:00Z +Cancel,304,2017,August,31,4,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,2,Canceled,2016-10-09,Summer,2017-08-04T07:00Z +Cancel,353,2017,August,31,4,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2016-08-18,Summer,2017-08-04T07:00Z +Cancel,24,2017,August,31,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,193.33,0,1,Canceled,2017-07-20,Summer,2017-08-04T07:00Z +Cancel,34,2017,August,31,4,1,2,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,283.6,0,1,Canceled,2017-07-09,Summer,2017-08-04T07:00Z +Cancel,40,2017,August,31,4,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,223.75,0,1,Canceled,2017-06-27,Summer,2017-08-04T07:00Z +Cancel,93,2017,August,31,4,2,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,378,0,0,Canceled,2017-05-04,Summer,2017-08-04T07:00Z +Cancel,304,2017,August,31,4,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,185.4,0,2,Canceled,2016-10-09,Summer,2017-08-04T07:00Z +Cancel,312,2017,August,31,4,2,2,2,1,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,244,0,2,Canceled,2017-04-24,Summer,2017-08-04T07:00Z +Cancel,214,2017,August,31,4,2,2,1,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,206,0,1,Canceled,2017-06-26,Summer,2017-08-04T07:00Z +Cancel,51,2017,August,31,4,2,2,2,2,0,FB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,358.75,0,0,Canceled,2017-06-22,Summer,2017-08-04T07:00Z +Cancel,312,2017,August,31,4,2,2,2,1,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,172.8,0,2,Canceled,2017-04-24,Summer,2017-08-04T07:00Z +Cancel,165,2017,August,31,4,2,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,201.6,0,1,Canceled,2017-04-23,Summer,2017-08-04T07:00Z +Cancel,166,2017,August,31,4,2,4,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,220,0,2,Canceled,2017-03-16,Summer,2017-08-04T07:00Z +Cancel,178,2017,August,31,4,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,203.13,0,2,Canceled,2017-03-20,Summer,2017-08-04T07:00Z +Cancel,91,2017,August,31,4,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,328,0,1,Canceled,2017-05-12,Summer,2017-08-04T07:00Z +Cancel,91,2017,August,31,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,184,0,0,Canceled,2017-05-10,Summer,2017-08-04T07:00Z +Cancel,319,2017,August,31,4,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,144.97,0,1,Canceled,2017-03-08,Summer,2017-08-04T07:00Z +Cancel,95,2017,August,31,4,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-04,Summer,2017-08-04T07:00Z +Cancel,302,2017,August,31,4,2,7,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,2,Canceled,2017-05-08,Summer,2017-08-04T07:00Z +Cancel,302,2017,August,31,4,2,7,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.8,0,2,Canceled,2017-05-08,Summer,2017-08-04T07:00Z +Cancel,144,2017,August,31,4,3,7,2,0,0,HB,TUR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,252,0,1,Canceled,2017-03-13,Summer,2017-08-04T07:00Z +Cancel,163,2017,August,31,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-06-29,Summer,2017-08-05T07:00Z +Cancel,8,2017,August,31,5,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,Non Refund , 240, NULL,0,Transient,330,0,0,Canceled,2017-08-01,Summer,2017-08-05T07:00Z +Cancel,10,2017,August,31,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,204.18,0,0,Canceled,2017-07-27,Summer,2017-08-05T07:00Z +Cancel,167,2017,August,31,5,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2017-02-19,Summer,2017-08-05T07:00Z +Cancel,16,2017,August,31,5,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214,0,1,Canceled,2017-07-24,Summer,2017-08-05T07:00Z +Cancel,180,2017,August,31,5,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-02-21,Summer,2017-08-05T07:00Z +Cancel,11,2017,August,31,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214,0,1,Canceled,2017-07-26,Summer,2017-08-05T07:00Z +Cancel,20,2017,August,31,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,160.2,0,1,Canceled,2017-07-25,Summer,2017-08-05T07:00Z +Cancel,341,2017,August,31,5,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259.33,0,0,Canceled,2017-05-27,Summer,2017-08-05T07:00Z +Cancel,20,2017,August,31,5,1,1,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,160.2,0,1,Canceled,2017-07-25,Summer,2017-08-05T07:00Z +Cancel,16,2017,August,31,5,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214,0,1,Canceled,2017-07-24,Summer,2017-08-05T07:00Z +Cancel,3,2017,August,31,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-08-03,Summer,2017-08-05T07:00Z +Cancel,333,2017,August,31,5,2,3,2,1,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,1,Canceled,2017-07-23,Summer,2017-08-05T07:00Z +Cancel,25,2017,August,31,5,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,250,0,0,Canceled,2017-07-12,Summer,2017-08-05T07:00Z +Cancel,119,2017,August,31,5,2,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,269,0,2,Canceled,2017-04-20,Summer,2017-08-05T07:00Z +Cancel,333,2017,August,31,5,2,3,2,1,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,1,Canceled,2017-07-23,Summer,2017-08-05T07:00Z +Cancel,142,2017,August,31,5,2,4,2,2,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,298,0,1,Canceled,2017-03-28,Summer,2017-08-05T07:00Z +Cancel,238,2017,August,31,5,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,168,0,1,Canceled,2017-06-07,Summer,2017-08-05T07:00Z +Cancel,328,2017,August,31,5,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,139.54,0,0,Canceled,2017-06-27,Summer,2017-08-05T07:00Z +Cancel,45,2017,August,31,5,2,4,2,2,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,378,0,0,Canceled,2017-06-23,Summer,2017-08-05T07:00Z +Cancel,328,2017,August,31,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2016-09-11,Summer,2017-08-05T07:00Z +Cancel,38,2017,August,31,5,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-07-21,Summer,2017-08-05T07:00Z +Cancel,210,2017,August,31,5,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,198,0,2,Canceled,2017-05-12,Summer,2017-08-05T07:00Z +Cancel,141,2017,August,31,5,2,5,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,310,0,0,Canceled,2017-03-18,Summer,2017-08-05T07:00Z +Cancel,98,2017,August,31,5,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2017-04-29,Summer,2017-08-05T07:00Z +Cancel,31,2017,August,31,5,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-09,Summer,2017-08-05T07:00Z +Cancel,45,2017,August,31,5,4,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-07-06,Summer,2017-08-05T07:00Z +Cancel,208,2017,August,31,5,4,7,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,231,0,2,Canceled,2017-01-24,Summer,2017-08-05T07:00Z +Cancel,208,2017,August,31,5,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,206,0,2,Canceled,2017-01-24,Summer,2017-08-05T07:00Z +Cancel,208,2017,August,31,5,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,206,0,2,Canceled,2017-01-24,Summer,2017-08-05T07:00Z +Cancel,143,2017,August,32,6,2,1,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2017-05-14,Summer,2017-08-06T07:00Z +Cancel,209,2017,August,32,6,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,188,0,0,Canceled,2017-01-09,Summer,2017-08-06T07:00Z +Cancel,128,2017,August,32,6,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,1,Canceled,2017-04-01,Summer,2017-08-06T07:00Z +Cancel,33,2017,August,32,6,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,323,0,0,Canceled,2017-07-11,Summer,2017-08-06T07:00Z +Cancel,145,2017,August,32,6,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,252,0,2,Canceled,2017-03-17,Summer,2017-08-06T07:00Z +Cancel,33,2017,August,32,6,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,297,0,0,Canceled,2017-07-11,Summer,2017-08-06T07:00Z +Cancel,128,2017,August,32,6,2,3,2,2,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,269,0,1,Canceled,2017-04-01,Summer,2017-08-06T07:00Z +Cancel,123,2017,August,32,6,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Canceled,2017-04-05,Summer,2017-08-06T07:00Z +Cancel,126,2017,August,32,6,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Canceled,2017-04-05,Summer,2017-08-06T07:00Z +Cancel,128,2017,August,32,6,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,1,Canceled,2017-04-01,Summer,2017-08-06T07:00Z +Cancel,142,2017,August,32,6,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2017-03-23,Summer,2017-08-06T07:00Z +Cancel,126,2017,August,32,6,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,239,0,1,Canceled,2017-04-05,Summer,2017-08-06T07:00Z +Cancel,172,2017,August,32,6,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Canceled,2017-02-15,Summer,2017-08-06T07:00Z +Cancel,31,2017,August,32,6,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,225.6,0,1,Canceled,2017-07-11,Summer,2017-08-06T07:00Z +Cancel,126,2017,August,32,6,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,259,0,0,Canceled,2017-04-05,Summer,2017-08-06T07:00Z +Cancel,177,2017,August,32,6,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Canceled,2017-02-10,Summer,2017-08-06T07:00Z +Cancel,343,2017,August,32,6,2,4,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,207.3,0,2,Canceled,2016-11-04,Summer,2017-08-06T07:00Z +Cancel,190,2017,August,32,6,2,4,2,0,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,0,Canceled,2017-05-14,Summer,2017-08-06T07:00Z +Cancel,117,2017,August,32,6,2,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,303.7,0,1,Canceled,2017-04-13,Summer,2017-08-06T07:00Z +Cancel,178,2017,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,2,Canceled,2017-06-05,Summer,2017-08-06T07:00Z +Cancel,178,2017,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,2,Canceled,2017-06-05,Summer,2017-08-06T07:00Z +Cancel,177,2017,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,156.96,0,0,Canceled,2017-07-27,Summer,2017-08-06T07:00Z +Cancel,314,2017,August,32,6,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,133.74,0,0,Canceled,2017-07-26,Summer,2017-08-06T07:00Z +Cancel,185,2017,August,32,6,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,194,0,0,Canceled,2017-07-21,Summer,2017-08-06T07:00Z +Cancel,177,2017,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,156.96,0,0,Canceled,2017-07-27,Summer,2017-08-06T07:00Z +Cancel,194,2017,August,32,6,3,5,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,178.56,0,0,Canceled,2017-01-27,Summer,2017-08-06T07:00Z +Cancel,96,2017,August,32,6,4,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-05-11,Summer,2017-08-06T07:00Z +Cancel,157,2017,August,32,6,4,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,250,0,0,Canceled,2017-03-23,Summer,2017-08-06T07:00Z +Cancel,310,2017,August,32,6,4,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,0,0,Canceled,2016-09-30,Summer,2017-08-06T07:00Z +Cancel,113,2017,August,32,6,4,6,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,294.5,0,0,Canceled,2017-04-15,Summer,2017-08-06T07:00Z +Cancel,45,2017,August,32,6,4,10,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,216,0,0,Canceled,2017-06-26,Summer,2017-08-06T07:00Z +Cancel,174,2017,August,32,7,1,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,275,0,0,Canceled,2017-07-07,Summer,2017-08-07T07:00Z +Cancel,153,2017,August,32,7,1,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,0,Canceled,2017-03-27,Summer,2017-08-07T07:00Z +Cancel,41,2017,August,32,7,1,2,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,378,0,0,Canceled,2017-06-28,Summer,2017-08-07T07:00Z +Cancel,139,2017,August,32,7,1,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,1,Canceled,2017-04-24,Summer,2017-08-07T07:00Z +Cancel,184,2017,August,32,7,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-02-12,Summer,2017-08-07T07:00Z +Cancel,153,2017,August,32,7,1,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-03-27,Summer,2017-08-07T07:00Z +Cancel,152,2017,August,32,7,1,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-07-13,Summer,2017-08-07T07:00Z +Cancel,128,2017,August,32,7,1,3,2,2,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,317,0,0,Canceled,2017-04-08,Summer,2017-08-07T07:00Z +Cancel,88,2017,August,32,7,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2017-05-15,Summer,2017-08-07T07:00Z +Cancel,138,2017,August,32,7,1,3,2,1,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,298,0,0,Canceled,2017-04-08,Summer,2017-08-07T07:00Z +Cancel,152,2017,August,32,7,1,2,2,0,0,BB,MAR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,248.33,0,0,Canceled,2017-03-21,Summer,2017-08-07T07:00Z +Cancel,216,2017,August,32,7,1,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,198,0,0,Canceled,2017-01-03,Summer,2017-08-07T07:00Z +Cancel,265,2017,August,32,7,1,4,2,2,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,207.18,0,0,Canceled,2016-11-15,Summer,2017-08-07T07:00Z +Cancel,216,2017,August,32,7,1,4,2,0,0,HB,ITA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,181.2,0,0,Canceled,2017-05-23,Summer,2017-08-07T07:00Z +Cancel,311,2017,August,32,7,1,3,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.6,0,0,Canceled,2017-04-04,Summer,2017-08-07T07:00Z +Cancel,187,2017,August,32,7,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,212,0,1,Canceled,2017-06-15,Summer,2017-08-07T07:00Z +Cancel,213,2017,August,32,7,1,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,197.4,0,1,Canceled,2017-04-24,Summer,2017-08-07T07:00Z +Cancel,228,2017,August,32,7,1,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,206,0,0,Canceled,2017-01-06,Summer,2017-08-07T07:00Z +Cancel,141,2017,August,32,7,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-06-15,Summer,2017-08-07T07:00Z +Cancel,141,2017,August,32,7,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,252,0,1,Canceled,2017-03-19,Summer,2017-08-07T07:00Z +Cancel,103,2017,August,32,7,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-06-06,Summer,2017-08-07T07:00Z +Cancel,143,2017,August,32,7,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,178.1,0,1,Canceled,2017-03-23,Summer,2017-08-07T07:00Z +Cancel,196,2017,August,32,7,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,1,Canceled,2017-04-25,Summer,2017-08-07T07:00Z +Cancel,204,2017,August,32,7,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,198,0,1,Canceled,2017-07-06,Summer,2017-08-07T07:00Z +Cancel,257,2017,August,32,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,3,Canceled,2017-05-21,Summer,2017-08-07T07:00Z +Cancel,316,2017,August,32,7,2,5,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,188.38,0,2,Canceled,2017-06-19,Summer,2017-08-07T07:00Z +Cancel,193,2017,August,32,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,1,Canceled,2017-06-26,Summer,2017-08-07T07:00Z +Cancel,200,2017,August,32,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-06-12,Summer,2017-08-07T07:00Z +Cancel,192,2017,August,32,7,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,164,0,0,Canceled,2017-01-31,Summer,2017-08-07T07:00Z +Cancel,200,2017,August,32,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-06-12,Summer,2017-08-07T07:00Z +Cancel,105,2017,August,32,7,3,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,1,Canceled,2017-04-30,Summer,2017-08-07T07:00Z +Cancel,188,2017,August,32,7,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,172,0,0,Canceled,2017-03-20,Summer,2017-08-07T07:00Z +Cancel,298,2017,August,32,7,3,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,195.95,0,1,Canceled,2016-10-24,Summer,2017-08-07T07:00Z +Cancel,260,2017,August,32,7,3,7,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2016-11-27,Summer,2017-08-07T07:00Z +Cancel,165,2017,August,32,7,3,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,151.5,0,0,Canceled,2017-02-28,Summer,2017-08-07T07:00Z +Cancel,328,2017,August,32,7,4,10,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292,0,0,Canceled,2016-09-20,Summer,2017-08-07T07:00Z +Cancel,153,2017,August,32,8,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-07-11,Summer,2017-08-08T07:00Z +Cancel,166,2017,August,32,8,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,215,0,0,Canceled,2017-03-10,Summer,2017-08-08T07:00Z +Cancel,196,2017,August,32,8,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,1,Canceled,2017-04-19,Summer,2017-08-08T07:00Z +Cancel,225,2017,August,32,8,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,206,0,2,Canceled,2017-01-12,Summer,2017-08-08T07:00Z +Cancel,193,2017,August,32,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-05-28,Summer,2017-08-08T07:00Z +Cancel,34,2017,August,32,8,0,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,216,0,0,Canceled,2017-07-10,Summer,2017-08-08T07:00Z +Cancel,34,2017,August,32,8,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,231.84,0,2,Canceled,2017-07-06,Summer,2017-08-08T07:00Z +Cancel,199,2017,August,32,8,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,1,Canceled,2017-02-04,Summer,2017-08-08T07:00Z +Cancel,314,2017,August,32,8,1,5,3,1,0,HB,MAR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,297,0,0,Canceled,2016-10-04,Summer,2017-08-08T07:00Z +Cancel,339,2017,August,32,8,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,1,Canceled,2016-10-15,Summer,2017-08-08T07:00Z +Cancel,32,2017,August,32,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-07-08,Summer,2017-08-09T07:00Z +Cancel,129,2017,August,32,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,259,0,1,Canceled,2017-05-30,Summer,2017-08-09T07:00Z +Cancel,184,2017,August,32,9,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,0,Canceled,2017-08-09,Summer,2017-08-09T07:00Z +Cancel,239,2017,August,32,9,1,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,196.2,0,0,Canceled,2016-12-13,Summer,2017-08-09T07:00Z +Cancel,198,2017,August,32,9,2,4,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,258,0,0,Canceled,2017-08-04,Summer,2017-08-09T07:00Z +Cancel,116,2017,August,32,9,2,8,2,1,0,HB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,392,0,0,Canceled,2017-04-17,Summer,2017-08-09T07:00Z +Cancel,28,2017,August,32,9,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,149.5,0,1,Canceled,2017-07-31,Summer,2017-08-09T07:00Z +Cancel,116,2017,August,32,9,2,8,2,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,294.5,0,2,Canceled,2017-08-09,Summer,2017-08-09T07:00Z +Cancel,0,2017,August,32,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2017-08-10,Summer,2017-08-10T07:00Z +Cancel,50,2017,August,32,10,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,280,0,1,Canceled,2017-06-21,Summer,2017-08-10T07:00Z +Cancel,91,2017,August,32,10,2,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,273.25,0,0,Canceled,2017-07-31,Summer,2017-08-10T07:00Z +Cancel,95,2017,August,32,10,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-05-08,Summer,2017-08-10T07:00Z +Cancel,95,2017,August,32,10,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,222,0,1,Canceled,2017-05-10,Summer,2017-08-10T07:00Z +Cancel,29,2017,August,32,10,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Group,146,0,1,Canceled,2017-07-31,Summer,2017-08-10T07:00Z +Cancel,94,2017,August,32,10,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-10,Summer,2017-08-10T07:00Z +Cancel,95,2017,August,32,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,230,0,1,Canceled,2017-05-10,Summer,2017-08-10T07:00Z +Cancel,45,2017,August,32,10,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-07-30,Summer,2017-08-10T07:00Z +Cancel,184,2017,August,32,10,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,264.29,0,0,Canceled,2017-02-11,Summer,2017-08-10T07:00Z +Cancel,172,2017,August,32,10,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,250,0,2,Canceled,2017-04-25,Summer,2017-08-10T07:00Z +Cancel,289,2017,August,32,10,2,8,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,1,Canceled,2017-03-24,Summer,2017-08-10T07:00Z +Cancel,338,2017,August,32,10,2,8,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,231.6,0,2,Canceled,2017-06-30,Summer,2017-08-10T07:00Z +Cancel,289,2017,August,32,10,2,8,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,1,Canceled,2017-03-24,Summer,2017-08-10T07:00Z +Cancel,199,2017,August,32,10,3,8,2,1,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,163.33,0,0,Canceled,2017-01-27,Summer,2017-08-10T07:00Z +Cancel,47,2017,August,32,11,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-06-26,Summer,2017-08-11T07:00Z +Cancel,11,2017,August,32,11,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,252,0,1,Canceled,2017-08-07,Summer,2017-08-11T07:00Z +Cancel,106,2017,August,32,11,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2017-07-18,Summer,2017-08-11T07:00Z +Cancel,311,2017,August,32,11,2,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,201.6,0,1,Canceled,2017-01-07,Summer,2017-08-11T07:00Z +Cancel,262,2017,August,32,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2016-11-24,Summer,2017-08-11T07:00Z +Cancel,184,2017,August,32,11,2,5,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,259.43,0,2,Canceled,2017-07-30,Summer,2017-08-11T07:00Z +Cancel,98,2017,August,32,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,2,Canceled,2017-06-22,Summer,2017-08-11T07:00Z +Cancel,87,2017,August,32,11,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,229.52,0,2,Canceled,2017-05-18,Summer,2017-08-11T07:00Z +Cancel,210,2017,August,32,11,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,199,0,1,Canceled,2017-03-21,Summer,2017-08-11T07:00Z +Cancel,238,2017,August,32,11,4,9,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,297.38,0,0,Canceled,2016-12-19,Summer,2017-08-11T07:00Z +Cancel,88,2017,August,32,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-04,Summer,2017-08-11T07:00Z +Cancel,311,2017,August,32,11,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,167.18,0,1,Canceled,2017-02-04,Summer,2017-08-11T07:00Z +Cancel,11,2017,August,32,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2017-07-31,Summer,2017-08-11T07:00Z +Cancel,306,2017,August,32,11,0,2,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,1,Canceled,2017-02-03,Summer,2017-08-11T07:00Z +Cancel,306,2017,August,32,11,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2017-01-01,Summer,2017-08-11T07:00Z +Cancel,311,2017,August,32,11,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,156.6,0,2,Canceled,2016-10-10,Summer,2017-08-11T07:00Z +Cancel,305,2017,August,32,11,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,2,Canceled,2017-02-09,Summer,2017-08-11T07:00Z +Cancel,161,2017,August,32,11,1,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,300,0,1,Canceled,2017-07-06,Summer,2017-08-11T07:00Z +Cancel,301,2017,August,32,11,1,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,2,Canceled,2017-02-04,Summer,2017-08-11T07:00Z +Cancel,306,2017,August,32,11,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,185.4,0,1,Canceled,2017-02-03,Summer,2017-08-11T07:00Z +Cancel,327,2017,August,32,12,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2016-09-30,Summer,2017-08-12T07:00Z +Cancel,201,2017,August,32,12,2,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,155.7,0,0,Canceled,2017-07-07,Summer,2017-08-12T07:00Z +Cancel,307,2017,August,32,12,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2017-03-21,Summer,2017-08-12T07:00Z +Cancel,132,2017,August,32,12,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232.33,0,1,Canceled,2017-06-04,Summer,2017-08-12T07:00Z +Cancel,224,2017,August,32,12,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,303.2,0,2,Canceled,2017-07-30,Summer,2017-08-12T07:00Z +Cancel,47,2017,August,32,12,2,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,340,0,0,Canceled,2017-08-07,Summer,2017-08-12T07:00Z +Cancel,36,2017,August,32,12,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-10,Summer,2017-08-12T07:00Z +Cancel,187,2017,August,32,12,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,256.57,0,0,Canceled,2017-02-06,Summer,2017-08-12T07:00Z +Cancel,46,2017,August,32,12,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,262,0,0,Canceled,2017-06-27,Summer,2017-08-12T07:00Z +Cancel,46,2017,August,32,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,212,0,0,Canceled,2017-07-12,Summer,2017-08-12T07:00Z +Cancel,186,2017,August,32,12,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,208.57,0,0,Canceled,2017-07-22,Summer,2017-08-12T07:00Z +Cancel,144,2017,August,32,12,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,225.5,0,1,Canceled,2017-04-18,Summer,2017-08-12T07:00Z +Cancel,269,2017,August,32,12,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,162,0,0,Canceled,2017-07-28,Summer,2017-08-12T07:00Z +Cancel,341,2017,August,32,12,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,2,Canceled,2016-09-20,Summer,2017-08-12T07:00Z +Cancel,341,2017,August,32,12,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,2,Canceled,2016-09-20,Summer,2017-08-12T07:00Z +Cancel,187,2017,August,32,12,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,151,0,0,Canceled,2017-02-06,Summer,2017-08-12T07:00Z +Cancel,187,2017,August,32,12,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,151,0,0,Canceled,2017-02-06,Summer,2017-08-12T07:00Z +Cancel,273,2017,August,32,12,4,10,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,179.66,0,2,Canceled,2017-04-24,Summer,2017-08-12T07:00Z +Cancel,193,2017,August,32,12,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,110.7,0,0,Canceled,2017-05-01,Summer,2017-08-12T07:00Z +Cancel,213,2017,August,32,12,4,10,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,228,0,1,Canceled,2017-03-17,Summer,2017-08-12T07:00Z +Cancel,0,2017,August,33,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,207,0,0,No-Show,2017-08-13,Summer,2017-08-13T07:00Z +Cancel,176,2017,August,33,13,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,1,Canceled,2017-03-03,Summer,2017-08-13T07:00Z +Cancel,176,2017,August,33,13,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,1,Canceled,2017-03-03,Summer,2017-08-13T07:00Z +Cancel,183,2017,August,33,13,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,193.33,0,0,Canceled,2017-02-12,Summer,2017-08-13T07:00Z +Cancel,95,2017,August,33,13,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-27,Summer,2017-08-13T07:00Z +Cancel,183,2017,August,33,13,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225.33,0,0,Canceled,2017-02-12,Summer,2017-08-13T07:00Z +Cancel,227,2017,August,33,13,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.44,0,1,Canceled,2017-04-06,Summer,2017-08-13T07:00Z +Cancel,130,2017,August,33,13,2,3,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,261,0,1,Canceled,2017-07-30,Summer,2017-08-13T07:00Z +Cancel,220,2017,August,33,13,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162.3,0,1,Canceled,2017-07-25,Summer,2017-08-13T07:00Z +Cancel,52,2017,August,33,13,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-06-28,Summer,2017-08-13T07:00Z +Cancel,59,2017,August,33,13,2,4,2,2,0,FB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,437,0,0,Canceled,2017-08-03,Summer,2017-08-13T07:00Z +Cancel,285,2017,August,33,13,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2016-11-13,Summer,2017-08-13T07:00Z +Cancel,166,2017,August,33,13,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,141,0,0,No-Show,2017-08-13,Summer,2017-08-13T07:00Z +Cancel,309,2017,August,33,13,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249,0,0,Canceled,2017-03-20,Summer,2017-08-13T07:00Z +Cancel,300,2017,August,33,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,219.6,0,0,Canceled,2016-10-17,Summer,2017-08-13T07:00Z +Cancel,285,2017,August,33,13,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2016-11-13,Summer,2017-08-13T07:00Z +Cancel,102,2017,August,33,13,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,230,0,0,Canceled,2017-05-17,Summer,2017-08-13T07:00Z +Cancel,216,2017,August,33,13,4,6,2,1,0,HB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,180.5,0,0,Canceled,2017-08-05,Summer,2017-08-13T07:00Z +Cancel,291,2017,August,33,13,4,6,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,117.3,0,1,Canceled,2017-01-06,Summer,2017-08-13T07:00Z +Cancel,291,2017,August,33,13,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,117.3,0,1,Canceled,2017-01-06,Summer,2017-08-13T07:00Z +Cancel,228,2017,August,33,13,4,9,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,207.23,0,2,Canceled,2017-01-19,Summer,2017-08-13T07:00Z +Cancel,0,2017,August,33,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,225,0,0,Canceled,2017-08-14,Summer,2017-08-14T07:00Z +Cancel,0,2017,August,33,14,1,0,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-08-14,Summer,2017-08-14T07:00Z +Cancel,0,2017,August,33,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,264,0,0,Canceled,2017-08-14,Summer,2017-08-14T07:00Z +Cancel,89,2017,August,33,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-06-05,Summer,2017-08-14T07:00Z +Cancel,53,2017,August,33,14,1,2,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,388,0,0,Canceled,2017-06-22,Summer,2017-08-14T07:00Z +Cancel,188,2017,August,33,14,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,204.67,0,1,Canceled,2017-03-03,Summer,2017-08-14T07:00Z +Cancel,206,2017,August,33,14,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 242, NULL,0,Transient,177.41,0,2,Canceled,2017-08-14,Summer,2017-08-14T07:00Z +Cancel,216,2017,August,33,14,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,181,0,1,Canceled,2017-01-12,Summer,2017-08-14T07:00Z +Cancel,175,2017,August,33,14,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-03-20,Summer,2017-08-14T07:00Z +Cancel,14,2017,August,33,14,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215,0,2,Canceled,2017-08-03,Summer,2017-08-14T07:00Z +Cancel,216,2017,August,33,14,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,181,0,1,Canceled,2017-01-12,Summer,2017-08-14T07:00Z +Cancel,295,2017,August,33,14,1,3,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249,0,0,Canceled,2016-10-25,Summer,2017-08-14T07:00Z +Cancel,175,2017,August,33,14,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,274.5,0,0,Canceled,2017-06-23,Summer,2017-08-14T07:00Z +Cancel,175,2017,August,33,14,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-03-20,Summer,2017-08-14T07:00Z +Cancel,183,2017,August,33,14,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185,0,0,Canceled,2017-02-12,Summer,2017-08-14T07:00Z +Cancel,99,2017,August,33,14,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2017-07-24,Summer,2017-08-14T07:00Z +Cancel,91,2017,August,33,14,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Canceled,2017-06-23,Summer,2017-08-14T07:00Z +Cancel,342,2017,August,33,14,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,2,Canceled,2016-09-09,Summer,2017-08-14T07:00Z +Cancel,133,2017,August,33,14,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,254,0,2,Canceled,2017-04-05,Summer,2017-08-14T07:00Z +Cancel,146,2017,August,33,14,2,5,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,310,0,1,Canceled,2017-06-12,Summer,2017-08-14T07:00Z +Cancel,13,2017,August,33,14,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 531,0,Transient,159,0,0,Canceled,2017-08-07,Summer,2017-08-14T07:00Z +Cancel,227,2017,August,33,14,1,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,C,1,No Deposit , 240, NULL,0,Transient,208.67,0,1,Canceled,2017-02-17,Summer,2017-08-14T07:00Z +Cancel,195,2017,August,33,14,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,201.6,0,2,Canceled,2017-05-29,Summer,2017-08-14T07:00Z +Cancel,146,2017,August,33,14,2,5,3,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,1,Canceled,2017-06-12,Summer,2017-08-14T07:00Z +Cancel,33,2017,August,33,14,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,1,Canceled,2017-07-12,Summer,2017-08-14T07:00Z +Cancel,182,2017,August,33,14,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,209.86,0,0,Canceled,2017-02-13,Summer,2017-08-14T07:00Z +Cancel,295,2017,August,33,14,2,5,3,1,0,HB,LVA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,297,0,0,Canceled,2017-04-24,Summer,2017-08-14T07:00Z +Cancel,358,2017,August,33,14,3,5,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,308,0,0,Canceled,2016-09-05,Summer,2017-08-14T07:00Z +Cancel,269,2017,August,33,14,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,147,0,0,Canceled,2016-11-18,Summer,2017-08-14T07:00Z +Cancel,244,2017,August,33,14,3,7,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,246.8,0,0,Canceled,2017-05-22,Summer,2017-08-14T07:00Z +Cancel,16,2017,August,33,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2017-08-04,Summer,2017-08-15T07:00Z +Cancel,16,2017,August,33,15,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,3,No Deposit , 240, NULL,0,Transient,259,0,1,Canceled,2017-08-04,Summer,2017-08-15T07:00Z +Cancel,16,2017,August,33,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,209,0,1,Canceled,2017-08-04,Summer,2017-08-15T07:00Z +Cancel,1,2017,August,33,15,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149,0,0,Canceled,2017-08-14,Summer,2017-08-15T07:00Z +Cancel,7,2017,August,33,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-08-08,Summer,2017-08-15T07:00Z +Cancel,6,2017,August,33,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,190,0,1,Canceled,2017-08-09,Summer,2017-08-15T07:00Z +Cancel,270,2017,August,33,15,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-02-05,Summer,2017-08-15T07:00Z +Cancel,194,2017,August,33,15,0,5,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-02-22,Summer,2017-08-15T07:00Z +Cancel,126,2017,August,33,15,1,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-04-24,Summer,2017-08-15T07:00Z +Cancel,221,2017,August,33,15,1,5,1,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,224.33,0,2,Canceled,2017-01-09,Summer,2017-08-15T07:00Z +Cancel,39,2017,August,33,15,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-21,Summer,2017-08-15T07:00Z +Cancel,126,2017,August,33,15,1,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-04-24,Summer,2017-08-15T07:00Z +Cancel,15,2017,August,33,15,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,273,0,1,Canceled,2017-08-03,Summer,2017-08-15T07:00Z +Cancel,284,2017,August,33,15,0,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,174.6,0,2,Canceled,2016-11-09,Summer,2017-08-15T07:00Z +Cancel,141,2017,August,33,15,2,5,2,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,245,0,0,Canceled,2017-03-28,Summer,2017-08-15T07:00Z +Cancel,24,2017,August,33,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,0,1,Canceled,2017-08-03,Summer,2017-08-15T07:00Z +Cancel,198,2017,August,33,15,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231.43,0,2,Canceled,2017-02-16,Summer,2017-08-15T07:00Z +Cancel,97,2017,August,33,15,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,0,Canceled,2017-06-17,Summer,2017-08-15T07:00Z +Cancel,203,2017,August,33,15,3,10,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154.85,0,1,Canceled,2017-05-15,Summer,2017-08-15T07:00Z +Cancel,371,2017,August,33,15,2,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Canceled,2017-04-13,Summer,2017-08-15T07:00Z +Cancel,49,2017,August,33,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,230,0,2,Canceled,2017-08-16,Summer,2017-08-16T07:00Z +Cancel,15,2017,August,33,16,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,310,0,0,Canceled,2017-08-04,Summer,2017-08-16T07:00Z +Cancel,49,2017,August,33,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,230,0,2,Canceled,2017-08-16,Summer,2017-08-16T07:00Z +Cancel,36,2017,August,33,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,184,0,1,Canceled,2017-08-02,Summer,2017-08-16T07:00Z +Cancel,36,2017,August,33,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,208.8,0,1,Canceled,2017-07-12,Summer,2017-08-16T07:00Z +Cancel,227,2017,August,33,16,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249,0,0,Canceled,2017-06-12,Summer,2017-08-16T07:00Z +Cancel,61,2017,August,33,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Group,188.6,0,0,Canceled,2017-06-16,Summer,2017-08-16T07:00Z +Cancel,66,2017,August,33,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-07-04,Summer,2017-08-16T07:00Z +Cancel,211,2017,August,33,16,0,4,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,153.75,0,0,Canceled,2017-07-25,Summer,2017-08-16T07:00Z +Cancel,142,2017,August,33,16,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,229,0,2,Canceled,2017-08-05,Summer,2017-08-16T07:00Z +Cancel,66,2017,August,33,16,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-07-04,Summer,2017-08-16T07:00Z +Cancel,145,2017,August,33,16,1,4,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,252,0,1,Canceled,2017-03-27,Summer,2017-08-16T07:00Z +Cancel,36,2017,August,33,16,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-07-12,Summer,2017-08-16T07:00Z +Cancel,37,2017,August,33,16,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-11,Summer,2017-08-16T07:00Z +Cancel,217,2017,August,33,16,2,8,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,144.88,0,0,Canceled,2017-02-25,Summer,2017-08-16T07:00Z +Cancel,133,2017,August,33,16,2,5,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,264,0,2,Canceled,2017-04-06,Summer,2017-08-16T07:00Z +Cancel,0,2017,August,33,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,200,0,0,Canceled,2017-08-17,Summer,2017-08-17T07:00Z +Cancel,16,2017,August,33,17,0,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,308,0,1,Canceled,2017-08-01,Summer,2017-08-17T07:00Z +Cancel,2,2017,August,33,17,0,1,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215,0,2,Canceled,2017-08-15,Summer,2017-08-17T07:00Z +Cancel,82,2017,August,33,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 526, NULL,0,Transient,184,0,0,Canceled,2017-05-27,Summer,2017-08-17T07:00Z +Cancel,2,2017,August,33,17,0,1,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215,0,2,Canceled,2017-08-15,Summer,2017-08-17T07:00Z +Cancel,0,2017,August,33,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,200,0,0,Canceled,2017-08-17,Summer,2017-08-17T07:00Z +Keep,3,2017,August,33,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,135,0,0,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Cancel,129,2017,August,33,17,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,1,Canceled,2017-04-19,Summer,2017-08-17T07:00Z +Cancel,13,2017,August,33,17,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,241,0,0,Canceled,2017-08-17,Summer,2017-08-17T07:00Z +Cancel,184,2017,August,33,17,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,2,Canceled,2017-02-17,Summer,2017-08-17T07:00Z +Cancel,77,2017,August,33,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,184,0,1,Canceled,2017-07-30,Summer,2017-08-17T07:00Z +Cancel,40,2017,August,33,17,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,289.8,0,1,Canceled,2017-07-22,Summer,2017-08-17T07:00Z +Cancel,69,2017,August,33,17,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,378,0,0,Canceled,2017-06-26,Summer,2017-08-17T07:00Z +Cancel,168,2017,August,33,17,1,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,338,0,0,Canceled,2017-05-25,Summer,2017-08-17T07:00Z +Cancel,40,2017,August,33,17,1,3,1,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,311.5,0,1,Canceled,2017-07-22,Summer,2017-08-17T07:00Z +Cancel,187,2017,August,33,17,1,3,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-02-12,Summer,2017-08-17T07:00Z +Cancel,177,2017,August,33,17,1,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,318,0,0,Canceled,2017-05-25,Summer,2017-08-17T07:00Z +Cancel,149,2017,August,33,17,1,3,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,240,0,2,Canceled,2017-03-23,Summer,2017-08-17T07:00Z +Cancel,40,2017,August,33,17,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,289.8,0,1,Canceled,2017-07-22,Summer,2017-08-17T07:00Z +Cancel,212,2017,August,33,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,0,Canceled,2017-08-04,Summer,2017-08-17T07:00Z +Cancel,247,2017,August,33,17,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,130.05,0,0,Canceled,2017-04-20,Summer,2017-08-17T07:00Z +Cancel,12,2017,August,33,17,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,247,0,1,Canceled,2017-08-14,Summer,2017-08-17T07:00Z +Cancel,212,2017,August,33,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,0,Canceled,2017-08-04,Summer,2017-08-17T07:00Z +Cancel,209,2017,August,33,17,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.75,0,0,Canceled,2017-01-20,Summer,2017-08-17T07:00Z +Cancel,168,2017,August,33,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,176,0,1,Canceled,2017-03-10,Summer,2017-08-17T07:00Z +Cancel,168,2017,August,33,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,176,0,1,Canceled,2017-03-10,Summer,2017-08-17T07:00Z +Cancel,161,2017,August,33,17,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 468, NULL,0,Transient,217.6,0,0,Canceled,2017-03-21,Summer,2017-08-17T07:00Z +Cancel,245,2017,August,33,17,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-06-03,Summer,2017-08-17T07:00Z +Cancel,161,2017,August,33,17,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 468, NULL,0,Transient,217.6,0,0,Canceled,2017-03-21,Summer,2017-08-17T07:00Z +Cancel,245,2017,August,33,17,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-05-01,Summer,2017-08-17T07:00Z +Cancel,179,2017,August,33,17,2,4,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,290,0,0,Canceled,2017-02-21,Summer,2017-08-17T07:00Z +Cancel,213,2017,August,33,17,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,154.08,0,0,Canceled,2017-01-17,Summer,2017-08-17T07:00Z +Cancel,213,2017,August,33,17,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,154.08,0,0,Canceled,2017-01-17,Summer,2017-08-17T07:00Z +Cancel,212,2017,August,33,17,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,147,0,0,Canceled,2017-07-28,Summer,2017-08-17T07:00Z +Cancel,358,2017,August,33,17,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Canceled,2016-08-24,Summer,2017-08-17T07:00Z +Cancel,154,2017,August,33,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,238.57,0,2,Canceled,2017-04-12,Summer,2017-08-17T07:00Z +Cancel,212,2017,August,33,17,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,147,0,0,Canceled,2017-07-28,Summer,2017-08-17T07:00Z +Cancel,84,2017,August,33,17,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,2,Canceled,2017-05-27,Summer,2017-08-17T07:00Z +Cancel,172,2017,August,33,17,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,2,Canceled,2017-03-02,Summer,2017-08-17T07:00Z +Cancel,358,2017,August,33,17,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,290,0,1,Canceled,2017-04-24,Summer,2017-08-17T07:00Z +Cancel,213,2017,August,33,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,132.3,0,0,Canceled,2017-04-04,Summer,2017-08-17T07:00Z +Cancel,151,2017,August,33,17,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,217.5,0,1,Canceled,2017-03-27,Summer,2017-08-17T07:00Z +Cancel,65,2017,August,33,17,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-06-20,Summer,2017-08-17T07:00Z +Cancel,168,2017,August,33,17,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,217.5,0,1,Canceled,2017-03-27,Summer,2017-08-17T07:00Z +Cancel,168,2017,August,33,17,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,237.5,0,2,Canceled,2017-03-27,Summer,2017-08-17T07:00Z +Cancel,44,2017,August,33,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,213,0,1,Canceled,2017-07-25,Summer,2017-08-18T07:00Z +Cancel,158,2017,August,33,18,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-08-17,Summer,2017-08-18T07:00Z +Cancel,49,2017,August,33,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-07-17,Summer,2017-08-18T07:00Z +Cancel,117,2017,August,33,18,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,282,0,1,Canceled,2017-05-14,Summer,2017-08-18T07:00Z +Cancel,19,2017,August,33,18,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,0,Canceled,2017-07-30,Summer,2017-08-18T07:00Z +Cancel,124,2017,August,33,18,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-08-17,Summer,2017-08-18T07:00Z +Cancel,88,2017,August,33,18,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-05-26,Summer,2017-08-18T07:00Z +Cancel,144,2017,August,33,18,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,249,0,2,Canceled,2017-06-01,Summer,2017-08-18T07:00Z +Cancel,33,2017,August,33,18,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,330,0,0,Canceled,2017-07-19,Summer,2017-08-18T07:00Z +Cancel,200,2017,August,33,18,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-02-02,Summer,2017-08-18T07:00Z +Cancel,200,2017,August,33,18,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,250,0,0,Canceled,2017-02-02,Summer,2017-08-18T07:00Z +Cancel,76,2017,August,33,18,2,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,265,0,1,Canceled,2017-08-04,Summer,2017-08-18T07:00Z +Cancel,44,2017,August,33,18,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,257.6,0,1,Canceled,2017-07-06,Summer,2017-08-18T07:00Z +Cancel,39,2017,August,33,18,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,257.6,0,1,Canceled,2017-07-13,Summer,2017-08-18T07:00Z +Cancel,64,2017,August,33,18,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2017-07-04,Summer,2017-08-18T07:00Z +Cancel,187,2017,August,33,18,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180,0,2,Canceled,2017-03-23,Summer,2017-08-18T07:00Z +Cancel,257,2017,August,33,18,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,231.6,0,0,Canceled,2017-04-11,Summer,2017-08-18T07:00Z +Cancel,185,2017,August,33,18,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-07-13,Summer,2017-08-18T07:00Z +Cancel,8,2017,August,33,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,146,0,0,Canceled,2017-08-14,Summer,2017-08-18T07:00Z +Cancel,173,2017,August,33,18,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,1,Canceled,2017-02-28,Summer,2017-08-18T07:00Z +Cancel,203,2017,August,33,18,4,8,2,1,0,BB,AZE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,126.8,0,3,Canceled,2017-02-25,Summer,2017-08-18T07:00Z +Cancel,108,2017,August,33,18,2,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,227.22,0,1,Canceled,2017-07-06,Summer,2017-08-18T07:00Z +Cancel,177,2017,August,33,18,2,7,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-03-09,Summer,2017-08-18T07:00Z +Cancel,259,2017,August,33,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-03-23,Summer,2017-08-19T07:00Z +Cancel,2,2017,August,33,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,234,0,0,Canceled,2017-08-18,Summer,2017-08-19T07:00Z +Cancel,234,2017,August,33,19,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,181.8,0,2,Canceled,2017-05-23,Summer,2017-08-19T07:00Z +Cancel,195,2017,August,33,19,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212,0,0,Canceled,2017-06-08,Summer,2017-08-19T07:00Z +Cancel,160,2017,August,33,19,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,238,0,0,Canceled,2017-03-12,Summer,2017-08-19T07:00Z +Cancel,173,2017,August,33,19,2,3,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,250,0,0,Canceled,2017-02-28,Summer,2017-08-19T07:00Z +Cancel,177,2017,August,33,19,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,0,Canceled,2017-02-23,Summer,2017-08-19T07:00Z +Cancel,108,2017,August,33,19,2,4,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,340,0,1,Canceled,2017-05-03,Summer,2017-08-19T07:00Z +Cancel,113,2017,August,33,19,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,214.84,0,0,Canceled,2017-05-28,Summer,2017-08-19T07:00Z +Cancel,187,2017,August,33,19,2,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248,0,0,Canceled,2017-05-12,Summer,2017-08-19T07:00Z +Cancel,199,2017,August,33,19,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,123.2,0,0,Canceled,2017-07-14,Summer,2017-08-19T07:00Z +Cancel,160,2017,August,33,19,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,238,0,0,Canceled,2017-03-12,Summer,2017-08-19T07:00Z +Cancel,306,2017,August,33,19,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156.6,0,1,Canceled,2016-12-10,Summer,2017-08-19T07:00Z +Cancel,211,2017,August,33,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,203.75,0,1,Canceled,2017-07-08,Summer,2017-08-19T07:00Z +Cancel,125,2017,August,33,19,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-04-16,Summer,2017-08-19T07:00Z +Cancel,211,2017,August,33,19,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,133.74,0,0,Canceled,2017-01-27,Summer,2017-08-19T07:00Z +Cancel,129,2017,August,33,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,205.6,0,0,Canceled,2017-08-09,Summer,2017-08-19T07:00Z +Cancel,129,2017,August,33,19,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,192.8,0,0,Canceled,2017-08-09,Summer,2017-08-19T07:00Z +Cancel,146,2017,August,33,19,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,235.71,0,0,Canceled,2017-06-19,Summer,2017-08-19T07:00Z +Cancel,216,2017,August,33,19,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,204,0,0,Canceled,2017-07-27,Summer,2017-08-19T07:00Z +Cancel,211,2017,August,33,19,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,174.24,0,0,Canceled,2017-01-27,Summer,2017-08-19T07:00Z +Cancel,122,2017,August,33,19,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,230,0,0,Canceled,2017-08-09,Summer,2017-08-19T07:00Z +Cancel,129,2017,August,33,19,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,247.2,0,0,Canceled,2017-08-09,Summer,2017-08-19T07:00Z +Cancel,349,2017,August,33,19,4,6,2,2,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,227.1,0,0,Canceled,2017-04-28,Summer,2017-08-19T07:00Z +Cancel,220,2017,August,33,19,4,6,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-01-12,Summer,2017-08-19T07:00Z +Cancel,353,2017,August,33,19,4,6,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,1,Canceled,2016-09-04,Summer,2017-08-19T07:00Z +Cancel,5,2017,August,34,20,1,0,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,0,1,Canceled,2017-08-20,Summer,2017-08-20T07:00Z +Cancel,118,2017,August,34,20,2,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-04-27,Summer,2017-08-20T07:00Z +Cancel,210,2017,August,34,20,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,2,Canceled,2017-05-27,Summer,2017-08-20T07:00Z +Cancel,294,2017,August,34,20,2,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,190.88,0,2,Canceled,2017-07-27,Summer,2017-08-20T07:00Z +Cancel,337,2017,August,34,20,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.75,0,0,Canceled,2016-10-30,Summer,2017-08-20T07:00Z +Cancel,64,2017,August,34,20,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,1,Canceled,2017-06-18,Summer,2017-08-20T07:00Z +Cancel,178,2017,August,34,20,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Canceled,2017-07-14,Summer,2017-08-20T07:00Z +Cancel,161,2017,August,34,20,2,3,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,268,0,0,Canceled,2017-03-12,Summer,2017-08-20T07:00Z +Cancel,161,2017,August,34,20,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,0,1,Canceled,2017-03-27,Summer,2017-08-20T07:00Z +Cancel,315,2017,August,34,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,138.38,0,1,Canceled,2016-11-03,Summer,2017-08-20T07:00Z +Cancel,360,2017,August,34,20,2,4,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,343,0,0,Canceled,2016-09-24,Summer,2017-08-20T07:00Z +Cancel,173,2017,August,34,20,2,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,254,0,1,Canceled,2017-03-09,Summer,2017-08-20T07:00Z +Cancel,190,2017,August,34,20,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-02-18,Summer,2017-08-20T07:00Z +Cancel,210,2017,August,34,20,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,140.94,0,1,Canceled,2017-06-08,Summer,2017-08-20T07:00Z +Cancel,277,2017,August,34,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,165.37,0,1,Canceled,2017-08-02,Summer,2017-08-20T07:00Z +Cancel,143,2017,August,34,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,174.04,0,1,Canceled,2017-03-30,Summer,2017-08-20T07:00Z +Cancel,90,2017,August,34,20,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,D,0,No Deposit , 241, NULL,0,Transient,289.6,0,1,Canceled,2017-05-23,Summer,2017-08-20T07:00Z +Cancel,60,2017,August,34,20,4,7,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,255.45,0,3,Canceled,2017-07-05,Summer,2017-08-20T07:00Z +Cancel,60,2017,August,34,20,4,7,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,255.45,0,3,Canceled,2017-07-05,Summer,2017-08-20T07:00Z +Cancel,106,2017,August,34,20,4,9,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234.62,0,1,Canceled,2017-07-18,Summer,2017-08-20T07:00Z +Cancel,195,2017,August,34,20,4,9,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-04-24,Summer,2017-08-20T07:00Z +Cancel,83,2017,August,34,20,6,13,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,204.74,0,1,Canceled,2017-05-29,Summer,2017-08-20T07:00Z +Cancel,19,2017,August,34,21,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,260,0,1,Canceled,2017-08-10,Summer,2017-08-21T07:00Z +Cancel,25,2017,August,34,21,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-07-27,Summer,2017-08-21T07:00Z +Cancel,193,2017,August,34,21,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,130.05,0,0,Canceled,2017-02-14,Summer,2017-08-21T07:00Z +Cancel,197,2017,August,34,21,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-02-05,Summer,2017-08-21T07:00Z +Cancel,21,2017,August,34,21,1,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,340,0,0,Canceled,2017-08-02,Summer,2017-08-21T07:00Z +Cancel,38,2017,August,34,21,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,199.12,0,1,Canceled,2017-08-09,Summer,2017-08-21T07:00Z +Cancel,34,2017,August,34,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,3,Canceled,2017-07-27,Summer,2017-08-21T07:00Z +Cancel,247,2017,August,34,21,1,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2017-01-20,Summer,2017-08-21T07:00Z +Cancel,295,2017,August,34,21,1,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,297,0,0,Canceled,2017-07-21,Summer,2017-08-21T07:00Z +Cancel,206,2017,August,34,21,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,0,Canceled,2017-03-15,Summer,2017-08-21T07:00Z +Cancel,119,2017,August,34,21,1,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,378,0,0,Canceled,2017-08-10,Summer,2017-08-21T07:00Z +Cancel,189,2017,August,34,21,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Canceled,2017-02-17,Summer,2017-08-21T07:00Z +Cancel,202,2017,August,34,21,1,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,192,0,2,Canceled,2017-04-21,Summer,2017-08-21T07:00Z +Cancel,122,2017,August,34,21,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,295.5,0,1,Canceled,2017-04-21,Summer,2017-08-21T07:00Z +Cancel,12,2017,August,34,21,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,242,0,0,Canceled,2017-08-10,Summer,2017-08-21T07:00Z +Cancel,238,2017,August,34,21,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-10,Summer,2017-08-21T07:00Z +Cancel,189,2017,August,34,21,1,5,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,232,0,0,Canceled,2017-02-17,Summer,2017-08-21T07:00Z +Cancel,29,2017,August,34,21,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-08-03,Summer,2017-08-21T07:00Z +Cancel,233,2017,August,34,21,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,2,Canceled,2017-01-13,Summer,2017-08-21T07:00Z +Cancel,136,2017,August,34,21,2,5,2,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,240.91,0,0,Canceled,2017-04-13,Summer,2017-08-21T07:00Z +Cancel,144,2017,August,34,21,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,278.14,0,1,Canceled,2017-04-02,Summer,2017-08-21T07:00Z +Cancel,136,2017,August,34,21,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,206.51,0,3,Canceled,2017-04-10,Summer,2017-08-21T07:00Z +Cancel,217,2017,August,34,21,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 472, NULL,0,Transient,52.5,0,0,Canceled,2017-01-30,Summer,2017-08-21T07:00Z +Cancel,193,2017,August,34,21,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,184.5,0,0,Canceled,2017-08-02,Summer,2017-08-21T07:00Z +Cancel,204,2017,August,34,21,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191.14,0,0,Canceled,2017-01-30,Summer,2017-08-21T07:00Z +Cancel,202,2017,August,34,21,3,6,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,187.4,0,0,Canceled,2017-01-31,Summer,2017-08-21T07:00Z +Cancel,15,2017,August,34,22,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,260,0,0,Canceled,2017-08-07,Summer,2017-08-22T07:00Z +Cancel,3,2017,August,34,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 306, NULL,0,Transient,125.46,0,0,Canceled,2017-08-22,Summer,2017-08-22T07:00Z +Cancel,101,2017,August,34,22,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,280,0,1,Canceled,2017-05-19,Summer,2017-08-22T07:00Z +Cancel,49,2017,August,34,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-07-06,Summer,2017-08-22T07:00Z +Cancel,157,2017,August,34,22,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,237.5,0,0,Canceled,2017-07-05,Summer,2017-08-22T07:00Z +Cancel,26,2017,August,34,22,0,4,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,319,0,2,Canceled,2017-08-18,Summer,2017-08-22T07:00Z +Cancel,181,2017,August,34,22,0,5,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,268,0,0,Canceled,2017-06-12,Summer,2017-08-22T07:00Z +Cancel,58,2017,August,34,23,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,225.6,0,0,Canceled,2017-06-26,Summer,2017-08-23T07:00Z +Cancel,43,2017,August,34,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-07-27,Summer,2017-08-23T07:00Z +Cancel,212,2017,August,34,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192,0,0,Canceled,2017-06-04,Summer,2017-08-23T07:00Z +Cancel,24,2017,August,34,23,2,4,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,216.67,0,1,Canceled,2017-08-13,Summer,2017-08-23T07:00Z +Cancel,209,2017,August,34,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,158,0,1,Canceled,2017-01-31,Summer,2017-08-23T07:00Z +Cancel,223,2017,August,34,23,2,5,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-01-31,Summer,2017-08-23T07:00Z +Cancel,156,2017,August,34,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,225.71,0,1,Canceled,2017-03-21,Summer,2017-08-23T07:00Z +Cancel,63,2017,August,34,23,2,5,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 429, NULL,0,Transient,174.54,0,0,Canceled,2017-07-23,Summer,2017-08-23T07:00Z +Cancel,156,2017,August,34,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205.71,0,1,Canceled,2017-03-21,Summer,2017-08-23T07:00Z +Cancel,223,2017,August,34,23,2,5,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,204,0,2,Canceled,2017-02-21,Summer,2017-08-23T07:00Z +Cancel,95,2017,August,34,23,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,238.57,0,1,Canceled,2017-06-06,Summer,2017-08-23T07:00Z +Cancel,195,2017,August,34,23,2,8,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,39,0,0,Canceled,2017-02-09,Summer,2017-08-23T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,111,2017,August,34,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-05-07,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,60,2017,August,34,24,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,252,0,0,Canceled,2017-06-26,Summer,2017-08-24T07:00Z +Cancel,44,2017,August,34,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,240,0,1,Canceled,2017-07-13,Summer,2017-08-24T07:00Z +Cancel,338,2017,August,34,24,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.11,0,1,Canceled,2017-07-17,Summer,2017-08-24T07:00Z +Cancel,197,2017,August,34,24,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,1,Canceled,2017-06-29,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,77,2017,August,34,24,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient,198,0,0,Canceled,2017-06-12,Summer,2017-08-24T07:00Z +Cancel,20,2017,August,34,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,255,0,1,Canceled,2017-08-06,Summer,2017-08-24T07:00Z +Cancel,71,2017,August,34,24,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,220,0,0,Canceled,2017-07-23,Summer,2017-08-24T07:00Z +Cancel,198,2017,August,34,24,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,0,Canceled,2017-02-08,Summer,2017-08-24T07:00Z +Cancel,338,2017,August,34,24,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201.6,0,1,Canceled,2017-07-17,Summer,2017-08-24T07:00Z +Cancel,144,2017,August,34,24,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,0,Canceled,2017-04-09,Summer,2017-08-24T07:00Z +Cancel,237,2017,August,34,24,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-03,Summer,2017-08-24T07:00Z +Cancel,162,2017,August,34,24,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,208.05,0,0,Canceled,2017-03-15,Summer,2017-08-24T07:00Z +Cancel,58,2017,August,34,24,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,239.14,0,0,Canceled,2017-08-01,Summer,2017-08-24T07:00Z +Cancel,163,2017,August,34,24,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,188.03,0,0,Canceled,2017-03-22,Summer,2017-08-24T07:00Z +Cancel,165,2017,August,34,24,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 5, NULL,0,Transient,229.43,0,0,Canceled,2017-04-25,Summer,2017-08-24T07:00Z +Cancel,162,2017,August,34,24,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,208.05,0,0,Canceled,2017-03-22,Summer,2017-08-24T07:00Z +Cancel,198,2017,August,34,24,2,5,2,1,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,204.75,0,0,Canceled,2017-08-14,Summer,2017-08-24T07:00Z +Cancel,60,2017,August,34,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,1,Canceled,2017-06-26,Summer,2017-08-25T07:00Z +Cancel,198,2017,August,34,25,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,1,Canceled,2017-02-13,Summer,2017-08-25T07:00Z +Cancel,26,2017,August,34,25,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,216.67,0,1,Canceled,2017-07-30,Summer,2017-08-25T07:00Z +Cancel,31,2017,August,34,25,2,2,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,250,0,2,Canceled,2017-08-13,Summer,2017-08-25T07:00Z +Cancel,72,2017,August,34,25,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,260,0,2,Canceled,2017-07-19,Summer,2017-08-25T07:00Z +Cancel,90,2017,August,34,25,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,270,0,1,Canceled,2017-06-13,Summer,2017-08-25T07:00Z +Cancel,149,2017,August,34,25,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,249,0,1,Canceled,2017-04-02,Summer,2017-08-25T07:00Z +Cancel,150,2017,August,34,25,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2017-04-11,Summer,2017-08-25T07:00Z +Cancel,253,2017,August,34,25,2,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-07,Summer,2017-08-25T07:00Z +Cancel,167,2017,August,34,25,2,4,2,2,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,331.33,0,0,Canceled,2017-03-15,Summer,2017-08-25T07:00Z +Cancel,253,2017,August,34,25,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-07,Summer,2017-08-25T07:00Z +Cancel,253,2017,August,34,25,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,2,Canceled,2017-01-07,Summer,2017-08-25T07:00Z +Cancel,110,2017,August,34,25,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214,0,0,Canceled,2017-05-09,Summer,2017-08-25T07:00Z +Cancel,253,2017,August,34,25,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153.75,0,1,Canceled,2017-01-07,Summer,2017-08-25T07:00Z +Cancel,38,2017,August,34,25,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,251.43,0,1,Canceled,2017-08-13,Summer,2017-08-25T07:00Z +Cancel,172,2017,August,34,25,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,259,0,0,Canceled,2017-03-07,Summer,2017-08-25T07:00Z +Cancel,353,2017,August,34,25,2,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249,0,2,No-Show,2017-08-25,Summer,2017-08-25T07:00Z +Cancel,0,2017,August,34,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,235,0,0,Canceled,2017-08-26,Summer,2017-08-26T07:00Z +Cancel,172,2017,August,34,26,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,207,0,0,Canceled,2017-03-08,Summer,2017-08-26T07:00Z +Cancel,17,2017,August,34,26,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,240,0,2,Canceled,2017-08-23,Summer,2017-08-26T07:00Z +Cancel,45,2017,August,34,26,2,1,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,243.33,0,1,Canceled,2017-07-18,Summer,2017-08-26T07:00Z +Cancel,74,2017,August,34,26,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,303.33,0,1,Canceled,2017-08-09,Summer,2017-08-26T07:00Z +Cancel,143,2017,August,34,26,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,295.67,0,1,Canceled,2017-04-09,Summer,2017-08-26T07:00Z +Cancel,204,2017,August,34,26,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,140.4,0,0,Canceled,2017-07-28,Summer,2017-08-26T07:00Z +Cancel,143,2017,August,34,26,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,295.67,0,1,Canceled,2017-04-09,Summer,2017-08-26T07:00Z +Cancel,191,2017,August,34,26,2,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,173,0,0,Canceled,2017-08-01,Summer,2017-08-26T07:00Z +Cancel,80,2017,August,34,26,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,1,Canceled,2017-07-15,Summer,2017-08-26T07:00Z +Cancel,181,2017,August,34,26,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,220,0,1,Canceled,2017-04-04,Summer,2017-08-26T07:00Z +Cancel,80,2017,August,34,26,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,1,Canceled,2017-07-15,Summer,2017-08-26T07:00Z +Cancel,25,2017,August,34,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,242,0,2,No-Show,2017-08-26,Summer,2017-08-26T07:00Z +Cancel,29,2017,August,34,26,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,342.17,0,0,Canceled,2017-08-02,Summer,2017-08-26T07:00Z +Cancel,17,2017,August,34,26,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,262.38,0,0,Canceled,2017-08-15,Summer,2017-08-26T07:00Z +Cancel,66,2017,August,34,26,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,284.86,0,1,Canceled,2017-08-16,Summer,2017-08-26T07:00Z +Cancel,103,2017,August,34,26,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,251.43,0,1,Canceled,2017-05-25,Summer,2017-08-26T07:00Z +Cancel,184,2017,August,34,26,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,173,0,0,Canceled,2017-03-07,Summer,2017-08-26T07:00Z +Cancel,142,2017,August,34,26,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,155,0,0,Canceled,2017-08-07,Summer,2017-08-26T07:00Z +Cancel,47,2017,August,34,26,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,340.86,0,0,Canceled,2017-07-22,Summer,2017-08-26T07:00Z +Cancel,185,2017,August,34,26,2,5,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 5, NULL,0,Transient,251,0,0,Canceled,2017-03-06,Summer,2017-08-26T07:00Z +Cancel,90,2017,August,34,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,201.43,0,1,Canceled,2017-07-02,Summer,2017-08-26T07:00Z +Cancel,87,2017,August,34,26,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,299.43,0,1,Canceled,2017-06-05,Summer,2017-08-26T07:00Z +Cancel,17,2017,August,34,26,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,294.29,0,1,Canceled,2017-08-10,Summer,2017-08-26T07:00Z +Cancel,3,2017,August,34,26,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,183.13,0,0,Canceled,2017-08-23,Summer,2017-08-26T07:00Z +Cancel,17,2017,August,34,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,194.29,0,1,Canceled,2017-08-10,Summer,2017-08-26T07:00Z +Cancel,212,2017,August,34,26,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,179.89,0,0,Canceled,2017-06-26,Summer,2017-08-26T07:00Z +Cancel,40,2017,August,34,26,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,293.86,0,0,Canceled,2017-07-18,Summer,2017-08-26T07:00Z +Cancel,191,2017,August,34,26,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,1,Canceled,2017-07-17,Summer,2017-08-26T07:00Z +Cancel,19,2017,August,34,26,4,6,2,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,245.3,0,0,Canceled,2017-08-14,Summer,2017-08-26T07:00Z +Cancel,181,2017,August,34,26,4,10,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,205.14,0,0,Canceled,2017-03-01,Summer,2017-08-26T07:00Z +Cancel,73,2017,August,35,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,0,Canceled,2017-06-26,Summer,2017-08-27T07:00Z +Cancel,220,2017,August,35,27,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Canceled,2017-08-04,Summer,2017-08-27T07:00Z +Cancel,51,2017,August,35,27,2,0,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,290,0,1,Canceled,2017-07-11,Summer,2017-08-27T07:00Z +Cancel,51,2017,August,35,27,2,0,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,290,0,1,Canceled,2017-07-07,Summer,2017-08-27T07:00Z +Cancel,50,2017,August,35,27,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,242,0,0,Canceled,2017-07-14,Summer,2017-08-27T07:00Z +Cancel,301,2017,August,35,27,2,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,190.88,0,1,Canceled,2017-08-11,Summer,2017-08-27T07:00Z +Cancel,344,2017,August,35,27,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.75,0,0,Canceled,2016-10-30,Summer,2017-08-27T07:00Z +Cancel,140,2017,August,35,27,2,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Canceled,2017-07-30,Summer,2017-08-27T07:00Z +Cancel,36,2017,August,35,27,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,244.16,0,1,Canceled,2017-07-26,Summer,2017-08-27T07:00Z +Cancel,61,2017,August,35,27,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,222,0,2,Canceled,2017-08-09,Summer,2017-08-27T07:00Z +Cancel,22,2017,August,35,27,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,295,0,0,Canceled,2017-08-05,Summer,2017-08-27T07:00Z +Cancel,47,2017,August,35,27,2,3,1,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,289.8,0,1,Canceled,2017-07-28,Summer,2017-08-27T07:00Z +Cancel,47,2017,August,35,27,2,3,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,253.8,0,1,Canceled,2017-07-28,Summer,2017-08-27T07:00Z +Cancel,46,2017,August,35,27,2,2,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-08-01,Summer,2017-08-27T07:00Z +Cancel,99,2017,August,35,27,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236.67,0,1,Canceled,2017-05-20,Summer,2017-08-27T07:00Z +Cancel,20,2017,August,35,27,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,182,0,1,Canceled,2017-08-07,Summer,2017-08-27T07:00Z +Cancel,216,2017,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,110.7,0,0,Canceled,2017-01-25,Summer,2017-08-27T07:00Z +Cancel,20,2017,August,35,27,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,182,0,1,Canceled,2017-08-07,Summer,2017-08-27T07:00Z +Cancel,216,2017,August,35,27,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,139.68,0,0,Canceled,2017-01-25,Summer,2017-08-27T07:00Z +Cancel,327,2017,August,35,27,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.18,0,1,Canceled,2016-10-07,Summer,2017-08-27T07:00Z +Cancel,305,2017,August,35,27,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,131.4,0,2,No-Show,2017-08-27,Summer,2017-08-27T07:00Z +Cancel,56,2017,August,35,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,152,0,0,Canceled,2017-07-17,Summer,2017-08-28T07:00Z +Cancel,98,2017,August,35,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-07-04,Summer,2017-08-28T07:00Z +Cancel,48,2017,August,35,28,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-07-25,Summer,2017-08-28T07:00Z +Cancel,56,2017,August,35,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,152,0,0,Canceled,2017-07-17,Summer,2017-08-28T07:00Z +Cancel,98,2017,August,35,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-07-04,Summer,2017-08-28T07:00Z +Cancel,98,2017,August,35,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-07-04,Summer,2017-08-28T07:00Z +Cancel,56,2017,August,35,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,152,0,0,Canceled,2017-07-17,Summer,2017-08-28T07:00Z +Cancel,53,2017,August,35,28,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,2,Canceled,2017-08-06,Summer,2017-08-28T07:00Z +Cancel,40,2017,August,35,28,1,2,1,0,0,BB,LBN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-27,Summer,2017-08-28T07:00Z +Cancel,172,2017,August,35,28,1,2,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 315, NULL,0,Contract,198.05,0,0,Canceled,2017-03-15,Summer,2017-08-28T07:00Z +Cancel,63,2017,August,35,28,1,2,2,0,0,HB,GIB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,236,0,2,Canceled,2017-06-30,Summer,2017-08-28T07:00Z +Cancel,152,2017,August,35,28,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,141,0,0,Canceled,2017-07-03,Summer,2017-08-28T07:00Z +Cancel,61,2017,August,35,28,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,0,Canceled,2017-06-29,Summer,2017-08-28T07:00Z +Cancel,35,2017,August,35,28,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-28,Summer,2017-08-28T07:00Z +Cancel,14,2017,August,35,28,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,218.25,0,1,Canceled,2017-08-14,Summer,2017-08-28T07:00Z +Cancel,26,2017,August,35,28,1,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,286.25,0,0,Canceled,2017-08-06,Summer,2017-08-28T07:00Z +Cancel,73,2017,August,35,28,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,0,2,Canceled,2017-06-26,Summer,2017-08-28T07:00Z +Cancel,175,2017,August,35,28,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,2,Canceled,2017-08-26,Summer,2017-08-28T07:00Z +Cancel,73,2017,August,35,28,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,0,2,Canceled,2017-06-26,Summer,2017-08-28T07:00Z +Cancel,65,2017,August,35,28,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,186,0,0,Canceled,2017-08-10,Summer,2017-08-28T07:00Z +Cancel,27,2017,August,35,28,1,4,2,2,0,HB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,341,0,0,Canceled,2017-08-02,Summer,2017-08-28T07:00Z +Cancel,222,2017,August,35,28,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,0,1,Canceled,2017-04-05,Summer,2017-08-28T07:00Z +Cancel,175,2017,August,35,28,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,Refundable , 240, NULL,0,Transient,230,0,2,Canceled,2017-08-26,Summer,2017-08-28T07:00Z +Cancel,112,2017,August,35,28,1,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,312,0,3,Canceled,2017-08-10,Summer,2017-08-28T07:00Z +Cancel,80,2017,August,35,28,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.33,0,1,Canceled,2017-06-13,Summer,2017-08-28T07:00Z +Cancel,13,2017,August,35,28,1,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,232.5,0,1,Canceled,2017-08-15,Summer,2017-08-28T07:00Z +Cancel,112,2017,August,35,28,1,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,250,0,2,Canceled,2017-05-09,Summer,2017-08-28T07:00Z +Cancel,54,2017,August,35,28,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.33,0,1,Canceled,2017-07-07,Summer,2017-08-28T07:00Z +Cancel,120,2017,August,35,28,1,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,297,0,2,Canceled,2017-05-07,Summer,2017-08-28T07:00Z +Cancel,80,2017,August,35,28,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.33,0,1,Canceled,2017-06-13,Summer,2017-08-28T07:00Z +Cancel,120,2017,August,35,28,1,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 241, NULL,0,Transient,265,0,0,Canceled,2017-04-30,Summer,2017-08-28T07:00Z +Cancel,59,2017,August,35,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201.43,0,2,Canceled,2017-08-17,Summer,2017-08-28T07:00Z +Cancel,77,2017,August,35,28,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,163,0,0,Canceled,2017-06-29,Summer,2017-08-28T07:00Z +Cancel,59,2017,August,35,28,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,0,Canceled,2017-07-01,Summer,2017-08-28T07:00Z +Cancel,237,2017,August,35,28,3,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180.38,0,0,Canceled,2017-02-03,Summer,2017-08-28T07:00Z +Cancel,237,2017,August,35,28,3,7,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,293.6,0,0,Canceled,2017-02-03,Summer,2017-08-28T07:00Z +Cancel,18,2017,August,35,28,3,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Group,140,0,0,Canceled,2017-08-14,Summer,2017-08-28T07:00Z +Cancel,205,2017,August,35,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,210,0,3,Canceled,2017-08-15,Summer,2017-08-29T07:00Z +Cancel,29,2017,August,35,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,194,0,0,Canceled,2017-08-21,Summer,2017-08-29T07:00Z +Cancel,32,2017,August,35,29,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,225,0,1,Canceled,2017-08-02,Summer,2017-08-29T07:00Z +Cancel,35,2017,August,35,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,185,0,1,No-Show,2017-08-29,Summer,2017-08-29T07:00Z +Cancel,29,2017,August,35,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,180,0,0,Canceled,2017-08-21,Summer,2017-08-29T07:00Z +Cancel,75,2017,August,35,29,0,3,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2017-06-19,Summer,2017-08-29T07:00Z +Cancel,114,2017,August,35,29,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-07-30,Summer,2017-08-29T07:00Z +Cancel,8,2017,August,35,29,0,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,213.5,0,0,Canceled,2017-08-22,Summer,2017-08-29T07:00Z +Cancel,72,2017,August,35,29,1,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,328,0,0,Canceled,2017-06-19,Summer,2017-08-29T07:00Z +Cancel,246,2017,August,35,29,2,5,2,1,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,171.25,0,0,Canceled,2017-01-12,Summer,2017-08-29T07:00Z +Cancel,19,2017,August,35,29,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,163,0,0,Canceled,2017-08-11,Summer,2017-08-29T07:00Z +Cancel,42,2017,August,35,29,2,5,2,2,0,BB,AND,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,228.57,0,1,Canceled,2017-07-26,Summer,2017-08-29T07:00Z +Cancel,160,2017,August,35,29,2,6,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212.5,0,0,Canceled,2017-03-22,Summer,2017-08-29T07:00Z +Cancel,148,2017,August,35,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,No-Show,2017-08-29,Summer,2017-08-29T07:00Z +Cancel,73,2017,August,35,30,0,2,2,0,0,BB,BHR,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,190,0,1,Canceled,2017-08-08,Summer,2017-08-30T07:00Z +Cancel,98,2017,August,35,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2017-08-11,Summer,2017-08-30T07:00Z +Cancel,54,2017,August,35,30,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Group,141,0,1,Canceled,2017-07-11,Summer,2017-08-30T07:00Z +Cancel,50,2017,August,35,30,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Group,141,0,0,Canceled,2017-08-04,Summer,2017-08-30T07:00Z +Cancel,98,2017,August,35,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,210,0,1,Canceled,2017-08-11,Summer,2017-08-30T07:00Z +Cancel,74,2017,August,35,30,0,3,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,233.33,0,1,Canceled,2017-08-04,Summer,2017-08-30T07:00Z +Cancel,51,2017,August,35,30,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,1,Canceled,2017-07-11,Summer,2017-08-30T07:00Z +Cancel,36,2017,August,35,30,0,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,230,0,1,Canceled,2017-07-26,Summer,2017-08-30T07:00Z +Cancel,60,2017,August,35,30,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2017-07-01,Summer,2017-08-30T07:00Z +Cancel,92,2017,August,35,30,1,4,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,284,0,1,Canceled,2017-07-07,Summer,2017-08-30T07:00Z +Cancel,207,2017,August,35,30,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.33,0,1,Canceled,2017-02-17,Summer,2017-08-30T07:00Z +Cancel,62,2017,August,35,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175.71,0,0,Canceled,2017-07-11,Summer,2017-08-30T07:00Z +Cancel,262,2017,August,35,30,2,8,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,189.42,0,0,Canceled,2017-02-22,Summer,2017-08-30T07:00Z +Cancel,24,2017,August,35,31,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,177.5,0,1,No-Show,2017-08-31,Summer,2017-08-31T07:00Z +Cancel,95,2017,August,35,31,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,290,0,2,Canceled,2017-08-12,Summer,2017-08-31T07:00Z +Cancel,45,2017,August,35,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,185,0,0,Canceled,2017-07-18,Summer,2017-08-31T07:00Z +Cancel,24,2017,August,35,31,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,202,0,4,No-Show,2017-08-31,Summer,2017-08-31T07:00Z +Cancel,17,2017,August,35,31,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,2,Canceled,2017-08-14,Summer,2017-08-31T07:00Z +Cancel,17,2017,August,35,31,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,2,Canceled,2017-08-14,Summer,2017-08-31T07:00Z +Cancel,70,2017,August,35,31,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,196.67,0,1,Canceled,2017-07-31,Summer,2017-08-31T07:00Z +Cancel,112,2017,August,35,31,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,0,Canceled,2017-08-16,Summer,2017-08-31T07:00Z +Cancel,13,2017,August,35,31,1,3,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,222.5,0,1,Canceled,2017-08-19,Summer,2017-08-31T07:00Z +Cancel,6,2017,August,35,31,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,207.5,0,0,Canceled,2017-08-25,Summer,2017-08-31T07:00Z +Cancel,45,2017,August,35,31,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,1,Canceled,2017-07-24,Summer,2017-08-31T07:00Z +Cancel,184,2017,August,35,31,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200.86,0,1,Canceled,2017-03-06,Summer,2017-08-31T07:00Z +Cancel,29,2017,August,35,31,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,0,Canceled,2017-08-10,Summer,2017-08-31T07:00Z +Cancel,350,2017,August,35,31,3,8,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219.45,0,0,Canceled,2017-05-13,Summer,2017-08-31T07:00Z +Keep,7,2016,January,3,13,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,7,2016,January,4,18,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 94,0,Transient,28.5,1,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Cancel,2,2016,October,42,12,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,3,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Canceled,2016-10-10,Fall,2016-10-12T07:00Z +Keep,7,2017,February,8,20,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 94, NULL,0,Transient,38.5,1,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,7,2016,January,3,13,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,6,2016,January,5,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,1,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,7,2016,September,38,13,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 94, NULL,0,Transient,66,1,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,66,2015,September,39,26,4,6,2,0,0,HB,Unknown,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,115,1,2,Check-Out,2015-10-06,Fall,2015-09-26T07:00Z +Cancel,71,2016,July,29,14,3,8,2,0,0,HB,Unknown,Direct,Direct, 0,1,1,E,E,1,No Deposit , NULL, NULL,0,Transient,126.6,0,1,Canceled,2016-07-12,Summer,2016-07-14T07:00Z +Keep,6,2016,January,5,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,1,2016,February,6,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,1,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,6,2016,November,47,14,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,6,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 94,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,6,2016,April,15,6,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , 94, NULL,0,Transient-Party,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,4,2017,August,31,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 94,0,Transient,135,0,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,11,2016,February,6,1,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Keep,1,2016,March,11,8,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,7,2016,September,38,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,E,0,No Deposit , 94, NULL,0,Transient,66,0,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,11,2017,February,8,20,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , 94, NULL,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,7,2016,January,4,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Cancel,0,2016,March,12,14,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 53,0,Transient,40,0,0,No-Show,2016-03-14,Spring,2016-03-14T07:00Z +Keep,6,2016,March,13,21,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,1,1,A,A,0,No Deposit , NULL, 53,0,Transient,40,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,7,2016,June,26,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,2,A,A,0,No Deposit , NULL, 53,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,8,2016,September,40,27,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,1,3,A,A,0,No Deposit , NULL, 53,0,Transient,65,0,0,Check-Out,2016-09-29,Fall,2016-09-27T07:00Z +Keep,5,2016,March,11,8,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,1,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,14,2016,October,44,24,1,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,6,2016,June,24,8,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-06-09,Summer,2016-06-08T07:00Z +Keep,7,2016,December,50,6,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 528,0,Transient,48.5,1,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,4,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,1,No Deposit , NULL, 528,0,Transient,142,1,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,1,2016,September,38,16,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,G,1,No Deposit , NULL, 94,0,Transient,58,0,0,Check-Out,2016-09-17,Fall,2016-09-16T07:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 94,0,Transient-Party,35,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,7,2016,January,3,13,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,1,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,5,2016,April,18,26,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 94,0,Transient,42,1,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,183,2016,July,29,15,3,7,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,194.5,1,1,Check-Out,2016-07-25,Summer,2016-07-15T07:00Z +Keep,186,2017,July,28,15,4,6,3,0,0,HB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,248.1,1,1,Check-Out,2017-07-25,Summer,2017-07-15T07:00Z +Keep,14,2016,March,11,7,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 62,0,Transient,30,0,0,Check-Out,2016-03-11,Spring,2016-03-07T08:00Z +Keep,4,2016,May,19,2,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,C,0,No Deposit , NULL, 62,0,Transient,42,0,0,Check-Out,2016-05-06,Spring,2016-05-02T07:00Z +Keep,118,2015,July,27,1,4,10,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,80,1,1,Check-Out,2015-07-15,Summer,2015-07-01T07:00Z +Keep,1,2016,September,39,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,A,0,No Deposit , NULL, 51,0,Transient,80,1,3,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,32,2015,September,37,6,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,129.5,1,2,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,137,2016,September,37,4,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,2,E,E,3,No Deposit , NULL, NULL,0,Transient,171,1,3,Check-Out,2016-09-09,Fall,2016-09-04T07:00Z +Keep,0,2016,March,12,16,0,2,1,0,0,BB,Unknown,Complementary,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-03-18,Spring,2016-03-16T07:00Z +Keep,0,2017,June,23,5,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,75,0,0,Check-Out,2017-06-07,Summer,2017-06-05T07:00Z +Keep,105,2015,December,53,29,0,3,2,0,0,HB,Unknown,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,70.15,0,2,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,105,2015,December,53,29,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,169.48,1,2,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,52,2016,March,13,25,1,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,3,E,E,0,No Deposit , 250, NULL,0,Transient,93.67,1,2,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,81,2016,December,53,31,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,4,E,E,0,No Deposit , NULL, NULL,0,Transient,217.5,1,2,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,89,2017,April,15,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,5,E,E,0,No Deposit , NULL, NULL,0,Transient,90,1,2,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,1,2016,April,15,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Cancel,33,2015,November,45,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Keep,5,2015,November,48,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,1,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,2,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,7,2016,January,4,18,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,1,3,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Keep,5,2016,April,15,5,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,1,4,A,D,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,78,2015,August,31,1,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,150,1,2,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Keep,110,2016,August,32,2,3,10,2,0,0,BB,PRT,Direct,Direct, 0,0,1,E,F,1,No Deposit , NULL, NULL,0,Transient,196,1,3,Check-Out,2016-08-15,Summer,2016-08-02T07:00Z +Keep,134,2017,August,31,1,2,10,2,0,0,BB,PRT,Direct,Direct, 0,0,2,F,F,0,No Deposit , 250, NULL,0,Transient,223.5,1,4,Check-Out,2017-08-13,Summer,2017-08-01T07:00Z +Keep,73,2017,July,29,21,2,6,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 181, NULL,0,Transient,203.75,1,0,Check-Out,2017-07-29,Summer,2017-07-21T07:00Z +Keep,9,2015,August,35,24,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,205,0,0,Check-Out,2015-08-28,Summer,2015-08-24T07:00Z +Cancel,92,2016,July,29,16,4,6,2,0,0,HB,PRT,Direct,Direct, 0,1,1,E,E,0,No Deposit , NULL, NULL,0,Transient,195,0,0,Canceled,2016-06-15,Summer,2016-07-16T07:00Z +Keep,1,2015,November,48,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 120,0,Transient,44,1,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,5,2016,February,9,23,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,1,No Deposit , NULL, 120,0,Transient,46,1,0,Check-Out,2016-02-25,Winter,2016-02-23T08:00Z +Keep,0,2016,April,16,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,C,1,No Deposit , NULL, 120,0,Transient,62,1,0,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,6,2016,January,4,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,1,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,4,2016,January,5,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 94,0,Transient,33,1,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,6,2016,April,15,6,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 94,0,Transient,42,1,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,7,2016,October,41,3,1,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 42,0,Transient,50,0,0,Check-Out,2016-10-05,Fall,2016-10-03T07:00Z +Keep,0,2016,November,46,7,1,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,72,1,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,12,2015,September,37,9,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 82,0,Transient,134,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,8,2016,February,6,4,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 82,0,Transient,30,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Cancel,27,2016,April,17,20,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 82,0,Transient,42,0,0,Canceled,2016-04-20,Spring,2016-04-20T07:00Z +Keep,16,2016,May,21,19,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,3,A,A,0,No Deposit , NULL, 82,0,Transient,42,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,20,2016,September,38,12,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,1,4,A,E,0,No Deposit , NULL, 82,0,Transient,126,0,0,Check-Out,2016-09-13,Fall,2016-09-12T07:00Z +Keep,1,2016,November,46,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,5,A,G,0,No Deposit , NULL, 82,0,Transient,30,0,0,Check-Out,2016-11-11,Fall,2016-11-10T08:00Z +Keep,3,2017,January,5,29,2,0,2,0,0,BB,PRT,Corporate,Corporate, 0,1,6,A,A,4,No Deposit , NULL, 82,0,Transient,5,0,0,Check-Out,2017-01-31,Winter,2017-01-29T08:00Z +Keep,19,2017,March,11,13,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,1,7,A,D,0,No Deposit , NULL, 82,0,Transient,35,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,26,2017,April,16,17,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,1,8,A,A,0,No Deposit , NULL, 82,0,Transient,45,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,0,2016,January,4,18,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,0,2017,January,3,16,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,F,0,No Deposit , 250, NULL,0,Transient,56,0,1,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,2,2015,July,30,21,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2015-07-23,Summer,2015-07-21T07:00Z +Keep,1,2016,January,5,29,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,G,G,1,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,1,2016,June,25,17,1,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,50,1,1,Check-Out,2016-06-20,Summer,2016-06-17T07:00Z +Keep,0,2016,November,47,18,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,4,D,G,0,No Deposit , NULL, NULL,0,Transient,60,1,3,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,8,2017,March,12,24,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,5,F,H,0,No Deposit , NULL, NULL,0,Transient,50,1,3,Check-Out,2017-03-26,Spring,2017-03-24T07:00Z +Keep,5,2017,July,30,24,3,5,1,0,0,SC,ESP,Direct,Direct, 0,0,6,F,I,3,No Deposit , NULL, NULL,0,Transient,0,1,3,Check-Out,2017-08-01,Summer,2017-07-24T07:00Z +Keep,3,2015,September,40,29,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,H,0,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2015-09-30,Fall,2015-09-29T07:00Z +Keep,2,2016,April,15,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,56.4,1,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,39,2016,July,29,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,Direct, 0,0,4,A,C,1,No Deposit , 126, NULL,0,Transient,132,1,0,Check-Out,2016-07-13,Summer,2016-07-12T07:00Z +Keep,1,2016,September,39,20,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 0,0,5,A,A,0,No Deposit , 314, NULL,0,Transient,90.8,1,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Cancel,3,2015,September,40,28,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,1,No Deposit , NULL, 81,0,Transient,75,0,2,Canceled,2015-09-28,Fall,2015-09-28T07:00Z +Keep,0,2015,September,40,30,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,1,A,F,1,No Deposit , NULL, 81,0,Transient,48,1,2,Check-Out,2015-10-02,Fall,2015-09-30T07:00Z +Keep,2,2015,November,45,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,2,A,E,2,No Deposit , NULL, 81,0,Transient,46,1,2,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,1,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,3,A,E,1,No Deposit , NULL, 81,0,Transient,45,1,2,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,4,A,E,1,No Deposit , NULL, 81,0,Transient,33,1,2,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,April,15,5,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,1,5,A,E,1,No Deposit , NULL, 81,0,Transient,45,1,2,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,2,2016,June,23,1,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,1,6,A,C,0,No Deposit , NULL, 81,0,Transient,71,1,2,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,20,2016,September,40,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,7,A,A,0,No Deposit , NULL, 81,0,Transient,68,1,2,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,2,2016,November,46,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,8,A,H,0,No Deposit , NULL, 81,0,Transient,33,1,2,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,9,A,D,1,No Deposit , NULL, 81,0,Transient,33,1,2,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,10,A,E,1,No Deposit , NULL, 81,0,Transient,47,1,2,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,0,2017,March,11,14,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,1,11,A,G,1,No Deposit , NULL, 81,0,Transient,55,1,2,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,5,2017,May,22,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,12,A,D,1,No Deposit , NULL, 81,0,Transient,45,1,2,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,5,2017,June,25,19,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,139,1,2,Check-Out,2017-06-21,Summer,2017-06-19T07:00Z +Keep,0,2017,January,4,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-01-25,Winter,2017-01-23T08:00Z +Keep,16,2016,September,37,9,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,152.1,0,0,Check-Out,2016-09-15,Fall,2016-09-09T07:00Z +Keep,131,2016,July,28,9,3,6,2,1,0,BB,Unknown,Direct,Direct, 0,0,0,C,I,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-07-18,Summer,2016-07-09T07:00Z +Keep,2,2016,March,11,10,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , 146, NULL,0,Transient,42,1,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,7,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 116,0,Transient,38,1,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,5,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 116,0,Transient,35,1,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,3,2017,June,22,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 116,0,Transient,75,1,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,2,2017,April,16,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 530,0,Transient,72,1,0,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,10,2017,May,20,15,1,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,D,0,No Deposit , NULL, 530,0,Transient,63.5,1,0,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Cancel,8,2017,July,28,11,0,2,1,0,0,BB,PRT,Corporate,Direct, 0,1,2,A,A,0,No Deposit , NULL, 530,0,Transient,142,0,0,Canceled,2017-07-04,Summer,2017-07-11T07:00Z +Keep,1,2015,November,45,3,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 103,0,Transient,35,0,0,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,0,2016,February,8,16,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,1,No Deposit , NULL, 103,0,Transient,30,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,April,18,26,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 103,0,Transient,42,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,1,2016,July,30,19,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 103,0,Transient,126,0,0,Check-Out,2016-07-21,Summer,2016-07-19T07:00Z +Keep,1,2016,November,46,8,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,C,0,No Deposit , NULL, 103,0,Transient,30,0,0,Check-Out,2016-11-10,Fall,2016-11-08T08:00Z +Keep,0,2017,February,8,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,6,A,D,0,No Deposit , NULL, 103,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,0,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,7,A,A,0,No Deposit , NULL, 103,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,6,2017,July,30,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,8,A,D,0,No Deposit , NULL, 103,0,Transient,135,0,0,Check-Out,2017-07-27,Summer,2017-07-26T07:00Z +Keep,236,2017,June,25,23,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,138,1,2,Check-Out,2017-07-07,Summer,2017-06-23T07:00Z +Keep,66,2015,September,39,25,4,8,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,53,1,1,Check-Out,2015-10-07,Fall,2015-09-25T07:00Z +Keep,112,2016,September,39,19,5,10,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,56,1,1,Check-Out,2016-10-04,Fall,2016-09-19T07:00Z +Keep,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient-Party,82.8,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,151,2015,July,31,31,2,7,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,G,F,0,No Deposit , NULL, NULL,0,Transient,171.2,1,0,Check-Out,2015-08-09,Summer,2015-07-31T07:00Z +Keep,89,2015,August,35,29,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,1,G,G,1,No Deposit , NULL, NULL,0,Transient,161,1,0,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,136,2016,July,31,29,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,188,1,2,Check-Out,2016-08-07,Summer,2016-07-29T07:00Z +Keep,172,2016,September,36,3,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,3,G,G,0,No Deposit , NULL, NULL,0,Transient,179,1,1,Check-Out,2016-09-07,Fall,2016-09-03T07:00Z +Keep,157,2017,July,30,28,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,4,E,E,0,No Deposit , NULL, NULL,0,Transient,209.4,1,4,Check-Out,2017-08-06,Summer,2017-07-28T07:00Z +Keep,2,2016,February,6,6,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,6,2016,April,17,20,0,2,1,0,0,BB,PRT,Complementary,TA/TO, 1,0,1,E,E,0,No Deposit , 5, NULL,0,Transient,0,1,0,Check-Out,2016-04-22,Spring,2016-04-20T07:00Z +Keep,245,2015,September,36,3,4,12,2,0,0,BB,GBR,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2015-09-19,Fall,2015-09-03T07:00Z +Keep,11,2016,November,47,15,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,0,2016,December,51,15,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,1,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,122,2016,July,28,9,3,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,133,0,3,Check-Out,2016-07-18,Summer,2016-07-09T07:00Z +Keep,12,2017,July,26,1,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,169,1,1,Check-Out,2017-07-03,Summer,2017-07-01T07:00Z +Keep,7,2015,July,29,14,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,4,0,1,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Keep,8,2015,November,48,25,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, 204,0,Transient,35,0,1,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,2,2016,November,46,9,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,3,A,G,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,1,2017,March,13,28,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 112,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-28T07:00Z +Keep,0,2015,October,42,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 135,0,Transient,48,1,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Cancel,1,2015,October,43,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,E,0,No Deposit , NULL, 135,0,Transient,48,0,1,Canceled,2015-10-20,Fall,2015-10-20T07:00Z +Cancel,0,2015,October,43,24,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,1,2,A,A,0,No Deposit , NULL, 135,0,Transient,53,0,2,No-Show,2015-10-24,Fall,2015-10-24T07:00Z +Keep,4,2015,October,44,30,0,2,2,0,0,BB,Unknown,Corporate,Corporate, 0,2,2,A,E,1,No Deposit , NULL, 135,0,Transient,40,1,2,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,0,2015,December,51,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,2,3,A,A,0,No Deposit , NULL, 135,0,Transient,35,0,2,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Keep,1,2016,January,4,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,4,A,E,0,No Deposit , NULL, 135,0,Transient,30,0,2,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,June,26,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,5,A,D,0,No Deposit , NULL, 135,0,Transient,63,1,2,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Keep,1,2016,November,46,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,6,A,H,0,No Deposit , NULL, 135,0,Transient,30,1,2,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,6,2017,January,4,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,7,A,E,0,No Deposit , NULL, 135,0,Transient,38.5,1,2,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,0,2017,February,7,13,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,2,8,A,E,1,No Deposit , NULL, 135,0,Transient,35,1,2,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,9,A,D,0,No Deposit , NULL, 135,0,Transient,35,1,2,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,3,2017,March,9,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,10,A,G,0,No Deposit , NULL, 135,0,Transient,35,1,2,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,5,2017,April,17,26,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,2,11,A,E,1,No Deposit , NULL, 135,0,Transient,63.5,1,2,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,1,2017,May,22,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,12,A,E,0,No Deposit , NULL, 135,0,Transient,75,1,2,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,0,2017,June,24,12,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,2,13,A,A,0,No Deposit , NULL, 135,0,Transient,82,1,2,Check-Out,2017-06-13,Summer,2017-06-12T07:00Z +Keep,0,2016,February,6,2,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 9,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,6,2017,January,4,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 9,0,Transient,35,0,1,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,0,2016,January,3,14,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2016,June,25,13,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,122.86,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,0,2017,April,16,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,69,2015,December,53,30,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,136,1,2,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,87,2016,April,17,22,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,2,E,E,1,No Deposit , 250, NULL,0,Transient,80.8,1,2,Check-Out,2016-04-27,Spring,2016-04-22T07:00Z +Keep,2,2016,February,8,17,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 204,0,Transient,30,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2017,August,35,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,184.67,0,0,Check-Out,2017-09-01,Summer,2017-08-29T07:00Z +Keep,0,2016,April,18,27,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 178,0,Transient,42,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,0,2016,December,51,14,0,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 178,0,Transient,0,0,0,Check-Out,2016-12-14,Winter,2016-12-14T08:00Z +Keep,7,2017,April,14,5,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,G,0,No Deposit , NULL, 178,0,Transient,48,0,0,Check-Out,2017-04-06,Spring,2017-04-05T07:00Z +Keep,1,2017,June,25,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,E,0,No Deposit , NULL, 178,0,Transient,75,0,0,Check-Out,2017-06-22,Summer,2017-06-20T07:00Z +Keep,1,2015,November,47,18,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,December,51,17,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 177, NULL,0,Transient,25,0,1,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,2,2016,February,6,3,0,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,2,A,D,0,No Deposit , 177, NULL,0,Group,25,0,1,Check-Out,2016-02-05,Winter,2016-02-03T08:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 62,0,Transient,30,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,9,2016,June,25,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,C,1,No Deposit , NULL, 62,0,Transient,65,0,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,1,No Deposit , NULL, 62,0,Transient,35,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,2,2017,February,6,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 62,0,Transient,35,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,4,2017,May,19,8,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 62,0,Transient,45,0,0,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,9,2016,April,18,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient-Party,39,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,11,2017,February,8,20,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,7,2016,November,47,15,0,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,September,39,24,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,167.5,0,0,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Cancel,11,2016,July,28,4,1,3,1,0,0,BB,Unknown,Corporate,Direct, 0,1,0,A,A,0,No Deposit , NULL, 39,0,Transient,65,0,0,Canceled,2016-06-23,Summer,2016-07-04T07:00Z +Keep,11,2016,October,44,24,1,3,1,0,0,BB,Unknown,Corporate,Direct, 0,1,0,A,A,0,No Deposit , NULL, 39,0,Transient,52,0,0,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,20,2016,November,45,2,0,2,1,0,0,BB,PRT,Corporate,Direct, 0,1,1,A,A,0,No Deposit , NULL, 39,0,Transient,40,0,0,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,0,2015,August,31,1,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient,200,1,1,Check-Out,2015-08-02,Summer,2015-08-01T07:00Z +Keep,5,2015,August,35,23,2,0,2,1,0,BB,Unknown,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,130,1,2,Check-Out,2015-08-25,Summer,2015-08-23T07:00Z +Keep,1,2015,October,40,3,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,3,G,H,0,No Deposit , NULL, NULL,0,Transient,99,1,2,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,4,A,E,0,No Deposit , NULL, NULL,0,Transient,58,1,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,13,2016,March,14,28,1,1,2,2,0,BB,PRT,Direct,Direct, 0,0,5,G,G,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,1,2016,August,35,27,2,3,3,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,209,0,0,Check-Out,2016-09-01,Summer,2016-08-27T07:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 144,0,Transient-Party,30,1,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,91,2015,December,52,23,4,9,1,0,0,BB,PRT,Direct,Direct, 0,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,46.5,0,1,Check-Out,2016-01-05,Winter,2015-12-23T08:00Z +Keep,113,2016,June,26,25,4,6,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,A,3,No Deposit , NULL, NULL,0,Transient,66,0,1,Check-Out,2016-07-05,Summer,2016-06-25T07:00Z +Keep,122,2016,December,52,23,4,7,1,0,0,BB,PRT,Direct,Direct, 0,0,3,E,E,3,No Deposit , NULL, NULL,0,Transient,48.8,0,3,Check-Out,2017-01-03,Winter,2016-12-23T08:00Z +Keep,162,2017,June,23,10,4,6,1,0,0,BB,PRT,Direct,Direct, 0,0,4,D,D,2,No Deposit , NULL, NULL,0,Transient,69.3,0,1,Check-Out,2017-06-20,Summer,2017-06-10T07:00Z +Keep,4,2015,July,27,1,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,C,0,No Deposit , NULL, 204,0,Transient,134,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,7,2015,July,29,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,C,0,No Deposit , NULL, 204,0,Transient,134,0,1,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Keep,2,2015,November,45,4,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,6,A,D,1,No Deposit , NULL, 204,0,Transient,35,0,1,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Keep,8,2015,November,48,25,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,7,A,D,0,No Deposit , NULL, 204,0,Transient,35,0,1,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,1,2015,December,51,15,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,8,D,E,0,No Deposit , NULL, 204,0,Transient,35,0,1,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Keep,1,2015,December,52,22,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,9,D,D,0,No Deposit , NULL, 204,0,Transient,50,0,2,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,1,2016,January,2,6,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,10,A,E,1,No Deposit , NULL, 204,0,Transient,26,0,0,Check-Out,2016-01-08,Winter,2016-01-06T08:00Z +Keep,0,2016,February,6,3,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,11,A,E,1,No Deposit , NULL, 204,0,Transient,30,0,1,Check-Out,2016-02-05,Winter,2016-02-03T08:00Z +Keep,2,2016,February,8,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,12,A,E,0,No Deposit , NULL, 204,0,Transient,30,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,1,2016,March,11,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,13,A,E,0,No Deposit , NULL, 204,0,Transient,30,0,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,1,2016,April,15,5,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,14,A,E,0,No Deposit , NULL, 204,0,Transient,50,0,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,1,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,15,A,E,0,No Deposit , NULL, 204,0,Transient,50,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,1,2016,May,20,11,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,16,A,E,0,No Deposit , NULL, 204,0,Transient,50,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,1,2016,June,25,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,17,A,C,0,No Deposit , NULL, 204,0,Transient,65,0,0,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,7,2016,July,28,6,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,18,A,F,0,No Deposit , NULL, 204,0,Transient,73,0,2,Check-Out,2016-07-07,Summer,2016-07-06T07:00Z +Keep,1,2016,July,28,7,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,18,A,D,0,No Deposit , NULL, 204,0,Transient,73,0,2,Check-Out,2016-07-08,Summer,2016-07-07T07:00Z +Keep,11,2016,July,30,19,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,20,A,G,1,No Deposit , NULL, 204,0,Transient,73,0,2,Check-Out,2016-07-21,Summer,2016-07-19T07:00Z +Keep,9,2016,September,40,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,21,A,A,0,No Deposit , NULL, 204,0,Transient,65,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,2,2016,November,46,9,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,22,A,C,0,No Deposit , NULL, 204,0,Transient,35,0,2,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,2,2016,December,51,14,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,23,A,D,1,No Deposit , NULL, 204,0,Transient,30,0,2,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,0,2017,January,4,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,24,A,E,1,No Deposit , NULL, 204,0,Transient,35,0,2,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,5,2017,February,6,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,25,A,E,0,No Deposit , NULL, 204,0,Transient,35,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,25,A,E,0,No Deposit , NULL, 204,0,Transient,35,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Cancel,2,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,27,A,D,0,No Deposit , NULL, 204,0,Transient,35,0,2,Canceled,2017-03-08,Spring,2017-03-08T08:00Z +Keep,1,2017,March,11,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,27,A,D,0,No Deposit , NULL, 204,0,Transient,35,0,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,1,2017,March,13,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,28,A,D,0,No Deposit , NULL, 204,0,Transient,35,0,2,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,2,2017,April,15,12,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,1,29,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,2,2017,June,22,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,30,A,A,0,No Deposit , NULL, 204,0,Transient,75,0,1,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,9,2016,September,39,21,2,8,1,0,0,BB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,95,0,3,Check-Out,2016-10-01,Fall,2016-09-21T07:00Z +Keep,6,2015,September,39,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,5,2015,November,48,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,4,0,1,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,3,2016,April,16,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,3,D,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,3,2016,September,40,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,4,A,I,1,No Deposit , 240, NULL,0,Transient,50,0,2,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,7,2017,January,4,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,A,D,0,No Deposit , 240, NULL,0,Transient,43,1,1,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,0,2017,June,23,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 12,0,Transient,75,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,113,2015,August,31,1,18,42,1,0,0,HB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110.5,0,3,Check-Out,2015-09-30,Summer,2015-08-01T07:00Z +Keep,126,2016,July,28,5,19,50,1,0,0,HB,Unknown,Direct,Direct, 0,0,1,E,E,2,No Deposit , NULL, NULL,0,Transient,110,0,3,Check-Out,2016-09-12,Summer,2016-07-05T07:00Z +Keep,74,2017,July,26,1,9,21,1,0,0,HB,PRT,Direct,Direct, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,115,2,3,Check-Out,2017-07-31,Summer,2017-07-01T07:00Z +Keep,0,2016,February,6,2,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,April,18,26,0,2,1,0,0,BB,Unknown,Direct,Corporate, 0,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,47.7,1,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,5,2016,May,23,30,1,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,0,2016,October,43,18,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,F,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,0,2017,February,7,13,1,2,1,0,0,BB,Unknown,Direct,Corporate, 0,0,5,A,E,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,0,2016,February,6,2,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2017,February,7,13,1,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,0,2015,July,27,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,131.4,0,0,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Keep,7,2016,October,45,31,1,2,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,1,E,I,1,No Deposit , 241, NULL,0,Transient,78.42,1,1,Check-Out,2016-11-03,Fall,2016-10-31T07:00Z +Keep,64,2016,November,45,3,2,5,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,1,D,D,1,No Deposit , 240, NULL,0,Transient,79.8,1,3,Check-Out,2016-11-10,Fall,2016-11-03T07:00Z +Keep,0,2016,January,5,27,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 178,0,Transient,25,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,0,2017,January,2,9,1,2,1,0,0,BB,Unknown,Complementary,Direct, 0,0,1,A,D,0,No Deposit , NULL, 178,0,Group,0,0,0,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,0,2017,March,9,1,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,A,1,No Deposit , NULL, 178,0,Transient,0,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,5,2015,November,48,25,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,25,1,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,7,2016,January,4,18,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Keep,0,2016,May,23,29,2,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2016-06-01,Spring,2016-05-29T07:00Z +Keep,0,2016,October,44,24,1,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,61,1,1,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,0,2017,January,1,4,0,3,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,45,1,1,Check-Out,2017-01-07,Winter,2017-01-04T08:00Z +Keep,1,2017,January,5,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2016,December,51,14,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 16, NULL,0,Transient,39,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2017,January,2,9,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,1,No Deposit , 16, NULL,0,Transient,40,0,0,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,0,2017,July,28,11,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,1,No Deposit , NULL, 16,0,Transient,228,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,151,2017,April,14,4,0,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,F,3,No Deposit , NULL, 223,0,Transient-Party,48,0,2,Check-Out,2017-04-09,Spring,2017-04-04T07:00Z +Keep,87,2017,April,15,13,1,3,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,145.75,1,2,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,20,2016,March,12,16,0,2,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-03-18,Spring,2016-03-16T07:00Z +Keep,1,2016,October,43,18,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 92,0,Transient,42,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,0,2017,February,6,8,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,34.4,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,20,2016,June,25,12,2,0,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Check-Out,2016-06-14,Summer,2016-06-12T07:00Z +Keep,6,2016,January,3,13,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,37,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,2,2016,March,14,29,0,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 184, NULL,0,Transient,0,0,0,Check-Out,2016-03-29,Spring,2016-03-29T07:00Z +Keep,267,2016,July,27,2,2,5,2,0,0,HB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,90.8,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,168,2017,July,26,1,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,D,E,0,No Deposit , 177, NULL,0,Transient,111.6,0,2,Check-Out,2017-07-05,Summer,2017-07-01T07:00Z +Keep,109,2015,August,33,9,2,5,2,0,0,HB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 105, NULL,0,Transient,172.38,0,0,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,52,2015,August,36,31,3,7,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,113,0,0,Check-Out,2015-09-10,Summer,2015-08-31T07:00Z +Keep,67,2016,August,35,27,4,7,2,0,0,HB,PRT,Direct,Direct, 0,0,1,F,F,4,No Deposit , NULL, NULL,0,Transient,214.92,0,1,Check-Out,2016-09-07,Summer,2016-08-27T07:00Z +Keep,11,2016,July,29,10,5,10,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,I,2,No Deposit , NULL, NULL,0,Transient,4,0,0,Check-Out,2016-07-25,Summer,2016-07-10T07:00Z +Keep,0,2016,December,51,16,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,1,2016,January,1,1,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2016-01-03,Winter,2016-01-01T08:00Z +Keep,15,2015,November,48,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Keep,6,2016,November,49,27,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-11-30,Fall,2016-11-27T08:00Z +Keep,1,2017,February,5,4,1,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,3,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,6,2016,March,12,15,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,13,2017,February,8,22,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,48.6,0,0,Check-Out,2017-02-24,Winter,2017-02-22T08:00Z +Keep,6,2016,October,43,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2016-10-22,Fall,2016-10-21T07:00Z +Keep,1,2015,October,42,13,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,48,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Cancel,2,2016,March,14,30,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,1,No Deposit , NULL, 31,0,Transient,42,0,0,No-Show,2016-03-30,Spring,2016-03-30T07:00Z +Keep,4,2016,October,44,25,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,1,A,A,0,No Deposit , NULL, 31,0,Transient-Party,42,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,165,2016,August,33,13,2,6,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 181, NULL,0,Transient,138,1,0,Check-Out,2016-08-21,Summer,2016-08-13T07:00Z +Keep,163,2017,August,32,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,D,D,0,No Deposit , 181, NULL,0,Transient,172,1,2,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,1,2017,March,13,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 196, NULL,0,Transient,85,0,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,5,2015,December,50,9,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, 61,0,Transient,25,0,0,Check-Out,2015-12-11,Winter,2015-12-09T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,91,2015,July,28,10,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,1,2,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,119,2015,August,32,7,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,164,1,2,Check-Out,2015-08-09,Summer,2015-08-07T07:00Z +Keep,137,2016,July,29,15,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,184.5,1,2,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,158,2016,August,32,5,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,3,E,E,0,No Deposit , NULL, NULL,0,Transient,212,1,2,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,124,2017,July,29,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,4,E,F,1,No Deposit , 240, NULL,0,Transient,224,1,3,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,122,2017,August,31,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,D,D,0,No Deposit , 240, NULL,0,Transient-Party,253,1,4,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,152,2017,August,33,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,6,E,F,0,No Deposit , 240, NULL,0,Transient,254,1,4,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,88,2015,August,35,23,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,1,E,F,0,No Deposit , NULL, NULL,0,Transient,236.5,1,3,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,19,2016,March,14,28,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,2,E,E,2,No Deposit , NULL, NULL,0,Transient,111.5,1,3,Check-Out,2016-04-02,Spring,2016-03-28T07:00Z +Keep,141,2016,August,35,24,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,3,E,E,1,No Deposit , NULL, NULL,0,Transient,187,1,2,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,19,2017,April,15,9,2,4,2,1,0,HB,PRT,Direct,TA/TO, 0,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,122.5,1,3,Check-Out,2017-04-15,Spring,2017-04-09T07:00Z +Keep,65,2015,September,37,6,2,5,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,1,1,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,167,2016,September,37,10,2,5,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,C,0,No Deposit , 240, NULL,0,Transient,148.14,1,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,E,0,No Deposit , NULL, 144,0,Transient-Party,30,1,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,E,1,No Deposit , NULL, 144,0,Transient,27,1,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,237,2016,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Contract,53.85,0,2,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Keep,29,2016,September,38,12,1,3,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,208,1,1,Check-Out,2016-09-16,Fall,2016-09-12T07:00Z +Keep,1,2016,September,40,26,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,146,1,1,Check-Out,2016-09-29,Fall,2016-09-26T07:00Z +Keep,8,2016,September,39,23,1,2,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 446, NULL,0,Transient,103.5,0,0,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,305,2015,September,38,19,3,6,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,0,1,Check-Out,2015-09-28,Fall,2015-09-19T07:00Z +Keep,127,2016,April,18,25,3,5,2,0,0,BB,IRL,Direct,Direct, 0,0,1,E,E,2,No Deposit , NULL, NULL,0,Transient,61,0,1,Check-Out,2016-05-03,Spring,2016-04-25T07:00Z +Keep,303,2016,September,38,17,3,6,1,0,0,BB,IRL,Direct,Direct, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,71,0,1,Check-Out,2016-09-26,Fall,2016-09-17T07:00Z +Keep,7,2015,November,46,10,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 92,0,Transient,35,1,0,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,7,2016,September,40,29,0,1,2,0,0,BB,PRT,Direct,Corporate, 0,0,1,A,A,2,No Deposit , NULL, 92,0,Transient,65,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,29,2016,November,46,11,0,2,3,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,42.08,0,1,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,2,2017,May,21,24,0,1,3,0,0,BB,PRT,Direct,TA/TO, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Group,107.25,0,2,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,4,2016,March,13,22,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 118,0,Transient,42,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,64,2016,December,53,28,2,6,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,39.5,0,1,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,2,2016,October,43,17,1,2,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,39,0,0,Check-Out,2016-10-20,Fall,2016-10-17T07:00Z +Keep,6,2017,February,5,1,0,2,1,0,0,SC,Unknown,Corporate,Corporate, 0,0,1,A,I,0,No Deposit , NULL, 356,0,Transient-Party,0,0,1,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,5,2017,March,9,1,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,E,0,No Deposit , NULL, 356,0,Transient,35,0,1,Check-Out,2017-03-03,Spring,2017-03-01T08:00Z +Keep,5,2017,March,12,21,0,2,1,0,0,BB,Unknown,Corporate,TA/TO, 0,0,3,A,C,0,No Deposit , NULL, 356,0,Transient,35,0,0,Check-Out,2017-03-23,Spring,2017-03-21T07:00Z +Keep,6,2017,April,16,17,1,2,1,0,0,BB,Unknown,Corporate,TA/TO, 0,0,4,A,A,1,No Deposit , NULL, 356,0,Transient,45,0,0,Check-Out,2017-04-20,Spring,2017-04-17T07:00Z +Cancel,249,2016,December,52,20,2,5,2,0,0,BB,Unknown,Direct,Direct, 0,1,0,E,E,1,No Deposit , NULL, NULL,0,Transient,42,0,2,Canceled,2016-12-19,Winter,2016-12-20T08:00Z +Keep,0,2017,April,15,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,86.5,0,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,1,2016,April,18,27,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,9,2016,February,9,24,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-02-27,Winter,2016-02-24T08:00Z +Keep,5,2016,February,10,29,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-02,Winter,2016-02-29T08:00Z +Keep,25,2017,February,6,5,2,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,4,No Deposit , 250, NULL,0,Transient,44,0,2,Check-Out,2017-02-08,Winter,2017-02-05T08:00Z +Keep,0,2016,February,6,6,1,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,1,2017,January,3,21,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,1,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,112,2017,March,9,2,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,1,D,F,0,No Deposit , NULL, NULL,0,Transient,73,0,1,Check-Out,2017-03-09,Spring,2017-03-02T08:00Z +Keep,2,2017,June,22,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,75,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,335,2016,September,38,14,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,1,A,F,1,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-09-19,Fall,2016-09-14T07:00Z +Keep,0,2016,March,12,15,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,5,2016,November,49,28,1,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,43.2,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,0,2017,February,8,22,0,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 12,0,Transient,38.5,1,0,Check-Out,2017-02-25,Winter,2017-02-22T08:00Z +Keep,0,2015,November,45,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,4,2015,November,46,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,F,0,No Deposit , NULL, 154,0,Transient,25,0,1,Check-Out,2015-11-13,Fall,2015-11-12T08:00Z +Keep,5,2016,February,9,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,11,2016,April,17,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,1,Check-Out,2016-04-21,Spring,2016-04-19T07:00Z +Keep,19,2016,June,25,12,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,1,Check-Out,2016-06-14,Summer,2016-06-12T07:00Z +Keep,9,2015,December,50,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,10,2016,April,17,18,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,8,2016,April,18,29,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,2,E,E,0,No Deposit , NULL, 154,0,Transient,23,0,0,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,2,2016,July,31,30,2,1,2,0,0,BB,PRT,Direct,Corporate, 0,0,3,D,F,0,No Deposit , NULL, 154,0,Transient,182.6,0,0,Check-Out,2016-08-02,Summer,2016-07-30T07:00Z +Keep,20,2016,September,40,30,0,2,2,0,0,BB,PRT,Direct,Corporate, 0,0,4,F,F,1,No Deposit , NULL, 154,0,Transient,129.3,1,0,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,4,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,35,2017,April,17,27,0,2,2,0,0,BB,PRT,Direct,Corporate, 0,0,6,F,F,0,No Deposit , NULL, NULL,0,Transient,124,1,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,0,2017,February,7,14,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,2,2016,March,14,30,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,8,2016,June,23,2,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,5,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,8,2017,June,25,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 154,0,Transient,75,0,0,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,2,2015,December,49,2,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,3,2016,May,21,16,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,I,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,6,2016,November,48,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-24,Fall,2016-11-22T08:00Z +Keep,7,2017,April,15,11,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,0,2017,January,1,7,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2017-01-09,Winter,2017-01-07T08:00Z +Keep,13,2017,May,18,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 3, NULL,0,Transient-Party,136.2,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,76,2015,July,31,26,4,9,3,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,195.6,1,0,Check-Out,2015-08-08,Summer,2015-07-26T07:00Z +Keep,104,2016,July,30,17,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,188.14,1,1,Check-Out,2016-07-31,Summer,2016-07-17T07:00Z +Keep,103,2017,July,29,16,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,205.03,1,1,Check-Out,2017-07-30,Summer,2017-07-16T07:00Z +Keep,6,2015,November,46,10,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,8,2016,January,4,19,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,6,2016,February,8,16,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,April,15,6,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,A,1,No Deposit , NULL, NULL,0,Transient,50.4,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 457,0,Transient,35,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,7,2016,December,51,13,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,6,A,D,0,No Deposit , NULL, 457,0,Transient,35,0,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,Unknown,Direct,Corporate, 0,0,7,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,1,2017,March,10,7,0,1,2,0,0,BB,PRT,Direct,Corporate, 0,0,8,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,0,2017,April,16,18,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,9,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,4,2017,January,2,9,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,D,0,No Deposit , NULL, 501,0,Transient,39,0,0,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,2,2015,October,41,9,0,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 86,0,Transient,48,0,0,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Cancel,21,2016,December,53,30,1,2,2,0,0,BB,Unknown,Direct,Direct, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Canceled,2016-12-16,Winter,2016-12-30T08:00Z +Keep,80,2017,June,23,9,2,2,2,0,0,FB,PRT,Direct,Direct, 0,1,0,F,F,1,No Deposit , 250, NULL,0,Transient,195,0,0,Check-Out,2017-06-13,Summer,2017-06-09T07:00Z +Keep,2,2016,December,49,2,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 330, NULL,0,Transient,34,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,167,2015,August,33,11,3,10,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-08-24,Summer,2015-08-11T07:00Z +Keep,164,2016,August,33,11,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,178.15,1,2,Check-Out,2016-08-24,Summer,2016-08-11T07:00Z +Keep,172,2017,August,32,10,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,212.31,0,4,Check-Out,2017-08-23,Summer,2017-08-10T07:00Z +Keep,234,2016,September,37,5,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,2,Check-Out,2016-09-15,Fall,2016-09-05T07:00Z +Keep,454,2016,August,36,29,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,69.58,0,1,Check-Out,2016-09-09,Summer,2016-08-29T07:00Z +Keep,61,2015,October,41,6,1,5,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,E,F,2,No Deposit , NULL, NULL,0,Transient,62.5,1,1,Check-Out,2015-10-12,Fall,2015-10-06T07:00Z +Keep,83,2016,April,15,3,2,4,2,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,55.3,1,1,Check-Out,2016-04-09,Spring,2016-04-03T07:00Z +Keep,66,2016,October,42,9,2,3,2,0,0,BB,Unknown,Direct,Direct, 0,0,3,E,E,0,No Deposit , NULL, NULL,0,Transient,66,1,3,Check-Out,2016-10-14,Fall,2016-10-09T07:00Z +Cancel,160,2017,April,14,2,2,3,2,0,0,BB,Unknown,Direct,Direct, 0,1,4,E,E,0,No Deposit , NULL, NULL,0,Transient,70.8,0,3,Canceled,2017-03-20,Spring,2017-04-02T07:00Z +Keep,0,2016,January,4,20,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 286,0,Transient,30,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,2,2016,January,2,6,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,2,2016,January,4,20,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,2,2016,May,20,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,C,1,No Deposit , NULL, NULL,0,Transient,70,1,0,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,10,2016,January,3,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2016,March,10,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,8,2017,February,6,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,E,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,22,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,16,2017,March,11,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,A,1,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,0,2015,July,31,29,0,1,1,0,0,BB,Unknown,Corporate,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,114,0,0,Check-Out,2015-07-30,Summer,2015-07-29T07:00Z +Keep,6,2015,October,44,27,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,1,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2016,January,5,25,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,5,2016,March,14,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,3,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,58,2015,December,51,16,0,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,27.54,0,1,Check-Out,2015-12-18,Winter,2015-12-16T08:00Z +Keep,6,2016,January,2,5,0,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-07,Winter,2016-01-05T08:00Z +Keep,6,2016,January,5,27,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,5,2016,March,12,15,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,32,2015,July,27,3,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,129,1,0,Check-Out,2015-07-09,Summer,2015-07-03T07:00Z +Keep,118,2016,July,28,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,1,F,E,0,No Deposit , 250, NULL,0,Transient,187.5,1,1,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,120,2017,July,26,1,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,2,D,D,1,No Deposit , 250, NULL,0,Transient,144,1,1,Check-Out,2017-07-09,Summer,2017-07-01T07:00Z +Keep,1,2016,November,49,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,1,2016,March,12,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 165,0,Transient,30,0,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,26,2015,October,44,27,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 113,0,Transient,48,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,16,2015,November,47,18,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,24,2015,December,52,21,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,D,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2015-12-23,Winter,2015-12-21T08:00Z +Keep,1,2016,February,6,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,December,50,5,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,6,A,D,0,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-12-06,Winter,2016-12-05T08:00Z +Keep,1,2015,November,47,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,0,2017,February,7,15,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,March,9,1,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,38,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,1,2017,March,9,2,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,76,2015,November,47,20,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,26,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,150,2017,February,8,24,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,2,A,A,2,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,1,2016,April,15,6,0,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,44.8,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Cancel,81,2015,September,40,27,4,10,1,0,0,FB,PRT,Direct,Direct, 0,1,0,A,E,2,No Deposit , NULL, NULL,0,Transient,66.43,0,2,Canceled,2015-09-15,Fall,2015-09-27T07:00Z +Keep,46,2015,December,53,27,4,9,1,0,0,FB,PRT,Direct,Direct, 0,1,0,E,E,1,No Deposit , NULL, NULL,0,Transient,124.38,0,2,Check-Out,2016-01-09,Winter,2015-12-27T08:00Z +Keep,4,2016,February,9,27,2,6,1,0,0,FB,PRT,Direct,Direct, 0,1,1,A,E,1,No Deposit , NULL, NULL,0,Transient,55,0,2,Check-Out,2016-03-06,Winter,2016-02-27T08:00Z +Cancel,144,2016,July,29,16,4,11,1,0,0,HB,PRT,Direct,Direct, 0,2,2,A,E,1,No Deposit , NULL, NULL,0,Transient,108.4,0,2,Canceled,2016-05-05,Summer,2016-07-16T07:00Z +Cancel,31,2016,September,39,19,2,5,1,0,0,Undefined,PRT,Direct,Direct, 0,3,2,E,E,1,No Deposit , NULL, NULL,0,Transient,115,0,2,Canceled,2016-08-23,Fall,2016-09-19T07:00Z +Keep,1,2017,January,5,31,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,40,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2016,May,19,5,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-06,Spring,2016-05-05T07:00Z +Keep,2,2017,January,3,19,0,1,1,0,0,BB,PRT,Online travel agent,Corporate, 0,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2016,February,9,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2015,November,45,3,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,1,2015,December,50,10,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 291,0,Transient,35,0,0,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,3,2016,January,3,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 291,0,Transient,30,0,0,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,8,2016,January,5,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 291,0,Transient,30,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,4,2016,February,9,22,1,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,1,No Deposit , NULL, 291,0,Transient,30,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,26,0,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,I,0,No Deposit , NULL, 291,0,Transient,0,0,0,Check-Out,2016-02-26,Winter,2016-02-26T08:00Z +Keep,18,2016,March,13,22,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,A,0,No Deposit , NULL, 291,0,Transient,30,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,2,2016,April,16,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,6,A,A,0,No Deposit , NULL, 291,0,Transient,42,0,0,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,6,2016,May,23,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,7,A,A,0,No Deposit , NULL, 291,0,Transient,57,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,2,2016,January,4,20,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-22,Winter,2016-01-20T08:00Z +Keep,1,2016,February,8,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,1,2016,May,19,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,2,2016,June,23,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,3,2017,January,4,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,1,2017,April,14,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,6,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-04-06,Spring,2017-04-05T07:00Z +Keep,35,2016,March,14,31,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 154, NULL,0,Transient,39,0,0,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,224,2015,August,33,14,2,3,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-19,Summer,2015-08-14T07:00Z +Keep,197,2016,August,33,12,2,3,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,172,1,2,Check-Out,2016-08-17,Summer,2016-08-12T07:00Z +Keep,151,2015,August,32,4,2,8,2,0,0,HB,Unknown,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,147,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,88,2016,July,31,25,2,5,2,0,0,HB,Unknown,Direct,Direct, 0,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,157,0,1,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,1,2016,September,39,23,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,2,F,F,2,No Deposit , 250, NULL,0,Transient,169.5,0,0,Check-Out,2016-09-27,Fall,2016-09-23T07:00Z +Keep,17,2015,October,43,22,1,3,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,29,2016,March,11,9,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,61,1,1,Check-Out,2016-03-14,Spring,2016-03-09T08:00Z +Cancel,14,2015,September,36,3,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,C,0,No Deposit , NULL, 292,0,Transient,134,0,0,No-Show,2015-09-03,Fall,2015-09-03T07:00Z +Keep,12,2015,October,43,18,2,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,2,A,E,0,No Deposit , NULL, 292,0,Transient,48,1,0,Check-Out,2015-10-22,Fall,2015-10-18T07:00Z +Keep,11,2015,December,49,1,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,3,A,E,0,No Deposit , NULL, 292,0,Transient,35,0,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,37,2016,March,13,20,2,1,1,0,0,BB,PRT,Direct,Corporate, 0,1,4,A,E,0,No Deposit , NULL, 292,0,Transient,40,0,0,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,16,2016,May,22,22,2,1,1,0,0,BB,PRT,Direct,Corporate, 0,1,5,A,A,1,No Deposit , NULL, 292,0,Transient,70,0,0,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,37,2016,September,40,25,2,0,1,0,0,BB,PRT,Direct,Corporate, 0,1,6,A,A,3,No Deposit , NULL, 292,0,Transient,65,0,0,Check-Out,2016-09-27,Fall,2016-09-25T07:00Z +Keep,24,2016,November,47,14,1,1,1,0,0,BB,PRT,Direct,Corporate, 0,1,7,A,D,1,No Deposit , NULL, 292,0,Transient,34.5,1,0,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,13,2016,December,50,5,1,0,2,0,0,BB,PRT,Direct,Corporate, 0,1,8,E,E,1,No Deposit , NULL, 292,0,Transient,60,1,1,Check-Out,2016-12-06,Winter,2016-12-05T08:00Z +Keep,10,2016,December,52,19,1,0,1,0,0,BB,PRT,Direct,Corporate, 0,1,9,E,E,0,No Deposit , NULL, NULL,0,Transient,57,0,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,17,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,10,E,E,0,No Deposit , NULL, 292,0,Transient,58,1,1,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,17,2017,March,11,13,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,11,A,F,1,No Deposit , NULL, 292,0,Transient,38.5,1,1,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,19,2017,April,16,17,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,12,A,E,0,No Deposit , NULL, 292,0,Transient,48.5,1,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,11,2017,May,19,8,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,13,A,E,0,No Deposit , NULL, 292,0,Transient,48.5,1,1,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Cancel,30,2017,June,24,11,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,2,14,A,A,2,No Deposit , NULL, 292,0,Transient,80,0,1,Canceled,2017-05-18,Summer,2017-06-11T07:00Z +Keep,17,2017,July,30,24,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,2,14,A,F,0,No Deposit , NULL, 292,0,Transient,142,0,1,Check-Out,2017-07-25,Summer,2017-07-24T07:00Z +Keep,230,2016,August,34,16,4,10,2,1,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,169.93,0,1,Check-Out,2016-08-30,Summer,2016-08-16T07:00Z +Keep,75,2015,August,34,22,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,175,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,44,2015,September,37,11,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,192,1,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,72,2016,September,38,16,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,1,G,G,1,No Deposit , 250, NULL,0,Transient,203.4,1,1,Check-Out,2016-09-19,Fall,2016-09-16T07:00Z +Keep,4,2015,September,38,15,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,2,A,A,0,No Deposit , 250, NULL,0,Transient,87.5,0,0,Check-Out,2015-09-19,Fall,2015-09-15T07:00Z +Keep,2,2016,June,24,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,107.1,0,0,Check-Out,2016-06-10,Summer,2016-06-09T07:00Z +Keep,5,2016,June,25,12,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,4,F,A,0,No Deposit , NULL, NULL,0,Transient,130.34,0,0,Check-Out,2016-06-19,Summer,2016-06-12T07:00Z +Keep,2,2016,October,41,2,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,5,A,A,0,No Deposit , 250, NULL,0,Transient,81,0,1,Check-Out,2016-10-05,Fall,2016-10-02T07:00Z +Keep,3,2017,June,22,1,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,6,A,A,0,No Deposit , 250, NULL,0,Transient,97.85,0,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Cancel,4,2015,September,36,4,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,3,A,E,0,No Deposit , NULL, 86,0,Transient,134,0,0,Canceled,2015-09-02,Fall,2015-09-04T07:00Z +Keep,2,2015,September,38,18,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,1,3,A,A,1,No Deposit , NULL, 86,0,Transient,80,0,0,Check-Out,2015-09-19,Fall,2015-09-18T07:00Z +Keep,9,2015,September,40,28,1,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,1,4,A,A,0,No Deposit , NULL, 86,0,Transient,75,0,0,Check-Out,2015-09-30,Fall,2015-09-28T07:00Z +Keep,29,2015,October,44,27,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,1,5,A,D,2,No Deposit , NULL, 86,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,26,2015,November,48,24,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,1,6,A,D,0,No Deposit , NULL, 86,0,Transient,35,0,0,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,12,2016,June,26,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,7,A,D,0,No Deposit , NULL, 86,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Cancel,28,2016,July,30,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,2,8,A,D,0,No Deposit , NULL, 86,0,Transient,89,0,0,Canceled,2016-07-12,Summer,2016-07-20T07:00Z +Keep,4,2017,February,8,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,2,8,A,D,0,No Deposit , NULL, 86,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,1,2017,March,12,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,2,9,A,D,0,No Deposit , NULL, 86,0,Transient,45,0,0,Check-Out,2017-03-23,Spring,2017-03-21T07:00Z +Keep,12,2016,February,9,22,1,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,8,2016,October,42,10,1,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Cancel,17,2016,December,50,10,1,1,1,0,0,BB,Unknown,Direct,Direct, 0,1,0,D,D,2,No Deposit , NULL, NULL,0,Transient,44.88,0,1,Canceled,2016-12-07,Winter,2016-12-10T08:00Z +Keep,17,2016,December,50,10,1,1,2,1,0,BB,Unknown,Direct,Direct, 0,1,0,D,D,3,No Deposit , NULL, NULL,0,Transient,53.63,0,1,Check-Out,2016-12-12,Winter,2016-12-10T08:00Z +Keep,0,2015,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2016,February,6,2,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 290,0,Transient,30,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,0,2016,March,11,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,D,0,No Deposit , NULL, 290,0,Transient,30,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,0,2016,June,27,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,H,0,No Deposit , NULL, 290,0,Transient,79,0,0,Check-Out,2016-06-29,Summer,2016-06-28T07:00Z +Keep,0,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,6,A,D,0,No Deposit , NULL, 290,0,Transient,45,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,0,2017,April,16,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,2,2015,October,42,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 286,0,Transient,47,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,November,48,24,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 286,0,Transient,40,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,4,2016,October,44,28,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,1,2015,December,51,15,0,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2015-12-18,Winter,2015-12-15T08:00Z +Keep,1,2016,February,6,2,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,D,0,No Deposit , NULL, 9,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,3,2016,April,15,4,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 9,0,Transient,42,0,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,5,2016,June,26,21,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,6,A,A,1,No Deposit , NULL, 9,0,Transient,65,0,0,Check-Out,2016-06-23,Summer,2016-06-21T07:00Z +Keep,6,2016,October,43,18,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,7,A,D,0,No Deposit , NULL, 9,0,Transient,54,0,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,3,2016,December,51,12,1,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,8,A,A,0,No Deposit , NULL, 9,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-12T08:00Z +Keep,6,2017,January,4,24,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,9,A,D,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,6,2017,March,10,7,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,10,A,A,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,6,2017,April,14,4,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,11,A,A,0,No Deposit , NULL, 9,0,Transient,48,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,10,2015,October,44,29,1,3,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-02,Fall,2015-10-29T07:00Z +Keep,5,2016,October,44,27,2,3,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-11-01,Fall,2016-10-27T07:00Z +Keep,3,2017,March,11,13,1,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient,48,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,1,2016,November,49,29,0,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 43,0,Transient,0,0,0,Check-Out,2016-11-29,Fall,2016-11-29T08:00Z +Keep,0,2016,December,51,12,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 43,0,Transient,30,0,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,0,2015,December,52,21,1,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,0,2016,March,12,14,1,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,29,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,3,2017,February,8,20,1,0,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,1,A,D,0,No Deposit , 171, NULL,0,Transient,30,0,1,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,16,2016,March,14,29,0,4,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2016-04-02,Spring,2016-03-29T07:00Z +Keep,8,2016,December,50,8,0,2,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,2,Check-Out,2016-12-10,Winter,2016-12-08T08:00Z +Keep,5,2015,October,44,28,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 325,0,Transient-Party,48,1,0,Check-Out,2015-10-30,Fall,2015-10-28T07:00Z +Keep,30,2016,November,45,1,1,5,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,29.3,0,1,Check-Out,2016-11-07,Fall,2016-11-01T07:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,Unknown,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,12,2016,October,44,29,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,1,2017,January,3,21,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,20,2016,March,14,28,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,21,2015,August,33,13,2,3,3,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient-Party,222.2,0,1,Check-Out,2015-08-18,Summer,2015-08-13T07:00Z +Cancel,1,2016,July,30,23,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,154,0,0,Canceled,2016-07-23,Summer,2016-07-23T07:00Z +Cancel,15,2017,January,2,12,0,3,2,0,0,BB,Unknown,Direct,Direct, 0,2,0,E,E,0,No Deposit , NULL, NULL,0,Transient,57.6,0,3,Canceled,2017-01-11,Winter,2017-01-12T08:00Z +Keep,9,2016,September,39,20,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,5,2017,March,9,4,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,60,1,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,0,2015,October,42,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,37,0,1,Check-Out,2015-10-17,Fall,2015-10-16T07:00Z +Keep,0,2016,February,6,1,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,A,D,0,No Deposit , 3, NULL,0,Transient,25,0,1,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,23,2017,March,11,16,0,3,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,2,2016,January,3,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 192,0,Transient,38,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2016,January,5,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 192,0,Transient,41,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,7,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 192,0,Transient,33,1,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,March,10,2,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,62,2017,March,11,13,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 108,0,Transient,35,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Cancel,183,2015,July,27,4,4,10,2,1,0,BB,PRT,Direct,Direct, 0,1,0,G,G,0,No Deposit , NULL, NULL,0,Transient,130,0,1,Canceled,2015-05-19,Summer,2015-07-04T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,4,2016,April,16,11,1,3,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,39,0,0,Check-Out,2016-04-15,Spring,2016-04-11T07:00Z +Keep,3,2015,November,47,16,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2015-11-18,Fall,2015-11-16T08:00Z +Keep,72,2016,February,6,6,2,1,2,1,0,Undefined,Unknown,Direct,Direct, 0,0,1,D,F,1,No Deposit , NULL, NULL,0,Transient-Party,39.67,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,4,2017,April,14,3,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,48,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,0,2017,January,4,23,1,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,45.6,0,1,Check-Out,2017-01-25,Winter,2017-01-23T08:00Z +Keep,0,2017,April,14,3,1,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 241, NULL,0,Group,61.6,0,1,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,1,2017,May,21,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,A,A,0,No Deposit , 240, NULL,0,Group,75,0,2,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,3,2016,May,19,2,1,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,72,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,1,2015,December,51,15,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-17,Winter,2015-12-15T08:00Z +Keep,3,2015,September,36,3,0,3,2,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,C,0,No Deposit , NULL, 268,0,Transient-Party,98,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,1,2015,October,42,13,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,48,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,4,2016,October,44,25,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 31,0,Transient-Party,42,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,0,2016,October,43,17,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 200,0,Transient,45,0,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,45,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,75,1,3,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Cancel,0,2016,June,24,5,1,0,1,0,0,BB,Unknown,Direct,Corporate, 0,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,90,0,0,Canceled,2016-06-05,Summer,2016-06-05T07:00Z +Keep,0,2016,March,10,2,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,39,2017,January,2,14,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2017-01-17,Winter,2017-01-14T08:00Z +Keep,1,2016,April,18,24,1,0,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,22,2016,May,21,17,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,4,D,D,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2016-05-18,Spring,2016-05-17T07:00Z +Cancel,83,2016,July,30,17,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,1,5,A,A,0,No Deposit , NULL, NULL,0,Transient,156,0,0,Canceled,2016-07-11,Summer,2016-07-17T07:00Z +Keep,9,2017,January,4,27,0,1,2,0,0,BB,Unknown,Corporate,Direct, 0,1,5,A,D,1,No Deposit , NULL, NULL,0,Transient,47,1,0,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,1,2016,June,27,30,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, 51,0,Transient,79,1,0,Check-Out,2016-07-01,Summer,2016-06-30T07:00Z +Keep,5,2016,July,31,26,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,F,0,No Deposit , NULL, 51,0,Transient,118,1,0,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,1,2016,November,45,4,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, 51,0,Transient,48,1,0,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,1,2017,March,12,21,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,3,A,C,0,No Deposit , NULL, 51,0,Transient,50,1,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Cancel,5,2017,July,28,13,0,1,1,0,0,BB,PRT,Direct,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient,120,0,0,Canceled,2017-07-12,Summer,2017-07-13T07:00Z +Keep,0,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 43,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,244,2017,June,25,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.8,0,2,Check-Out,2017-07-04,Summer,2017-06-20T07:00Z +Keep,2,2016,May,19,4,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 9, NULL,0,Transient,42,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,166,2015,July,29,12,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,110.7,0,1,Check-Out,2015-07-18,Summer,2015-07-12T07:00Z +Keep,4,2015,October,41,4,1,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,43,2017,June,23,10,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,A,2,No Deposit , NULL, NULL,0,Transient,140.7,1,2,Check-Out,2017-06-16,Summer,2017-06-10T07:00Z +Cancel,0,2015,July,29,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,1,2,L,L,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Canceled,2015-07-17,Summer,2015-07-17T07:00Z +Keep,2,2017,January,5,29,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,2,2,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,18,2017,January,5,30,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,2,2,A,D,0,No Deposit , 240, 268,0,Transient-Party,53,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Direct,TA/TO, 0,2,2,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,49,2017,July,30,23,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,214,1,0,Check-Out,2017-07-26,Summer,2017-07-23T07:00Z +Keep,15,2015,November,45,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,2,A,A,0,No Deposit , 314, NULL,0,Transient,21.5,0,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,9,2015,December,49,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,3,A,A,0,No Deposit , 314, NULL,0,Group,26,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,8,2016,January,3,13,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,4,A,D,0,No Deposit , 314, NULL,0,Transient,25,0,1,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,51,2017,January,4,25,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,A,A,0,No Deposit , 314, NULL,0,Group,29.6,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,43,2017,March,13,29,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,6,A,A,0,No Deposit , 6, NULL,0,Transient,30,0,1,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,117,2016,July,30,18,2,5,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,241,1,2,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,238,2017,July,29,17,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,E,E,0,No Deposit , 6, NULL,0,Transient,185.6,1,2,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,1,2016,August,36,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,125,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,137,2017,July,27,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,189,0,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,4,2017,May,21,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,0,Check-Out,2017-05-25,Spring,2017-05-22T07:00Z +Keep,3,2015,July,29,17,1,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,154.3,0,2,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,3,2015,July,29,17,1,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,127.3,0,1,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,7,2015,October,44,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, 331,0,Transient,35.1,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,10,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,Non Refund , NULL, NULL,0,Transient-Party,38,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Cancel,45,2017,August,31,3,0,3,3,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient,233.92,0,0,Canceled,2017-06-19,Summer,2017-08-03T07:00Z +Keep,110,2015,August,32,8,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,107,0,1,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,101,2017,February,8,25,2,1,2,2,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,297,2017,August,32,6,4,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,170.95,0,0,Check-Out,2017-08-15,Summer,2017-08-06T07:00Z +Keep,106,2017,August,34,21,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,225.6,0,0,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,236,2017,July,27,2,3,5,2,1,0,BB,PRT,Direct,Direct, 0,0,1,A,C,2,No Deposit , 250, NULL,0,Transient,113.63,1,1,Check-Out,2017-07-10,Summer,2017-07-02T07:00Z +Keep,1,2016,August,36,28,2,1,2,1,0,HB,Unknown,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,140,0,0,Check-Out,2016-08-31,Summer,2016-08-28T07:00Z +Keep,1,2017,February,6,11,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55,1,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,187,2017,July,27,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,175,2016,September,36,3,2,6,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,159.5,0,0,Check-Out,2016-09-11,Fall,2016-09-03T07:00Z +Keep,58,2016,September,37,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,130,1,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,40,2015,September,37,6,2,3,2,1,0,HB,Unknown,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,174.8,0,1,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Keep,176,2016,October,41,5,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,71.1,1,1,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,0,2017,January,1,5,0,3,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-08,Winter,2017-01-05T08:00Z +Keep,0,2017,July,30,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192.5,0,1,Check-Out,2017-07-30,Summer,2017-07-28T07:00Z +Keep,260,2017,June,24,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68.4,0,1,Check-Out,2017-06-29,Summer,2017-06-15T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 43,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,0,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,B,0,No Deposit , NULL, 43,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,1,2015,November,47,17,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 43,0,Transient,35,0,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,204,2016,September,38,17,6,15,2,0,0,HB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,102.86,0,1,Check-Out,2016-10-08,Fall,2016-09-17T07:00Z +Keep,0,2016,October,41,3,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,96,1,0,Check-Out,2016-10-05,Fall,2016-10-03T07:00Z +Keep,8,2015,October,42,11,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,91,1,1,Check-Out,2015-10-18,Fall,2015-10-11T07:00Z +Keep,8,2015,October,42,11,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2015-10-18,Fall,2015-10-11T07:00Z +Keep,0,2015,November,45,3,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,E,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,1,2016,June,23,1,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,1,2016,June,25,14,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,3,A,C,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2016-06-15,Summer,2016-06-14T07:00Z +Keep,0,2016,August,35,24,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, NULL,0,Transient,126,0,0,Check-Out,2016-08-25,Summer,2016-08-24T07:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,35,1,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,74,1,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,February,8,17,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,7,2016,June,25,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, 34,0,Transient,79,0,0,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,1,2017,February,7,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,D,0,No Deposit , 34, NULL,0,Transient,35,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,25,2017,August,34,22,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,335,0,2,Check-Out,2017-08-25,Summer,2017-08-22T07:00Z +Keep,0,2017,February,6,11,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-11,Winter,2017-02-11T08:00Z +Keep,0,2017,February,7,14,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,4,2016,January,5,26,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,6,2016,January,5,28,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,14,0,1,Check-Out,2016-01-30,Winter,2016-01-28T08:00Z +Keep,2,2017,January,4,25,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,A,0,No Deposit , NULL, 224,0,Transient,35,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,1,2016,April,15,6,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 144,0,Transient,39,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,6,2017,March,13,26,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,70,0,1,Check-Out,2017-03-27,Spring,2017-03-26T07:00Z +Keep,1,2015,October,41,6,0,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,1,A,D,0,No Deposit , 142, NULL,0,Transient,37,0,0,Check-Out,2015-10-07,Fall,2015-10-06T07:00Z +Keep,1,2015,December,49,2,0,2,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,2,A,D,0,No Deposit , 5, NULL,0,Transient,42,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,0,2016,March,12,17,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,3,2016,January,5,26,0,2,1,0,0,BB,CYP,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 144,0,Transient,27,1,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,14,2016,December,50,5,1,3,2,0,0,SC,CYP,Corporate,Corporate, 0,0,1,A,I,3,No Deposit , NULL, 144,0,Transient,0,0,0,Check-Out,2016-12-09,Winter,2016-12-05T08:00Z +Keep,0,2016,February,6,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,26,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,March,12,14,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,1,2016,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,1,No Deposit , NULL, 12,0,Transient,30,0,0,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,1,2016,March,11,10,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,42.4,1,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,3,2016,October,43,18,0,2,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,1,A,A,0,No Deposit , 327, NULL,0,Transient,45,1,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,2,2017,February,7,15,0,2,1,0,0,BB,Unknown,Corporate,TA/TO, 0,0,2,A,D,0,No Deposit , NULL, 356,0,Transient,35,0,0,Check-Out,2017-02-17,Winter,2017-02-15T08:00Z +Keep,7,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,3,A,A,0,No Deposit , NULL, 356,0,Transient,45,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2016,February,6,1,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-01T08:00Z +Keep,0,2016,February,10,29,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,A,1,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,0,2016,April,16,11,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 47,0,Transient,39,0,0,Check-Out,2016-04-15,Spring,2016-04-11T07:00Z +Keep,10,2016,May,20,9,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,C,0,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,11,2016,March,12,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-19,Spring,2016-03-16T07:00Z +Keep,13,2016,March,12,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,2,2016,December,49,2,0,1,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 330, NULL,0,Transient,34,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,23,2017,June,23,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-13,Summer,2017-06-09T07:00Z +Keep,2,2015,July,27,1,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,C,0,No Deposit , 240, NULL,0,Transient,4,0,1,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,1,2016,January,5,27,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,2,A,D,0,No Deposit , 240, NULL,0,Group,40,0,1,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,1,2016,February,6,3,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,March,12,14,1,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,0,2016,October,45,31,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76.5,0,2,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,13,2017,January,3,21,0,1,2,0,0,BB,Unknown,Online travel agent,Direct, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,12,2017,April,14,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,A,A,0,No Deposit , 242, NULL,0,Transient,85,0,3,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,3,2017,April,15,9,1,0,2,0,0,BB,PRT,Direct,TA/TO, 0,0,2,A,A,0,No Deposit , 250, NULL,0,Group,85,0,3,Check-Out,2017-04-10,Spring,2017-04-09T07:00Z +Keep,22,2015,October,44,27,0,2,2,0,0,BB,FIN,Complementary,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Cancel,14,2016,October,44,25,0,3,2,0,0,BB,FIN,Complementary,Direct, 0,1,1,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Canceled,2016-10-18,Fall,2016-10-25T07:00Z +Keep,0,2017,January,3,16,1,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,0,2016,March,11,7,1,1,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,D,1,No Deposit , NULL, 388,0,Transient,30,0,0,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,0,2016,May,21,19,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,E,0,No Deposit , NULL, 388,0,Transient,42,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,0,2017,March,13,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 388,0,Transient,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,2,2016,January,3,13,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 269,0,Transient,30,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,1,2016,February,9,23,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,1,No Deposit , NULL, 269,0,Transient,30,0,0,Check-Out,2016-02-25,Winter,2016-02-23T08:00Z +Keep,0,2016,March,13,22,0,2,1,0,0,BB,Unknown,Direct,Corporate, 0,0,4,A,A,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,5,2016,April,18,27,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,5,A,D,0,No Deposit , NULL, 269,0,Transient,45,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,20,2016,September,38,14,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,6,A,A,1,No Deposit , NULL, 269,0,Transient,65,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,7,2016,November,47,16,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,7,A,A,0,No Deposit , NULL, 269,0,Transient,30,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,6,2017,January,3,18,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,8,A,A,0,No Deposit , NULL, 269,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,6,2017,February,8,22,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,9,A,A,0,No Deposit , NULL, 269,0,Transient,35,0,1,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,2,2017,March,12,22,0,1,1,0,0,BB,Unknown,Direct,Corporate, 0,0,10,A,D,0,No Deposit , NULL, 269,0,Transient,60,0,1,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,0,2015,December,50,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,0,2016,January,5,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,0,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,C,E,0,No Deposit , NULL, 465,0,Transient,50,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,1,2016,December,52,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,5,A,A,0,No Deposit , NULL, 465,0,Transient,39,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,3,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,6,A,A,0,No Deposit , NULL, 465,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,Unknown,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,1,2015,November,48,25,0,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 78, NULL,0,Transient,25,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2016,February,8,15,1,0,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,0,2017,January,2,13,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,84,0,0,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,2,2015,October,40,2,0,1,2,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,F,2,No Deposit , NULL, 287,0,Transient,82,1,1,Check-Out,2015-10-03,Fall,2015-10-02T07:00Z +Keep,11,2016,January,4,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,I,0,No Deposit , NULL, 287,0,Transient,38,1,1,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,3,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,I,2,No Deposit , NULL, 287,0,Transient,40,1,1,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,March,11,10,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,E,0,No Deposit , NULL, 287,0,Transient,40,1,1,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,6,2015,November,46,9,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,E,2,No Deposit , NULL, 297,0,Transient,46,1,0,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,5,2016,March,12,14,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 297,0,Transient,40,1,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,6,2016,May,21,16,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 297,0,Transient,63,1,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,3,2016,October,43,17,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,4,A,A,0,No Deposit , NULL, 297,0,Transient,57.9,1,1,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,0,2015,November,47,19,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,1,2016,January,3,12,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-14,Winter,2016-01-12T08:00Z +Keep,1,2017,April,15,13,0,1,2,0,0,BB,Unknown,Direct,TA/TO, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,161,0,1,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,0,2015,November,46,8,1,0,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-11-09,Fall,2015-11-08T08:00Z +Keep,0,2015,December,50,6,1,0,1,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Keep,0,2016,March,10,2,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Cancel,0,2016,April,15,7,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Canceled,2016-04-07,Spring,2016-04-07T07:00Z +Keep,4,2017,March,10,6,1,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-03-08,Spring,2017-03-06T08:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 86,0,Transient,35,1,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Cancel,28,2016,June,25,13,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,1,3,A,A,0,No Deposit , NULL, 86,0,Transient,65,0,0,Canceled,2016-06-08,Summer,2016-06-13T07:00Z +Keep,0,2015,December,49,3,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2016,January,4,20,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,February,7,11,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2016,February,9,25,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,March,14,30,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,4,F,F,0,No Deposit , NULL, NULL,0,Transient,82.35,0,1,Check-Out,2016-04-01,Spring,2016-03-30T07:00Z +Keep,1,2017,February,6,10,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,0,2016,March,10,4,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,1,2016,April,15,7,0,3,2,1,0,BB,Unknown,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,75,0,1,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,3,2016,March,14,31,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 135,0,Transient,42,1,0,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,2,2016,December,51,15,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 135,0,Transient,36,1,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,2,2017,January,3,19,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 135,0,Transient,35,1,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,2,2017,March,13,30,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 135,0,Transient,35,1,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,29,2015,October,43,22,1,3,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, 317,0,Transient-Party,56,0,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,4,2016,March,12,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,1,2015,October,42,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 314, NULL,0,Transient,37.6,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Cancel,2,2015,October,42,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Canceled,2015-10-12,Fall,2015-10-14T07:00Z +Keep,0,2015,November,47,16,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,1,A,A,0,No Deposit , 314, NULL,0,Group,34.4,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,1,2015,December,51,17,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,2,A,D,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,6,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,1,3,A,A,0,No Deposit , NULL, 356,0,Transient-Party,35,0,1,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,6,2016,February,7,9,0,3,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,0,2015,December,52,21,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,69,1,0,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,14,2015,September,38,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,H,1,No Deposit , NULL, NULL,0,Transient,80.1,0,0,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,2,2015,December,51,17,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2015-12-19,Winter,2015-12-17T08:00Z +Keep,27,2016,September,37,8,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,2,A,A,1,No Deposit , 250, NULL,0,Transient,88.29,0,1,Check-Out,2016-09-10,Fall,2016-09-08T07:00Z +Keep,17,2017,February,6,6,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 490,0,Transient,36,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,2,2015,December,50,9,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 86,0,Transient,46,1,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2016,April,16,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 86,0,Transient,65.4,1,0,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,0,2016,November,46,8,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,0,2016,November,47,16,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,1,A,D,0,No Deposit , NULL, 482,0,Transient,40,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,4,2016,April,15,4,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,2,A,D,0,No Deposit , NULL, 207,0,Transient,45,1,0,Check-Out,2016-04-07,Spring,2016-04-04T07:00Z +Keep,3,2016,November,49,28,1,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,3,A,D,0,No Deposit , NULL, 207,0,Transient,33,1,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,0,2015,December,49,1,0,2,1,0,0,BB,Unknown,Corporate,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,0,2016,January,4,19,0,1,1,0,0,BB,Unknown,Corporate,Direct, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,10,2016,December,51,17,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,64,0,2,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,81,2016,December,53,31,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,202.5,0,1,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,69,2016,March,13,24,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,49.22,0,1,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,66,2016,December,53,30,1,2,2,0,2,BB,Unknown,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,197.67,1,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,10,2017,May,18,6,1,1,2,2,0,BB,PRT,Online travel agent,Direct, 0,0,1,G,G,0,No Deposit , 240, NULL,0,Transient,176,1,3,Check-Out,2017-05-08,Spring,2017-05-06T07:00Z +Keep,2,2017,May,19,8,1,0,2,2,0,BB,PRT,Online travel agent,Direct, 0,0,1,G,G,0,No Deposit , 240, NULL,0,Transient,152,1,3,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,12,2016,April,18,27,0,3,1,0,0,Undefined,Unknown,Groups,Direct, 0,0,0,A,F,1,No Deposit , 385, NULL,0,Transient,0,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,8,2016,November,47,19,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,47.55,0,2,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,1,2016,December,51,11,1,0,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Group,48,0,2,Check-Out,2016-12-12,Winter,2016-12-11T08:00Z +Keep,0,2017,February,5,4,0,1,2,0,0,BB,Unknown,Direct,TA/TO, 0,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,2,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,1,2017,February,7,18,0,1,2,0,0,BB,Unknown,Direct,TA/TO, 0,0,3,D,D,0,No Deposit , NULL, NULL,0,Transient,61.2,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2017,March,9,4,0,1,2,0,0,BB,Unknown,Direct,TA/TO, 0,0,4,D,D,0,No Deposit , 250, NULL,0,Transient,68,0,2,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,73,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2015,September,36,5,1,1,2,2,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,178.5,1,1,Check-Out,2015-09-07,Fall,2015-09-05T07:00Z +Keep,95,2016,May,21,21,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,70,1,0,Check-Out,2016-05-27,Spring,2016-05-21T07:00Z +Keep,181,2015,August,33,10,3,6,3,0,0,HB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,158.33,0,1,Check-Out,2015-08-19,Summer,2015-08-10T07:00Z +Keep,181,2017,August,31,4,2,5,3,0,0,HB,PRT,Online travel agent,Direct, 0,0,1,A,A,1,No Deposit , 242, NULL,0,Transient,230.84,0,2,Check-Out,2017-08-11,Summer,2017-08-04T07:00Z +Keep,0,2015,July,28,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,L,A,0,No Deposit , NULL, NULL,0,Transient,82,0,0,Check-Out,2015-07-10,Summer,2015-07-09T07:00Z +Keep,0,2016,March,12,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,1,A,F,1,No Deposit , NULL, NULL,0,Transient,88,0,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,43,2017,May,18,4,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 169,0,Transient-Party,67,1,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,1,2015,September,39,25,0,1,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106.2,0,1,Check-Out,2015-09-26,Fall,2015-09-25T07:00Z +Keep,5,2015,October,44,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,37,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,1,2016,November,46,9,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-11,Fall,2016-11-09T08:00Z +Keep,10,2016,February,7,9,0,2,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,29,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,8,2016,February,7,11,0,1,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,30,0,1,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 139, NULL,0,Transient,35,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,5,2016,May,20,9,1,3,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 282,0,Transient,45,0,0,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,74,2017,July,28,9,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,225,0,2,Check-Out,2017-07-15,Summer,2017-07-09T07:00Z +Cancel,49,2015,September,38,19,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,99,0,0,No-Show,2015-09-19,Fall,2015-09-19T07:00Z +Keep,50,2016,October,41,2,2,2,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,166,2016,June,24,10,2,6,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-18,Summer,2016-06-10T07:00Z +Keep,1,2016,May,21,20,1,2,2,0,0,HB,Unknown,Direct,Direct, 0,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,110,0,2,Check-Out,2016-05-23,Spring,2016-05-20T07:00Z +Keep,19,2017,July,28,10,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,2,D,D,3,No Deposit , NULL, NULL,0,Transient,245.5,0,3,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,327,2016,September,38,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,68.4,0,1,Check-Out,2016-09-19,Fall,2016-09-12T07:00Z +Cancel,172,2017,June,24,14,2,5,2,0,0,BB,GBR,Direct,TA/TO, 0,1,1,E,E,0,No Deposit , NULL, NULL,0,Transient,113.4,0,1,Canceled,2017-06-12,Summer,2017-06-14T07:00Z +Keep,14,2016,June,27,29,0,1,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,57,1,0,Check-Out,2016-06-30,Summer,2016-06-29T07:00Z +Keep,133,2017,July,27,3,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,151.88,1,0,Check-Out,2017-07-11,Summer,2017-07-03T07:00Z +Keep,8,2016,January,6,31,2,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,50,1,0,Check-Out,2016-02-02,Winter,2016-01-31T08:00Z +Keep,14,2015,July,28,6,1,4,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 175, NULL,0,Transient,58.95,0,0,Check-Out,2015-07-11,Summer,2015-07-06T07:00Z +Keep,0,2016,April,14,1,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-04-03,Spring,2016-04-01T07:00Z +Keep,6,2016,July,29,14,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,152.1,0,0,Check-Out,2016-07-17,Summer,2016-07-14T07:00Z +Keep,103,2015,July,28,5,2,3,2,1,0,HB,PRT,Direct,Undefined, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112.7,1,2,Check-Out,2015-07-10,Summer,2015-07-05T07:00Z +Keep,22,2015,July,28,9,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,134.67,0,3,Check-Out,2015-07-12,Summer,2015-07-09T07:00Z +Keep,22,2015,July,28,9,0,3,3,0,0,HB,Unknown,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,180.67,1,5,Check-Out,2015-07-12,Summer,2015-07-09T07:00Z +Keep,39,2016,August,36,30,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,2,E,E,1,No Deposit , NULL, NULL,0,Transient,191,1,3,Check-Out,2016-09-01,Summer,2016-08-30T07:00Z +Keep,19,2016,July,31,28,1,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,288.1,0,3,Check-Out,2016-08-01,Summer,2016-07-28T07:00Z +Keep,5,2016,March,11,8,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,139,2017,July,27,2,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,175.4,1,1,Check-Out,2017-07-07,Summer,2017-07-02T07:00Z +Keep,0,2016,March,12,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,46,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,37,2017,August,32,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,275.25,1,1,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,38,2017,August,33,13,2,0,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,367,1,0,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,1,2016,November,48,25,2,3,2,0,0,HB,Unknown,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,66.4,0,0,Check-Out,2016-11-30,Fall,2016-11-25T08:00Z +Keep,3,2017,January,4,27,2,2,2,0,0,HB,Unknown,Direct,TA/TO, 0,0,1,A,E,1,No Deposit , 250, NULL,0,Transient,77,0,0,Check-Out,2017-01-31,Winter,2017-01-27T08:00Z +Keep,2,2017,May,19,11,0,3,2,0,0,HB,PRT,Direct,TA/TO, 0,0,2,E,E,1,No Deposit , 250, NULL,0,Transient,153.67,0,0,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,51,2015,July,30,20,1,4,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,152,0,0,Check-Out,2015-07-25,Summer,2015-07-20T07:00Z +Keep,1,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 20,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,1,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,1,No Deposit , NULL, 20,0,Transient,30,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,1,2016,June,25,17,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,A,0,No Deposit , NULL, 20,0,Transient,0,0,0,Check-Out,2016-06-17,Summer,2016-06-17T07:00Z +Keep,0,2017,April,17,24,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 437,0,Transient,72,1,0,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,147,2016,July,31,27,1,4,2,0,1,HB,Unknown,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,165,0,4,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,105,2017,August,32,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,239,1,1,Check-Out,2017-08-18,Summer,2017-08-11T07:00Z +Keep,25,2015,July,30,24,2,6,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-01,Summer,2015-07-24T07:00Z +Keep,176,2016,August,34,20,2,3,2,1,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,143,0,1,Check-Out,2016-08-25,Summer,2016-08-20T07:00Z +Keep,0,2017,August,31,2,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,H,1,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2017-08-03,Summer,2017-08-02T07:00Z +Keep,4,2016,December,50,10,0,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,126,2016,August,33,13,4,6,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,229.5,1,1,Check-Out,2016-08-23,Summer,2016-08-13T07:00Z +Keep,10,2015,August,34,18,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,216.5,0,1,Check-Out,2015-08-22,Summer,2015-08-18T07:00Z +Keep,155,2017,August,32,11,2,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,251,0,1,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,155,2017,August,32,11,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,225.5,0,1,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,159,2015,August,33,10,3,10,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,147.6,0,1,Check-Out,2015-08-23,Summer,2015-08-10T07:00Z +Keep,181,2016,August,33,7,4,8,2,0,0,HB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,232,1,2,Check-Out,2016-08-19,Summer,2016-08-07T07:00Z +Keep,250,2017,August,32,6,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,201.43,1,4,Check-Out,2017-08-20,Summer,2017-08-06T07:00Z +Keep,7,2017,April,16,17,1,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient-Party,72.16,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,33,2016,April,16,10,1,0,1,0,0,SC,Unknown,Corporate,Direct, 0,0,0,A,I,0,No Deposit , NULL, 263,0,Transient-Party,6,1,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Cancel,21,2016,July,31,27,1,4,2,0,0,HB,Unknown,Direct,Direct, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient,209,0,0,Canceled,2016-07-08,Summer,2016-07-27T07:00Z +Keep,212,2016,August,35,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,69.86,0,0,Check-Out,2016-09-04,Summer,2016-08-21T07:00Z +Keep,3,2016,March,12,15,0,5,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-20,Spring,2016-03-15T07:00Z +Keep,63,2015,September,36,1,0,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,142.5,0,1,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,184,2016,September,36,3,4,6,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,166,1,1,Check-Out,2016-09-13,Fall,2016-09-03T07:00Z +Keep,169,2015,September,36,1,2,8,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,126,1,0,Check-Out,2015-09-11,Fall,2015-09-01T07:00Z +Keep,2,2016,May,19,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,1,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,348,2016,September,37,10,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,64.9,0,0,Check-Out,2016-09-24,Fall,2016-09-10T07:00Z +Keep,6,2015,November,48,24,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,45,0,0,Check-Out,2015-11-26,Fall,2015-11-24T08:00Z +Keep,0,2016,February,6,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,D,D,0,No Deposit , 314, NULL,0,Transient,46.4,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,2,2016,October,44,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,2,E,E,0,No Deposit , 314, NULL,0,Transient,72,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,7,2016,November,48,21,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,3,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,7,2016,December,52,19,1,0,1,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,4,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,6,2017,January,5,30,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,A,A,0,No Deposit , 314, NULL,0,Group,34.4,0,0,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,2,2017,May,21,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,6,A,A,0,No Deposit , 175, NULL,0,Transient,60,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,8,2016,October,43,18,0,2,1,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,1,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,6,2015,September,37,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,109,0,0,Check-Out,2015-09-08,Fall,2015-09-07T07:00Z +Cancel,152,2015,July,27,2,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 243, NULL,0,Contract,67.58,0,0,Canceled,2015-04-03,Summer,2015-07-02T07:00Z +Keep,250,2016,September,38,17,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,70.4,0,3,Check-Out,2016-09-24,Fall,2016-09-17T07:00Z +Keep,151,2016,September,38,11,2,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,160.4,1,1,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,17,2017,April,15,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,48,2016,September,39,21,0,3,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,152.1,0,0,Check-Out,2016-09-24,Fall,2016-09-21T07:00Z +Keep,165,2016,December,52,23,1,2,1,0,0,HB,Unknown,Direct,Direct, 0,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,55.53,0,1,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,266,2015,September,39,24,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,266,2015,September,39,24,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,45.45,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,40,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,1,D,D,0,No Deposit , 201, NULL,0,Group,65.33,0,2,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,35.67,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,152,2015,September,37,6,7,15,2,0,0,HB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,81.82,0,0,Check-Out,2015-09-28,Fall,2015-09-06T07:00Z +Keep,228,2016,September,37,5,6,15,2,0,0,HB,DEU,Direct,Direct, 0,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,88,0,1,Check-Out,2016-09-26,Fall,2016-09-05T07:00Z +Keep,9,2015,October,44,28,0,2,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2015-10-30,Fall,2015-10-28T07:00Z +Keep,2,2016,December,51,16,0,2,2,0,0,BB,Unknown,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,185,2015,July,28,6,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,5,2017,May,21,22,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,60,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,0,2016,January,2,6,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,30,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,255,2016,September,38,17,8,20,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 242, NULL,0,Transient,68.15,0,2,Check-Out,2016-10-15,Fall,2016-09-17T07:00Z +Keep,41,2016,October,43,16,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,A,1,No Deposit , NULL, 135,0,Transient,48,1,0,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,9,2017,March,13,30,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,2,A,A,0,No Deposit , NULL, 135,0,Transient,35,1,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,11,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 135,0,Transient,142,0,1,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,41,2016,October,43,16,1,0,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 135,0,Transient,42,0,0,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,1,2017,February,7,16,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,49.5,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,0,2017,May,20,15,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,3,2016,April,14,1,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,1,A,D,1,No Deposit , NULL, 225,0,Transient,45,0,0,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,10,2016,October,44,29,1,1,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,2,Check-Out,2016-10-31,Fall,2016-10-29T07:00Z +Keep,154,2015,October,44,30,1,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,17,2016,October,44,28,2,2,2,0,0,BB,PRT,Groups,Direct, 0,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,1,2017,January,3,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 165,0,Transient,35,0,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2015,October,44,26,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, 329,0,Transient,35.1,1,0,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 329,0,Transient,38,1,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,0,No Deposit , NULL, 329,0,Transient,44,0,1,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,3,A,D,0,No Deposit , NULL, 329,0,Transient,74,0,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Cancel,399,2015,December,52,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,0,Canceled,2015-01-01,Winter,2015-12-22T08:00Z +Cancel,202,2015,July,30,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Canceled,2015-01-01,Summer,2015-07-22T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,40.05,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,259,2015,September,38,17,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,A,0,Non Refund , NULL, 223,0,Transient,33.3,0,0,Canceled,2015-01-21,Fall,2015-09-17T07:00Z +Cancel,256,2015,September,38,15,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient,59.91,0,0,Canceled,2015-01-21,Fall,2015-09-15T07:00Z +Cancel,261,2015,September,39,20,2,4,2,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient,74,0,0,Canceled,2015-01-22,Fall,2015-09-20T07:00Z +Cancel,195,2015,August,32,4,0,5,2,0,0,HB,PRT,Direct,Direct, 0,2,0,E,E,0,No Deposit , NULL, NULL,0,Transient,186,0,2,Canceled,2015-01-22,Summer,2015-08-04T07:00Z +Cancel,195,2015,August,32,4,0,5,2,0,0,HB,PRT,Direct,Direct, 0,2,0,E,E,0,No Deposit , NULL, NULL,0,Transient,186,0,2,Canceled,2015-01-22,Summer,2015-08-04T07:00Z +Cancel,216,2015,August,32,8,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,H,H,0,No Deposit , 240, NULL,0,Transient,244,0,2,Canceled,2015-01-28,Summer,2015-08-08T07:00Z +Cancel,187,2015,August,32,4,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,2,Canceled,2015-01-29,Summer,2015-08-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,275,2015,October,41,4,2,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,26,0,A,A,0,Non Refund , 208, NULL,0,Transient,50,0,0,Canceled,2015-01-30,Fall,2015-10-04T07:00Z +Cancel,231,2015,September,38,15,0,5,3,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , 95, NULL,0,Transient,79.74,0,1,Canceled,2015-02-02,Fall,2015-09-15T07:00Z +Cancel,231,2015,September,38,15,0,5,3,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , 95, NULL,0,Transient,79.74,0,1,Canceled,2015-02-02,Fall,2015-09-15T07:00Z +Cancel,236,2015,July,29,12,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,129.33,0,0,Canceled,2015-02-05,Summer,2015-07-12T07:00Z +Cancel,179,2015,July,31,29,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,1,Canceled,2015-02-05,Summer,2015-07-29T07:00Z +Cancel,267,2015,August,33,12,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,0,Canceled,2015-02-05,Summer,2015-08-12T07:00Z +Cancel,210,2015,August,35,25,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-02-05,Summer,2015-08-25T07:00Z +Cancel,211,2015,August,35,27,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-02-06,Summer,2015-08-27T07:00Z +Cancel,209,2015,August,31,1,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,H,H,0,No Deposit , 240, NULL,0,Transient,199,0,2,Canceled,2015-02-09,Summer,2015-08-01T07:00Z +Cancel,181,2015,August,32,6,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,1,Canceled,2015-02-10,Summer,2015-08-06T07:00Z +Cancel,200,2015,August,35,24,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2015-02-10,Summer,2015-08-24T07:00Z +Cancel,182,2015,July,27,4,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2015-05-29,Summer,2015-07-04T07:00Z +Cancel,195,2015,July,29,18,2,6,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,2,0,A,A,0,No Deposit , 242, NULL,0,Transient,188.96,0,1,Canceled,2015-02-11,Summer,2015-07-18T07:00Z +Cancel,202,2015,September,36,1,2,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,1,Canceled,2015-02-11,Fall,2015-09-01T07:00Z +Cancel,180,2015,August,33,9,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-02-11,Summer,2015-08-09T07:00Z +Cancel,184,2015,August,32,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 171, NULL,0,Transient,119.7,0,1,Canceled,2015-02-12,Summer,2015-08-08T07:00Z +Cancel,252,2015,October,43,20,1,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,99,0,3,Canceled,2015-02-19,Fall,2015-10-20T07:00Z +Cancel,209,2015,September,36,2,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 5, NULL,0,Transient,58.95,0,0,Canceled,2015-02-20,Fall,2015-09-02T07:00Z +Cancel,213,2015,September,38,17,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.6,0,1,Canceled,2015-02-23,Fall,2015-09-17T07:00Z +Cancel,173,2015,August,34,16,2,5,2,0,0,BB,PRT,Direct,Direct, 1,1,0,D,D,0,No Deposit , 250, NULL,0,Transient,130.9,0,0,Canceled,2015-02-24,Summer,2015-08-16T07:00Z +Cancel,179,2015,August,33,11,3,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Canceled,2015-02-25,Summer,2015-08-11T07:00Z +Cancel,135,2015,July,28,5,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 149, NULL,0,Transient,82.35,0,0,Canceled,2015-02-25,Summer,2015-07-05T07:00Z +Cancel,137,2015,July,29,13,2,5,2,0,0,BB,PRT,Direct,Direct, 1,1,0,A,A,0,No Deposit , 250, NULL,0,Transient,8,0,0,Canceled,2015-02-26,Summer,2015-07-13T07:00Z +Cancel,217,2015,September,39,24,1,3,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,C,C,3,No Deposit , 142, NULL,0,Contract,108.33,0,2,Canceled,2015-02-27,Fall,2015-09-24T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,1,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,38,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,222,2015,September,38,15,1,5,2,0,0,FB,PRT,Groups,Corporate, 0,25,0,A,A,0,Non Refund , 252, NULL,0,Transient,49.95,0,0,Canceled,2015-03-03,Fall,2015-09-15T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-03-03,Fall,2015-09-26T07:00Z +Cancel,129,2015,July,27,4,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,141,0,1,Canceled,2015-03-03,Summer,2015-07-04T07:00Z +Cancel,128,2015,July,28,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 149, NULL,0,Transient,58.95,0,0,Canceled,2015-03-04,Summer,2015-07-05T07:00Z +Cancel,268,2015,November,47,19,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,2,Canceled,2015-03-04,Fall,2015-11-19T08:00Z +Cancel,127,2015,July,28,8,2,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 5, NULL,0,Transient,118.35,0,0,Canceled,2015-03-06,Summer,2015-07-08T07:00Z +Cancel,289,2015,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,0,Canceled,2015-03-06,Fall,2015-11-26T08:00Z +Cancel,140,2015,July,28,6,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2015-03-09,Summer,2015-07-06T07:00Z +Cancel,141,2015,July,27,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-03-09,Summer,2015-07-04T07:00Z +Cancel,122,2015,July,27,2,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,1,Canceled,2015-03-11,Summer,2015-07-02T07:00Z +Cancel,187,2015,August,32,4,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-03-12,Summer,2015-08-04T07:00Z +Cancel,191,2015,July,28,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,126.86,0,1,Canceled,2015-03-17,Summer,2015-07-11T07:00Z +Cancel,131,2015,July,27,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-03-17,Summer,2015-07-04T07:00Z +Cancel,231,2015,July,28,7,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,0,Canceled,2015-03-17,Summer,2015-07-07T07:00Z +Cancel,132,2015,July,30,19,2,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Canceled,2015-03-18,Summer,2015-07-19T07:00Z +Cancel,136,2015,July,30,20,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,237,0,0,Canceled,2015-03-24,Summer,2015-07-20T07:00Z +Cancel,139,2015,July,29,13,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,1,No Deposit , 143, NULL,0,Contract,67.58,0,1,Canceled,2015-03-31,Summer,2015-07-13T07:00Z +Cancel,139,2015,July,29,13,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,1,No Deposit , 143, NULL,0,Contract,67.58,0,1,Canceled,2015-03-31,Summer,2015-07-13T07:00Z +Cancel,187,2015,July,28,7,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 2, NULL,0,Transient,71.55,0,0,Canceled,2015-03-31,Summer,2015-07-07T07:00Z +Keep,2,2016,May,19,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , 9, NULL,0,Transient,42,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,1,2016,June,26,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , 9, NULL,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,23,2015,October,41,4,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,E,0,No Deposit , 314, NULL,0,Contract,46.4,0,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,1,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,265,2015,September,39,24,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,14,0,A,A,0,Non Refund , 183, NULL,0,Transient,89.2,0,0,Canceled,2015-04-02,Fall,2015-09-24T07:00Z +Cancel,93,2015,July,28,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 243, NULL,0,Contract,55.68,0,0,Canceled,2015-04-03,Summer,2015-07-05T07:00Z +Keep,109,2016,December,50,8,0,3,2,1,0,BB,ESP,Direct,TA/TO, 1,0,1,A,C,3,No Deposit , 250, NULL,0,Transient,49.02,0,2,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Cancel,180,2015,July,30,21,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-04-04,Summer,2015-07-21T07:00Z +Cancel,237,2015,August,35,27,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,3,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.05,0,1,Canceled,2015-04-04,Summer,2015-08-27T07:00Z +Cancel,237,2015,August,35,27,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,3,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.98,0,1,Canceled,2015-04-04,Summer,2015-08-27T07:00Z +Cancel,237,2015,August,35,27,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,3,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.05,0,1,Canceled,2015-04-04,Summer,2015-08-27T07:00Z +Cancel,152,2015,August,31,1,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 149, NULL,0,Transient,119.7,0,0,Canceled,2015-04-04,Summer,2015-08-01T07:00Z +Keep,31,2016,March,13,24,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,1,No Deposit , 240, NULL,0,Group,85,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,D,D,1,No Deposit , 3, NULL,0,Group,79.2,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,148,2015,August,33,15,2,6,2,1,0,HB,PRT,Direct,Direct, 0,0,1,E,E,5,No Deposit , NULL, NULL,0,Transient,160,1,2,Check-Out,2015-08-23,Summer,2015-08-15T07:00Z +Keep,241,2016,August,33,13,2,6,3,0,0,HB,PRT,Direct,Direct, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,207,1,3,Check-Out,2016-08-21,Summer,2016-08-13T07:00Z +Keep,192,2017,August,33,17,2,8,3,0,0,HB,PRT,Direct,Direct, 1,1,3,E,E,2,No Deposit , NULL, NULL,0,Transient,211.2,1,3,Check-Out,2017-08-27,Summer,2017-08-17T07:00Z +Cancel,249,2017,August,33,19,2,6,3,0,0,HB,PRT,Direct,Direct, 1,1,3,E,E,0,No Deposit , NULL, NULL,0,Transient,210.5,0,3,Canceled,2017-02-02,Summer,2017-08-19T07:00Z +Cancel,57,2015,July,27,2,0,3,1,0,0,BB,PRT,Direct,Direct, 1,1,3,A,A,0,No Deposit , NULL, NULL,0,Transient,63,0,0,Canceled,2015-06-14,Summer,2015-07-02T07:00Z +Keep,241,2015,December,49,4,2,2,1,0,0,BB,PRT,Direct,TA/TO, 1,1,3,A,E,1,No Deposit , 240, NULL,0,Transient,29,0,4,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,97,2016,March,13,24,0,3,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,4,A,D,1,No Deposit , NULL, NULL,0,Transient,42.3,0,4,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,126,2016,April,17,22,1,2,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,5,A,D,1,No Deposit , NULL, NULL,0,Transient,44.1,0,4,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,132,2016,May,22,25,0,4,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,6,A,A,0,No Deposit , NULL, NULL,0,Transient,57.8,0,4,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,174,2016,June,24,9,1,3,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,7,A,A,1,No Deposit , NULL, NULL,0,Transient,63.9,0,4,Check-Out,2016-06-13,Summer,2016-06-09T07:00Z +Keep,288,2016,October,44,28,2,2,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,8,A,A,0,No Deposit , NULL, NULL,0,Transient,39.7,0,4,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,321,2016,November,49,30,0,4,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,9,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,4,Check-Out,2016-12-04,Fall,2016-11-30T08:00Z +Cancel,355,2016,December,50,7,0,4,1,0,0,BB,PRT,Online travel agent,Direct, 1,2,10,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,4,Canceled,2016-12-04,Winter,2016-12-07T08:00Z +Keep,185,2017,February,8,24,2,2,1,0,0,BB,PRT,Online travel agent,Direct, 1,3,10,A,A,2,No Deposit , NULL, NULL,0,Transient,39.6,0,5,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,134,2017,April,15,13,0,3,1,0,0,BB,PRT,Online travel agent,Direct, 1,4,11,A,A,0,No Deposit , NULL, NULL,0,Transient,61.5,0,5,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Cancel,117,2017,April,15,13,0,3,1,0,0,BB,PRT,Online travel agent,Direct, 1,4,11,A,A,0,No Deposit , NULL, NULL,0,Transient,61.5,0,4,Canceled,2016-12-26,Spring,2017-04-13T07:00Z +Keep,125,2017,April,16,21,2,2,1,0,0,BB,PRT,Online travel agent,Direct, 1,4,12,A,A,2,No Deposit , NULL, NULL,0,Transient,61.5,0,4,Check-Out,2017-04-25,Spring,2017-04-21T07:00Z +Cancel,132,2017,April,17,28,1,2,1,0,0,BB,PRT,Online travel agent,Direct, 1,4,13,A,A,0,No Deposit , NULL, NULL,0,Transient,61.5,0,4,Canceled,2017-03-31,Spring,2017-04-28T07:00Z +Keep,12,2016,April,16,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,D,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,72,2016,March,13,25,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,132,1,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,107,2016,August,35,24,2,4,2,0,0,BB,Unknown,Direct,Direct, 1,0,2,F,F,0,No Deposit , NULL, NULL,0,Transient,227.86,1,0,Check-Out,2016-08-30,Summer,2016-08-24T07:00Z +Keep,61,2016,December,53,30,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,3,A,C,0,No Deposit , 240, NULL,0,Transient-Party,75,0,0,Check-Out,2016-12-31,Winter,2016-12-30T08:00Z +Keep,61,2016,December,53,30,0,1,1,0,0,BB,Unknown,Online travel agent,Direct, 1,0,3,A,C,0,No Deposit , 240, NULL,0,Transient-Party,75,1,0,Check-Out,2016-12-31,Winter,2016-12-30T08:00Z +Keep,22,2017,August,34,25,2,2,2,0,0,BB,PRT,Direct,Direct, 1,0,5,A,A,1,No Deposit , NULL, NULL,0,Transient,200,1,3,Check-Out,2017-08-29,Summer,2017-08-25T07:00Z +Cancel,37,2016,March,13,24,1,3,2,0,0,BB,PRT,Direct,Direct, 1,2,1,A,A,0,No Deposit , NULL, NULL,0,Transient,73.75,0,2,Canceled,2016-03-14,Spring,2016-03-24T07:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2016,January,4,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,B,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Cancel,228,2015,September,37,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.57,0,1,Canceled,2015-04-08,Fall,2015-09-12T07:00Z +Cancel,146,2015,July,31,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,E,1,No Deposit , 240, NULL,0,Transient,164,0,1,Canceled,2015-04-10,Summer,2015-07-26T07:00Z +Cancel,177,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 6, NULL,0,Transient-Party,119.7,0,0,Canceled,2015-04-10,Summer,2015-08-15T07:00Z +Cancel,177,2015,August,33,15,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 6, NULL,0,Transient-Party,119.7,0,2,Canceled,2015-04-10,Summer,2015-08-15T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,GBR,Groups,Direct, 1,0,1,A,A,1,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 1,0,2,A,E,2,No Deposit , NULL, 223,0,Transient-Party,29,1,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,Corporate, 1,0,3,A,E,3,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,1,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,1,No Deposit , NULL, 272,0,Transient-Party,35,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Cancel,226,2015,August,33,15,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient,135.6,0,3,Canceled,2015-04-15,Summer,2015-08-15T07:00Z +Cancel,234,2015,August,35,23,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient,135.6,0,3,Canceled,2015-04-15,Summer,2015-08-23T07:00Z +Cancel,270,2015,November,47,16,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,E,1,No Deposit , 240, NULL,0,Transient-Party,59.4,0,1,Canceled,2015-04-15,Fall,2015-11-16T08:00Z +Cancel,270,2015,November,47,16,1,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,E,1,No Deposit , 240, NULL,0,Transient-Party,39.6,0,2,Canceled,2015-04-15,Fall,2015-11-16T08:00Z +Cancel,149,2015,July,31,29,4,12,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,237,0,2,Canceled,2015-04-16,Summer,2015-07-29T07:00Z +Cancel,216,2015,August,32,8,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,1,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2015-04-16,Summer,2015-08-08T07:00Z +Cancel,256,2015,August,31,1,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,166,0,1,Canceled,2015-04-16,Summer,2015-08-01T07:00Z +Cancel,256,2015,August,31,1,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,120.6,0,1,Canceled,2015-04-16,Summer,2015-08-01T07:00Z +Keep,1,2015,July,27,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,B,0,No Deposit , NULL, 270,0,Transient,134,0,0,Check-Out,2015-07-02,Summer,2015-07-01T07:00Z +Keep,2,2015,October,43,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , NULL, 270,0,Transient,48,0,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,8,2016,March,14,29,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , 270, NULL,0,Transient,42,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,0,2016,May,19,2,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,D,1,No Deposit , 270, NULL,0,Transient,42,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,7,2016,May,20,9,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,A,0,No Deposit , 270, NULL,0,Transient,42,0,0,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,18,2016,November,46,8,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,C,0,No Deposit , 270, NULL,0,Transient,30,0,0,Check-Out,2016-11-10,Fall,2016-11-08T08:00Z +Keep,75,2016,April,15,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Cancel,150,2015,July,28,10,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-04-20,Summer,2015-07-10T07:00Z +Keep,3,2015,October,40,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,D,0,No Deposit , NULL, 28,0,Transient-Party,48,0,0,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Keep,8,2016,January,2,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,E,0,No Deposit , NULL, 28,0,Transient,38,0,0,Check-Out,2016-01-09,Winter,2016-01-08T08:00Z +Keep,15,2016,February,9,26,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,E,2,No Deposit , NULL, 28,0,Transient,45,0,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,3,2016,November,48,21,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 120,0,Transient,36,1,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,4,2017,February,6,6,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 120,0,Transient,42,1,1,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Cancel,169,2015,August,31,1,3,6,2,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,1,No Deposit , 250, NULL,0,Transient,125.9,0,1,Canceled,2015-04-25,Summer,2015-08-01T07:00Z +Keep,0,2015,November,47,18,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2017,February,7,17,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,280,2015,October,41,9,3,7,1,0,0,BB,GBR,Groups,Direct, 0,0,1,E,F,2,No Deposit , 273, NULL,0,Group,0,1,0,Check-Out,2015-10-19,Fall,2015-10-09T07:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,Direct, 1,0,2,A,H,2,No Deposit , 273, NULL,0,Transient-Party,-6.38,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,252,2017,April,16,22,2,6,2,0,0,HB,GBR,Complementary,TA/TO, 1,0,3,A,H,4,No Deposit , 273, NULL,0,Transient-Party,0,0,1,Check-Out,2017-04-30,Spring,2017-04-22T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,166,2015,July,29,15,0,2,2,0,0,FB,PRT,Groups,TA/TO, 0,24,0,A,A,0,Non Refund , NULL, NULL,0,Transient,121.5,0,0,Canceled,2015-04-28,Summer,2015-07-15T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,244,2015,September,36,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,19,0,A,A,0,Non Refund , NULL, NULL,0,Transient,36,0,0,Canceled,2015-04-29,Fall,2015-09-03T07:00Z +Cancel,203,2015,September,36,1,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.65,0,1,Canceled,2015-04-29,Fall,2015-09-01T07:00Z +Cancel,212,2015,August,31,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,184,0,1,Canceled,2015-04-29,Summer,2015-08-01T07:00Z +Keep,2,2017,January,5,29,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-02-03,Winter,2017-01-29T08:00Z +Keep,6,2015,November,46,9,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,E,1,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Keep,6,2015,November,46,9,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,E,1,No Deposit , NULL, 94,0,Transient,25,1,0,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Keep,11,2016,February,6,1,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Keep,14,2016,October,44,24,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , 94, NULL,0,Transient,39,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,7,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , 94, NULL,0,Transient,27,1,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,14,2016,October,44,24,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,7,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Cancel,299,2015,September,38,13,4,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 115, NULL,0,Transient,71.55,0,1,Canceled,2015-05-01,Fall,2015-09-13T07:00Z +Keep,191,2016,April,17,22,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,96,2015,December,53,29,0,5,2,0,0,HB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,120.02,0,1,Check-Out,2016-01-03,Winter,2015-12-29T08:00Z +Keep,61,2016,December,53,29,0,3,2,0,0,HB,PRT,Direct,Direct, 1,0,2,D,D,1,No Deposit , NULL, NULL,0,Transient,171.33,1,1,Check-Out,2017-01-01,Winter,2016-12-29T08:00Z +Keep,89,2015,December,53,30,0,4,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,3,No Deposit , NULL, NULL,0,Transient,134.51,0,1,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,49,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,225,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,0,2015,October,43,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,E,0,No Deposit , NULL, 286,0,Transient,48,0,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,3,2017,January,2,9,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Check-Out,2017-01-11,Winter,2017-01-09T08:00Z +Cancel,3,2015,July,29,16,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,A,3,No Deposit , NULL, 77,0,Transient,114,0,0,Canceled,2015-07-15,Summer,2015-07-16T07:00Z +Keep,0,2015,October,43,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,E,0,No Deposit , NULL, 286,0,Transient,48,0,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,3,2017,January,2,9,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,4,A,A,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Check-Out,2017-01-11,Winter,2017-01-09T08:00Z +Cancel,179,2015,August,32,3,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,E,F,0,No Deposit , 240, NULL,0,Transient,211,0,0,Canceled,2015-05-07,Summer,2015-08-03T07:00Z +Cancel,200,2015,September,37,7,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,3,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,73.8,0,2,Canceled,2015-05-08,Fall,2015-09-07T07:00Z +Cancel,200,2015,September,37,7,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,3,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,73.8,0,2,Canceled,2015-05-08,Fall,2015-09-07T07:00Z +Keep,81,2016,May,19,3,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,1,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-12,Spring,2016-05-03T07:00Z +Cancel,182,2015,July,27,4,2,6,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,0,1,Canceled,2015-05-14,Summer,2015-07-04T07:00Z +Cancel,155,2015,July,29,18,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Contract,121.7,0,0,Canceled,2015-05-16,Summer,2015-07-18T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Cancel,250,2015,July,31,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,1,No Deposit , 240, NULL,0,Transient,178,0,0,Canceled,2015-05-18,Summer,2015-07-26T07:00Z +Cancel,174,2015,August,33,12,2,9,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,2,Canceled,2015-05-18,Summer,2015-08-12T07:00Z +Keep,0,2015,November,46,12,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,F,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2015-11-13,Fall,2015-11-12T08:00Z +Keep,1,2015,September,37,8,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 270,0,Transient,134,0,0,Check-Out,2015-09-10,Fall,2015-09-08T07:00Z +Keep,1,2016,May,21,17,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 270,0,Transient,42,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,6,2016,June,24,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 270,0,Transient,57,0,0,Check-Out,2016-06-07,Summer,2016-06-06T07:00Z +Keep,6,2016,July,29,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 270,0,Transient,65,0,0,Check-Out,2016-07-14,Summer,2016-07-13T07:00Z +Keep,7,2016,October,43,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,E,0,No Deposit , NULL, 270,0,Transient,42,0,0,Check-Out,2016-10-21,Fall,2016-10-19T07:00Z +Keep,1,2016,November,48,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,D,0,No Deposit , NULL, 270,0,Transient,30,0,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,0,2016,December,51,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,E,0,No Deposit , NULL, 270,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Cancel,2,2017,January,1,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,8,A,A,1,No Deposit , NULL, 270,0,Transient,35,0,0,Canceled,2017-01-02,Winter,2017-01-04T08:00Z +Keep,2,2017,February,7,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,8,A,D,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,1,2017,March,13,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,9,A,D,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,5,2017,May,19,8,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,10,A,A,0,No Deposit , 270, NULL,0,Transient,45,0,0,Check-Out,2017-05-11,Spring,2017-05-08T07:00Z +Keep,0,2017,May,18,2,0,2,2,0,0,BB,ITA,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,85,0,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,1,2016,October,41,5,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 339, NULL,0,Transient,68.8,0,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,2,2016,December,51,14,0,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-12-14,Winter,2016-12-14T08:00Z +Keep,0,2017,May,19,11,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,C,0,No Deposit , NULL, NULL,0,Transient,80,1,1,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,0,2016,November,47,16,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, 482,0,Transient,40,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,114,2015,September,40,30,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,A,1,No Deposit , 240, NULL,0,Transient,51,0,1,Check-Out,2015-10-07,Fall,2015-09-30T07:00Z +Keep,1,2015,July,30,19,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,E,0,No Deposit , NULL, NULL,0,Transient,92.1,1,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,1,2015,September,38,15,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,4,1,0,Check-Out,2015-09-17,Fall,2015-09-15T07:00Z +Keep,0,2015,September,39,24,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,D,I,1,No Deposit , NULL, NULL,0,Transient,81,1,0,Check-Out,2015-09-25,Fall,2015-09-24T07:00Z +Keep,0,2016,January,5,28,0,3,1,0,0,BB,PRT,Direct,Direct, 1,0,4,D,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,0,2016,February,9,26,2,2,1,0,0,BB,PRT,Direct,Direct, 1,0,5,A,A,2,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-01,Winter,2016-02-26T08:00Z +Keep,14,2016,July,30,18,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,6,A,A,0,No Deposit , NULL, NULL,0,Transient,126,1,0,Check-Out,2016-07-19,Summer,2016-07-18T07:00Z +Keep,0,2017,January,5,31,0,4,1,0,0,BB,PRT,Direct,Direct, 1,0,7,A,D,0,No Deposit , NULL, NULL,0,Transient,47,1,1,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,2,2017,February,7,15,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,8,A,I,0,No Deposit , NULL, NULL,0,Transient,60,1,1,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,March,12,23,2,3,1,0,0,BB,PRT,Direct,Direct, 1,0,9,A,D,1,No Deposit , NULL, NULL,0,Transient,70,1,1,Check-Out,2017-03-28,Spring,2017-03-23T07:00Z +Keep,4,2017,June,24,11,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,10,A,D,0,No Deposit , NULL, NULL,0,Transient,115.2,1,1,Check-Out,2017-06-12,Summer,2017-06-11T07:00Z +Cancel,198,2015,August,34,22,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,147.6,0,2,Canceled,2015-05-27,Summer,2015-08-22T07:00Z +Cancel,198,2015,August,34,22,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,147.6,0,2,Canceled,2015-05-27,Summer,2015-08-22T07:00Z +Keep,0,2015,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Cancel,135,2015,July,28,8,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-05-29,Summer,2015-07-08T07:00Z +Cancel,252,2015,September,37,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.86,0,1,Canceled,2015-05-29,Fall,2015-09-10T07:00Z +Cancel,183,2015,August,32,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 149, NULL,0,Transient,119.7,0,2,Canceled,2015-05-29,Summer,2015-08-08T07:00Z +Cancel,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,2,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,79.2,0,0,Canceled,2015-05-29,Fall,2015-10-06T07:00Z +Cancel,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,2,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,79.2,0,0,Canceled,2015-05-29,Fall,2015-10-06T07:00Z +Cancel,152,2015,July,29,18,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,1,No Deposit , 142, NULL,0,Contract,126.1,0,1,Canceled,2015-05-29,Summer,2015-07-18T07:00Z +Keep,1,2015,July,29,15,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, NULL,0,Transient,508,1,0,Check-Out,2015-07-16,Summer,2015-07-15T07:00Z +Cancel,144,2015,August,31,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,1,Canceled,2015-06-03,Summer,2015-08-01T07:00Z +Keep,5,2015,September,37,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, 200,0,Transient,134,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,1,2016,May,20,11,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 200,0,Transient,0,0,0,Check-Out,2016-05-11,Spring,2016-05-11T07:00Z +Keep,0,2015,November,49,30,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-02,Fall,2015-11-30T08:00Z +Keep,0,2016,May,23,30,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,1,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,1,2017,March,10,9,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Cancel,167,2015,July,28,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,1,Canceled,2015-06-04,Summer,2015-07-07T07:00Z +Keep,0,2015,December,49,1,0,1,1,0,0,HB,PRT,Complementary,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Cancel,155,2015,July,29,18,2,6,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Contract,173.21,0,3,Canceled,2015-06-05,Summer,2015-07-18T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Cancel,214,2015,October,40,3,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-09,Fall,2015-10-03T07:00Z +Keep,39,2015,July,28,7,2,8,2,0,0,HB,PRT,Direct,Direct, 0,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,107.1,1,2,Check-Out,2015-07-17,Summer,2015-07-07T07:00Z +Keep,1,2015,August,33,14,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,140,1,2,Check-Out,2015-08-15,Summer,2015-08-14T07:00Z +Keep,29,2015,August,33,15,4,8,2,0,0,HB,PRT,Direct,Direct, 1,0,2,E,E,5,No Deposit , NULL, NULL,0,Transient,140,1,2,Check-Out,2015-08-27,Summer,2015-08-15T07:00Z +Keep,11,2016,February,6,5,2,2,2,0,0,HB,PRT,Direct,Direct, 1,0,4,E,E,1,No Deposit , 250, NULL,0,Transient,93,1,4,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,23,2016,March,13,24,1,3,2,0,0,HB,PRT,Direct,Direct, 1,1,5,E,E,0,No Deposit , NULL, NULL,0,Transient,98.5,1,4,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,5,2016,June,23,1,0,3,2,0,0,HB,PRT,Direct,Direct, 1,1,6,E,E,0,No Deposit , NULL, NULL,0,Transient,115,1,4,Check-Out,2016-06-04,Summer,2016-06-01T07:00Z +Cancel,127,2016,July,28,7,2,8,2,0,0,HB,PRT,Direct,Direct, 1,1,7,E,E,0,No Deposit , 250, NULL,0,Transient,112.5,0,4,Canceled,2016-03-02,Summer,2016-07-07T07:00Z +Keep,128,2016,July,28,7,3,8,2,0,0,HB,PRT,Direct,Direct, 1,1,7,E,E,1,No Deposit , NULL, NULL,0,Transient,112.5,1,4,Check-Out,2016-07-18,Summer,2016-07-07T07:00Z +Keep,157,2016,August,33,12,4,9,2,0,0,HB,PRT,Direct,Direct, 1,1,8,E,E,2,No Deposit , NULL, NULL,0,Transient,147,1,4,Check-Out,2016-08-25,Summer,2016-08-12T07:00Z +Keep,3,2016,November,45,3,0,3,2,0,0,HB,PRT,Direct,Direct, 1,1,9,E,E,0,No Deposit , NULL, NULL,0,Transient,95,1,4,Check-Out,2016-11-06,Fall,2016-11-03T07:00Z +Keep,46,2017,February,8,24,2,2,2,0,0,HB,PRT,Direct,Direct, 1,1,10,E,E,1,No Deposit , NULL, NULL,0,Transient,91.35,1,4,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,29,2017,April,15,13,0,3,2,0,0,HB,PRT,Direct,Direct, 1,1,11,E,E,1,No Deposit , NULL, NULL,8,Transient,126.5,1,4,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,108,2017,July,28,9,4,10,2,0,0,HB,PRT,Direct,Direct, 1,1,12,E,E,1,No Deposit , NULL, NULL,0,Transient,143.5,1,4,Check-Out,2017-07-23,Summer,2017-07-09T07:00Z +Keep,142,2017,August,32,12,4,6,2,0,0,HB,PRT,Direct,Direct, 1,1,13,E,E,0,No Deposit , NULL, NULL,0,Transient,184,1,4,Check-Out,2017-08-22,Summer,2017-08-12T07:00Z +Cancel,114,2015,July,31,26,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,1,Canceled,2015-06-11,Summer,2015-07-26T07:00Z +Cancel,242,2015,August,36,31,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.67,0,1,Canceled,2015-06-13,Summer,2015-08-31T07:00Z +Cancel,235,2015,July,28,11,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,129,0,1,Canceled,2015-06-15,Summer,2015-07-11T07:00Z +Cancel,235,2015,July,28,11,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Canceled,2015-06-15,Summer,2015-07-11T07:00Z +Cancel,235,2015,July,28,11,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,0,Canceled,2015-06-17,Summer,2015-07-11T07:00Z +Keep,32,2017,April,15,14,1,2,2,0,0,Undefined,PRT,Direct,Direct, 1,2,1,C,C,0,No Deposit , NULL, NULL,0,Transient,204.33,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,289,2015,November,47,20,1,2,1,0,0,HB,GBR,Groups,TA/TO, 0,0,1,A,E,1,No Deposit , 134, NULL,0,Transient-Party,13,0,1,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Cancel,217,2015,August,35,28,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 40, NULL,0,Contract,88.4,0,0,Canceled,2015-06-15,Summer,2015-08-28T07:00Z +Cancel,178,2015,August,33,10,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,0,No Deposit , 5, NULL,0,Transient,119.25,0,0,Canceled,2015-06-15,Summer,2015-08-10T07:00Z +Keep,6,2016,November,47,14,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Group,35,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,4,2017,March,12,20,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 62,0,Transient,35,0,0,Check-Out,2017-03-24,Spring,2017-03-20T07:00Z +Keep,0,2015,December,51,18,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 127, NULL,0,Transient,30.5,0,1,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,2,2017,March,11,13,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,8,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 82,0,Transient,30,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,11,2017,May,21,24,0,1,2,1,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 242, NULL,0,Transient,94.16,1,2,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Cancel,158,2015,July,28,11,2,3,2,0,0,HB,PRT,Direct,Direct, 0,2,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,99.7,0,1,Canceled,2015-07-01,Summer,2015-07-11T07:00Z +Cancel,235,2015,July,28,11,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Canceled,2015-06-17,Summer,2015-07-11T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,24,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-06-17,Fall,2015-09-02T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-05T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,253,2015,September,37,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,58.95,0,0,Canceled,2015-06-17,Fall,2015-09-12T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-19T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,267,2015,September,39,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-06-17,Fall,2015-09-26T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-06-17,Fall,2015-10-03T07:00Z +Keep,241,2017,May,21,22,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,1,No Deposit , 243, NULL,0,Contract,71.2,0,3,Check-Out,2017-06-01,Spring,2017-05-22T07:00Z +Cancel,196,2015,July,29,16,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Canceled,2015-06-18,Summer,2015-07-16T07:00Z +Cancel,160,2015,August,32,3,1,3,2,0,0,BB,PRT,Direct,Direct, 0,1,0,F,F,0,No Deposit , 250, NULL,0,Transient,164.15,0,1,Canceled,2015-06-18,Summer,2015-08-03T07:00Z +Cancel,186,2015,July,28,7,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,0,No Deposit , 143, NULL,0,Contract,82.88,0,0,Canceled,2015-06-19,Summer,2015-07-07T07:00Z +Keep,99,2016,June,23,1,4,10,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,119.76,1,2,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,178,2017,June,23,9,4,11,2,0,0,BB,PRT,Direct,Direct, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,134,1,3,Check-Out,2017-06-24,Summer,2017-06-09T07:00Z +Keep,67,2016,November,47,18,1,2,1,0,0,HB,GBR,Groups,TA/TO, 1,0,1,A,F,1,No Deposit , 411, NULL,0,Group,45,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Cancel,152,2015,July,30,21,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,1,No Deposit , 240, NULL,0,Transient,166,0,1,Canceled,2015-06-22,Summer,2015-07-21T07:00Z +Keep,48,2016,October,44,29,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.14,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,321,2017,June,25,22,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 243, NULL,0,Group,84.8,0,1,Check-Out,2017-07-06,Summer,2017-06-22T07:00Z +Keep,0,2015,November,46,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,F,0,No Deposit , 47, NULL,0,Transient,35,0,0,Check-Out,2015-11-13,Fall,2015-11-12T08:00Z +Keep,0,2016,March,10,1,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,2,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-03-04,Spring,2016-03-01T08:00Z +Keep,0,2016,March,12,14,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,4,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,0,2016,April,15,4,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,0,2016,April,18,27,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,C,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,0,2016,May,23,30,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , 47, NULL,0,Transient,57,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,1,2016,October,44,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , 47, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,0,2017,January,2,10,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,0,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,0,No Deposit , NULL, 47,0,Transient,35,1,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,0,2017,April,17,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,G,0,No Deposit , NULL, 47,0,Transient,48.5,1,0,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,1,2017,May,20,16,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,C,0,No Deposit , NULL, NULL,0,Transient,90.25,0,2,Check-Out,2017-05-19,Spring,2017-05-16T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Cancel,207,2015,September,39,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-06-27,Fall,2015-09-26T07:00Z +Keep,0,2015,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,4,2016,February,8,20,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,E,F,1,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Cancel,134,2015,July,30,22,2,4,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,0,No Deposit , 95, NULL,0,Transient,149.06,0,0,Canceled,2015-06-29,Summer,2015-07-22T07:00Z +Keep,6,2015,December,53,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,1,2016,January,4,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 270,0,Transient,30,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,0,2016,February,9,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 270,0,Transient,30,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,1,2016,May,20,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,1,No Deposit , NULL, 270,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,0,2017,May,22,29,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,8,2015,October,41,7,1,4,1,0,0,SC,PRT,Complementary,Corporate, 1,0,2,A,I,2,No Deposit , 281, NULL,0,Contract,2.4,1,2,Check-Out,2015-10-12,Fall,2015-10-07T07:00Z +Keep,20,2015,October,43,19,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,G,1,No Deposit , NULL, 281,0,Transient,42,1,3,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,24,2015,October,44,26,9,21,1,0,0,SC,PRT,Complementary,Corporate, 1,0,4,E,I,5,No Deposit , 185, 281,0,Transient-Party,0,0,2,Check-Out,2015-11-25,Fall,2015-10-26T07:00Z +Cancel,22,2016,May,22,26,0,3,2,0,0,BB,PRT,Corporate,Corporate, 1,1,5,A,A,0,No Deposit , NULL, 281,0,Transient,59,0,1,Canceled,2016-05-11,Spring,2016-05-26T07:00Z +Keep,1,2016,November,46,9,0,1,1,0,0,BB,PRT,Complementary,Corporate, 1,1,5,A,E,0,No Deposit , NULL, 281,0,Transient,0,1,3,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,26,2017,April,14,3,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,6,E,F,1,No Deposit , NULL, 281,0,Transient-Party,7,1,3,Check-Out,2017-04-06,Spring,2017-04-03T07:00Z +Keep,2,2017,August,31,3,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,1,7,D,D,0,No Deposit , NULL, 281,0,Transient,0,1,2,Check-Out,2017-08-05,Summer,2017-08-03T07:00Z +Cancel,183,2015,July,28,6,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,79.2,0,2,Canceled,2015-06-30,Summer,2015-07-06T07:00Z +Cancel,144,2015,July,27,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-06-30,Summer,2015-07-03T07:00Z +Keep,8,2015,July,29,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, 42,0,Transient,134,0,0,Check-Out,2015-07-15,Summer,2015-07-14T07:00Z +Keep,4,2016,July,30,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 42,0,Transient,126,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,4,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 42,0,Transient,35,0,1,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,6,2015,November,47,17,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, 338,0,Transient,44,1,0,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,4,2016,January,3,11,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,1,No Deposit , NULL, 338,0,Transient,44,1,0,Check-Out,2016-01-13,Winter,2016-01-11T08:00Z +Keep,6,2016,March,11,8,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,7,2016,April,18,26,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,4,A,A,0,No Deposit , NULL, 338,0,Transient,56.4,1,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,19,2016,July,30,19,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,5,A,A,0,No Deposit , NULL, 338,0,Transient,101,1,0,Check-Out,2016-07-21,Summer,2016-07-19T07:00Z +Keep,8,2016,September,39,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , NULL, 338,0,Transient,68,1,0,Check-Out,2016-09-22,Fall,2016-09-20T07:00Z +Keep,29,2016,November,47,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , NULL, 338,0,Transient,48,1,0,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,7,2016,December,51,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 338,0,Transient,42,1,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,13,2017,January,4,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,0,No Deposit , NULL, 338,0,Transient,38,1,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,29,2017,March,10,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,A,0,No Deposit , NULL, 338,0,Transient,38.5,1,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,8,2017,April,16,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,11,A,A,0,No Deposit , NULL, 338,0,Transient,48.5,1,0,Check-Out,2017-04-20,Spring,2017-04-18T07:00Z +Keep,22,2017,May,22,30,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,12,A,D,1,No Deposit , NULL, 338,0,Transient,78.5,1,0,Check-Out,2017-06-01,Spring,2017-05-30T07:00Z +Keep,30,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,A,0,No Deposit , NULL, 338,0,Transient,38.5,1,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,150,2015,July,27,2,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-08,Summer,2015-07-02T07:00Z +Keep,2,2016,February,6,4,2,3,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,43.8,1,0,Check-Out,2016-02-09,Winter,2016-02-04T08:00Z +Keep,0,2017,January,1,6,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,51,1,1,Check-Out,2017-01-09,Winter,2017-01-06T08:00Z +Keep,0,2017,January,3,21,2,1,1,1,0,BB,PRT,Direct,Direct, 1,0,3,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,45,1,2,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,2,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49.67,0,2,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,0,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,53,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,1,2017,February,9,26,2,0,2,0,0,BB,PRT,Direct,Direct, 1,0,6,A,D,3,No Deposit , NULL, NULL,0,Transient,63.5,1,2,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,325,2017,June,25,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 147, NULL,0,Transient,73.92,0,3,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,131,2017,June,23,6,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 242, NULL,0,Transient,171,1,2,Check-Out,2017-06-11,Summer,2017-06-06T07:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 1,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Complementary,Direct, 1,0,2,E,E,3,No Deposit , NULL, NULL,0,Transient-Party,0,0,3,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,183,2015,July,27,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-05,Summer,2015-07-04T07:00Z +Keep,181,2015,July,27,1,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,126,2015,July,27,1,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,62.5,0,0,Check-Out,2015-07-05,Summer,2015-07-01T07:00Z +Keep,116,2015,July,27,3,0,2,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,1,Check-Out,2015-07-05,Summer,2015-07-03T07:00Z +Keep,7,2016,July,28,5,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,1,No Deposit , 240, NULL,0,Transient,236,1,2,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,135,2015,July,27,4,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,154,1,0,Check-Out,2015-07-06,Summer,2015-07-04T07:00Z +Keep,0,2015,July,28,5,1,0,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Group,153,0,0,Check-Out,2015-07-06,Summer,2015-07-05T07:00Z +Keep,110,2015,July,27,1,1,4,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 6, NULL,0,Transient,79.59,1,1,Check-Out,2015-07-06,Summer,2015-07-01T07:00Z +Cancel,197,2015,September,36,1,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Canceled,2015-07-06,Fall,2015-09-01T07:00Z +Keep,134,2015,July,28,7,1,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 115, NULL,0,Contract,71.55,0,0,Check-Out,2015-07-13,Summer,2015-07-07T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Cancel,279,2015,October,41,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 142, NULL,0,Transient-Party,63.4,0,0,Canceled,2015-07-07,Fall,2015-10-08T07:00Z +Keep,145,2015,July,27,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,82.35,0,0,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,127,2015,July,27,2,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,55.68,0,1,Check-Out,2015-07-08,Summer,2015-07-02T07:00Z +Keep,149,2015,July,27,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,149,2015,July,27,1,2,5,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,69.6,0,1,Check-Out,2015-07-08,Summer,2015-07-01T07:00Z +Keep,139,2015,July,28,5,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,122.7,1,1,Check-Out,2015-07-08,Summer,2015-07-05T07:00Z +Cancel,239,2015,September,38,19,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,3,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,34,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,239,2015,September,38,19,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,3,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,34,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,239,2015,September,38,19,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,3,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,34,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-07-08,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-07-08,Fall,2015-09-05T07:00Z +Cancel,246,2015,September,36,5,2,5,2,0,0,BB,Unknown,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,0,Canceled,2015-07-08,Fall,2015-09-05T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Cancel,260,2015,September,38,19,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,54.99,0,0,Canceled,2015-07-08,Fall,2015-09-19T07:00Z +Keep,145,2015,July,27,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,1,1,Check-Out,2015-07-09,Summer,2015-07-04T07:00Z +Keep,152,2015,July,27,2,2,5,1,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,60.35,0,2,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,152,2015,July,27,2,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,60.35,0,2,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,183,2015,July,28,6,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,100.8,0,2,Check-Out,2015-07-09,Summer,2015-07-06T07:00Z +Keep,226,2015,July,27,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,87.75,0,0,Check-Out,2015-07-09,Summer,2015-07-02T07:00Z +Keep,128,2015,July,28,5,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,108.9,1,0,Check-Out,2015-07-09,Summer,2015-07-05T07:00Z +Keep,147,2015,July,28,7,0,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,58.95,0,0,Check-Out,2015-07-09,Summer,2015-07-07T07:00Z +Keep,121,2015,July,27,3,2,5,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,58.95,0,1,Check-Out,2015-07-10,Summer,2015-07-03T07:00Z +Keep,121,2015,July,27,3,2,5,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,88.95,0,1,Check-Out,2015-07-10,Summer,2015-07-03T07:00Z +Keep,20,2015,July,28,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,80,0,0,Check-Out,2015-07-10,Summer,2015-07-09T07:00Z +Keep,2,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,1,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,2,2015,July,28,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 135,0,Transient,134,0,0,Check-Out,2015-07-10,Summer,2015-07-09T07:00Z +Keep,2,2016,July,29,15,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 135,0,Transient,138,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,1,2017,March,11,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 135,0,Transient,35,1,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 1,0,3,C,C,0,No Deposit , NULL, 135,0,Transient,42,1,1,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,3,2017,June,23,5,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 135,0,Transient,75,0,1,Check-Out,2017-06-07,Summer,2017-06-05T07:00Z +Keep,183,2015,July,27,4,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-10,Summer,2015-07-04T07:00Z +Keep,230,2015,July,28,6,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2015-07-10,Summer,2015-07-06T07:00Z +Keep,186,2015,July,28,7,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-07-10,Summer,2015-07-07T07:00Z +Keep,103,2015,July,28,5,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,99.7,0,1,Check-Out,2015-07-10,Summer,2015-07-05T07:00Z +Keep,15,2015,July,28,10,0,0,3,2,0,BB,PRT,Direct,Direct, 0,0,0,C,E,3,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-07-10,Summer,2015-07-10T07:00Z +Keep,186,2015,July,28,7,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,186,2015,July,28,7,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,185,2015,July,28,6,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,49.3,0,0,Check-Out,2015-07-11,Summer,2015-07-06T07:00Z +Keep,128,2015,July,28,8,0,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2015-07-11,Summer,2015-07-08T07:00Z +Keep,158,2015,July,27,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,183,2015,July,28,5,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,77.78,0,0,Check-Out,2015-07-11,Summer,2015-07-05T07:00Z +Keep,149,2015,July,27,4,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,112,0,1,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,151,2015,July,28,7,0,4,2,2,0,HB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,157.25,0,3,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,127,2015,July,27,4,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,96.9,0,0,Check-Out,2015-07-11,Summer,2015-07-04T07:00Z +Keep,151,2015,July,28,7,0,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,157.25,0,3,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,151,2015,July,28,7,0,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,141.2,1,1,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Keep,137,2015,July,28,7,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,110.7,0,1,Check-Out,2015-07-11,Summer,2015-07-07T07:00Z +Cancel,164,2015,July,28,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,H,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Canceled,2015-07-11,Summer,2015-07-11T07:00Z +Keep,58,2015,July,27,4,2,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,112.5,0,4,Check-Out,2015-07-12,Summer,2015-07-04T07:00Z +Keep,143,2015,July,28,9,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.8,1,0,Check-Out,2015-07-12,Summer,2015-07-09T07:00Z +Keep,123,2015,July,28,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,58.95,0,1,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Keep,184,2015,July,28,5,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Keep,130,2015,July,28,5,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,82.35,1,0,Check-Out,2015-07-12,Summer,2015-07-05T07:00Z +Keep,130,2015,July,27,4,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,96.95,1,1,Check-Out,2015-07-12,Summer,2015-07-04T07:00Z +Keep,130,2015,July,27,4,2,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,64.9,0,1,Check-Out,2015-07-12,Summer,2015-07-04T07:00Z +Keep,134,2015,July,28,8,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,84.15,0,0,Check-Out,2015-07-12,Summer,2015-07-08T07:00Z +Keep,123,2015,July,28,10,0,2,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 149, NULL,0,Transient,114.69,0,1,Check-Out,2015-07-12,Summer,2015-07-10T07:00Z +Keep,129,2015,July,28,9,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,143,2015,July,28,9,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,58.23,0,1,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,143,2015,July,28,9,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,58.23,0,1,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,135,2015,July,28,8,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-13,Summer,2015-07-08T07:00Z +Keep,159,2015,July,28,6,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,71.55,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,84,2015,July,27,2,3,8,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,199.5,1,1,Check-Out,2015-07-13,Summer,2015-07-02T07:00Z +Keep,94,2016,July,27,2,4,7,3,0,0,FB,PRT,Direct,TA/TO, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,317,1,1,Check-Out,2016-07-13,Summer,2016-07-02T07:00Z +Keep,109,2017,June,24,16,4,7,3,0,0,FB,PRT,Direct,Direct, 1,0,2,F,F,0,No Deposit , NULL, NULL,0,Transient,318.82,1,2,Check-Out,2017-06-27,Summer,2017-06-16T07:00Z +Keep,1,2015,July,29,12,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.2,1,1,Check-Out,2015-07-13,Summer,2015-07-12T07:00Z +Keep,6,2015,July,29,12,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,123,0,2,Check-Out,2015-07-13,Summer,2015-07-12T07:00Z +Keep,8,2015,September,37,9,0,1,3,0,0,BB,PRT,Direct,Direct, 1,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient,153,1,2,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,30,2015,July,28,6,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,155,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,158,2015,July,28,6,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,1,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,185,2015,July,28,6,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2015-07-13,Summer,2015-07-06T07:00Z +Keep,142,2015,July,27,2,3,8,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Contract,89.68,0,0,Check-Out,2015-07-13,Summer,2015-07-02T07:00Z +Keep,143,2015,July,28,9,1,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,78.6,0,2,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,143,2015,July,28,9,1,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,78.6,0,2,Check-Out,2015-07-13,Summer,2015-07-09T07:00Z +Keep,157,2015,July,27,4,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-07-14,Summer,2015-07-04T07:00Z +Keep,118,2015,July,28,7,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,55.68,0,1,Check-Out,2015-07-14,Summer,2015-07-07T07:00Z +Cancel,165,2015,August,32,3,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,3,Canceled,2015-07-14,Summer,2015-08-03T07:00Z +Keep,2,2015,July,29,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.9,0,1,Check-Out,2015-07-14,Summer,2015-07-13T07:00Z +Cancel,159,2015,August,32,2,2,4,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 15, NULL,0,Transient,134.1,0,1,Canceled,2015-07-15,Summer,2015-08-02T07:00Z +Cancel,65,2015,July,29,15,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,107.57,0,0,No-Show,2015-07-15,Summer,2015-07-15T07:00Z +Keep,187,2015,July,28,8,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 69, NULL,0,Contract,89.68,1,0,Check-Out,2015-07-15,Summer,2015-07-08T07:00Z +Keep,162,2015,July,28,7,2,7,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,110.7,0,1,Check-Out,2015-07-16,Summer,2015-07-07T07:00Z +Keep,162,2015,July,28,7,2,7,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,110.7,0,1,Check-Out,2015-07-16,Summer,2015-07-07T07:00Z +Keep,189,2015,July,28,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,189,2015,July,28,9,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,96.3,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,155,2015,July,28,5,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,0,Check-Out,2015-07-16,Summer,2015-07-05T07:00Z +Keep,152,2015,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,0,Check-Out,2015-07-16,Summer,2015-07-02T07:00Z +Keep,59,2015,July,29,14,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,75.46,0,2,Check-Out,2015-07-16,Summer,2015-07-14T07:00Z +Keep,59,2015,July,29,14,0,2,3,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,97.25,0,3,Check-Out,2015-07-16,Summer,2015-07-14T07:00Z +Keep,127,2015,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,104.55,0,1,Check-Out,2015-07-16,Summer,2015-07-02T07:00Z +Keep,188,2015,July,28,9,2,5,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,159.74,0,0,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,115,2015,July,28,5,4,7,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,113.05,0,0,Check-Out,2015-07-16,Summer,2015-07-05T07:00Z +Keep,0,2015,July,29,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,154,1,0,Check-Out,2015-07-16,Summer,2015-07-15T07:00Z +Keep,2,2015,July,29,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2015-07-16,Summer,2015-07-15T07:00Z +Keep,129,2015,July,28,10,2,4,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,157.5,1,0,Check-Out,2015-07-16,Summer,2015-07-10T07:00Z +Keep,151,2015,July,28,10,2,4,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,123.3,0,3,Check-Out,2015-07-16,Summer,2015-07-10T07:00Z +Keep,134,2015,July,28,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,2,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,134,2015,July,28,9,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,1,Check-Out,2015-07-16,Summer,2015-07-09T07:00Z +Keep,158,2015,July,28,11,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,99.7,0,1,Check-Out,2015-07-16,Summer,2015-07-11T07:00Z +Keep,139,2015,July,28,8,2,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,107.2,0,1,Check-Out,2015-07-16,Summer,2015-07-08T07:00Z +Keep,129,2015,July,28,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,110.7,0,0,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,151,2015,July,28,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,104.55,0,0,Check-Out,2015-07-17,Summer,2015-07-10T07:00Z +Keep,237,2015,July,29,13,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,128.35,0,0,Check-Out,2015-07-17,Summer,2015-07-13T07:00Z +Keep,237,2015,July,29,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2015-07-17,Summer,2015-07-13T07:00Z +Keep,185,2015,July,28,8,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,90.95,0,0,Check-Out,2015-07-17,Summer,2015-07-08T07:00Z +Keep,108,2015,July,28,11,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2015-07-17,Summer,2015-07-11T07:00Z +Keep,62,2015,July,29,15,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,106.5,0,1,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,185,2015,July,28,6,3,8,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 128, NULL,0,Contract,90.95,0,0,Check-Out,2015-07-17,Summer,2015-07-06T07:00Z +Keep,237,2015,July,29,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2015-07-17,Summer,2015-07-13T07:00Z +Keep,5,2015,July,29,15,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119.25,1,1,Check-Out,2015-07-17,Summer,2015-07-15T07:00Z +Keep,0,2015,July,29,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,2,No Deposit , 240, NULL,0,Group,112.5,0,0,Check-Out,2015-07-18,Summer,2015-07-17T07:00Z +Keep,184,2015,July,28,7,2,9,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,110.5,0,0,Check-Out,2015-07-18,Summer,2015-07-07T07:00Z +Keep,0,2015,July,29,17,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,179,0,0,Check-Out,2015-07-18,Summer,2015-07-17T07:00Z +Keep,0,2015,July,29,17,0,1,2,0,0,BB,NZL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154,0,0,Check-Out,2015-07-18,Summer,2015-07-17T07:00Z +Keep,16,2015,July,29,15,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,106.5,0,0,Check-Out,2015-07-18,Summer,2015-07-15T07:00Z +Keep,129,2015,July,28,11,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Contract,149.63,0,1,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,0,2015,July,29,16,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,124.5,0,2,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,0,2015,July,29,16,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,124.5,0,2,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,148,2015,July,28,11,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 261, NULL,0,Transient,119.7,0,1,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,94,2015,July,29,16,0,2,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,115.5,1,1,Check-Out,2015-07-18,Summer,2015-07-16T07:00Z +Keep,188,2015,July,28,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,106.15,0,0,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,137,2015,July,28,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,130.9,1,0,Check-Out,2015-07-18,Summer,2015-07-11T07:00Z +Keep,29,2015,July,29,17,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,131.2,0,0,Check-Out,2015-07-18,Summer,2015-07-17T07:00Z +Keep,184,2015,July,27,4,4,11,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-07-19,Summer,2015-07-04T07:00Z +Keep,93,2015,July,28,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,1,Check-Out,2015-07-19,Summer,2015-07-05T07:00Z +Keep,162,2015,July,29,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,110.5,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,98,2015,July,29,16,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,1,2,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,172,2015,July,29,12,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,119.7,0,0,Check-Out,2015-07-19,Summer,2015-07-12T07:00Z +Keep,2,2015,July,29,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,147.67,1,0,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,52,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,6,2015,July,29,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,102.65,1,1,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,10,2015,July,29,16,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134,1,0,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,3,2015,July,29,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,125.5,0,1,Check-Out,2015-07-19,Summer,2015-07-17T07:00Z +Keep,17,2015,July,29,16,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,139,0,1,Check-Out,2015-07-19,Summer,2015-07-16T07:00Z +Keep,125,2015,July,28,5,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 69, NULL,0,Contract,113.05,0,0,Check-Out,2015-07-19,Summer,2015-07-05T07:00Z +Keep,41,2015,July,29,16,1,3,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,135,0,0,Check-Out,2015-07-20,Summer,2015-07-16T07:00Z +Keep,41,2015,July,30,19,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,92,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,25,2015,July,29,17,1,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2015-07-20,Summer,2015-07-17T07:00Z +Keep,131,2015,July,29,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,113.05,0,1,Check-Out,2015-07-20,Summer,2015-07-13T07:00Z +Keep,0,2015,July,30,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,98,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,17,2015,July,29,16,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,139.75,1,1,Check-Out,2015-07-20,Summer,2015-07-16T07:00Z +Keep,0,2015,July,30,19,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Group,103.18,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,0,2015,July,30,19,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,128,1,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,130,2015,July,28,10,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,134.1,0,0,Check-Out,2015-07-20,Summer,2015-07-10T07:00Z +Keep,0,2015,July,30,19,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,155.5,0,0,Check-Out,2015-07-20,Summer,2015-07-19T07:00Z +Keep,0,2015,July,30,20,1,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-07-21,Summer,2015-07-20T07:00Z +Keep,189,2015,July,28,11,4,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,160,0,1,Check-Out,2015-07-21,Summer,2015-07-11T07:00Z +Keep,6,2015,July,30,20,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient,176,1,0,Check-Out,2015-07-21,Summer,2015-07-20T07:00Z +Keep,133,2015,July,29,13,3,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,112.63,0,0,Check-Out,2015-07-21,Summer,2015-07-13T07:00Z +Keep,29,2015,July,29,18,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,120.6,1,0,Check-Out,2015-07-21,Summer,2015-07-18T07:00Z +Keep,29,2015,July,29,18,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-07-21,Summer,2015-07-18T07:00Z +Keep,0,2015,July,29,16,2,3,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,126.28,0,0,Check-Out,2015-07-21,Summer,2015-07-16T07:00Z +Keep,133,2015,July,29,13,3,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,142.63,0,1,Check-Out,2015-07-21,Summer,2015-07-13T07:00Z +Keep,59,2015,July,29,16,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,0,Check-Out,2015-07-21,Summer,2015-07-16T07:00Z +Keep,35,2015,July,29,16,2,4,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,109.3,0,1,Check-Out,2015-07-22,Summer,2015-07-16T07:00Z +Keep,35,2015,July,29,16,2,4,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,109.3,0,2,Check-Out,2015-07-22,Summer,2015-07-16T07:00Z +Keep,241,2015,July,29,17,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,112.63,0,0,Check-Out,2015-07-22,Summer,2015-07-17T07:00Z +Keep,86,2015,July,28,8,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,83.79,1,0,Check-Out,2015-07-22,Summer,2015-07-08T07:00Z +Keep,194,2015,July,29,14,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,156.22,0,1,Check-Out,2015-07-23,Summer,2015-07-14T07:00Z +Keep,161,2015,July,29,13,3,7,2,2,0,HB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,232,0,3,Check-Out,2015-07-23,Summer,2015-07-13T07:00Z +Keep,90,2015,July,29,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,93.6,0,1,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,50,2015,July,30,22,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,135,0,0,Check-Out,2015-07-30,Summer,2015-07-22T07:00Z +Keep,104,2015,July,29,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,0,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,90,2015,July,29,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,93.6,0,1,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,48,2015,July,30,20,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 142, NULL,0,Transient,118,0,0,Check-Out,2015-07-23,Summer,2015-07-20T07:00Z +Keep,22,2015,July,29,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,160,0,0,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,39,2015,July,30,20,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,103.95,0,1,Check-Out,2015-07-23,Summer,2015-07-20T07:00Z +Keep,157,2015,July,30,20,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,97.1,1,0,Check-Out,2015-07-23,Summer,2015-07-20T07:00Z +Keep,140,2015,July,29,16,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,174.95,0,1,Check-Out,2015-07-23,Summer,2015-07-16T07:00Z +Keep,13,2015,July,30,22,0,1,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,193.81,1,1,Check-Out,2015-07-23,Summer,2015-07-22T07:00Z +Keep,50,2015,July,30,23,2,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,134.75,1,1,Check-Out,2015-07-31,Summer,2015-07-23T07:00Z +Keep,0,2015,July,30,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 83,0,Transient,114,0,0,Check-Out,2015-07-23,Summer,2015-07-22T07:00Z +Keep,97,2015,July,30,21,0,2,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,162,1,0,Check-Out,2015-07-23,Summer,2015-07-21T07:00Z +Keep,201,2015,July,30,24,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,1,Check-Out,2015-07-30,Summer,2015-07-24T07:00Z +Keep,36,2015,July,29,15,2,7,3,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,206.22,0,0,Check-Out,2015-07-24,Summer,2015-07-15T07:00Z +Keep,93,2015,July,29,18,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2015-07-24,Summer,2015-07-18T07:00Z +Keep,45,2015,July,30,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,84.12,0,0,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,126,2015,July,29,16,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,154.8,1,1,Check-Out,2015-07-24,Summer,2015-07-16T07:00Z +Keep,44,2015,July,30,20,1,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,115.85,0,0,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,40,2015,July,30,21,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,123.2,0,1,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,28,2015,July,30,21,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,42,2015,July,30,20,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,1,0,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,64,2015,July,30,21,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,177,0,0,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,1,2015,July,30,21,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,177,0,0,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,190,2015,July,28,10,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,112.63,0,0,Check-Out,2015-07-24,Summer,2015-07-10T07:00Z +Keep,3,2015,July,30,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Keep,151,2015,July,29,14,2,8,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,104.55,0,0,Check-Out,2015-07-24,Summer,2015-07-14T07:00Z +Keep,37,2015,July,30,19,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.95,0,2,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,37,2015,July,30,19,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.95,0,2,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,178,2015,July,30,19,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 5, NULL,0,Transient,96.3,0,2,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,37,2015,July,30,19,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.95,0,2,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,37,2015,July,30,19,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.95,0,2,Check-Out,2015-07-24,Summer,2015-07-19T07:00Z +Keep,35,2015,July,30,21,0,3,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,C,G,0,No Deposit , 242, NULL,0,Transient,169,1,1,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,68,2015,July,30,20,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,2,Check-Out,2015-07-24,Summer,2015-07-20T07:00Z +Keep,0,2015,July,30,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,134,0,0,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Keep,65,2015,July,29,15,2,7,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,142.48,0,0,Check-Out,2015-07-24,Summer,2015-07-15T07:00Z +Keep,44,2015,July,30,22,0,2,2,1,0,HB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,187.11,1,0,Check-Out,2015-07-24,Summer,2015-07-22T07:00Z +Keep,27,2015,July,29,16,2,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,E,2,No Deposit , 250, NULL,0,Transient,134.5,0,1,Check-Out,2015-07-24,Summer,2015-07-16T07:00Z +Keep,0,2015,July,30,23,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,134,0,0,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Keep,106,2015,July,30,21,0,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,88.55,0,1,Check-Out,2015-07-24,Summer,2015-07-21T07:00Z +Keep,2,2015,July,30,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 9,0,Transient,114,0,0,Check-Out,2015-07-24,Summer,2015-07-23T07:00Z +Keep,3,2016,January,4,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 9,0,Transient,30,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,0,2016,June,26,21,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,2,A,A,1,No Deposit , NULL, 9,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,43,2015,July,30,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 177, NULL,0,Transient,158.5,0,0,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,1,2015,July,29,18,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,56,2015,July,30,21,0,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,132.3,0,0,Check-Out,2015-07-25,Summer,2015-07-21T07:00Z +Keep,55,2015,July,30,20,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,177,0,1,Check-Out,2015-07-25,Summer,2015-07-20T07:00Z +Keep,70,2015,July,30,22,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,1,1,Check-Out,2015-07-25,Summer,2015-07-22T07:00Z +Keep,71,2015,July,30,19,2,4,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Keep,96,2015,July,30,19,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,119.7,0,2,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Keep,96,2015,July,29,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,96.3,0,0,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,0,2015,July,30,23,0,2,2,1,0,BB,CHE,Direct,Direct, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient,134,0,0,Check-Out,2015-07-25,Summer,2015-07-23T07:00Z +Keep,44,2015,July,29,18,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2015-07-25,Summer,2015-07-18T07:00Z +Keep,51,2015,July,30,22,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,0,1,Check-Out,2015-07-25,Summer,2015-07-22T07:00Z +Keep,25,2015,July,30,19,2,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,201.05,0,2,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Keep,51,2015,July,30,22,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,135,1,1,Check-Out,2015-07-25,Summer,2015-07-22T07:00Z +Keep,94,2015,July,30,19,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2015-07-25,Summer,2015-07-19T07:00Z +Keep,10,2015,July,30,20,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,164,1,0,Check-Out,2015-07-25,Summer,2015-07-20T07:00Z +Keep,63,2015,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,115,0,1,Check-Out,2015-07-25,Summer,2015-07-20T07:00Z +Keep,54,2015,July,30,22,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,163.3,0,2,Check-Out,2015-07-25,Summer,2015-07-22T07:00Z +Keep,153,2015,July,30,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,97.1,0,1,Check-Out,2015-07-26,Summer,2015-07-19T07:00Z +Keep,22,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,165,1,2,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,39,2015,July,30,22,0,4,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,101.65,0,2,Check-Out,2015-07-26,Summer,2015-07-22T07:00Z +Keep,10,2015,July,30,24,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , 250, NULL,0,Transient,164,0,0,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,57,2015,July,29,18,2,6,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,135,0,1,Check-Out,2015-07-26,Summer,2015-07-18T07:00Z +Keep,57,2015,July,29,18,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,135,0,1,Check-Out,2015-07-26,Summer,2015-07-18T07:00Z +Keep,8,2015,July,30,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,1,1,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,38,2015,July,30,24,0,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,157,0,0,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,67,2015,July,30,20,1,5,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,135,0,2,Check-Out,2015-07-26,Summer,2015-07-20T07:00Z +Keep,51,2015,July,30,22,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,101.68,0,0,Check-Out,2015-07-26,Summer,2015-07-22T07:00Z +Keep,33,2015,July,30,23,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,184,0,1,Check-Out,2015-07-26,Summer,2015-07-23T07:00Z +Keep,98,2015,July,30,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,118.17,0,0,Check-Out,2015-07-26,Summer,2015-07-20T07:00Z +Keep,98,2015,July,30,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,118.17,0,0,Check-Out,2015-07-26,Summer,2015-07-20T07:00Z +Keep,72,2015,July,30,22,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.75,0,1,Check-Out,2015-07-26,Summer,2015-07-22T07:00Z +Keep,33,2015,July,30,23,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient-Party,194,0,1,Check-Out,2015-07-26,Summer,2015-07-23T07:00Z +Keep,84,2015,July,30,22,0,4,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,199.75,1,3,Check-Out,2015-07-26,Summer,2015-07-22T07:00Z +Keep,11,2015,July,30,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,11,2015,July,30,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,11,2015,July,30,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,9,2015,July,30,24,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,195,0,1,Check-Out,2015-07-26,Summer,2015-07-24T07:00Z +Keep,1,2015,July,30,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,179,0,2,Check-Out,2015-07-26,Summer,2015-07-25T07:00Z +Keep,82,2015,August,34,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient-Party,154,0,1,Check-Out,2015-08-19,Summer,2015-08-17T07:00Z +Keep,262,2015,September,39,21,1,3,1,0,0,HB,BEL,Groups,Corporate, 0,0,2,A,A,1,No Deposit , 183, NULL,0,Transient-Party,65.5,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,46,2015,July,30,20,2,5,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 142, NULL,0,Transient,129.45,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,55,2015,July,30,20,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,142.86,1,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,49,2015,July,30,23,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,92,0,0,Check-Out,2015-07-27,Summer,2015-07-23T07:00Z +Keep,52,2015,July,30,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,152.43,0,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,171,2015,July,30,24,1,2,2,1,0,BB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,153.1,1,1,Check-Out,2015-07-27,Summer,2015-07-24T07:00Z +Keep,62,2015,July,30,20,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,167,0,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,108,2015,July,29,17,3,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,182.8,1,2,Check-Out,2015-07-27,Summer,2015-07-17T07:00Z +Cancel,209,2015,August,31,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Canceled,2015-07-27,Summer,2015-08-01T07:00Z +Keep,52,2015,July,30,20,2,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,33,2015,July,30,20,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,168.3,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,67,2015,July,30,20,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,120.43,1,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,30,2015,July,30,22,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,1,0,Check-Out,2015-07-27,Summer,2015-07-22T07:00Z +Keep,42,2015,July,30,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 175, NULL,0,Transient,122.34,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,42,2015,July,30,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,122.34,1,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,42,2015,July,30,20,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,0,No Deposit , 175, NULL,0,Transient,125.34,0,1,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,14,2015,July,30,24,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,195,1,2,Check-Out,2015-07-27,Summer,2015-07-24T07:00Z +Keep,50,2015,July,30,22,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,166.6,1,0,Check-Out,2015-07-27,Summer,2015-07-22T07:00Z +Keep,7,2015,July,30,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,2,Check-Out,2015-07-27,Summer,2015-07-23T07:00Z +Keep,26,2015,July,30,23,1,3,2,2,0,HB,IDN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,252,1,0,Check-Out,2015-07-27,Summer,2015-07-23T07:00Z +Keep,59,2015,July,30,20,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120.43,0,0,Check-Out,2015-07-27,Summer,2015-07-20T07:00Z +Keep,130,2017,July,29,18,1,5,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,2,No Deposit , 250, NULL,0,Transient,156.5,1,0,Check-Out,2017-07-24,Summer,2017-07-18T07:00Z +Keep,66,2015,July,30,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124.5,0,1,Check-Out,2015-07-27,Summer,2015-07-23T07:00Z +Cancel,256,2015,August,31,1,3,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Canceled,2015-07-27,Summer,2015-08-01T07:00Z +Keep,160,2015,July,30,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,110.5,0,1,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,160,2015,July,30,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,110.5,0,1,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,136,2015,July,29,18,4,6,2,1,0,HB,ROU,Direct,Direct, 0,0,0,C,C,2,No Deposit , NULL, NULL,0,Transient-Party,182.2,1,2,Check-Out,2015-07-28,Summer,2015-07-18T07:00Z +Keep,136,2015,July,29,18,4,6,2,1,0,HB,ROU,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,182.2,1,2,Check-Out,2015-07-28,Summer,2015-07-18T07:00Z +Keep,26,2015,July,30,20,3,5,2,0,0,HB,ESP,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194,0,0,Check-Out,2015-07-28,Summer,2015-07-20T07:00Z +Keep,43,2015,July,30,21,2,5,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,157.37,0,2,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,42,2015,July,30,20,3,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,97.7,0,0,Check-Out,2015-07-28,Summer,2015-07-20T07:00Z +Keep,38,2015,July,30,25,2,1,2,2,0,BB,ITA,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,162,1,1,Check-Out,2015-07-28,Summer,2015-07-25T07:00Z +Keep,42,2015,July,30,24,2,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,150,0,0,Check-Out,2015-07-28,Summer,2015-07-24T07:00Z +Keep,50,2015,July,30,21,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,101.68,0,0,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,46,2015,July,30,21,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,114.63,0,1,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,153,2015,July,30,21,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,133.95,0,3,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,153,2015,July,30,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.95,0,2,Check-Out,2015-07-28,Summer,2015-07-21T07:00Z +Keep,50,2015,July,30,21,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,98.75,0,2,Check-Out,2015-07-29,Summer,2015-07-21T07:00Z +Keep,50,2015,July,30,21,2,6,2,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,109.65,0,1,Check-Out,2015-07-29,Summer,2015-07-21T07:00Z +Keep,48,2015,July,31,26,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,127,1,3,Check-Out,2015-07-29,Summer,2015-07-26T07:00Z +Keep,48,2015,July,31,26,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,115,0,3,Check-Out,2015-07-29,Summer,2015-07-26T07:00Z +Cancel,171,2015,August,32,3,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-07-29,Summer,2015-08-03T07:00Z +Keep,41,2015,July,30,22,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,118.19,0,0,Check-Out,2015-07-29,Summer,2015-07-22T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.7,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.7,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.7,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.7,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.7,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Canceled,2015-07-29,Fall,2015-09-04T07:00Z +Keep,44,2015,July,30,19,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,92,0,0,Check-Out,2015-07-29,Summer,2015-07-19T07:00Z +Keep,74,2015,July,31,27,1,1,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,H,0,No Deposit , 134, NULL,0,Transient,144.45,0,1,Check-Out,2015-07-29,Summer,2015-07-27T07:00Z +Keep,73,2015,July,30,25,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,2,Check-Out,2015-07-29,Summer,2015-07-25T07:00Z +Keep,35,2015,July,29,16,4,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,145.23,1,0,Check-Out,2015-07-29,Summer,2015-07-16T07:00Z +Cancel,153,2015,August,32,2,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 6, NULL,0,Transient,134.1,0,0,Canceled,2015-07-29,Summer,2015-08-02T07:00Z +Keep,142,2015,July,29,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,1,Check-Out,2015-07-30,Summer,2015-07-16T07:00Z +Keep,142,2015,July,29,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,1,Check-Out,2015-07-30,Summer,2015-07-16T07:00Z +Keep,68,2015,July,30,23,2,5,2,0,0,BB,NOR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,160,0,0,Check-Out,2015-07-30,Summer,2015-07-23T07:00Z +Keep,24,2015,July,30,23,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,179,0,1,Check-Out,2015-07-30,Summer,2015-07-23T07:00Z +Keep,296,2015,July,30,20,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,110.5,0,1,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Keep,296,2015,July,30,20,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,110.5,0,1,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Keep,71,2015,July,31,28,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-07-30,Summer,2015-07-28T07:00Z +Keep,13,2015,July,31,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,185,1,1,Check-Out,2015-07-30,Summer,2015-07-29T07:00Z +Keep,40,2015,July,30,25,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,9,2015,July,30,23,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,5,No Deposit , NULL, NULL,0,Transient,125,0,0,Check-Out,2015-07-30,Summer,2015-07-23T07:00Z +Cancel,239,2015,August,35,29,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 143, NULL,0,Contract,110.5,0,2,Canceled,2015-07-30,Summer,2015-08-29T07:00Z +Keep,93,2015,July,30,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,0,0,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,13,2015,July,31,29,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,168,0,2,Check-Out,2015-07-30,Summer,2015-07-29T07:00Z +Keep,13,2015,July,31,29,0,1,2,1,0,BB,USA,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,168,0,2,Check-Out,2015-07-30,Summer,2015-07-29T07:00Z +Keep,26,2015,July,31,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,165,1,0,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,26,2015,July,31,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,185,1,0,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,26,2015,July,31,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,173,0,0,Check-Out,2015-07-30,Summer,2015-07-27T07:00Z +Keep,72,2015,July,31,26,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157,1,1,Check-Out,2015-07-30,Summer,2015-07-26T07:00Z +Keep,61,2015,July,30,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,135,0,0,Check-Out,2015-07-30,Summer,2015-07-25T07:00Z +Keep,56,2015,July,30,20,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,112.5,0,0,Check-Out,2015-07-30,Summer,2015-07-20T07:00Z +Keep,35,2015,July,29,16,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,114.51,0,1,Check-Out,2015-07-30,Summer,2015-07-16T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,0,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Cancel,468,2016,May,20,12,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,0,0,0,Canceled,2015-07-30,Spring,2016-05-12T07:00Z +Keep,143,2015,July,31,30,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient-Party,96.3,1,2,Check-Out,2015-08-04,Summer,2015-07-30T07:00Z +Keep,50,2015,July,30,23,2,6,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.25,1,0,Check-Out,2015-07-31,Summer,2015-07-23T07:00Z +Keep,47,2015,July,30,25,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,B,0,No Deposit , 250, NULL,0,Transient,115,0,1,Check-Out,2015-07-31,Summer,2015-07-25T07:00Z +Keep,20,2015,July,31,30,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,137.7,1,2,Check-Out,2015-07-31,Summer,2015-07-30T07:00Z +Keep,30,2015,July,30,24,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,195.45,1,3,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,53,2015,July,30,24,2,5,3,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,190.4,0,1,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,53,2015,July,30,24,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 242, NULL,0,Transient,168.7,0,1,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,72,2015,July,31,29,0,2,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-07-31,Summer,2015-07-29T07:00Z +Keep,72,2015,July,31,29,0,2,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-07-31,Summer,2015-07-29T07:00Z +Keep,78,2015,July,31,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,134,0,2,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Keep,36,2015,July,30,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,175.43,1,0,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,78,2015,July,31,26,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,125,0,2,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Keep,152,2015,July,31,26,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,96.3,0,2,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Keep,102,2015,July,30,25,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,110.7,1,0,Check-Out,2015-07-31,Summer,2015-07-25T07:00Z +Keep,64,2015,July,30,22,2,7,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,146.61,0,0,Check-Out,2015-07-31,Summer,2015-07-22T07:00Z +Keep,24,2015,July,30,24,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,189.75,0,1,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,48,2015,July,31,27,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,108,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,72,2015,July,31,27,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,2,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,27,2015,July,31,27,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,254,2015,July,30,24,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,96.3,0,1,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,28,2015,July,31,28,0,3,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,176,1,1,Check-Out,2015-07-31,Summer,2015-07-28T07:00Z +Keep,24,2015,July,30,24,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,189.75,0,1,Check-Out,2015-07-31,Summer,2015-07-24T07:00Z +Keep,0,2015,July,31,28,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-07-31,Summer,2015-07-28T07:00Z +Keep,152,2015,July,31,26,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,96.3,0,2,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Keep,53,2015,July,31,27,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2015-07-31,Summer,2015-07-27T07:00Z +Keep,48,2015,July,31,26,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2015-07-31,Summer,2015-07-26T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Cancel,245,2015,September,39,25,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 248, NULL,0,Transient,80,0,0,Canceled,2015-07-31,Fall,2015-09-25T07:00Z +Keep,32,2015,July,31,27,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,135,0,2,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,45,2015,July,30,23,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,117.22,1,0,Check-Out,2015-08-01,Summer,2015-07-23T07:00Z +Keep,49,2015,July,31,27,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,127,1,1,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,67,2015,July,31,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,88.55,0,1,Check-Out,2015-08-01,Summer,2015-07-31T07:00Z +Keep,67,2015,July,31,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,88.55,1,1,Check-Out,2015-08-01,Summer,2015-07-31T07:00Z +Keep,53,2015,July,31,27,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,154.6,1,0,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,11,2015,July,30,24,2,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,194,0,0,Check-Out,2015-08-01,Summer,2015-07-24T07:00Z +Keep,204,2015,July,31,27,1,4,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,131.4,0,1,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,0,2015,July,31,31,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-01,Summer,2015-07-31T07:00Z +Keep,3,2015,July,31,30,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,3,Check-Out,2015-08-01,Summer,2015-07-30T07:00Z +Keep,34,2015,July,31,26,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146,0,0,Check-Out,2015-08-01,Summer,2015-07-26T07:00Z +Keep,55,2015,July,31,28,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 142, NULL,0,Contract,118,1,0,Check-Out,2015-08-01,Summer,2015-07-28T07:00Z +Keep,50,2015,July,31,26,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,207,1,0,Check-Out,2015-08-01,Summer,2015-07-26T07:00Z +Keep,42,2015,July,31,27,1,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,48,2015,July,31,26,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,158.1,0,0,Check-Out,2015-08-01,Summer,2015-07-26T07:00Z +Keep,33,2015,July,31,26,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,131.2,0,1,Check-Out,2015-08-01,Summer,2015-07-26T07:00Z +Keep,23,2015,July,31,26,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,131.2,0,1,Check-Out,2015-08-01,Summer,2015-07-26T07:00Z +Keep,53,2015,July,30,25,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,221.43,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,47,2015,July,31,28,0,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154,0,3,Check-Out,2015-08-01,Summer,2015-07-28T07:00Z +Keep,156,2015,August,31,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,45,2015,July,31,27,1,4,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,131.2,0,3,Check-Out,2015-08-01,Summer,2015-07-27T07:00Z +Keep,29,2015,July,30,25,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,39,2015,July,30,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,0,0,Check-Out,2015-08-01,Summer,2015-07-25T07:00Z +Keep,3,2015,July,31,30,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,1,3,Check-Out,2015-08-01,Summer,2015-07-30T07:00Z +Keep,48,2015,July,30,20,3,9,2,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,99.45,0,2,Check-Out,2015-08-01,Summer,2015-07-20T07:00Z +Keep,53,2015,July,30,22,2,8,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 15, NULL,0,Transient,111.2,0,0,Check-Out,2015-08-01,Summer,2015-07-22T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,8,0,0,Canceled,2015-08-01,Fall,2015-09-02T07:00Z +Cancel,172,2015,August,32,4,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,125.9,0,1,Canceled,2015-08-04,Summer,2015-08-04T07:00Z +Keep,25,2015,July,31,26,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,183,1,2,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,38,2015,July,31,30,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,129.48,0,1,Check-Out,2015-08-02,Summer,2015-07-30T07:00Z +Keep,50,2015,July,31,28,0,5,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,198.8,1,1,Check-Out,2015-08-02,Summer,2015-07-28T07:00Z +Keep,39,2015,July,31,26,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,133,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,31,2015,July,31,31,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,0,0,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,39,2015,July,31,26,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,133,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,31,2015,July,31,31,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,1,0,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,56,2015,July,30,25,2,6,2,0,1,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,149.5,1,2,Check-Out,2015-08-02,Summer,2015-07-25T07:00Z +Keep,222,2017,July,29,22,2,5,2,0,1,HB,PRT,Direct,Direct, 1,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,185.5,0,2,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,15,2015,July,31,31,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,2,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,16,2015,July,31,30,0,3,3,0,0,BB,NOR,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,194,0,0,Check-Out,2015-08-02,Summer,2015-07-30T07:00Z +Keep,56,2015,July,30,25,2,6,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,102.45,0,0,Check-Out,2015-08-02,Summer,2015-07-25T07:00Z +Keep,49,2015,July,31,27,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.17,0,0,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Keep,167,2015,July,31,27,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,120.6,1,1,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Keep,15,2015,July,31,31,0,2,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,248,1,2,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,15,2015,July,31,31,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,1,2,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,14,2015,July,31,30,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,189.67,0,1,Check-Out,2015-08-02,Summer,2015-07-30T07:00Z +Keep,32,2015,July,31,27,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,147,0,0,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Keep,39,2015,July,31,26,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 171, NULL,0,Transient,178.88,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,46,2015,July,31,27,1,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Check-Out,2015-08-02,Summer,2015-07-27T07:00Z +Keep,32,2015,July,31,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,32,2015,July,30,24,2,7,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128.2,0,1,Check-Out,2015-08-02,Summer,2015-07-24T07:00Z +Keep,51,2015,July,31,26,2,5,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,119.81,0,2,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,33,2015,July,31,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,33,2015,July,31,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,1,Check-Out,2015-08-02,Summer,2015-07-26T07:00Z +Keep,31,2015,July,31,30,0,3,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-02,Summer,2015-07-30T07:00Z +Keep,0,2015,August,31,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,132.44,1,1,Check-Out,2015-08-02,Summer,2015-08-01T07:00Z +Keep,16,2015,July,31,31,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,120,0,1,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,25,2015,July,31,31,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,B,B,1,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-08-02,Summer,2015-07-31T07:00Z +Keep,1,2015,August,32,3,0,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,1,No Deposit , 240, NULL,0,Group,0,0,1,Check-Out,2015-08-03,Summer,2015-08-03T07:00Z +Keep,157,2015,August,32,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 196, NULL,0,Transient-Party,119.7,0,2,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,38,2015,July,31,30,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,82,2015,July,31,30,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,81.67,0,1,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,33,2015,July,31,27,2,5,2,0,1,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2015-08-03,Summer,2015-07-27T07:00Z +Keep,43,2015,July,31,31,1,2,2,1,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,134,0,1,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,44,2015,July,31,31,1,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,118.99,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,21,2015,July,31,31,1,2,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,188,0,1,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,39,2015,July,31,26,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,135,0,1,Check-Out,2015-08-03,Summer,2015-07-26T07:00Z +Keep,53,2015,July,31,27,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,146.56,0,1,Check-Out,2015-08-03,Summer,2015-07-27T07:00Z +Keep,122,2015,July,31,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,144.6,1,0,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,1,2015,August,31,1,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,162.5,0,1,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Keep,31,2015,July,31,31,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,140.33,0,1,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,3,2015,July,31,30,1,3,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,188,0,2,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,11,2015,July,31,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,142.71,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,146,2015,July,31,30,1,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,106.25,0,1,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,44,2015,August,31,1,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Keep,77,2015,July,31,29,1,4,2,1,1,BB,NOR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,121.35,0,3,Check-Out,2015-08-03,Summer,2015-07-29T07:00Z +Cancel,261,2015,October,42,16,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 6, NULL,0,Transient,72,0,0,Canceled,2015-08-03,Fall,2015-10-16T07:00Z +Keep,118,2015,July,31,30,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Contract,109.65,0,0,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,64,2015,August,31,1,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Keep,49,2015,July,31,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98.02,0,1,Check-Out,2015-08-03,Summer,2015-07-27T07:00Z +Keep,22,2015,August,31,1,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-08-03,Summer,2015-08-01T07:00Z +Keep,11,2015,July,31,31,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,140.91,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,48,2015,July,31,31,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,101.65,0,1,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,58,2015,July,31,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,129,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,255,2015,July,31,31,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,96.3,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,209,2015,July,31,30,1,3,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-08-03,Summer,2015-07-30T07:00Z +Keep,210,2015,July,31,31,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 175, NULL,0,Transient,119.25,0,0,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,25,2015,August,32,3,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,207,0,0,Check-Out,2015-08-04,Summer,2015-08-03T07:00Z +Keep,24,2015,July,31,31,1,2,3,0,0,BB,LUX,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,209,0,2,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,24,2015,July,31,31,1,2,2,0,0,BB,LUX,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,179,1,1,Check-Out,2015-08-03,Summer,2015-07-31T07:00Z +Keep,128,2015,July,30,24,4,7,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,152.71,0,1,Check-Out,2015-08-04,Summer,2015-07-24T07:00Z +Keep,156,2015,July,31,31,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,100.8,0,0,Check-Out,2015-08-04,Summer,2015-07-31T07:00Z +Keep,119,2015,July,31,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 143, NULL,0,Contract,134.73,0,2,Check-Out,2015-08-04,Summer,2015-07-28T07:00Z +Keep,49,2015,July,31,27,3,5,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,179.88,0,1,Check-Out,2015-08-04,Summer,2015-07-27T07:00Z +Keep,67,2015,August,32,2,2,0,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,137.9,1,2,Check-Out,2015-08-04,Summer,2015-08-02T07:00Z +Keep,67,2015,August,32,2,2,0,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,137.9,1,1,Check-Out,2015-08-04,Summer,2015-08-02T07:00Z +Keep,4,2015,August,32,3,1,0,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,143.34,0,2,Check-Out,2015-08-04,Summer,2015-08-03T07:00Z +Keep,1,2015,August,31,1,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,0,3,Check-Out,2015-08-04,Summer,2015-08-01T07:00Z +Keep,143,2015,July,31,30,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-04,Summer,2015-07-30T07:00Z +Keep,143,2015,July,31,30,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-04,Summer,2015-07-30T07:00Z +Keep,23,2015,July,31,30,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,201.6,0,1,Check-Out,2015-08-04,Summer,2015-07-30T07:00Z +Keep,2,2015,August,32,2,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.25,0,1,Check-Out,2015-08-04,Summer,2015-08-02T07:00Z +Keep,8,2015,July,31,31,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.5,0,2,Check-Out,2015-08-04,Summer,2015-07-31T07:00Z +Keep,0,2015,August,32,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,132.44,0,0,Check-Out,2015-08-04,Summer,2015-08-03T07:00Z +Keep,35,2015,July,31,29,2,4,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,170.33,0,1,Check-Out,2015-08-04,Summer,2015-07-29T07:00Z +Keep,0,2015,August,32,2,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192,0,0,Check-Out,2015-08-04,Summer,2015-08-02T07:00Z +Keep,177,2015,July,31,27,3,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,112.63,0,0,Check-Out,2015-08-04,Summer,2015-07-27T07:00Z +Cancel,218,2015,August,32,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Canceled,2015-08-04,Summer,2015-08-07T07:00Z +Keep,88,2015,July,31,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,132.5,0,1,Check-Out,2015-08-05,Summer,2015-07-29T07:00Z +Keep,123,2015,August,32,2,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.6,0,2,Check-Out,2015-08-05,Summer,2015-08-02T07:00Z +Keep,157,2015,July,31,30,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-08-05,Summer,2015-07-30T07:00Z +Keep,123,2015,July,31,31,2,3,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-08-05,Summer,2015-07-31T07:00Z +Keep,0,2015,August,32,4,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,179,0,0,Check-Out,2015-08-05,Summer,2015-08-04T07:00Z +Keep,158,2015,August,32,4,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112,0,0,Check-Out,2015-08-05,Summer,2015-08-04T07:00Z +Keep,79,2015,August,31,1,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,149,0,0,Check-Out,2015-08-05,Summer,2015-08-01T07:00Z +Keep,77,2015,August,31,1,2,2,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 95, NULL,0,Transient,201.5,0,1,Check-Out,2015-08-05,Summer,2015-08-01T07:00Z +Keep,0,2015,August,32,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,L,B,0,No Deposit , NULL, NULL,0,Transient,172,0,0,Check-Out,2015-08-05,Summer,2015-08-04T07:00Z +Keep,79,2015,July,31,29,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,112.36,0,1,Check-Out,2015-08-05,Summer,2015-07-29T07:00Z +Keep,79,2015,July,31,29,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,112.36,1,1,Check-Out,2015-08-05,Summer,2015-07-29T07:00Z +Keep,0,2015,August,32,3,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,241,0,0,Check-Out,2015-08-05,Summer,2015-08-03T07:00Z +Keep,91,2015,July,31,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,107,0,0,Check-Out,2015-08-05,Summer,2015-07-29T07:00Z +Keep,82,2015,August,31,1,2,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,143.5,0,2,Check-Out,2015-08-05,Summer,2015-08-01T07:00Z +Keep,48,2015,July,31,26,4,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,156.4,0,0,Check-Out,2015-08-05,Summer,2015-07-26T07:00Z +Keep,264,2017,August,32,7,1,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 1,0,1,E,E,1,No Deposit , 240, NULL,0,Transient,204,1,2,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,69,2015,July,31,28,2,6,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,123,0,0,Check-Out,2015-08-05,Summer,2015-07-28T07:00Z +Keep,182,2015,July,31,27,3,7,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,154.35,0,1,Check-Out,2015-08-06,Summer,2015-07-27T07:00Z +Keep,146,2015,July,31,30,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,113.9,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,107,2015,July,31,31,2,4,2,1,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,148.16,0,2,Check-Out,2015-08-06,Summer,2015-07-31T07:00Z +Keep,73,2015,July,31,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,73,2015,July,31,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,155,2015,July,31,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,110.5,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,155,2015,July,31,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,110.5,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,2,2015,August,32,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 103,0,Transient,114,0,0,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Keep,1,2016,January,3,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 103,0,Transient,30,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,5,2016,September,39,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,C,0,No Deposit , NULL, 103,0,Transient,65,0,0,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,12,2017,January,1,2,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,2,No Deposit , NULL, 103,0,Transient,35,0,0,Check-Out,2017-01-04,Winter,2017-01-02T08:00Z +Keep,6,2017,February,8,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,E,1,No Deposit , NULL, 103,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,6,2017,May,20,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,E,0,No Deposit , NULL, 103,0,Transient,45,0,0,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,110,2015,August,32,4,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,191,1,1,Check-Out,2015-08-06,Summer,2015-08-04T07:00Z +Keep,2,2015,August,32,5,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 110, NULL,0,Transient,211,0,0,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Keep,54,2015,July,31,30,2,5,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,171.71,0,1,Check-Out,2015-08-06,Summer,2015-07-30T07:00Z +Keep,5,2015,August,31,1,2,3,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,165.32,0,2,Check-Out,2015-08-06,Summer,2015-08-01T07:00Z +Keep,210,2015,July,31,31,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,1,Check-Out,2015-08-06,Summer,2015-07-31T07:00Z +Keep,202,2015,July,30,23,4,10,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,164,0,2,Check-Out,2015-08-06,Summer,2015-07-23T07:00Z +Keep,1,2015,August,32,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,154.8,0,1,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Keep,0,2015,August,32,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,172,0,0,Check-Out,2015-08-06,Summer,2015-08-05T07:00Z +Keep,154,2015,July,31,28,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-08-07,Summer,2015-07-28T07:00Z +Keep,311,2015,July,30,24,4,10,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,160.98,0,1,Check-Out,2015-08-07,Summer,2015-07-24T07:00Z +Keep,6,2015,August,32,4,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,3,Check-Out,2015-08-07,Summer,2015-08-04T07:00Z +Keep,155,2015,July,31,28,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,126.65,0,0,Check-Out,2015-08-07,Summer,2015-07-28T07:00Z +Keep,211,2015,August,32,3,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,H,0,No Deposit , 240, NULL,0,Transient,256,0,2,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,5,2015,August,32,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,20,1,0,Check-Out,2015-08-07,Summer,2015-08-05T07:00Z +Keep,0,2015,August,32,4,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,217,0,0,Check-Out,2015-08-07,Summer,2015-08-04T07:00Z +Keep,55,2015,August,32,3,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,210,0,0,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,0,2015,August,32,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,191,0,0,Check-Out,2015-08-07,Summer,2015-08-06T07:00Z +Keep,328,2015,August,32,3,1,3,2,0,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,210,2015,August,32,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Cancel,219,2015,August,32,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,166,0,2,Canceled,2015-08-07,Summer,2015-08-08T07:00Z +Keep,211,2015,August,32,3,1,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,H,0,No Deposit , 240, NULL,0,Transient,244,1,2,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,88,2015,August,32,3,1,3,2,1,1,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,191.1,0,2,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,160,2015,August,32,3,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,137.75,0,2,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,82,2015,August,32,2,2,3,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,227.4,0,3,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Keep,67,2015,July,31,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,209.17,0,1,Check-Out,2015-08-07,Summer,2015-07-31T07:00Z +Keep,67,2015,July,31,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,209.17,0,1,Check-Out,2015-08-07,Summer,2015-07-31T07:00Z +Keep,93,2015,August,32,2,2,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,4,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Keep,82,2015,August,32,2,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209.4,1,2,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Keep,103,2015,August,31,1,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,179,1,0,Check-Out,2015-08-07,Summer,2015-08-01T07:00Z +Keep,142,2015,July,31,29,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,96.3,0,1,Check-Out,2015-08-07,Summer,2015-07-29T07:00Z +Keep,5,2015,August,32,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,191,0,3,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,66,2015,August,32,3,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,168.25,0,0,Check-Out,2015-08-07,Summer,2015-08-03T07:00Z +Keep,93,2015,August,32,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,3,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Keep,85,2015,August,32,2,2,3,3,0,0,BB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 8, NULL,0,Transient,161.45,1,1,Check-Out,2015-08-07,Summer,2015-08-02T07:00Z +Keep,73,2015,July,31,30,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,123,0,0,Check-Out,2015-08-08,Summer,2015-07-30T07:00Z +Keep,3,2015,August,31,1,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,163.33,0,3,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,177,2015,July,31,29,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,125.1,0,0,Check-Out,2015-08-08,Summer,2015-07-29T07:00Z +Keep,160,2015,August,32,3,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,119.9,1,2,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,160,2015,August,32,3,1,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,113.9,0,2,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,160,2015,August,32,3,1,4,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,119.9,1,3,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,160,2015,August,32,3,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,113.9,0,2,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,258,2015,August,32,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,0,2015,August,31,1,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,120.6,1,3,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Cancel,195,2015,September,37,8,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 5, NULL,0,Transient,71.55,0,1,Canceled,2015-08-08,Fall,2015-09-08T07:00Z +Keep,159,2015,August,32,2,2,4,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,96.3,0,1,Check-Out,2015-08-08,Summer,2015-08-02T07:00Z +Keep,112,2015,August,32,3,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,0,Check-Out,2015-08-08,Summer,2015-08-03T07:00Z +Keep,1,2015,August,32,5,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,247,0,4,Check-Out,2015-08-08,Summer,2015-08-05T07:00Z +Keep,0,2015,August,32,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,153,0,2,Check-Out,2015-08-08,Summer,2015-08-07T07:00Z +Keep,46,2015,August,32,2,2,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,110,0,1,Check-Out,2015-08-08,Summer,2015-08-02T07:00Z +Keep,107,2015,August,32,5,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,166,0,1,Check-Out,2015-08-08,Summer,2015-08-05T07:00Z +Keep,166,2015,August,31,1,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,210.43,1,2,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,157,2015,August,31,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,10,2015,August,31,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,219.9,0,0,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,82,2015,August,31,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,162.14,0,1,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,70,2015,August,31,1,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,187.14,0,0,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,51,2015,July,31,29,2,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,167.8,1,0,Check-Out,2015-08-08,Summer,2015-07-29T07:00Z +Keep,124,2015,August,31,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-08-08,Summer,2015-08-01T07:00Z +Keep,86,2015,August,32,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140.33,0,0,Check-Out,2015-08-08,Summer,2015-08-05T07:00Z +Keep,32,2015,August,31,1,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.75,0,0,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,156,2015,August,32,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,112.63,0,0,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,12,2015,August,32,2,2,5,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,172.63,0,2,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,75,2015,August,32,3,1,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 149, NULL,0,Transient,123,0,2,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,143,2015,August,32,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,131.13,1,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,4,2015,August,32,4,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,3,Check-Out,2015-08-09,Summer,2015-08-04T07:00Z +Keep,167,2015,August,32,2,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,1,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,194,2015,August,32,3,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,196,0,2,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,67,2015,August,31,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,193.13,0,1,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,55,2015,August,32,2,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,148.75,0,4,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,41,2015,August,32,5,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,0,0,Check-Out,2015-08-09,Summer,2015-08-05T07:00Z +Keep,157,2015,August,32,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,119.7,0,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,1,2015,August,32,8,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,2,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Keep,78,2015,August,32,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,101.65,0,0,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,16,2015,August,32,2,2,5,3,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,188.46,0,1,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,6,2015,August,32,3,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,221,0,3,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,71,2015,August,31,1,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 196, NULL,0,Transient,0,0,0,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,0,2015,August,34,20,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,A,0,No Deposit , 196, NULL,0,Transient,0,0,0,Check-Out,2015-08-20,Summer,2015-08-20T07:00Z +Keep,127,2015,August,32,4,0,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,192.6,1,0,Check-Out,2015-08-09,Summer,2015-08-04T07:00Z +Keep,129,2015,August,32,6,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,118.5,0,1,Check-Out,2015-08-09,Summer,2015-08-06T07:00Z +Keep,33,2015,August,32,8,0,1,1,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,142.1,1,0,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Keep,2,2015,August,32,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,189.9,0,3,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Keep,82,2015,August,32,2,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,171.9,0,2,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,177,2015,August,31,1,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,166,0,1,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,82,2015,August,32,2,2,5,1,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,194.64,0,2,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,53,2015,August,32,3,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,3,No Deposit , 177, NULL,0,Transient,180,1,3,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,53,2015,August,32,3,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,3,No Deposit , 177, NULL,0,Transient,180,0,3,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,53,2015,August,32,3,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,3,No Deposit , 177, NULL,0,Transient,180,1,3,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,51,2015,August,32,3,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,173,0,0,Check-Out,2015-08-09,Summer,2015-08-03T07:00Z +Keep,0,2015,August,32,8,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,190,0,0,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Keep,129,2015,August,32,6,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,126,0,1,Check-Out,2015-08-09,Summer,2015-08-06T07:00Z +Keep,195,2015,August,32,4,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,222,1,2,Check-Out,2015-08-09,Summer,2015-08-04T07:00Z +Cancel,92,2015,December,53,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,98.1,0,2,No-Show,2015-12-30,Winter,2015-12-30T08:00Z +Keep,67,2015,August,31,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,193.13,0,1,Check-Out,2015-08-09,Summer,2015-08-01T07:00Z +Keep,55,2015,August,32,2,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,148.75,0,4,Check-Out,2015-08-09,Summer,2015-08-02T07:00Z +Keep,61,2015,August,32,8,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,183,0,0,Check-Out,2015-08-09,Summer,2015-08-08T07:00Z +Keep,0,2015,August,33,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,310,2015,August,32,7,1,2,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-10,Summer,2015-08-07T07:00Z +Keep,129,2015,August,31,1,3,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,125.9,1,1,Check-Out,2015-08-10,Summer,2015-08-01T07:00Z +Keep,460,2015,August,32,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,134.73,0,0,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,17,2015,August,32,7,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,223,0,0,Check-Out,2015-08-10,Summer,2015-08-07T07:00Z +Keep,460,2015,August,32,3,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,77.54,0,0,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,23,2015,August,32,3,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,62,2015,August,32,4,1,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 96, NULL,0,Transient,163.5,0,0,Check-Out,2015-08-10,Summer,2015-08-04T07:00Z +Keep,213,2015,August,32,3,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,96.3,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,202,2015,July,30,23,5,13,2,1,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,196,0,2,Check-Out,2015-08-10,Summer,2015-07-23T07:00Z +Keep,82,2015,August,32,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,119.49,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,105,2015,August,31,1,3,6,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,140,0,0,Check-Out,2015-08-10,Summer,2015-08-01T07:00Z +Keep,96,2015,August,32,3,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186,0,0,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,131,2015,August,32,3,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,119.7,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,69,2015,August,33,9,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 242, NULL,0,Transient,134,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,68,2015,August,32,8,1,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 241, NULL,0,Transient,140.37,0,3,Check-Out,2015-08-10,Summer,2015-08-08T07:00Z +Keep,74,2015,August,33,9,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,130,2015,August,31,1,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,170.6,0,0,Check-Out,2015-08-10,Summer,2015-08-01T07:00Z +Keep,74,2015,August,33,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,134,1,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,74,2015,August,33,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,134,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,4,2015,August,33,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,0,2015,August,33,9,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,126,0,0,Check-Out,2015-08-10,Summer,2015-08-09T07:00Z +Keep,81,2015,August,32,3,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,162.14,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,179,2015,August,32,3,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Cancel,4,2015,August,33,14,0,1,4,0,0,BB,PRT,Direct,Direct, 1,1,0,G,G,1,No Deposit , NULL, NULL,0,Transient,16,0,0,Canceled,2015-08-10,Summer,2015-08-14T07:00Z +Keep,103,2015,August,32,6,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.18,1,1,Check-Out,2015-08-10,Summer,2015-08-06T07:00Z +Keep,146,2015,August,32,3,2,5,3,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 71, NULL,0,Contract,130.01,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,146,2015,August,32,3,2,5,2,1,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Contract,120.38,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,17,2015,August,32,6,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,213,0,2,Check-Out,2015-08-10,Summer,2015-08-06T07:00Z +Keep,146,2015,August,32,3,2,5,1,1,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 71, NULL,0,Contract,120.38,0,1,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,82,2015,August,32,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 147, NULL,0,Transient-Party,119.49,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,108,2015,August,32,3,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,166.05,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,146,2015,August,32,3,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Contract,96.3,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,126,2015,August,32,3,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,134.1,0,2,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Keep,112,2015,August,32,3,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,142.3,0,0,Check-Out,2015-08-10,Summer,2015-08-03T07:00Z +Cancel,181,2015,August,35,24,1,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,0,Canceled,2015-08-10,Summer,2015-08-24T07:00Z +Keep,217,2015,August,32,7,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-10,Summer,2015-08-07T07:00Z +Keep,227,2017,May,18,5,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,3,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,111,2015,August,32,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,93.6,0,0,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,129,2015,August,33,10,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,225.08,1,2,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,83,2015,August,32,7,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,119.2,1,2,Check-Out,2015-08-11,Summer,2015-08-07T07:00Z +Keep,135,2015,August,32,6,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,104.55,0,0,Check-Out,2015-08-11,Summer,2015-08-06T07:00Z +Keep,81,2015,August,32,3,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 261, NULL,0,Transient,149,0,1,Check-Out,2015-08-11,Summer,2015-08-03T07:00Z +Keep,107,2015,August,32,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-08-11,Summer,2015-08-07T07:00Z +Keep,5,2015,August,33,9,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,192.5,0,1,Check-Out,2015-08-11,Summer,2015-08-09T07:00Z +Keep,155,2015,August,31,1,4,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,G,2,No Deposit , 240, NULL,0,Transient,201.8,2,1,Check-Out,2015-08-11,Summer,2015-08-01T07:00Z +Keep,120,2015,August,32,4,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,120,2015,August,32,4,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,90.95,0,1,Check-Out,2015-08-11,Summer,2015-08-04T07:00Z +Keep,0,2015,August,33,10,1,0,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,154.8,0,2,Check-Out,2015-08-11,Summer,2015-08-10T07:00Z +Keep,61,2015,August,33,9,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-11,Summer,2015-08-09T07:00Z +Keep,48,2015,August,32,6,2,3,3,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,183,0,0,Check-Out,2015-08-11,Summer,2015-08-06T07:00Z +Keep,67,2015,August,31,1,4,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,191.7,0,1,Check-Out,2015-08-11,Summer,2015-08-01T07:00Z +Keep,67,2015,August,31,1,4,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,208.2,0,1,Check-Out,2015-08-11,Summer,2015-08-01T07:00Z +Keep,211,2015,August,31,1,4,6,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Contract,160.98,0,1,Check-Out,2015-08-11,Summer,2015-08-01T07:00Z +Keep,153,2015,August,32,3,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,93.6,0,1,Check-Out,2015-08-12,Summer,2015-08-03T07:00Z +Keep,153,2015,August,32,3,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,93.6,0,1,Check-Out,2015-08-12,Summer,2015-08-03T07:00Z +Keep,25,2015,August,32,8,2,2,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,180.8,0,0,Check-Out,2015-08-12,Summer,2015-08-08T07:00Z +Keep,153,2015,August,32,5,2,5,2,0,0,BB,ROU,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,134,0,1,Check-Out,2015-08-12,Summer,2015-08-05T07:00Z +Keep,40,2015,August,33,9,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,1,2,Check-Out,2015-08-12,Summer,2015-08-09T07:00Z +Keep,40,2015,August,33,9,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,0,Check-Out,2015-08-12,Summer,2015-08-09T07:00Z +Keep,6,2015,August,32,6,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217.83,0,3,Check-Out,2015-08-12,Summer,2015-08-06T07:00Z +Keep,94,2015,August,32,8,2,2,2,0,1,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,206,1,1,Check-Out,2015-08-12,Summer,2015-08-08T07:00Z +Keep,158,2016,August,32,6,2,4,2,0,0,HB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,204,1,0,Check-Out,2016-08-12,Summer,2016-08-06T07:00Z +Keep,151,2015,August,32,2,4,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,134.1,1,1,Check-Out,2015-08-12,Summer,2015-08-02T07:00Z +Keep,148,2015,August,32,5,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,90.95,0,1,Check-Out,2015-08-12,Summer,2015-08-05T07:00Z +Keep,0,2015,August,33,11,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,211,0,0,Check-Out,2015-08-12,Summer,2015-08-11T07:00Z +Keep,39,2015,August,32,7,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,179.6,0,1,Check-Out,2015-08-12,Summer,2015-08-07T07:00Z +Keep,4,2015,August,33,9,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,187,0,3,Check-Out,2015-08-12,Summer,2015-08-09T07:00Z +Keep,0,2015,August,33,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-12,Summer,2015-08-10T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Cancel,274,2015,October,40,3,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 96, NULL,0,Transient,36.05,0,0,Canceled,2015-08-12,Fall,2015-10-03T07:00Z +Keep,41,2015,August,33,9,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,190.5,0,1,Check-Out,2015-08-12,Summer,2015-08-09T07:00Z +Cancel,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Canceled,2015-08-12,Fall,2015-09-14T07:00Z +Cancel,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Canceled,2015-08-12,Fall,2015-09-14T07:00Z +Cancel,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Canceled,2015-08-12,Fall,2015-09-14T07:00Z +Keep,174,2015,August,32,4,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,141.1,0,0,Check-Out,2015-08-13,Summer,2015-08-04T07:00Z +Keep,164,2015,July,31,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,112.63,0,1,Check-Out,2015-08-13,Summer,2015-07-30T07:00Z +Keep,164,2015,July,31,30,4,10,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,123.68,0,2,Check-Out,2015-08-13,Summer,2015-07-30T07:00Z +Keep,33,2015,August,33,12,0,1,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,191,1,0,Check-Out,2015-08-13,Summer,2015-08-12T07:00Z +Keep,107,2015,August,33,10,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,134,0,1,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,107,2015,August,33,10,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,134,0,1,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,70,2015,August,33,10,1,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,F,1,No Deposit , 250, NULL,0,Transient,166,1,0,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,212,2015,August,31,1,4,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,164,0,1,Check-Out,2015-08-13,Summer,2015-08-01T07:00Z +Keep,212,2015,August,31,1,4,8,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,164,0,1,Check-Out,2015-08-13,Summer,2015-08-01T07:00Z +Keep,41,2015,August,33,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,34,2015,August,33,9,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,2,Check-Out,2015-08-13,Summer,2015-08-09T07:00Z +Keep,109,2015,August,32,2,4,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,2,Check-Out,2015-08-13,Summer,2015-08-02T07:00Z +Keep,33,2015,August,33,12,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 307,0,Transient,191,0,0,Check-Out,2015-08-13,Summer,2015-08-12T07:00Z +Keep,35,2015,August,33,10,1,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,167.09,0,1,Check-Out,2015-08-13,Summer,2015-08-10T07:00Z +Keep,114,2015,August,32,8,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2015-08-13,Summer,2015-08-08T07:00Z +Keep,0,2015,August,33,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,192,0,1,Check-Out,2015-08-13,Summer,2015-08-12T07:00Z +Keep,0,2015,August,33,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2015-08-13,Summer,2015-08-11T07:00Z +Keep,56,2015,August,32,7,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,134.17,0,1,Check-Out,2015-08-13,Summer,2015-08-07T07:00Z +Keep,190,2015,August,32,4,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,110.7,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,190,2015,August,32,4,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,110.7,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,190,2015,August,32,4,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,110.7,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,85,2015,August,32,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,114.14,0,2,Check-Out,2015-08-14,Summer,2015-08-07T07:00Z +Keep,85,2015,August,32,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,114.14,0,2,Check-Out,2015-08-14,Summer,2015-08-07T07:00Z +Keep,153,2015,August,33,9,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,236,1,1,Check-Out,2015-08-14,Summer,2015-08-09T07:00Z +Keep,65,2015,August,32,8,2,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,209,0,1,Check-Out,2015-08-14,Summer,2015-08-08T07:00Z +Keep,5,2015,August,33,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,211,0,3,Check-Out,2015-08-14,Summer,2015-08-10T07:00Z +Keep,49,2015,August,33,10,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,173,0,0,Check-Out,2015-08-14,Summer,2015-08-10T07:00Z +Keep,174,2015,August,32,4,2,8,3,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,207.85,0,1,Check-Out,2015-08-14,Summer,2015-08-04T07:00Z +Keep,21,2015,August,33,10,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,1,Check-Out,2015-08-14,Summer,2015-08-10T07:00Z +Keep,67,2015,August,32,8,2,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,167.17,0,1,Check-Out,2015-08-14,Summer,2015-08-08T07:00Z +Keep,0,2015,August,33,13,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,1,2,Check-Out,2015-08-14,Summer,2015-08-13T07:00Z +Keep,36,2015,August,33,9,2,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,163.8,0,1,Check-Out,2015-08-14,Summer,2015-08-09T07:00Z +Keep,29,2015,August,32,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,186.9,0,1,Check-Out,2015-08-14,Summer,2015-08-08T07:00Z +Keep,72,2015,August,33,10,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,132.05,0,0,Check-Out,2015-08-14,Summer,2015-08-10T07:00Z +Keep,69,2015,August,33,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-14,Summer,2015-08-10T07:00Z +Keep,51,2015,August,32,7,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166.5,0,1,Check-Out,2015-08-14,Summer,2015-08-07T07:00Z +Keep,1,2015,August,33,12,0,2,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,F,F,0,No Deposit , NULL, 110,0,Transient,132,0,2,Check-Out,2015-08-14,Summer,2015-08-12T07:00Z +Keep,103,2015,August,31,1,4,9,2,1,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,297.5,1,1,Check-Out,2015-08-14,Summer,2015-08-01T07:00Z +Keep,175,2015,July,31,31,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Contract,104.55,0,1,Check-Out,2015-08-14,Summer,2015-07-31T07:00Z +Keep,98,2015,August,32,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,123,0,0,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,269,2015,August,32,8,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,166,1,1,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,37,2015,August,33,9,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.9,0,2,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,33,2015,August,32,8,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,243,0,0,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,107,2015,August,32,7,2,6,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,136.35,0,1,Check-Out,2015-08-15,Summer,2015-08-07T07:00Z +Keep,34,2015,August,33,9,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,253,1,2,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,88,2015,August,32,7,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,117,1,1,Check-Out,2015-08-15,Summer,2015-08-07T07:00Z +Keep,28,2015,August,33,11,0,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,207,0,0,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Keep,146,2015,August,33,10,1,4,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 261, NULL,0,Transient,130.01,0,0,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,88,2015,August,32,7,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,117,0,1,Check-Out,2015-08-15,Summer,2015-08-07T07:00Z +Keep,41,2015,August,33,9,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,232,1,0,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,40,2015,August,33,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,64,2015,August,33,11,0,4,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 134, NULL,0,Transient,133,0,2,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Keep,130,2015,August,32,8,2,5,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,113.9,0,1,Check-Out,2015-08-15,Summer,2015-08-08T07:00Z +Keep,64,2015,August,33,11,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 134, NULL,0,Transient,133,0,1,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Keep,64,2015,August,33,11,0,4,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 134, NULL,0,Transient,166.25,0,2,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Keep,49,2015,August,33,10,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213,0,0,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,14,2015,August,35,28,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,1,E,F,0,No Deposit , NULL, NULL,0,Transient,194,1,0,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,58,2015,August,33,12,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,242.67,1,0,Check-Out,2015-08-15,Summer,2015-08-12T07:00Z +Keep,38,2015,August,32,4,2,9,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,125.82,0,1,Check-Out,2015-08-15,Summer,2015-08-04T07:00Z +Keep,56,2015,August,33,10,1,4,2,1,1,BB,FRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,175,1,0,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,0,2015,August,33,9,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,129,0,0,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,62,2015,August,33,9,2,4,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, 108,0,Transient,152.1,0,0,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Keep,164,2015,August,33,10,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,60,2015,August,33,11,0,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,188,0,0,Check-Out,2015-08-15,Summer,2015-08-11T07:00Z +Keep,0,2015,August,33,13,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,192,0,0,Check-Out,2015-08-15,Summer,2015-08-13T07:00Z +Keep,89,2015,August,33,10,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,154,0,2,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,40,2015,August,33,10,1,4,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2015-08-15,Summer,2015-08-10T07:00Z +Keep,0,2015,August,33,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-15,Summer,2015-08-09T07:00Z +Cancel,34,2015,September,38,16,2,5,2,1,0,BB,PRT,Direct,Direct, 0,1,0,C,C,0,No Deposit , NULL, NULL,0,Transient,114,0,0,Canceled,2015-08-15,Fall,2015-09-16T07:00Z +Keep,150,2015,August,33,9,2,5,2,1,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,120.38,0,3,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,329,2015,August,32,2,4,10,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,146.2,0,2,Check-Out,2015-08-16,Summer,2015-08-02T07:00Z +Keep,90,2015,August,33,11,0,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,196.34,1,2,Check-Out,2015-08-16,Summer,2015-08-11T07:00Z +Keep,90,2015,August,33,11,0,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,179.63,1,2,Check-Out,2015-08-16,Summer,2015-08-11T07:00Z +Keep,89,2015,August,33,11,0,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,176,1,0,Check-Out,2015-08-16,Summer,2015-08-11T07:00Z +Keep,173,2015,August,32,2,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,132.6,0,1,Check-Out,2015-08-16,Summer,2015-08-02T07:00Z +Keep,173,2015,August,32,2,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,120.6,0,1,Check-Out,2015-08-16,Summer,2015-08-02T07:00Z +Keep,176,2015,August,32,8,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,119.25,0,0,Check-Out,2015-08-16,Summer,2015-08-08T07:00Z +Keep,61,2015,August,33,9,2,5,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,237.45,1,2,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,61,2015,August,33,9,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,173,1,1,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,61,2015,August,33,9,2,5,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 149, NULL,0,Transient,225.45,0,1,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,108,2015,August,33,11,0,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,108.92,0,3,Check-Out,2015-08-16,Summer,2015-08-11T07:00Z +Keep,98,2017,July,28,15,2,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 5, NULL,0,Transient,203.24,0,3,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,136,2015,August,33,10,1,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,140.9,0,0,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,134,2015,August,32,7,2,7,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,150.6,0,2,Check-Out,2015-08-16,Summer,2015-08-07T07:00Z +Keep,191,2015,August,33,15,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,152.6,0,0,Check-Out,2015-08-16,Summer,2015-08-15T07:00Z +Keep,8,2015,August,33,15,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 241, NULL,0,Transient,83.7,0,1,Check-Out,2015-08-21,Summer,2015-08-15T07:00Z +Keep,3,2015,August,33,13,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,212.4,0,1,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Keep,65,2015,August,33,9,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,107,0,0,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,48,2015,August,33,10,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183,0,0,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,69,2015,August,33,10,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,48,2015,August,33,10,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 149, NULL,0,Transient,149,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,108,2015,August,33,10,1,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,3,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,182,2015,August,33,12,0,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,178,0,2,Check-Out,2015-08-16,Summer,2015-08-12T07:00Z +Keep,86,2015,August,33,12,0,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,1,Check-Out,2015-08-16,Summer,2015-08-12T07:00Z +Keep,76,2015,August,32,5,2,9,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,124.58,0,0,Check-Out,2015-08-16,Summer,2015-08-05T07:00Z +Keep,38,2015,August,33,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,171.9,0,1,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Keep,48,2015,August,33,14,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120,1,1,Check-Out,2015-08-16,Summer,2015-08-14T07:00Z +Keep,19,2015,August,33,10,1,5,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,189,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,151,2015,August,32,7,2,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,119.7,0,0,Check-Out,2015-08-16,Summer,2015-08-07T07:00Z +Keep,1,2015,August,33,13,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Keep,100,2015,August,33,10,1,5,3,0,0,BB,NZL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,179.41,0,2,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,89,2015,August,33,10,1,5,4,0,1,BB,PRT,Direct,Direct, 0,0,0,H,H,3,No Deposit , NULL, NULL,0,Transient,190,0,1,Check-Out,2015-08-16,Summer,2015-08-10T07:00Z +Keep,62,2015,August,33,9,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,173,0,1,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,9,2015,August,33,13,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,178.33,0,0,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Keep,72,2015,August,33,9,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,1,1,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,8,2015,August,33,13,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,3,Check-Out,2015-08-16,Summer,2015-08-13T07:00Z +Keep,72,2015,August,33,9,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,0,2,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,72,2015,August,33,9,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,1,2,Check-Out,2015-08-16,Summer,2015-08-09T07:00Z +Keep,68,2015,August,33,12,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Check-Out,2015-08-16,Summer,2015-08-12T07:00Z +Keep,181,2015,August,33,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Contract,110.7,0,1,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,101,2015,August,33,10,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,184,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,220,2015,August,33,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,112.63,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,0,2015,August,33,13,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,197.25,0,0,Check-Out,2015-08-17,Summer,2015-08-13T07:00Z +Keep,93,2015,August,33,10,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,194.2,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,45,2015,August,33,15,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2015-08-17,Summer,2015-08-15T07:00Z +Keep,3,2015,August,34,16,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,103.18,0,1,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,21,2015,August,33,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,1,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,26,2015,August,33,15,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,C,0,No Deposit , 241, NULL,0,Transient,162.47,0,0,Check-Out,2015-08-17,Summer,2015-08-15T07:00Z +Keep,2,2015,August,34,16,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,118.58,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,222,2015,August,33,12,1,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-17,Summer,2015-08-12T07:00Z +Keep,39,2015,August,33,10,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 67, NULL,0,Transient,186.25,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,159,2015,August,33,10,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,122.85,0,1,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,3,2015,August,32,7,3,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,211,0,3,Check-Out,2015-08-17,Summer,2015-08-07T07:00Z +Keep,115,2015,August,33,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,191,0,0,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Cancel,236,2015,August,35,28,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123.6,0,1,Canceled,2015-08-17,Summer,2015-08-28T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,7,2015,August,32,3,4,10,3,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,166.05,0,1,Check-Out,2015-08-17,Summer,2015-08-03T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,37,2015,August,34,16,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,172,0,0,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,118,2015,August,33,10,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,142.3,0,1,Check-Out,2015-08-17,Summer,2015-08-10T07:00Z +Keep,1,2015,August,33,13,1,3,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,141.4,0,0,Check-Out,2015-08-17,Summer,2015-08-13T07:00Z +Keep,32,2015,August,34,16,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2015-08-17,Summer,2015-08-16T07:00Z +Keep,196,2015,August,33,11,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,96.3,0,1,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,196,2015,August,33,11,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,96.3,0,0,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,7,2015,August,33,14,2,2,2,0,0,BB,KAZ,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,163.05,0,1,Check-Out,2015-08-18,Summer,2015-08-14T07:00Z +Keep,81,2015,August,33,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 241, NULL,0,Transient,118.02,0,1,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,81,2015,August,33,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 241, NULL,0,Transient,118.02,0,1,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,71,2015,August,33,11,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,87.9,0,2,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,20,2015,August,34,16,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,201.5,0,2,Check-Out,2015-08-18,Summer,2015-08-16T07:00Z +Keep,68,2015,August,33,10,3,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,133,0,1,Check-Out,2015-08-18,Summer,2015-08-10T07:00Z +Keep,3,2015,August,33,15,2,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-08-18,Summer,2015-08-15T07:00Z +Keep,3,2015,August,34,16,2,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,172,0,0,Check-Out,2015-08-18,Summer,2015-08-16T07:00Z +Cancel,212,2015,September,39,24,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,0,Canceled,2015-08-18,Fall,2015-09-24T07:00Z +Keep,0,2015,August,34,17,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-08-18,Summer,2015-08-17T07:00Z +Keep,74,2015,August,33,15,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,127.26,0,1,Check-Out,2015-08-18,Summer,2015-08-15T07:00Z +Keep,75,2015,August,33,10,3,5,2,2,0,BB,ROU,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,169,0,0,Check-Out,2015-08-18,Summer,2015-08-10T07:00Z +Keep,30,2015,August,33,15,2,1,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,E,F,0,No Deposit , NULL, 268,0,Transient,154.8,0,1,Check-Out,2015-08-18,Summer,2015-08-15T07:00Z +Keep,0,2015,August,34,17,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,153,0,2,Check-Out,2015-08-18,Summer,2015-08-17T07:00Z +Keep,168,2015,August,33,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,104.55,0,0,Check-Out,2015-08-18,Summer,2015-08-11T07:00Z +Keep,79,2015,August,33,14,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,149,0,0,Check-Out,2015-08-18,Summer,2015-08-14T07:00Z +Keep,127,2015,August,32,5,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,119.25,0,0,Check-Out,2015-08-19,Summer,2015-08-05T07:00Z +Keep,64,2015,August,33,14,2,3,3,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,168.28,1,2,Check-Out,2015-08-19,Summer,2015-08-14T07:00Z +Keep,95,2015,August,33,15,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,166,0,1,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Keep,195,2015,August,33,10,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,196,0,2,Check-Out,2015-08-19,Summer,2015-08-10T07:00Z +Keep,151,2017,August,32,6,2,5,2,0,0,HB,PRT,Direct,TA/TO, 1,0,1,D,D,1,No Deposit , 250, NULL,0,Transient,236.93,0,2,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,2,2015,August,34,16,2,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,159.33,0,3,Check-Out,2015-08-19,Summer,2015-08-16T07:00Z +Keep,187,2015,August,33,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,117.3,0,0,Check-Out,2015-08-19,Summer,2015-08-12T07:00Z +Keep,118,2015,August,33,10,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,122.7,1,1,Check-Out,2015-08-19,Summer,2015-08-10T07:00Z +Keep,64,2015,August,33,15,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Contract,107,0,0,Check-Out,2015-08-19,Summer,2015-08-15T07:00Z +Keep,68,2015,August,34,19,2,7,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,107,0,0,Check-Out,2015-08-28,Summer,2015-08-19T07:00Z +Keep,59,2015,August,33,14,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,173,0,0,Check-Out,2015-08-19,Summer,2015-08-14T07:00Z +Keep,82,2015,August,34,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,154,0,1,Check-Out,2015-08-19,Summer,2015-08-17T07:00Z +Keep,144,2015,August,33,15,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 156, NULL,0,Contract,119.25,1,2,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,169,2015,August,33,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,104.55,0,2,Check-Out,2015-08-20,Summer,2015-08-13T07:00Z +Keep,132,2015,August,33,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,110.7,0,0,Check-Out,2015-08-20,Summer,2015-08-13T07:00Z +Keep,8,2015,August,34,16,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,153.42,0,1,Check-Out,2015-08-20,Summer,2015-08-16T07:00Z +Keep,79,2015,August,33,13,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-08-20,Summer,2015-08-13T07:00Z +Keep,63,2015,August,34,17,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,173,0,0,Check-Out,2015-08-20,Summer,2015-08-17T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Canceled,2015-08-20,Fall,2015-09-04T07:00Z +Keep,13,2015,August,34,17,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,202,0,2,Check-Out,2015-08-20,Summer,2015-08-17T07:00Z +Keep,89,2015,August,33,15,2,3,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , 250, NULL,0,Transient,219,0,1,Check-Out,2015-08-20,Summer,2015-08-15T07:00Z +Keep,77,2015,August,33,15,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,135,0,0,Check-Out,2015-08-20,Summer,2015-08-15T07:00Z +Keep,139,2015,August,33,10,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-20,Summer,2015-08-10T07:00Z +Keep,167,2015,August,34,16,2,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,143.1,0,0,Check-Out,2015-08-20,Summer,2015-08-16T07:00Z +Keep,66,2015,August,34,16,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-08-20,Summer,2015-08-16T07:00Z +Keep,10,2015,August,34,16,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,167.25,0,2,Check-Out,2015-08-20,Summer,2015-08-16T07:00Z +Keep,84,2015,August,33,14,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,196,0,0,Check-Out,2015-08-20,Summer,2015-08-14T07:00Z +Keep,94,2015,August,33,15,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,233,0,0,Check-Out,2015-08-20,Summer,2015-08-15T07:00Z +Keep,8,2015,August,33,13,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,199.29,0,2,Check-Out,2015-08-20,Summer,2015-08-13T07:00Z +Keep,1,2015,August,34,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-08-20,Summer,2015-08-19T07:00Z +Keep,0,2015,August,34,19,0,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,165,0,3,Check-Out,2015-08-20,Summer,2015-08-19T07:00Z +Keep,0,2015,August,34,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2015-08-20,Summer,2015-08-19T07:00Z +Keep,124,2015,August,34,17,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-20,Summer,2015-08-17T07:00Z +Keep,71,2015,August,33,12,2,6,2,0,0,HB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,198,1,0,Check-Out,2015-08-20,Summer,2015-08-12T07:00Z +Keep,49,2016,August,36,29,2,5,2,0,0,HB,USA,Direct,Direct, 1,0,1,D,D,1,No Deposit , 250, NULL,0,Transient,218.6,1,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,2,2015,August,34,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,137.7,1,1,Check-Out,2015-08-20,Summer,2015-08-19T07:00Z +Keep,82,2015,August,34,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,190,2015,August,33,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Keep,70,2015,August,34,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,87.91,0,1,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,175,2015,August,34,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,70,2015,August,34,17,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198,1,0,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,81,2015,August,34,18,0,3,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,130.13,0,1,Check-Out,2015-08-21,Summer,2015-08-18T07:00Z +Keep,75,2015,August,33,12,2,7,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,1,1,Check-Out,2015-08-21,Summer,2015-08-12T07:00Z +Keep,84,2015,August,33,13,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-08-21,Summer,2015-08-13T07:00Z +Keep,64,2015,August,33,14,2,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,229,0,1,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Keep,95,2015,August,34,16,2,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,3,Check-Out,2015-08-21,Summer,2015-08-16T07:00Z +Keep,100,2015,August,34,17,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,107,0,0,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,74,2015,August,33,14,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,0,1,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Keep,21,2015,August,34,17,1,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,266,0,1,Check-Out,2015-08-21,Summer,2015-08-17T07:00Z +Keep,8,2015,August,34,16,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,198.2,0,1,Check-Out,2015-08-21,Summer,2015-08-16T07:00Z +Keep,86,2015,August,34,16,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,132,1,0,Check-Out,2015-08-21,Summer,2015-08-16T07:00Z +Keep,41,2015,August,34,19,0,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,F,2,No Deposit , 242, NULL,0,Transient,219.3,0,2,Check-Out,2015-08-21,Summer,2015-08-19T07:00Z +Keep,6,2015,August,33,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194.71,0,2,Check-Out,2015-08-21,Summer,2015-08-14T07:00Z +Keep,2,2015,August,34,19,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,1,0,Check-Out,2015-08-21,Summer,2015-08-19T07:00Z +Cancel,292,2015,October,43,21,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,36.5,0,0,Canceled,2015-08-21,Fall,2015-10-21T07:00Z +Cancel,292,2015,October,43,21,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,36.5,0,0,Canceled,2015-08-21,Fall,2015-10-21T07:00Z +Cancel,292,2015,October,43,21,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,36.5,0,0,Canceled,2015-08-21,Fall,2015-10-21T07:00Z +Keep,77,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 181, NULL,0,Transient-Party,157.2,0,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,77,2015,August,33,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 181, NULL,0,Transient-Party,157.2,1,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,73,2015,August,32,8,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,127.26,0,0,Check-Out,2015-08-22,Summer,2015-08-08T07:00Z +Keep,76,2015,August,34,16,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,119.2,0,0,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,318,2015,August,33,15,2,5,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,210,2016,August,33,11,2,4,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2016-08-17,Summer,2016-08-11T07:00Z +Keep,53,2015,August,33,15,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,235.71,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,68,2015,August,34,16,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,208,1,0,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,32,2015,August,33,15,2,5,3,0,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,234.29,0,1,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,32,2015,August,34,16,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient,218.83,0,0,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,86,2015,August,34,16,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,168,0,2,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,86,2015,August,34,16,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,180,1,2,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,86,2015,August,34,16,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,180,1,2,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,100,2015,August,34,17,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,149.2,0,0,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,173,2015,August,34,17,1,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,130.9,0,1,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,145,2015,August,34,17,1,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,169.15,0,3,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,117,2015,August,34,20,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-08-22,Summer,2015-08-20T07:00Z +Keep,117,2015,August,34,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,2,Check-Out,2015-08-22,Summer,2015-08-20T07:00Z +Keep,171,2015,August,34,17,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,164.15,1,2,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,117,2015,August,34,20,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111,0,1,Check-Out,2015-08-22,Summer,2015-08-20T07:00Z +Keep,81,2015,August,33,15,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,81,2015,August,33,15,2,5,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,81,2015,August,33,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,10,2015,August,34,17,1,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Contract,191.6,0,0,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,90,2015,August,34,16,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,107,0,1,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,90,2015,August,34,16,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,107,0,1,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,83,2015,August,34,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,1,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,108,2015,August,32,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,93.6,0,1,Check-Out,2015-08-22,Summer,2015-08-08T07:00Z +Keep,113,2015,August,33,15,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,136,0,0,Check-Out,2015-08-22,Summer,2015-08-15T07:00Z +Keep,58,2015,August,34,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,183,0,0,Check-Out,2015-08-22,Summer,2015-08-16T07:00Z +Keep,14,2015,August,34,17,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,279,1,2,Check-Out,2015-08-22,Summer,2015-08-17T07:00Z +Keep,148,2015,August,34,21,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,211,1,0,Check-Out,2015-08-22,Summer,2015-08-21T07:00Z +Cancel,232,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,148.05,0,0,No-Show,2015-08-22,Summer,2015-08-22T07:00Z +Keep,87,2015,August,34,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,132.5,0,0,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,159,2015,August,33,10,3,10,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,174.6,0,1,Check-Out,2015-08-23,Summer,2015-08-10T07:00Z +Keep,96,2015,August,34,17,1,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,146,1,3,Check-Out,2015-08-23,Summer,2015-08-17T07:00Z +Keep,144,2015,August,34,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,96.3,0,0,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,106,2015,August,34,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,0,1,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,15,2015,August,34,20,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,217,0,1,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,120,2015,August,34,20,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,120,2015,August,34,20,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,13,2015,August,34,18,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.8,0,1,Check-Out,2015-08-23,Summer,2015-08-18T07:00Z +Keep,78,2015,August,34,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,158.3,1,1,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,115,2015,August,34,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,84,2015,August,33,13,2,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-23,Summer,2015-08-13T07:00Z +Keep,84,2015,August,33,13,2,8,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,147.2,0,2,Check-Out,2015-08-23,Summer,2015-08-13T07:00Z +Keep,81,2015,August,34,16,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,184,0,2,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,81,2015,August,34,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,166,1,1,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,13,2015,August,34,18,0,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,229,0,0,Check-Out,2015-08-23,Summer,2015-08-18T07:00Z +Keep,11,2015,August,34,19,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,196.75,0,1,Check-Out,2015-08-23,Summer,2015-08-19T07:00Z +Keep,71,2015,August,34,18,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2015-08-23,Summer,2015-08-18T07:00Z +Keep,12,2015,August,34,16,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 181, NULL,0,Transient,154.8,1,0,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,7,2015,August,33,15,2,6,3,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,199.63,0,1,Check-Out,2015-08-23,Summer,2015-08-15T07:00Z +Keep,78,2015,August,34,16,2,5,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,271,1,0,Check-Out,2015-08-23,Summer,2015-08-16T07:00Z +Keep,54,2015,August,34,18,0,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,151.23,0,1,Check-Out,2015-08-23,Summer,2015-08-18T07:00Z +Keep,102,2015,August,34,21,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2015-08-23,Summer,2015-08-21T07:00Z +Keep,66,2015,August,34,17,1,5,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 142, NULL,0,Transient,149.2,0,1,Check-Out,2015-08-23,Summer,2015-08-17T07:00Z +Keep,50,2015,August,34,20,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,173,0,3,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,61,2015,August,34,19,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,168.25,0,0,Check-Out,2015-08-23,Summer,2015-08-19T07:00Z +Keep,1,2015,August,34,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,204,1,0,Check-Out,2015-08-23,Summer,2015-08-22T07:00Z +Keep,147,2015,August,34,20,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,138.6,0,1,Check-Out,2015-08-23,Summer,2015-08-20T07:00Z +Keep,171,2015,August,33,15,3,6,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,210,0,1,Check-Out,2015-08-24,Summer,2015-08-15T07:00Z +Keep,125,2015,August,34,17,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,213.4,1,1,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,63,2015,August,34,20,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,163.5,0,2,Check-Out,2015-08-24,Summer,2015-08-20T07:00Z +Keep,63,2015,August,34,20,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,163.5,0,2,Check-Out,2015-08-24,Summer,2015-08-20T07:00Z +Keep,78,2015,August,33,11,3,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,134,1,1,Check-Out,2015-08-24,Summer,2015-08-11T07:00Z +Keep,87,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,132.87,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,74,2015,August,34,18,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,107,0,0,Check-Out,2015-08-24,Summer,2015-08-18T07:00Z +Keep,91,2015,August,34,17,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,166,0,1,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,77,2015,August,34,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,272,2015,August,34,17,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,125,2015,August,34,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,134,1,0,Check-Out,2015-08-24,Summer,2015-08-19T07:00Z +Keep,107,2015,August,33,15,3,6,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,164,0,1,Check-Out,2015-08-24,Summer,2015-08-15T07:00Z +Keep,45,2015,August,34,21,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,153,0,1,Check-Out,2015-08-24,Summer,2015-08-21T07:00Z +Keep,35,2015,August,34,21,1,2,2,0,0,FB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,274,1,0,Check-Out,2015-08-24,Summer,2015-08-21T07:00Z +Keep,65,2015,August,34,17,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,206.34,0,2,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,0,2015,August,35,23,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-24,Summer,2015-08-23T07:00Z +Keep,59,2015,August,34,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,177.57,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,80,2015,August,34,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 149, NULL,0,Transient,133,0,0,Check-Out,2015-08-24,Summer,2015-08-17T07:00Z +Keep,70,2015,August,34,17,3,5,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,D,0,No Deposit , 241, NULL,0,Transient,119.97,0,1,Check-Out,2015-08-25,Summer,2015-08-17T07:00Z +Keep,12,2015,August,34,20,2,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,202,0,0,Check-Out,2015-08-25,Summer,2015-08-20T07:00Z +Keep,75,2015,August,34,22,2,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 36, NULL,0,Transient,118.13,0,0,Check-Out,2015-08-25,Summer,2015-08-22T07:00Z +Keep,159,2015,August,34,17,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,139,0,1,Check-Out,2015-08-25,Summer,2015-08-17T07:00Z +Keep,0,2015,August,35,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,0,2015,August,35,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,173,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,66,2015,August,34,20,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,161.6,0,0,Check-Out,2015-08-25,Summer,2015-08-20T07:00Z +Keep,68,2015,August,34,18,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 142, NULL,0,Transient,162.2,0,1,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,117,2015,August,34,18,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient-Party,219,0,2,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,117,2015,August,34,18,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient-Party,169,0,2,Check-Out,2015-08-25,Summer,2015-08-18T07:00Z +Keep,0,2015,August,35,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,137.7,0,0,Check-Out,2015-08-25,Summer,2015-08-24T07:00Z +Keep,58,2015,August,34,20,2,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,153.3,0,1,Check-Out,2015-08-26,Summer,2015-08-20T07:00Z +Keep,58,2015,August,34,20,2,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,153.3,0,1,Check-Out,2015-08-26,Summer,2015-08-20T07:00Z +Keep,85,2015,August,34,16,4,6,3,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,209,0,1,Check-Out,2015-08-26,Summer,2015-08-16T07:00Z +Keep,83,2015,August,34,17,3,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,150.6,0,1,Check-Out,2015-08-26,Summer,2015-08-17T07:00Z +Keep,83,2015,August,34,17,3,6,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,150.6,0,1,Check-Out,2015-08-26,Summer,2015-08-17T07:00Z +Cancel,226,2015,September,39,23,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 251, NULL,0,Transient,55.8,0,0,Canceled,2015-08-26,Fall,2015-09-23T07:00Z +Keep,74,2015,August,34,17,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,0,0,Check-Out,2015-08-26,Summer,2015-08-17T07:00Z +Keep,58,2015,August,34,19,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,161.71,0,0,Check-Out,2015-08-26,Summer,2015-08-19T07:00Z +Cancel,218,2015,August,35,29,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 175, NULL,0,Transient,110.05,0,1,Canceled,2015-08-26,Summer,2015-08-29T07:00Z +Keep,1,2015,August,35,25,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2015-08-26,Summer,2015-08-25T07:00Z +Keep,272,2015,August,34,17,3,6,2,3,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,3,Check-Out,2015-08-26,Summer,2015-08-17T07:00Z +Keep,59,2015,August,34,20,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,133,0,0,Check-Out,2015-08-26,Summer,2015-08-20T07:00Z +Keep,0,2015,August,35,24,1,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,106,0,0,Check-Out,2015-08-26,Summer,2015-08-24T07:00Z +Keep,58,2015,August,34,19,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,E,1,No Deposit , 242, NULL,0,Transient,177.14,0,1,Check-Out,2015-08-26,Summer,2015-08-19T07:00Z +Keep,107,2015,August,33,14,4,8,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,196,0,2,Check-Out,2015-08-26,Summer,2015-08-14T07:00Z +Keep,83,2015,August,35,26,1,4,2,0,0,SC,CN,Online travel agent,TA/TO, 0,0,0,E,I,5,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2015-08-31,Summer,2015-08-26T07:00Z +Cancel,0,2015,August,35,26,0,1,2,1,0,BB,PRT,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,183,0,0,Canceled,2015-08-26,Summer,2015-08-26T07:00Z +Keep,11,2015,August,34,21,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,175.17,0,1,Check-Out,2015-08-27,Summer,2015-08-21T07:00Z +Keep,22,2015,August,35,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,171.08,1,1,Check-Out,2015-08-27,Summer,2015-08-23T07:00Z +Keep,59,2015,August,34,20,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,D,2,No Deposit , 241, NULL,0,Transient,127.59,0,2,Check-Out,2015-08-27,Summer,2015-08-20T07:00Z +Keep,21,2015,August,35,24,1,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Check-Out,2015-08-27,Summer,2015-08-24T07:00Z +Keep,5,2015,August,35,26,0,1,2,0,0,BB,NOR,Corporate,Corporate, 0,0,0,D,E,0,No Deposit , NULL, 110,0,Transient,153,1,0,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Keep,79,2015,August,33,14,4,9,3,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,241,1,0,Check-Out,2015-08-27,Summer,2015-08-14T07:00Z +Keep,41,2015,October,43,18,4,6,2,1,0,BB,FRA,Direct,Direct, 1,0,1,C,H,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,1,Check-Out,2015-10-28,Fall,2015-10-18T07:00Z +Keep,62,2015,August,35,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,132.6,1,1,Check-Out,2015-08-27,Summer,2015-08-25T07:00Z +Keep,0,2015,August,35,27,0,0,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 181, NULL,0,Transient,0,0,0,Check-Out,2015-08-27,Summer,2015-08-27T07:00Z +Keep,100,2015,August,35,23,2,2,2,2,0,BB,SVN,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,181,1,1,Check-Out,2015-08-27,Summer,2015-08-23T07:00Z +Keep,15,2015,August,35,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,192,0,0,Check-Out,2015-08-27,Summer,2015-08-23T07:00Z +Cancel,266,2015,September,39,24,2,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Canceled,2015-08-27,Fall,2015-09-24T07:00Z +Keep,0,2015,August,35,26,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,0,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Keep,21,2015,August,35,26,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Check-Out,2015-08-27,Summer,2015-08-26T07:00Z +Keep,0,2015,August,35,24,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,D,1,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-27,Summer,2015-08-24T07:00Z +Keep,57,2015,August,34,21,2,5,3,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,187.15,0,0,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Keep,45,2015,August,34,21,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,153,0,1,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Keep,17,2015,August,35,24,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,99.5,0,0,Check-Out,2015-08-28,Summer,2015-08-24T07:00Z +Keep,8,2016,February,6,3,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-02-05,Winter,2016-02-03T08:00Z +Keep,1,2016,March,10,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,3,2016,April,15,4,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,1,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-07,Spring,2016-04-04T07:00Z +Keep,6,2016,May,23,29,2,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-02,Spring,2016-05-29T07:00Z +Keep,7,2016,November,48,21,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , 154, NULL,0,Transient,27,0,0,Check-Out,2016-11-25,Fall,2016-11-21T08:00Z +Keep,8,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,C,0,No Deposit , 154, NULL,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,69,2015,August,35,23,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,150,2015,August,34,22,2,4,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179.1,0,0,Check-Out,2015-08-28,Summer,2015-08-22T07:00Z +Keep,31,2015,August,35,23,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,163.8,0,1,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,31,2015,August,35,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,239,0,2,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,39,2015,August,35,24,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2015-08-28,Summer,2015-08-24T07:00Z +Keep,100,2015,August,34,17,3,8,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,87.9,0,1,Check-Out,2015-08-28,Summer,2015-08-17T07:00Z +Keep,62,2015,August,35,23,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,97,2015,August,35,26,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,0,Check-Out,2015-08-28,Summer,2015-08-26T07:00Z +Keep,37,2015,August,35,23,2,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,143.34,0,3,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,37,2015,August,35,23,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,132.44,0,2,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Keep,87,2015,August,33,14,4,10,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,209.2,1,0,Check-Out,2015-08-28,Summer,2015-08-14T07:00Z +Keep,10,2015,August,35,24,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,168.8,0,0,Check-Out,2015-08-28,Summer,2015-08-24T07:00Z +Keep,49,2015,August,34,22,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,169.83,0,1,Check-Out,2015-08-28,Summer,2015-08-22T07:00Z +Keep,38,2015,August,34,21,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,225.28,0,0,Check-Out,2015-08-28,Summer,2015-08-21T07:00Z +Keep,49,2015,August,35,25,0,3,2,0,1,HB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 142, NULL,0,Transient,177.47,1,2,Check-Out,2015-08-28,Summer,2015-08-25T07:00Z +Keep,49,2015,August,35,25,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 142, NULL,0,Transient,177.47,0,1,Check-Out,2015-08-28,Summer,2015-08-25T07:00Z +Keep,193,2015,August,35,23,2,3,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.95,0,1,Check-Out,2015-08-28,Summer,2015-08-23T07:00Z +Cancel,289,2015,September,36,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,0,Canceled,2015-08-28,Fall,2015-09-03T07:00Z +Cancel,288,2015,September,36,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-28,Fall,2015-09-02T07:00Z +Cancel,288,2015,September,36,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-28,Fall,2015-09-02T07:00Z +Cancel,288,2015,September,36,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-28,Fall,2015-09-02T07:00Z +Cancel,288,2015,September,36,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Canceled,2015-08-28,Fall,2015-09-02T07:00Z +Keep,239,2015,August,35,28,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,114.71,0,1,Check-Out,2015-09-11,Summer,2015-08-28T07:00Z +Keep,32,2015,August,35,23,2,4,1,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,154.71,0,1,Check-Out,2015-08-29,Summer,2015-08-23T07:00Z +Keep,60,2015,August,34,22,2,5,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,101.65,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,59,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,143.29,1,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,60,2015,August,34,22,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,258,2017,July,26,1,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,2,No Deposit , 240, NULL,0,Transient,131.55,1,2,Check-Out,2017-07-09,Summer,2017-07-01T07:00Z +Keep,46,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,149,0,2,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,26,2015,August,34,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,215,1,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,4,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,135,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,36,2015,August,34,22,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 142, NULL,0,Contract,175.26,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,77,2015,August,33,15,4,10,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2015-08-29,Summer,2015-08-15T07:00Z +Keep,15,2015,August,34,22,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,G,1,No Deposit , NULL, NULL,0,Transient,258.43,1,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,152,2015,August,34,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,12,2015,August,34,22,2,5,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,153,0,3,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,0,2015,August,35,28,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,153,0,0,Check-Out,2015-08-29,Summer,2015-08-28T07:00Z +Keep,82,2015,August,33,15,4,10,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 36, NULL,0,Transient,122.88,1,0,Check-Out,2015-08-29,Summer,2015-08-15T07:00Z +Keep,37,2015,August,35,23,2,4,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,180.53,0,2,Check-Out,2015-08-29,Summer,2015-08-23T07:00Z +Keep,62,2015,August,35,24,1,4,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 114, NULL,0,Transient,160.48,0,1,Check-Out,2015-08-29,Summer,2015-08-24T07:00Z +Keep,69,2015,August,35,23,2,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,218.5,1,1,Check-Out,2015-08-29,Summer,2015-08-23T07:00Z +Keep,233,2015,August,34,22,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,165.6,0,0,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,47,2015,August,34,22,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,235.07,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,42,2015,August,34,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.9,1,2,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,52,2015,August,35,23,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159.33,0,1,Check-Out,2015-08-29,Summer,2015-08-23T07:00Z +Keep,146,2015,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,58.95,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,47,2015,August,34,22,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 142, NULL,0,Transient,147.09,0,1,Check-Out,2015-08-29,Summer,2015-08-22T07:00Z +Keep,55,2015,August,35,24,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.4,1,1,Check-Out,2015-08-29,Summer,2015-08-24T07:00Z +Keep,88,2015,August,35,23,2,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,234.67,0,3,Check-Out,2015-08-29,Summer,2015-08-23T07:00Z +Keep,0,2015,August,35,28,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,153,0,1,Check-Out,2015-08-29,Summer,2015-08-28T07:00Z +Cancel,283,2015,October,42,12,2,5,1,0,0,HB,GBR,Groups,Direct, 0,1,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.65,0,0,Canceled,2015-08-29,Fall,2015-10-12T07:00Z +Keep,84,2015,August,35,25,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-08-29,Summer,2015-08-25T07:00Z +Keep,205,2015,August,33,15,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Contract,123.74,0,0,Check-Out,2015-08-29,Summer,2015-08-15T07:00Z +Cancel,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,60,0,0,Canceled,2015-08-29,Fall,2015-09-02T07:00Z +Keep,48,2015,August,35,23,2,5,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.71,0,2,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,62,2015,August,34,20,2,8,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,104,0,0,Check-Out,2015-08-30,Summer,2015-08-20T07:00Z +Keep,31,2015,August,35,28,0,2,3,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,164,0,1,Check-Out,2015-08-30,Summer,2015-08-28T07:00Z +Keep,31,2015,August,35,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,H,0,No Deposit , 240, NULL,0,Transient,185,1,2,Check-Out,2015-08-30,Summer,2015-08-27T07:00Z +Keep,172,2015,August,34,16,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,88.4,0,0,Check-Out,2015-08-30,Summer,2015-08-16T07:00Z +Keep,101,2015,August,34,22,2,6,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2015-08-30,Summer,2015-08-22T07:00Z +Keep,37,2015,August,35,26,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,193.5,0,0,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,29,2015,August,34,20,2,8,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,229.6,1,0,Check-Out,2015-08-30,Summer,2015-08-20T07:00Z +Keep,22,2015,August,35,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186.57,0,2,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,77,2015,August,35,24,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,150.83,0,2,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,77,2015,August,35,24,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,150.83,0,2,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,9,2015,August,35,24,1,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,209,0,1,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,88,2015,August,35,23,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,170.5,0,3,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,58,2015,August,35,24,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,170.33,1,0,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,45,2015,August,35,25,0,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,103.28,0,2,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,45,2015,August,35,25,0,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,103.28,0,1,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,198,2015,August,35,27,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,166,0,2,Check-Out,2015-08-30,Summer,2015-08-27T07:00Z +Keep,198,2015,August,35,27,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,96.3,0,0,Check-Out,2015-08-30,Summer,2015-08-27T07:00Z +Keep,0,2015,August,35,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,0,1,Check-Out,2015-08-30,Summer,2015-08-29T07:00Z +Keep,212,2015,August,35,26,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,2,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,45,2015,August,35,23,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,144.65,0,2,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,86,2015,August,34,16,4,10,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,110.88,0,0,Check-Out,2015-08-30,Summer,2015-08-16T07:00Z +Keep,86,2015,August,34,16,4,10,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,110.88,0,0,Check-Out,2015-08-30,Summer,2015-08-16T07:00Z +Keep,56,2015,August,35,25,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,137.8,1,1,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,76,2015,August,35,27,0,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.67,0,0,Check-Out,2015-08-30,Summer,2015-08-27T07:00Z +Keep,12,2015,August,35,24,1,5,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.33,0,2,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,151,2015,August,35,23,2,5,2,2,0,FB,SVN,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,239.65,0,2,Check-Out,2015-08-30,Summer,2015-08-23T07:00Z +Keep,204,2015,August,35,25,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,90.95,0,0,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,0,2015,August,35,25,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,183,0,0,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,22,2015,August,35,25,0,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,203,0,2,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,35,2015,August,35,24,1,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,189.33,1,3,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,201,2015,August,35,25,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-30,Summer,2015-08-25T07:00Z +Keep,196,2015,August,35,26,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,128,2015,August,35,24,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient,133,0,0,Check-Out,2015-08-30,Summer,2015-08-24T07:00Z +Keep,42,2015,August,35,26,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,135.14,0,0,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,37,2015,August,35,26,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,2,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,37,2015,August,35,26,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,163.5,0,2,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,163,2015,August,34,20,2,8,3,0,0,BB,BRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2015-08-30,Summer,2015-08-20T07:00Z +Keep,204,2015,August,35,26,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2015-08-30,Summer,2015-08-26T07:00Z +Keep,37,2015,August,35,27,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,104.97,0,1,Check-Out,2015-08-31,Summer,2015-08-27T07:00Z +Keep,0,2015,August,36,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 51,0,Transient,120.6,0,0,Check-Out,2015-08-31,Summer,2015-08-30T07:00Z +Keep,52,2015,August,35,25,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,176.67,0,1,Check-Out,2015-08-31,Summer,2015-08-25T07:00Z +Keep,63,2015,August,35,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,133,0,0,Check-Out,2015-08-31,Summer,2015-08-24T07:00Z +Keep,12,2015,August,35,24,2,5,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,174.14,0,1,Check-Out,2015-08-31,Summer,2015-08-24T07:00Z +Keep,199,2015,August,35,24,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 175, NULL,0,Transient-Party,142.65,0,1,Check-Out,2015-08-31,Summer,2015-08-24T07:00Z +Keep,39,2015,August,35,23,3,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129.6,0,1,Check-Out,2015-08-31,Summer,2015-08-23T07:00Z +Keep,0,2015,August,36,30,1,0,3,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,183,1,0,Check-Out,2015-08-31,Summer,2015-08-30T07:00Z +Keep,48,2015,August,35,27,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,107,1,0,Check-Out,2015-08-31,Summer,2015-08-27T07:00Z +Cancel,243,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,99,0,1,Canceled,2015-08-31,Fall,2015-09-04T07:00Z +Keep,124,2015,August,34,17,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Contract,110.7,0,1,Check-Out,2015-08-31,Summer,2015-08-17T07:00Z +Keep,199,2015,August,35,24,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 175, NULL,0,Transient-Party,142.65,0,1,Check-Out,2015-08-31,Summer,2015-08-24T07:00Z +Keep,186,2015,August,34,21,3,7,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,178,1,1,Check-Out,2015-08-31,Summer,2015-08-21T07:00Z +Keep,54,2015,August,35,24,2,5,2,1,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,197.7,0,0,Check-Out,2015-08-31,Summer,2015-08-24T07:00Z +Keep,0,2015,August,35,29,1,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,120.6,0,1,Check-Out,2015-08-31,Summer,2015-08-29T07:00Z +Keep,1,2015,August,36,31,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Group,134,0,1,Check-Out,2015-09-01,Summer,2015-08-31T07:00Z +Keep,0,2015,August,36,30,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Group,120.6,0,0,Check-Out,2015-08-31,Summer,2015-08-30T07:00Z +Cancel,190,2015,September,37,10,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient,58.95,0,0,Canceled,2015-08-31,Fall,2015-09-10T07:00Z +Keep,59,2015,August,35,27,2,3,2,2,1,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,264.5,1,0,Check-Out,2015-09-01,Summer,2015-08-27T07:00Z +Keep,89,2015,August,34,22,4,6,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,104.16,0,1,Check-Out,2015-09-01,Summer,2015-08-22T07:00Z +Keep,89,2015,August,34,22,4,6,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,104.16,0,1,Check-Out,2015-09-01,Summer,2015-08-22T07:00Z +Keep,107,2015,August,35,28,2,2,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,184.5,0,1,Check-Out,2015-09-01,Summer,2015-08-28T07:00Z +Keep,1,2015,August,36,30,2,0,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,192.6,0,3,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,61,2015,August,35,29,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2015-09-01,Summer,2015-08-29T07:00Z +Keep,61,2015,August,35,29,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,127,1,1,Check-Out,2015-09-01,Summer,2015-08-29T07:00Z +Keep,13,2015,August,35,25,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,208.43,0,1,Check-Out,2015-09-01,Summer,2015-08-25T07:00Z +Keep,0,2015,August,36,30,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,123,1,0,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,13,2015,August,36,30,2,0,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,97.8,0,0,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,236,2015,August,35,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,104.98,0,2,Check-Out,2015-09-01,Summer,2015-08-25T07:00Z +Keep,23,2015,August,36,30,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,1,1,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,27,2015,August,36,30,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,25,2015,August,35,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Check-Out,2015-09-01,Summer,2015-08-28T07:00Z +Keep,1,2015,August,36,30,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147.6,0,3,Check-Out,2015-09-01,Summer,2015-08-30T07:00Z +Keep,0,2016,October,45,30,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,3,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,0,2016,October,45,31,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,25,2015,August,35,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient,154,0,2,Check-Out,2015-09-01,Summer,2015-08-29T07:00Z +Keep,107,2015,August,35,28,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,169.5,0,1,Check-Out,2015-09-01,Summer,2015-08-28T07:00Z +Keep,62,2015,August,35,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2015-09-01,Summer,2015-08-25T07:00Z +Keep,24,2015,August,35,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172.71,0,3,Check-Out,2015-09-01,Summer,2015-08-25T07:00Z +Keep,194,2015,September,36,2,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,58.95,0,0,Check-Out,2015-09-11,Fall,2015-09-02T07:00Z +Keep,28,2015,August,35,28,2,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,108.34,0,1,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Keep,29,2015,August,35,28,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,75.53,1,0,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Keep,97,2015,August,35,27,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,121.67,1,0,Check-Out,2015-09-02,Summer,2015-08-27T07:00Z +Keep,32,2017,April,15,14,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient-Party,104.5,1,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,39,2015,August,35,26,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,133.43,0,0,Check-Out,2015-09-02,Summer,2015-08-26T07:00Z +Keep,67,2015,August,35,23,4,6,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,146.95,0,2,Check-Out,2015-09-02,Summer,2015-08-23T07:00Z +Keep,13,2015,August,36,30,2,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,F,G,0,No Deposit , 36, NULL,0,Transient,120.79,1,0,Check-Out,2015-09-02,Summer,2015-08-30T07:00Z +Keep,29,2015,August,35,29,2,2,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,165.75,1,2,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,29,2015,August,35,29,2,2,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,165.75,0,2,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,1,2015,August,35,29,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,142.5,0,1,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,1,2015,August,35,29,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,143.25,1,0,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,211,2015,August,35,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126.57,0,1,Check-Out,2015-09-02,Summer,2015-08-26T07:00Z +Keep,90,2015,August,36,30,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,132.33,0,1,Check-Out,2015-09-02,Summer,2015-08-30T07:00Z +Keep,1,2015,August,35,29,2,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,134,1,3,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,35,2015,August,35,29,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,96.3,0,2,Check-Out,2015-09-02,Summer,2015-08-29T07:00Z +Keep,67,2015,August,35,23,4,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,137.65,0,1,Check-Out,2015-09-02,Summer,2015-08-23T07:00Z +Keep,236,2015,August,35,28,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123.6,0,1,Check-Out,2015-09-02,Summer,2015-08-28T07:00Z +Keep,38,2015,August,35,25,2,6,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 5, NULL,0,Transient,142.7,0,1,Check-Out,2015-09-02,Summer,2015-08-25T07:00Z +Keep,67,2015,August,35,23,4,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,137.65,0,1,Check-Out,2015-09-02,Summer,2015-08-23T07:00Z +Cancel,200,2015,September,37,7,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,1,Canceled,2015-09-02,Fall,2015-09-07T07:00Z +Cancel,200,2015,September,37,7,3,7,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 156, NULL,0,Contract,49.3,0,1,Canceled,2015-09-02,Fall,2015-09-07T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,2,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,81,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,1,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,19,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Cancel,247,2015,October,41,9,1,2,1,0,0,FB,ESP,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 68, NULL,0,Transient,19,0,0,Canceled,2015-09-02,Fall,2015-10-09T07:00Z +Keep,57,2015,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,90.38,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,110,2017,June,24,15,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,C,C,1,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2017-06-24,Summer,2017-06-15T07:00Z +Keep,26,2015,August,35,29,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,85.88,0,0,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,44,2015,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,92.63,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,31,2015,August,35,29,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,105.2,0,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,177,2015,August,34,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,55.68,0,0,Check-Out,2015-09-03,Summer,2015-08-20T07:00Z +Keep,139,2015,August,34,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,55.68,0,2,Check-Out,2015-09-03,Summer,2015-08-20T07:00Z +Keep,139,2015,August,34,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,55.68,0,2,Check-Out,2015-09-03,Summer,2015-08-20T07:00Z +Keep,101,2015,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,65.5,0,0,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,23,2015,August,35,23,4,7,3,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,218.3,0,1,Check-Out,2015-09-03,Summer,2015-08-23T07:00Z +Keep,78,2015,August,35,25,2,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,105.5,0,1,Check-Out,2015-09-03,Summer,2015-08-25T07:00Z +Keep,65,2015,August,35,29,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,93.4,0,0,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,26,2015,September,36,1,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,2,Check-Out,2015-09-03,Fall,2015-09-01T07:00Z +Keep,94,2015,August,35,29,2,3,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,106.21,0,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,94,2015,August,35,29,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,123.12,0,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,6,2015,August,36,31,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,138.6,0,2,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Keep,19,2015,September,36,1,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,176,1,3,Check-Out,2015-09-03,Fall,2015-09-01T07:00Z +Keep,28,2015,August,35,29,2,3,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,131.4,1,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,38,2015,August,35,27,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Keep,40,2015,August,35,29,2,3,2,0,0,HB,ITA,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,142,0,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,23,2015,August,35,29,2,3,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,110.58,0,0,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,196,2015,September,36,3,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 156, NULL,0,Contract,77.78,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,31,2015,September,37,6,1,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,D,D,1,No Deposit , 175, NULL,0,Transient,116.4,0,0,Check-Out,2015-09-07,Fall,2015-09-06T07:00Z +Keep,70,2015,August,36,31,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98.33,1,0,Check-Out,2015-09-03,Summer,2015-08-31T07:00Z +Keep,17,2015,August,36,30,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,150.5,0,3,Check-Out,2015-09-03,Summer,2015-08-30T07:00Z +Keep,0,2015,September,36,2,0,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,161,1,0,Check-Out,2015-09-03,Fall,2015-09-02T07:00Z +Keep,134,2015,August,35,29,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,2,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,64,2015,August,36,30,2,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,103.2,0,2,Check-Out,2015-09-03,Summer,2015-08-30T07:00Z +Keep,18,2015,August,35,29,2,3,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,143.4,0,1,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,41,2015,September,36,1,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,65.5,0,0,Check-Out,2015-09-03,Fall,2015-09-01T07:00Z +Keep,23,2015,August,35,29,2,3,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 156, NULL,0,Contract,77.79,0,0,Check-Out,2015-09-03,Summer,2015-08-29T07:00Z +Keep,51,2015,August,35,27,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,160.57,1,2,Check-Out,2015-09-03,Summer,2015-08-27T07:00Z +Cancel,216,2015,October,41,5,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,0,No Deposit , 171, NULL,0,Transient,57.6,0,0,Canceled,2015-09-03,Fall,2015-10-05T07:00Z +Keep,57,2015,August,35,29,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,101.25,0,0,Check-Out,2015-09-04,Summer,2015-08-29T07:00Z +Keep,34,2015,August,36,31,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 242, NULL,0,Transient,124.25,0,1,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Keep,55,2015,August,36,30,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,29,2015,August,35,29,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,97.2,0,0,Check-Out,2015-09-04,Summer,2015-08-29T07:00Z +Keep,61,2015,August,34,18,4,13,2,0,0,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient,102,0,0,Check-Out,2015-09-04,Summer,2015-08-18T07:00Z +Keep,68,2015,August,36,30,2,3,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,135.13,1,0,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,219,2015,September,36,3,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,110.7,0,2,Check-Out,2015-09-04,Fall,2015-09-03T07:00Z +Keep,220,2015,September,36,4,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Group,141,0,2,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,36,2015,September,36,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,1,0,Check-Out,2015-09-04,Fall,2015-09-02T07:00Z +Keep,210,2015,August,35,26,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,87.75,0,0,Check-Out,2015-09-04,Summer,2015-08-26T07:00Z +Keep,305,2017,August,34,26,4,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,158.6,0,3,Check-Out,2017-09-06,Summer,2017-08-26T07:00Z +Keep,74,2015,August,36,30,2,3,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,161.8,0,3,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,37,2015,September,36,2,0,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 241, NULL,0,Transient,117.81,1,1,Check-Out,2015-09-04,Fall,2015-09-02T07:00Z +Keep,218,2015,September,36,2,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-09-04,Fall,2015-09-02T07:00Z +Keep,37,2015,August,35,29,2,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,186.5,1,0,Check-Out,2015-09-04,Summer,2015-08-29T07:00Z +Keep,104,2017,June,26,26,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,140,1,1,Check-Out,2017-07-02,Summer,2017-06-26T07:00Z +Keep,27,2015,August,36,30,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 134, NULL,0,Transient,123.5,1,0,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,74,2015,August,35,26,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,0,0,Check-Out,2015-09-04,Summer,2015-08-26T07:00Z +Keep,23,2015,August,35,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.43,0,1,Check-Out,2015-09-04,Summer,2015-08-28T07:00Z +Keep,10,2015,August,36,30,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,121.8,0,0,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,33,2015,August,35,29,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131.5,1,2,Check-Out,2015-09-04,Summer,2015-08-29T07:00Z +Keep,27,2015,August,36,31,1,3,4,0,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,256.5,0,0,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Keep,33,2015,August,36,31,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,167.25,1,0,Check-Out,2015-09-04,Summer,2015-08-31T07:00Z +Keep,74,2015,August,36,30,2,3,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,161.8,0,2,Check-Out,2015-09-04,Summer,2015-08-30T07:00Z +Keep,52,2015,August,35,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Transient,98.29,0,0,Check-Out,2015-09-05,Summer,2015-08-29T07:00Z +Keep,185,2015,August,35,29,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 29, NULL,0,Transient,82.35,0,0,Check-Out,2015-09-05,Summer,2015-08-29T07:00Z +Keep,101,2015,August,35,29,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,135.14,0,1,Check-Out,2015-09-05,Summer,2015-08-29T07:00Z +Keep,36,2015,August,34,22,4,10,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,187.33,0,1,Check-Out,2015-09-05,Summer,2015-08-22T07:00Z +Keep,68,2015,August,36,30,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,115,1,1,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Keep,68,2015,August,36,30,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,115,0,1,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Keep,232,2015,August,34,22,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,67.58,0,1,Check-Out,2015-09-05,Summer,2015-08-22T07:00Z +Keep,55,2015,September,36,1,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.05,1,1,Check-Out,2015-09-05,Fall,2015-09-01T07:00Z +Keep,4,2015,September,36,2,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,161,1,0,Check-Out,2015-09-05,Fall,2015-09-02T07:00Z +Keep,47,2015,August,36,30,2,4,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,100.7,1,1,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Keep,71,2015,August,36,30,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,157.67,1,0,Check-Out,2015-09-05,Summer,2015-08-30T07:00Z +Keep,112,2015,August,34,22,4,10,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,244,0,1,Check-Out,2015-09-05,Summer,2015-08-22T07:00Z +Keep,142,2015,September,36,2,0,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,197,1,2,Check-Out,2015-09-05,Fall,2015-09-02T07:00Z +Keep,199,2015,September,36,3,0,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,141,1,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,199,2015,September,36,3,0,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,141,0,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,ITA,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,17,2017,January,5,29,2,1,1,0,0,BB,ITA,Online travel agent,Direct, 1,0,1,A,A,0,No Deposit , 240, 268,0,Transient-Party,49.67,0,1,Check-Out,2017-02-01,Winter,2017-01-29T08:00Z +Keep,289,2015,September,36,3,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,123,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,205,2015,September,36,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,74.5,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,154,2015,September,36,3,0,3,2,0,0,BB,ESP,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 268,0,Transient-Party,88.2,0,0,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,208,2015,September,36,1,0,5,2,0,0,BB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,58.95,1,0,Check-Out,2015-09-06,Fall,2015-09-01T07:00Z +Keep,205,2015,September,36,4,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,66,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,4,2015,September,36,4,0,2,1,0,0,BB,ITA,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,25,2015,September,36,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-09-06,Fall,2015-09-04T07:00Z +Keep,0,2015,September,36,5,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,184,1,1,Check-Out,2015-09-06,Fall,2015-09-05T07:00Z +Keep,70,2015,August,36,31,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,124,0,0,Check-Out,2015-09-06,Summer,2015-08-31T07:00Z +Keep,29,2015,September,36,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,H,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-09-06,Fall,2015-09-05T07:00Z +Keep,199,2015,September,36,3,0,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,2,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,59,2015,August,36,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.86,0,1,Check-Out,2015-09-06,Summer,2015-08-30T07:00Z +Keep,44,2015,August,35,29,2,6,3,1,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,219.25,0,0,Check-Out,2015-09-06,Summer,2015-08-29T07:00Z +Keep,199,2015,September,36,3,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99,0,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,199,2015,September,36,3,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,141,0,2,Check-Out,2015-09-06,Fall,2015-09-03T07:00Z +Keep,105,2015,September,36,1,0,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,137,0,1,Check-Out,2015-09-06,Fall,2015-09-01T07:00Z +Keep,67,2015,September,36,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,1,1,Check-Out,2015-09-06,Fall,2015-09-05T07:00Z +Keep,0,2015,September,36,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,172,1,0,Check-Out,2015-09-06,Fall,2015-09-05T07:00Z +Cancel,222,2015,September,37,6,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,1,No-Show,2015-09-06,Fall,2015-09-06T07:00Z +Keep,186,2015,September,36,4,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 5, NULL,0,Transient-Party,52.2,0,1,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,186,2015,September,36,4,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 2, NULL,0,Contract,49.3,0,0,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,186,2015,September,36,4,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 5, NULL,0,Transient-Party,52.2,0,1,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,297,2015,September,36,3,1,3,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,123,0,2,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,297,2015,September,36,3,1,3,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,123,0,2,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,189,2015,August,36,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,104.98,0,0,Check-Out,2015-09-07,Summer,2015-08-31T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,141,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,141,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,290,2015,September,36,4,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,174,2015,September,36,2,1,4,2,0,2,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,120,1,2,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,136,2015,August,35,29,3,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,171.06,0,2,Check-Out,2015-09-07,Summer,2015-08-29T07:00Z +Keep,289,2015,September,36,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,182,2015,September,36,3,1,3,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 134, NULL,0,Transient,71.55,0,0,Check-Out,2015-09-07,Fall,2015-09-03T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,288,2015,September,36,2,1,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110.7,0,0,Check-Out,2015-09-07,Fall,2015-09-02T07:00Z +Keep,0,2015,September,37,6,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2015-09-07,Fall,2015-09-06T07:00Z +Keep,186,2015,September,36,4,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 5, NULL,0,Transient-Party,52.2,0,1,Check-Out,2015-09-07,Fall,2015-09-04T07:00Z +Keep,0,2015,September,37,6,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,131,1,0,Check-Out,2015-09-07,Fall,2015-09-06T07:00Z +Keep,15,2015,September,36,5,1,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,2,No Deposit , 240, NULL,0,Transient,159.5,1,1,Check-Out,2015-09-07,Fall,2015-09-05T07:00Z +Keep,9,2016,May,21,15,1,0,3,0,0,BB,PRT,Groups,TA/TO, 1,0,1,C,C,1,Refundable , NULL, NULL,0,Transient-Party,99,0,1,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Cancel,250,2015,September,37,9,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,0,Canceled,2015-09-07,Fall,2015-09-09T07:00Z +Keep,99,2015,September,36,1,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120.71,0,0,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,199,2015,August,35,28,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Contract,87.75,0,1,Check-Out,2015-09-08,Summer,2015-08-28T07:00Z +Keep,242,2015,September,36,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,160,1,2,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,242,2015,September,36,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,154,0,2,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,225,2015,September,36,3,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,152,0,2,Check-Out,2015-09-08,Fall,2015-09-03T07:00Z +Cancel,240,2015,November,45,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-08,Fall,2015-11-06T08:00Z +Cancel,240,2015,November,45,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-08,Fall,2015-11-06T08:00Z +Cancel,240,2015,November,45,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-08,Fall,2015-11-06T08:00Z +Cancel,240,2015,November,45,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-08,Fall,2015-11-06T08:00Z +Cancel,240,2015,November,45,6,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Canceled,2015-09-08,Fall,2015-11-06T08:00Z +Keep,218,2015,September,36,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,58.95,0,1,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,218,2015,September,36,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,58.95,0,1,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,202,2015,September,36,1,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,77.78,0,1,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,205,2015,September,36,3,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,58.95,0,1,Check-Out,2015-09-08,Fall,2015-09-03T07:00Z +Keep,167,2015,September,36,1,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,73.8,0,0,Check-Out,2015-09-08,Fall,2015-09-01T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,215,2015,August,36,31,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,67.58,0,1,Check-Out,2015-09-09,Summer,2015-08-31T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,78,2015,August,36,30,4,6,3,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,168.4,0,1,Check-Out,2015-09-09,Summer,2015-08-30T07:00Z +Keep,262,2017,July,27,2,2,2,3,0,0,BB,GBR,Direct,Direct, 1,0,1,E,E,0,No Deposit , 250, NULL,0,Transient,139.35,0,1,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,0,2015,September,37,7,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,131,1,0,Check-Out,2015-09-09,Fall,2015-09-07T07:00Z +Keep,208,2015,September,36,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-09-09,Fall,2015-09-01T07:00Z +Keep,160,2017,July,28,9,4,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,146.67,1,1,Check-Out,2017-07-18,Summer,2017-07-09T07:00Z +Keep,243,2015,September,36,2,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,77.78,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,183,2015,September,36,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-09-09,Fall,2015-09-01T07:00Z +Keep,66,2015,August,35,29,4,7,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129.58,0,0,Check-Out,2015-09-09,Summer,2015-08-29T07:00Z +Keep,183,2015,September,36,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2015-09-09,Fall,2015-09-01T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,244,2015,September,36,2,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,57,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,71,2015,September,36,2,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163,1,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,47,2016,September,36,3,2,5,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,186.6,1,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,23,2017,June,24,15,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,162,1,1,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,244,2015,September,36,2,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,0,0,0,Check-Out,2015-09-09,Fall,2015-09-02T07:00Z +Keep,14,2015,September,37,7,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,157.82,1,1,Check-Out,2015-09-09,Fall,2015-09-07T07:00Z +Keep,158,2015,September,37,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 251, NULL,0,Transient,68.5,0,0,Check-Out,2015-09-09,Fall,2015-09-08T07:00Z +Keep,29,2015,September,36,4,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,123,1,0,Check-Out,2015-09-09,Fall,2015-09-04T07:00Z +Keep,52,2016,April,17,22,2,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient,124.25,1,1,Check-Out,2016-04-26,Spring,2016-04-22T07:00Z +Keep,206,2015,September,36,5,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,58.95,0,0,Check-Out,2015-09-10,Fall,2015-09-05T07:00Z +Keep,199,2015,September,37,6,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,71.55,0,2,Check-Out,2015-09-10,Fall,2015-09-06T07:00Z +Keep,286,2015,August,36,31,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,55.68,0,0,Check-Out,2015-09-10,Summer,2015-08-31T07:00Z +Keep,266,2016,June,25,13,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,1,No Deposit , 40, NULL,0,Contract,53.85,0,0,Check-Out,2016-06-23,Summer,2016-06-13T07:00Z +Keep,199,2015,September,37,6,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,71.55,0,1,Check-Out,2015-09-10,Fall,2015-09-06T07:00Z +Keep,153,2015,September,36,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,77.58,0,0,Check-Out,2015-09-10,Fall,2015-09-03T07:00Z +Keep,15,2015,September,36,4,2,4,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient,85,1,2,Check-Out,2015-09-10,Fall,2015-09-04T07:00Z +Keep,1,2015,September,37,9,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient-Party,134,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,1,2015,September,37,9,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient-Party,134,0,0,Check-Out,2015-09-10,Fall,2015-09-09T07:00Z +Keep,0,2016,March,14,28,1,0,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 195,0,Transient,42,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,D,0,No Deposit , NULL, 195,0,Transient,42,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,4,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,3,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,34,2015,August,35,27,4,10,2,0,0,HB,BEL,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,150.86,0,2,Check-Out,2015-09-10,Summer,2015-08-27T07:00Z +Keep,25,2015,September,37,7,1,2,2,0,0,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 142, NULL,0,Transient,104.8,0,1,Check-Out,2015-09-10,Fall,2015-09-07T07:00Z +Keep,89,2015,September,37,8,0,2,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,137,0,1,Check-Out,2015-09-10,Fall,2015-09-08T07:00Z +Keep,89,2015,September,37,8,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2015-09-10,Fall,2015-09-08T07:00Z +Keep,242,2015,September,36,1,2,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,58.95,0,0,Check-Out,2015-09-10,Fall,2015-09-01T07:00Z +Keep,242,2015,September,36,1,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,58.95,0,0,Check-Out,2015-09-10,Fall,2015-09-01T07:00Z +Keep,1,2015,September,37,7,1,2,2,0,0,BB,AUT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-09-10,Fall,2015-09-07T07:00Z +Keep,194,2015,September,36,1,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Contract,71.55,0,0,Check-Out,2015-09-11,Fall,2015-09-01T07:00Z +Keep,216,2015,August,36,30,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,67.58,0,1,Check-Out,2015-09-11,Summer,2015-08-30T07:00Z +Keep,352,2015,August,36,31,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,67.58,0,0,Check-Out,2015-09-11,Summer,2015-08-31T07:00Z +Keep,48,2015,September,37,6,2,3,1,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,113,0,0,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Keep,35,2015,September,37,7,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,198,0,3,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,27,2015,September,37,7,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,122.75,0,0,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,160,2015,September,37,7,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,106.5,1,1,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,81,2015,September,37,6,2,3,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,153,0,2,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Keep,117,2015,September,37,7,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,3,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,37,2015,September,37,7,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,186,1,2,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,5,2015,September,37,7,1,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,167.75,0,1,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,81,2015,September,37,6,2,3,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,153,0,2,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Keep,14,2015,September,37,7,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,171.25,1,1,Check-Out,2015-09-11,Fall,2015-09-07T07:00Z +Keep,10,2016,January,4,21,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,G,0,No Deposit , 8, NULL,0,Transient,59.1,1,1,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,218,2015,September,36,1,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,80.33,0,0,Check-Out,2015-09-11,Fall,2015-09-01T07:00Z +Keep,48,2015,September,37,6,2,3,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,113,1,0,Check-Out,2015-09-11,Fall,2015-09-06T07:00Z +Keep,243,2015,September,36,4,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 156, NULL,0,Contract,132.19,0,1,Check-Out,2015-09-11,Fall,2015-09-04T07:00Z +Cancel,258,2015,September,38,17,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 245, NULL,0,Transient-Party,87,0,0,Canceled,2015-09-11,Fall,2015-09-17T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Cancel,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 208, NULL,0,Transient,34,0,0,Canceled,2015-09-11,Fall,2015-10-10T07:00Z +Keep,246,2015,September,36,5,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,58.95,0,1,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Keep,239,2015,August,35,29,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,77.78,0,1,Check-Out,2015-09-12,Summer,2015-08-29T07:00Z +Keep,0,2015,September,37,6,2,4,1,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,146,0,0,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,32,2015,September,37,6,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,100.87,0,1,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,1,2015,September,37,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-09-12,Fall,2015-09-11T07:00Z +Keep,52,2015,September,37,6,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 149, NULL,0,Transient,97.5,0,0,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,32,2015,September,37,7,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,179.4,0,2,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,22,2016,August,34,20,2,5,2,0,0,FB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,259,0,2,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,4,2015,September,37,7,1,4,2,0,1,FB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,189,0,1,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,5,2015,September,37,7,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,0,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,31,2015,September,36,5,2,5,2,0,1,BB,Unknown,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,129.5,1,3,Check-Out,2015-09-12,Fall,2015-09-05T07:00Z +Keep,32,2015,September,37,9,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,1,0,Check-Out,2015-09-12,Fall,2015-09-09T07:00Z +Keep,94,2015,September,37,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Check-Out,2015-09-12,Fall,2015-09-10T07:00Z +Keep,52,2015,September,37,8,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Contract,79.5,0,1,Check-Out,2015-09-12,Fall,2015-09-08T07:00Z +Keep,37,2015,September,37,9,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,97.5,0,0,Check-Out,2015-09-12,Fall,2015-09-09T07:00Z +Keep,194,2015,September,37,7,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient-Party,96.3,0,2,Check-Out,2015-09-12,Fall,2015-09-07T07:00Z +Keep,287,2015,September,36,1,2,9,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,123,0,0,Check-Out,2015-09-12,Fall,2015-09-01T07:00Z +Keep,31,2015,September,37,6,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155.5,0,2,Check-Out,2015-09-12,Fall,2015-09-06T07:00Z +Keep,205,2015,September,36,3,2,8,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,82.35,0,0,Check-Out,2015-09-13,Fall,2015-09-03T07:00Z +Keep,178,2015,September,37,12,0,1,1,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 251, NULL,0,Transient,54.9,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,178,2015,September,37,12,0,1,1,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 251, NULL,0,Transient,54.9,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,178,2015,September,37,12,0,1,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,61.65,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,178,2015,September,37,12,0,1,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 251, NULL,0,Transient,61.65,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,178,2015,September,37,12,0,1,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,61.65,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,2,2015,September,37,10,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2015-09-13,Fall,2015-09-10T07:00Z +Keep,51,2015,August,36,31,3,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,135.31,0,0,Check-Out,2015-09-13,Summer,2015-08-31T07:00Z +Keep,178,2015,September,37,12,0,1,1,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 251, NULL,0,Transient,54.9,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,36,2015,September,37,10,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,120,1,1,Check-Out,2015-09-13,Fall,2015-09-10T07:00Z +Keep,128,2015,September,37,6,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,97.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,69,2015,September,37,10,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,97.5,1,0,Check-Out,2015-09-13,Fall,2015-09-10T07:00Z +Keep,81,2015,September,37,6,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,129.4,0,1,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Keep,178,2015,September,37,12,0,1,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 251, NULL,0,Transient,61.65,0,0,Check-Out,2015-09-13,Fall,2015-09-12T07:00Z +Keep,117,2015,September,37,6,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient,91.5,0,0,Check-Out,2015-09-13,Fall,2015-09-06T07:00Z +Cancel,259,2015,September,38,18,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,1,Canceled,2015-09-13,Fall,2015-09-18T07:00Z +Keep,53,2015,September,37,8,1,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,123,0,1,Check-Out,2015-09-14,Fall,2015-09-08T07:00Z +Keep,246,2015,September,37,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,60.51,0,0,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,1,2015,September,37,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,92.4,0,0,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,167,2015,September,37,7,2,5,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 71, NULL,0,Transient,111.15,0,0,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,65,2015,September,37,7,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,186,1,2,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,113,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,94.37,0,2,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Keep,113,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,94.37,0,2,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Keep,111,2015,September,37,10,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 301, NULL,0,Transient,109.65,0,0,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Keep,113,2015,September,37,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,94.37,0,2,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Keep,13,2015,September,37,11,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,98,0,2,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,17,2016,December,53,31,2,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,4,No Deposit , NULL, NULL,0,Transient,39,0,2,Check-Out,2017-01-03,Winter,2016-12-31T08:00Z +Cancel,240,2015,October,40,1,2,5,2,1,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , 250, NULL,0,Transient,47.6,0,1,Canceled,2015-09-14,Fall,2015-10-01T07:00Z +Keep,334,2015,September,37,7,2,5,2,0,0,HB,ESP,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,333,2015,September,37,7,2,5,2,0,0,HB,ESP,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,0,2015,September,37,11,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,106.06,0,0,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,16,2015,September,37,9,1,4,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,112.88,0,1,Check-Out,2015-09-14,Fall,2015-09-09T07:00Z +Keep,25,2015,September,37,11,1,2,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,135.67,0,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,199,2015,September,37,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,199,2015,September,37,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,199,2015,September,37,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2015-09-14,Fall,2015-09-11T07:00Z +Keep,187,2015,September,37,8,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,69.7,1,0,Check-Out,2015-09-14,Fall,2015-09-08T07:00Z +Keep,252,2015,September,37,10,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,2,Check-Out,2015-09-14,Fall,2015-09-10T07:00Z +Keep,194,2015,September,37,7,2,5,2,0,0,SC,PRT,Direct,Direct, 0,0,0,E,I,2,No Deposit , NULL, NULL,0,Transient-Party,8.43,0,2,Check-Out,2015-09-14,Fall,2015-09-07T07:00Z +Keep,26,2015,September,36,1,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,113,1,1,Check-Out,2015-09-15,Fall,2015-09-01T07:00Z +Keep,146,2015,September,37,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,60.61,0,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,180,2015,September,36,1,4,10,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,131.4,0,1,Check-Out,2015-09-15,Fall,2015-09-01T07:00Z +Keep,214,2015,September,37,7,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-09-15,Fall,2015-09-07T07:00Z +Keep,204,2015,September,37,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,55.68,0,0,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,222,2015,September,38,14,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 251, NULL,0,Transient,61.65,0,0,Check-Out,2015-09-15,Fall,2015-09-14T07:00Z +Keep,60,2015,September,37,8,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2015-09-15,Fall,2015-09-08T07:00Z +Keep,180,2015,September,36,5,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,71.55,0,0,Check-Out,2015-09-15,Fall,2015-09-05T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,1,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , 15, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 15, NULL,0,Transient-Party,89.96,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,0,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,254,2015,September,37,12,2,2,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,36,0,0,Check-Out,2015-09-16,Fall,2015-09-12T07:00Z +Keep,99,2015,September,37,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 156, NULL,0,Transient,92.63,0,4,Check-Out,2015-09-16,Fall,2015-09-09T07:00Z +Keep,118,2015,September,37,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Contract,59,0,1,Check-Out,2015-09-16,Fall,2015-09-09T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,1,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 68, NULL,0,Transient-Party,59,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,H,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,G,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,1,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 68, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 68, NULL,0,Transient,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 68, NULL,0,Transient,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient,80,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,222,2015,September,38,14,1,1,1,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient,0,0,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,41,2015,September,38,15,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2015-09-16,Fall,2015-09-15T07:00Z +Keep,55,2015,September,38,14,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,98,0,1,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,57,2015,September,38,16,2,8,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.5,0,1,Check-Out,2015-09-26,Fall,2015-09-16T07:00Z +Keep,13,2015,September,38,14,1,1,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,G,2,No Deposit , 250, NULL,0,Transient,189,1,0,Check-Out,2015-09-16,Fall,2015-09-14T07:00Z +Keep,200,2015,September,37,7,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,50.15,0,1,Check-Out,2015-09-17,Fall,2015-09-07T07:00Z +Keep,200,2015,September,37,7,3,7,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,43.78,0,1,Check-Out,2015-09-17,Fall,2015-09-07T07:00Z +Keep,89,2015,September,37,6,4,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99.18,0,0,Check-Out,2015-09-17,Fall,2015-09-06T07:00Z +Keep,252,2015,September,37,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,1,Check-Out,2015-09-17,Fall,2015-09-10T07:00Z +Keep,217,2015,September,37,7,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.48,0,0,Check-Out,2015-09-17,Fall,2015-09-07T07:00Z +Keep,1,2015,September,38,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 72,0,Transient,75,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,1,2015,September,38,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 72,0,Transient,75,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Group,58.5,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,35.1,0,1,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2016,January,4,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,February,8,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,3,2016,May,21,20,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,6,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2016-05-23,Spring,2016-05-20T07:00Z +Keep,1,2015,September,38,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2016,March,10,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,1,2017,February,7,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,83,0,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,71,2015,September,37,6,4,7,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150.82,1,1,Check-Out,2015-09-17,Fall,2015-09-06T07:00Z +Keep,0,2015,September,38,16,0,1,1,0,0,BB,USA,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Group,65,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,12,2015,September,38,14,1,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,117,0,1,Check-Out,2015-09-17,Fall,2015-09-14T07:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,114,0,0,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,2,2015,September,38,16,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,0,2015,September,38,16,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,56.98,0,2,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,116,2015,September,37,12,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 147, NULL,0,Transient,54.84,0,0,Check-Out,2015-09-17,Fall,2015-09-12T07:00Z +Keep,6,2015,September,38,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2015-09-17,Fall,2015-09-16T07:00Z +Keep,169,2015,September,36,3,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,66.16,0,1,Check-Out,2015-09-17,Fall,2015-09-03T07:00Z +Keep,137,2015,September,37,7,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Transient,89.55,0,0,Check-Out,2015-09-17,Fall,2015-09-07T07:00Z +Keep,205,2015,September,36,5,4,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,62.48,0,1,Check-Out,2015-09-17,Fall,2015-09-05T07:00Z +Keep,95,2015,September,37,7,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,110.64,0,0,Check-Out,2015-09-17,Fall,2015-09-07T07:00Z +Keep,226,2015,September,36,4,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Contract,62.48,0,0,Check-Out,2015-09-18,Fall,2015-09-04T07:00Z +Keep,252,2015,September,37,11,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,53.1,0,1,Check-Out,2015-09-18,Fall,2015-09-11T07:00Z +Keep,246,2015,September,36,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,48.88,0,0,Check-Out,2015-09-18,Fall,2015-09-04T07:00Z +Keep,301,2015,September,37,6,4,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,107.82,0,2,Check-Out,2015-09-18,Fall,2015-09-06T07:00Z +Keep,97,2015,September,37,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,63.21,0,0,Check-Out,2015-09-18,Fall,2015-09-11T07:00Z +Keep,16,2015,September,38,16,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,211,2015,September,36,4,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Contract,98.6,1,0,Check-Out,2015-09-18,Fall,2015-09-04T07:00Z +Keep,14,2015,September,38,16,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , NULL, 86,0,Transient,51.5,0,0,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,11,2016,January,4,18,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 86,0,Transient,38,0,0,Check-Out,2016-01-21,Winter,2016-01-18T08:00Z +Keep,26,2016,February,8,15,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 86,0,Transient,38,0,0,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,5,2016,April,17,19,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 86,0,Transient,59,0,0,Check-Out,2016-04-22,Spring,2016-04-19T07:00Z +Cancel,18,2016,September,39,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,4,A,A,0,No Deposit , NULL, 86,0,Transient,126,0,0,Canceled,2016-09-13,Fall,2016-09-20T07:00Z +Keep,6,2016,October,43,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,4,A,E,0,No Deposit , NULL, 86,0,Transient,45,0,0,Check-Out,2016-10-21,Fall,2016-10-19T07:00Z +Keep,6,2016,November,48,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,5,A,E,0,No Deposit , NULL, 86,0,Transient,30,0,0,Check-Out,2016-11-24,Fall,2016-11-22T08:00Z +Keep,4,2016,December,52,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,6,A,A,2,No Deposit , NULL, 86,0,Transient,39,0,0,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,13,2017,January,4,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,7,A,D,0,No Deposit , NULL, 86,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,7,2017,April,16,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,8,A,A,0,No Deposit , NULL, 86,0,Transient,45,0,0,Check-Out,2017-04-20,Spring,2017-04-18T07:00Z +Keep,26,2017,May,20,16,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,9,A,H,0,No Deposit , NULL, 86,0,Transient,45,0,0,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,203,2015,September,37,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,62.48,0,0,Check-Out,2015-09-18,Fall,2015-09-11T07:00Z +Keep,0,2015,September,38,16,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,6,2015,September,38,16,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,116.5,1,0,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,64,2015,September,38,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,66.6,0,2,Check-Out,2015-09-18,Fall,2015-09-17T07:00Z +Keep,152,2015,September,37,9,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Check-Out,2015-09-18,Fall,2015-09-09T07:00Z +Keep,0,2015,September,38,15,0,3,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,139,1,0,Check-Out,2015-09-18,Fall,2015-09-15T07:00Z +Keep,119,2015,September,37,12,2,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,102.6,0,1,Check-Out,2015-09-18,Fall,2015-09-12T07:00Z +Keep,13,2015,September,38,16,0,2,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,99.45,0,1,Check-Out,2015-09-18,Fall,2015-09-16T07:00Z +Keep,64,2016,January,4,21,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,E,3,No Deposit , 250, NULL,0,Transient,68,0,2,Check-Out,2016-01-24,Winter,2016-01-21T08:00Z +Keep,149,2015,September,37,12,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient,58.05,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,169,2015,September,37,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,70.98,0,2,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,93,2015,September,37,9,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,90,0,0,Check-Out,2015-09-19,Fall,2015-09-09T07:00Z +Keep,101,2015,September,37,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Contract,73.15,0,1,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,30,2015,September,38,17,0,2,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,0,2,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,4,2015,September,38,14,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 142, NULL,0,Transient,102.24,1,0,Check-Out,2015-09-19,Fall,2015-09-14T07:00Z +Keep,2,2015,September,38,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,A,1,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,254,2015,September,38,13,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 156, NULL,0,Contract,66.15,0,0,Check-Out,2015-09-19,Fall,2015-09-13T07:00Z +Keep,65,2015,September,38,16,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,74,0,2,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,14,2015,September,38,17,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,144,1,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,17,2015,September,38,13,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,98,0,0,Check-Out,2015-09-19,Fall,2015-09-13T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,152,2015,September,37,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,68.35,0,0,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,258,2015,September,38,17,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,B,2,No Deposit , 245, NULL,0,Transient-Party,59.85,0,0,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 245, NULL,0,Transient-Party,59.85,0,0,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,35,2015,September,38,18,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,114,0,2,Check-Out,2015-09-19,Fall,2015-09-18T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,208,2015,September,37,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,84.58,0,1,Check-Out,2015-09-19,Fall,2015-09-12T07:00Z +Keep,93,2015,September,38,16,0,3,2,0,0,BB,THA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,93,2015,September,38,16,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2015-09-19,Fall,2015-09-16T07:00Z +Keep,76,2015,September,38,13,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,93.17,0,3,Check-Out,2015-09-19,Fall,2015-09-13T07:00Z +Keep,258,2015,September,38,17,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 245, NULL,0,Transient-Party,78.3,0,1,Check-Out,2015-09-19,Fall,2015-09-17T07:00Z +Keep,227,2015,September,38,15,0,5,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,71.69,0,1,Check-Out,2015-09-20,Fall,2015-09-15T07:00Z +Keep,193,2015,September,37,11,2,7,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Contract,84.58,0,0,Check-Out,2015-09-20,Fall,2015-09-11T07:00Z +Keep,355,2015,September,37,12,2,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,112.5,0,0,Check-Out,2015-09-20,Fall,2015-09-12T07:00Z +Keep,206,2015,September,38,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.68,0,0,Check-Out,2015-09-20,Fall,2015-09-13T07:00Z +Keep,146,2015,September,37,10,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,51.75,0,0,Check-Out,2015-09-20,Fall,2015-09-10T07:00Z +Keep,92,2015,September,38,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2015-09-20,Fall,2015-09-13T07:00Z +Keep,52,2015,September,38,17,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2015-09-20,Fall,2015-09-17T07:00Z +Keep,120,2015,September,38,15,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,112.6,1,1,Check-Out,2015-09-20,Fall,2015-09-15T07:00Z +Keep,7,2015,September,38,19,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,160,1,0,Check-Out,2015-09-20,Fall,2015-09-19T07:00Z +Keep,257,2015,September,38,15,0,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,50.15,0,0,Check-Out,2015-09-20,Fall,2015-09-15T07:00Z +Keep,252,2015,September,38,13,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,66.15,0,0,Check-Out,2015-09-20,Fall,2015-09-13T07:00Z +Keep,120,2015,September,38,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,0,Check-Out,2015-09-20,Fall,2015-09-16T07:00Z +Keep,295,2015,September,37,9,2,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.09,0,1,Check-Out,2015-09-20,Fall,2015-09-09T07:00Z +Keep,146,2015,September,37,10,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,66.15,0,0,Check-Out,2015-09-20,Fall,2015-09-10T07:00Z +Keep,258,2015,September,38,17,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,50.15,0,2,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,258,2015,September,38,17,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,52.15,0,2,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,239,2015,September,38,19,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 248, NULL,0,Transient-Party,0,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,293,2015,September,37,7,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,48.88,0,0,Check-Out,2015-09-21,Fall,2015-09-07T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 248, NULL,0,Transient-Party,59,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 248, NULL,0,Transient-Party,59,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,H,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,239,2015,September,38,19,1,1,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,0,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,164,2015,September,38,14,2,5,1,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 128, NULL,0,Contract,59.72,0,0,Check-Out,2015-09-21,Fall,2015-09-14T07:00Z +Keep,88,2015,September,38,16,1,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,93.17,0,1,Check-Out,2015-09-21,Fall,2015-09-16T07:00Z +Keep,88,2015,September,38,16,1,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,81.62,0,1,Check-Out,2015-09-21,Fall,2015-09-16T07:00Z +Keep,172,2015,September,38,14,2,5,2,0,0,HB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,72.25,0,1,Check-Out,2015-09-21,Fall,2015-09-14T07:00Z +Keep,179,2015,September,39,21,3,6,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,60.15,0,0,Check-Out,2015-09-30,Fall,2015-09-21T07:00Z +Keep,3,2015,September,38,17,1,3,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,132.75,0,0,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,36,2015,September,38,16,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,103,1,0,Check-Out,2015-09-21,Fall,2015-09-16T07:00Z +Keep,31,2015,September,38,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,102.6,1,1,Check-Out,2015-09-21,Fall,2015-09-17T07:00Z +Keep,239,2015,September,38,19,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 248, NULL,0,Transient-Party,80,0,0,Check-Out,2015-09-21,Fall,2015-09-19T07:00Z +Keep,107,2015,September,38,13,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,0,Check-Out,2015-09-22,Fall,2015-09-13T07:00Z +Keep,108,2015,September,38,13,4,5,2,1,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,131.67,0,2,Check-Out,2015-09-22,Fall,2015-09-13T07:00Z +Keep,85,2015,September,38,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,78.87,0,1,Check-Out,2015-09-22,Fall,2015-09-15T07:00Z +Keep,301,2015,September,37,12,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,98.6,0,0,Check-Out,2015-09-22,Fall,2015-09-12T07:00Z +Keep,172,2015,September,37,12,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,84,0,0,Check-Out,2015-09-22,Fall,2015-09-12T07:00Z +Keep,79,2015,September,38,18,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,140.25,0,1,Check-Out,2015-09-22,Fall,2015-09-18T07:00Z +Keep,138,2015,September,38,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83.6,1,2,Check-Out,2015-09-22,Fall,2015-09-17T07:00Z +Keep,208,2015,September,39,21,1,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,G,0,No Deposit , 250, NULL,0,Transient,92.9,1,0,Check-Out,2015-09-22,Fall,2015-09-21T07:00Z +Keep,148,2015,September,37,8,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,52.14,1,0,Check-Out,2015-09-22,Fall,2015-09-08T07:00Z +Keep,39,2015,September,39,20,2,0,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,C,H,0,No Deposit , 241, NULL,0,Transient,87.78,1,1,Check-Out,2015-09-22,Fall,2015-09-20T07:00Z +Keep,203,2015,September,38,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,50.15,0,1,Check-Out,2015-09-22,Fall,2015-09-15T07:00Z +Keep,257,2015,September,38,15,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Contract,62.48,0,1,Check-Out,2015-09-23,Fall,2015-09-15T07:00Z +Keep,78,2015,September,38,19,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.1,1,0,Check-Out,2015-09-23,Fall,2015-09-19T07:00Z +Keep,92,2015,September,38,18,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2015-09-23,Fall,2015-09-18T07:00Z +Keep,92,2015,September,38,18,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2015-09-23,Fall,2015-09-18T07:00Z +Keep,34,2015,September,39,21,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,85,2015,September,38,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Transient,105.2,1,0,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,33,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,28,2015,September,38,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,117.2,0,1,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Keep,34,2015,September,39,21,1,1,1,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,B,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,1,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,1,2015,September,39,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,106.2,0,1,Check-Out,2015-09-23,Fall,2015-09-22T07:00Z +Keep,0,2016,January,3,11,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,G,G,1,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,185,2015,September,39,21,1,1,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,90,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,138,2015,September,38,16,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,66.15,1,0,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Keep,70,2015,September,38,19,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,121.5,1,1,Check-Out,2015-09-23,Fall,2015-09-19T07:00Z +Keep,85,2015,September,38,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,56.98,0,1,Check-Out,2015-09-23,Fall,2015-09-16T07:00Z +Keep,185,2015,September,39,21,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-09-23,Fall,2015-09-21T07:00Z +Keep,160,2015,September,37,10,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.55,0,1,Check-Out,2015-09-24,Fall,2015-09-10T07:00Z +Keep,160,2015,September,37,10,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.55,0,2,Check-Out,2015-09-24,Fall,2015-09-10T07:00Z +Keep,258,2015,September,38,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,86.28,0,0,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Keep,163,2015,September,38,13,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.48,0,0,Check-Out,2015-09-24,Fall,2015-09-13T07:00Z +Keep,160,2015,September,37,10,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.48,0,0,Check-Out,2015-09-24,Fall,2015-09-10T07:00Z +Keep,167,2015,September,38,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 243, NULL,0,Contract,78.88,0,0,Check-Out,2015-09-24,Fall,2015-09-17T07:00Z +Keep,0,2015,September,39,21,1,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,F,3,No Deposit , NULL, NULL,0,Transient,129,1,0,Check-Out,2015-09-24,Fall,2015-09-21T07:00Z +Keep,305,2015,September,38,13,4,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 142, NULL,0,Contract,53.1,0,3,Check-Out,2015-09-24,Fall,2015-09-13T07:00Z +Keep,0,2015,September,39,23,0,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,98,1,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,115,2015,September,38,19,2,3,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 244, NULL,0,Transient,77,0,0,Check-Out,2015-09-24,Fall,2015-09-19T07:00Z +Keep,21,2015,September,39,23,0,1,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 110,0,Transient-Party,108.65,0,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,21,2015,September,39,23,0,1,2,0,0,HB,DEU,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 110,0,Transient-Party,108.65,0,0,Check-Out,2015-09-24,Fall,2015-09-23T07:00Z +Keep,77,2015,September,38,17,2,6,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Contract,91.25,0,1,Check-Out,2015-09-25,Fall,2015-09-17T07:00Z +Keep,66,2015,September,38,19,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient,155.33,1,1,Check-Out,2015-09-25,Fall,2015-09-19T07:00Z +Keep,253,2015,September,37,11,4,10,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 152, NULL,0,Transient,89.55,0,0,Check-Out,2015-09-25,Fall,2015-09-11T07:00Z +Keep,95,2015,September,38,18,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,101.5,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,168,2015,September,38,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,95.57,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,197,2015,September,38,15,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,66.15,0,0,Check-Out,2015-09-25,Fall,2015-09-15T07:00Z +Keep,211,2015,September,38,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,63.91,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,77,2015,September,38,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.86,0,1,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,93,2015,September,38,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,72.63,0,2,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,91.2,0,1,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,91.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , 183, NULL,0,Transient-Party,65.5,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,E,1,No Deposit , 183, NULL,0,Transient-Party,56.5,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,1,2015,September,39,22,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,129,1,0,Check-Out,2015-09-25,Fall,2015-09-22T07:00Z +Keep,262,2015,September,39,21,1,3,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , 183, NULL,0,Transient-Party,65.5,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,343,2016,September,39,21,0,4,2,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,E,2,No Deposit , 183, NULL,0,Transient-Party,61.5,0,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,91.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient-Party,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,99,2015,September,38,18,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,121,0,0,Check-Out,2015-09-25,Fall,2015-09-18T07:00Z +Keep,262,2015,September,39,21,1,3,2,0,0,HB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 183, NULL,0,Transient,89.2,0,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,37,2015,September,39,21,1,3,2,2,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,135,1,0,Check-Out,2015-09-25,Fall,2015-09-21T07:00Z +Keep,111,2015,September,38,13,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68.4,1,0,Check-Out,2015-09-25,Fall,2015-09-13T07:00Z +Keep,66,2015,September,39,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Group,80.1,1,2,Check-Out,2015-09-27,Fall,2015-09-25T07:00Z +Keep,43,2015,September,39,23,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,91,0,2,Check-Out,2015-09-25,Fall,2015-09-23T07:00Z +Keep,47,2015,September,39,22,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Contract,85.5,0,0,Check-Out,2015-09-25,Fall,2015-09-22T07:00Z +Keep,87,2015,September,38,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,99.5,0,1,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,234,2015,September,38,19,2,5,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,53.1,0,1,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,201,2015,September,38,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Transient,100.93,0,0,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,224,2015,September,37,12,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,86.28,0,0,Check-Out,2015-09-26,Fall,2015-09-12T07:00Z +Keep,81,2015,September,39,22,0,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,97,1,1,Check-Out,2015-09-26,Fall,2015-09-22T07:00Z +Keep,241,2015,September,39,20,2,4,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 246,0,Transient,74,0,0,Check-Out,2015-09-26,Fall,2015-09-20T07:00Z +Keep,83,2015,December,52,23,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,87.07,0,2,Check-Out,2015-12-26,Winter,2015-12-23T08:00Z +Keep,0,2015,September,39,23,0,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,172.33,1,0,Check-Out,2015-09-26,Fall,2015-09-23T07:00Z +Keep,65,2015,September,38,19,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,90.43,1,0,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Keep,27,2015,September,39,23,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,150,1,1,Check-Out,2015-09-26,Fall,2015-09-23T07:00Z +Keep,115,2015,September,38,19,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,58.41,0,1,Check-Out,2015-09-26,Fall,2015-09-19T07:00Z +Cancel,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Canceled,2015-09-26,Fall,2015-10-06T07:00Z +Cancel,212,2015,September,39,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,74.7,0,2,No-Show,2015-09-26,Fall,2015-09-26T07:00Z +Keep,125,2015,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.93,0,0,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,78,2015,September,38,17,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,100.9,0,1,Check-Out,2015-09-27,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.48,0,2,Check-Out,2015-09-27,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,48.88,0,2,Check-Out,2015-09-27,Fall,2015-09-17T07:00Z +Keep,170,2015,September,39,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.41,0,2,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,170,2015,September,39,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.41,0,2,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,170,2015,September,39,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.41,0,2,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,212,2015,September,39,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,74.7,0,2,Check-Out,2015-09-27,Fall,2015-09-26T07:00Z +Keep,115,2015,September,39,25,2,5,2,0,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,55.43,0,1,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,170,2015,September,39,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.98,0,2,Check-Out,2015-09-27,Fall,2015-09-20T07:00Z +Keep,77,2015,September,39,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Check-Out,2015-09-27,Fall,2015-09-24T07:00Z +Keep,11,2015,September,39,26,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,114,0,2,Check-Out,2015-09-27,Fall,2015-09-26T07:00Z +Keep,33,2015,September,38,19,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105.5,0,1,Check-Out,2015-09-27,Fall,2015-09-19T07:00Z +Keep,212,2015,September,39,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,74.7,0,2,Check-Out,2015-09-27,Fall,2015-09-26T07:00Z +Keep,166,2015,September,37,7,6,15,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 69, NULL,0,Contract,98.6,0,0,Check-Out,2015-09-28,Fall,2015-09-07T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient,74,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,64,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,64,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 208, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,207,2015,September,39,26,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient,74,0,0,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,257,2015,September,38,18,3,7,2,0,0,HB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,102.1,0,1,Check-Out,2015-09-28,Fall,2015-09-18T07:00Z +Keep,32,2015,September,39,20,3,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165,1,2,Check-Out,2015-09-28,Fall,2015-09-20T07:00Z +Keep,0,2015,September,39,25,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.1,1,1,Check-Out,2015-09-28,Fall,2015-09-25T07:00Z +Keep,0,2015,September,40,28,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Group,86.1,1,1,Check-Out,2015-09-30,Fall,2015-09-28T07:00Z +Keep,0,2015,September,40,28,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-09-28,Fall,2015-09-28T07:00Z +Keep,65,2015,September,39,23,1,4,2,0,0,SC,GBR,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 147, NULL,0,Transient,0,0,0,Check-Out,2015-09-28,Fall,2015-09-23T07:00Z +Keep,1,2015,September,39,26,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2015-09-28,Fall,2015-09-26T07:00Z +Keep,73,2015,September,40,28,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 242, NULL,0,Transient,76,0,1,Check-Out,2015-09-30,Fall,2015-09-28T07:00Z +Keep,43,2015,December,53,29,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,2,E,E,0,No Deposit , 115, NULL,0,Group,71.1,0,1,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,9,2016,April,16,13,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,3,D,E,1,No Deposit , 240, NULL,0,Transient,83,1,1,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,0,2016,April,16,14,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,F,0,No Deposit , NULL, NULL,0,Transient,95,1,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Cancel,272,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,41,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Cancel,272,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,41,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Cancel,272,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,41,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Cancel,272,2015,September,40,30,0,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,41,0,0,Canceled,2015-09-28,Fall,2015-09-30T07:00Z +Keep,185,2015,September,38,19,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,51.75,0,0,Check-Out,2015-09-29,Fall,2015-09-19T07:00Z +Keep,68,2015,September,39,24,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,69.91,1,1,Check-Out,2015-09-29,Fall,2015-09-24T07:00Z +Keep,2,2015,September,39,25,2,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,163,0,1,Check-Out,2015-09-29,Fall,2015-09-25T07:00Z +Keep,75,2015,September,39,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.71,1,2,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Keep,75,2015,September,39,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.14,0,2,Check-Out,2015-09-29,Fall,2015-09-22T07:00Z +Keep,0,2015,September,40,28,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,80,1,0,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,0,2015,September,40,28,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,94,1,0,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,29,2015,September,39,25,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,129,0,2,Check-Out,2015-09-29,Fall,2015-09-25T07:00Z +Keep,0,2015,September,40,28,1,0,2,1,0,BB,AUS,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,131,1,1,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,13,2015,September,40,28,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,82.23,1,0,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,193,2015,September,38,15,4,10,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,53.55,0,0,Check-Out,2015-09-29,Fall,2015-09-15T07:00Z +Keep,13,2015,September,40,28,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,56.98,0,1,Check-Out,2015-09-29,Fall,2015-09-28T07:00Z +Keep,130,2015,September,39,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60.43,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,34,2015,September,39,22,2,6,1,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 142, NULL,0,Contract,104.2,0,1,Check-Out,2015-09-30,Fall,2015-09-22T07:00Z +Keep,82,2015,September,39,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Transient,89.2,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,202,2015,September,39,23,2,5,2,1,0,BB,CHE,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,115.3,0,1,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,309,2015,September,39,23,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,2,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,225,2015,September,39,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,50.15,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,219,2015,September,39,23,2,5,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 156, NULL,0,Contract,53.1,0,3,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,222,2015,September,39,20,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,50.48,0,1,Check-Out,2015-09-30,Fall,2015-09-20T07:00Z +Keep,222,2015,September,39,20,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,48.88,0,1,Check-Out,2015-09-30,Fall,2015-09-20T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,266,2015,September,39,24,2,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,34,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,2,2015,September,40,27,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,95,1,0,Check-Out,2015-09-30,Fall,2015-09-27T07:00Z +Keep,93,2015,September,39,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,74.93,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,3,2015,September,39,20,4,6,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,91.6,0,1,Check-Out,2015-09-30,Fall,2015-09-20T07:00Z +Keep,160,2015,September,39,23,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient-Party,77.93,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,159,2015,September,39,23,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 275, NULL,0,Transient-Party,77.93,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,42,2015,September,39,23,2,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,89,0,0,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,123,2015,September,39,26,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.6,1,2,Check-Out,2015-09-30,Fall,2015-09-26T07:00Z +Keep,70,2015,September,39,23,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.57,0,1,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,266,2015,September,39,24,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,37.67,0,0,Check-Out,2015-09-30,Fall,2015-09-24T07:00Z +Keep,3,2015,September,40,29,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,74,0,0,Check-Out,2015-09-30,Fall,2015-09-29T07:00Z +Keep,46,2015,September,40,30,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,43.78,0,0,Check-Out,2015-10-08,Fall,2015-09-30T07:00Z +Keep,34,2015,September,39,22,2,6,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 142, NULL,0,Contract,117.2,0,1,Check-Out,2015-09-30,Fall,2015-09-22T07:00Z +Keep,131,2015,September,39,23,2,5,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2015-09-30,Fall,2015-09-23T07:00Z +Keep,236,2015,September,39,24,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,57.6,0,0,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,174,2015,September,39,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.56,0,0,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,174,2015,September,39,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,36.13,0,1,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,174,2015,September,39,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 243, NULL,0,Contract,37.56,0,1,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,0,2015,September,39,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,81.43,0,0,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,45.9,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,237,2016,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68,0,3,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,HB,OMN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68,0,3,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,106,2015,September,39,25,2,4,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 8, NULL,0,Contract,95.82,0,2,Check-Out,2015-10-01,Fall,2015-09-25T07:00Z +Keep,225,2015,September,39,23,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,37.83,0,0,Check-Out,2015-10-01,Fall,2015-09-23T07:00Z +Keep,227,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,36.13,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,45.9,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,153,2015,September,38,17,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,61.65,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,1,No Deposit , 243, NULL,0,Contract,65.9,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,61.65,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,246,2015,September,39,25,2,4,1,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,31.64,0,1,Check-Out,2015-10-01,Fall,2015-09-25T07:00Z +Keep,246,2015,September,39,25,2,4,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,43.74,0,1,Check-Out,2015-10-01,Fall,2015-09-25T07:00Z +Keep,52,2015,September,39,26,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.3,1,1,Check-Out,2015-10-01,Fall,2015-09-26T07:00Z +Keep,219,2015,September,39,23,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 156, NULL,0,Contract,37.83,0,2,Check-Out,2015-10-01,Fall,2015-09-23T07:00Z +Keep,130,2015,September,40,29,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2015-10-01,Fall,2015-09-29T07:00Z +Keep,97,2015,September,40,27,2,2,2,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,101.33,1,1,Check-Out,2015-10-01,Fall,2015-09-27T07:00Z +Keep,224,2015,September,39,23,2,6,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Contract,31.45,0,0,Check-Out,2015-10-01,Fall,2015-09-23T07:00Z +Keep,224,2015,September,39,23,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 156, NULL,0,Contract,51.7,0,3,Check-Out,2015-10-01,Fall,2015-09-23T07:00Z +Keep,174,2015,September,39,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.23,0,0,Check-Out,2015-10-01,Fall,2015-09-24T07:00Z +Keep,167,2015,September,38,17,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68,0,0,Check-Out,2015-10-01,Fall,2015-09-17T07:00Z +Keep,260,2015,September,38,18,4,10,1,0,0,HB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,45.9,0,1,Check-Out,2015-10-02,Fall,2015-09-18T07:00Z +Keep,115,2015,September,39,25,2,5,2,1,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,67.5,0,0,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,260,2015,September,38,18,4,10,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient,64.35,0,1,Check-Out,2015-10-02,Fall,2015-09-18T07:00Z +Keep,115,2015,September,39,25,2,5,2,0,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,58,1,0,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,58,2015,September,39,25,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,80,0,0,Check-Out,2015-10-02,Fall,2015-09-25T07:00Z +Keep,67,2015,September,40,28,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2015-10-02,Fall,2015-09-28T07:00Z +Keep,74,2015,September,40,28,1,3,1,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,52.67,0,1,Check-Out,2015-10-02,Fall,2015-09-28T07:00Z +Keep,0,2015,October,40,1,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,120,1,0,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Keep,60,2015,September,40,29,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 242, NULL,0,Transient,62,1,1,Check-Out,2015-10-02,Fall,2015-09-29T07:00Z +Keep,3,2015,October,40,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 28,0,Transient-Party,48,0,0,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Keep,0,2015,October,40,1,0,1,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,G,3,No Deposit , NULL, NULL,0,Transient-Party,120,1,2,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Keep,67,2015,September,40,28,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,70.84,0,1,Check-Out,2015-10-02,Fall,2015-09-28T07:00Z +Cancel,292,2015,October,43,21,0,2,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,2,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Canceled,2015-10-02,Fall,2015-10-21T07:00Z +Keep,0,2015,October,40,1,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,116,1,0,Check-Out,2015-10-02,Fall,2015-10-01T07:00Z +Cancel,7,2015,October,40,2,0,1,2,2,1,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,127,0,0,Canceled,2015-10-02,Fall,2015-10-02T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,E,E,0,Non Refund , 273, NULL,0,Transient,88,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,E,E,0,Non Refund , 273, NULL,0,Transient,88,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,2,0,0,HB,GBR,Groups,Direct, 0,1,0,D,D,0,Non Refund , 273, NULL,0,Transient,78.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,1,0,0,HB,GBR,Groups,Direct, 0,1,0,A,A,0,Non Refund , 273, NULL,0,Transient,48.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,1,0,0,HB,GBR,Groups,Direct, 0,1,0,A,A,0,Non Refund , 273, NULL,0,Transient,48.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,1,0,0,HB,GBR,Groups,Direct, 0,1,0,A,A,0,Non Refund , 273, NULL,0,Transient,48.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Cancel,277,2015,October,41,5,4,10,1,0,0,HB,GBR,Groups,Direct, 0,1,0,A,A,0,Non Refund , 273, NULL,0,Transient,48.5,0,0,Canceled,2015-10-02,Fall,2015-10-05T07:00Z +Keep,52,2015,September,39,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,72.43,0,1,Check-Out,2015-10-03,Fall,2015-09-26T07:00Z +Keep,272,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient-Party,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,3,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 256, NULL,0,Transient-Party,98,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 256, NULL,0,Transient-Party,58.5,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,272,2015,September,40,30,0,3,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 256, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,0,2015,October,40,2,0,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,120,1,0,Check-Out,2015-10-03,Fall,2015-10-02T07:00Z +Keep,272,2015,September,40,30,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 256, NULL,0,Transient,73,0,0,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,42,2015,September,40,28,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,75.8,0,0,Check-Out,2015-10-03,Fall,2015-09-28T07:00Z +Keep,64,2015,September,40,29,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,92.35,0,2,Check-Out,2015-10-03,Fall,2015-09-29T07:00Z +Keep,64,2015,September,40,29,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,91.35,0,2,Check-Out,2015-10-03,Fall,2015-09-29T07:00Z +Keep,169,2015,September,38,19,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-03,Fall,2015-09-19T07:00Z +Keep,78,2015,September,39,26,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.43,1,1,Check-Out,2015-10-03,Fall,2015-09-26T07:00Z +Keep,56,2015,September,40,30,0,3,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.8,1,2,Check-Out,2015-10-03,Fall,2015-09-30T07:00Z +Keep,54,2015,September,40,28,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 142, NULL,0,Contract,89.84,0,0,Check-Out,2015-10-03,Fall,2015-09-28T07:00Z +Keep,51,2015,October,40,1,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74.4,1,1,Check-Out,2015-10-03,Fall,2015-10-01T07:00Z +Keep,89,2015,September,40,27,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,68,1,0,Check-Out,2015-10-03,Fall,2015-09-27T07:00Z +Keep,0,2015,October,40,3,0,0,2,0,0,BB,ESP,Direct,Direct, 1,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2015-10-03,Fall,2015-10-03T07:00Z +Keep,268,2015,September,40,27,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,42.5,0,1,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,170,2015,September,39,20,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68,0,0,Check-Out,2015-10-04,Fall,2015-09-20T07:00Z +Keep,51,2015,September,40,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,54,0,1,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,138,2015,September,39,24,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,55.6,0,0,Check-Out,2015-10-04,Fall,2015-09-24T07:00Z +Keep,174,2015,September,39,24,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.73,0,0,Check-Out,2015-10-04,Fall,2015-09-24T07:00Z +Keep,89,2015,September,40,27,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.66,0,0,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,89,2015,September,39,20,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,110.43,0,0,Check-Out,2015-10-04,Fall,2015-09-20T07:00Z +Keep,0,2015,October,40,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,90,1,0,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,58,2015,September,40,28,1,5,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,67.38,0,1,Check-Out,2015-10-04,Fall,2015-09-28T07:00Z +Keep,55,2015,September,40,30,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,68.8,0,0,Check-Out,2015-10-04,Fall,2015-09-30T07:00Z +Keep,117,2015,September,40,28,1,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,37,0,0,Check-Out,2015-10-04,Fall,2015-09-28T07:00Z +Keep,28,2016,November,47,14,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 69, NULL,0,Transient,19.35,0,0,Check-Out,2016-11-21,Fall,2016-11-14T08:00Z +Keep,268,2015,September,40,27,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Contract,42.5,0,1,Check-Out,2015-10-04,Fall,2015-09-27T07:00Z +Keep,16,2015,October,40,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,137,0,2,Check-Out,2015-10-04,Fall,2015-10-03T07:00Z +Keep,172,2015,September,40,28,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,41.84,0,0,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,42,2015,September,40,28,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,29.75,0,0,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,269,2015,September,40,27,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Contract,56.95,0,0,Check-Out,2015-10-05,Fall,2015-09-27T07:00Z +Keep,1,2015,October,41,4,1,0,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,10,2015,September,40,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,65.12,0,0,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,74,2015,September,39,25,3,7,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98.8,1,1,Check-Out,2015-10-05,Fall,2015-09-25T07:00Z +Keep,0,2015,October,41,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,51,2015,October,40,1,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,3,Check-Out,2015-10-05,Fall,2015-10-01T07:00Z +Keep,78,2015,September,39,25,3,7,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 134, NULL,0,Transient,82,0,0,Check-Out,2015-10-05,Fall,2015-09-25T07:00Z +Keep,0,2015,October,41,4,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,66,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,4,1,0,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,86,1,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,44,2015,October,40,1,1,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,66.3,1,2,Check-Out,2015-10-05,Fall,2015-10-01T07:00Z +Keep,49,2015,September,40,29,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 242, NULL,0,Transient,105.67,0,1,Check-Out,2015-10-05,Fall,2015-09-29T07:00Z +Keep,53,2015,September,40,27,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.2,0,1,Check-Out,2015-10-05,Fall,2015-09-27T07:00Z +Keep,0,2015,October,41,4,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,66,0,0,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,1,2015,October,41,4,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,82,1,1,Check-Out,2015-10-05,Fall,2015-10-04T07:00Z +Keep,97,2015,September,40,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,63.79,0,2,Check-Out,2015-10-05,Fall,2015-09-28T07:00Z +Keep,202,2015,September,40,29,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,104.67,0,1,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,132,2015,September,40,29,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,37,0,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,230,2015,September,40,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,90.86,0,1,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,40,2015,September,40,29,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 142, NULL,0,Contract,90.63,1,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,64,2015,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 2, NULL,0,Contract,42.5,0,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,35,2015,September,40,29,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63.29,0,0,Check-Out,2015-10-06,Fall,2015-09-29T07:00Z +Keep,106,2015,September,39,26,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,65.35,0,0,Check-Out,2015-10-06,Fall,2015-09-26T07:00Z +Keep,0,2015,October,41,5,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,47,1,0,Check-Out,2015-10-06,Fall,2015-10-05T07:00Z +Keep,54,2015,September,40,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2015-10-06,Fall,2015-09-30T07:00Z +Keep,249,2015,October,41,4,2,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,56.4,1,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Keep,1,2015,October,41,4,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,5,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-06,Fall,2015-10-05T07:00Z +Keep,0,2015,October,41,4,2,0,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,4,2,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2015-10-06,Fall,2015-10-04T07:00Z +Keep,0,2015,October,41,5,1,0,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2015-10-06,Fall,2015-10-05T07:00Z +Keep,1,2015,October,41,6,0,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,67,0,0,Check-Out,2015-10-11,Fall,2015-10-06T07:00Z +Keep,86,2015,September,39,23,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,98.74,0,0,Check-Out,2015-10-07,Fall,2015-09-23T07:00Z +Keep,90,2015,September,39,23,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,54,0,0,Check-Out,2015-10-07,Fall,2015-09-23T07:00Z +Keep,1,2015,October,41,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2015-10-07,Fall,2015-10-06T07:00Z +Keep,1,2015,October,41,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,1,1,Check-Out,2015-10-07,Fall,2015-10-06T07:00Z +Keep,25,2015,October,41,5,1,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-07,Fall,2015-10-05T07:00Z +Keep,27,2015,October,41,7,2,7,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Group,67,0,1,Check-Out,2015-10-16,Fall,2015-10-07T07:00Z +Keep,50,2015,September,40,27,4,6,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,86.16,0,0,Check-Out,2015-10-07,Fall,2015-09-27T07:00Z +Keep,214,2015,October,40,2,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 258, NULL,0,Transient,41.4,0,0,Check-Out,2015-10-07,Fall,2015-10-02T07:00Z +Keep,192,2015,October,40,3,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,38.07,0,0,Check-Out,2015-10-07,Fall,2015-10-03T07:00Z +Keep,270,2015,September,40,28,3,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,52,0,0,Check-Out,2015-10-08,Fall,2015-09-28T07:00Z +Keep,84,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,80,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,50,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,61.65,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,50,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,63.08,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,45,2015,October,40,1,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,56,0,1,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,55,2015,October,40,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,39.68,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,77,2015,September,40,28,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.1,0,0,Check-Out,2015-10-08,Fall,2015-09-28T07:00Z +Keep,112,2015,September,40,28,3,7,2,0,0,HB,POL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,111.8,0,0,Check-Out,2015-10-08,Fall,2015-09-28T07:00Z +Keep,55,2015,October,40,1,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,31.5,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,4,2015,October,41,6,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,43,1,0,Check-Out,2015-10-08,Fall,2015-10-06T07:00Z +Keep,34,2015,September,40,28,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.95,0,0,Check-Out,2015-10-08,Fall,2015-09-28T07:00Z +Keep,315,2015,September,40,29,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,71.26,0,0,Check-Out,2015-10-08,Fall,2015-09-29T07:00Z +Keep,80,2015,September,40,27,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 243, NULL,0,Contract,85.14,0,0,Check-Out,2015-10-08,Fall,2015-09-27T07:00Z +Keep,7,2015,October,41,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 319,0,Transient,81,0,0,Check-Out,2015-10-08,Fall,2015-10-07T07:00Z +Keep,3,2016,November,48,20,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 319,0,Transient,52.8,0,0,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,80,2015,September,40,27,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,55.64,0,1,Check-Out,2015-10-08,Fall,2015-09-27T07:00Z +Keep,83,2015,October,41,6,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-08,Fall,2015-10-06T07:00Z +Keep,0,2015,October,41,5,1,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,F,2,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2015-10-08,Fall,2015-10-05T07:00Z +Keep,53,2015,October,41,4,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , 250, NULL,0,Transient,65.4,1,2,Check-Out,2015-10-08,Fall,2015-10-04T07:00Z +Keep,273,2015,October,41,4,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Contract,48.6,0,0,Check-Out,2015-10-08,Fall,2015-10-04T07:00Z +Keep,69,2015,October,40,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Transient,73.43,0,2,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,1,2015,October,41,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,93,1,0,Check-Out,2015-10-08,Fall,2015-10-06T07:00Z +Keep,50,2015,October,40,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,50.03,0,0,Check-Out,2015-10-08,Fall,2015-10-01T07:00Z +Keep,20,2015,October,40,2,2,5,2,0,0,BB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,44.5,0,1,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,182,2015,October,40,2,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 2, NULL,0,Transient,43.2,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,35,2015,September,40,28,3,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,61.7,0,0,Check-Out,2015-10-09,Fall,2015-09-28T07:00Z +Keep,82,2015,September,40,29,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.5,0,1,Check-Out,2015-10-09,Fall,2015-09-29T07:00Z +Keep,67,2015,October,41,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.4,0,1,Check-Out,2015-10-09,Fall,2015-10-04T07:00Z +Keep,21,2015,October,41,7,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,47,0,1,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,53,2015,September,40,29,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,0,Check-Out,2015-10-09,Fall,2015-09-29T07:00Z +Keep,216,2015,September,40,30,2,7,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 105, NULL,0,Transient,145.02,1,0,Check-Out,2015-10-09,Fall,2015-09-30T07:00Z +Keep,64,2015,September,40,29,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,79.8,0,0,Check-Out,2015-10-09,Fall,2015-09-29T07:00Z +Keep,246,2015,October,41,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 251, NULL,0,Transient-Party,41.4,0,0,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,239,2015,October,40,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.13,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,246,2015,October,41,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 251, NULL,0,Transient-Party,41.4,0,0,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,0,2015,October,41,5,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,0,2015,October,41,5,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,246,2015,October,41,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 251, NULL,0,Transient-Party,41.4,0,0,Check-Out,2015-10-09,Fall,2015-10-08T07:00Z +Keep,0,2015,October,41,5,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,13,2015,October,41,7,0,2,2,0,0,FB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2015-10-09,Fall,2015-10-07T07:00Z +Keep,0,2015,October,41,5,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,0,2015,October,41,5,1,3,1,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 174,0,Transient-Party,76,1,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,19,2015,October,41,5,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 156, NULL,0,Transient,42.28,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,62,2015,October,41,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-09,Fall,2015-10-04T07:00Z +Keep,1,2015,October,41,6,0,3,1,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,76,0,0,Check-Out,2015-10-09,Fall,2015-10-06T07:00Z +Keep,47,2015,October,41,5,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 15, NULL,0,Transient,46.5,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,89,2015,October,41,5,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,0,2015,October,41,5,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-09,Fall,2015-10-05T07:00Z +Keep,239,2015,September,40,29,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,40.7,0,0,Check-Out,2015-10-09,Fall,2015-09-29T07:00Z +Keep,69,2015,October,41,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-09,Fall,2015-10-04T07:00Z +Keep,224,2015,October,40,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,45.9,0,0,Check-Out,2015-10-09,Fall,2015-10-02T07:00Z +Keep,90,2015,October,41,5,1,4,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,0,Check-Out,2015-10-10,Fall,2015-10-05T07:00Z +Keep,207,2015,September,40,29,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,59.89,0,1,Check-Out,2015-10-10,Fall,2015-09-29T07:00Z +Keep,88,2015,October,41,5,1,4,2,0,0,BB,CN,Complementary,TA/TO, 0,0,0,A,C,1,No Deposit , 96, NULL,0,Transient,6,1,0,Check-Out,2015-10-10,Fall,2015-10-05T07:00Z +Keep,253,2015,October,40,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,54.4,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,53,2015,October,40,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,47.33,0,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,4,2015,October,41,7,0,3,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,67,0,0,Check-Out,2015-10-10,Fall,2015-10-07T07:00Z +Keep,7,2015,October,41,7,0,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,70.5,0,1,Check-Out,2015-10-10,Fall,2015-10-07T07:00Z +Keep,0,2015,October,41,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,67,0,0,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Keep,12,2015,October,40,3,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,116.71,0,1,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,59,2015,October,40,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,67.14,1,0,Check-Out,2015-10-10,Fall,2015-10-03T07:00Z +Keep,55,2015,October,41,5,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 314, NULL,0,Contract,52.8,0,0,Check-Out,2015-10-10,Fall,2015-10-05T07:00Z +Keep,53,2015,October,41,5,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,59.6,0,2,Check-Out,2015-10-10,Fall,2015-10-05T07:00Z +Keep,16,2015,October,41,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient-Party,48,0,0,Check-Out,2015-10-10,Fall,2015-10-09T07:00Z +Keep,7,2015,October,44,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 274,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 274,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 274,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 274,0,Transient,58.5,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,3,2017,March,10,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , NULL, 274,0,Transient,35,0,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,43,2015,October,41,7,0,4,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Contract,80,0,1,Check-Out,2015-10-11,Fall,2015-10-07T07:00Z +Keep,9,2015,October,41,8,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,0,Contract,37.8,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,31,2015,October,41,6,0,5,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2015-10-11,Fall,2015-10-06T07:00Z +Keep,11,2015,October,41,10,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,4,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,59,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,50,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,532,2015,October,40,2,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,47.46,0,0,Check-Out,2015-10-11,Fall,2015-10-02T07:00Z +Keep,7,2015,October,41,9,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Contract,50,0,1,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,24,2015,October,41,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,73,1,2,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,17,2015,October,41,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient,48,0,0,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,99,2015,October,41,10,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,16,2015,October,41,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 274,0,Transient-Party,48,0,0,Check-Out,2015-10-11,Fall,2015-10-09T07:00Z +Keep,7,2015,October,44,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 274,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,1,2015,October,41,5,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Group,74.82,0,1,Check-Out,2015-10-11,Fall,2015-10-05T07:00Z +Keep,236,2015,October,41,4,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,50.03,0,1,Check-Out,2015-10-11,Fall,2015-10-04T07:00Z +Keep,5,2015,October,41,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,31,2015,October,41,8,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,80,0,1,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,11,2015,October,41,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , 281, NULL,0,Contract,37.8,0,0,Check-Out,2015-10-11,Fall,2015-10-10T07:00Z +Keep,59,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 281, NULL,50,Contract,45,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,44,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Contract,50,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,33,2015,October,41,8,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,33,2015,October,41,8,0,3,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,67.5,0,0,Check-Out,2015-10-11,Fall,2015-10-08T07:00Z +Keep,221,2015,October,41,10,1,1,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,39,2015,October,40,2,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,71.3,0,0,Check-Out,2015-10-12,Fall,2015-10-02T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,64,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 208, NULL,0,Transient-Party,74,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,221,2015,October,41,10,1,1,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,1,2015,October,42,11,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,2,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,8,2015,October,41,7,1,4,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , 281, NULL,0,Contract,72,0,0,Check-Out,2015-10-12,Fall,2015-10-07T07:00Z +Keep,3,2015,October,42,11,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,83.16,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,35,2015,October,41,6,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 171, NULL,0,Transient,52.5,1,0,Check-Out,2015-10-12,Fall,2015-10-06T07:00Z +Keep,0,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,19,2015,October,41,10,1,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,66.3,0,0,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,49,2015,October,41,7,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2015-10-12,Fall,2015-10-07T07:00Z +Keep,12,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,61.5,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,9,2015,October,41,8,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80.25,1,0,Check-Out,2015-10-12,Fall,2015-10-08T07:00Z +Keep,5,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,61.5,0,2,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Cancel,283,2015,October,42,12,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,75.86,0,0,Canceled,2015-10-12,Fall,2015-10-12T07:00Z +Keep,36,2015,October,41,6,1,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121.17,1,0,Check-Out,2015-10-12,Fall,2015-10-06T07:00Z +Keep,0,2015,October,42,11,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,17,2015,October,41,8,1,3,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 193, NULL,0,Transient,53,1,0,Check-Out,2015-10-12,Fall,2015-10-08T07:00Z +Keep,16,2015,October,41,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61.5,0,1,Check-Out,2015-10-12,Fall,2015-10-10T07:00Z +Keep,2,2015,October,42,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,1,2015,October,42,11,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50.4,0,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,1,2015,October,42,11,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,12,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 1,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,106,0,1,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,0,2015,October,42,11,1,0,2,2,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,G,H,0,No Deposit , 240, NULL,0,Transient,106,1,0,Check-Out,2015-10-12,Fall,2015-10-11T07:00Z +Cancel,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,1,0,A,I,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Canceled,2015-10-12,Fall,2015-10-15T07:00Z +Keep,0,2015,October,42,12,0,0,2,1,0,BB,PRT,Corporate,Corporate, 1,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-10-12,Fall,2015-10-12T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,77.29,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,50.16,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,123,2015,October,41,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,43.3,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.41,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,0,2015,October,42,12,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,277,2015,October,41,6,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,50.16,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,E,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,110,2015,October,41,6,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.8,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,153,2015,September,40,29,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,80.54,0,0,Check-Out,2015-10-13,Fall,2015-09-29T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 146, NULL,0,Group,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,40,1,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,40,1,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,12,2016,May,21,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 184, 146,0,Group,70,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,13,2016,October,44,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,A,0,No Deposit , 146, NULL,0,Transient,39,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,27,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,E,0,No Deposit , 146, NULL,0,Group,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,40,1,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,40,1,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,8,2015,October,41,7,2,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 281, NULL,0,Contract,45,0,0,Check-Out,2015-10-13,Fall,2015-10-07T07:00Z +Keep,5,2015,October,42,12,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 9,0,Transient,48,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,3,2015,December,50,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,5,2016,May,19,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 9,0,Transient,42,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,4,2016,September,40,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 9,0,Transient,59,0,0,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,0,2017,January,2,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Cancel,0,2017,January,4,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,D,0,No Deposit , NULL, 9,0,Transient,35,0,0,No-Show,2017-01-26,Winter,2017-01-26T08:00Z +Keep,10,2017,February,6,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,5,A,D,0,No Deposit , NULL, 9,0,Transient,35,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,18,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 146, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,E,0,No Deposit , 146, NULL,0,Group,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,18,2015,October,42,12,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,40,1,0,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,11,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,E,0,No Deposit , 146, NULL,0,Group,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,4,2015,October,42,12,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,37,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,44,2015,October,40,3,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,77.84,0,0,Check-Out,2015-10-13,Fall,2015-10-03T07:00Z +Keep,2,2015,October,42,12,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,5,2015,October,41,10,2,1,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,45.6,0,1,Check-Out,2015-10-13,Fall,2015-10-10T07:00Z +Keep,120,2015,October,41,6,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,152,2015,October,42,12,1,0,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,44,2015,October,40,1,4,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,78.5,0,1,Check-Out,2015-10-13,Fall,2015-10-01T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,123,2015,October,41,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,43.3,0,1,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,201,2016,May,21,16,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,0,D,D,3,No Deposit , 115, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-22,Spring,2016-05-16T07:00Z +Keep,38,2015,October,40,2,4,7,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2015-10-13,Fall,2015-10-02T07:00Z +Keep,0,2015,October,42,12,1,0,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,54,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,0,2016,February,6,1,1,1,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,56,2015,October,42,12,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42.3,0,2,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,22,2016,January,4,20,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2015,October,42,12,1,0,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,54,0,0,Check-Out,2015-10-13,Fall,2015-10-12T07:00Z +Keep,285,2015,October,42,13,0,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,1,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2015-10-13,Fall,2015-10-13T07:00Z +Keep,285,2015,October,42,14,0,0,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,1,No Deposit , 273, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-14,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,0,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,1,A,I,2,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2015-10-15,Fall,2015-10-15T07:00Z +Keep,6,2015,October,42,11,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,52.8,0,0,Check-Out,2015-10-14,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,13,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,53,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,2,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 195,0,Transient,42,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,193,2015,October,42,13,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,46,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,14,2015,October,42,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,62,1,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,16,2015,October,42,14,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,October,42,13,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,74.4,1,1,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,13,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 126, NULL,0,Transient,42.3,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,1,2016,November,48,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 126, NULL,0,Transient,41,1,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2015,October,42,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,204,2015,October,41,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Contract,55.46,1,0,Check-Out,2015-10-14,Fall,2015-10-07T07:00Z +Keep,0,2015,October,42,13,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,82,1,0,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,2,2015,October,42,12,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,6,2015,October,42,12,1,1,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,108,0,0,Check-Out,2015-10-14,Fall,2015-10-12T07:00Z +Keep,1,2015,October,42,13,0,1,2,0,0,BB,DOM,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,1,2015,October,42,13,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,8,2015,October,42,11,2,1,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2015-10-14,Fall,2015-10-11T07:00Z +Keep,5,2015,October,42,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,66,0,2,Check-Out,2015-10-14,Fall,2015-10-13T07:00Z +Keep,10,2015,October,42,11,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,38.12,0,0,Check-Out,2015-10-15,Fall,2015-10-11T07:00Z +Keep,22,2015,October,41,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.12,0,0,Check-Out,2015-10-15,Fall,2015-10-08T07:00Z +Keep,49,2015,October,41,5,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,56.4,0,1,Check-Out,2015-10-15,Fall,2015-10-05T07:00Z +Keep,0,2015,October,42,13,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-10-15,Fall,2015-10-13T07:00Z +Keep,1,2015,October,42,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.4,1,1,Check-Out,2015-10-15,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,14,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,E,3,No Deposit , NULL, 223,0,Transient-Party,44.5,0,2,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,167,2015,October,42,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-15,Fall,2015-10-13T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,2,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,172,2015,October,43,18,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,28,2015,October,42,14,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,47,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,0,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,12,2015,October,42,12,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,1,1,Check-Out,2015-10-15,Fall,2015-10-12T07:00Z +Keep,5,2015,October,41,10,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.2,0,0,Check-Out,2015-10-15,Fall,2015-10-10T07:00Z +Keep,2,2015,October,42,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 159,0,Transient,37,1,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,October,42,12,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2015-10-15,Fall,2015-10-12T07:00Z +Keep,5,2015,October,42,11,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50.4,0,1,Check-Out,2015-10-15,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,12,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,76.67,1,1,Check-Out,2015-10-15,Fall,2015-10-12T07:00Z +Keep,286,2015,October,42,14,0,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,0,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,0,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2015-10-15,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2015-10-15,Fall,2015-10-15T07:00Z +Keep,20,2015,October,42,11,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.12,0,1,Check-Out,2015-10-15,Fall,2015-10-11T07:00Z +Keep,167,2015,October,40,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,50.03,0,0,Check-Out,2015-10-15,Fall,2015-10-01T07:00Z +Keep,4,2015,October,42,13,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,76,0,2,Check-Out,2015-10-15,Fall,2015-10-13T07:00Z +Keep,0,2015,October,42,12,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,1,1,Check-Out,2015-10-15,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,46.5,1,1,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,67,2015,October,42,11,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.4,0,1,Check-Out,2015-10-15,Fall,2015-10-11T07:00Z +Keep,0,2015,October,42,14,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient,54,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 20,0,Transient-Party,13,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2015,October,42,14,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient,54,0,0,Check-Out,2015-10-15,Fall,2015-10-14T07:00Z +Keep,141,2015,October,42,11,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,62.8,0,0,Check-Out,2015-10-16,Fall,2015-10-11T07:00Z +Keep,141,2015,October,42,11,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,62.8,0,0,Check-Out,2015-10-16,Fall,2015-10-11T07:00Z +Keep,7,2015,October,42,12,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,1,Non Refund , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,7,2015,October,42,12,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,7,2015,October,42,12,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,53,2015,October,42,13,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Contract,58.8,1,0,Check-Out,2015-10-16,Fall,2015-10-13T07:00Z +Keep,7,2015,October,42,12,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,7,2015,October,42,12,1,3,2,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 174,0,Transient-Party,109,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,7,2015,October,42,12,1,3,1,0,0,FB,PRT,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 174,0,Transient-Party,76,0,0,Check-Out,2015-10-16,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,0,1,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-16,Fall,2015-10-15T07:00Z +Keep,7,2015,October,42,12,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60.4,0,2,Check-Out,2015-10-17,Fall,2015-10-12T07:00Z +Keep,39,2015,October,41,9,2,6,2,2,1,BB,MKD,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,108.75,0,1,Check-Out,2015-10-17,Fall,2015-10-09T07:00Z +Keep,8,2015,October,42,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,83,1,0,Check-Out,2015-10-17,Fall,2015-10-15T07:00Z +Keep,127,2015,October,42,11,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,62.04,0,1,Check-Out,2015-10-18,Fall,2015-10-11T07:00Z +Keep,287,2015,October,42,15,0,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,62.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,125,2015,October,43,18,1,0,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,36,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,3,2015,October,43,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,174,2015,October,41,8,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,1,No Deposit , 243, NULL,0,Contract,70.6,0,0,Check-Out,2015-10-18,Fall,2015-10-08T07:00Z +Keep,287,2015,October,42,15,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,0,2015,October,43,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,50.5,1,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,46.5,1,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,7,2015,October,42,15,0,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,5,2015,October,41,10,2,6,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,42,0,0,Check-Out,2015-10-18,Fall,2015-10-10T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,84,2015,October,42,15,0,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,83.62,0,2,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,130,2015,October,42,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,92.4,0,0,Check-Out,2015-10-18,Fall,2015-10-16T07:00Z +Keep,0,2015,October,42,17,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,96,0,0,Check-Out,2015-10-18,Fall,2015-10-17T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,275,2015,October,41,4,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Contract,47.33,0,0,Check-Out,2015-10-18,Fall,2015-10-04T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,G,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,73,2015,October,43,18,2,3,2,0,0,BB,BEL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,3,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,7,2015,October,42,15,0,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,73,2015,October,43,18,2,3,2,0,0,BB,BEL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,3,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,3,2015,October,43,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,3,2015,October,43,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,59,2015,October,43,18,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-18,Fall,2015-10-15T07:00Z +Keep,58,2015,October,43,18,2,2,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-22,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,49,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,52.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,50.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,286,2015,October,42,14,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,52.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.02,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,286,2015,October,42,14,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,0,2015,October,43,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,40.75,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,62.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,62.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,39,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,52.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 223,0,Transient-Party,46.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,50.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,70.16,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,62.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,IRL,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,77.29,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.41,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.41,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.41,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,77.57,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,B,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,0,2015,October,43,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,2,2015,October,42,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,87.5,1,1,Check-Out,2015-10-19,Fall,2015-10-17T07:00Z +Keep,287,2015,October,42,15,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,62.5,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,0,2015,October,42,17,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,73,1,0,Check-Out,2015-10-19,Fall,2015-10-17T07:00Z +Keep,1,2016,July,29,16,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,142,1,0,Check-Out,2016-07-18,Summer,2016-07-16T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,ROU,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,43.41,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.02,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,41.98,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,283,2015,October,42,12,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.31,0,0,Check-Out,2015-10-19,Fall,2015-10-12T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,62.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Cancel,8,2015,October,43,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,0,A,A,0,No Deposit , NULL, 135,0,Transient,48,0,0,Canceled,2015-10-19,Fall,2015-10-24T07:00Z +Keep,287,2015,October,42,15,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,43,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,73,2015,October,42,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,70.5,0,2,Check-Out,2015-10-19,Fall,2015-10-17T07:00Z +Keep,52,2016,December,50,8,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,D,D,1,No Deposit , 250, NULL,0,Transient,62.2,0,2,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,9,2015,October,42,14,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,48.2,0,1,Check-Out,2015-10-19,Fall,2015-10-14T07:00Z +Keep,153,2015,October,42,14,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Contract,57.6,0,1,Check-Out,2015-10-19,Fall,2015-10-14T07:00Z +Keep,0,2015,October,43,18,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2015-10-19,Fall,2015-10-18T07:00Z +Keep,6,2015,October,42,13,1,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,73.33,1,3,Check-Out,2015-10-19,Fall,2015-10-13T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,285,2015,October,42,13,1,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,G,1,No Deposit , NULL, 223,0,Transient-Party,43.08,1,0,Check-Out,2015-10-19,Fall,2015-10-13T07:00Z +Keep,168,2016,March,14,30,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,1,A,I,4,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-04-05,Spring,2016-03-30T07:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 1,0,2,D,F,2,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,52,1,0,Check-Out,2015-10-19,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,2,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,56,0,0,Check-Out,2015-10-20,Fall,2015-10-15T07:00Z +Keep,236,2015,October,42,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,57.6,0,0,Check-Out,2015-10-20,Fall,2015-10-13T07:00Z +Keep,236,2015,October,42,13,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,57.6,0,1,Check-Out,2015-10-20,Fall,2015-10-13T07:00Z +Keep,287,2015,October,42,15,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-20,Fall,2015-10-15T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,8,0,0,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,46.17,0,0,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,3,2015,October,43,19,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2015-10-20,Fall,2015-10-19T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,2,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,287,2015,October,42,15,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,50.5,1,0,Check-Out,2015-10-20,Fall,2015-10-15T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,C,C,1,No Deposit , NULL, 223,0,Transient-Party,9.67,0,0,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,2,Check-Out,2015-10-20,Fall,2015-10-14T07:00Z +Keep,16,2015,October,43,19,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,1,0,Check-Out,2015-10-20,Fall,2015-10-19T07:00Z +Keep,278,2015,October,41,6,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,45.9,0,1,Check-Out,2015-10-20,Fall,2015-10-06T07:00Z +Keep,1,2015,October,43,21,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,D,0,No Deposit , NULL, 286,0,Transient,0,0,0,Check-Out,2015-10-21,Fall,2015-10-21T07:00Z +Cancel,3,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Canceled,2016-02-01,Winter,2016-02-01T08:00Z +Keep,0,2016,April,15,4,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,E,0,No Deposit , NULL, 286,0,Transient-Party,50,0,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,0,2017,March,12,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,A,0,No Deposit , NULL, 286,0,Transient,60,0,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,1,2015,October,43,21,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,D,0,No Deposit , NULL, 286,0,Transient,0,0,0,Check-Out,2015-10-21,Fall,2015-10-21T07:00Z +Cancel,3,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 286,0,Transient-Party,39,0,0,Canceled,2016-02-01,Winter,2016-02-01T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,A,0,No Deposit , NULL, 286,0,Transient,30,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,April,15,4,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,E,0,No Deposit , NULL, 286,0,Transient-Party,50,0,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,285,2015,October,42,13,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Contract,39.1,0,0,Check-Out,2015-10-21,Fall,2015-10-13T07:00Z +Keep,76,2015,October,42,13,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,71.23,0,2,Check-Out,2015-10-21,Fall,2015-10-13T07:00Z +Keep,92,2015,October,42,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.91,0,1,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,93,2015,October,42,14,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,211,2015,October,42,14,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,57.43,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,85,2015,October,42,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.2,0,2,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,0,2015,October,42,14,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient,0,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,G,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,G,2,No Deposit , NULL, 223,0,Transient-Party,41.29,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,286,2015,October,42,14,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,45.93,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,6,2015,October,42,13,2,6,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.13,1,0,Check-Out,2015-10-21,Fall,2015-10-13T07:00Z +Keep,7,2015,October,43,19,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,285,2015,October,42,13,2,6,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-21,Fall,2015-10-13T07:00Z +Keep,7,2015,October,43,19,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,0,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,139,2015,October,41,7,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,5,No Deposit , 314, NULL,0,Transient,80.23,0,0,Check-Out,2015-10-21,Fall,2015-10-07T07:00Z +Keep,0,2015,October,43,20,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,19,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42.3,0,1,Check-Out,2015-10-21,Fall,2015-10-19T07:00Z +Keep,286,2015,October,42,14,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 223,0,Transient,44.5,0,0,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,4,2015,October,43,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56.4,1,1,Check-Out,2015-10-21,Fall,2015-10-20T07:00Z +Keep,11,2015,October,42,14,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116.71,1,3,Check-Out,2015-10-21,Fall,2015-10-14T07:00Z +Keep,0,2015,October,43,18,2,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,99,0,0,Check-Out,2015-10-21,Fall,2015-10-18T07:00Z +Keep,287,2015,October,42,15,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient,44.5,0,0,Check-Out,2015-10-21,Fall,2015-10-15T07:00Z +Keep,287,2015,October,42,15,2,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient,44.5,0,0,Check-Out,2015-10-21,Fall,2015-10-15T07:00Z +Keep,157,2015,October,43,18,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2015-10-22,Fall,2015-10-18T07:00Z +Keep,4,2015,October,43,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,4,2015,December,49,1,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,2,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 380,0,Transient,30,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,6,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,1,No Deposit , NULL, 380,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,7,2016,April,15,6,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 380,0,Transient,42,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,21,2016,May,20,10,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , NULL, 380,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,30,2016,September,40,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,1,No Deposit , NULL, 380,0,Transient,65,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,5,2016,October,43,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,1,No Deposit , NULL, 380,0,Transient,45,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,6,2016,November,48,23,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 380,0,Transient,30,0,0,Check-Out,2016-11-25,Fall,2016-11-23T08:00Z +Keep,8,2017,January,5,31,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,0,No Deposit , NULL, 380,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-01-31T08:00Z +Cancel,0,2017,February,9,27,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,D,0,No Deposit , NULL, 380,0,Transient,35,0,0,No-Show,2017-02-27,Winter,2017-02-27T08:00Z +Keep,20,2017,May,22,30,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,10,A,A,1,No Deposit , NULL, 380,0,Transient,75,0,1,Check-Out,2017-06-01,Spring,2017-05-30T07:00Z +Keep,0,2015,October,43,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 323,0,Transient,48,0,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,1,2016,May,20,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,F,0,No Deposit , NULL, 323,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,1,2017,March,10,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 323,0,Transient,35,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,9,2017,March,12,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,1,2017,May,19,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,E,0,No Deposit , NULL, 323,0,Transient,45,0,0,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,11,2015,October,43,20,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47,1,0,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,1,2015,October,43,21,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,35,2015,October,43,19,1,2,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,9,2015,October,42,15,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,74.57,0,1,Check-Out,2015-10-22,Fall,2015-10-15T07:00Z +Keep,2,2015,October,43,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,16,2015,October,43,21,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,0,2015,October,43,19,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 92,0,Transient,40,0,0,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,0,2017,January,5,31,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 511,0,Transient,35,0,0,Check-Out,2017-02-03,Winter,2017-01-31T08:00Z +Keep,1,2017,February,6,7,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,1,No Deposit , NULL, 511,0,Transient,35,0,1,Check-Out,2017-02-10,Winter,2017-02-07T08:00Z +Keep,2,2015,October,43,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,1,0,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,5,2015,November,46,9,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,54,1,0,Check-Out,2015-11-11,Fall,2015-11-09T08:00Z +Keep,1,2016,January,5,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,24,2016,June,25,12,2,2,3,1,0,BB,PRT,Corporate,Corporate, 1,0,3,H,H,0,No Deposit , NULL, 407,0,Transient,187.6,1,3,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,287,2015,October,42,15,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient,44.5,0,0,Check-Out,2015-10-22,Fall,2015-10-15T07:00Z +Keep,5,2015,October,43,20,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 134, NULL,0,Transient,44.5,0,0,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,0,2015,October,43,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2015-10-22,Fall,2015-10-21T07:00Z +Keep,101,2015,October,43,19,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,67.5,0,2,Check-Out,2015-10-22,Fall,2015-10-19T07:00Z +Keep,215,2015,October,42,12,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,57.6,0,0,Check-Out,2015-10-22,Fall,2015-10-12T07:00Z +Keep,223,2015,October,42,15,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,56.95,0,0,Check-Out,2015-10-22,Fall,2015-10-15T07:00Z +Keep,215,2015,October,42,12,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,59.2,0,0,Check-Out,2015-10-22,Fall,2015-10-12T07:00Z +Keep,0,2015,October,43,20,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2015-10-22,Fall,2015-10-20T07:00Z +Keep,287,2015,October,42,15,2,6,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-23,Fall,2015-10-15T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,2,No Deposit , 208, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 208, NULL,0,Transient-Party,60,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,292,2015,October,43,21,0,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 208, NULL,0,Transient-Party,70,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,34,2015,October,43,18,2,3,3,0,0,BB,NZL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,73.08,0,1,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,10,2015,October,43,20,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2015-10-23,Fall,2015-10-20T07:00Z +Keep,8,2015,October,43,18,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,77.4,0,1,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,28,2015,October,43,19,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,43,1,2,Check-Out,2015-10-23,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,21,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,106,0,0,Check-Out,2015-10-23,Fall,2015-10-21T07:00Z +Keep,75,2015,October,43,19,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,2,Check-Out,2015-10-23,Fall,2015-10-19T07:00Z +Keep,36,2015,October,43,18,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,38.04,0,0,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,32,2015,October,42,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,58.93,0,1,Check-Out,2015-10-23,Fall,2015-10-16T07:00Z +Keep,287,2015,October,42,15,2,6,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44.5,0,0,Check-Out,2015-10-23,Fall,2015-10-15T07:00Z +Keep,24,2015,October,43,18,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,75.08,0,1,Check-Out,2015-10-23,Fall,2015-10-18T07:00Z +Keep,33,2015,October,42,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,71.39,0,1,Check-Out,2015-10-24,Fall,2015-10-17T07:00Z +Keep,48,2015,October,43,18,2,4,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 40, NULL,0,Contract,40.8,0,0,Check-Out,2015-10-24,Fall,2015-10-18T07:00Z +Keep,113,2015,October,43,18,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,37,0,1,Check-Out,2015-10-24,Fall,2015-10-18T07:00Z +Keep,113,2015,October,43,18,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,35,0,1,Check-Out,2015-10-24,Fall,2015-10-18T07:00Z +Keep,113,2015,October,43,18,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,35,0,1,Check-Out,2015-10-24,Fall,2015-10-18T07:00Z +Keep,5,2015,October,43,19,1,4,1,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,2,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,47,2015,October,43,19,1,4,1,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,47,Transient-Party,76.8,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,5,2015,October,43,19,1,4,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,1,2015,October,43,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83,1,1,Check-Out,2015-10-24,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,20,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-10-24,Fall,2015-10-20T07:00Z +Keep,43,2015,October,43,20,0,4,1,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42.3,1,1,Check-Out,2015-10-24,Fall,2015-10-20T07:00Z +Keep,25,2015,October,43,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2015-10-24,Fall,2015-10-23T07:00Z +Keep,91,2015,October,43,19,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2015-10-24,Fall,2015-10-19T07:00Z +Keep,29,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Transient,35.6,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,7,2015,October,43,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,7,2015,October,43,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,7,2015,October,43,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,86,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,50.03,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,0,2015,October,43,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,0,2015,October,43,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,121,2015,October,43,18,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,35,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,121,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,43.93,0,0,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,0,2015,October,43,24,0,1,2,0,0,BB,PRI,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,0,2015,October,43,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,1,2015,October,43,24,0,1,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-10-25,Fall,2015-10-24T07:00Z +Keep,62,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,46.5,0,1,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,55,2015,October,43,21,0,4,2,0,0,HB,MYS,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,76.84,0,2,Check-Out,2015-10-25,Fall,2015-10-21T07:00Z +Keep,11,2015,October,43,23,0,2,1,0,0,BB,CHE,Complementary,TA/TO, 0,0,0,F,G,0,No Deposit , 253, NULL,0,Transient,0,0,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,62,2015,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,44.18,0,1,Check-Out,2015-10-25,Fall,2015-10-18T07:00Z +Keep,25,2015,October,43,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,44,2015,October,43,21,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Contract,70.5,0,0,Check-Out,2015-10-25,Fall,2015-10-21T07:00Z +Keep,10,2015,October,43,23,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,107,1,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,7,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,77,1,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,89,2015,October,43,19,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,66,1,0,Check-Out,2015-10-25,Fall,2015-10-19T07:00Z +Keep,29,2015,October,43,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,62,1,1,Check-Out,2015-10-25,Fall,2015-10-23T07:00Z +Keep,44,2015,October,43,19,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,96.21,0,1,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,44,2015,October,43,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,70.5,0,1,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,163,2015,October,43,23,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,47,0,1,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Keep,0,2015,October,43,23,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,47,0,1,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Keep,163,2015,October,43,23,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,47,0,1,Check-Out,2015-10-26,Fall,2015-10-23T07:00Z +Keep,51,2015,October,43,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,51,2015,October,43,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47,0,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,51,2015,October,43,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47,0,1,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,52,2015,October,43,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,64.88,0,0,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,0,2015,October,43,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2015-10-26,Fall,2015-10-24T07:00Z +Keep,38,2015,October,43,22,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2015-10-26,Fall,2015-10-22T07:00Z +Keep,107,2015,October,43,19,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,76.43,0,3,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,105,2015,October,43,19,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 147, NULL,0,Transient,63.14,0,1,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,146,2015,October,43,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48.43,0,2,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,146,2015,October,43,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,146,2015,October,43,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48.43,0,2,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,0,2015,October,44,25,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-10-26,Fall,2015-10-25T07:00Z +Keep,77,2015,October,43,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,36,0,0,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,146,2015,October,43,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,146,2015,October,43,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47,0,2,Check-Out,2015-10-26,Fall,2015-10-19T07:00Z +Keep,108,2015,October,43,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,36,0,1,Check-Out,2015-10-27,Fall,2015-10-20T07:00Z +Keep,84,2015,October,43,21,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66.67,0,2,Check-Out,2015-10-27,Fall,2015-10-21T07:00Z +Keep,36,2015,October,43,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,41.33,0,1,Check-Out,2015-10-27,Fall,2015-10-20T07:00Z +Keep,3,2015,October,44,26,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,31.2,1,0,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,4,2015,November,49,30,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,1,No Deposit , 6, NULL,0,Transient,25,1,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,3,2016,January,2,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,D,0,No Deposit , 8, NULL,0,Transient,25,1,0,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,7,2016,April,15,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 314, NULL,0,Transient-Party,40.32,1,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,3,2016,May,23,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,A,0,No Deposit , 5, NULL,0,Transient,62,1,0,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,4,2016,November,48,21,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,5,A,D,0,No Deposit , 8, NULL,0,Transient,30,0,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,0,2015,October,44,26,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35.1,0,0,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,1,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,1,2016,March,12,18,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,4,A,A,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,4,2016,March,13,23,0,1,1,1,0,BB,PRT,Direct,Direct, 1,0,5,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,0,2016,June,25,13,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,6,D,D,0,No Deposit , NULL, NULL,0,Transient,111,0,0,Check-Out,2016-06-14,Summer,2016-06-13T07:00Z +Keep,1,2016,July,29,12,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,7,A,E,0,No Deposit , NULL, 421,0,Transient,143,0,1,Check-Out,2016-07-13,Summer,2016-07-12T07:00Z +Keep,4,2016,October,44,28,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,8,A,A,0,No Deposit , NULL, 421,0,Transient,54.9,0,1,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,0,2015,October,44,26,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,0,2015,October,44,26,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,39,0,1,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,188,2015,October,43,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,57.6,0,0,Check-Out,2015-10-27,Fall,2015-10-20T07:00Z +Keep,1,2015,October,44,26,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,35.1,0,1,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,0,2015,October,44,26,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2015-10-27,Fall,2015-10-26T07:00Z +Keep,0,2015,October,44,27,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-10-27,Fall,2015-10-27T07:00Z +Keep,48,2015,October,43,21,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,86,0,3,Check-Out,2015-10-28,Fall,2015-10-21T07:00Z +Keep,40,2015,October,43,20,2,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,42.5,0,0,Check-Out,2015-10-28,Fall,2015-10-20T07:00Z +Keep,122,2015,October,43,18,4,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45,0,0,Check-Out,2015-10-28,Fall,2015-10-18T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,31.2,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2017,January,2,11,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,21,2015,October,44,26,1,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,77.4,0,2,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Keep,5,2015,October,44,26,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Keep,5,2015,October,44,26,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 94, NULL,0,Transient-Party,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,November,48,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,0,2015,December,52,21,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,46,0,1,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,0,2016,January,4,20,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,March,10,3,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,0,2016,April,15,6,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,6,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,5,2015,October,44,26,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,37,0,0,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Keep,7,2016,January,4,18,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,B,0,No Deposit , 94, NULL,0,Transient-Party,42,1,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,43,2015,October,43,24,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,38.04,0,0,Check-Out,2015-10-28,Fall,2015-10-24T07:00Z +Keep,41,2015,October,43,18,4,6,2,1,0,BB,FRA,Direct,Direct, 0,0,0,C,H,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,1,Check-Out,2015-10-28,Fall,2015-10-18T07:00Z +Keep,5,2015,October,44,26,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,40,1,0,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Cancel,33,2015,November,45,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Keep,6,2016,April,15,6,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,D,2,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2015,October,44,26,1,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,65.6,0,0,Check-Out,2015-10-28,Fall,2015-10-26T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2015,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 47, NULL,0,Transient,48,0,0,Check-Out,2015-10-28,Fall,2015-10-27T07:00Z +Keep,0,2016,April,18,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,101,2015,October,43,22,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 175, NULL,0,Transient,36.86,0,0,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,42.5,0,1,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,115,2015,October,43,22,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Transient,73.43,0,2,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,0,2015,October,44,26,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,48,0,0,Check-Out,2015-10-29,Fall,2015-10-26T07:00Z +Keep,0,2015,November,46,9,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-11-11,Fall,2015-11-09T08:00Z +Keep,0,2015,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,0,2016,September,38,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 47,0,Transient,65,0,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,0,2016,November,45,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,C,1,No Deposit , NULL, 47,0,Transient,27,0,0,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,1,2017,March,11,14,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,B,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2017-03-17,Spring,2017-03-14T07:00Z +Keep,38,2015,October,43,22,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 243, NULL,0,Transient,76.93,0,1,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,2,2015,October,44,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Cancel,2,2016,February,6,3,0,1,1,0,0,BB,PRT,Direct,Direct, 1,1,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Canceled,2016-02-02,Winter,2016-02-03T08:00Z +Keep,7,2016,March,10,1,0,1,1,0,0,BB,PRT,Direct,Direct, 1,1,1,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,45,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,43.93,0,1,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,121,2015,October,43,18,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,44.14,0,2,Check-Out,2015-10-29,Fall,2015-10-18T07:00Z +Keep,0,2015,October,44,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 325,0,Transient-Party,48,1,0,Check-Out,2015-10-29,Fall,2015-10-28T07:00Z +Keep,9,2015,October,43,24,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,78.2,0,0,Check-Out,2015-10-29,Fall,2015-10-24T07:00Z +Keep,22,2015,October,44,27,0,2,1,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,37.6,0,1,Check-Out,2015-10-29,Fall,2015-10-27T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,54,0,2,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Keep,21,2015,October,43,22,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,43.93,0,2,Check-Out,2015-10-29,Fall,2015-10-22T07:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-10-29,Fall,2015-11-20T08:00Z +Keep,14,2015,October,44,26,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-26T07:00Z +Keep,0,2015,November,48,23,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-11-26,Fall,2015-11-23T08:00Z +Keep,6,2015,December,50,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-12-11,Winter,2015-12-09T08:00Z +Keep,10,2015,December,52,21,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2015-12-23,Winter,2015-12-21T08:00Z +Keep,0,2016,January,4,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,E,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,24,2016,May,22,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,1,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-05-25,Spring,2016-05-23T07:00Z +Keep,0,2015,October,44,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,1,2015,November,45,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Cancel,1,2015,November,46,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,F,0,No Deposit , NULL, 88,0,Transient,35,0,0,Canceled,2015-11-11,Fall,2015-11-11T08:00Z +Keep,0,2015,November,46,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,F,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2015-11-13,Fall,2015-11-12T08:00Z +Keep,0,2015,November,48,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,F,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,0,2015,November,49,30,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,4,A,A,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,5,A,D,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2015,December,53,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,6,A,A,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2016,January,4,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,7,A,D,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,8,A,A,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,9,A,D,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,10,A,D,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,11,A,A,0,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,12,A,D,0,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,0,2016,April,15,7,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,13,A,D,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,13,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,14,A,B,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,1,2016,April,17,22,0,0,1,0,0,BB,PRT,Direct,Corporate, 1,1,15,A,A,0,No Deposit , 47, NULL,0,Transient,0,0,0,Check-Out,2016-04-22,Spring,2016-04-22T07:00Z +Keep,0,2016,May,19,4,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,16,A,A,0,No Deposit , 47, NULL,0,Transient,42,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,0,2016,May,23,31,0,2,1,0,0,BB,PRT,Direct,Corporate, 1,1,17,A,A,0,No Deposit , 47, NULL,0,Transient,57,0,0,Check-Out,2016-06-02,Spring,2016-05-31T07:00Z +Keep,0,2016,June,27,29,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,18,A,C,0,No Deposit , 47, NULL,0,Transient,57,0,0,Check-Out,2016-06-30,Summer,2016-06-29T07:00Z +Keep,1,2016,August,32,3,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,1,19,A,A,0,No Deposit , 47, NULL,0,Transient,126,0,0,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,0,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,20,A,F,0,No Deposit , 88, NULL,0,Group,42,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,21,A,D,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2016,December,53,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,22,A,D,0,No Deposit , 88, NULL,0,Transient,30,0,0,Check-Out,2016-12-29,Winter,2016-12-28T08:00Z +Keep,0,2017,January,2,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,23,A,D,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,24,A,D,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2017,April,15,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,25,A,F,0,No Deposit , 88, NULL,0,Transient,45,0,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,0,2017,June,22,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,26,A,A,0,No Deposit , NULL, 88,0,Transient,75,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,0,2015,October,44,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,5,2015,October,44,27,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,31.2,0,0,Check-Out,2015-10-30,Fall,2015-10-27T07:00Z +Keep,61,2015,October,44,29,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 251, NULL,0,Transient,46,0,1,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,7,2015,October,44,28,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,58.8,1,1,Check-Out,2015-10-30,Fall,2015-10-28T07:00Z +Keep,1,2015,October,44,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 118,0,Transient,48,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,1,2016,March,10,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 118,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,1,2015,October,44,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.1,0,0,Check-Out,2015-10-30,Fall,2015-10-29T07:00Z +Keep,0,2015,October,44,26,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,48,0,2,Check-Out,2015-10-30,Fall,2015-10-26T07:00Z +Keep,5,2015,October,44,27,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,38.4,0,0,Check-Out,2015-10-30,Fall,2015-10-27T07:00Z +Keep,129,2015,October,44,25,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,45,0,2,Check-Out,2015-10-31,Fall,2015-10-25T07:00Z +Keep,5,2015,October,44,25,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56.48,0,1,Check-Out,2015-10-31,Fall,2015-10-25T07:00Z +Keep,79,2015,October,44,29,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.5,1,1,Check-Out,2015-10-31,Fall,2015-10-29T07:00Z +Keep,79,2015,October,44,29,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,1,Check-Out,2015-10-31,Fall,2015-10-29T07:00Z +Keep,8,2015,October,44,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,8,2015,October,44,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,1,2015,October,44,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,88,2015,October,43,24,2,5,2,2,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,96.43,0,1,Check-Out,2015-10-31,Fall,2015-10-24T07:00Z +Keep,103,2015,October,43,24,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,76.12,0,0,Check-Out,2015-10-31,Fall,2015-10-24T07:00Z +Keep,88,2015,October,44,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,50.03,0,2,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,0,2015,October,44,30,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,37.73,0,1,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,115,2015,October,44,25,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Contract,37.67,0,2,Check-Out,2015-10-31,Fall,2015-10-25T07:00Z +Keep,130,2015,October,43,24,2,5,2,2,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,G,0,No Deposit , 2, NULL,0,Contract,130.07,0,1,Check-Out,2015-10-31,Fall,2015-10-24T07:00Z +Keep,130,2015,October,43,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,3,No Deposit , 2, NULL,0,Contract,87.64,0,1,Check-Out,2015-10-31,Fall,2015-10-24T07:00Z +Keep,9,2015,October,44,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,82,1,1,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,9,2015,October,44,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,76,0,1,Check-Out,2015-10-31,Fall,2015-10-30T07:00Z +Keep,0,2015,October,44,28,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,5,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-10-31,Fall,2015-10-28T07:00Z +Keep,0,2015,October,44,28,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-10-31,Fall,2015-10-28T07:00Z +Cancel,155,2015,October,44,31,1,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Canceled,2015-10-31,Fall,2015-10-31T07:00Z +Keep,9,2016,October,44,29,2,1,2,0,0,BB,PRT,Groups,Direct, 1,1,0,A,A,2,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,101,2015,October,43,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 243, NULL,0,Contract,62.5,0,0,Check-Out,2015-11-01,Fall,2015-10-18T07:00Z +Keep,20,2015,October,44,27,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,50.8,1,0,Check-Out,2015-11-01,Fall,2015-10-27T07:00Z +Keep,48,2015,October,44,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.5,0,1,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,48,2015,October,44,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.5,0,1,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,159,2015,October,44,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,43.93,0,1,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,111,2015,October,43,18,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 40, NULL,0,Transient,81.79,0,0,Check-Out,2015-11-01,Fall,2015-10-18T07:00Z +Keep,3,2015,October,44,31,0,1,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,3,2015,October,44,31,0,1,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,153,2015,October,44,29,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,153,2015,October,44,29,0,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,154,2015,October,44,30,0,2,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,2,2015,October,44,31,0,1,2,0,0,BB,CHE,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,42,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,0,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,H,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,153,2015,October,44,29,0,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,155,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,2,2015,October,44,30,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,153,2015,October,44,29,0,3,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-01,Fall,2015-10-29T07:00Z +Keep,4,2015,October,44,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-30T07:00Z +Keep,4,2015,October,44,31,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,42,1,0,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,88,2015,October,44,25,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,61.73,0,3,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,74,2015,October,44,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,39.68,0,0,Check-Out,2015-11-01,Fall,2015-10-25T07:00Z +Keep,1,2015,October,44,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2015-11-01,Fall,2015-10-31T07:00Z +Keep,2,2016,February,8,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,2,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Cancel,33,2015,November,45,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,No-Show,2015-11-01,Fall,2015-11-01T07:00Z +Keep,6,2016,November,47,14,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,1,0,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,17,2015,October,44,29,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72.75,0,1,Check-Out,2015-11-02,Fall,2015-10-29T07:00Z +Keep,58,2016,September,40,25,2,4,2,0,0,BB,NLD,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,2,Check-Out,2016-10-01,Fall,2016-09-25T07:00Z +Keep,11,2015,October,44,30,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient-Party,56,1,1,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,0,2015,November,45,1,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50.1,1,0,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Keep,1,2015,October,44,31,1,1,2,1,0,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,72,1,0,Check-Out,2015-11-02,Fall,2015-10-31T07:00Z +Keep,0,2015,November,45,1,1,0,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Group,81.9,0,0,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Keep,3,2015,October,44,30,1,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-11-02,Fall,2015-10-30T07:00Z +Keep,6,2015,November,45,1,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-11-02,Fall,2015-11-01T07:00Z +Keep,5,2015,October,44,27,1,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.99,0,1,Check-Out,2015-11-02,Fall,2015-10-27T07:00Z +Keep,3,2015,October,44,27,2,5,2,1,0,HB,FIN,Online travel agent,TA/TO, 0,0,0,H,G,1,No Deposit , 240, NULL,0,Transient,146,1,3,Check-Out,2015-11-03,Fall,2015-10-27T07:00Z +Keep,0,2015,November,45,2,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2015-11-03,Fall,2015-11-02T08:00Z +Keep,74,2015,October,44,30,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.74,0,1,Check-Out,2015-11-03,Fall,2015-10-30T07:00Z +Keep,0,2015,November,45,1,2,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-11-03,Fall,2015-11-01T07:00Z +Keep,6,2015,November,45,1,2,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-11-04,Fall,2015-11-01T07:00Z +Keep,6,2015,November,45,1,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-11-04,Fall,2015-11-01T07:00Z +Keep,1,2015,November,45,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,1,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,4,2015,November,45,2,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 1, NULL,0,Transient,25,0,0,Check-Out,2015-11-04,Fall,2015-11-02T08:00Z +Keep,0,2015,November,45,2,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-04,Fall,2015-11-02T08:00Z +Keep,0,2016,January,4,18,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-20,Winter,2016-01-18T08:00Z +Keep,0,2015,November,45,2,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2015-11-04,Fall,2015-11-02T08:00Z +Keep,4,2015,November,45,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,0,Check-Out,2015-11-04,Fall,2015-11-03T08:00Z +Keep,0,2015,November,45,3,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,6,2015,November,45,3,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.1,0,1,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,5,2016,January,2,5,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-07,Winter,2016-01-05T08:00Z +Keep,4,2016,February,7,10,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,D,0,No Deposit , NULL, 371,0,Transient,30,0,2,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,11,2016,March,10,4,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,A,0,No Deposit , NULL, 371,0,Transient,35,0,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,3,2016,March,11,8,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,A,A,0,No Deposit , NULL, 371,0,Transient-Party,30,0,1,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,10,2016,May,19,3,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,5,A,A,0,No Deposit , NULL, 371,0,Transient,42,0,1,Check-Out,2016-05-05,Spring,2016-05-03T07:00Z +Keep,113,2015,October,44,31,2,3,2,0,0,BB,SWE,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,42.28,0,0,Check-Out,2015-11-05,Fall,2015-10-31T07:00Z +Keep,0,2015,November,45,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 278,0,Transient-Party,40,1,0,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Keep,0,2015,November,45,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Keep,0,2015,November,45,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2015-11-06,Fall,2015-11-04T08:00Z +Keep,1,2015,November,45,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,1,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Keep,1,2016,February,7,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 339, NULL,0,Transient,25,1,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2016,October,44,26,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Direct, 1,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,6,2015,November,45,3,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.1,0,1,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,1,2015,November,45,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,28,2015,November,45,4,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,36,0,0,Check-Out,2015-11-05,Fall,2015-11-04T08:00Z +Keep,9,2015,November,45,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-11-05,Fall,2015-11-02T08:00Z +Keep,21,2017,April,16,17,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,1,2015,November,45,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,53,2015,November,45,1,2,2,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,70.2,0,2,Check-Out,2015-11-05,Fall,2015-11-01T07:00Z +Keep,1,2015,November,45,3,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-05,Fall,2015-11-03T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2015,November,45,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,63,1,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,121,2015,November,45,1,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46,0,1,Check-Out,2015-11-06,Fall,2015-11-01T07:00Z +Keep,0,2015,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,48,1,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,3,2015,November,45,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2015-11-06,Fall,2015-11-05T08:00Z +Keep,27,2015,November,45,3,0,3,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2015-11-06,Fall,2015-11-03T08:00Z +Keep,14,2015,November,45,3,0,3,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-11-06,Fall,2015-11-03T08:00Z +Keep,5,2015,November,45,3,0,3,1,0,0,BB,FRA,Complementary,TA/TO, 0,0,0,F,F,1,No Deposit , 182, NULL,0,Transient,0,1,0,Check-Out,2015-11-06,Fall,2015-11-03T08:00Z +Keep,29,2015,November,45,1,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,33.3,0,1,Check-Out,2015-11-07,Fall,2015-11-01T07:00Z +Keep,17,2015,November,45,6,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,99,2015,October,44,29,2,7,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,42.6,1,1,Check-Out,2015-11-07,Fall,2015-10-29T07:00Z +Keep,0,2015,November,45,6,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,29,2015,November,45,7,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, NULL,0,Transient,85.25,1,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,11,2015,November,45,2,1,4,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-07,Fall,2015-11-02T08:00Z +Keep,59,2015,November,45,1,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,1,1,Check-Out,2015-11-07,Fall,2015-11-01T07:00Z +Keep,15,2015,November,45,1,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2015-11-07,Fall,2015-11-01T07:00Z +Keep,45,2015,October,44,31,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.71,0,1,Check-Out,2015-11-07,Fall,2015-10-31T07:00Z +Keep,7,2015,November,45,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2015-11-07,Fall,2015-11-06T08:00Z +Keep,20,2015,November,45,4,0,3,2,0,0,BB,NOR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,48,0,1,Check-Out,2015-11-07,Fall,2015-11-04T08:00Z +Keep,16,2016,November,45,2,0,3,2,0,0,BB,NOR,Direct,Direct, 1,0,1,D,D,1,No Deposit , 250, NULL,0,Transient,55.08,0,3,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,1,2015,November,45,5,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,48,0,1,Check-Out,2015-11-07,Fall,2015-11-05T08:00Z +Keep,19,2015,November,45,2,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49.2,1,1,Check-Out,2015-11-07,Fall,2015-11-02T08:00Z +Keep,13,2015,November,45,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,58.13,0,0,Check-Out,2015-11-08,Fall,2015-11-01T07:00Z +Keep,1,2015,November,45,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,4,2015,November,45,6,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,83.5,0,1,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,34,2015,November,45,1,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,31.63,0,2,Check-Out,2015-11-08,Fall,2015-11-01T07:00Z +Keep,1,2015,November,45,5,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,1,2,Check-Out,2015-11-08,Fall,2015-11-05T08:00Z +Keep,1,2015,November,45,6,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,68.7,0,0,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,269,2015,November,45,7,0,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,49.5,0,0,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,69,2016,November,47,19,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.83,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,1,2015,November,45,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,23,2016,December,49,3,0,1,2,2,0,BB,ESP,Direct,TA/TO, 1,0,1,G,G,0,No Deposit , 250, NULL,0,Transient,100,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,23,2015,November,45,2,1,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 324, 324,0,Transient,86.4,0,0,Check-Out,2015-11-08,Fall,2015-11-02T08:00Z +Keep,39,2015,November,45,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,29.06,0,0,Check-Out,2015-11-08,Fall,2015-11-01T07:00Z +Keep,4,2015,November,45,6,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,68.5,0,1,Check-Out,2015-11-08,Fall,2015-11-06T08:00Z +Keep,94,2015,November,45,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.23,0,1,Check-Out,2015-11-08,Fall,2015-11-01T07:00Z +Keep,18,2015,November,45,7,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 321, NULL,0,Transient,36,1,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,170,2015,November,45,2,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Contract,25.92,0,0,Check-Out,2015-11-08,Fall,2015-11-02T08:00Z +Keep,2,2015,November,45,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,27,0,0,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,1,2015,November,45,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient,31,0,0,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,2,2015,November,45,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient,27,0,0,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,0,2015,November,45,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-08,Fall,2015-11-07T08:00Z +Keep,20,2015,November,45,2,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 69, NULL,0,Transient,29,0,0,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,20,2015,November,45,2,2,5,3,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 69, NULL,0,Transient,36.9,0,1,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,20,2015,November,45,2,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 69, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,305,2015,November,45,5,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-11-09,Fall,2015-11-05T08:00Z +Keep,0,2015,November,45,5,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2015-11-09,Fall,2015-11-05T08:00Z +Keep,22,2015,November,45,5,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,39.33,0,0,Check-Out,2015-11-09,Fall,2015-11-05T08:00Z +Keep,13,2015,November,45,1,3,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-09,Fall,2015-11-01T07:00Z +Keep,0,2015,November,46,8,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2015-11-09,Fall,2015-11-08T08:00Z +Keep,0,2015,November,46,8,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2015-11-09,Fall,2015-11-08T08:00Z +Keep,11,2015,November,45,2,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,30.6,0,0,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,31,2015,November,45,2,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,5,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-09,Fall,2015-11-02T08:00Z +Keep,0,2015,November,46,9,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2015-11-10,Fall,2015-11-09T08:00Z +Keep,4,2015,November,45,7,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,88,0,3,Check-Out,2015-11-10,Fall,2015-11-07T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-11-10,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-11-10,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-11-10,Fall,2015-11-20T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,FB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,69,0,0,Canceled,2015-11-10,Fall,2015-11-20T08:00Z +Keep,0,2015,November,46,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,1,2015,November,46,8,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,52.4,1,0,Check-Out,2015-11-11,Fall,2015-11-08T08:00Z +Keep,0,2015,November,46,10,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,68,1,0,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,32,2015,November,46,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,1,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2015-11-11,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,9,1,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-11-11,Fall,2015-11-09T08:00Z +Keep,0,2015,November,46,10,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2015-11-12,Fall,2015-11-10T08:00Z +Keep,0,2015,November,46,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Keep,2,2015,November,46,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Keep,3,2015,November,46,8,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2015-11-12,Fall,2015-11-08T08:00Z +Keep,1,2015,November,46,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Keep,0,2015,November,46,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2015-11-12,Fall,2015-11-11T08:00Z +Keep,34,2015,November,45,2,3,7,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 115, NULL,0,Transient,56.7,0,0,Check-Out,2015-11-12,Fall,2015-11-02T08:00Z +Keep,6,2015,November,46,9,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-11-13,Fall,2015-11-09T08:00Z +Keep,1,2015,November,45,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,41.48,0,0,Check-Out,2015-11-13,Fall,2015-11-06T08:00Z +Keep,31,2015,November,46,10,0,4,3,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 281,0,Transient-Party,54,0,0,Check-Out,2015-11-14,Fall,2015-11-10T08:00Z +Keep,31,2015,November,46,10,0,4,2,1,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 281,0,Transient-Party,54,0,0,Check-Out,2015-11-14,Fall,2015-11-10T08:00Z +Keep,65,2015,November,46,8,2,4,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2015-11-14,Fall,2015-11-08T08:00Z +Keep,33,2015,November,46,12,0,2,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,4,No Deposit , 324, 324,0,Transient-Party,36,0,0,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Keep,21,2015,November,46,12,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,1,No Deposit , 324, 324,0,Transient-Party,48,0,0,Check-Out,2015-11-14,Fall,2015-11-12T08:00Z +Keep,5,2015,November,46,11,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.73,1,1,Check-Out,2015-11-14,Fall,2015-11-11T08:00Z +Keep,109,2015,November,46,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,80.8,1,2,Check-Out,2015-11-14,Fall,2015-11-13T08:00Z +Keep,109,2015,November,46,13,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,74.8,0,2,Check-Out,2015-11-14,Fall,2015-11-13T08:00Z +Keep,26,2015,November,45,7,2,5,3,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,97.3,0,1,Check-Out,2015-11-14,Fall,2015-11-07T08:00Z +Keep,26,2015,November,45,7,2,6,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,56,0,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,39,2015,November,46,10,0,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,42,1,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,USA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,14,2015,November,46,12,0,3,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,F,2,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,89,2015,November,46,9,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,0,No Deposit , 314, NULL,0,Contract,62.16,1,1,Check-Out,2015-11-15,Fall,2015-11-09T08:00Z +Keep,3,2015,November,46,10,0,5,2,0,0,BB,CHL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,71.2,1,0,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,15,2015,November,46,13,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,16,2015,November,46,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-11-15,Fall,2015-11-14T08:00Z +Keep,29,2015,November,46,10,0,5,2,1,0,BB,ESP,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 281,0,Transient,60,0,1,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,28,2015,November,45,7,2,6,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 328, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,28,2015,November,45,7,2,6,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 328, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,30,2015,November,46,9,1,5,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,4,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-15,Fall,2015-11-09T08:00Z +Keep,42,2015,November,46,10,0,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,H,H,3,No Deposit , 250, NULL,0,Transient,114,1,0,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,37.43,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,BEL,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,27,2015,November,45,6,2,7,2,0,0,BB,MEX,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 334, 281,0,Transient-Party,49.11,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,54,2015,November,45,7,2,6,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,90,1,3,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,54,2015,November,45,7,2,6,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,78,0,3,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,24,2015,November,45,3,2,10,2,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 326, 281,0,Transient-Party,49.5,1,0,Check-Out,2015-11-15,Fall,2015-11-03T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,65,2015,November,46,8,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,65,2015,November,46,8,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,30,2015,November,45,1,4,10,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,49.2,0,0,Check-Out,2015-11-15,Fall,2015-11-01T07:00Z +Keep,25,2017,April,14,2,2,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,E,E,1,No Deposit , NULL, 281,0,Transient-Party,50,0,0,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,31,2015,November,45,2,3,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,31,2015,November,45,2,3,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,26,2017,April,14,3,1,3,1,0,0,BB,AUT,Corporate,Corporate, 1,0,1,E,E,3,No Deposit , NULL, 281,0,Group,50,0,0,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,26,2015,November,45,7,2,6,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,56,0,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,37,2015,November,45,7,2,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,37,2015,November,45,7,2,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60.2,1,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,31,2015,November,45,2,3,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,2,2015,November,46,13,0,2,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,129,0,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Keep,36,2015,November,45,7,2,6,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,31,2015,November,45,2,3,10,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,4,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,35,2015,November,45,6,2,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,31,2015,November,45,2,3,10,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,4,No Deposit , 185, 281,0,Transient-Party,43.2,0,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,179,2015,November,46,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,26.33,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,163,2015,November,45,7,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,0,2015,November,46,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-15,Fall,2015-11-14T08:00Z +Keep,35,2015,November,45,6,2,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,2,2015,November,46,14,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-11-15,Fall,2015-11-14T08:00Z +Keep,8,2015,November,46,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2015-11-15,Fall,2015-11-13T08:00Z +Keep,35,2015,November,45,6,2,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,35,2015,November,45,6,2,7,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,0,2015,November,46,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2015-11-15,Fall,2015-11-14T08:00Z +Keep,36,2015,November,45,7,2,6,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,53.45,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,27,2015,November,46,10,0,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,1,1,Check-Out,2015-11-15,Fall,2015-11-10T08:00Z +Keep,41,2015,November,46,12,0,3,2,0,0,BB,AUT,Corporate,Corporate, 0,0,0,A,D,3,No Deposit , 185, 281,0,Transient-Party,49.2,1,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,41,2015,November,46,12,0,3,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-15,Fall,2015-11-12T08:00Z +Keep,31,2015,November,45,2,3,10,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-02T08:00Z +Keep,12,2015,November,45,7,2,6,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,50.66,1,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,54,2015,November,45,7,2,6,2,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,76,1,3,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,163,2015,November,45,7,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Cancel,1,2016,February,9,22,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,No-Show,2016-02-22,Winter,2016-02-22T08:00Z +Keep,0,2015,November,46,8,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,34,2015,November,45,5,2,8,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-05T08:00Z +Keep,19,2015,November,46,14,0,1,2,0,0,BB,CZE,Corporate,Corporate, 0,0,0,A,A,0,Non Refund , 328, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-15,Fall,2015-11-14T08:00Z +Keep,36,2015,November,45,7,2,6,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-07T08:00Z +Keep,15,2015,November,45,6,2,7,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-15,Fall,2015-11-06T08:00Z +Keep,37,2015,November,46,8,2,5,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-15,Fall,2015-11-08T08:00Z +Keep,34,2015,November,45,5,2,8,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,4,No Deposit , 185, 281,0,Transient-Party,37.6,0,0,Check-Out,2015-11-15,Fall,2015-11-05T08:00Z +Keep,25,2015,November,45,4,3,9,2,0,0,BB,CZE,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 328, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-16,Fall,2015-11-04T08:00Z +Keep,12,2015,November,45,3,3,10,2,0,0,BB,USA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 328, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,CZE,Corporate,Corporate, 0,0,0,A,A,5,No Deposit , 328, 281,0,Transient,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,0,2015,November,47,15,1,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-16,Fall,2015-11-15T08:00Z +Keep,0,2015,November,48,24,0,2,1,0,0,BB,GBR,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-24T08:00Z +Keep,0,2016,January,4,19,0,1,1,0,0,BB,GBR,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,20,0,1,1,0,0,BB,GBR,Direct,Direct, 1,0,2,A,D,2,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,2,2016,April,15,4,1,0,1,0,0,BB,GBR,Direct,Direct, 1,0,4,A,E,0,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,1,2017,January,1,2,1,2,2,0,0,BB,GBR,Direct,Direct, 1,0,5,A,A,1,No Deposit , NULL, NULL,0,Group,44,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,2,2017,March,10,6,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,6,A,A,1,No Deposit , 171, NULL,0,Transient,30,0,1,Check-Out,2017-03-09,Spring,2017-03-06T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,CHE,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,48,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,36,2015,November,45,7,3,6,1,0,0,BB,DEU,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , 185, 281,0,Transient-Party,36,0,0,Check-Out,2015-11-16,Fall,2015-11-07T08:00Z +Keep,24,2015,November,45,3,3,10,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 334, 281,0,Transient-Party,40,0,0,Check-Out,2015-11-16,Fall,2015-11-03T08:00Z +Keep,0,2015,November,47,15,1,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2015-11-16,Fall,2015-11-15T08:00Z +Keep,19,2015,November,47,16,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2015-11-18,Fall,2015-11-16T08:00Z +Keep,1,2016,March,10,3,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2016-03-05,Spring,2016-03-03T08:00Z +Keep,0,2015,November,47,15,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,59,1,0,Check-Out,2015-11-16,Fall,2015-11-15T08:00Z +Keep,0,2015,November,47,15,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,59,1,0,Check-Out,2015-11-16,Fall,2015-11-15T08:00Z +Cancel,2,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,0,A,A,0,No Deposit , NULL, 337,0,Transient,38,0,0,Canceled,2015-11-16,Fall,2015-11-18T08:00Z +Keep,24,2015,October,44,26,7,15,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,G,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-10-26T07:00Z +Keep,1,2015,November,47,15,2,0,1,0,0,BB,AUS,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-11-17,Fall,2015-11-15T08:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,31,2015,November,45,2,5,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-11-02T08:00Z +Keep,24,2015,October,44,26,7,15,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,G,2,No Deposit , 185, 281,0,Transient-Party,52.2,1,0,Check-Out,2015-11-17,Fall,2015-10-26T07:00Z +Keep,31,2015,November,45,2,5,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,G,2,No Deposit , 185, 281,0,Transient-Party,57,1,0,Check-Out,2015-11-17,Fall,2015-11-02T08:00Z +Keep,31,2015,November,45,2,5,10,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-11-02T08:00Z +Keep,0,2015,November,47,16,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,2,2015,November,47,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,3,2015,November,47,16,1,0,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,25,0,1,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,4,2016,July,31,26,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,151.2,0,1,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,0,2015,November,47,16,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 86,0,Transient,35,1,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 16,0,Transient,41,1,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,6,2016,December,53,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 16, NULL,0,Transient,36,1,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 16,0,Transient,35,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,6,2016,December,53,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 16, NULL,0,Transient,30,0,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,2,2015,November,47,16,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,12,2015,November,47,15,2,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-11-17,Fall,2015-11-15T08:00Z +Keep,12,2015,November,47,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,25,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,3,2015,November,47,15,2,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,8,0,1,Check-Out,2015-11-17,Fall,2015-11-15T08:00Z +Keep,24,2015,October,44,26,7,15,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,F,2,No Deposit , 185, 281,0,Transient-Party,58.2,1,0,Check-Out,2015-11-17,Fall,2015-10-26T07:00Z +Keep,10,2015,November,47,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,31,1,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,10,2015,November,47,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,25,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,31,2015,November,45,2,5,10,2,0,0,BB,AUS,Corporate,Corporate, 0,0,0,E,E,5,No Deposit , 185, 281,0,Transient-Party,52.2,0,0,Check-Out,2015-11-17,Fall,2015-11-02T08:00Z +Keep,26,2017,April,14,3,1,3,1,0,0,BB,AUS,Corporate,Corporate, 1,0,0,E,E,3,No Deposit , NULL, 281,0,Group,50,0,0,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,0,2015,November,47,16,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,March,11,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,F,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Cancel,105,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Canceled,2015-11-17,Winter,2016-02-27T08:00Z +Keep,2,2015,November,47,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-17,Fall,2015-11-16T08:00Z +Cancel,234,2016,July,28,5,2,8,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,C,C,0,No Deposit , 196, NULL,0,Transient,123.3,0,0,Canceled,2015-11-17,Summer,2016-07-05T07:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,1,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,C,1,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,72,0,1,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,82,2016,February,7,7,2,0,1,0,0,Undefined,PRT,Groups,TA/TO, 1,0,0,A,A,2,No Deposit , 67, NULL,0,Transient-Party,0,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-02-03,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-02-03,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,Undefined,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,66,0,0,Canceled,2016-01-26,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,82,2016,February,7,7,2,0,2,0,0,BB,PRT,Groups,TA/TO, 1,1,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,86,0,0,Canceled,2015-11-17,Winter,2016-02-07T08:00Z +Cancel,215,2016,June,26,19,4,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.9,0,0,Canceled,2015-11-17,Summer,2016-06-19T07:00Z +Keep,0,2015,November,47,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,0,2015,November,47,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 88,0,Transient,35,1,0,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Cancel,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Canceled,2017-03-20,Spring,2017-03-20T07:00Z +Keep,6,2015,November,47,16,1,1,2,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,F,F,1,No Deposit , 40, NULL,0,Transient,0,0,1,Check-Out,2015-11-18,Fall,2015-11-16T08:00Z +Keep,2,2016,June,24,8,0,2,1,0,0,BB,GBR,Complementary,TA/TO, 1,0,1,A,C,0,No Deposit , 40, NULL,0,Transient,0,0,1,Check-Out,2016-06-10,Summer,2016-06-08T07:00Z +Keep,4,2017,January,5,30,1,0,1,0,0,BB,GBR,Complementary,TA/TO, 1,0,2,F,F,0,No Deposit , 40, NULL,0,Transient,0,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,5,2017,May,20,15,1,0,1,0,0,BB,GBR,Complementary,TA/TO, 1,0,3,E,E,0,No Deposit , 40, NULL,0,Transient,0,1,2,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2015,November,47,17,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,17,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,1,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,78,2015,November,47,15,2,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,24.94,0,0,Check-Out,2015-11-18,Fall,2015-11-15T08:00Z +Keep,1,2015,November,47,17,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,5,2015,November,47,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,2,2015,November,47,15,2,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 80,0,Transient,43,0,0,Check-Out,2015-11-18,Fall,2015-11-15T08:00Z +Keep,50,2015,November,45,3,4,11,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,21.37,0,1,Check-Out,2015-11-18,Fall,2015-11-03T08:00Z +Keep,10,2015,November,47,16,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2015-11-18,Fall,2015-11-16T08:00Z +Keep,1,2015,November,47,21,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 127, NULL,0,Transient,30.5,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,1,2015,November,47,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-18,Fall,2015-11-17T08:00Z +Keep,12,2015,November,47,16,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2015-11-18,Fall,2015-11-16T08:00Z +Keep,2,2017,June,26,27,0,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,149,1,1,Check-Out,2017-06-29,Summer,2017-06-27T07:00Z +Cancel,1,2015,November,47,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,No-Show,2015-11-18,Fall,2015-11-18T08:00Z +Keep,11,2015,November,47,16,1,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,32,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,5,2015,November,47,17,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,50,1,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,1,2017,January,2,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 6, NULL,0,Group,30,0,0,Check-Out,2017-01-13,Winter,2017-01-11T08:00Z +Keep,7,2017,March,11,14,0,3,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,2,A,A,0,No Deposit , NULL, 178,0,Transient,35,0,0,Check-Out,2017-03-17,Spring,2017-03-14T07:00Z +Keep,6,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 337,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,17,0,2,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,2,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 337,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,2,2015,November,47,18,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,17,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,50,0,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 337,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 274,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,2,2015,November,47,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,6,2015,November,47,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 104, NULL,0,Transient,34,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,16,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,2,2015,December,51,17,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,6,2016,March,12,14,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,1,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,2,2015,November,47,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,1,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,8,2016,February,6,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,D,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,4,2016,February,9,22,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,D,0,No Deposit , 146, NULL,0,Group,31,1,0,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,2,2016,March,11,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,A,A,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,6,2016,March,14,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,5,A,D,0,No Deposit , 146, NULL,0,Transient,45,1,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,2,2016,April,17,20,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,6,A,A,1,No Deposit , 146, NULL,0,Transient,46,1,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,4,2016,May,23,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,7,A,A,0,No Deposit , 146, NULL,0,Group,63,1,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,5,2015,November,47,16,1,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,36.25,0,1,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,3,2015,November,47,17,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,4,2016,March,12,15,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,2,2016,December,51,11,2,0,2,0,0,BB,PRT,Online travel agent,Corporate, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-13,Winter,2016-12-11T08:00Z +Keep,0,2016,December,51,13,0,1,2,0,0,BB,PRT,Online travel agent,Corporate, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,1,2017,January,4,24,0,2,1,0,0,BB,PRT,Online travel agent,Corporate, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,2,2017,March,9,1,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,34.2,0,2,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,0,2015,November,47,17,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2015-11-19,Fall,2015-11-17T08:00Z +Keep,2,2016,January,2,9,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,0,2015,November,47,18,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,46.4,1,2,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,22,2015,November,47,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 62,0,Transient,35,0,0,Check-Out,2015-11-19,Fall,2015-11-18T08:00Z +Keep,10,2015,November,48,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 62,0,Transient,35,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,6,2015,November,47,16,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,38,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,6,2015,November,47,16,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,38,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,6,2015,November,47,16,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,38,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,6,2015,November,47,16,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,38,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Keep,6,2015,November,47,16,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,38,0,0,Check-Out,2015-11-19,Fall,2015-11-16T08:00Z +Cancel,289,2015,November,47,20,1,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Canceled,2015-11-19,Fall,2015-11-20T08:00Z +Keep,1,2015,November,47,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,35,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,3,2016,May,22,23,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 20,0,Transient,0,0,0,Check-Out,2016-05-23,Spring,2016-05-23T07:00Z +Keep,23,2017,March,13,29,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 20,0,Transient,48,0,0,Check-Out,2017-04-01,Spring,2017-03-29T07:00Z +Keep,27,2017,April,14,2,2,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,C,0,No Deposit , NULL, 20,0,Transient,45,0,1,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,14,2015,November,47,16,1,3,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,106.57,0,2,Check-Out,2015-11-20,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,18,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2016,May,20,9,1,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, 88,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-09T07:00Z +Keep,1,2017,June,24,13,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,A,1,No Deposit , NULL, 88,0,Transient,75,0,0,Check-Out,2017-06-14,Summer,2017-06-13T07:00Z +Keep,1,2015,November,47,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 184, NULL,0,Transient,43.2,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,1,2015,November,47,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2015,November,47,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,1,2015,November,47,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,0,2015,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,1,2015,November,47,18,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2015,November,48,25,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,1,2015,November,47,17,0,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,4,0,0,Check-Out,2015-11-20,Fall,2015-11-17T08:00Z +Keep,2,2015,November,47,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,5,2015,November,47,17,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-17T08:00Z +Keep,3,2015,November,47,16,1,3,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-16T08:00Z +Cancel,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2015-11-20,Fall,2015-11-30T08:00Z +Cancel,19,2015,December,49,2,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2015-11-20,Winter,2015-12-02T08:00Z +Cancel,20,2015,December,49,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Canceled,2015-11-20,Winter,2015-12-03T08:00Z +Keep,1,2015,November,47,18,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2015,November,48,25,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,47,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,18,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 127, NULL,0,Transient,61,0,1,Check-Out,2015-11-20,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,19,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,2,2015,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-20,Fall,2015-11-19T08:00Z +Keep,0,2015,November,47,20,0,1,1,0,0,HB,ESP,Direct,Direct, 0,0,0,H,D,2,No Deposit , 250, NULL,0,Group,123,0,0,Check-Out,2015-11-21,Fall,2015-11-20T08:00Z +Keep,2,2015,November,47,18,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,49,1,0,Check-Out,2015-11-21,Fall,2015-11-18T08:00Z +Keep,20,2015,November,47,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,56,0,1,Check-Out,2015-11-21,Fall,2015-11-18T08:00Z +Keep,20,2015,November,47,18,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56,0,1,Check-Out,2015-11-21,Fall,2015-11-18T08:00Z +Keep,0,2015,November,47,16,1,4,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,36.4,0,1,Check-Out,2015-11-21,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,HB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,20,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-11-21,Fall,2015-11-20T08:00Z +Keep,6,2015,November,47,16,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-11-21,Fall,2015-11-16T08:00Z +Keep,12,2015,November,47,17,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,65.9,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,4,2015,November,47,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2015-11-21,Fall,2015-11-20T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2016,February,6,1,1,1,1,0,0,HB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,1,2015,November,47,16,1,4,2,0,0,BB,SWE,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-11-21,Fall,2015-11-16T08:00Z +Keep,0,2015,November,47,17,0,4,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,A,1,No Deposit , NULL, 20,0,Transient-Party,42,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2015,November,47,19,0,2,2,0,0,HB,NGA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,98,0,0,Check-Out,2015-11-21,Fall,2015-11-19T08:00Z +Keep,1,2015,November,47,17,0,4,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,37.7,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Keep,11,2015,November,47,16,1,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,27,0,0,Check-Out,2015-11-21,Fall,2015-11-16T08:00Z +Keep,7,2015,November,47,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-21,Fall,2015-11-20T08:00Z +Keep,0,2015,November,47,20,0,1,2,0,0,BB,BLR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,30.5,0,0,Check-Out,2015-11-21,Fall,2015-11-20T08:00Z +Keep,69,2015,November,47,17,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,29.16,0,0,Check-Out,2015-11-21,Fall,2015-11-17T08:00Z +Cancel,7,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 342,0,Transient-Party,0,0,1,Canceled,2015-11-21,Fall,2015-11-21T08:00Z +Cancel,1,2015,November,47,21,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,78,0,1,Canceled,2015-11-21,Fall,2015-11-21T08:00Z +Keep,21,2015,November,47,16,1,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,35.46,0,0,Check-Out,2015-11-22,Fall,2015-11-16T08:00Z +Keep,21,2015,November,47,16,1,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,29.34,0,0,Check-Out,2015-11-22,Fall,2015-11-16T08:00Z +Keep,7,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,7,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,7,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 342,0,Transient-Party,32,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,1,2015,November,47,21,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 342,0,Transient-Party,0,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,43,2015,November,47,19,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,32.83,0,0,Check-Out,2015-11-22,Fall,2015-11-19T08:00Z +Keep,4,2015,November,47,20,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,9,2015,November,47,21,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,2,2017,April,16,22,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,G,0,No Deposit , NULL, NULL,0,Transient,0,1,1,Check-Out,2017-04-23,Spring,2017-04-22T07:00Z +Keep,4,2015,November,47,20,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,36,2015,November,47,20,0,2,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,1,2015,November,47,21,0,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 339, NULL,0,Transient,55,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,6,2015,November,47,15,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,69,1,0,Check-Out,2015-11-22,Fall,2015-11-15T08:00Z +Keep,53,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36.45,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,18,2015,November,47,16,1,5,2,0,0,BB,VEN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2015-11-22,Fall,2015-11-16T08:00Z +Keep,1,2015,November,48,22,1,0,2,0,0,BB,VEN,Online travel agent,TA/TO, 0,0,0,D,A,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-11-23,Fall,2015-11-22T08:00Z +Keep,4,2015,November,47,20,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,4,2015,November,47,20,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,98,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,5,2015,November,47,21,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,5,2015,November,47,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,44,2015,November,47,21,0,1,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,67.5,0,2,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,7,2015,November,47,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,44,2015,November,47,21,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,73.5,1,2,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,0,2015,November,47,20,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,29,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,4,2015,November,47,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,4,2016,February,9,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,0,2016,May,19,1,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,F,F,0,No Deposit , NULL, NULL,0,Transient,115,1,1,Check-Out,2016-05-02,Spring,2016-05-01T07:00Z +Keep,0,2017,July,27,2,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,127,1,2,Check-Out,2017-07-03,Summer,2017-07-02T07:00Z +Keep,26,2015,November,47,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,4,2015,November,47,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-11-22,Fall,2015-11-21T08:00Z +Keep,32,2015,November,47,20,0,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,67.5,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,32,2015,November,47,20,0,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,67.5,0,0,Check-Out,2015-11-22,Fall,2015-11-20T08:00Z +Keep,10,2015,November,47,16,1,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,31.4,0,0,Check-Out,2015-11-22,Fall,2015-11-16T08:00Z +Keep,184,2015,November,47,19,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,119,2015,November,47,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,33.3,0,1,Check-Out,2015-11-23,Fall,2015-11-16T08:00Z +Keep,3,2015,November,47,19,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,5,2015,November,47,21,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-11-23,Fall,2015-11-21T08:00Z +Cancel,7,2015,November,48,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,34,0,0,Canceled,2015-11-23,Fall,2015-11-23T08:00Z +Keep,7,2016,March,10,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,5,2016,May,19,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,D,0,No Deposit , NULL, 403,0,Transient,65,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,13,2016,November,47,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,A,0,No Deposit , NULL, 403,0,Transient,35,0,0,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GIB,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,59,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,3,2015,November,47,19,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,32,1,0,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,1,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GIB,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 134, NULL,0,Transient-Party,85.5,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 134, NULL,0,Transient-Party,85.5,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GIB,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,289,2015,November,47,20,1,2,2,0,0,HB,GIB,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,57,0,0,Check-Out,2015-11-23,Fall,2015-11-20T08:00Z +Keep,66,2015,November,47,19,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,32.4,0,4,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,29,2015,November,47,19,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Cancel,43,2015,December,53,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,2,Canceled,2015-11-23,Winter,2015-12-30T08:00Z +Cancel,43,2015,December,53,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,2,Canceled,2015-11-23,Winter,2015-12-30T08:00Z +Cancel,43,2015,December,53,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,2,Canceled,2015-11-23,Winter,2015-12-30T08:00Z +Keep,66,2015,November,47,19,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,32.4,0,3,Check-Out,2015-11-23,Fall,2015-11-19T08:00Z +Keep,1,2015,November,48,24,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-11-24,Fall,2015-11-24T08:00Z +Keep,62,2015,November,47,18,2,4,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,0,Transient-Party,18.5,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,78,2015,November,47,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 156, NULL,0,Transient,57.04,0,1,Check-Out,2015-11-24,Fall,2015-11-17T08:00Z +Keep,12,2015,November,47,21,2,1,1,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,25,0,0,Check-Out,2015-11-24,Fall,2015-11-21T08:00Z +Keep,90,2015,November,47,16,3,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,36.86,0,2,Check-Out,2015-11-24,Fall,2015-11-16T08:00Z +Keep,11,2015,November,48,22,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2015-11-24,Fall,2015-11-22T08:00Z +Keep,0,2015,November,48,23,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,38.4,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,25,2015,November,47,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,25.65,0,0,Check-Out,2015-11-24,Fall,2015-11-17T08:00Z +Cancel,12,2015,December,49,5,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,1,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-11-24,Winter,2015-12-05T08:00Z +Keep,2,2015,November,47,21,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,89,1,1,Check-Out,2015-11-24,Fall,2015-11-21T08:00Z +Keep,25,2016,February,9,23,0,1,2,0,0,HB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,85,1,1,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,25,0,3,2,0,0,HB,PRT,Direct,Direct, 1,0,2,A,A,1,No Deposit , NULL, NULL,0,Transient,32,1,1,Check-Out,2016-02-28,Winter,2016-02-25T08:00Z +Keep,1,2016,December,51,17,0,1,2,0,0,HB,PRT,Direct,Direct, 1,0,3,E,E,1,No Deposit , 250, NULL,0,Transient,101,1,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,44,2015,November,48,22,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,0,Check-Out,2015-11-24,Fall,2015-11-22T08:00Z +Keep,0,2015,November,48,23,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2015,November,48,23,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,5,2015,November,48,22,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-24,Fall,2015-11-22T08:00Z +Keep,5,2015,November,48,22,2,0,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-24,Fall,2015-11-22T08:00Z +Keep,5,2015,November,48,22,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-24,Fall,2015-11-22T08:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,105,2015,November,47,18,2,4,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 313, NULL,65,Transient-Party,69,0,0,Check-Out,2015-11-24,Fall,2015-11-18T08:00Z +Keep,11,2015,November,47,21,2,1,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-11-24,Fall,2015-11-21T08:00Z +Cancel,187,2016,May,22,24,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2015-11-24,Spring,2016-05-24T07:00Z +Cancel,187,2016,May,22,24,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Canceled,2015-11-24,Spring,2016-05-24T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,287,2016,August,35,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,1,0,D,D,0,Non Refund , NULL, NULL,0,Transient,128,0,0,Canceled,2015-11-24,Summer,2016-08-25T07:00Z +Cancel,219,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,67,0,0,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,219,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,67,0,0,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,219,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,67,0,0,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,216,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,1,0,A,A,0,No Deposit , 177, NULL,0,Transient,67,0,1,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,216,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,2,0,A,A,0,No Deposit , 177, NULL,0,Transient,67,0,1,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,216,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,2,0,A,A,0,No Deposit , 177, NULL,0,Transient,67,0,1,Canceled,2015-11-24,Summer,2016-06-27T07:00Z +Cancel,108,2016,March,10,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Canceled,2015-11-24,Spring,2016-03-01T08:00Z +Cancel,108,2016,March,10,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Canceled,2015-11-24,Spring,2016-03-01T08:00Z +Cancel,108,2016,March,10,1,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,2,Canceled,2015-11-24,Spring,2016-03-01T08:00Z +Cancel,212,2016,June,25,16,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 242, NULL,0,Transient,126.3,0,0,Canceled,2015-11-24,Summer,2016-06-16T07:00Z +Keep,0,2015,November,48,23,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2015-11-24,Fall,2015-11-23T08:00Z +Keep,0,2015,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,2,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,1,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,112,2015,November,46,12,4,9,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Contract,66.42,0,1,Check-Out,2015-11-25,Fall,2015-11-12T08:00Z +Keep,4,2015,November,48,23,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 118,0,Transient,35,0,0,Check-Out,2015-11-25,Fall,2015-11-23T08:00Z +Keep,0,2015,November,48,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,1,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,3,2015,November,48,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-25,Fall,2015-11-23T08:00Z +Keep,4,2015,November,48,23,1,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2015-11-25,Fall,2015-11-23T08:00Z +Keep,21,2015,November,48,24,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2016,February,9,25,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-02-25,Winter,2016-02-25T08:00Z +Keep,21,2015,November,48,24,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,1,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2016,February,6,3,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,1,2016,March,13,22,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,2,2016,May,20,11,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,3,No Deposit , NULL, NULL,0,Transient,63,0,1,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,6,2016,May,22,23,1,0,1,0,0,BB,PRT,Corporate,Direct, 1,0,4,A,H,0,No Deposit , NULL, 399,0,Transient,63,0,1,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,1,2017,March,9,1,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,5,A,A,0,No Deposit , 250, 399,0,Transient,34.2,0,1,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,1,2017,March,11,15,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,6,A,D,0,No Deposit , NULL, 399,0,Transient,60,0,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,2,2017,May,21,24,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,7,A,A,0,No Deposit , NULL, 399,0,Transient,45,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,1,2015,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,6,2015,November,48,23,1,1,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-11-25,Fall,2015-11-23T08:00Z +Keep,5,2015,November,48,22,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,45.2,0,1,Check-Out,2015-11-25,Fall,2015-11-22T08:00Z +Keep,1,2015,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2015,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,23,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-25,Fall,2015-11-23T08:00Z +Keep,0,2016,January,3,11,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-11T08:00Z +Keep,0,2016,November,48,21,1,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,I,2,No Deposit , 240, NULL,0,Transient,55,0,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Cancel,19,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,0,0,Canceled,2015-11-25,Winter,2015-12-05T08:00Z +Keep,0,2015,November,48,24,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,99,1,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,1,2016,February,8,16,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-02-16,Winter,2016-02-16T08:00Z +Keep,27,2015,November,47,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 241, NULL,0,Transient,33.26,0,0,Check-Out,2015-11-25,Fall,2015-11-20T08:00Z +Keep,21,2015,November,48,24,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,1,2,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2015-11-25,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,23,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,2,Check-Out,2015-11-26,Fall,2015-11-23T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,2,2016,March,14,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 14,0,Transient,42,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,1,2017,January,2,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,2,A,D,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,13,2015,November,48,22,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,0,Check-Out,2015-11-26,Fall,2015-11-22T08:00Z +Keep,7,2015,November,47,17,2,7,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72.49,1,0,Check-Out,2015-11-26,Fall,2015-11-17T08:00Z +Keep,158,2015,November,47,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Check-Out,2015-11-26,Fall,2015-11-20T08:00Z +Keep,5,2015,November,48,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,5,2016,April,18,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,6,2016,December,53,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,2,No Deposit , 94, NULL,0,Transient,27,1,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,4,2017,August,31,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 94,0,Transient,142,1,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,5,2015,November,48,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,5,2016,April,15,5,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,1,2016,September,38,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,F,0,No Deposit , NULL, 94,0,Transient,58,0,0,Check-Out,2016-09-17,Fall,2016-09-16T07:00Z +Keep,6,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 94,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,D,0,No Deposit , NULL, 94,0,Transient-Party,35,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,4,2017,August,31,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,D,0,No Deposit , NULL, 94,0,Transient,135,0,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,0,2015,November,48,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,2,2015,November,48,23,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Check-Out,2015-11-26,Fall,2015-11-23T08:00Z +Keep,6,2015,November,48,25,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,4,2015,November,48,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-26,Fall,2015-11-25T08:00Z +Keep,3,2015,November,48,22,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-11-26,Fall,2015-11-22T08:00Z +Keep,14,2017,May,22,28,2,5,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,163.43,1,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Cancel,273,2016,August,35,24,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 314, NULL,0,Transient,88.15,0,0,Canceled,2015-11-26,Summer,2016-08-24T07:00Z +Cancel,273,2016,August,35,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 314, NULL,0,Transient,94.63,0,0,Canceled,2015-11-26,Summer,2016-08-24T07:00Z +Keep,26,2015,November,47,21,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,50,0,1,Check-Out,2015-11-26,Fall,2015-11-21T08:00Z +Keep,0,2015,November,48,24,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, 84,0,Transient,0,0,0,Check-Out,2015-11-26,Fall,2015-11-24T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Corporate,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Canceled,2015-11-26,Fall,2015-11-27T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Corporate,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Canceled,2015-11-26,Fall,2015-11-27T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Corporate,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Canceled,2015-11-26,Fall,2015-11-27T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Corporate,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Canceled,2015-11-26,Fall,2015-11-27T08:00Z +Cancel,15,2015,November,48,27,0,2,2,0,0,BB,PRT,Corporate,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Canceled,2015-11-26,Fall,2015-11-27T08:00Z +Keep,47,2015,November,48,24,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2015-11-26,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,26,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-11-26,Fall,2015-11-26T08:00Z +Cancel,111,2016,March,11,10,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Canceled,2015-11-26,Spring,2016-03-10T08:00Z +Keep,1,2015,November,48,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,24,0,3,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,40,2015,November,47,16,3,8,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.13,0,0,Check-Out,2015-11-27,Fall,2015-11-16T08:00Z +Keep,40,2015,November,48,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,41.4,0,2,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,2,2015,November,46,14,4,9,2,0,0,HB,CZE,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,82.69,0,1,Check-Out,2015-11-27,Fall,2015-11-14T08:00Z +Keep,1,2015,November,48,26,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,1,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,5,2015,November,48,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 135, NULL,0,Transient,35,0,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,12,2015,November,48,25,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,7,2017,March,11,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 126, NULL,0,Transient,48,0,0,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,0,2015,November,48,25,0,2,2,0,0,BB,UKR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,1,2015,November,48,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,55,2015,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Group,36.45,0,2,Check-Out,2015-11-27,Fall,2015-11-26T08:00Z +Keep,11,2016,January,2,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,15,2016,February,7,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,27,2016,March,11,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Cancel,17,2015,December,50,11,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 15, NULL,0,Transient,37,0,1,Canceled,2015-11-27,Winter,2015-12-11T08:00Z +Keep,15,2015,November,48,25,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.12,0,0,Check-Out,2015-11-27,Fall,2015-11-25T08:00Z +Keep,0,2015,November,48,24,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 137,0,Transient,35,1,0,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,40,2015,November,48,24,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,41.4,0,2,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,0,2015,November,48,24,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 137,0,Transient,35,0,0,Check-Out,2015-11-27,Fall,2015-11-24T08:00Z +Keep,0,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,H,0,No Deposit , NULL, 137,0,Transient,74,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,5,2015,November,48,22,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 115, NULL,0,Transient,41.3,0,0,Check-Out,2015-11-27,Fall,2015-11-22T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-27,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Canceled,2015-11-27,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,50,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Canceled,2015-11-27,Winter,2015-12-07T08:00Z +Keep,7,2015,November,48,27,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,0,0,0,Check-Out,2015-11-27,Fall,2015-11-27T08:00Z +Keep,5,2015,November,48,28,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Check-Out,2015-12-01,Fall,2015-11-28T08:00Z +Keep,32,2015,December,53,27,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,32,1,0,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,0,2015,November,48,25,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-11-28,Fall,2015-11-25T08:00Z +Keep,0,2016,April,16,16,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,3,2015,November,48,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,35,1,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,37,2015,November,48,23,1,4,3,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,34.63,1,1,Check-Out,2015-11-28,Fall,2015-11-23T08:00Z +Keep,1,2015,November,48,27,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,1,2,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,27,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,2,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,27,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,4,2015,November,48,27,0,1,1,0,0,BB,ESP,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,ESP,Groups,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,1,2015,November,48,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,10,2015,November,48,23,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,58,0,0,Check-Out,2015-11-28,Fall,2015-11-23T08:00Z +Keep,0,2015,November,48,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,4,2015,November,48,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,27,0,1,1,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,26.5,0,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,15,2015,November,47,21,2,5,2,0,0,HB,ARM,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-11-28,Fall,2015-11-21T08:00Z +Keep,0,2015,November,48,27,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,27,0,1,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,30.5,1,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,24,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,49.5,0,0,Check-Out,2015-11-28,Fall,2015-11-24T08:00Z +Keep,11,2015,November,48,23,1,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,1,Check-Out,2015-11-28,Fall,2015-11-23T08:00Z +Keep,2,2015,November,48,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,25,1,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,29,0,1,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,27,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,29,0,0,Check-Out,2015-11-28,Fall,2015-11-27T08:00Z +Keep,1,2017,February,5,3,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 330, NULL,0,Group,34,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Cancel,1,2015,November,48,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,No-Show,2015-11-28,Fall,2015-11-28T08:00Z +Keep,0,2015,November,48,26,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30,0,0,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,0,2015,November,48,28,0,1,2,3,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,93,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,8,2016,November,48,25,0,2,2,3,0,BB,PRT,Direct,Direct, 1,0,1,H,H,0,No Deposit , 250, NULL,0,Transient,88,0,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,0,2016,December,50,10,0,1,2,2,0,BB,PRT,Direct,Direct, 1,0,2,C,C,0,No Deposit , 250, NULL,0,Transient,76,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,6,2017,February,7,18,0,1,2,2,0,BB,PRT,Direct,Direct, 1,0,3,C,C,0,No Deposit , 250, NULL,0,Group,67.5,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,81,1,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,15,2015,November,48,27,0,2,2,1,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,1,No Deposit , NULL, 346,0,Transient-Party,80,1,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,4,2015,November,48,27,0,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,101.5,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,10,2015,November,48,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,25,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,10,2015,November,48,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient-Party,29,1,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,2,2017,February,7,18,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 8, NULL,0,Transient,49,1,1,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 1,0,1,A,A,0,No Deposit , NULL, 346,0,Transient,66,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,3,2015,November,48,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,49.3,0,1,Check-Out,2015-11-29,Fall,2015-11-22T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,66,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,0,HB,PRT,Corporate,Direct, 0,0,0,D,D,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,27,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,1,2015,November,48,27,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,3,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,3,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,3,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,4,2017,January,3,21,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,11,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,11,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,1,2017,March,9,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-04,Spring,2017-03-03T08:00Z +Keep,11,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,9,2015,November,48,27,0,2,3,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,15,2015,November,48,27,0,2,2,0,1,HB,PRT,Corporate,Direct, 0,0,0,D,D,2,No Deposit , NULL, 346,0,Transient,60,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,99,1,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,4,2015,November,48,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,34.19,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,10,2016,March,12,19,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,31.5,0,0,Check-Out,2016-03-21,Spring,2016-03-19T07:00Z +Keep,0,2015,November,48,26,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-29,Fall,2015-11-26T08:00Z +Keep,2,2015,November,48,27,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,1,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,11,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.2,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,9,2015,November,48,27,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,9,2015,November,48,27,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,28,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,1,2015,November,48,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38.7,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,116,2015,November,46,8,6,15,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient,48.4,0,1,Check-Out,2015-11-29,Fall,2015-11-08T08:00Z +Keep,0,2015,November,48,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,1,2015,December,51,18,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Cancel,1,2016,January,5,30,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Canceled,2016-01-30,Winter,2016-01-30T08:00Z +Keep,0,2016,November,46,12,0,1,2,0,0,BB,PRT,Direct,Direct, 1,1,2,A,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,2,2017,March,11,18,0,1,3,0,0,BB,PRT,Direct,Direct, 1,1,3,D,D,0,No Deposit , NULL, NULL,0,Transient,115,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,1,2015,November,48,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,0,2015,November,48,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,0,2015,December,52,22,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,0,2016,March,10,4,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,0,2017,February,5,3,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,0,2017,February,6,10,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,4,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,27,2015,November,48,25,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2015-11-29,Fall,2015-11-25T08:00Z +Keep,4,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,2,2015,November,48,28,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.4,0,2,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,2,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,5,2015,November,48,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,5,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,1,2015,November,48,28,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,7,2015,November,48,28,0,1,1,0,0,BB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,1,2015,November,48,28,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,4,2015,November,48,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-11-29,Fall,2015-11-27T08:00Z +Keep,1,2015,November,48,28,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 347,0,Transient,46.2,1,1,Check-Out,2015-11-29,Fall,2015-11-28T08:00Z +Keep,8,2015,November,48,26,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,1,1,Check-Out,2015-11-30,Fall,2015-11-26T08:00Z +Keep,25,2015,November,48,27,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Keep,3,2015,November,47,16,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 2, NULL,0,Transient,65,0,1,Check-Out,2015-11-30,Fall,2015-11-16T08:00Z +Keep,35,2015,November,47,16,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,39.91,0,2,Check-Out,2015-11-30,Fall,2015-11-16T08:00Z +Keep,12,2015,November,48,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Check-Out,2015-11-30,Fall,2015-11-28T08:00Z +Cancel,27,2015,December,52,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,Canceled,2015-11-30,Winter,2015-12-25T08:00Z +Keep,62,2015,November,48,23,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.5,0,0,Check-Out,2015-11-30,Fall,2015-11-23T08:00Z +Keep,4,2015,November,48,27,1,2,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,38,0,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-11-30,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-01,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-01,Winter,2015-12-05T08:00Z +Cancel,8,2015,December,49,5,2,1,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-01,Winter,2015-12-05T08:00Z +Keep,4,2015,November,48,27,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,98,1,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Keep,4,2015,November,48,27,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,98,0,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Keep,0,2015,November,48,28,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2015-11-30,Fall,2015-11-28T08:00Z +Keep,1,2015,November,48,28,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2015-11-30,Fall,2015-11-28T08:00Z +Cancel,220,2016,July,28,4,1,2,2,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , 250, NULL,0,Transient,88.5,0,0,Canceled,2015-11-30,Summer,2016-07-04T07:00Z +Keep,0,2015,November,48,28,1,1,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,39.15,0,1,Check-Out,2015-11-30,Fall,2015-11-28T08:00Z +Cancel,268,2016,August,34,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,1,0,A,A,0,No Deposit , 250, NULL,0,Transient,131,0,1,Canceled,2015-11-30,Summer,2016-08-18T07:00Z +Cancel,8,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,1,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Canceled,2015-11-30,Winter,2015-12-03T08:00Z +Cancel,8,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,1,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Canceled,2015-11-30,Winter,2015-12-03T08:00Z +Keep,0,2015,November,49,30,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2015-11-30,Fall,2015-11-30T08:00Z +Keep,4,2015,November,48,27,1,2,1,0,0,SC,ESP,Groups,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 343,0,Transient-Party,0,0,0,Check-Out,2015-11-30,Fall,2015-11-27T08:00Z +Keep,0,2015,November,49,30,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,26,0,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,0,2015,November,49,30,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,0,2015,December,49,1,0,2,1,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,11,2015,November,48,27,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,55.4,1,0,Check-Out,2015-12-01,Fall,2015-11-27T08:00Z +Keep,0,2015,November,49,30,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Cancel,6,2015,December,50,6,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,0,0,Canceled,2015-12-01,Winter,2015-12-06T08:00Z +Keep,0,2015,November,48,26,2,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-01,Fall,2015-11-26T08:00Z +Keep,14,2015,November,48,28,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.2,0,0,Check-Out,2015-12-01,Fall,2015-11-28T08:00Z +Keep,0,2015,November,49,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,25,2015,November,48,24,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient-Party,82.86,0,2,Check-Out,2015-12-01,Fall,2015-11-24T08:00Z +Keep,0,2015,November,49,30,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-12-01,Fall,2015-11-30T08:00Z +Keep,25,2015,November,48,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient-Party,55.32,0,1,Check-Out,2015-12-01,Fall,2015-11-24T08:00Z +Keep,75,2015,November,48,24,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient,23.93,0,0,Check-Out,2015-12-01,Fall,2015-11-24T08:00Z +Keep,0,2015,November,49,29,2,0,1,0,0,BB,RUS,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2015-12-01,Fall,2015-11-29T08:00Z +Keep,0,2015,December,49,1,0,1,1,0,0,BB,RUS,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,2,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Cancel,184,2016,May,22,23,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,114.25,0,0,Canceled,2015-12-01,Spring,2016-05-23T07:00Z +Cancel,168,2016,May,21,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,0,Canceled,2015-12-01,Spring,2016-05-17T07:00Z +Keep,0,2015,November,49,30,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, 331,0,Transient,48,0,0,Check-Out,2015-12-02,Fall,2015-11-30T08:00Z +Keep,1,2016,January,3,13,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,1,No Deposit , NULL, 331,0,Transient,38,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,1,2016,April,17,20,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,E,2,No Deposit , NULL, 331,0,Transient,53,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,6,2015,December,49,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 12,0,Transient,35,1,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,69,2015,November,49,29,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36.45,0,3,Check-Out,2015-12-02,Fall,2015-11-29T08:00Z +Keep,5,2015,December,49,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,39,0,2,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,7,2015,December,49,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,15,2015,November,49,29,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48.4,0,1,Check-Out,2015-12-02,Fall,2015-11-29T08:00Z +Keep,0,2015,December,49,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,0,2015,December,49,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,1,1,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,0,2015,November,49,30,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2015-12-02,Fall,2015-11-30T08:00Z +Keep,34,2015,November,49,30,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-02,Fall,2015-11-30T08:00Z +Keep,0,2015,December,49,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,5,2015,December,49,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,39,0,2,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,5,2015,December,49,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,5,2015,December,49,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,39,0,2,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,0,2015,December,49,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,2,2015,November,49,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,1,1,Check-Out,2015-12-02,Fall,2015-11-29T08:00Z +Keep,1,2015,December,49,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Keep,6,2015,December,49,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 12,0,Transient,35,0,0,Check-Out,2015-12-02,Winter,2015-12-01T08:00Z +Cancel,159,2016,May,20,8,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,F,F,0,No Deposit , 242, NULL,0,Transient,88.2,0,0,Canceled,2015-12-02,Spring,2016-05-08T07:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,11,2015,December,49,5,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Canceled,2015-12-02,Winter,2015-12-05T08:00Z +Cancel,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Canceled,2015-12-02,Spring,2016-05-05T07:00Z +Keep,1,2015,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2015,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,1,2015,November,48,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-12-03,Fall,2015-11-26T08:00Z +Keep,8,2015,December,49,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,5,2017,May,21,22,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,C,0,No Deposit , 96, NULL,0,Group,60,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,8,2015,December,49,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,26,1,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,1,2015,December,49,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Cancel,25,2015,December,52,26,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,1,No Deposit , 339, NULL,0,Group,45,0,1,Canceled,2015-12-03,Winter,2015-12-26T08:00Z +Cancel,25,2015,December,52,26,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,E,E,1,No Deposit , 339, NULL,0,Transient,45,0,1,Canceled,2015-12-03,Winter,2015-12-26T08:00Z +Keep,2,2015,December,49,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,35,1,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 135,0,Transient,42,1,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,24,2016,May,19,2,1,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 1,0,2,G,G,1,No Deposit , 240, NULL,0,Transient,147,1,1,Check-Out,2016-05-08,Spring,2016-05-02T07:00Z +Keep,7,2015,December,49,2,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient-Party,8,0,1,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,1,2015,December,49,1,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient-Party,25,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,0,2015,December,49,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2016,January,2,7,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,F,0,No Deposit , 110, NULL,0,Transient,38,0,0,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,0,2016,January,3,13,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,F,1,No Deposit , NULL, 110,0,Transient,38,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,1,2015,December,49,2,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,1,1,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,2,2015,December,49,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2015,December,49,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,9,2015,November,49,30,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-03,Fall,2015-11-30T08:00Z +Keep,0,2015,December,49,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,0,2015,December,49,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2015,November,49,30,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,88,0,0,Check-Out,2015-12-03,Fall,2015-11-30T08:00Z +Keep,7,2015,December,49,2,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient-Party,8,0,1,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2015,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,2,2016,February,8,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,8,0,1,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,1,2016,March,12,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,1,2017,January,1,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,4,2016,January,2,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,6,2015,December,49,1,0,2,1,0,0,BB,ESP,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-03,Winter,2015-12-01T08:00Z +Keep,0,2015,December,49,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-03,Winter,2015-12-02T08:00Z +Keep,0,2016,January,4,20,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,35.1,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,65,2015,November,47,19,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,31.05,0,0,Check-Out,2015-12-03,Fall,2015-11-19T08:00Z +Cancel,5,2015,December,50,6,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,1,No Deposit , 240, NULL,0,Transient,110,0,0,Canceled,2015-12-03,Winter,2015-12-06T08:00Z +Keep,9,2015,December,49,3,0,1,1,0,0,BB,ESP,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,20,2015,December,49,3,0,1,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,11,2015,December,49,1,0,3,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-01T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,39,1,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,19,2015,December,49,2,0,2,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,7,2015,December,49,2,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,1,2015,December,49,3,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,25,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,5,2015,November,49,30,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 1, NULL,0,Transient,25,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,0,2015,December,49,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,25,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,1,2015,December,49,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 349,0,Transient,29.78,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,November,49,30,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,25,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,0,2015,November,49,30,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,25,0,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,2,2015,December,49,2,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,16,2015,December,49,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,1,1,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,17,2015,November,49,30,1,3,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,42,1,0,Check-Out,2015-12-04,Fall,2015-11-30T08:00Z +Keep,20,2015,December,49,3,0,1,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 343,0,Transient-Party,36,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,13,2015,December,49,2,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-12-04,Winter,2015-12-02T08:00Z +Keep,0,2015,December,49,1,0,3,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,85,1,0,Check-Out,2015-12-04,Winter,2015-12-01T08:00Z +Keep,1,2015,December,49,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,25,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,0,2015,December,49,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,48,0,2,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,17,2015,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,2,2016,February,6,1,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,2,2016,March,11,7,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,1,2016,April,15,6,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2016,June,26,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,A,F,0,No Deposit , 15, NULL,0,Transient,79,0,1,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,4,2016,December,51,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,A,D,0,No Deposit , 240, NULL,0,Group,43,0,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,5,2017,January,2,10,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,6,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,0,2015,November,48,28,2,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-04,Fall,2015-11-28T08:00Z +Keep,21,2015,December,49,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,35.1,1,1,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Keep,16,2016,February,6,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,14,1,1,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,1,2015,December,49,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-04,Winter,2015-12-03T08:00Z +Cancel,196,2016,June,25,14,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Canceled,2015-12-04,Summer,2016-06-14T07:00Z +Keep,0,2015,December,49,2,0,3,1,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-05,Winter,2015-12-02T08:00Z +Keep,9,2015,December,49,3,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,45,0,0,Check-Out,2015-12-05,Winter,2015-12-03T08:00Z +Keep,2,2015,December,49,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,34,0,0,Check-Out,2015-12-05,Winter,2015-12-03T08:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2016,January,3,11,1,3,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-15,Winter,2016-01-11T08:00Z +Keep,1,2015,December,49,1,0,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,28,1,0,Check-Out,2015-12-05,Winter,2015-12-01T08:00Z +Keep,95,2015,November,48,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Check-Out,2015-12-05,Fall,2015-11-28T08:00Z +Keep,0,2015,December,49,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,1,1,Check-Out,2015-12-05,Winter,2015-12-04T08:00Z +Keep,0,2015,December,49,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,1,Check-Out,2015-12-05,Winter,2015-12-04T08:00Z +Keep,6,2015,December,49,4,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-05,Winter,2015-12-04T08:00Z +Keep,21,2015,December,49,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,0,Check-Out,2015-12-05,Winter,2015-12-04T08:00Z +Keep,2,2015,November,48,28,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,88,0,0,Check-Out,2015-12-05,Fall,2015-11-28T08:00Z +Keep,8,2015,November,45,7,8,20,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 332, NULL,0,Transient,65,0,0,Check-Out,2015-12-05,Fall,2015-11-07T08:00Z +Cancel,15,2015,December,49,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,43,0,1,No-Show,2015-12-05,Winter,2015-12-05T08:00Z +Keep,0,2015,December,49,5,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,5,2015,December,49,5,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60.4,1,1,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,9,2015,December,49,4,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-06,Winter,2015-12-04T08:00Z +Keep,125,2015,November,48,22,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,62.69,0,1,Check-Out,2015-12-06,Fall,2015-11-22T08:00Z +Keep,0,2015,December,49,4,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-06,Winter,2015-12-04T08:00Z +Keep,3,2015,December,49,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,43.73,0,1,Check-Out,2015-12-06,Winter,2015-12-03T08:00Z +Keep,2,2015,December,49,2,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,54,1,0,Check-Out,2015-12-06,Winter,2015-12-02T08:00Z +Keep,2,2016,March,11,12,2,5,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,1,No Deposit , 250, NULL,0,Transient,71.81,1,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,3,2016,May,20,14,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,F,F,0,No Deposit , 250, NULL,0,Transient,119,1,0,Check-Out,2016-05-15,Spring,2016-05-14T07:00Z +Keep,90,2015,December,49,4,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2015-12-06,Winter,2015-12-04T08:00Z +Keep,226,2017,May,19,12,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Cancel,254,2017,June,23,9,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,1,2,A,A,0,No Deposit , 240, NULL,0,Transient,108.9,0,1,Canceled,2017-06-05,Summer,2017-06-09T07:00Z +Keep,16,2015,December,49,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-06,Winter,2015-12-03T08:00Z +Keep,11,2015,December,49,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,16,2015,December,49,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-06,Winter,2015-12-03T08:00Z +Keep,7,2015,December,49,3,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,49.07,1,1,Check-Out,2015-12-06,Winter,2015-12-03T08:00Z +Keep,4,2015,December,49,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient,25,0,1,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,4,2015,December,49,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,4,2015,December,49,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient,29,0,1,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,4,2015,December,49,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient,25,0,1,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,5,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient-Party,37,0,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,5,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient-Party,37,0,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,0,2015,December,49,5,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,1,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,16,2015,December,49,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,68,1,0,Check-Out,2015-12-06,Winter,2015-12-05T08:00Z +Keep,68,2015,November,48,22,5,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 156, NULL,0,Transient,50.19,0,1,Check-Out,2015-12-07,Fall,2015-11-22T08:00Z +Keep,0,2015,December,49,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,49.07,0,3,Check-Out,2015-12-07,Winter,2015-12-04T08:00Z +Keep,22,2015,December,49,4,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-07,Winter,2015-12-04T08:00Z +Keep,15,2015,December,49,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,64.67,0,2,Check-Out,2015-12-07,Winter,2015-12-04T08:00Z +Keep,15,2015,December,49,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,64.67,0,2,Check-Out,2015-12-07,Winter,2015-12-04T08:00Z +Keep,0,2015,December,50,6,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Keep,0,2015,December,50,6,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Keep,5,2015,December,49,5,1,1,2,0,1,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,67.4,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,50,2015,December,49,5,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49.2,1,1,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,22,2015,December,49,5,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,58,0,2,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,18,2015,December,49,5,1,1,3,2,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,93,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,17,2015,December,50,6,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Keep,5,2015,December,49,5,1,1,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,5,1,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,83,0,1,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,0,2015,December,50,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Cancel,32,2015,December,51,19,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient,35.1,0,1,Canceled,2015-12-07,Winter,2015-12-19T08:00Z +Keep,3,2015,December,50,6,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,38,0,1,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Keep,64,2015,December,50,6,1,0,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,36.45,0,0,Check-Out,2015-12-07,Winter,2015-12-06T08:00Z +Cancel,28,2015,December,51,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,1,No Deposit , 240, NULL,0,Transient,52.4,0,1,Canceled,2015-12-07,Winter,2015-12-18T08:00Z +Keep,46,2015,December,49,5,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,46,0,1,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,0,2015,December,49,5,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,104,1,0,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Keep,3,2015,December,49,4,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45.6,0,1,Check-Out,2015-12-07,Winter,2015-12-04T08:00Z +Cancel,73,2016,January,5,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Canceled,2015-12-07,Winter,2016-01-29T08:00Z +Keep,0,2015,December,49,3,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-07,Winter,2015-12-03T08:00Z +Keep,1,2015,December,49,5,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,78,0,1,Check-Out,2015-12-07,Winter,2015-12-05T08:00Z +Cancel,26,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,3,Canceled,2015-12-07,Winter,2016-01-02T08:00Z +Cancel,26,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Canceled,2015-12-07,Winter,2016-01-02T08:00Z +Cancel,87,2016,February,7,12,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Canceled,2015-12-07,Winter,2016-02-12T08:00Z +Cancel,177,2016,May,23,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.01,0,1,Canceled,2015-12-07,Spring,2016-05-29T07:00Z +Cancel,49,2016,January,2,5,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,2,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-12-07,Winter,2016-01-05T08:00Z +Cancel,49,2016,January,2,5,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,2,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,2,Canceled,2015-12-07,Winter,2016-01-05T08:00Z +Cancel,174,2016,May,22,27,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,F,F,0,No Deposit , 242, NULL,0,Transient,108.02,0,2,Canceled,2015-12-07,Spring,2016-05-27T07:00Z +Keep,6,2015,December,50,8,0,0,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,0,0,2,Check-Out,2015-12-08,Winter,2015-12-08T08:00Z +Keep,1,2015,December,50,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2015-12-08,Winter,2015-12-08T08:00Z +Keep,0,2016,January,1,1,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-01-02,Winter,2016-01-01T08:00Z +Keep,0,2016,January,3,12,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,14,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,1,2016,January,5,26,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-01-26,Winter,2016-01-26T08:00Z +Keep,0,2016,February,6,2,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,February,7,10,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,6,A,D,0,No Deposit , NULL, NULL,0,Transient,48,1,1,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,9,22,1,3,1,0,0,BB,PRT,Direct,Direct, 1,0,7,A,D,1,No Deposit , NULL, NULL,0,Transient,43,1,1,Check-Out,2016-02-26,Winter,2016-02-22T08:00Z +Keep,2,2015,December,49,5,2,1,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,3,2015,December,49,5,2,1,2,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,120,2015,December,49,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,32.4,0,1,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,3,2015,December,50,7,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,53,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,0,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient-Party,51.67,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,3,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 348, NULL,0,Transient-Party,57.67,1,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,4,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,11,2015,December,49,5,2,1,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 350, NULL,0,Transient-Party,21,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,17,2015,December,49,4,2,2,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,30.5,0,1,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,11,2015,December,49,5,2,1,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 350, NULL,0,Transient-Party,21,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,8,2015,December,49,5,2,1,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 350, NULL,0,Transient-Party,91.2,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 350, NULL,0,Transient-Party,54,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,8,2015,December,49,5,2,1,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 350, NULL,0,Transient-Party,91.2,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,8,2015,December,49,5,2,1,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 350, NULL,0,Transient-Party,91.2,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 350, NULL,0,Transient-Party,54,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,5,2015,December,49,5,2,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,108,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,30,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,20,2015,December,50,6,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,20,2015,December,50,6,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,26,2015,December,49,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,7,2015,December,49,5,2,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,97.02,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,2,2015,December,49,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,10,2015,December,50,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,0,2,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,12,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 6, NULL,0,Transient,26,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,49,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,56,1,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,1,2015,December,49,5,2,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,114,1,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,17,2015,December,49,5,2,1,2,2,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,86.33,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,50,7,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,38.4,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,0,2015,December,50,7,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,38.4,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,47,2015,December,49,5,2,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,60.56,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,12,2015,December,49,5,2,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient-Party,49.4,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,12,2015,December,49,5,2,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient-Party,49.4,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,50,7,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,25,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,7,2015,December,50,7,1,0,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,32.5,1,1,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,94,2015,December,50,6,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,29.16,0,1,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,2,2015,December,49,5,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,50,6,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,7,2015,December,50,7,1,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,7,2015,December,49,5,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,57.06,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,18,2015,December,50,7,1,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,93,0,1,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,5,2015,December,49,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.4,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,113,2015,December,49,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,11,2015,December,50,6,2,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,37,0,0,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,2,2015,December,49,5,2,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 5, NULL,0,Transient,40.5,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,50,6,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83,0,1,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,1,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,38.4,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,12,2015,December,49,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,54.4,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,19,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,50,7,1,0,2,0,0,BB,JPN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,75.46,1,2,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,0,2015,December,50,8,0,1,2,0,0,BB,JPN,Online travel agent,TA/TO, 1,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,71.69,1,2,Check-Out,2015-12-09,Winter,2015-12-08T08:00Z +Keep,1,2015,December,49,5,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,23,2015,December,49,5,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,32,1,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,50,7,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,32,1,0,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Keep,0,2015,December,49,5,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,0,2015,December,49,5,2,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,99.1,1,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,11,2015,December,49,5,2,1,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 350, NULL,0,Transient-Party,68,0,0,Check-Out,2015-12-08,Winter,2015-12-05T08:00Z +Keep,2,2015,December,50,6,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.4,1,1,Check-Out,2015-12-08,Winter,2015-12-06T08:00Z +Keep,1,2015,December,49,4,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2015-12-08,Winter,2015-12-04T08:00Z +Keep,18,2015,December,50,7,1,0,2,0,1,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,93,0,2,Check-Out,2015-12-08,Winter,2015-12-07T08:00Z +Cancel,14,2015,December,51,19,2,1,2,0,0,BB,PRT,Direct,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient,52,0,1,Canceled,2015-12-08,Winter,2015-12-19T08:00Z +Cancel,229,2016,July,30,20,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,1,Canceled,2015-12-08,Summer,2016-07-20T07:00Z +Cancel,193,2016,June,25,18,4,10,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.89,0,1,Canceled,2015-12-08,Summer,2016-06-18T07:00Z +Cancel,2,2015,December,50,8,0,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,No-Show,2015-12-08,Winter,2015-12-08T08:00Z +Cancel,2,2015,December,50,8,0,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,38,0,0,No-Show,2015-12-08,Winter,2015-12-08T08:00Z +Keep,1,2015,December,50,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 289,0,Transient,35,0,0,Check-Out,2015-12-09,Winter,2015-12-08T08:00Z +Keep,2,2016,March,10,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 289,0,Transient,30,0,0,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Cancel,133,2016,April,17,19,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.1,0,0,Canceled,2015-12-26,Spring,2016-04-19T07:00Z +Keep,0,2015,December,50,6,2,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-12-09,Winter,2015-12-06T08:00Z +Keep,3,2015,December,49,5,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-09,Winter,2015-12-05T08:00Z +Keep,3,2015,December,50,7,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 351,0,Transient,38,0,0,Check-Out,2015-12-09,Winter,2015-12-07T08:00Z +Keep,1,2015,December,50,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-09,Winter,2015-12-08T08:00Z +Keep,0,2015,December,50,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2015-12-09,Winter,2015-12-08T08:00Z +Keep,1,2015,December,50,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Group,36.96,0,0,Check-Out,2015-12-09,Winter,2015-12-08T08:00Z +Keep,27,2015,December,50,6,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54.67,0,1,Check-Out,2015-12-09,Winter,2015-12-06T08:00Z +Keep,9,2015,December,50,7,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38.7,0,0,Check-Out,2015-12-09,Winter,2015-12-07T08:00Z +Keep,24,2015,December,50,6,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,62.67,1,0,Check-Out,2015-12-09,Winter,2015-12-06T08:00Z +Keep,25,2015,November,49,30,3,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,48,0,2,Check-Out,2015-12-10,Fall,2015-11-30T08:00Z +Keep,17,2015,December,49,3,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.29,0,1,Check-Out,2015-12-10,Winter,2015-12-03T08:00Z +Keep,6,2015,December,50,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,4,2016,March,12,14,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 5, NULL,0,Transient,34.4,0,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,0,2015,December,50,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2016,February,9,22,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,2,2015,December,50,9,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,26,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,2,2015,December,50,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,26,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,6,2015,December,50,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,38.4,0,1,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,6,2015,December,50,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,38.4,0,1,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,6,2015,December,50,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,4,2016,March,12,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 5, NULL,0,Group,34.4,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,7,2015,December,50,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,1,2016,April,18,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,1,2016,July,30,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 154,0,Transient,115,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,4,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,1,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,8,2015,December,50,8,0,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,38.4,0,1,Check-Out,2015-12-10,Winter,2015-12-08T08:00Z +Keep,8,2015,December,50,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,27,2015,December,50,7,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,46.2,0,1,Check-Out,2015-12-10,Winter,2015-12-07T08:00Z +Cancel,144,2016,April,15,6,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 75, NULL,0,Transient,36,0,0,Canceled,2015-12-10,Spring,2016-04-06T07:00Z +Keep,0,2015,December,50,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,1,1,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,8,2015,December,50,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,9,2015,December,50,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,10,2016,April,17,18,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,12,2015,November,49,30,3,7,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47.2,0,0,Check-Out,2015-12-10,Fall,2015-11-30T08:00Z +Keep,1,2015,December,50,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 118,0,Transient,35,0,0,Check-Out,2015-12-10,Winter,2015-12-09T08:00Z +Cancel,25,2016,January,1,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,46.24,0,1,Canceled,2015-12-10,Winter,2016-01-02T08:00Z +Cancel,26,2016,January,1,2,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,97.29,0,1,Canceled,2015-12-10,Winter,2016-01-02T08:00Z +Cancel,237,2016,August,32,1,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Canceled,2015-12-10,Summer,2016-08-01T07:00Z +Cancel,26,2015,December,51,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,1,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Canceled,2015-12-10,Winter,2015-12-19T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Cancel,92,2016,February,9,26,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , 134, NULL,0,Transient,79,0,0,Canceled,2015-12-10,Winter,2016-02-26T08:00Z +Keep,3,2015,December,50,10,0,0,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2015-12-10,Winter,2015-12-10T08:00Z +Keep,4,2015,December,50,11,0,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,1,2015,December,50,11,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,0,0,0,Check-Out,2015-12-11,Winter,2015-12-11T08:00Z +Keep,15,2015,December,50,8,0,3,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2015-12-11,Winter,2015-12-08T08:00Z +Keep,0,2015,December,50,11,0,0,1,0,0,BB,RUS,Direct,Direct, 1,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-12-11,Winter,2015-12-11T08:00Z +Keep,0,2015,December,50,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 144,0,Transient,25,0,0,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,E,G,0,No Deposit , NULL, 144,0,Transient,0,1,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,9,2016,May,19,6,1,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,2,E,F,0,No Deposit , NULL, 144,0,Transient,50,1,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,0,2015,December,50,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 144,0,Transient,25,0,0,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,I,0,No Deposit , NULL, 144,0,Transient-Party,30,1,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2015,December,50,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-11,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,0,2015,December,50,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,1,1,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,38,1,1,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,April,16,11,1,0,2,0,0,BB,PRT,Direct,Corporate, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,59.4,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,4,2015,December,50,8,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 339, NULL,0,Transient,24,1,0,Check-Out,2015-12-11,Winter,2015-12-08T08:00Z +Cancel,7,2016,October,43,17,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,H,0,No Deposit , NULL, NULL,0,Transient,46,0,0,No-Show,2016-10-17,Fall,2016-10-17T07:00Z +Cancel,86,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Cancel,86,2016,February,7,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,1,0,A,A,0,Non Refund , NULL, NULL,0,Transient,50,0,0,Canceled,2015-12-11,Winter,2016-02-12T08:00Z +Keep,1,2015,December,50,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,69,1,0,Check-Out,2015-12-11,Winter,2015-12-09T08:00Z +Keep,1,2015,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-11,Winter,2015-12-10T08:00Z +Cancel,40,2015,December,52,23,0,2,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,92.5,0,2,Canceled,2015-12-11,Winter,2015-12-23T08:00Z +Cancel,40,2015,December,52,23,0,2,1,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,50,0,1,Canceled,2015-12-11,Winter,2015-12-23T08:00Z +Cancel,147,2016,April,18,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,0,Canceled,2015-12-11,Spring,2016-04-29T07:00Z +Cancel,14,2015,December,52,22,2,6,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,H,H,1,No Deposit , 240, NULL,0,Transient,91.3,0,0,Canceled,2015-12-11,Winter,2015-12-22T08:00Z +Cancel,16,2015,December,52,25,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,1,Canceled,2015-12-11,Winter,2015-12-25T08:00Z +Cancel,13,2015,December,52,24,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,1,0,E,E,1,No Deposit , 240, NULL,0,Transient,105,0,0,Canceled,2015-12-11,Winter,2015-12-24T08:00Z +Cancel,3,2015,December,50,11,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,No-Show,2015-12-11,Winter,2015-12-11T08:00Z +Keep,7,2015,December,50,10,0,2,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,38.4,0,1,Check-Out,2015-12-12,Winter,2015-12-10T08:00Z +Keep,6,2015,December,50,9,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-12,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,8,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 240,0,Transient,48,0,0,Check-Out,2015-12-12,Winter,2015-12-08T08:00Z +Keep,5,2015,December,50,6,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,71,0,0,Check-Out,2015-12-12,Winter,2015-12-06T08:00Z +Keep,23,2015,December,50,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-12-12,Winter,2015-12-11T08:00Z +Keep,11,2015,December,50,7,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-12,Winter,2015-12-07T08:00Z +Keep,8,2015,December,49,5,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,37.7,0,0,Check-Out,2015-12-12,Winter,2015-12-05T08:00Z +Keep,3,2015,December,50,11,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-12,Winter,2015-12-11T08:00Z +Keep,17,2015,December,50,6,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-12,Winter,2015-12-06T08:00Z +Keep,0,2015,December,50,9,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-12,Winter,2015-12-09T08:00Z +Keep,80,2015,December,50,6,2,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,27.9,0,0,Check-Out,2015-12-12,Winter,2015-12-06T08:00Z +Keep,0,2016,January,2,6,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-09,Winter,2016-01-06T08:00Z +Keep,0,2015,December,50,9,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-12,Winter,2015-12-09T08:00Z +Keep,0,2015,December,50,9,0,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,58.2,1,0,Check-Out,2015-12-12,Winter,2015-12-09T08:00Z +Keep,17,2015,December,49,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,72.86,0,0,Check-Out,2015-12-12,Winter,2015-12-05T08:00Z +Cancel,28,2016,January,1,1,2,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,1,No Deposit , 240, NULL,0,Transient,94.25,0,0,Canceled,2015-12-12,Winter,2016-01-01T08:00Z +Cancel,318,2016,October,43,21,2,5,1,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,A,A,0,No Deposit , 175, NULL,0,Transient,56.7,0,0,Canceled,2015-12-12,Fall,2016-10-21T07:00Z +Cancel,28,2016,January,2,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Canceled,2015-12-12,Winter,2016-01-05T08:00Z +Cancel,49,2016,January,2,4,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,3,Canceled,2015-12-12,Winter,2016-01-04T08:00Z +Cancel,12,2015,December,52,23,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Canceled,2015-12-12,Winter,2015-12-23T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Cancel,8,2015,December,50,12,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,98,0,0,No-Show,2015-12-12,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,0,2015,December,50,11,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,46,0,0,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,73,0,2,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,11,2015,December,50,9,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2015-12-13,Winter,2015-12-09T08:00Z +Keep,26,2015,December,50,12,0,1,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,104,1,2,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,79,1,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,79,1,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,3,2015,December,50,12,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46,1,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,26,2015,December,50,10,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,4,2015,December,50,11,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,1,2015,December,50,10,0,3,1,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,32,0,0,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,16,2015,December,50,11,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,1,1,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,3,2015,December,50,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2015-12-13,Winter,2015-12-10T08:00Z +Keep,17,2015,December,50,12,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,69,0,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,79,1,3,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,2,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,3,2015,December,50,12,0,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,69,2016,December,52,23,0,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,G,G,0,No Deposit , 240, NULL,0,Transient-Party,136,0,1,Check-Out,2016-12-25,Winter,2016-12-23T08:00Z +Keep,0,2015,December,50,12,0,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,37.25,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,4,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,14,2015,December,50,11,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,30.5,0,0,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,2,2015,December,50,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,4,2015,December,50,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,4,2015,December,50,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47,0,0,Check-Out,2015-12-13,Winter,2015-12-11T08:00Z +Keep,63,2016,November,47,18,0,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,1,No Deposit , 250, NULL,0,Transient,37,0,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,3,2015,December,50,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,25,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,3,2015,December,50,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,29,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,3,2015,December,50,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,29,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,1,2015,December,50,12,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,79,1,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,36,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,9,2015,December,50,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.4,1,2,Check-Out,2015-12-13,Winter,2015-12-12T08:00Z +Keep,9,2015,December,51,14,1,0,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Keep,5,2015,December,50,10,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,42.75,0,0,Check-Out,2015-12-14,Winter,2015-12-10T08:00Z +Keep,12,2015,December,50,12,1,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-14,Winter,2015-12-12T08:00Z +Keep,0,2015,December,51,14,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,D,D,0,No Deposit , NULL, 195,0,Transient,0,0,0,Check-Out,2015-12-14,Winter,2015-12-14T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , 195, NULL,0,Transient,30,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,23,2015,December,50,9,1,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-14,Winter,2015-12-09T08:00Z +Keep,0,2015,December,51,13,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2015-12-14,Winter,2015-12-13T08:00Z +Keep,0,2015,December,51,13,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-12-14,Winter,2015-12-13T08:00Z +Keep,14,2015,December,50,11,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,55.4,1,0,Check-Out,2015-12-14,Winter,2015-12-11T08:00Z +Keep,12,2015,December,51,13,1,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-14,Winter,2015-12-13T08:00Z +Cancel,30,2015,December,53,27,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,0,Canceled,2015-12-14,Winter,2015-12-27T08:00Z +Keep,1,2015,December,50,11,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,48.4,0,1,Check-Out,2015-12-14,Winter,2015-12-11T08:00Z +Cancel,11,2015,December,52,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Canceled,2015-12-14,Winter,2015-12-23T08:00Z +Cancel,11,2015,December,52,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,Canceled,2015-12-14,Winter,2015-12-23T08:00Z +Keep,2,2015,December,50,7,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,34.2,0,0,Check-Out,2015-12-14,Winter,2015-12-07T08:00Z +Cancel,1,2015,December,51,15,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,1,0,A,D,0,No Deposit , 240, NULL,0,Transient,34,0,0,Canceled,2015-12-14,Winter,2015-12-15T08:00Z +Keep,128,2015,December,50,12,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,25.92,0,0,Check-Out,2015-12-15,Winter,2015-12-12T08:00Z +Keep,3,2015,December,51,14,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,26,0,1,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Keep,0,2015,December,51,14,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,25,1,0,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Keep,0,2015,December,51,14,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,1,0,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Group,61,1,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,6,2015,December,51,14,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,D,0,No Deposit , 352, NULL,0,Transient,38,0,0,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Cancel,13,2015,December,51,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,1,0,A,A,0,No Deposit , 195, NULL,0,Transient,35,0,0,Canceled,2015-12-15,Winter,2015-12-17T08:00Z +Keep,23,2015,December,51,13,2,0,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,0,Check-Out,2015-12-15,Winter,2015-12-13T08:00Z +Keep,0,2015,December,51,14,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-12-15,Winter,2015-12-14T08:00Z +Cancel,17,2015,December,53,27,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,1,No Deposit , 240, NULL,0,Transient,61,0,1,Canceled,2015-12-15,Winter,2015-12-27T08:00Z +Keep,2,2015,December,51,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Cancel,2,2015,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 1,1,0,A,A,0,No Deposit , NULL, 356,0,Transient,38,0,0,Canceled,2015-12-15,Winter,2015-12-17T08:00Z +Cancel,30,2016,January,1,1,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.5,0,0,Canceled,2015-12-15,Winter,2016-01-01T08:00Z +Keep,1,2015,December,51,16,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-12-16,Winter,2015-12-16T08:00Z +Keep,17,2015,December,50,12,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-16,Winter,2015-12-12T08:00Z +Keep,1,2015,December,51,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,25,0,0,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Keep,7,2015,December,51,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Keep,1,2016,December,51,13,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Cancel,19,2015,December,53,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,D,D,0,No Deposit , 240, NULL,0,Transient,99,0,0,Canceled,2015-12-16,Winter,2015-12-30T08:00Z +Keep,0,2015,December,51,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 355,0,Transient,35,0,0,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Keep,1,2016,January,3,13,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 355,0,Transient,0,0,0,Check-Out,2016-01-13,Winter,2016-01-13T08:00Z +Keep,0,2016,January,5,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , 355, NULL,0,Transient,30,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,0,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 355,0,Transient,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,5,2016,June,26,20,1,0,2,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,C,0,No Deposit , NULL, 355,0,Transient,65,0,0,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,4,2015,December,51,14,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 353,0,Transient,49,1,0,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Keep,0,2015,December,51,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 290,0,Transient,35,0,0,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Keep,16,2015,December,51,16,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-12-16,Winter,2015-12-16T08:00Z +Keep,11,2015,December,51,15,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Cancel,12,2015,December,52,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 196, NULL,0,Transient,66,0,1,Canceled,2015-12-16,Winter,2015-12-26T08:00Z +Cancel,12,2015,December,52,26,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 196, NULL,0,Transient,66,0,1,Canceled,2015-12-16,Winter,2015-12-26T08:00Z +Cancel,12,2015,December,52,26,0,1,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 196, NULL,0,Transient,88,0,1,Canceled,2015-12-16,Winter,2015-12-26T08:00Z +Cancel,12,2015,December,52,26,0,1,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,1,0,D,D,0,No Deposit , 196, NULL,0,Transient,88,0,1,Canceled,2015-12-16,Winter,2015-12-26T08:00Z +Keep,25,2015,December,51,14,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,49.2,1,0,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Keep,2,2015,December,49,2,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,37.7,0,0,Check-Out,2015-12-16,Winter,2015-12-02T08:00Z +Keep,19,2015,December,51,14,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,54.4,0,2,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Keep,19,2015,December,51,14,1,1,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,54.4,0,2,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Keep,16,2015,December,51,14,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,31.2,0,0,Check-Out,2015-12-16,Winter,2015-12-14T08:00Z +Cancel,29,2015,December,53,27,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Canceled,2015-12-16,Winter,2015-12-27T08:00Z +Cancel,79,2016,February,8,18,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Canceled,2015-12-16,Winter,2016-02-18T08:00Z +Keep,4,2015,December,51,15,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-16,Winter,2015-12-15T08:00Z +Cancel,44,2016,January,1,2,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,122.5,0,1,Canceled,2015-12-16,Winter,2016-01-02T08:00Z +Keep,2,2015,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,1,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,April,16,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,E,0,No Deposit , NULL, 399,0,Transient,56,0,1,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,1,2016,May,20,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 399,0,Transient,56,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,2,2017,June,26,28,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 399,0,Transient,75,0,1,Check-Out,2017-06-30,Summer,2017-06-28T07:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,5,2015,December,51,15,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,32,0,1,Check-Out,2015-12-17,Winter,2015-12-15T08:00Z +Keep,5,2015,December,51,16,0,1,1,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 286,0,Transient,38,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,35,1,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2016,April,15,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 31,0,Transient,45,1,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,35,1,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,7,2015,December,51,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,1,No Deposit , NULL, NULL,0,Transient,38,0,3,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,7,2015,December,51,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,1,No Deposit , NULL, NULL,0,Transient,38,0,3,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2015,December,51,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 127, NULL,0,Transient,26.5,0,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,0,2017,February,8,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,48,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Cancel,196,2016,June,27,29,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,106,0,2,Canceled,2015-12-17,Summer,2016-06-29T07:00Z +Cancel,196,2016,June,27,29,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,1,0,E,E,0,No Deposit , 240, NULL,0,Transient,106,0,2,Canceled,2015-12-17,Summer,2016-06-29T07:00Z +Keep,0,2015,December,51,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2015-12-17,Winter,2015-12-16T08:00Z +Keep,13,2015,December,51,13,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 2, NULL,0,Transient,25,0,1,Check-Out,2015-12-17,Winter,2015-12-13T08:00Z +Keep,11,2015,December,51,13,2,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,42.9,1,1,Check-Out,2015-12-17,Winter,2015-12-13T08:00Z +Keep,11,2015,December,51,13,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,38.4,0,1,Check-Out,2015-12-17,Winter,2015-12-13T08:00Z +Keep,0,2015,December,51,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 144,0,Transient,25,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,1,2015,December,51,16,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,32,0,0,Check-Out,2015-12-18,Winter,2015-12-16T08:00Z +Keep,0,2015,December,51,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 144,0,Transient,25,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 144,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2015,December,51,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,0,2015,December,51,14,1,3,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 110,0,Transient,40,0,1,Check-Out,2015-12-18,Winter,2015-12-14T08:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 110,0,Transient-Party,40,0,1,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2015,December,51,14,1,3,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 110,0,Transient,40,0,1,Check-Out,2015-12-18,Winter,2015-12-14T08:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,HB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 110,0,Transient-Party,40,0,1,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2015,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,3,2015,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,0,2016,March,11,11,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,F,0,No Deposit , NULL, NULL,0,Transient,71,1,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,0,2015,December,51,17,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2015-12-18,Winter,2015-12-17T08:00Z +Keep,2,2015,December,51,14,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30,0,1,Check-Out,2015-12-18,Winter,2015-12-14T08:00Z +Keep,0,2015,December,51,14,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,32,0,0,Check-Out,2015-12-18,Winter,2015-12-14T08:00Z +Keep,1,2015,December,51,15,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,34,0,1,Check-Out,2015-12-19,Winter,2015-12-15T08:00Z +Keep,2,2015,December,51,16,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,61,1,0,Check-Out,2015-12-19,Winter,2015-12-16T08:00Z +Keep,1,2015,December,51,18,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 175, NULL,0,Group,30,0,0,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,33,2015,December,50,12,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-19,Winter,2015-12-12T08:00Z +Keep,105,2015,December,51,14,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,31.88,0,1,Check-Out,2015-12-19,Winter,2015-12-14T08:00Z +Keep,1,2015,December,51,18,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,20,2015,December,51,17,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2015-12-19,Winter,2015-12-17T08:00Z +Keep,17,2015,December,51,15,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,56,0,1,Check-Out,2015-12-19,Winter,2015-12-15T08:00Z +Keep,0,2015,December,51,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Group,35.11,0,0,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,11,2015,December,51,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-19,Winter,2015-12-18T08:00Z +Keep,3,2015,December,51,19,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,69,1,0,Check-Out,2015-12-21,Winter,2015-12-19T08:00Z +Keep,3,2015,December,51,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,15,2015,December,51,16,0,4,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,61,0,1,Check-Out,2015-12-20,Winter,2015-12-16T08:00Z +Keep,3,2015,December,51,18,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2015-12-20,Winter,2015-12-18T08:00Z +Keep,0,2015,December,51,19,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,2,2015,December,51,17,0,3,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2015-12-20,Winter,2015-12-17T08:00Z +Keep,4,2015,December,51,19,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,0,2015,December,51,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,5,2015,December,51,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,3,2016,December,51,17,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,35,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,0,2015,December,51,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 241, NULL,0,Transient,72.43,0,0,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,39,2015,December,51,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,27.53,0,0,Check-Out,2015-12-20,Winter,2015-12-13T08:00Z +Keep,11,2015,December,51,18,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,46,0,1,Check-Out,2015-12-20,Winter,2015-12-18T08:00Z +Keep,5,2015,December,51,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,5,2015,December,51,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Corporate, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,16,2015,December,51,19,0,1,2,1,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,G,0,No Deposit , 240, NULL,0,Transient,69,1,3,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,0,2015,December,51,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,15,2015,December,51,19,0,1,2,1,0,BB,ESP,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,61,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,5,2015,December,51,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,5,2015,December,51,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,0,2015,December,51,19,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,2,2015,December,51,18,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2015-12-20,Winter,2015-12-18T08:00Z +Keep,0,2015,December,51,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,4,2015,December,51,19,0,1,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,72,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,9,2015,December,51,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,17,2015,December,51,19,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-20,Winter,2015-12-19T08:00Z +Keep,45,2015,December,51,14,1,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,63.9,0,1,Check-Out,2015-12-20,Winter,2015-12-14T08:00Z +Keep,13,2015,December,51,13,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 8, NULL,0,Transient,49,0,0,Check-Out,2015-12-20,Winter,2015-12-13T08:00Z +Keep,12,2015,December,51,14,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,43.26,0,1,Check-Out,2015-12-21,Winter,2015-12-14T08:00Z +Keep,24,2015,December,51,18,1,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2015-12-21,Winter,2015-12-18T08:00Z +Keep,0,2015,December,51,17,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-12-21,Winter,2015-12-17T08:00Z +Keep,0,2015,December,52,20,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-21,Winter,2015-12-20T08:00Z +Keep,0,2015,December,51,19,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2015-12-21,Winter,2015-12-19T08:00Z +Keep,203,2015,December,51,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Contract,26.1,0,1,Check-Out,2015-12-21,Winter,2015-12-14T08:00Z +Keep,210,2015,December,52,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Contract,75.07,0,1,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,2,2015,December,51,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2015-12-21,Winter,2015-12-17T08:00Z +Keep,202,2015,December,51,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,30.6,0,2,Check-Out,2015-12-21,Winter,2015-12-14T08:00Z +Keep,35,2015,December,52,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,65.27,0,2,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,10,2015,December,52,20,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,76.4,0,1,Check-Out,2015-12-21,Winter,2015-12-20T08:00Z +Keep,0,2015,December,52,20,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-21,Winter,2015-12-20T08:00Z +Keep,0,2015,December,52,20,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2015-12-21,Winter,2015-12-20T08:00Z +Keep,19,2015,December,52,21,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,56.33,1,0,Check-Out,2015-12-24,Winter,2015-12-21T08:00Z +Keep,16,2015,December,49,3,6,13,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 104, NULL,0,Transient,26.26,0,0,Check-Out,2015-12-22,Winter,2015-12-03T08:00Z +Keep,8,2015,December,51,17,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 171, NULL,0,Transient,57,0,0,Check-Out,2015-12-22,Winter,2015-12-17T08:00Z +Keep,5,2015,December,52,20,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,5,2015,December,52,20,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47,1,1,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,75,2015,December,51,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,65.33,0,0,Check-Out,2015-12-22,Winter,2015-12-15T08:00Z +Keep,22,2015,December,52,22,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-12-22,Winter,2015-12-22T08:00Z +Keep,46,2015,December,52,20,2,0,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 6, NULL,0,Transient-Party,26,0,1,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,46,2015,December,52,20,2,0,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient-Party,32.5,0,1,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,46,2015,December,52,20,2,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient-Party,26,0,0,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,46,2015,December,52,20,2,0,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient-Party,26,0,2,Check-Out,2015-12-22,Winter,2015-12-20T08:00Z +Keep,0,2015,December,52,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,49,1,0,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,0,2015,December,52,21,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,0,2016,March,11,8,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,0,2016,October,44,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,2,2015,December,52,21,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,121,2015,December,51,19,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,29.16,0,2,Check-Out,2015-12-22,Winter,2015-12-19T08:00Z +Keep,128,2016,December,51,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2016-12-21,Winter,2016-12-17T08:00Z +Keep,19,2015,December,51,16,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,56,0,0,Check-Out,2015-12-22,Winter,2015-12-16T08:00Z +Keep,1,2015,December,52,21,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-22,Winter,2015-12-21T08:00Z +Keep,19,2015,December,51,16,2,4,3,0,0,HB,NGA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,79.5,0,1,Check-Out,2015-12-22,Winter,2015-12-16T08:00Z +Keep,10,2015,December,51,19,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Check-Out,2015-12-22,Winter,2015-12-19T08:00Z +Keep,25,2015,December,52,22,0,1,2,0,1,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,3,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,0,2015,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,6,2016,December,53,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,3,2017,June,23,5,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 94,0,Group,75,1,0,Check-Out,2017-06-06,Summer,2017-06-05T07:00Z +Keep,0,2015,December,52,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,25,1,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,7,2015,December,52,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,1,2015,December,52,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,34,2015,December,52,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,34,2015,December,52,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,35.1,0,2,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,34,2015,December,52,22,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,22,2015,December,52,22,0,1,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2015-12-23,Winter,2015-12-22T08:00Z +Keep,4,2015,December,52,21,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,58,0,2,Check-Out,2015-12-23,Winter,2015-12-21T08:00Z +Keep,24,2015,December,51,19,2,3,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,91.9,0,1,Check-Out,2015-12-24,Winter,2015-12-19T08:00Z +Cancel,11,2015,December,52,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,0,0,1,No-Show,2015-12-23,Winter,2015-12-23T08:00Z +Keep,0,2015,December,52,24,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2015-12-24,Winter,2015-12-24T08:00Z +Keep,8,2015,December,52,22,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,29,0,0,Check-Out,2015-12-24,Winter,2015-12-22T08:00Z +Keep,1,2015,December,52,21,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,53.67,0,1,Check-Out,2015-12-24,Winter,2015-12-21T08:00Z +Keep,13,2015,December,52,22,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.2,0,1,Check-Out,2015-12-24,Winter,2015-12-22T08:00Z +Keep,3,2015,December,52,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,13,2015,December,52,22,0,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,59.85,0,0,Check-Out,2015-12-25,Winter,2015-12-22T08:00Z +Keep,10,2015,December,52,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,64,1,0,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,1,2015,December,52,24,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,0,2015,December,52,23,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,107.5,1,0,Check-Out,2015-12-25,Winter,2015-12-23T08:00Z +Keep,15,2015,December,52,24,0,1,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,1,2015,December,52,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,20,2015,December,52,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,7,2015,December,52,24,0,1,2,2,0,Undefined,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,149,0,0,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,20,2015,December,52,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2015-12-25,Winter,2015-12-24T08:00Z +Keep,17,2015,December,52,22,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,80,0,1,Check-Out,2015-12-26,Winter,2015-12-22T08:00Z +Keep,0,2015,December,52,25,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2015-12-26,Winter,2015-12-25T08:00Z +Keep,1,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2015-12-26,Winter,2015-12-25T08:00Z +Keep,297,2016,December,52,23,1,2,2,0,0,HB,PRT,Direct,Direct, 1,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,60.87,0,3,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,24,2015,December,52,20,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,101.5,0,0,Check-Out,2015-12-26,Winter,2015-12-20T08:00Z +Keep,139,2015,December,52,22,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,44.16,0,1,Check-Out,2015-12-26,Winter,2015-12-22T08:00Z +Keep,27,2015,December,52,24,0,2,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient,50,0,0,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,3,2015,December,52,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,125,0,1,Check-Out,2015-12-26,Winter,2015-12-25T08:00Z +Keep,50,2015,December,51,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,57.04,0,0,Check-Out,2015-12-26,Winter,2015-12-19T08:00Z +Keep,12,2015,December,52,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,93,2015,December,51,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,40.5,0,1,Check-Out,2015-12-26,Winter,2015-12-19T08:00Z +Keep,0,2015,December,52,25,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-12-26,Winter,2015-12-25T08:00Z +Keep,40,2015,December,51,19,2,5,2,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,74.61,0,1,Check-Out,2015-12-26,Winter,2015-12-19T08:00Z +Keep,40,2015,December,51,19,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient-Party,49.4,0,0,Check-Out,2015-12-26,Winter,2015-12-19T08:00Z +Keep,4,2015,December,52,24,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,4,2015,December,52,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-12-26,Winter,2015-12-24T08:00Z +Keep,73,2015,December,50,12,4,10,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,36,0,1,Check-Out,2015-12-26,Winter,2015-12-12T08:00Z +Keep,138,2015,December,52,21,1,5,2,0,0,BB,DZA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,35.16,1,2,Check-Out,2015-12-27,Winter,2015-12-21T08:00Z +Keep,138,2015,December,52,21,1,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,25.11,0,2,Check-Out,2015-12-27,Winter,2015-12-21T08:00Z +Keep,0,2015,December,52,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,7,2015,December,52,24,0,3,2,0,0,BB,LKA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,3,2015,December,52,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 240, NULL,0,Transient,78,1,0,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,0,2015,December,52,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,61,1,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,0,2015,December,52,26,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,29,2015,December,52,24,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,91,1,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,20,2015,December,52,23,0,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,64,0,1,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,20,2015,December,52,23,0,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,58,0,1,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,111,2015,December,52,20,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,27.9,0,3,Check-Out,2015-12-27,Winter,2015-12-20T08:00Z +Keep,111,2015,December,52,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,32.4,0,3,Check-Out,2015-12-27,Winter,2015-12-20T08:00Z +Keep,14,2015,December,52,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,29,2015,December,52,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,0,2015,December,52,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,10,2015,December,52,25,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2015-12-27,Winter,2015-12-25T08:00Z +Keep,24,2015,December,52,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,30,2015,December,52,23,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98.5,1,2,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,30,2015,December,52,23,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.5,0,2,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,29,2015,December,52,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,2,2015,December,52,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,6,2015,December,52,26,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,57.75,1,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,24,2015,December,52,24,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,46,0,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,3,2016,January,3,14,3,8,1,0,0,BB,PRT,Direct,Direct, 1,0,1,D,E,5,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-25,Winter,2016-01-14T08:00Z +Keep,1,2016,November,47,17,2,7,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,E,1,No Deposit , NULL, NULL,0,Transient,59.33,0,0,Check-Out,2016-11-26,Fall,2016-11-17T08:00Z +Keep,0,2016,December,50,8,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,3,E,E,2,No Deposit , NULL, NULL,0,Transient,62.2,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,7,2017,January,4,26,2,8,2,0,0,BB,PRT,Direct,Direct, 1,0,4,E,E,2,No Deposit , NULL, NULL,0,Transient,58,0,3,Check-Out,2017-02-05,Winter,2017-01-26T08:00Z +Keep,3,2015,December,52,25,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,50,0,1,Check-Out,2015-12-27,Winter,2015-12-25T08:00Z +Keep,13,2015,December,52,23,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,79.5,0,1,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,18,2015,December,52,26,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,14,2015,December,52,25,0,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,61,1,2,Check-Out,2015-12-27,Winter,2015-12-25T08:00Z +Keep,1,2015,December,52,24,0,3,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,44,0,0,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,14,2015,December,52,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,98.33,0,1,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,18,2015,December,52,23,0,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,45,0,0,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Cancel,16,2016,April,17,20,1,4,1,0,0,BB,PRT,Direct,TA/TO, 1,1,1,E,E,1,No Deposit , NULL, NULL,0,Transient,89.1,0,0,Canceled,2016-04-19,Spring,2016-04-20T07:00Z +Keep,13,2015,December,52,23,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,73.75,0,1,Check-Out,2015-12-27,Winter,2015-12-23T08:00Z +Keep,28,2015,December,52,25,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,25,0,1,Check-Out,2015-12-27,Winter,2015-12-25T08:00Z +Keep,0,2015,December,52,26,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2015-12-27,Winter,2015-12-26T08:00Z +Keep,0,2015,December,52,24,0,3,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,61,0,1,Check-Out,2015-12-27,Winter,2015-12-24T08:00Z +Keep,23,2015,December,51,16,3,9,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,53.9,0,1,Check-Out,2015-12-28,Winter,2015-12-16T08:00Z +Keep,14,2015,December,52,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,63,0,0,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,14,2015,December,52,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,69,1,0,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,2,2015,December,52,24,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,121,1,0,Check-Out,2015-12-28,Winter,2015-12-24T08:00Z +Keep,8,2015,December,52,26,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,29,0,0,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,1,2015,December,53,28,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-12-28,Winter,2015-12-28T08:00Z +Keep,0,2015,December,52,26,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,47,2015,December,52,23,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,1,0,Check-Out,2015-12-28,Winter,2015-12-23T08:00Z +Keep,0,2015,December,52,26,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,1,2015,December,52,25,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,0,2015,December,53,27,1,0,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,28,2015,December,52,26,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,104,1,0,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,26,2015,December,53,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,29,2015,December,52,25,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,1,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,29,2015,December,52,25,1,2,2,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient-Party,37,0,1,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,0,2015,December,53,27,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,5,2015,December,53,27,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52,1,0,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,37,2015,December,53,27,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,0,2015,December,52,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.35,0,0,Check-Out,2015-12-28,Winter,2015-12-25T08:00Z +Keep,0,2015,December,53,28,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2015-12-28,Winter,2015-12-28T08:00Z +Keep,14,2015,December,52,26,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,1,2015,December,52,26,1,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2015-12-28,Winter,2015-12-26T08:00Z +Keep,4,2015,December,53,27,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,25,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,132,2015,December,52,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 171, NULL,0,Transient,37.53,0,0,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,47,2015,December,52,23,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,49,1,1,Check-Out,2015-12-28,Winter,2015-12-23T08:00Z +Keep,26,2015,December,53,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,131,2015,December,52,21,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,0,Check-Out,2015-12-28,Winter,2015-12-21T08:00Z +Keep,153,2015,December,53,27,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,50.4,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,4,2015,December,53,27,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,25,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,4,2015,December,53,27,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,29,0,1,Check-Out,2015-12-28,Winter,2015-12-27T08:00Z +Keep,3,2015,December,53,28,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2015-12-28,Winter,2015-12-28T08:00Z +Keep,24,2015,December,53,28,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,0,0,1,Check-Out,2015-12-28,Winter,2015-12-28T08:00Z +Keep,24,2015,December,53,28,0,0,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,0,0,1,Check-Out,2015-12-28,Winter,2015-12-28T08:00Z +Keep,29,2015,December,52,22,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,51.2,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,3,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,53.71,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,50,2015,December,52,26,2,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-29,Winter,2015-12-26T08:00Z +Keep,34,2015,December,52,23,2,4,1,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,40.85,0,0,Check-Out,2015-12-29,Winter,2015-12-23T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,29,2015,December,52,22,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58.63,1,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,75.57,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,8,2015,December,52,22,2,5,2,0,0,BB,LTU,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,79.43,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,19,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,64.14,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,58,2015,December,52,23,2,4,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,58,0,1,Check-Out,2015-12-29,Winter,2015-12-23T08:00Z +Keep,131,2015,December,52,22,2,5,1,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,42.57,0,0,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,131,2015,December,52,22,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 314, NULL,0,Transient-Party,65.57,0,1,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,24,2015,December,53,27,2,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,24,2015,December,53,27,2,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,10,2015,December,53,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 54,0,Transient,30,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,146,2015,December,52,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,38.11,0,2,Check-Out,2015-12-29,Winter,2015-12-22T08:00Z +Keep,36,2015,December,53,27,2,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,55.4,1,0,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,36,2015,December,53,27,2,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,25,2015,December,52,25,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,Check-Out,2015-12-29,Winter,2015-12-25T08:00Z +Keep,138,2015,December,52,26,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.93,0,1,Check-Out,2015-12-29,Winter,2015-12-26T08:00Z +Keep,0,2015,December,53,28,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,27,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Group,50,0,0,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,0,2015,December,53,28,1,0,2,1,1,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,14,2015,December,53,28,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,35,1,1,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,111,1,2,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,69,2015,December,53,27,2,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36,0,1,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,0,2015,December,53,28,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,0,2,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,0,2016,March,12,16,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,3,2015,December,53,27,2,0,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,71,1,1,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,1,2015,December,53,27,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2015-12-29,Winter,2015-12-27T08:00Z +Keep,105,2015,December,51,15,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.48,0,1,Check-Out,2015-12-29,Winter,2015-12-15T08:00Z +Keep,14,2015,December,53,28,1,0,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,39.15,0,1,Check-Out,2015-12-29,Winter,2015-12-28T08:00Z +Keep,24,2015,December,52,26,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,54.33,0,1,Check-Out,2015-12-29,Winter,2015-12-26T08:00Z +Keep,29,2015,December,52,23,2,5,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,71,0,1,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,1,2015,December,53,28,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,1,2015,December,53,28,1,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient-Party,40,0,0,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,28,1,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient-Party,40,0,0,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,1,2015,December,53,30,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2015-12-30,Winter,2015-12-30T08:00Z +Keep,32,2015,December,53,29,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,53.2,1,0,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,118,2015,December,52,23,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Contract,25.92,0,2,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,35,2015,December,52,24,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.16,0,2,Check-Out,2015-12-30,Winter,2015-12-24T08:00Z +Keep,34,2015,December,53,27,2,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,32.5,0,1,Check-Out,2015-12-30,Winter,2015-12-27T08:00Z +Keep,1,2015,December,53,29,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,45,2015,December,52,25,2,3,2,2,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,46,0,0,Check-Out,2015-12-30,Winter,2015-12-25T08:00Z +Keep,7,2015,December,52,26,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2015-12-30,Winter,2015-12-26T08:00Z +Keep,4,2015,December,53,27,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,81,1,2,Check-Out,2015-12-30,Winter,2015-12-27T08:00Z +Keep,44,2015,December,52,26,2,2,2,1,0,HB,FRA,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,143.5,1,0,Check-Out,2015-12-30,Winter,2015-12-26T08:00Z +Keep,25,2015,December,52,23,2,5,1,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,42.35,0,1,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,46,2015,December,52,26,2,2,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,36.4,0,1,Check-Out,2015-12-30,Winter,2015-12-26T08:00Z +Keep,0,2015,December,53,28,1,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,36,2015,December,52,20,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,91.92,0,0,Check-Out,2015-12-30,Winter,2015-12-20T08:00Z +Keep,0,2015,December,53,29,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,1,2015,December,53,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,0,2015,December,53,28,1,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,1,2,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,3,2015,December,52,23,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,36.8,0,0,Check-Out,2015-12-30,Winter,2015-12-23T08:00Z +Keep,23,2015,December,53,27,2,1,2,1,1,HB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,104,1,2,Check-Out,2015-12-30,Winter,2015-12-27T08:00Z +Keep,5,2015,December,53,28,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2015-12-30,Winter,2015-12-28T08:00Z +Keep,0,2015,December,53,29,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,0,2015,December,53,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2015-12-30,Winter,2015-12-29T08:00Z +Keep,0,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,22,2015,December,52,26,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46,0,0,Check-Out,2015-12-31,Winter,2015-12-26T08:00Z +Keep,178,2015,December,53,27,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,54.41,0,0,Check-Out,2015-12-31,Winter,2015-12-27T08:00Z +Keep,16,2015,December,52,23,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,72.5,0,0,Check-Out,2015-12-31,Winter,2015-12-23T08:00Z +Keep,33,2015,December,53,28,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,43.38,0,1,Check-Out,2015-12-31,Winter,2015-12-28T08:00Z +Keep,30,2015,December,53,30,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2015-12-31,Winter,2015-12-30T08:00Z +Keep,93,2015,December,53,30,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,102.6,0,0,Check-Out,2015-12-31,Winter,2015-12-30T08:00Z +Keep,23,2015,December,53,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,58,0,1,Check-Out,2015-12-31,Winter,2015-12-30T08:00Z +Keep,28,2015,December,53,28,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,61,1,1,Check-Out,2015-12-31,Winter,2015-12-28T08:00Z +Keep,17,2015,December,53,27,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-12-31,Winter,2015-12-27T08:00Z +Keep,17,2015,December,53,27,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-12-31,Winter,2015-12-27T08:00Z +Keep,17,2015,December,53,27,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2015-12-31,Winter,2015-12-27T08:00Z +Keep,7,2015,December,53,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, 113,0,Transient,31,1,1,Check-Out,2015-12-31,Winter,2015-12-29T08:00Z +Keep,3,2015,December,53,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,110.2,1,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,0,2016,May,19,7,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,2,D,D,0,No Deposit , NULL, 113,0,Transient,90.6,1,1,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,0,2015,December,53,29,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,105.11,0,1,Check-Out,2015-12-31,Winter,2015-12-29T08:00Z +Keep,6,2015,December,53,27,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,106,0,0,Check-Out,2015-12-31,Winter,2015-12-27T08:00Z +Keep,0,2015,December,53,31,0,3,2,2,0,BB,PRT,Direct,Direct, 1,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,139.33,1,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,113,2015,December,53,29,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.73,1,1,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,11,2015,December,53,29,0,3,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,2,1,0,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,0,2015,December,53,31,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,284,0,0,Check-Out,2016-01-01,Winter,2015-12-31T08:00Z +Cancel,67,2016,December,53,31,0,1,2,0,0,BB,BEL,Direct,Direct, 1,1,1,A,A,1,No Deposit , NULL, NULL,0,Transient,300,0,2,Canceled,2016-12-27,Winter,2016-12-31T08:00Z +Keep,0,2015,December,53,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,124,1,0,Check-Out,2016-01-01,Winter,2015-12-31T08:00Z +Keep,16,2015,December,53,30,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,155,0,0,Check-Out,2016-01-01,Winter,2015-12-30T08:00Z +Keep,131,2015,December,53,28,1,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,107.05,1,0,Check-Out,2016-01-01,Winter,2015-12-28T08:00Z +Keep,82,2015,December,53,29,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,126.01,1,0,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,74,2015,December,53,29,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,145.67,1,0,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,88,2015,December,53,29,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,164.67,1,0,Check-Out,2016-01-01,Winter,2015-12-29T08:00Z +Keep,304,2015,December,53,31,0,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,89.55,0,0,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Keep,47,2015,December,53,30,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 3, NULL,0,Transient,139.48,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,10,2017,May,20,20,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 3, NULL,0,Transient,61.6,0,1,Check-Out,2017-05-25,Spring,2017-05-20T07:00Z +Keep,36,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,188.33,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,42,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,198.33,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,37,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,182.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,37,2015,December,53,30,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,224,0,2,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,64,2015,December,53,30,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,135.28,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,70,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,169.48,1,1,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,42,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,192.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,37,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,188.33,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,38,2015,December,53,29,0,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,192.54,1,1,Check-Out,2016-01-02,Winter,2015-12-29T08:00Z +Keep,90,2015,December,53,30,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,158.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,152,2015,December,52,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,48.98,0,0,Check-Out,2016-01-02,Winter,2015-12-26T08:00Z +Keep,201,2017,April,16,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,F,F,0,No Deposit , 241, NULL,0,Transient,71.3,0,1,Check-Out,2017-04-28,Spring,2017-04-21T07:00Z +Keep,42,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,198.33,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,61,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,14,2015,December,53,29,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,1,2,Check-Out,2016-01-02,Winter,2015-12-29T08:00Z +Keep,14,2015,December,53,29,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129,0,1,Check-Out,2016-01-02,Winter,2015-12-29T08:00Z +Keep,0,2016,January,1,1,0,1,2,3,0,BB,PRT,Direct,Direct, 0,0,0,A,G,2,No Deposit , NULL, NULL,0,Transient,124,0,0,Check-Out,2016-01-02,Winter,2016-01-01T08:00Z +Keep,21,2015,December,53,31,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,157,0,1,Check-Out,2016-01-02,Winter,2015-12-31T08:00Z +Keep,14,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,166.67,0,1,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,14,2015,December,53,30,0,3,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,166.67,0,3,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,77,2015,December,53,29,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,142,1,0,Check-Out,2016-01-02,Winter,2015-12-29T08:00Z +Keep,13,2015,December,53,30,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,198.33,1,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,155.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,1,0,0,HB,PRT,Groups,Direct, 1,0,1,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,222.5,0,0,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,6,2017,February,7,12,2,0,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,1,E,E,1,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2017-02-14,Winter,2017-02-12T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,245.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,245.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,245.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,245.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,0,2017,April,14,3,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,237.33,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,168.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,155.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,112,2015,December,53,30,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,224.67,0,0,Check-Out,2016-01-02,Winter,2015-12-30T08:00Z +Keep,70,2015,December,52,23,2,8,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,203.95,1,0,Check-Out,2016-01-02,Winter,2015-12-23T08:00Z +Keep,105,2016,December,52,23,3,7,2,0,0,HB,PRT,Direct,TA/TO, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,128.7,1,1,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,2,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,44,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 181, NULL,0,Transient,163.48,1,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,12,2016,October,40,1,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,E,E,1,No Deposit , 181, NULL,1,Transient,108.4,1,0,Check-Out,2016-10-06,Fall,2016-10-01T07:00Z +Keep,116,2017,June,22,3,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,E,E,0,No Deposit , 181, NULL,0,Transient,123,1,2,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,8,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,2,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,13,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,4,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,17,2017,February,9,26,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,48,1,4,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,3,2016,January,1,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,3,2016,January,1,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,20,2016,January,1,1,0,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,57,0,1,Check-Out,2016-01-03,Winter,2016-01-01T08:00Z +Keep,41,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,145.87,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,53,2015,December,53,27,2,5,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,65.43,0,0,Check-Out,2016-01-03,Winter,2015-12-27T08:00Z +Keep,41,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,145.87,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,49,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,151.87,1,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,41,2015,December,53,31,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,145.87,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,59,2015,December,52,26,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,F,1,No Deposit , 240, NULL,0,Transient,71.18,1,1,Check-Out,2016-01-03,Winter,2015-12-26T08:00Z +Keep,7,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,26,2016,January,1,2,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,65,1,2,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,11,2016,December,53,27,0,1,2,0,0,HB,PRT,Online travel agent,Direct, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Group,109,1,3,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,16,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,2,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,2,2015,December,53,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110.67,0,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,4,2016,January,1,2,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,16,2017,June,26,30,1,2,2,1,0,BB,PRT,Online travel agent,Direct, 1,0,1,C,C,1,No Deposit , 240, NULL,0,Transient,193.33,0,1,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,5,2016,January,1,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,5,2016,January,1,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,48,2015,December,53,31,0,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,153.67,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,71,2015,December,53,31,0,3,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73.4,0,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,120,2015,December,53,31,0,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,5,No Deposit , 250, NULL,0,Transient,127.27,1,1,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,0,2016,January,1,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,1,2016,January,1,2,0,1,2,0,0,BB,CUB,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,1,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,42,2015,December,53,30,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Check-Out,2016-01-03,Winter,2015-12-30T08:00Z +Keep,3,2016,January,1,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,39,0,0,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,3,2016,January,1,2,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,46,0,0,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,3,2016,January,1,2,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,46,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,26,2016,January,1,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,11,2016,December,53,27,0,1,2,0,0,HB,PRT,Online travel agent,Direct, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Group,103,0,2,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,53,2015,December,53,27,2,5,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,65.43,0,0,Check-Out,2016-01-03,Winter,2015-12-27T08:00Z +Keep,2,2016,January,1,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-01-03,Winter,2016-01-02T08:00Z +Keep,2,2015,December,53,31,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,72.93,0,0,Check-Out,2016-01-03,Winter,2015-12-31T08:00Z +Keep,90,2015,December,53,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,41.53,0,0,Check-Out,2016-01-03,Winter,2015-12-27T08:00Z +Keep,100,2015,December,52,23,3,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,108.26,1,1,Check-Out,2016-01-04,Winter,2015-12-23T08:00Z +Keep,9,2016,January,2,4,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-01-04,Winter,2016-01-04T08:00Z +Keep,15,2016,January,1,2,1,1,3,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,1,0,Check-Out,2016-01-04,Winter,2016-01-02T08:00Z +Keep,8,2015,December,53,29,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,2,No Deposit , NULL, NULL,0,Transient,104.33,0,0,Check-Out,2016-01-04,Winter,2015-12-29T08:00Z +Keep,70,2016,December,53,28,0,4,2,0,0,BB,PRT,Complementary,Direct, 1,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2017-01-01,Winter,2016-12-28T08:00Z +Keep,0,2016,January,1,2,1,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,F,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-01-04,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,3,1,0,2,0,1,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Group,48,0,2,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,83,2016,January,2,3,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,56.1,0,0,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,89,2015,December,53,30,1,4,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,109.2,0,0,Check-Out,2016-01-04,Winter,2015-12-30T08:00Z +Keep,0,2016,January,2,4,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,D,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-04,Winter,2016-01-04T08:00Z +Keep,2,2015,December,53,31,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101,0,2,Check-Out,2016-01-04,Winter,2015-12-31T08:00Z +Keep,1,2016,January,2,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,1,2016,January,2,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,1,2016,January,1,2,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Group,48,0,0,Check-Out,2016-01-04,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,3,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Group,43,0,0,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,1,2016,January,1,2,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Group,48,0,1,Check-Out,2016-01-04,Winter,2016-01-02T08:00Z +Keep,100,2015,December,52,23,3,9,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,84.37,1,1,Check-Out,2016-01-04,Winter,2015-12-23T08:00Z +Keep,8,2016,January,2,3,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,1,2016,January,2,3,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 314, NULL,0,Transient,25,0,0,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,0,2016,January,2,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-04,Winter,2016-01-03T08:00Z +Keep,17,2016,January,1,2,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,57.2,0,1,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Cancel,23,2016,January,2,4,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,0,0,0,No-Show,2016-01-04,Winter,2016-01-04T08:00Z +Keep,148,2016,January,1,2,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.33,0,3,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,5,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,D,A,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-01-05,Winter,2016-01-05T08:00Z +Keep,148,2016,January,1,2,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.33,1,3,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,21,2016,January,2,5,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,0,0,1,Check-Out,2016-01-05,Winter,2016-01-05T08:00Z +Keep,148,2016,January,1,2,2,1,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.33,0,3,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,148,2016,January,1,2,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.33,1,3,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,138,2016,January,1,2,2,1,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.33,0,2,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,2,2016,January,1,1,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64.25,0,2,Check-Out,2016-01-05,Winter,2016-01-01T08:00Z +Keep,5,2016,January,2,4,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-05,Winter,2016-01-04T08:00Z +Keep,23,2016,January,1,2,2,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.33,1,0,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-05,Winter,2016-01-04T08:00Z +Keep,23,2016,January,1,2,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.33,0,1,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,7,2016,January,1,2,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,4,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-01-05,Winter,2016-01-04T08:00Z +Keep,28,2016,January,1,2,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.33,1,1,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,14,2016,January,2,3,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,1,Check-Out,2016-01-05,Winter,2016-01-03T08:00Z +Keep,0,2016,January,2,3,2,0,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Group,50.8,1,0,Check-Out,2016-01-05,Winter,2016-01-03T08:00Z +Keep,0,2016,January,1,2,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 242, NULL,0,Transient,66.2,1,0,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,4,2016,January,1,2,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45.33,0,2,Check-Out,2016-01-05,Winter,2016-01-02T08:00Z +Keep,38,2016,January,2,3,2,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,34,1,0,Check-Out,2016-01-05,Winter,2016-01-03T08:00Z +Keep,0,2016,January,2,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,2,Check-Out,2016-01-05,Winter,2016-01-04T08:00Z +Keep,0,2016,January,2,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,0,2016,January,2,5,0,1,1,0,0,BB,UKR,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,11,2016,January,2,5,0,1,1,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,0,2016,January,2,5,0,1,1,0,0,BB,NOR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,3,2016,January,2,3,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,3,2016,January,2,3,2,1,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,0,2016,January,2,5,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,25,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,38,2016,January,2,3,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,5,2016,January,2,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 159,0,Transient,37,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,2,2016,February,8,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , 159, NULL,0,Transient,25,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,38,2015,December,53,31,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,86.83,0,1,Check-Out,2016-01-06,Winter,2015-12-31T08:00Z +Keep,1,2016,January,2,4,1,1,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Group,32.3,0,1,Check-Out,2016-01-06,Winter,2016-01-04T08:00Z +Keep,38,2016,January,2,5,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-06,Winter,2016-01-05T08:00Z +Keep,0,2016,January,2,6,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,44.8,0,0,Check-Out,2016-01-10,Winter,2016-01-06T08:00Z +Keep,16,2016,January,2,3,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,52.8,0,2,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,24,2016,January,2,3,2,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,30,0,0,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,46,2016,January,1,2,2,2,2,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.45,1,1,Check-Out,2016-01-06,Winter,2016-01-02T08:00Z +Keep,157,2016,January,2,4,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,32.4,0,2,Check-Out,2016-01-06,Winter,2016-01-04T08:00Z +Keep,5,2016,January,1,2,2,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,73.25,0,0,Check-Out,2016-01-06,Winter,2016-01-02T08:00Z +Keep,11,2016,January,2,3,2,1,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 1, NULL,0,Transient,39,1,1,Check-Out,2016-01-06,Winter,2016-01-03T08:00Z +Keep,1,2016,January,2,6,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.65,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,5,2016,January,2,5,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-07,Winter,2016-01-05T08:00Z +Keep,0,2016,January,2,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Group,44,1,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,0,2016,January,2,6,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,6,2016,January,2,5,0,2,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,61,0,0,Check-Out,2016-01-07,Winter,2016-01-05T08:00Z +Keep,75,2015,December,53,29,2,7,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2016-01-07,Winter,2015-12-29T08:00Z +Keep,0,2016,January,2,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,3,2016,January,2,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-07,Winter,2016-01-05T08:00Z +Keep,38,2016,January,2,3,2,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,28,0,0,Check-Out,2016-01-07,Winter,2016-01-03T08:00Z +Keep,0,2016,January,2,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,25,2016,January,2,6,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,0,2016,January,2,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-01-07,Winter,2016-01-06T08:00Z +Keep,12,2016,January,2,7,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-14,Winter,2016-01-07T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2016,January,3,11,1,2,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-14,Winter,2016-01-11T08:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2016,January,3,11,1,2,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-14,Winter,2016-01-11T08:00Z +Keep,0,2016,January,2,7,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,4,1,3,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,4,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,55,2016,January,2,4,1,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,37,2016,January,2,3,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-08,Winter,2016-01-03T08:00Z +Keep,5,2016,January,2,4,1,3,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,61,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,1,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,0,2016,January,2,8,0,1,2,0,0,HB,PRT,Groups,Corporate, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,1,0,Check-Out,2016-01-09,Winter,2016-01-08T08:00Z +Keep,39,2016,January,1,2,2,4,2,0,0,BB,CMR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.83,0,2,Check-Out,2016-01-08,Winter,2016-01-02T08:00Z +Keep,0,2016,January,2,7,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,1,2016,January,2,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,29,1,0,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,0,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,8,2016,January,2,5,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 139, 99,0,Transient,38,0,0,Check-Out,2016-01-08,Winter,2016-01-05T08:00Z +Keep,0,2016,February,10,29,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 99,0,Transient,38,0,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,0,2016,April,16,11,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 99,0,Transient,42,0,0,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,68,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Cancel,8,2016,May,21,20,0,1,1,0,0,BB,PRT,Groups,Corporate, 1,1,1,D,D,1,Non Refund , NULL, 174,0,Transient-Party,94.5,0,0,Canceled,2016-05-18,Spring,2016-05-20T07:00Z +Keep,0,2016,January,2,3,2,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,39.15,0,0,Check-Out,2016-01-08,Winter,2016-01-03T08:00Z +Keep,7,2016,January,2,6,0,2,1,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,61,0,0,Check-Out,2016-01-08,Winter,2016-01-06T08:00Z +Keep,0,2016,January,2,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,2,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-08,Winter,2016-01-07T08:00Z +Keep,5,2016,January,2,4,1,3,2,0,0,HB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 174,0,Transient-Party,118,0,0,Check-Out,2016-01-08,Winter,2016-01-04T08:00Z +Keep,32,2016,January,2,3,2,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,39.15,0,1,Check-Out,2016-01-08,Winter,2016-01-03T08:00Z +Keep,27,2016,January,2,3,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.1,0,0,Check-Out,2016-01-08,Winter,2016-01-03T08:00Z +Keep,7,2016,January,2,4,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-01-09,Winter,2016-01-04T08:00Z +Keep,2,2016,January,2,4,1,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,56.4,1,1,Check-Out,2016-01-09,Winter,2016-01-04T08:00Z +Keep,38,2016,January,1,1,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-01-09,Winter,2016-01-01T08:00Z +Keep,10,2016,January,2,4,1,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,117,1,0,Check-Out,2016-01-09,Winter,2016-01-04T08:00Z +Keep,0,2016,January,2,7,0,2,3,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,81,1,0,Check-Out,2016-01-09,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,8,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,31.2,0,0,Check-Out,2016-01-09,Winter,2016-01-08T08:00Z +Keep,37,2016,January,2,7,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-09,Winter,2016-01-07T08:00Z +Keep,9,2016,January,2,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-09,Winter,2016-01-07T08:00Z +Keep,10,2016,January,2,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,44.8,0,2,Check-Out,2016-01-09,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,8,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-09,Winter,2016-01-08T08:00Z +Keep,61,2016,January,2,5,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45,0,1,Check-Out,2016-01-09,Winter,2016-01-05T08:00Z +Keep,0,2016,January,2,9,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,1,2017,January,1,3,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,11,2016,January,2,6,0,4,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,102,1,0,Check-Out,2016-01-10,Winter,2016-01-06T08:00Z +Keep,38,2017,January,1,3,2,8,2,0,0,HB,FRA,Direct,Direct, 1,0,1,F,F,1,No Deposit , 250, NULL,0,Transient,89.06,1,0,Check-Out,2017-01-13,Winter,2017-01-03T08:00Z +Keep,10,2016,January,2,5,0,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-10,Winter,2016-01-05T08:00Z +Keep,8,2016,January,2,8,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,8,2016,January,2,8,0,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,20,2016,January,2,8,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 258, NULL,0,Transient,35.25,0,0,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,0,2016,January,2,8,0,2,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,5,2016,January,2,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,2,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,0,2016,January,2,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,58.52,1,2,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,129,2016,January,2,5,0,5,2,0,0,BB,MYS,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,40.32,0,1,Check-Out,2016-01-10,Winter,2016-01-05T08:00Z +Keep,1,2016,January,2,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,1,2016,January,2,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,5,2016,January,2,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,54,1,3,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,12,2016,January,2,7,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,0,Check-Out,2016-01-10,Winter,2016-01-07T08:00Z +Keep,19,2016,January,2,3,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,82.5,1,1,Check-Out,2016-01-10,Winter,2016-01-03T08:00Z +Keep,4,2016,January,2,8,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2016-01-10,Winter,2016-01-08T08:00Z +Keep,1,2016,January,2,9,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,64,2016,January,2,9,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,5,2016,January,2,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,0,2016,January,2,9,0,1,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,5,2016,January,2,9,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-10,Winter,2016-01-09T08:00Z +Keep,31,2016,January,3,10,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-10,Winter,2016-01-10T08:00Z +Keep,1,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 195, NULL,0,Transient,30,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,10,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,1,2016,April,16,11,0,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-04-11,Spring,2016-04-11T07:00Z +Keep,9,2017,January,2,8,1,0,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,50,1,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,2,2016,January,3,10,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,0,2016,January,2,9,1,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,0,2016,January,2,9,1,1,2,0,0,BB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,35,1,1,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,2,2016,January,3,10,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,25,0,0,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,2,2016,January,3,10,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,31,1,0,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,0,2016,January,2,4,2,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,D,5,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-01-11,Winter,2016-01-04T08:00Z +Keep,0,2016,January,3,10,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,47,2016,January,2,7,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-11,Winter,2016-01-07T08:00Z +Keep,20,2016,January,2,4,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,2,Check-Out,2016-01-11,Winter,2016-01-04T08:00Z +Keep,20,2016,January,2,4,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58.8,1,2,Check-Out,2016-01-11,Winter,2016-01-04T08:00Z +Keep,23,2016,January,2,7,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,68,1,0,Check-Out,2016-01-11,Winter,2016-01-07T08:00Z +Keep,11,2016,January,2,8,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,69.2,1,1,Check-Out,2016-01-11,Winter,2016-01-08T08:00Z +Keep,3,2016,January,2,9,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 147, NULL,0,Transient,29.01,0,0,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,3,2016,January,2,8,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,0,Check-Out,2016-01-11,Winter,2016-01-08T08:00Z +Keep,0,2016,January,2,8,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-11,Winter,2016-01-08T08:00Z +Keep,0,2016,January,4,20,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-01-22,Winter,2016-01-20T08:00Z +Keep,4,2016,January,3,10,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-11,Winter,2016-01-10T08:00Z +Keep,0,2016,January,2,3,3,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,62.25,0,0,Check-Out,2016-01-11,Winter,2016-01-03T08:00Z +Keep,13,2016,January,2,7,1,3,2,0,0,BB,IRN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-01-11,Winter,2016-01-07T08:00Z +Keep,0,2016,January,2,9,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,30,0,0,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,0,2016,January,2,9,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-01-11,Winter,2016-01-09T08:00Z +Keep,30,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 108,0,Transient,30,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,62,2017,March,11,13,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 108,0,Transient,35,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,30,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 108,0,Transient,30,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,44,2017,June,23,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 108,0,Transient-Party,75,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,16,2016,January,3,11,1,0,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,11,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,February,10,29,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,A,0,No Deposit , 5, NULL,0,Group,34.4,0,1,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,March,11,10,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,E,0,No Deposit , NULL, 290,0,Transient,30,0,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,2,2016,January,3,10,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-12,Winter,2016-01-10T08:00Z +Keep,0,2016,January,3,10,2,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2016-01-12,Winter,2016-01-10T08:00Z +Keep,6,2016,January,3,12,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-12,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,11,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,11,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,12,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,3,2016,January,2,9,2,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,2,Check-Out,2016-01-12,Winter,2016-01-09T08:00Z +Keep,4,2016,January,3,10,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,31.65,0,2,Check-Out,2016-01-12,Winter,2016-01-10T08:00Z +Keep,5,2016,January,3,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient,38,0,0,Check-Out,2016-01-12,Winter,2016-01-11T08:00Z +Keep,5,2016,January,2,9,2,2,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2016-01-13,Winter,2016-01-09T08:00Z +Keep,5,2016,January,2,9,2,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,50,0,1,Check-Out,2016-01-13,Winter,2016-01-09T08:00Z +Keep,2,2016,January,2,8,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-13,Winter,2016-01-08T08:00Z +Keep,5,2016,January,3,12,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,February,7,10,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,4,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,17,2016,May,19,2,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , 250, 399,0,Transient-Party,81,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,1,2016,January,3,12,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,25,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,31,1,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,4,2016,January,3,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,January,3,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,2,7,2,4,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 36, NULL,0,Transient,38,0,0,Check-Out,2016-01-13,Winter,2016-01-07T08:00Z +Keep,0,2016,January,3,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,1,2016,January,3,12,0,1,2,0,0,BB,THA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 250,0,Transient,43,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,4,2016,January,3,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , 10, NULL,0,Transient,25,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,7,2016,March,10,2,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,F,0,No Deposit , 10, NULL,0,Transient,31,1,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,0,2016,January,3,11,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,49,1,0,Check-Out,2016-01-13,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,12,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,86,0,0,Check-Out,2016-01-13,Winter,2016-01-12T08:00Z +Keep,6,2016,January,3,10,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-01-13,Winter,2016-01-10T08:00Z +Keep,54,2016,January,2,9,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2016-01-13,Winter,2016-01-09T08:00Z +Keep,0,2016,January,3,13,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,38,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,0,2016,January,3,13,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,38,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,1,2016,January,3,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,0,2016,January,3,13,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,24,2015,December,51,17,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,56.17,0,0,Check-Out,2016-01-14,Winter,2015-12-17T08:00Z +Keep,3,2016,January,3,11,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,25,0,0,Check-Out,2016-01-14,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,0,2016,January,3,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Keep,0,2016,January,5,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,25,2016,January,3,10,2,2,1,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-14,Winter,2016-01-10T08:00Z +Keep,0,2016,January,3,12,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-14,Winter,2016-01-12T08:00Z +Keep,8,2016,January,3,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 358,0,Transient,30,0,0,Check-Out,2016-01-14,Winter,2016-01-13T08:00Z +Cancel,11,2016,June,27,27,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,A,0,No Deposit , NULL, 358,0,Transient,79,0,0,Canceled,2016-06-21,Summer,2016-06-27T07:00Z +Keep,37,2016,January,2,4,3,7,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-01-14,Winter,2016-01-04T08:00Z +Keep,1,2016,January,3,12,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2016-01-15,Winter,2016-01-12T08:00Z +Keep,5,2016,January,3,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,49,1,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,6,2017,February,8,23,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,75,1,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,0,2016,January,3,11,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-15,Winter,2016-01-11T08:00Z +Keep,0,2016,January,3,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2016,January,3,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,9,2016,January,3,14,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 361,0,Transient,43,0,1,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,3,2016,January,3,14,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,3,2016,January,3,14,0,1,1,0,0,BB,ESP,Corporate,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,38,1,1,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,0,2016,January,3,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,46.5,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,0,2016,November,47,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 184, NULL,0,Transient,54,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,3,2016,January,3,14,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,3,2016,January,3,14,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,1,2016,January,3,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,2,2016,January,3,11,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient-Party,29,0,1,Check-Out,2016-01-15,Winter,2016-01-11T08:00Z +Keep,7,2016,January,3,12,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-15,Winter,2016-01-12T08:00Z +Keep,24,2016,January,2,9,2,4,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,44.8,0,0,Check-Out,2016-01-15,Winter,2016-01-09T08:00Z +Keep,2,2016,January,3,11,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,29,0,1,Check-Out,2016-01-15,Winter,2016-01-11T08:00Z +Keep,54,2016,January,3,13,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,0,2016,January,3,13,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-15,Winter,2016-01-13T08:00Z +Keep,1,2016,January,3,12,0,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,67,1,0,Check-Out,2016-01-15,Winter,2016-01-12T08:00Z +Keep,0,2016,January,3,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,0,2016,January,3,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2016-01-15,Winter,2016-01-14T08:00Z +Keep,124,2016,January,2,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,48.19,0,1,Check-Out,2016-01-16,Winter,2016-01-09T08:00Z +Keep,1,2016,January,3,15,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,1,2016,January,3,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,25,2016,January,3,14,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2016-01-16,Winter,2016-01-14T08:00Z +Keep,14,2016,January,3,12,0,4,2,0,0,HB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,74.8,0,1,Check-Out,2016-01-16,Winter,2016-01-12T08:00Z +Keep,1,2016,January,3,15,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,1,2016,January,3,13,0,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,2,Check-Out,2016-01-16,Winter,2016-01-13T08:00Z +Keep,0,2016,January,3,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,1,2016,January,3,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,82,1,2,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,1,2017,January,1,2,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,0,2017,January,2,9,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,G,G,0,No Deposit , 240, NULL,0,Transient,95,1,2,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,30,2016,January,2,9,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36,0,0,Check-Out,2016-01-16,Winter,2016-01-09T08:00Z +Keep,20,2016,January,3,15,0,1,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,0,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,3,2016,January,3,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,66,2016,April,15,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,6,2016,January,3,10,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,1,Check-Out,2016-01-16,Winter,2016-01-10T08:00Z +Keep,8,2016,January,3,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,0,2016,January,3,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 110,0,Transient,38,0,0,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,21,2016,January,1,2,4,10,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,46.07,0,0,Check-Out,2016-01-16,Winter,2016-01-02T08:00Z +Keep,2,2016,January,3,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,0,2016,January,3,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2016-01-16,Winter,2016-01-15T08:00Z +Keep,0,2016,January,3,12,0,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,34.2,0,0,Check-Out,2016-01-16,Winter,2016-01-12T08:00Z +Keep,0,2016,January,4,19,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,35.1,0,0,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,0,2016,January,5,26,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , 127, NULL,0,Transient,26.5,0,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,0,2016,February,6,1,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Group,35.1,0,0,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,4,A,D,0,No Deposit , NULL, NULL,0,Transient,35.1,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,8,15,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,30,0,0,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,0,2016,March,11,8,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,6,A,D,3,No Deposit , NULL, 390,0,Transient,35,0,0,Check-Out,2016-03-11,Spring,2016-03-08T08:00Z +Keep,0,2016,March,13,23,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,7,A,A,0,No Deposit , 314, NULL,0,Transient,42.4,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,0,2016,March,14,28,1,0,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,8,A,D,0,No Deposit , 5, NULL,0,Transient,34.4,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,1,2016,March,14,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,9,A,E,0,No Deposit , 241, NULL,0,Transient,51.21,0,1,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,1,2016,April,15,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,10,A,D,0,No Deposit , 314, NULL,0,Group,44.8,0,1,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,11,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,11,A,D,0,No Deposit , NULL, 390,0,Transient,42,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,0,2016,December,50,5,1,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,12,A,D,0,No Deposit , NULL, 390,0,Transient,30,0,1,Check-Out,2016-12-07,Winter,2016-12-05T08:00Z +Keep,1,2017,January,2,13,1,2,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,13,A,A,1,No Deposit , NULL, 390,0,Transient,35,0,1,Check-Out,2017-01-16,Winter,2017-01-13T08:00Z +Keep,0,2017,February,8,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,14,A,C,0,No Deposit , NULL, 390,0,Transient-Party,35,0,2,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,3,2017,February,8,20,1,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,14,A,C,1,No Deposit , NULL, 390,0,Transient-Party,38.33,0,2,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,1,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,16,A,D,1,No Deposit , NULL, 390,0,Transient,35,0,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,53,2016,January,2,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-16,Winter,2016-01-09T08:00Z +Keep,60,2016,January,3,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-01-23,Winter,2016-01-16T08:00Z +Keep,42,2016,January,1,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 2, NULL,0,Transient,28.1,0,0,Check-Out,2016-01-16,Winter,2016-01-02T08:00Z +Keep,12,2016,January,3,11,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58.8,1,1,Check-Out,2016-01-16,Winter,2016-01-11T08:00Z +Keep,8,2016,February,8,16,4,10,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,45,1,1,Check-Out,2016-03-01,Winter,2016-02-16T08:00Z +Keep,0,2016,January,3,11,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-16,Winter,2016-01-11T08:00Z +Keep,9,2016,January,3,13,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-17,Winter,2016-01-13T08:00Z +Keep,43,2016,January,3,14,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-17,Winter,2016-01-14T08:00Z +Keep,2,2016,January,3,15,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,0,1,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,1,2016,November,45,4,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,I,0,No Deposit , NULL, NULL,0,Transient,70,0,2,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,2,2016,November,45,5,0,1,1,0,0,BB,PRT,Complementary,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,10,2016,January,3,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,1,2016,January,3,14,0,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2016-01-17,Winter,2016-01-14T08:00Z +Keep,20,2016,January,3,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,114,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,15,2016,January,3,14,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,114.33,1,3,Check-Out,2016-01-17,Winter,2016-01-14T08:00Z +Keep,5,2016,January,3,16,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,1,2,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,5,2016,January,3,10,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.23,1,1,Check-Out,2016-01-17,Winter,2016-01-10T08:00Z +Keep,11,2016,January,2,9,2,6,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 156, NULL,0,Transient,88.75,0,1,Check-Out,2016-01-17,Winter,2016-01-09T08:00Z +Keep,19,2016,January,3,16,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,37,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,1,2016,January,3,16,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,6,2017,March,11,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-03-13,Spring,2017-03-12T08:00Z +Keep,2,2016,January,3,15,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,16,2016,January,3,16,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,62,1,2,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,8,2016,January,3,15,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,55,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,3,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,7,2016,January,3,14,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,67.5,1,1,Check-Out,2016-01-17,Winter,2016-01-14T08:00Z +Keep,3,2016,January,3,15,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,34,2016,January,3,15,0,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,75,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,12,2016,January,3,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,12,2016,January,3,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,11,2016,January,3,15,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,2,2016,January,3,10,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.43,0,1,Check-Out,2016-01-17,Winter,2016-01-10T08:00Z +Keep,11,2016,January,3,15,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,71.2,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,3,2016,January,3,14,0,3,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-01-17,Winter,2016-01-14T08:00Z +Keep,0,2016,January,3,15,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,4,2016,January,3,15,0,2,2,0,0,HB,BRA,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,73,0,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,5,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,1,2016,January,3,16,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,1,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,5,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,4,2016,January,3,15,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,7,2016,January,3,15,0,2,3,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,39.15,0,2,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,7,2016,January,3,15,0,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,0,2016,January,3,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59,0,1,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,5,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,37,2016,January,3,13,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.1,0,1,Check-Out,2016-01-17,Winter,2016-01-13T08:00Z +Keep,1,2016,January,3,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,41,1,1,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,0,2016,January,3,15,0,2,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,0,2016,January,3,16,0,1,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,1,2016,January,3,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,0,2016,January,3,15,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2016-01-17,Winter,2016-01-15T08:00Z +Keep,3,2016,January,3,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-17,Winter,2016-01-16T08:00Z +Keep,38,2016,January,2,8,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-18,Winter,2016-01-08T08:00Z +Keep,0,2016,January,4,17,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,0,2016,January,3,15,1,2,2,1,0,BB,CHN,Direct,Direct, 0,0,0,A,I,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-01-18,Winter,2016-01-15T08:00Z +Keep,0,2016,January,4,17,1,0,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,39,2016,January,3,15,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-18,Winter,2016-01-15T08:00Z +Keep,1,2016,January,3,13,1,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 362,0,Transient,44,1,0,Check-Out,2016-01-18,Winter,2016-01-13T08:00Z +Keep,0,2016,January,4,18,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-18,Winter,2016-01-18T08:00Z +Keep,0,2016,January,4,17,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,1,2016,January,3,16,1,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,81,0,0,Check-Out,2016-01-18,Winter,2016-01-16T08:00Z +Keep,0,2016,January,3,16,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-01-18,Winter,2016-01-16T08:00Z +Keep,4,2016,January,4,17,1,0,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,82,0,0,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,4,2016,January,4,17,1,0,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,82,0,0,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,18,2016,February,7,12,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,9,2016,January,4,17,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,1,Check-Out,2016-01-18,Winter,2016-01-17T08:00Z +Keep,5,2016,January,3,16,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-19,Winter,2016-01-16T08:00Z +Keep,9,2016,January,3,14,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-19,Winter,2016-01-14T08:00Z +Keep,0,2016,January,4,18,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,0,2016,January,4,18,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,3,2016,January,4,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 99,0,Transient,30,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,1,2016,April,16,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 99,0,Transient,42,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,1,2016,May,20,12,0,0,2,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,E,1,No Deposit , NULL, 99,0,Transient,0,0,0,Check-Out,2016-05-12,Spring,2016-05-12T07:00Z +Keep,4,2016,January,4,18,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,1,2016,March,10,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,6,2016,April,18,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,2,2017,February,7,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,7,2017,March,12,23,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,4,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,4,2017,May,19,8,1,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,5,A,A,0,No Deposit , NULL, NULL,0,Transient,72,0,1,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Keep,4,2016,January,4,18,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,7,2017,March,12,23,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,3,2016,January,4,18,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 366,0,Transient,38,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,1,2016,January,4,17,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-01-19,Winter,2016-01-17T08:00Z +Keep,4,2016,January,4,18,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,2,2016,November,47,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,1,2017,February,8,21,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,0,2017,May,21,23,0,1,1,0,0,BB,ESP,Direct,TA/TO, 1,0,3,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,3,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,20,2016,January,2,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,64,0,2,Check-Out,2016-01-19,Winter,2016-01-05T08:00Z +Keep,0,2016,January,4,18,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,0,2016,January,4,18,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,38,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,0,2016,January,3,14,2,4,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-20,Winter,2016-01-14T08:00Z +Keep,6,2016,January,4,19,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,0,0,0,Check-Out,2016-01-19,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,18,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 330, NULL,0,Transient-Party,43,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,2,2016,December,51,16,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 330, NULL,0,Group,34,0,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,0,2016,January,4,18,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,43,0,0,Check-Out,2016-01-19,Winter,2016-01-18T08:00Z +Keep,10,2016,January,4,19,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-19,Winter,2016-01-19T08:00Z +Keep,16,2016,January,3,11,3,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2016-01-20,Winter,2016-01-11T08:00Z +Keep,25,2016,January,3,10,4,6,1,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-20,Winter,2016-01-10T08:00Z +Keep,25,2016,January,3,10,4,6,1,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-20,Winter,2016-01-10T08:00Z +Keep,25,2016,January,3,10,4,6,1,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-20,Winter,2016-01-10T08:00Z +Keep,3,2016,January,4,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,29,1,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,19,0,1,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 372,0,Transient,39,1,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,1,2016,January,4,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,16,2016,January,3,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-20,Winter,2016-01-13T08:00Z +Keep,21,2016,January,3,16,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,58,0,0,Check-Out,2016-01-20,Winter,2016-01-16T08:00Z +Keep,0,2016,January,4,19,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 142, NULL,0,Transient,37,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,23,2016,January,4,18,1,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-01-20,Winter,2016-01-18T08:00Z +Keep,23,2016,January,4,18,1,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-01-20,Winter,2016-01-18T08:00Z +Keep,0,2016,January,4,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,40,2016,January,3,13,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,39.79,1,0,Check-Out,2016-01-20,Winter,2016-01-13T08:00Z +Keep,4,2016,January,4,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,6,2016,January,4,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,January,4,19,0,1,2,0,0,BB,AUT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-20,Winter,2016-01-19T08:00Z +Keep,1,2016,January,4,18,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-20,Winter,2016-01-18T08:00Z +Keep,5,2016,January,3,16,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,67,1,0,Check-Out,2016-01-20,Winter,2016-01-16T08:00Z +Keep,16,2017,January,2,12,2,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,F,F,0,No Deposit , 250, NULL,0,Transient-Party,75,1,2,Check-Out,2017-01-17,Winter,2017-01-12T08:00Z +Keep,33,2017,March,13,31,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,2,G,G,2,No Deposit , 250, NULL,0,Group,133,1,2,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,51,2016,January,3,16,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-01-21,Winter,2016-01-16T08:00Z +Keep,11,2016,January,3,11,3,7,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.96,0,1,Check-Out,2016-01-21,Winter,2016-01-11T08:00Z +Keep,1,2016,January,4,19,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,55,2016,January,3,14,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,37.7,0,0,Check-Out,2016-01-21,Winter,2016-01-14T08:00Z +Keep,55,2016,January,3,14,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,55.4,1,0,Check-Out,2016-01-21,Winter,2016-01-14T08:00Z +Keep,5,2016,January,4,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 365,0,Transient,30,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,5,2016,January,4,20,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 314, NULL,0,Transient,29,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,4,2016,January,4,18,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 99,0,Transient,30,0,0,Check-Out,2016-01-21,Winter,2016-01-18T08:00Z +Keep,5,2016,January,4,20,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient-Party,26,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,5,2016,January,4,20,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient-Party,26,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,2,2016,January,4,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,6,2016,January,4,19,0,2,1,0,0,BB,GBR,Complementary,Direct, 0,0,0,A,F,4,No Deposit , NULL, 277,0,Transient,0,0,0,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,2,2016,January,4,20,0,1,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 331,0,Transient,67.5,0,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,1,2016,January,4,19,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,35,2016,January,4,19,0,2,2,1,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,36.25,0,2,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,35,2016,January,4,19,0,2,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,29,0,1,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,19,0,2,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,0,2016,January,4,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-21,Winter,2016-01-18T08:00Z +Keep,25,2016,January,4,20,0,1,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,25,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,25,2016,January,4,20,0,1,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,25,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,January,4,20,0,1,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,1,1,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,0,2016,January,4,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 109,0,Transient,30,0,0,Check-Out,2016-01-21,Winter,2016-01-20T08:00Z +Keep,2,2016,February,9,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 14,0,Transient,30,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,1,2016,May,19,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,2,D,D,0,No Deposit , 104, NULL,0,Transient,81,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,2,2016,October,42,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,3,A,A,0,No Deposit , 10, NULL,0,Transient,76.5,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,2,2017,February,7,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,4,A,D,0,No Deposit , 10, NULL,0,Group,35,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,55,2016,January,4,19,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.8,1,1,Check-Out,2016-01-21,Winter,2016-01-19T08:00Z +Keep,3,2016,January,4,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,0,2016,February,8,15,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-02-19,Winter,2016-02-15T08:00Z +Keep,0,2016,March,12,14,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,1,2016,January,4,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,26.5,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,4,2016,January,4,18,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Keep,0,2016,January,5,25,1,3,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-29,Winter,2016-01-25T08:00Z +Keep,7,2016,January,4,18,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-01-22,Winter,2016-01-18T08:00Z +Keep,6,2016,November,47,14,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 94,0,Transient-Party,35,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , 94, NULL,0,Transient-Party,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,0,2016,January,4,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,40,1,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,1,2016,January,4,19,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,43.2,0,1,Check-Out,2016-01-22,Winter,2016-01-19T08:00Z +Keep,61,2016,January,4,19,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,65.4,1,1,Check-Out,2016-01-22,Winter,2016-01-19T08:00Z +Keep,3,2016,January,4,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,1,2,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,3,2016,February,9,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,1,2,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,3,2017,January,2,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,7,2017,March,10,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55,1,2,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,3,2016,January,4,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,2,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,3,2016,February,9,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,3,2017,January,2,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient-Party,50,1,2,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,14,2016,January,4,21,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,4,2016,January,4,20,0,2,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,35,1,1,Check-Out,2016-01-22,Winter,2016-01-20T08:00Z +Keep,1,2016,January,4,17,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-22,Winter,2016-01-17T08:00Z +Keep,0,2016,January,4,21,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,1,2016,January,4,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-22,Winter,2016-01-21T08:00Z +Keep,3,2016,January,4,18,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-23,Winter,2016-01-18T08:00Z +Keep,32,2016,January,4,20,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,37,0,1,Check-Out,2016-01-23,Winter,2016-01-20T08:00Z +Keep,4,2016,January,4,22,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,57,1,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,6,2016,November,48,26,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Group,49,1,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,0,2016,January,4,22,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,6,2016,January,4,19,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,60.8,1,0,Check-Out,2016-01-23,Winter,2016-01-19T08:00Z +Keep,18,2016,January,4,22,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,88,0,1,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,4,2016,January,4,17,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,69,1,1,Check-Out,2016-01-23,Winter,2016-01-17T08:00Z +Keep,37,2016,January,3,16,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,31,0,1,Check-Out,2016-01-23,Winter,2016-01-16T08:00Z +Keep,37,2016,January,3,16,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,31,0,1,Check-Out,2016-01-23,Winter,2016-01-16T08:00Z +Keep,0,2016,January,4,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,1,2016,January,4,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,38,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,27,2016,January,3,13,2,8,2,0,0,HB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient,49.5,0,0,Check-Out,2016-01-23,Winter,2016-01-13T08:00Z +Keep,0,2016,January,4,22,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,30.5,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,11,2016,January,4,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,71,0,1,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,1,2016,January,4,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,38,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,1,2016,January,4,22,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,43,0,0,Check-Out,2016-01-23,Winter,2016-01-22T08:00Z +Keep,7,2016,January,4,21,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-01-23,Winter,2016-01-21T08:00Z +Keep,16,2016,January,4,20,0,4,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,71,0,0,Check-Out,2016-01-24,Winter,2016-01-20T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Group,29,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,7,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,41,2016,January,4,22,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,54,1,2,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,12,2016,January,4,20,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-01-24,Winter,2016-01-20T08:00Z +Keep,3,2016,January,4,21,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-01-24,Winter,2016-01-21T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,3,2016,January,4,23,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,10,2016,January,4,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,52.8,0,0,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,4,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,0,2016,January,4,22,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,2,2016,January,4,23,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,29,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,36.25,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,29,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,71,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,1,2016,January,3,16,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.13,1,0,Check-Out,2016-01-24,Winter,2016-01-16T08:00Z +Keep,0,2016,January,4,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,17,2016,January,4,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,19,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,1,2016,January,4,22,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,11,2016,January,4,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,February,7,7,2,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,0,2017,May,19,10,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-05-11,Spring,2017-05-10T07:00Z +Keep,1,2016,January,4,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,1,2016,January,4,23,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,1,2016,January,4,23,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,62,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,1,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,56,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,22,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-24,Winter,2016-01-22T08:00Z +Keep,1,2016,January,4,23,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,51,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,1,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,61,0,1,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,0,2016,January,4,23,0,1,1,0,0,BB,FIN,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,3,16,2,6,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38.1,0,0,Check-Out,2016-01-24,Winter,2016-01-16T08:00Z +Keep,13,2016,January,4,21,0,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-01-24,Winter,2016-01-21T08:00Z +Keep,0,2016,January,4,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,2,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,2,2016,January,4,23,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,92,1,0,Check-Out,2016-01-24,Winter,2016-01-23T08:00Z +Keep,3,2016,January,5,24,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 314, NULL,0,Transient,29,1,0,Check-Out,2016-01-25,Winter,2016-01-24T08:00Z +Keep,0,2016,January,5,25,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-01-25,Winter,2016-01-25T08:00Z +Keep,10,2016,January,4,21,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,10,2016,January,4,21,1,3,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,27.5,0,1,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,26,2016,January,4,21,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,0,2016,January,4,22,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,1,Check-Out,2016-01-25,Winter,2016-01-22T08:00Z +Keep,3,2016,January,4,23,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-25,Winter,2016-01-23T08:00Z +Keep,153,2016,January,4,20,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 241, NULL,0,Transient,38.81,0,1,Check-Out,2016-01-25,Winter,2016-01-20T08:00Z +Keep,2,2016,January,5,25,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,51,0,1,Check-Out,2016-01-27,Winter,2016-01-25T08:00Z +Keep,5,2016,January,4,21,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,45,0,0,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,3,2016,January,4,23,1,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,61,1,0,Check-Out,2016-01-25,Winter,2016-01-23T08:00Z +Keep,17,2016,January,4,21,1,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,50,0,0,Check-Out,2016-01-25,Winter,2016-01-21T08:00Z +Keep,65,2016,January,4,23,2,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2016-01-26,Winter,2016-01-23T08:00Z +Keep,0,2016,January,5,25,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,November,48,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,E,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,0,2017,February,7,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2016,January,5,25,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,0,2016,January,5,25,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,2,2016,January,5,24,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 15, NULL,0,Transient,25,0,0,Check-Out,2016-01-26,Winter,2016-01-24T08:00Z +Keep,7,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, 39,0,Group,38,1,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,5,2017,March,11,14,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,2,A,F,0,No Deposit , NULL, 39,0,Transient,38.5,1,1,Check-Out,2017-03-16,Spring,2017-03-14T07:00Z +Keep,0,2017,May,22,29,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,3,A,A,0,No Deposit , NULL, 39,0,Transient,52,1,1,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,2,2017,July,29,19,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,4,A,C,1,No Deposit , NULL, 39,0,Transient,142,1,1,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,0,2016,January,5,24,2,0,2,0,0,BB,GRC,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-01-26,Winter,2016-01-24T08:00Z +Keep,11,2016,January,5,26,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,0,0,2,Check-Out,2016-01-26,Winter,2016-01-26T08:00Z +Keep,11,2016,January,5,26,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,0,0,2,Check-Out,2016-01-26,Winter,2016-01-26T08:00Z +Keep,6,2016,January,5,24,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-26,Winter,2016-01-24T08:00Z +Keep,1,2016,January,4,21,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63.6,0,0,Check-Out,2016-01-26,Winter,2016-01-21T08:00Z +Keep,2,2016,January,5,25,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,0,2016,January,5,25,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-01-26,Winter,2016-01-25T08:00Z +Keep,1,2016,January,5,24,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-26,Winter,2016-01-24T08:00Z +Keep,0,2016,January,5,25,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-25T08:00Z +Keep,1,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,6,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,1,2017,January,5,31,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Transient-Party,40,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,6,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,4,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,4,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,25,1,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-27,Winter,2016-01-25T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,March,11,7,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,0,2016,January,5,25,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-27,Winter,2016-01-25T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,6,2016,December,51,13,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 6, NULL,0,Group,30,0,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,1,2016,January,5,26,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,28,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,5,2016,January,5,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,25,1,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,2,2016,January,4,20,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 314, NULL,0,Transient,36.14,0,1,Check-Out,2016-01-27,Winter,2016-01-20T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,1,2016,January,5,26,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,1,1,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,1,2016,January,5,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,1,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,1,2016,January,5,26,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,92,1,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,0,1,3,0,0,BB,MAR,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,0,1,3,0,0,BB,MAR,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-01-27,Winter,2016-01-26T08:00Z +Keep,4,2016,January,4,22,2,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-27,Winter,2016-01-22T08:00Z +Keep,4,2016,January,4,22,2,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-01-27,Winter,2016-01-22T08:00Z +Keep,30,2016,January,4,18,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 314, NULL,0,Transient,81,0,1,Check-Out,2016-01-28,Winter,2016-01-18T08:00Z +Keep,2,2016,January,5,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,1,1,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,3,2016,January,5,25,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 207,0,Transient,33,1,0,Check-Out,2016-01-28,Winter,2016-01-25T08:00Z +Keep,31,2016,January,5,26,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,61,1,0,Check-Out,2016-01-28,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,0,2016,April,15,6,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,2,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2016,November,46,8,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,0,2016,December,50,6,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,2,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,0,2016,January,5,27,0,1,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,17,2016,January,4,21,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,1,Check-Out,2016-01-28,Winter,2016-01-21T08:00Z +Keep,7,2016,January,5,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 358,0,Transient,30,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,0,2016,January,5,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,0,2016,January,5,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,1,2016,January,5,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2016-01-28,Winter,2016-01-27T08:00Z +Keep,1,2016,January,5,24,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-01-28,Winter,2016-01-24T08:00Z +Keep,3,2016,January,5,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,3,2016,January,5,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,3,2016,January,5,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,0,2016,May,20,10,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,0,2017,January,4,25,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,5,2016,January,5,26,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-01-29,Winter,2016-01-26T08:00Z +Keep,1,2016,March,12,15,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,6,2016,April,17,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,2,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2016-04-21,Spring,2016-04-19T07:00Z +Keep,0,2016,June,24,6,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,G,2,No Deposit , NULL, 269,0,Group,77,1,0,Check-Out,2016-06-09,Summer,2016-06-06T07:00Z +Keep,5,2016,June,26,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 269,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Keep,6,2016,September,38,12,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , NULL, 269,0,Transient,65,0,0,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,8,2016,October,43,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , NULL, 269,0,Transient,45,0,0,Check-Out,2016-10-21,Fall,2016-10-19T07:00Z +Keep,3,2016,October,44,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , NULL, 269,0,Transient,45,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,1,2016,November,48,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 269,0,Transient,30,1,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,3,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,0,No Deposit , NULL, 269,0,Transient,30,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,4,2017,January,4,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,D,0,No Deposit , NULL, 269,0,Transient,42,1,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,6,2017,February,6,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,11,A,A,0,No Deposit , NULL, 269,0,Transient,38.5,1,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,4,2017,March,10,6,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,12,A,A,0,No Deposit , NULL, 269,0,Transient,42,1,0,Check-Out,2017-03-09,Spring,2017-03-06T08:00Z +Keep,2,2017,April,15,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,13,A,D,0,No Deposit , NULL, 269,0,Transient,48.5,1,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,8,2017,April,17,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,14,A,A,0,No Deposit , NULL, 269,0,Transient,48.5,1,0,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,8,2017,June,23,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,15,A,A,0,No Deposit , NULL, 269,0,Transient,77,1,0,Check-Out,2017-06-09,Summer,2017-06-07T07:00Z +Keep,1,2016,January,5,27,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,1,2016,March,10,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,F,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,0,2017,February,5,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,2,2017,May,18,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,1,2017,May,20,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,16,2016,January,5,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,16,2016,January,5,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,1,2016,January,5,28,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,15,2016,January,5,28,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,4,2017,June,26,30,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,G,G,0,No Deposit , 240, NULL,0,Transient,226.67,0,2,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,0,2016,January,5,27,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,41.89,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,0,2016,January,5,27,0,2,1,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,41.89,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,159,2016,January,5,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,38.86,0,1,Check-Out,2016-01-29,Winter,2016-01-25T08:00Z +Keep,2,2016,January,5,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,19,2016,January,5,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-29,Winter,2016-01-25T08:00Z +Keep,3,2016,January,5,28,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,303,2016,July,29,13,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,G,G,0,No Deposit , 240, NULL,0,Transient,159.38,1,2,Check-Out,2016-07-17,Summer,2016-07-13T07:00Z +Keep,2,2017,July,30,23,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,C,C,0,No Deposit , 240, NULL,0,Transient,179,0,2,Check-Out,2017-07-24,Summer,2017-07-23T07:00Z +Keep,0,2017,July,30,24,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,F,0,No Deposit , NULL, NULL,0,Transient,170,0,2,Check-Out,2017-07-25,Summer,2017-07-24T07:00Z +Keep,0,2016,January,5,27,0,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,1,2016,January,5,28,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,18,2016,January,5,29,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2016-01-29,Winter,2016-01-29T08:00Z +Keep,18,2016,January,5,29,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2016-01-29,Winter,2016-01-29T08:00Z +Keep,32,2016,January,5,27,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,52.8,0,1,Check-Out,2016-01-29,Winter,2016-01-27T08:00Z +Keep,10,2016,January,5,26,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-01-29,Winter,2016-01-26T08:00Z +Keep,1,2016,January,4,19,2,8,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-01-29,Winter,2016-01-19T08:00Z +Keep,4,2016,January,5,29,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2016-02-02,Winter,2016-01-29T08:00Z +Keep,1,2016,February,6,2,0,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-02-07,Winter,2016-02-02T08:00Z +Keep,106,2016,January,4,23,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-01-30,Winter,2016-01-23T08:00Z +Keep,106,2016,January,4,23,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-01-30,Winter,2016-01-23T08:00Z +Keep,0,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,0,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,0,2016,March,12,18,0,1,2,0,0,BB,Unknown,Direct,Direct, 1,0,1,E,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,0,2016,November,48,25,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,38.7,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,0,2017,March,11,17,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,1,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2017-03-18,Spring,2017-03-17T07:00Z +Keep,0,2016,January,5,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,52.8,0,0,Check-Out,2016-01-30,Winter,2016-01-28T08:00Z +Keep,16,2017,January,4,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,9,2016,January,5,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,22,2016,January,5,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,1,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,0,2016,January,5,28,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,46,1,2,Check-Out,2016-01-30,Winter,2016-01-28T08:00Z +Keep,14,2017,January,5,29,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-01-31,Winter,2017-01-29T08:00Z +Keep,33,2016,January,5,28,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,44.8,0,1,Check-Out,2016-01-30,Winter,2016-01-28T08:00Z +Keep,6,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,3,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 377,0,Transient,45,0,0,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,1,2016,January,5,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,1,Check-Out,2016-01-30,Winter,2016-01-29T08:00Z +Keep,17,2016,January,4,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,32.77,0,1,Check-Out,2016-01-30,Winter,2016-01-23T08:00Z +Keep,14,2016,January,4,23,2,5,2,0,0,BB,AUS,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,81,0,0,Check-Out,2016-01-30,Winter,2016-01-23T08:00Z +Keep,3,2016,January,5,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,58,0,0,Check-Out,2016-01-31,Winter,2016-01-24T08:00Z +Keep,3,2016,January,5,29,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,41.89,0,1,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,15,2016,January,5,28,0,3,2,1,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,28,0,3,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,92,1,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,28,0,3,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,5,2016,January,5,28,0,3,2,0,0,BB,POL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,41,2016,January,5,28,0,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,66,0,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,42,2016,January,5,28,0,3,3,0,0,BB,POL,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,79,0,1,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,43,2016,January,5,28,0,3,2,2,0,BB,POL,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,42,2016,January,5,28,0,3,1,0,0,BB,POL,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,1,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,12,2016,January,5,30,0,1,1,0,0,BB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 95, NULL,0,Transient,25,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,41,2016,January,5,28,0,3,2,2,0,BB,POL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-01-31,Winter,2016-01-28T08:00Z +Keep,3,2016,January,5,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,26,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,5,2016,January,5,30,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,29,0,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,1,2016,January,5,30,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,1,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,1,2016,January,5,30,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,66,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,21,2016,January,5,29,0,2,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,0,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,4,2016,January,5,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,62,1,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,59,2016,January,5,29,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,129,2016,June,23,3,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,123,2016,November,48,25,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,129,2017,February,5,3,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,0,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,44.66,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,0,2016,January,5,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,0,2017,June,24,15,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,135,1,0,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,14,2016,January,5,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,1,2016,January,5,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,0,1,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,2,2016,January,5,29,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,45,0,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,17,2016,January,5,29,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,23,2016,January,5,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,0,2016,January,5,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,58,0,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,10,2016,January,5,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 184, NULL,0,Transient,74,1,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,0,2016,January,5,30,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2016-01-31,Winter,2016-01-30T08:00Z +Keep,0,2016,January,5,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,2,2016,January,5,29,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 314, NULL,0,Transient,62.25,1,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,1,2016,January,5,29,0,2,2,0,0,BB,IND,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-01-31,Winter,2016-01-29T08:00Z +Keep,1,2016,February,6,1,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,66,2016,January,6,31,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2016-02-01,Winter,2016-01-31T08:00Z +Keep,67,2016,February,6,1,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,20,2016,January,5,29,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.8,1,1,Check-Out,2016-02-01,Winter,2016-01-29T08:00Z +Keep,66,2016,January,5,29,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29,0,0,Check-Out,2016-02-01,Winter,2016-01-29T08:00Z +Keep,0,2016,January,6,31,1,0,3,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 5, NULL,0,Transient,40.5,0,0,Check-Out,2016-02-01,Winter,2016-01-31T08:00Z +Keep,0,2016,February,6,1,1,0,3,0,0,BB,CHN,Direct,Direct, 1,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,6,2016,January,6,31,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2016-02-01,Winter,2016-01-31T08:00Z +Keep,22,2016,January,5,30,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-02-01,Winter,2016-01-30T08:00Z +Keep,1,2016,January,6,31,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-01,Winter,2016-01-31T08:00Z +Keep,39,2016,January,5,26,1,5,2,1,0,BB,POL,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,71,0,2,Check-Out,2016-02-01,Winter,2016-01-26T08:00Z +Keep,1,2017,January,3,19,2,4,2,0,0,BB,POL,Direct,Direct, 1,0,1,F,F,0,No Deposit , 250, NULL,0,Transient,70,0,2,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,13,2016,January,5,28,1,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,71,0,0,Check-Out,2016-02-01,Winter,2016-01-28T08:00Z +Keep,0,2016,January,5,28,1,3,1,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,4,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-01,Winter,2016-01-28T08:00Z +Keep,4,2016,February,6,2,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,65,2016,January,5,28,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-02-02,Winter,2016-01-28T08:00Z +Keep,117,2016,January,5,28,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,31.63,0,0,Check-Out,2016-02-02,Winter,2016-01-28T08:00Z +Keep,10,2016,January,5,28,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,0,Check-Out,2016-02-02,Winter,2016-01-28T08:00Z +Keep,0,2016,February,6,1,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,0,2016,February,6,1,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,1,2016,January,6,31,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-02,Winter,2016-01-31T08:00Z +Keep,16,2016,January,5,30,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,49.74,0,1,Check-Out,2016-02-02,Winter,2016-01-30T08:00Z +Keep,13,2016,January,6,31,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-02,Winter,2016-01-31T08:00Z +Keep,0,2016,February,6,1,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-02,Winter,2016-02-01T08:00Z +Keep,6,2016,February,6,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,5,2016,February,6,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,1,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,4,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, 94,0,Transient,35,1,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,3,2017,June,23,5,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 94,0,Transient,75,0,0,Check-Out,2017-06-06,Summer,2017-06-05T07:00Z +Keep,0,2016,February,6,2,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,30.5,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,March,10,3,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 15, NULL,0,Transient,29,0,0,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,0,2016,December,51,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,A,0,No Deposit , 15, NULL,0,Group,38.4,0,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,0,2016,February,6,1,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,3,2016,February,6,1,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 43,0,Transient,30,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,5,2016,December,51,14,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 43,0,Transient,30,0,0,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,1,2017,April,15,11,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 43,0,Transient,45,0,0,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,0,2016,February,6,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,26,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,92,2016,January,5,28,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,61.2,0,0,Check-Out,2016-02-03,Winter,2016-01-28T08:00Z +Keep,57,2016,January,5,30,2,2,2,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-02-03,Winter,2016-01-30T08:00Z +Keep,26,2016,January,5,30,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,58,0,0,Check-Out,2016-02-03,Winter,2016-01-30T08:00Z +Keep,0,2016,February,6,1,1,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,0,2016,February,6,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,15,2016,February,6,2,0,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,1,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,81,2016,January,5,30,2,2,2,0,0,HB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2016-02-03,Winter,2016-01-30T08:00Z +Keep,4,2016,February,6,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 379,0,Transient,39,0,0,Check-Out,2016-02-03,Winter,2016-02-02T08:00Z +Keep,5,2016,February,8,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 379,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,2,2016,March,10,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 379,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,2,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 379,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,2,2016,March,14,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 379,0,Transient,43,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,2,2016,April,16,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , NULL, 379,0,Transient,59.4,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,0,2016,February,6,1,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Group,68,0,0,Check-Out,2016-02-03,Winter,2016-02-01T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,ESP,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,30,2016,January,5,29,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,53.6,0,1,Check-Out,2016-02-04,Winter,2016-01-29T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,1,2016,February,6,2,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,1,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,April,15,6,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,53,1,1,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,4,2016,January,6,31,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-04,Winter,2016-01-31T08:00Z +Keep,4,2017,January,4,27,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,17,2016,February,6,2,0,2,1,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-05,Winter,2016-02-03T08:00Z +Keep,5,2016,February,6,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,7,9,0,3,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,0,2016,February,8,15,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-02-19,Winter,2016-02-15T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,24,2016,January,5,28,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,25,0,0,Check-Out,2016-02-04,Winter,2016-01-28T08:00Z +Keep,4,2016,February,6,2,0,2,1,0,0,BB,POL,Complementary,TA/TO, 0,0,0,E,G,1,No Deposit , 315, NULL,0,Transient,0,0,1,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,0,2016,February,6,2,0,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-02-04,Winter,2016-02-02T08:00Z +Keep,7,2016,February,6,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,0,2016,February,6,3,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-04,Winter,2016-02-03T08:00Z +Keep,21,2016,February,6,4,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,1,2,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Direct,Direct, 1,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,64,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,0,2016,January,5,26,2,7,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29.73,1,0,Check-Out,2016-02-04,Winter,2016-01-26T08:00Z +Keep,0,2016,January,5,26,2,7,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29.73,0,0,Check-Out,2016-02-04,Winter,2016-01-26T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,NLD,Corporate,Corporate, 1,0,0,A,D,2,No Deposit , NULL, 22,0,Transient,30,1,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,15,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,8,2016,February,6,2,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-02-05,Winter,2016-02-02T08:00Z +Keep,6,2016,March,11,7,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2016-03-10,Spring,2016-03-07T08:00Z +Keep,9,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,6,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 94,0,Transient,27,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,2,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,27,1,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,11,2016,February,6,1,1,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,32,0,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Cancel,2,2016,April,15,6,0,2,1,0,0,BB,PRT,Direct,Corporate, 1,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,50.4,0,0,No-Show,2016-04-06,Spring,2016-04-06T07:00Z +Keep,11,2016,February,6,1,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Keep,0,2016,February,6,4,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,7,2016,February,6,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,7,2016,February,6,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,10,2016,February,6,1,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 94,0,Transient,33,1,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Keep,11,2016,February,6,2,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 339, NULL,0,Transient,25,0,0,Check-Out,2016-02-05,Winter,2016-02-02T08:00Z +Keep,12,2017,March,13,29,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 6, NULL,0,Transient,42,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 127, NULL,0,Transient,30.5,1,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,1,2016,February,6,2,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-02-05,Winter,2016-02-02T08:00Z +Keep,1,2016,February,6,2,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-02-05,Winter,2016-02-02T08:00Z +Keep,5,2016,February,6,3,0,2,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,61.2,0,0,Check-Out,2016-02-05,Winter,2016-02-03T08:00Z +Keep,1,2016,February,6,4,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,1,2016,February,6,4,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,46,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,2,0,3,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,27.9,0,0,Check-Out,2016-02-05,Winter,2016-02-02T08:00Z +Keep,3,2016,February,6,1,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 378,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-01T08:00Z +Keep,5,2017,January,4,23,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 378,0,Transient,35,0,0,Check-Out,2017-01-27,Winter,2017-01-23T08:00Z +Keep,6,2017,March,13,27,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 378,0,Transient,35,0,1,Check-Out,2017-03-31,Spring,2017-03-27T07:00Z +Keep,1,2016,February,6,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-05,Winter,2016-02-04T08:00Z +Keep,9,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,2,2016,February,6,5,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,60,1,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,9,2016,January,6,31,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2016-02-06,Winter,2016-01-31T08:00Z +Keep,70,2016,February,6,2,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,67.2,1,1,Check-Out,2016-02-06,Winter,2016-02-02T08:00Z +Keep,4,2016,February,6,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,38,0,0,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient-Party,43,0,0,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,1,2017,March,10,10,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, 330,0,Group,34,0,1,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,0,2016,February,6,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient,58,1,2,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,20,2016,February,6,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,20,2016,February,6,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,4,0,2,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2016-02-06,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient-Party,43,0,0,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,2,2016,February,6,5,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,5,2016,January,6,31,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 2, NULL,0,Transient,50.67,0,0,Check-Out,2016-02-06,Winter,2016-01-31T08:00Z +Keep,1,2016,February,6,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-06,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,2,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,54.4,0,0,Check-Out,2016-02-06,Winter,2016-02-02T08:00Z +Keep,1,2016,February,6,4,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient-Party,48,0,1,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,13,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,59,1,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,15,2016,February,6,4,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,35.47,0,1,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,25,2016,February,6,5,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,4,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,4,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,0,2016,February,6,6,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,12,2016,February,6,6,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,9,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,59,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,0,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,14,2016,February,6,5,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Contract,35,1,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,3,2016,February,6,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,2,2016,February,6,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,1,2016,February,6,4,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,64,1,2,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,1,2016,February,6,4,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,58,0,2,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,3,2016,February,6,6,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,40,1,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,2,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,2,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,59,1,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,0,2016,February,6,6,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,2,2016,February,6,5,0,2,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,3,2016,February,6,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,3,2016,February,6,6,0,1,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,46.4,1,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,16,2016,February,6,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,14,2016,February,6,1,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,74.67,0,0,Check-Out,2016-02-07,Winter,2016-02-01T08:00Z +Keep,16,2016,February,6,5,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,92,0,2,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,16,2016,February,6,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,53,0,2,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,3,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,1,2016,February,6,6,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,27.5,1,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,13,2016,February,6,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,2,2016,February,6,6,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,54.21,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,2,2016,February,6,6,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,54.21,0,0,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,21,2016,February,6,4,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,48,0,2,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 242, NULL,0,Group,48,0,2,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,4,2016,February,6,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,2,2016,February,6,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,9,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,21,2016,February,6,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,21,2016,February,6,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,1,2016,February,6,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,0,2016,February,6,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,A,0,No Deposit , NULL, NULL,0,Transient,49.5,0,0,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,3,2016,February,6,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-02-07,Winter,2016-02-06T08:00Z +Keep,23,2016,February,6,5,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,37.5,0,1,Check-Out,2016-02-07,Winter,2016-02-05T08:00Z +Keep,21,2016,February,6,4,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient-Party,56.1,0,1,Check-Out,2016-02-07,Winter,2016-02-04T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 242, NULL,0,Group,58,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,22,2016,February,6,6,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,10,2016,February,6,4,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,1,1,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,192,2016,February,7,7,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,29.16,0,1,Check-Out,2016-02-08,Winter,2016-02-07T08:00Z +Keep,0,2016,February,6,3,1,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-02-08,Winter,2016-02-03T08:00Z +Keep,21,2016,February,6,4,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,54,1,2,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,3,2016,February,6,5,1,2,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient,61.88,0,1,Check-Out,2016-02-08,Winter,2016-02-05T08:00Z +Keep,21,2016,February,6,4,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,2,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 242, NULL,0,Group,58,0,2,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,20,2016,February,6,5,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54.67,0,1,Check-Out,2016-02-08,Winter,2016-02-05T08:00Z +Keep,15,2016,February,6,6,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Contract,29,0,0,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,21,2016,February,6,4,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,48,0,2,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,53,2016,February,6,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,0,2016,February,6,5,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64.33,0,0,Check-Out,2016-02-08,Winter,2016-02-05T08:00Z +Keep,1,2016,February,7,7,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Group,29,0,0,Check-Out,2016-02-08,Winter,2016-02-07T08:00Z +Keep,1,2016,February,6,6,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,1,2016,February,6,6,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,70,1,0,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,5,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-02-08,Winter,2016-02-05T08:00Z +Keep,4,2016,February,7,7,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-02-08,Winter,2016-02-07T08:00Z +Keep,3,2016,February,6,6,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,58,0,2,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,19,2016,February,6,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,5,2016,February,6,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2016-02-08,Winter,2016-02-06T08:00Z +Keep,0,2016,February,7,7,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,56.1,0,0,Check-Out,2016-02-08,Winter,2016-02-07T08:00Z +Keep,21,2016,February,6,4,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,48,0,2,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,21,2016,February,6,4,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,48,0,2,Check-Out,2016-02-08,Winter,2016-02-04T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 242, NULL,0,Group,58,0,2,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,38,2016,February,6,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,47.83,0,1,Check-Out,2016-02-09,Winter,2016-02-02T08:00Z +Keep,7,2016,February,7,8,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,26,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,28,2016,February,6,3,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,59,1,1,Check-Out,2016-02-09,Winter,2016-02-03T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,52,2016,February,6,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,3,2016,February,6,4,2,3,1,0,0,BB,NZL,Corporate,Corporate, 0,0,0,A,E,2,No Deposit , NULL, 22,0,Transient,49.3,0,0,Check-Out,2016-02-09,Winter,2016-02-04T08:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,72,2016,February,6,6,2,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,56.67,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,4,2016,February,7,8,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 83,0,Transient,30,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient-Party,56.67,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,7,2016,February,7,8,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,39,1,1,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,7,2016,January,5,28,4,8,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2016-02-09,Winter,2016-01-28T08:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,76.33,1,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,6,2016,February,6,5,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,29,2016,February,6,6,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient-Party,63,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,29,2016,February,6,6,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient-Party,77,1,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,73.33,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,1,2016,February,6,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-09,Winter,2016-02-04T08:00Z +Keep,0,2016,February,6,5,2,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,2,2016,February,6,5,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,12,2016,February,6,6,2,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,108,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,11,2016,February,6,6,2,1,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,0,2,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,4,2016,February,6,6,2,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,97,1,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,2,2016,February,7,7,2,0,1,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,1,1,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,1,2017,February,9,26,2,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,60,0,2,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,0,2017,January,1,6,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,1,Check-Out,2017-01-09,Winter,2017-01-06T08:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,0,2016,February,7,9,0,3,2,0,0,BB,ESP,Direct,Direct, 1,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,0,2016,February,7,8,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,61,1,0,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,0,2016,February,7,9,0,3,2,0,0,BB,ESP,Direct,Direct, 1,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,1,2016,February,6,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.4,1,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,1,2016,February,7,7,2,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,98,1,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,1,2016,February,6,6,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,10,2016,February,7,8,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,6,2016,February,7,7,2,0,3,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,5,2016,February,6,6,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,1,2016,February,7,8,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2016-02-09,Winter,2016-02-08T08:00Z +Keep,23,2016,February,6,6,2,1,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,68.75,0,2,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,23,2016,February,6,6,2,1,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,68.75,0,2,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,3,2016,February,6,6,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,36.96,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,24,2016,February,7,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,20,2016,February,6,5,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,26,2016,February,7,9,1,5,2,0,0,SC,PRT,Direct,Direct, 0,0,0,A,I,5,No Deposit , NULL, 364,0,Transient-Party,0,0,1,Check-Out,2016-02-15,Winter,2016-02-09T08:00Z +Keep,72,2016,February,6,6,2,1,2,1,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,91.67,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,72,2016,February,6,6,2,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,56.67,0,0,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,2,2016,February,7,7,2,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,63,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,1,2016,February,6,6,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,51,1,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,21,2016,February,6,5,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-09,Winter,2016-02-05T08:00Z +Keep,26,2016,February,7,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 364,0,Transient-Party,35,0,1,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,0,2016,February,7,7,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-02-09,Winter,2016-02-07T08:00Z +Keep,21,2016,February,6,6,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-09,Winter,2016-02-06T08:00Z +Keep,26,2016,February,7,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 364,0,Transient-Party,35,0,1,Check-Out,2016-02-12,Winter,2016-02-09T08:00Z +Keep,0,2016,February,6,6,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,48.19,0,0,Check-Out,2016-02-10,Winter,2016-02-06T08:00Z +Keep,128,2017,February,6,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Group,73.8,0,1,Check-Out,2017-02-12,Winter,2017-02-05T08:00Z +Keep,2,2016,February,6,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-10,Winter,2016-02-05T08:00Z +Keep,16,2016,January,6,31,4,6,2,0,0,HB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,74.5,0,1,Check-Out,2016-02-10,Winter,2016-01-31T08:00Z +Keep,2,2016,February,6,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-10,Winter,2016-02-05T08:00Z +Keep,6,2016,February,6,5,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,0,Check-Out,2016-02-10,Winter,2016-02-05T08:00Z +Keep,2,2017,April,14,7,0,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,111.5,1,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,33,2016,February,7,9,0,1,1,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 360,0,Transient,50,0,0,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,3,2016,February,7,7,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,1,Check-Out,2016-02-10,Winter,2016-02-07T08:00Z +Keep,0,2016,February,7,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,113,1,2,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,0,2016,February,7,10,0,3,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,H,G,2,No Deposit , NULL, NULL,0,Transient-Party,100,0,2,Check-Out,2016-02-13,Winter,2016-02-10T08:00Z +Keep,69,2016,February,7,8,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-02-10,Winter,2016-02-08T08:00Z +Keep,0,2016,February,7,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,2,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,0,2016,February,7,10,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,A,D,3,No Deposit , NULL, NULL,0,Transient-Party,55,1,0,Check-Out,2016-02-13,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,9,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,2,2016,February,6,3,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,29,0,0,Check-Out,2016-02-10,Winter,2016-02-03T08:00Z +Keep,0,2016,February,7,10,0,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 1,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,29,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,3,2016,February,7,7,2,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2016-02-10,Winter,2016-02-07T08:00Z +Keep,23,2016,February,6,6,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-10,Winter,2016-02-06T08:00Z +Keep,17,2016,February,6,4,2,4,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-02-10,Winter,2016-02-04T08:00Z +Keep,70,2016,February,6,3,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 6, NULL,0,Transient,51.71,0,0,Check-Out,2016-02-10,Winter,2016-02-03T08:00Z +Keep,17,2016,February,6,6,2,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,146.5,1,1,Check-Out,2016-02-10,Winter,2016-02-06T08:00Z +Keep,0,2016,February,7,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,2,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,119,2016,January,5,27,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,42.5,0,0,Check-Out,2016-02-10,Winter,2016-01-27T08:00Z +Keep,1,2016,February,7,9,0,1,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,39.15,0,0,Check-Out,2016-02-10,Winter,2016-02-09T08:00Z +Keep,7,2016,February,7,10,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-02-10,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,7,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2016-02-10,Winter,2016-02-07T08:00Z +Keep,2,2016,February,6,3,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,49,0,1,Check-Out,2016-02-10,Winter,2016-02-03T08:00Z +Keep,10,2016,February,7,8,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2016-02-10,Winter,2016-02-08T08:00Z +Keep,22,2016,February,6,5,2,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-02-10,Winter,2016-02-05T08:00Z +Keep,1,2016,February,7,7,2,1,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-02-10,Winter,2016-02-07T08:00Z +Keep,0,2016,February,7,8,1,1,3,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 127, NULL,0,Transient,41.18,0,0,Check-Out,2016-02-10,Winter,2016-02-08T08:00Z +Keep,7,2016,February,7,9,0,2,1,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,37,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,7,2016,February,7,9,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,37,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,7,2016,February,7,9,0,2,1,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 332, NULL,0,Transient-Party,0,0,0,Check-Out,2016-02-11,Winter,2016-02-09T08:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,5,2016,February,7,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,51,1,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,7,2016,February,9,26,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,61,1,1,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,5,2016,April,15,6,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,1,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,3,2016,April,16,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,0,2016,June,25,15,0,1,1,0,0,BB,ESP,Direct,TA/TO, 1,0,2,A,G,0,No Deposit , NULL, NULL,0,Transient,79,1,1,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,0,2016,February,7,10,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,3,2016,April,16,11,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,0,2016,June,25,15,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,G,0,No Deposit , NULL, NULL,0,Transient,79,0,1,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,92,2016,January,2,7,10,25,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,36.93,0,0,Check-Out,2016-02-11,Winter,2016-01-07T08:00Z +Keep,23,2016,February,6,6,2,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,98.8,1,1,Check-Out,2016-02-11,Winter,2016-02-06T08:00Z +Keep,35,2016,October,44,26,1,4,2,0,0,Undefined,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,126.74,1,2,Check-Out,2016-10-31,Fall,2016-10-26T07:00Z +Keep,57,2016,December,53,28,1,4,2,0,0,Undefined,PRT,Direct,Direct, 1,0,2,D,D,1,No Deposit , NULL, NULL,0,Transient,154.32,1,2,Check-Out,2017-01-02,Winter,2016-12-28T08:00Z +Keep,6,2016,February,7,10,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,8,2016,March,11,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 96, NULL,0,Transient,30.6,0,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,14,2016,April,15,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 314, NULL,0,Group,44.8,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,8,2016,May,19,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 314, NULL,0,Group,52.8,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,48,2016,November,46,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,A,A,2,No Deposit , 168, NULL,0,Group,30,0,0,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,35,2016,December,52,21,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,A,D,2,No Deposit , 314, NULL,0,Group,34.4,0,0,Check-Out,2016-12-23,Winter,2016-12-21T08:00Z +Keep,26,2017,February,7,14,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,6,A,A,0,No Deposit , 171, NULL,0,Group,30,0,0,Check-Out,2017-02-17,Winter,2017-02-14T08:00Z +Keep,0,2016,February,7,10,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,10,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-11,Winter,2016-02-10T08:00Z +Keep,57,2016,February,7,7,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,54.4,1,1,Check-Out,2016-02-11,Winter,2016-02-07T08:00Z +Keep,20,2016,February,6,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,30.43,0,0,Check-Out,2016-02-11,Winter,2016-02-04T08:00Z +Keep,27,2016,February,7,7,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,45.6,0,1,Check-Out,2016-02-11,Winter,2016-02-07T08:00Z +Keep,4,2016,February,7,7,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-12,Winter,2016-02-07T08:00Z +Keep,4,2016,February,7,7,2,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-02-12,Winter,2016-02-07T08:00Z +Keep,3,2016,February,7,11,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 15, NULL,0,Transient,29,0,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,2,2016,February,7,10,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,25,0,0,Check-Out,2016-02-12,Winter,2016-02-10T08:00Z +Keep,0,2016,February,7,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2016,March,14,28,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,1,2016,February,7,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-12,Winter,2016-02-10T08:00Z +Keep,22,2016,February,6,2,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,43.2,0,1,Check-Out,2016-02-12,Winter,2016-02-02T08:00Z +Keep,52,2016,February,6,6,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,62.17,0,0,Check-Out,2016-02-12,Winter,2016-02-06T08:00Z +Keep,50,2016,February,6,6,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,68.17,1,0,Check-Out,2016-02-12,Winter,2016-02-06T08:00Z +Keep,84,2016,February,7,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49.2,0,1,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,2,2016,February,7,7,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,71,0,0,Check-Out,2016-02-12,Winter,2016-02-07T08:00Z +Keep,0,2016,February,7,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,58.5,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,0,2016,February,7,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,15,2016,February,7,11,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,74,1,2,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,0,2016,February,7,11,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-12,Winter,2016-02-11T08:00Z +Keep,8,2016,February,7,12,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,15,2016,February,6,6,2,5,1,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 6, NULL,0,Transient,57,0,0,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Keep,22,2016,February,6,5,2,6,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,27.35,0,0,Check-Out,2016-02-13,Winter,2016-02-05T08:00Z +Keep,2,2016,February,7,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,55,1,0,Check-Out,2016-02-13,Winter,2016-02-11T08:00Z +Keep,32,2016,February,7,12,0,1,2,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,2,2016,February,7,13,0,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-02-13,Winter,2016-02-13T08:00Z +Keep,2,2016,February,7,11,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,106,1,2,Check-Out,2016-02-13,Winter,2016-02-11T08:00Z +Keep,0,2016,February,7,11,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-02-13,Winter,2016-02-11T08:00Z +Keep,19,2016,January,5,30,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,41.04,0,1,Check-Out,2016-02-13,Winter,2016-01-30T08:00Z +Keep,9,2016,February,6,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,45,0,0,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Keep,0,2016,February,7,12,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,8,2016,February,7,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,0,2016,February,7,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,0,2016,September,40,25,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,0,2016,December,49,2,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,February,7,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,0,2016,September,40,25,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,26,2016,February,6,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,34.73,0,0,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Keep,2,2016,February,7,11,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,106,1,2,Check-Out,2016-02-13,Winter,2016-02-11T08:00Z +Keep,2,2016,February,7,7,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-13,Winter,2016-02-07T08:00Z +Keep,17,2016,February,6,6,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Keep,33,2016,February,7,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-13,Winter,2016-02-11T08:00Z +Keep,1,2016,February,7,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,26,2016,February,6,6,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,53.71,0,2,Check-Out,2016-02-13,Winter,2016-02-06T08:00Z +Keep,0,2016,February,7,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-13,Winter,2016-02-12T08:00Z +Keep,8,2016,February,7,13,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,31.16,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,12,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,70,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,16,2016,February,7,11,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,37,0,0,Check-Out,2016-02-14,Winter,2016-02-11T08:00Z +Keep,144,2016,January,4,17,8,20,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,24.8,0,0,Check-Out,2016-02-14,Winter,2016-01-17T08:00Z +Keep,23,2016,February,7,12,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Contract,29,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,11,2016,February,7,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,74,1,2,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,9,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,67.5,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,47.36,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,32,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,70.2,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,37,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,63,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,63,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,9,2016,February,7,13,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,9,2016,February,7,12,0,2,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient,36.25,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,0,2016,February,7,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,1,2016,March,13,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,59,1,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,2,2016,March,14,30,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,E,E,0,No Deposit , 240, NULL,0,Transient,93.5,1,0,Check-Out,2016-04-01,Spring,2016-03-30T07:00Z +Keep,3,2016,June,25,17,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,A,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,4,2016,July,30,21,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,A,A,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,1,2017,January,4,23,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,6,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,2,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,1,2017,January,5,30,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,7,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,3,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,1,2017,May,22,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,8,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,0,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,1,2017,June,23,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,9,D,D,0,No Deposit , 240, NULL,0,Transient,162,1,4,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,9,2016,February,7,12,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,18,2016,February,7,12,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,3,2016,February,7,13,0,1,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,73.92,1,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,12,0,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,160.5,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,12,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,12,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,13,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,35,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,27,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,53,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,24,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,59,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,10,2016,February,7,12,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,43,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,9,2016,September,37,8,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,H,H,0,No Deposit , 250, NULL,0,Transient,213.6,1,0,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,3,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,81,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,13,2016,February,7,12,0,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,75,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,7,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,1,2,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,18,2016,February,7,13,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,12,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,8,1,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Group,46.66,0,0,Check-Out,2016-02-14,Winter,2016-02-08T08:00Z +Keep,2,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,31,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,61.2,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,3,2016,February,7,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,14,2016,February,7,12,0,2,2,0,0,FB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,124,1,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,10,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,2,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,3,2016,February,7,13,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,9,0,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-02-14,Winter,2016-02-09T08:00Z +Keep,1,2016,February,7,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2016-02-14,Winter,2016-02-11T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,61,2016,February,6,4,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,42.5,0,0,Check-Out,2016-02-14,Winter,2016-02-04T08:00Z +Keep,19,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,106.5,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,2,2016,February,7,12,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,9,2016,February,7,13,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,31,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,2,2016,February,7,12,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,3,2016,September,36,2,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,C,0,No Deposit , 250, NULL,0,Transient,161,1,2,Check-Out,2016-09-04,Fall,2016-09-02T07:00Z +Keep,2,2016,February,7,12,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,28,2016,February,7,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,3,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,8,2016,February,7,13,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,16,2016,February,7,12,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67.5,0,3,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,16,2016,February,7,12,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67.5,0,3,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,40,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,10,2016,February,7,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,49,2016,February,7,13,0,1,2,2,0,HB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,174,1,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,17,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,2,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,39,2016,February,7,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,39,2016,February,7,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,39,2016,February,7,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,4,2016,February,7,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,25,2016,February,7,13,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,98,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,23,2016,January,6,31,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,45.37,0,3,Check-Out,2016-02-14,Winter,2016-01-31T08:00Z +Keep,10,2016,February,7,13,0,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,55,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,16,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67.5,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,8,2016,February,7,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-02-14,Winter,2016-02-13T08:00Z +Keep,0,2016,February,7,12,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,1,No Deposit , 250, NULL,0,Transient,97.5,0,0,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,1,2016,February,7,12,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,35,1,1,Check-Out,2016-02-14,Winter,2016-02-12T08:00Z +Keep,10,2016,February,7,11,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,41,0,2,Check-Out,2016-02-15,Winter,2016-02-11T08:00Z +Keep,43,2016,February,7,11,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,0,Check-Out,2016-02-15,Winter,2016-02-11T08:00Z +Keep,23,2016,February,7,11,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 115, NULL,0,Transient,40.5,0,0,Check-Out,2016-02-15,Winter,2016-02-11T08:00Z +Keep,10,2016,February,7,12,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,61,1,0,Check-Out,2016-02-15,Winter,2016-02-12T08:00Z +Keep,18,2016,February,8,14,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,14,1,0,2,0,0,BB,BIH,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,11,2016,February,7,12,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-15,Winter,2016-02-12T08:00Z +Keep,23,2016,February,7,12,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-02-15,Winter,2016-02-12T08:00Z +Keep,29,2016,February,7,11,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.65,0,2,Check-Out,2016-02-15,Winter,2016-02-11T08:00Z +Keep,5,2016,February,8,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,61,2016,February,7,11,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-02-15,Winter,2016-02-11T08:00Z +Keep,1,2016,February,7,13,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,66,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,10,2016,February,7,12,1,2,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,73.4,0,2,Check-Out,2016-02-15,Winter,2016-02-12T08:00Z +Keep,2,2016,February,7,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,61.5,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,1,2016,February,7,13,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,60,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,16,2016,February,6,1,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,1,Check-Out,2016-02-15,Winter,2016-02-01T08:00Z +Keep,32,2016,February,7,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-02-15,Winter,2016-02-08T08:00Z +Keep,0,2016,February,7,13,1,1,2,3,0,HB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,150,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,87,2016,February,7,9,1,5,2,0,0,HB,MUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2016-02-15,Winter,2016-02-09T08:00Z +Keep,3,2016,February,7,13,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,32,1,1,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,0,2016,February,8,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,4,2016,February,7,13,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,106,1,2,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,4,2016,February,8,14,1,0,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,125,0,2,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,4,2016,February,7,13,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,61,1,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,13,2016,February,7,10,1,4,2,1,1,HB,NGA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 6, NULL,0,Transient,96.25,0,0,Check-Out,2016-02-15,Winter,2016-02-10T08:00Z +Keep,3,2016,February,7,13,1,1,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,75,0,1,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,3,2016,February,7,13,1,1,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,75,0,1,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,3,2016,February,8,14,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,13,2016,February,8,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,3,2016,February,7,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.92,0,1,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,40,2016,February,8,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,37,2016,February,7,10,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 171, NULL,0,Transient,37,0,0,Check-Out,2016-02-15,Winter,2016-02-10T08:00Z +Keep,16,2016,February,8,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,117.5,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,3,2016,February,8,14,1,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,125,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,18,2016,February,8,14,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,3,2016,February,7,13,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,30,2016,February,7,13,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2016-02-15,Winter,2016-02-13T08:00Z +Keep,123,2017,February,7,12,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,76.5,0,3,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,4,2016,February,8,14,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,60,0,0,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,5,2016,February,8,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-15,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,15,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,7,2016,February,8,15,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 144,0,Transient,27,0,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,15,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,9,2016,February,7,13,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-16,Winter,2016-02-13T08:00Z +Keep,0,2016,February,8,15,1,0,2,1,0,BB,COM,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,71.61,0,2,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,0,2016,February,7,12,2,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2016-02-16,Winter,2016-02-12T08:00Z +Keep,26,2016,February,7,9,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-16,Winter,2016-02-09T08:00Z +Keep,1,2016,February,8,14,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-02-16,Winter,2016-02-14T08:00Z +Keep,1,2016,February,7,12,2,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,80.25,1,0,Check-Out,2016-02-16,Winter,2016-02-12T08:00Z +Keep,0,2016,February,8,15,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 83,0,Transient,30,0,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,3,2017,February,8,20,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 83,0,Transient,35,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,5,2016,February,8,14,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-02-16,Winter,2016-02-14T08:00Z +Keep,50,2016,February,8,14,2,0,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,58,0,0,Check-Out,2016-02-16,Winter,2016-02-14T08:00Z +Keep,2,2016,February,8,15,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,29,0,0,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-16,Winter,2016-02-15T08:00Z +Keep,83,2016,February,7,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-02-16,Winter,2016-02-09T08:00Z +Keep,20,2016,February,8,14,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,38.33,0,0,Check-Out,2016-02-17,Winter,2016-02-14T08:00Z +Keep,14,2016,February,6,4,4,9,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 115, NULL,0,Transient,22.5,0,0,Check-Out,2016-02-17,Winter,2016-02-04T08:00Z +Keep,5,2016,February,7,9,2,6,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,39,0,0,Check-Out,2016-02-17,Winter,2016-02-09T08:00Z +Keep,0,2016,February,8,15,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,March,10,1,0,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,0,2016,November,49,29,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,0,2016,December,51,13,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,3,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,4,2016,February,8,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,25,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,10,2016,February,8,16,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,51,1,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,1,2016,February,7,12,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52.4,0,1,Check-Out,2016-02-17,Winter,2016-02-12T08:00Z +Keep,0,2016,February,8,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,16,0,1,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,15,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,49,0,1,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,15,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-02-17,Winter,2016-02-15T08:00Z +Keep,5,2016,February,8,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 366,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,5,2016,February,8,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 366,0,Transient,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,1,2016,February,8,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,25,1,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,1,2016,February,8,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,40,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,0,2016,February,7,13,2,2,2,0,0,BB,CHN,Direct,Direct, 0,0,0,F,F,3,No Deposit , NULL, NULL,0,Transient,88.5,0,0,Check-Out,2016-02-17,Winter,2016-02-13T08:00Z +Keep,15,2016,February,7,12,2,3,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,45,0,0,Check-Out,2016-02-17,Winter,2016-02-12T08:00Z +Keep,1,2016,February,8,16,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,1,2016,February,8,16,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,2,2017,March,11,18,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,4,2016,February,8,16,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-17,Winter,2016-02-16T08:00Z +Keep,13,2016,February,8,15,1,2,2,0,0,BB,AUT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,89,2016,February,8,14,2,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,1,2016,February,8,17,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,27,2016,February,8,14,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,90,1,0,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,40,2016,February,8,17,0,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 360,0,Transient,61,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,3,2016,February,8,15,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 139, 99,0,Transient,30,0,0,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,10,2016,March,12,14,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,2,No Deposit , 139, 99,0,Transient,37,0,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Cancel,4,2016,April,15,4,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,2,No Deposit , 139, 99,0,Transient,67.5,0,0,Canceled,2016-04-04,Spring,2016-04-04T07:00Z +Keep,0,2016,April,18,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,D,0,No Deposit , NULL, 99,0,Transient,42,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,31,2016,February,8,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,53.2,0,2,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,31,2016,February,8,14,2,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,79.2,1,1,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,April,18,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 401,0,Transient,45,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,3,2017,May,22,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,39,2016,February,7,12,2,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2016-02-18,Winter,2016-02-12T08:00Z +Keep,18,2016,February,7,13,2,3,1,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,27,0,0,Check-Out,2016-02-18,Winter,2016-02-13T08:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,April,16,13,0,1,2,0,0,BB,ESP,Direct,TA/TO, 1,0,1,A,G,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,19,2016,February,8,14,2,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,0,4,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,19,2016,February,8,14,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,3,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,12,2016,February,8,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,28,2016,February,8,15,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,75,1,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,28,2016,February,7,10,2,6,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-02-18,Winter,2016-02-10T08:00Z +Keep,28,2016,February,7,10,2,6,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,1,Check-Out,2016-02-18,Winter,2016-02-10T08:00Z +Keep,6,2016,February,8,15,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,1,0,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,28,2016,February,7,11,2,5,1,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,64.14,0,2,Check-Out,2016-02-18,Winter,2016-02-11T08:00Z +Keep,28,2016,February,7,11,2,5,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 241, NULL,0,Transient,80.85,1,3,Check-Out,2016-02-18,Winter,2016-02-11T08:00Z +Keep,0,2016,February,8,17,0,1,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,75,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,10,2016,February,8,15,1,2,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,35,1,0,Check-Out,2016-02-18,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,0,2016,March,12,14,1,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,0,2016,February,8,16,0,2,2,0,0,BB,CHN,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-02-18,Winter,2016-02-16T08:00Z +Keep,3,2016,February,8,14,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-02-18,Winter,2016-02-14T08:00Z +Keep,1,2016,February,8,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-02-18,Winter,2016-02-17T08:00Z +Keep,7,2016,February,8,17,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,17,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,0,2016,March,11,9,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,E,1,No Deposit , NULL, NULL,0,Transient,69,1,1,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,I,3,No Deposit , NULL, NULL,0,Transient,40,1,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,A,1,No Deposit , NULL, NULL,0,Transient,59,1,1,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,2,2016,February,8,17,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 47,0,Transient,36,1,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,6,2016,March,14,30,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , 47, NULL,0,Transient,45,1,0,Check-Out,2016-04-01,Spring,2016-03-30T07:00Z +Keep,0,2016,April,16,11,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,1,No Deposit , 47, NULL,0,Transient,42,1,0,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,1,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,1,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2017,March,13,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,2,2016,February,8,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,2,2016,February,8,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,0,2016,February,8,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,13,2017,March,9,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,27.36,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,7,2016,February,8,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,6,2016,February,8,16,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 62,0,Transient,30,0,0,Check-Out,2016-02-19,Winter,2016-02-16T08:00Z +Keep,6,2016,February,8,16,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 62,0,Transient,30,0,0,Check-Out,2016-02-19,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,8,2016,February,8,17,0,2,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,147,1,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,33,2016,February,8,15,1,3,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,66.06,0,1,Check-Out,2016-02-19,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2016,February,8,17,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,1,2016,February,8,17,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 232,0,Transient,46,1,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,4,2016,May,23,31,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,A,0,No Deposit , NULL, 232,0,Transient,57,1,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,1,2016,February,8,18,0,1,2,1,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,5,2016,February,8,15,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-02-19,Winter,2016-02-15T08:00Z +Keep,5,2017,February,6,6,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Group,30,0,0,Check-Out,2017-02-10,Winter,2017-02-06T08:00Z +Keep,0,2016,February,8,16,0,3,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,101,1,0,Check-Out,2016-02-19,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,18,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,5,2016,February,8,15,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-02-19,Winter,2016-02-15T08:00Z +Keep,71,2016,February,8,16,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-02-19,Winter,2016-02-16T08:00Z +Keep,2,2016,February,8,17,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-19,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,18,0,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,0,3,Check-Out,2016-02-19,Winter,2016-02-18T08:00Z +Keep,0,2016,March,10,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,29,2016,February,8,14,2,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,41,0,2,Check-Out,2016-02-19,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,16,0,3,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-19,Winter,2016-02-16T08:00Z +Keep,39,2016,February,7,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,58.7,0,0,Check-Out,2016-02-19,Winter,2016-02-12T08:00Z +Keep,7,2016,February,8,17,0,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,29,2016,February,7,13,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,66.38,0,1,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,11,2016,February,7,13,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,2,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,11,2016,February,7,13,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,42,2016,February,8,16,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,4,2016,February,6,6,4,10,1,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,0,Check-Out,2016-02-20,Winter,2016-02-06T08:00Z +Keep,17,2016,February,8,18,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,45,1,0,Check-Out,2016-02-20,Winter,2016-02-18T08:00Z +Keep,1,2016,February,8,19,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,0,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,0,2016,February,8,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,35,2016,February,8,18,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,66,0,1,Check-Out,2016-02-20,Winter,2016-02-18T08:00Z +Keep,14,2016,February,7,13,2,5,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,91,0,1,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,14,2016,February,7,13,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,64,1,2,Check-Out,2016-02-20,Winter,2016-02-13T08:00Z +Keep,30,2016,February,8,17,0,3,2,0,0,BB,OMN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,6,2016,February,8,17,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,7,2016,February,8,17,0,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,7,2016,February,8,17,0,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,24,2016,February,8,14,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,55.73,0,1,Check-Out,2016-02-20,Winter,2016-02-14T08:00Z +Keep,7,2016,February,8,17,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2016-02-20,Winter,2016-02-17T08:00Z +Keep,42,2016,February,8,16,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,45,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,24,2016,February,6,6,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 363, NULL,0,Transient,79,0,0,Check-Out,2016-02-20,Winter,2016-02-06T08:00Z +Keep,0,2016,February,8,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,1,1,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,4,2016,February,8,16,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,4,2016,February,8,16,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,4,2016,February,8,16,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,4,2016,February,8,16,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-02-20,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,0,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,6,2016,February,8,19,0,1,3,0,0,BB,AUT,Direct,Direct, 0,0,0,A,G,2,No Deposit , NULL, NULL,0,Transient,39,0,1,Check-Out,2016-02-20,Winter,2016-02-19T08:00Z +Keep,29,2016,February,8,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.11,0,1,Check-Out,2016-02-21,Winter,2016-02-14T08:00Z +Keep,0,2016,February,8,14,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,37.86,1,0,Check-Out,2016-02-21,Winter,2016-02-14T08:00Z +Keep,17,2016,February,8,18,0,3,2,2,0,BB,SUR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,0,Check-Out,2016-02-21,Winter,2016-02-18T08:00Z +Keep,9,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,0,2016,February,8,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-21,Winter,2016-02-18T08:00Z +Keep,1,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,2,2016,February,8,19,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,56,0,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,1,2016,February,8,20,0,1,2,1,1,BB,PRT,Complementary,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,5,2016,July,30,20,0,1,1,0,0,BB,PRT,Complementary,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-07-21,Summer,2016-07-20T07:00Z +Keep,1,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,61,1,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,2,2016,February,8,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,20,2016,February,8,16,0,5,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,30,0,1,Check-Out,2016-02-21,Winter,2016-02-16T08:00Z +Keep,20,2016,February,8,18,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-21,Winter,2016-02-18T08:00Z +Keep,14,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,4,2016,February,8,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,2,2016,February,8,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,2,2016,February,8,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,3,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,26,2016,February,8,17,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-21,Winter,2016-02-17T08:00Z +Keep,7,2016,February,8,20,0,1,3,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,72.13,1,2,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,25,2016,February,8,15,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,78.4,0,1,Check-Out,2016-02-21,Winter,2016-02-15T08:00Z +Keep,3,2016,February,8,20,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,9,2016,February,8,18,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,81.5,1,1,Check-Out,2016-02-21,Winter,2016-02-18T08:00Z +Keep,1,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,1,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,5,2016,February,8,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,8,2016,February,8,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,1,2016,February,8,20,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,3,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,3,2016,February,8,19,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,SWE,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,1,2016,February,8,19,0,2,2,1,0,BB,MEX,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 348, NULL,0,Transient,87.6,0,1,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,2,2016,February,8,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-21,Winter,2016-02-19T08:00Z +Keep,35,2016,February,8,17,0,4,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,43.76,0,0,Check-Out,2016-02-21,Winter,2016-02-17T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,0,2016,February,8,20,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-02-21,Winter,2016-02-20T08:00Z +Keep,31,2016,February,8,18,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-02-21,Winter,2016-02-18T08:00Z +Keep,0,2016,February,8,16,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,46.2,1,0,Check-Out,2016-02-21,Winter,2016-02-16T08:00Z +Keep,37,2016,February,8,17,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,56.7,0,0,Check-Out,2016-02-22,Winter,2016-02-17T08:00Z +Keep,26,2016,February,8,17,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-22,Winter,2016-02-17T08:00Z +Keep,0,2016,February,9,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-22,Winter,2016-02-21T08:00Z +Keep,0,2016,February,9,22,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,E,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-02-22,Winter,2016-02-22T08:00Z +Keep,2,2016,February,9,21,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,3,No Deposit , NULL, 113,0,Transient,41,1,0,Check-Out,2016-02-22,Winter,2016-02-21T08:00Z +Keep,3,2016,May,21,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 113,0,Transient,53,1,0,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,0,2016,February,8,20,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-02-22,Winter,2016-02-20T08:00Z +Keep,42,2016,February,8,15,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,37.4,1,1,Check-Out,2016-02-22,Winter,2016-02-15T08:00Z +Keep,0,2016,February,8,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.5,0,0,Check-Out,2016-02-23,Winter,2016-02-16T08:00Z +Keep,0,2016,February,8,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.5,0,0,Check-Out,2016-02-23,Winter,2016-02-16T08:00Z +Keep,68,2016,February,8,18,2,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,69.01,0,1,Check-Out,2016-02-23,Winter,2016-02-18T08:00Z +Keep,6,2016,February,9,21,2,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-23,Winter,2016-02-21T08:00Z +Keep,5,2016,February,9,22,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,7,2017,February,8,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 314, NULL,0,Group,48.96,0,0,Check-Out,2017-02-24,Winter,2017-02-23T08:00Z +Keep,0,2016,January,5,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2016-01-29,Winter,2016-01-28T08:00Z +Keep,5,2016,February,8,20,2,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-02-23,Winter,2016-02-20T08:00Z +Keep,4,2016,March,12,15,0,2,1,0,0,BB,PRT,Direct,Corporate, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,8,2016,February,8,19,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,46.5,0,0,Check-Out,2016-02-23,Winter,2016-02-19T08:00Z +Keep,3,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,3,2016,February,9,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,DEU,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,29,2016,February,8,20,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-02-23,Winter,2016-02-20T08:00Z +Keep,3,2016,February,8,20,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-23,Winter,2016-02-20T08:00Z +Keep,29,2016,February,9,21,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-23,Winter,2016-02-21T08:00Z +Keep,0,2016,February,9,22,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-23,Winter,2016-02-22T08:00Z +Keep,2,2016,February,9,24,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-02-24,Winter,2016-02-24T08:00Z +Keep,9,2016,February,8,17,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-24,Winter,2016-02-17T08:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,October,43,19,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,34,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,March,13,23,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,0,2016,February,9,22,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,16,2016,February,8,14,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,57.64,0,0,Check-Out,2016-02-24,Winter,2016-02-14T08:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,31,2016,February,8,19,2,3,3,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,76.38,0,2,Check-Out,2016-02-24,Winter,2016-02-19T08:00Z +Keep,24,2016,February,9,22,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,2,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,24,2016,February,9,22,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,2,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,1,2016,February,9,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 47, NULL,0,Transient,30,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,7,2016,February,9,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,39,2016,February,9,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,38,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,2,2016,December,50,10,0,1,2,1,0,BB,PRT,Online travel agent,Direct, 1,0,1,A,D,1,No Deposit , 240, NULL,0,Transient,82.5,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,13,2016,February,9,22,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,27,2016,February,7,7,6,11,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 241, NULL,0,Transient,61.6,0,1,Check-Out,2016-02-24,Winter,2016-02-07T08:00Z +Keep,0,2016,February,9,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,22,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,4,2016,February,9,22,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,51,1,1,Check-Out,2016-02-24,Winter,2016-02-22T08:00Z +Keep,2,2016,March,14,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,83,1,1,Check-Out,2016-04-01,Spring,2016-03-29T07:00Z +Keep,6,2016,February,9,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,1,2016,February,9,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-24,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,FRA,Direct,Direct, 1,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,13,2016,February,9,21,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-02-24,Winter,2016-02-21T08:00Z +Keep,36,2016,February,8,20,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-02-25,Winter,2016-02-20T08:00Z +Keep,20,2016,February,9,22,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient,36.1,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,29,2016,February,8,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 95, NULL,0,Transient,30.43,0,1,Check-Out,2016-02-25,Winter,2016-02-18T08:00Z +Keep,0,2016,February,9,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2016,March,13,23,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,28,2016,February,8,20,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,40.5,0,0,Check-Out,2016-02-25,Winter,2016-02-20T08:00Z +Keep,0,2016,February,9,22,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,1,2016,February,9,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,25,1,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2016,February,9,23,0,2,1,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,0,0,0,Check-Out,2016-02-25,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,23,0,2,1,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,0,0,0,Check-Out,2016-02-25,Winter,2016-02-23T08:00Z +Keep,0,2016,February,9,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,6,2016,February,9,24,0,1,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,6,2016,February,9,24,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2016,February,8,20,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-25,Winter,2016-02-20T08:00Z +Keep,14,2016,February,9,22,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Group,58,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Group,58,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,36.96,1,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,6,2016,February,9,21,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,47,0,0,Check-Out,2016-02-25,Winter,2016-02-21T08:00Z +Keep,12,2016,February,9,24,0,1,2,0,1,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,36,1,1,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,0,2016,February,9,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-25,Winter,2016-02-24T08:00Z +Keep,14,2016,February,9,22,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,14,2016,February,9,22,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,14,2016,February,9,22,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-02-25,Winter,2016-02-22T08:00Z +Keep,3,2016,February,9,25,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-02-25,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,25,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,E,0,No Deposit , NULL, 287,0,Transient,0,0,0,Check-Out,2016-02-25,Winter,2016-02-25T08:00Z +Keep,7,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 192,0,Transient,33,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,3,A,A,0,No Deposit , NULL, 255,0,Transient,38.5,1,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,0,2016,February,9,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,April,18,28,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,50.4,1,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,0,2016,December,51,13,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,43,1,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,0,2017,February,7,15,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,3,A,D,1,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2016,February,9,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,22,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,46.5,1,0,Check-Out,2016-02-26,Winter,2016-02-22T08:00Z +Keep,0,2016,March,11,11,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,42,2016,February,9,24,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2016-02-26,Winter,2016-02-24T08:00Z +Keep,0,2016,February,9,23,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-26,Winter,2016-02-23T08:00Z +Keep,19,2016,February,9,21,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-02-26,Winter,2016-02-21T08:00Z +Keep,0,2016,February,9,23,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-26,Winter,2016-02-23T08:00Z +Keep,0,2016,February,10,29,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 5, NULL,0,Transient,34.4,0,1,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,2,2016,February,9,25,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,22,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-26,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,22,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-26,Winter,2016-02-22T08:00Z +Keep,32,2016,February,9,21,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,40.5,0,0,Check-Out,2016-02-26,Winter,2016-02-21T08:00Z +Keep,0,2016,February,9,25,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,34.4,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,35,2016,February,9,24,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 86,0,Transient,38,0,0,Check-Out,2016-02-26,Winter,2016-02-24T08:00Z +Keep,8,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 92,0,Transient,30,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,8,2017,April,14,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 511,0,Transient,45,0,0,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,8,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 92,0,Transient,30,1,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,8,2017,April,14,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 511,0,Transient,45,0,0,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,0,2016,February,9,25,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,5,2016,February,9,22,1,3,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,87,1,1,Check-Out,2016-02-26,Winter,2016-02-22T08:00Z +Keep,9,2016,February,9,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 82,0,Transient,30,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,4,2017,March,11,13,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 82,0,Transient,35,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,2,2016,February,9,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,8,2016,February,8,18,2,6,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,75.26,1,2,Check-Out,2016-02-26,Winter,2016-02-18T08:00Z +Keep,0,2016,February,9,23,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 384,0,Transient-Party,30,0,0,Check-Out,2016-02-26,Winter,2016-02-23T08:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , 384, NULL,0,Transient,42,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,0,2016,April,16,11,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,2,No Deposit , NULL, 384,0,Transient-Party,42,0,0,Check-Out,2016-04-13,Spring,2016-04-11T07:00Z +Keep,0,2016,April,18,26,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,C,1,No Deposit , NULL, 384,0,Transient,42,0,0,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,0,2016,February,9,23,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,I,1,No Deposit , NULL, 384,0,Transient-Party,31.67,0,0,Check-Out,2016-02-26,Winter,2016-02-23T08:00Z +Keep,13,2016,February,9,26,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , 384, NULL,0,Transient,42,0,1,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,0,2016,April,16,11,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,1,No Deposit , NULL, 384,0,Transient-Party,42,0,1,Check-Out,2016-04-13,Spring,2016-04-11T07:00Z +Keep,0,2016,April,18,26,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,C,0,No Deposit , NULL, 384,0,Transient,42,0,1,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,0,2016,February,9,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-02-26,Winter,2016-02-25T08:00Z +Keep,30,2016,February,8,20,2,5,2,0,1,BB,GBR,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2016-02-27,Winter,2016-02-20T08:00Z +Keep,93,2016,February,9,26,2,7,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 314, NULL,0,Transient,22.5,0,0,Check-Out,2016-03-06,Winter,2016-02-26T08:00Z +Keep,0,2016,February,9,24,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,98.67,1,2,Check-Out,2016-02-27,Winter,2016-02-24T08:00Z +Keep,0,2016,February,9,26,0,1,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,A,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,47,2016,February,8,20,2,5,2,0,0,FB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,91,0,0,Check-Out,2016-02-27,Winter,2016-02-20T08:00Z +Keep,1,2016,February,9,24,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-02-27,Winter,2016-02-24T08:00Z +Keep,2,2016,February,9,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,46,1,1,Check-Out,2016-02-27,Winter,2016-02-25T08:00Z +Keep,1,2016,April,18,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,56,1,1,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,33,2016,February,9,27,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 177, NULL,0,Transient,0,0,2,Check-Out,2016-02-27,Winter,2016-02-27T08:00Z +Keep,4,2016,February,9,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,12,2016,February,9,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-02-27,Winter,2016-02-21T08:00Z +Keep,22,2016,February,8,20,2,5,1,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,43.43,0,0,Check-Out,2016-02-27,Winter,2016-02-20T08:00Z +Keep,11,2016,February,9,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,60,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,40,2016,February,8,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,40.79,0,0,Check-Out,2016-02-27,Winter,2016-02-20T08:00Z +Keep,3,2016,February,9,26,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,40,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,0,2016,February,9,26,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,2,2016,February,9,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,3,2016,February,9,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,45,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,3,2016,February,9,26,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,40,0,0,Check-Out,2016-02-27,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,24,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,28.1,0,0,Check-Out,2016-02-28,Winter,2016-02-24T08:00Z +Keep,45,2016,February,8,18,2,8,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 2, NULL,0,Contract,58,0,0,Check-Out,2016-02-28,Winter,2016-02-18T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient-Party,48,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,73,2016,February,7,7,6,15,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 2, NULL,0,Contract,65,0,0,Check-Out,2016-02-28,Winter,2016-02-07T08:00Z +Keep,10,2016,February,9,25,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,58,0,1,Check-Out,2016-02-28,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,27,0,1,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,146,1,0,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,41,2016,February,9,25,0,3,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,38,0,0,Check-Out,2016-02-28,Winter,2016-02-25T08:00Z +Keep,0,2016,February,9,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,18,2016,February,9,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,1,2016,February,9,26,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,2,2016,February,9,27,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,G,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,1,2016,February,9,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,30,2016,February,9,26,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,1,2016,February,9,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,0,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,7,2016,February,9,26,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101,1,0,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,9,2016,February,9,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,48,2016,February,9,23,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30,0,0,Check-Out,2016-02-28,Winter,2016-02-23T08:00Z +Keep,3,2016,February,9,27,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,10,2016,February,9,27,0,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,141,0,0,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,0,2016,March,10,4,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,41,2016,February,9,24,0,4,2,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,46.5,0,0,Check-Out,2016-02-28,Winter,2016-02-24T08:00Z +Keep,23,2016,February,9,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,10,2016,February,9,25,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,48,1,1,Check-Out,2016-02-28,Winter,2016-02-25T08:00Z +Keep,10,2016,February,9,25,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,48,0,1,Check-Out,2016-02-28,Winter,2016-02-25T08:00Z +Keep,19,2016,February,9,27,0,1,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,A,F,0,No Deposit , 5, NULL,0,Transient,0,0,0,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,90,0,1,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,6,2016,February,9,26,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,85,0,2,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,6,2016,February,9,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2016-02-28,Winter,2016-02-26T08:00Z +Keep,23,2016,February,9,27,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 127, NULL,0,Transient,38.13,0,1,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,4,2016,February,9,21,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,27.56,0,1,Check-Out,2016-02-28,Winter,2016-02-21T08:00Z +Keep,33,2016,February,9,27,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,66,1,2,Check-Out,2016-02-28,Winter,2016-02-27T08:00Z +Keep,43,2016,February,9,24,1,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,50.8,1,1,Check-Out,2016-02-29,Winter,2016-02-24T08:00Z +Keep,10,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,58,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,28,2016,February,9,22,2,5,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,0,1,Check-Out,2016-02-29,Winter,2016-02-22T08:00Z +Keep,38,2016,February,9,21,3,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,58.8,1,1,Check-Out,2016-02-29,Winter,2016-02-21T08:00Z +Keep,3,2016,February,9,27,1,1,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 38, NULL,0,Transient-Party,44,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,1,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 38, NULL,0,Transient-Party,44,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,1,0,0,FB,ESP,Complementary,TA/TO, 0,0,0,A,A,2,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,2,2,0,FB,ESP,Complementary,TA/TO, 0,0,0,C,C,1,No Deposit , 38, NULL,0,Transient-Party,54,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,1,2016,February,9,27,1,1,2,0,0,FB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,64,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,5,2016,February,7,8,6,15,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 363, NULL,0,Transient,75.81,1,0,Check-Out,2016-02-29,Winter,2016-02-08T08:00Z +Keep,3,2016,February,10,28,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,4,0,0,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,3,2016,February,10,28,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,26,0,0,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,11,2016,February,9,26,1,2,3,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,108.15,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,11,2016,February,9,26,1,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,75,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,5,2016,February,9,27,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,96,1,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,6,2016,February,9,21,3,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,48.75,1,0,Check-Out,2016-02-29,Winter,2016-02-21T08:00Z +Keep,18,2016,February,9,27,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,27,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,40,2016,February,9,27,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,32,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,30,2016,February,9,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,34,2016,February,9,22,2,5,1,0,0,FB,JAM,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,49.71,0,0,Check-Out,2016-02-29,Winter,2016-02-22T08:00Z +Keep,0,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 348, NULL,0,Transient,46.4,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,5,2016,February,9,27,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,1,2016,February,10,28,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,11,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,5,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,53,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,2,2016,February,9,26,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.33,1,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,27,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,14,2016,February,9,26,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,55,0,2,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,18,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,2,2016,February,9,27,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,45,2016,February,10,28,1,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,56,0,1,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,45,2016,February,10,28,1,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,56,0,1,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,24,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,1,2016,February,9,26,1,2,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,1,2016,February,9,26,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,16,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,12,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,17,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,60,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,30,2016,February,9,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,3,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,26,1,2,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,75,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,15,2016,February,9,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,53,2016,February,9,26,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,89,2016,February,9,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,1,Check-Out,2016-02-29,Winter,2016-02-25T08:00Z +Keep,16,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,17,2016,February,9,26,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,44.5,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,38,2016,February,10,28,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-02-29,Winter,2016-02-28T08:00Z +Keep,17,2016,February,9,26,1,2,2,0,1,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,56,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,16,2016,February,9,27,1,1,2,0,0,HB,BRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,17,2016,February,9,26,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,56,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,44,2016,February,9,27,1,1,3,1,0,BB,ESP,Direct,Direct, 0,0,0,H,H,2,No Deposit , NULL, NULL,0,Transient,81,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,17,2016,February,9,26,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,56,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,35,2016,February,9,26,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,26,1,2,2,2,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,88,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,4,2016,February,9,26,1,2,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 196, NULL,0,Transient,73,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,9,2016,February,9,27,1,1,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.75,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,10,2016,February,9,27,1,1,2,2,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,85,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,12,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,4,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,51.33,0,2,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,3,2016,February,9,27,1,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,9,2016,February,9,27,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,24,2016,February,9,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,24,2016,February,9,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,5,2016,February,9,27,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,7,2016,February,9,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,53,2016,February,9,26,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,8,2016,February,9,27,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,8,2016,February,9,27,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,42,2016,February,9,26,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-02-29,Winter,2016-02-26T08:00Z +Keep,102,2016,February,9,27,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,37,0,1,Check-Out,2016-02-29,Winter,2016-02-27T08:00Z +Keep,91,2016,February,9,25,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2016-03-01,Winter,2016-02-25T08:00Z +Keep,28,2016,February,9,23,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Transient,25,0,0,Check-Out,2016-03-01,Winter,2016-02-23T08:00Z +Keep,0,2016,February,10,29,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2016-03-01,Winter,2016-02-29T08:00Z +Keep,38,2016,February,9,27,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,76.47,1,2,Check-Out,2016-03-01,Winter,2016-02-27T08:00Z +Keep,23,2016,February,10,29,1,0,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 95, NULL,0,Transient,25,0,0,Check-Out,2016-03-01,Winter,2016-02-29T08:00Z +Keep,3,2016,February,10,28,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2016-03-01,Winter,2016-02-28T08:00Z +Keep,5,2017,January,1,4,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-07,Winter,2017-01-04T08:00Z +Keep,12,2016,February,9,27,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,36.1,0,1,Check-Out,2016-03-01,Winter,2016-02-27T08:00Z +Keep,29,2016,February,9,26,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-03-01,Winter,2016-02-26T08:00Z +Keep,3,2016,February,9,26,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,68.75,0,0,Check-Out,2016-03-01,Winter,2016-02-26T08:00Z +Keep,0,2016,February,10,29,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2016-03-01,Winter,2016-02-29T08:00Z +Keep,18,2016,February,9,27,2,1,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,99,0,1,Check-Out,2016-03-01,Winter,2016-02-27T08:00Z +Keep,2,2016,March,10,2,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,0,0,0,Check-Out,2016-03-02,Spring,2016-03-02T08:00Z +Keep,2,2017,February,7,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,April,17,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 195,0,Transient-Party,45,0,0,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,58,2016,February,9,26,2,3,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,57.8,0,0,Check-Out,2016-03-02,Winter,2016-02-26T08:00Z +Keep,9,2016,February,10,28,2,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,34.4,0,1,Check-Out,2016-03-02,Winter,2016-02-28T08:00Z +Keep,0,2016,February,10,29,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 290,0,Transient,30,0,0,Check-Out,2016-03-02,Winter,2016-02-29T08:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,D,D,0,No Deposit , NULL, 290,0,Transient,67,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,D,D,0,No Deposit , NULL, 290,0,Transient,63,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,0,2016,November,49,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 290,0,Transient,30,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 290,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,D,0,No Deposit , NULL, 290,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,0,2017,February,6,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,D,0,No Deposit , NULL, 290,0,Transient,35,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,0,2017,March,13,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , NULL, 290,0,Transient,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,6,2017,May,22,31,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,A,0,No Deposit , NULL, 290,0,Transient-Party,75,0,0,Check-Out,2017-06-02,Spring,2017-05-31T07:00Z +Keep,0,2016,March,10,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,0,2016,March,10,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,1,2016,March,10,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,0,2016,March,10,1,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,1,2016,March,10,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 167,0,Transient,30,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,6,2017,March,11,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 167,0,Transient,35,0,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,1,2016,March,10,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,22,2016,February,9,24,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.14,1,1,Check-Out,2016-03-02,Winter,2016-02-24T08:00Z +Keep,0,2016,March,10,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,83,2016,February,10,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62.53,0,1,Check-Out,2016-03-02,Winter,2016-02-28T08:00Z +Keep,17,2016,February,10,28,2,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-02,Winter,2016-02-28T08:00Z +Keep,1,2016,March,10,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-02,Spring,2016-03-01T08:00Z +Keep,38,2016,February,9,25,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,35,1,1,Check-Out,2016-03-02,Winter,2016-02-25T08:00Z +Keep,38,2016,February,9,25,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,29,0,1,Check-Out,2016-03-02,Winter,2016-02-25T08:00Z +Keep,14,2016,February,8,17,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,5,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-02,Winter,2016-02-17T08:00Z +Keep,19,2016,February,9,24,2,5,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.57,0,0,Check-Out,2016-03-02,Winter,2016-02-24T08:00Z +Keep,88,2016,February,9,24,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,27.43,0,0,Check-Out,2016-03-02,Winter,2016-02-24T08:00Z +Keep,22,2016,February,6,4,8,20,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 363, NULL,0,Transient,72.21,0,0,Check-Out,2016-03-03,Winter,2016-02-04T08:00Z +Keep,28,2016,March,10,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,20,2016,February,9,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,56.7,0,0,Check-Out,2016-03-03,Winter,2016-02-25T08:00Z +Keep,42,2016,February,9,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,31,0,0,Check-Out,2016-03-03,Winter,2016-02-25T08:00Z +Keep,0,2016,March,10,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,1,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,0,2016,March,10,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 167,0,Transient,30,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,1,2016,March,10,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,7,2016,February,10,29,1,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,7,2016,February,10,29,1,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,0,2016,March,10,2,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,6,2016,March,10,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,11,2016,February,10,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,29,0,0,Check-Out,2016-03-03,Winter,2016-02-28T08:00Z +Keep,19,2016,February,10,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,1,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,14,2016,February,10,29,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,43,1,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,38,2016,February,9,25,2,5,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,69.21,0,0,Check-Out,2016-03-03,Winter,2016-02-25T08:00Z +Keep,5,2016,March,10,2,0,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient,65,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,3,2016,February,10,29,1,2,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 196, NULL,0,Transient,55,0,0,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,0,2016,March,10,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,1,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,65,1,0,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,2,2016,March,10,2,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,0,2016,February,10,29,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,0,2016,February,10,29,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,10,2016,February,10,29,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,63.6,0,1,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,0,2016,March,10,2,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-03,Spring,2016-03-02T08:00Z +Keep,26,2016,February,10,29,1,2,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53.33,0,1,Check-Out,2016-03-03,Winter,2016-02-29T08:00Z +Keep,1,2016,February,8,18,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-03,Winter,2016-02-18T08:00Z +Keep,26,2016,February,10,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-03-03,Winter,2016-02-28T08:00Z +Keep,2,2016,March,10,1,0,2,2,0,0,BB,FIN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-03-03,Spring,2016-03-01T08:00Z +Keep,7,2016,February,10,29,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,0,2016,March,10,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,6,2016,March,10,2,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,2,0,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,F,F,3,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,0,2016,September,38,11,2,0,2,0,0,BB,ITA,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,145,0,0,Check-Out,2016-09-13,Fall,2016-09-11T07:00Z +Keep,17,2016,March,10,3,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,1,2016,March,10,2,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,1,2017,January,4,24,0,3,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-27,Winter,2017-01-24T08:00Z +Keep,0,2017,February,6,7,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,1,2017,March,11,14,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,D,F,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,0,2016,February,10,29,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,34.4,0,1,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,42,2016,February,8,15,5,13,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 95, NULL,0,Transient,46.44,0,1,Check-Out,2016-03-04,Winter,2016-02-15T08:00Z +Keep,1,2016,March,10,2,0,2,2,1,0,BB,CN,Direct,Direct, 0,0,0,E,F,2,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,0,2016,March,10,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 331,0,Transient,40,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,3,2016,June,26,20,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 331,0,Transient,79,0,0,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,53,2016,February,10,28,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Check-Out,2016-03-04,Winter,2016-02-28T08:00Z +Keep,100,2016,February,9,26,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-03-04,Winter,2016-02-26T08:00Z +Keep,14,2016,March,10,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,100,2016,February,9,26,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 6, NULL,0,Transient,36.4,0,1,Check-Out,2016-03-04,Winter,2016-02-26T08:00Z +Keep,1,2016,February,10,29,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,1,2016,March,10,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,1,2016,November,48,26,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-30,Fall,2016-11-26T08:00Z +Keep,5,2016,March,10,2,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,5,2016,March,10,2,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-03-04,Spring,2016-03-02T08:00Z +Keep,56,2016,February,10,29,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,29,0,1,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,10,2016,February,10,29,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,29,0,0,Check-Out,2016-03-04,Winter,2016-02-29T08:00Z +Keep,0,2016,March,10,4,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2016-03-04,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,4,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2016-03-04,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,4,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 171, NULL,0,Transient,0,0,0,Check-Out,2016-03-04,Spring,2016-03-04T08:00Z +Keep,36,2016,March,10,3,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,1,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,94,2016,March,10,4,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 6, NULL,0,Transient,4,0,2,Check-Out,2016-03-08,Spring,2016-03-04T08:00Z +Keep,94,2016,March,10,4,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,4,0,1,Check-Out,2016-03-08,Spring,2016-03-04T08:00Z +Keep,10,2016,March,10,1,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,31,0,0,Check-Out,2016-03-04,Spring,2016-03-01T08:00Z +Keep,13,2016,March,10,3,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-04,Spring,2016-03-03T08:00Z +Keep,11,2016,March,10,4,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,8,2016,February,9,27,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,65,0,0,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,18,2016,February,9,27,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57,0,1,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,5,2016,February,9,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,1,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,29,2016,February,9,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,1,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,29,2016,February,9,27,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,51.49,0,2,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,3,2016,February,9,23,2,9,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-03-05,Winter,2016-02-23T08:00Z +Keep,88,2016,March,10,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,36,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,11,2016,February,8,20,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,23.93,0,0,Check-Out,2016-03-05,Winter,2016-02-20T08:00Z +Keep,8,2016,March,10,1,0,4,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-05,Spring,2016-03-01T08:00Z +Keep,1,2016,March,10,1,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Check-Out,2016-03-05,Spring,2016-03-01T08:00Z +Keep,24,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,24,2016,March,10,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,18,2016,February,9,27,2,5,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-03-05,Winter,2016-02-27T08:00Z +Keep,0,2016,March,10,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,13,2016,February,10,28,2,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,31.45,0,0,Check-Out,2016-03-05,Winter,2016-02-28T08:00Z +Keep,3,2016,March,10,4,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,40,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,3,2016,March,10,4,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient-Party,40,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,3,2016,March,10,4,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,45,0,0,Check-Out,2016-03-05,Spring,2016-03-04T08:00Z +Keep,32,2016,March,10,1,0,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,45,2016,March,10,1,0,5,2,0,0,HB,DEU,Groups,Direct, 0,0,0,E,G,1,No Deposit , NULL, NULL,0,Transient,106,0,1,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,41,2016,March,10,1,0,5,1,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,34,2016,March,10,2,0,4,1,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-03-06,Spring,2016-03-02T08:00Z +Keep,18,2016,March,10,4,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,26,2016,March,10,1,0,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 314, NULL,0,Transient,60.4,1,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,7,2016,March,10,3,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,45,1,1,Check-Out,2016-03-06,Spring,2016-03-03T08:00Z +Keep,60,2016,March,10,5,0,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,37,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-03-06,Spring,2016-03-03T08:00Z +Keep,1,2016,March,10,4,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,3,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,14,2016,March,10,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,75,0,2,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,61,2016,March,10,1,0,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 95, NULL,0,Transient,63,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,8,2016,March,10,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-06,Spring,2016-03-03T08:00Z +Keep,3,2016,March,10,4,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,69,1,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,5,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,7,2016,March,10,4,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,35,1,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,1,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,4,2016,March,10,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , NULL, NULL,0,Transient,81,1,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,1,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,3,2016,March,10,4,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 135, NULL,0,Transient,35,1,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,10,2016,March,10,5,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,3,2016,March,10,4,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,56,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,46,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,53,2016,February,9,26,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,1,Check-Out,2016-03-06,Winter,2016-02-26T08:00Z +Keep,5,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,3,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,5,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,3,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,38,2016,February,10,28,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,61.06,0,2,Check-Out,2016-03-06,Winter,2016-02-28T08:00Z +Keep,0,2016,March,10,5,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,53,2016,February,9,26,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,1,Check-Out,2016-03-06,Winter,2016-02-26T08:00Z +Keep,23,2016,March,10,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,44,2016,February,10,28,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,42.5,0,0,Check-Out,2016-03-06,Winter,2016-02-28T08:00Z +Keep,4,2016,March,10,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,50,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,2,2016,March,10,5,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,5,2016,March,10,1,0,5,2,0,0,HB,AUT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,4,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,27,2017,May,18,1,1,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,99,0,2,Check-Out,2017-05-04,Spring,2017-05-01T07:00Z +Keep,2,2016,March,10,3,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-03-06,Spring,2016-03-03T08:00Z +Keep,16,2016,March,10,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,5,2016,March,10,1,0,5,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,26,2017,March,11,14,0,5,1,0,0,HB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,14,2016,March,10,5,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,1,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,45,2016,February,10,28,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,55.35,0,2,Check-Out,2016-03-06,Winter,2016-02-28T08:00Z +Keep,17,2016,March,10,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,17,2016,March,10,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,17,2016,March,10,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25,0,1,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,41,2016,March,10,1,0,5,1,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,50,2016,March,10,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,56,0,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,55,2017,June,25,23,2,3,1,0,0,HB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , 250, NULL,0,Transient,163.25,0,1,Check-Out,2017-06-28,Summer,2017-06-23T07:00Z +Keep,2,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,31,2016,March,10,4,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,60,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,8,2016,March,10,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61,1,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,0,2016,March,10,4,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,60,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,41,2016,March,10,1,0,5,1,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,1,2016,March,10,4,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,10,2016,March,10,4,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,10,2016,March,10,4,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,4,2016,February,10,28,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-06,Winter,2016-02-28T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,3,2016,March,10,4,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,56,0,0,Check-Out,2016-03-06,Spring,2016-03-04T08:00Z +Keep,7,2016,February,10,29,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,100,0,0,Check-Out,2016-03-06,Winter,2016-02-29T08:00Z +Keep,164,2016,October,44,29,0,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,H,H,0,No Deposit , 250, NULL,0,Transient,0,0,2,Check-Out,2016-10-29,Fall,2016-10-29T07:00Z +Keep,10,2017,February,9,26,2,4,2,0,0,BB,PRT,Direct,Direct, 1,0,2,F,F,0,No Deposit , 250, NULL,0,Transient,72.83,0,2,Check-Out,2017-03-04,Winter,2017-02-26T08:00Z +Keep,33,2016,March,10,1,0,5,2,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,1,Check-Out,2016-03-06,Spring,2016-03-01T08:00Z +Keep,0,2016,March,10,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,22,2016,March,10,4,1,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,22,2016,March,10,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,22,2016,March,10,4,1,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,22,2016,March,10,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,45,2016,March,10,5,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,25,0,1,Check-Out,2016-03-07,Spring,2016-03-05T08:00Z +Keep,45,2016,March,10,5,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,36,1,1,Check-Out,2016-03-07,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,3,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,70.5,0,0,Check-Out,2016-03-07,Spring,2016-03-03T08:00Z +Keep,23,2016,March,10,4,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,2,2016,March,11,6,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-03-07,Spring,2016-03-06T08:00Z +Keep,3,2016,March,11,7,1,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Group,105,0,1,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,42,2016,March,10,4,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-03-07,Spring,2016-03-04T08:00Z +Keep,0,2016,March,11,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-03-07,Spring,2016-03-06T08:00Z +Keep,3,2016,March,10,5,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-07,Spring,2016-03-05T08:00Z +Keep,45,2016,March,10,1,1,5,2,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-03-07,Spring,2016-03-01T08:00Z +Keep,27,2016,February,9,23,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,63,0,1,Check-Out,2016-03-08,Winter,2016-02-23T08:00Z +Keep,11,2016,March,10,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,36.86,0,3,Check-Out,2016-03-08,Spring,2016-03-01T08:00Z +Keep,1,2016,March,11,7,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,40,0,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,1,2016,March,11,7,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,40,0,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,0,2017,January,3,17,0,1,1,0,0,BB,ESP,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,2,2016,March,11,6,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-03-08,Spring,2016-03-06T08:00Z +Keep,0,2016,March,11,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,17,2016,May,19,2,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, 399,0,Transient-Party,81,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,0,2016,March,11,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,12,2016,March,11,7,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,35,1,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,5,2016,September,40,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 339, NULL,0,Transient,84.8,1,0,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,8,2017,January,3,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 468, NULL,0,Group,46.4,1,0,Check-Out,2017-01-19,Winter,2017-01-17T08:00Z +Keep,10,2017,January,5,30,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,D,0,No Deposit , 6, NULL,0,Transient,37,1,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,7,2017,March,11,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,D,0,No Deposit , 241, NULL,0,Transient,48,1,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,1,2017,May,20,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,A,A,0,No Deposit , 241, NULL,0,Group,61.6,1,1,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,15,2016,March,10,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-08,Spring,2016-03-04T08:00Z +Keep,106,2016,March,10,2,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.4,0,2,Check-Out,2016-03-08,Spring,2016-03-02T08:00Z +Keep,104,2016,March,10,3,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,27.6,0,0,Check-Out,2016-03-08,Spring,2016-03-03T08:00Z +Keep,67,2016,March,11,6,2,0,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-03-08,Spring,2016-03-06T08:00Z +Keep,67,2016,March,11,6,2,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2016-03-08,Spring,2016-03-06T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,40,1,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,41,2016,March,10,1,2,6,2,0,0,HB,ITA,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,1,Check-Out,2016-03-09,Spring,2016-03-01T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,ITA,Direct,Direct, 1,0,1,D,D,2,No Deposit , NULL, NULL,0,Transient-Party,75,0,1,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,ITA,Direct,Direct, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,16,2017,March,12,19,2,2,2,0,0,HB,ITA,Direct,Direct, 1,0,2,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,80,0,1,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,1,2016,March,10,1,2,6,1,0,0,BB,FIN,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,39.5,0,0,Check-Out,2016-03-09,Spring,2016-03-01T08:00Z +Keep,9,2016,March,10,3,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 96, NULL,0,Transient,46.1,0,0,Check-Out,2016-03-09,Spring,2016-03-03T08:00Z +Keep,17,2016,March,11,6,2,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,34.56,0,0,Check-Out,2016-03-09,Spring,2016-03-06T08:00Z +Keep,49,2016,March,10,5,2,2,1,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,34,2016,March,10,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-09,Spring,2016-03-02T08:00Z +Keep,49,2016,March,10,5,2,2,1,0,0,HB,DEU,Groups,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,49,2016,March,10,5,2,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,49,2016,March,10,5,2,2,2,0,0,HB,CHE,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,49,2016,March,10,5,2,2,1,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,66,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,4,2016,March,11,6,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-09,Spring,2016-03-06T08:00Z +Keep,1,2016,March,11,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,9,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,0,2017,March,13,30,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,E,0,No Deposit , NULL, NULL,0,Transient,63,0,1,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,95,2016,March,10,2,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.43,0,1,Check-Out,2016-03-09,Spring,2016-03-02T08:00Z +Keep,3,2016,March,10,4,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-09,Spring,2016-03-04T08:00Z +Keep,126,2016,March,10,2,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62.63,0,1,Check-Out,2016-03-09,Spring,2016-03-02T08:00Z +Keep,25,2016,March,11,6,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-09,Spring,2016-03-06T08:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2017,June,25,22,0,1,2,0,0,BB,PRT,Complementary,Direct, 1,0,1,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,1,2017,February,7,16,0,1,1,0,0,HB,PRT,Complementary,Direct, 1,0,1,G,G,1,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,4,2016,March,11,7,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,31,1,0,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,0,2016,March,11,8,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,34.4,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,8,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,34.4,1,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,7,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 212,0,Transient,55,0,0,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,3,2016,March,10,4,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,35,1,0,Check-Out,2016-03-09,Spring,2016-03-04T08:00Z +Keep,41,2016,March,10,1,2,6,1,0,0,HB,DEU,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2016-03-09,Spring,2016-03-01T08:00Z +Keep,133,2017,March,11,14,0,5,2,0,0,HB,DEU,Direct,Direct, 1,0,1,E,I,0,No Deposit , NULL, NULL,107,Transient-Party,80,0,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,5,2017,March,12,19,2,2,1,0,0,HB,DEU,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,41,2016,March,10,1,2,6,2,0,0,HB,AUT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,2,Check-Out,2016-03-09,Spring,2016-03-01T08:00Z +Keep,6,2016,March,10,3,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,49.5,0,0,Check-Out,2016-03-09,Spring,2016-03-03T08:00Z +Keep,7,2016,March,11,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,46.4,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,43,2016,March,11,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,7,2016,March,10,2,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,39.6,0,0,Check-Out,2016-03-09,Spring,2016-03-02T08:00Z +Keep,31,2016,March,11,7,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,25,0,0,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,0,2016,March,11,8,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,6,2016,March,11,6,2,1,1,0,0,BB,UGA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-09,Spring,2016-03-06T08:00Z +Keep,49,2016,March,10,5,2,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,83,0,0,Check-Out,2016-03-09,Spring,2016-03-05T08:00Z +Keep,0,2016,March,11,7,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,0,2016,March,11,7,1,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,1,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,0,2016,March,11,7,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-03-09,Spring,2016-03-07T08:00Z +Keep,3,2016,March,11,8,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 371,0,Transient-Party,30,0,1,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,10,2016,May,19,3,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 371,0,Transient,42,0,1,Check-Out,2016-05-05,Spring,2016-05-03T07:00Z +Keep,20,2016,February,10,28,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Transient,47,0,1,Check-Out,2016-03-10,Winter,2016-02-28T08:00Z +Keep,1,2016,March,11,8,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 379,0,Transient-Party,40,0,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,1,2016,March,11,8,0,2,1,0,0,BB,BRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 379,0,Transient-Party,40,0,0,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,7,2016,March,11,9,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,15,2016,December,52,20,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,7,2016,March,11,9,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,6,2016,April,16,14,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,8,2016,November,48,22,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,15,2016,December,52,20,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,1,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,2,2017,February,6,9,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,4,A,A,0,No Deposit , NULL, 514,0,Transient,43,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,0,2016,March,11,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,56,1,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,6,2016,March,11,8,0,2,2,0,1,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,31,2016,March,10,4,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-03-10,Spring,2016-03-04T08:00Z +Keep,0,2016,March,11,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 391,0,Transient,33,1,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,1,2016,April,16,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 391,0,Transient,45,1,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,21,2016,March,11,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient,34.4,0,1,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,31,2016,December,50,9,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 6, NULL,0,Group,40,0,1,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,0,2016,March,11,9,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,23,2016,March,11,6,2,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,50,1,2,Check-Out,2016-03-10,Spring,2016-03-06T08:00Z +Keep,43,2016,February,9,25,4,10,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,44.04,1,1,Check-Out,2016-03-10,Winter,2016-02-25T08:00Z +Keep,2,2016,March,11,6,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,31,1,0,Check-Out,2016-03-10,Spring,2016-03-06T08:00Z +Keep,19,2016,March,11,6,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 241, NULL,0,Transient,36.61,0,2,Check-Out,2016-03-10,Spring,2016-03-06T08:00Z +Keep,37,2016,March,11,11,2,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-17,Spring,2016-03-11T08:00Z +Keep,108,2016,March,10,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-11,Spring,2016-03-04T08:00Z +Keep,0,2016,March,11,10,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,16,2016,March,11,9,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,3,2016,March,11,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,2,2016,March,11,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,27,2016,April,16,12,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,60,1,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,2,2016,March,11,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,27,2016,April,16,12,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,36,2016,March,10,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,34.73,0,0,Check-Out,2016-03-11,Spring,2016-03-04T08:00Z +Keep,0,2016,March,11,9,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,0,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 400,0,Transient,58.5,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,109,2016,March,11,7,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,27.5,0,1,Check-Out,2016-03-11,Spring,2016-03-07T08:00Z +Keep,6,2016,March,11,9,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,0,2016,March,11,10,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,1,0,Check-Out,2016-03-11,Spring,2016-03-10T08:00Z +Keep,20,2016,March,11,7,1,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,45.65,0,1,Check-Out,2016-03-11,Spring,2016-03-07T08:00Z +Keep,25,2016,March,11,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,46,2016,March,11,11,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-11,Spring,2016-03-11T08:00Z +Keep,5,2016,March,11,9,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,9,0,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-11,Spring,2016-03-09T08:00Z +Keep,45,2016,March,11,7,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,35.15,0,0,Check-Out,2016-03-12,Spring,2016-03-07T08:00Z +Keep,4,2016,March,10,5,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,0,Check-Out,2016-03-12,Spring,2016-03-05T08:00Z +Keep,15,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,0,2016,March,11,12,0,0,2,0,0,HB,GBR,Groups,TA/TO, 1,0,0,A,D,0,No Deposit , 115, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-12,Spring,2016-03-12T08:00Z +Keep,81,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,9,0,3,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,9,0,3,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,34,2016,March,11,7,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-03-12,Spring,2016-03-07T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,G,0,No Deposit , 115, NULL,0,Transient-Party,93,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,9,0,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,12,2016,March,11,9,0,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,28,2016,March,11,7,1,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-03-12,Spring,2016-03-07T08:00Z +Keep,13,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,0,2016,March,11,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,2,2016,March,11,9,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.33,1,1,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,14,2016,March,11,7,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,45,0,1,Check-Out,2016-03-12,Spring,2016-03-07T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 375, NULL,0,Transient-Party,35,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,CUB,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 375, NULL,0,Transient-Party,29,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,24,2016,March,10,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-12,Spring,2016-03-05T08:00Z +Keep,17,2016,March,11,10,0,2,2,0,0,BB,THA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,71,1,0,Check-Out,2016-03-12,Spring,2016-03-10T08:00Z +Keep,17,2016,March,10,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,35.65,0,1,Check-Out,2016-03-12,Spring,2016-03-05T08:00Z +Keep,62,2016,March,11,7,1,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,45,1,1,Check-Out,2016-03-12,Spring,2016-03-07T08:00Z +Keep,63,2016,March,10,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-12,Spring,2016-03-05T08:00Z +Keep,81,2016,March,11,9,0,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,86.55,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,81,2016,March,11,9,0,3,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,49,0,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 375, NULL,0,Transient,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 375, NULL,0,Transient,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,0,2016,March,11,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-12,Spring,2016-03-10T08:00Z +Keep,44,2016,February,9,27,4,10,2,0,0,BB,NLD,Direct,Direct, 0,0,0,D,F,1,No Deposit , NULL, NULL,0,Transient,68.14,0,0,Check-Out,2016-03-12,Winter,2016-02-27T08:00Z +Keep,46,2016,March,11,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,0,2016,March,11,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-03-12,Spring,2016-03-11T08:00Z +Keep,5,2016,March,11,9,0,3,3,1,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,109,1,0,Check-Out,2016-03-12,Spring,2016-03-09T08:00Z +Keep,13,2016,March,11,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,49.74,0,1,Check-Out,2016-03-13,Spring,2016-03-06T08:00Z +Keep,53,2016,March,11,6,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,54.71,0,1,Check-Out,2016-03-13,Spring,2016-03-06T08:00Z +Keep,13,2016,March,11,6,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Check-Out,2016-03-13,Spring,2016-03-06T08:00Z +Keep,57,2016,March,10,3,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,39,0,0,Check-Out,2016-03-13,Spring,2016-03-03T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,D,0,No Deposit , 8, NULL,0,Transient,14,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,12,0,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,D,1,No Deposit , 8, NULL,0,Transient,40,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,23,2016,March,11,9,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-13,Spring,2016-03-09T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,3,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48.7,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48.7,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48.7,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48.7,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,65.4,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,30,2016,March,11,7,1,5,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,48.7,0,0,Check-Out,2016-03-13,Spring,2016-03-07T08:00Z +Keep,4,2016,March,12,13,2,1,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,1,0,Check-Out,2016-03-16,Spring,2016-03-13T08:00Z +Keep,0,2016,March,12,13,0,0,2,1,0,BB,ITA,Direct,Direct, 1,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-03-13,Spring,2016-03-13T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,23,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,20,2016,March,11,9,0,4,2,0,0,BB,BGR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,38.5,0,0,Check-Out,2016-03-13,Spring,2016-03-09T08:00Z +Keep,23,2016,March,11,12,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,54,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,4,2016,March,11,12,0,1,3,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,46,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,23,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,30,2016,March,11,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,2,2016,March,11,11,0,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient-Party,68,0,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,2,2016,March,11,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,74,1,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,3,2016,March,11,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,50,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,44,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,52,2016,March,11,10,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-03-13,Spring,2016-03-10T08:00Z +Keep,6,2016,March,11,11,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,65,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 6, NULL,0,Transient,37,0,2,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,5,2016,March,11,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,5,2016,March,11,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,44,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,37,2016,March,11,11,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,23,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,23,2016,March,11,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,30,2016,March,11,11,0,2,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,12,0,1,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 177, NULL,0,Transient,10.8,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,30,2016,March,11,11,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,6,No Deposit , 375, NULL,0,Transient-Party,29,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,30,2016,March,11,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,30,2016,March,11,11,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,66,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,0,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,8,2016,March,11,10,0,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,113.5,0,0,Check-Out,2016-03-13,Spring,2016-03-10T08:00Z +Keep,10,2016,March,11,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,187,2016,March,11,6,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,41.09,0,0,Check-Out,2016-03-13,Spring,2016-03-06T08:00Z +Keep,3,2016,March,11,12,0,1,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 177, NULL,0,Transient,45.9,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,22,2016,March,11,8,0,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,83.23,0,1,Check-Out,2016-03-13,Spring,2016-03-08T08:00Z +Keep,2,2016,March,11,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,4,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,2,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,2,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,2,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,1,2016,March,11,11,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 375, NULL,0,Transient-Party,30,0,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,2,2016,March,11,12,0,1,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,83,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,21,2016,March,11,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,1,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,30,2016,March,11,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 375, NULL,0,Transient-Party,25,1,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,0,2016,March,11,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,6,2016,March,11,12,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,37.05,0,2,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,8,2016,March,11,11,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,43,1,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,8,2016,March,11,11,0,2,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,1,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,30,2016,March,11,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 375, NULL,0,Transient-Party,25,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,1,2016,March,11,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,56,1,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,3,2016,March,11,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,55,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,3,2016,March,11,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,50,0,0,Check-Out,2016-03-13,Spring,2016-03-12T08:00Z +Keep,31,2016,March,11,8,0,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,29,0,0,Check-Out,2016-03-13,Spring,2016-03-08T08:00Z +Keep,7,2016,March,11,11,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-03-13,Spring,2016-03-11T08:00Z +Keep,52,2016,March,11,6,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,28.1,0,0,Check-Out,2016-03-14,Spring,2016-03-06T08:00Z +Keep,97,2016,March,10,4,3,7,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,1,Check-Out,2016-03-14,Spring,2016-03-04T08:00Z +Keep,97,2016,March,10,4,3,7,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,1,Check-Out,2016-03-14,Spring,2016-03-04T08:00Z +Keep,20,2016,March,11,9,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,46.4,0,1,Check-Out,2016-03-14,Spring,2016-03-09T08:00Z +Keep,38,2016,March,11,11,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,45,0,0,Check-Out,2016-03-14,Spring,2016-03-11T08:00Z +Keep,30,2016,March,11,7,2,5,2,0,0,SC,ESP,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 38, NULL,0,Transient-Party,33.71,0,0,Check-Out,2016-03-14,Spring,2016-03-07T08:00Z +Keep,0,2016,March,12,13,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-14,Spring,2016-03-13T08:00Z +Keep,45,2016,March,11,10,1,3,1,0,0,SC,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,2,No Deposit , 375, NULL,0,Transient-Party,12.5,0,0,Check-Out,2016-03-14,Spring,2016-03-10T08:00Z +Keep,6,2016,April,17,20,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,1,A,D,0,No Deposit , NULL, 86,0,Transient,59,0,0,Check-Out,2016-04-22,Spring,2016-04-20T07:00Z +Keep,13,2016,June,26,21,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,2,A,A,0,No Deposit , NULL, 86,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,2,2016,October,42,12,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,3,A,D,0,No Deposit , NULL, 86,0,Transient,67.5,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,2,2017,January,4,25,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,4,A,D,0,No Deposit , NULL, 86,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,46,2016,March,12,13,1,0,2,0,0,HB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 376,0,Transient,59,1,0,Check-Out,2016-03-14,Spring,2016-03-13T08:00Z +Keep,4,2016,March,12,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-03-14,Spring,2016-03-13T08:00Z +Keep,26,2016,March,12,14,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 8, NULL,0,Transient,0,0,0,Check-Out,2016-03-14,Spring,2016-03-14T07:00Z +Keep,2,2016,March,12,13,1,0,1,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,25,0,0,Check-Out,2016-03-14,Spring,2016-03-13T08:00Z +Keep,2,2016,March,11,8,1,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,61.33,0,0,Check-Out,2016-03-14,Spring,2016-03-08T08:00Z +Keep,0,2016,March,12,14,0,0,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 196, NULL,0,Transient,0,0,0,Check-Out,2016-03-14,Spring,2016-03-14T07:00Z +Keep,41,2016,February,9,23,6,15,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 363, NULL,0,Transient,79,0,0,Check-Out,2016-03-15,Winter,2016-02-23T08:00Z +Keep,101,2016,March,11,8,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.4,0,0,Check-Out,2016-03-15,Spring,2016-03-08T08:00Z +Keep,27,2016,March,11,8,2,5,2,0,0,BB,POL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-03-15,Spring,2016-03-08T08:00Z +Keep,24,2016,March,11,12,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-15,Spring,2016-03-12T08:00Z +Keep,0,2016,March,12,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,1,2016,March,12,13,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-15,Spring,2016-03-13T08:00Z +Keep,16,2016,March,11,11,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,84.7,0,1,Check-Out,2016-03-15,Spring,2016-03-11T08:00Z +Keep,1,2016,March,12,14,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,10,2016,March,11,11,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,F,2,No Deposit , 240, NULL,0,Transient,67.5,0,1,Check-Out,2016-03-15,Spring,2016-03-11T08:00Z +Keep,12,2016,March,12,14,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 62,0,Transient,30,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,38.4,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,12,2016,March,12,14,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 297,0,Transient,40,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,3,2016,March,11,12,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 8, NULL,0,Transient,8,0,0,Check-Out,2016-03-15,Spring,2016-03-12T08:00Z +Keep,112,2016,March,11,10,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,47,0,1,Check-Out,2016-03-15,Spring,2016-03-10T08:00Z +Keep,114,2016,March,11,10,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,42.5,0,3,Check-Out,2016-03-15,Spring,2016-03-10T08:00Z +Keep,0,2016,March,12,14,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,40,2016,March,11,9,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-15,Spring,2016-03-09T08:00Z +Keep,40,2016,March,11,9,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-15,Spring,2016-03-09T08:00Z +Keep,13,2016,March,12,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,56,2016,March,11,10,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-03-15,Spring,2016-03-10T08:00Z +Keep,0,2016,March,12,14,1,0,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,63,2016,March,11,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,34.73,0,0,Check-Out,2016-03-15,Spring,2016-03-08T08:00Z +Keep,3,2016,March,12,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,5,2016,March,12,14,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Check-Out,2016-03-15,Spring,2016-03-14T07:00Z +Keep,8,2016,March,12,13,2,0,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,80,0,0,Check-Out,2016-03-15,Spring,2016-03-13T08:00Z +Keep,1,2016,March,12,15,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-03-15,Spring,2016-03-15T07:00Z +Keep,1,2016,March,12,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,34,2016,March,11,8,2,5,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,83.33,0,1,Check-Out,2016-03-15,Spring,2016-03-08T08:00Z +Keep,2,2016,March,12,16,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-18,Spring,2016-03-16T07:00Z +Keep,0,2016,March,11,10,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,29,0,0,Check-Out,2016-03-16,Spring,2016-03-10T08:00Z +Keep,0,2016,March,11,10,2,4,1,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-03-16,Spring,2016-03-10T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,4,2016,March,12,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,71,2016,March,12,15,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,58,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,March,12,14,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 392,0,Transient-Party,40,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,5,2016,March,12,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,9,2016,March,11,11,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,83.2,0,0,Check-Out,2016-03-16,Spring,2016-03-11T08:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,1,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,March,12,15,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,1,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,0,2016,March,11,12,2,2,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95.5,0,0,Check-Out,2016-03-16,Spring,2016-03-12T08:00Z +Keep,0,2016,March,12,15,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,2,2016,March,12,13,2,1,2,0,1,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,85,0,1,Check-Out,2016-03-16,Spring,2016-03-13T08:00Z +Keep,14,2016,March,12,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52,1,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,101,2016,March,12,14,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,1,2016,March,12,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 165,0,Transient,30,0,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,12,2016,March,12,14,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,40,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,14,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 392,0,Transient-Party,40,0,0,Check-Out,2016-03-16,Spring,2016-03-14T07:00Z +Cancel,0,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 392,0,Transient-Party,58.5,0,0,Canceled,2016-04-20,Spring,2016-04-20T07:00Z +Keep,39,2016,March,12,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,45,1,1,Check-Out,2016-03-16,Spring,2016-03-15T07:00Z +Keep,20,2016,March,11,10,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,102,0,2,Check-Out,2016-03-16,Spring,2016-03-10T08:00Z +Keep,4,2016,March,12,13,2,1,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-03-16,Spring,2016-03-13T08:00Z +Keep,40,2016,March,12,13,2,1,2,0,1,BB,ALB,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,35.15,0,2,Check-Out,2016-03-16,Spring,2016-03-13T08:00Z +Keep,3,2016,March,12,13,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 8, NULL,0,Transient,57,0,0,Check-Out,2016-03-16,Spring,2016-03-13T08:00Z +Keep,102,2016,March,11,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,40.5,0,0,Check-Out,2016-03-16,Spring,2016-03-09T08:00Z +Keep,102,2016,March,11,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,41.93,0,0,Check-Out,2016-03-16,Spring,2016-03-09T08:00Z +Keep,7,2016,March,12,16,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-03-16,Spring,2016-03-16T07:00Z +Keep,36,2016,March,11,10,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.14,2,2,Check-Out,2016-03-17,Spring,2016-03-10T08:00Z +Keep,23,2016,March,12,13,2,2,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,76.75,0,1,Check-Out,2016-03-17,Spring,2016-03-13T08:00Z +Keep,2,2016,March,12,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,15,2016,March,12,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,3,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Cancel,0,2016,March,12,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 113,0,Transient,30,0,0,Canceled,2016-03-18,Spring,2016-03-18T07:00Z +Keep,11,2016,March,14,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,D,0,No Deposit , NULL, 113,0,Transient,30,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,12,2016,April,16,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,E,0,No Deposit , NULL, 113,0,Transient,42,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,18,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,D,0,No Deposit , NULL, 113,0,Transient,42,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,0,2016,September,40,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,4,A,D,0,No Deposit , NULL, 113,0,Transient,65,0,0,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,12,2016,October,42,10,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,5,A,A,0,No Deposit , NULL, 113,0,Transient,45,0,0,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,7,2017,January,1,5,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,6,A,A,0,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,32,2017,January,5,30,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,1,7,A,D,0,No Deposit , NULL, 113,0,Transient,42,1,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,23,2017,April,17,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,8,A,E,0,No Deposit , NULL, 113,0,Transient,45,0,0,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,29,2016,March,11,10,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.92,0,0,Check-Out,2016-03-17,Spring,2016-03-10T08:00Z +Keep,0,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,0,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,0,2016,March,12,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,April,18,29,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,D,D,0,No Deposit , NULL, 402,0,Transient,72.5,0,0,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 5, NULL,0,Transient,47.4,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,2,2016,December,52,22,0,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,1,No Deposit , 5, NULL,0,Group,47.4,0,0,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,4,2017,April,14,4,0,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,2,A,A,1,No Deposit , 5, NULL,0,Transient,75.6,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,4,2017,May,20,15,1,0,1,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 468, NULL,0,Transient,48.38,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,1,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,56,2016,March,12,16,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,37,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,1,2016,March,12,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,25,2016,March,11,8,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,68.4,1,1,Check-Out,2016-03-17,Spring,2016-03-08T08:00Z +Keep,18,2016,March,12,15,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,56,2016,March,12,17,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-03-17,Spring,2016-03-17T07:00Z +Keep,47,2016,March,10,3,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-17,Spring,2016-03-03T08:00Z +Keep,2,2016,March,12,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,40.5,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,0,2016,March,12,14,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,1,2016,March,12,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient,28.5,1,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,0,2016,March,12,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,0,2017,January,4,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,47,1,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,52,2016,March,12,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,18,2016,March,11,12,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-03-17,Spring,2016-03-12T08:00Z +Keep,1,2016,March,12,14,1,2,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,109,1,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,4,2016,March,12,14,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-17,Spring,2016-03-14T07:00Z +Keep,54,2016,March,12,16,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,1,1,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,8,2016,March,11,12,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,28.5,0,0,Check-Out,2016-03-17,Spring,2016-03-12T08:00Z +Keep,2,2016,March,12,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-17,Spring,2016-03-16T07:00Z +Keep,99,2016,March,11,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,35.15,0,0,Check-Out,2016-03-17,Spring,2016-03-10T08:00Z +Keep,51,2016,March,11,12,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,86,1,0,Check-Out,2016-03-17,Spring,2016-03-12T08:00Z +Keep,115,2016,March,11,12,2,3,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-03-17,Spring,2016-03-12T08:00Z +Keep,36,2016,March,11,10,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-17,Spring,2016-03-10T08:00Z +Keep,6,2016,March,12,15,0,2,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,30,0,0,Check-Out,2016-03-17,Spring,2016-03-15T07:00Z +Keep,10,2016,March,10,4,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,42.36,0,0,Check-Out,2016-03-18,Spring,2016-03-04T08:00Z +Keep,65,2016,March,12,18,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Transient-Party,29,0,1,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,65,2016,March,12,18,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Transient-Party,29,0,1,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,10,2016,March,12,15,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,3,2016,March,12,17,0,1,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,25,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,10,2016,April,16,14,0,1,1,0,0,BB,ESP,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,36,2016,March,11,10,2,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-18,Spring,2016-03-10T08:00Z +Keep,0,2016,March,12,15,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,0,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,10,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,10,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,10,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,6,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,22,2016,November,46,11,0,1,3,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,36,2016,December,51,16,0,1,3,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,13,2017,January,2,12,0,2,2,0,0,BB,PRT,Direct,Corporate, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,6,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,6,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,4,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 31,0,Transient-Party,42,0,1,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,6,2016,October,43,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 31,0,Transient-Party,42,0,1,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,3,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 126, NULL,0,Transient-Party,36,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,11,2016,March,12,18,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,0,0,1,Check-Out,2016-03-18,Spring,2016-03-18T07:00Z +Keep,10,2016,March,12,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,30,0,1,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,26,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,6,2016,March,12,17,0,1,1,0,0,BB,ESP,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 66, NULL,0,Transient-Party,26,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 66, NULL,0,Transient-Party,26,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,3,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 126, NULL,0,Transient-Party,36,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,3,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 126, NULL,0,Transient-Party,36,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,51,2016,March,12,17,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 66, NULL,0,Transient-Party,30,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,14,1,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,14,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,49.5,1,0,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,15,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , NULL, NULL,0,Transient,75,1,0,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,7,2016,March,11,11,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76.86,1,0,Check-Out,2016-03-18,Spring,2016-03-11T08:00Z +Keep,0,2016,March,12,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,46,1,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,61,2016,March,12,14,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,35.15,0,1,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,2,2016,March,12,16,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,37,0,0,Check-Out,2016-03-18,Spring,2016-03-16T07:00Z +Keep,5,2016,April,15,6,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, 61,0,Transient,56,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,0,2016,March,12,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,53,2016,March,11,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,0,Check-Out,2016-03-18,Spring,2016-03-11T08:00Z +Keep,1,2016,March,12,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,0,Check-Out,2016-03-18,Spring,2016-03-15T07:00Z +Keep,14,2016,March,12,14,1,3,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,39,0,0,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,4,2016,March,12,14,1,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-18,Spring,2016-03-14T07:00Z +Keep,106,2016,March,11,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.43,0,0,Check-Out,2016-03-18,Spring,2016-03-11T08:00Z +Keep,0,2016,March,12,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-18,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,16,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-18,Spring,2016-03-16T07:00Z +Keep,50,2016,March,10,4,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,54.25,0,0,Check-Out,2016-03-18,Spring,2016-03-04T08:00Z +Keep,12,2016,March,12,15,0,4,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,34.2,0,0,Check-Out,2016-03-19,Spring,2016-03-15T07:00Z +Keep,4,2016,March,11,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,47,0,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,29,2016,March,12,16,0,3,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-03-19,Spring,2016-03-16T07:00Z +Keep,29,2016,March,12,16,0,3,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-03-19,Spring,2016-03-16T07:00Z +Keep,4,2016,March,11,12,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,D,0,No Deposit , 2, NULL,0,Contract,22,0,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,43,2016,March,11,12,2,5,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Transient,40.83,1,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,46,2016,March,12,13,2,4,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2016-03-19,Spring,2016-03-13T08:00Z +Keep,52,2016,March,12,13,2,4,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,102,0,0,Check-Out,2016-03-19,Spring,2016-03-13T08:00Z +Keep,0,2016,March,12,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,12,2016,March,12,14,1,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,61,1,0,Check-Out,2016-03-19,Spring,2016-03-14T07:00Z +Keep,1,2016,March,12,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,40,0,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,3,2016,March,12,14,1,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-03-19,Spring,2016-03-14T07:00Z +Keep,57,2016,March,11,12,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,8,2016,March,11,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 115, NULL,0,Transient,47.53,0,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,9,2016,March,12,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,1,2016,March,12,18,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,65,0,0,Check-Out,2016-03-19,Spring,2016-03-18T07:00Z +Keep,0,2016,March,12,17,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-03-19,Spring,2016-03-17T07:00Z +Keep,38,2016,March,11,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,49.5,0,0,Check-Out,2016-03-19,Spring,2016-03-12T08:00Z +Keep,5,2016,March,12,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-19,Spring,2016-03-16T07:00Z +Keep,47,2016,March,12,17,0,2,2,2,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-03-19,Spring,2016-03-17T07:00Z +Keep,21,2016,March,12,16,0,4,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-03-20,Spring,2016-03-16T07:00Z +Keep,34,2016,March,12,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 2, NULL,0,Contract,55,0,0,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Keep,154,2016,March,11,12,2,6,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 156, NULL,0,Transient,35.45,0,1,Check-Out,2016-03-20,Spring,2016-03-12T08:00Z +Keep,71,2016,March,12,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.4,0,2,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,71,2016,March,12,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.4,0,2,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,71,2016,March,12,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.4,0,2,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,0,2016,March,12,13,2,5,1,0,0,BB,ITA,Direct,Direct, 0,0,0,A,D,3,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Keep,71,2016,March,12,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,2,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,2,2016,March,12,19,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 330, NULL,0,Transient-Party,65,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,2,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 330, NULL,0,Transient-Party,65,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,2,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 330, NULL,0,Transient-Party,65,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,52,2016,March,12,14,1,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,50.51,1,1,Check-Out,2016-03-20,Spring,2016-03-14T07:00Z +Keep,0,2016,March,12,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,2,2016,March,12,18,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,4,2016,March,12,19,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,49,2016,March,12,15,0,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,38,0,0,Check-Out,2016-03-20,Spring,2016-03-15T07:00Z +Keep,49,2016,March,12,15,0,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,50,0,0,Check-Out,2016-03-20,Spring,2016-03-15T07:00Z +Keep,49,2016,March,12,15,0,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,75.8,1,0,Check-Out,2016-03-20,Spring,2016-03-15T07:00Z +Keep,49,2016,March,12,15,0,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,38,0,0,Check-Out,2016-03-20,Spring,2016-03-15T07:00Z +Keep,1,2016,March,12,17,0,3,2,0,1,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,64.33,1,0,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,14,2016,March,12,18,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,45,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,12,2016,March,12,19,0,1,3,1,0,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,158.5,1,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,0,2016,March,12,17,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient,25,0,0,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,15,2016,March,12,18,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,17,2016,March,12,18,0,2,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,58,0,2,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,26,2016,March,12,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,270,2016,March,12,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,23.7,0,3,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Keep,2,2016,March,12,18,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,14,2016,March,12,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,123,2016,March,12,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,1,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,123,2016,March,12,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,15,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 196, NULL,0,Transient,38,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,38,2016,March,12,17,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,35,1,0,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,35,2016,March,12,18,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,0,2016,March,12,19,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,34,2016,March,12,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,270,2016,March,12,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,32.4,0,0,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Keep,201,2016,March,12,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,23.7,0,1,Check-Out,2016-03-20,Spring,2016-03-13T08:00Z +Keep,18,2016,March,12,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,0,2016,March,12,18,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,2,2016,March,12,19,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,0,2016,November,48,23,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 6, NULL,0,Transient,34,0,1,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,2,2016,March,12,19,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,1,2016,March,12,17,0,3,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,0,2016,March,13,20,1,0,2,0,0,BB,DEU,Direct,Direct, 1,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2016-03-21,Spring,2016-03-20T07:00Z +Keep,16,2016,March,12,18,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,18,2016,March,12,18,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,3,2016,March,12,19,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,10,2016,March,12,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,2,2016,March,12,17,0,3,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,1,Check-Out,2016-03-20,Spring,2016-03-17T07:00Z +Keep,8,2016,March,12,18,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,126,2016,March,12,14,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-20,Spring,2016-03-14T07:00Z +Keep,5,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,14,2016,March,12,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,2,Check-Out,2016-03-20,Spring,2016-03-19T07:00Z +Keep,30,2016,March,12,16,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-20,Spring,2016-03-16T07:00Z +Keep,4,2016,March,12,18,0,2,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,38,0,0,Check-Out,2016-03-20,Spring,2016-03-18T07:00Z +Keep,24,2016,March,12,18,1,2,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 115, NULL,0,Transient,10.8,0,0,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,25,2016,March,13,21,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,52.2,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,25,2016,March,13,21,1,2,2,0,0,BB,IND,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,52.2,0,1,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,11,2016,March,12,16,1,4,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 95, NULL,0,Transient,12,0,0,Check-Out,2016-03-21,Spring,2016-03-16T07:00Z +Keep,28,2016,March,12,17,1,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient,35.24,0,0,Check-Out,2016-03-21,Spring,2016-03-17T07:00Z +Keep,11,2016,March,12,16,1,4,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 95, NULL,0,Transient,12,0,0,Check-Out,2016-03-21,Spring,2016-03-16T07:00Z +Keep,40,2016,March,12,17,1,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,35.24,0,0,Check-Out,2016-03-21,Spring,2016-03-17T07:00Z +Keep,40,2016,March,12,17,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient-Party,26.1,0,1,Check-Out,2016-03-21,Spring,2016-03-17T07:00Z +Keep,12,2016,March,12,15,1,5,1,0,0,FB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,44.87,0,0,Check-Out,2016-03-21,Spring,2016-03-15T07:00Z +Keep,8,2016,March,11,9,3,9,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,51.59,0,1,Check-Out,2016-03-21,Spring,2016-03-09T08:00Z +Keep,69,2016,March,12,14,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,1,Check-Out,2016-03-21,Spring,2016-03-14T07:00Z +Keep,39,2016,March,12,14,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,1,0,Check-Out,2016-03-21,Spring,2016-03-14T07:00Z +Keep,74,2016,March,13,20,1,0,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,37,0,0,Check-Out,2016-03-21,Spring,2016-03-20T07:00Z +Keep,74,2016,March,13,20,1,0,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,37,0,0,Check-Out,2016-03-21,Spring,2016-03-20T07:00Z +Keep,1,2016,March,12,19,1,1,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,103,0,0,Check-Out,2016-03-21,Spring,2016-03-19T07:00Z +Keep,1,2016,March,13,20,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-03-21,Spring,2016-03-20T07:00Z +Keep,7,2016,March,13,20,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-21,Spring,2016-03-20T07:00Z +Keep,72,2016,March,12,18,1,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,87.55,0,1,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,27,2016,March,12,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,48.05,0,1,Check-Out,2016-03-21,Spring,2016-03-17T07:00Z +Keep,22,2017,January,1,4,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,34,0,2,Check-Out,2017-01-08,Winter,2017-01-04T08:00Z +Keep,6,2016,March,12,18,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,36.1,0,0,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,69,2016,March,12,18,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-03-21,Spring,2016-03-18T07:00Z +Keep,6,2016,March,12,17,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 177, NULL,0,Transient,51,0,0,Check-Out,2016-03-21,Spring,2016-03-17T07:00Z +Keep,0,2016,March,13,21,0,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-03-21,Spring,2016-03-21T07:00Z +Keep,76,2016,March,13,21,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-03-21,Spring,2016-03-21T07:00Z +Keep,4,2016,March,12,19,1,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-03-21,Spring,2016-03-19T07:00Z +Keep,119,2016,March,12,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Keep,6,2016,March,12,17,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-22,Spring,2016-03-17T07:00Z +Keep,5,2016,March,12,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,45,0,1,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Keep,22,2016,March,12,19,2,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,50,2016,March,12,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-03-22,Spring,2016-03-17T07:00Z +Keep,50,2016,March,12,17,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-03-22,Spring,2016-03-17T07:00Z +Keep,4,2016,March,12,16,2,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,59.67,0,1,Check-Out,2016-03-22,Spring,2016-03-16T07:00Z +Keep,11,2016,March,11,12,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,27.9,0,0,Check-Out,2016-03-22,Spring,2016-03-12T08:00Z +Keep,101,2016,March,12,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,37,0,0,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Keep,12,2016,March,12,19,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,53.2,0,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,0,2016,March,13,21,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,10,2016,March,12,15,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,60.13,0,0,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Keep,14,2016,March,12,19,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,16,2016,March,13,21,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,8,2016,March,12,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,29,0,0,Check-Out,2016-03-22,Spring,2016-03-15T07:00Z +Keep,16,2016,March,13,21,1,0,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,16,2016,March,13,21,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,2,2016,March,13,21,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,46,2016,March,12,19,2,1,2,2,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,46,0,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,7,2016,March,13,21,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,29,0,1,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,37,2016,March,12,18,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-03-22,Spring,2016-03-18T07:00Z +Keep,20,2016,March,11,9,4,9,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,69.85,0,0,Check-Out,2016-03-22,Spring,2016-03-09T08:00Z +Keep,10,2016,March,13,21,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,15,2016,March,13,21,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,17,2016,March,13,21,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,25,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,14,2016,March,12,18,2,2,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,6,No Deposit , 240, NULL,0,Transient,99,1,1,Check-Out,2016-03-22,Spring,2016-03-18T07:00Z +Keep,11,2016,March,12,19,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,51,1,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,6,2016,March,13,21,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,10,2016,March,12,19,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,71.33,0,1,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,7,2016,March,13,21,1,0,2,0,0,BB,COL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,5,2016,March,13,21,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 336, NULL,0,Transient,29,0,1,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,7,2016,November,48,22,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 6, NULL,0,Transient,0,0,1,Check-Out,2016-11-22,Fall,2016-11-22T08:00Z +Keep,4,2017,February,8,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,D,0,No Deposit , 261, NULL,0,Transient,30,0,1,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,5,2017,June,23,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,D,0,No Deposit , 5, NULL,0,Group,89.6,0,1,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,17,2016,March,12,19,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,0,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,16,2016,March,12,17,2,3,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 115, NULL,0,Transient,63.9,0,0,Check-Out,2016-03-22,Spring,2016-03-17T07:00Z +Keep,5,2016,March,13,20,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,61,1,1,Check-Out,2016-03-22,Spring,2016-03-20T07:00Z +Keep,8,2016,March,12,19,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,71.33,0,0,Check-Out,2016-03-22,Spring,2016-03-19T07:00Z +Keep,27,2016,March,12,18,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37,0,0,Check-Out,2016-03-22,Spring,2016-03-18T07:00Z +Keep,2,2016,March,13,21,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,4,2016,March,13,21,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-03-22,Spring,2016-03-21T07:00Z +Keep,5,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,76,2016,March,11,12,4,6,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-03-22,Spring,2016-03-12T08:00Z +Keep,37,2016,March,12,18,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2016-03-22,Spring,2016-03-18T07:00Z +Keep,8,2016,March,12,17,2,4,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,38,0,0,Check-Out,2016-03-23,Spring,2016-03-17T07:00Z +Keep,56,2016,March,12,16,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.43,0,1,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,36,2016,March,12,16,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 69, NULL,0,Transient-Party,30.6,0,1,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,36,2016,March,12,16,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 69, NULL,0,Transient-Party,30.6,0,1,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,36,2016,March,12,16,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 69, NULL,0,Transient-Party,36.6,1,1,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,0,2016,March,12,16,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,55,0,0,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,22,2016,March,12,16,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,30.6,0,0,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,24,2016,March,12,15,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,34.56,0,0,Check-Out,2016-03-23,Spring,2016-03-15T07:00Z +Keep,18,2016,March,12,18,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-03-23,Spring,2016-03-18T07:00Z +Keep,6,2016,March,13,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 396,0,Transient,40,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,67,2016,March,13,20,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,51,0,0,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,0,2016,March,13,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,1,1,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,1,2016,March,13,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,53,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,1,2016,April,18,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,D,D,0,No Deposit , NULL, 331,0,Transient,72,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,3,2016,June,23,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,F,0,No Deposit , NULL, 331,0,Transient,75,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,2,2016,November,48,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 331,0,Transient,48,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,2,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 331,0,Transient-Party,39,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,1,2016,December,53,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,A,0,No Deposit , 331, NULL,0,Transient,63,0,0,Check-Out,2016-12-29,Winter,2016-12-28T08:00Z +Keep,0,2017,February,7,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , NULL, 331,0,Transient,49.5,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,5,2016,March,13,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 126, NULL,0,Transient,42,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,19,2016,March,13,21,1,1,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,30,0,0,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,18,2016,March,12,19,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,29,0,1,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,28,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,12,2016,March,12,18,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-03-23,Spring,2016-03-18T07:00Z +Keep,65,2016,March,12,13,4,6,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,22.5,0,0,Check-Out,2016-03-23,Spring,2016-03-13T08:00Z +Keep,63,2016,March,13,21,1,1,1,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,A,0,No Deposit , 242, NULL,0,Transient,68.16,0,2,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,15,2016,March,12,19,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,15,2016,March,12,19,2,2,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,44,2016,March,12,18,2,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,123.4,0,2,Check-Out,2016-03-23,Spring,2016-03-18T07:00Z +Keep,0,2016,March,13,21,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,37,2016,March,12,16,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,26.1,0,0,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,9,2016,March,13,20,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,28,2016,March,13,21,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,1,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,28,2016,March,13,21,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,G,2,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,4,2016,March,13,20,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,2,2016,March,13,20,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,1,0,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,12,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,25,2016,March,12,19,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,26,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,7,2016,March,13,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,7,2016,March,13,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,4,2016,March,13,20,2,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,43,1,0,Check-Out,2016-03-23,Spring,2016-03-20T07:00Z +Keep,61,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,61,2016,March,12,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,1,2016,March,13,22,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,60,2016,March,12,19,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,25,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,17,2016,March,13,21,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,63,2016,March,13,21,1,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,84,0,1,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,0,2016,March,13,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.77,0,1,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,8,2016,March,13,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-03-23,Spring,2016-03-22T07:00Z +Keep,14,2016,March,13,21,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,4,2016,March,13,21,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,2,Check-Out,2016-03-23,Spring,2016-03-21T07:00Z +Keep,7,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,60.5,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,7,2016,March,12,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,60.5,0,0,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,17,2016,March,12,19,2,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2016-03-23,Spring,2016-03-19T07:00Z +Keep,72,2016,March,12,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,33.3,0,0,Check-Out,2016-03-23,Spring,2016-03-16T07:00Z +Keep,111,2016,March,12,14,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.2,0,1,Check-Out,2016-03-23,Spring,2016-03-14T07:00Z +Keep,1,2016,March,13,24,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-03-24,Spring,2016-03-24T07:00Z +Keep,17,2016,March,13,20,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37.15,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,39,2016,March,13,20,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,34.56,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,44,2016,March,12,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,72.43,0,1,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Keep,64,2016,March,12,15,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,63,0,0,Check-Out,2016-03-24,Spring,2016-03-15T07:00Z +Keep,12,2016,March,12,19,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,41.4,0,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,19,2016,March,13,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,9,2016,March,13,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,55.4,0,1,Check-Out,2016-03-25,Spring,2016-03-20T07:00Z +Keep,52,2016,March,12,17,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.28,0,1,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Keep,10,2016,March,12,18,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,1,0,Check-Out,2016-03-24,Spring,2016-03-18T07:00Z +Keep,6,2016,March,13,21,1,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,342,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,1,E,G,2,No Deposit , 273, NULL,125,Group,0,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,23,2016,March,13,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,42,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,34,2016,March,12,17,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,52,0,0,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Keep,17,2016,March,13,22,0,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,5,2016,March,13,20,2,2,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,12,2016,March,11,12,4,8,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,82.8,0,0,Check-Out,2016-03-24,Spring,2016-03-12T08:00Z +Keep,20,2016,March,13,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,22,2017,April,14,6,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,E,E,0,No Deposit , 250, NULL,0,Transient,120,0,2,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,20,2016,March,13,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,6,2016,March,13,21,1,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,121,2016,March,13,20,2,2,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,6,2016,March,13,21,1,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,41,2016,March,13,20,2,2,1,2,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 36, NULL,0,Transient,46.4,0,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,50,2016,March,13,24,0,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-03-24,Spring,2016-03-24T07:00Z +Keep,0,2016,March,13,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,13,2016,March,13,24,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2016-03-24,Spring,2016-03-24T07:00Z +Keep,30,2016,March,13,20,2,2,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,29,0,2,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,34,2016,March,13,24,0,3,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,65.45,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,31,2016,March,12,19,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,31,2016,March,12,19,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,81,1,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,3,2016,March,12,19,2,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,149,1,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,35,2016,March,13,23,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,86.33,1,0,Check-Out,2016-03-26,Spring,2016-03-23T07:00Z +Keep,21,2016,March,13,21,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,4,2016,March,13,21,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,5,2016,March,12,19,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95,0,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,5,2016,March,13,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,21,2016,March,13,21,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,23,2016,March,12,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,1,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Keep,0,2016,March,13,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,67,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,55,2016,March,13,20,2,2,4,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,117,1,0,Check-Out,2016-03-24,Spring,2016-03-20T07:00Z +Keep,6,2016,March,13,22,0,2,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,2,No Deposit , NULL, 302,0,Transient,0,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,6,2016,March,13,22,0,2,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,2,No Deposit , NULL, 302,0,Transient,0,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,0,2016,March,13,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,15,2016,March,13,22,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,30,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,30,2016,March,13,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,45,2016,March,13,22,0,2,2,0,0,BB,CIV,Direct,Direct, 0,0,0,D,I,3,No Deposit , 250, NULL,0,Transient,45,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,41,2016,March,13,24,0,2,2,0,0,BB,CIV,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Group,72,0,1,Check-Out,2016-03-26,Spring,2016-03-24T07:00Z +Keep,16,2016,March,13,21,1,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,16,2016,March,12,19,2,3,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,96,1,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,24,2016,March,12,19,2,3,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 177, NULL,0,Transient,68.75,0,1,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,14,2016,March,12,19,2,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,74,0,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,14,2016,March,12,19,2,3,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,58,0,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,20,2016,March,13,22,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,95,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,5,2016,March,13,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,4,2016,March,13,21,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,21,2016,March,13,22,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,57,2016,March,12,15,2,7,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,49.18,1,1,Check-Out,2016-03-24,Spring,2016-03-15T07:00Z +Keep,21,2016,March,13,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,18,2016,March,13,22,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Check-Out,2016-03-24,Spring,2016-03-22T07:00Z +Keep,18,2016,March,13,23,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,36.96,0,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,8,2016,March,13,23,0,1,2,0,1,BB,ESP,Direct,Direct, 0,0,0,A,C,2,No Deposit , 250, NULL,0,Transient,51,0,1,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,24,2016,March,12,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,52.2,0,0,Check-Out,2016-03-24,Spring,2016-03-17T07:00Z +Keep,8,2016,March,13,21,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,12,2016,March,13,23,0,1,2,0,0,BB,SRB,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,20,2016,March,13,21,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,0,2016,February,9,25,8,20,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,6,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2016-03-24,Winter,2016-02-25T08:00Z +Keep,23,2016,March,12,19,2,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,58,0,1,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,13,2016,March,13,21,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,45,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,13,2016,March,13,21,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,46.33,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,42,2016,March,12,19,2,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-03-24,Spring,2016-03-19T07:00Z +Keep,3,2016,March,13,21,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,46,0,0,Check-Out,2016-03-24,Spring,2016-03-21T07:00Z +Keep,0,2016,March,13,24,0,1,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,85,0,0,Check-Out,2016-03-25,Spring,2016-03-24T07:00Z +Keep,1,2016,March,13,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,53,1,1,Check-Out,2016-03-24,Spring,2016-03-23T07:00Z +Keep,10,2016,March,13,21,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,52.25,0,1,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,63,2016,March,13,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.75,1,1,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,48,2016,March,13,21,1,3,2,1,0,HB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,156,0,1,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,38,2016,March,13,21,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,48.14,0,1,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,6,2016,March,13,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.5,1,1,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,17,2016,March,12,19,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.41,1,2,Check-Out,2016-03-25,Spring,2016-03-19T07:00Z +Keep,64,2016,March,13,23,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106.5,1,0,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,0,2016,March,13,23,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,86.5,0,0,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,37,2016,March,13,20,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.4,1,1,Check-Out,2016-03-25,Spring,2016-03-20T07:00Z +Keep,0,2016,March,13,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,111,1,0,Check-Out,2016-03-25,Spring,2016-03-24T07:00Z +Keep,0,2017,March,10,7,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Group,67,1,0,Check-Out,2017-03-10,Spring,2017-03-07T08:00Z +Keep,26,2016,March,13,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,52.23,0,2,Check-Out,2016-03-25,Spring,2016-03-20T07:00Z +Keep,26,2016,March,13,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,52.23,0,1,Check-Out,2016-03-25,Spring,2016-03-20T07:00Z +Keep,61,2016,March,13,20,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,113.3,1,0,Check-Out,2016-03-25,Spring,2016-03-20T07:00Z +Keep,126,2016,March,13,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,35,2016,March,13,21,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,50.13,0,1,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,13,2016,March,13,21,1,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.18,1,0,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,126,2016,March,13,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,52,0,2,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,10,2016,March,13,22,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55.33,0,0,Check-Out,2016-03-25,Spring,2016-03-22T07:00Z +Keep,10,2016,March,13,22,0,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55.33,0,0,Check-Out,2016-03-25,Spring,2016-03-22T07:00Z +Keep,2,2016,March,13,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,96.5,0,0,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,20,2016,March,13,21,1,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,118.25,0,0,Check-Out,2016-03-25,Spring,2016-03-21T07:00Z +Keep,3,2016,March,13,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,185.5,1,2,Check-Out,2016-03-25,Spring,2016-03-23T07:00Z +Keep,0,2016,March,13,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-03-25,Spring,2016-03-24T07:00Z +Keep,0,2016,March,13,24,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,121,1,0,Check-Out,2016-03-25,Spring,2016-03-24T07:00Z +Keep,42,2016,March,13,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,1,No Deposit , 241, NULL,0,Transient,57.75,0,0,Check-Out,2016-03-26,Spring,2016-03-25T07:00Z +Keep,45,2016,February,9,27,8,20,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 363, NULL,0,Transient,79,0,0,Check-Out,2016-03-26,Winter,2016-02-27T08:00Z +Keep,73,2016,March,13,22,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,35,2016,March,13,22,0,4,2,0,0,BB,FIN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,95.5,1,0,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,36,2016,March,13,22,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66.5,0,1,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,128,2016,March,13,23,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,26,0,0,Check-Out,2016-03-26,Spring,2016-03-23T07:00Z +Keep,67,2016,March,12,18,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,94.73,1,1,Check-Out,2016-03-26,Spring,2016-03-18T07:00Z +Keep,121,2016,March,13,24,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.4,0,1,Check-Out,2016-03-26,Spring,2016-03-24T07:00Z +Keep,5,2016,March,13,20,2,4,3,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,102.33,0,0,Check-Out,2016-03-26,Spring,2016-03-20T07:00Z +Keep,36,2016,March,13,22,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104.5,1,1,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,4,2016,March,13,20,2,4,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-03-26,Spring,2016-03-20T07:00Z +Keep,7,2016,March,13,22,0,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,159.5,0,0,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,43,2016,March,13,24,0,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,158,0,1,Check-Out,2016-03-26,Spring,2016-03-24T07:00Z +Keep,69,2016,March,13,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,45.33,0,1,Check-Out,2016-03-26,Spring,2016-03-20T07:00Z +Keep,34,2016,March,13,23,0,3,2,1,0,HB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,138.83,0,0,Check-Out,2016-03-26,Spring,2016-03-23T07:00Z +Keep,65,2016,March,12,19,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,82.15,0,2,Check-Out,2016-03-26,Spring,2016-03-19T07:00Z +Keep,36,2016,March,13,23,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107.33,1,1,Check-Out,2016-03-26,Spring,2016-03-23T07:00Z +Keep,9,2016,March,13,22,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,118.5,0,1,Check-Out,2016-03-26,Spring,2016-03-22T07:00Z +Keep,26,2016,March,12,17,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72.89,0,1,Check-Out,2016-03-26,Spring,2016-03-17T07:00Z +Keep,12,2016,March,13,26,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,167,2016,March,13,20,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55.5,1,0,Check-Out,2016-03-27,Spring,2016-03-20T07:00Z +Keep,3,2016,March,13,24,0,3,1,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 387, NULL,0,Transient-Party,62,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,36,2016,March,13,24,0,3,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,81,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,43,2016,March,13,24,0,3,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,0,No Deposit , 261, NULL,0,Transient,94,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,70,2016,March,13,23,0,4,1,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,79.5,0,0,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,33,2016,March,13,26,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,133,1,1,Check-Out,2016-03-27,Spring,2016-03-26T07:00Z +Keep,136,2016,March,13,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,68,2016,March,13,24,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,120,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,57,2016,March,13,26,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,58,0,0,Check-Out,2016-03-27,Spring,2016-03-26T07:00Z +Keep,62,2016,March,12,18,2,7,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,78,1,0,Check-Out,2016-03-27,Spring,2016-03-18T07:00Z +Keep,125,2016,March,13,20,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,76,1,3,Check-Out,2016-03-27,Spring,2016-03-20T07:00Z +Keep,166,2017,April,15,10,3,10,2,0,0,BB,DEU,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,62.1,0,4,Check-Out,2017-04-23,Spring,2017-04-10T07:00Z +Keep,39,2016,March,13,25,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,123,1,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,53,2016,March,13,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-03-27,Spring,2016-03-26T07:00Z +Keep,2,2016,March,13,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,101.67,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,43,2016,March,13,24,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,123,1,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,9,2016,March,13,25,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,153,1,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,101,2016,March,13,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,53,0,0,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,9,2016,March,13,25,0,2,2,1,0,BB,DEU,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,127,0,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,38,2016,March,13,25,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,72,0,0,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,72,2016,June,25,17,2,4,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,2,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2016-06-23,Summer,2016-06-17T07:00Z +Keep,94,2017,April,15,14,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,2,E,G,0,No Deposit , 250, NULL,0,Transient,103.5,0,0,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,75,2016,March,13,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,33,2016,March,13,25,0,2,3,0,0,FB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,127,0,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,71,2016,March,12,17,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,40.32,0,0,Check-Out,2016-03-27,Spring,2016-03-17T07:00Z +Keep,5,2016,March,13,24,0,3,2,0,0,BB,DOM,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,9,2016,March,13,24,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,133,1,1,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,19,2016,August,35,23,1,5,2,0,0,HB,ESP,Direct,TA/TO, 1,0,1,C,C,3,No Deposit , NULL, NULL,0,Transient,245.2,1,1,Check-Out,2016-08-29,Summer,2016-08-23T07:00Z +Keep,20,2016,September,38,16,1,2,2,0,0,HB,ESP,Direct,Direct, 1,0,2,F,F,0,No Deposit , NULL, NULL,0,Transient,199,1,1,Check-Out,2016-09-19,Fall,2016-09-16T07:00Z +Keep,52,2016,March,13,26,1,1,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,110.5,0,0,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,37,2016,March,13,24,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,110,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,73,2016,March,12,19,2,6,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,96.13,0,0,Check-Out,2016-03-27,Spring,2016-03-19T07:00Z +Keep,50,2016,March,13,24,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,11,2016,March,13,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.75,0,1,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,38,2016,March,13,24,0,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,76.33,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,3,2016,March,13,24,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,111.67,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,3,2016,March,13,24,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,107.67,1,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,40,2016,March,13,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,70.75,0,0,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,40,2016,March,13,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.75,0,0,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,31,2016,March,13,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,98,0,0,Check-Out,2016-03-27,Spring,2016-03-26T07:00Z +Keep,21,2016,March,13,24,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,3,2016,March,13,22,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.2,1,0,Check-Out,2016-03-27,Spring,2016-03-22T07:00Z +Keep,24,2016,March,13,25,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,142,0,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,24,2016,March,13,25,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,150,0,1,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,7,2016,March,13,24,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,110,0,2,Check-Out,2016-03-27,Spring,2016-03-24T07:00Z +Keep,68,2016,March,12,19,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,88.73,1,0,Check-Out,2016-03-27,Spring,2016-03-19T07:00Z +Keep,9,2016,March,13,25,0,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,10,2016,March,14,27,1,0,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,4,2016,March,13,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-03-27,Spring,2016-03-26T07:00Z +Keep,36,2016,March,13,25,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,107,0,2,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,70,2016,March,13,23,0,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,94.5,0,0,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,11,2016,March,13,23,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.75,0,0,Check-Out,2016-03-27,Spring,2016-03-23T07:00Z +Keep,62,2016,March,13,25,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,131,1,0,Check-Out,2016-03-27,Spring,2016-03-25T07:00Z +Keep,76,2016,March,14,27,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,82,2016,March,14,28,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,44,0,0,Check-Out,2016-04-01,Spring,2016-03-28T07:00Z +Keep,79,2016,March,13,25,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80.6,1,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,51,2016,March,13,24,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,1,1,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,4,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,64,2016,March,13,23,1,4,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,50.24,0,2,Check-Out,2016-03-28,Spring,2016-03-23T07:00Z +Keep,289,2016,March,14,27,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.36,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,0,2016,March,14,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,25,2016,March,14,30,0,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-03-30,Spring,2016-03-30T07:00Z +Keep,43,2016,March,13,24,1,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,163.75,0,0,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,72,2016,March,13,25,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,126,0,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,1,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,68,2016,March,13,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,61.8,1,1,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,6,2016,March,13,24,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,58,0,0,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,0,2016,March,13,24,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,60,1,1,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,12,2016,March,13,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,1,0,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,1,2016,March,14,27,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,54,1,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,3,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,0,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,3,2016,March,13,25,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,0,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,27,1,0,1,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,80,1,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,3,2016,March,13,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91.5,0,0,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,40,2016,March,13,23,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,60.21,0,1,Check-Out,2016-03-28,Spring,2016-03-23T07:00Z +Keep,3,2016,March,14,27,1,0,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,40.25,0,1,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,0,2016,March,14,27,1,0,2,0,0,HB,NLD,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,84,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,30,2016,March,13,23,1,4,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,80,1,0,Check-Out,2016-03-28,Spring,2016-03-23T07:00Z +Keep,19,2016,March,14,27,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,3,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,1,2016,March,14,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,30,2016,March,13,26,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,73.5,0,0,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,0,2016,March,14,27,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-28,Spring,2016-03-27T07:00Z +Keep,6,2016,March,14,28,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,37,2016,March,13,24,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,59.07,0,2,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,4,2016,March,13,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.5,1,0,Check-Out,2016-03-28,Spring,2016-03-26T07:00Z +Keep,59,2016,March,13,24,1,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,94.5,0,0,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,28,2016,March,13,21,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,95.14,0,0,Check-Out,2016-03-28,Spring,2016-03-21T07:00Z +Keep,31,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.6,0,2,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,31,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,61.6,1,2,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,37,2016,March,13,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,59.07,0,2,Check-Out,2016-03-28,Spring,2016-03-24T07:00Z +Keep,39,2016,March,13,25,1,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110.33,1,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Keep,8,2016,March,13,25,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82.67,0,1,Check-Out,2016-03-28,Spring,2016-03-25T07:00Z +Cancel,0,2016,March,14,28,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,0,0,0,Canceled,2016-03-28,Spring,2016-03-28T07:00Z +Keep,70,2016,March,13,21,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,39.3,0,1,Check-Out,2016-03-29,Spring,2016-03-21T07:00Z +Keep,0,2016,March,14,28,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,12,2016,March,14,27,2,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,10,2016,March,13,25,2,2,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,110,1,1,Check-Out,2016-03-29,Spring,2016-03-25T07:00Z +Keep,14,2016,March,13,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.5,0,0,Check-Out,2016-03-29,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,28,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,10,2016,March,13,25,2,2,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,110,1,1,Check-Out,2016-03-29,Spring,2016-03-25T07:00Z +Keep,34,2016,March,13,24,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.2,1,0,Check-Out,2016-03-29,Spring,2016-03-24T07:00Z +Keep,20,2016,March,14,27,2,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,16,2016,March,14,27,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,73,2016,March,14,29,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,0,0,2,Check-Out,2016-03-29,Spring,2016-03-29T07:00Z +Keep,43,2016,March,13,26,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.67,1,2,Check-Out,2016-03-29,Spring,2016-03-26T07:00Z +Keep,20,2016,March,13,26,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,D,0,No Deposit , 196, NULL,0,Transient,63.84,0,1,Check-Out,2016-03-29,Spring,2016-03-26T07:00Z +Keep,3,2016,March,13,26,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,123.33,1,0,Check-Out,2016-03-29,Spring,2016-03-26T07:00Z +Keep,0,2016,March,14,28,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,31,2016,March,13,24,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78.2,0,1,Check-Out,2016-03-29,Spring,2016-03-24T07:00Z +Keep,89,2016,March,13,25,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.3,1,1,Check-Out,2016-03-29,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,28,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,30.67,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,13,2016,March,14,27,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57,1,0,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,8,2016,March,14,28,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,61.2,0,0,Check-Out,2016-03-29,Spring,2016-03-28T07:00Z +Keep,13,2016,March,14,27,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57,1,0,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,2,2016,March,14,27,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,43.2,0,1,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,0,2016,March,14,27,2,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2016-03-29,Spring,2016-03-27T07:00Z +Keep,22,2016,March,13,26,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,126,1,0,Check-Out,2016-03-29,Spring,2016-03-26T07:00Z +Keep,42,2016,April,16,15,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,127,1,0,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,10,2016,June,25,18,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,F,E,1,No Deposit , NULL, NULL,0,Transient,152.1,1,3,Check-Out,2016-06-20,Summer,2016-06-18T07:00Z +Keep,87,2016,July,30,22,2,5,2,0,0,HB,PRT,Direct,Direct, 1,0,2,D,D,4,No Deposit , NULL, NULL,0,Transient,170.29,1,4,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,257,2016,December,53,31,2,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,E,E,2,No Deposit , NULL, NULL,0,Transient,177.41,1,4,Check-Out,2017-01-03,Winter,2016-12-31T08:00Z +Keep,74,2016,March,14,29,8,20,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,50.91,0,0,Check-Out,2016-04-26,Spring,2016-03-29T07:00Z +Keep,74,2016,March,13,22,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62.38,0,1,Check-Out,2016-03-30,Spring,2016-03-22T07:00Z +Keep,70,2016,March,13,26,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,45,0,0,Check-Out,2016-03-30,Spring,2016-03-26T07:00Z +Keep,74,2016,March,13,22,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62.38,0,1,Check-Out,2016-03-30,Spring,2016-03-22T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,0,2016,October,42,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,13,2016,March,13,25,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 242, NULL,0,Transient,78.8,0,1,Check-Out,2016-03-30,Spring,2016-03-25T07:00Z +Keep,0,2016,March,14,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,5,2016,March,14,28,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,37,0,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,40,2016,March,14,28,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,0,2016,March,14,30,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,3,2016,March,14,29,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,55.56,0,1,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,4,2016,March,14,27,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-30,Spring,2016-03-27T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,9,2016,March,13,25,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,85.4,0,2,Check-Out,2016-03-30,Spring,2016-03-25T07:00Z +Keep,196,2016,March,13,21,3,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,28.1,0,0,Check-Out,2016-03-30,Spring,2016-03-21T07:00Z +Keep,55,2016,March,14,28,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,53.2,0,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,4,2016,March,14,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,27,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,2,1,Check-Out,2016-03-30,Spring,2016-03-27T07:00Z +Keep,2,2016,March,14,28,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,77,2016,March,13,23,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,83.61,0,1,Check-Out,2016-03-30,Spring,2016-03-23T07:00Z +Keep,7,2016,March,14,29,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,1,2016,March,14,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,23,2016,March,14,29,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,1,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,25,2016,March,14,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,2,2016,March,14,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-30,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,0,2016,March,14,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2016-03-30,Spring,2016-03-29T07:00Z +Keep,5,2016,March,14,28,1,2,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,44.4,1,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,30,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,15,2016,March,14,27,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,66.5,0,0,Check-Out,2016-03-31,Spring,2016-03-27T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 178,0,Transient-Party,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 178,0,Transient-Party,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , 47, NULL,0,Transient,45,1,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 178,0,Transient-Party,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 178,0,Transient-Party,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 178,0,Transient-Party,42,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 178,0,Transient-Party,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,6,2016,March,14,30,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 178,0,Transient,50,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,0,2016,March,14,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 398,0,Transient,43,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,16,2016,March,14,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,3,2016,March,14,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,8,2016,March,14,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,1,2016,March,14,30,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,35,2016,March,14,28,1,2,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,25,0,0,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,77,2016,March,13,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.89,1,1,Check-Out,2016-03-31,Spring,2016-03-24T07:00Z +Keep,27,2016,March,14,29,0,2,2,3,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,105,0,3,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,7,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,0,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,15,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39,0,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,1,2016,March,14,28,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,3,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,A,0,No Deposit , NULL, 355,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,14,2016,March,14,28,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 196, NULL,0,Transient,51.3,0,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,129,2016,March,13,24,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,76.97,0,0,Check-Out,2016-03-31,Spring,2016-03-24T07:00Z +Keep,13,2016,March,14,29,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,30.6,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,13,2016,March,14,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,35.1,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,4,2016,March,14,28,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,13,2016,March,14,27,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,57.2,0,0,Check-Out,2016-03-31,Spring,2016-03-27T07:00Z +Keep,1,2016,March,14,30,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,46,2016,March,14,29,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,5,No Deposit , 250, NULL,0,Transient,76,1,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,39,2016,March,14,27,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,28.5,0,0,Check-Out,2016-03-31,Spring,2016-03-27T07:00Z +Keep,8,2016,March,13,26,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,82.4,0,0,Check-Out,2016-03-31,Spring,2016-03-26T07:00Z +Keep,17,2016,March,14,27,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,93,0,0,Check-Out,2016-03-31,Spring,2016-03-27T07:00Z +Keep,1,2016,March,14,30,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,8,2016,March,14,29,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,29,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,0,2016,March,14,29,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,1,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,126,2016,March,13,22,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.6,0,1,Check-Out,2016-03-31,Spring,2016-03-22T07:00Z +Keep,3,2016,March,14,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,3,2016,March,14,28,1,2,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,78,1,0,Check-Out,2016-03-31,Spring,2016-03-28T07:00Z +Keep,1,2016,March,14,29,0,2,2,0,0,BB,JOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,42,2016,March,13,25,2,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98.67,0,1,Check-Out,2016-03-31,Spring,2016-03-25T07:00Z +Keep,1,2016,March,14,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,48,0,0,Check-Out,2016-03-31,Spring,2016-03-30T07:00Z +Keep,40,2016,March,14,27,2,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 26, NULL,0,Transient,52.25,0,0,Check-Out,2016-03-31,Spring,2016-03-27T07:00Z +Keep,0,2016,March,14,29,0,2,2,0,0,BB,SYR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,0,Check-Out,2016-03-31,Spring,2016-03-29T07:00Z +Keep,31,2016,March,12,18,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-01,Spring,2016-03-18T07:00Z +Keep,67,2016,April,14,1,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,60.92,0,2,Check-Out,2016-04-04,Spring,2016-04-01T07:00Z +Keep,0,2016,March,14,28,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,58.2,1,0,Check-Out,2016-04-01,Spring,2016-03-28T07:00Z +Keep,0,2016,March,14,29,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-04-01,Spring,2016-03-29T07:00Z +Keep,5,2016,April,18,26,0,4,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,3,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,34,2016,March,14,27,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,52.36,0,1,Check-Out,2016-04-01,Spring,2016-03-27T07:00Z +Keep,60,2016,March,14,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-01,Spring,2016-03-28T07:00Z +Keep,30,2016,March,14,30,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,52.65,0,2,Check-Out,2016-04-01,Spring,2016-03-30T07:00Z +Keep,2,2016,March,14,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,51,2016,March,14,31,0,1,2,1,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,73.75,0,1,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,6,2016,March,14,28,1,3,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 196, NULL,0,Transient,97.5,1,0,Check-Out,2016-04-01,Spring,2016-03-28T07:00Z +Keep,61,2016,March,14,27,2,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-01,Spring,2016-03-27T07:00Z +Keep,81,2016,March,14,29,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,59.4,0,1,Check-Out,2016-04-01,Spring,2016-03-29T07:00Z +Keep,96,2016,March,13,24,2,6,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.56,0,2,Check-Out,2016-04-01,Spring,2016-03-24T07:00Z +Keep,41,2016,March,14,28,1,3,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56.5,0,0,Check-Out,2016-04-01,Spring,2016-03-28T07:00Z +Keep,15,2016,March,14,27,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,146.4,0,1,Check-Out,2016-04-01,Spring,2016-03-27T07:00Z +Keep,18,2016,March,14,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-04-01,Spring,2016-03-31T07:00Z +Keep,2,2016,April,14,1,0,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-04-01,Spring,2016-04-01T07:00Z +Keep,69,2016,March,13,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,65.32,0,0,Check-Out,2016-04-01,Spring,2016-03-25T07:00Z +Keep,47,2016,March,13,26,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,58.93,0,0,Check-Out,2016-04-02,Spring,2016-03-26T07:00Z +Keep,101,2016,March,14,29,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50.6,0,1,Check-Out,2016-04-02,Spring,2016-03-29T07:00Z +Keep,129,2016,March,13,25,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.17,0,2,Check-Out,2016-04-02,Spring,2016-03-25T07:00Z +Keep,56,2016,March,14,29,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,1,1,Check-Out,2016-04-02,Spring,2016-03-29T07:00Z +Keep,108,2016,April,14,1,0,1,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,47.4,1,1,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,108,2016,April,14,1,0,1,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,41.4,0,1,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,0,2016,April,14,1,0,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,3,2016,April,14,1,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 225,0,Transient,50,0,0,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,28,2016,March,14,28,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,106.8,1,0,Check-Out,2016-04-02,Spring,2016-03-28T07:00Z +Keep,2,2016,March,14,31,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,131,1,0,Check-Out,2016-04-02,Spring,2016-03-31T07:00Z +Keep,42,2016,March,14,28,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2016-04-02,Spring,2016-03-28T07:00Z +Keep,34,2016,March,14,27,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95.5,0,1,Check-Out,2016-04-02,Spring,2016-03-27T07:00Z +Keep,2,2016,April,14,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,101,1,0,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,2,2016,April,14,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,95,0,0,Check-Out,2016-04-02,Spring,2016-04-01T07:00Z +Keep,32,2016,March,14,30,0,4,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 367, NULL,0,Transient,21,0,1,Check-Out,2016-04-03,Spring,2016-03-30T07:00Z +Keep,76,2016,March,14,27,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,64.83,0,2,Check-Out,2016-04-03,Spring,2016-03-27T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,POL,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,0,3,1,0,0,BB,BRA,Groups,Direct, 0,0,0,A,A,3,Refundable , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,0,2016,April,14,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,G,0,No Deposit , NULL, NULL,0,Transient,91,1,1,Check-Out,2016-04-03,Spring,2016-04-02T07:00Z +Keep,0,2016,April,14,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,G,0,No Deposit , NULL, NULL,0,Transient,85,0,1,Check-Out,2016-04-03,Spring,2016-04-02T07:00Z +Keep,1,2016,April,14,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,68.18,1,0,Check-Out,2016-04-03,Spring,2016-04-02T07:00Z +Keep,1,2016,April,14,2,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,121.5,0,0,Check-Out,2016-04-03,Spring,2016-04-02T07:00Z +Keep,1,2016,April,14,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,101,1,1,Check-Out,2016-04-03,Spring,2016-04-01T07:00Z +Keep,40,2016,March,14,27,2,5,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,50.97,0,0,Check-Out,2016-04-03,Spring,2016-03-27T07:00Z +Keep,32,2016,April,14,1,0,2,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,174,1,0,Check-Out,2016-04-03,Spring,2016-04-01T07:00Z +Keep,40,2016,March,14,29,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56.58,1,2,Check-Out,2016-04-03,Spring,2016-03-29T07:00Z +Keep,169,2016,March,14,31,0,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,80,2016,April,15,3,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-04,Spring,2016-04-03T07:00Z +Keep,24,2016,March,14,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,51.5,0,0,Check-Out,2016-04-03,Spring,2016-03-27T07:00Z +Keep,57,2016,March,14,31,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,57.9,0,0,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,82,2016,March,14,30,0,4,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,104.5,1,0,Check-Out,2016-04-03,Spring,2016-03-30T07:00Z +Keep,77,2016,March,14,31,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.27,0,3,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,77,2016,March,14,31,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.27,0,3,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,77,2016,March,14,31,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.27,0,3,Check-Out,2016-04-03,Spring,2016-03-31T07:00Z +Keep,201,2016,March,14,29,0,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,43.4,0,0,Check-Out,2016-04-03,Spring,2016-03-29T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,2,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,129,2016,March,14,28,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,66.84,1,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,129,2016,March,14,28,2,5,3,0,0,BB,BEL,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,88.84,0,1,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,168,2016,March,14,30,1,4,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,66,2016,March,14,28,2,5,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,73.22,1,1,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,ITA,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,78,2,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,1,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,1,Refundable , NULL, 223,0,Transient-Party,62,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,2,Refundable , NULL, 223,0,Transient-Party,67.5,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,24,2016,March,14,28,2,5,1,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,24,2016,March,14,28,2,5,1,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,24,2016,March,14,28,2,5,1,0,0,HB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-04-04,Spring,2016-03-28T07:00Z +Keep,148,2016,March,14,30,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,51.4,0,1,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,148,2016,March,14,30,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,51.4,0,1,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,28,2016,April,14,1,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,0,Check-Out,2016-04-04,Spring,2016-04-01T07:00Z +Keep,77,2017,March,13,31,1,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,E,F,1,No Deposit , 250, NULL,0,Transient,83.47,1,0,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,85,2016,March,14,31,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,52.25,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,124,2016,March,14,29,1,5,2,2,0,BB,NLD,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,89.67,1,0,Check-Out,2016-04-04,Spring,2016-03-29T07:00Z +Keep,0,2016,April,14,2,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,101,1,0,Check-Out,2016-04-04,Spring,2016-04-02T07:00Z +Keep,68,2016,April,15,3,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,0,Check-Out,2016-04-04,Spring,2016-04-03T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,169,2016,March,14,31,1,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-04-04,Spring,2016-03-31T07:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 1,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,168,2016,March,14,30,1,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient,60,0,0,Check-Out,2016-04-04,Spring,2016-03-30T07:00Z +Keep,0,2016,April,15,3,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-04-04,Spring,2016-04-03T07:00Z +Keep,41,2016,April,15,4,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,2,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-04-04,Spring,2016-04-04T07:00Z +Keep,79,2016,March,14,30,2,4,3,1,0,BB,BEL,Direct,Direct, 0,0,0,H,H,3,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-04-05,Spring,2016-03-30T07:00Z +Keep,64,2016,April,14,2,2,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,57.33,0,0,Check-Out,2016-04-05,Spring,2016-04-02T07:00Z +Keep,0,2016,April,15,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,56,0,1,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,3,2016,April,15,4,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,0,2016,April,14,1,2,2,1,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,82.5,0,1,Check-Out,2016-04-05,Spring,2016-04-01T07:00Z +Keep,1,2016,April,15,5,0,2,1,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,3,2,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,0,Check-Out,2016-04-05,Spring,2016-04-03T07:00Z +Keep,0,2016,April,15,3,2,0,2,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,97.5,0,0,Check-Out,2016-04-05,Spring,2016-04-03T07:00Z +Keep,55,2016,March,14,29,2,5,2,1,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,52.7,0,2,Check-Out,2016-04-05,Spring,2016-03-29T07:00Z +Keep,178,2016,March,14,31,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 156, NULL,0,Transient,33.35,0,0,Check-Out,2016-04-05,Spring,2016-03-31T07:00Z +Keep,39,2016,March,14,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.46,0,1,Check-Out,2016-04-05,Spring,2016-03-29T07:00Z +Keep,0,2016,April,15,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,4,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,71,2016,March,14,31,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 241, NULL,0,Transient,46.96,1,0,Check-Out,2016-04-05,Spring,2016-03-31T07:00Z +Keep,1,2016,April,15,4,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,83,1,0,Check-Out,2016-04-05,Spring,2016-04-04T07:00Z +Keep,28,2016,April,15,5,0,0,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 115, NULL,0,Transient,0,0,1,Check-Out,2016-04-05,Spring,2016-04-05T07:00Z +Keep,28,2016,April,15,5,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 115, NULL,0,Transient,0,0,0,Check-Out,2016-04-05,Spring,2016-04-05T07:00Z +Keep,8,2016,April,15,6,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-11,Spring,2016-04-06T07:00Z +Keep,43,2016,March,13,23,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,55.64,0,0,Check-Out,2016-04-06,Spring,2016-03-23T07:00Z +Keep,25,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,25,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,25,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,19,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,4,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,19,2016,April,15,4,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,13,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,25,2016,April,15,4,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,Non Refund , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,79,2016,April,14,2,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-06,Spring,2016-04-02T07:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,2,2016,April,15,4,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,0,1,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,1,2016,April,15,6,0,2,2,0,0,BB,USA,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,1,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,168,2016,March,14,30,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient,66,0,0,Check-Out,2016-04-06,Spring,2016-03-30T07:00Z +Keep,1,2016,April,15,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,3,2016,April,15,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,53,1,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,1,2016,April,15,4,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,61,2016,April,15,4,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,27,2016,April,15,5,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,81,0,1,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,27,2016,April,15,5,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,87,1,1,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,4,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,4,1,1,2,0,0,BB,EST,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,101,1,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,20,2016,April,15,4,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,89,0,0,Check-Out,2016-04-06,Spring,2016-04-04T07:00Z +Keep,1,2016,April,15,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 330, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,43,2016,April,15,3,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,95.53,0,0,Check-Out,2016-04-06,Spring,2016-04-03T07:00Z +Keep,1,2016,April,15,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 330, NULL,0,Transient,67.5,1,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,1,2017,February,5,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 330, NULL,0,Group,37,1,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,1,2016,April,15,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 330, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-06,Spring,2016-04-05T07:00Z +Keep,109,2016,April,14,2,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.84,0,2,Check-Out,2016-04-07,Spring,2016-04-02T07:00Z +Keep,109,2016,April,14,2,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.84,0,2,Check-Out,2016-04-07,Spring,2016-04-02T07:00Z +Keep,22,2016,April,15,3,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,75.75,0,0,Check-Out,2016-04-07,Spring,2016-04-03T07:00Z +Keep,33,2016,April,14,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,69.92,0,1,Check-Out,2016-04-07,Spring,2016-04-02T07:00Z +Keep,22,2016,April,15,3,2,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,75.75,0,0,Check-Out,2016-04-07,Spring,2016-04-03T07:00Z +Keep,7,2016,April,15,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,40.32,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,5,2016,April,15,5,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,1,2016,April,15,6,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,21,2016,April,15,6,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,6,2016,April,15,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,1,2016,April,15,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,75,2016,April,14,2,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.91,0,1,Check-Out,2016-04-07,Spring,2016-04-02T07:00Z +Keep,27,2016,April,15,5,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-04-07,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,6,0,1,2,2,0,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,0,2016,April,15,4,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,101,1,0,Check-Out,2016-04-07,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,6,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,1,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,0,2016,April,15,6,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-07,Spring,2016-04-06T07:00Z +Keep,0,2016,April,15,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,81,2016,April,15,3,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,0,2016,April,15,6,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,44.8,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2016,April,15,6,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,80,1,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,0,2016,April,15,7,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,60,2016,April,15,3,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,60,2016,April,15,3,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,0,2016,April,15,3,2,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,0,0,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,8,2016,April,15,3,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,131,1,0,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,72,2016,April,15,3,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient,104,0,0,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,72,2016,April,14,1,2,5,4,1,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,134.06,0,0,Check-Out,2016-04-08,Spring,2016-04-01T07:00Z +Keep,88,2016,April,15,3,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54.5,0,1,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,88,2016,April,15,3,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.5,0,1,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,76,2016,April,15,3,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,83.3,0,1,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,90,2016,April,15,5,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.2,0,1,Check-Out,2016-04-08,Spring,2016-04-05T07:00Z +Keep,31,2016,April,14,2,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,71.56,0,1,Check-Out,2016-04-08,Spring,2016-04-02T07:00Z +Keep,25,2016,April,15,6,0,2,3,1,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,126.5,0,0,Check-Out,2016-04-08,Spring,2016-04-06T07:00Z +Keep,48,2016,April,15,4,1,3,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 26, NULL,0,Transient,79.05,0,0,Check-Out,2016-04-08,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,7,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,1,2016,April,15,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-08,Spring,2016-04-07T07:00Z +Keep,0,2016,April,15,5,0,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-08,Spring,2016-04-05T07:00Z +Keep,2,2016,April,15,3,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,0,2,Check-Out,2016-04-08,Spring,2016-04-03T07:00Z +Keep,77,2016,March,14,30,2,8,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,63.4,0,1,Check-Out,2016-04-09,Spring,2016-03-30T07:00Z +Keep,74,2016,April,15,4,1,4,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,98,0,2,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,48,2016,April,15,4,1,4,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,89.25,0,0,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient-Party,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,15,2016,April,15,5,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,101.75,1,1,Check-Out,2016-04-09,Spring,2016-04-05T07:00Z +Keep,3,2016,April,15,8,0,1,1,0,0,BB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,45,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient-Party,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient-Party,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient-Party,60,1,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient-Party,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient-Party,51,1,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,2,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 146, NULL,0,Transient-Party,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,3,2016,April,15,8,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient,54,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,1,2016,April,15,6,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,54.86,0,0,Check-Out,2016-04-09,Spring,2016-04-06T07:00Z +Keep,7,2016,April,15,5,0,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 53,0,Transient,42,0,0,Check-Out,2016-04-09,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,7,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-04-09,Spring,2016-04-07T07:00Z +Keep,32,2016,April,14,2,2,5,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Keep,18,2016,April,14,2,2,5,3,0,0,BB,FRA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,156.43,1,0,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Keep,2,2016,April,15,3,2,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,86.67,0,1,Check-Out,2016-04-09,Spring,2016-04-03T07:00Z +Keep,1,2016,April,15,8,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,17,2016,April,15,7,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,53.1,0,0,Check-Out,2016-04-09,Spring,2016-04-07T07:00Z +Keep,4,2016,April,15,8,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,1,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,25,2016,April,15,4,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,82.74,0,0,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,180,2016,November,46,7,1,4,2,0,0,FB,PRT,Offline travel agent / tour operator,Direct, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,72,0,0,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,27,2016,April,15,6,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72.67,0,1,Check-Out,2016-04-09,Spring,2016-04-06T07:00Z +Keep,1,2016,April,15,4,1,4,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,0,0,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,17,2016,April,15,7,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,53.1,0,0,Check-Out,2016-04-09,Spring,2016-04-07T07:00Z +Keep,23,2016,April,15,6,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,41.6,0,0,Check-Out,2016-04-09,Spring,2016-04-06T07:00Z +Keep,45,2016,April,15,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,65,0,2,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,45,2016,April,15,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,65,0,2,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,25,2016,April,15,4,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.6,0,1,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,11,2016,April,15,4,1,4,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,51.75,0,1,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,8,2016,April,15,7,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2016-04-09,Spring,2016-04-07T07:00Z +Keep,6,2016,April,15,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-09,Spring,2016-04-05T07:00Z +Keep,3,2016,April,15,8,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,24,2016,April,15,4,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105.6,0,2,Check-Out,2016-04-09,Spring,2016-04-04T07:00Z +Keep,0,2016,April,15,8,0,1,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-09,Spring,2016-04-08T07:00Z +Keep,71,2016,April,14,2,2,5,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,89.25,0,0,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Keep,32,2016,April,14,2,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-09,Spring,2016-04-02T07:00Z +Keep,2,2016,April,15,7,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 6,0,Transient,39,0,0,Check-Out,2016-04-09,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,80,2016,April,15,7,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 67, NULL,0,Transient-Party,68,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,31,2016,April,15,7,0,3,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 67, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,31,2016,April,14,2,2,6,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,71.11,0,0,Check-Out,2016-04-10,Spring,2016-04-02T07:00Z +Keep,76,2016,April,15,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,59.93,0,1,Check-Out,2016-04-10,Spring,2016-04-03T07:00Z +Keep,22,2016,April,15,7,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.15,0,1,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,9,2016,April,15,6,0,4,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,78.66,0,0,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,31,2016,April,15,7,0,3,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 67, NULL,0,Transient-Party,92,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,31,2016,April,15,7,0,3,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 67, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,31,2016,April,15,7,0,3,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 67, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,44,2016,April,15,6,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,83,0,2,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,44,2016,April,15,6,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,83,0,1,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,44,2016,April,15,6,0,4,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,8,2016,April,15,8,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-04-10,Spring,2016-04-08T07:00Z +Keep,16,2016,April,15,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-10,Spring,2016-04-08T07:00Z +Keep,10,2016,April,15,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,1,0,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,5,2016,April,15,9,0,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,39,2016,April,15,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,3,2016,April,15,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,14,2016,April,15,7,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,47.4,1,1,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,3,2016,April,15,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,3,2016,April,15,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,3,2016,April,15,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,10,2016,April,15,7,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,71,1,1,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,10,2016,April,15,7,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,1,2016,April,15,9,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,1,2016,April,15,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,2,Check-Out,2016-04-10,Spring,2016-04-09T07:00Z +Keep,24,2016,April,15,6,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,59.18,1,0,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,49,2016,April,14,1,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,71,0,1,Check-Out,2016-04-10,Spring,2016-04-01T07:00Z +Keep,50,2016,April,14,2,2,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,77,1,1,Check-Out,2016-04-10,Spring,2016-04-02T07:00Z +Keep,15,2016,April,15,7,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-04-10,Spring,2016-04-07T07:00Z +Keep,35,2016,April,15,8,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,54,0,0,Check-Out,2016-04-10,Spring,2016-04-08T07:00Z +Keep,26,2016,April,15,8,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,93,0,1,Check-Out,2016-04-10,Spring,2016-04-08T07:00Z +Keep,143,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Group,150,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,27,2016,April,15,6,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-04-10,Spring,2016-04-06T07:00Z +Keep,14,2016,April,16,10,2,2,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-14,Spring,2016-04-10T07:00Z +Keep,13,2016,April,15,3,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2016-04-10,Spring,2016-04-03T07:00Z +Keep,52,2016,April,15,4,1,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,71,0,1,Check-Out,2016-04-10,Spring,2016-04-04T07:00Z +Keep,0,2016,April,16,10,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-04-10,Spring,2016-04-10T07:00Z +Keep,27,2016,April,16,11,1,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,72,0,1,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Keep,9,2016,April,15,4,2,5,2,2,0,HB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,170,0,1,Check-Out,2016-04-11,Spring,2016-04-04T07:00Z +Keep,32,2016,April,15,8,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 95, NULL,0,Transient,57.4,0,2,Check-Out,2016-04-11,Spring,2016-04-08T07:00Z +Keep,24,2016,April,15,6,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.6,0,0,Check-Out,2016-04-11,Spring,2016-04-06T07:00Z +Keep,49,2016,April,15,8,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,46.66,0,1,Check-Out,2016-04-11,Spring,2016-04-08T07:00Z +Keep,33,2016,April,16,10,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 263,0,Transient-Party,42,0,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Keep,33,2016,April,16,10,1,0,1,0,0,BB,ESP,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 263,0,Transient-Party,42,0,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Keep,81,2016,April,15,5,1,5,2,0,0,BB,FIN,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,83.3,0,1,Check-Out,2016-04-11,Spring,2016-04-05T07:00Z +Keep,80,2016,April,15,7,1,3,2,0,0,SC,ESP,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 67, NULL,0,Transient-Party,51,0,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,10,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,101,1,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Keep,36,2016,March,14,31,3,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 240, NULL,0,Transient,101.27,1,1,Check-Out,2016-04-11,Spring,2016-03-31T07:00Z +Keep,3,2016,April,16,11,1,0,2,0,0,BB,FRA,Direct,TA/TO, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,103,1,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,21,2016,April,15,7,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,35.1,0,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,19,2016,April,15,8,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,73,1,1,Check-Out,2016-04-11,Spring,2016-04-08T07:00Z +Keep,52,2016,April,15,7,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.7,0,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,19,2016,April,15,7,1,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,101,1,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,65,2016,April,15,8,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,61.4,0,0,Check-Out,2016-04-11,Spring,2016-04-08T07:00Z +Keep,1,2016,April,15,8,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,60,0,0,Check-Out,2016-04-11,Spring,2016-04-08T07:00Z +Keep,33,2016,April,16,11,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,I,0,No Deposit , 171, NULL,0,Transient,0,0,0,Check-Out,2016-04-11,Spring,2016-04-11T07:00Z +Keep,55,2016,April,15,7,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,9,2016,April,15,9,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,135.5,1,0,Check-Out,2016-04-11,Spring,2016-04-09T07:00Z +Keep,0,2016,April,16,10,1,0,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Keep,0,2016,April,15,7,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-04-11,Spring,2016-04-07T07:00Z +Keep,13,2016,April,15,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-11,Spring,2016-04-04T07:00Z +Keep,0,2016,April,16,10,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103,1,0,Check-Out,2016-04-11,Spring,2016-04-10T07:00Z +Keep,21,2016,April,16,11,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 95, NULL,0,Transient,0,0,0,Check-Out,2016-04-11,Spring,2016-04-11T07:00Z +Cancel,73,2016,April,16,12,0,0,1,0,0,BB,BEL,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 370,0,Transient-Party,0,0,0,Canceled,2016-04-12,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,12,0,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,77,2016,April,16,12,2,7,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,0,0,Check-Out,2016-04-21,Spring,2016-04-12T07:00Z +Keep,26,2016,April,15,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,0,0,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Keep,155,2016,April,15,6,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.2,0,1,Check-Out,2016-04-12,Spring,2016-04-06T07:00Z +Keep,5,2016,April,15,7,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117,0,0,Check-Out,2016-04-12,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,11,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,59.4,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,18,2016,April,16,11,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,18,2016,April,16,11,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,3,2016,April,16,11,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,3,2016,April,16,11,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,26,2016,April,16,11,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,45,2016,April,15,8,2,2,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,69,1,1,Check-Out,2016-04-12,Spring,2016-04-08T07:00Z +Keep,14,2016,April,15,5,2,5,2,0,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 95, NULL,0,Transient,43.11,0,0,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Keep,31,2016,April,15,8,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,53.1,0,0,Check-Out,2016-04-12,Spring,2016-04-08T07:00Z +Keep,0,2016,April,15,8,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2016-04-12,Spring,2016-04-08T07:00Z +Keep,31,2016,April,15,8,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 91, NULL,0,Transient-Party,55.1,0,1,Check-Out,2016-04-12,Spring,2016-04-08T07:00Z +Keep,29,2016,April,15,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,51.59,0,0,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Keep,0,2016,April,15,9,2,1,2,0,0,HB,ARG,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,107,1,0,Check-Out,2016-04-12,Spring,2016-04-09T07:00Z +Keep,18,2016,April,16,10,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-12,Spring,2016-04-10T07:00Z +Keep,0,2016,April,16,11,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,59.4,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,31,2016,April,15,8,2,2,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 91, NULL,0,Transient-Party,73.69,0,0,Check-Out,2016-04-12,Spring,2016-04-08T07:00Z +Keep,28,2016,April,16,11,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-12,Spring,2016-04-11T07:00Z +Keep,13,2016,April,15,6,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,42,1,0,Check-Out,2016-04-12,Spring,2016-04-06T07:00Z +Keep,57,2016,April,15,5,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,43.47,0,0,Check-Out,2016-04-12,Spring,2016-04-05T07:00Z +Keep,83,2016,April,15,6,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-13,Spring,2016-04-06T07:00Z +Keep,0,2016,April,16,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,2,2016,April,16,11,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-13,Spring,2016-04-11T07:00Z +Keep,1,2016,April,15,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-13,Spring,2016-04-06T07:00Z +Keep,0,2017,February,5,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 196, NULL,0,Transient,43,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,62,2016,April,15,5,2,6,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2016-04-13,Spring,2016-04-05T07:00Z +Keep,62,2016,April,15,5,2,6,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,F,0,No Deposit , 240, NULL,0,Transient,113,0,3,Check-Out,2016-04-13,Spring,2016-04-05T07:00Z +Keep,89,2016,April,16,12,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,89,2016,April,16,12,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,11,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,52,0,0,Check-Out,2016-04-13,Spring,2016-04-11T07:00Z +Keep,38,2016,April,15,9,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 26, NULL,0,Transient,39.33,0,0,Check-Out,2016-04-13,Spring,2016-04-09T07:00Z +Keep,3,2016,April,16,11,1,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2016-04-13,Spring,2016-04-11T07:00Z +Keep,57,2016,April,15,7,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,39.1,0,0,Check-Out,2016-04-13,Spring,2016-04-07T07:00Z +Keep,12,2016,April,15,9,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 26, NULL,0,Transient,61.56,0,0,Check-Out,2016-04-13,Spring,2016-04-09T07:00Z +Keep,49,2016,April,15,6,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,63,0,0,Check-Out,2016-04-13,Spring,2016-04-06T07:00Z +Keep,26,2016,April,15,9,2,2,3,1,0,BB,USA,Direct,Direct, 0,0,0,H,H,3,No Deposit , 250, NULL,0,Transient,146.38,1,1,Check-Out,2016-04-13,Spring,2016-04-09T07:00Z +Keep,25,2016,April,16,12,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,12,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,59.4,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,12,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-13,Spring,2016-04-12T07:00Z +Keep,36,2016,April,15,7,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 241, NULL,0,Transient,81.51,0,2,Check-Out,2016-04-14,Spring,2016-04-07T07:00Z +Keep,4,2016,April,16,12,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,91,0,0,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,18,2017,January,4,23,1,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-25,Winter,2017-01-23T08:00Z +Keep,5,2016,April,16,13,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,3,2016,April,15,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 40, NULL,0,Contract,71.73,0,1,Check-Out,2016-04-14,Spring,2016-04-07T07:00Z +Keep,18,2016,April,15,9,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,33.3,0,0,Check-Out,2016-04-14,Spring,2016-04-09T07:00Z +Keep,99,2016,April,16,13,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,27,2016,April,16,12,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,27,2016,April,16,12,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 144,0,Transient-Party,48,1,0,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,73,2016,April,15,7,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-04-14,Spring,2016-04-07T07:00Z +Keep,42,2016,April,15,5,2,7,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 75, NULL,0,Transient,64.78,0,0,Check-Out,2016-04-14,Spring,2016-04-05T07:00Z +Keep,0,2016,April,16,14,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,1,1,Check-Out,2016-04-14,Spring,2016-04-14T07:00Z +Keep,22,2016,April,15,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,73.25,0,0,Check-Out,2016-04-14,Spring,2016-04-07T07:00Z +Keep,6,2016,April,16,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,14,2016,May,20,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,27,2016,May,22,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,E,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,7,2016,June,23,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 154,0,Transient,70,1,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,35,2016,June,27,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-30,Summer,2016-06-29T07:00Z +Keep,30,2016,July,28,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,F,0,No Deposit , NULL, 154,0,Transient,66,0,0,Check-Out,2016-07-07,Summer,2016-07-06T07:00Z +Keep,50,2016,July,31,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , NULL, 154,0,Transient,115,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,65,2016,August,33,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,B,0,No Deposit , NULL, 154,0,Transient,115,0,0,Check-Out,2016-08-11,Summer,2016-08-10T07:00Z +Keep,86,2016,August,36,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,C,0,No Deposit , NULL, 154,0,Transient,66,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,100,2016,September,38,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,1,No Deposit , NULL, 154,0,Transient,66,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,114,2016,September,40,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,29,2016,October,43,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,11,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,7,2016,November,45,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,12,A,A,1,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-03,Fall,2016-11-02T07:00Z +Keep,27,2016,November,48,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,13,A,D,1,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-24,Fall,2016-11-22T08:00Z +Keep,2,2016,December,50,7,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,14,A,D,0,No Deposit , NULL, 154,0,Transient,0,0,0,Check-Out,2016-12-07,Winter,2016-12-07T08:00Z +Keep,5,2017,March,9,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,15,A,E,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-03-03,Spring,2017-03-01T08:00Z +Keep,17,2017,March,11,13,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,16,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,32,2017,March,13,28,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,17,A,A,1,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-28T07:00Z +Keep,10,2017,April,16,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,18,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,4,2016,April,15,9,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,0,1,Check-Out,2016-04-14,Spring,2016-04-09T07:00Z +Keep,61,2016,April,15,9,2,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 314, NULL,0,Transient,62.64,0,0,Check-Out,2016-04-14,Spring,2016-04-09T07:00Z +Keep,14,2016,April,16,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.15,0,1,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Keep,17,2016,April,16,12,0,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,0,1,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,0,2016,April,16,14,0,1,2,0,0,BB,FRA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,27,2016,April,16,10,2,2,3,1,0,BB,USA,Direct,Direct, 0,0,0,G,H,3,No Deposit , 250, NULL,0,Transient,136,1,0,Check-Out,2016-04-14,Spring,2016-04-10T07:00Z +Keep,178,2016,April,15,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.76,0,0,Check-Out,2016-04-14,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,12,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 331,0,Transient,59,0,0,Check-Out,2016-04-14,Spring,2016-04-12T07:00Z +Keep,1,2016,April,16,14,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 331,0,Transient,67.5,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,2,2016,April,16,11,1,2,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Keep,2,2016,April,16,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 144,0,Transient-Party,42,0,0,Check-Out,2016-04-14,Spring,2016-04-13T07:00Z +Keep,83,2016,April,16,11,1,2,1,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 370,0,Transient-Party,0,0,0,Check-Out,2016-04-14,Spring,2016-04-11T07:00Z +Keep,2,2016,April,16,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 169,0,Transient,45,1,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,88,2016,April,15,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,42.83,0,0,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,0,2016,April,16,13,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,101,1,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,0,2016,April,16,13,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,0,2016,April,16,13,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,95,2016,April,15,9,2,4,2,0,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 242, NULL,0,Transient,52.2,0,2,Check-Out,2016-04-15,Spring,2016-04-09T07:00Z +Keep,95,2016,April,15,9,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-15,Spring,2016-04-09T07:00Z +Keep,30,2016,April,16,13,0,2,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,34,2016,April,16,11,1,3,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,81.16,0,0,Check-Out,2016-04-15,Spring,2016-04-11T07:00Z +Keep,194,2016,April,15,6,2,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,46,0,0,Check-Out,2016-04-15,Spring,2016-04-06T07:00Z +Keep,167,2017,April,15,11,2,7,2,0,0,BB,GBR,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80.8,0,2,Check-Out,2017-04-20,Spring,2017-04-11T07:00Z +Keep,6,2016,April,15,7,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,75,0,0,Check-Out,2016-04-15,Spring,2016-04-07T07:00Z +Keep,6,2016,April,15,7,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,65,0,0,Check-Out,2016-04-15,Spring,2016-04-07T07:00Z +Keep,0,2016,April,16,13,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, 62,0,Group,62.75,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,27,2016,April,16,10,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,60.3,0,0,Check-Out,2016-04-15,Spring,2016-04-10T07:00Z +Keep,75,2016,April,16,13,0,2,1,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,2,2016,April,16,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 12,0,Transient,42,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,2,2016,April,16,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 12,0,Transient,42,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,0,2017,February,8,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 12,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,6,2016,April,16,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,8,2016,November,48,22,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,2,2017,February,6,9,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, 514,0,Transient,43,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,0,2016,April,16,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , 154, NULL,0,Transient,37,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,64,2016,April,15,8,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,41.76,0,0,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,65,2016,April,15,8,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,43,2016,April,16,12,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.21,0,1,Check-Out,2016-04-15,Spring,2016-04-12T07:00Z +Keep,57,2016,April,16,13,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,104,2016,April,15,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 156, NULL,0,Transient,41.4,0,1,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,43,2016,April,16,12,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.21,0,1,Check-Out,2016-04-15,Spring,2016-04-12T07:00Z +Keep,57,2016,April,16,13,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,8,2016,April,16,14,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,96.25,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,11,2016,April,16,11,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-04-15,Spring,2016-04-11T07:00Z +Keep,27,2016,April,15,8,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,64.8,0,0,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,2,2016,April,16,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 12,0,Transient,42,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,1,2016,April,17,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 12,0,Transient,42,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,2,2016,November,47,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 12,0,Transient,30,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,1,2016,December,52,22,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,2,No Deposit , NULL, 12,0,Transient,30,0,0,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,0,2017,February,8,20,1,4,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,2,No Deposit , NULL, 12,0,Transient,35,0,0,Check-Out,2017-02-25,Winter,2017-02-20T08:00Z +Keep,3,2016,April,16,14,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,116,1,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,3,2016,April,16,14,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,125,0,0,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,28,2016,April,16,13,0,2,2,0,0,BB,IND,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,28,2016,April,16,13,0,3,3,0,0,BB,IND,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Group,90,0,0,Check-Out,2016-04-16,Spring,2016-04-13T07:00Z +Keep,37,2016,April,16,13,0,2,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-15,Spring,2016-04-13T07:00Z +Keep,34,2016,April,16,11,1,3,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 128, NULL,0,Transient,60.3,0,0,Check-Out,2016-04-15,Spring,2016-04-11T07:00Z +Keep,58,2016,April,16,15,0,2,2,0,0,BB,ESP,Complementary,Direct, 0,0,0,A,C,1,No Deposit , NULL, 367,0,Transient,0,0,1,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,45,2016,April,16,14,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,0,1,Check-Out,2016-04-15,Spring,2016-04-14T07:00Z +Keep,4,2016,April,15,8,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,46,0,0,Check-Out,2016-04-15,Spring,2016-04-08T07:00Z +Keep,194,2016,April,15,6,2,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-04-15,Spring,2016-04-06T07:00Z +Keep,29,2016,April,15,9,2,5,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,55.89,0,1,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,112,2016,April,15,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient,42.83,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,147,2016,April,15,8,2,6,1,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,88,0,0,Check-Out,2016-04-16,Spring,2016-04-08T07:00Z +Keep,5,2016,April,15,9,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,99.5,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,19,2016,April,16,11,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,35.1,0,0,Check-Out,2016-04-16,Spring,2016-04-11T07:00Z +Keep,18,2016,April,16,13,0,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,64.8,0,0,Check-Out,2016-04-16,Spring,2016-04-13T07:00Z +Keep,1,2016,April,16,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,4,2016,April,16,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,1,2016,April,16,16,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,95,0,2,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,20,2016,April,16,11,1,4,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-16,Spring,2016-04-11T07:00Z +Keep,0,2016,April,16,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,67.5,0,0,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,0,2016,April,16,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,52.8,0,0,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,4,2016,April,16,15,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,46,0,0,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,115,2016,April,15,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,41.04,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,117,2016,April,16,12,0,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,102.5,1,1,Check-Out,2016-04-16,Spring,2016-04-12T07:00Z +Keep,45,2016,April,16,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-04-16,Spring,2016-04-14T07:00Z +Keep,205,2016,April,16,13,0,3,2,0,0,BB,FIN,Direct,Direct, 0,0,0,E,G,1,No Deposit , 250, NULL,0,Transient,141,1,0,Check-Out,2016-04-16,Spring,2016-04-13T07:00Z +Keep,121,2016,April,15,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 156, NULL,0,Transient,83.25,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 91, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,20,2016,April,16,10,2,4,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,107,0,0,Check-Out,2016-04-16,Spring,2016-04-10T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 91, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 91, NULL,0,Transient-Party,37.43,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,20,2016,April,16,12,0,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,35.1,0,1,Check-Out,2016-04-16,Spring,2016-04-12T07:00Z +Keep,20,2016,April,16,12,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43.4,0,1,Check-Out,2016-04-16,Spring,2016-04-12T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,5,2016,April,16,13,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,95,0,1,Check-Out,2016-04-16,Spring,2016-04-13T07:00Z +Keep,20,2016,April,16,10,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,113,1,2,Check-Out,2016-04-16,Spring,2016-04-10T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 91, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,36,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,43.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,27,2016,April,15,4,3,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-04T07:00Z +Keep,83,2016,April,16,13,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-04-16,Spring,2016-04-13T07:00Z +Keep,54,2016,April,15,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,30,2016,April,16,15,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,65.45,0,0,Check-Out,2016-04-16,Spring,2016-04-15T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,42.83,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,33,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,36.53,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,228,2017,May,19,13,2,5,2,0,0,BB,IRL,Direct,TA/TO, 1,0,1,A,A,1,No Deposit , 250, NULL,0,Transient,52.8,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,9,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,43.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,5,2016,April,15,9,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Contract,51,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,35.1,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 91, NULL,0,Transient-Party,37.43,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,35.1,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,74,2016,April,15,9,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 91, NULL,0,Transient-Party,37.43,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-04-16,Spring,2016-04-09T07:00Z +Keep,90,2016,April,16,10,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,87,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,2,No Deposit , 273, NULL,0,Transient-Party,80.81,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,52,2016,April,16,10,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,64.8,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,87,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,275,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,72.45,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,190,2016,April,16,10,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,47.9,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,54,2016,April,16,11,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54.56,0,0,Check-Out,2016-04-17,Spring,2016-04-11T07:00Z +Keep,61,2016,April,16,13,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,59.65,0,2,Check-Out,2016-04-17,Spring,2016-04-13T07:00Z +Keep,78,2016,April,16,12,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.43,0,2,Check-Out,2016-04-17,Spring,2016-04-12T07:00Z +Keep,68,2016,April,16,12,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.43,0,1,Check-Out,2016-04-17,Spring,2016-04-12T07:00Z +Keep,78,2016,April,16,12,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.43,0,2,Check-Out,2016-04-17,Spring,2016-04-12T07:00Z +Keep,277,2015,October,41,6,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,E,1,No Deposit , 273, NULL,0,Transient-Party,68.74,0,0,Check-Out,2015-10-13,Fall,2015-10-06T07:00Z +Keep,87,2016,April,16,10,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,1,D,D,0,No Deposit , 273, NULL,0,Transient-Party,36.22,0,0,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,30,2016,April,17,17,4,5,2,0,0,HB,GBR,Groups,Direct, 0,0,1,D,D,1,Non Refund , 273, NULL,0,Transient-Party,70.05,0,0,Check-Out,2016-04-26,Spring,2016-04-17T07:00Z +Keep,249,2016,October,42,14,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,3,A,E,0,No Deposit , 273, NULL,0,Transient-Party,60.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,284,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,Direct, 1,0,4,D,D,0,No Deposit , 273, NULL,43,Transient-Party,45.51,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,140,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 1,0,5,A,A,1,No Deposit , 273, NULL,0,Group,0,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,72,2016,April,15,9,2,6,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,6,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,39,2016,April,16,14,0,3,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,57.6,0,0,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,72,2016,April,15,9,2,6,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,72,2016,April,15,9,2,6,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,129,2016,April,16,16,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55.3,1,0,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,8,2016,April,16,14,0,3,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,90.09,0,0,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,7,2016,April,16,11,1,5,3,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,102.5,1,0,Check-Out,2016-04-17,Spring,2016-04-11T07:00Z +Keep,12,2016,April,16,13,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-04-17,Spring,2016-04-13T07:00Z +Keep,16,2016,April,16,16,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,84,0,0,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,0,2016,April,16,12,0,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 152, NULL,0,Transient,55,0,0,Check-Out,2016-04-17,Spring,2016-04-12T07:00Z +Keep,24,2016,April,16,13,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-04-17,Spring,2016-04-13T07:00Z +Keep,1,2016,April,16,14,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,101,1,1,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,3,2016,April,16,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,11,2016,April,15,8,2,7,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,55.78,0,0,Check-Out,2016-04-17,Spring,2016-04-08T07:00Z +Keep,50,2016,April,16,15,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,1,1,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,13,2016,April,16,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,37,2016,April,16,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-17,Spring,2016-04-16T07:00Z +Keep,7,2016,April,16,14,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91,1,1,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,66,2016,April,15,9,2,6,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,153,2016,April,16,14,0,3,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,123,0,2,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,18,2016,April,16,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,56.05,1,1,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,23,2016,April,16,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,153,2016,April,16,14,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,52.2,0,2,Check-Out,2016-04-17,Spring,2016-04-14T07:00Z +Keep,7,2016,April,16,11,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,70,0,0,Check-Out,2016-04-17,Spring,2016-04-11T07:00Z +Keep,72,2016,April,15,9,2,6,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,36,0,0,Check-Out,2016-04-17,Spring,2016-04-09T07:00Z +Keep,86,2016,April,16,10,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,94.25,0,1,Check-Out,2016-04-17,Spring,2016-04-10T07:00Z +Keep,1,2016,April,16,15,0,2,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,82,1,0,Check-Out,2016-04-17,Spring,2016-04-15T07:00Z +Keep,12,2016,April,16,14,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,54.86,0,1,Check-Out,2016-04-18,Spring,2016-04-14T07:00Z +Keep,11,2016,April,16,14,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,54.86,0,0,Check-Out,2016-04-18,Spring,2016-04-14T07:00Z +Keep,51,2016,April,16,15,1,2,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,109.36,0,0,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,59,2016,April,16,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,53.4,0,2,Check-Out,2016-04-18,Spring,2016-04-11T07:00Z +Keep,0,2016,April,17,17,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2016-04-18,Spring,2016-04-17T07:00Z +Keep,10,2016,April,16,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,2,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,3,2016,April,16,16,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2016-04-18,Spring,2016-04-16T07:00Z +Keep,1,2016,April,17,17,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-04-18,Spring,2016-04-17T07:00Z +Keep,21,2016,April,16,13,1,4,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,53.8,0,0,Check-Out,2016-04-18,Spring,2016-04-13T07:00Z +Keep,24,2016,April,16,14,1,3,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2016-04-18,Spring,2016-04-14T07:00Z +Keep,74,2016,April,16,12,1,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-04-18,Spring,2016-04-12T07:00Z +Keep,0,2016,April,17,17,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,1,0,Check-Out,2016-04-18,Spring,2016-04-17T07:00Z +Keep,0,2016,April,17,17,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-04-18,Spring,2016-04-17T07:00Z +Keep,12,2016,April,16,11,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,75.6,0,0,Check-Out,2016-04-18,Spring,2016-04-11T07:00Z +Keep,34,2016,April,16,15,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 156, NULL,0,Transient,60,0,0,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,15,2016,April,16,15,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,60.96,0,1,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,24,2016,April,16,13,1,4,2,0,0,BB,OMN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,66.2,0,2,Check-Out,2016-04-18,Spring,2016-04-13T07:00Z +Keep,53,2016,April,16,15,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,59.4,1,1,Check-Out,2016-04-18,Spring,2016-04-15T07:00Z +Keep,2,2016,April,17,17,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,39,0,0,Check-Out,2016-04-18,Spring,2016-04-17T07:00Z +Keep,91,2016,April,16,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,64.8,0,1,Check-Out,2016-04-18,Spring,2016-04-11T07:00Z +Keep,12,2016,April,16,12,1,5,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65.33,1,1,Check-Out,2016-04-18,Spring,2016-04-12T07:00Z +Keep,88,2016,April,16,12,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,66.23,0,0,Check-Out,2016-04-19,Spring,2016-04-12T07:00Z +Keep,9,2016,April,16,15,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,62.18,0,1,Check-Out,2016-04-19,Spring,2016-04-15T07:00Z +Keep,1,2016,April,17,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,52,1,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,40,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,1,2016,April,17,18,1,0,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,1,2016,April,17,18,1,0,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,46,2016,April,17,17,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-04-19,Spring,2016-04-17T07:00Z +Keep,82,2016,April,16,13,2,4,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,79.3,0,0,Check-Out,2016-04-19,Spring,2016-04-13T07:00Z +Keep,8,2016,April,16,14,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-04-19,Spring,2016-04-14T07:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,52,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,18,2016,April,16,13,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,64.8,0,0,Check-Out,2016-04-19,Spring,2016-04-13T07:00Z +Keep,3,2016,April,17,17,2,0,1,0,0,BB,GBR,Complementary,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-04-19,Spring,2016-04-17T07:00Z +Keep,0,2016,April,17,18,1,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,4,2016,April,17,18,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-04-19,Spring,2016-04-18T07:00Z +Keep,1,2016,May,19,4,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,63,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2016,December,52,22,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, 421,0,Transient,30,0,0,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,1,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 421,0,Transient,35,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,February,6,9,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,5,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,4,2017,February,9,27,1,0,2,0,0,BB,PRT,Direct,Corporate, 1,0,6,A,D,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,86,2016,April,16,13,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-04-20,Spring,2016-04-13T07:00Z +Keep,7,2016,April,17,18,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,0,2016,April,17,20,0,2,2,0,0,BB,GBR,Direct,Corporate, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,1,0,Check-Out,2016-04-22,Spring,2016-04-20T07:00Z +Keep,0,2016,April,17,18,1,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,FRA,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,1,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,1,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,AUS,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,185,2016,April,17,18,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 397,0,Transient-Party,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 397,0,Transient-Party,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 397,0,Transient-Party,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 397,0,Transient-Party,50,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 397,0,Transient-Party,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 397,0,Transient-Party,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,1,2016,April,17,19,0,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,70,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 397,0,Transient,59,0,1,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,31,2016,April,17,18,1,1,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,1,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,0,2016,April,17,19,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,77,0,0,Check-Out,2016-04-20,Spring,2016-04-19T07:00Z +Keep,24,2016,April,17,17,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81,1,1,Check-Out,2016-04-20,Spring,2016-04-17T07:00Z +Keep,55,2016,April,16,14,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 177, NULL,0,Transient,61.4,0,1,Check-Out,2016-04-20,Spring,2016-04-14T07:00Z +Keep,101,2016,April,16,16,2,2,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 26, NULL,0,Transient,17.6,1,1,Check-Out,2016-04-20,Spring,2016-04-16T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,RUS,Groups,Corporate, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,91,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,31,2016,April,17,18,1,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2016-04-20,Spring,2016-04-18T07:00Z +Keep,0,2016,April,16,16,2,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2016-04-20,Spring,2016-04-16T07:00Z +Keep,0,2016,April,16,15,2,4,1,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Group,41.65,0,0,Check-Out,2016-04-21,Spring,2016-04-15T07:00Z +Keep,89,2016,April,15,9,4,8,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-04-21,Spring,2016-04-09T07:00Z +Keep,91,2016,April,16,14,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,84.95,0,0,Check-Out,2016-04-21,Spring,2016-04-14T07:00Z +Keep,29,2016,April,16,14,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,77.5,0,0,Check-Out,2016-04-21,Spring,2016-04-14T07:00Z +Keep,9,2016,April,17,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,77,1,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,2,2016,April,17,20,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,65,1,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,0,2016,April,17,18,1,2,2,0,0,BB,ARG,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,77,1,0,Check-Out,2016-04-21,Spring,2016-04-18T07:00Z +Keep,80,2016,April,16,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,0,Check-Out,2016-04-21,Spring,2016-04-14T07:00Z +Keep,1,2016,April,17,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 64, NULL,0,Transient,50,1,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,35,2016,April,17,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,91,2016,April,17,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,91,2016,April,17,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,82,2016,April,16,16,2,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,73.76,1,1,Check-Out,2016-04-21,Spring,2016-04-16T07:00Z +Keep,86,2016,April,17,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,86,2016,April,17,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,137,2016,April,17,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.5,0,1,Check-Out,2016-04-21,Spring,2016-04-19T07:00Z +Keep,2,2016,April,17,20,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,93,2016,April,16,16,2,3,2,0,0,HB,HRV,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,79.3,0,1,Check-Out,2016-04-21,Spring,2016-04-16T07:00Z +Keep,86,2016,April,16,11,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,54.2,0,0,Check-Out,2016-04-21,Spring,2016-04-11T07:00Z +Keep,1,2016,April,17,20,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,52,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,1,2016,May,23,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,C,0,No Deposit , 314, NULL,0,Transient,56,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,5,2016,April,17,20,0,1,2,0,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,55,2016,April,17,17,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,58,0,1,Check-Out,2016-04-21,Spring,2016-04-17T07:00Z +Keep,82,2016,April,16,16,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient-Party,51.76,0,1,Check-Out,2016-04-21,Spring,2016-04-16T07:00Z +Keep,82,2016,April,16,16,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient-Party,51.76,0,1,Check-Out,2016-04-21,Spring,2016-04-16T07:00Z +Keep,0,2016,April,17,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,0,Check-Out,2016-04-21,Spring,2016-04-20T07:00Z +Keep,93,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,32,2016,April,17,22,0,1,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,0,1,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,33,2016,April,17,17,2,3,2,0,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,52.2,0,2,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,46,2016,April,16,15,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2016-04-22,Spring,2016-04-15T07:00Z +Keep,114,2016,April,16,10,4,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,48.18,0,0,Check-Out,2016-04-22,Spring,2016-04-10T07:00Z +Keep,47,2016,April,17,17,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,47,2016,April,17,17,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,2,2016,April,17,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,39,1,0,Check-Out,2016-04-22,Spring,2016-04-21T07:00Z +Keep,88,2016,April,16,15,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 314, NULL,0,Transient,69.7,0,1,Check-Out,2016-04-22,Spring,2016-04-15T07:00Z +Keep,88,2016,April,16,15,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 314, NULL,0,Transient,69.7,1,1,Check-Out,2016-04-22,Spring,2016-04-15T07:00Z +Keep,28,2016,April,17,18,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,86,0,0,Check-Out,2016-04-22,Spring,2016-04-18T07:00Z +Keep,0,2016,April,17,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,74,0,0,Check-Out,2016-04-22,Spring,2016-04-21T07:00Z +Keep,0,2016,April,17,21,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-04-22,Spring,2016-04-21T07:00Z +Keep,0,2016,April,17,21,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74,0,0,Check-Out,2016-04-22,Spring,2016-04-21T07:00Z +Keep,4,2016,April,17,20,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2016-04-22,Spring,2016-04-20T07:00Z +Keep,64,2016,April,17,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,79,1,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,56,2016,April,16,15,2,5,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 71, NULL,0,Contract,59.5,0,0,Check-Out,2016-04-22,Spring,2016-04-15T07:00Z +Keep,89,2016,April,16,16,2,4,2,0,0,Undefined,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,71.76,0,0,Check-Out,2016-04-22,Spring,2016-04-16T07:00Z +Keep,162,2016,April,17,19,0,3,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,1,0,Check-Out,2016-04-22,Spring,2016-04-19T07:00Z +Keep,86,2016,April,17,17,2,3,2,2,0,BB,OMN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,54,2016,April,17,17,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,44.3,0,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,54,2016,April,16,16,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,63.36,0,0,Check-Out,2016-04-22,Spring,2016-04-16T07:00Z +Keep,18,2016,April,15,9,4,9,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-22,Spring,2016-04-09T07:00Z +Keep,55,2016,April,17,17,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43.4,0,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,47,2016,April,17,17,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,58.56,1,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,47,2016,April,17,17,2,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-04-22,Spring,2016-04-17T07:00Z +Keep,39,2016,April,17,18,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 314, NULL,0,Transient,82,0,0,Check-Out,2016-04-23,Spring,2016-04-18T07:00Z +Keep,128,2016,April,17,20,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 248, NULL,0,Transient-Party,114,1,1,Check-Out,2016-04-23,Spring,2016-04-20T07:00Z +Keep,128,2016,April,17,20,0,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 248, NULL,0,Transient-Party,108,0,1,Check-Out,2016-04-23,Spring,2016-04-20T07:00Z +Keep,94,2016,April,15,9,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,86.95,0,1,Check-Out,2016-04-23,Spring,2016-04-09T07:00Z +Keep,96,2016,April,16,16,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,52.2,0,0,Check-Out,2016-04-23,Spring,2016-04-16T07:00Z +Keep,33,2016,April,17,18,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,63.75,0,0,Check-Out,2016-04-23,Spring,2016-04-18T07:00Z +Keep,51,2016,April,17,20,0,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75.33,0,1,Check-Out,2016-04-23,Spring,2016-04-20T07:00Z +Keep,53,2016,April,16,13,2,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-04-23,Spring,2016-04-13T07:00Z +Keep,0,2016,April,17,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,155,2016,April,17,17,2,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 241, NULL,0,Transient,50.59,0,0,Check-Out,2016-04-23,Spring,2016-04-17T07:00Z +Keep,140,2016,April,16,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.91,1,1,Check-Out,2016-04-23,Spring,2016-04-16T07:00Z +Keep,43,2016,April,17,17,2,4,2,0,0,HB,IND,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,97.79,0,1,Check-Out,2016-04-23,Spring,2016-04-17T07:00Z +Keep,40,2016,April,17,19,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 8, NULL,0,Transient,60.06,0,0,Check-Out,2016-04-23,Spring,2016-04-19T07:00Z +Keep,31,2016,April,16,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-23,Spring,2016-04-16T07:00Z +Keep,1,2016,April,17,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.5,1,1,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,1,2016,April,17,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,68,0,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,0,2016,April,17,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,12,2016,April,17,19,0,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-04-23,Spring,2016-04-19T07:00Z +Keep,37,2016,April,17,19,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,83,0,0,Check-Out,2016-04-23,Spring,2016-04-19T07:00Z +Keep,92,2016,April,17,21,0,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,59,2016,April,17,21,0,2,1,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,92,2016,April,17,21,0,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,92,2016,April,17,21,0,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,2,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,0,2016,April,17,22,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,130,1,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,139,2016,April,16,13,2,8,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2016-04-23,Spring,2016-04-13T07:00Z +Keep,0,2016,April,17,22,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,31,2016,April,17,18,1,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-04-23,Spring,2016-04-18T07:00Z +Keep,92,2016,April,17,21,0,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,73,0,2,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,42,2016,April,17,21,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,71.45,1,1,Check-Out,2016-04-23,Spring,2016-04-21T07:00Z +Keep,0,2016,April,17,22,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2016-04-23,Spring,2016-04-22T07:00Z +Keep,70,2016,April,17,22,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,36,2016,April,17,18,1,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74,0,1,Check-Out,2016-04-24,Spring,2016-04-18T07:00Z +Keep,78,2017,April,17,23,2,3,2,0,0,BB,IRL,Direct,Direct, 1,0,1,F,F,0,No Deposit , 250, NULL,0,Transient,112,0,1,Check-Out,2017-04-28,Spring,2017-04-23T07:00Z +Keep,78,2016,April,16,14,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,65.4,0,0,Check-Out,2016-04-24,Spring,2016-04-14T07:00Z +Keep,43,2016,April,17,21,0,3,2,0,0,BB,MEX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,69.49,0,1,Check-Out,2016-04-24,Spring,2016-04-21T07:00Z +Keep,132,2016,April,17,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,86.95,0,0,Check-Out,2016-04-24,Spring,2016-04-17T07:00Z +Keep,6,2016,April,16,16,2,6,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,84.25,1,2,Check-Out,2016-04-24,Spring,2016-04-16T07:00Z +Keep,2,2016,April,17,22,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,123,1,1,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,3,2016,April,17,22,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient-Party,138,0,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,3,2016,April,17,22,0,2,1,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,85,0,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,0,2016,April,17,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,49,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,50.5,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,14,2016,April,17,22,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,14,2016,April,17,22,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,0,2016,April,17,23,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,136,1,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,1,2016,April,17,23,0,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,93,1,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,34,2016,April,17,20,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,102.25,1,2,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,2,2016,April,17,22,0,2,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,3,2016,April,17,23,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,68.85,0,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,51,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,1,2016,April,17,23,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,87,0,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,152,2016,April,17,20,0,4,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,1,Check-Out,2016-04-24,Spring,2016-04-20T07:00Z +Keep,3,2016,April,17,23,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,68.85,0,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,3,2016,April,17,23,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,68.85,0,0,Check-Out,2016-04-24,Spring,2016-04-23T07:00Z +Keep,2,2016,April,17,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,91,1,0,Check-Out,2016-04-24,Spring,2016-04-22T07:00Z +Keep,0,2016,April,18,24,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Group,85,1,0,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,79,2016,April,17,22,1,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,117,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,79,2016,April,17,22,1,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,102,1,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,80,2016,April,17,18,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,78.2,0,1,Check-Out,2016-04-25,Spring,2016-04-18T07:00Z +Keep,106,2016,April,18,24,1,0,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,109,2016,April,17,23,1,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,62.05,0,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,92,2016,April,17,22,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 6, NULL,0,Transient,65.6,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,39,2016,April,18,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,10,2016,April,17,23,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,8,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86.67,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,105,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,40,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91,1,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,70,2016,April,17,20,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-04-25,Spring,2016-04-20T07:00Z +Keep,21,2016,April,17,23,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,130.5,1,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,35,2016,April,17,22,1,2,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 369,0,Transient,58,0,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,35,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,97,1,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,44,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,42,2016,April,17,23,1,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,3,No Deposit , 250, NULL,0,Transient,99,1,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,58,2016,April,17,23,1,1,2,3,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,125,0,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,42,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,78,1,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,183,2016,July,31,24,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,1,F,F,1,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,182,2017,July,30,23,2,4,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , 250, NULL,0,Transient,140.94,0,1,Check-Out,2017-07-29,Summer,2017-07-23T07:00Z +Keep,37,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,92,2016,April,17,21,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.8,0,0,Check-Out,2016-04-25,Spring,2016-04-21T07:00Z +Keep,23,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81,1,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,21,2016,April,17,22,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,74.37,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,19,2016,April,17,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,1,1,Check-Out,2016-04-25,Spring,2016-04-21T07:00Z +Keep,27,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,0,2016,April,18,24,1,0,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,0,2016,April,18,24,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,116,1,0,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,49,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,39,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,39,2016,April,17,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,28,2016,April,17,23,1,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,136,1,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,1,2016,April,18,24,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,96.5,1,0,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,2,2016,April,18,25,1,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,1,2017,May,18,1,1,2,2,0,0,BB,FRA,Direct,Direct, 1,0,2,F,F,0,No Deposit , NULL, NULL,0,Transient,127,1,0,Check-Out,2017-05-04,Spring,2017-05-01T07:00Z +Keep,35,2016,April,17,22,1,2,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 369,0,Transient,81.5,1,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,35,2016,April,17,22,1,2,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,5,No Deposit , NULL, 369,0,Transient,81.5,1,0,Check-Out,2016-04-25,Spring,2016-04-22T07:00Z +Keep,85,2016,April,17,21,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2016-04-25,Spring,2016-04-21T07:00Z +Keep,85,2016,April,17,21,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2016-04-25,Spring,2016-04-21T07:00Z +Keep,9,2016,April,17,23,1,1,1,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,2,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,85,2016,April,17,21,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2016-04-25,Spring,2016-04-21T07:00Z +Keep,4,2016,April,17,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,28,2016,April,18,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-25,Spring,2016-04-24T07:00Z +Keep,14,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,105,0,0,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,9,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,100.5,1,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,9,2016,April,17,23,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,100.5,1,1,Check-Out,2016-04-25,Spring,2016-04-23T07:00Z +Keep,13,2016,April,18,25,2,5,2,0,0,BB,NLD,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,85,1,0,Check-Out,2016-05-02,Spring,2016-04-25T07:00Z +Keep,1,2016,April,18,26,0,2,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,85.5,1,2,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,98,2016,April,17,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 242, NULL,0,Transient,82.2,0,1,Check-Out,2016-04-26,Spring,2016-04-20T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,82.24,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,80.81,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,80.81,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,38.22,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,C,0,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,C,0,No Deposit , 273, NULL,0,Transient-Party,46.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,80.81,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,32,2016,April,17,19,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,39,2016,April,18,24,2,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,68.5,1,1,Check-Out,2016-04-26,Spring,2016-04-24T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,60,2016,April,17,23,2,1,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,0,Check-Out,2016-04-26,Spring,2016-04-23T07:00Z +Keep,0,2016,April,18,26,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,E,I,0,No Deposit , 177, NULL,0,Transient,0,0,0,Check-Out,2016-04-26,Spring,2016-04-26T07:00Z +Keep,160,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient,66.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,41,2016,April,17,23,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.67,1,1,Check-Out,2016-04-26,Spring,2016-04-23T07:00Z +Keep,15,2016,April,17,23,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,93.67,0,1,Check-Out,2016-04-26,Spring,2016-04-23T07:00Z +Keep,51,2016,April,17,17,4,5,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,65.3,0,0,Check-Out,2016-04-26,Spring,2016-04-17T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,66.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,90,2016,April,17,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,62.05,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,36,2016,April,18,24,2,0,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,81,1,1,Check-Out,2016-04-26,Spring,2016-04-24T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 115, NULL,0,Transient,64.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,66.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,35.05,0,0,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,64.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,68.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,190,2016,April,17,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,75.6,0,0,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,66.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,42,2016,April,17,18,3,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,90.49,0,0,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,75.6,0,0,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient-Party,48.8,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,0,2016,April,18,25,1,0,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,0,0,Check-Out,2016-04-26,Spring,2016-04-25T07:00Z +Keep,33,2016,April,17,23,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-04-26,Spring,2016-04-23T07:00Z +Keep,0,2016,April,18,25,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59,0,0,Check-Out,2016-04-26,Spring,2016-04-25T07:00Z +Keep,36,2016,April,18,24,2,0,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,75,0,1,Check-Out,2016-04-26,Spring,2016-04-24T07:00Z +Keep,1,2016,April,16,16,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-04-26,Spring,2016-04-16T07:00Z +Keep,99,2016,April,17,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.19,0,1,Check-Out,2016-04-26,Spring,2016-04-19T07:00Z +Keep,1,2016,April,18,25,1,0,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,1,1,Check-Out,2016-04-26,Spring,2016-04-25T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,66.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,172,2016,April,17,18,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 147, NULL,0,Transient-Party,66.42,0,1,Check-Out,2016-04-26,Spring,2016-04-18T07:00Z +Keep,123,2016,April,18,24,2,0,2,0,0,SC,PRT,Direct,Direct, 0,0,0,D,I,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-04-26,Spring,2016-04-24T07:00Z +Keep,38,2016,April,17,20,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83,0,1,Check-Out,2016-04-27,Spring,2016-04-20T07:00Z +Keep,13,2016,April,18,26,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 291,0,Transient,42,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,0,2016,April,18,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,79,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,0,2016,April,18,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,0,2016,October,44,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,0,2017,January,1,4,0,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-01-04,Winter,2017-01-04T08:00Z +Keep,6,2016,April,18,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,0,2016,April,18,26,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,7,2016,April,18,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,6,2016,April,18,26,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,77,0,1,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,63,2016,April,17,19,2,6,3,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,128,0,0,Check-Out,2016-04-27,Spring,2016-04-19T07:00Z +Keep,100,2016,April,17,22,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,49.59,0,0,Check-Out,2016-04-27,Spring,2016-04-22T07:00Z +Keep,6,2016,April,18,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,64,1,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,29,2016,April,17,20,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,54.86,0,1,Check-Out,2016-04-27,Spring,2016-04-20T07:00Z +Keep,37,2016,April,17,23,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.5,0,1,Check-Out,2016-04-27,Spring,2016-04-23T07:00Z +Keep,13,2016,April,18,25,1,1,1,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,9,2016,April,18,25,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,50.05,0,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,6,2016,April,18,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,0,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,2,2016,April,18,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,3,2016,April,18,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,81,1,1,Check-Out,2016-04-27,Spring,2016-04-25T07:00Z +Keep,47,2016,April,18,26,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,0,1,1,Check-Out,2016-04-27,Spring,2016-04-26T07:00Z +Keep,6,2016,April,18,28,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 51,0,Transient,0,0,0,Check-Out,2016-04-28,Spring,2016-04-28T07:00Z +Keep,6,2016,April,18,28,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 51,0,Transient,0,0,0,Check-Out,2016-04-28,Spring,2016-04-28T07:00Z +Keep,115,2016,April,18,28,0,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,46.1,0,1,Check-Out,2016-05-01,Spring,2016-04-28T07:00Z +Keep,82,2016,April,18,28,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,43.97,0,1,Check-Out,2016-05-04,Spring,2016-04-28T07:00Z +Keep,73,2016,April,18,29,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,6,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-04-29,Spring,2016-04-29T07:00Z +Keep,42,2016,April,18,24,2,2,3,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,94.75,0,0,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,30,2016,April,17,19,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-04-28,Spring,2016-04-19T07:00Z +Keep,113,2016,April,18,26,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 241, NULL,0,Transient,78.31,0,1,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,113,2016,April,18,26,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,78.31,0,1,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,81,2016,April,17,23,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,115.4,0,0,Check-Out,2016-04-28,Spring,2016-04-23T07:00Z +Keep,21,2016,April,18,25,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 104, NULL,0,Transient,50.4,0,0,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,109,2016,April,18,24,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,52.2,1,1,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,109,2016,April,18,24,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,35,2016,April,17,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,41.4,0,0,Check-Out,2016-04-28,Spring,2016-04-21T07:00Z +Keep,1,2016,April,18,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.5,0,0,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,89,2016,April,16,16,4,8,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,59.5,0,0,Check-Out,2016-04-28,Spring,2016-04-16T07:00Z +Keep,5,2016,April,18,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,1,2016,April,18,26,0,2,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,1,2016,April,18,28,0,1,2,0,0,BB,EST,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,71,1,1,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,19,2016,April,18,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,0,2016,April,18,26,0,2,1,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47.7,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,5,2016,May,23,30,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 409,0,Transient-Party,54,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,0,2016,October,43,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,E,0,No Deposit , NULL, 409,0,Transient,50,0,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,22,2016,April,18,27,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,83,1,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,2,2016,April,18,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,77,1,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,2,2016,April,18,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,74,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,5,2016,April,18,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,2,2016,April,18,25,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,106.5,0,0,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,71,2016,April,17,23,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,3,Check-Out,2016-04-28,Spring,2016-04-23T07:00Z +Keep,0,2016,April,18,27,0,1,2,0,0,BB,ESP,Online travel agent,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,0,2016,April,18,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,1,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,100,2016,April,18,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,1,2016,April,18,26,0,2,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114,1,1,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,63,2016,April,18,25,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,6,2016,April,18,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Check-Out,2016-04-28,Spring,2016-04-27T07:00Z +Keep,10,2017,February,5,3,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Group,40.5,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,32,2016,April,18,25,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,2,2016,April,18,28,0,1,2,0,0,BB,FRA,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,25,2016,April,18,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,85.5,0,0,Check-Out,2016-04-28,Spring,2016-04-26T07:00Z +Keep,22,2016,April,17,18,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.15,0,1,Check-Out,2016-04-28,Spring,2016-04-18T07:00Z +Keep,41,2016,April,17,23,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,3,No Deposit , 250, NULL,0,Transient,59.22,0,1,Check-Out,2016-04-28,Spring,2016-04-23T07:00Z +Keep,15,2016,April,18,24,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,78.75,0,0,Check-Out,2016-04-28,Spring,2016-04-24T07:00Z +Keep,101,2016,April,18,29,2,5,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,I,9,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,104,2016,April,17,20,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 6, NULL,0,Transient,50.15,0,0,Check-Out,2016-04-28,Spring,2016-04-20T07:00Z +Keep,6,2016,April,18,25,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-28,Spring,2016-04-25T07:00Z +Keep,86,2016,April,16,14,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,86.95,0,1,Check-Out,2016-04-28,Spring,2016-04-14T07:00Z +Keep,104,2016,April,18,28,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,80.45,0,1,Check-Out,2016-05-06,Spring,2016-04-28T07:00Z +Keep,72,2016,April,18,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,101.25,0,0,Check-Out,2016-05-03,Spring,2016-04-29T07:00Z +Keep,95,2016,April,18,26,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,39.95,0,0,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,3,2016,April,17,17,4,8,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,126.67,0,1,Check-Out,2016-04-29,Spring,2016-04-17T07:00Z +Keep,72,2016,April,18,24,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,72,2016,April,18,24,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,72,2016,April,18,24,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,46,2016,April,18,24,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57.96,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,72,2016,April,18,24,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.7,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,83,2016,April,18,26,0,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,75.6,0,1,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,15,2016,April,18,28,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,68,2016,April,18,24,2,3,2,1,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,101,2016,April,17,23,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,64.67,0,0,Check-Out,2016-04-29,Spring,2016-04-23T07:00Z +Keep,108,2016,April,18,24,2,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,44.1,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,7,2016,April,18,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,58,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,6,2017,June,23,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 5, NULL,0,Transient,105.6,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,6,2017,June,26,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 468, NULL,0,Group,108.24,0,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,22,2016,April,18,26,0,3,2,1,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,23.5,1,0,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,5,2016,April,18,27,0,2,1,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,107,1,1,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,6,2016,April,18,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,6,2016,April,18,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,3,2016,November,49,28,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,6,2017,March,12,22,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,179,2016,April,18,27,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,179,2016,April,18,27,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58.2,1,1,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,88,2016,April,17,23,2,5,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 253, NULL,0,Transient,49.5,0,0,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,0,2016,April,18,27,0,2,2,0,0,BB,GBR,Online travel agent,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,76,1,1,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,9,2016,April,18,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient-Party,39,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,6,2016,November,47,14,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 94,0,Transient,30,1,0,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 94,0,Transient-Party,38.5,1,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,9,2016,April,18,28,0,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient-Party,39,1,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,5,2016,April,18,26,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 269,0,Transient,51,1,0,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,5,2016,October,42,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,G,0,No Deposit , NULL, 269,0,Transient,51,1,0,Check-Out,2016-10-14,Fall,2016-10-12T07:00Z +Keep,3,2017,May,21,22,1,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 269,0,Transient,52,1,0,Check-Out,2017-05-25,Spring,2017-05-22T07:00Z +Keep,42,2016,April,18,28,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,44,2016,April,18,27,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2016-04-29,Spring,2016-04-27T07:00Z +Keep,20,2017,April,17,26,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,1,2016,April,18,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,86,1,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,1,2016,April,18,26,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-04-29,Spring,2016-04-26T07:00Z +Keep,56,2016,April,18,25,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,47.4,1,0,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,56,2016,April,18,25,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 156, NULL,0,Transient-Party,39.1,0,0,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,35,2016,April,18,25,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,71.82,0,0,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,6,2016,April,18,28,0,1,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient,65,1,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,62,2016,April,18,25,1,3,1,0,0,FB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,53.01,0,0,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,64,2016,April,17,23,2,4,2,1,0,BB,EST,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,103,0,1,Check-Out,2016-04-29,Spring,2016-04-23T07:00Z +Keep,2,2016,April,18,25,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,5,2016,April,18,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-04-29,Spring,2016-04-25T07:00Z +Keep,0,2016,April,18,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50.4,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,72,2016,April,18,24,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-04-29,Spring,2016-04-24T07:00Z +Keep,44,2016,April,17,23,2,4,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,I,0,No Deposit , 241, NULL,0,Transient,86.46,1,1,Check-Out,2016-04-29,Spring,2016-04-23T07:00Z +Keep,7,2016,April,18,29,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,73.15,1,1,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,85,2016,April,18,28,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-04-29,Spring,2016-04-28T07:00Z +Keep,92,2016,April,18,29,2,6,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-05-07,Spring,2016-04-29T07:00Z +Keep,1,2016,April,18,29,0,0,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 26, NULL,0,Transient,0,0,0,Check-Out,2016-04-29,Spring,2016-04-29T07:00Z +Keep,10,2016,April,18,25,1,4,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,104,0,2,Check-Out,2016-04-30,Spring,2016-04-25T07:00Z +Keep,64,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , 385, NULL,52,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,31,2016,April,16,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,65,0,0,Check-Out,2016-04-30,Spring,2016-04-16T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,0,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,100,2016,April,17,23,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,31.45,0,1,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,100,2016,April,17,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,37.4,0,1,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , 385, NULL,0,Transient-Party,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,1,2016,April,18,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,1,0,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,12,2016,April,18,27,0,3,2,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,F,1,No Deposit , 385, NULL,0,Transient,85.33,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,132,2017,May,18,2,0,4,2,0,0,HB,PRT,Direct,Direct, 1,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,85,0,1,Check-Out,2017-05-06,Spring,2017-05-02T07:00Z +Keep,21,2016,April,18,25,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 104, NULL,0,Transient,50.4,0,0,Check-Out,2016-04-30,Spring,2016-04-25T07:00Z +Keep,53,2016,April,18,27,0,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,133,1,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,0,2016,April,18,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,26,2016,April,17,23,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,4,No Deposit , 250, NULL,0,Transient-Party,115,0,2,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,26,2016,April,17,23,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,4,No Deposit , 250, NULL,0,Transient-Party,121,1,3,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,26,2016,April,17,23,2,5,2,0,1,HB,ESP,Direct,Direct, 0,0,0,E,E,5,No Deposit , 250, NULL,0,Transient-Party,121,1,3,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,111,2016,April,18,28,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-04-30,Spring,2016-04-28T07:00Z +Keep,111,2016,April,18,28,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,44.1,0,1,Check-Out,2016-04-30,Spring,2016-04-28T07:00Z +Keep,111,2016,April,18,28,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,58.2,1,1,Check-Out,2016-04-30,Spring,2016-04-28T07:00Z +Keep,5,2016,April,18,27,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,86,1,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,37,2016,April,18,27,0,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,35.1,0,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,84,2016,April,18,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,21,2016,April,18,28,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,4,0,0,Check-Out,2016-04-30,Spring,2016-04-28T07:00Z +Keep,12,2016,April,18,28,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-04-30,Spring,2016-04-28T07:00Z +Keep,2,2016,April,18,30,0,1,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,5,2016,April,18,29,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,3,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,5,2016,April,18,29,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,1,3,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,24,2016,April,18,29,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,125,0,0,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,74,2016,April,18,26,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,44,2016,April,17,23,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,64.5,1,0,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,5,2016,April,18,29,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,85,1,0,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,2,2016,April,18,26,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,84.5,1,1,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,70,2016,April,18,25,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-04-30,Spring,2016-04-25T07:00Z +Keep,39,2016,April,18,27,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97,1,0,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,69,2016,April,18,26,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,39.95,0,0,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,1,2016,April,18,27,0,3,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91,1,1,Check-Out,2016-04-30,Spring,2016-04-27T07:00Z +Keep,99,2016,April,17,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,79.2,0,2,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,101,2016,April,17,23,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,35.63,0,1,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,43,2016,April,18,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,64,2016,April,18,24,2,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,1,Check-Out,2016-04-30,Spring,2016-04-24T07:00Z +Keep,20,2016,April,18,26,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2016-04-30,Spring,2016-04-26T07:00Z +Keep,100,2016,April,17,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.4,0,1,Check-Out,2016-04-30,Spring,2016-04-23T07:00Z +Keep,33,2016,April,18,25,1,4,1,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,37.1,0,0,Check-Out,2016-04-30,Spring,2016-04-25T07:00Z +Keep,6,2016,April,18,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,1,0,Check-Out,2016-04-30,Spring,2016-04-29T07:00Z +Keep,44,2016,April,18,27,0,4,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,55.89,0,0,Check-Out,2016-05-01,Spring,2016-04-27T07:00Z +Keep,14,2016,April,18,28,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-05-01,Spring,2016-04-28T07:00Z +Keep,160,2016,April,18,28,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.2,1,1,Check-Out,2016-05-01,Spring,2016-04-28T07:00Z +Keep,0,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,95,0,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,0,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,101,1,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,14,2016,April,18,30,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,20,2016,April,18,28,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,75.15,0,0,Check-Out,2016-05-01,Spring,2016-04-28T07:00Z +Keep,18,2016,October,43,16,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,79,0,2,Check-Out,2016-10-22,Fall,2016-10-16T07:00Z +Keep,13,2016,April,18,29,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93,1,1,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,18,2016,April,18,29,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,0,0,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,7,2016,April,18,30,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,46,1,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,7,2016,April,18,30,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,6,2016,April,18,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,1,0,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,124,2016,April,18,28,0,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,0,Check-Out,2016-05-01,Spring,2016-04-28T07:00Z +Keep,44,2016,April,18,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.5,1,0,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,4,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,95,1,1,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,4,2016,April,18,30,0,1,1,2,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,95,0,3,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,0,2016,April,18,30,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,13,2016,April,18,29,0,2,2,1,1,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,131,1,3,Check-Out,2016-05-01,Spring,2016-04-29T07:00Z +Keep,2,2016,April,18,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,115,0,2,Check-Out,2016-05-01,Spring,2016-04-30T07:00Z +Keep,1,2016,May,19,2,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,HUN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,B,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,47,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,47,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,47,2016,April,18,30,1,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 298, NULL,0,Transient,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,197,2016,April,18,30,1,1,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 298, NULL,0,Transient-Party,54.5,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,47,2016,April,18,25,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,73.5,1,0,Check-Out,2016-05-02,Spring,2016-04-25T07:00Z +Keep,8,2016,April,18,30,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,91,1,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,8,2016,November,45,2,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,E,0,No Deposit , 250, NULL,0,Transient,69,1,1,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,3,2016,April,18,29,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,97.67,0,0,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Keep,3,2016,April,18,29,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,91.67,1,0,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Keep,18,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Keep,13,2016,April,18,29,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,83.33,0,1,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Cancel,29,2016,April,18,30,0,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,No-Show,2016-04-30,Spring,2016-04-30T07:00Z +Keep,61,2016,April,18,26,1,5,3,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,179.33,1,0,Check-Out,2016-05-02,Spring,2016-04-26T07:00Z +Keep,0,2016,May,19,2,0,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-05-02,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,2,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-05-02,Spring,2016-05-02T07:00Z +Keep,4,2016,April,18,30,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,64,1,3,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,4,2016,April,18,30,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,58,1,3,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,5,2016,April,18,30,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,22,2016,April,18,30,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,73,2016,April,18,29,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,69.3,0,1,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Keep,2,2016,April,18,30,1,1,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,130,0,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,1,2016,April,18,30,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,105,1,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,3,2016,April,18,30,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,70,2,0,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,43,2016,April,18,30,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,96,1,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,0,2016,May,19,1,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,115,0,1,Check-Out,2016-05-02,Spring,2016-05-01T07:00Z +Keep,62,2016,May,19,1,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,86,1,1,Check-Out,2016-05-02,Spring,2016-05-01T07:00Z +Keep,30,2016,April,18,30,1,1,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,160.5,0,2,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,30,2016,April,18,30,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,109.5,0,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,7,2016,April,18,28,1,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,186.5,1,1,Check-Out,2016-05-02,Spring,2016-04-28T07:00Z +Keep,6,2016,April,18,30,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,43,2016,April,18,30,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,17,2016,April,18,30,1,1,2,2,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,181,1,1,Check-Out,2016-05-02,Spring,2016-04-30T07:00Z +Keep,23,2016,April,18,29,1,2,3,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,171,1,1,Check-Out,2016-05-02,Spring,2016-04-29T07:00Z +Keep,91,2016,April,18,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-03,Spring,2016-04-26T07:00Z +Keep,3,2016,April,18,28,2,3,1,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,127,0,1,Check-Out,2016-05-03,Spring,2016-04-28T07:00Z +Keep,3,2016,April,18,28,2,3,1,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,116,0,1,Check-Out,2016-05-03,Spring,2016-04-28T07:00Z +Keep,17,2016,May,19,2,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, 399,0,Transient-Party,81,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,11,2016,April,18,30,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,104.33,1,1,Check-Out,2016-05-03,Spring,2016-04-30T07:00Z +Keep,86,2016,April,18,29,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-03,Spring,2016-04-29T07:00Z +Keep,43,2016,April,18,24,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,76.61,0,1,Check-Out,2016-05-03,Spring,2016-04-24T07:00Z +Keep,23,2016,April,18,30,2,1,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98.33,0,2,Check-Out,2016-05-03,Spring,2016-04-30T07:00Z +Keep,0,2016,May,19,2,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,2,1,0,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,2,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,2,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,79,0,0,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,73,2016,May,19,3,0,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-05-03,Spring,2016-05-03T07:00Z +Keep,0,2016,May,19,3,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,E,I,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-05-03,Spring,2016-05-03T07:00Z +Keep,5,2016,May,19,1,2,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,72,0,0,Check-Out,2016-05-03,Spring,2016-05-01T07:00Z +Keep,0,2016,May,19,2,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 302,0,Transient,39.5,0,1,Check-Out,2016-05-03,Spring,2016-05-02T07:00Z +Keep,18,2016,April,18,30,2,1,1,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-05-03,Spring,2016-04-30T07:00Z +Keep,5,2016,May,19,1,2,0,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-05-03,Spring,2016-05-01T07:00Z +Keep,2,2016,May,19,3,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,87,0,1,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,112,2016,May,19,3,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-05-03,Spring,2016-05-03T07:00Z +Keep,31,2016,April,18,30,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,91.67,0,1,Check-Out,2016-05-03,Spring,2016-04-30T07:00Z +Keep,26,2016,April,18,29,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,0,Check-Out,2016-05-03,Spring,2016-04-29T07:00Z +Keep,113,2016,April,18,28,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43.4,0,0,Check-Out,2016-05-03,Spring,2016-04-28T07:00Z +Keep,13,2016,May,19,1,2,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,72,0,0,Check-Out,2016-05-03,Spring,2016-05-01T07:00Z +Keep,104,2016,April,18,28,2,3,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113,0,0,Check-Out,2016-05-03,Spring,2016-04-28T07:00Z +Keep,97,2016,April,18,27,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Contract,66.8,0,1,Check-Out,2016-05-04,Spring,2016-04-27T07:00Z +Keep,0,2016,April,18,26,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Check-Out,2016-05-04,Spring,2016-04-26T07:00Z +Keep,11,2016,May,19,2,1,1,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,101,2016,April,18,29,2,3,2,0,0,HB,BEL,Groups,TA/TO, 0,0,0,A,A,13,No Deposit , 95, NULL,0,Transient-Party,75,0,1,Check-Out,2016-05-04,Spring,2016-04-29T07:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,42,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,4,2016,June,26,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 135,0,Transient,57,1,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,7,2016,November,48,21,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 135,0,Transient,33,1,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Cancel,4,2017,February,6,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,D,0,No Deposit , NULL, 135,0,Transient,35,0,0,Canceled,2017-02-06,Winter,2017-02-07T08:00Z +Keep,11,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,3,A,D,0,No Deposit , NULL, 135,0,Transient,135,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,0,2016,May,19,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,0,2016,May,22,25,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,129,0,0,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,3,2016,April,18,30,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,138.5,1,0,Check-Out,2016-05-04,Spring,2016-04-30T07:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,75.2,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,0,2016,May,19,3,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,75.2,1,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,0,2016,May,19,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,75.2,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,35,2016,May,19,2,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,111,1,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,5,2016,May,19,3,0,1,1,0,0,BB,PRI,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-05-04,Spring,2016-05-03T07:00Z +Keep,5,2016,May,21,18,0,1,1,0,0,BB,PRI,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,39,0,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,7,2016,June,23,1,0,2,1,0,0,BB,PRI,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-03,Summer,2016-06-01T07:00Z +Keep,7,2016,June,26,21,0,1,1,0,0,BB,PRI,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,33,2016,July,29,11,1,1,2,0,0,BB,PRI,Corporate,Corporate, 1,0,4,A,A,1,No Deposit , NULL, 154,0,Transient,84,0,0,Check-Out,2016-07-13,Summer,2016-07-11T07:00Z +Keep,70,2016,August,34,17,0,2,2,0,0,BB,PRI,Corporate,Corporate, 1,0,5,A,A,1,No Deposit , NULL, 154,0,Transient,125,0,0,Check-Out,2016-08-19,Summer,2016-08-17T07:00Z +Keep,7,2016,September,40,28,0,2,1,0,0,BB,PRI,Corporate,Corporate, 1,0,6,A,A,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-09-30,Fall,2016-09-28T07:00Z +Keep,3,2017,June,24,12,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , NULL, 154,0,Transient,75,0,0,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,33,2017,July,28,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,A,0,No Deposit , NULL, 154,0,Transient,135,0,0,Check-Out,2017-07-14,Summer,2017-07-12T07:00Z +Keep,33,2017,August,34,23,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,A,0,No Deposit , NULL, 154,0,Transient,145,0,0,Check-Out,2017-08-25,Summer,2017-08-23T07:00Z +Keep,143,2016,April,18,26,2,6,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,81,0,1,Check-Out,2016-05-04,Spring,2016-04-26T07:00Z +Keep,12,2016,April,18,30,2,2,2,2,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,132.5,0,0,Check-Out,2016-05-04,Spring,2016-04-30T07:00Z +Keep,9,2016,May,19,2,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,1,0,Check-Out,2016-05-04,Spring,2016-05-02T07:00Z +Keep,78,2016,April,18,30,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2016-05-04,Spring,2016-04-30T07:00Z +Keep,94,2016,April,18,29,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-05-04,Spring,2016-04-29T07:00Z +Keep,145,2017,July,29,16,2,5,2,0,0,BB,GBR,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,145.6,0,2,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,104,2016,April,18,29,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54.56,0,0,Check-Out,2016-05-04,Spring,2016-04-29T07:00Z +Keep,152,2016,May,19,2,1,2,2,0,0,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,47.4,1,1,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,152,2016,May,19,2,1,2,2,0,0,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,41.4,0,1,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,140,2016,April,18,28,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,143,0,0,Check-Out,2016-05-05,Spring,2016-04-28T07:00Z +Keep,113,2016,April,18,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,86.38,0,0,Check-Out,2016-05-05,Spring,2016-04-28T07:00Z +Keep,12,2016,May,19,4,0,1,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 110,0,Transient,78.18,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,29,2016,May,19,2,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,15,2016,May,19,2,1,2,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,1,2016,May,19,4,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,1,2016,May,19,4,0,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,1,2016,May,19,4,0,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,147,2016,May,19,4,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,13,2016,May,19,2,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,1,0,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,7,2016,May,19,4,0,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,90,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,6,2016,May,19,2,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,113,1,0,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,4,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,60.83,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,117,2016,May,19,1,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,47.05,0,0,Check-Out,2016-05-05,Spring,2016-05-01T07:00Z +Keep,35,2016,May,19,2,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,105,0,0,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,4,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,7,2016,May,19,4,0,1,2,0,0,BB,JPN,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 110,0,Transient,80,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,12,2016,May,19,4,0,1,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,68.74,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,6,2016,May,19,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,147,2016,May,19,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,35,2016,May,19,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,105,0,0,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,35,2016,May,19,2,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,105,0,0,Check-Out,2016-05-05,Spring,2016-05-02T07:00Z +Keep,12,2016,May,19,4,0,1,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 110,0,Transient,63,1,0,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,105,2016,May,19,5,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 147, NULL,0,Transient,0,0,1,Check-Out,2016-05-05,Spring,2016-05-05T07:00Z +Keep,137,2016,May,19,1,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 26, NULL,0,Transient,81.82,0,1,Check-Out,2016-05-05,Spring,2016-05-01T07:00Z +Keep,2,2016,May,19,4,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,159,1,1,Check-Out,2016-05-05,Spring,2016-05-04T07:00Z +Keep,0,2016,April,18,29,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,99.29,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,78,2016,April,18,29,2,5,1,0,0,HB,NLD,Groups,TA/TO, 0,0,0,A,A,8,No Deposit , 95, NULL,0,Transient-Party,54,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,78,2016,April,18,29,2,5,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,101,2016,April,18,29,2,5,1,0,0,HB,NLD,Groups,TA/TO, 0,0,0,A,A,9,No Deposit , 95, NULL,0,Transient-Party,54,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,101,2016,April,18,29,2,5,2,0,0,HB,NLD,Groups,TA/TO, 0,0,0,A,A,12,No Deposit , 95, NULL,0,Transient-Party,75,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,143,2016,April,18,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,3,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,35,2016,May,19,2,1,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,111,1,0,Check-Out,2016-05-06,Spring,2016-05-02T07:00Z +Keep,101,2016,April,18,29,2,5,1,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,8,No Deposit , 95, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,3,2016,May,19,1,2,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 337,0,Transient,42,0,0,Check-Out,2016-05-06,Spring,2016-05-01T07:00Z +Keep,10,2016,May,19,3,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2016-05-06,Spring,2016-05-03T07:00Z +Keep,74,2016,May,19,4,0,2,2,0,0,BB,THA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,1,2,Check-Out,2016-05-06,Spring,2016-05-04T07:00Z +Keep,1,2016,April,18,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.67,1,2,Check-Out,2016-05-06,Spring,2016-04-30T07:00Z +Keep,3,2016,May,19,5,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 78, NULL,0,Transient,66,0,0,Check-Out,2016-05-06,Spring,2016-05-05T07:00Z +Keep,29,2016,May,19,3,0,3,2,0,0,BB,ARG,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2016-05-06,Spring,2016-05-03T07:00Z +Keep,1,2016,May,19,3,0,3,1,0,0,BB,ARG,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,115,0,1,Check-Out,2016-05-06,Spring,2016-05-03T07:00Z +Keep,98,2016,April,18,30,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,99,1,2,Check-Out,2016-05-06,Spring,2016-04-30T07:00Z +Keep,16,2016,April,18,29,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 71, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,1,2016,May,19,4,0,2,2,2,0,BB,AUS,Direct,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2016-05-06,Spring,2016-05-04T07:00Z +Keep,1,2016,May,19,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,1,0,Check-Out,2016-05-06,Spring,2016-05-05T07:00Z +Keep,105,2016,May,19,6,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 243, NULL,0,Contract,0,0,0,Check-Out,2016-05-06,Spring,2016-05-06T07:00Z +Keep,91,2016,May,19,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-05-06,Spring,2016-05-04T07:00Z +Keep,35,2016,May,19,2,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,105,0,0,Check-Out,2016-05-06,Spring,2016-05-02T07:00Z +Keep,35,2016,May,19,2,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,105,0,0,Check-Out,2016-05-06,Spring,2016-05-02T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Group,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,102,2016,April,18,29,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,2,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,1,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient,33.15,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,103,2016,May,19,1,2,3,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,7,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-06,Spring,2016-05-01T07:00Z +Keep,101,2016,April,18,29,2,5,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,1,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 71, NULL,0,Transient,48.1,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient-Party,65.1,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,1,2016,May,19,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,56,1,0,Check-Out,2016-05-06,Spring,2016-05-05T07:00Z +Keep,79,2016,April,18,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74.43,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient-Party,65.1,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,16,2016,April,18,29,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 71, NULL,0,Transient-Party,41.4,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,102,2016,April,18,30,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,45.66,0,1,Check-Out,2016-05-06,Spring,2016-04-30T07:00Z +Keep,99,2016,April,18,27,2,7,2,0,0,HB,NLD,Groups,TA/TO, 0,0,0,A,I,9,No Deposit , 95, NULL,0,Transient-Party,71.89,0,0,Check-Out,2016-05-06,Spring,2016-04-27T07:00Z +Keep,101,2016,April,18,29,2,5,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-06,Spring,2016-04-29T07:00Z +Keep,0,2016,May,19,6,0,1,2,0,0,BB,NLD,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,79,0,0,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,212,2016,May,19,4,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-06,Spring,2016-05-04T07:00Z +Keep,104,2016,April,18,28,2,7,2,2,0,BB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,99.22,1,1,Check-Out,2016-05-07,Spring,2016-04-28T07:00Z +Keep,40,2016,April,18,30,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.57,1,1,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,76,2016,May,19,3,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,58.55,1,0,Check-Out,2016-05-07,Spring,2016-05-03T07:00Z +Keep,106,2016,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,43.4,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,87,2016,April,18,30,2,5,2,0,0,HB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,72.9,0,1,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,101,2016,April,18,30,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,51.5,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,103,2016,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.4,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,94,2016,April,18,30,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,49.5,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,98,2016,May,19,2,1,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Contract,33.45,0,1,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,98,2016,May,19,2,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,1,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,99,2016,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,58.38,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,25,2016,May,19,4,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,0,Check-Out,2016-05-07,Spring,2016-05-04T07:00Z +Keep,0,2016,May,19,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,140,2016,May,19,6,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,59,0,0,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,4,2016,May,19,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 104, NULL,0,Transient,63,0,0,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,32,2016,May,19,6,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,32,2016,May,19,6,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient-Party,102,1,1,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,3,2016,May,19,4,0,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,83,1,1,Check-Out,2016-05-07,Spring,2016-05-04T07:00Z +Keep,0,2016,May,19,4,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,1,0,Check-Out,2016-05-07,Spring,2016-05-04T07:00Z +Keep,101,2016,April,18,29,2,6,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-07,Spring,2016-04-29T07:00Z +Keep,101,2016,April,18,29,2,6,2,0,0,BB,BEL,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 95, NULL,0,Transient-Party,48.75,0,0,Check-Out,2016-05-07,Spring,2016-04-29T07:00Z +Keep,78,2016,May,19,4,0,3,3,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,97.2,1,0,Check-Out,2016-05-07,Spring,2016-05-04T07:00Z +Keep,107,2016,April,18,30,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,60.3,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,107,2016,April,18,30,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,60.3,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,3,2016,May,19,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,75,2016,April,18,28,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-05-07,Spring,2016-04-28T07:00Z +Keep,115,2016,April,18,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,67.13,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,108,2016,April,18,30,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,50.93,0,0,Check-Out,2016-05-07,Spring,2016-04-30T07:00Z +Keep,0,2016,May,19,6,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91,0,0,Check-Out,2016-05-07,Spring,2016-05-06T07:00Z +Keep,117,2016,May,19,2,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,75,2016,May,19,2,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,75,2016,May,19,2,1,4,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,99,2016,May,19,3,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-05-07,Spring,2016-05-03T07:00Z +Keep,33,2016,May,19,2,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127,0,0,Check-Out,2016-05-07,Spring,2016-05-02T07:00Z +Keep,2,2016,May,19,1,2,4,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Check-Out,2016-05-07,Spring,2016-05-01T07:00Z +Keep,103,2016,May,19,1,2,5,2,2,0,BB,NLD,Groups,TA/TO, 0,0,0,C,H,7,No Deposit , 95, NULL,0,Transient-Party,72,0,0,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,98,2016,May,19,4,0,4,3,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,66.45,0,2,Check-Out,2016-05-08,Spring,2016-05-04T07:00Z +Keep,3,2016,May,19,2,1,5,2,1,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,121.5,0,0,Check-Out,2016-05-08,Spring,2016-05-02T07:00Z +Keep,0,2016,May,19,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,84.6,0,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,4,2016,May,19,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,60,0,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,97,2016,May,19,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,76.89,0,1,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,109,2016,May,19,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 26, NULL,0,Transient,39.95,0,0,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,153,2016,May,19,5,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,87.5,0,1,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,4,2016,May,19,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,68,0,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,4,2016,May,19,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,68,0,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,151,2016,May,19,1,2,5,2,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,63,0,1,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,1,2016,May,19,6,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109,0,1,Check-Out,2016-05-08,Spring,2016-05-06T07:00Z +Keep,11,2016,June,24,10,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,H,H,0,No Deposit , 261, NULL,0,Transient-Party,176.9,0,1,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,2,2017,March,10,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,E,E,0,No Deposit , 240, NULL,0,Group,95,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,2,2017,March,10,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,E,E,0,No Deposit , 240, NULL,0,Transient-Party,97,1,2,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,2,2016,May,19,7,0,1,2,1,1,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,139,0,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,108,2016,May,19,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,102,2016,May,19,6,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,94,1,2,Check-Out,2016-05-08,Spring,2016-05-06T07:00Z +Keep,102,2016,May,19,6,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,88,0,2,Check-Out,2016-05-08,Spring,2016-05-06T07:00Z +Keep,104,2016,April,18,28,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43,0,0,Check-Out,2016-05-08,Spring,2016-04-28T07:00Z +Keep,93,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,93,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,40,2016,May,19,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,1,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,15,2016,May,19,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,90,1,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,30,2016,May,20,8,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,93,1,0,Check-Out,2016-05-11,Spring,2016-05-08T07:00Z +Keep,21,2016,May,19,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,113,2016,May,19,5,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,41.76,0,0,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,113,2016,May,19,5,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,41.76,0,0,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,104,2016,May,19,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,84.95,0,0,Check-Out,2016-05-08,Spring,2016-05-01T07:00Z +Keep,159,2016,May,19,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,1,2,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,10,2017,February,5,3,0,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,40.5,0,2,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,2,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,78,2016,April,18,28,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,88.4,0,2,Check-Out,2016-05-08,Spring,2016-04-28T07:00Z +Keep,32,2016,May,19,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,I,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,17,2016,May,19,5,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,141,1,0,Check-Out,2016-05-08,Spring,2016-05-05T07:00Z +Keep,113,2016,May,19,7,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-05-08,Spring,2016-05-07T07:00Z +Keep,1,2016,May,20,9,0,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-05-09,Spring,2016-05-09T07:00Z +Keep,1,2016,May,20,10,0,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,100,2016,April,18,28,3,8,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-09,Spring,2016-04-28T07:00Z +Keep,100,2016,April,18,28,3,8,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-09,Spring,2016-04-28T07:00Z +Keep,38,2016,May,19,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,38,2016,May,19,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,38,2016,May,19,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,110,2016,May,19,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,82,2016,May,19,7,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2016-05-09,Spring,2016-05-07T07:00Z +Keep,103,2016,May,19,2,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,46.75,0,0,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,103,2016,May,19,2,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,46.75,0,0,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,29,2016,May,19,6,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,136,2016,May,19,2,2,5,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,78,2016,May,19,7,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,49,0,1,Check-Out,2016-05-09,Spring,2016-05-07T07:00Z +Keep,3,2016,May,19,7,1,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,198,1,1,Check-Out,2016-05-09,Spring,2016-05-07T07:00Z +Keep,81,2016,May,20,8,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-09,Spring,2016-05-08T07:00Z +Keep,109,2016,May,19,2,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,58,0,1,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,27,2016,May,19,6,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,59,2016,May,20,9,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 393, NULL,0,Transient-Party,0,0,1,Check-Out,2016-05-09,Spring,2016-05-09T07:00Z +Keep,89,2016,May,19,1,3,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,42.3,0,0,Check-Out,2016-05-09,Spring,2016-05-01T07:00Z +Keep,44,2016,May,19,7,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 393, NULL,0,Transient-Party,48.6,1,1,Check-Out,2016-05-09,Spring,2016-05-07T07:00Z +Keep,101,2016,April,18,29,3,7,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,A,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-09,Spring,2016-04-29T07:00Z +Keep,109,2016,May,19,2,2,5,2,1,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 71, NULL,0,Transient,72.5,0,2,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,112,2016,May,19,6,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 171, NULL,0,Transient,54.2,0,0,Check-Out,2016-05-09,Spring,2016-05-06T07:00Z +Keep,103,2016,May,19,1,3,5,2,0,0,BB,NLD,Groups,TA/TO, 0,0,0,A,D,6,No Deposit , 95, NULL,0,Transient-Party,47,0,0,Check-Out,2016-05-09,Spring,2016-05-01T07:00Z +Keep,28,2016,May,19,5,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Keep,164,2016,May,19,5,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,44.1,0,1,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Keep,164,2016,May,19,5,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,65.7,0,1,Check-Out,2016-05-09,Spring,2016-05-05T07:00Z +Keep,118,2016,May,19,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 95, NULL,0,Transient,69.4,0,0,Check-Out,2016-05-09,Spring,2016-05-02T07:00Z +Keep,99,2016,April,18,27,3,9,2,0,0,BB,BEL,Groups,TA/TO, 0,0,0,A,I,9,No Deposit , 95, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-09,Spring,2016-04-27T07:00Z +Keep,4,2016,May,19,7,2,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 393, NULL,0,Transient-Party,48.6,0,1,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,30,2016,May,20,8,2,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 135,0,Transient,50,1,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,6,2016,May,20,9,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 336, NULL,0,Transient,58,0,0,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,39,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient,39,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,18,2016,May,20,8,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 135,0,Transient-Party,42,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,146,2016,May,19,6,2,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,44.1,0,0,Check-Out,2016-05-10,Spring,2016-05-06T07:00Z +Keep,146,2016,May,19,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60.2,1,2,Check-Out,2016-05-10,Spring,2016-05-06T07:00Z +Keep,146,2016,May,19,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54.2,0,2,Check-Out,2016-05-10,Spring,2016-05-06T07:00Z +Keep,45,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 393, NULL,0,Transient-Party,64.6,1,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,58,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 393, NULL,0,Transient-Party,54.6,1,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,0,2016,May,20,9,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 51,0,Transient,42,1,0,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,103,2016,April,18,26,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,72.4,0,0,Check-Out,2016-05-10,Spring,2016-04-26T07:00Z +Keep,61,2016,October,41,3,3,8,2,0,0,BB,IRL,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,10,0,0,Check-Out,2016-10-14,Fall,2016-10-03T07:00Z +Keep,40,2016,May,20,8,2,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,56,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,58,2016,May,20,8,2,0,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 393, NULL,0,Transient-Party,75.6,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,58,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 393, NULL,0,Transient-Party,48.6,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,38,2016,May,20,8,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,176,2016,May,20,8,2,0,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,37,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 168, NULL,0,Transient,46,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,0,2016,May,20,9,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,H,0,No Deposit , 406, NULL,0,Transient,80,1,0,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,6,2017,February,8,20,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Group,37,1,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,5,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 393, NULL,0,Transient-Party,54.6,1,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,16,2016,May,20,8,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 393, NULL,0,Transient-Party,48.6,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,46,2016,May,20,9,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,71,1,1,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,19,2016,May,19,7,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,47,0,0,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,164,2016,May,19,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,52.2,0,1,Check-Out,2016-05-10,Spring,2016-05-05T07:00Z +Keep,18,2016,May,20,8,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 135,0,Transient-Party,42,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,82,2016,May,20,8,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 184, NULL,0,Transient,49,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,67,2016,April,18,26,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2016-05-10,Spring,2016-04-26T07:00Z +Keep,4,2016,May,19,7,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94,0,1,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,21,2016,May,20,9,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 135,0,Transient,42,0,0,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,21,2016,May,20,9,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 135,0,Transient,42,0,0,Check-Out,2016-05-10,Spring,2016-05-09T07:00Z +Keep,163,2016,May,19,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,52.2,0,1,Check-Out,2016-05-10,Spring,2016-05-05T07:00Z +Keep,45,2016,May,20,8,2,0,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,129,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,27,2016,May,19,6,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2016-05-10,Spring,2016-05-06T07:00Z +Keep,98,2016,May,19,4,2,4,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.43,1,1,Check-Out,2016-05-10,Spring,2016-05-04T07:00Z +Keep,58,2016,May,20,8,2,0,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,3,No Deposit , 393, NULL,0,Transient-Party,75.6,0,1,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,5,2016,May,20,8,2,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 393, NULL,0,Transient-Party,48.6,0,2,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,12,2016,May,19,7,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,36,2016,May,19,7,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,18,2016,May,20,8,2,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 135,0,Transient-Party,60,0,0,Check-Out,2016-05-10,Spring,2016-05-08T07:00Z +Keep,15,2016,May,19,7,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,52,1,1,Check-Out,2016-05-10,Spring,2016-05-07T07:00Z +Keep,21,2016,May,20,10,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 380,0,Transient,0,0,0,Check-Out,2016-05-10,Spring,2016-05-10T07:00Z +Keep,92,2016,May,19,4,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2016-05-11,Spring,2016-05-04T07:00Z +Keep,108,2016,May,19,2,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 115, NULL,0,Transient,44.07,1,0,Check-Out,2016-05-11,Spring,2016-05-02T07:00Z +Keep,0,2016,May,20,10,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,22,2016,May,20,9,1,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,75,0,1,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,22,2016,May,20,9,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,72,1,1,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,28,2016,May,20,10,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,1,2016,May,20,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,94,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,1,2016,May,20,10,0,1,2,0,0,BB,SGP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,109,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,1,2016,May,20,10,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,109,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,1,2016,May,20,10,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,109,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,1,2016,May,20,10,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,109,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,108,2016,May,19,2,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-05-11,Spring,2016-05-02T07:00Z +Keep,104,2016,May,19,4,2,5,2,0,0,BB,ARM,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,55.3,0,0,Check-Out,2016-05-11,Spring,2016-05-04T07:00Z +Keep,3,2016,May,20,8,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2016-05-11,Spring,2016-05-08T07:00Z +Keep,6,2016,May,20,11,0,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,I,0,No Deposit , NULL, 110,0,Transient,0,0,0,Check-Out,2016-05-11,Spring,2016-05-11T07:00Z +Keep,97,2016,May,20,10,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,0,2016,May,20,9,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,94,0,1,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,21,2016,May,20,9,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,137,0,2,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,31,2016,May,20,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-05-11,Spring,2016-05-10T07:00Z +Keep,37,2016,May,19,7,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-05-11,Spring,2016-05-07T07:00Z +Keep,121,2016,May,19,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-11,Spring,2016-05-04T07:00Z +Keep,0,2016,May,20,9,1,1,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-11,Spring,2016-05-09T07:00Z +Keep,84,2016,April,18,27,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Contract,68.85,0,0,Check-Out,2016-05-11,Spring,2016-04-27T07:00Z +Keep,113,2016,May,20,11,2,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 75, NULL,0,Contract,68.85,0,0,Check-Out,2016-05-20,Spring,2016-05-11T07:00Z +Keep,26,2016,May,19,7,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2016-05-12,Spring,2016-05-07T07:00Z +Keep,108,2016,May,19,5,2,5,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,62.37,0,1,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,73,2016,September,40,26,3,7,2,0,0,BB,IRL,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,82,0,3,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,140,2017,May,18,2,2,7,2,0,0,BB,IRL,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,84,0,3,Check-Out,2017-05-11,Spring,2017-05-02T07:00Z +Keep,46,2016,May,20,8,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 95, NULL,0,Transient,54.2,0,1,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,56,2016,May,19,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.18,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,72,2016,May,19,4,2,6,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,62.45,0,1,Check-Out,2016-05-12,Spring,2016-05-04T07:00Z +Keep,56,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,46.75,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,107,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,1,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,26,2016,May,20,10,0,2,2,0,0,BB,BDI,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,107,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,1,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,40,2016,May,20,9,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-05-12,Spring,2016-05-09T07:00Z +Keep,107,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.18,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,56,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,56,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,103,2016,May,19,1,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Contract,39.04,0,0,Check-Out,2016-05-12,Spring,2016-05-01T07:00Z +Keep,39,2016,May,20,8,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,41.6,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,67,2016,May,19,6,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75.83,0,1,Check-Out,2016-05-12,Spring,2016-05-06T07:00Z +Keep,84,2016,April,17,21,6,15,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,74.18,0,0,Check-Out,2016-05-12,Spring,2016-04-21T07:00Z +Keep,0,2016,May,20,10,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,115,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,58.95,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,52,2016,May,19,1,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Transient,46,0,0,Check-Out,2016-05-12,Spring,2016-05-01T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,59,2016,May,20,8,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,1,2016,May,20,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, 331,0,Transient,72,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,10,2016,June,27,30,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, 331,0,Transient,79,0,0,Check-Out,2016-07-01,Summer,2016-06-30T07:00Z +Keep,6,2017,March,11,13,1,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,A,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,17,2016,May,20,9,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-05-12,Spring,2016-05-09T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,107,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,52,2016,May,19,1,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-01T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,52,2016,May,19,1,4,7,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-12,Spring,2016-05-01T07:00Z +Keep,107,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.18,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,43,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,48,2016,May,20,11,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,95,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,31,2016,May,20,8,2,2,2,0,0,HB,OMN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,31,2016,May,20,8,2,2,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,101.4,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,5,2016,May,20,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,84.6,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,5,2016,May,20,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,84.6,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,5,2016,May,20,11,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,84.6,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,0,2016,May,20,9,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,2,No Deposit , NULL, 99,0,Transient,42,0,0,Check-Out,2016-05-12,Spring,2016-05-09T07:00Z +Keep,8,2016,May,20,8,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,72,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,108,2016,May,19,5,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,41.35,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,54,2016,May,20,9,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 95, NULL,0,Transient,41.4,0,1,Check-Out,2016-05-12,Spring,2016-05-09T07:00Z +Keep,56,2016,May,19,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,72,2016,May,20,11,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,39,2016,May,20,10,0,2,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,136,1,0,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,38,2016,May,19,4,2,6,1,0,0,HB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,146,1,0,Check-Out,2016-05-12,Spring,2016-05-04T07:00Z +Keep,38,2016,May,19,4,2,6,2,0,0,HB,CHE,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,155,0,0,Check-Out,2016-05-12,Spring,2016-05-04T07:00Z +Keep,8,2016,May,20,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,39.5,0,1,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,7,2016,May,20,11,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, 405,0,Transient-Party,70,1,1,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,48,0,1,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,11,2016,May,21,15,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,1,A,C,0,Refundable , NULL, 405,0,Transient-Party,70,0,1,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,41,2016,May,20,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,0,2016,May,20,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,89,2016,May,19,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,43.76,0,0,Check-Out,2016-05-12,Spring,2016-05-05T07:00Z +Keep,7,2016,May,20,11,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, 405,0,Transient-Party,70,0,0,Check-Out,2016-05-12,Spring,2016-05-11T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,11,2016,May,21,15,2,0,2,0,0,BB,GBR,Direct,Direct, 0,0,1,A,C,0,No Deposit , NULL, 405,0,Transient-Party,70,0,0,Check-Out,2016-05-17,Spring,2016-05-15T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 1,0,3,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Direct, 1,0,4,A,D,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,1,2017,April,17,27,0,2,2,0,0,BB,GBR,Corporate,Direct, 1,0,5,A,A,0,No Deposit , NULL, 405,0,Transient,85,0,1,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,6,2016,May,20,8,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,58,0,0,Check-Out,2016-05-12,Spring,2016-05-08T07:00Z +Keep,39,2016,May,20,10,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,95,0,1,Check-Out,2016-05-12,Spring,2016-05-10T07:00Z +Keep,97,2016,May,19,2,3,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,62.73,0,1,Check-Out,2016-05-13,Spring,2016-05-02T07:00Z +Keep,48,2016,May,20,8,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,69.49,0,1,Check-Out,2016-05-13,Spring,2016-05-08T07:00Z +Keep,92,2016,May,20,8,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,63.36,0,0,Check-Out,2016-05-13,Spring,2016-05-08T07:00Z +Keep,1,2016,May,20,12,0,1,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,0,Check-Out,2016-05-13,Spring,2016-05-12T07:00Z +Keep,119,2016,May,20,12,0,1,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-13,Spring,2016-05-12T07:00Z +Keep,40,2016,May,20,9,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,125,0,0,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,119,2016,May,20,12,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-13,Spring,2016-05-12T07:00Z +Keep,4,2016,May,20,8,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,124,0,0,Check-Out,2016-05-13,Spring,2016-05-08T07:00Z +Keep,115,2016,May,20,13,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,0,0,0,Check-Out,2016-05-13,Spring,2016-05-13T07:00Z +Keep,117,2016,May,20,9,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,91.75,0,1,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,87,2016,May,20,9,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.66,0,2,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,87,2016,May,20,9,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,46.16,0,1,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,115,2016,May,20,9,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,115,2016,May,20,9,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,75.25,1,3,Check-Out,2016-05-13,Spring,2016-05-09T07:00Z +Keep,110,2016,May,19,7,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57.8,0,0,Check-Out,2016-05-13,Spring,2016-05-07T07:00Z +Keep,66,2016,May,19,7,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 171, NULL,0,Transient,41.4,0,1,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,23,2016,May,19,7,2,5,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,72,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,72,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,24,2016,May,19,7,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,10,2016,May,20,11,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,141,1,0,Check-Out,2016-05-14,Spring,2016-05-11T07:00Z +Keep,123,2016,May,20,9,1,4,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,75.52,0,2,Check-Out,2016-05-14,Spring,2016-05-09T07:00Z +Keep,59,2016,May,20,8,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-05-14,Spring,2016-05-08T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient,69,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,9,2016,May,20,12,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,H,3,No Deposit , 249, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 249, NULL,0,Transient-Party,67,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 249, NULL,0,Transient-Party,67,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,52,2016,May,20,12,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,4,2016,May,20,9,1,4,2,0,0,BB,POL,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 110,0,Transient,85,0,0,Check-Out,2016-05-14,Spring,2016-05-09T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,67,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,9,2016,May,20,12,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 249, NULL,0,Transient-Party,56.5,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,67,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,9,2016,May,20,12,0,2,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 249, NULL,0,Transient-Party,56.5,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,123,2016,May,20,13,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,H,0,No Deposit , 240, NULL,0,Transient,71.7,1,1,Check-Out,2016-05-14,Spring,2016-05-13T07:00Z +Keep,53,2016,May,19,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54.56,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,468,2016,May,20,12,0,2,2,0,0,HB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 249, NULL,0,Transient-Party,69,0,0,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,163,2016,May,19,5,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,82.31,1,1,Check-Out,2016-05-14,Spring,2016-05-05T07:00Z +Keep,57,2016,May,19,5,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81.33,0,0,Check-Out,2016-05-14,Spring,2016-05-05T07:00Z +Keep,52,2016,May,20,12,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-05-14,Spring,2016-05-12T07:00Z +Keep,4,2016,May,19,7,2,5,2,0,0,SC,AUT,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 15, NULL,0,Transient-Party,0,0,0,Check-Out,2016-05-14,Spring,2016-05-07T07:00Z +Keep,59,2016,May,20,8,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient-Party,126,1,0,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,17,2016,May,20,12,0,3,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,0,2016,May,20,13,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,85,1,0,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 315, NULL,0,Transient-Party,43.33,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,120,2016,May,20,11,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.7,1,1,Check-Out,2016-05-15,Spring,2016-05-11T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,I,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,207,2016,May,20,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.2,0,2,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,102,2016,May,20,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,58.4,0,0,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,101,2016,May,20,14,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-05-15,Spring,2016-05-14T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,Refundable , NULL, NULL,0,Transient-Party,76,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,4,2016,May,20,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-05-15,Spring,2016-05-14T07:00Z +Keep,30,2016,May,20,13,0,2,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,135,0,0,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,9,2016,May,20,11,0,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,124.33,1,1,Check-Out,2016-05-15,Spring,2016-05-11T07:00Z +Keep,112,2016,May,19,6,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57.8,0,0,Check-Out,2016-05-15,Spring,2016-05-06T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,11,2016,May,21,15,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,0,2016,May,20,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,119,1,1,Check-Out,2016-05-15,Spring,2016-05-14T07:00Z +Keep,13,2016,May,20,8,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 147, NULL,0,Transient,55.87,0,0,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,11,2016,May,21,15,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,77,2016,May,20,10,0,5,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,34,1,1,Check-Out,2016-05-15,Spring,2016-05-10T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,2,2016,May,21,15,1,0,1,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 405, 405,0,Group,76,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,79,2016,May,20,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,236,2016,May,20,12,0,3,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , 315, NULL,0,Transient-Party,66,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,C,C,1,Refundable , NULL, NULL,0,Transient-Party,99,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,0,2016,May,20,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109,0,0,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,1,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,236,2016,May,20,12,0,3,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Transient-Party,66,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,3,2016,May,21,15,1,0,1,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,D,0,Refundable , 405, 405,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,113,2016,May,19,7,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,57.8,0,0,Check-Out,2016-05-15,Spring,2016-05-07T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,0,2016,May,21,16,1,0,1,0,0,BB,GBR,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,85,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,72,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,110,2016,May,20,8,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,50.06,0,1,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,81,2016,May,20,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,109,2016,May,19,6,2,7,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,50.06,0,1,Check-Out,2016-05-15,Spring,2016-05-06T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,0,2016,May,20,14,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-05-15,Spring,2016-05-14T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,76,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,11,2016,May,21,15,2,0,2,0,0,BB,POL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient,76,1,0,Check-Out,2016-05-17,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,9,2016,May,21,15,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Group,70,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,0,2016,October,41,5,0,1,1,0,0,BB,GBR,Direct,TA/TO, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,95,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,2,A,D,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,4,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,46,1,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,39,2016,October,44,23,1,0,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,4,A,D,0,No Deposit , 327, NULL,0,Transient,39,1,0,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,117,2016,May,19,5,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60.44,0,0,Check-Out,2016-05-15,Spring,2016-05-05T07:00Z +Keep,59,2016,May,20,8,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient-Party,120,0,0,Check-Out,2016-05-15,Spring,2016-05-08T07:00Z +Keep,0,2016,May,20,13,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,85,1,0,Check-Out,2016-05-15,Spring,2016-05-13T07:00Z +Keep,103,2016,May,19,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 243, NULL,0,Contract,38.83,0,0,Check-Out,2016-05-15,Spring,2016-05-01T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,0,2016,May,21,15,1,0,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,A,D,0,Refundable , 405, 405,0,Group,70,0,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,236,2016,May,20,12,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-05-15,Spring,2016-05-12T07:00Z +Keep,0,2016,May,21,15,1,0,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,A,D,0,Refundable , 405, 405,0,Group,70,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,87,2016,May,20,9,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-05-16,Spring,2016-05-09T07:00Z +Keep,186,2016,May,20,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-16,Spring,2016-05-09T07:00Z +Keep,235,2016,May,20,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2016-05-16,Spring,2016-05-09T07:00Z +Keep,72,2016,May,20,12,1,3,3,0,0,BB,GBR,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,160,0,0,Check-Out,2016-05-16,Spring,2016-05-12T07:00Z +Keep,44,2016,May,20,13,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,125,1,0,Check-Out,2016-05-16,Spring,2016-05-13T07:00Z +Keep,90,2016,May,19,2,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,65.07,0,0,Check-Out,2016-05-16,Spring,2016-05-02T07:00Z +Keep,111,2016,May,21,15,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,5,2016,May,20,11,1,4,2,2,0,BB,GBR,Corporate,Corporate, 0,0,0,C,C,1,No Deposit , NULL, 405,0,Transient-Party,0,1,0,Check-Out,2016-05-16,Spring,2016-05-11T07:00Z +Keep,5,2016,May,20,11,1,4,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2016-05-16,Spring,2016-05-11T07:00Z +Keep,0,2016,May,21,16,1,0,1,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,2,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,141,2016,May,21,15,1,0,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,52.56,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,1,2016,May,20,14,1,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,1,0,Check-Out,2016-05-16,Spring,2016-05-14T07:00Z +Keep,0,2016,May,21,15,1,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,135,1,0,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,6,2016,May,21,15,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,I,2,No Deposit , 240, NULL,0,Transient,96,0,1,Check-Out,2016-05-16,Spring,2016-05-15T07:00Z +Keep,7,2016,May,21,16,3,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,96,0,1,Check-Out,2016-05-27,Spring,2016-05-16T07:00Z +Keep,26,2016,May,19,7,3,6,2,0,0,SC,PRT,Groups,TA/TO, 0,0,0,A,I,1,No Deposit , 15, NULL,2,Transient-Party,0,0,0,Check-Out,2016-05-16,Spring,2016-05-07T07:00Z +Keep,1,2016,May,21,17,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 331,0,Transient-Party,63,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,1,2016,May,21,17,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 331,0,Transient-Party,63,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,75,2016,May,20,10,2,5,2,0,0,HB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,114.3,1,0,Check-Out,2016-05-17,Spring,2016-05-10T07:00Z +Keep,0,2016,May,21,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 339, NULL,0,Transient,56,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,3,2016,May,21,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,56,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,90,2016,May,20,10,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2016-05-17,Spring,2016-05-10T07:00Z +Keep,175,2016,May,20,10,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,54.56,0,0,Check-Out,2016-05-17,Spring,2016-05-10T07:00Z +Keep,0,2016,May,21,16,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient,39,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,4,2016,May,21,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,1,2016,May,20,14,2,1,2,2,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,1,0,Check-Out,2016-05-17,Spring,2016-05-14T07:00Z +Keep,0,2016,May,21,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 168,0,Transient,62.5,1,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,2,2016,June,27,26,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,I,0,No Deposit , 339, NULL,0,Transient,108,1,0,Check-Out,2016-06-28,Summer,2016-06-26T07:00Z +Keep,1,2016,June,27,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,C,1,No Deposit , 168, NULL,0,Transient,96,0,0,Check-Out,2016-06-29,Summer,2016-06-28T07:00Z +Keep,0,2017,March,10,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,A,1,No Deposit , 168, NULL,0,Transient,48,0,1,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,0,2017,April,14,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,4,D,D,0,No Deposit , 168, NULL,0,Transient,85.5,0,1,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,106,2016,May,20,10,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,1,Check-Out,2016-05-17,Spring,2016-05-10T07:00Z +Keep,6,2016,May,20,14,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109,0,1,Check-Out,2016-05-17,Spring,2016-05-14T07:00Z +Keep,12,2016,May,21,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,70,1,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,13,2016,October,44,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 146, NULL,0,Group,39,1,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,A,3,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,140,2016,May,20,14,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,66.98,1,1,Check-Out,2016-05-17,Spring,2016-05-14T07:00Z +Keep,175,2016,May,20,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,1,Check-Out,2016-05-17,Spring,2016-05-10T07:00Z +Keep,47,2016,May,21,16,1,0,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,61,2016,May,20,13,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78.25,0,1,Check-Out,2016-05-17,Spring,2016-05-13T07:00Z +Keep,116,2016,May,20,13,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,3,Check-Out,2016-05-17,Spring,2016-05-13T07:00Z +Keep,1,2016,May,20,14,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 306, NULL,0,Transient,53.82,1,0,Check-Out,2016-05-17,Spring,2016-05-14T07:00Z +Keep,6,2016,May,21,17,0,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,I,0,No Deposit , NULL, 110,0,Transient,0,0,2,Check-Out,2016-05-17,Spring,2016-05-17T07:00Z +Keep,3,2016,May,21,16,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 323,0,Transient,50,0,0,Check-Out,2016-05-17,Spring,2016-05-16T07:00Z +Keep,116,2016,May,20,13,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2016-05-17,Spring,2016-05-13T07:00Z +Keep,92,2016,May,20,8,4,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.7,0,2,Check-Out,2016-05-17,Spring,2016-05-08T07:00Z +Keep,105,2016,May,20,13,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-05-18,Spring,2016-05-13T07:00Z +Keep,113,2016,May,19,7,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,78.94,0,1,Check-Out,2016-05-18,Spring,2016-05-07T07:00Z +Keep,119,2016,May,20,11,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,64.79,0,0,Check-Out,2016-05-18,Spring,2016-05-11T07:00Z +Keep,3,2016,May,20,13,2,3,2,0,1,BB,PRT,Direct,Direct, 0,0,0,G,G,4,No Deposit , 250, NULL,0,Transient,131.1,1,2,Check-Out,2016-05-18,Spring,2016-05-13T07:00Z +Keep,4,2016,May,20,14,2,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 110,0,Transient,85.5,0,2,Check-Out,2016-05-18,Spring,2016-05-14T07:00Z +Keep,160,2016,May,21,17,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-18,Spring,2016-05-17T07:00Z +Keep,11,2016,May,21,16,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, 178,0,Transient,42,0,0,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,7,2017,April,14,5,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,E,0,No Deposit , NULL, 178,0,Transient,48,0,0,Check-Out,2017-04-06,Spring,2017-04-05T07:00Z +Keep,11,2016,May,21,16,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 178,0,Transient,50,0,1,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,7,2017,April,14,5,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,E,0,No Deposit , NULL, 178,0,Transient,48,0,1,Check-Out,2017-04-06,Spring,2017-04-05T07:00Z +Keep,55,2016,May,21,17,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-18,Spring,2016-05-17T07:00Z +Keep,140,2016,May,20,14,2,2,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,0,1,Check-Out,2016-05-18,Spring,2016-05-14T07:00Z +Keep,18,2016,May,21,18,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-05-18,Spring,2016-05-18T07:00Z +Keep,90,2016,May,20,10,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,70.4,0,0,Check-Out,2016-05-18,Spring,2016-05-10T07:00Z +Keep,0,2016,May,21,16,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,79.2,0,1,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,138,2016,May,21,16,1,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 242, NULL,0,Transient,65.7,0,1,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,138,2016,May,21,16,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,79.2,0,1,Check-Out,2016-05-18,Spring,2016-05-16T07:00Z +Keep,142,2016,May,20,8,4,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,1,Check-Out,2016-05-18,Spring,2016-05-08T07:00Z +Keep,99,2016,May,21,15,2,1,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,61,0,2,Check-Out,2016-05-18,Spring,2016-05-15T07:00Z +Keep,124,2016,May,21,18,0,4,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-05-22,Spring,2016-05-18T07:00Z +Keep,90,2016,May,21,18,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-05-18,Spring,2016-05-18T07:00Z +Keep,91,2016,May,20,9,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,91.36,0,0,Check-Out,2016-05-19,Spring,2016-05-09T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,1,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 248, NULL,0,Transient-Party,39,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,2,0,0,BB,FRA,Groups,TA/TO, 0,0,0,A,B,0,No Deposit , 248, NULL,0,Transient-Party,46,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,40,2016,May,21,17,0,2,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,H,0,No Deposit , 248, NULL,0,Transient-Party,39,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,84,2016,May,20,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-05-19,Spring,2016-05-12T07:00Z +Keep,114,2016,May,20,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,1,No Deposit , 243, NULL,0,Contract,73.75,0,0,Check-Out,2016-05-19,Spring,2016-05-12T07:00Z +Keep,107,2016,May,19,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,38.83,0,0,Check-Out,2016-05-19,Spring,2016-05-05T07:00Z +Keep,107,2016,May,19,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.18,0,2,Check-Out,2016-05-19,Spring,2016-05-05T07:00Z +Keep,114,2016,May,20,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 243, NULL,0,Contract,62.4,0,0,Check-Out,2016-05-19,Spring,2016-05-12T07:00Z +Keep,110,2016,May,20,8,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-05-19,Spring,2016-05-08T07:00Z +Keep,8,2016,May,21,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,27,2016,November,48,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-11-25,Fall,2016-11-23T08:00Z +Keep,121,2016,May,19,7,4,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,48.06,0,1,Check-Out,2016-05-19,Spring,2016-05-07T07:00Z +Keep,107,2016,May,19,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,2,Check-Out,2016-05-19,Spring,2016-05-05T07:00Z +Keep,2,2016,May,21,18,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 92,0,Transient,42,0,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,12,2016,May,21,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,40,0,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,12,2016,May,21,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,40,1,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,1,2016,May,21,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,64,0,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,61,2016,May,21,16,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-05-19,Spring,2016-05-16T07:00Z +Keep,64,2016,May,21,19,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,64,2016,May,21,19,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,107,2016,May,19,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,2,Check-Out,2016-05-19,Spring,2016-05-05T07:00Z +Keep,21,2016,May,21,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,23,2016,May,21,19,0,3,3,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,34,2016,May,21,17,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 104, NULL,0,Transient,59.4,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,29,2016,May,21,17,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, 104,0,Transient,94.5,0,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,19,2016,May,21,16,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,135,0,0,Check-Out,2016-05-19,Spring,2016-05-16T07:00Z +Keep,19,2016,May,21,16,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,141,1,0,Check-Out,2016-05-19,Spring,2016-05-16T07:00Z +Keep,19,2016,May,21,16,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,135,0,0,Check-Out,2016-05-19,Spring,2016-05-16T07:00Z +Keep,6,2016,May,21,18,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,56,1,0,Check-Out,2016-05-19,Spring,2016-05-18T07:00Z +Keep,145,2016,May,20,9,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.2,0,2,Check-Out,2016-05-19,Spring,2016-05-09T07:00Z +Keep,14,2016,May,21,17,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,142,1,0,Check-Out,2016-05-19,Spring,2016-05-17T07:00Z +Keep,108,2016,May,20,14,2,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,97.2,1,1,Check-Out,2016-05-19,Spring,2016-05-14T07:00Z +Keep,1,2016,May,21,16,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-05-19,Spring,2016-05-16T07:00Z +Keep,0,2016,May,21,19,0,0,2,0,0,BB,CN,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-05-19,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,87.05,0,0,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,99,2016,May,20,11,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-05-20,Spring,2016-05-11T07:00Z +Keep,21,2016,May,21,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,0,2016,May,21,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 16,0,Transient-Party,72,1,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,56,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,1,2016,May,21,19,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,44,2016,May,21,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,1,1,Check-Out,2016-05-20,Spring,2016-05-18T07:00Z +Keep,1,2016,May,21,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 323,0,Transient,42,0,0,Check-Out,2016-05-20,Spring,2016-05-18T07:00Z +Keep,0,2016,November,49,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 323,0,Transient,30,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,5,2017,May,22,29,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,E,0,No Deposit , NULL, 428,0,Transient,45,0,0,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,3,2016,May,21,16,1,3,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,45,1,0,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,29,2016,December,51,13,0,2,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 112,0,Transient,36,1,0,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,3,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,1,No Deposit , NULL, 112,0,Transient,38.5,1,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,0,2016,May,21,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 16,0,Transient-Party,72,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,16,1,3,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,42,1,0,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,36,2016,May,21,16,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,0,2016,May,21,19,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 95, NULL,0,Transient,46,0,1,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,0,2016,May,21,19,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,119,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,0,2016,May,21,19,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,89,1,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,2,2016,May,21,15,2,3,2,3,0,BB,PRT,Corporate,Corporate, 0,0,0,H,H,1,No Deposit , NULL, 110,0,Transient,140,1,3,Check-Out,2016-05-20,Spring,2016-05-15T07:00Z +Keep,41,2016,May,21,16,1,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,125,0,0,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,112,2016,May,21,17,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-05-20,Spring,2016-05-17T07:00Z +Keep,2,2016,May,21,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 10, NULL,0,Transient,72,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,5,2016,May,21,19,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,81,2016,May,21,17,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2016-05-20,Spring,2016-05-17T07:00Z +Keep,123,2016,May,21,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.2,1,2,Check-Out,2016-05-20,Spring,2016-05-15T07:00Z +Keep,35,2016,May,20,14,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,53.87,0,0,Check-Out,2016-05-20,Spring,2016-05-14T07:00Z +Keep,7,2016,May,21,15,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2016-05-20,Spring,2016-05-15T07:00Z +Keep,204,2016,May,20,12,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,101.7,0,0,Check-Out,2016-05-20,Spring,2016-05-12T07:00Z +Keep,3,2016,May,21,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,70,1,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94,0,0,Check-Out,2016-05-20,Spring,2016-05-19T07:00Z +Keep,0,2017,July,27,3,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 10, NULL,0,Transient,129,0,1,Check-Out,2017-07-04,Summer,2017-07-03T07:00Z +Keep,76,2016,May,20,12,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78.25,0,2,Check-Out,2016-05-20,Spring,2016-05-12T07:00Z +Keep,25,2016,May,21,16,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,135,0,2,Check-Out,2016-05-20,Spring,2016-05-16T07:00Z +Keep,4,2016,May,21,20,0,0,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-05-20,Spring,2016-05-20T07:00Z +Keep,96,2016,May,20,14,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,55,0,0,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,46,2016,May,21,20,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,73.15,1,1,Check-Out,2016-05-21,Spring,2016-05-20T07:00Z +Keep,48,2016,May,21,20,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,83,1,0,Check-Out,2016-05-21,Spring,2016-05-20T07:00Z +Keep,31,2016,May,21,20,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,59,0,0,Check-Out,2016-05-21,Spring,2016-05-20T07:00Z +Keep,23,2016,May,21,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,93,1,0,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,2,2016,May,21,19,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,3,2016,May,21,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,69.2,1,0,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,4,2016,May,21,18,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,119,0,0,Check-Out,2016-05-21,Spring,2016-05-18T07:00Z +Keep,25,2016,May,21,15,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,117,0,2,Check-Out,2016-05-21,Spring,2016-05-15T07:00Z +Keep,25,2016,May,21,15,2,4,1,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,115,0,1,Check-Out,2016-05-21,Spring,2016-05-15T07:00Z +Keep,33,2016,May,21,15,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2016-05-21,Spring,2016-05-15T07:00Z +Keep,33,2016,May,21,15,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,91.67,0,1,Check-Out,2016-05-21,Spring,2016-05-15T07:00Z +Keep,6,2016,May,21,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94,0,1,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,80,2016,May,21,19,0,2,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,137,1,0,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,0,2016,May,21,17,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101,0,0,Check-Out,2016-05-21,Spring,2016-05-17T07:00Z +Keep,173,2016,May,20,14,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.16,0,1,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,129,2016,May,20,14,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,63.36,0,0,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,173,2016,May,20,14,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.16,0,1,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,173,2016,May,20,14,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.16,0,1,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,3,2016,May,21,19,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,I,1,No Deposit , 240, NULL,0,Transient,96,1,0,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,2,2016,May,21,21,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2016-05-22,Spring,2016-05-21T07:00Z +Keep,2,2016,May,20,14,2,5,2,1,0,BB,FIN,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 110,0,Transient,91,1,2,Check-Out,2016-05-21,Spring,2016-05-14T07:00Z +Keep,6,2016,May,21,19,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,I,1,No Deposit , 240, NULL,0,Transient,109,0,1,Check-Out,2016-05-21,Spring,2016-05-19T07:00Z +Keep,2,2016,May,21,21,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-05-22,Spring,2016-05-21T07:00Z +Keep,86,2016,May,21,18,0,4,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 75, NULL,0,Transient,72.9,0,0,Check-Out,2016-05-22,Spring,2016-05-18T07:00Z +Keep,110,2016,May,20,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.61,0,0,Check-Out,2016-05-22,Spring,2016-05-08T07:00Z +Keep,117,2016,May,21,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Keep,83,2016,May,21,15,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76.43,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Keep,13,2016,May,21,18,0,4,2,0,1,BB,IND,Online travel agent,TA/TO, 0,0,0,D,E,2,No Deposit , 240, NULL,0,Transient,94,0,1,Check-Out,2016-05-22,Spring,2016-05-18T07:00Z +Keep,99,2016,May,21,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Keep,60,2016,May,21,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,53.99,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Keep,20,2016,May,21,19,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107,0,1,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,117,2016,May,21,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-22,Spring,2016-05-15T07:00Z +Keep,101,2016,May,21,17,0,5,1,0,0,BB,ESP,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, 382,0,Transient,0,0,0,Check-Out,2016-05-22,Spring,2016-05-17T07:00Z +Keep,73,2016,May,21,16,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,127.3,0,0,Check-Out,2016-05-22,Spring,2016-05-16T07:00Z +Keep,114,2016,May,21,20,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,3,2016,May,21,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,95,1,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,3,2016,May,21,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,89,0,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,5,2016,May,21,21,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,79,1,0,Check-Out,2016-05-22,Spring,2016-05-21T07:00Z +Keep,1,2016,May,21,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,29,2016,May,21,20,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,110,0,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,7,2016,May,21,19,0,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,198,1,0,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,122,2016,May,21,17,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient,83.13,1,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,101,2016,May,21,17,0,5,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, 382,0,Transient,5.2,0,0,Check-Out,2016-05-22,Spring,2016-05-17T07:00Z +Keep,23,2016,May,21,19,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,115,0,2,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,11,2016,May,21,19,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,4,2016,May,21,20,0,2,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,142,1,1,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,178,2016,May,21,20,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,103,0,1,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,2,2016,May,21,18,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-05-22,Spring,2016-05-18T07:00Z +Keep,4,2016,May,21,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,115,1,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,5,2016,May,21,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2016-05-22,Spring,2016-05-21T07:00Z +Keep,17,2016,May,21,19,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2016-05-22,Spring,2016-05-19T07:00Z +Keep,62,2016,May,22,22,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,Direct, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,45.1,0,0,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,44,2016,May,21,20,0,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,189,1,0,Check-Out,2016-05-22,Spring,2016-05-20T07:00Z +Keep,2,2016,May,22,22,1,0,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,189,1,0,Check-Out,2016-05-23,Spring,2016-05-22T07:00Z +Keep,73,2016,May,21,19,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,75.9,0,1,Check-Out,2016-05-23,Spring,2016-05-19T07:00Z +Keep,189,2016,May,21,16,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 315, NULL,0,Transient-Party,82.95,0,1,Check-Out,2016-05-23,Spring,2016-05-16T07:00Z +Keep,1,2016,May,22,22,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2016-05-23,Spring,2016-05-22T07:00Z +Keep,165,2016,May,22,22,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-05-23,Spring,2016-05-22T07:00Z +Keep,83,2016,May,21,18,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,95.6,1,1,Check-Out,2016-05-23,Spring,2016-05-18T07:00Z +Keep,17,2016,May,20,13,3,7,2,0,0,HB,DEU,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,106,1,0,Check-Out,2016-05-23,Spring,2016-05-13T07:00Z +Keep,132,2016,May,21,17,1,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.7,1,1,Check-Out,2016-05-23,Spring,2016-05-17T07:00Z +Keep,36,2016,May,21,18,1,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2016-05-23,Spring,2016-05-18T07:00Z +Keep,193,2016,May,21,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient,63,0,1,Check-Out,2016-05-23,Spring,2016-05-16T07:00Z +Keep,68,2016,May,21,20,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-05-23,Spring,2016-05-20T07:00Z +Keep,128,2016,May,20,14,3,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,3,Check-Out,2016-05-23,Spring,2016-05-14T07:00Z +Keep,0,2016,May,22,22,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,89,0,0,Check-Out,2016-05-23,Spring,2016-05-22T07:00Z +Keep,74,2016,May,20,14,3,6,2,0,0,BB,POL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-05-23,Spring,2016-05-14T07:00Z +Keep,76,2016,May,21,18,1,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,179,1,0,Check-Out,2016-05-23,Spring,2016-05-18T07:00Z +Keep,128,2016,May,20,14,3,6,2,0,1,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,65.7,0,3,Check-Out,2016-05-23,Spring,2016-05-14T07:00Z +Keep,129,2016,May,22,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-05-23,Spring,2016-05-23T07:00Z +Keep,126,2016,May,21,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.2,0,2,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,119,2016,May,20,14,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,0,0,Check-Out,2016-05-24,Spring,2016-05-14T07:00Z +Keep,173,2016,May,21,19,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-24,Spring,2016-05-19T07:00Z +Keep,143,2016,May,21,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,67.4,0,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,125,2016,May,21,17,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,41.76,0,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,129,2016,May,21,21,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,129,2016,May,21,21,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,92,2016,May,21,17,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,38,2016,May,21,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,7,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,6,2016,May,22,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 83,0,Transient,42,0,0,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,0,2016,May,22,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 92,0,Transient,42,0,0,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,2,2016,May,22,23,1,0,2,0,0,BB,POL,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 110, NULL,0,Transient-Party,85,0,2,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,6,2016,May,22,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 399,0,Transient,63,0,0,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,217,2016,May,21,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,56.96,0,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,47,2016,May,21,21,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,106.33,1,1,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,47,2016,May,21,21,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,105,0,1,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,5,2016,May,22,23,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,86,1,0,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,86,2016,May,22,22,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,96,1,1,Check-Out,2016-05-24,Spring,2016-05-22T07:00Z +Keep,101,2016,May,21,17,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,2,2016,May,22,23,1,0,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 110, NULL,0,Transient-Party,85,0,3,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,2,2016,May,22,23,1,0,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , 110, NULL,0,Transient-Party,85,0,3,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,97,2016,May,22,22,2,0,2,0,1,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,58,1,1,Check-Out,2016-05-24,Spring,2016-05-22T07:00Z +Keep,5,2016,May,21,21,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,95,1,1,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,80,2016,May,21,19,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,68.2,1,1,Check-Out,2016-05-24,Spring,2016-05-19T07:00Z +Keep,87,2016,May,21,21,2,1,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,125.33,0,2,Check-Out,2016-05-24,Spring,2016-05-21T07:00Z +Keep,133,2016,May,21,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,65.36,0,0,Check-Out,2016-05-24,Spring,2016-05-17T07:00Z +Keep,18,2016,May,21,20,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,47,0,0,Check-Out,2016-05-24,Spring,2016-05-20T07:00Z +Keep,0,2016,May,22,22,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 323,0,Transient,42,0,0,Check-Out,2016-05-24,Spring,2016-05-22T07:00Z +Keep,0,2016,May,22,22,2,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-05-24,Spring,2016-05-22T07:00Z +Keep,68,2016,May,21,18,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 314, NULL,0,Transient,74.4,1,0,Check-Out,2016-05-24,Spring,2016-05-18T07:00Z +Keep,0,2016,May,22,23,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2016-05-24,Spring,2016-05-23T07:00Z +Keep,0,2016,June,23,2,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,G,0,No Deposit , NULL, NULL,0,Transient,100,1,1,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,119,2016,May,21,18,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,41.75,0,0,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,71,2016,May,21,18,2,5,2,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,78,0,0,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,129,2016,May,22,22,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,65.7,0,2,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,106,2016,May,21,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 95, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,165,2016,May,21,17,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,52.2,0,2,Check-Out,2016-05-25,Spring,2016-05-17T07:00Z +Keep,17,2016,May,22,22,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,96,0,1,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,133,2016,May,21,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,68,2016,May,21,21,2,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,40.96,0,1,Check-Out,2016-05-25,Spring,2016-05-21T07:00Z +Keep,116,2016,May,21,18,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 177, NULL,0,Transient-Party,75.6,0,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,116,2016,May,21,18,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient-Party,95.93,0,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,32,2016,May,21,18,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,121,1,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,18,2016,May,22,24,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 184, NULL,0,Transient,66.5,0,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,27,2016,May,22,24,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,127,2016,May,22,24,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 242, NULL,0,Transient,71.7,1,1,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,148,2016,May,22,24,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,132,2016,May,21,18,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.7,1,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,77,2016,May,21,18,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,66.51,0,0,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,40,2016,May,22,23,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,111,1,2,Check-Out,2016-05-25,Spring,2016-05-23T07:00Z +Keep,129,2016,May,22,22,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,71.7,1,2,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,127,2016,May,22,24,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,45.05,0,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,69,2016,May,22,24,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,95,1,0,Check-Out,2016-05-25,Spring,2016-05-24T07:00Z +Keep,64,2016,May,22,23,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-05-25,Spring,2016-05-23T07:00Z +Keep,132,2016,May,21,16,3,6,2,0,0,HB,MYS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,66.8,0,0,Check-Out,2016-05-25,Spring,2016-05-16T07:00Z +Keep,66,2016,May,21,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,70.92,0,0,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,133,2016,May,21,20,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,58.2,1,1,Check-Out,2016-05-25,Spring,2016-05-20T07:00Z +Keep,24,2016,May,22,22,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,3,2016,May,22,22,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-05-25,Spring,2016-05-22T07:00Z +Keep,17,2016,May,22,23,1,1,3,0,0,BB,FRA,Direct,Direct, 0,0,0,E,H,0,No Deposit , 250, NULL,0,Transient,169,0,1,Check-Out,2016-05-25,Spring,2016-05-23T07:00Z +Keep,84,2016,May,21,18,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-05-25,Spring,2016-05-18T07:00Z +Keep,104,2016,May,21,17,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2016-05-26,Spring,2016-05-17T07:00Z +Keep,143,2016,May,21,17,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,0,Check-Out,2016-05-26,Spring,2016-05-17T07:00Z +Keep,101,2016,May,21,21,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,58,0,1,Check-Out,2016-05-26,Spring,2016-05-21T07:00Z +Keep,154,2016,May,21,17,2,7,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.2,1,1,Check-Out,2016-05-26,Spring,2016-05-17T07:00Z +Keep,154,2016,May,21,17,2,7,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.2,0,1,Check-Out,2016-05-26,Spring,2016-05-17T07:00Z +Keep,121,2016,May,21,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,63.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,114,2016,May,20,12,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-05-26,Spring,2016-05-12T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,63.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,118,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,121,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.18,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,127,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,79,2016,May,21,21,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-05-26,Spring,2016-05-21T07:00Z +Keep,88,2016,May,22,24,0,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2016-05-26,Spring,2016-05-24T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.75,0,1,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,121,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,114,2016,May,21,19,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,44.45,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,80,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,56.72,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,70,2016,May,21,19,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,41.71,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,121,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,39.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,114,2016,May,20,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,38.83,0,0,Check-Out,2016-05-26,Spring,2016-05-12T07:00Z +Keep,124,2016,May,21,16,3,7,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,81.05,0,0,Check-Out,2016-05-26,Spring,2016-05-16T07:00Z +Keep,106,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,1,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,69,2016,May,22,25,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,80.85,1,0,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,100,2016,May,22,25,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.75,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,97,2016,May,22,22,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,142,2016,May,22,25,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,39.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,97,2016,May,22,22,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 243, NULL,0,Contract,69.4,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,113,2016,May,22,25,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,132,2016,May,21,17,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.2,0,0,Check-Out,2016-05-26,Spring,2016-05-17T07:00Z +Keep,141,2016,May,22,25,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,70,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,55,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,94,2016,May,21,21,2,3,2,1,0,Undefined,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,193,0,1,Check-Out,2016-05-26,Spring,2016-05-21T07:00Z +Keep,141,2016,May,22,25,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,74,2016,May,22,23,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 15, NULL,0,Transient,58.2,1,1,Check-Out,2016-05-26,Spring,2016-05-23T07:00Z +Keep,36,2016,May,22,23,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,75,1,1,Check-Out,2016-05-26,Spring,2016-05-23T07:00Z +Keep,36,2016,May,22,23,1,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,75,0,1,Check-Out,2016-05-26,Spring,2016-05-23T07:00Z +Keep,117,2016,May,21,21,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,3,Check-Out,2016-05-26,Spring,2016-05-21T07:00Z +Keep,97,2016,May,22,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-05-26,Spring,2016-05-24T07:00Z +Keep,49,2016,May,22,25,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 360, NULL,0,Transient-Party,105,0,1,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,53,2016,May,22,22,2,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,173,2016,May,21,19,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,75.6,0,0,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,113,2016,May,21,18,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,41.4,0,0,Check-Out,2016-05-26,Spring,2016-05-18T07:00Z +Keep,49,2016,May,22,25,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 360, NULL,0,Transient-Party,105,0,1,Check-Out,2016-05-26,Spring,2016-05-25T07:00Z +Keep,9,2016,May,22,26,0,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-05-26,Spring,2016-05-26T07:00Z +Keep,28,2016,May,21,19,2,5,3,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,79.9,0,2,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,120,2016,May,22,22,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,66.8,0,1,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,117,2016,May,21,15,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,39.4,0,0,Check-Out,2016-05-26,Spring,2016-05-15T07:00Z +Keep,112,2016,May,21,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,39.4,0,1,Check-Out,2016-05-26,Spring,2016-05-19T07:00Z +Keep,117,2016,May,21,15,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,74.39,0,0,Check-Out,2016-05-26,Spring,2016-05-15T07:00Z +Keep,102,2016,May,22,23,1,2,2,1,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,78.93,0,2,Check-Out,2016-05-26,Spring,2016-05-23T07:00Z +Keep,114,2016,May,20,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 243, NULL,0,Contract,48.75,0,1,Check-Out,2016-05-26,Spring,2016-05-12T07:00Z +Keep,1,2016,May,22,26,1,3,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,99,0,1,Check-Out,2016-05-30,Spring,2016-05-26T07:00Z +Keep,251,2017,May,19,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,2,D,D,0,No Deposit , 243, NULL,0,Contract,52.85,0,2,Check-Out,2017-05-22,Spring,2017-05-08T07:00Z +Keep,120,2016,May,22,22,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,66.8,0,0,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,48,2016,May,22,22,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-05-26,Spring,2016-05-22T07:00Z +Keep,45,2016,May,21,21,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-05-27,Spring,2016-05-21T07:00Z +Keep,37,2016,May,21,18,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2016-05-27,Spring,2016-05-18T07:00Z +Keep,93,2016,May,21,18,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,90,0,3,Check-Out,2016-05-27,Spring,2016-05-18T07:00Z +Keep,52,2016,May,22,22,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,85.16,0,1,Check-Out,2016-05-27,Spring,2016-05-22T07:00Z +Keep,126,2016,May,22,25,0,2,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,66.98,1,1,Check-Out,2016-05-27,Spring,2016-05-25T07:00Z +Keep,57,2016,May,22,26,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,95,0,0,Check-Out,2016-05-27,Spring,2016-05-26T07:00Z +Keep,89,2016,May,21,18,2,7,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,106.7,0,1,Check-Out,2016-05-27,Spring,2016-05-18T07:00Z +Keep,14,2016,May,22,22,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2016-05-27,Spring,2016-05-22T07:00Z +Keep,25,2016,May,22,25,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,91,1,1,Check-Out,2016-05-27,Spring,2016-05-25T07:00Z +Keep,90,2016,May,22,22,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2016-05-27,Spring,2016-05-22T07:00Z +Keep,65,2016,May,21,20,2,5,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Transient,77.5,0,0,Check-Out,2016-05-27,Spring,2016-05-20T07:00Z +Keep,1,2016,May,22,26,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 20,0,Transient,58,0,0,Check-Out,2016-05-27,Spring,2016-05-26T07:00Z +Keep,0,2016,May,22,26,0,1,2,0,0,BB,ESP,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,119,0,1,Check-Out,2016-05-27,Spring,2016-05-26T07:00Z +Keep,76,2016,May,21,20,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,133.14,1,3,Check-Out,2016-05-27,Spring,2016-05-20T07:00Z +Keep,76,2016,May,21,20,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,127.14,0,5,Check-Out,2016-05-27,Spring,2016-05-20T07:00Z +Keep,64,2016,May,22,25,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,87.5,0,0,Check-Out,2016-05-27,Spring,2016-05-25T07:00Z +Keep,64,2016,May,22,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,87.5,0,1,Check-Out,2016-05-27,Spring,2016-05-25T07:00Z +Keep,124,2016,May,21,21,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,54.56,0,0,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,126,2016,May,21,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,147,2016,May,21,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81.2,0,2,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,136,2016,May,21,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,39,2016,May,22,25,0,3,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,140,0,0,Check-Out,2016-05-28,Spring,2016-05-25T07:00Z +Keep,94,2016,May,21,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,10,2016,May,22,26,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,0,0,Check-Out,2016-05-28,Spring,2016-05-26T07:00Z +Keep,39,2016,May,22,26,0,2,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,0,0,Check-Out,2016-05-28,Spring,2016-05-26T07:00Z +Keep,125,2016,May,22,22,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.66,0,1,Check-Out,2016-05-28,Spring,2016-05-22T07:00Z +Keep,128,2016,May,21,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,52.59,0,1,Check-Out,2016-05-28,Spring,2016-05-21T07:00Z +Keep,183,2016,May,22,26,0,2,2,0,0,HB,ARG,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,75.75,1,1,Check-Out,2016-05-28,Spring,2016-05-26T07:00Z +Keep,83,2016,May,22,24,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,83.93,0,1,Check-Out,2016-05-28,Spring,2016-05-24T07:00Z +Keep,123,2016,May,22,23,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,52.56,0,0,Check-Out,2016-05-28,Spring,2016-05-23T07:00Z +Keep,125,2016,May,22,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.75,0,0,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,176,2016,May,22,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,48.06,0,1,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,126,2016,May,21,21,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,50.06,0,1,Check-Out,2016-05-29,Spring,2016-05-21T07:00Z +Keep,152,2016,May,22,26,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65.7,0,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,72,2016,May,22,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.75,0,0,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,4,2016,May,22,28,0,1,1,0,0,HB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 408,0,Transient,65,0,0,Check-Out,2016-05-29,Spring,2016-05-28T07:00Z +Keep,94,2016,May,22,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Contract,58.75,0,0,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,7,2016,May,22,27,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,0,1,Check-Out,2016-05-29,Spring,2016-05-27T07:00Z +Keep,44,2016,May,22,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,90,0,0,Check-Out,2016-05-29,Spring,2016-05-27T07:00Z +Keep,71,2016,May,22,25,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient,54.06,1,0,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,24,2016,May,22,25,0,4,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,90,0,0,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,9,2016,May,22,27,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2016-05-29,Spring,2016-05-27T07:00Z +Keep,7,2016,May,22,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2016-05-29,Spring,2016-05-27T07:00Z +Keep,3,2016,May,22,26,0,3,2,1,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,150,1,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Cancel,6,2016,May,23,29,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,I,0,No Deposit , 250, NULL,0,Transient,0,0,0,Canceled,2016-05-29,Spring,2016-05-29T07:00Z +Keep,0,2016,May,22,28,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2016-05-29,Spring,2016-05-28T07:00Z +Keep,133,2016,May,22,26,0,3,2,0,0,FB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,139,1,0,Check-Out,2016-05-29,Spring,2016-05-26T07:00Z +Keep,104,2016,May,22,25,0,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,2,Check-Out,2016-05-29,Spring,2016-05-25T07:00Z +Keep,257,2016,May,22,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.4,0,1,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,109,2016,May,22,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,47.13,0,1,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,122,2016,May,22,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,54.2,0,1,Check-Out,2016-05-29,Spring,2016-05-22T07:00Z +Keep,3,2016,May,22,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,195,1,2,Check-Out,2016-05-29,Spring,2016-05-28T07:00Z +Keep,10,2016,May,23,30,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,87,2016,May,21,19,3,8,2,0,0,FB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 96, NULL,0,Transient,135.49,0,0,Check-Out,2016-05-30,Spring,2016-05-19T07:00Z +Keep,87,2016,May,21,19,3,8,2,0,0,FB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,134.4,0,0,Check-Out,2016-05-30,Spring,2016-05-19T07:00Z +Keep,223,2016,May,22,24,1,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,52,2,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,141,2016,May,22,24,1,5,2,2,0,BB,BEL,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,99.8,1,0,Check-Out,2016-05-30,Spring,2016-05-24T07:00Z +Keep,100,2016,May,22,25,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,77.4,0,1,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,172,2016,May,23,29,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,H,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,0,2016,May,23,29,1,0,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,46,0,0,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,0,2016,May,23,29,1,0,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,46,0,0,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,0,2016,May,22,28,1,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,122,1,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,6,2016,May,23,29,1,0,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,94,0,0,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,3,2016,May,23,29,1,0,2,0,0,BB,MEX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,0,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,139,2016,May,22,23,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,63.5,0,0,Check-Out,2016-05-30,Spring,2016-05-23T07:00Z +Keep,224,2016,May,22,25,1,4,2,1,0,BB,GBR,Groups,Direct, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,91.1,1,0,Check-Out,2016-05-30,Spring,2016-05-25T07:00Z +Keep,126,2016,May,22,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.75,0,1,Check-Out,2016-05-30,Spring,2016-05-23T07:00Z +Keep,4,2016,May,23,29,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,0,1,Check-Out,2016-05-30,Spring,2016-05-29T07:00Z +Keep,11,2017,February,7,18,0,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 1,0,1,C,C,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,39,2016,May,22,28,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,121,0,1,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,5,2016,May,22,28,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2016-05-30,Spring,2016-05-28T07:00Z +Keep,42,2016,May,23,30,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,150.43,1,0,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Cancel,85,2016,August,34,14,4,10,2,1,0,BB,GBR,Direct,Direct, 0,1,1,C,C,0,No Deposit , 250, NULL,0,Group,217.14,0,2,Canceled,2016-06-06,Summer,2016-08-14T07:00Z +Keep,250,2016,May,22,23,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,59.73,0,0,Check-Out,2016-05-30,Spring,2016-05-23T07:00Z +Keep,131,2016,May,23,31,2,8,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,76,0,0,Check-Out,2016-06-10,Spring,2016-05-31T07:00Z +Keep,95,2016,May,22,24,2,5,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 127, NULL,0,Transient,100.42,0,0,Check-Out,2016-05-31,Spring,2016-05-24T07:00Z +Keep,132,2016,May,22,25,2,4,2,2,0,BB,GBR,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,106.3,1,0,Check-Out,2016-05-31,Spring,2016-05-25T07:00Z +Keep,0,2016,May,23,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,0,2016,July,32,31,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,C,0,No Deposit , NULL, NULL,0,Transient,155,1,0,Check-Out,2016-08-01,Summer,2016-07-31T07:00Z +Keep,132,2016,May,22,26,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,57.8,0,1,Check-Out,2016-05-31,Spring,2016-05-26T07:00Z +Keep,10,2016,May,23,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,56,0,0,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,144,2016,May,21,18,4,9,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,79.05,0,0,Check-Out,2016-05-31,Spring,2016-05-18T07:00Z +Keep,106,2017,May,19,7,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,Direct, 1,0,1,A,A,0,No Deposit , 40, NULL,0,Contract,34.2,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,136,2016,May,23,29,2,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68,1,0,Check-Out,2016-05-31,Spring,2016-05-29T07:00Z +Keep,6,2016,May,23,30,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,69,0,1,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,3,2016,December,51,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,1,2016,May,23,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79,0,0,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,59,2016,May,23,29,2,0,3,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,3,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2016-05-31,Spring,2016-05-29T07:00Z +Keep,0,2016,May,23,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,69,0,0,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,131,2016,May,22,24,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,83,0,0,Check-Out,2016-05-31,Spring,2016-05-24T07:00Z +Keep,7,2016,May,23,30,1,0,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,101,1,1,Check-Out,2016-05-31,Spring,2016-05-30T07:00Z +Keep,0,2016,May,23,29,2,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 306, NULL,0,Transient,42.51,1,0,Check-Out,2016-05-31,Spring,2016-05-29T07:00Z +Keep,0,2016,May,23,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,57,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,57,2016,May,23,31,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,4,2016,May,23,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,5,2016,October,42,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,41,2016,May,23,31,0,1,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 251,0,Transient,78,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,101,2016,May,22,27,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,62.82,1,1,Check-Out,2016-06-01,Spring,2016-05-27T07:00Z +Keep,102,2016,May,22,27,2,3,2,0,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,71.2,0,1,Check-Out,2016-06-01,Spring,2016-05-27T07:00Z +Keep,7,2016,May,23,29,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,101.67,0,1,Check-Out,2016-06-01,Spring,2016-05-29T07:00Z +Keep,7,2016,May,23,31,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,68,2016,May,23,30,1,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,65,2016,May,23,30,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,0,2016,May,23,31,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,1,2016,May,23,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,79,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,135,2016,May,23,29,2,1,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,78.56,0,1,Check-Out,2016-06-01,Spring,2016-05-29T07:00Z +Keep,13,2016,May,23,31,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,105,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,0,2016,May,23,31,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 306, NULL,0,Transient,47.23,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,7,2016,May,23,30,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-06-01,Spring,2016-05-30T07:00Z +Keep,13,2016,May,22,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,55.87,0,0,Check-Out,2016-06-01,Spring,2016-05-25T07:00Z +Cancel,131,2016,October,43,18,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,1,1,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Canceled,2016-06-09,Fall,2016-10-18T07:00Z +Keep,0,2016,May,23,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,109,0,0,Check-Out,2016-06-01,Spring,2016-05-31T07:00Z +Keep,133,2016,May,22,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,133,2016,May,22,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,100,2016,May,22,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,61.61,0,0,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,2,2016,May,23,31,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,95.02,0,2,Check-Out,2016-06-02,Spring,2016-05-31T07:00Z +Keep,121,2016,May,21,19,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-06-02,Spring,2016-05-19T07:00Z +Keep,0,2016,May,23,30,1,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,101,1,0,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,179,2016,June,23,1,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,179,2016,June,23,1,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,179,2016,June,23,1,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,2,2016,May,23,30,1,2,1,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,68.8,0,0,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,1,2016,May,23,30,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76,1,1,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,45,2016,May,23,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,125,2016,June,23,1,0,1,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,57.6,1,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,125,2016,June,23,1,0,1,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,57.6,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,0,2016,June,23,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,77,1,1,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,2,2016,June,23,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient,65,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,61,2017,May,21,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,1,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,2,2016,June,23,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,127,2016,May,22,25,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,52.5,0,2,Check-Out,2016-06-02,Spring,2016-05-25T07:00Z +Keep,1,2016,May,23,31,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 339, NULL,0,Transient,89.2,0,0,Check-Out,2016-06-02,Spring,2016-05-31T07:00Z +Keep,11,2016,May,23,30,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.67,1,1,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,132,2016,May,22,26,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,73.14,0,0,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,131,2016,May,22,25,2,6,2,0,1,BB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,94.14,0,1,Check-Out,2016-06-02,Spring,2016-05-25T07:00Z +Keep,4,2016,May,23,30,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,63.2,0,0,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,193,2016,May,22,25,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55.28,0,2,Check-Out,2016-06-02,Spring,2016-05-25T07:00Z +Keep,71,2016,May,23,31,0,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,81.69,1,0,Check-Out,2016-06-02,Spring,2016-05-31T07:00Z +Keep,163,2016,May,23,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,84.15,0,1,Check-Out,2016-06-02,Spring,2016-05-29T07:00Z +Keep,136,2016,May,22,26,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,74.53,1,1,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,136,2016,May,22,26,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,68.53,0,1,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,21,2016,May,23,30,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100.67,1,1,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,4,2016,May,23,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Check-Out,2016-06-02,Spring,2016-05-29T07:00Z +Keep,15,2017,June,25,18,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-20,Summer,2017-06-18T07:00Z +Keep,97,2016,June,23,1,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-02,Summer,2016-06-01T07:00Z +Keep,0,2016,May,23,30,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 339, NULL,0,Transient,89.2,0,0,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,125,2016,May,22,22,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,77.9,0,0,Check-Out,2016-06-02,Spring,2016-05-22T07:00Z +Keep,141,2016,May,22,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,56.82,0,0,Check-Out,2016-06-02,Spring,2016-05-26T07:00Z +Keep,69,2016,May,23,30,1,2,2,0,1,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,114,0,2,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,191,2016,May,22,23,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,64.94,0,1,Check-Out,2016-06-02,Spring,2016-05-23T07:00Z +Keep,21,2016,May,23,30,1,2,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,82.67,1,0,Check-Out,2016-06-02,Spring,2016-05-30T07:00Z +Keep,0,2016,June,23,2,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-06-02,Summer,2016-06-02T07:00Z +Keep,142,2016,May,22,27,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,83.94,0,1,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,142,2016,May,22,27,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,83.09,0,1,Check-Out,2016-06-03,Spring,2016-05-27T07:00Z +Keep,0,2016,May,23,30,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,62,2016,June,23,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,107,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,147,2016,June,23,1,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,77.83,1,0,Check-Out,2016-06-03,Summer,2016-06-01T07:00Z +Keep,62,2016,June,23,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,128,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,36,2016,May,23,30,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,0,2016,May,23,30,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,62,2016,June,23,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,128,0,1,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,62,2016,June,23,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,107,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,111,2016,June,23,2,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,62,2016,June,23,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,107,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,176,2016,June,23,2,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,252,2016,June,23,1,0,2,2,0,0,BB,URY,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,92,1,2,Check-Out,2016-06-03,Summer,2016-06-01T07:00Z +Keep,1,2016,June,23,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,2,No Deposit , NULL, NULL,0,Transient,109,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,37,2016,June,23,2,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,21,2016,June,23,2,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,F,0,No Deposit , NULL, 92,0,Transient,63,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,21,2016,June,23,2,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,E,0,No Deposit , NULL, 92,0,Transient,63,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,2,2016,June,23,1,0,2,3,1,0,BB,SAU,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,171,1,0,Check-Out,2016-06-03,Summer,2016-06-01T07:00Z +Keep,104,2016,May,23,30,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,25,2016,May,23,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.5,0,1,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,42,2016,May,23,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91,1,2,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,11,2017,May,21,27,2,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,102,1,2,Check-Out,2017-05-30,Spring,2017-05-27T07:00Z +Keep,165,2016,May,22,28,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,63.3,0,1,Check-Out,2016-06-03,Spring,2016-05-28T07:00Z +Keep,45,2016,June,23,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2016-06-03,Summer,2016-06-02T07:00Z +Keep,79,2016,May,23,30,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99.5,1,1,Check-Out,2016-06-03,Spring,2016-05-30T07:00Z +Keep,112,2016,June,23,1,0,2,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,83,0,0,Check-Out,2016-06-03,Summer,2016-06-01T07:00Z +Keep,118,2016,May,23,31,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,56.1,0,0,Check-Out,2016-06-04,Spring,2016-05-31T07:00Z +Keep,137,2016,May,23,29,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,62.48,0,1,Check-Out,2016-06-04,Spring,2016-05-29T07:00Z +Keep,146,2016,May,23,31,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,134.5,0,1,Check-Out,2016-06-04,Spring,2016-05-31T07:00Z +Keep,146,2016,May,23,31,0,4,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,117.63,0,1,Check-Out,2016-06-04,Spring,2016-05-31T07:00Z +Keep,0,2016,June,23,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,109,0,0,Check-Out,2016-06-04,Summer,2016-06-03T07:00Z +Keep,40,2016,May,23,30,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,8,2016,May,23,31,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125,1,0,Check-Out,2016-06-04,Spring,2016-05-31T07:00Z +Keep,4,2016,June,23,4,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,81,1,0,Check-Out,2016-06-05,Summer,2016-06-04T07:00Z +Keep,137,2016,May,23,30,1,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,106.38,0,2,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,137,2016,May,23,30,1,4,1,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,106.38,0,2,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,1,2016,June,23,2,0,2,1,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,161,1,0,Check-Out,2016-06-04,Summer,2016-06-02T07:00Z +Keep,2,2016,June,23,4,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Group,124,0,0,Check-Out,2016-06-05,Summer,2016-06-04T07:00Z +Keep,63,2016,May,23,30,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,95.6,0,1,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,105,2016,May,23,30,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,84.2,0,1,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,134,2016,May,23,31,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.5,1,1,Check-Out,2016-06-04,Spring,2016-05-31T07:00Z +Keep,101,2016,May,23,30,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.6,0,0,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,124,2016,May,22,28,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-04,Spring,2016-05-28T07:00Z +Keep,63,2016,May,23,30,1,4,2,1,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,215.6,1,1,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,143,2016,May,22,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76.19,0,1,Check-Out,2016-06-04,Spring,2016-05-28T07:00Z +Keep,17,2016,June,23,3,0,1,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,181,1,0,Check-Out,2016-06-04,Summer,2016-06-03T07:00Z +Keep,133,2016,May,23,30,1,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.2,0,0,Check-Out,2016-06-04,Spring,2016-05-30T07:00Z +Keep,74,2016,May,22,28,2,5,3,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient,130.29,0,0,Check-Out,2016-06-04,Spring,2016-05-28T07:00Z +Keep,137,2016,June,23,3,0,1,2,0,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient,70.11,0,2,Check-Out,2016-06-04,Summer,2016-06-03T07:00Z +Keep,150,2016,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,73.71,0,2,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,133,2016,June,23,2,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,0,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,34,2016,June,23,2,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,168.33,1,0,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,34,2016,June,23,2,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,157,0,0,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,117,2016,May,23,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,63.61,0,0,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,143,2016,June,23,2,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,115,2016,May,23,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,70.2,0,1,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,128,2016,June,23,3,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,1,1,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,117,2016,May,23,30,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,75.1,0,1,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,0,2016,June,23,4,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133,1,1,Check-Out,2016-06-05,Summer,2016-06-04T07:00Z +Keep,29,2016,May,22,27,2,7,1,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,146.11,0,0,Check-Out,2016-06-05,Spring,2016-05-27T07:00Z +Keep,19,2016,June,23,3,0,2,2,1,0,HB,ESP,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,206.1,1,1,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,132,2016,May,23,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,132,2016,May,23,29,2,5,1,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 243, NULL,0,Contract,71.83,0,1,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,177,2016,May,23,29,2,5,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135.57,0,1,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,177,2016,May,23,29,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,126.29,0,1,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,174,2016,May,23,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.01,0,2,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,108,2016,June,23,3,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,115.5,1,1,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,156,2016,May,23,30,1,5,2,0,0,BB,SGP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,50.36,0,1,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,130,2016,June,23,3,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,0,2,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,19,2016,June,23,3,0,2,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,181,1,0,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,14,2016,June,23,1,0,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,1,Check-Out,2016-06-05,Summer,2016-06-01T07:00Z +Keep,156,2016,May,23,30,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,52.36,0,1,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,46,2016,June,23,3,0,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,100.4,0,0,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,0,2016,June,23,3,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,1,1,Check-Out,2016-06-05,Summer,2016-06-03T07:00Z +Keep,128,2016,June,23,1,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2016-06-05,Summer,2016-06-01T07:00Z +Keep,258,2016,May,23,30,1,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,56.29,0,0,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,28,2016,May,23,29,2,5,2,0,0,HB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,148.07,0,0,Check-Out,2016-06-05,Spring,2016-05-29T07:00Z +Keep,45,2016,May,23,30,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,115,1,2,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,210,2016,June,23,2,0,3,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,129.44,0,1,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,30,2016,May,23,30,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.67,1,1,Check-Out,2016-06-05,Spring,2016-05-30T07:00Z +Keep,111,2016,June,23,2,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-06-05,Summer,2016-06-02T07:00Z +Keep,88,2016,May,23,30,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 171, NULL,0,Transient,59.6,0,0,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Keep,143,2016,June,23,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-06,Summer,2016-06-02T07:00Z +Keep,195,2016,June,23,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-06,Summer,2016-06-02T07:00Z +Keep,149,2016,May,22,27,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,73.28,0,2,Check-Out,2016-06-06,Spring,2016-05-27T07:00Z +Keep,73,2016,May,23,31,1,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,5,No Deposit , 240, NULL,0,Transient,136.5,1,0,Check-Out,2016-06-06,Spring,2016-05-31T07:00Z +Keep,16,2016,June,23,4,1,1,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,186,1,0,Check-Out,2016-06-06,Summer,2016-06-04T07:00Z +Keep,93,2016,June,23,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-06-06,Summer,2016-06-02T07:00Z +Keep,150,2016,June,23,4,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,2,Check-Out,2016-06-06,Summer,2016-06-04T07:00Z +Keep,2,2016,June,24,5,1,0,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,I,0,No Deposit , NULL, NULL,0,Transient,174,0,1,Check-Out,2016-06-06,Summer,2016-06-05T07:00Z +Keep,8,2016,June,24,6,1,1,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,174,0,1,Check-Out,2016-06-08,Summer,2016-06-06T07:00Z +Keep,8,2016,June,23,4,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,109,0,0,Check-Out,2016-06-06,Summer,2016-06-04T07:00Z +Keep,119,2016,June,23,3,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,116,1,0,Check-Out,2016-06-06,Summer,2016-06-03T07:00Z +Keep,42,2016,June,23,4,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,1,0,Check-Out,2016-06-06,Summer,2016-06-04T07:00Z +Keep,108,2016,June,23,2,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2016-06-06,Summer,2016-06-02T07:00Z +Keep,76,2016,May,23,30,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,109.45,1,1,Check-Out,2016-06-06,Spring,2016-05-30T07:00Z +Keep,197,2016,June,23,1,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-06,Summer,2016-06-01T07:00Z +Keep,16,2016,June,23,4,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-06-06,Summer,2016-06-04T07:00Z +Keep,189,2016,June,23,1,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,51.84,0,0,Check-Out,2016-06-06,Summer,2016-06-01T07:00Z +Keep,30,2016,June,23,3,1,2,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,1,0,Check-Out,2016-06-06,Summer,2016-06-03T07:00Z +Keep,126,2016,May,22,23,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,2,Check-Out,2016-06-06,Spring,2016-05-23T07:00Z +Keep,143,2016,June,24,6,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-06-06,Summer,2016-06-06T07:00Z +Keep,0,2016,June,24,6,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,I,0,No Deposit , 250, NULL,0,Transient,0,0,3,Check-Out,2016-06-06,Summer,2016-06-06T07:00Z +Keep,132,2016,May,23,29,4,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,132.67,0,2,Check-Out,2016-06-07,Spring,2016-05-29T07:00Z +Keep,138,2016,May,23,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,81.85,0,0,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,0,2016,June,24,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 413,0,Transient,75,0,0,Check-Out,2016-06-07,Summer,2016-06-06T07:00Z +Keep,146,2016,May,23,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.17,0,1,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,107,2016,June,23,1,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,2,Check-Out,2016-06-07,Summer,2016-06-01T07:00Z +Keep,141,2016,May,23,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient-Party,71.17,0,1,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,123,2016,May,23,31,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,141,2016,May,23,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 143, NULL,0,Transient,86.7,0,2,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,141,2016,May,23,31,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,85.33,0,1,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,141,2016,May,23,31,2,5,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,3,No Deposit , 143, NULL,0,Transient,107.1,0,2,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,107,2016,June,23,1,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,3,No Deposit , NULL, NULL,0,Transient-Party,77.75,0,0,Check-Out,2016-06-07,Summer,2016-06-01T07:00Z +Keep,35,2016,May,23,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,67.79,0,0,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,102,2016,May,22,28,4,6,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,59.91,0,1,Check-Out,2016-06-07,Spring,2016-05-28T07:00Z +Keep,100,2016,June,23,1,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,117.9,0,0,Check-Out,2016-06-07,Summer,2016-06-01T07:00Z +Keep,137,2016,May,23,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.86,0,2,Check-Out,2016-06-07,Spring,2016-05-31T07:00Z +Keep,4,2016,June,24,7,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 47,0,Transient,0,0,0,Check-Out,2016-06-07,Summer,2016-06-07T07:00Z +Keep,128,2016,May,22,25,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,106.4,0,0,Check-Out,2016-06-08,Spring,2016-05-25T07:00Z +Keep,75,2016,May,23,29,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,90,0,1,Check-Out,2016-06-08,Spring,2016-05-29T07:00Z +Keep,240,2017,June,23,4,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,87.68,0,0,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,133,2016,June,24,6,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,63.75,0,0,Check-Out,2016-06-08,Summer,2016-06-06T07:00Z +Keep,129,2016,June,24,5,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,73.6,1,2,Check-Out,2016-06-08,Summer,2016-06-05T07:00Z +Keep,129,2016,June,24,5,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.6,0,2,Check-Out,2016-06-08,Summer,2016-06-05T07:00Z +Keep,124,2016,June,24,6,1,1,3,0,0,BB,USA,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,135,0,2,Check-Out,2016-06-08,Summer,2016-06-06T07:00Z +Keep,124,2016,June,24,6,1,1,3,0,0,BB,USA,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,135,0,2,Check-Out,2016-06-08,Summer,2016-06-06T07:00Z +Keep,137,2016,June,23,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,59.31,0,0,Check-Out,2016-06-08,Summer,2016-06-01T07:00Z +Keep,38,2016,June,23,3,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,116.6,0,1,Check-Out,2016-06-08,Summer,2016-06-03T07:00Z +Keep,38,2016,June,23,3,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,126.6,1,1,Check-Out,2016-06-08,Summer,2016-06-03T07:00Z +Keep,116,2016,May,23,30,3,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,90,0,0,Check-Out,2016-06-08,Spring,2016-05-30T07:00Z +Keep,16,2016,June,23,3,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111,0,1,Check-Out,2016-06-08,Summer,2016-06-03T07:00Z +Keep,131,2016,June,23,1,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,57.6,0,0,Check-Out,2016-06-08,Summer,2016-06-01T07:00Z +Keep,11,2016,June,24,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,109,1,1,Check-Out,2016-06-08,Summer,2016-06-07T07:00Z +Keep,117,2016,May,23,30,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 115, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-08,Spring,2016-05-30T07:00Z +Keep,36,2016,June,23,4,2,2,2,0,0,SC,PRT,Direct,Direct, 0,0,0,F,I,2,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-06-08,Summer,2016-06-04T07:00Z +Keep,105,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,77.85,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,105,2016,June,23,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,38,2016,June,23,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121.4,0,1,Check-Out,2016-06-09,Summer,2016-06-04T07:00Z +Keep,104,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,1,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,136,2016,May,23,30,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64.78,0,1,Check-Out,2016-06-09,Spring,2016-05-30T07:00Z +Keep,125,2016,June,23,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,111,2016,May,23,30,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-09,Spring,2016-05-30T07:00Z +Keep,187,2016,June,23,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,86,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,104,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,1,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,97,2016,October,44,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 40, NULL,0,Group,85,0,1,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,21,2016,June,24,5,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-06-09,Summer,2016-06-05T07:00Z +Keep,118,2016,June,24,8,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-09,Summer,2016-06-08T07:00Z +Keep,71,2016,June,24,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,1,1,Check-Out,2016-06-09,Summer,2016-06-06T07:00Z +Keep,86,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,88.9,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,86,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,0,2016,June,23,4,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,G,1,No Deposit , 242, NULL,0,Transient,120,0,0,Check-Out,2016-06-09,Summer,2016-06-04T07:00Z +Keep,118,2016,June,24,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-09,Summer,2016-06-08T07:00Z +Keep,143,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,70.98,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,108,2016,June,24,6,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.6,0,1,Check-Out,2016-06-09,Summer,2016-06-06T07:00Z +Keep,53,2016,June,24,7,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-09,Summer,2016-06-07T07:00Z +Keep,123,2016,June,23,4,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,57.6,0,0,Check-Out,2016-06-09,Summer,2016-06-04T07:00Z +Keep,133,2016,June,23,2,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,55.44,0,2,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,42,2016,June,24,7,0,2,3,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,206,1,0,Check-Out,2016-06-09,Summer,2016-06-07T07:00Z +Keep,41,2016,June,24,5,2,2,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,200,1,0,Check-Out,2016-06-09,Summer,2016-06-05T07:00Z +Keep,135,2016,June,23,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,59.31,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,38,2016,June,24,6,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-09,Summer,2016-06-06T07:00Z +Keep,26,2016,May,23,31,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,162.33,0,0,Check-Out,2016-06-09,Spring,2016-05-31T07:00Z +Keep,240,2016,June,23,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 143, NULL,0,Contract,77.65,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,113,2016,June,23,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,59.31,0,0,Check-Out,2016-06-09,Summer,2016-06-02T07:00Z +Keep,9,2016,June,24,5,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,142,1,0,Check-Out,2016-06-09,Summer,2016-06-05T07:00Z +Keep,132,2016,June,23,1,2,7,3,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,1,No Deposit , 71, NULL,0,Transient,138.17,0,1,Check-Out,2016-06-10,Summer,2016-06-01T07:00Z +Keep,119,2016,June,23,1,2,7,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-06-10,Summer,2016-06-01T07:00Z +Keep,10,2016,June,24,6,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,114,0,0,Check-Out,2016-06-10,Summer,2016-06-06T07:00Z +Keep,129,2016,June,24,6,1,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,105,0,2,Check-Out,2016-06-10,Summer,2016-06-06T07:00Z +Keep,139,2016,June,24,5,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,94.9,0,0,Check-Out,2016-06-10,Summer,2016-06-05T07:00Z +Keep,21,2016,June,23,4,2,4,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,122.33,0,1,Check-Out,2016-06-10,Summer,2016-06-04T07:00Z +Keep,146,2016,June,23,1,2,7,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,100.8,0,1,Check-Out,2016-06-10,Summer,2016-06-01T07:00Z +Keep,142,2016,June,23,4,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2016-06-10,Summer,2016-06-04T07:00Z +Keep,170,2016,June,23,3,2,5,2,0,0,BB,LTU,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,93.5,1,2,Check-Out,2016-06-10,Summer,2016-06-03T07:00Z +Keep,8,2016,June,24,8,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 154,0,Transient,66,0,0,Check-Out,2016-06-10,Summer,2016-06-08T07:00Z +Keep,122,2016,June,23,3,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,83,0,0,Check-Out,2016-06-10,Summer,2016-06-03T07:00Z +Keep,155,2016,June,24,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,64.76,0,1,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,1,2016,June,24,9,0,1,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,131,0,0,Check-Out,2016-06-10,Summer,2016-06-09T07:00Z +Keep,147,2016,June,24,6,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,84.6,0,0,Check-Out,2016-06-10,Summer,2016-06-06T07:00Z +Keep,27,2016,June,24,6,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114,0,2,Check-Out,2016-06-10,Summer,2016-06-06T07:00Z +Keep,142,2016,June,23,3,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,0,0,Check-Out,2016-06-10,Summer,2016-06-03T07:00Z +Keep,107,2016,June,24,5,2,3,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,156,1,1,Check-Out,2016-06-10,Summer,2016-06-05T07:00Z +Keep,1,2016,June,24,9,0,1,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,119,0,0,Check-Out,2016-06-10,Summer,2016-06-09T07:00Z +Keep,59,2016,June,24,8,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,110,0,0,Check-Out,2016-06-10,Summer,2016-06-08T07:00Z +Keep,59,2016,June,24,8,0,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,119,0,0,Check-Out,2016-06-10,Summer,2016-06-08T07:00Z +Keep,80,2016,June,24,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118.4,1,0,Check-Out,2016-06-10,Summer,2016-06-05T07:00Z +Keep,160,2016,June,23,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,76.5,0,0,Check-Out,2016-06-10,Summer,2016-06-03T07:00Z +Keep,1,2016,June,24,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-06-10,Summer,2016-06-09T07:00Z +Keep,132,2016,June,24,7,0,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86.5,0,1,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,146,2016,June,23,1,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-11,Summer,2016-06-01T07:00Z +Keep,24,2016,June,24,7,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,131,2016,June,23,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,88.7,0,0,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,242,2016,June,23,4,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,62.9,0,1,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,12,2016,June,24,8,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,90.67,0,0,Check-Out,2016-06-11,Summer,2016-06-08T07:00Z +Keep,197,2016,June,23,1,2,8,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Transient,114.9,0,0,Check-Out,2016-06-11,Summer,2016-06-01T07:00Z +Keep,23,2016,June,23,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,126.71,0,2,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,197,2016,June,23,1,2,8,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Transient,114.9,0,0,Check-Out,2016-06-11,Summer,2016-06-01T07:00Z +Keep,0,2016,June,24,7,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.85,0,0,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,1,2016,June,24,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,120,1,0,Check-Out,2016-06-11,Summer,2016-06-10T07:00Z +Keep,14,2016,June,24,9,0,2,2,0,0,BB,KWT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,173,1,1,Check-Out,2016-06-11,Summer,2016-06-09T07:00Z +Keep,27,2016,June,24,9,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,141,1,1,Check-Out,2016-06-11,Summer,2016-06-09T07:00Z +Keep,7,2016,June,27,30,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,1,Check-Out,2016-07-02,Summer,2016-06-30T07:00Z +Keep,140,2016,June,23,2,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,76.5,0,0,Check-Out,2016-06-11,Summer,2016-06-02T07:00Z +Keep,150,2016,June,24,6,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90.68,1,0,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,134,2016,June,23,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,12,2016,June,24,5,2,4,3,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,202.67,1,0,Check-Out,2016-06-11,Summer,2016-06-05T07:00Z +Keep,117,2016,June,24,6,1,4,2,0,0,BB,POL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,72.18,0,1,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,150,2016,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,73.71,0,2,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,5,2016,June,24,9,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,139.05,1,1,Check-Out,2016-06-11,Summer,2016-06-09T07:00Z +Keep,26,2016,June,24,6,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,1,0,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,193,2016,June,24,5,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,110.4,1,0,Check-Out,2016-06-11,Summer,2016-06-05T07:00Z +Keep,15,2016,June,24,6,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,15,2016,June,24,6,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,29,2016,June,23,4,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,129.77,1,0,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,122,2016,June,23,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,54.9,0,2,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,139,2016,May,23,31,2,9,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,57.6,0,2,Check-Out,2016-06-11,Spring,2016-05-31T07:00Z +Keep,15,2016,June,24,8,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,122.33,0,1,Check-Out,2016-06-11,Summer,2016-06-08T07:00Z +Keep,122,2016,June,23,4,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,56.9,0,1,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,185,2016,June,23,4,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,121.5,0,1,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,3,2016,June,24,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-06-11,Summer,2016-06-10T07:00Z +Keep,143,2016,June,23,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 143, NULL,0,Transient,98.6,0,3,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,143,2016,June,23,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 143, NULL,0,Transient,98.6,0,3,Check-Out,2016-06-11,Summer,2016-06-04T07:00Z +Keep,35,2016,June,24,7,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,1,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,133,2016,June,24,6,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 40, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-11,Summer,2016-06-06T07:00Z +Keep,4,2016,June,24,10,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,182.1,0,0,Check-Out,2016-06-11,Summer,2016-06-10T07:00Z +Keep,44,2016,June,24,7,0,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,143,0,0,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,44,2016,June,24,7,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,130.5,1,0,Check-Out,2016-06-11,Summer,2016-06-07T07:00Z +Keep,118,2016,May,23,31,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,68.6,0,1,Check-Out,2016-06-11,Spring,2016-05-31T07:00Z +Keep,96,2016,June,24,8,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,1,Check-Out,2016-06-12,Summer,2016-06-08T07:00Z +Keep,96,2016,June,24,8,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107,0,0,Check-Out,2016-06-12,Summer,2016-06-08T07:00Z +Keep,108,2016,June,24,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,108,2016,June,24,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,159,2016,June,24,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,81.85,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,130,2016,June,24,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,79.85,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,134,2016,June,23,3,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-12,Summer,2016-06-03T07:00Z +Keep,94,2016,June,24,6,1,5,2,0,1,HB,POL,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,165.9,0,2,Check-Out,2016-06-12,Summer,2016-06-06T07:00Z +Keep,94,2016,June,24,6,1,5,2,1,0,HB,POL,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,188.4,0,2,Check-Out,2016-06-12,Summer,2016-06-06T07:00Z +Keep,11,2016,June,24,10,0,2,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,H,H,1,No Deposit , 261, NULL,0,Transient-Party,176.9,0,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,12,2017,February,5,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Group,75,1,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,1,2017,March,10,9,0,1,1,1,0,BB,PRT,Direct,TA/TO, 1,0,0,G,I,0,No Deposit , NULL, NULL,0,Group,117,1,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,20,2017,March,10,10,0,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,117,1,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,5,2017,March,10,10,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,129,2,2,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,143,2016,June,24,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.69,0,3,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,36,2016,June,24,9,0,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,153.03,1,1,Check-Out,2016-06-12,Summer,2016-06-09T07:00Z +Keep,124,2016,June,23,1,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-12,Summer,2016-06-01T07:00Z +Keep,108,2016,June,24,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,108,2016,June,24,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,79.85,0,2,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,139,2016,June,24,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,139,2016,June,24,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,1,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,94,2016,June,24,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.9,1,1,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,10,2016,June,24,10,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,105,2016,June,23,2,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-12,Summer,2016-06-02T07:00Z +Keep,94,2016,June,24,10,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,5,No Deposit , 240, NULL,0,Transient-Party,160.5,1,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,93,2016,June,24,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,6,No Deposit , 240, NULL,0,Transient-Party,166,0,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,110,2016,June,24,7,0,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.6,0,0,Check-Out,2016-06-12,Summer,2016-06-07T07:00Z +Keep,115,2016,June,25,12,2,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,81.62,0,2,Check-Out,2016-06-14,Summer,2016-06-12T07:00Z +Keep,94,2016,June,24,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,6,No Deposit , 240, NULL,0,Transient-Party,163,1,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,113,2016,June,24,7,0,5,1,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,1,0,Check-Out,2016-06-12,Summer,2016-06-07T07:00Z +Keep,126,2016,May,23,30,3,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,98.6,0,0,Check-Out,2016-06-12,Spring,2016-05-30T07:00Z +Keep,179,2016,June,24,11,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 314, NULL,0,Transient,93.2,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,94,2016,June,24,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,8,No Deposit , 240, NULL,0,Transient-Party,163,1,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,166,2016,June,24,10,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,120,1,2,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,90,2016,June,24,7,0,5,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107,0,0,Check-Out,2016-06-12,Summer,2016-06-07T07:00Z +Keep,14,2016,June,24,8,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124,0,1,Check-Out,2016-06-12,Summer,2016-06-08T07:00Z +Keep,13,2016,June,24,8,0,4,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,166,1,1,Check-Out,2016-06-12,Summer,2016-06-08T07:00Z +Keep,125,2016,May,23,29,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,67,0,1,Check-Out,2016-06-12,Spring,2016-05-29T07:00Z +Keep,231,2016,June,24,9,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,113.1,1,1,Check-Out,2016-06-12,Summer,2016-06-09T07:00Z +Keep,9,2016,June,24,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,141,1,1,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,1,2016,June,24,11,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,120,1,0,Check-Out,2016-06-12,Summer,2016-06-11T07:00Z +Keep,155,2016,June,24,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,155,2016,June,24,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,90,2016,June,24,7,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-06-12,Summer,2016-06-07T07:00Z +Keep,107,2016,June,23,3,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,58.52,0,1,Check-Out,2016-06-12,Summer,2016-06-03T07:00Z +Keep,155,2016,June,24,10,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,114,1,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,0,2016,June,24,11,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,160,0,0,Check-Out,2016-06-12,Summer,2016-06-11T07:00Z +Keep,88,2016,June,23,2,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,133,0,1,Check-Out,2016-06-12,Summer,2016-06-02T07:00Z +Keep,159,2016,June,24,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,81.85,0,1,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,139,2016,June,24,5,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,58.9,0,1,Check-Out,2016-06-12,Summer,2016-06-05T07:00Z +Keep,134,2016,June,24,9,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.33,1,1,Check-Out,2016-06-12,Summer,2016-06-09T07:00Z +Keep,0,2016,June,24,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,129,0,0,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,5,2016,June,24,11,0,1,1,0,0,BB,IRL,Direct,Direct, 0,0,0,C,G,0,No Deposit , 250, NULL,0,Transient,148.5,0,0,Check-Out,2016-06-12,Summer,2016-06-11T07:00Z +Keep,59,2016,June,24,10,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,171,1,1,Check-Out,2016-06-12,Summer,2016-06-10T07:00Z +Keep,12,2016,June,24,9,0,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2016-06-12,Summer,2016-06-09T07:00Z +Keep,46,2016,May,23,30,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,57.72,0,0,Check-Out,2016-06-13,Spring,2016-05-30T07:00Z +Keep,109,2016,June,24,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-13,Summer,2016-06-06T07:00Z +Keep,0,2016,June,25,12,1,0,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,131,1,0,Check-Out,2016-06-13,Summer,2016-06-12T07:00Z +Keep,132,2016,June,24,6,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,98.72,0,1,Check-Out,2016-06-13,Summer,2016-06-06T07:00Z +Keep,117,2016,June,25,13,1,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,F,3,No Deposit , 240, NULL,0,Transient,136,0,1,Check-Out,2016-06-17,Summer,2016-06-13T07:00Z +Keep,6,2016,June,25,17,0,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,143.1,0,1,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,96,2016,June,25,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-19,Summer,2016-06-12T07:00Z +Keep,104,2016,June,25,12,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,1,Check-Out,2016-06-13,Summer,2016-06-12T07:00Z +Keep,136,2016,June,25,12,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-06-13,Summer,2016-06-12T07:00Z +Keep,96,2016,June,24,6,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,2,No Deposit , 171, NULL,0,Transient,135.1,0,1,Check-Out,2016-06-13,Summer,2016-06-06T07:00Z +Keep,132,2016,June,24,6,2,5,2,0,1,BB,GBR,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,100.44,0,2,Check-Out,2016-06-13,Summer,2016-06-06T07:00Z +Keep,17,2016,June,24,11,1,1,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,141,1,0,Check-Out,2016-06-13,Summer,2016-06-11T07:00Z +Keep,104,2016,June,25,12,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,1,Check-Out,2016-06-13,Summer,2016-06-12T07:00Z +Keep,14,2016,June,24,10,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,120,0,1,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Keep,15,2016,June,24,10,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,105.2,0,0,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Keep,136,2016,June,24,9,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,154.5,0,1,Check-Out,2016-06-13,Summer,2016-06-09T07:00Z +Keep,258,2016,June,25,12,1,0,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,64.8,1,2,Check-Out,2016-06-13,Summer,2016-06-12T07:00Z +Keep,11,2016,June,24,10,1,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Keep,158,2016,June,25,13,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-13,Summer,2016-06-13T07:00Z +Keep,17,2016,June,24,11,1,1,2,0,0,BB,GIB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,141,0,0,Check-Out,2016-06-13,Summer,2016-06-11T07:00Z +Keep,98,2016,May,23,30,4,10,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,98.76,0,2,Check-Out,2016-06-13,Spring,2016-05-30T07:00Z +Keep,97,2016,May,23,30,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,96.9,0,2,Check-Out,2016-06-13,Spring,2016-05-30T07:00Z +Keep,116,2016,June,24,10,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,5,No Deposit , 240, NULL,0,Transient,88.67,0,2,Check-Out,2016-06-13,Summer,2016-06-10T07:00Z +Keep,125,2016,June,24,7,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,94.37,0,0,Check-Out,2016-06-14,Summer,2016-06-07T07:00Z +Keep,125,2016,June,24,7,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,94.37,0,0,Check-Out,2016-06-14,Summer,2016-06-07T07:00Z +Keep,0,2016,June,25,12,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,1,1,Check-Out,2016-06-14,Summer,2016-06-12T07:00Z +Keep,11,2016,June,25,13,1,0,1,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,165,0,0,Check-Out,2016-06-14,Summer,2016-06-13T07:00Z +Keep,178,2016,May,23,31,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,77.14,0,1,Check-Out,2016-06-14,Spring,2016-05-31T07:00Z +Keep,0,2016,June,25,13,1,0,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,109,0,0,Check-Out,2016-06-14,Summer,2016-06-13T07:00Z +Keep,8,2016,June,25,14,0,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-14,Summer,2016-06-14T07:00Z +Keep,170,2016,June,25,14,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-06-14,Summer,2016-06-14T07:00Z +Keep,0,2016,June,25,13,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,159,1,0,Check-Out,2016-06-14,Summer,2016-06-13T07:00Z +Keep,103,2016,June,24,11,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,148,1,2,Check-Out,2016-06-15,Summer,2016-06-11T07:00Z +Keep,107,2016,June,24,8,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2016-06-15,Summer,2016-06-08T07:00Z +Keep,155,2016,June,24,8,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,87.5,0,0,Check-Out,2016-06-15,Summer,2016-06-08T07:00Z +Keep,150,2016,June,24,5,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,92.9,0,0,Check-Out,2016-06-15,Summer,2016-06-05T07:00Z +Keep,107,2016,June,23,1,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,137.57,0,2,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,108,2016,June,24,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147.25,0,1,Check-Out,2016-06-15,Summer,2016-06-11T07:00Z +Keep,139,2016,June,24,9,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,90,0,1,Check-Out,2016-06-15,Summer,2016-06-09T07:00Z +Keep,1,2016,June,25,14,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,73.15,0,0,Check-Out,2016-06-15,Summer,2016-06-14T07:00Z +Keep,159,2016,June,25,13,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,142,2016,June,25,12,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,161,0,0,Check-Out,2016-06-15,Summer,2016-06-12T07:00Z +Keep,6,2016,June,25,14,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100,0,0,Check-Out,2016-06-15,Summer,2016-06-14T07:00Z +Keep,112,2016,June,24,8,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,104.14,0,1,Check-Out,2016-06-15,Summer,2016-06-08T07:00Z +Keep,5,2016,June,25,13,1,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,168.6,1,0,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,27,2016,June,25,12,2,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-06-15,Summer,2016-06-12T07:00Z +Keep,61,2016,June,25,13,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,116.1,0,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,124,2016,June,24,6,3,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 163, NULL,0,Contract,85,0,0,Check-Out,2016-06-15,Summer,2016-06-06T07:00Z +Keep,0,2016,June,25,13,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,121,1,0,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,134,2016,June,23,1,4,10,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,84.39,0,0,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,131,2016,June,25,13,1,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,93.62,1,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,107,2016,June,23,1,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , NULL, NULL,0,Transient-Party,104.06,1,0,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,114,2016,June,24,9,2,4,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 241, NULL,0,Transient,108.71,1,1,Check-Out,2016-06-15,Summer,2016-06-09T07:00Z +Keep,2,2016,June,25,14,0,1,2,0,0,BB,URY,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-06-15,Summer,2016-06-14T07:00Z +Keep,134,2016,June,23,1,4,10,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,84.39,0,0,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,74,2016,June,25,13,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 241, NULL,0,Transient,149.52,1,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,107,2016,June,23,1,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,2,No Deposit , NULL, NULL,0,Transient-Party,90.08,1,0,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,134,2016,June,23,1,4,10,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2016-06-15,Summer,2016-06-01T07:00Z +Keep,11,2016,June,25,12,2,1,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-15,Summer,2016-06-12T07:00Z +Keep,0,2016,June,25,15,0,0,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 40, NULL,0,Contract,0,0,0,Check-Out,2016-06-15,Summer,2016-06-15T07:00Z +Keep,0,2016,June,25,13,1,1,2,2,0,BB,LBN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,159,0,0,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,0,2016,June,25,15,0,1,2,0,0,BB,LBN,Direct,TA/TO, 1,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,0,2016,June,25,16,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,56,2016,June,25,13,1,1,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,164,0,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,56,2016,June,25,13,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,129,0,1,Check-Out,2016-06-15,Summer,2016-06-13T07:00Z +Keep,36,2016,June,25,15,2,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,26,1,0,Check-Out,2016-06-21,Summer,2016-06-15T07:00Z +Keep,136,2016,June,24,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,79.2,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,136,2016,June,24,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,83,2016,June,23,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-16,Summer,2016-06-02T07:00Z +Keep,90,2016,June,24,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,90,2016,June,24,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,239,2016,June,24,7,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Transient,106.5,0,0,Check-Out,2016-06-16,Summer,2016-06-07T07:00Z +Keep,141,2016,June,24,9,2,5,1,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient,112.16,0,1,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,98,2016,June,24,9,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,53.56,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,157,2016,June,25,12,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,53.85,0,0,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,83,2016,June,23,2,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,77.85,0,1,Check-Out,2016-06-16,Summer,2016-06-02T07:00Z +Keep,41,2016,June,25,14,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-06-16,Summer,2016-06-14T07:00Z +Keep,120,2016,June,24,9,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,135.83,0,0,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,83,2016,June,23,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-16,Summer,2016-06-02T07:00Z +Keep,43,2016,June,25,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 154,0,Transient,58,0,0,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,27,2016,August,35,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,115,0,0,Check-Out,2016-08-24,Summer,2016-08-23T07:00Z +Keep,7,2016,November,46,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,H,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-11,Fall,2016-11-10T08:00Z +Keep,2,2016,November,48,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,4,2016,December,50,6,0,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 154,0,Transient,0,0,0,Check-Out,2016-12-06,Winter,2016-12-06T08:00Z +Keep,10,2016,December,51,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,15,2016,December,52,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,D,1,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,21,2016,December,53,27,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,2,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,8,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,9,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,5,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,10,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,26,2017,May,22,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,11,A,D,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,6,2017,July,28,12,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,12,A,C,0,No Deposit , NULL, 154,0,Transient,135,0,0,Check-Out,2017-07-14,Summer,2017-07-12T07:00Z +Cancel,31,2017,August,33,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,13,A,A,0,No Deposit , NULL, 154,0,Transient,135,0,0,Canceled,2017-08-10,Summer,2017-08-17T07:00Z +Keep,73,2016,June,25,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,116,0,0,Check-Out,2016-06-16,Summer,2016-06-15T07:00Z +Keep,7,2016,June,25,13,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 331,0,Transient,75,0,0,Check-Out,2016-06-16,Summer,2016-06-13T07:00Z +Keep,139,2016,June,24,5,4,7,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,93.8,0,0,Check-Out,2016-06-16,Summer,2016-06-05T07:00Z +Keep,54,2016,June,25,14,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-16,Summer,2016-06-14T07:00Z +Keep,3,2016,June,25,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,124.82,1,0,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,140,2016,June,24,9,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,93.06,0,1,Check-Out,2016-06-16,Summer,2016-06-09T07:00Z +Keep,164,2016,June,25,12,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,59.4,0,0,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,62,2016,June,25,12,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,57.6,0,2,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,191,2016,June,25,12,2,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,145.2,1,1,Check-Out,2016-06-16,Summer,2016-06-12T07:00Z +Keep,142,2016,June,24,5,4,7,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,121.25,0,0,Check-Out,2016-06-16,Summer,2016-06-05T07:00Z +Keep,164,2017,June,24,17,4,8,2,0,0,Undefined,PRT,Direct,Direct, 1,0,1,C,C,2,No Deposit , 250, NULL,0,Transient,183.88,0,0,Check-Out,2017-06-29,Summer,2017-06-17T07:00Z +Keep,154,2016,June,24,11,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 8, NULL,0,Transient,70.4,0,1,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,177,2016,June,24,10,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142,0,2,Check-Out,2016-06-17,Summer,2016-06-10T07:00Z +Keep,177,2016,June,24,10,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,2,Check-Out,2016-06-17,Summer,2016-06-10T07:00Z +Keep,151,2016,June,24,10,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78.5,0,0,Check-Out,2016-06-17,Summer,2016-06-10T07:00Z +Keep,174,2016,June,23,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.9,0,3,Check-Out,2016-06-17,Summer,2016-06-03T07:00Z +Keep,174,2016,June,23,3,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.9,0,3,Check-Out,2016-06-17,Summer,2016-06-03T07:00Z +Keep,0,2016,June,25,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,96,1,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,366,2016,June,24,6,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,78.5,0,0,Check-Out,2016-06-17,Summer,2016-06-06T07:00Z +Keep,125,2016,June,24,10,2,5,1,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,129.9,1,1,Check-Out,2016-06-17,Summer,2016-06-10T07:00Z +Keep,0,2016,June,25,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,99,1,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,0,2016,June,25,17,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 177, NULL,0,Group,0,0,0,Check-Out,2016-06-17,Summer,2016-06-17T07:00Z +Keep,42,2016,June,25,12,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Check-Out,2016-06-17,Summer,2016-06-12T07:00Z +Keep,0,2016,June,25,16,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,139,0,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,177,2016,June,24,11,2,4,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,93,0,2,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,26,2016,June,25,12,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,0,Check-Out,2016-06-17,Summer,2016-06-12T07:00Z +Keep,7,2016,June,25,12,2,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,189,0,0,Check-Out,2016-06-17,Summer,2016-06-12T07:00Z +Keep,70,2016,June,25,16,0,1,2,2,0,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,150.6,1,0,Check-Out,2016-06-17,Summer,2016-06-16T07:00Z +Keep,71,2016,June,25,17,2,2,2,2,0,HB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,218.1,1,0,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Keep,177,2016,June,24,11,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,93,0,2,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,177,2016,June,24,11,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,93,0,2,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,177,2016,June,24,11,2,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,108,0,2,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,57,2016,June,25,12,2,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-06-17,Summer,2016-06-12T07:00Z +Keep,0,2016,June,25,17,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-06-17,Summer,2016-06-17T07:00Z +Keep,177,2016,June,24,11,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,93,0,1,Check-Out,2016-06-17,Summer,2016-06-11T07:00Z +Keep,52,2016,June,25,12,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,130.87,1,1,Check-Out,2016-06-18,Summer,2016-06-12T07:00Z +Keep,179,2016,June,24,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,109.2,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,126,2016,June,24,8,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.8,0,0,Check-Out,2016-06-18,Summer,2016-06-08T07:00Z +Keep,152,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,152,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,62.9,0,0,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,182,2016,June,24,11,2,5,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient,54.9,0,0,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,145,2016,June,24,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,93.8,0,0,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,177,2016,June,25,12,2,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,105,1,0,Check-Out,2016-06-18,Summer,2016-06-12T07:00Z +Keep,51,2016,June,25,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-18,Summer,2016-06-14T07:00Z +Keep,1,2016,June,25,15,0,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2016-06-18,Summer,2016-06-15T07:00Z +Keep,297,2016,June,24,11,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,297,2016,June,24,11,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,59.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,297,2016,June,24,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,92.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,32,2016,June,25,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2016-06-18,Summer,2016-06-17T07:00Z +Keep,158,2016,June,25,12,2,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,163,0,2,Check-Out,2016-06-18,Summer,2016-06-12T07:00Z +Keep,158,2016,June,25,12,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,161,0,2,Check-Out,2016-06-18,Summer,2016-06-12T07:00Z +Keep,297,2016,June,24,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,92.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,297,2016,June,24,11,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,155,2016,June,25,17,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,2,Check-Out,2016-06-18,Summer,2016-06-17T07:00Z +Keep,63,2016,June,25,12,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-06-18,Summer,2016-06-12T07:00Z +Keep,168,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 40, NULL,0,Contract,64.9,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,168,2016,June,24,11,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,1,No Deposit , 40, NULL,0,Contract,86.92,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,215,2016,June,24,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,168,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,64.9,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,168,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,64.9,0,2,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,168,2016,June,24,11,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,47.9,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,149,2016,June,23,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,62.9,0,0,Check-Out,2016-06-18,Summer,2016-06-04T07:00Z +Keep,157,2016,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,51.85,0,0,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,164,2016,June,24,11,2,5,3,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 253, NULL,0,Transient,74.12,0,1,Check-Out,2016-06-18,Summer,2016-06-11T07:00Z +Keep,85,2016,June,25,18,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-18,Summer,2016-06-18T07:00Z +Keep,85,2016,June,25,18,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-18,Summer,2016-06-18T07:00Z +Keep,85,2016,June,25,18,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-18,Summer,2016-06-18T07:00Z +Keep,60,2016,June,25,16,0,3,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-06-19,Summer,2016-06-16T07:00Z +Keep,123,2016,June,24,5,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Contract,87,0,0,Check-Out,2016-06-19,Summer,2016-06-05T07:00Z +Keep,96,2016,June,25,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,77.85,0,0,Check-Out,2016-06-19,Summer,2016-06-12T07:00Z +Keep,142,2016,June,23,4,4,11,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-19,Summer,2016-06-04T07:00Z +Keep,86,2016,June,24,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,51.85,0,1,Check-Out,2016-06-19,Summer,2016-06-05T07:00Z +Keep,90,2016,June,24,9,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-19,Summer,2016-06-09T07:00Z +Keep,90,2016,June,24,9,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,88.9,0,1,Check-Out,2016-06-19,Summer,2016-06-09T07:00Z +Keep,130,2016,June,25,12,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161,0,1,Check-Out,2016-06-19,Summer,2016-06-12T07:00Z +Keep,10,2016,June,25,17,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 414, NULL,0,Transient-Party,185,1,1,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,10,2016,June,25,17,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 414, NULL,0,Transient-Party,173,0,1,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,4,2016,June,25,17,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,193,1,2,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,3,2016,June,25,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,4,2016,June,25,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,141,0,0,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,98,2016,June,25,17,0,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,71.6,1,0,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,158,2016,June,25,12,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,99.9,0,0,Check-Out,2016-06-19,Summer,2016-06-12T07:00Z +Keep,0,2016,June,25,18,0,1,2,0,0,BB,AGO,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,112.5,0,0,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,7,2016,June,25,18,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,143.1,0,1,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,7,2016,June,25,18,0,1,2,1,0,BB,CN,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,158.1,0,1,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,3,2016,June,25,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143,1,1,Check-Out,2016-06-19,Summer,2016-06-17T07:00Z +Keep,47,2016,June,25,16,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,129,0,0,Check-Out,2016-06-19,Summer,2016-06-16T07:00Z +Keep,30,2016,June,25,15,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-19,Summer,2016-06-15T07:00Z +Keep,8,2016,June,25,15,0,4,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,196,1,0,Check-Out,2016-06-19,Summer,2016-06-15T07:00Z +Keep,1,2016,June,25,18,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,186,0,0,Check-Out,2016-06-19,Summer,2016-06-18T07:00Z +Keep,160,2016,June,25,13,2,5,2,0,0,HB,USA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,118.5,0,2,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,36,2016,June,25,12,3,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,149.6,0,0,Check-Out,2016-06-20,Summer,2016-06-12T07:00Z +Keep,169,2017,June,25,20,2,6,2,0,0,BB,IRL,Direct,Direct, 1,0,1,C,C,0,No Deposit , NULL, NULL,0,Transient,128.05,0,1,Check-Out,2017-06-28,Summer,2017-06-20T07:00Z +Keep,103,2016,June,24,6,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 171, NULL,0,Transient,91.1,0,0,Check-Out,2016-06-20,Summer,2016-06-06T07:00Z +Keep,76,2016,June,25,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,221,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,53.12,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,222,2016,June,25,13,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,3,No Deposit , 250, NULL,0,Transient,95.5,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,222,2016,June,25,13,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,3,No Deposit , 250, NULL,0,Transient,93.5,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,159,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,50,2016,June,25,18,1,1,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-20,Summer,2016-06-18T07:00Z +Keep,43,2016,June,25,15,1,4,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,1,Check-Out,2016-06-20,Summer,2016-06-15T07:00Z +Keep,209,2016,June,25,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,223,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,51.12,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,0,2016,June,26,20,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 15, NULL,0,Transient,0,0,0,Check-Out,2016-06-20,Summer,2016-06-20T07:00Z +Keep,50,2016,June,25,18,1,1,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-20,Summer,2016-06-18T07:00Z +Keep,20,2016,June,26,20,0,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-20,Summer,2016-06-20T07:00Z +Keep,50,2016,June,25,18,1,1,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,78,0,0,Check-Out,2016-06-20,Summer,2016-06-18T07:00Z +Keep,152,2016,June,25,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.5,0,1,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,16,2016,June,25,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,96.36,0,1,Check-Out,2016-06-20,Summer,2016-06-16T07:00Z +Keep,69,2016,June,25,15,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132.6,1,1,Check-Out,2016-06-20,Summer,2016-06-15T07:00Z +Keep,11,2016,June,26,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-20,Summer,2016-06-19T07:00Z +Keep,186,2016,June,24,6,4,10,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-20,Summer,2016-06-06T07:00Z +Keep,0,2016,June,25,18,1,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,173,1,0,Check-Out,2016-06-20,Summer,2016-06-18T07:00Z +Keep,108,2016,June,24,6,4,10,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,138,1,0,Check-Out,2016-06-20,Summer,2016-06-06T07:00Z +Keep,128,2017,June,22,1,4,10,2,0,0,HB,PRT,Direct,Direct, 1,0,1,E,E,1,No Deposit , 250, NULL,0,Transient,156.83,1,0,Check-Out,2017-06-15,Summer,2017-06-01T07:00Z +Keep,223,2016,June,25,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,52.83,0,0,Check-Out,2016-06-20,Summer,2016-06-13T07:00Z +Keep,140,2016,June,24,6,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-20,Summer,2016-06-06T07:00Z +Keep,5,2016,June,26,20,1,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,184.33,1,2,Check-Out,2016-06-23,Summer,2016-06-20T07:00Z +Keep,154,2016,July,30,20,2,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,227,0,0,Check-Out,2016-07-26,Summer,2016-07-20T07:00Z +Keep,216,2016,June,24,7,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,51.84,0,0,Check-Out,2016-06-21,Summer,2016-06-07T07:00Z +Keep,152,2016,June,25,14,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,100.6,0,1,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,171,2016,June,24,7,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,92.9,1,1,Check-Out,2016-06-21,Summer,2016-06-07T07:00Z +Keep,161,2016,June,25,15,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116.5,1,3,Check-Out,2016-06-21,Summer,2016-06-15T07:00Z +Keep,213,2016,June,25,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,2,2016,June,26,19,2,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,1,1,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,160,2016,June,25,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,108,0,1,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,150,2016,June,25,18,2,1,2,0,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,107.63,1,1,Check-Out,2016-06-21,Summer,2016-06-18T07:00Z +Keep,92,2016,June,26,19,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,158,1,2,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,73,2016,June,25,12,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,0,Check-Out,2016-06-21,Summer,2016-06-12T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 126, NULL,0,Transient,97,1,0,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,99,2016,June,25,16,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,133,0,1,Check-Out,2016-06-21,Summer,2016-06-16T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,111,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,13,2016,June,27,26,1,0,3,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,1,G,G,1,No Deposit , 240, NULL,0,Transient,201,0,1,Check-Out,2016-06-27,Summer,2016-06-26T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,5,2016,June,26,20,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,100,1,0,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,5,2016,June,26,19,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 148,0,Transient,65,0,0,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,5,2016,June,26,19,2,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 148,0,Transient,75,0,0,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,59,2017,April,14,8,2,4,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,3,No Deposit , NULL, 148,0,Transient,50,0,1,Check-Out,2017-04-14,Spring,2017-04-08T07:00Z +Keep,0,2016,June,26,19,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 148,0,Transient,65,0,0,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,67,2016,June,26,19,2,0,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,0,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,67,2016,June,26,19,2,0,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,141,1,0,Check-Out,2016-06-21,Summer,2016-06-19T07:00Z +Keep,147,2016,June,25,14,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 171, NULL,0,Transient,93.8,0,0,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,57,2016,June,25,17,2,2,2,1,0,BB,USA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,121,1,1,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Keep,13,2016,June,26,20,1,0,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,99,0,1,Check-Out,2016-06-21,Summer,2016-06-20T07:00Z +Keep,294,2016,June,26,21,0,5,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,160,2016,June,25,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 314, NULL,0,Transient,73.1,0,0,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,57,2016,June,25,17,2,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,98.75,0,1,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Keep,162,2016,June,25,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-06-21,Summer,2016-06-14T07:00Z +Keep,61,2016,June,25,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2016-06-21,Summer,2016-06-18T07:00Z +Keep,68,2016,June,25,17,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,2,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Keep,66,2016,June,24,11,4,6,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143,1,1,Check-Out,2016-06-21,Summer,2016-06-11T07:00Z +Keep,58,2016,June,25,17,2,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,237,0,1,Check-Out,2016-06-21,Summer,2016-06-17T07:00Z +Keep,154,2016,June,25,15,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,100.6,0,2,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,154,2016,June,25,15,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient,113.6,0,2,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,162,2016,June,25,15,2,5,2,0,0,Undefined,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,183.86,0,0,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,10,2016,June,25,18,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,158.58,0,2,Check-Out,2016-06-22,Summer,2016-06-18T07:00Z +Keep,12,2016,June,25,17,2,3,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,116.31,0,1,Check-Out,2016-06-22,Summer,2016-06-17T07:00Z +Keep,1,2016,June,26,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 104, NULL,0,Transient,79,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,127,2016,June,24,10,4,8,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,136.8,0,1,Check-Out,2016-06-22,Summer,2016-06-10T07:00Z +Keep,163,2016,June,25,16,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,93.75,0,0,Check-Out,2016-06-22,Summer,2016-06-16T07:00Z +Keep,1,2016,June,26,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 9, NULL,0,Transient,65,0,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,67,2016,June,25,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,116,2016,June,25,13,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,89.12,0,1,Check-Out,2016-06-22,Summer,2016-06-13T07:00Z +Keep,116,2016,June,25,13,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,87.12,0,1,Check-Out,2016-06-22,Summer,2016-06-13T07:00Z +Keep,48,2016,June,26,20,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,189,0,0,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Keep,7,2016,June,26,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,96,1,0,Check-Out,2016-06-22,Summer,2016-06-21T07:00Z +Keep,48,2016,June,26,20,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,201,1,0,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Keep,161,2016,June,25,15,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,47.9,0,0,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,65,2016,June,25,15,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,114,2016,June,25,12,4,6,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,97.92,0,1,Check-Out,2016-06-22,Summer,2016-06-12T07:00Z +Keep,161,2016,June,25,15,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,47.9,0,0,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,105,2016,June,25,16,2,4,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,181.9,0,0,Check-Out,2016-06-22,Summer,2016-06-16T07:00Z +Keep,105,2016,June,25,16,2,4,2,2,0,Undefined,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,232.4,1,0,Check-Out,2016-06-22,Summer,2016-06-16T07:00Z +Keep,96,2016,June,25,16,2,4,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,193.9,1,0,Check-Out,2016-06-22,Summer,2016-06-16T07:00Z +Keep,107,2016,June,25,15,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107.71,0,2,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,45,2016,June,26,20,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,130.13,0,0,Check-Out,2016-06-22,Summer,2016-06-20T07:00Z +Keep,92,2016,June,25,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118,0,1,Check-Out,2016-06-22,Summer,2016-06-17T07:00Z +Keep,162,2016,June,25,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,93.8,0,0,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,265,2016,June,25,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,68.4,0,2,Check-Out,2016-06-22,Summer,2016-06-15T07:00Z +Keep,15,2016,June,25,17,2,3,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,144,1,1,Check-Out,2016-06-22,Summer,2016-06-17T07:00Z +Cancel,7,2016,June,26,21,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,0,0,0,No-Show,2016-06-21,Summer,2016-06-21T07:00Z +Keep,0,2016,June,26,22,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 339, NULL,0,Transient,0,0,0,Check-Out,2016-06-22,Summer,2016-06-22T07:00Z +Keep,153,2016,June,25,14,2,7,2,0,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 115, NULL,0,Transient,57.6,0,0,Check-Out,2016-06-23,Summer,2016-06-14T07:00Z +Keep,107,2016,June,25,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,138,0,1,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,245,2016,June,24,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,64.9,0,0,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,293,2017,June,23,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 143, NULL,0,Transient,70.26,0,2,Check-Out,2017-06-22,Summer,2017-06-08T07:00Z +Keep,247,2016,June,25,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,98.6,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,96,2016,June,25,12,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,79.85,0,0,Check-Out,2016-06-23,Summer,2016-06-12T07:00Z +Keep,93,2016,June,24,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,160,2016,June,25,16,2,5,2,1,1,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,142,1,1,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,90,2016,June,24,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,97,2016,June,25,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,90,2016,June,24,9,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,79.85,0,0,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,162,2016,June,25,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,155,2016,June,24,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.76,0,1,Check-Out,2016-06-23,Summer,2016-06-09T07:00Z +Keep,5,2016,June,26,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, 10,0,Transient,79,0,0,Check-Out,2016-06-23,Summer,2016-06-22T07:00Z +Keep,98,2016,June,25,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,96,2016,June,25,12,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 243, NULL,0,Contract,83.85,0,0,Check-Out,2016-06-23,Summer,2016-06-12T07:00Z +Keep,100,2016,June,25,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,168,2016,June,25,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-23,Summer,2016-06-16T07:00Z +Keep,1,2016,June,26,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,121,0,0,Check-Out,2016-06-23,Summer,2016-06-22T07:00Z +Keep,117,2016,June,25,13,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,137.8,0,1,Check-Out,2016-06-23,Summer,2016-06-13T07:00Z +Keep,0,2016,June,26,22,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,139,1,0,Check-Out,2016-06-23,Summer,2016-06-22T07:00Z +Keep,22,2016,June,26,21,0,2,3,1,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,206,1,1,Check-Out,2016-06-23,Summer,2016-06-21T07:00Z +Keep,103,2016,June,25,12,4,7,2,0,0,HB,URY,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,180,1,1,Check-Out,2016-06-23,Summer,2016-06-12T07:00Z +Keep,116,2016,June,25,17,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118,1,2,Check-Out,2016-06-23,Summer,2016-06-17T07:00Z +Keep,0,2016,June,26,21,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2016-06-23,Summer,2016-06-21T07:00Z +Keep,1,2016,June,26,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,91,1,0,Check-Out,2016-06-23,Summer,2016-06-22T07:00Z +Keep,5,2016,June,26,21,0,2,3,1,0,BB,SWE,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,190,1,3,Check-Out,2016-06-23,Summer,2016-06-21T07:00Z +Keep,167,2016,June,26,23,0,3,2,2,0,BB,SWE,Online travel agent,Direct, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,147,1,3,Check-Out,2016-06-26,Summer,2016-06-23T07:00Z +Keep,52,2016,June,26,20,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-23,Summer,2016-06-20T07:00Z +Keep,17,2016,June,26,19,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,123.62,0,1,Check-Out,2016-06-23,Summer,2016-06-19T07:00Z +Keep,161,2016,June,25,17,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Check-Out,2016-06-23,Summer,2016-06-17T07:00Z +Keep,1,2016,June,26,24,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-24,Summer,2016-06-24T07:00Z +Keep,146,2016,June,25,13,3,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,81.02,0,0,Check-Out,2016-06-24,Summer,2016-06-13T07:00Z +Keep,170,2016,June,25,17,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 128, NULL,0,Transient,61,0,1,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Keep,161,2016,June,25,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78.5,0,0,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Keep,164,2016,June,25,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,94.89,0,2,Check-Out,2016-06-24,Summer,2016-06-17T07:00Z +Keep,194,2016,June,25,12,4,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,101,0,1,Check-Out,2016-06-24,Summer,2016-06-12T07:00Z +Keep,206,2016,June,25,18,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,87.5,0,0,Check-Out,2016-06-24,Summer,2016-06-18T07:00Z +Keep,1,2016,June,26,23,0,1,3,1,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,168,1,0,Check-Out,2016-06-24,Summer,2016-06-23T07:00Z +Keep,151,2016,June,25,14,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,1,No Deposit , 8, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-24,Summer,2016-06-14T07:00Z +Keep,3,2016,June,26,22,0,2,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,181,1,0,Check-Out,2016-06-24,Summer,2016-06-22T07:00Z +Keep,156,2016,June,24,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,88.7,0,0,Check-Out,2016-06-25,Summer,2016-06-11T07:00Z +Keep,249,2016,June,24,11,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-25,Summer,2016-06-11T07:00Z +Keep,223,2016,June,25,15,2,8,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,77.76,0,2,Check-Out,2016-06-25,Summer,2016-06-15T07:00Z +Keep,155,2016,June,25,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,83.6,0,0,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Keep,190,2016,June,25,17,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 105, NULL,0,Transient,117.76,1,1,Check-Out,2016-06-25,Summer,2016-06-17T07:00Z +Keep,268,2017,July,29,21,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,2,No Deposit , 240, NULL,0,Transient,167.68,0,2,Check-Out,2017-07-29,Summer,2017-07-21T07:00Z +Keep,237,2016,June,26,21,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-25,Summer,2016-06-21T07:00Z +Keep,180,2016,June,26,23,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2016-06-25,Summer,2016-06-23T07:00Z +Keep,271,2016,June,25,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,78.5,0,0,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Keep,192,2016,June,24,11,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,51.85,0,0,Check-Out,2016-06-25,Summer,2016-06-11T07:00Z +Keep,124,2016,June,25,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,57.6,0,0,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Keep,0,2016,June,26,24,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,161,1,0,Check-Out,2016-06-25,Summer,2016-06-24T07:00Z +Keep,202,2016,June,25,17,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-25,Summer,2016-06-17T07:00Z +Keep,8,2016,June,26,23,0,2,2,3,0,BB,USA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,186,1,0,Check-Out,2016-06-25,Summer,2016-06-23T07:00Z +Keep,154,2016,June,25,18,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-25,Summer,2016-06-18T07:00Z +Keep,322,2016,June,26,22,0,3,2,0,0,HB,POL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,75,Transient-Party,92,0,0,Check-Out,2016-06-25,Summer,2016-06-22T07:00Z +Keep,187,2016,June,26,19,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,69.6,1,0,Check-Out,2016-06-26,Summer,2016-06-19T07:00Z +Keep,192,2016,June,26,21,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,236,2016,June,26,19,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 333, NULL,0,Transient,146.1,1,0,Check-Out,2016-06-26,Summer,2016-06-19T07:00Z +Keep,211,2017,June,25,22,2,7,2,0,0,Undefined,PRT,Direct,TA/TO, 1,0,1,E,E,0,No Deposit , NULL, 333,0,Group,151.56,1,0,Check-Out,2017-07-01,Summer,2017-06-22T07:00Z +Keep,9,2016,June,26,21,0,5,3,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,H,G,0,No Deposit , 240, NULL,0,Transient,206,1,0,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,294,2016,June,26,21,0,5,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,7,2016,June,26,24,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 1, NULL,0,Transient,152.16,1,0,Check-Out,2016-06-26,Summer,2016-06-24T07:00Z +Keep,100,2016,June,26,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-06-26,Summer,2016-06-19T07:00Z +Keep,188,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-06-26,Summer,2016-06-20T07:00Z +Keep,157,2016,June,26,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 8, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-26,Summer,2016-06-19T07:00Z +Keep,157,2016,June,26,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-26,Summer,2016-06-19T07:00Z +Keep,10,2016,June,26,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,3,2016,June,26,25,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 306, NULL,0,Transient,98.4,1,0,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,0,2016,June,26,20,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2016-06-26,Summer,2016-06-20T07:00Z +Keep,3,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,141,1,0,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,3,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,0,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,9,2016,June,26,25,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,161,0,1,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,9,2016,June,26,25,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,161,0,1,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,12,2016,June,26,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,5,2016,June,26,25,0,1,3,0,0,FB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,185.1,1,0,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,10,2016,June,26,25,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,201,1,1,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,203,2016,June,26,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,72,0,1,Check-Out,2016-06-26,Summer,2016-06-24T07:00Z +Keep,203,2016,June,26,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,84,1,0,Check-Out,2016-06-26,Summer,2016-06-24T07:00Z +Keep,170,2016,June,27,26,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-06-29,Summer,2016-06-26T07:00Z +Keep,8,2016,June,26,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,2,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,165,2016,June,26,21,0,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-06-26,Summer,2016-06-21T07:00Z +Keep,2,2016,June,26,25,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,158.1,1,2,Check-Out,2016-06-26,Summer,2016-06-25T07:00Z +Keep,181,2016,June,25,17,3,7,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Transient,66.6,0,0,Check-Out,2016-06-27,Summer,2016-06-17T07:00Z +Keep,25,2016,June,26,25,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,130.13,0,1,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,131,2016,June,26,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,81.2,0,0,Check-Out,2016-06-27,Summer,2016-06-20T07:00Z +Keep,225,2016,June,26,23,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,72,0,2,Check-Out,2016-06-27,Summer,2016-06-23T07:00Z +Keep,22,2016,June,26,25,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,F,0,No Deposit , 241, NULL,0,Transient,145.53,0,1,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,0,2016,June,27,27,0,0,3,1,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,H,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-06-27,Summer,2016-06-27T07:00Z +Keep,35,2016,June,27,26,1,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,159,1,0,Check-Out,2016-06-27,Summer,2016-06-26T07:00Z +Keep,124,2016,June,25,18,3,6,3,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2016-06-27,Summer,2016-06-18T07:00Z +Keep,0,2016,June,26,25,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,141,1,0,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,2,2016,June,26,25,1,1,1,0,0,BB,AGO,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,165,0,0,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,12,2016,June,26,25,1,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,249,1,0,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,225,2016,June,26,23,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient-Party,72,0,2,Check-Out,2016-06-27,Summer,2016-06-23T07:00Z +Keep,2,2016,June,26,25,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,122.23,1,1,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,167,2016,June,26,21,1,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,0,Check-Out,2016-06-27,Summer,2016-06-21T07:00Z +Keep,214,2016,June,26,20,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,68.4,0,0,Check-Out,2016-06-27,Summer,2016-06-20T07:00Z +Keep,214,2016,June,26,20,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-27,Summer,2016-06-20T07:00Z +Keep,5,2016,June,26,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,181,1,0,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,41,2016,June,27,26,1,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-27,Summer,2016-06-26T07:00Z +Keep,101,2016,June,26,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Transient,61,0,0,Check-Out,2016-06-27,Summer,2016-06-20T07:00Z +Keep,101,2016,June,26,25,1,1,3,1,0,FB,PRT,Direct,Direct, 0,0,0,H,H,5,No Deposit , 250, NULL,0,Transient,274,1,0,Check-Out,2016-06-27,Summer,2016-06-25T07:00Z +Keep,162,2016,June,27,28,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,81,0,0,Check-Out,2016-07-05,Summer,2016-06-28T07:00Z +Keep,124,2016,June,26,21,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,142.36,0,3,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Keep,124,2016,June,26,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.86,0,2,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Keep,162,2016,June,26,23,2,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,133.4,0,1,Check-Out,2016-06-28,Summer,2016-06-23T07:00Z +Keep,161,2016,June,26,22,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,178,1,2,Check-Out,2016-06-28,Summer,2016-06-22T07:00Z +Keep,13,2016,June,27,27,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,57,0,0,Check-Out,2016-06-28,Summer,2016-06-27T07:00Z +Keep,7,2016,July,31,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 47,0,Transient,118,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,1,2017,March,13,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 47,0,Transient,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,10,2017,June,22,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 47,0,Transient,75,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,10,2016,June,27,27,1,0,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 184, NULL,0,Transient,141,1,0,Check-Out,2016-06-28,Summer,2016-06-27T07:00Z +Keep,10,2016,June,27,27,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,120,0,0,Check-Out,2016-06-28,Summer,2016-06-27T07:00Z +Keep,24,2016,June,26,25,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,95.69,0,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,22,2016,June,27,28,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,8,0,0,Check-Out,2016-06-30,Summer,2016-06-28T07:00Z +Keep,13,2016,June,26,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,1,0,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,27,2016,June,26,25,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,37,2016,June,27,26,2,0,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,254,1,0,Check-Out,2016-06-28,Summer,2016-06-26T07:00Z +Keep,21,2016,June,26,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,11,2016,June,26,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,1,2016,June,26,25,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129,0,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,48,2016,June,27,26,2,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,0,Check-Out,2016-06-28,Summer,2016-06-26T07:00Z +Keep,2,2016,June,26,23,2,3,2,1,1,BB,CHE,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,161.1,0,0,Check-Out,2016-06-28,Summer,2016-06-23T07:00Z +Keep,48,2016,June,27,26,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,120,0,0,Check-Out,2016-06-28,Summer,2016-06-26T07:00Z +Keep,188,2016,June,26,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,76.95,0,0,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Keep,0,2016,June,27,27,1,0,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,130.13,1,0,Check-Out,2016-06-28,Summer,2016-06-27T07:00Z +Keep,7,2016,June,26,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,25,2016,June,26,25,2,1,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2016-06-28,Summer,2016-06-25T07:00Z +Keep,173,2016,June,26,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,64.24,0,2,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Keep,208,2016,June,26,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-28,Summer,2016-06-21T07:00Z +Keep,170,2016,June,27,29,2,4,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,108.2,0,0,Check-Out,2016-07-05,Summer,2016-06-29T07:00Z +Keep,167,2016,June,26,22,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,68.4,0,1,Check-Out,2016-06-29,Summer,2016-06-22T07:00Z +Keep,130,2016,June,26,21,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,133,1,1,Check-Out,2016-06-29,Summer,2016-06-21T07:00Z +Keep,175,2016,June,26,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,78.95,0,0,Check-Out,2016-06-29,Summer,2016-06-22T07:00Z +Keep,136,2016,June,26,19,4,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,68.6,0,0,Check-Out,2016-06-29,Summer,2016-06-19T07:00Z +Keep,33,2016,June,27,27,1,1,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,131,0,0,Check-Out,2016-06-29,Summer,2016-06-27T07:00Z +Keep,19,2016,June,27,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 10, NULL,0,Transient,65,1,0,Check-Out,2016-06-29,Summer,2016-06-28T07:00Z +Keep,0,2016,June,27,28,0,1,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,160,1,0,Check-Out,2016-06-29,Summer,2016-06-28T07:00Z +Keep,166,2016,June,27,28,1,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 8, NULL,0,Transient,87.6,1,0,Check-Out,2016-07-04,Summer,2016-06-28T07:00Z +Keep,165,2016,June,26,19,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,77.85,0,0,Check-Out,2016-06-29,Summer,2016-06-19T07:00Z +Keep,208,2016,June,25,15,4,10,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-29,Summer,2016-06-15T07:00Z +Keep,168,2016,June,26,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.5,0,1,Check-Out,2016-06-29,Summer,2016-06-22T07:00Z +Keep,3,2016,June,26,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,106.36,1,1,Check-Out,2016-06-29,Summer,2016-06-25T07:00Z +Keep,167,2016,June,26,19,4,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,70.4,0,0,Check-Out,2016-06-29,Summer,2016-06-19T07:00Z +Keep,1,2016,June,27,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,57,1,0,Check-Out,2016-06-29,Summer,2016-06-28T07:00Z +Keep,0,2016,June,27,29,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,I,0,No Deposit , NULL, 178,0,Transient,0,0,0,Check-Out,2016-06-29,Summer,2016-06-29T07:00Z +Keep,203,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,51.85,0,2,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,104,2016,June,26,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,83.85,0,0,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Contract,51.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,160,2016,June,25,16,4,10,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,93.8,0,0,Check-Out,2016-06-30,Summer,2016-06-16T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,51.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,0,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,45.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,157,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,332,2016,June,25,16,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,106.5,0,0,Check-Out,2016-06-30,Summer,2016-06-16T07:00Z +Keep,225,2016,June,26,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient,79.84,0,0,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,164,2016,June,25,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,53.85,0,0,Check-Out,2016-06-30,Summer,2016-06-16T07:00Z +Keep,159,2016,June,27,26,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,99.85,1,0,Check-Out,2016-06-30,Summer,2016-06-26T07:00Z +Keep,157,2016,June,26,23,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 243, NULL,0,Contract,81.85,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,215,2016,June,26,19,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,64.9,0,0,Check-Out,2016-06-30,Summer,2016-06-19T07:00Z +Keep,170,2016,June,26,24,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 156, NULL,0,Transient-Party,91.8,0,0,Check-Out,2016-06-30,Summer,2016-06-24T07:00Z +Keep,170,2016,June,26,24,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 156, NULL,0,Transient-Party,91.8,0,1,Check-Out,2016-06-30,Summer,2016-06-24T07:00Z +Keep,17,2016,June,27,30,0,0,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2016-06-30,Summer,2016-06-30T07:00Z +Keep,17,2016,June,27,30,0,0,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2016-06-30,Summer,2016-06-30T07:00Z +Keep,222,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,57.6,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,209,2016,June,26,23,2,5,2,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 315, NULL,0,Transient,116.9,0,0,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,163,2016,June,27,26,2,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,100.85,0,1,Check-Out,2016-06-30,Summer,2016-06-26T07:00Z +Keep,222,2016,June,26,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.6,0,1,Check-Out,2016-06-30,Summer,2016-06-23T07:00Z +Keep,164,2016,June,27,26,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,68.4,0,1,Check-Out,2016-06-30,Summer,2016-06-26T07:00Z +Keep,164,2016,June,27,26,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient-Party,68.4,0,1,Check-Out,2016-06-30,Summer,2016-06-26T07:00Z +Keep,0,2016,June,27,27,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,140,1,0,Check-Out,2016-06-30,Summer,2016-06-27T07:00Z +Keep,255,2016,June,26,20,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 156, NULL,0,Transient,76.95,0,0,Check-Out,2016-07-01,Summer,2016-06-20T07:00Z +Keep,2,2016,June,26,25,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-07-01,Summer,2016-06-25T07:00Z +Keep,220,2016,June,26,24,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,79.2,0,1,Check-Out,2016-07-01,Summer,2016-06-24T07:00Z +Keep,6,2016,June,27,29,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,120,1,0,Check-Out,2016-07-01,Summer,2016-06-29T07:00Z +Keep,194,2016,June,25,14,4,13,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,93,0,2,Check-Out,2016-07-01,Summer,2016-06-14T07:00Z +Keep,277,2016,September,37,5,5,10,2,0,0,BB,GBR,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,95,0,2,Check-Out,2016-09-20,Fall,2016-09-05T07:00Z +Keep,272,2016,June,26,21,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.3,0,0,Check-Out,2016-07-01,Summer,2016-06-21T07:00Z +Keep,21,2016,June,27,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 104, NULL,0,Transient,79,0,0,Check-Out,2016-07-01,Summer,2016-06-30T07:00Z +Keep,22,2017,June,26,29,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,C,0,No Deposit , 104, NULL,0,Transient,107.95,0,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,139,2016,June,27,28,0,3,3,0,0,BB,ITA,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,159.9,1,0,Check-Out,2016-07-01,Summer,2016-06-28T07:00Z +Keep,117,2016,June,26,25,2,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Check-Out,2016-07-01,Summer,2016-06-25T07:00Z +Keep,182,2016,June,26,25,2,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 6, NULL,0,Transient,76.8,1,0,Check-Out,2016-07-01,Summer,2016-06-25T07:00Z +Keep,104,2016,June,27,29,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2016-07-01,Summer,2016-06-29T07:00Z +Keep,167,2016,June,26,19,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient,66.98,0,1,Check-Out,2016-07-01,Summer,2016-06-19T07:00Z +Keep,11,2016,June,27,27,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,189,0,1,Check-Out,2016-07-01,Summer,2016-06-27T07:00Z +Keep,0,2016,June,27,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,149,0,0,Check-Out,2016-07-01,Summer,2016-06-30T07:00Z +Keep,191,2016,June,27,28,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2016-07-01,Summer,2016-06-28T07:00Z +Keep,3,2016,June,27,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,65,1,0,Check-Out,2016-07-01,Summer,2016-06-30T07:00Z +Keep,9,2016,June,26,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,219,2016,June,27,26,2,4,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,148.17,0,0,Check-Out,2016-07-02,Summer,2016-06-26T07:00Z +Keep,163,2016,June,25,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,59.8,0,1,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,163,2016,June,25,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,59.8,0,0,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,164,2016,June,27,30,0,2,3,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,166.45,1,2,Check-Out,2016-07-02,Summer,2016-06-30T07:00Z +Keep,174,2016,June,26,21,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,70,0,1,Check-Out,2016-07-02,Summer,2016-06-21T07:00Z +Keep,163,2016,June,27,27,1,4,2,2,1,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,150.69,1,1,Check-Out,2016-07-02,Summer,2016-06-27T07:00Z +Keep,164,2016,June,25,18,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,3,2016,June,27,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,156,1,1,Check-Out,2016-07-02,Summer,2016-06-30T07:00Z +Keep,4,2016,July,27,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-07-02,Summer,2016-07-01T07:00Z +Keep,233,2016,June,26,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100.29,0,2,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,233,2016,June,26,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,114.29,1,2,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,3,2016,June,25,18,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,94,0,0,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,248,2016,June,25,18,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 143, NULL,0,Transient,81.9,0,1,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,166,2016,June,26,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 156, NULL,0,Transient,86.17,0,2,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,189,2016,June,27,26,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,117.29,1,0,Check-Out,2016-07-02,Summer,2016-06-26T07:00Z +Keep,204,2016,June,26,25,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.43,1,0,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,98,2016,June,27,26,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,123.33,0,0,Check-Out,2016-07-02,Summer,2016-06-26T07:00Z +Keep,198,2016,June,25,18,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,81.51,0,0,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,98,2016,June,27,26,2,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient-Party,158.33,0,1,Check-Out,2016-07-02,Summer,2016-06-26T07:00Z +Keep,171,2016,June,26,25,2,5,2,0,0,HB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,158.43,1,1,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,156,2016,June,25,18,4,10,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,74,0,0,Check-Out,2016-07-02,Summer,2016-06-18T07:00Z +Keep,0,2016,June,27,30,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,176,1,0,Check-Out,2016-07-02,Summer,2016-06-30T07:00Z +Keep,97,2016,June,26,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122.29,0,1,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,171,2016,June,26,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 143, NULL,0,Transient,70,0,0,Check-Out,2016-07-02,Summer,2016-06-25T07:00Z +Keep,128,2016,June,26,22,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.1,0,1,Check-Out,2016-07-02,Summer,2016-06-22T07:00Z +Keep,2,2016,July,27,1,0,1,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,122.23,0,1,Check-Out,2016-07-02,Summer,2016-07-01T07:00Z +Keep,3,2016,June,27,30,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,191,1,0,Check-Out,2016-07-02,Summer,2016-06-30T07:00Z +Keep,0,2016,July,27,1,0,1,2,2,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-07-02,Summer,2016-07-01T07:00Z +Keep,169,2016,July,27,2,0,0,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-07-02,Summer,2016-07-02T07:00Z +Cancel,123,2016,July,27,1,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,No-Show,2016-07-01,Summer,2016-07-01T07:00Z +Keep,160,2016,June,27,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,59.8,0,1,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,172,2016,June,27,28,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.6,0,2,Check-Out,2016-07-03,Summer,2016-06-28T07:00Z +Keep,172,2016,June,27,28,0,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,89.1,0,2,Check-Out,2016-07-03,Summer,2016-06-28T07:00Z +Keep,172,2016,June,27,28,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.6,0,2,Check-Out,2016-07-03,Summer,2016-06-28T07:00Z +Keep,160,2016,June,27,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.86,0,2,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,160,2016,June,27,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.86,0,2,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,60,2016,June,27,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.33,1,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,100,2016,June,26,19,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,54.7,0,1,Check-Out,2016-07-03,Summer,2016-06-19T07:00Z +Keep,301,2016,June,26,20,3,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,71.25,0,0,Check-Out,2016-07-03,Summer,2016-06-20T07:00Z +Keep,160,2016,June,27,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,80.99,0,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,100,2016,June,26,19,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.1,0,1,Check-Out,2016-07-03,Summer,2016-06-19T07:00Z +Keep,60,2016,June,27,30,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.33,1,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,60,2016,June,27,30,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.33,0,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,60,2016,June,27,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.33,0,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,60,2016,June,27,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.33,0,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,60,2016,June,27,30,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,218.33,1,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,104,2016,June,26,23,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,0,Check-Out,2016-07-03,Summer,2016-06-23T07:00Z +Keep,167,2016,June,27,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,87.71,1,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,167,2016,June,27,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,74.57,0,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,197,2016,June,27,26,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,89.91,0,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,167,2016,June,27,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,74.57,0,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,167,2016,June,27,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,76.57,0,0,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,10,2016,July,27,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,156,2016,July,27,2,0,1,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,184,1,0,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,182,2016,June,27,27,1,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,93,1,2,Check-Out,2016-07-03,Summer,2016-06-27T07:00Z +Keep,182,2016,June,27,27,1,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,95,1,2,Check-Out,2016-07-03,Summer,2016-06-27T07:00Z +Keep,182,2016,June,27,27,1,5,2,1,1,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,104,1,3,Check-Out,2016-07-03,Summer,2016-06-27T07:00Z +Keep,19,2016,June,27,30,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-07-03,Summer,2016-06-30T07:00Z +Keep,4,2016,July,27,1,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-07-03,Summer,2016-07-01T07:00Z +Keep,170,2016,July,27,2,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 242, NULL,0,Transient,107.1,0,2,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,170,2016,July,27,2,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 242, NULL,0,Transient,119.1,1,2,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,294,2016,June,26,25,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2016-07-03,Summer,2016-06-25T07:00Z +Keep,169,2016,June,26,24,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,1,No Deposit , 241, NULL,0,Transient,89,0,1,Check-Out,2016-07-03,Summer,2016-06-24T07:00Z +Keep,4,2016,July,27,2,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,9,2016,June,27,29,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-07-03,Summer,2016-06-29T07:00Z +Keep,170,2016,July,27,2,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 242, NULL,0,Transient,107.1,0,2,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,170,2016,July,27,2,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 242, NULL,0,Transient,119.1,1,2,Check-Out,2016-07-03,Summer,2016-07-02T07:00Z +Keep,136,2016,June,27,26,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,153.24,0,2,Check-Out,2016-07-03,Summer,2016-06-26T07:00Z +Keep,8,2016,July,27,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,171,1,0,Check-Out,2016-07-03,Summer,2016-07-01T07:00Z +Keep,8,2016,July,27,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,159,0,0,Check-Out,2016-07-03,Summer,2016-07-01T07:00Z +Keep,71,2016,June,27,30,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,140.14,0,2,Check-Out,2016-07-04,Summer,2016-06-30T07:00Z +Keep,181,2016,June,26,24,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,75.8,0,0,Check-Out,2016-07-04,Summer,2016-06-24T07:00Z +Keep,167,2016,June,26,20,4,10,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Transient,68,0,1,Check-Out,2016-07-04,Summer,2016-06-20T07:00Z +Keep,50,2016,June,27,30,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.25,0,1,Check-Out,2016-07-04,Summer,2016-06-30T07:00Z +Keep,173,2016,June,27,26,3,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.53,0,0,Check-Out,2016-07-04,Summer,2016-06-26T07:00Z +Keep,18,2016,July,27,1,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-07-04,Summer,2016-07-01T07:00Z +Keep,0,2016,July,28,3,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,95.64,1,0,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,144,2016,June,26,25,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,95.6,1,0,Check-Out,2016-07-04,Summer,2016-06-25T07:00Z +Keep,136,2016,July,27,1,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,128.1,0,1,Check-Out,2016-07-04,Summer,2016-07-01T07:00Z +Keep,39,2016,June,27,30,1,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,154.25,0,1,Check-Out,2016-07-04,Summer,2016-06-30T07:00Z +Keep,2,2016,July,28,3,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,98.1,0,0,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,131,2016,July,28,3,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,139,2016,June,27,29,1,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,153.42,1,0,Check-Out,2016-07-04,Summer,2016-06-29T07:00Z +Keep,18,2016,June,27,30,1,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,194.1,1,1,Check-Out,2016-07-04,Summer,2016-06-30T07:00Z +Keep,229,2016,June,27,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 115, NULL,0,Transient,90.2,0,0,Check-Out,2016-07-04,Summer,2016-06-27T07:00Z +Keep,25,2016,July,28,3,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,1,1,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,13,2016,June,27,27,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,2,No Deposit , NULL, NULL,0,Transient,194,1,0,Check-Out,2016-07-04,Summer,2016-06-27T07:00Z +Keep,0,2016,July,28,3,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,100,0,0,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,304,2016,June,26,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-07-04,Summer,2016-06-20T07:00Z +Keep,226,2016,June,27,30,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.88,0,2,Check-Out,2016-07-04,Summer,2016-06-30T07:00Z +Keep,0,2016,July,28,3,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,2,Check-Out,2016-07-04,Summer,2016-07-03T07:00Z +Keep,174,2016,June,27,28,1,5,3,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,133.67,0,1,Check-Out,2016-07-04,Summer,2016-06-28T07:00Z +Keep,206,2016,June,26,25,3,6,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,88.2,0,1,Check-Out,2016-07-04,Summer,2016-06-25T07:00Z +Keep,206,2016,June,26,25,3,6,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,88.2,0,1,Check-Out,2016-07-04,Summer,2016-06-25T07:00Z +Keep,218,2016,June,27,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.64,0,1,Check-Out,2016-07-05,Summer,2016-06-28T07:00Z +Keep,202,2016,July,27,1,2,2,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 314, NULL,0,Transient,84.8,0,0,Check-Out,2016-07-05,Summer,2016-07-01T07:00Z +Keep,188,2016,June,26,21,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,74.57,0,1,Check-Out,2016-07-05,Summer,2016-06-21T07:00Z +Keep,207,2016,June,27,26,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,1,Check-Out,2016-07-05,Summer,2016-06-26T07:00Z +Keep,207,2016,June,27,26,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,1,Check-Out,2016-07-05,Summer,2016-06-26T07:00Z +Keep,207,2016,June,27,26,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,1,Check-Out,2016-07-05,Summer,2016-06-26T07:00Z +Keep,9,2016,July,28,4,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, 360,0,Transient-Party,189,0,0,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,9,2016,July,28,4,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,159,0,0,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,169,2016,June,26,21,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,83.26,0,2,Check-Out,2016-07-05,Summer,2016-06-21T07:00Z +Keep,169,2016,June,26,21,4,10,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,104.02,0,3,Check-Out,2016-07-05,Summer,2016-06-21T07:00Z +Keep,9,2016,July,28,4,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,189,0,0,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,9,2016,July,28,4,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,171,0,0,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,131,2016,June,26,25,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.2,1,1,Check-Out,2016-07-05,Summer,2016-06-25T07:00Z +Keep,6,2016,June,27,30,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,143,1,2,Check-Out,2016-07-05,Summer,2016-06-30T07:00Z +Keep,3,2016,July,27,2,2,1,2,1,0,HB,ESP,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,252.17,1,0,Check-Out,2016-07-05,Summer,2016-07-02T07:00Z +Keep,73,2016,July,27,2,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 314, NULL,0,Transient-Party,104.8,1,0,Check-Out,2016-07-05,Summer,2016-07-02T07:00Z +Keep,16,2016,June,27,30,2,3,2,0,0,BB,SWE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,169.5,0,0,Check-Out,2016-07-05,Summer,2016-06-30T07:00Z +Keep,158,2016,June,27,28,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,131.5,1,1,Check-Out,2016-07-05,Summer,2016-06-28T07:00Z +Keep,174,2016,June,27,30,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.2,0,1,Check-Out,2016-07-05,Summer,2016-06-30T07:00Z +Keep,12,2016,June,27,28,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133.29,0,1,Check-Out,2016-07-05,Summer,2016-06-28T07:00Z +Keep,0,2016,July,28,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,141,1,0,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,0,2016,July,28,4,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,159,0,1,Check-Out,2016-07-05,Summer,2016-07-04T07:00Z +Keep,0,2017,February,9,27,1,1,3,0,0,BB,PRT,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,69,0,1,Check-Out,2017-03-01,Winter,2017-02-27T08:00Z +Keep,168,2016,June,26,21,4,10,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.71,0,1,Check-Out,2016-07-05,Summer,2016-06-21T07:00Z +Keep,8,2016,July,27,2,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,204.33,1,0,Check-Out,2016-07-05,Summer,2016-07-02T07:00Z +Keep,224,2016,June,27,28,2,6,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.63,0,2,Check-Out,2016-07-06,Summer,2016-06-28T07:00Z +Keep,167,2016,June,27,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,77.6,0,0,Check-Out,2016-07-06,Summer,2016-06-29T07:00Z +Keep,6,2016,July,28,4,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,66,0,0,Check-Out,2016-07-06,Summer,2016-07-04T07:00Z +Keep,258,2016,June,27,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,68.54,0,2,Check-Out,2016-07-06,Summer,2016-06-29T07:00Z +Keep,170,2017,May,21,22,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,2,No Deposit , 40, NULL,0,Contract,52.85,0,2,Check-Out,2017-05-27,Spring,2017-05-22T07:00Z +Keep,168,2016,June,26,22,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,106.57,0,1,Check-Out,2016-07-06,Summer,2016-06-22T07:00Z +Keep,0,2016,July,28,5,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,0,0,Check-Out,2016-07-06,Summer,2016-07-05T07:00Z +Keep,169,2016,June,26,22,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 163, NULL,0,Transient,85.3,0,0,Check-Out,2016-07-06,Summer,2016-06-22T07:00Z +Keep,164,2016,June,27,30,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,131.72,0,0,Check-Out,2016-07-06,Summer,2016-06-30T07:00Z +Keep,162,2016,June,27,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,77.6,0,0,Check-Out,2016-07-06,Summer,2016-06-29T07:00Z +Keep,209,2016,June,26,22,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,72.97,0,0,Check-Out,2016-07-06,Summer,2016-06-22T07:00Z +Keep,82,2016,June,27,30,2,4,2,2,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,93.86,1,0,Check-Out,2016-07-06,Summer,2016-06-30T07:00Z +Keep,29,2016,July,28,5,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,150.92,0,1,Check-Out,2016-07-06,Summer,2016-07-05T07:00Z +Keep,17,2016,July,27,2,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,145.5,1,1,Check-Out,2016-07-06,Summer,2016-07-02T07:00Z +Keep,144,2016,June,27,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,83.7,0,1,Check-Out,2016-07-06,Summer,2016-06-27T07:00Z +Keep,135,2016,June,27,26,4,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,78.8,1,0,Check-Out,2016-07-06,Summer,2016-06-26T07:00Z +Keep,144,2016,June,27,27,3,6,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,83.7,0,1,Check-Out,2016-07-06,Summer,2016-06-27T07:00Z +Keep,0,2016,July,28,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2016-07-06,Summer,2016-07-05T07:00Z +Keep,144,2016,June,27,27,3,6,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,83.7,0,1,Check-Out,2016-07-06,Summer,2016-06-27T07:00Z +Keep,217,2016,June,26,22,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.71,0,2,Check-Out,2016-07-06,Summer,2016-06-22T07:00Z +Keep,335,2017,June,25,21,4,10,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,92,0,2,Check-Out,2017-07-05,Summer,2017-06-21T07:00Z +Keep,0,2016,July,28,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,122.43,1,1,Check-Out,2016-07-06,Summer,2016-07-05T07:00Z +Keep,172,2016,June,27,27,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,68,0,0,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Keep,173,2016,June,27,27,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,60.82,0,1,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Keep,173,2016,June,27,27,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,60.82,0,0,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Keep,160,2016,June,27,26,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,0,Check-Out,2016-07-07,Summer,2016-06-26T07:00Z +Keep,166,2016,June,27,27,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,90.2,0,1,Check-Out,2016-07-07,Summer,2016-06-27T07:00Z +Keep,133,2016,June,27,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.1,0,1,Check-Out,2016-07-07,Summer,2016-06-30T07:00Z +Keep,1,2016,July,28,4,1,2,3,1,0,BB,AND,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,236,1,0,Check-Out,2016-07-07,Summer,2016-07-04T07:00Z +Keep,17,2016,July,28,4,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,179.1,0,0,Check-Out,2016-07-07,Summer,2016-07-04T07:00Z +Keep,8,2016,July,28,5,0,2,3,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,219,0,0,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,85,2016,July,28,3,2,2,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 5, NULL,0,Transient-Party,150.5,1,0,Check-Out,2016-07-07,Summer,2016-07-03T07:00Z +Keep,8,2016,July,28,5,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,224,0,0,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,17,2016,July,28,3,2,2,2,1,0,HB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,188.75,0,1,Check-Out,2016-07-07,Summer,2016-07-03T07:00Z +Keep,111,2016,June,27,30,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,64.8,0,1,Check-Out,2016-07-07,Summer,2016-06-30T07:00Z +Keep,9,2016,July,28,6,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,159,1,1,Check-Out,2016-07-07,Summer,2016-07-06T07:00Z +Keep,230,2016,June,27,28,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-07-07,Summer,2016-06-28T07:00Z +Keep,177,2016,June,26,23,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82,1,0,Check-Out,2016-07-07,Summer,2016-06-23T07:00Z +Keep,177,2016,June,26,23,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,0,Check-Out,2016-07-07,Summer,2016-06-23T07:00Z +Keep,164,2016,June,27,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.86,0,1,Check-Out,2016-07-07,Summer,2016-06-30T07:00Z +Keep,61,2016,July,28,5,0,2,2,2,0,BB,USA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,190,0,1,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,61,2016,July,28,5,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,192,1,1,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,61,2016,July,28,5,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,222,1,2,Check-Out,2016-07-07,Summer,2016-07-05T07:00Z +Keep,3,2016,July,28,8,1,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,157.08,0,0,Check-Out,2016-07-11,Summer,2016-07-08T07:00Z +Keep,30,2016,July,28,8,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,0,0,0,Check-Out,2016-07-08,Summer,2016-07-08T07:00Z +Keep,130,2016,June,26,24,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,139.5,1,1,Check-Out,2016-07-08,Summer,2016-06-24T07:00Z +Keep,0,2016,July,28,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,171,1,0,Check-Out,2016-07-08,Summer,2016-07-07T07:00Z +Keep,60,2016,July,28,8,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,209.1,1,0,Check-Out,2016-07-11,Summer,2016-07-08T07:00Z +Keep,47,2017,August,32,12,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,230,0,1,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,176,2016,June,27,30,2,6,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,135.2,0,3,Check-Out,2016-07-08,Summer,2016-06-30T07:00Z +Keep,181,2016,July,28,4,1,3,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,182.25,1,0,Check-Out,2016-07-08,Summer,2016-07-04T07:00Z +Keep,6,2016,July,28,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,105,0,0,Check-Out,2016-07-08,Summer,2016-07-07T07:00Z +Keep,30,2016,July,30,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,E,0,No Deposit , NULL, 331,0,Transient,105,0,0,Check-Out,2016-07-21,Summer,2016-07-20T07:00Z +Cancel,9,2016,September,38,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,3,2,D,D,0,No Deposit , NULL, 331,0,Transient,114,0,0,Canceled,2016-09-06,Fall,2016-09-14T07:00Z +Cancel,16,2016,September,39,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,3,2,E,E,0,No Deposit , NULL, 331,0,Transient,139,0,0,Canceled,2016-09-06,Fall,2016-09-21T07:00Z +Cancel,23,2016,September,40,28,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,3,2,A,A,0,No Deposit , NULL, 331,0,Transient,89.1,0,0,Canceled,2016-09-06,Fall,2016-09-28T07:00Z +Cancel,5,2016,October,42,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,4,2,E,E,0,No Deposit , NULL, 331,0,Transient,81,0,0,Canceled,2016-10-07,Fall,2016-10-12T07:00Z +Keep,2,2016,November,46,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,4,2,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Cancel,9,2016,November,47,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,5,3,A,A,0,No Deposit , NULL, 331,0,Transient,35,0,0,Canceled,2016-11-15,Fall,2016-11-16T08:00Z +Keep,16,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,5,3,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,2,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,5,4,A,A,1,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,5,2016,July,28,7,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,168.6,1,1,Check-Out,2016-07-08,Summer,2016-07-07T07:00Z +Keep,181,2016,July,28,4,1,3,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-07-08,Summer,2016-07-04T07:00Z +Keep,167,2016,June,27,28,2,8,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 241, NULL,0,Transient,81.08,0,2,Check-Out,2016-07-08,Summer,2016-06-28T07:00Z +Keep,9,2016,July,28,7,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219,1,0,Check-Out,2016-07-08,Summer,2016-07-07T07:00Z +Keep,85,2016,July,28,3,2,3,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 5, NULL,0,Transient-Party,168.48,1,0,Check-Out,2016-07-08,Summer,2016-07-03T07:00Z +Keep,10,2016,July,28,5,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2016-07-08,Summer,2016-07-05T07:00Z +Keep,205,2016,June,27,26,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,I,0,No Deposit , 196, NULL,0,Transient,90.03,0,0,Check-Out,2016-07-08,Summer,2016-06-26T07:00Z +Keep,9,2016,July,28,5,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,159.07,1,1,Check-Out,2016-07-08,Summer,2016-07-05T07:00Z +Keep,171,2016,July,27,2,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,94.94,0,3,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,171,2016,July,27,2,2,5,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,96.94,0,3,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,180,2016,June,27,28,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,57.8,0,0,Check-Out,2016-07-09,Summer,2016-06-28T07:00Z +Keep,167,2016,July,27,1,2,6,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,130.5,0,1,Check-Out,2016-07-09,Summer,2016-07-01T07:00Z +Keep,226,2016,July,27,2,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,103.77,0,1,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,89,2016,July,28,3,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient-Party,74.8,1,1,Check-Out,2016-07-09,Summer,2016-07-03T07:00Z +Keep,89,2016,July,28,3,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient-Party,64.8,0,1,Check-Out,2016-07-09,Summer,2016-07-03T07:00Z +Keep,293,2016,July,28,5,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,135.3,1,1,Check-Out,2016-07-09,Summer,2016-07-05T07:00Z +Keep,0,2016,July,28,8,0,1,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159,1,1,Check-Out,2016-07-09,Summer,2016-07-08T07:00Z +Keep,28,2016,July,28,6,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-07-09,Summer,2016-07-06T07:00Z +Keep,22,2016,July,28,6,0,3,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,171,1,1,Check-Out,2016-07-09,Summer,2016-07-06T07:00Z +Keep,22,2016,July,28,6,0,3,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,159,0,1,Check-Out,2016-07-09,Summer,2016-07-06T07:00Z +Keep,10,2016,July,28,3,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196.33,1,1,Check-Out,2016-07-09,Summer,2016-07-03T07:00Z +Keep,13,2016,July,28,3,2,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,186,0,1,Check-Out,2016-07-09,Summer,2016-07-03T07:00Z +Keep,143,2016,July,27,2,2,5,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,75.6,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,45,2016,July,28,6,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,204,1,1,Check-Out,2016-07-09,Summer,2016-07-06T07:00Z +Keep,9,2016,July,28,3,2,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,168,0,0,Check-Out,2016-07-09,Summer,2016-07-03T07:00Z +Keep,14,2016,July,28,7,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,134.43,1,1,Check-Out,2016-07-09,Summer,2016-07-07T07:00Z +Keep,0,2016,July,28,8,0,1,2,0,0,BB,ARG,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,125,0,0,Check-Out,2016-07-09,Summer,2016-07-08T07:00Z +Keep,0,2016,July,28,8,0,1,2,0,0,BB,ARG,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,137,1,0,Check-Out,2016-07-09,Summer,2016-07-08T07:00Z +Keep,208,2016,July,27,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,79.9,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,228,2016,July,27,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,57.8,0,0,Check-Out,2016-07-09,Summer,2016-07-02T07:00Z +Keep,6,2016,July,28,5,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,86,0,0,Check-Out,2016-07-09,Summer,2016-07-05T07:00Z +Keep,45,2016,July,28,7,0,3,1,0,0,BB,POL,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,0,0,1,Check-Out,2016-07-10,Summer,2016-07-07T07:00Z +Keep,12,2016,July,28,5,0,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,146.7,0,1,Check-Out,2016-07-10,Summer,2016-07-05T07:00Z +Keep,129,2016,June,27,26,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68,0,1,Check-Out,2016-07-10,Summer,2016-06-26T07:00Z +Keep,311,2016,June,27,26,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,70,0,0,Check-Out,2016-07-10,Summer,2016-06-26T07:00Z +Keep,164,2016,June,27,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,62.2,1,1,Check-Out,2016-07-10,Summer,2016-06-30T07:00Z +Keep,167,2016,June,27,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 2, NULL,0,Contract,68,0,0,Check-Out,2016-07-10,Summer,2016-06-30T07:00Z +Keep,2,2016,July,28,8,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,1,0,Check-Out,2016-07-10,Summer,2016-07-08T07:00Z +Keep,114,2016,July,28,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Contract,92.1,0,0,Check-Out,2016-07-10,Summer,2016-07-03T07:00Z +Keep,57,2016,July,28,8,0,2,2,2,0,BB,IND,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,190,0,0,Check-Out,2016-07-10,Summer,2016-07-08T07:00Z +Keep,120,2016,July,28,5,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,160.5,1,0,Check-Out,2016-07-10,Summer,2016-07-05T07:00Z +Keep,160,2016,June,27,26,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,0,Check-Out,2016-07-10,Summer,2016-06-26T07:00Z +Keep,164,2016,June,27,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,0,Check-Out,2016-07-10,Summer,2016-06-30T07:00Z +Keep,172,2016,July,28,4,1,5,2,1,1,BB,BRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,155.65,1,2,Check-Out,2016-07-10,Summer,2016-07-04T07:00Z +Keep,30,2016,July,28,6,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,146.3,0,0,Check-Out,2016-07-10,Summer,2016-07-06T07:00Z +Keep,5,2016,July,28,7,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,204.6,1,0,Check-Out,2016-07-10,Summer,2016-07-07T07:00Z +Keep,2,2016,July,28,9,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,211,1,1,Check-Out,2016-07-10,Summer,2016-07-09T07:00Z +Keep,166,2016,June,27,30,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,90.2,0,0,Check-Out,2016-07-10,Summer,2016-06-30T07:00Z +Keep,2,2016,July,28,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,184,0,0,Check-Out,2016-07-10,Summer,2016-07-09T07:00Z +Keep,164,2016,July,27,1,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,77.8,0,1,Check-Out,2016-07-10,Summer,2016-07-01T07:00Z +Keep,2,2016,July,28,7,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.67,1,1,Check-Out,2016-07-10,Summer,2016-07-07T07:00Z +Keep,30,2016,July,28,7,0,3,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 241, NULL,0,Transient,146.3,0,1,Check-Out,2016-07-10,Summer,2016-07-07T07:00Z +Keep,143,2016,June,27,26,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,95.4,0,0,Check-Out,2016-07-10,Summer,2016-06-26T07:00Z +Keep,164,2016,July,27,1,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,57.8,0,1,Check-Out,2016-07-10,Summer,2016-07-01T07:00Z +Keep,2,2016,July,28,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,184,1,0,Check-Out,2016-07-10,Summer,2016-07-09T07:00Z +Keep,2,2016,July,28,9,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, 419,0,Transient,246,0,0,Check-Out,2016-07-10,Summer,2016-07-09T07:00Z +Keep,21,2016,July,28,8,0,2,2,0,0,BB,VNM,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2016-07-10,Summer,2016-07-08T07:00Z +Keep,0,2016,July,28,7,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,132.16,0,0,Check-Out,2016-07-10,Summer,2016-07-07T07:00Z +Keep,319,2016,July,28,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,59.51,0,0,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,220,2016,July,28,4,2,5,2,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 315, NULL,0,Transient,135.3,0,0,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,10,2016,July,28,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,1,1,Check-Out,2016-07-11,Summer,2016-07-08T07:00Z +Keep,11,2016,July,28,5,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196,0,0,Check-Out,2016-07-11,Summer,2016-07-05T07:00Z +Keep,230,2016,July,28,4,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,101.47,0,1,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,180,2016,July,28,3,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,97,1,1,Check-Out,2016-07-11,Summer,2016-07-03T07:00Z +Keep,180,2016,July,28,3,3,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-07-11,Summer,2016-07-03T07:00Z +Keep,15,2016,July,28,8,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,147.07,0,1,Check-Out,2016-07-11,Summer,2016-07-08T07:00Z +Keep,308,2016,July,28,4,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,108,0,0,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,14,2016,July,28,6,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,167.23,1,1,Check-Out,2016-07-11,Summer,2016-07-06T07:00Z +Keep,13,2016,July,28,7,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,208.5,1,1,Check-Out,2016-07-11,Summer,2016-07-07T07:00Z +Keep,9,2016,July,29,11,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 20,0,Transient,0,0,0,Check-Out,2016-07-11,Summer,2016-07-11T07:00Z +Keep,16,2016,July,28,8,1,2,2,1,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,163.78,1,1,Check-Out,2016-07-11,Summer,2016-07-08T07:00Z +Keep,3,2016,July,28,9,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,198.5,0,2,Check-Out,2016-07-11,Summer,2016-07-09T07:00Z +Keep,192,2016,July,28,4,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,137.96,0,0,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,171,2016,July,28,4,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient-Party,88.11,0,1,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,171,2016,July,28,4,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient-Party,86.4,0,1,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,166,2016,July,28,9,1,1,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,164,0,2,Check-Out,2016-07-11,Summer,2016-07-09T07:00Z +Keep,166,2016,July,28,4,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,94,0,1,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,0,2016,July,29,10,1,0,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,194,0,0,Check-Out,2016-07-11,Summer,2016-07-10T07:00Z +Keep,223,2016,July,28,4,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.71,0,2,Check-Out,2016-07-11,Summer,2016-07-04T07:00Z +Keep,1,2016,July,29,10,1,0,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,156,1,0,Check-Out,2016-07-11,Summer,2016-07-10T07:00Z +Keep,232,2016,July,28,6,2,4,2,2,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,135.3,1,0,Check-Out,2016-07-12,Summer,2016-07-06T07:00Z +Keep,173,2016,July,27,2,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,79.9,0,2,Check-Out,2016-07-12,Summer,2016-07-02T07:00Z +Keep,166,2016,July,27,2,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 143, NULL,0,Contract,81.9,0,0,Check-Out,2016-07-12,Summer,2016-07-02T07:00Z +Keep,182,2016,July,28,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,99.46,0,2,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,182,2016,July,28,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,97.75,0,1,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,181,2016,July,28,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 2, NULL,0,Contract,70,0,0,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,165,2016,July,27,2,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-12,Summer,2016-07-02T07:00Z +Keep,128,2016,July,28,7,2,3,2,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,169.95,0,1,Check-Out,2016-07-12,Summer,2016-07-07T07:00Z +Keep,0,2016,July,29,11,1,0,1,0,0,BB,SWE,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,161,1,0,Check-Out,2016-07-12,Summer,2016-07-11T07:00Z +Keep,32,2016,July,28,7,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,212,1,0,Check-Out,2016-07-12,Summer,2016-07-07T07:00Z +Keep,182,2016,July,28,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,97.75,0,1,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,168,2016,July,28,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,77.4,0,0,Check-Out,2016-07-12,Summer,2016-07-05T07:00Z +Keep,4,2016,July,29,11,1,0,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 415,0,Transient,73,0,0,Check-Out,2016-07-12,Summer,2016-07-11T07:00Z +Keep,173,2016,July,27,2,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,87.8,0,1,Check-Out,2016-07-12,Summer,2016-07-02T07:00Z +Keep,2,2016,July,29,11,1,0,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,1,Check-Out,2016-07-12,Summer,2016-07-11T07:00Z +Keep,6,2016,July,28,8,2,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,E,E,5,No Deposit , 250, NULL,0,Transient,191.1,1,1,Check-Out,2016-07-12,Summer,2016-07-08T07:00Z +Keep,177,2016,July,28,4,3,5,1,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 242, NULL,0,Transient,211.8,1,1,Check-Out,2016-07-12,Summer,2016-07-04T07:00Z +Keep,173,2016,July,27,2,4,6,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,66.7,0,0,Check-Out,2016-07-12,Summer,2016-07-02T07:00Z +Keep,12,2016,July,28,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,150.79,0,1,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Keep,317,2016,July,28,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,102.71,0,3,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Keep,183,2016,July,28,6,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98,0,0,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Keep,177,2016,July,28,6,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,104.6,0,1,Check-Out,2016-07-13,Summer,2016-07-06T07:00Z +Keep,161,2016,July,28,5,2,6,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,111.75,1,0,Check-Out,2016-07-13,Summer,2016-07-05T07:00Z +Keep,205,2016,July,28,4,3,6,2,1,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,85.67,0,1,Check-Out,2016-07-13,Summer,2016-07-04T07:00Z +Keep,0,2016,July,29,12,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,201,1,0,Check-Out,2016-07-13,Summer,2016-07-12T07:00Z +Keep,165,2016,July,28,3,4,6,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 242, NULL,0,Transient,181.3,0,1,Check-Out,2016-07-13,Summer,2016-07-03T07:00Z +Keep,0,2016,July,29,12,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,161,1,0,Check-Out,2016-07-13,Summer,2016-07-12T07:00Z +Keep,66,2016,July,28,4,3,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,100,0,0,Check-Out,2016-07-13,Summer,2016-07-04T07:00Z +Keep,6,2016,July,29,11,1,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,282,0,2,Check-Out,2016-07-13,Summer,2016-07-11T07:00Z +Keep,22,2016,August,36,31,2,4,2,3,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,G,G,1,No Deposit , 240, NULL,0,Transient,311.33,1,2,Check-Out,2016-09-06,Summer,2016-08-31T07:00Z +Keep,165,2016,July,28,4,3,6,2,0,0,FB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 71, NULL,0,Transient,110,0,0,Check-Out,2016-07-13,Summer,2016-07-04T07:00Z +Keep,2,2016,July,29,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2016-07-15,Summer,2016-07-14T07:00Z +Keep,171,2016,July,28,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,68,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,167,2016,July,28,3,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-14,Summer,2016-07-03T07:00Z +Keep,210,2016,June,27,30,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.88,0,1,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,171,2016,July,28,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,2,No Deposit , 243, NULL,0,Contract,108,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,164,2016,June,27,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,1,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,180,2016,July,28,4,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,87.8,0,0,Check-Out,2016-07-14,Summer,2016-07-04T07:00Z +Keep,164,2016,June,27,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,1,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,245,2017,June,25,22,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,84.8,0,1,Check-Out,2017-07-06,Summer,2017-06-22T07:00Z +Keep,191,2016,July,28,7,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,80.03,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,171,2016,July,28,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.86,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,164,2016,June,27,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,59.8,0,0,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,196,2016,July,28,9,2,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,115,0,1,Check-Out,2016-07-14,Summer,2016-07-09T07:00Z +Keep,171,2016,July,28,7,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,68.86,0,0,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,89,2016,July,29,14,0,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2016-07-14,Summer,2016-07-14T07:00Z +Keep,6,2016,July,29,13,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 270,0,Transient,73,0,1,Check-Out,2016-07-14,Summer,2016-07-13T07:00Z +Keep,6,2016,September,39,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,C,0,No Deposit , NULL, 270,0,Transient,59,0,1,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,5,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 270,0,Transient,42,0,1,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,5,2016,November,47,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 270,0,Transient,30,0,1,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,6,2016,December,51,13,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 270,0,Transient,30,0,1,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,6,2017,January,2,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 270,0,Transient,35,0,1,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,0,2017,January,4,24,0,2,2,0,0,BB,PRT,Corporate,Corporate, 1,0,5,A,D,0,No Deposit , NULL, 270,0,Transient,40,0,1,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,1,2017,February,6,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,6,A,A,1,No Deposit , NULL, 270,0,Transient,35,0,1,Check-Out,2017-02-09,Winter,2017-02-07T08:00Z +Keep,6,2017,March,10,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,7,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,1,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,3,2017,May,21,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,8,A,D,0,No Deposit , NULL, 323,0,Transient,45,0,1,Check-Out,2017-05-26,Spring,2017-05-25T07:00Z +Keep,12,2016,July,28,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,209.57,0,1,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,164,2016,June,27,30,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,68.86,0,0,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,0,2016,July,29,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,165,0,0,Check-Out,2016-07-14,Summer,2016-07-12T07:00Z +Keep,12,2016,July,29,11,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,1,0,Check-Out,2016-07-14,Summer,2016-07-11T07:00Z +Keep,204,2016,July,28,9,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,94.6,0,0,Check-Out,2016-07-14,Summer,2016-07-09T07:00Z +Keep,9,2016,July,28,8,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-07-14,Summer,2016-07-08T07:00Z +Keep,154,2016,July,29,11,1,2,2,0,0,BB,LUX,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 327, NULL,0,Transient,64.8,0,0,Check-Out,2016-07-14,Summer,2016-07-11T07:00Z +Keep,164,2016,June,27,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,2,Check-Out,2016-07-14,Summer,2016-06-30T07:00Z +Keep,351,2017,June,26,29,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,1,D,D,0,No Deposit , 243, NULL,0,Group,123.5,0,3,Check-Out,2017-07-13,Summer,2017-06-29T07:00Z +Keep,2,2016,July,29,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,171,1,1,Check-Out,2016-07-14,Summer,2016-07-12T07:00Z +Keep,0,2017,March,11,17,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,107,1,1,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,2,2017,June,26,28,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,2,E,E,0,No Deposit , NULL, NULL,0,Transient,179,1,1,Check-Out,2017-06-30,Summer,2017-06-28T07:00Z +Keep,137,2016,July,28,9,2,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-07-14,Summer,2016-07-09T07:00Z +Keep,113,2016,July,28,7,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,183.86,1,1,Check-Out,2016-07-14,Summer,2016-07-07T07:00Z +Keep,0,2016,July,29,13,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,161,0,0,Check-Out,2016-07-14,Summer,2016-07-13T07:00Z +Keep,2,2016,July,29,14,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,161,0,0,Check-Out,2016-07-15,Summer,2016-07-14T07:00Z +Keep,1,2016,July,29,13,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,0,Check-Out,2016-07-14,Summer,2016-07-13T07:00Z +Keep,179,2016,July,28,4,3,7,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,100.89,0,0,Check-Out,2016-07-14,Summer,2016-07-04T07:00Z +Keep,212,2016,July,29,11,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-07-14,Summer,2016-07-11T07:00Z +Keep,30,2016,July,29,12,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-07-14,Summer,2016-07-12T07:00Z +Keep,220,2016,July,28,4,3,7,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,70,0,0,Check-Out,2016-07-14,Summer,2016-07-04T07:00Z +Keep,122,2016,July,29,15,2,4,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,113.05,0,0,Check-Out,2016-07-21,Summer,2016-07-15T07:00Z +Keep,122,2016,July,29,15,2,4,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,110.7,0,0,Check-Out,2016-07-21,Summer,2016-07-15T07:00Z +Keep,9,2016,July,29,15,2,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,199,0,0,Check-Out,2016-07-20,Summer,2016-07-15T07:00Z +Keep,177,2016,July,27,1,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,60.18,0,0,Check-Out,2016-07-15,Summer,2016-07-01T07:00Z +Keep,180,2016,July,28,4,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,180,2016,July,28,4,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,182,2016,July,28,6,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-07-15,Summer,2016-07-06T07:00Z +Keep,258,2016,July,28,4,3,8,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,130.5,0,0,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,322,2016,July,28,4,3,8,2,2,0,BB,DNK,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,123.25,0,0,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,147,2016,July,28,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,146.1,0,0,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,23,2016,July,29,15,0,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-07-15,Summer,2016-07-15T07:00Z +Keep,178,2016,July,29,11,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,102.9,1,0,Check-Out,2016-07-15,Summer,2016-07-11T07:00Z +Keep,17,2016,July,29,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 146, NULL,0,Transient,65,0,0,Check-Out,2016-07-15,Summer,2016-07-14T07:00Z +Keep,173,2016,July,28,4,3,8,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,122.85,0,2,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,173,2016,July,28,4,3,8,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,134.85,1,2,Check-Out,2016-07-15,Summer,2016-07-04T07:00Z +Keep,154,2016,July,29,11,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,98.4,1,0,Check-Out,2016-07-15,Summer,2016-07-11T07:00Z +Keep,191,2016,July,28,8,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,86,0,1,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,36,2016,July,29,11,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,154,0,1,Check-Out,2016-07-15,Summer,2016-07-11T07:00Z +Keep,178,2016,July,28,9,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,106.5,1,1,Check-Out,2016-07-15,Summer,2016-07-09T07:00Z +Keep,148,2017,July,27,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,2,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-07-14,Summer,2017-07-08T07:00Z +Keep,9,2016,July,29,13,0,2,2,0,0,BB,DEU,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,0,0,3,Check-Out,2016-07-15,Summer,2016-07-13T07:00Z +Keep,164,2016,July,27,1,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,105.4,0,0,Check-Out,2016-07-15,Summer,2016-07-01T07:00Z +Keep,162,2016,July,28,8,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,88.4,0,0,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,125,2016,July,28,8,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,157.86,0,2,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,59,2016,July,29,13,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,202,1,0,Check-Out,2016-07-15,Summer,2016-07-13T07:00Z +Keep,143,2016,July,28,8,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 29, NULL,0,Transient,112,0,0,Check-Out,2016-07-15,Summer,2016-07-08T07:00Z +Keep,38,2016,July,29,12,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,212,1,1,Check-Out,2016-07-15,Summer,2016-07-12T07:00Z +Keep,0,2016,July,29,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,149,0,0,Check-Out,2016-07-15,Summer,2016-07-14T07:00Z +Keep,0,2016,July,29,15,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,176,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,1,2016,July,29,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 424,0,Transient,126,1,0,Check-Out,2016-07-15,Summer,2016-07-14T07:00Z +Keep,27,2016,July,29,11,1,3,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,224,0,0,Check-Out,2016-07-15,Summer,2016-07-11T07:00Z +Keep,173,2016,July,28,9,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 143, NULL,0,Contract,123.64,0,1,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,20,2016,July,28,9,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,0,1,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,177,2016,July,28,6,2,8,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,120,0,1,Check-Out,2016-07-16,Summer,2016-07-06T07:00Z +Keep,187,2016,July,28,9,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,2,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,187,2016,July,28,9,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,1,2,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,187,2016,July,28,9,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,1,2,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,187,2016,July,28,9,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,1,2,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,187,2016,July,28,9,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,2,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,129,2016,July,29,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.67,1,3,Check-Out,2016-07-16,Summer,2016-07-10T07:00Z +Keep,179,2016,July,29,11,1,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient-Party,91.4,0,1,Check-Out,2016-07-16,Summer,2016-07-11T07:00Z +Keep,179,2016,July,29,11,1,4,1,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient-Party,24.7,0,1,Check-Out,2016-07-16,Summer,2016-07-11T07:00Z +Keep,132,2016,July,29,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-16,Summer,2016-07-10T07:00Z +Keep,201,2016,July,28,9,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,64.8,0,0,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,23,2016,July,29,10,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-07-16,Summer,2016-07-10T07:00Z +Keep,0,2016,July,29,15,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,0,Check-Out,2016-07-16,Summer,2016-07-15T07:00Z +Keep,0,2016,July,29,14,0,2,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,146,0,0,Check-Out,2016-07-16,Summer,2016-07-14T07:00Z +Keep,25,2016,July,29,15,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,155.1,1,0,Check-Out,2016-07-16,Summer,2016-07-15T07:00Z +Keep,100,2016,July,29,15,0,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,226,0,1,Check-Out,2016-07-16,Summer,2016-07-15T07:00Z +Keep,169,2016,July,27,2,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,120.1,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Keep,184,2016,July,28,9,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,106.5,1,1,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,147,2016,July,29,11,1,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-07-16,Summer,2016-07-11T07:00Z +Keep,100,2016,July,29,15,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,F,3,No Deposit , 240, NULL,0,Transient-Party,208,1,2,Check-Out,2016-07-16,Summer,2016-07-15T07:00Z +Keep,24,2016,July,29,14,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,171,0,1,Check-Out,2016-07-16,Summer,2016-07-14T07:00Z +Keep,171,2016,July,27,2,4,10,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,119.7,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Keep,169,2016,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,104.55,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Keep,175,2016,July,28,9,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,115.2,0,1,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,31,2016,July,28,9,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,214.87,0,1,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,171,2016,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,90.1,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Keep,1,2016,July,29,15,0,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,164,1,1,Check-Out,2016-07-16,Summer,2016-07-15T07:00Z +Keep,129,2016,July,29,10,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.67,0,2,Check-Out,2016-07-16,Summer,2016-07-10T07:00Z +Keep,176,2016,July,28,9,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,136.2,1,0,Check-Out,2016-07-16,Summer,2016-07-09T07:00Z +Keep,1,2016,July,29,14,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,171,1,1,Check-Out,2016-07-16,Summer,2016-07-14T07:00Z +Keep,285,2016,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,73.86,0,0,Check-Out,2016-07-16,Summer,2016-07-02T07:00Z +Keep,146,2016,July,29,14,0,2,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 156, NULL,0,Transient-Party,122.7,0,3,Check-Out,2016-07-16,Summer,2016-07-14T07:00Z +Keep,146,2016,July,29,14,0,2,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 156, NULL,0,Transient-Party,110.7,0,3,Check-Out,2016-07-16,Summer,2016-07-14T07:00Z +Keep,171,2016,July,28,7,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,106.55,0,0,Check-Out,2016-07-17,Summer,2016-07-07T07:00Z +Keep,10,2016,July,29,13,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171.5,0,1,Check-Out,2016-07-17,Summer,2016-07-13T07:00Z +Keep,107,2016,July,29,13,0,4,1,1,0,BB,AZE,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 242, NULL,0,Transient,162,0,1,Check-Out,2016-07-17,Summer,2016-07-13T07:00Z +Keep,174,2016,July,29,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,106.55,0,0,Check-Out,2016-07-17,Summer,2016-07-10T07:00Z +Keep,44,2016,July,29,14,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,181.33,0,2,Check-Out,2016-07-17,Summer,2016-07-14T07:00Z +Keep,6,2016,July,29,14,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217,0,2,Check-Out,2016-07-17,Summer,2016-07-14T07:00Z +Keep,18,2016,July,29,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,186,1,1,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,18,2016,July,29,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,174,0,1,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,0,2016,July,29,14,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,158.86,0,0,Check-Out,2016-07-17,Summer,2016-07-14T07:00Z +Keep,2,2016,July,29,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,176,0,1,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,134,2016,July,29,12,0,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2016-07-17,Summer,2016-07-12T07:00Z +Keep,134,2016,July,29,12,0,5,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2016-07-17,Summer,2016-07-12T07:00Z +Keep,23,2016,July,29,15,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,160,0,1,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,165,2016,July,28,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,104.55,0,2,Check-Out,2016-07-17,Summer,2016-07-03T07:00Z +Keep,165,2016,July,28,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,104.55,0,2,Check-Out,2016-07-17,Summer,2016-07-03T07:00Z +Keep,1,2016,July,29,15,0,2,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,E,0,No Deposit , NULL, 425,0,Transient,147.6,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,1,2016,July,29,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,176,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,148,2016,July,29,13,0,4,2,2,0,HB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,213.75,1,0,Check-Out,2016-07-17,Summer,2016-07-13T07:00Z +Keep,177,2016,July,28,9,2,6,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,142.2,0,1,Check-Out,2016-07-17,Summer,2016-07-09T07:00Z +Keep,122,2016,July,28,8,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,162.22,0,1,Check-Out,2016-07-17,Summer,2016-07-08T07:00Z +Keep,37,2016,July,28,9,2,6,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,163.65,0,1,Check-Out,2016-07-17,Summer,2016-07-09T07:00Z +Keep,1,2016,July,29,16,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,145,1,0,Check-Out,2016-07-17,Summer,2016-07-16T07:00Z +Keep,1,2016,July,29,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,1,0,Check-Out,2016-07-17,Summer,2016-07-16T07:00Z +Keep,12,2016,July,29,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 348, NULL,0,Transient,152.8,1,0,Check-Out,2016-07-17,Summer,2016-07-16T07:00Z +Keep,55,2016,July,29,15,0,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,249.5,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,1,2016,July,29,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166.5,1,2,Check-Out,2016-07-17,Summer,2016-07-16T07:00Z +Keep,0,2016,July,29,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,157,1,0,Check-Out,2016-07-17,Summer,2016-07-16T07:00Z +Keep,68,2016,July,29,15,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,2,2016,July,29,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,143.2,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,185,2016,July,28,9,2,6,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,177.25,0,0,Check-Out,2016-07-17,Summer,2016-07-09T07:00Z +Keep,14,2016,July,29,14,0,3,2,1,0,BB,FRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,244,0,0,Check-Out,2016-07-17,Summer,2016-07-14T07:00Z +Keep,17,2016,July,30,17,1,0,2,1,0,BB,FRA,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,187,0,0,Check-Out,2016-07-18,Summer,2016-07-17T07:00Z +Keep,143,2016,July,29,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,106.26,0,0,Check-Out,2016-07-17,Summer,2016-07-10T07:00Z +Keep,177,2016,July,28,9,2,6,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,142.2,1,2,Check-Out,2016-07-17,Summer,2016-07-09T07:00Z +Keep,0,2016,July,29,15,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,219,0,0,Check-Out,2016-07-17,Summer,2016-07-15T07:00Z +Keep,0,2016,July,30,17,1,0,2,1,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-07-18,Summer,2016-07-17T07:00Z +Keep,1,2016,July,30,18,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-07-18,Summer,2016-07-18T07:00Z +Keep,167,2016,July,28,6,3,9,2,1,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,160,0,1,Check-Out,2016-07-18,Summer,2016-07-06T07:00Z +Keep,182,2016,July,29,11,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,95.86,0,0,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,217,2016,July,29,12,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-07-18,Summer,2016-07-12T07:00Z +Keep,22,2016,July,29,14,1,3,2,2,0,BB,USA,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,186.5,0,0,Check-Out,2016-07-18,Summer,2016-07-14T07:00Z +Keep,114,2016,July,28,8,3,7,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,176,0,1,Check-Out,2016-07-18,Summer,2016-07-08T07:00Z +Keep,95,2016,July,29,15,1,2,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,158.2,0,4,Check-Out,2016-07-18,Summer,2016-07-15T07:00Z +Keep,137,2016,July,29,15,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164,1,0,Check-Out,2016-07-18,Summer,2016-07-15T07:00Z +Keep,122,2016,July,28,9,3,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,174,1,3,Check-Out,2016-07-18,Summer,2016-07-09T07:00Z +Keep,227,2016,July,29,10,3,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,131.6,0,1,Check-Out,2016-07-18,Summer,2016-07-10T07:00Z +Keep,12,2016,July,29,11,2,5,3,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,240.86,0,1,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,12,2016,July,29,11,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,C,0,No Deposit , 240, NULL,0,Transient,206.36,0,0,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,227,2016,July,29,10,3,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,131.6,0,1,Check-Out,2016-07-18,Summer,2016-07-10T07:00Z +Keep,227,2016,July,29,10,3,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,131.6,0,1,Check-Out,2016-07-18,Summer,2016-07-10T07:00Z +Keep,35,2016,July,29,14,1,3,3,0,0,BB,MOZ,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,204,0,1,Check-Out,2016-07-18,Summer,2016-07-14T07:00Z +Keep,177,2016,July,29,11,2,5,3,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 75, NULL,0,Contract,135.64,1,1,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,148,2016,July,29,13,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,186.5,0,0,Check-Out,2016-07-18,Summer,2016-07-13T07:00Z +Keep,19,2016,July,29,14,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-07-18,Summer,2016-07-14T07:00Z +Keep,133,2016,July,29,11,2,5,2,2,0,Undefined,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,263.57,1,0,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,2,2016,July,29,15,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2016-07-18,Summer,2016-07-15T07:00Z +Keep,1,2016,July,29,16,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,156,1,0,Check-Out,2016-07-18,Summer,2016-07-16T07:00Z +Keep,4,2016,July,29,13,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165.8,0,1,Check-Out,2016-07-18,Summer,2016-07-13T07:00Z +Keep,126,2016,July,28,8,3,7,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.2,0,1,Check-Out,2016-07-18,Summer,2016-07-08T07:00Z +Keep,2,2016,July,29,15,1,2,2,0,0,BB,MAR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,176,1,1,Check-Out,2016-07-18,Summer,2016-07-15T07:00Z +Keep,0,2016,July,29,16,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,156,1,0,Check-Out,2016-07-18,Summer,2016-07-16T07:00Z +Keep,45,2016,July,29,14,1,3,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,262.5,1,0,Check-Out,2016-07-18,Summer,2016-07-14T07:00Z +Keep,0,2016,July,30,17,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2016-07-18,Summer,2016-07-17T07:00Z +Keep,134,2016,July,29,14,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 156, NULL,0,Transient,125.25,0,2,Check-Out,2016-07-18,Summer,2016-07-14T07:00Z +Keep,0,2016,July,30,17,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2016-07-18,Summer,2016-07-17T07:00Z +Keep,33,2016,July,29,16,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,239,1,2,Check-Out,2016-07-18,Summer,2016-07-16T07:00Z +Keep,65,2016,July,30,18,1,5,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,217.67,1,2,Check-Out,2016-07-24,Summer,2016-07-18T07:00Z +Keep,168,2016,July,28,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,1,Check-Out,2016-07-18,Summer,2016-07-04T07:00Z +Keep,168,2016,July,28,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,91.96,0,1,Check-Out,2016-07-18,Summer,2016-07-04T07:00Z +Keep,20,2016,July,29,11,2,5,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.71,0,1,Check-Out,2016-07-18,Summer,2016-07-11T07:00Z +Keep,152,2016,July,29,13,1,4,3,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,224.4,1,1,Check-Out,2016-07-18,Summer,2016-07-13T07:00Z +Keep,180,2016,July,28,9,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,124.22,0,1,Check-Out,2016-07-19,Summer,2016-07-09T07:00Z +Keep,188,2016,July,28,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,90.1,0,0,Check-Out,2016-07-19,Summer,2016-07-05T07:00Z +Keep,180,2016,July,28,9,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,112.2,0,0,Check-Out,2016-07-19,Summer,2016-07-09T07:00Z +Keep,287,2016,July,29,12,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,81.6,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,287,2016,July,29,12,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,81.6,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,287,2016,July,29,12,2,5,1,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 8, NULL,0,Transient,81.6,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,287,2016,July,29,12,2,5,1,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,81.6,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,14,2016,July,29,15,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,135.91,0,1,Check-Out,2016-07-19,Summer,2016-07-15T07:00Z +Keep,83,2016,July,29,11,3,5,2,1,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,213.7,0,1,Check-Out,2016-07-19,Summer,2016-07-11T07:00Z +Keep,173,2016,July,29,11,3,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,116.5,0,0,Check-Out,2016-07-19,Summer,2016-07-11T07:00Z +Keep,16,2016,July,29,16,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,157.2,1,0,Check-Out,2016-07-19,Summer,2016-07-16T07:00Z +Keep,209,2016,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,76.22,0,0,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,153,2016,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,104.4,0,0,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,72,2016,July,29,11,3,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,287.5,1,0,Check-Out,2016-07-19,Summer,2016-07-11T07:00Z +Keep,39,2016,July,30,17,2,0,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2016-07-19,Summer,2016-07-17T07:00Z +Keep,1,2016,July,29,16,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,145.67,0,0,Check-Out,2016-07-19,Summer,2016-07-16T07:00Z +Keep,17,2016,July,29,13,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,3,No Deposit , 250, NULL,0,Transient,231,1,0,Check-Out,2016-07-19,Summer,2016-07-13T07:00Z +Keep,224,2016,July,28,5,4,10,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,170.93,0,0,Check-Out,2016-07-19,Summer,2016-07-05T07:00Z +Keep,0,2016,July,29,14,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,A,0,No Deposit , NULL, NULL,0,Transient,182.6,0,0,Check-Out,2016-07-19,Summer,2016-07-14T07:00Z +Keep,151,2016,July,29,16,2,1,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,134.75,0,2,Check-Out,2016-07-19,Summer,2016-07-16T07:00Z +Keep,151,2016,July,29,16,2,1,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,120.03,0,2,Check-Out,2016-07-19,Summer,2016-07-16T07:00Z +Keep,39,2016,July,30,17,2,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2016-07-19,Summer,2016-07-17T07:00Z +Keep,0,2016,July,30,18,1,0,3,2,0,BB,AUS,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,210,0,0,Check-Out,2016-07-19,Summer,2016-07-18T07:00Z +Keep,12,2016,July,29,15,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,193.5,0,1,Check-Out,2016-07-19,Summer,2016-07-15T07:00Z +Keep,22,2016,July,30,18,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-07-19,Summer,2016-07-18T07:00Z +Keep,85,2016,July,29,12,2,5,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,165,2016,June,26,21,8,20,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,124.2,0,0,Check-Out,2016-07-19,Summer,2016-06-21T07:00Z +Keep,238,2016,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,74.06,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,238,2016,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,75.77,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,238,2016,July,29,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,74.06,0,1,Check-Out,2016-07-19,Summer,2016-07-12T07:00Z +Keep,169,2016,July,28,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,114.2,0,1,Check-Out,2016-07-19,Summer,2016-07-05T07:00Z +Keep,274,2017,July,26,1,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 40, NULL,0,Contract,151.5,0,1,Check-Out,2017-07-15,Summer,2017-07-01T07:00Z +Keep,60,2016,July,29,15,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,160,0,1,Check-Out,2016-07-19,Summer,2016-07-15T07:00Z +Keep,60,2016,July,29,15,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,174,0,1,Check-Out,2016-07-19,Summer,2016-07-15T07:00Z +Keep,25,2016,July,29,16,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,2,Check-Out,2016-07-19,Summer,2016-07-16T07:00Z +Keep,155,2016,July,29,10,4,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,102.9,0,2,Check-Out,2016-07-19,Summer,2016-07-10T07:00Z +Keep,1,2016,July,30,20,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-07-20,Summer,2016-07-20T07:00Z +Keep,180,2016,July,29,11,3,6,3,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 69, NULL,0,Transient,159.34,0,1,Check-Out,2016-07-20,Summer,2016-07-11T07:00Z +Keep,161,2016,July,29,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,137.75,0,1,Check-Out,2016-07-20,Summer,2016-07-13T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,95.2,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,95.2,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,100,2016,July,29,15,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,296,1,1,Check-Out,2016-07-20,Summer,2016-07-15T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,119,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,14,2016,July,30,18,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 36, NULL,0,Transient,167.21,0,0,Check-Out,2016-07-20,Summer,2016-07-18T07:00Z +Keep,15,2016,July,29,15,2,3,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,177,0,0,Check-Out,2016-07-20,Summer,2016-07-15T07:00Z +Keep,34,2016,July,30,18,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,1,Check-Out,2016-07-20,Summer,2016-07-18T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 427, NULL,0,Transient,109,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,0,2016,July,30,19,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 427, NULL,0,Transient,109,0,0,Check-Out,2016-07-20,Summer,2016-07-19T07:00Z +Keep,1,2016,July,30,18,1,1,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-07-20,Summer,2016-07-18T07:00Z +Keep,124,2016,July,30,17,2,1,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 314, NULL,0,Transient,217.08,1,1,Check-Out,2016-07-20,Summer,2016-07-17T07:00Z +Keep,1,2016,July,30,18,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-07-20,Summer,2016-07-18T07:00Z +Keep,7,2016,July,29,15,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,1,Check-Out,2016-07-20,Summer,2016-07-15T07:00Z +Keep,158,2016,July,29,11,3,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,112.7,0,1,Check-Out,2016-07-20,Summer,2016-07-11T07:00Z +Keep,80,2016,July,29,16,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,186,0,1,Check-Out,2016-07-20,Summer,2016-07-16T07:00Z +Keep,80,2016,July,29,16,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,172,0,1,Check-Out,2016-07-20,Summer,2016-07-16T07:00Z +Keep,55,2016,July,30,21,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,24,2016,July,30,21,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-07-21,Summer,2016-07-21T07:00Z +Keep,55,2016,July,30,21,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,24,2016,July,30,21,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-07-21,Summer,2016-07-21T07:00Z +Keep,24,2016,July,30,21,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-07-21,Summer,2016-07-21T07:00Z +Keep,55,2016,July,30,21,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,186,2016,July,29,10,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,128.65,0,0,Check-Out,2016-07-21,Summer,2016-07-10T07:00Z +Keep,175,2016,July,28,7,4,10,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,103.2,0,1,Check-Out,2016-07-21,Summer,2016-07-07T07:00Z +Keep,185,2016,July,29,14,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,154.79,0,1,Check-Out,2016-07-21,Summer,2016-07-14T07:00Z +Keep,137,2016,July,29,10,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,157.27,0,1,Check-Out,2016-07-21,Summer,2016-07-10T07:00Z +Keep,179,2016,July,29,10,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient-Party,104.55,0,3,Check-Out,2016-07-21,Summer,2016-07-10T07:00Z +Keep,171,2017,July,28,9,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 40, NULL,0,Contract,106.85,0,3,Check-Out,2017-07-18,Summer,2017-07-09T07:00Z +Keep,179,2016,July,29,10,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient-Party,106.55,0,3,Check-Out,2016-07-21,Summer,2016-07-10T07:00Z +Keep,171,2017,July,28,9,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 40, NULL,11,Contract,104.85,0,3,Check-Out,2017-07-18,Summer,2017-07-09T07:00Z +Keep,26,2016,July,29,12,2,7,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,219.1,0,0,Check-Out,2016-07-21,Summer,2016-07-12T07:00Z +Keep,28,2016,July,30,18,1,2,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2016-07-21,Summer,2016-07-18T07:00Z +Keep,49,2016,July,30,17,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,193,1,1,Check-Out,2016-07-21,Summer,2016-07-17T07:00Z +Keep,49,2016,July,29,15,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,206.17,0,0,Check-Out,2016-07-21,Summer,2016-07-15T07:00Z +Keep,158,2016,July,29,10,4,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136.73,0,1,Check-Out,2016-07-21,Summer,2016-07-10T07:00Z +Keep,26,2016,July,29,16,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,1,1,Check-Out,2016-07-21,Summer,2016-07-16T07:00Z +Keep,227,2016,July,29,12,2,7,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,76.8,0,2,Check-Out,2016-07-21,Summer,2016-07-12T07:00Z +Keep,29,2016,July,30,19,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-07-21,Summer,2016-07-19T07:00Z +Keep,12,2016,July,30,18,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,203.33,0,1,Check-Out,2016-07-21,Summer,2016-07-18T07:00Z +Keep,127,2016,July,29,14,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,6,No Deposit , 250, NULL,0,Transient,227,0,0,Check-Out,2016-07-21,Summer,2016-07-14T07:00Z +Keep,6,2016,July,30,17,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,117.2,0,0,Check-Out,2016-07-21,Summer,2016-07-17T07:00Z +Keep,134,2016,July,29,14,2,5,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Contract,144.9,0,0,Check-Out,2016-07-21,Summer,2016-07-14T07:00Z +Keep,0,2016,July,30,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,189,0,0,Check-Out,2016-07-21,Summer,2016-07-20T07:00Z +Keep,34,2016,July,29,16,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,203,1,0,Check-Out,2016-07-21,Summer,2016-07-16T07:00Z +Keep,152,2016,July,30,17,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-07-21,Summer,2016-07-17T07:00Z +Keep,49,2016,July,29,14,2,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,208.34,0,1,Check-Out,2016-07-21,Summer,2016-07-14T07:00Z +Keep,0,2016,July,30,21,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-07-21,Summer,2016-07-21T07:00Z +Keep,17,2016,July,30,22,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,183.5,0,1,Check-Out,2016-07-26,Summer,2016-07-22T07:00Z +Keep,163,2016,July,29,10,4,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,103.11,0,0,Check-Out,2016-07-22,Summer,2016-07-10T07:00Z +Keep,132,2016,July,30,18,1,3,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,224.5,1,2,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,72,2016,July,30,18,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,5,No Deposit , 240, NULL,0,Transient,189.5,1,2,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,92,2016,July,30,18,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,192,1,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,38,2016,July,30,21,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,1,1,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,0,2016,July,30,21,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,139,0,0,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,1,2016,July,30,22,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,149,0,0,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,154,2016,July,30,18,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,176,2016,July,29,15,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,151.4,0,0,Check-Out,2016-07-22,Summer,2016-07-15T07:00Z +Keep,147,2016,July,30,18,1,3,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,150,0,2,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,132,2016,July,30,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,144,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,132,2016,July,30,18,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient-Party,196.5,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,1,2016,July,30,19,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,249,0,0,Check-Out,2016-07-22,Summer,2016-07-19T07:00Z +Keep,2,2016,July,30,18,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,81,2016,July,29,16,2,4,2,0,1,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,174,0,0,Check-Out,2016-07-22,Summer,2016-07-16T07:00Z +Keep,0,2016,July,30,21,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,160,2016,July,30,18,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,160,2016,July,30,18,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,186,2016,July,29,10,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,106.55,0,0,Check-Out,2016-07-22,Summer,2016-07-10T07:00Z +Keep,0,2016,July,30,21,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149,0,0,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,132,2016,July,30,18,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,198.5,0,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,0,2016,July,30,21,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149,0,0,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,81,2016,July,29,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194.29,0,2,Check-Out,2016-07-22,Summer,2016-07-15T07:00Z +Keep,97,2016,July,30,21,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,6,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2016-07-22,Summer,2016-07-21T07:00Z +Keep,94,2016,July,30,20,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2016-07-22,Summer,2016-07-20T07:00Z +Keep,68,2016,July,30,18,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,232,1,0,Check-Out,2016-07-22,Summer,2016-07-18T07:00Z +Keep,36,2017,July,29,20,1,3,1,0,0,HB,PRT,Direct,Direct, 1,0,1,D,D,2,No Deposit , 250, NULL,0,Transient,231.88,1,1,Check-Out,2017-07-24,Summer,2017-07-20T07:00Z +Keep,173,2016,July,29,12,2,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,90.1,0,1,Check-Out,2016-07-23,Summer,2016-07-12T07:00Z +Keep,175,2016,July,28,9,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,112.2,0,1,Check-Out,2016-07-23,Summer,2016-07-09T07:00Z +Keep,122,2016,July,30,20,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2016-07-23,Summer,2016-07-20T07:00Z +Keep,225,2016,July,30,19,0,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,175.5,0,1,Check-Out,2016-07-23,Summer,2016-07-19T07:00Z +Keep,91,2016,July,29,13,2,8,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,181,0,2,Check-Out,2016-07-23,Summer,2016-07-13T07:00Z +Keep,1,2016,July,30,22,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,15,2016,July,30,17,2,4,3,0,0,Undefined,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,295,0,1,Check-Out,2016-07-23,Summer,2016-07-17T07:00Z +Keep,15,2016,July,30,17,2,4,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,243,1,1,Check-Out,2016-07-23,Summer,2016-07-17T07:00Z +Keep,18,2016,July,30,18,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,191,0,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,18,2016,July,30,18,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,191,0,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,145,2016,July,30,18,1,4,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 196, NULL,0,Transient,190,0,1,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,115,2016,July,30,19,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-23,Summer,2016-07-19T07:00Z +Keep,18,2016,July,30,22,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,205.5,1,1,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,194,2016,July,30,17,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,174.92,0,1,Check-Out,2016-07-23,Summer,2016-07-17T07:00Z +Keep,166,2016,July,29,16,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,112.7,0,1,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,166,2016,July,29,16,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient,110.7,0,1,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,163,2016,July,29,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,104.55,0,0,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,15,2016,July,30,18,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,C,0,No Deposit , 5, NULL,0,Transient,167.2,1,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,1,2016,July,30,22,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,36,2016,July,30,19,0,4,2,0,0,BB,ITA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,205.5,0,0,Check-Out,2016-07-23,Summer,2016-07-19T07:00Z +Keep,0,2016,July,30,18,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 8, NULL,0,Transient,102.8,0,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,163,2016,July,29,14,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,141.05,0,0,Check-Out,2016-07-23,Summer,2016-07-14T07:00Z +Keep,3,2016,July,30,18,1,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,182.1,1,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,0,2016,December,51,16,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,50,0,2,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Cancel,1,2017,May,18,5,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,D,E,0,No Deposit , NULL, NULL,0,Transient,85,0,2,No-Show,2017-05-05,Spring,2017-05-05T07:00Z +Cancel,1,2017,July,28,11,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,2,2,E,E,0,No Deposit , NULL, 543,0,Transient,119.7,0,3,Canceled,2017-07-11,Summer,2017-07-11T07:00Z +Cancel,49,2017,July,29,18,0,5,1,0,0,BB,PRT,Direct,Direct, 1,3,2,A,A,0,No Deposit , NULL, NULL,0,Transient,158,0,3,Canceled,2017-05-30,Summer,2017-07-18T07:00Z +Keep,20,2016,July,30,20,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Check-Out,2016-07-23,Summer,2016-07-20T07:00Z +Keep,0,2016,July,30,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,166,0,0,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,129,2016,July,29,16,2,5,3,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,161.6,0,0,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,187,2016,July,29,13,2,8,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,203.4,1,0,Check-Out,2016-07-23,Summer,2016-07-13T07:00Z +Keep,21,2016,July,30,17,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,204,0,0,Check-Out,2016-07-23,Summer,2016-07-17T07:00Z +Keep,165,2016,July,29,16,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,90.1,0,0,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,153,2016,July,30,18,1,4,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,203.5,0,3,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,144,2016,July,29,16,2,5,2,0,0,HB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,145.1,0,0,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,140,2016,July,30,19,0,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,150,1,1,Check-Out,2016-07-23,Summer,2016-07-19T07:00Z +Keep,200,2016,July,29,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,86,2016,July,30,18,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,182,0,0,Check-Out,2016-07-23,Summer,2016-07-18T07:00Z +Keep,1,2016,July,29,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160.43,0,0,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,143,2016,July,29,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,1,Check-Out,2016-07-23,Summer,2016-07-16T07:00Z +Keep,234,2016,September,37,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,77.03,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,234,2016,September,37,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,75.03,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,2,2016,July,30,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143,0,1,Check-Out,2016-07-23,Summer,2016-07-22T07:00Z +Keep,51,2016,July,30,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,138.6,0,0,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,193,2017,July,29,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,135.9,0,1,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,29,2016,July,30,21,0,3,2,1,0,HB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,187.57,0,0,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,177,2016,July,30,17,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,197,0,2,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,70,2016,July,30,19,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,170.2,0,1,Check-Out,2016-07-24,Summer,2016-07-19T07:00Z +Keep,94,2016,July,30,21,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Group,182,0,2,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,201,2016,July,30,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,112.57,0,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,133,2016,July,29,14,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,106.55,0,0,Check-Out,2016-07-24,Summer,2016-07-14T07:00Z +Keep,72,2016,July,30,17,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,159,2016,July,30,18,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,1,1,Check-Out,2016-07-24,Summer,2016-07-18T07:00Z +Keep,139,2016,July,30,17,2,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,203.86,1,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,236,2016,July,30,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,128.57,0,2,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,236,2016,July,30,17,2,5,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,131,2016,July,30,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,130.55,0,0,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,181,2016,July,29,10,4,10,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,136.8,0,0,Check-Out,2016-07-24,Summer,2016-07-10T07:00Z +Keep,85,2016,July,30,17,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,207,0,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,3,2016,July,30,19,0,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,181.18,0,0,Check-Out,2016-07-24,Summer,2016-07-19T07:00Z +Keep,184,2016,July,30,20,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,1,Check-Out,2016-07-24,Summer,2016-07-20T07:00Z +Keep,13,2016,July,30,17,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210.71,0,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,3,2016,July,30,21,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,151.2,0,0,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,169,2016,July,30,21,0,3,2,0,0,BB,BRA,Online travel agent,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,173.67,1,2,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,156,2016,July,30,20,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,102.8,0,0,Check-Out,2016-07-24,Summer,2016-07-20T07:00Z +Keep,145,2016,July,30,18,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,110.79,0,0,Check-Out,2016-07-24,Summer,2016-07-18T07:00Z +Keep,156,2016,July,30,20,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,102.8,0,1,Check-Out,2016-07-24,Summer,2016-07-20T07:00Z +Keep,61,2016,July,30,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,1,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,19,2016,July,30,21,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,194.33,1,1,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,107,2016,July,30,21,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,219,1,2,Check-Out,2016-07-24,Summer,2016-07-21T07:00Z +Keep,139,2016,July,29,14,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,104.55,0,0,Check-Out,2016-07-24,Summer,2016-07-14T07:00Z +Keep,7,2016,July,30,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,194,0,2,Check-Out,2016-07-24,Summer,2016-07-22T07:00Z +Keep,101,2016,July,30,20,0,4,3,0,0,HB,CN,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,257,1,3,Check-Out,2016-07-24,Summer,2016-07-20T07:00Z +Keep,50,2016,July,30,17,2,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,276.6,0,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,11,2016,July,30,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, 423,0,Transient-Party,138,0,0,Check-Out,2016-07-24,Summer,2016-07-23T07:00Z +Keep,11,2016,July,30,23,0,1,2,0,1,BB,FRA,Direct,Direct, 0,0,0,A,B,3,No Deposit , NULL, 423,0,Transient-Party,126,0,1,Check-Out,2016-07-24,Summer,2016-07-23T07:00Z +Keep,76,2016,July,29,16,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,0,1,Check-Out,2016-07-24,Summer,2016-07-16T07:00Z +Keep,98,2016,July,29,16,2,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,140.8,0,0,Check-Out,2016-07-24,Summer,2016-07-16T07:00Z +Keep,4,2016,July,30,20,0,4,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,198.5,0,1,Check-Out,2016-07-24,Summer,2016-07-20T07:00Z +Keep,179,2016,July,30,17,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,142.86,0,1,Check-Out,2016-07-24,Summer,2016-07-17T07:00Z +Keep,147,2016,July,30,22,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,127.2,1,1,Check-Out,2016-07-24,Summer,2016-07-22T07:00Z +Keep,144,2016,July,30,18,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,102.41,1,1,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,51,2016,July,30,17,3,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,202,1,1,Check-Out,2016-07-25,Summer,2016-07-17T07:00Z +Keep,125,2016,July,30,18,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,106.55,0,0,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,22,2016,July,30,22,1,2,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,157.87,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,166,2016,July,30,18,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,154,0,0,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,166,2016,July,30,18,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,154,0,0,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,176,2016,July,30,19,1,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,193.67,1,2,Check-Out,2016-07-25,Summer,2016-07-19T07:00Z +Keep,176,2016,July,30,19,1,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,203.67,0,2,Check-Out,2016-07-25,Summer,2016-07-19T07:00Z +Keep,28,2016,July,30,20,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 339, NULL,0,Transient,179.2,0,0,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,104,2016,July,30,22,1,2,4,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,6,No Deposit , 5, NULL,0,Transient-Party,252.6,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,104,2016,July,30,22,1,2,4,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,4,No Deposit , 5, NULL,0,Transient-Party,252.6,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,126,2016,July,30,23,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,184,1,1,Check-Out,2016-07-25,Summer,2016-07-23T07:00Z +Keep,61,2016,July,30,22,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,160,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,18,2016,July,30,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 181, NULL,0,Transient,180.34,1,0,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,61,2016,July,30,22,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,172,1,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,119,2016,July,30,20,1,4,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,180,0,1,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,147,2016,July,30,18,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,159.5,1,2,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,29,2016,July,30,23,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,D,0,No Deposit , 196, NULL,0,Transient,194.5,0,0,Check-Out,2016-07-25,Summer,2016-07-23T07:00Z +Keep,185,2016,July,29,15,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,138.01,0,2,Check-Out,2016-07-25,Summer,2016-07-15T07:00Z +Keep,157,2016,July,30,22,1,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,121,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,15,2016,July,30,20,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,144.8,0,1,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,157,2016,July,30,22,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,122.4,0,0,Check-Out,2016-07-25,Summer,2016-07-22T07:00Z +Keep,158,2016,July,31,29,2,5,3,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 171, NULL,0,Transient,205.7,0,0,Check-Out,2016-08-05,Summer,2016-07-29T07:00Z +Keep,242,2016,September,39,18,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,110.8,0,0,Check-Out,2016-10-02,Fall,2016-09-18T07:00Z +Keep,0,2016,July,30,23,1,1,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2016-07-25,Summer,2016-07-23T07:00Z +Keep,38,2016,July,30,21,1,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,271,0,0,Check-Out,2016-07-25,Summer,2016-07-21T07:00Z +Keep,182,2016,July,30,20,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160,1,1,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,127,2016,July,30,20,1,4,1,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,102.8,0,0,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,127,2016,July,30,20,1,4,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient-Party,133.2,0,0,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,230,2016,July,29,11,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.82,0,2,Check-Out,2016-07-25,Summer,2016-07-11T07:00Z +Keep,5,2016,July,30,21,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207.5,0,1,Check-Out,2016-07-25,Summer,2016-07-21T07:00Z +Keep,38,2016,July,30,21,1,3,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,259,0,0,Check-Out,2016-07-25,Summer,2016-07-21T07:00Z +Keep,28,2016,July,30,20,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,188.1,0,0,Check-Out,2016-07-25,Summer,2016-07-20T07:00Z +Keep,174,2016,July,30,18,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,155.11,0,2,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,171,2016,July,30,18,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 11, NULL,0,Transient,126.8,0,0,Check-Out,2016-07-25,Summer,2016-07-18T07:00Z +Keep,87,2016,July,30,19,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,138.6,0,1,Check-Out,2016-07-25,Summer,2016-07-19T07:00Z +Keep,104,2016,October,44,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,51.29,0,0,Check-Out,2016-11-03,Fall,2016-10-27T07:00Z +Keep,144,2016,July,31,29,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,138.25,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,114,2016,July,31,25,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,10,0,0,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,183,2017,July,30,24,1,3,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , 250, NULL,0,Group,142.94,0,1,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,165,2016,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,158,2016,July,30,19,2,5,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,83,2016,July,30,21,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2016-07-26,Summer,2016-07-21T07:00Z +Keep,173,2016,July,30,19,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,123.64,0,2,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,48,2016,July,31,24,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,253,1,1,Check-Out,2016-07-26,Summer,2016-07-24T07:00Z +Keep,48,2016,July,31,24,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,241,0,1,Check-Out,2016-07-26,Summer,2016-07-24T07:00Z +Keep,74,2016,July,30,23,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-07-26,Summer,2016-07-23T07:00Z +Keep,158,2016,July,30,19,2,5,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,278,0,0,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,185,2016,July,29,16,4,6,3,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,139.52,0,1,Check-Out,2016-07-26,Summer,2016-07-16T07:00Z +Keep,71,2016,July,30,22,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2016-07-26,Summer,2016-07-22T07:00Z +Keep,161,2016,July,30,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,97.76,0,0,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,3,2016,July,30,23,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,2,Check-Out,2016-07-26,Summer,2016-07-23T07:00Z +Keep,162,2016,July,29,14,4,8,3,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,135.5,0,1,Check-Out,2016-07-26,Summer,2016-07-14T07:00Z +Keep,176,2016,July,29,12,4,10,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,104.81,1,0,Check-Out,2016-07-26,Summer,2016-07-12T07:00Z +Keep,45,2016,July,31,24,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,223,1,1,Check-Out,2016-07-26,Summer,2016-07-24T07:00Z +Keep,96,2016,July,30,17,4,5,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,281,1,0,Check-Out,2016-07-26,Summer,2016-07-17T07:00Z +Keep,103,2016,July,30,19,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,216.5,0,1,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,45,2016,July,31,24,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,209,0,1,Check-Out,2016-07-26,Summer,2016-07-24T07:00Z +Keep,151,2016,July,30,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 181, NULL,0,Transient,152.2,0,0,Check-Out,2016-07-26,Summer,2016-07-19T07:00Z +Keep,158,2016,July,29,16,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,117.2,0,0,Check-Out,2016-07-26,Summer,2016-07-16T07:00Z +Keep,161,2016,July,30,20,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Transient,121.77,0,1,Check-Out,2016-07-26,Summer,2016-07-20T07:00Z +Keep,16,2016,July,30,21,2,3,2,2,0,BB,MAR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,217,0,1,Check-Out,2016-07-26,Summer,2016-07-21T07:00Z +Keep,127,2016,July,30,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,162,0,1,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,66,2016,July,31,24,2,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,164,0,0,Check-Out,2016-07-27,Summer,2016-07-24T07:00Z +Keep,119,2016,July,30,22,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,123.2,0,1,Check-Out,2016-07-27,Summer,2016-07-22T07:00Z +Keep,84,2016,July,30,17,4,6,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,235,0,0,Check-Out,2016-07-27,Summer,2016-07-17T07:00Z +Keep,18,2016,July,31,24,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,1,1,Check-Out,2016-07-27,Summer,2016-07-24T07:00Z +Keep,118,2016,July,30,20,2,5,3,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 241, NULL,0,Transient,142.64,0,2,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,177,2016,July,30,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,119.85,0,0,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,345,2017,July,29,21,4,8,2,0,0,HB,GBR,Online travel agent,TA/TO, 1,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,196.7,0,4,Check-Out,2017-08-02,Summer,2017-07-21T07:00Z +Keep,4,2016,July,31,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 428,0,Transient,118,0,0,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,4,2016,July,31,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 323,0,Transient,118,0,0,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,1,2016,July,31,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231,1,2,Check-Out,2016-07-27,Summer,2016-07-25T07:00Z +Keep,106,2016,July,30,21,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,1,0,Check-Out,2016-07-27,Summer,2016-07-21T07:00Z +Keep,4,2016,July,31,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 428,0,Transient,118,0,0,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,165,2016,July,30,20,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,100.8,0,0,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,154,2016,July,30,23,2,2,3,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,115,0,2,Check-Out,2016-07-27,Summer,2016-07-23T07:00Z +Keep,1,2016,July,31,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,176,0,2,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,85,2016,July,30,18,3,6,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,165.56,0,2,Check-Out,2016-07-27,Summer,2016-07-18T07:00Z +Keep,119,2016,July,30,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,158.2,0,0,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,0,2016,July,31,26,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,241,0,1,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,246,2016,July,30,20,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,94.63,0,0,Check-Out,2016-07-27,Summer,2016-07-20T07:00Z +Keep,98,2016,July,31,24,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,1,1,Check-Out,2016-07-27,Summer,2016-07-24T07:00Z +Keep,67,2016,July,31,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,195,0,0,Check-Out,2016-07-27,Summer,2016-07-26T07:00Z +Keep,154,2016,July,30,23,2,2,3,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,127,0,2,Check-Out,2016-07-27,Summer,2016-07-23T07:00Z +Keep,18,2016,July,30,17,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212,0,1,Check-Out,2016-07-27,Summer,2016-07-17T07:00Z +Keep,117,2016,July,30,21,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,194.49,0,1,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,53,2016,July,30,23,2,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient,128,0,0,Check-Out,2016-07-28,Summer,2016-07-23T07:00Z +Keep,192,2016,July,30,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,112.2,0,0,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,154,2016,July,30,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,92.1,0,0,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,122,2016,July,30,21,2,5,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,0,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,155,2016,July,30,21,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,106.55,0,0,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,113,2016,July,30,23,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,1,1,Check-Out,2016-07-28,Summer,2016-07-23T07:00Z +Keep,19,2016,July,30,23,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,151.37,0,1,Check-Out,2016-07-28,Summer,2016-07-23T07:00Z +Keep,163,2016,July,31,24,2,2,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,155.64,1,1,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,26,2016,July,30,23,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,140,1,0,Check-Out,2016-07-28,Summer,2016-07-23T07:00Z +Keep,26,2016,July,30,23,2,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,158,0,0,Check-Out,2016-07-28,Summer,2016-07-23T07:00Z +Keep,158,2016,July,30,19,2,7,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2016-07-28,Summer,2016-07-19T07:00Z +Keep,151,2016,July,31,25,1,2,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 261, NULL,0,Transient,126.2,0,2,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,151,2016,July,31,25,1,2,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 261, NULL,0,Transient,171.18,0,2,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,130,2016,July,31,25,1,2,4,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,4,No Deposit , 240, NULL,0,Transient,208,0,0,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,142,2016,July,31,24,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,117.2,0,0,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,20,2016,July,31,24,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,149.38,0,2,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,61,2016,July,31,26,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,157.85,0,1,Check-Out,2016-07-28,Summer,2016-07-26T07:00Z +Keep,137,2016,July,31,25,1,2,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,173.25,0,0,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,150,2016,July,30,18,3,7,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,142.94,0,2,Check-Out,2016-07-28,Summer,2016-07-18T07:00Z +Keep,152,2016,July,31,24,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,170,2016,July,30,21,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,146.3,0,1,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,177,2016,July,31,24,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 96, NULL,0,Transient,103.5,0,0,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,190,2016,July,31,24,2,2,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,159.75,0,3,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,0,2016,July,31,26,0,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,249,0,0,Check-Out,2016-07-28,Summer,2016-07-26T07:00Z +Keep,186,2016,July,31,24,2,2,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,159.75,0,3,Check-Out,2016-07-28,Summer,2016-07-24T07:00Z +Keep,169,2016,July,30,21,2,5,2,0,0,BB,PLW,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,136.29,0,2,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,0,2016,July,31,25,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214.33,0,1,Check-Out,2016-07-28,Summer,2016-07-25T07:00Z +Keep,54,2016,July,30,18,3,7,3,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,239,0,2,Check-Out,2016-07-28,Summer,2016-07-18T07:00Z +Keep,155,2016,July,30,21,2,5,2,2,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,215,0,1,Check-Out,2016-07-28,Summer,2016-07-21T07:00Z +Keep,121,2016,July,30,22,2,5,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,184.5,0,0,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,197,2016,July,30,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,143.05,0,0,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,83,2016,July,30,19,2,8,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,210.42,0,0,Check-Out,2016-07-29,Summer,2016-07-19T07:00Z +Keep,138,2016,July,30,23,2,4,3,0,0,Undefined,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,318,0,1,Check-Out,2016-07-29,Summer,2016-07-23T07:00Z +Keep,10,2016,July,31,25,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Check-Out,2016-07-29,Summer,2016-07-25T07:00Z +Keep,76,2016,July,31,24,2,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,192,0,0,Check-Out,2016-07-29,Summer,2016-07-24T07:00Z +Keep,1,2016,July,31,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,1,2016,July,31,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,140,2016,July,31,26,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,115.2,0,0,Check-Out,2016-07-29,Summer,2016-07-26T07:00Z +Keep,140,2016,July,31,26,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,115.2,0,0,Check-Out,2016-07-29,Summer,2016-07-26T07:00Z +Keep,23,2016,July,31,25,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,202.51,0,0,Check-Out,2016-07-29,Summer,2016-07-25T07:00Z +Keep,1,2016,July,31,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 431, NULL,0,Transient,156.4,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,0,2017,June,22,1,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,3,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,234,2016,July,30,22,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,213.55,1,1,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,119,2016,July,30,23,2,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,202,1,1,Check-Out,2016-07-29,Summer,2016-07-23T07:00Z +Keep,22,2016,July,31,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-07-29,Summer,2016-07-27T07:00Z +Keep,195,2016,July,30,22,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134.86,1,1,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,138,2016,July,31,24,2,3,2,1,1,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,155.6,1,1,Check-Out,2016-07-29,Summer,2016-07-24T07:00Z +Keep,1,2016,July,31,26,0,3,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,276,0,0,Check-Out,2016-07-29,Summer,2016-07-26T07:00Z +Keep,43,2016,July,30,23,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2016-07-29,Summer,2016-07-23T07:00Z +Keep,2,2016,July,31,28,0,1,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,1,1,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,147,2016,July,30,22,2,5,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,190,0,1,Check-Out,2016-07-29,Summer,2016-07-22T07:00Z +Keep,0,2016,July,31,28,0,1,3,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,229,0,0,Check-Out,2016-07-29,Summer,2016-07-28T07:00Z +Keep,110,2016,July,30,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,242,0,1,Check-Out,2016-07-29,Summer,2016-07-23T07:00Z +Keep,196,2016,July,30,19,2,9,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194.73,1,1,Check-Out,2016-07-30,Summer,2016-07-19T07:00Z +Keep,164,2016,July,29,16,4,10,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,149,2016,July,30,23,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient,156.6,0,2,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,149,2016,July,30,23,2,5,1,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,4,No Deposit , 96, NULL,0,Transient,160.68,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,149,2016,July,30,23,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,4,No Deposit , 96, NULL,0,Transient,156.6,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,222,2016,July,30,23,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,182.75,0,2,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,262,2016,July,31,25,1,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,146,1,1,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,37,2016,July,30,23,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,210,1,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,26,2016,July,31,25,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,206,1,1,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,132,2016,July,30,23,2,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,151.5,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,190,2016,July,31,26,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,212,1,0,Check-Out,2016-07-30,Summer,2016-07-26T07:00Z +Keep,37,2016,July,31,27,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,231,1,0,Check-Out,2016-07-30,Summer,2016-07-27T07:00Z +Keep,23,2016,July,31,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,4,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-07-30,Summer,2016-07-29T07:00Z +Keep,122,2016,July,30,23,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,205,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,135,2016,July,30,23,2,5,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,222,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,150,2016,July,30,23,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,161.5,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,172,2016,July,31,24,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,126.8,1,2,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,172,2016,July,31,24,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,126.8,0,2,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,172,2016,July,31,24,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,138.8,1,2,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,172,2016,July,31,24,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,126.8,0,2,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,172,2016,July,31,24,2,4,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,126.8,0,2,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,242,2016,July,29,16,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,200,0,2,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,242,2016,July,29,16,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,2,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,135,2016,July,30,23,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,166.5,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,85,2016,July,31,25,1,4,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,308.4,1,1,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,66,2016,July,30,23,2,5,3,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,222,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,150,2016,July,30,23,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,74,2016,July,30,23,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,232,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,103,2016,July,30,23,2,5,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,182,0,1,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,151,2016,July,29,16,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,114.41,0,1,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,151,2016,July,29,16,4,10,2,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,113.31,0,1,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,150,2016,July,30,23,2,5,2,1,1,BB,GIB,Online travel agent,TA/TO, 0,0,0,D,C,2,No Deposit , 240, NULL,0,Transient,189.5,0,3,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,199,2016,July,31,25,1,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,174,1,2,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,199,2016,July,31,25,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,144.5,0,1,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,38,2016,July,31,24,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,149,2016,July,30,23,2,5,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,121.7,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,79,2016,July,31,27,0,3,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,219,1,0,Check-Out,2016-07-30,Summer,2016-07-27T07:00Z +Keep,153,2016,July,31,24,2,4,3,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,105.47,0,1,Check-Out,2016-07-30,Summer,2016-07-24T07:00Z +Keep,83,2016,July,31,26,0,4,2,0,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,220.5,1,1,Check-Out,2016-07-30,Summer,2016-07-26T07:00Z +Keep,178,2016,July,31,25,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,2,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,121,2016,July,31,26,0,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,162.15,0,1,Check-Out,2016-07-30,Summer,2016-07-26T07:00Z +Keep,136,2016,July,30,23,2,5,3,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 253, NULL,0,Transient,161.6,0,0,Check-Out,2016-07-30,Summer,2016-07-23T07:00Z +Keep,231,2016,July,29,16,4,10,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,129.5,0,1,Check-Out,2016-07-30,Summer,2016-07-16T07:00Z +Keep,77,2016,July,31,25,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,175.24,1,0,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,164,2016,July,30,22,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,128.18,0,1,Check-Out,2016-07-30,Summer,2016-07-22T07:00Z +Keep,178,2016,July,31,25,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,136.6,0,2,Check-Out,2016-07-30,Summer,2016-07-25T07:00Z +Keep,92,2016,July,31,26,0,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,213.75,0,1,Check-Out,2016-07-30,Summer,2016-07-26T07:00Z +Keep,1,2016,July,31,30,0,1,2,0,0,BB,USA,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,221,0,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,38,2016,July,31,28,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2016-07-30,Summer,2016-07-28T07:00Z +Keep,1,2016,July,31,30,0,1,2,0,0,BB,USA,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,0,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,0,2016,July,32,31,2,2,2,0,0,BB,USA,Direct,TA/TO, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,237.75,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,319,2016,July,30,22,2,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , NULL, NULL,0,Transient,116.9,0,1,Check-Out,2016-07-30,Summer,2016-07-22T07:00Z +Keep,250,2016,July,31,30,0,1,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,121,0,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,112,2016,July,31,30,0,0,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-07-30,Summer,2016-07-30T07:00Z +Keep,112,2016,July,31,30,0,0,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-07-30,Summer,2016-07-30T07:00Z +Keep,167,2016,July,31,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,92.1,0,0,Check-Out,2016-07-31,Summer,2016-07-24T07:00Z +Keep,37,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,179,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,8,2016,July,31,29,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,184,2016,July,31,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,1,Check-Out,2016-07-31,Summer,2016-07-24T07:00Z +Keep,0,2016,July,31,28,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,193.67,0,0,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,17,2016,July,31,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-07-31,Summer,2016-07-24T07:00Z +Keep,156,2016,July,31,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,118.1,0,0,Check-Out,2016-07-31,Summer,2016-07-24T07:00Z +Keep,178,2016,July,31,25,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,181.5,1,0,Check-Out,2016-07-31,Summer,2016-07-25T07:00Z +Keep,44,2016,July,31,28,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,G,1,No Deposit , 241, NULL,0,Transient,186.83,1,1,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,0,2016,July,31,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,16,2016,July,30,23,2,6,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,215,0,2,Check-Out,2016-07-31,Summer,2016-07-23T07:00Z +Keep,16,2016,July,30,23,2,6,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,227,1,2,Check-Out,2016-07-31,Summer,2016-07-23T07:00Z +Keep,23,2017,July,30,29,2,5,3,0,0,HB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,274,0,3,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,4,2016,July,31,28,0,3,2,1,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,301,0,0,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,124,2016,July,31,26,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2016-07-31,Summer,2016-07-26T07:00Z +Keep,24,2016,July,31,29,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,1,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,188,2016,July,31,24,2,5,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,210,0,0,Check-Out,2016-07-31,Summer,2016-07-24T07:00Z +Keep,37,2016,July,31,30,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,32,2016,July,31,27,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,208.5,0,0,Check-Out,2016-07-31,Summer,2016-07-27T07:00Z +Keep,1,2016,July,31,30,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,191.1,1,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,43,2016,July,31,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,155.2,0,0,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,8,2016,July,31,28,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,216,1,0,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,6,2016,July,31,28,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,24,2016,July,31,30,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,25,2016,July,31,29,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202,1,0,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,12,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,143,2016,July,31,25,1,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,127.2,1,0,Check-Out,2016-07-31,Summer,2016-07-25T07:00Z +Keep,1,2016,July,31,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,201,1,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,8,2016,July,31,29,0,2,1,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,33,2016,July,31,29,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,24,2016,July,31,30,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,24,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,18,2016,July,31,28,0,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,251,0,1,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,7,2016,July,31,29,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,221.1,1,0,Check-Out,2016-07-31,Summer,2016-07-29T07:00Z +Keep,0,2016,July,31,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,199,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,117,2016,July,30,22,2,7,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,218.11,0,2,Check-Out,2016-07-31,Summer,2016-07-22T07:00Z +Keep,37,2016,July,31,28,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260.33,0,0,Check-Out,2016-07-31,Summer,2016-07-28T07:00Z +Keep,19,2017,August,33,13,2,0,2,1,0,BB,PRT,Direct,TA/TO, 1,0,1,A,I,0,No Deposit , 250, NULL,0,Transient,248,1,1,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,0,2017,August,33,15,0,1,2,1,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Group,176,1,1,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,181,2016,July,31,27,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,1,Check-Out,2016-07-31,Summer,2016-07-27T07:00Z +Keep,3,2016,July,31,30,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,241,1,1,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,37,2016,July,31,30,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,0,Check-Out,2016-07-31,Summer,2016-07-30T07:00Z +Keep,27,2016,July,31,28,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,151.76,0,1,Check-Out,2016-08-01,Summer,2016-07-28T07:00Z +Keep,4,2016,July,31,26,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196,0,1,Check-Out,2016-08-01,Summer,2016-07-26T07:00Z +Keep,32,2016,July,31,29,1,2,2,0,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,226.33,1,0,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,0,2016,July,31,26,1,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2016-08-01,Summer,2016-07-26T07:00Z +Keep,4,2016,July,31,25,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209.71,0,1,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,210,2016,July,31,27,1,4,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,186.1,0,1,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,10,2016,August,32,1,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,0,0,0,Check-Out,2016-08-01,Summer,2016-08-01T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192.67,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192.67,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192.67,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,60,2016,July,31,29,1,2,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,194,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,32,2016,July,31,25,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,6,2016,July,31,27,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,195,0,0,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,193.33,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192.67,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,65,2016,July,31,29,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192.67,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,55,2016,July,32,31,1,0,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,1,Check-Out,2016-08-01,Summer,2016-07-31T07:00Z +Keep,6,2016,July,31,27,1,4,2,0,0,BB,ARE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,207,0,0,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,27,2016,July,31,29,1,2,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 241, NULL,0,Transient,165.04,0,2,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,30,2016,August,32,1,1,1,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,189.42,0,2,Check-Out,2016-08-03,Summer,2016-08-01T07:00Z +Keep,2,2016,July,31,30,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,281,0,1,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,147,2016,July,31,27,1,4,2,1,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,212.5,0,2,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,5,2016,July,31,26,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,237.67,1,1,Check-Out,2016-08-01,Summer,2016-07-26T07:00Z +Keep,225,2016,July,30,22,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,115.76,0,0,Check-Out,2016-08-01,Summer,2016-07-22T07:00Z +Keep,3,2016,July,31,30,1,1,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,207.05,0,0,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,143,2016,July,31,24,3,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,124.2,0,0,Check-Out,2016-08-01,Summer,2016-07-24T07:00Z +Keep,26,2016,July,31,30,1,1,2,0,0,BB,SGP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,185,2016,July,31,25,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,0,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,41,2016,July,31,30,1,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,126,2016,July,31,25,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,302.86,1,0,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,19,2016,July,31,28,1,3,2,0,0,Undefined,Unknown,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,288.1,0,3,Check-Out,2016-08-01,Summer,2016-07-28T07:00Z +Keep,17,2016,July,31,28,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,236,0,1,Check-Out,2016-08-01,Summer,2016-07-28T07:00Z +Keep,1,2016,July,31,27,1,4,1,0,0,BB,ARE,Direct,Direct, 0,0,0,A,D,3,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2016-08-01,Summer,2016-07-27T07:00Z +Keep,4,2016,July,31,30,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,219,0,1,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,68,2016,July,31,25,2,5,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,217.43,0,0,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,188,2016,July,31,25,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,115.2,0,1,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,4,2016,July,31,30,1,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,231,0,1,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,173,2016,July,31,25,2,5,3,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,196.52,0,0,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,17,2016,July,31,30,1,1,2,1,0,BB,PRT,Complementary,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-08-01,Summer,2016-07-30T07:00Z +Keep,4,2016,August,32,1,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,257,1,2,Check-Out,2016-08-04,Summer,2016-08-01T07:00Z +Keep,2,2016,July,32,31,1,0,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,307,0,0,Check-Out,2016-08-01,Summer,2016-07-31T07:00Z +Keep,0,2016,August,32,1,1,0,2,2,0,BB,DEU,Direct,TA/TO, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,231,1,0,Check-Out,2016-08-02,Summer,2016-08-01T07:00Z +Keep,40,2016,July,31,28,1,3,2,1,0,FB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 339, NULL,0,Transient,215.1,0,0,Check-Out,2016-08-01,Summer,2016-07-28T07:00Z +Keep,188,2016,July,31,25,2,5,3,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 11, NULL,0,Transient,155.52,0,1,Check-Out,2016-08-01,Summer,2016-07-25T07:00Z +Keep,12,2016,July,32,31,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,201,0,1,Check-Out,2016-08-01,Summer,2016-07-31T07:00Z +Keep,6,2016,July,31,29,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,182,0,1,Check-Out,2016-08-01,Summer,2016-07-29T07:00Z +Keep,17,2016,August,32,1,0,0,2,0,0,BB,QAT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-08-01,Summer,2016-08-01T07:00Z +Keep,0,2016,August,32,1,0,0,2,1,0,HB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 242, NULL,0,Transient,0,0,0,Check-Out,2016-08-01,Summer,2016-08-01T07:00Z +Keep,181,2016,July,31,27,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,140,0,1,Check-Out,2016-08-02,Summer,2016-07-27T07:00Z +Keep,27,2016,July,31,29,2,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,264,0,0,Check-Out,2016-08-02,Summer,2016-07-29T07:00Z +Keep,179,2016,July,31,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,114.2,0,1,Check-Out,2016-08-02,Summer,2016-07-26T07:00Z +Keep,149,2016,July,31,27,2,4,3,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,233,0,1,Check-Out,2016-08-02,Summer,2016-07-27T07:00Z +Keep,160,2016,July,31,28,2,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,129.2,0,1,Check-Out,2016-08-02,Summer,2016-07-28T07:00Z +Keep,0,2016,August,32,1,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,102.49,1,0,Check-Out,2016-08-02,Summer,2016-08-01T07:00Z +Keep,83,2016,July,31,25,3,5,2,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,1,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Keep,0,2016,July,32,31,2,0,1,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,221.5,0,0,Check-Out,2016-08-02,Summer,2016-07-31T07:00Z +Keep,183,2016,July,30,19,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,102.66,0,0,Check-Out,2016-08-02,Summer,2016-07-19T07:00Z +Keep,328,2017,July,30,26,4,10,2,0,0,BB,IRL,Direct,TA/TO, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Group,126.66,0,1,Check-Out,2017-08-09,Summer,2017-07-26T07:00Z +Keep,193,2016,July,30,23,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,2,Check-Out,2016-08-02,Summer,2016-07-23T07:00Z +Keep,192,2016,July,31,26,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,132.36,0,0,Check-Out,2016-08-02,Summer,2016-07-26T07:00Z +Keep,143,2016,July,30,21,4,8,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,165,0,2,Check-Out,2016-08-02,Summer,2016-07-21T07:00Z +Keep,143,2016,July,30,21,4,8,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,145,0,2,Check-Out,2016-08-02,Summer,2016-07-21T07:00Z +Keep,0,2016,July,31,30,2,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,182.33,0,0,Check-Out,2016-08-02,Summer,2016-07-30T07:00Z +Keep,83,2016,July,31,25,3,5,2,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,153,1,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Keep,83,2016,July,31,25,3,5,3,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,C,3,No Deposit , 307, NULL,0,Transient-Party,179,0,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Keep,83,2016,July,31,25,3,5,2,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,ITA,Groups,Corporate, 1,0,0,A,D,1,No Deposit , NULL, 307,0,Transient-Party,85,1,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,113,2016,July,31,26,2,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,193.8,0,2,Check-Out,2016-08-02,Summer,2016-07-26T07:00Z +Keep,113,2016,July,31,26,2,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,181.8,0,2,Check-Out,2016-08-02,Summer,2016-07-26T07:00Z +Keep,0,2016,August,32,1,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,141,1,0,Check-Out,2016-08-02,Summer,2016-08-01T07:00Z +Keep,193,2016,July,30,23,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-02,Summer,2016-07-23T07:00Z +Keep,83,2016,July,31,25,3,5,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 307, NULL,0,Transient-Party,144,0,0,Check-Out,2016-08-02,Summer,2016-07-25T07:00Z +Keep,60,2017,April,16,17,3,5,2,0,0,BB,ITA,Groups,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 307,0,Transient-Party,90,0,1,Check-Out,2017-04-25,Spring,2017-04-17T07:00Z +Keep,33,2016,August,32,1,1,0,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,1,0,Check-Out,2016-08-02,Summer,2016-08-01T07:00Z +Keep,1,2016,August,32,1,1,0,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,282,0,0,Check-Out,2016-08-02,Summer,2016-08-01T07:00Z +Keep,1,2016,July,31,30,2,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,229,0,0,Check-Out,2016-08-03,Summer,2016-07-30T07:00Z +Keep,338,2016,July,31,27,2,5,2,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,164,0,0,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,174,2016,July,31,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,100.8,0,0,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,25,2016,July,31,30,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,240.5,1,1,Check-Out,2016-08-03,Summer,2016-07-30T07:00Z +Keep,137,2016,July,31,27,2,5,1,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,178.46,0,0,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,188,2016,July,31,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,115.05,0,1,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,188,2016,July,31,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,113.05,0,1,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,103,2016,July,32,31,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,209,0,1,Check-Out,2016-08-03,Summer,2016-07-31T07:00Z +Keep,103,2016,July,32,31,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,221,0,1,Check-Out,2016-08-03,Summer,2016-07-31T07:00Z +Keep,58,2016,July,31,30,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,215.5,0,2,Check-Out,2016-08-03,Summer,2016-07-30T07:00Z +Keep,12,2016,August,32,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,209,0,0,Check-Out,2016-08-03,Summer,2016-08-02T07:00Z +Keep,23,2016,July,31,27,2,5,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,187.57,0,1,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,145,2016,July,31,24,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,102.6,0,0,Check-Out,2016-08-03,Summer,2016-07-24T07:00Z +Keep,147,2016,July,31,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,102.51,0,0,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,145,2016,July,31,25,3,6,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 128, NULL,0,Transient,121.7,0,0,Check-Out,2016-08-03,Summer,2016-07-25T07:00Z +Keep,175,2016,July,31,25,3,6,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,128,0,0,Check-Out,2016-08-03,Summer,2016-07-25T07:00Z +Keep,301,2016,July,31,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,2,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,32,2016,July,31,28,2,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,173.05,0,1,Check-Out,2016-08-03,Summer,2016-07-28T07:00Z +Keep,126,2016,July,31,27,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200.29,0,0,Check-Out,2016-08-03,Summer,2016-07-27T07:00Z +Keep,191,2016,July,30,23,4,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2016-08-03,Summer,2016-07-23T07:00Z +Keep,1,2016,August,32,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,241,0,0,Check-Out,2016-08-03,Summer,2016-08-02T07:00Z +Keep,1,2016,August,32,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Group,241,0,0,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,23,2016,July,31,28,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,203,1,0,Check-Out,2016-08-03,Summer,2016-07-28T07:00Z +Keep,1,2016,August,32,3,0,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,0,0,1,Check-Out,2016-08-03,Summer,2016-08-03T07:00Z +Keep,220,2016,July,31,25,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,171.5,1,1,Check-Out,2016-08-04,Summer,2016-07-25T07:00Z +Keep,161,2016,July,31,25,3,7,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 430, NULL,0,Transient,120.38,0,0,Check-Out,2016-08-04,Summer,2016-07-25T07:00Z +Keep,154,2016,July,30,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,108,0,0,Check-Out,2016-08-04,Summer,2016-07-21T07:00Z +Keep,161,2016,July,31,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,125,0,1,Check-Out,2016-08-04,Summer,2016-07-28T07:00Z +Keep,161,2016,July,31,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,1,Check-Out,2016-08-04,Summer,2016-07-28T07:00Z +Keep,1,2016,August,32,3,0,1,2,0,0,BB,AUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,189,0,0,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,1,2016,August,32,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,151,0,1,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,179,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,103.5,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,81,2016,July,31,29,2,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,265.83,0,0,Check-Out,2016-08-04,Summer,2016-07-29T07:00Z +Keep,179,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,105.5,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,171,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient,111.8,0,0,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,173,2016,July,31,25,3,7,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,117.2,0,1,Check-Out,2016-08-04,Summer,2016-07-25T07:00Z +Keep,173,2016,July,31,25,3,7,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,100.8,0,1,Check-Out,2016-08-04,Summer,2016-07-25T07:00Z +Keep,136,2016,July,31,30,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,187.4,1,2,Check-Out,2016-08-04,Summer,2016-07-30T07:00Z +Keep,53,2016,July,31,30,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,175.56,0,1,Check-Out,2016-08-04,Summer,2016-07-30T07:00Z +Keep,126,2016,August,32,1,1,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,1,1,Check-Out,2016-08-04,Summer,2016-08-01T07:00Z +Keep,9,2016,August,32,2,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,0,0,Check-Out,2016-08-04,Summer,2016-08-02T07:00Z +Keep,159,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,51,2016,August,32,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,201,0,0,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,163,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,102.8,0,0,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,163,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,100.8,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,185,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,105.5,0,0,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,163,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,100.8,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,167,2016,July,32,31,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,Non Refund , 96, NULL,0,Transient-Party,100.8,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,187,2016,July,32,31,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,95.4,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,187,2016,July,32,31,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,95.4,0,1,Check-Out,2016-08-04,Summer,2016-07-31T07:00Z +Keep,1,2016,August,32,3,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149,0,1,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,8,2016,August,32,1,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,0,1,Check-Out,2016-08-04,Summer,2016-08-01T07:00Z +Keep,1,2016,August,32,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2016-08-04,Summer,2016-08-03T07:00Z +Keep,0,2016,August,32,2,0,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,219,0,0,Check-Out,2016-08-04,Summer,2016-08-02T07:00Z +Keep,152,2016,July,31,30,2,3,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 261, NULL,0,Transient,185.25,0,0,Check-Out,2016-08-04,Summer,2016-07-30T07:00Z +Keep,0,2016,August,32,4,0,1,4,0,0,BB,PRT,Direct,Direct, 1,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,205,0,0,Check-Out,2016-08-05,Summer,2016-08-04T07:00Z +Keep,54,2016,July,32,31,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,168.98,0,1,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,342,2016,July,31,26,2,8,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,151.64,0,1,Check-Out,2016-08-05,Summer,2016-07-26T07:00Z +Keep,52,2016,July,31,29,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216.57,1,0,Check-Out,2016-08-05,Summer,2016-07-29T07:00Z +Keep,56,2016,August,32,2,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,199,0,2,Check-Out,2016-08-05,Summer,2016-08-02T07:00Z +Keep,166,2016,August,32,1,1,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 8, NULL,0,Transient,140,0,0,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,59,2016,July,32,31,2,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,195.26,0,1,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,218,2016,July,32,31,2,3,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 36, NULL,0,Transient,117.19,0,0,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,237,2016,August,32,1,1,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,210,0,0,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,96,2016,August,32,1,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,197,2016,August,32,2,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,192.66,1,2,Check-Out,2016-08-05,Summer,2016-08-02T07:00Z +Keep,197,2016,August,32,2,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 242, NULL,0,Transient,192.66,1,2,Check-Out,2016-08-05,Summer,2016-08-02T07:00Z +Keep,191,2016,July,32,31,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,150.35,0,2,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,34,2016,August,32,2,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,165.23,0,0,Check-Out,2016-08-05,Summer,2016-08-02T07:00Z +Keep,170,2016,July,32,31,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 96, NULL,0,Transient,138.8,0,2,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,1,2016,August,32,3,0,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,2,No Deposit , NULL, NULL,0,Transient,201,0,0,Check-Out,2016-08-05,Summer,2016-08-03T07:00Z +Keep,147,2016,July,32,31,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,171.5,1,0,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,151,2016,August,32,1,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,115.2,0,1,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,151,2016,August,32,1,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,117.2,0,1,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,123,2016,July,32,31,2,3,2,1,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,216.98,0,1,Check-Out,2016-08-05,Summer,2016-07-31T07:00Z +Keep,191,2016,July,31,29,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 429, NULL,0,Transient,191.55,0,1,Check-Out,2016-08-05,Summer,2016-07-29T07:00Z +Keep,151,2016,August,32,1,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,115.2,0,0,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,189,2016,August,32,2,0,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,191,1,2,Check-Out,2016-08-05,Summer,2016-08-02T07:00Z +Keep,1,2016,August,32,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,211,0,0,Check-Out,2016-08-05,Summer,2016-08-03T07:00Z +Keep,1,2016,August,32,4,0,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,199,0,3,Check-Out,2016-08-05,Summer,2016-08-04T07:00Z +Keep,112,2016,August,32,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,0,1,Check-Out,2016-08-05,Summer,2016-08-01T07:00Z +Keep,121,2016,July,31,29,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,221.38,0,1,Check-Out,2016-08-06,Summer,2016-07-29T07:00Z +Keep,161,2016,July,31,30,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,150.8,1,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,175,2016,July,31,30,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,150,0,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,13,2016,August,32,1,1,4,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,263,0,1,Check-Out,2016-08-06,Summer,2016-08-01T07:00Z +Keep,162,2016,July,31,30,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,194.25,0,1,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,180,2016,August,32,1,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,138.6,0,2,Check-Out,2016-08-06,Summer,2016-08-01T07:00Z +Keep,180,2016,August,32,1,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 241, NULL,0,Transient,187.8,2,3,Check-Out,2016-08-06,Summer,2016-08-01T07:00Z +Keep,180,2016,August,32,1,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,138.6,0,2,Check-Out,2016-08-06,Summer,2016-08-01T07:00Z +Keep,11,2016,July,31,30,2,5,3,0,0,FB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,340.71,0,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,136,2016,August,32,4,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,223,0,1,Check-Out,2016-08-06,Summer,2016-08-04T07:00Z +Keep,180,2016,July,31,27,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,115.2,0,1,Check-Out,2016-08-06,Summer,2016-07-27T07:00Z +Keep,187,2016,July,31,30,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,173.79,0,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,2,2016,August,32,4,0,2,2,1,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,176.53,0,2,Check-Out,2016-08-06,Summer,2016-08-04T07:00Z +Keep,152,2016,August,32,1,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,2,Check-Out,2016-08-06,Summer,2016-08-01T07:00Z +Keep,284,2016,July,31,30,2,5,2,3,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,224.5,1,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,2,2016,August,32,4,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,210.51,1,1,Check-Out,2016-08-06,Summer,2016-08-04T07:00Z +Keep,12,2016,August,32,2,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,1,Check-Out,2016-08-06,Summer,2016-08-02T07:00Z +Keep,153,2016,July,32,31,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,139.5,0,1,Check-Out,2016-08-06,Summer,2016-07-31T07:00Z +Keep,153,2016,July,32,31,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,166.5,1,0,Check-Out,2016-08-06,Summer,2016-07-31T07:00Z +Keep,194,2016,July,31,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240.57,1,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,140,2016,July,32,31,2,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,229.5,0,1,Check-Out,2016-08-06,Summer,2016-07-31T07:00Z +Keep,1,2016,August,32,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,172,0,0,Check-Out,2016-08-06,Summer,2016-08-05T07:00Z +Keep,152,2016,July,32,31,2,4,2,0,1,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,194,0,0,Check-Out,2016-08-06,Summer,2016-07-31T07:00Z +Keep,93,2016,August,32,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,189,0,0,Check-Out,2016-08-06,Summer,2016-08-02T07:00Z +Keep,93,2016,August,32,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,189,0,0,Check-Out,2016-08-06,Summer,2016-08-02T07:00Z +Keep,152,2016,July,32,31,2,4,2,0,1,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,194,0,0,Check-Out,2016-08-06,Summer,2016-07-31T07:00Z +Keep,0,2016,August,32,5,0,1,2,1,1,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,199,0,1,Check-Out,2016-08-06,Summer,2016-08-05T07:00Z +Keep,41,2016,August,32,2,0,4,1,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,203.59,0,0,Check-Out,2016-08-06,Summer,2016-08-02T07:00Z +Keep,0,2016,August,32,5,0,1,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,167.54,0,1,Check-Out,2016-08-06,Summer,2016-08-05T07:00Z +Keep,181,2016,July,30,22,4,11,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,160.53,0,0,Check-Out,2016-08-06,Summer,2016-07-22T07:00Z +Keep,158,2016,July,31,30,2,5,2,0,0,HB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,143.1,0,0,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,145,2016,July,31,30,2,5,3,0,0,HB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 253, NULL,0,Transient,186.26,0,1,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,57,2016,August,32,4,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,157.53,0,1,Check-Out,2016-08-06,Summer,2016-08-04T07:00Z +Keep,145,2016,July,31,30,2,5,3,0,0,HB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 253, NULL,0,Transient,184.55,0,1,Check-Out,2016-08-06,Summer,2016-07-30T07:00Z +Keep,156,2016,August,32,6,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,201,1,0,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,196,2016,August,32,1,1,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,90.1,0,0,Check-Out,2016-08-07,Summer,2016-08-01T07:00Z +Keep,88,2016,August,32,4,0,3,3,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,283,0,0,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,248,2016,August,33,7,2,0,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,252,0,0,Check-Out,2016-08-09,Summer,2016-08-07T07:00Z +Keep,178,2016,July,32,31,2,5,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,283.2,0,2,Check-Out,2016-08-07,Summer,2016-07-31T07:00Z +Keep,180,2016,July,32,31,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,156.6,0,3,Check-Out,2016-08-07,Summer,2016-07-31T07:00Z +Keep,6,2016,August,32,3,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,273.5,0,0,Check-Out,2016-08-07,Summer,2016-08-03T07:00Z +Keep,191,2016,July,31,30,2,6,2,0,0,BB,LUX,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,146.94,1,0,Check-Out,2016-08-07,Summer,2016-07-30T07:00Z +Keep,214,2017,August,32,10,2,5,2,0,0,BB,LUX,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Group,179.4,1,1,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,1,2016,August,32,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,196.42,0,1,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,117,2016,August,32,1,1,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,253,1,1,Check-Out,2016-08-07,Summer,2016-08-01T07:00Z +Keep,234,2016,August,32,2,0,5,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,3,No Deposit , 250, NULL,0,Transient,263,1,2,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Keep,41,2016,August,32,3,0,4,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,226,0,1,Check-Out,2016-08-07,Summer,2016-08-03T07:00Z +Keep,190,2016,August,32,2,0,5,3,1,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,336.5,1,1,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Keep,42,2016,August,32,1,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,259,0,0,Check-Out,2016-08-07,Summer,2016-08-01T07:00Z +Keep,0,2016,August,33,7,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-08-07,Summer,2016-08-07T07:00Z +Keep,15,2016,August,32,2,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Keep,34,2016,July,32,31,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 422,0,Transient,253,1,1,Check-Out,2016-08-07,Summer,2016-07-31T07:00Z +Keep,16,2016,August,32,5,0,2,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,251,0,0,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,6,2016,August,32,1,1,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,251.83,1,1,Check-Out,2016-08-07,Summer,2016-08-01T07:00Z +Keep,152,2016,August,32,2,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,2,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Keep,152,2016,August,32,2,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,0,2,Check-Out,2016-08-07,Summer,2016-08-02T07:00Z +Keep,37,2016,August,32,5,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,246,0,2,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,0,2016,August,32,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,94,2016,July,32,31,2,5,2,2,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,318.71,0,0,Check-Out,2016-08-07,Summer,2016-07-31T07:00Z +Keep,60,2016,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,0,2,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,2,2016,August,33,7,1,0,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,167,0,2,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,114,2016,August,32,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-08-07,Summer,2016-08-06T07:00Z +Keep,138,2016,July,31,24,4,10,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,234.17,0,0,Check-Out,2016-08-07,Summer,2016-07-24T07:00Z +Keep,15,2016,August,32,4,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,195.58,0,1,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,15,2016,August,32,4,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,195.58,0,1,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,4,2016,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,232.33,0,0,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,15,2016,August,32,4,0,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,168.63,0,2,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,15,2016,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168.63,0,1,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,4,2016,August,32,4,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,268.33,0,0,Check-Out,2016-08-07,Summer,2016-08-04T07:00Z +Keep,4,2016,August,32,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2016-08-07,Summer,2016-08-06T07:00Z +Keep,16,2016,August,32,5,0,2,3,1,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,352,0,0,Check-Out,2016-08-07,Summer,2016-08-05T07:00Z +Keep,203,2016,August,32,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.71,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,9,2016,August,32,5,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,215.67,0,0,Check-Out,2016-08-08,Summer,2016-08-05T07:00Z +Keep,315,2016,July,31,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 40, NULL,0,Contract,113.05,0,1,Check-Out,2016-08-08,Summer,2016-07-25T07:00Z +Keep,180,2016,August,32,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,187,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,25,2016,August,33,7,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,1,No Deposit , 251, NULL,0,Transient,131,0,0,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,192,2016,July,31,29,3,7,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,114.2,0,0,Check-Out,2016-08-08,Summer,2016-07-29T07:00Z +Keep,19,2016,August,32,3,1,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,2,Check-Out,2016-08-08,Summer,2016-08-03T07:00Z +Keep,100,2016,August,32,6,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,18,2016,August,32,3,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,175.2,0,0,Check-Out,2016-08-08,Summer,2016-08-03T07:00Z +Keep,111,2016,August,32,1,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,221,1,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,187,2017,August,31,1,2,5,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,175.23,1,1,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,1,2016,August,33,7,1,0,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,2,2016,August,33,8,1,0,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,335,0,0,Check-Out,2016-08-09,Summer,2016-08-08T07:00Z +Keep,214,2016,August,32,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,76,2016,August,32,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,203,1,0,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,0,2016,August,32,6,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,212.05,0,1,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,104,2016,August,32,3,1,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,249,0,1,Check-Out,2016-08-08,Summer,2016-08-03T07:00Z +Keep,200,2016,July,31,29,3,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,1,Check-Out,2016-08-08,Summer,2016-07-29T07:00Z +Keep,7,2016,August,32,5,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,0,1,Check-Out,2016-08-08,Summer,2016-08-05T07:00Z +Keep,3,2016,August,33,7,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177,0,1,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,31,2016,August,33,7,1,0,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,359,0,0,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,174,2016,August,32,1,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,177.5,0,2,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,12,2016,August,32,4,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,236,0,0,Check-Out,2016-08-08,Summer,2016-08-04T07:00Z +Keep,145,2016,August,32,1,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,214.86,0,1,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,90,2016,August,32,6,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,90,2016,August,32,6,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,180,2016,August,32,1,2,5,2,0,0,FB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,174,0,0,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,1,2016,August,32,6,1,1,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,200.05,0,1,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,4,2016,August,32,4,1,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,253.5,0,1,Check-Out,2016-08-08,Summer,2016-08-04T07:00Z +Keep,177,2016,August,32,1,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,150.8,0,2,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,22,2016,August,32,6,1,1,4,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,310,1,0,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Keep,2,2016,August,32,6,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,206,1,0,Check-Out,2016-08-08,Summer,2016-08-06T07:00Z +Cancel,4,2017,August,31,5,2,1,1,0,0,BB,PRT,Direct,Direct, 1,1,1,E,E,0,No Deposit , NULL, NULL,0,Transient,239.08,0,0,Canceled,2017-08-02,Summer,2017-08-05T07:00Z +Keep,174,2016,August,32,1,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 196, NULL,0,Transient-Party,165,0,3,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,14,2016,August,32,5,1,2,2,2,0,HB,SVN,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,353.67,1,0,Check-Out,2016-08-08,Summer,2016-08-05T07:00Z +Keep,53,2016,August,33,7,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,269,0,1,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,53,2016,August,33,7,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,269,0,1,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,180,2016,August,32,1,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,154,0,0,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,1,2016,August,33,7,1,0,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,276,1,0,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,174,2016,August,32,1,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,177.5,0,2,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,0,2016,August,33,7,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,134.1,0,0,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,3,2016,August,33,7,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165,0,1,Check-Out,2016-08-08,Summer,2016-08-07T07:00Z +Keep,97,2016,August,32,1,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,223,1,2,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,97,2016,August,32,1,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-08-08,Summer,2016-08-01T07:00Z +Keep,200,2016,August,32,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,128,0,0,Check-Out,2016-08-09,Summer,2016-08-02T07:00Z +Keep,1,2016,August,32,5,2,2,2,0,0,BB,RUS,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,230,0,0,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,207,2016,July,32,31,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,92.1,0,0,Check-Out,2016-08-09,Summer,2016-07-31T07:00Z +Keep,5,2016,August,33,8,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,210.6,0,0,Check-Out,2016-08-09,Summer,2016-08-08T07:00Z +Keep,70,2016,August,32,4,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,245,0,1,Check-Out,2016-08-09,Summer,2016-08-04T07:00Z +Keep,180,2016,July,32,31,4,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,112.8,0,0,Check-Out,2016-08-09,Summer,2016-07-31T07:00Z +Keep,42,2016,August,32,5,2,2,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,218.51,0,0,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,56,2016,August,32,5,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,51,2016,August,32,5,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202.5,0,1,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,56,2016,August,32,5,2,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,223,1,1,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,133,2016,August,32,5,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,203,1,0,Check-Out,2016-08-09,Summer,2016-08-05T07:00Z +Keep,26,2016,August,32,2,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,C,1,No Deposit , 240, NULL,0,Transient,313.71,0,1,Check-Out,2016-08-09,Summer,2016-08-02T07:00Z +Keep,5,2016,August,33,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209.75,0,1,Check-Out,2016-08-09,Summer,2016-08-07T07:00Z +Keep,12,2016,August,35,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,C,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2016-08-27,Summer,2016-08-25T07:00Z +Keep,182,2017,August,33,13,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,207.33,0,1,Check-Out,2017-08-16,Summer,2017-08-13T07:00Z +Keep,0,2016,August,33,8,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,271,0,0,Check-Out,2016-08-09,Summer,2016-08-08T07:00Z +Keep,15,2016,August,32,4,2,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,240,0,1,Check-Out,2016-08-09,Summer,2016-08-04T07:00Z +Keep,154,2016,August,32,2,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,183,0,0,Check-Out,2016-08-09,Summer,2016-08-02T07:00Z +Keep,113,2016,August,32,4,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,201,1,1,Check-Out,2016-08-09,Summer,2016-08-04T07:00Z +Keep,4,2016,August,32,6,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,203.11,0,1,Check-Out,2016-08-09,Summer,2016-08-06T07:00Z +Keep,3,2016,August,33,8,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,0,1,Check-Out,2016-08-09,Summer,2016-08-08T07:00Z +Keep,14,2016,August,32,4,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262.6,1,1,Check-Out,2016-08-09,Summer,2016-08-04T07:00Z +Keep,141,2016,August,32,3,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,126,0,0,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,141,2016,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,128,0,2,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,180,2016,August,32,4,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,126,0,1,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,180,2016,August,32,4,2,4,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,159.5,0,0,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,180,2016,August,32,4,2,4,2,1,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,159.5,0,0,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,180,2016,August,32,4,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,126,0,1,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,180,2016,August,32,4,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,126,0,0,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,235,2016,August,32,1,3,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , 250, NULL,0,Transient,160.75,1,1,Check-Out,2016-08-10,Summer,2016-08-01T07:00Z +Keep,152,2016,August,32,3,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,134.1,0,1,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,108,2016,August,32,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,83,2016,August,32,4,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,E,0,No Deposit , 250, NULL,0,Transient,216,1,3,Check-Out,2016-08-10,Summer,2016-08-04T07:00Z +Keep,45,2016,August,33,8,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,B,0,No Deposit , 241, NULL,0,Transient,173.25,0,0,Check-Out,2016-08-10,Summer,2016-08-08T07:00Z +Keep,47,2016,August,33,10,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,185.96,0,1,Check-Out,2016-08-18,Summer,2016-08-10T07:00Z +Keep,207,2016,August,32,1,3,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,2,Check-Out,2016-08-10,Summer,2016-08-01T07:00Z +Keep,107,2016,August,32,6,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,1,1,Check-Out,2016-08-10,Summer,2016-08-06T07:00Z +Keep,207,2016,August,32,1,3,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,144,0,2,Check-Out,2016-08-10,Summer,2016-08-01T07:00Z +Keep,179,2016,August,33,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,2,No Deposit , 250, NULL,0,Transient,288,1,0,Check-Out,2016-08-10,Summer,2016-08-09T07:00Z +Keep,146,2016,August,32,1,3,6,3,0,0,HB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,234.7,0,1,Check-Out,2016-08-10,Summer,2016-08-01T07:00Z +Keep,151,2016,August,32,1,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,166.66,0,1,Check-Out,2016-08-10,Summer,2016-08-01T07:00Z +Keep,187,2016,August,33,8,1,1,2,0,0,BB,CN,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,140,0,2,Check-Out,2016-08-10,Summer,2016-08-08T07:00Z +Keep,70,2016,August,32,3,2,5,1,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,176.78,0,0,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,11,2016,August,33,7,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,227,0,1,Check-Out,2016-08-10,Summer,2016-08-07T07:00Z +Keep,161,2016,August,32,3,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 420, NULL,0,Transient,125.5,0,2,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,132,2016,August,32,3,2,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,194,0,0,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,132,2016,August,32,3,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,229,0,0,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,23,2016,August,32,6,2,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,268,1,3,Check-Out,2016-08-10,Summer,2016-08-06T07:00Z +Keep,194,2016,July,31,30,4,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,156.48,0,0,Check-Out,2016-08-10,Summer,2016-07-30T07:00Z +Keep,9,2016,August,33,7,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,227,0,1,Check-Out,2016-08-10,Summer,2016-08-07T07:00Z +Keep,132,2016,August,32,3,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,I,1,No Deposit , 250, NULL,0,Transient-Party,229,0,0,Check-Out,2016-08-10,Summer,2016-08-03T07:00Z +Keep,138,2016,August,33,10,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-08-10,Summer,2016-08-10T07:00Z +Keep,204,2016,August,32,5,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 242, NULL,0,Transient,159.5,0,2,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,204,2016,August,32,5,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 242, NULL,0,Transient,159.5,0,2,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,204,2016,August,32,5,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 242, NULL,0,Transient,159.5,0,2,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,188,2016,July,31,28,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,116.1,0,0,Check-Out,2016-08-11,Summer,2016-07-28T07:00Z +Keep,159,2016,August,32,2,2,7,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,191.6,0,0,Check-Out,2016-08-11,Summer,2016-08-02T07:00Z +Keep,197,2016,August,32,5,2,4,2,0,1,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,148,0,1,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,34,2016,August,32,6,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,211,1,1,Check-Out,2016-08-11,Summer,2016-08-06T07:00Z +Keep,199,2016,August,33,7,2,2,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 36, NULL,0,Transient,148.8,1,0,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,195,2016,August,32,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,116.1,0,0,Check-Out,2016-08-11,Summer,2016-08-04T07:00Z +Keep,195,2016,August,32,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,116.1,0,0,Check-Out,2016-08-11,Summer,2016-08-04T07:00Z +Keep,195,2016,August,32,4,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,116.1,0,1,Check-Out,2016-08-11,Summer,2016-08-04T07:00Z +Keep,8,2016,August,33,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,244,0,1,Check-Out,2016-08-11,Summer,2016-08-10T07:00Z +Keep,233,2016,August,32,1,3,7,2,0,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,156,0,1,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,151,2016,August,32,6,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,159.27,0,2,Check-Out,2016-08-11,Summer,2016-08-06T07:00Z +Keep,50,2016,August,32,5,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 426, NULL,0,Transient-Party,231.17,0,0,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,50,2016,August,32,5,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 426, NULL,0,Transient-Party,241.5,0,0,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,8,2016,August,33,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,219,0,0,Check-Out,2016-08-11,Summer,2016-08-10T07:00Z +Keep,50,2016,August,32,5,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 426, NULL,0,Transient-Party,243.5,0,0,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,34,2016,August,33,7,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,145,2016,August,33,8,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,137.83,0,0,Check-Out,2016-08-11,Summer,2016-08-08T07:00Z +Keep,136,2016,August,33,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,165.23,0,1,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,83,2016,August,32,1,3,7,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,202,0,2,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,151,2016,August,33,8,1,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,167.9,0,1,Check-Out,2016-08-11,Summer,2016-08-08T07:00Z +Keep,83,2016,August,32,1,3,7,1,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,3,No Deposit , 250, NULL,0,Transient,202,0,2,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,83,2016,August,32,1,3,7,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,216,0,2,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,151,2016,August,33,8,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,204.5,0,0,Check-Out,2016-08-11,Summer,2016-08-08T07:00Z +Keep,84,2016,August,33,8,1,2,2,1,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,218.67,0,1,Check-Out,2016-08-11,Summer,2016-08-08T07:00Z +Keep,88,2016,August,32,3,2,6,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,211.25,1,2,Check-Out,2016-08-11,Summer,2016-08-03T07:00Z +Keep,55,2016,August,33,10,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,269,1,0,Check-Out,2016-08-11,Summer,2016-08-10T07:00Z +Keep,200,2016,August,32,1,3,7,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,132.96,0,2,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,200,2016,August,32,1,3,7,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,207.76,0,3,Check-Out,2016-08-11,Summer,2016-08-01T07:00Z +Keep,6,2016,August,32,4,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,229.71,0,1,Check-Out,2016-08-11,Summer,2016-08-04T07:00Z +Keep,96,2016,August,32,4,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,C,1,No Deposit , 5, NULL,0,Transient,246.2,0,0,Check-Out,2016-08-11,Summer,2016-08-04T07:00Z +Keep,72,2016,August,33,9,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,H,0,No Deposit , 241, NULL,0,Transient,207.05,1,0,Check-Out,2016-08-11,Summer,2016-08-09T07:00Z +Keep,194,2016,August,33,7,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,97.4,0,1,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,194,2016,August,33,7,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,97.4,0,1,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,10,2016,August,32,5,2,4,1,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,242.33,0,1,Check-Out,2016-08-11,Summer,2016-08-05T07:00Z +Keep,52,2016,August,33,7,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,195,0,1,Check-Out,2016-08-11,Summer,2016-08-07T07:00Z +Keep,151,2016,August,33,8,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,132.9,0,2,Check-Out,2016-08-11,Summer,2016-08-08T07:00Z +Keep,180,2016,August,32,2,2,8,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 314, NULL,0,Transient,196.52,0,1,Check-Out,2016-08-12,Summer,2016-08-02T07:00Z +Keep,230,2016,July,31,29,4,10,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,126,0,1,Check-Out,2016-08-12,Summer,2016-07-29T07:00Z +Keep,200,2016,August,32,2,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,D,0,No Deposit , 8, NULL,0,Transient,126,0,0,Check-Out,2016-08-12,Summer,2016-08-02T07:00Z +Keep,136,2016,August,33,7,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,193,0,0,Check-Out,2016-08-12,Summer,2016-08-07T07:00Z +Keep,86,2016,August,33,8,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,276,1,0,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,17,2016,August,33,8,1,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,256,0,2,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,17,2016,August,33,8,1,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,268,0,2,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,182,2016,August,33,10,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 241, NULL,0,Transient,150.6,0,1,Check-Out,2016-08-12,Summer,2016-08-10T07:00Z +Keep,7,2016,August,33,11,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,1,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,172,2016,August,32,6,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,1,Check-Out,2016-08-12,Summer,2016-08-06T07:00Z +Keep,206,2016,July,31,29,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138,1,1,Check-Out,2016-08-12,Summer,2016-07-29T07:00Z +Keep,0,2016,August,33,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,229,0,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,179,2016,August,33,7,2,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,199.5,1,1,Check-Out,2016-08-12,Summer,2016-08-07T07:00Z +Keep,18,2016,August,33,10,0,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,357,0,0,Check-Out,2016-08-12,Summer,2016-08-10T07:00Z +Keep,226,2016,August,33,8,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,138,1,2,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,14,2016,August,33,10,0,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,231,0,0,Check-Out,2016-08-12,Summer,2016-08-10T07:00Z +Keep,37,2016,August,33,8,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,0,1,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,1,2016,August,33,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,149,0,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,0,2017,February,7,12,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Group,56,0,0,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,0,2017,February,8,23,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-24,Winter,2017-02-23T08:00Z +Keep,17,2016,August,33,8,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,0,0,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,61,2016,August,32,6,2,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,246,0,3,Check-Out,2016-08-12,Summer,2016-08-06T07:00Z +Keep,5,2016,August,33,11,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,189,0,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,13,2016,August,33,9,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,261,0,0,Check-Out,2016-08-12,Summer,2016-08-09T07:00Z +Keep,6,2016,August,33,10,0,2,2,0,1,BB,CN,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,227.1,1,2,Check-Out,2016-08-12,Summer,2016-08-10T07:00Z +Keep,2,2016,August,33,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,197.67,0,0,Check-Out,2016-08-12,Summer,2016-08-09T07:00Z +Keep,35,2016,August,33,8,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,243,1,1,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,107,2016,August,33,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,211,0,0,Check-Out,2016-08-12,Summer,2016-08-09T07:00Z +Keep,107,2016,August,33,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,221,0,2,Check-Out,2016-08-12,Summer,2016-08-09T07:00Z +Keep,0,2016,August,33,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,219,0,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,13,2016,August,33,8,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,0,0,Check-Out,2016-08-12,Summer,2016-08-08T07:00Z +Keep,8,2016,August,33,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,261,0,1,Check-Out,2016-08-12,Summer,2016-08-10T07:00Z +Keep,9,2016,August,33,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,193,2016,August,32,6,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,172,1,1,Check-Out,2016-08-12,Summer,2016-08-06T07:00Z +Keep,3,2016,August,33,11,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,239,0,0,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,0,2016,August,33,11,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,244,0,1,Check-Out,2016-08-12,Summer,2016-08-11T07:00Z +Keep,66,2016,August,32,5,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2016-08-12,Summer,2016-08-05T07:00Z +Keep,91,2016,August,33,8,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,215,0,1,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Keep,91,2016,August,33,8,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,215,0,1,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Keep,38,2016,August,33,12,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,195.2,1,0,Check-Out,2016-08-13,Summer,2016-08-12T07:00Z +Keep,55,2016,August,33,8,1,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,286,1,0,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Keep,129,2016,August,32,6,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,327.4,0,2,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,44,2016,August,33,10,0,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,201,0,1,Check-Out,2016-08-13,Summer,2016-08-10T07:00Z +Keep,26,2016,August,33,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,233,1,1,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,166,2016,August,33,8,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,127.2,0,0,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Keep,21,2016,August,33,11,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,296,0,0,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,135,2016,August,33,9,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,137.83,0,2,Check-Out,2016-08-13,Summer,2016-08-09T07:00Z +Keep,136,2016,August,33,7,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,0,1,Check-Out,2016-08-13,Summer,2016-08-07T07:00Z +Keep,17,2016,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,251.07,0,2,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,37,2016,August,33,11,0,2,3,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,327.6,0,0,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,89,2016,August,32,6,2,5,2,0,0,HB,URY,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,235.29,0,1,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,16,2016,August,33,10,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,227.1,1,0,Check-Out,2016-08-13,Summer,2016-08-10T07:00Z +Keep,85,2016,August,32,6,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,203.29,0,1,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,144,2016,August,33,7,2,4,3,0,1,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,329,0,2,Check-Out,2016-08-13,Summer,2016-08-07T07:00Z +Keep,85,2016,August,32,6,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,213.57,0,1,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,22,2016,August,33,12,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,195.58,0,1,Check-Out,2016-08-13,Summer,2016-08-12T07:00Z +Keep,209,2016,August,32,2,2,9,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,162,0,2,Check-Out,2016-08-13,Summer,2016-08-02T07:00Z +Keep,209,2016,August,32,2,2,9,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,162,0,1,Check-Out,2016-08-13,Summer,2016-08-02T07:00Z +Keep,14,2016,August,33,9,0,4,3,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,268.5,0,1,Check-Out,2016-08-13,Summer,2016-08-09T07:00Z +Keep,30,2016,August,32,3,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2016-08-13,Summer,2016-08-03T07:00Z +Keep,138,2016,August,33,7,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,244.67,1,0,Check-Out,2016-08-13,Summer,2016-08-07T07:00Z +Keep,241,2016,August,33,7,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,157.5,0,1,Check-Out,2016-08-13,Summer,2016-08-07T07:00Z +Keep,2,2016,August,33,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,37,2016,August,33,10,0,3,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,187.88,0,1,Check-Out,2016-08-13,Summer,2016-08-10T07:00Z +Keep,36,2016,August,33,10,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,229,0,1,Check-Out,2016-08-13,Summer,2016-08-10T07:00Z +Keep,22,2016,August,33,7,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-13,Summer,2016-08-07T07:00Z +Keep,205,2016,August,32,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,117.21,0,1,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,119,2016,August,32,6,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,155.71,0,0,Check-Out,2016-08-13,Summer,2016-08-06T07:00Z +Keep,37,2016,August,33,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,256,0,1,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,106,2016,August,33,8,1,4,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-13,Summer,2016-08-08T07:00Z +Keep,194,2016,July,31,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,106.55,0,0,Check-Out,2016-08-13,Summer,2016-07-30T07:00Z +Keep,39,2016,August,33,11,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,216.5,0,1,Check-Out,2016-08-13,Summer,2016-08-11T07:00Z +Keep,9,2016,August,33,12,0,1,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,202.28,0,0,Check-Out,2016-08-13,Summer,2016-08-12T07:00Z +Keep,51,2016,August,33,9,0,4,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,281,1,0,Check-Out,2016-08-13,Summer,2016-08-09T07:00Z +Keep,184,2016,July,32,31,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,115.05,0,0,Check-Out,2016-08-14,Summer,2016-07-31T07:00Z +Keep,42,2016,August,33,10,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,243,0,1,Check-Out,2016-08-14,Summer,2016-08-10T07:00Z +Keep,17,2016,August,33,11,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,272.67,0,1,Check-Out,2016-08-14,Summer,2016-08-11T07:00Z +Keep,205,2016,August,33,7,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,1,1,Check-Out,2016-08-14,Summer,2016-08-07T07:00Z +Keep,45,2016,August,33,11,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,213,0,1,Check-Out,2016-08-14,Summer,2016-08-11T07:00Z +Keep,194,2016,August,33,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,113.35,0,0,Check-Out,2016-08-14,Summer,2016-08-07T07:00Z +Keep,251,2016,August,33,8,1,5,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,118.5,0,2,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,164,2016,August,32,6,2,6,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,131.6,0,0,Check-Out,2016-08-14,Summer,2016-08-06T07:00Z +Keep,157,2016,August,33,8,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,0,0,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,131,2016,August,33,8,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,2,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,112,2016,August,33,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,189,0,1,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,112,2016,August,33,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,164,2016,August,32,6,2,6,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,131.1,0,0,Check-Out,2016-08-14,Summer,2016-08-06T07:00Z +Keep,56,2016,August,33,9,0,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,253,1,1,Check-Out,2016-08-14,Summer,2016-08-09T07:00Z +Keep,213,2016,August,33,8,1,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.9,0,2,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,213,2016,August,33,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,10,2016,August,33,11,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,249.67,0,0,Check-Out,2016-08-14,Summer,2016-08-11T07:00Z +Keep,90,2016,August,33,10,0,4,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,201,0,0,Check-Out,2016-08-14,Summer,2016-08-10T07:00Z +Keep,39,2016,August,33,12,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,263,0,1,Check-Out,2016-08-14,Summer,2016-08-12T07:00Z +Keep,32,2016,August,33,12,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,254,0,1,Check-Out,2016-08-14,Summer,2016-08-12T07:00Z +Keep,147,2016,August,33,12,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,1,0,Check-Out,2016-08-14,Summer,2016-08-12T07:00Z +Keep,6,2016,August,33,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-08-14,Summer,2016-08-13T07:00Z +Keep,1,2016,August,33,13,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,1,0,Check-Out,2016-08-14,Summer,2016-08-13T07:00Z +Keep,107,2016,August,33,8,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Check-Out,2016-08-14,Summer,2016-08-08T07:00Z +Keep,78,2016,August,33,11,0,3,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-08-14,Summer,2016-08-11T07:00Z +Keep,42,2016,August,32,1,3,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,198.23,0,1,Check-Out,2016-08-14,Summer,2016-08-01T07:00Z +Keep,49,2016,August,33,12,0,2,2,2,0,BB,CYP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,279,0,0,Check-Out,2016-08-14,Summer,2016-08-12T07:00Z +Keep,10,2016,August,33,11,0,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,243.17,0,1,Check-Out,2016-08-14,Summer,2016-08-11T07:00Z +Keep,184,2016,August,32,4,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,162,0,2,Check-Out,2016-08-14,Summer,2016-08-04T07:00Z +Keep,172,2016,August,34,15,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,117.2,0,0,Check-Out,2016-08-24,Summer,2016-08-15T07:00Z +Keep,2,2016,August,33,12,1,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,239.67,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,1,2016,August,34,14,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,234,0,1,Check-Out,2016-08-15,Summer,2016-08-14T07:00Z +Keep,1,2016,August,34,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,211,0,1,Check-Out,2016-08-15,Summer,2016-08-14T07:00Z +Keep,122,2016,August,32,4,3,8,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,221,0,0,Check-Out,2016-08-15,Summer,2016-08-04T07:00Z +Keep,51,2016,August,33,9,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2016-08-15,Summer,2016-08-09T07:00Z +Keep,122,2016,August,32,4,3,8,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,221,0,1,Check-Out,2016-08-15,Summer,2016-08-04T07:00Z +Keep,207,2016,August,33,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,152,1,0,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,17,2016,August,34,14,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,215,0,1,Check-Out,2016-08-15,Summer,2016-08-14T07:00Z +Keep,160,2016,August,33,8,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient,164.8,0,0,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,110,2016,August,33,10,1,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,2,Check-Out,2016-08-15,Summer,2016-08-10T07:00Z +Keep,97,2016,August,33,12,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,198.5,1,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,11,2016,August,33,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,25,2016,August,33,12,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,263,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,208,2016,August,33,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,194,2016,August,32,6,3,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,0,Check-Out,2016-08-15,Summer,2016-08-06T07:00Z +Keep,4,2016,August,34,14,1,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,181.6,0,0,Check-Out,2016-08-15,Summer,2016-08-14T07:00Z +Keep,87,2016,August,33,12,1,2,3,1,0,BB,BRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,279,1,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,87,2016,August,33,12,1,2,2,2,0,BB,BRA,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,241,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,87,2016,August,33,12,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,71,2016,August,33,12,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,178.43,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,12,2016,August,33,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,1,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,10,2016,August,33,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,1,0,Check-Out,2016-08-15,Summer,2016-08-10T07:00Z +Keep,17,2016,August,33,9,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,227.67,0,1,Check-Out,2016-08-15,Summer,2016-08-09T07:00Z +Keep,102,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,131,2016,August,33,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,206.1,0,1,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,13,2016,August,33,8,2,5,3,0,0,HB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,161.1,0,2,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,131,2016,August,33,8,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,180.1,0,1,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,6,2016,August,33,13,1,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,359,0,2,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,56,2016,August,33,13,1,1,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,322,0,1,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,92,2016,August,33,9,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,207.33,0,1,Check-Out,2016-08-15,Summer,2016-08-09T07:00Z +Keep,133,2016,August,32,4,3,8,2,0,1,BB,NLD,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient-Party,212.8,0,1,Check-Out,2016-08-15,Summer,2016-08-04T07:00Z +Keep,136,2016,August,33,13,1,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,203.1,0,2,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,47,2016,December,53,31,1,1,3,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,315.38,0,2,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,102,2017,July,26,1,2,5,3,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,209,1,2,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,57,2016,August,33,12,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,215.1,1,0,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,147,2016,August,33,10,1,4,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 128, NULL,0,Transient,138.7,0,1,Check-Out,2016-08-15,Summer,2016-08-10T07:00Z +Keep,214,2016,August,33,9,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,160,0,1,Check-Out,2016-08-15,Summer,2016-08-09T07:00Z +Keep,86,2016,August,33,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236,1,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,71,2016,August,33,12,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,34,2016,August,33,10,1,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,G,1,No Deposit , 250, NULL,0,Transient,306,1,0,Check-Out,2016-08-15,Summer,2016-08-10T07:00Z +Keep,2,2016,August,34,14,1,0,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-15,Summer,2016-08-14T07:00Z +Keep,8,2016,August,33,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,286,0,1,Check-Out,2016-08-15,Summer,2016-08-13T07:00Z +Keep,110,2016,August,33,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199.29,0,1,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,110,2016,August,33,8,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,189,0,2,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,110,2016,August,33,8,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199.29,0,1,Check-Out,2016-08-15,Summer,2016-08-08T07:00Z +Keep,133,2016,August,32,4,3,8,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,216.66,0,0,Check-Out,2016-08-15,Summer,2016-08-04T07:00Z +Keep,65,2016,August,33,12,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,C,0,No Deposit , 240, NULL,0,Transient,278.5,0,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,117,2016,August,33,12,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,253,1,1,Check-Out,2016-08-15,Summer,2016-08-12T07:00Z +Keep,42,2016,August,33,11,1,3,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,D,0,No Deposit , 196, NULL,0,Transient-Party,235,0,0,Check-Out,2016-08-15,Summer,2016-08-11T07:00Z +Keep,42,2016,August,33,11,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient-Party,235,0,0,Check-Out,2016-08-15,Summer,2016-08-11T07:00Z +Keep,42,2016,August,33,11,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,B,0,No Deposit , 196, NULL,0,Transient-Party,235,0,0,Check-Out,2016-08-15,Summer,2016-08-11T07:00Z +Keep,96,2016,August,34,15,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-08-15,Summer,2016-08-15T07:00Z +Keep,199,2016,August,33,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,142.76,0,0,Check-Out,2016-08-16,Summer,2016-08-09T07:00Z +Keep,122,2016,August,33,13,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,145.53,0,1,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,83,2016,August,33,10,2,4,2,1,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,204.1,0,2,Check-Out,2016-08-16,Summer,2016-08-10T07:00Z +Keep,83,2016,August,33,10,2,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,186.6,0,0,Check-Out,2016-08-16,Summer,2016-08-10T07:00Z +Keep,36,2016,August,33,11,2,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,253.16,1,0,Check-Out,2016-08-16,Summer,2016-08-11T07:00Z +Keep,56,2016,August,33,9,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,225,0,0,Check-Out,2016-08-16,Summer,2016-08-09T07:00Z +Keep,203,2016,August,34,15,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 36, NULL,0,Transient,139.99,0,0,Check-Out,2016-08-16,Summer,2016-08-15T07:00Z +Keep,204,2016,August,34,16,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,139.99,0,0,Check-Out,2016-08-22,Summer,2016-08-16T07:00Z +Keep,24,2016,August,34,14,2,0,3,0,1,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 242, NULL,0,Transient,299,0,0,Check-Out,2016-08-16,Summer,2016-08-14T07:00Z +Keep,131,2016,August,33,8,3,5,2,0,0,SC,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient,10.5,0,2,Check-Out,2016-08-16,Summer,2016-08-08T07:00Z +Keep,69,2016,August,33,7,4,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 181, NULL,0,Transient,231.76,0,0,Check-Out,2016-08-16,Summer,2016-08-07T07:00Z +Keep,206,2016,August,33,8,3,5,3,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,250,0,0,Check-Out,2016-08-16,Summer,2016-08-08T07:00Z +Keep,83,2017,August,32,7,1,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,3,2016,August,33,11,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,236,0,1,Check-Out,2016-08-16,Summer,2016-08-11T07:00Z +Keep,43,2016,August,33,12,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,153.23,0,1,Check-Out,2016-08-16,Summer,2016-08-12T07:00Z +Keep,63,2016,August,34,14,2,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-08-16,Summer,2016-08-14T07:00Z +Keep,203,2016,August,32,5,4,7,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-08-16,Summer,2016-08-05T07:00Z +Keep,75,2016,August,33,13,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,0,1,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,17,2016,August,33,12,2,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,270.5,0,1,Check-Out,2016-08-16,Summer,2016-08-12T07:00Z +Keep,24,2016,August,34,14,2,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-16,Summer,2016-08-14T07:00Z +Keep,175,2016,August,33,8,3,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,153.39,0,2,Check-Out,2016-08-16,Summer,2016-08-08T07:00Z +Keep,218,2016,August,33,13,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,210,2016,August,33,9,2,5,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,183,0,1,Check-Out,2016-08-16,Summer,2016-08-09T07:00Z +Keep,246,2016,August,32,2,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,134.55,0,0,Check-Out,2016-08-16,Summer,2016-08-02T07:00Z +Keep,161,2016,August,33,9,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,182,0,1,Check-Out,2016-08-16,Summer,2016-08-09T07:00Z +Keep,16,2016,August,33,13,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,293,0,1,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,165,2016,August,33,13,2,1,3,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,1,No Deposit , 314, NULL,0,Transient,199.26,0,0,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,16,2016,August,33,13,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,261,0,1,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,45,2016,August,34,14,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,243,0,1,Check-Out,2016-08-16,Summer,2016-08-14T07:00Z +Keep,2,2016,August,34,14,2,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,253,0,1,Check-Out,2016-08-16,Summer,2016-08-14T07:00Z +Keep,1,2016,August,34,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,219,0,1,Check-Out,2016-08-17,Summer,2016-08-16T07:00Z +Keep,1,2016,August,34,15,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,253,1,1,Check-Out,2016-08-16,Summer,2016-08-15T07:00Z +Keep,11,2016,August,34,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,261,1,0,Check-Out,2016-08-16,Summer,2016-08-15T07:00Z +Keep,147,2016,August,33,8,3,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201,0,0,Check-Out,2016-08-16,Summer,2016-08-08T07:00Z +Keep,20,2016,August,33,13,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,257.67,0,2,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,201,2016,August,33,13,2,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 430, NULL,0,Transient,123,0,0,Check-Out,2016-08-16,Summer,2016-08-13T07:00Z +Keep,175,2016,August,33,8,3,5,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,155.54,0,3,Check-Out,2016-08-16,Summer,2016-08-08T07:00Z +Keep,21,2016,August,33,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,228.6,0,0,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Keep,185,2016,August,33,13,2,2,3,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,136,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,145,2016,August,33,13,2,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,156.6,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,145,2016,August,33,13,2,2,2,1,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,183.6,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,107,2016,August,33,13,2,2,3,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,271,1,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,145,2016,August,33,13,2,2,2,1,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,171.6,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,145,2016,August,33,13,2,2,2,2,0,BB,ITA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,197.1,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,116,2016,August,33,11,2,4,2,0,0,HB,ITA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,235.67,0,1,Check-Out,2016-08-17,Summer,2016-08-11T07:00Z +Keep,93,2016,August,34,14,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,216.33,0,1,Check-Out,2016-08-17,Summer,2016-08-14T07:00Z +Keep,57,2016,August,34,15,1,1,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,224,0,1,Check-Out,2016-08-17,Summer,2016-08-15T07:00Z +Keep,24,2016,August,33,12,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2016-08-17,Summer,2016-08-12T07:00Z +Keep,197,2016,August,33,10,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,182,0,1,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Keep,4,2016,August,34,14,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 15, NULL,0,Transient,208.8,0,0,Check-Out,2016-08-17,Summer,2016-08-14T07:00Z +Keep,207,2016,August,33,10,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,105.34,0,1,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Keep,6,2016,August,34,16,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,251,1,1,Check-Out,2016-08-17,Summer,2016-08-16T07:00Z +Keep,145,2016,August,33,13,2,2,2,2,0,BB,ITA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,209.1,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,214,2016,August,33,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Keep,108,2016,August,33,12,2,3,2,0,1,FB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,222,0,1,Check-Out,2016-08-17,Summer,2016-08-12T07:00Z +Keep,185,2016,August,33,13,2,2,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,114,0,0,Check-Out,2016-08-17,Summer,2016-08-13T07:00Z +Keep,1,2016,August,34,16,0,1,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-17,Summer,2016-08-16T07:00Z +Keep,189,2016,August,33,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,140,1,0,Check-Out,2016-08-17,Summer,2016-08-10T07:00Z +Keep,211,2016,August,32,4,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2016-08-18,Summer,2016-08-04T07:00Z +Keep,199,2016,August,32,2,4,12,2,1,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,103.5,0,1,Check-Out,2016-08-18,Summer,2016-08-02T07:00Z +Keep,190,2016,August,33,11,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,110.7,0,1,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,204,2016,August,32,2,4,12,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,151.3,0,0,Check-Out,2016-08-18,Summer,2016-08-02T07:00Z +Keep,259,2016,August,33,11,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 143, NULL,0,Transient,142.68,0,2,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,259,2016,August,33,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 143, NULL,0,Transient,112.2,0,1,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,190,2016,August,33,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,115.05,0,0,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,12,2016,August,34,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,0,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,178,2016,August,33,8,3,7,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,190.1,1,2,Check-Out,2016-08-18,Summer,2016-08-08T07:00Z +Keep,4,2016,August,34,16,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 36, NULL,0,Transient,145.2,0,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,118,2016,August,34,15,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,151.83,0,1,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,15,2016,August,34,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,219,0,0,Check-Out,2016-08-18,Summer,2016-08-17T07:00Z +Keep,49,2016,August,34,14,2,2,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,301.2,0,1,Check-Out,2016-08-18,Summer,2016-08-14T07:00Z +Keep,1,2016,August,34,18,0,1,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Group,242,0,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,251,2016,August,33,9,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient-Party,195.98,0,1,Check-Out,2016-08-18,Summer,2016-08-09T07:00Z +Keep,251,2016,August,33,9,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 115, NULL,0,Transient-Party,197.97,0,1,Check-Out,2016-08-18,Summer,2016-08-09T07:00Z +Keep,59,2016,August,33,12,2,4,2,1,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,329,0,1,Check-Out,2016-08-18,Summer,2016-08-12T07:00Z +Keep,205,2016,August,33,13,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,190.75,1,0,Check-Out,2016-08-18,Summer,2016-08-13T07:00Z +Keep,136,2016,August,33,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,191,1,0,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,175,2017,August,32,10,2,6,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,189.5,1,3,Check-Out,2017-08-18,Summer,2017-08-10T07:00Z +Keep,5,2016,August,33,13,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230.6,0,3,Check-Out,2016-08-18,Summer,2016-08-13T07:00Z +Keep,1,2016,August,34,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,221,0,1,Check-Out,2016-08-18,Summer,2016-08-17T07:00Z +Keep,115,2016,August,33,11,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,196.71,1,1,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,154,2016,August,34,16,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,197.8,0,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,16,2016,August,33,12,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2016-08-18,Summer,2016-08-12T07:00Z +Keep,49,2016,August,33,11,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,286,1,2,Check-Out,2016-08-18,Summer,2016-08-11T07:00Z +Keep,154,2016,August,34,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,209.8,1,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,154,2016,August,34,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,209.8,1,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,17,2016,August,34,15,1,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,242.33,0,1,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,154,2016,August,34,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,232.8,0,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,18,2016,August,33,13,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient,310.2,0,0,Check-Out,2016-08-18,Summer,2016-08-13T07:00Z +Keep,154,2016,August,34,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,209.8,1,1,Check-Out,2016-08-18,Summer,2016-08-16T07:00Z +Keep,211,2016,August,34,14,2,2,1,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 95, NULL,0,Transient,144,0,0,Check-Out,2016-08-18,Summer,2016-08-14T07:00Z +Keep,174,2016,August,33,8,3,7,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,153.5,1,0,Check-Out,2016-08-18,Summer,2016-08-08T07:00Z +Keep,115,2016,August,34,15,1,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2016-08-18,Summer,2016-08-15T07:00Z +Keep,4,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,20,1,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,169,2016,August,32,5,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 71, NULL,0,Transient,142,0,0,Check-Out,2016-08-19,Summer,2016-08-05T07:00Z +Keep,251,2016,August,33,9,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,141.05,0,0,Check-Out,2016-08-19,Summer,2016-08-09T07:00Z +Keep,1,2016,August,34,18,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,2,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,1,2016,August,34,18,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,2,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,89,2016,August,34,14,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,233,0,0,Check-Out,2016-08-19,Summer,2016-08-14T07:00Z +Keep,89,2016,August,34,14,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,245,0,0,Check-Out,2016-08-19,Summer,2016-08-14T07:00Z +Keep,1,2016,August,34,18,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,2,2016,August,34,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,0,1,Check-Out,2016-08-19,Summer,2016-08-17T07:00Z +Keep,140,2016,August,34,16,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,179,0,2,Check-Out,2016-08-19,Summer,2016-08-16T07:00Z +Keep,1,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,191,1,3,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,181,2016,August,33,7,4,8,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,265,0,2,Check-Out,2016-08-19,Summer,2016-08-07T07:00Z +Keep,250,2017,August,32,6,4,10,3,0,0,HB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,251.43,1,3,Check-Out,2017-08-20,Summer,2017-08-06T07:00Z +Keep,20,2016,August,34,16,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,254,0,2,Check-Out,2016-08-19,Summer,2016-08-16T07:00Z +Keep,1,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179,0,3,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,1,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,187,2016,August,34,15,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,224,1,2,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Keep,0,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,173,2016,August,34,15,1,3,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,143,0,0,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Keep,1,2016,August,34,18,0,1,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,259,0,0,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,0,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,11,2016,August,34,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,158.73,0,1,Check-Out,2016-08-19,Summer,2016-08-14T07:00Z +Keep,124,2016,August,33,12,2,5,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,172.8,0,0,Check-Out,2016-08-19,Summer,2016-08-12T07:00Z +Keep,13,2016,August,34,15,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,264.16,0,1,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Keep,1,2016,August,34,18,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,199.43,0,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,4,2016,August,34,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,1,Check-Out,2016-08-19,Summer,2016-08-18T07:00Z +Keep,27,2016,August,34,15,1,3,3,0,0,FB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,288,0,0,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Keep,187,2016,August,34,15,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,212,0,2,Check-Out,2016-08-19,Summer,2016-08-15T07:00Z +Keep,205,2016,August,32,6,4,10,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,126,0,0,Check-Out,2016-08-20,Summer,2016-08-06T07:00Z +Keep,212,2016,August,33,13,2,5,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 253, NULL,0,Transient,112.7,0,1,Check-Out,2016-08-20,Summer,2016-08-13T07:00Z +Keep,201,2016,August,34,15,1,4,2,0,0,HB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,149.4,0,0,Check-Out,2016-08-20,Summer,2016-08-15T07:00Z +Keep,212,2016,August,33,13,2,5,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 253, NULL,0,Transient,97.4,0,1,Check-Out,2016-08-20,Summer,2016-08-13T07:00Z +Keep,154,2016,August,34,16,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,116.7,0,0,Check-Out,2016-08-20,Summer,2016-08-16T07:00Z +Keep,25,2016,August,34,16,0,4,3,1,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,352,0,1,Check-Out,2016-08-20,Summer,2016-08-16T07:00Z +Keep,164,2016,August,33,12,2,6,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 314, NULL,0,Transient-Party,197.9,0,1,Check-Out,2016-08-20,Summer,2016-08-12T07:00Z +Keep,164,2016,August,33,12,2,6,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient-Party,185.9,0,1,Check-Out,2016-08-20,Summer,2016-08-12T07:00Z +Keep,111,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2016-08-20,Summer,2016-08-15T07:00Z +Keep,14,2016,August,34,15,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,265,0,2,Check-Out,2016-08-20,Summer,2016-08-15T07:00Z +Keep,7,2016,August,34,19,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 339, NULL,0,Transient-Party,140,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,7,2016,August,34,19,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient-Party,140,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,1,2016,August,34,18,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,2,2016,August,34,19,0,1,1,0,0,BB,CN,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 59,0,Transient,160,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,128,2016,August,34,14,2,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,317.67,0,0,Check-Out,2016-08-20,Summer,2016-08-14T07:00Z +Keep,28,2016,August,34,15,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2016-08-20,Summer,2016-08-15T07:00Z +Keep,7,2016,August,33,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214.71,0,1,Check-Out,2016-08-20,Summer,2016-08-13T07:00Z +Keep,99,2016,August,32,6,4,10,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,190.34,0,0,Check-Out,2016-08-20,Summer,2016-08-06T07:00Z +Keep,14,2016,August,34,17,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,241,0,3,Check-Out,2016-08-20,Summer,2016-08-17T07:00Z +Keep,7,2016,August,34,19,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 339, NULL,0,Transient-Party,140,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,7,2016,August,34,19,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 314, NULL,0,Transient,140,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,7,2016,August,34,19,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient-Party,140,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,1,2016,August,34,19,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,F,0,No Deposit , 250, NULL,0,Transient,169,0,0,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,24,2016,August,34,17,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,200.1,0,2,Check-Out,2016-08-20,Summer,2016-08-17T07:00Z +Keep,179,2016,August,33,12,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,1,Check-Out,2016-08-20,Summer,2016-08-12T07:00Z +Keep,162,2016,August,33,13,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,191,0,1,Check-Out,2016-08-20,Summer,2016-08-13T07:00Z +Keep,54,2016,August,34,18,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,279,1,0,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,4,2016,August,34,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,179,0,2,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,13,2016,August,34,16,0,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,1,Check-Out,2016-08-20,Summer,2016-08-16T07:00Z +Keep,13,2016,August,34,16,0,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,237.9,0,2,Check-Out,2016-08-20,Summer,2016-08-16T07:00Z +Keep,64,2016,August,33,13,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,241,0,0,Check-Out,2016-08-20,Summer,2016-08-13T07:00Z +Keep,28,2016,August,34,14,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,273,0,0,Check-Out,2016-08-20,Summer,2016-08-14T07:00Z +Keep,106,2016,August,34,14,2,4,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,217.67,0,1,Check-Out,2016-08-20,Summer,2016-08-14T07:00Z +Keep,52,2016,August,34,14,2,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,190.7,0,0,Check-Out,2016-08-20,Summer,2016-08-14T07:00Z +Keep,6,2016,August,34,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,2,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,1,2016,August,34,19,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,1,1,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,0,2016,August,34,18,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,221,0,1,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,6,2016,August,34,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,189,0,1,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Keep,2,2016,August,34,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 339, NULL,0,Transient,159.2,0,2,Check-Out,2016-08-20,Summer,2016-08-19T07:00Z +Keep,119,2016,August,34,20,2,5,2,1,0,FB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,215.6,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,180,2016,August,34,16,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2016-08-20,Summer,2016-08-16T07:00Z +Keep,27,2016,August,34,18,0,2,2,0,1,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,231,0,2,Check-Out,2016-08-20,Summer,2016-08-18T07:00Z +Cancel,17,2016,August,34,20,0,1,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient,209,0,1,No-Show,2016-08-20,Summer,2016-08-20T07:00Z +Keep,178,2016,August,34,14,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,130.55,0,0,Check-Out,2016-08-21,Summer,2016-08-14T07:00Z +Keep,15,2016,August,34,18,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,165.5,0,1,Check-Out,2016-08-21,Summer,2016-08-18T07:00Z +Keep,216,2016,August,34,14,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,185.37,1,1,Check-Out,2016-08-21,Summer,2016-08-14T07:00Z +Keep,11,2016,August,34,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,187.2,0,0,Check-Out,2016-08-21,Summer,2016-08-19T07:00Z +Keep,205,2016,August,34,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,0,Check-Out,2016-08-21,Summer,2016-08-14T07:00Z +Keep,52,2016,August,34,14,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,212.1,1,1,Check-Out,2016-08-21,Summer,2016-08-14T07:00Z +Keep,3,2016,August,34,19,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,0,1,Check-Out,2016-08-21,Summer,2016-08-19T07:00Z +Keep,178,2016,August,34,14,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,165.2,0,0,Check-Out,2016-08-21,Summer,2016-08-14T07:00Z +Keep,89,2016,August,34,15,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,243,1,2,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,32,2016,August,34,15,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,199.1,0,0,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Cancel,186,2017,April,15,14,1,2,2,0,0,BB,PRT,Direct,Direct, 1,1,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,76.67,0,3,Canceled,2017-01-05,Spring,2017-04-14T07:00Z +Keep,220,2016,August,34,15,1,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,15,2016,August,34,18,0,3,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,220.87,1,0,Check-Out,2016-08-21,Summer,2016-08-18T07:00Z +Keep,91,2016,August,34,15,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,203,0,1,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,194,2016,August,34,15,1,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,126.9,0,0,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,194,2016,August,34,15,1,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,146.7,0,1,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,124,2016,August,34,17,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-08-21,Summer,2016-08-17T07:00Z +Keep,3,2016,August,34,18,0,3,2,0,1,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,170.7,1,1,Check-Out,2016-08-21,Summer,2016-08-18T07:00Z +Keep,17,2016,August,34,16,0,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,311,0,1,Check-Out,2016-08-21,Summer,2016-08-16T07:00Z +Keep,18,2016,August,34,20,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , 250, NULL,0,Transient,248.1,0,1,Check-Out,2016-08-21,Summer,2016-08-20T07:00Z +Keep,1,2016,August,35,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,200,0,1,Check-Out,2016-08-22,Summer,2016-08-21T07:00Z +Keep,11,2016,August,34,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234,0,2,Check-Out,2016-08-21,Summer,2016-08-19T07:00Z +Keep,26,2016,August,34,20,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,254,0,0,Check-Out,2016-08-21,Summer,2016-08-20T07:00Z +Keep,27,2016,August,35,21,2,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Group,246.5,0,1,Check-Out,2016-08-27,Summer,2016-08-21T07:00Z +Keep,17,2016,August,34,18,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,175.2,0,1,Check-Out,2016-08-21,Summer,2016-08-18T07:00Z +Keep,134,2016,August,34,18,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2016-08-21,Summer,2016-08-18T07:00Z +Keep,98,2016,August,34,15,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,238,1,0,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,97,2016,August,34,17,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,211,0,1,Check-Out,2016-08-21,Summer,2016-08-17T07:00Z +Keep,136,2016,August,34,15,1,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,286.6,0,0,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,12,2016,August,34,17,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,243.5,0,1,Check-Out,2016-08-21,Summer,2016-08-17T07:00Z +Keep,19,2016,August,34,15,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,232.67,0,1,Check-Out,2016-08-21,Summer,2016-08-15T07:00Z +Keep,36,2017,August,33,16,2,8,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,F,F,0,No Deposit , NULL, NULL,0,Transient,285,0,2,Check-Out,2017-08-26,Summer,2017-08-16T07:00Z +Keep,0,2016,August,34,20,0,1,1,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189,0,0,Check-Out,2016-08-21,Summer,2016-08-20T07:00Z +Keep,12,2016,August,35,21,2,3,1,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189,0,1,Check-Out,2016-08-26,Summer,2016-08-21T07:00Z +Keep,223,2016,August,34,16,0,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,167.6,0,0,Check-Out,2016-08-21,Summer,2016-08-16T07:00Z +Keep,97,2016,August,33,7,4,10,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient,217.5,0,0,Check-Out,2016-08-21,Summer,2016-08-07T07:00Z +Keep,68,2016,August,35,22,3,6,2,0,0,BB,ITA,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,191.32,1,0,Check-Out,2016-08-31,Summer,2016-08-22T07:00Z +Keep,208,2016,August,32,1,6,15,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 171, NULL,0,Transient,126,0,0,Check-Out,2016-08-22,Summer,2016-08-01T07:00Z +Keep,113,2016,August,33,13,3,6,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,211.67,0,0,Check-Out,2016-08-22,Summer,2016-08-13T07:00Z +Keep,209,2016,August,34,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.1,0,0,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,154,2016,August,34,15,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,185.44,0,0,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,0,2016,August,34,20,1,1,1,0,0,BB,AGO,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,191,0,0,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,108,2016,August,34,16,1,5,3,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,234,0,1,Check-Out,2016-08-22,Summer,2016-08-16T07:00Z +Keep,255,2016,August,34,19,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,100.8,0,0,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,206,2016,August,33,8,4,10,3,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,189.25,0,1,Check-Out,2016-08-22,Summer,2016-08-08T07:00Z +Keep,91,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,191,0,1,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,91,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,126,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,126,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,211,1,1,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,210,2016,August,34,15,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,168.8,1,0,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,205,2017,August,33,19,2,6,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 6, NULL,0,Group,152.1,1,0,Check-Out,2017-08-27,Summer,2017-08-19T07:00Z +Keep,50,2016,August,34,20,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,206,0,1,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,99,2016,August,34,19,1,2,2,0,0,BB,NZL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,146.33,0,1,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,88,2016,August,34,17,1,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 196, NULL,0,Transient,213.6,0,0,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,117,2016,August,34,19,1,2,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 242, NULL,0,Transient,275,0,1,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,129,2016,August,34,19,1,2,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,249,1,2,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,33,2016,August,34,17,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,2,No Deposit , 240, NULL,0,Transient,270.1,0,1,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,26,2016,August,35,22,1,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,268.5,1,1,Check-Out,2016-08-23,Summer,2016-08-22T07:00Z +Keep,79,2016,August,34,17,1,4,3,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient-Party,259,0,1,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,12,2016,August,34,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,88,2016,August,34,18,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,193,1,2,Check-Out,2016-08-22,Summer,2016-08-18T07:00Z +Keep,82,2016,August,34,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,79,2016,August,34,17,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,235.6,1,0,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,49,2016,August,34,15,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,140,0,1,Check-Out,2016-08-22,Summer,2016-08-15T07:00Z +Keep,208,2016,August,33,8,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,139.72,0,0,Check-Out,2016-08-22,Summer,2016-08-08T07:00Z +Keep,56,2016,August,34,20,1,1,2,0,0,HB,DZA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,261,0,2,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,56,2016,August,34,17,1,4,3,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,219,0,1,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,56,2016,August,34,17,1,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,203,1,0,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,103,2016,August,34,19,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,189.42,0,1,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,103,2016,August,34,19,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,189.42,0,1,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,0,2016,August,34,19,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217.67,0,2,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,48,2016,August,34,20,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,0,1,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,65,2016,August,34,17,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,171.17,0,1,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,221,2016,August,33,13,3,6,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 71, NULL,0,Contract,95.2,0,0,Check-Out,2016-08-22,Summer,2016-08-13T07:00Z +Keep,167,2016,August,34,18,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,157.2,0,0,Check-Out,2016-08-22,Summer,2016-08-18T07:00Z +Keep,200,2017,August,33,14,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,184.64,0,0,Check-Out,2017-08-19,Summer,2017-08-14T07:00Z +Keep,58,2016,August,34,16,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,269,0,1,Check-Out,2016-08-22,Summer,2016-08-16T07:00Z +Keep,23,2016,August,34,20,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,231,0,2,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,49,2016,August,34,19,1,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,195.67,0,1,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,119,2016,August,34,19,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,241,0,2,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,199,2016,August,33,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,90.1,0,0,Check-Out,2016-08-22,Summer,2016-08-08T07:00Z +Keep,12,2016,August,35,21,1,0,2,0,0,BB,DZA,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient-Party,274,0,2,Check-Out,2016-08-22,Summer,2016-08-21T07:00Z +Keep,13,2016,August,35,22,1,3,2,0,0,BB,DZA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,188,0,2,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,10,2016,August,34,20,1,1,2,1,1,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,300.6,1,0,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,80,2016,August,34,17,1,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199,0,2,Check-Out,2016-08-22,Summer,2016-08-17T07:00Z +Keep,119,2016,August,34,19,1,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,228,0,2,Check-Out,2016-08-22,Summer,2016-08-19T07:00Z +Keep,12,2016,August,34,20,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,246,1,2,Check-Out,2016-08-22,Summer,2016-08-20T07:00Z +Keep,0,2016,August,35,22,0,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 1,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-08-22,Summer,2016-08-22T07:00Z +Keep,15,2016,August,34,16,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,297.29,0,1,Check-Out,2016-08-23,Summer,2016-08-16T07:00Z +Keep,75,2016,August,34,20,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,203,0,1,Check-Out,2016-08-23,Summer,2016-08-20T07:00Z +Keep,75,2016,August,34,20,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,191,0,1,Check-Out,2016-08-23,Summer,2016-08-20T07:00Z +Keep,133,2016,August,34,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,211,1,2,Check-Out,2016-08-23,Summer,2016-08-16T07:00Z +Keep,104,2016,August,35,23,0,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-08-23,Summer,2016-08-23T07:00Z +Keep,0,2016,August,35,22,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,179,0,1,Check-Out,2016-08-23,Summer,2016-08-22T07:00Z +Keep,0,2016,August,35,22,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,179,0,1,Check-Out,2016-08-23,Summer,2016-08-22T07:00Z +Keep,53,2016,August,34,16,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,141,0,0,Check-Out,2016-08-23,Summer,2016-08-16T07:00Z +Keep,4,2016,August,34,20,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,224.1,1,0,Check-Out,2016-08-23,Summer,2016-08-20T07:00Z +Keep,7,2016,August,35,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Group,254.1,1,0,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,139,2016,August,34,15,3,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,268.75,1,1,Check-Out,2016-08-23,Summer,2016-08-15T07:00Z +Keep,78,2016,August,34,15,3,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,200.88,0,1,Check-Out,2016-08-23,Summer,2016-08-15T07:00Z +Keep,35,2016,August,34,18,2,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,352,0,1,Check-Out,2016-08-23,Summer,2016-08-18T07:00Z +Keep,13,2016,August,34,17,2,4,2,0,1,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,241,1,1,Check-Out,2016-08-23,Summer,2016-08-17T07:00Z +Keep,10,2016,August,34,20,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,169.91,0,1,Check-Out,2016-08-23,Summer,2016-08-20T07:00Z +Keep,208,2016,August,33,13,4,6,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,118.24,0,2,Check-Out,2016-08-23,Summer,2016-08-13T07:00Z +Keep,129,2016,August,34,16,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,211.2,0,0,Check-Out,2016-08-23,Summer,2016-08-16T07:00Z +Keep,148,2016,August,34,14,4,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2016-08-23,Summer,2016-08-14T07:00Z +Keep,125,2016,August,34,15,3,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2016-08-23,Summer,2016-08-15T07:00Z +Keep,112,2016,August,34,18,2,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,171.2,0,1,Check-Out,2016-08-23,Summer,2016-08-18T07:00Z +Keep,61,2016,August,34,15,3,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,233,1,0,Check-Out,2016-08-23,Summer,2016-08-15T07:00Z +Keep,101,2016,August,34,18,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,171.2,0,0,Check-Out,2016-08-23,Summer,2016-08-18T07:00Z +Keep,205,2016,August,33,13,4,6,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,1,1,Check-Out,2016-08-23,Summer,2016-08-13T07:00Z +Keep,76,2016,August,34,16,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,216.43,0,0,Check-Out,2016-08-23,Summer,2016-08-16T07:00Z +Keep,144,2016,August,34,16,2,6,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,254.62,1,1,Check-Out,2016-08-24,Summer,2016-08-16T07:00Z +Keep,52,2016,August,34,17,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,213.86,0,1,Check-Out,2016-08-24,Summer,2016-08-17T07:00Z +Keep,89,2016,August,34,15,3,6,2,0,0,HB,RUS,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,236.93,0,1,Check-Out,2016-08-24,Summer,2016-08-15T07:00Z +Keep,52,2016,August,33,11,4,9,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,234.54,1,0,Check-Out,2016-08-24,Summer,2016-08-11T07:00Z +Keep,9,2017,August,32,9,2,4,2,2,0,BB,PRT,Direct,Direct, 1,0,1,C,C,0,No Deposit , NULL, NULL,0,Transient,271,1,2,Check-Out,2017-08-15,Summer,2017-08-09T07:00Z +Keep,82,2017,August,33,15,4,10,2,2,0,BB,PRT,Direct,Direct, 1,0,1,G,G,2,No Deposit , 250, NULL,0,Transient,318,1,3,Check-Out,2017-08-29,Summer,2017-08-15T07:00Z +Keep,0,2016,August,35,23,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,281,0,0,Check-Out,2016-08-24,Summer,2016-08-23T07:00Z +Keep,4,2016,August,35,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 42,0,Transient,138,1,0,Check-Out,2016-08-24,Summer,2016-08-23T07:00Z +Keep,14,2016,August,34,18,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 15, NULL,0,Transient,193.87,0,0,Check-Out,2016-08-24,Summer,2016-08-18T07:00Z +Keep,67,2016,August,34,17,2,5,1,3,0,BB,IRL,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,202.7,0,0,Check-Out,2016-08-24,Summer,2016-08-17T07:00Z +Keep,85,2016,August,34,19,2,3,1,1,0,FB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,283,0,0,Check-Out,2016-08-24,Summer,2016-08-19T07:00Z +Keep,19,2016,August,34,18,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,296.33,0,3,Check-Out,2016-08-24,Summer,2016-08-18T07:00Z +Keep,170,2016,August,34,17,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,284.86,1,1,Check-Out,2016-08-24,Summer,2016-08-17T07:00Z +Keep,127,2017,August,33,18,2,5,2,0,0,HB,PRT,Direct,TA/TO, 1,0,1,E,E,4,No Deposit , 250, NULL,0,Transient,297,0,4,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,0,2016,August,35,23,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,167.09,0,0,Check-Out,2016-08-24,Summer,2016-08-23T07:00Z +Keep,67,2016,August,33,11,4,9,2,1,0,BB,FRA,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,221.62,0,0,Check-Out,2016-08-24,Summer,2016-08-11T07:00Z +Keep,188,2016,August,34,18,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,100.8,0,1,Check-Out,2016-08-24,Summer,2016-08-18T07:00Z +Keep,1,2016,August,35,22,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,201,0,0,Check-Out,2016-08-24,Summer,2016-08-22T07:00Z +Keep,115,2016,August,34,15,3,6,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,231.6,0,0,Check-Out,2016-08-24,Summer,2016-08-15T07:00Z +Keep,63,2016,August,34,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209.29,0,2,Check-Out,2016-08-24,Summer,2016-08-17T07:00Z +Keep,8,2016,August,35,22,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,258,0,1,Check-Out,2016-08-24,Summer,2016-08-22T07:00Z +Keep,12,2016,August,34,20,2,2,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,4,No Deposit , 250, NULL,0,Transient,293.1,1,1,Check-Out,2016-08-24,Summer,2016-08-20T07:00Z +Keep,72,2016,August,34,16,2,6,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,261.25,0,2,Check-Out,2016-08-24,Summer,2016-08-16T07:00Z +Keep,2,2016,August,35,23,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2016-08-24,Summer,2016-08-23T07:00Z +Keep,4,2016,August,35,25,0,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,0,0,1,Check-Out,2016-08-25,Summer,2016-08-25T07:00Z +Keep,6,2016,August,35,25,2,4,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,0,2,Check-Out,2016-08-31,Summer,2016-08-25T07:00Z +Keep,169,2016,August,34,18,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,135.63,1,1,Check-Out,2016-08-25,Summer,2016-08-18T07:00Z +Keep,209,2016,August,34,15,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,99.02,0,2,Check-Out,2016-08-25,Summer,2016-08-15T07:00Z +Keep,0,2016,August,35,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,197.1,0,0,Check-Out,2016-08-25,Summer,2016-08-24T07:00Z +Keep,333,2017,August,34,24,1,3,2,0,0,HB,PRT,Online travel agent,Direct, 1,0,1,E,E,2,No Deposit , 240, NULL,0,Transient,201.6,0,3,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,98,2016,August,34,14,4,7,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211.91,0,1,Check-Out,2016-08-25,Summer,2016-08-14T07:00Z +Keep,88,2016,August,34,17,2,6,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,279,0,0,Check-Out,2016-08-25,Summer,2016-08-17T07:00Z +Keep,85,2016,August,34,19,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2016-08-25,Summer,2016-08-19T07:00Z +Keep,66,2016,August,35,23,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,176.33,0,2,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,67,2016,August,35,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,168.63,0,1,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,67,2016,August,35,23,0,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,179.53,0,2,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,0,2016,August,35,24,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,202.5,0,0,Check-Out,2016-08-25,Summer,2016-08-24T07:00Z +Keep,217,2016,August,35,22,1,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,174,1,1,Check-Out,2016-08-25,Summer,2016-08-22T07:00Z +Keep,1,2016,August,35,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,231,0,0,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,9,2016,August,35,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,229,0,1,Check-Out,2016-08-25,Summer,2016-08-24T07:00Z +Keep,104,2016,August,33,13,4,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,148.79,0,1,Check-Out,2016-08-25,Summer,2016-08-13T07:00Z +Keep,88,2016,August,34,18,2,5,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,286.1,1,0,Check-Out,2016-08-25,Summer,2016-08-18T07:00Z +Keep,68,2016,August,34,18,2,5,2,1,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,279.36,0,2,Check-Out,2016-08-25,Summer,2016-08-18T07:00Z +Keep,40,2016,August,35,22,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,234,0,1,Check-Out,2016-08-25,Summer,2016-08-22T07:00Z +Keep,342,2017,August,34,20,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,185.4,0,2,Check-Out,2017-08-25,Summer,2017-08-20T07:00Z +Keep,0,2016,August,35,22,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,183,1,0,Check-Out,2016-08-25,Summer,2016-08-22T07:00Z +Keep,60,2016,August,35,21,2,2,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,281,0,0,Check-Out,2016-08-25,Summer,2016-08-21T07:00Z +Keep,17,2016,August,35,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,0,Check-Out,2016-08-25,Summer,2016-08-23T07:00Z +Keep,55,2016,August,35,21,2,2,2,1,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,230.64,0,1,Check-Out,2016-08-25,Summer,2016-08-21T07:00Z +Keep,237,2016,August,34,19,2,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.71,0,1,Check-Out,2016-08-26,Summer,2016-08-19T07:00Z +Keep,191,2016,August,34,17,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,125.55,0,0,Check-Out,2016-08-26,Summer,2016-08-17T07:00Z +Keep,210,2016,August,33,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,106.55,0,5,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,88,2016,August,35,22,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,199.2,0,0,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,9,2016,August,35,22,1,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,178,0,0,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,14,2016,August,35,22,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,198,0,0,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,2,2016,August,35,25,0,1,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,291,1,1,Check-Out,2016-08-26,Summer,2016-08-25T07:00Z +Keep,60,2016,August,34,20,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,237.67,0,1,Check-Out,2016-08-26,Summer,2016-08-20T07:00Z +Keep,60,2016,August,34,20,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,252.67,0,1,Check-Out,2016-08-26,Summer,2016-08-20T07:00Z +Keep,99,2016,August,34,18,2,6,2,0,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,205.2,1,0,Check-Out,2016-08-26,Summer,2016-08-18T07:00Z +Keep,22,2016,August,35,23,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,227,0,2,Check-Out,2016-08-26,Summer,2016-08-23T07:00Z +Keep,4,2016,August,35,24,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,C,0,No Deposit , 240, NULL,0,Transient,258,1,0,Check-Out,2016-08-26,Summer,2016-08-24T07:00Z +Keep,146,2016,August,34,16,2,8,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,248.2,0,1,Check-Out,2016-08-26,Summer,2016-08-16T07:00Z +Keep,116,2016,August,34,18,2,6,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,164.13,0,1,Check-Out,2016-08-26,Summer,2016-08-18T07:00Z +Keep,195,2016,August,35,23,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,151.5,1,1,Check-Out,2016-08-26,Summer,2016-08-23T07:00Z +Keep,195,2016,August,35,23,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,169.5,0,2,Check-Out,2016-08-26,Summer,2016-08-23T07:00Z +Keep,208,2016,August,35,21,2,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,150.8,0,2,Check-Out,2016-08-26,Summer,2016-08-21T07:00Z +Keep,0,2016,August,35,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,229,1,0,Check-Out,2016-08-26,Summer,2016-08-25T07:00Z +Keep,47,2016,August,35,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,169.08,0,1,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,92,2016,August,35,22,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181,0,3,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,208,2016,August,35,21,2,3,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,164.8,1,2,Check-Out,2016-08-26,Summer,2016-08-21T07:00Z +Keep,148,2016,August,34,20,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,160.6,0,0,Check-Out,2016-08-26,Summer,2016-08-20T07:00Z +Keep,183,2016,August,34,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,92.1,0,1,Check-Out,2016-08-26,Summer,2016-08-19T07:00Z +Keep,87,2016,August,35,21,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-08-26,Summer,2016-08-21T07:00Z +Keep,145,2016,August,34,16,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,124.2,0,0,Check-Out,2016-08-26,Summer,2016-08-16T07:00Z +Keep,214,2016,August,34,16,2,8,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,206.2,0,2,Check-Out,2016-08-26,Summer,2016-08-16T07:00Z +Keep,204,2016,August,33,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,90.1,0,1,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,204,2016,August,33,12,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,90.1,0,1,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,204,2016,August,33,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,106.55,0,0,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,204,2016,August,33,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,91.96,0,1,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,204,2016,August,33,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,90.1,0,1,Check-Out,2016-08-26,Summer,2016-08-12T07:00Z +Keep,14,2016,August,35,22,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,245.1,0,0,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,79,2016,August,35,22,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,100,2016,August,34,17,2,7,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 196, NULL,0,Transient,180.47,0,0,Check-Out,2016-08-26,Summer,2016-08-17T07:00Z +Keep,0,2016,August,35,25,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,1,0,Check-Out,2016-08-26,Summer,2016-08-25T07:00Z +Keep,79,2016,August,35,22,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,25,2016,August,35,24,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,311,1,1,Check-Out,2016-08-26,Summer,2016-08-24T07:00Z +Keep,158,2016,August,35,22,1,3,4,0,0,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,357,1,0,Check-Out,2016-08-26,Summer,2016-08-22T07:00Z +Keep,119,2016,August,34,20,2,5,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient-Party,248.8,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,108,2016,August,34,20,2,5,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,249,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,69,2016,August,35,25,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,145.53,0,1,Check-Out,2016-08-27,Summer,2016-08-25T07:00Z +Keep,175,2016,August,35,22,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,204,1,1,Check-Out,2016-08-27,Summer,2016-08-22T07:00Z +Keep,76,2016,August,35,21,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,209.83,0,2,Check-Out,2016-08-27,Summer,2016-08-21T07:00Z +Keep,4,2016,August,35,26,0,1,3,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,219,0,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,206,2016,August,34,20,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,102.8,0,2,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,20,2016,August,35,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,151.2,0,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,88,2016,August,34,18,2,7,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2016-08-27,Summer,2016-08-18T07:00Z +Keep,87,2016,August,35,21,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,206.1,1,1,Check-Out,2016-08-27,Summer,2016-08-21T07:00Z +Keep,0,2016,August,35,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,221,0,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,22,2016,August,34,20,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,247,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,22,2016,August,34,20,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,247,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,87,2016,August,34,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 3, NULL,0,Transient,154,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,135,2016,August,35,21,2,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,266.1,1,0,Check-Out,2016-08-27,Summer,2016-08-21T07:00Z +Keep,215,2016,August,33,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,115.05,0,0,Check-Out,2016-08-27,Summer,2016-08-13T07:00Z +Keep,85,2016,August,34,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 339, NULL,0,Transient,193.77,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,136,2016,August,34,20,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,222.38,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,5,2016,August,35,26,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,216,1,2,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,0,2016,August,35,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,12,2016,August,35,24,0,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 339, NULL,0,Transient,237.6,0,0,Check-Out,2016-08-27,Summer,2016-08-24T07:00Z +Keep,3,2016,August,35,23,0,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,199,0,2,Check-Out,2016-08-27,Summer,2016-08-23T07:00Z +Keep,0,2016,August,35,25,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,241,0,0,Check-Out,2016-08-27,Summer,2016-08-25T07:00Z +Keep,111,2016,August,34,20,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,200.96,0,2,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,58,2016,August,35,23,0,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,246,0,0,Check-Out,2016-08-27,Summer,2016-08-23T07:00Z +Keep,198,2016,August,34,20,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,102.8,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,45,2016,August,35,22,1,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,270,1,0,Check-Out,2016-08-27,Summer,2016-08-22T07:00Z +Keep,0,2016,August,35,26,0,1,4,0,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,261,1,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,54,2016,August,35,24,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,0,Check-Out,2016-08-27,Summer,2016-08-24T07:00Z +Keep,0,2016,August,35,26,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,0,Check-Out,2016-08-27,Summer,2016-08-26T07:00Z +Keep,82,2016,August,34,20,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,234.6,1,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,193,2016,August,34,20,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,157,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,193,2016,August,34,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,153.29,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,4,2016,August,35,25,0,2,2,1,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,269,0,0,Check-Out,2016-08-27,Summer,2016-08-25T07:00Z +Keep,238,2016,August,34,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,121.4,0,0,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,187,2016,August,34,20,2,5,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,160.7,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,238,2016,August,34,20,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,124.2,0,1,Check-Out,2016-08-27,Summer,2016-08-20T07:00Z +Keep,98,2016,August,35,21,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,197.2,1,0,Check-Out,2016-08-27,Summer,2016-08-21T07:00Z +Keep,171,2016,August,35,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,104.55,0,0,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,42,2016,August,35,23,0,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Transient,151,0,0,Check-Out,2016-08-28,Summer,2016-08-23T07:00Z +Keep,212,2016,August,35,24,0,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, 395,0,Transient,119,0,2,Check-Out,2016-08-28,Summer,2016-08-24T07:00Z +Keep,212,2016,August,35,24,0,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, 395,0,Transient,119,0,2,Check-Out,2016-08-28,Summer,2016-08-24T07:00Z +Keep,219,2016,August,34,20,2,6,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,135,0,1,Check-Out,2016-08-28,Summer,2016-08-20T07:00Z +Keep,184,2017,August,34,21,1,5,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 196, NULL,0,Transient,157.28,0,0,Check-Out,2017-08-27,Summer,2017-08-21T07:00Z +Keep,53,2016,August,35,22,1,5,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,E,0,No Deposit , 196, NULL,0,Transient,192,0,1,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,195,2016,August,35,21,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Contract,132.8,0,0,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,44,2016,August,35,27,0,1,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2016-08-28,Summer,2016-08-27T07:00Z +Keep,173,2016,August,35,21,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,214.5,0,1,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,213,2016,August,35,21,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,146.8,0,2,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,57,2016,August,35,25,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,201,0,0,Check-Out,2016-08-28,Summer,2016-08-25T07:00Z +Keep,155,2016,August,35,22,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,2,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,2,2016,August,35,27,0,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,204,0,1,Check-Out,2016-08-28,Summer,2016-08-27T07:00Z +Keep,185,2016,August,35,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,116.1,0,0,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,213,2016,August,35,21,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 5, NULL,0,Transient-Party,202.83,1,2,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,72,2016,August,35,22,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,227.1,0,0,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,205,2016,August,35,21,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient,162.14,1,1,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,124,2016,August,34,16,2,10,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,145.11,0,0,Check-Out,2016-08-28,Summer,2016-08-16T07:00Z +Keep,124,2016,August,34,16,2,10,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,143.28,0,0,Check-Out,2016-08-28,Summer,2016-08-16T07:00Z +Keep,14,2016,August,35,22,1,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,261.33,0,1,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,188,2016,August,35,24,0,4,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,155.52,0,0,Check-Out,2016-08-28,Summer,2016-08-24T07:00Z +Keep,192,2016,August,35,21,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,142.2,0,1,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,204,2016,August,34,20,2,6,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,250.5,1,0,Check-Out,2016-08-28,Summer,2016-08-20T07:00Z +Keep,82,2016,August,35,22,1,5,2,1,1,HB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , NULL, NULL,0,Transient,239.1,1,0,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,14,2016,August,35,26,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,201,0,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,14,2016,August,35,26,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,31,2016,August,35,22,1,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,224.07,0,1,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,86,2016,August,35,24,0,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,259,0,1,Check-Out,2016-08-28,Summer,2016-08-24T07:00Z +Keep,6,2016,August,35,25,0,3,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,200.1,0,1,Check-Out,2016-08-28,Summer,2016-08-25T07:00Z +Keep,305,2016,August,35,21,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 314, NULL,0,Transient,178.08,0,1,Check-Out,2016-08-28,Summer,2016-08-21T07:00Z +Keep,240,2016,August,35,22,1,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138,1,1,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,205,2016,August,34,14,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,104.55,0,3,Check-Out,2016-08-28,Summer,2016-08-14T07:00Z +Keep,127,2016,August,35,22,1,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,183.2,1,0,Check-Out,2016-08-28,Summer,2016-08-22T07:00Z +Keep,4,2016,August,35,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,216,1,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,104,2016,August,35,23,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,146.75,1,1,Check-Out,2016-08-28,Summer,2016-08-23T07:00Z +Keep,18,2016,August,35,26,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,153.37,1,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,7,2016,August,35,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,223,1,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,7,2016,August,35,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2016-08-28,Summer,2016-08-26T07:00Z +Keep,22,2016,August,35,27,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,281,1,1,Check-Out,2016-08-28,Summer,2016-08-27T07:00Z +Keep,23,2016,August,36,28,2,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,283,1,0,Check-Out,2016-08-31,Summer,2016-08-28T07:00Z +Keep,64,2016,August,35,23,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,243.67,0,2,Check-Out,2016-08-29,Summer,2016-08-23T07:00Z +Keep,97,2017,August,32,8,2,5,2,0,0,HB,PRT,Direct,TA/TO, 1,0,1,F,F,2,No Deposit , 250, NULL,0,Transient,349,0,2,Check-Out,2017-08-15,Summer,2017-08-08T07:00Z +Keep,122,2016,August,35,23,1,5,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,265.83,0,0,Check-Out,2016-08-29,Summer,2016-08-23T07:00Z +Keep,14,2016,August,35,25,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,190.23,0,1,Check-Out,2016-08-29,Summer,2016-08-25T07:00Z +Keep,14,2016,August,35,25,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,170.43,0,1,Check-Out,2016-08-29,Summer,2016-08-25T07:00Z +Keep,28,2016,August,35,22,2,5,2,1,1,HB,GBR,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,246.43,0,1,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,152,2016,August,34,16,3,10,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,126.33,0,1,Check-Out,2016-08-29,Summer,2016-08-16T07:00Z +Keep,82,2016,August,35,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190.43,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,82,2016,August,35,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,45,2016,August,35,22,2,5,3,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,308.14,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,29,2016,August,35,26,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,221,0,0,Check-Out,2016-08-29,Summer,2016-08-26T07:00Z +Keep,6,2016,August,36,28,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,159,0,2,Check-Out,2016-08-29,Summer,2016-08-28T07:00Z +Keep,6,2016,August,36,28,1,0,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,171,0,2,Check-Out,2016-08-29,Summer,2016-08-28T07:00Z +Keep,15,2016,August,35,27,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,171.47,1,1,Check-Out,2016-08-29,Summer,2016-08-27T07:00Z +Keep,39,2016,August,35,25,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270.5,1,1,Check-Out,2016-08-29,Summer,2016-08-25T07:00Z +Keep,20,2016,August,35,22,2,5,2,1,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,245.43,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,232,2016,August,35,25,1,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121.5,0,3,Check-Out,2016-08-29,Summer,2016-08-25T07:00Z +Keep,21,2016,August,36,29,1,2,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,153,0,3,Check-Out,2016-09-01,Summer,2016-08-29T07:00Z +Keep,116,2016,August,34,20,3,6,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,238.1,0,0,Check-Out,2016-08-29,Summer,2016-08-20T07:00Z +Keep,95,2016,August,35,22,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,203.8,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,27,2016,August,35,22,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236.14,0,1,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,11,2016,August,35,22,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,292.71,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,2,2016,August,35,27,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,231,1,0,Check-Out,2016-08-29,Summer,2016-08-27T07:00Z +Keep,30,2016,August,35,27,1,1,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,286,1,1,Check-Out,2016-08-29,Summer,2016-08-27T07:00Z +Keep,39,2016,August,35,21,3,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270.38,0,2,Check-Out,2016-08-29,Summer,2016-08-21T07:00Z +Keep,214,2016,August,34,19,3,7,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,238,0,1,Check-Out,2016-08-29,Summer,2016-08-19T07:00Z +Keep,214,2016,August,34,19,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,138,0,1,Check-Out,2016-08-29,Summer,2016-08-19T07:00Z +Keep,220,2016,August,35,22,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,119.29,0,1,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,44,2016,August,35,25,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196.5,0,1,Check-Out,2016-08-29,Summer,2016-08-25T07:00Z +Keep,1,2016,August,35,27,1,1,2,0,0,BB,EGY,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,122.89,0,0,Check-Out,2016-08-29,Summer,2016-08-27T07:00Z +Keep,162,2016,August,35,22,2,5,2,2,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,308.57,1,2,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,186,2016,August,35,22,2,5,3,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,201.43,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,32,2016,August,35,22,2,5,2,0,1,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,154,0,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,18,2016,August,35,26,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,201,0,1,Check-Out,2016-08-29,Summer,2016-08-26T07:00Z +Keep,22,2016,August,35,27,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,0,1,Check-Out,2016-08-29,Summer,2016-08-27T07:00Z +Keep,13,2016,August,36,29,0,0,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 339, NULL,0,Transient-Party,0,0,1,Check-Out,2016-08-29,Summer,2016-08-29T07:00Z +Keep,136,2016,August,35,22,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,211.16,1,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,36,2016,August,35,22,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,251.14,0,1,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,13,2016,August,36,29,0,0,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 339, NULL,0,Transient-Party,0,0,1,Check-Out,2016-08-29,Summer,2016-08-29T07:00Z +Keep,11,2016,August,35,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,219.67,1,2,Check-Out,2016-08-29,Summer,2016-08-26T07:00Z +Keep,11,2016,August,35,26,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,207.67,0,2,Check-Out,2016-08-29,Summer,2016-08-26T07:00Z +Keep,15,2016,August,35,22,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,239.43,1,0,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,26,2016,August,35,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,238.14,0,3,Check-Out,2016-08-29,Summer,2016-08-22T07:00Z +Keep,0,2016,August,36,29,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,B,1,No Deposit , NULL, NULL,0,Transient,171,1,0,Check-Out,2016-08-30,Summer,2016-08-29T07:00Z +Keep,31,2016,August,35,23,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,179.59,0,1,Check-Out,2016-08-30,Summer,2016-08-23T07:00Z +Keep,22,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,125,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,8,2016,August,35,26,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,141.91,0,1,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,179,2016,August,35,23,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,177.5,0,1,Check-Out,2016-08-30,Summer,2016-08-23T07:00Z +Keep,104,2016,August,35,26,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 241, NULL,0,Transient,175.23,0,1,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,39,2016,August,35,24,2,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,246,0,2,Check-Out,2016-08-30,Summer,2016-08-24T07:00Z +Keep,226,2016,August,36,28,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,114,1,1,Check-Out,2016-08-30,Summer,2016-08-28T07:00Z +Keep,1,2016,August,36,29,1,0,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,234,0,0,Check-Out,2016-08-30,Summer,2016-08-29T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient,129.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient,129.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient-Party,129.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient-Party,131.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient-Party,131.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,272,2016,August,35,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 201, NULL,0,Transient,129.6,0,0,Check-Out,2016-08-30,Summer,2016-08-25T07:00Z +Keep,28,2016,August,35,27,2,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,236,1,1,Check-Out,2016-08-30,Summer,2016-08-27T07:00Z +Keep,50,2016,August,35,27,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,209.1,1,0,Check-Out,2016-08-30,Summer,2016-08-27T07:00Z +Keep,41,2016,August,35,27,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,241,0,1,Check-Out,2016-08-30,Summer,2016-08-27T07:00Z +Keep,116,2016,August,35,27,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,2,Check-Out,2016-08-30,Summer,2016-08-27T07:00Z +Keep,0,2016,August,36,29,1,0,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,190,0,1,Check-Out,2016-08-30,Summer,2016-08-29T07:00Z +Keep,179,2016,August,35,26,2,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,252,1,0,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,41,2016,August,35,27,2,1,3,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,193.12,0,1,Check-Out,2016-08-30,Summer,2016-08-27T07:00Z +Keep,2,2016,August,35,26,2,2,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,193.5,0,3,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,2,2016,August,35,26,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,199,0,3,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,0,2016,August,36,29,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,118.08,0,0,Check-Out,2016-08-30,Summer,2016-08-29T07:00Z +Keep,205,2016,August,35,26,2,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Contract,113.05,0,0,Check-Out,2016-08-30,Summer,2016-08-26T07:00Z +Keep,230,2016,August,34,16,4,10,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,123.43,0,0,Check-Out,2016-08-30,Summer,2016-08-16T07:00Z +Keep,23,2016,August,35,23,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,243.86,1,0,Check-Out,2016-08-30,Summer,2016-08-23T07:00Z +Keep,0,2016,August,36,28,2,0,3,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,231,0,1,Check-Out,2016-08-30,Summer,2016-08-28T07:00Z +Keep,35,2016,August,36,30,0,2,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,244.09,0,1,Check-Out,2016-09-01,Summer,2016-08-30T07:00Z +Keep,69,2016,August,35,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,195.43,0,2,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,3,2016,August,35,24,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.86,0,5,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,91,2016,August,35,24,2,5,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,2,No Deposit , 175, NULL,0,Transient,168.46,0,0,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,36,2016,August,35,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,123,0,0,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,98,2016,August,35,26,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,199.6,0,1,Check-Out,2016-08-31,Summer,2016-08-26T07:00Z +Keep,166,2016,August,35,27,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,100.8,0,0,Check-Out,2016-08-31,Summer,2016-08-27T07:00Z +Keep,166,2016,August,35,27,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient-Party,100.8,0,0,Check-Out,2016-08-31,Summer,2016-08-27T07:00Z +Keep,38,2016,August,35,27,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,168.63,0,1,Check-Out,2016-08-31,Summer,2016-08-27T07:00Z +Keep,63,2016,August,36,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 327, NULL,0,Transient-Party,112,0,0,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,14,2016,August,36,30,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,180,0,2,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,63,2016,August,36,30,0,1,2,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 327, NULL,0,Transient-Party,112,0,2,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,63,2016,August,36,30,0,1,2,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 327, NULL,0,Transient-Party,112,0,2,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,63,2016,August,36,30,0,1,2,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 327, NULL,0,Transient-Party,112,0,2,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,32,2016,August,36,30,0,1,3,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,2,1,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,63,2016,August,36,30,0,1,2,0,0,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 327, NULL,0,Transient-Party,112,0,2,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,7,2016,August,36,29,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,163,1,0,Check-Out,2016-08-31,Summer,2016-08-29T07:00Z +Keep,147,2016,August,35,26,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,174.5,1,0,Check-Out,2016-08-31,Summer,2016-08-26T07:00Z +Keep,40,2016,August,36,31,0,0,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-08-31,Summer,2016-08-31T07:00Z +Keep,207,2016,August,35,26,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,115.2,0,0,Check-Out,2016-08-31,Summer,2016-08-26T07:00Z +Keep,6,2016,August,36,29,1,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,I,0,No Deposit , 240, NULL,0,Transient,256,1,1,Check-Out,2016-08-31,Summer,2016-08-29T07:00Z +Keep,2,2016,August,36,31,0,1,3,1,0,BB,ESP,Direct,TA/TO, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,202,1,1,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,272,2016,August,35,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,140.31,0,1,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,272,2016,August,35,24,2,5,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,126.9,0,1,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,17,2016,August,36,28,2,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,222,1,1,Check-Out,2016-08-31,Summer,2016-08-28T07:00Z +Keep,115,2016,August,36,28,2,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,I,0,No Deposit , 240, NULL,0,Transient-Party,243,1,0,Check-Out,2016-08-31,Summer,2016-08-28T07:00Z +Keep,25,2016,August,36,31,0,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,15,2016,August,35,24,2,5,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,263.09,0,0,Check-Out,2016-08-31,Summer,2016-08-24T07:00Z +Keep,32,2016,August,36,28,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,0,2,Check-Out,2016-08-31,Summer,2016-08-28T07:00Z +Keep,31,2016,August,36,29,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,186.6,0,1,Check-Out,2016-08-31,Summer,2016-08-29T07:00Z +Keep,5,2016,August,36,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 15, NULL,0,Transient,139.2,1,1,Check-Out,2016-08-31,Summer,2016-08-29T07:00Z +Keep,2,2016,August,35,26,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,167,0,0,Check-Out,2016-08-31,Summer,2016-08-26T07:00Z +Keep,0,2016,August,36,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,181,0,0,Check-Out,2016-08-31,Summer,2016-08-30T07:00Z +Keep,155,2016,August,35,21,4,6,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,247,0,1,Check-Out,2016-08-31,Summer,2016-08-21T07:00Z +Keep,43,2016,August,35,27,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205.5,0,2,Check-Out,2016-08-31,Summer,2016-08-27T07:00Z +Keep,216,2016,August,35,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,92.1,0,0,Check-Out,2016-09-01,Summer,2016-08-25T07:00Z +Keep,189,2016,August,35,25,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 243, NULL,0,Contract,79.8,0,0,Check-Out,2016-09-01,Summer,2016-08-25T07:00Z +Keep,209,2016,August,35,22,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,152.3,0,1,Check-Out,2016-09-01,Summer,2016-08-22T07:00Z +Keep,205,2016,August,35,26,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,59.8,0,1,Check-Out,2016-09-01,Summer,2016-08-26T07:00Z +Keep,189,2016,August,35,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,0,Check-Out,2016-09-01,Summer,2016-08-25T07:00Z +Keep,5,2016,August,36,28,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,161,0,0,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,109,2016,August,36,28,2,2,2,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,193.16,0,1,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,43,2016,August,36,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,1,1,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,74,2016,August,35,27,2,3,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,269,0,2,Check-Out,2016-09-01,Summer,2016-08-27T07:00Z +Keep,3,2016,September,36,1,0,1,3,0,0,BB,ESP,Direct,TA/TO, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,231,0,2,Check-Out,2016-09-02,Fall,2016-09-01T07:00Z +Keep,0,2016,August,36,31,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,139,0,1,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,101,2016,August,36,31,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,23,2016,August,36,29,1,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,212,0,1,Check-Out,2016-09-01,Summer,2016-08-29T07:00Z +Keep,205,2016,August,35,26,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.8,0,1,Check-Out,2016-09-01,Summer,2016-08-26T07:00Z +Keep,57,2016,August,36,30,0,2,2,0,0,BB,NOR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,102,1,1,Check-Out,2016-09-01,Summer,2016-08-30T07:00Z +Keep,195,2016,August,36,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,Non Refund , 96, NULL,0,Transient-Party,66.3,0,0,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,22,2016,August,36,28,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,1,0,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,3,2016,August,35,22,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,146.4,0,0,Check-Out,2016-09-01,Summer,2016-08-22T07:00Z +Keep,0,2016,August,36,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,139,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,0,2016,August,36,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,139,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,16,2016,August,36,28,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,169.6,0,0,Check-Out,2016-09-01,Summer,2016-08-28T07:00Z +Keep,24,2016,August,35,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,82,0,0,Check-Out,2016-09-01,Summer,2016-08-25T07:00Z +Keep,39,2016,August,36,30,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,169,0,3,Check-Out,2016-09-01,Summer,2016-08-30T07:00Z +Keep,0,2016,August,36,31,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,124,0,0,Check-Out,2016-09-01,Summer,2016-08-31T07:00Z +Keep,77,2016,August,35,26,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,176.43,0,2,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,11,2016,August,35,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,147.94,0,0,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,1,2016,August,35,27,2,4,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2016-09-02,Summer,2016-08-27T07:00Z +Keep,225,2016,August,35,23,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,85.3,0,0,Check-Out,2016-09-02,Summer,2016-08-23T07:00Z +Keep,214,2016,August,35,26,2,5,2,0,0,Undefined,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,137.43,0,0,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,22,2016,August,35,26,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,82,0,0,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,221,2016,August,35,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,87.43,0,0,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,12,2016,August,35,26,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,173.94,0,0,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,89,2016,August,36,29,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,183.5,0,1,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,214,2016,August,35,26,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,182,1,2,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,70,2016,August,35,26,2,5,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,170.43,0,2,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,0,2016,August,36,31,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,144,0,0,Check-Out,2016-09-02,Summer,2016-08-31T07:00Z +Keep,0,2016,August,36,31,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,136,0,0,Check-Out,2016-09-02,Summer,2016-08-31T07:00Z +Keep,52,2016,August,35,27,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,212.67,0,1,Check-Out,2016-09-02,Summer,2016-08-27T07:00Z +Keep,4,2016,August,36,28,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,161,1,0,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,4,2016,August,36,28,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,149,0,0,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,6,2016,August,36,28,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 438, NULL,0,Transient-Party,163,0,0,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,6,2016,August,36,28,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 438, NULL,0,Transient-Party,175,1,1,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,11,2016,August,36,31,0,2,1,0,0,HB,PRT,Complementary,Corporate, 0,0,0,E,E,1,No Deposit , NULL, 435,0,Transient,2,0,0,Check-Out,2016-09-02,Summer,2016-08-31T07:00Z +Keep,141,2016,August,36,29,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,128.9,0,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,23,2016,August,35,26,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,185.6,0,1,Check-Out,2016-09-02,Summer,2016-08-26T07:00Z +Keep,0,2016,September,36,2,0,1,2,0,0,BB,NLD,Direct,TA/TO, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Group,177,0,1,Check-Out,2016-09-03,Fall,2016-09-02T07:00Z +Keep,95,2016,August,36,30,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,195.67,0,0,Check-Out,2016-09-02,Summer,2016-08-30T07:00Z +Keep,219,2016,August,36,29,1,3,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,93,1,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,219,2016,August,36,29,1,3,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,81,0,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,219,2016,August,36,29,1,3,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,64.8,0,1,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,6,2016,August,36,29,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,164.1,0,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,20,2016,August,36,28,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175.8,0,1,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,7,2016,August,36,29,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,176.1,1,1,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,0,2016,August,36,29,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,170.25,0,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,209,2016,August,36,29,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,93,1,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,18,2016,August,35,27,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,212.53,1,0,Check-Out,2016-09-02,Summer,2016-08-27T07:00Z +Keep,69,2016,August,36,29,1,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,273.9,1,0,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,69,2016,August,36,29,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,200,0,1,Check-Out,2016-09-02,Summer,2016-08-29T07:00Z +Keep,10,2016,August,36,28,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,5,No Deposit , 250, NULL,0,Transient,213,1,0,Check-Out,2016-09-02,Summer,2016-08-28T07:00Z +Keep,101,2016,August,36,30,0,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,197.67,0,0,Check-Out,2016-09-02,Summer,2016-08-30T07:00Z +Keep,130,2016,August,34,20,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,189.86,0,0,Check-Out,2016-09-03,Summer,2016-08-20T07:00Z +Keep,226,2016,August,35,27,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,213.43,1,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,159,2016,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,77.6,0,2,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,157,2016,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,89.91,0,1,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,212,2016,August,35,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,94,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,185,2016,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,90.2,0,2,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,185,2016,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,88.2,0,2,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,50,2016,August,36,28,2,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,216,1,1,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,61,2016,August,35,27,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,186.71,1,2,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,33,2016,August,35,27,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,218,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,99,2016,August,36,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162.5,0,2,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,99,2016,August,36,30,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,0,2,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,33,2016,August,36,28,2,4,2,0,0,BB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,220.33,0,0,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,107,2016,August,36,28,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,202.67,0,1,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,107,2016,August,36,28,2,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,214.67,1,2,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,51,2016,August,35,21,4,9,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,1,No Deposit , 433, NULL,0,Transient,193.6,0,0,Check-Out,2016-09-03,Summer,2016-08-21T07:00Z +Keep,68,2016,September,36,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,265,0,0,Check-Out,2016-09-03,Fall,2016-09-02T07:00Z +Keep,106,2016,August,35,27,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,177.17,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,133,2016,August,36,28,2,4,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,143.48,0,1,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,39,2016,August,36,30,0,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,161,0,2,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,39,2016,August,36,30,0,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,181,1,3,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,208,2016,August,35,23,2,9,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,121.85,0,1,Check-Out,2016-09-03,Summer,2016-08-23T07:00Z +Keep,183,2016,August,34,20,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,107.29,0,0,Check-Out,2016-09-03,Summer,2016-08-20T07:00Z +Keep,155,2016,August,35,27,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 15, NULL,0,Transient,149.94,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,103,2016,August,36,30,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,198.5,0,3,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,55,2016,August,34,18,4,12,2,0,0,BB,NOR,Direct,Direct, 0,0,0,F,E,0,No Deposit , 250, NULL,0,Transient,203.29,0,1,Check-Out,2016-09-03,Summer,2016-08-18T07:00Z +Keep,8,2016,September,36,1,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,161,0,0,Check-Out,2016-09-03,Fall,2016-09-01T07:00Z +Keep,11,2016,August,36,29,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,229.2,1,0,Check-Out,2016-09-03,Summer,2016-08-29T07:00Z +Keep,5,2016,August,36,30,0,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, 439,0,Transient,224,0,0,Check-Out,2016-09-03,Summer,2016-08-30T07:00Z +Keep,161,2016,August,35,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,95.66,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,1,2016,August,36,28,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,161,0,0,Check-Out,2016-09-03,Summer,2016-08-28T07:00Z +Keep,2,2016,August,36,31,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,150,1,1,Check-Out,2016-09-03,Summer,2016-08-31T07:00Z +Keep,1,2016,September,36,2,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161,1,1,Check-Out,2016-09-03,Fall,2016-09-02T07:00Z +Keep,207,2016,August,35,27,2,5,3,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,1,No Deposit , 36, NULL,0,Transient,152.28,0,2,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,6,2016,September,36,1,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,159,0,2,Check-Out,2016-09-03,Fall,2016-09-01T07:00Z +Keep,160,2016,August,35,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,113.91,0,0,Check-Out,2016-09-03,Summer,2016-08-27T07:00Z +Keep,132,2016,August,36,29,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,193.5,0,1,Check-Out,2016-09-04,Summer,2016-08-29T07:00Z +Keep,0,2016,September,36,3,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,181,1,0,Check-Out,2016-09-04,Fall,2016-09-03T07:00Z +Keep,212,2016,August,35,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,1,Check-Out,2016-09-04,Summer,2016-08-21T07:00Z +Keep,212,2016,August,35,21,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,1,Check-Out,2016-09-04,Summer,2016-08-21T07:00Z +Keep,27,2016,September,36,1,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,0,1,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,1,2016,September,36,3,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,154,0,1,Check-Out,2016-09-04,Fall,2016-09-03T07:00Z +Keep,16,2016,September,36,2,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,209.1,1,1,Check-Out,2016-09-04,Fall,2016-09-02T07:00Z +Keep,171,2016,September,36,1,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,132.6,0,0,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,171,2016,September,36,1,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,132.6,1,0,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,9,2016,September,36,1,0,3,2,1,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,221,1,0,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,49,2016,September,36,1,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189.33,0,1,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,84,2016,August,36,28,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,297.57,0,1,Check-Out,2016-09-04,Summer,2016-08-28T07:00Z +Keep,55,2016,August,36,28,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226.57,0,1,Check-Out,2016-09-04,Summer,2016-08-28T07:00Z +Keep,84,2016,August,36,28,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,213.14,0,0,Check-Out,2016-09-04,Summer,2016-08-28T07:00Z +Keep,84,2016,August,36,28,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,225.14,0,2,Check-Out,2016-09-04,Summer,2016-08-28T07:00Z +Keep,36,2016,September,36,1,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,189,0,0,Check-Out,2016-09-04,Fall,2016-09-01T07:00Z +Keep,1,2016,September,36,3,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,164,0,0,Check-Out,2016-09-04,Fall,2016-09-03T07:00Z +Keep,6,2016,September,36,2,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,159.07,1,2,Check-Out,2016-09-04,Fall,2016-09-02T07:00Z +Keep,6,2016,September,36,2,0,2,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,156.85,0,2,Check-Out,2016-09-04,Fall,2016-09-02T07:00Z +Keep,0,2016,September,36,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,176,1,1,Check-Out,2016-09-04,Fall,2016-09-03T07:00Z +Keep,154,2016,August,36,29,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161.5,1,3,Check-Out,2016-09-04,Summer,2016-08-29T07:00Z +Cancel,357,2017,August,35,30,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,1,1,A,A,6,No Deposit , 240, NULL,0,Transient,142.22,0,2,Canceled,2017-05-15,Summer,2017-08-30T07:00Z +Keep,2,2016,September,36,2,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,189.6,1,0,Check-Out,2016-09-04,Fall,2016-09-02T07:00Z +Keep,0,2016,September,36,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,179,0,0,Check-Out,2016-09-04,Fall,2016-09-03T07:00Z +Keep,228,2016,August,36,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 71, NULL,0,Transient,86,0,1,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,24,2016,September,36,1,1,3,2,0,0,BB,NGA,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,164.78,0,2,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,6,2016,September,36,2,1,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,162,1,2,Check-Out,2016-09-05,Fall,2016-09-02T07:00Z +Keep,6,2016,September,36,2,1,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,150,0,2,Check-Out,2016-09-05,Fall,2016-09-02T07:00Z +Keep,221,2016,August,35,22,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,89.2,0,0,Check-Out,2016-09-05,Summer,2016-08-22T07:00Z +Keep,190,2016,September,36,1,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,87.68,0,0,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,50,2016,August,36,31,1,4,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,239,0,0,Check-Out,2016-09-05,Summer,2016-08-31T07:00Z +Keep,167,2016,August,36,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,123.47,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,177,2016,August,36,30,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,142.67,0,1,Check-Out,2016-09-05,Summer,2016-08-30T07:00Z +Keep,228,2016,August,36,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,86.4,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,107,2016,September,36,1,1,3,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,216,0,0,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,158,2016,August,36,31,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,169.2,1,1,Check-Out,2016-09-05,Summer,2016-08-31T07:00Z +Keep,14,2016,August,36,31,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,197,1,2,Check-Out,2016-09-05,Summer,2016-08-31T07:00Z +Keep,14,2016,August,36,31,1,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,4,No Deposit , NULL, NULL,0,Transient,185,0,2,Check-Out,2016-09-05,Summer,2016-08-31T07:00Z +Keep,5,2016,September,36,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,0,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,177,2016,August,35,27,3,6,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,123.02,0,0,Check-Out,2016-09-05,Summer,2016-08-27T07:00Z +Keep,177,2016,August,35,27,3,6,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 15, NULL,0,Transient-Party,139.02,0,0,Check-Out,2016-09-05,Summer,2016-08-27T07:00Z +Keep,173,2017,August,35,27,4,9,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 181, NULL,0,Group,200.73,0,1,Check-Out,2017-09-09,Summer,2017-08-27T07:00Z +Keep,176,2016,August,35,27,3,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,153.1,0,0,Check-Out,2016-09-05,Summer,2016-08-27T07:00Z +Keep,176,2016,August,35,27,3,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,153.1,0,0,Check-Out,2016-09-05,Summer,2016-08-27T07:00Z +Keep,21,2016,September,36,3,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,174,0,1,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,188,2016,September,36,1,1,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,173,0,1,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,27,2016,September,36,2,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,155,0,1,Check-Out,2016-09-05,Fall,2016-09-02T07:00Z +Keep,256,2016,August,36,31,1,4,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 69, NULL,0,Transient,91.9,1,0,Check-Out,2016-09-05,Summer,2016-08-31T07:00Z +Keep,61,2016,September,36,3,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 242, NULL,0,Transient,181,0,1,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,211,2016,September,36,1,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,211,2016,September,36,1,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,211,2016,September,36,1,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,102,0,2,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,4,2016,September,36,3,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,118,0,0,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,185,2016,August,36,29,2,5,1,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 11, NULL,0,Transient,101.6,0,1,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,185,2016,August,36,29,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,103.31,0,1,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,237,2016,September,37,4,1,0,3,0,0,BB,USA,Direct,Direct, 0,0,0,E,G,1,No Deposit , 250, NULL,0,Transient,157,1,2,Check-Out,2016-09-05,Fall,2016-09-04T07:00Z +Keep,207,2016,August,36,29,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 11, NULL,0,Transient,75.6,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,170,2016,September,36,3,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,154,0,0,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,40,2016,August,36,29,2,5,2,1,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 11, NULL,0,Transient,107,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,189,2016,August,36,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,168.71,0,1,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,229,2016,September,36,3,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , NULL, NULL,0,Transient-Party,115,0,1,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,211,2016,September,36,3,1,1,2,0,1,BB,USA,Online travel agent,TA/TO, 0,0,0,E,F,2,No Deposit , 241, NULL,0,Transient,94.4,0,2,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,0,2016,September,37,4,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,177,0,0,Check-Out,2016-09-05,Fall,2016-09-04T07:00Z +Keep,1,2016,September,36,3,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,183.5,0,2,Check-Out,2016-09-05,Fall,2016-09-03T07:00Z +Keep,276,2016,August,36,29,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,114.2,0,0,Check-Out,2016-09-05,Summer,2016-08-29T07:00Z +Keep,34,2016,September,36,1,1,3,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,174,0,3,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,220,2016,September,36,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,102,1,1,Check-Out,2016-09-05,Fall,2016-09-01T07:00Z +Keep,1,2016,September,37,6,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-09-06,Fall,2016-09-06T07:00Z +Keep,210,2016,September,36,1,2,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,1,1,Check-Out,2016-09-06,Fall,2016-09-01T07:00Z +Keep,210,2016,September,36,1,2,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,132,0,1,Check-Out,2016-09-06,Fall,2016-09-01T07:00Z +Keep,230,2016,September,36,1,2,3,2,0,0,BB,AUS,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,97.75,0,2,Check-Out,2016-09-06,Fall,2016-09-01T07:00Z +Keep,222,2016,August,36,28,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,95.94,0,1,Check-Out,2016-09-06,Summer,2016-08-28T07:00Z +Keep,0,2016,September,37,5,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,166,1,0,Check-Out,2016-09-06,Fall,2016-09-05T07:00Z +Keep,195,2016,August,36,31,2,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,187.5,1,0,Check-Out,2016-09-06,Summer,2016-08-31T07:00Z +Keep,0,2016,September,37,5,1,0,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,214,1,0,Check-Out,2016-09-06,Fall,2016-09-05T07:00Z +Keep,0,2016,September,36,1,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2016-09-06,Fall,2016-09-01T07:00Z +Keep,15,2016,September,37,4,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-09-06,Fall,2016-09-04T07:00Z +Keep,24,2016,September,36,1,2,3,2,2,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,209.1,1,0,Check-Out,2016-09-06,Fall,2016-09-01T07:00Z +Keep,228,2016,September,36,2,2,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,111.75,1,0,Check-Out,2016-09-06,Fall,2016-09-02T07:00Z +Keep,52,2016,September,36,3,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2016-09-06,Fall,2016-09-03T07:00Z +Keep,1,2016,September,37,5,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,181,1,2,Check-Out,2016-09-06,Fall,2016-09-05T07:00Z +Keep,1,2016,September,37,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,161,1,2,Check-Out,2016-09-07,Fall,2016-09-06T07:00Z +Keep,5,2016,September,36,3,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,170.1,0,0,Check-Out,2016-09-07,Fall,2016-09-03T07:00Z +Keep,226,2016,August,36,31,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,78.23,0,1,Check-Out,2016-09-07,Summer,2016-08-31T07:00Z +Keep,218,2016,August,36,28,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,1,Check-Out,2016-09-07,Summer,2016-08-28T07:00Z +Keep,95,2017,May,18,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,1,Check-Out,2017-05-13,Spring,2017-05-06T07:00Z +Keep,214,2016,August,35,27,4,7,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Transient,107.22,0,0,Check-Out,2016-09-07,Summer,2016-08-27T07:00Z +Keep,34,2016,August,36,31,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,170,1,3,Check-Out,2016-09-07,Summer,2016-08-31T07:00Z +Keep,1,2016,September,37,6,0,1,3,1,0,BB,PER,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,234,1,0,Check-Out,2016-09-07,Fall,2016-09-06T07:00Z +Keep,210,2016,August,36,31,2,5,2,0,1,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 75, NULL,0,Contract,79.9,0,1,Check-Out,2016-09-07,Summer,2016-08-31T07:00Z +Keep,218,2016,August,36,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,90,0,0,Check-Out,2016-09-07,Summer,2016-08-31T07:00Z +Keep,227,2016,September,36,1,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient-Party,115,0,1,Check-Out,2016-09-07,Fall,2016-09-01T07:00Z +Keep,16,2016,September,36,3,2,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,2,No Deposit , 240, NULL,0,Transient,201,1,2,Check-Out,2016-09-07,Fall,2016-09-03T07:00Z +Keep,12,2016,September,37,7,0,3,3,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,176.1,1,2,Check-Out,2016-09-10,Fall,2016-09-07T07:00Z +Keep,180,2016,September,37,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,77.6,0,2,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,180,2016,September,37,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,77.6,0,2,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,151,2016,September,37,4,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139.5,0,1,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,2,2016,September,37,7,0,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 110,0,Transient,122,0,0,Check-Out,2016-09-08,Fall,2016-09-07T07:00Z +Keep,20,2016,September,37,4,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,187.5,1,1,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,186,2016,September,36,2,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,159.6,0,0,Check-Out,2016-09-08,Fall,2016-09-02T07:00Z +Keep,227,2016,September,36,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,117,1,1,Check-Out,2016-09-08,Fall,2016-09-01T07:00Z +Keep,16,2016,September,37,4,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,189.1,0,2,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,16,2016,September,37,4,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,173.1,1,2,Check-Out,2016-09-08,Fall,2016-09-04T07:00Z +Keep,279,2016,September,36,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 315, NULL,0,Transient,95.71,0,0,Check-Out,2016-09-08,Fall,2016-09-01T07:00Z +Keep,14,2016,September,36,2,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,187.5,1,2,Check-Out,2016-09-08,Fall,2016-09-02T07:00Z +Keep,0,2016,September,37,8,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,E,I,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-09-08,Fall,2016-09-08T07:00Z +Keep,279,2016,September,36,1,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,95.71,0,0,Check-Out,2016-09-08,Fall,2016-09-01T07:00Z +Keep,211,2016,September,36,1,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,129,0,1,Check-Out,2016-09-08,Fall,2016-09-01T07:00Z +Keep,241,2016,September,36,1,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,151.71,0,0,Check-Out,2016-09-08,Fall,2016-09-01T07:00Z +Keep,223,2016,September,37,5,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,130,0,2,Check-Out,2016-09-08,Fall,2016-09-05T07:00Z +Keep,237,2016,August,36,30,2,7,2,1,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,112.6,0,0,Check-Out,2016-09-08,Summer,2016-08-30T07:00Z +Keep,210,2016,August,36,30,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,72.72,0,1,Check-Out,2016-09-08,Summer,2016-08-30T07:00Z +Keep,170,2016,September,37,6,0,2,2,0,1,BB,CHE,Direct,Direct, 0,0,0,G,G,4,No Deposit , 250, NULL,0,Transient,223,1,1,Check-Out,2016-09-08,Fall,2016-09-06T07:00Z +Keep,2,2016,September,37,8,0,1,2,0,1,BB,CHE,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,199,1,1,Check-Out,2016-09-09,Fall,2016-09-08T07:00Z +Keep,231,2016,September,36,2,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,54.7,0,1,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,231,2016,September,36,2,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,52.7,0,1,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,3,2016,September,36,2,2,5,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,100,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,262,2016,September,36,2,2,5,2,0,0,BB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,75.6,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,232,2016,September,36,2,2,5,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,90.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,266,2016,September,36,2,2,5,2,0,0,BB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,65.66,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,160,2016,September,37,8,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,99,0,1,Check-Out,2016-09-09,Fall,2016-09-08T07:00Z +Keep,248,2016,August,36,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-09-09,Summer,2016-08-30T07:00Z +Keep,264,2016,September,37,4,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 348, NULL,0,Transient,29,0,0,Check-Out,2016-09-09,Fall,2016-09-04T07:00Z +Keep,241,2016,September,36,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,66.8,0,0,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,0,2016,September,37,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,169,1,0,Check-Out,2016-09-09,Fall,2016-09-08T07:00Z +Keep,19,2016,September,37,7,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,221.1,1,0,Check-Out,2016-09-09,Fall,2016-09-07T07:00Z +Keep,11,2016,September,37,5,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-09-09,Fall,2016-09-05T07:00Z +Keep,177,2016,September,36,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,3,Check-Out,2016-09-09,Fall,2016-09-02T07:00Z +Keep,3,2016,September,37,5,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,168.5,1,1,Check-Out,2016-09-09,Fall,2016-09-05T07:00Z +Keep,177,2016,September,37,4,2,3,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient,89.3,0,0,Check-Out,2016-09-09,Fall,2016-09-04T07:00Z +Keep,16,2016,September,37,7,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,231,1,1,Check-Out,2016-09-09,Fall,2016-09-07T07:00Z +Keep,150,2016,September,37,4,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,148.6,1,2,Check-Out,2016-09-09,Fall,2016-09-04T07:00Z +Keep,237,2016,September,37,4,2,3,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,134.3,0,0,Check-Out,2016-09-09,Fall,2016-09-04T07:00Z +Keep,6,2016,September,37,5,1,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,209,0,0,Check-Out,2016-09-09,Fall,2016-09-05T07:00Z +Keep,259,2016,September,36,2,2,6,2,0,0,HB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,146.75,0,0,Check-Out,2016-09-10,Fall,2016-09-02T07:00Z +Keep,229,2016,September,36,3,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 143, NULL,0,Contract,79.9,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,247,2016,September,36,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,231,2016,August,35,27,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.93,0,0,Check-Out,2016-09-10,Summer,2016-08-27T07:00Z +Keep,232,2016,September,36,3,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,79.9,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,232,2016,September,36,3,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,66.23,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,226,2016,September,36,3,2,5,2,0,0,HB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,113.6,0,1,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,231,2016,September,36,3,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,101.7,0,1,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,59,2016,September,36,3,2,5,4,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,251,1,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,250,2016,September,37,5,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2016-09-10,Fall,2016-09-05T07:00Z +Keep,3,2016,September,37,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,159.6,1,0,Check-Out,2016-09-10,Fall,2016-09-09T07:00Z +Keep,0,2016,September,37,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,175,0,0,Check-Out,2016-09-10,Fall,2016-09-09T07:00Z +Keep,0,2016,November,46,10,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2016-11-12,Fall,2016-11-10T08:00Z +Keep,4,2017,August,35,29,0,4,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient,196.5,1,2,Check-Out,2017-09-02,Summer,2017-08-29T07:00Z +Keep,222,2016,August,35,27,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,75.54,0,1,Check-Out,2016-09-10,Summer,2016-08-27T07:00Z +Keep,0,2016,September,37,9,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,216,0,0,Check-Out,2016-09-10,Fall,2016-09-09T07:00Z +Keep,6,2016,September,37,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-09-10,Fall,2016-09-08T07:00Z +Keep,8,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,171,1,1,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,252,2016,September,36,3,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102,1,2,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,222,2016,August,35,27,4,10,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 69, NULL,0,Transient,92.1,0,0,Check-Out,2016-09-10,Summer,2016-08-27T07:00Z +Keep,247,2016,September,36,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.71,0,1,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,7,2016,September,37,5,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,163.1,1,1,Check-Out,2016-09-10,Fall,2016-09-05T07:00Z +Keep,24,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,216,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,171,2016,September,37,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,156,0,1,Check-Out,2016-09-10,Fall,2016-09-05T07:00Z +Keep,171,2016,September,37,5,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,168,1,1,Check-Out,2016-09-10,Fall,2016-09-05T07:00Z +Keep,225,2016,September,36,3,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,109.51,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,406,2016,August,36,29,3,9,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,57.68,0,1,Check-Out,2016-09-10,Summer,2016-08-29T07:00Z +Keep,234,2016,August,35,27,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,0,Check-Out,2016-09-10,Summer,2016-08-27T07:00Z +Keep,25,2016,September,37,4,2,4,2,1,1,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,214,0,2,Check-Out,2016-09-10,Fall,2016-09-04T07:00Z +Keep,0,2016,September,37,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,145,0,0,Check-Out,2016-09-10,Fall,2016-09-09T07:00Z +Keep,94,2016,September,37,4,2,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,199,0,0,Check-Out,2016-09-10,Fall,2016-09-04T07:00Z +Keep,240,2016,September,36,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 143, NULL,0,Transient,59.8,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,238,2016,September,36,3,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.9,0,0,Check-Out,2016-09-10,Fall,2016-09-03T07:00Z +Keep,252,2016,August,35,25,4,13,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,2,Check-Out,2016-09-11,Summer,2016-08-25T07:00Z +Keep,229,2016,September,36,1,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68,0,1,Check-Out,2016-09-11,Fall,2016-09-01T07:00Z +Keep,226,2016,September,37,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,96,0,0,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,226,2016,September,37,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,92.1,0,1,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,136,2016,September,37,10,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,98,0,0,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,136,2016,September,37,10,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,0,No Deposit , 251, NULL,0,Transient-Party,98,0,0,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,54,2016,September,37,10,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 360, NULL,0,Transient,138.6,0,0,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,10,2016,September,37,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,226,2016,September,37,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,70,0,1,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,174,2016,September,36,1,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,0,Check-Out,2016-09-11,Fall,2016-09-01T07:00Z +Keep,227,2016,August,36,28,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 430, NULL,0,Transient,94.14,0,1,Check-Out,2016-09-11,Summer,2016-08-28T07:00Z +Keep,35,2016,September,37,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,171,0,2,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,52,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,1,No Deposit , NULL, NULL,0,Transient,75,0,2,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,242,2016,September,37,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,81,0,2,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,242,2016,September,37,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,82.71,0,2,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,10,2016,September,37,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,171,1,2,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,165,2016,September,37,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,166,1,1,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,171,2016,September,36,2,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,150.58,1,1,Check-Out,2016-09-11,Fall,2016-09-02T07:00Z +Keep,42,2016,September,37,9,0,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,1,1,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,19,2016,September,37,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,168,0,0,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,150,2016,September,36,2,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141,0,2,Check-Out,2016-09-11,Fall,2016-09-02T07:00Z +Keep,139,2016,September,37,5,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,165,2,1,Check-Out,2016-09-11,Fall,2016-09-05T07:00Z +Keep,292,2016,September,37,4,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,143.43,1,2,Check-Out,2016-09-11,Fall,2016-09-04T07:00Z +Keep,1,2016,September,37,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,160,0,0,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,29,2016,September,37,9,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,198,1,0,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,13,2016,September,37,5,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2016-09-11,Fall,2016-09-05T07:00Z +Keep,3,2016,September,37,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,171,0,1,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,1,2016,September,37,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,191,1,1,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,3,2016,September,37,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,159,0,2,Check-Out,2016-09-11,Fall,2016-09-10T07:00Z +Keep,139,2016,September,37,5,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,139,0,1,Check-Out,2016-09-11,Fall,2016-09-05T07:00Z +Keep,138,2016,September,37,5,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,139,0,1,Check-Out,2016-09-11,Fall,2016-09-05T07:00Z +Keep,8,2016,September,37,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,1,1,Check-Out,2016-09-11,Fall,2016-09-09T07:00Z +Keep,205,2016,September,37,8,0,3,2,1,0,BB,USA,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,146.1,1,0,Check-Out,2016-09-11,Fall,2016-09-08T07:00Z +Keep,13,2016,September,38,11,2,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,99,0,0,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,283,2016,September,37,5,2,5,3,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 315, NULL,0,Transient,130.8,0,1,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,287,2016,September,37,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , 418, NULL,0,Transient-Party,69,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,227,2016,September,37,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,287,2016,September,37,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , 418, NULL,0,Transient-Party,67,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,287,2016,September,37,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , 418, NULL,0,Transient-Party,69,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,287,2016,September,37,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , 418, NULL,0,Transient-Party,67,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,173,2016,September,37,6,1,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,199,0,0,Check-Out,2016-09-12,Fall,2016-09-06T07:00Z +Keep,234,2016,September,37,9,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,84.4,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,173,2016,September,37,6,1,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,211,1,0,Check-Out,2016-09-12,Fall,2016-09-06T07:00Z +Keep,287,2016,September,37,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,Refundable , 418, NULL,0,Transient-Party,69,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,284,2016,September,36,2,3,7,2,0,0,BB,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 418, NULL,0,Transient-Party,68.8,0,0,Check-Out,2016-09-12,Fall,2016-09-02T07:00Z +Keep,234,2016,September,37,9,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,82.4,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,234,2016,September,37,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,77.03,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,234,2016,September,37,9,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,82.4,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,234,2016,September,37,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,75.03,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,284,2016,September,36,2,3,7,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 418, NULL,0,Transient-Party,68.8,0,0,Check-Out,2016-09-12,Fall,2016-09-02T07:00Z +Keep,115,2016,September,37,9,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147.67,0,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,7,2016,September,37,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,172.67,1,1,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,139,2016,September,37,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,1,2,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,139,2016,September,37,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,2,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,154,2016,September,37,5,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,C,C,5,No Deposit , 250, 442,0,Transient,212.6,0,2,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,248,2016,September,37,9,1,2,3,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,193,2016,September,37,10,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,150.6,0,0,Check-Out,2016-09-12,Fall,2016-09-10T07:00Z +Keep,187,2016,September,37,9,1,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,146,0,0,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,10,2016,September,37,5,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,188.43,0,0,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,33,2017,August,35,27,2,4,2,1,0,BB,PRT,Direct,Direct, 1,0,1,F,F,1,No Deposit , 250, NULL,0,Transient,253.25,0,1,Check-Out,2017-09-02,Summer,2017-08-27T07:00Z +Keep,168,2016,September,37,6,1,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,244,0,0,Check-Out,2016-09-12,Fall,2016-09-06T07:00Z +Keep,231,2016,September,37,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,83,0,1,Check-Out,2016-09-12,Fall,2016-09-05T07:00Z +Keep,37,2016,September,37,8,1,3,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219,0,0,Check-Out,2016-09-12,Fall,2016-09-08T07:00Z +Keep,11,2016,September,37,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,157.53,0,2,Check-Out,2016-09-12,Fall,2016-09-09T07:00Z +Keep,9,2016,September,37,8,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,172.1,0,1,Check-Out,2016-09-12,Fall,2016-09-08T07:00Z +Keep,89,2016,September,38,12,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 26, NULL,0,Transient,0,0,0,Check-Out,2016-09-12,Fall,2016-09-12T07:00Z +Keep,190,2016,September,37,6,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,136,0,0,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,237,2016,September,37,6,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,82.03,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,291,2016,August,36,30,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,121.5,1,3,Check-Out,2016-09-13,Summer,2016-08-30T07:00Z +Keep,223,2016,September,37,5,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,77.6,0,1,Check-Out,2016-09-13,Fall,2016-09-05T07:00Z +Keep,228,2016,September,37,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,87.59,0,1,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,245,2016,September,37,6,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,127,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,245,2016,September,38,12,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,86,0,1,Check-Out,2016-09-13,Fall,2016-09-12T07:00Z +Keep,245,2016,September,37,6,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,87,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,1,2016,September,38,12,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,215,0,0,Check-Out,2016-09-13,Fall,2016-09-12T07:00Z +Keep,245,2016,September,37,6,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,87,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,245,2016,September,38,12,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,86,0,1,Check-Out,2016-09-13,Fall,2016-09-12T07:00Z +Keep,15,2016,September,38,11,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,179,1,1,Check-Out,2016-09-13,Fall,2016-09-11T07:00Z +Keep,12,2016,September,38,11,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,167,0,1,Check-Out,2016-09-13,Fall,2016-09-11T07:00Z +Keep,15,2016,September,37,9,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,148,1,0,Check-Out,2016-09-13,Fall,2016-09-09T07:00Z +Keep,236,2016,September,36,3,4,6,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,79.9,0,0,Check-Out,2016-09-13,Fall,2016-09-03T07:00Z +Keep,232,2016,September,36,3,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Contract,79.9,0,0,Check-Out,2016-09-13,Fall,2016-09-03T07:00Z +Keep,232,2016,September,37,6,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,150,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,232,2016,September,37,6,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,4,No Deposit , 240, NULL,0,Transient,203,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,18,2016,September,38,11,2,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,141,1,2,Check-Out,2016-09-13,Fall,2016-09-11T07:00Z +Keep,142,2016,September,37,10,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-09-13,Fall,2016-09-10T07:00Z +Keep,142,2016,September,37,10,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139,0,1,Check-Out,2016-09-13,Fall,2016-09-10T07:00Z +Keep,6,2016,September,37,10,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,122.33,0,0,Check-Out,2016-09-13,Fall,2016-09-10T07:00Z +Keep,196,2016,September,36,3,4,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,158,1,1,Check-Out,2016-09-13,Fall,2016-09-03T07:00Z +Keep,197,2016,September,36,3,4,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2016-09-13,Fall,2016-09-03T07:00Z +Keep,195,2016,September,37,4,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,0,1,Check-Out,2016-09-13,Fall,2016-09-04T07:00Z +Keep,245,2016,September,37,6,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,86.71,0,2,Check-Out,2016-09-13,Fall,2016-09-06T07:00Z +Keep,5,2016,September,38,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-09-13,Fall,2016-09-12T07:00Z +Keep,234,2016,September,37,9,2,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,119.34,0,1,Check-Out,2016-09-14,Fall,2016-09-09T07:00Z +Keep,231,2016,September,37,7,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,110.5,0,1,Check-Out,2016-09-14,Fall,2016-09-07T07:00Z +Keep,214,2016,September,37,5,3,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 69, NULL,0,Transient,72,0,1,Check-Out,2016-09-14,Fall,2016-09-05T07:00Z +Keep,301,2016,September,37,7,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2016-09-14,Fall,2016-09-07T07:00Z +Keep,230,2016,August,36,31,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70,0,0,Check-Out,2016-09-14,Summer,2016-08-31T07:00Z +Keep,329,2016,September,37,5,3,6,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,130.8,0,0,Check-Out,2016-09-14,Fall,2016-09-05T07:00Z +Keep,4,2016,September,37,10,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,119,0,0,Check-Out,2016-09-14,Fall,2016-09-10T07:00Z +Keep,260,2016,August,36,31,4,10,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 40, NULL,0,Contract,80.03,0,1,Check-Out,2016-09-14,Summer,2016-08-31T07:00Z +Keep,231,2016,August,36,31,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,99.32,0,1,Check-Out,2016-09-14,Summer,2016-08-31T07:00Z +Keep,110,2016,September,37,9,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133,0,2,Check-Out,2016-09-14,Fall,2016-09-09T07:00Z +Keep,174,2016,September,38,13,0,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,99,0,0,Check-Out,2016-09-14,Fall,2016-09-13T07:00Z +Keep,154,2016,September,38,13,0,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,99,0,0,Check-Out,2016-09-14,Fall,2016-09-13T07:00Z +Keep,32,2016,September,38,12,1,1,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,63,2016,September,38,12,1,1,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 348, NULL,0,Transient,119,0,1,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,32,2016,September,38,12,1,1,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,32,2016,September,38,12,1,1,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,131,0,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,32,2016,September,38,12,1,1,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,143,0,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,34,2016,September,38,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,141,1,3,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,34,2016,September,38,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,2,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,34,2016,September,38,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,129,0,3,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,7,2016,September,38,11,2,1,2,0,0,BB,BLR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,127.67,1,2,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,7,2016,September,38,11,2,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,185.67,0,2,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,7,2016,September,38,11,2,1,2,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,130.67,0,2,Check-Out,2016-09-14,Fall,2016-09-11T07:00Z +Keep,54,2016,September,37,10,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,148.5,0,3,Check-Out,2016-09-14,Fall,2016-09-10T07:00Z +Keep,71,2016,September,38,12,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,167,1,1,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,31,2016,September,38,12,1,1,2,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,F,1,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,4,2016,September,38,12,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,98.1,1,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,0,2016,September,38,13,0,1,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-14,Fall,2016-09-13T07:00Z +Keep,84,2016,September,38,14,0,1,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,339,2016,September,39,18,2,0,1,0,0,BB,GBR,Groups,Direct, 0,0,2,A,A,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,30,2016,September,38,12,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,153,1,1,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,0,2016,September,38,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 127, NULL,0,Transient-Party,136,0,0,Check-Out,2016-09-14,Fall,2016-09-13T07:00Z +Keep,3,2016,September,38,12,1,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,116,2016,September,37,9,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,130,0,1,Check-Out,2016-09-14,Fall,2016-09-09T07:00Z +Keep,4,2016,September,38,12,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,127,1,2,Check-Out,2016-09-14,Fall,2016-09-12T07:00Z +Keep,0,2016,September,38,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 127, NULL,0,Transient-Party,124,0,0,Check-Out,2016-09-14,Fall,2016-09-13T07:00Z +Keep,7,2016,September,38,11,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,1,2,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,52,2016,September,38,13,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152.1,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,1,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,230,2016,September,37,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,81.9,0,0,Check-Out,2016-09-15,Fall,2016-09-08T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,81.9,0,2,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,189,2016,September,38,11,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,53,2016,September,38,12,1,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,122.43,0,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,157,2016,September,38,11,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,113.2,0,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,262,2016,September,37,5,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,79.49,0,0,Check-Out,2016-09-15,Fall,2016-09-05T07:00Z +Keep,263,2016,September,37,5,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,92.09,0,2,Check-Out,2016-09-15,Fall,2016-09-05T07:00Z +Keep,230,2016,September,37,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,57.8,0,0,Check-Out,2016-09-15,Fall,2016-09-08T07:00Z +Keep,35,2016,September,37,10,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,146.75,1,1,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,9,2016,September,38,11,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,30,2016,September,38,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,139.7,0,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,33,2016,September,38,15,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,F,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2016-09-17,Fall,2016-09-15T07:00Z +Keep,35,2016,September,38,17,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,1,E,F,1,No Deposit , 240, NULL,0,Transient,106.33,0,1,Check-Out,2016-09-20,Fall,2016-09-17T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,81.9,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,61,2016,September,37,10,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,143.54,0,1,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,59,2016,September,38,15,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,169,0,1,Check-Out,2016-09-16,Fall,2016-09-15T07:00Z +Keep,52,2016,September,38,13,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152.1,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,8,2016,September,38,11,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 441, NULL,0,Transient,93.6,0,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,52,2016,September,38,13,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154.1,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,225,2016,September,38,14,0,1,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,86,0,1,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,10,2016,September,38,13,0,2,2,0,1,BB,USA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,129,0,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,247,2016,September,38,14,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,86,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,188,2016,September,38,11,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 26, NULL,0,Transient,61.56,0,1,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,33,2016,September,37,10,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,146.22,0,1,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,5,2016,September,38,14,0,1,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,0,No Deposit , 223, NULL,0,Transient-Party,60,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,2,2016,September,38,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,5,2016,September,38,14,0,1,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,E,0,No Deposit , 223, NULL,0,Transient-Party,60,0,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,225,2016,September,38,14,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,86,0,1,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,15,2016,September,37,10,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,112.5,0,0,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,36,2016,September,38,12,1,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,0,2016,September,38,14,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125,1,1,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,28,2016,September,38,12,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,175,1,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,28,2016,September,38,12,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,161,0,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,194,2016,September,38,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,75.8,1,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,4,2016,September,38,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,28,2016,September,38,12,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,115.2,1,0,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,229,2016,September,38,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 96, NULL,0,Transient,63.2,0,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,209,2016,September,37,5,3,7,3,0,0,HB,SVK,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,127,0,1,Check-Out,2016-09-15,Fall,2016-09-05T07:00Z +Keep,0,2016,September,38,14,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,1,0,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,9,2016,September,38,13,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,1,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,79.9,0,0,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,26,2016,September,38,12,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,146.1,0,0,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,8,2016,September,38,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,124,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,51,2016,September,38,11,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,95,0,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,89,2016,September,37,10,2,3,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 5, NULL,0,Transient,161.2,1,0,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,71,2016,September,38,12,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,121.33,1,1,Check-Out,2016-09-15,Fall,2016-09-12T07:00Z +Keep,10,2016,September,38,13,0,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,0,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,10,2016,September,38,13,0,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,0,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,26,2016,September,38,11,2,2,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,146,0,1,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,6,2016,September,37,10,2,3,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,135,1,2,Check-Out,2016-09-15,Fall,2016-09-10T07:00Z +Keep,0,2016,September,38,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,130,0,1,Check-Out,2016-09-15,Fall,2016-09-14T07:00Z +Keep,223,2016,September,36,1,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,92.1,0,1,Check-Out,2016-09-15,Fall,2016-09-01T07:00Z +Keep,2,2016,September,38,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 240, NULL,0,Transient,155,0,1,Check-Out,2016-09-15,Fall,2016-09-13T07:00Z +Keep,194,2016,September,38,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,66.8,0,0,Check-Out,2016-09-15,Fall,2016-09-11T07:00Z +Keep,12,2016,September,38,12,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,199,0,0,Check-Out,2016-09-16,Fall,2016-09-12T07:00Z +Keep,252,2016,September,37,7,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,77.38,0,0,Check-Out,2016-09-16,Fall,2016-09-07T07:00Z +Keep,240,2016,September,37,9,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,70.84,0,0,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,7,2016,September,37,9,2,5,2,0,0,BB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,88.2,0,0,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,163,2016,September,37,9,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,112,0,2,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,126,2016,September,37,10,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,130.67,0,2,Check-Out,2016-09-16,Fall,2016-09-10T07:00Z +Keep,1,2016,September,38,14,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2016-09-16,Fall,2016-09-14T07:00Z +Keep,12,2016,September,38,13,0,3,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,1,0,Check-Out,2016-09-16,Fall,2016-09-13T07:00Z +Keep,0,2016,September,38,13,0,3,2,0,0,BB,BRA,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,165.5,0,0,Check-Out,2016-09-16,Fall,2016-09-13T07:00Z +Keep,9,2016,September,38,11,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,161,1,2,Check-Out,2016-09-16,Fall,2016-09-11T07:00Z +Keep,19,2016,September,38,12,1,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,201,0,1,Check-Out,2016-09-16,Fall,2016-09-12T07:00Z +Keep,129,2016,September,37,9,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,131.1,0,0,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,165,2017,July,29,22,2,5,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,139.5,0,0,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,72,2016,September,37,9,2,5,2,0,0,HB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,112,0,1,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,115,2016,September,38,12,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,125.97,0,2,Check-Out,2016-09-16,Fall,2016-09-12T07:00Z +Keep,56,2016,September,37,10,2,4,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,211,1,1,Check-Out,2016-09-16,Fall,2016-09-10T07:00Z +Keep,109,2016,September,38,13,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,F,2,No Deposit , 240, NULL,0,Transient,146.5,0,2,Check-Out,2016-09-16,Fall,2016-09-13T07:00Z +Keep,302,2016,September,37,9,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,83,0,1,Check-Out,2016-09-16,Fall,2016-09-09T07:00Z +Keep,135,2016,September,37,7,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-09-17,Fall,2016-09-07T07:00Z +Keep,205,2016,September,37,10,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,144.14,1,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,250,2016,September,37,6,2,9,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.18,0,2,Check-Out,2016-09-17,Fall,2016-09-06T07:00Z +Keep,1,2016,September,38,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 94,0,Transient,58,0,0,Check-Out,2016-09-17,Fall,2016-09-16T07:00Z +Keep,1,2016,September,38,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 94,0,Transient,58,0,0,Check-Out,2016-09-17,Fall,2016-09-16T07:00Z +Keep,244,2016,September,38,12,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.1,0,1,Check-Out,2016-09-17,Fall,2016-09-12T07:00Z +Keep,7,2016,September,38,13,0,4,2,0,0,BB,CHL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,187.25,1,0,Check-Out,2016-09-17,Fall,2016-09-13T07:00Z +Keep,132,2016,September,37,9,2,6,2,1,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,146.46,0,1,Check-Out,2016-09-17,Fall,2016-09-09T07:00Z +Keep,138,2016,September,37,10,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,136.14,0,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,213,2016,September,38,16,0,1,2,0,1,BB,NLD,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,132.9,1,1,Check-Out,2016-09-17,Fall,2016-09-16T07:00Z +Keep,211,2016,September,37,10,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,107.63,0,2,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,211,2016,September,37,10,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,109.63,0,2,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,220,2016,September,37,10,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,88.74,0,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,236,2016,September,37,10,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,100.89,0,0,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,131,2016,September,37,10,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,148.14,1,1,Check-Out,2016-09-17,Fall,2016-09-10T07:00Z +Keep,336,2016,September,38,15,0,2,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-17,Fall,2016-09-15T07:00Z +Keep,250,2016,September,38,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 36, NULL,0,Transient,58.47,0,0,Check-Out,2016-09-18,Fall,2016-09-11T07:00Z +Keep,233,2016,September,38,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-09-18,Fall,2016-09-11T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,0,2016,September,38,17,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146,0,0,Check-Out,2016-09-18,Fall,2016-09-17T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,70,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,74,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,74,1,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,64,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,8,2016,September,38,15,0,3,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,251,2016,September,38,13,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,89.4,0,3,Check-Out,2016-09-18,Fall,2016-09-13T07:00Z +Keep,251,2016,September,38,13,0,5,3,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,107.3,0,1,Check-Out,2016-09-18,Fall,2016-09-13T07:00Z +Keep,251,2016,September,38,13,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.4,0,3,Check-Out,2016-09-18,Fall,2016-09-13T07:00Z +Keep,251,2016,September,38,13,0,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.4,0,3,Check-Out,2016-09-18,Fall,2016-09-13T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,74,1,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,B,1,No Deposit , NULL, 223,0,Transient-Party,74,0,0,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,10,2016,September,38,11,2,5,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,203.43,1,1,Check-Out,2016-09-18,Fall,2016-09-11T07:00Z +Keep,4,2016,September,38,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,175,1,0,Check-Out,2016-09-18,Fall,2016-09-17T07:00Z +Keep,334,2016,September,38,13,0,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-18,Fall,2016-09-13T07:00Z +Keep,4,2016,September,38,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,185,0,1,Check-Out,2016-09-18,Fall,2016-09-16T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,251,2016,September,38,14,0,4,3,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 201, NULL,0,Transient-Party,82.19,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,3,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , 201, NULL,0,Transient-Party,82.19,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,210,2016,September,36,1,4,13,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,82.88,0,0,Check-Out,2016-09-18,Fall,2016-09-01T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,244,2016,September,38,16,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 242, NULL,0,Transient,85.5,0,1,Check-Out,2016-09-18,Fall,2016-09-16T07:00Z +Keep,148,2016,September,39,18,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125.67,0,1,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,214,2016,September,38,17,0,1,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136,0,1,Check-Out,2016-09-18,Fall,2016-09-17T07:00Z +Keep,16,2016,September,38,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,E,0,No Deposit , NULL, NULL,0,Transient,143,0,1,Check-Out,2016-09-18,Fall,2016-09-17T07:00Z +Keep,327,2016,September,38,14,0,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 201, NULL,0,Transient-Party,61.4,0,0,Check-Out,2016-09-18,Fall,2016-09-14T07:00Z +Keep,145,2016,September,38,15,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,131,0,1,Check-Out,2016-09-18,Fall,2016-09-15T07:00Z +Keep,2,2016,September,38,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155,1,1,Check-Out,2016-09-18,Fall,2016-09-17T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,96,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,236,2016,September,38,11,3,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,83.81,0,1,Check-Out,2016-09-19,Fall,2016-09-11T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,73.5,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,D,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,81,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,9,2016,September,39,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,67.5,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,233,2016,September,39,18,1,0,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,104,0,1,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,233,2016,September,39,18,1,0,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,104,0,1,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,336,2016,September,38,15,1,3,3,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,110.5,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,227,2016,September,37,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,0,2016,September,39,18,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,1,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,11,2016,September,39,18,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,234,2016,September,38,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,51.85,0,0,Check-Out,2016-09-19,Fall,2016-09-12T07:00Z +Keep,0,2016,September,39,18,1,0,2,0,0,BB,AUT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,116,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,46,2016,September,39,18,1,0,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,54.67,0,1,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,227,2016,September,37,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Keep,227,2016,September,37,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Keep,227,2016,September,37,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,1,Check-Out,2016-09-19,Fall,2016-09-05T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,73.5,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,9,2016,September,39,18,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,C,0,No Deposit , 223, NULL,0,Transient-Party,90,0,0,Check-Out,2016-09-19,Fall,2016-09-18T07:00Z +Keep,0,2016,September,39,19,1,0,2,0,0,BB,GBR,Online travel agent,Corporate, 1,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,336,2016,September,38,15,1,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,73.5,1,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,336,2016,September,38,15,1,3,1,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,67.5,0,0,Check-Out,2016-09-19,Fall,2016-09-15T07:00Z +Keep,1,2016,September,39,20,0,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,0,0,0,Check-Out,2016-09-20,Fall,2016-09-20T07:00Z +Keep,10,2016,September,39,18,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,307.5,0,1,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,336,2016,September,38,15,2,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,73.2,1,0,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,246,2016,September,37,10,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,77.22,0,2,Check-Out,2016-09-20,Fall,2016-09-10T07:00Z +Keep,5,2016,September,39,19,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,101,0,2,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,0,2016,September,39,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 445,0,Group,76,0,0,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,0,2016,October,45,31,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,D,D,0,No Deposit , NULL, 445,0,Group,70.2,0,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,226,2016,September,38,16,2,2,2,0,0,BB,SWE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,136,1,1,Check-Out,2016-09-20,Fall,2016-09-16T07:00Z +Keep,66,2016,September,38,17,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,I,1,No Deposit , 240, NULL,0,Transient,159.67,0,0,Check-Out,2016-09-20,Fall,2016-09-17T07:00Z +Keep,1,2016,September,39,20,0,1,4,0,0,BB,IRL,Direct,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,148,0,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,102,2016,September,39,19,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,42,2016,September,39,18,2,0,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,59,2016,September,39,18,2,0,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,27,2016,September,38,16,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,174.5,0,1,Check-Out,2016-09-20,Fall,2016-09-16T07:00Z +Keep,5,2016,September,38,16,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,223.75,0,2,Check-Out,2016-09-20,Fall,2016-09-16T07:00Z +Keep,7,2016,September,39,19,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,101,1,3,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,5,2016,September,39,19,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,86,0,2,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,168,2016,September,39,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,10,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,55,2016,September,38,17,2,1,4,0,0,BB,USA,Direct,Direct, 0,0,0,H,H,4,No Deposit , 250, NULL,0,Transient,205.67,1,0,Check-Out,2016-09-20,Fall,2016-09-17T07:00Z +Keep,213,2016,September,37,10,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 143, NULL,0,Transient,90,0,0,Check-Out,2016-09-20,Fall,2016-09-10T07:00Z +Keep,9,2016,September,39,18,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,1,No Deposit , 223, NULL,0,Transient,96,1,0,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,35,2016,September,39,18,2,0,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,51.94,0,1,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,46,2016,September,39,18,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,48,2016,September,39,18,2,0,2,0,0,BB,LVA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,116,1,2,Check-Out,2016-09-20,Fall,2016-09-18T07:00Z +Keep,251,2016,September,38,15,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,137,0,1,Check-Out,2016-09-20,Fall,2016-09-15T07:00Z +Keep,8,2016,September,39,19,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,1,3,Check-Out,2016-09-20,Fall,2016-09-19T07:00Z +Keep,248,2016,September,37,10,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 147, NULL,0,Transient,8,0,0,Check-Out,2016-09-20,Fall,2016-09-10T07:00Z +Keep,191,2016,September,39,22,2,5,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Transient,81,0,1,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,54,2016,September,39,18,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,54.67,0,4,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,54,2016,September,39,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.6,0,4,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,1,2016,September,39,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 282, NULL,0,Transient-Party,65,0,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,1,2016,September,39,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 282, NULL,0,Transient-Party,65,0,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,7,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 282,0,Transient-Party,45,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,348,2016,September,37,7,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,64.9,0,0,Check-Out,2016-09-21,Fall,2016-09-07T07:00Z +Keep,174,2016,September,39,20,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,1,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,77,2016,September,39,18,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,1,2,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,39,2016,September,39,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,104.67,0,1,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,6,2016,September,39,20,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,245,2016,September,38,17,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2016-09-21,Fall,2016-09-17T07:00Z +Keep,61,2016,September,38,17,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,121.28,0,0,Check-Out,2016-09-21,Fall,2016-09-17T07:00Z +Keep,245,2016,September,38,17,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-09-21,Fall,2016-09-17T07:00Z +Keep,280,2016,September,38,15,2,4,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,125.83,0,0,Check-Out,2016-09-21,Fall,2016-09-15T07:00Z +Keep,280,2016,September,38,15,2,4,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125.83,0,0,Check-Out,2016-09-21,Fall,2016-09-15T07:00Z +Keep,15,2016,September,39,19,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,127,1,1,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,280,2016,September,38,15,2,4,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,131.83,1,0,Check-Out,2016-09-21,Fall,2016-09-15T07:00Z +Keep,55,2016,September,39,19,1,1,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,0,2016,September,39,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120,1,0,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,1,2016,September,39,19,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,110,0,0,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,6,2016,September,39,20,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2016-09-21,Fall,2016-09-20T07:00Z +Keep,40,2016,September,39,19,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,1,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,29,2016,September,39,19,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,45,2016,September,39,18,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,47,2016,September,39,18,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,90,2016,September,38,17,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2016-09-21,Fall,2016-09-17T07:00Z +Keep,76,2016,September,39,18,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,19,2016,September,39,19,1,1,2,0,0,Undefined,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,169,1,0,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,12,2016,September,39,19,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,125,0,3,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,67,2016,September,39,18,2,1,2,0,0,BB,SUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,30,2016,September,39,19,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,118,1,3,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,78,2016,September,39,18,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,102.67,0,1,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,6,2016,September,39,19,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,3,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,48,2016,September,39,18,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,90,0,1,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,58,2016,September,39,18,2,1,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,102,0,3,Check-Out,2016-09-21,Fall,2016-09-18T07:00Z +Keep,3,2016,September,39,19,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,81,0,2,Check-Out,2016-09-21,Fall,2016-09-19T07:00Z +Keep,230,2016,September,37,8,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,88.9,0,1,Check-Out,2016-09-22,Fall,2016-09-08T07:00Z +Keep,230,2016,September,37,8,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-09-22,Fall,2016-09-08T07:00Z +Keep,297,2016,September,38,11,4,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,66.8,0,2,Check-Out,2016-09-22,Fall,2016-09-11T07:00Z +Keep,297,2016,September,38,11,4,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,64.8,0,3,Check-Out,2016-09-22,Fall,2016-09-11T07:00Z +Keep,136,2016,September,39,19,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 96, NULL,0,Transient,76,0,0,Check-Out,2016-09-22,Fall,2016-09-19T07:00Z +Keep,237,2016,September,38,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,62.9,0,0,Check-Out,2016-09-22,Fall,2016-09-15T07:00Z +Keep,243,2016,September,39,18,2,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,110,0,2,Check-Out,2016-09-22,Fall,2016-09-18T07:00Z +Keep,232,2016,September,39,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,77,2016,September,39,19,1,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,180.67,1,1,Check-Out,2016-09-22,Fall,2016-09-19T07:00Z +Keep,9,2016,September,39,19,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,115.2,1,2,Check-Out,2016-09-22,Fall,2016-09-19T07:00Z +Keep,12,2016,September,39,22,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,E,0,No Deposit , 250, NULL,0,Transient,115.2,1,2,Check-Out,2016-09-24,Fall,2016-09-22T07:00Z +Keep,7,2016,September,39,19,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,126,1,1,Check-Out,2016-09-22,Fall,2016-09-19T07:00Z +Keep,1,2016,September,39,22,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,126,1,1,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,5,2017,May,20,15,1,1,3,0,0,BB,PRT,Direct,TA/TO, 1,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,144.5,1,1,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,422,2016,September,38,12,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 2, NULL,0,Contract,62.9,0,1,Check-Out,2016-09-22,Fall,2016-09-12T07:00Z +Keep,152,2016,September,39,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient,66,0,0,Check-Out,2016-09-22,Fall,2016-09-18T07:00Z +Keep,51,2016,September,38,17,2,3,2,0,0,BB,LUX,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,143.6,0,0,Check-Out,2016-09-22,Fall,2016-09-17T07:00Z +Keep,51,2016,September,38,17,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,143.6,1,0,Check-Out,2016-09-22,Fall,2016-09-17T07:00Z +Keep,51,2016,September,38,17,2,3,2,0,1,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,145.6,1,1,Check-Out,2016-09-22,Fall,2016-09-17T07:00Z +Keep,192,2016,September,39,19,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,57.6,0,0,Check-Out,2016-09-22,Fall,2016-09-19T07:00Z +Keep,172,2016,September,38,16,2,5,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,166.14,0,2,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Keep,280,2016,September,37,9,4,10,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,85.6,0,0,Check-Out,2016-09-23,Fall,2016-09-09T07:00Z +Keep,12,2016,September,39,19,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140,1,1,Check-Out,2016-09-23,Fall,2016-09-19T07:00Z +Keep,132,2016,September,39,19,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,64,0,0,Check-Out,2016-09-23,Fall,2016-09-19T07:00Z +Keep,132,2016,September,39,19,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,66,0,0,Check-Out,2016-09-23,Fall,2016-09-19T07:00Z +Keep,298,2016,September,38,13,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Transient,108.54,0,0,Check-Out,2016-09-23,Fall,2016-09-13T07:00Z +Keep,246,2016,September,39,18,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,95.25,1,0,Check-Out,2016-09-23,Fall,2016-09-18T07:00Z +Keep,183,2016,September,38,14,2,7,2,2,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,184.33,1,0,Check-Out,2016-09-23,Fall,2016-09-14T07:00Z +Keep,239,2016,September,39,18,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-09-23,Fall,2016-09-18T07:00Z +Keep,233,2016,September,39,22,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,126,2016,September,38,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 177, NULL,0,Transient,93,0,0,Check-Out,2016-09-23,Fall,2016-09-16T07:00Z +Keep,171,2016,September,39,19,1,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,102,0,4,Check-Out,2016-09-23,Fall,2016-09-19T07:00Z +Keep,253,2016,September,38,15,2,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,108.88,1,0,Check-Out,2016-09-23,Fall,2016-09-15T07:00Z +Keep,141,2016,September,39,20,0,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,92.33,0,1,Check-Out,2016-09-23,Fall,2016-09-20T07:00Z +Keep,141,2016,September,39,20,0,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,100.33,1,1,Check-Out,2016-09-23,Fall,2016-09-20T07:00Z +Keep,41,2016,September,39,18,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,86,1,1,Check-Out,2016-09-23,Fall,2016-09-18T07:00Z +Keep,41,2016,September,39,18,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,0,1,Check-Out,2016-09-23,Fall,2016-09-18T07:00Z +Keep,96,2016,September,39,18,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,184.8,1,2,Check-Out,2016-09-23,Fall,2016-09-18T07:00Z +Keep,0,2016,September,39,22,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,160,1,0,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,15,2016,September,39,21,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140,1,0,Check-Out,2016-09-23,Fall,2016-09-21T07:00Z +Keep,144,2016,September,39,19,1,3,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 336, NULL,0,Transient,90,0,0,Check-Out,2016-09-23,Fall,2016-09-19T07:00Z +Keep,10,2016,September,39,20,0,3,2,0,1,FB,PRT,Direct,Direct, 0,0,0,D,H,1,No Deposit , 250, NULL,0,Transient,173.6,1,2,Check-Out,2016-09-23,Fall,2016-09-20T07:00Z +Keep,18,2016,September,39,22,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2016-09-23,Fall,2016-09-22T07:00Z +Keep,178,2016,September,38,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,143.86,0,0,Check-Out,2016-09-24,Fall,2016-09-17T07:00Z +Keep,174,2016,September,38,17,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161.86,0,0,Check-Out,2016-09-24,Fall,2016-09-17T07:00Z +Keep,49,2016,September,39,19,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,125,0,1,Check-Out,2016-09-24,Fall,2016-09-19T07:00Z +Keep,168,2017,July,27,3,3,6,2,0,0,BB,IRL,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,125.5,0,3,Check-Out,2017-07-12,Summer,2017-07-03T07:00Z +Keep,159,2016,September,39,20,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,1,No Deposit , 96, NULL,0,Transient,78,0,0,Check-Out,2016-09-24,Fall,2016-09-20T07:00Z +Keep,159,2016,September,39,20,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,1,No Deposit , 96, NULL,0,Transient,78,0,0,Check-Out,2016-09-24,Fall,2016-09-20T07:00Z +Keep,156,2016,September,39,18,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98.05,0,1,Check-Out,2016-09-24,Fall,2016-09-18T07:00Z +Keep,162,2016,September,39,24,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,99.33,0,1,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,24,2016,September,39,23,0,1,2,0,0,BB,THA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,169,0,2,Check-Out,2016-09-24,Fall,2016-09-23T07:00Z +Keep,238,2016,September,39,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-09-24,Fall,2016-09-19T07:00Z +Keep,253,2016,September,39,18,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,93.5,1,1,Check-Out,2016-09-24,Fall,2016-09-18T07:00Z +Keep,45,2016,September,39,23,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-09-24,Fall,2016-09-23T07:00Z +Keep,247,2016,September,38,17,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 432, NULL,0,Transient,73.47,0,0,Check-Out,2016-09-24,Fall,2016-09-17T07:00Z +Keep,24,2016,September,39,23,0,1,2,0,0,BB,THA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,169,0,2,Check-Out,2016-09-24,Fall,2016-09-23T07:00Z +Keep,147,2016,September,39,19,1,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2016-09-24,Fall,2016-09-19T07:00Z +Keep,174,2016,September,39,20,0,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,154,0,0,Check-Out,2016-09-24,Fall,2016-09-20T07:00Z +Keep,174,2016,September,39,20,0,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,154,0,0,Check-Out,2016-09-24,Fall,2016-09-20T07:00Z +Keep,174,2016,September,39,20,0,4,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient-Party,154,0,0,Check-Out,2016-09-24,Fall,2016-09-20T07:00Z +Keep,174,2016,September,39,20,1,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,I,4,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2016-09-26,Fall,2016-09-20T07:00Z +Keep,336,2016,September,38,15,2,8,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,F,1,No Deposit , NULL, 223,0,Transient,72.6,0,0,Check-Out,2016-09-25,Fall,2016-09-15T07:00Z +Keep,233,2016,September,38,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.76,0,2,Check-Out,2016-09-25,Fall,2016-09-11T07:00Z +Keep,131,2016,September,39,19,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,152,1,1,Check-Out,2016-09-25,Fall,2016-09-19T07:00Z +Keep,157,2016,September,39,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,104.23,1,1,Check-Out,2016-09-25,Fall,2016-09-18T07:00Z +Keep,233,2016,September,38,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.9,0,0,Check-Out,2016-09-25,Fall,2016-09-11T07:00Z +Keep,238,2016,September,39,22,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,1,2,Check-Out,2016-09-25,Fall,2016-09-22T07:00Z +Keep,238,2016,September,39,22,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-09-25,Fall,2016-09-22T07:00Z +Keep,247,2016,September,39,19,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,110,0,2,Check-Out,2016-09-25,Fall,2016-09-19T07:00Z +Keep,247,2016,September,39,19,1,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116,0,2,Check-Out,2016-09-25,Fall,2016-09-19T07:00Z +Keep,0,2016,September,39,21,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161,1,0,Check-Out,2016-09-25,Fall,2016-09-21T07:00Z +Keep,171,2016,September,39,24,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient-Party,116.1,0,1,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,171,2016,September,39,24,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient-Party,116.1,0,1,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,4,2016,September,39,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,148,0,0,Check-Out,2016-09-25,Fall,2016-09-23T07:00Z +Keep,199,2016,September,39,19,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-09-25,Fall,2016-09-19T07:00Z +Keep,8,2016,September,39,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2016-09-25,Fall,2016-09-23T07:00Z +Keep,13,2016,September,39,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,1,1,Check-Out,2016-09-25,Fall,2016-09-23T07:00Z +Keep,16,2016,September,39,24,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,134,0,2,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,16,2016,September,39,24,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140,1,2,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,0,2016,September,39,24,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,195,0,0,Check-Out,2016-09-25,Fall,2016-09-24T07:00Z +Keep,160,2016,September,39,19,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92.33,0,3,Check-Out,2016-09-25,Fall,2016-09-19T07:00Z +Keep,5,2016,September,39,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-09-25,Fall,2016-09-23T07:00Z +Keep,20,2016,September,39,23,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,1,No Deposit , 250, NULL,0,Transient,134.1,0,1,Check-Out,2016-09-25,Fall,2016-09-23T07:00Z +Keep,10,2016,September,39,24,1,1,2,0,0,BB,CYP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,94,0,0,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,248,2016,September,39,23,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,248,2016,September,39,23,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,248,2016,September,39,23,1,2,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,145,0,1,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,248,2016,September,39,23,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,13,2016,September,39,23,1,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,107.4,1,0,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,192,2016,September,39,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,90.61,0,0,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,234,2016,September,39,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,62.9,0,0,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,326,2016,September,38,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,53.54,0,0,Check-Out,2016-09-26,Fall,2016-09-12T07:00Z +Keep,250,2016,September,39,19,2,5,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 128, NULL,0,Transient,81,0,0,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,297,2016,September,39,19,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 315, NULL,0,Transient,88.9,0,1,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,1,2016,September,40,25,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.94,0,1,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,6,2016,September,39,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.5,1,1,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,6,2016,September,39,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97.5,0,1,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,7,2016,September,39,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,97.5,0,1,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,1,2016,September,39,24,1,1,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,134.5,0,2,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,0,2016,September,39,24,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,167.5,0,0,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,249,2016,September,40,25,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,203,2016,September,39,19,2,5,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,1,2016,September,39,24,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,149.5,0,1,Check-Out,2016-09-26,Fall,2016-09-24T07:00Z +Keep,127,2016,September,39,20,1,5,3,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,163.33,1,0,Check-Out,2016-09-26,Fall,2016-09-20T07:00Z +Keep,0,2016,September,40,25,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,0,2016,September,40,26,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,0,Check-Out,2016-09-27,Fall,2016-09-26T07:00Z +Keep,37,2016,September,40,25,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,110,0,1,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,37,2016,September,40,25,1,0,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient-Party,77,1,1,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,53,2016,September,39,23,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129.33,0,3,Check-Out,2016-09-26,Fall,2016-09-23T07:00Z +Keep,172,2016,September,39,22,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2016-09-26,Fall,2016-09-22T07:00Z +Keep,172,2016,September,39,22,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,132,1,2,Check-Out,2016-09-26,Fall,2016-09-22T07:00Z +Keep,109,2016,September,38,17,3,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 261, NULL,0,Transient,136.08,0,0,Check-Out,2016-09-26,Fall,2016-09-17T07:00Z +Keep,17,2016,September,40,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,79,0,1,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,156,2016,September,39,21,1,4,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2016-09-26,Fall,2016-09-21T07:00Z +Keep,12,2016,September,40,25,1,0,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,3,Check-Out,2016-09-26,Fall,2016-09-25T07:00Z +Keep,170,2016,September,39,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110,1,2,Check-Out,2016-09-26,Fall,2016-09-19T07:00Z +Keep,19,2016,September,39,21,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134,1,2,Check-Out,2016-09-26,Fall,2016-09-21T07:00Z +Keep,156,2016,September,39,21,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-09-26,Fall,2016-09-21T07:00Z +Keep,5,2016,September,40,26,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,175,0,2,Check-Out,2016-09-27,Fall,2016-09-26T07:00Z +Keep,280,2016,September,39,20,2,5,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,117.6,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,217,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,83,0,3,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,217,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Contract,83,0,3,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,203,2016,September,39,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,78.5,0,0,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,E,2,No Deposit , 96, NULL,0,Transient-Party,78,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,155,2016,September,39,20,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,135.29,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,63,2016,September,39,24,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,135.33,1,0,Check-Out,2016-09-27,Fall,2016-09-24T07:00Z +Keep,61,2016,September,39,24,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129.33,0,1,Check-Out,2016-09-27,Fall,2016-09-24T07:00Z +Keep,0,2016,September,40,26,1,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,116,1,0,Check-Out,2016-09-27,Fall,2016-09-26T07:00Z +Keep,252,2016,September,39,23,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,78,1,1,Check-Out,2016-09-27,Fall,2016-09-23T07:00Z +Keep,0,2016,September,40,26,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,110,1,0,Check-Out,2016-09-27,Fall,2016-09-26T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , 96, NULL,0,Transient-Party,78,0,3,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 96, NULL,0,Transient-Party,34,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,64,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,E,2,No Deposit , 96, NULL,0,Transient-Party,78,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,66,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,64,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,3,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,C,7,No Deposit , 96, NULL,0,Transient-Party,86.4,0,0,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,78,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,66,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 96, NULL,0,Transient-Party,76,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient-Party,76,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,64,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient,64,0,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient,78,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,168,2016,September,39,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,101.29,1,2,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,285,2016,September,39,20,2,5,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,76,0,1,Check-Out,2016-09-27,Fall,2016-09-20T07:00Z +Keep,278,2016,September,39,18,4,6,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 163, NULL,0,Contract,58.95,0,0,Check-Out,2016-09-28,Fall,2016-09-18T07:00Z +Keep,243,2016,September,39,19,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64.54,0,1,Check-Out,2016-09-28,Fall,2016-09-19T07:00Z +Keep,0,2016,September,40,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,105,1,0,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,22,2016,September,39,24,2,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,G,0,No Deposit , 250, NULL,0,Transient,163.5,1,0,Check-Out,2016-09-28,Fall,2016-09-24T07:00Z +Keep,165,2016,September,39,23,2,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,116,1,1,Check-Out,2016-09-28,Fall,2016-09-23T07:00Z +Keep,28,2016,September,40,27,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,127,0,2,Check-Out,2016-09-28,Fall,2016-09-27T07:00Z +Keep,196,2016,September,39,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,88.4,0,1,Check-Out,2016-09-28,Fall,2016-09-21T07:00Z +Keep,217,2016,September,39,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,59.6,0,1,Check-Out,2016-09-28,Fall,2016-09-21T07:00Z +Keep,186,2016,September,39,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,0,2,Check-Out,2016-09-28,Fall,2016-09-23T07:00Z +Keep,186,2016,September,39,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-09-28,Fall,2016-09-23T07:00Z +Keep,186,2016,September,39,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-09-28,Fall,2016-09-23T07:00Z +Keep,195,2016,September,39,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,79.85,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,237,2016,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,1,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Keep,237,2016,September,38,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Keep,237,2016,September,38,15,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,88.9,0,0,Check-Out,2016-09-29,Fall,2016-09-15T07:00Z +Keep,13,2016,September,39,24,2,3,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,185,1,1,Check-Out,2016-09-29,Fall,2016-09-24T07:00Z +Keep,59,2017,April,17,29,2,4,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,F,F,2,No Deposit , 250, NULL,0,Transient,122,1,1,Check-Out,2017-05-05,Spring,2017-04-29T07:00Z +Keep,195,2016,September,39,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,195,2016,September,39,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 243, NULL,0,Contract,81.85,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,255,2016,September,39,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 40, NULL,0,Contract,79.85,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,195,2016,September,39,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,271,2016,September,39,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 40, NULL,0,Contract,76.5,0,1,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,166,2017,June,23,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,0,No Deposit , 40, NULL,0,Group,68.4,0,3,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,5,2016,September,40,27,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,2,Check-Out,2016-09-29,Fall,2016-09-27T07:00Z +Keep,240,2016,September,39,18,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,51.85,0,1,Check-Out,2016-09-29,Fall,2016-09-18T07:00Z +Keep,240,2016,September,39,18,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,53.85,0,1,Check-Out,2016-09-29,Fall,2016-09-18T07:00Z +Keep,158,2016,September,39,24,2,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,113.8,0,3,Check-Out,2016-09-29,Fall,2016-09-24T07:00Z +Keep,13,2016,September,40,28,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , 72, NULL,0,Transient,65,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,16,2016,September,39,22,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,131.43,1,2,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,5,2016,September,40,27,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-09-29,Fall,2016-09-27T07:00Z +Keep,78,2016,September,40,26,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,117,1,1,Check-Out,2016-09-29,Fall,2016-09-26T07:00Z +Keep,225,2016,September,40,28,0,1,1,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,78,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,13,2016,September,40,28,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , 72, NULL,0,Transient,65,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,13,2016,September,40,28,0,1,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , 72, NULL,0,Transient,65,1,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,60,2016,September,40,25,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101.75,0,2,Check-Out,2016-09-29,Fall,2016-09-25T07:00Z +Keep,3,2016,September,40,25,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,67,1,2,Check-Out,2016-09-29,Fall,2016-09-25T07:00Z +Keep,0,2016,September,40,28,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,1,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,98,2016,September,40,28,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,1,2,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,195,2016,September,39,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,64.9,0,0,Check-Out,2016-09-29,Fall,2016-09-22T07:00Z +Keep,26,2016,September,39,24,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,135.9,0,2,Check-Out,2016-09-29,Fall,2016-09-24T07:00Z +Keep,0,2016,September,40,28,0,1,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,185,0,0,Check-Out,2016-09-29,Fall,2016-09-28T07:00Z +Keep,22,2016,September,40,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-09-29,Fall,2016-09-26T07:00Z +Keep,297,2016,September,39,19,3,7,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 315, NULL,0,Transient,88.9,0,1,Check-Out,2016-09-29,Fall,2016-09-19T07:00Z +Keep,27,2016,September,38,16,4,10,2,2,0,HB,CZE,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,165,0,0,Check-Out,2016-09-30,Fall,2016-09-16T07:00Z +Keep,153,2016,September,39,24,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95.67,0,2,Check-Out,2016-09-30,Fall,2016-09-24T07:00Z +Keep,445,2016,September,40,26,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 253, NULL,0,Transient-Party,68,0,1,Check-Out,2016-09-30,Fall,2016-09-26T07:00Z +Keep,91,2016,September,40,27,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-09-30,Fall,2016-09-27T07:00Z +Keep,305,2016,September,39,23,2,5,2,0,0,BB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,57.6,0,0,Check-Out,2016-09-30,Fall,2016-09-23T07:00Z +Keep,265,2016,September,38,16,4,10,2,0,0,HB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,98.4,0,1,Check-Out,2016-09-30,Fall,2016-09-16T07:00Z +Keep,78,2016,September,40,29,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,78,0,1,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,146,2016,September,40,29,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,146,2016,September,40,29,0,1,1,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,221,2016,September,39,23,2,5,2,0,0,BB,EST,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,70.2,0,0,Check-Out,2016-09-30,Fall,2016-09-23T07:00Z +Keep,146,2016,September,40,29,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,146,2016,September,40,29,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,146,2016,September,40,29,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,146,2016,September,40,29,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, 360,0,Transient-Party,116.1,0,0,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,286,2016,September,39,21,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,131,1,0,Check-Out,2016-09-30,Fall,2016-09-21T07:00Z +Keep,40,2016,September,39,23,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,164.86,0,0,Check-Out,2016-09-30,Fall,2016-09-23T07:00Z +Keep,137,2016,September,40,28,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,122,1,2,Check-Out,2016-09-30,Fall,2016-09-28T07:00Z +Keep,117,2016,September,40,26,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,150,1,1,Check-Out,2016-09-30,Fall,2016-09-26T07:00Z +Keep,3,2016,September,40,27,0,3,2,0,0,BB,AUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,133,1,2,Check-Out,2016-09-30,Fall,2016-09-27T07:00Z +Keep,151,2016,September,40,28,0,2,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2016-09-30,Fall,2016-09-28T07:00Z +Keep,151,2016,September,40,28,0,2,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2016-09-30,Fall,2016-09-28T07:00Z +Keep,121,2016,September,40,25,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,98.75,0,1,Check-Out,2016-09-30,Fall,2016-09-25T07:00Z +Keep,29,2016,September,40,28,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,137,0,1,Check-Out,2016-09-30,Fall,2016-09-28T07:00Z +Keep,235,2016,September,39,18,4,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,89.78,0,2,Check-Out,2016-09-30,Fall,2016-09-18T07:00Z +Keep,3,2016,September,40,29,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2016-09-30,Fall,2016-09-29T07:00Z +Keep,14,2016,September,40,27,0,4,1,0,0,HB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,182.5,0,0,Check-Out,2016-10-01,Fall,2016-09-27T07:00Z +Keep,246,2016,September,39,20,2,9,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 143, NULL,0,Contract,79.05,0,0,Check-Out,2016-10-01,Fall,2016-09-20T07:00Z +Keep,18,2017,May,21,26,4,10,2,0,0,BB,GBR,Direct,TA/TO, 1,0,1,F,F,0,No Deposit , 250, NULL,0,Transient,175.57,0,1,Check-Out,2017-06-09,Spring,2017-05-26T07:00Z +Keep,236,2016,September,39,24,2,5,2,0,0,HB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient,85.7,0,1,Check-Out,2016-10-01,Fall,2016-09-24T07:00Z +Keep,193,2016,September,39,24,2,5,3,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,179.14,1,1,Check-Out,2016-10-01,Fall,2016-09-24T07:00Z +Keep,8,2016,September,40,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 448,0,Transient-Party,99,0,0,Check-Out,2016-10-01,Fall,2016-09-30T07:00Z +Keep,8,2016,September,40,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 448,0,Transient-Party,99,0,0,Check-Out,2016-10-01,Fall,2016-09-30T07:00Z +Keep,8,2016,September,40,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 448,0,Transient-Party,105,1,0,Check-Out,2016-10-01,Fall,2016-09-30T07:00Z +Keep,128,2016,September,40,27,0,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,152,1,1,Check-Out,2016-10-01,Fall,2016-09-27T07:00Z +Keep,0,2016,September,40,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,131,1,0,Check-Out,2016-10-01,Fall,2016-09-30T07:00Z +Keep,58,2016,September,40,25,2,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,2,Check-Out,2016-10-01,Fall,2016-09-25T07:00Z +Keep,258,2016,September,40,29,0,2,2,0,0,HB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,100.8,0,1,Check-Out,2016-10-01,Fall,2016-09-29T07:00Z +Keep,269,2016,October,40,1,2,2,2,0,0,HB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Group,94.5,0,1,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,146,2016,September,39,24,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,156,0,2,Check-Out,2016-10-01,Fall,2016-09-24T07:00Z +Keep,248,2016,September,40,29,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-10-01,Fall,2016-09-29T07:00Z +Keep,6,2016,September,40,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,120,0,1,Check-Out,2016-10-01,Fall,2016-09-29T07:00Z +Keep,12,2017,March,9,1,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,2,No Deposit , 250, NULL,0,Group,62.2,0,2,Check-Out,2017-03-04,Spring,2017-03-01T08:00Z +Keep,4,2016,September,40,27,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2016-10-01,Fall,2016-09-27T07:00Z +Keep,0,2016,September,40,30,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,1,1,Check-Out,2016-10-01,Fall,2016-09-30T07:00Z +Keep,195,2016,September,39,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,0,Check-Out,2016-10-02,Fall,2016-09-22T07:00Z +Keep,219,2016,September,40,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,88.4,0,2,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,126,2016,September,40,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.86,0,2,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,220,2016,September,40,25,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,59.75,0,0,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,15,2016,September,40,29,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,196,1,0,Check-Out,2016-10-02,Fall,2016-09-29T07:00Z +Keep,18,2016,September,40,30,0,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,145.67,1,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,265,2016,September,40,29,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.4,1,1,Check-Out,2016-10-02,Fall,2016-09-29T07:00Z +Keep,164,2016,October,40,1,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,72,0,0,Check-Out,2016-10-02,Fall,2016-10-01T07:00Z +Keep,100,2016,October,40,1,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-02,Fall,2016-10-01T07:00Z +Keep,94,2016,September,40,29,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,125,1,1,Check-Out,2016-10-02,Fall,2016-09-29T07:00Z +Keep,198,2016,September,40,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,65.4,0,0,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,113,2016,October,40,1,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-02,Fall,2016-10-01T07:00Z +Keep,198,2016,September,40,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,65.4,0,0,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,198,2016,September,40,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,65.11,0,0,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,5,2016,September,40,29,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,2,Check-Out,2016-10-02,Fall,2016-09-29T07:00Z +Keep,220,2016,September,40,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.75,0,0,Check-Out,2016-10-02,Fall,2016-09-25T07:00Z +Keep,22,2016,September,40,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,1,2,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,3,2016,September,40,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,4,2016,September,40,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,128,2016,September,40,27,0,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2016-10-02,Fall,2016-09-27T07:00Z +Keep,3,2016,September,40,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 450, NULL,0,Transient,99,0,0,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,4,2017,April,17,28,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,D,D,1,No Deposit , 181, NULL,0,Transient,92.8,0,0,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,96,2016,September,40,28,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,0,0,Check-Out,2016-10-02,Fall,2016-09-28T07:00Z +Keep,96,2016,September,40,28,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,78,0,0,Check-Out,2016-10-02,Fall,2016-09-28T07:00Z +Keep,96,2016,September,40,28,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,78,0,0,Check-Out,2016-10-02,Fall,2016-09-28T07:00Z +Keep,133,2016,September,40,26,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,108.17,0,1,Check-Out,2016-10-02,Fall,2016-09-26T07:00Z +Keep,46,2016,September,40,28,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,215.5,1,0,Check-Out,2016-10-02,Fall,2016-09-28T07:00Z +Keep,10,2016,September,40,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,151,1,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,255,2016,September,40,29,0,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,127.67,0,2,Check-Out,2016-10-02,Fall,2016-09-29T07:00Z +Cancel,107,2017,May,18,2,2,5,2,0,0,BB,IRL,Direct,TA/TO, 1,1,1,F,F,0,No Deposit , 250, NULL,0,Transient,116.07,0,3,Canceled,2017-03-20,Spring,2017-05-02T07:00Z +Keep,96,2016,September,40,28,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,76,1,0,Check-Out,2016-10-02,Fall,2016-09-28T07:00Z +Keep,59,2016,September,40,30,0,2,2,0,0,HB,COL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,150,0,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,12,2016,October,40,1,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,146,1,0,Check-Out,2016-10-02,Fall,2016-10-01T07:00Z +Keep,12,2016,October,41,2,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,198,1,0,Check-Out,2016-10-03,Fall,2016-10-02T07:00Z +Keep,3,2016,September,40,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-10-02,Fall,2016-09-30T07:00Z +Keep,175,2016,October,40,1,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,C,4,No Deposit , 240, NULL,0,Transient,114.5,1,1,Check-Out,2016-10-03,Fall,2016-10-01T07:00Z +Keep,155,2016,October,41,2,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 243, NULL,0,Transient,44,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,21,2016,September,40,26,2,5,1,0,0,BB,RUS,Complementary,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 367,0,Transient,0,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,28,2016,September,40,26,2,5,3,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,242.57,1,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,296,2016,September,40,25,3,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,76.5,0,0,Check-Out,2016-10-03,Fall,2016-09-25T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,152,2016,September,40,26,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,48.5,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,69.71,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,445,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,68,0,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,445,2016,September,40,26,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 253, NULL,0,Transient-Party,50.5,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 253, NULL,0,Transient-Party,68,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 253, NULL,0,Transient-Party,68,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,241,2016,September,39,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,1,Check-Out,2016-10-03,Fall,2016-09-19T07:00Z +Keep,241,2016,September,39,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,1,Check-Out,2016-10-03,Fall,2016-09-19T07:00Z +Keep,153,2016,September,40,29,1,3,2,2,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,150,1,1,Check-Out,2016-10-03,Fall,2016-09-29T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 253, NULL,0,Transient-Party,89,0,2,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 253, NULL,0,Transient-Party,70,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,542,2016,September,40,26,2,5,2,0,0,HB,NZL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 253, NULL,0,Transient-Party,68,0,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,221,2016,September,40,26,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,79,2016,October,41,2,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-03,Fall,2016-10-02T07:00Z +Keep,14,2016,September,40,30,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131,1,0,Check-Out,2016-10-03,Fall,2016-09-30T07:00Z +Keep,214,2016,September,39,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.32,0,0,Check-Out,2016-10-03,Fall,2016-09-19T07:00Z +Keep,2,2016,October,41,3,1,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Contract,100,0,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,0,2016,October,41,2,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-10-03,Fall,2016-10-02T07:00Z +Keep,289,2016,September,40,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79.41,0,1,Check-Out,2016-10-03,Fall,2016-09-26T07:00Z +Keep,8,2016,October,41,2,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,1,1,Check-Out,2016-10-03,Fall,2016-10-02T07:00Z +Keep,179,2016,September,40,30,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,110.33,1,1,Check-Out,2016-10-03,Fall,2016-09-30T07:00Z +Keep,192,2016,September,39,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.75,0,2,Check-Out,2016-10-03,Fall,2016-09-19T07:00Z +Keep,19,2016,September,40,29,1,3,2,0,0,SC,CHE,Direct,Direct, 0,0,0,F,I,7,No Deposit , 250, NULL,0,Transient,19,1,0,Check-Out,2016-10-03,Fall,2016-09-29T07:00Z +Keep,215,2016,October,41,4,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,48.08,0,0,Check-Out,2016-10-10,Fall,2016-10-04T07:00Z +Keep,207,2016,October,41,4,1,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Transient,70,0,0,Check-Out,2016-10-10,Fall,2016-10-04T07:00Z +Keep,4,2016,October,41,4,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 180, NULL,0,Transient,0,0,0,Check-Out,2016-10-04,Fall,2016-10-04T07:00Z +Keep,0,2016,November,45,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,1,A,E,0,No Deposit , 78, NULL,0,Transient,42,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,180,2016,October,40,1,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 143, NULL,0,Contract,55,0,0,Check-Out,2016-10-04,Fall,2016-10-01T07:00Z +Keep,43,2016,September,40,30,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,97.41,0,1,Check-Out,2016-10-04,Fall,2016-09-30T07:00Z +Keep,107,2016,September,40,25,4,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,0,Check-Out,2016-10-04,Fall,2016-09-25T07:00Z +Keep,43,2016,September,40,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,83,0,0,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,62,2016,September,40,27,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,127.19,0,1,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,0,2016,October,41,3,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,90,0,2,Check-Out,2016-10-04,Fall,2016-10-03T07:00Z +Keep,214,2016,September,40,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,84.95,0,0,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,172,2016,September,40,27,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,92.14,1,3,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,159,2016,September,40,27,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,89.49,0,0,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,8,2016,September,40,30,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121,1,1,Check-Out,2016-10-04,Fall,2016-09-30T07:00Z +Keep,159,2016,September,40,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,91.49,0,0,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,0,2016,October,41,3,1,0,2,0,0,BB,Unknown,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2016-10-04,Fall,2016-10-03T07:00Z +Keep,29,2016,October,40,1,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2016-10-04,Fall,2016-10-01T07:00Z +Keep,237,2016,September,40,27,2,5,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 36, NULL,0,Transient,60.07,1,0,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,0,2016,October,41,2,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,95,0,1,Check-Out,2016-10-04,Fall,2016-10-02T07:00Z +Keep,0,2016,October,41,2,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,116,1,1,Check-Out,2016-10-04,Fall,2016-10-02T07:00Z +Keep,70,2016,October,41,2,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 242, NULL,0,Transient,105,1,1,Check-Out,2016-10-04,Fall,2016-10-02T07:00Z +Keep,2,2016,October,41,3,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131,1,1,Check-Out,2016-10-04,Fall,2016-10-03T07:00Z +Keep,172,2016,September,40,27,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,88.14,0,3,Check-Out,2016-10-04,Fall,2016-09-27T07:00Z +Keep,0,2016,October,41,3,1,0,2,0,0,BB,SWE,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2016-10-04,Fall,2016-10-03T07:00Z +Keep,162,2016,October,41,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,14,1,1,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,1,2016,October,41,4,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,95,1,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,1,2016,October,41,4,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,95,0,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,38,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,4,2016,October,41,3,1,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2016-10-05,Fall,2016-10-03T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,0,2016,October,41,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,90,1,0,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,0,2016,October,41,5,0,1,2,0,0,BB,ESP,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,342,2016,September,40,29,2,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,42.3,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,0,2016,October,41,4,0,1,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,120,0,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,0,2016,October,41,5,0,1,3,0,0,BB,ESP,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,141,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,0,2016,October,41,4,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,69.49,1,2,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,51,2016,September,40,25,4,6,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,68,0,2,Check-Out,2016-10-05,Fall,2016-09-25T07:00Z +Keep,202,2016,October,40,1,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,77.1,1,1,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,28,2016,October,41,2,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,135,1,1,Check-Out,2016-10-05,Fall,2016-10-02T07:00Z +Keep,18,2016,September,40,30,2,3,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,178.2,1,2,Check-Out,2016-10-05,Fall,2016-09-30T07:00Z +Keep,0,2016,October,41,3,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,90,0,0,Check-Out,2016-10-05,Fall,2016-10-03T07:00Z +Keep,172,2016,September,40,30,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-10-05,Fall,2016-09-30T07:00Z +Keep,0,2016,October,41,4,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,150,1,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,254,2016,September,40,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,99.43,0,1,Check-Out,2016-10-05,Fall,2016-09-28T07:00Z +Keep,0,2016,October,41,4,0,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,19,2016,October,40,1,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,0,2016,October,41,4,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,130,1,1,Check-Out,2016-10-05,Fall,2016-10-04T07:00Z +Keep,239,2016,September,40,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,183.69,0,0,Check-Out,2016-10-05,Fall,2016-09-28T07:00Z +Keep,6,2016,September,40,27,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117.25,1,1,Check-Out,2016-10-05,Fall,2016-09-27T07:00Z +Keep,342,2016,September,40,29,2,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 201, NULL,0,Transient-Party,44.3,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 201, NULL,0,Transient-Party,36,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,13,2016,October,40,1,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139,0,2,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,19,2016,October,40,1,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,139,0,1,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,342,2016,September,40,29,2,4,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 201, NULL,0,Transient-Party,38,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,250,2016,October,40,1,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94,1,2,Check-Out,2016-10-05,Fall,2016-10-01T07:00Z +Keep,342,2016,September,40,29,2,4,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 201, NULL,0,Transient-Party,42.3,0,0,Check-Out,2016-10-05,Fall,2016-09-29T07:00Z +Keep,154,2016,September,40,28,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,1,2,Check-Out,2016-10-05,Fall,2016-09-28T07:00Z +Keep,146,2016,September,40,25,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,96.8,0,2,Check-Out,2016-10-05,Fall,2016-09-25T07:00Z +Keep,60,2016,October,41,5,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-10-05,Fall,2016-10-05T07:00Z +Keep,87,2016,September,40,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,109.03,0,1,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,13,2016,October,41,3,1,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,48,2016,October,41,2,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,202,2016,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,48.75,0,0,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,39,2016,October,41,3,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,72.42,0,1,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,232,2016,September,40,27,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,56.95,0,0,Check-Out,2016-10-06,Fall,2016-09-27T07:00Z +Keep,57,2016,September,40,29,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,86.43,0,0,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,81.8,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,80,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,152,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,152,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,80,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,82,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,266,2016,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,0,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,0,2016,October,41,5,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,105,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,296,2016,September,39,24,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,48.75,0,1,Check-Out,2016-10-06,Fall,2016-09-24T07:00Z +Keep,210,2016,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,50.46,1,2,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,152,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,143,2016,September,40,26,3,7,1,0,0,HB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient-Party,83,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,35,2016,September,40,27,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,83,0,0,Check-Out,2016-10-06,Fall,2016-09-27T07:00Z +Keep,3,2016,October,41,2,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,101,1,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,208,2016,October,41,2,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,37.4,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,152,2016,September,40,26,3,7,1,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 15, NULL,0,Transient-Party,67,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 15, NULL,0,Transient-Party,82,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,152,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,81.8,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,118,2016,October,41,3,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 95, NULL,0,Transient,70,0,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient-Party,82,0,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,5,2016,October,41,4,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131,1,1,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,152,2016,September,40,26,3,7,1,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 15, NULL,0,Transient-Party,67,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,0,2016,October,41,4,0,2,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,159,2016,October,41,2,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,77,1,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,58,2016,October,41,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,163,2016,October,41,2,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,1,2,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,9,2016,October,41,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,121,0,1,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Cancel,10,2016,October,41,8,0,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 405,0,Transient-Party,0,0,1,No-Show,2016-10-08,Fall,2016-10-08T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,56,1,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,1,BB,GBR,Groups,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 405,0,Transient-Party,70,0,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,0,2016,October,42,10,1,2,2,0,1,BB,GBR,Direct,Corporate, 1,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,80,0,1,Check-Out,2016-10-13,Fall,2016-10-10T07:00Z +Keep,142,2016,September,40,26,3,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,91.58,1,1,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,22,2016,October,41,5,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,2,2016,October,41,4,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,96,1,0,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,0,2016,October,41,5,0,1,3,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,150,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,14,2016,October,41,3,1,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 6, NULL,0,Transient,46,1,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,50,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,25,2016,October,41,3,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,99,0,1,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,162,2016,October,41,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,69,0,1,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,11,2016,October,41,3,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,46,1,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,11,2016,October,41,3,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,24,2016,October,41,2,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,97.75,0,2,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,63,2016,October,41,2,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,100.1,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,136,2016,September,40,29,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,74.57,1,1,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,166,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,47.5,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,145,2016,October,41,2,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,0,3,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,166,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,166,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,166,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,0,2016,October,41,3,1,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,124,1,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,1,2016,October,41,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,25,2016,October,41,3,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,1,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,165,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,94,2016,October,41,2,2,2,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,41,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,94,2016,October,41,2,2,2,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,39,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,25,2016,October,41,3,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,1,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,64,2016,September,40,30,2,4,3,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 244, NULL,0,Transient,105.77,0,0,Check-Out,2016-10-06,Fall,2016-09-30T07:00Z +Keep,165,2016,October,41,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,14,2016,October,41,3,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,1,0,Check-Out,2016-10-06,Fall,2016-10-03T07:00Z +Keep,59,2016,October,41,5,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,89.1,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,1,2016,October,41,5,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,156,1,2,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,8,2016,October,41,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,80,0,1,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,68,2016,October,40,1,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,82.1,0,1,Check-Out,2016-10-06,Fall,2016-10-01T07:00Z +Keep,0,2016,October,41,4,0,2,1,0,0,BB,BEL,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,120,0,0,Check-Out,2016-10-06,Fall,2016-10-04T07:00Z +Keep,70,2016,September,40,30,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.83,0,0,Check-Out,2016-10-06,Fall,2016-09-30T07:00Z +Keep,64,2016,September,40,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,57,0,0,Check-Out,2016-10-06,Fall,2016-09-29T07:00Z +Keep,46,2016,October,41,2,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,108.99,0,1,Check-Out,2016-10-06,Fall,2016-10-02T07:00Z +Keep,0,2016,October,41,5,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,1,0,Check-Out,2016-10-06,Fall,2016-10-05T07:00Z +Keep,0,2016,October,41,6,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-06,Fall,2016-10-06T07:00Z +Keep,245,2016,September,40,26,3,7,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,I,2,No Deposit , 15, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-06,Fall,2016-09-26T07:00Z +Keep,32,2016,October,41,3,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,170.5,0,1,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,142,2016,September,40,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,82.63,0,2,Check-Out,2016-10-07,Fall,2016-09-30T07:00Z +Keep,184,2016,September,40,30,2,5,2,0,0,HB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,88.57,0,0,Check-Out,2016-10-07,Fall,2016-09-30T07:00Z +Keep,46,2016,October,41,3,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99,0,0,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,315,2016,September,40,27,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,92.78,0,1,Check-Out,2016-10-07,Fall,2016-09-27T07:00Z +Keep,135,2016,October,41,3,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,74.53,1,1,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,228,2016,September,40,30,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.71,0,1,Check-Out,2016-10-07,Fall,2016-09-30T07:00Z +Keep,118,2016,October,41,4,0,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 171, NULL,0,Transient,46,0,0,Check-Out,2016-10-07,Fall,2016-10-04T07:00Z +Keep,177,2016,September,39,23,4,10,2,0,0,BB,LTU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,65,0,0,Check-Out,2016-10-07,Fall,2016-09-23T07:00Z +Keep,57,2016,October,41,2,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2016-10-07,Fall,2016-10-02T07:00Z +Keep,150,2016,October,41,6,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-07,Fall,2016-10-06T07:00Z +Keep,3,2016,October,41,4,0,3,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,0,Check-Out,2016-10-07,Fall,2016-10-04T07:00Z +Keep,129,2016,October,41,3,1,3,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,59,0,0,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,179,2016,October,41,3,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,64.1,0,1,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,128,2016,September,40,30,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,96.23,0,0,Check-Out,2016-10-07,Fall,2016-09-30T07:00Z +Keep,41,2016,October,41,3,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,79.73,0,1,Check-Out,2016-10-07,Fall,2016-10-03T07:00Z +Keep,183,2016,October,40,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69,0,2,Check-Out,2016-10-08,Fall,2016-10-01T07:00Z +Keep,146,2016,October,41,4,0,4,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,182,0,0,Check-Out,2016-10-08,Fall,2016-10-04T07:00Z +Keep,45,2016,October,40,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2016-10-08,Fall,2016-10-01T07:00Z +Keep,55,2016,October,41,3,1,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2016-10-08,Fall,2016-10-03T07:00Z +Keep,261,2016,October,41,6,0,2,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,73,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,261,2016,October,41,6,0,2,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,87,0,0,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,161,2016,October,40,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94.29,0,2,Check-Out,2016-10-08,Fall,2016-10-01T07:00Z +Keep,67,2016,October,41,3,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.6,0,2,Check-Out,2016-10-08,Fall,2016-10-03T07:00Z +Keep,31,2016,October,41,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,G,0,No Deposit , NULL, 443,0,Transient-Party,75,1,0,Check-Out,2016-10-08,Fall,2016-10-07T07:00Z +Keep,30,2016,October,41,6,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 443,0,Transient-Party,85,0,1,Check-Out,2016-10-08,Fall,2016-10-06T07:00Z +Keep,60,2016,October,41,3,1,4,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2016-10-08,Fall,2016-10-03T07:00Z +Keep,60,2016,October,41,3,1,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,79,0,1,Check-Out,2016-10-08,Fall,2016-10-03T07:00Z +Keep,163,2016,October,41,4,0,4,2,0,0,HB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,119.1,0,0,Check-Out,2016-10-08,Fall,2016-10-04T07:00Z +Keep,41,2016,October,41,4,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,57,0,0,Check-Out,2016-10-08,Fall,2016-10-04T07:00Z +Keep,38,2016,November,47,14,1,3,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,1,A,E,1,No Deposit , 436, NULL,0,Transient,60.7,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,78,2016,October,41,5,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,123.62,0,2,Check-Out,2016-10-08,Fall,2016-10-05T07:00Z +Keep,188,2016,September,40,25,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,114.71,0,0,Check-Out,2016-10-09,Fall,2016-09-25T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,58,1,1,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,220,2016,September,40,25,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,74.75,0,2,Check-Out,2016-10-09,Fall,2016-09-25T07:00Z +Keep,220,2016,September,40,25,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,2,Check-Out,2016-10-09,Fall,2016-09-25T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,12,2016,October,41,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,120,0,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,8,2016,October,41,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125,0,2,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 315, NULL,0,Transient-Party,56,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, 405,0,Transient-Party,50,1,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,3,2016,October,41,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,90,0,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,3,2016,October,41,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,80,0,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,0,2016,October,41,8,0,1,2,0,0,BB,AGO,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,96,1,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,1,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,12,2016,October,41,8,0,1,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,155,0,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,32,2016,October,41,3,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,208,1,0,Check-Out,2016-10-09,Fall,2016-10-03T07:00Z +Keep,0,2016,October,41,3,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-10-09,Fall,2016-10-03T07:00Z +Keep,48,2016,October,41,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,1,2016,October,41,8,0,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,140,0,0,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , NULL, 405,0,Transient-Party,56,1,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,17,2016,October,41,7,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161,1,0,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,172,2016,October,41,7,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,172,2016,October,41,7,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73.39,0,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,0,2016,October,42,9,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-10-09,Fall,2016-10-09T07:00Z +Keep,16,2016,October,41,7,0,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,161,1,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,51,2016,October,41,7,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,97.63,1,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,81,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient-Party,73,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,55,2016,October,42,11,0,1,2,0,0,BB,GBR,Online travel agent,Corporate, 0,0,1,A,A,0,No Deposit , 241, NULL,0,Transient,50.66,1,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,15,2016,October,41,8,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,1,1,Check-Out,2016-10-09,Fall,2016-10-08T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,1,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,14,2016,October,41,7,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,0,1,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,66,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Group,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,383,2016,October,41,6,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,7,2016,October,41,5,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,44,0,0,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,384,2016,October,41,7,0,2,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,Refundable , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-07T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,OMN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,OMN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,1,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,48,0,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,383,2016,October,41,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-09,Fall,2016-10-06T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,1,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,7,2016,October,41,5,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-09,Fall,2016-10-05T07:00Z +Keep,8,2016,October,41,6,1,3,2,2,0,BB,GBR,Groups,Corporate, 0,0,0,C,C,1,No Deposit , NULL, 405,0,Transient-Party,88,1,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,167,2016,October,41,3,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101.43,0,1,Check-Out,2016-10-10,Fall,2016-10-03T07:00Z +Keep,58,2016,October,41,3,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2016-10-10,Fall,2016-10-03T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,56,1,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,0,2016,October,41,4,1,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,81.8,0,0,Check-Out,2016-10-10,Fall,2016-10-04T07:00Z +Keep,8,2016,October,41,6,1,3,2,2,0,BB,GBR,Groups,Corporate, 0,0,0,C,C,1,No Deposit , NULL, 405,0,Transient-Party,82,0,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,125,2016,October,42,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,103.2,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,11,2016,October,42,9,1,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,8,2016,October,41,6,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 405,0,Transient-Party,70,0,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,ESP,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,56,1,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 405,0,Transient-Party,56,1,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,100,2016,October,41,6,1,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,158.1,1,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,223,2016,October,42,9,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,223,2016,October,42,9,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,59,0,1,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,61,2016,October,42,9,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,5,2016,October,41,8,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,180,1,0,Check-Out,2016-10-10,Fall,2016-10-08T07:00Z +Keep,11,2016,October,42,9,1,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,243,2016,October,42,9,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,210,2016,September,40,30,3,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,89.34,0,0,Check-Out,2016-10-10,Fall,2016-09-30T07:00Z +Keep,210,2016,September,40,30,3,7,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,89.34,0,1,Check-Out,2016-10-10,Fall,2016-09-30T07:00Z +Keep,0,2016,October,42,9,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,91,1,0,Check-Out,2016-10-10,Fall,2016-10-09T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,54.5,1,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,17,2016,October,42,10,0,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-10,Fall,2016-10-10T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,58,1,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,8,2016,October,41,6,1,3,2,0,0,BB,SUR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,56,1,0,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,50,0,1,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,66,2016,October,41,7,1,2,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,145,1,1,Check-Out,2016-10-10,Fall,2016-10-07T07:00Z +Keep,7,2016,October,41,5,1,4,2,0,1,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,2,Check-Out,2016-10-10,Fall,2016-10-05T07:00Z +Keep,383,2016,October,41,6,1,3,2,0,0,SC,GBR,Groups,TA/TO, 0,0,0,A,I,1,No Deposit , 315, NULL,0,Transient-Party,4.5,0,1,Check-Out,2016-10-10,Fall,2016-10-06T07:00Z +Keep,5,2016,October,42,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,42,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,37,2016,October,41,7,2,2,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,158.75,0,0,Check-Out,2016-10-11,Fall,2016-10-07T07:00Z +Keep,215,2016,October,41,4,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 434, NULL,0,Transient,26,0,1,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,13,2016,October,42,10,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,39,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,16,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.6,1,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,7,2016,October,41,5,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,F,F,1,No Deposit , NULL, 405,0,Transient-Party,81,0,0,Check-Out,2016-10-11,Fall,2016-10-05T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,30,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,30,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,7,2016,October,41,5,2,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-11,Fall,2016-10-05T07:00Z +Keep,16,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,8,2016,October,41,6,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,50,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,131,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,57,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,59.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,30,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,0,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,7,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,131,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,30,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,61,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63.5,1,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,63,0,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,74,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,10,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,16,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,61,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,3,2016,October,42,10,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,39,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,1,2017,March,13,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 196, NULL,0,Transient,70,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,45,2016,October,41,7,2,2,2,0,0,HB,POL,Direct,Direct, 0,0,0,E,F,6,No Deposit , 250, NULL,0,Transient,147.5,1,2,Check-Out,2016-10-11,Fall,2016-10-07T07:00Z +Keep,0,2016,October,42,10,1,0,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 22,0,Transient,51,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,139,2016,October,42,10,1,0,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,1,2016,October,42,10,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,0,2016,October,42,10,1,0,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 22,0,Transient,51,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,178,2016,October,41,2,4,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,60,0,0,Check-Out,2016-10-11,Fall,2016-10-02T07:00Z +Keep,32,2016,October,41,8,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,115.33,0,1,Check-Out,2016-10-11,Fall,2016-10-08T07:00Z +Keep,32,2016,October,41,8,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,121.33,0,1,Check-Out,2016-10-11,Fall,2016-10-08T07:00Z +Keep,0,2016,October,42,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,58,2016,October,40,1,4,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,125.1,0,0,Check-Out,2016-10-11,Fall,2016-10-01T07:00Z +Keep,4,2016,October,42,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,0,2016,October,42,10,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,4,2016,October,42,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,4,2016,October,42,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,185,2016,October,41,6,2,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 314, NULL,0,Transient,51.68,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,27,2016,October,42,10,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,158,2016,October,41,7,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,81.24,0,2,Check-Out,2016-10-11,Fall,2016-10-07T07:00Z +Keep,0,2016,October,42,10,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,162,2016,October,41,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 242, NULL,0,Transient,87.86,0,1,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,131,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 454,0,Transient-Party,48,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,162,2016,October,41,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,67.57,0,1,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,243,2016,October,41,6,2,3,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,243,2016,October,41,6,2,3,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,F,1,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63.5,1,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,16,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,60,2016,October,41,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91,0,2,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,16,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,61,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,3,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,63.6,1,0,Check-Out,2016-10-14,Fall,2016-10-11T07:00Z +Keep,185,2016,October,41,6,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 147, NULL,0,Transient,54.97,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,16,2016,October,42,9,2,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,66,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,162,2016,October,41,4,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,56.86,0,1,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,131,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57.5,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,16,2016,October,42,9,2,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,1,1,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,72,1,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,162,2016,October,41,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,65.86,0,2,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 91, NULL,0,Transient-Party,53.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,0,2016,October,42,10,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-10-11,Fall,2016-10-10T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,140,2016,October,41,4,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,69.54,0,1,Check-Out,2016-10-11,Fall,2016-10-04T07:00Z +Keep,16,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 454, NULL,0,Transient,54,1,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,14,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,57.6,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,16,2016,October,42,9,2,0,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , 454, NULL,0,Transient,48,0,0,Check-Out,2016-10-11,Fall,2016-10-09T07:00Z +Keep,14,2016,October,42,11,0,1,1,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,57.6,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,53.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,243,2016,October,41,6,2,3,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 91, NULL,0,Transient-Party,55.1,0,0,Check-Out,2016-10-11,Fall,2016-10-06T07:00Z +Keep,98,2016,October,42,11,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,138,2016,October,41,2,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,96,0,0,Check-Out,2016-10-12,Fall,2016-10-02T07:00Z +Keep,3,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,3,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,0,2016,October,42,11,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,39,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,12,2016,October,42,10,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,121,2016,October,41,5,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,64.1,0,0,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,14,2016,October,42,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,8,2016,October,42,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.8,1,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,198,2016,October,40,1,4,7,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,64.83,0,0,Check-Out,2016-10-12,Fall,2016-10-01T07:00Z +Keep,13,2016,October,42,11,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51,0,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,364,2016,October,42,12,2,4,2,0,0,BB,BEL,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,66,0,2,Check-Out,2016-10-18,Fall,2016-10-12T07:00Z +Keep,33,2016,October,42,10,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,58,0,1,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,3,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,1,2016,October,42,11,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103,1,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,9,2016,October,42,9,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139.67,0,2,Check-Out,2016-10-12,Fall,2016-10-09T07:00Z +Keep,0,2016,October,42,12,0,0,2,0,0,BB,FRA,Online travel agent,Direct, 1,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-10-12,Fall,2016-10-12T07:00Z +Keep,0,2016,October,42,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,0,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,36,2016,October,42,10,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,4,2016,October,42,10,1,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,1,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,11,2016,October,42,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,57,2016,October,41,5,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,1,2016,October,42,11,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,62,1,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,5,2016,October,42,11,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,29,2016,October,42,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,29,2016,October,42,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,58,1,0,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,63,2016,October,41,5,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.71,0,1,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,44,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,2,2016,October,42,11,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,46.96,1,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,1,2016,October,42,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,1,2016,October,42,12,0,2,2,0,0,BB,ESP,Direct,TA/TO, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2016-10-14,Fall,2016-10-12T07:00Z +Keep,56,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,0,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,173,2016,October,41,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.29,0,1,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,173,2016,October,41,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.29,0,1,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,4,2016,October,42,9,2,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,51,0,0,Check-Out,2016-10-12,Fall,2016-10-09T07:00Z +Keep,179,2016,October,42,9,2,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 177, NULL,0,Transient,78,1,2,Check-Out,2016-10-12,Fall,2016-10-09T07:00Z +Keep,6,2016,October,42,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91,1,0,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,0,2016,October,42,10,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,18,2016,October,42,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2016-10-12,Fall,2016-10-11T07:00Z +Keep,50,2016,October,41,7,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92.8,0,1,Check-Out,2016-10-12,Fall,2016-10-07T07:00Z +Keep,4,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,133,2016,October,41,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,46,0,0,Check-Out,2016-10-12,Fall,2016-10-05T07:00Z +Keep,4,2016,October,42,10,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,32,2016,October,41,2,4,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,110.72,0,1,Check-Out,2016-10-12,Fall,2016-10-02T07:00Z +Keep,0,2016,October,42,10,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,98,1,0,Check-Out,2016-10-12,Fall,2016-10-10T07:00Z +Keep,341,2016,October,41,3,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Transient-Party,39.4,0,1,Check-Out,2016-10-13,Fall,2016-10-03T07:00Z +Keep,74,2016,October,42,9,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,91.93,1,1,Check-Out,2016-10-13,Fall,2016-10-09T07:00Z +Keep,1,2016,October,42,11,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 104, NULL,0,Transient,67.5,1,0,Check-Out,2016-10-13,Fall,2016-10-11T07:00Z +Keep,1,2016,October,42,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , 455, NULL,0,Transient,45,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,5,2016,November,45,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 455, NULL,0,Transient,45,0,0,Check-Out,2016-11-03,Fall,2016-11-02T07:00Z +Keep,1,2016,November,48,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , 455, NULL,0,Transient,30,0,0,Check-Out,2016-11-24,Fall,2016-11-22T08:00Z +Keep,5,2017,March,9,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,E,0,No Deposit , 455, NULL,0,Transient,35,0,0,Check-Out,2017-03-03,Spring,2017-03-01T08:00Z +Keep,252,2016,October,42,12,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,59,0,1,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,230,2016,October,42,12,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68.5,0,1,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,235,2016,October,43,17,1,1,2,0,0,BB,BEL,Direct,Direct, 0,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,68.5,0,1,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,230,2016,October,42,12,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68.5,1,1,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,BEL,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,72,1,1,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,235,2016,October,43,17,1,1,2,0,0,BB,BEL,Direct,Direct, 0,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,74.5,1,1,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,158,2017,May,21,22,1,2,2,0,0,BB,BEL,Direct,Direct, 1,0,3,D,D,0,No Deposit , NULL, NULL,0,Transient,90,1,1,Check-Out,2017-05-25,Spring,2017-05-22T07:00Z +Keep,164,2017,May,22,28,2,2,2,0,0,BB,BEL,Direct,Direct, 1,0,4,D,D,0,No Deposit , NULL, NULL,0,Transient,90,1,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,1,2016,October,42,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, 367,0,Group,55,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,1,2016,October,42,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, 367,0,Group,55,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,4,2017,March,12,21,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 367,0,Transient,63,0,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,1,2016,October,42,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, 367,0,Group,55,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,3,2016,October,42,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,11,2016,October,42,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,85,0,1,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,1,2016,October,42,12,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,96,1,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,178,2016,October,42,10,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2016-10-13,Fall,2016-10-10T07:00Z +Keep,4,2016,October,42,11,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101,0,1,Check-Out,2016-10-13,Fall,2016-10-11T07:00Z +Keep,0,2016,October,42,12,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2016-10-13,Fall,2016-10-12T07:00Z +Keep,0,2016,October,42,11,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,96,1,0,Check-Out,2016-10-13,Fall,2016-10-11T07:00Z +Keep,60,2016,October,42,9,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,100.1,0,1,Check-Out,2016-10-14,Fall,2016-10-09T07:00Z +Keep,18,2016,October,42,11,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,57.6,0,0,Check-Out,2016-10-14,Fall,2016-10-11T07:00Z +Keep,33,2016,October,42,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 444,0,Transient-Party,40,0,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,70,2016,October,42,13,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , 251, NULL,0,Transient,88.3,0,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,0,2016,October,42,13,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,96,1,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,0,2016,October,42,13,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,33,2016,October,42,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 444,0,Transient-Party,40,0,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,196,2016,September,40,30,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.76,0,1,Check-Out,2016-10-14,Fall,2016-09-30T07:00Z +Keep,267,2016,October,41,4,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83.52,0,0,Check-Out,2016-10-14,Fall,2016-10-04T07:00Z +Keep,267,2016,October,41,4,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85.52,0,0,Check-Out,2016-10-14,Fall,2016-10-04T07:00Z +Keep,0,2016,October,42,13,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 394,0,Transient,75,1,0,Check-Out,2016-10-14,Fall,2016-10-13T07:00Z +Keep,1,2016,October,42,10,1,3,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,135,1,0,Check-Out,2016-10-14,Fall,2016-10-10T07:00Z +Keep,231,2016,October,41,8,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , 273, NULL,0,Transient-Party,46.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,71.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , 273, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,F,1,No Deposit , 273, NULL,0,Transient-Party,91.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,71.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,69.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,71.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,71.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,71.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,231,2016,October,41,8,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-10-15,Fall,2016-10-08T07:00Z +Keep,214,2016,October,42,11,0,4,2,0,0,HB,RUS,Groups,Corporate, 0,0,0,E,E,5,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-15,Fall,2016-10-11T07:00Z +Keep,0,2016,October,42,15,0,0,2,0,0,BB,USA,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-10-15,Fall,2016-10-15T07:00Z +Keep,363,2016,October,42,11,0,5,1,0,0,HB,RUS,Groups,Corporate, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-16,Fall,2016-10-11T07:00Z +Keep,12,2016,October,42,15,0,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 382,0,Transient,0,0,0,Check-Out,2016-10-16,Fall,2016-10-15T07:00Z +Keep,12,2016,October,42,15,0,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 382,0,Transient,0,0,0,Check-Out,2016-10-16,Fall,2016-10-15T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,DNK,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,72,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,108,2016,October,41,8,2,6,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,3,No Deposit , 273, NULL,0,Transient-Party,2,0,0,Check-Out,2016-10-16,Fall,2016-10-08T07:00Z +Keep,150,2016,October,41,8,2,6,2,0,1,BB,GBR,Groups,Direct, 0,0,0,A,D,2,No Deposit , 273, NULL,0,Transient-Party,62.75,0,1,Check-Out,2016-10-16,Fall,2016-10-08T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,61.5,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,67.99,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,337,2016,October,42,9,2,5,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , 273, NULL,101,Transient-Party,66.28,0,0,Check-Out,2016-10-16,Fall,2016-10-09T07:00Z +Keep,364,2016,October,42,12,0,4,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,103,0,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,0,2016,October,42,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-10-16,Fall,2016-10-15T07:00Z +Keep,23,2016,October,43,16,0,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,0,0,0,Check-Out,2016-10-16,Fall,2016-10-16T07:00Z +Keep,364,2016,October,42,12,0,4,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2016-10-16,Fall,2016-10-12T07:00Z +Keep,2,2016,October,43,16,1,0,2,0,0,BB,BEL,Online travel agent,Corporate, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,81,1,1,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,363,2016,October,42,11,0,5,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-16,Fall,2016-10-11T07:00Z +Keep,5,2016,October,43,16,1,0,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,270,2016,October,42,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.33,0,2,Check-Out,2016-10-17,Fall,2016-10-14T07:00Z +Keep,270,2016,October,42,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,95.33,0,2,Check-Out,2016-10-17,Fall,2016-10-14T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,FRA,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,64.8,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,66,1,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,13,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,72,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,239,2016,October,41,8,3,6,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,51.5,0,2,Check-Out,2016-10-17,Fall,2016-10-08T07:00Z +Keep,68,2016,October,43,16,1,0,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,54,1,0,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,12,2016,October,43,17,0,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-10-17,Fall,2016-10-17T07:00Z +Keep,31,2016,October,43,16,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,96,1,1,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,5,2016,October,42,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,135,0,1,Check-Out,2016-10-17,Fall,2016-10-15T07:00Z +Keep,363,2016,October,42,11,1,5,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,101,0,0,Check-Out,2016-10-17,Fall,2016-10-11T07:00Z +Keep,2,2016,October,42,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,67.5,0,0,Check-Out,2016-10-17,Fall,2016-10-15T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,1,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,270,2016,October,42,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,93.33,0,2,Check-Out,2016-10-17,Fall,2016-10-14T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,E,1,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,189,2016,October,43,17,1,0,2,0,0,BB,NLD,Online travel agent,Corporate, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,364,2016,October,42,12,1,4,2,0,0,BB,POL,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,365,2016,October,42,13,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-17,Fall,2016-10-13T07:00Z +Keep,2,2016,October,43,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,1,2,Check-Out,2016-10-17,Fall,2016-10-16T07:00Z +Keep,364,2016,October,42,12,1,4,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-17,Fall,2016-10-12T07:00Z +Keep,231,2016,October,41,8,3,6,2,0,0,SC,GBR,Groups,Direct, 0,0,0,D,I,0,No Deposit , 273, NULL,0,Transient-Party,1.56,0,0,Check-Out,2016-10-17,Fall,2016-10-08T07:00Z +Keep,7,2016,October,43,18,0,5,2,0,0,HB,POL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,124.33,1,1,Check-Out,2016-10-23,Fall,2016-10-18T07:00Z +Keep,235,2016,October,41,8,4,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,80.8,0,0,Check-Out,2016-10-18,Fall,2016-10-08T07:00Z +Keep,297,2016,October,41,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,46.75,0,1,Check-Out,2016-10-18,Fall,2016-10-04T07:00Z +Keep,271,2016,October,42,10,3,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,72.05,0,0,Check-Out,2016-10-18,Fall,2016-10-10T07:00Z +Keep,5,2016,October,43,17,1,0,1,0,0,HB,CYP,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , 59, NULL,0,Transient,54,0,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,2,2016,October,43,17,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,45,1,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,29,2016,October,42,15,2,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,42,0,0,Check-Out,2016-10-18,Fall,2016-10-15T07:00Z +Keep,363,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,Refundable , 273, NULL,150,Transient-Party,71.36,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,Refundable , 273, NULL,150,Transient-Party,78.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,Refundable , 273, NULL,150,Transient-Party,80.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , 273, NULL,150,Transient-Party,46.36,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,Refundable , 273, NULL,150,Transient-Party,78.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,339,2016,October,42,11,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,1,Refundable , 273, NULL,150,Transient-Party,46.36,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,338,2016,October,42,10,3,5,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , 273, NULL,150,Transient-Party,0,0,0,Check-Out,2016-10-18,Fall,2016-10-10T07:00Z +Keep,4,2016,October,43,16,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,47.55,0,1,Check-Out,2016-10-18,Fall,2016-10-16T07:00Z +Keep,0,2016,October,43,17,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,318,2016,October,42,11,2,5,2,0,0,BB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient,78.81,0,0,Check-Out,2016-10-18,Fall,2016-10-11T07:00Z +Keep,3,2016,October,42,15,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-10-18,Fall,2016-10-15T07:00Z +Keep,7,2016,October,43,17,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,96,1,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,12,2016,October,43,17,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,2,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,0,2016,October,43,17,1,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-10-18,Fall,2016-10-17T07:00Z +Keep,11,2016,October,43,18,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,1,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 52,0,Transient,45,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,1,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 52,0,Transient,45,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,4,2016,October,43,18,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,364,2016,October,42,12,2,5,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-19,Fall,2016-10-12T07:00Z +Keep,364,2016,October,42,12,2,5,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-19,Fall,2016-10-12T07:00Z +Keep,13,2016,October,43,17,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,41.4,0,0,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,4,2016,October,43,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 31,0,Transient-Party,42,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,6,2016,October,43,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 31,0,Transient-Party,42,0,0,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,69,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 368, NULL,22,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,1,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,52,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,72,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,2,2016,October,43,17,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,42.65,0,0,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,1,2016,October,43,19,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Group,42.65,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,30,2016,October,42,15,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,42,1,0,Check-Out,2016-10-19,Fall,2016-10-15T07:00Z +Keep,47,2016,October,43,18,0,1,1,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,52,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,47,2016,October,43,18,0,1,2,0,0,HB,RUS,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 368, NULL,0,Transient,52,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,14,2016,October,43,18,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient,0,0,0,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,22,2016,October,43,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,3,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,22,2016,October,43,17,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-10-19,Fall,2016-10-17T07:00Z +Keep,1,2016,October,43,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,1,2,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,6,2016,October,43,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,22,2016,October,43,16,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,45.89,0,1,Check-Out,2016-10-19,Fall,2016-10-16T07:00Z +Keep,22,2016,October,43,16,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-19,Fall,2016-10-16T07:00Z +Keep,27,2016,October,43,16,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-19,Fall,2016-10-16T07:00Z +Keep,27,2016,October,43,16,2,1,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,63.4,0,0,Check-Out,2016-10-19,Fall,2016-10-16T07:00Z +Keep,27,2016,October,43,16,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-19,Fall,2016-10-16T07:00Z +Keep,6,2016,October,43,18,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,50.05,1,1,Check-Out,2016-10-19,Fall,2016-10-18T07:00Z +Keep,1,2016,October,43,20,0,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-10-20,Fall,2016-10-20T07:00Z +Keep,214,2016,October,42,11,2,7,2,0,0,HB,ITA,Groups,Corporate, 0,0,0,E,E,7,No Deposit , NULL, NULL,0,Transient-Party,81,0,1,Check-Out,2016-10-20,Fall,2016-10-11T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,214,2016,October,42,11,2,7,2,0,0,HB,AUT,Groups,Corporate, 0,0,0,E,F,3,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-20,Fall,2016-10-11T07:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Corporate, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,AUT,Direct,Corporate, 1,0,2,E,I,1,No Deposit , NULL, NULL,0,Transient-Party,40,8,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,138,2017,March,12,19,2,2,2,0,0,HB,AUT,Direct,Corporate, 1,0,2,E,F,1,No Deposit , NULL, NULL,122,Transient-Party,80,8,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,216,2016,October,42,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,1,Check-Out,2016-10-20,Fall,2016-10-13T07:00Z +Keep,364,2016,October,42,12,2,6,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2016-10-20,Fall,2016-10-12T07:00Z +Keep,6,2016,October,43,19,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,44.8,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,2,2016,October,43,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,52.8,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,2,2016,October,43,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,52.8,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,5,2016,October,43,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,54.9,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,2,2016,October,43,19,0,1,1,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,66,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,5,2016,October,43,19,0,1,1,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,54.9,1,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,201,2016,October,43,16,2,2,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,34.85,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,72,2016,October,43,16,2,2,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,54,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,5,2016,October,43,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 459,0,Transient-Party,57,1,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,5,2016,October,43,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 459,0,Transient-Party,51,0,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 459,0,Transient,39,1,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,1,2016,October,43,18,0,2,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 120,0,Transient,56,1,0,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,28,2016,October,43,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,0,2016,October,43,19,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,85,1,1,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,0,2016,October,43,20,0,1,2,1,0,BB,PRT,Direct,Direct, 1,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,107.5,1,1,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,10,2016,October,43,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,25,2016,October,43,17,1,2,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-10-20,Fall,2016-10-17T07:00Z +Keep,0,2016,October,43,17,1,2,1,0,0,HB,ITA,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,1,Check-Out,2016-10-20,Fall,2016-10-17T07:00Z +Keep,28,2016,October,43,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,28,2016,October,43,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,28,2016,October,43,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,28,2016,October,43,18,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.89,0,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,1,2016,October,43,19,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,52.8,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,25,2016,October,43,16,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,219,2016,October,43,16,2,2,2,0,0,HB,AUT,Groups,Corporate, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,138,2016,October,43,19,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,9,2016,October,43,16,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Transient,96,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,219,2016,October,43,16,2,2,2,0,0,HB,DEU,Groups,Corporate, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,219,2016,October,43,16,2,2,2,0,0,HB,DEU,Groups,Corporate, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,12,2016,October,43,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,54,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,2,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 331,0,Transient-Party,39,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,219,2016,October,43,16,2,2,2,0,0,HB,ITA,Groups,Corporate, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,159,2016,October,43,16,2,2,1,0,0,HB,DEU,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,58,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,0,2016,October,43,19,0,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,219,2016,October,43,16,2,2,2,0,0,HB,DEU,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,40.5,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,56,2016,October,43,17,1,2,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,106,1,2,Check-Out,2016-10-20,Fall,2016-10-17T07:00Z +Keep,68,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,10,2016,October,43,19,0,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,216,2016,October,42,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,46.75,0,2,Check-Out,2016-10-20,Fall,2016-10-13T07:00Z +Keep,46,2016,October,43,16,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,188,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,48,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Cancel,50,2016,October,44,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,1,0,A,A,0,No Deposit , 240, NULL,0,Transient,8,0,0,Canceled,2016-10-20,Fall,2016-10-29T07:00Z +Keep,158,2016,October,43,16,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Transient,67,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,172,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,214,2016,October,42,11,2,7,2,0,0,HB,CHL,Groups,Corporate, 0,0,0,E,D,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,1,Check-Out,2016-10-20,Fall,2016-10-11T07:00Z +Keep,8,2016,October,43,18,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,0,2016,October,43,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,140,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,301,2016,October,41,6,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 2, NULL,0,Contract,31.45,0,1,Check-Out,2016-10-20,Fall,2016-10-06T07:00Z +Keep,173,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,178,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,301,2016,October,41,6,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Contract,48.61,0,1,Check-Out,2016-10-20,Fall,2016-10-06T07:00Z +Keep,2,2016,October,43,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,80,2016,October,43,18,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-10-20,Fall,2016-10-18T07:00Z +Keep,30,2016,October,43,16,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,113.75,1,2,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,2,2016,October,43,19,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,1,2,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,13,2016,October,43,16,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,85,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,186,2016,October,43,16,2,2,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,62.1,0,0,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,178,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,48,0,1,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,178,2016,October,43,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,48,0,1,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,7,2016,October,43,19,0,1,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-20,Fall,2016-10-19T07:00Z +Keep,37,2016,October,43,21,0,2,2,0,0,BB,GBR,Groups,Corporate, 0,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Keep,18,2016,October,43,16,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 243, NULL,0,Contract,46,0,1,Check-Out,2016-10-20,Fall,2016-10-16T07:00Z +Keep,14,2016,October,43,19,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 451, NULL,0,Transient,51.9,1,0,Check-Out,2016-10-21,Fall,2016-10-19T07:00Z +Keep,249,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,E,1,No Deposit , 273, NULL,0,Transient-Party,44.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,259,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,1,No Deposit , 273, NULL,0,Transient-Party,47.79,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,259,2016,October,42,14,2,5,1,0,0,BB,GBR,Groups,Direct, 0,0,0,A,C,1,No Deposit , 273, NULL,0,Transient-Party,46.36,0,0,Check-Out,2016-10-21,Fall,2016-10-14T07:00Z +Keep,52,2016,October,43,16,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.6,0,3,Check-Out,2016-10-21,Fall,2016-10-16T07:00Z +Keep,57,2016,October,43,16,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-10-21,Fall,2016-10-16T07:00Z +Keep,3,2016,October,43,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 458,0,Transient,50,1,0,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,3,2016,October,43,20,0,1,1,0,0,BB,ESP,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 458,0,Transient,50,0,0,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,176,2016,October,43,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.25,0,0,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,3,2016,October,43,20,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,130.5,1,0,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,14,2016,October,43,18,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,66,0,1,Check-Out,2016-10-21,Fall,2016-10-18T07:00Z +Keep,6,2016,October,43,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 242, NULL,0,Transient,70,1,2,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,5,2016,October,43,17,1,3,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,C,0,No Deposit , NULL, 456,0,Transient,67.5,0,0,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,3,2016,November,49,28,1,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 456,0,Transient,38,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,1,2016,October,43,18,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-10-21,Fall,2016-10-18T07:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2016,October,43,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,23,2016,October,43,20,0,1,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135,1,1,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,64,2016,October,43,17,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,73.76,1,1,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,71,2016,October,43,17,1,3,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,2,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,6,2016,October,43,20,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2016-10-21,Fall,2016-10-20T07:00Z +Keep,18,2016,October,43,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,81,1,0,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,240,2016,October,42,12,2,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,81,0,0,Check-Out,2016-10-21,Fall,2016-10-12T07:00Z +Keep,7,2016,October,43,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,88,1,0,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,26,2016,October,43,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 314, NULL,0,Transient,67,0,1,Check-Out,2016-10-21,Fall,2016-10-17T07:00Z +Keep,359,2016,October,41,7,4,10,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,5,No Deposit , NULL, 223,0,Transient-Party,66,0,0,Check-Out,2016-10-21,Fall,2016-10-07T07:00Z +Keep,214,2016,October,42,11,2,9,2,0,0,HB,AUT,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,81,0,1,Check-Out,2016-10-22,Fall,2016-10-11T07:00Z +Keep,1,2016,October,42,15,2,5,2,0,0,HB,AUT,Groups,Corporate, 0,0,0,E,A,0,No Deposit , NULL, NULL,0,Transient,54.43,0,1,Check-Out,2016-10-22,Fall,2016-10-15T07:00Z +Keep,61,2016,October,42,15,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121,0,0,Check-Out,2016-10-22,Fall,2016-10-15T07:00Z +Keep,20,2016,October,43,18,0,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57,1,2,Check-Out,2016-10-22,Fall,2016-10-18T07:00Z +Keep,170,2016,October,43,16,2,4,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,110.83,0,0,Check-Out,2016-10-22,Fall,2016-10-16T07:00Z +Keep,72,2016,October,43,20,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-22,Fall,2016-10-20T07:00Z +Keep,0,2016,October,43,21,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2016-10-22,Fall,2016-10-21T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,TA/TO, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,75,1,2,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,43,2016,October,43,19,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2016-10-22,Fall,2016-10-19T07:00Z +Keep,43,2016,October,43,19,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2016-10-22,Fall,2016-10-19T07:00Z +Keep,0,2016,October,43,21,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-10-22,Fall,2016-10-21T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,TA/TO, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,91,2016,October,43,16,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-10-22,Fall,2016-10-16T07:00Z +Keep,1,2016,October,43,20,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,91,0,0,Check-Out,2016-10-22,Fall,2016-10-20T07:00Z +Keep,1,2016,December,50,5,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Group,66,1,1,Check-Out,2016-12-06,Winter,2016-12-05T08:00Z +Keep,77,2016,October,43,18,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient,48,0,1,Check-Out,2016-10-22,Fall,2016-10-18T07:00Z +Keep,100,2016,October,43,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2016-10-22,Fall,2016-10-19T07:00Z +Keep,100,2016,October,43,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2016-10-22,Fall,2016-10-19T07:00Z +Keep,30,2016,October,42,15,2,5,2,2,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,146.71,1,0,Check-Out,2016-10-22,Fall,2016-10-15T07:00Z +Keep,0,2016,October,43,21,0,1,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,60.87,0,1,Check-Out,2016-10-22,Fall,2016-10-21T07:00Z +Keep,15,2016,October,43,19,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-10-22,Fall,2016-10-19T07:00Z +Keep,111,2016,October,43,18,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,57.76,0,0,Check-Out,2016-10-22,Fall,2016-10-18T07:00Z +Keep,14,2016,October,43,20,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,3,Check-Out,2016-10-22,Fall,2016-10-20T07:00Z +Keep,0,2016,October,43,21,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 241, NULL,0,Transient,52.36,0,1,Check-Out,2016-10-22,Fall,2016-10-21T07:00Z +Keep,11,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,65,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,0,2016,October,43,22,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,163,2016,October,43,16,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,102.43,0,2,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,150,2016,October,43,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,57,0,0,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,132,2016,October,43,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,95,0,0,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,132,2016,October,43,16,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,93,0,0,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,386,2016,October,43,20,0,3,2,1,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,60,0,1,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,36,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,46,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,38,2016,October,44,23,1,0,1,0,0,BB,GBR,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,46,0,1,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,36,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,205,2016,October,42,9,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,39.4,0,0,Check-Out,2016-10-23,Fall,2016-10-09T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,0,2016,October,43,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,159,2016,October,43,22,0,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,H,0,No Deposit , 240, NULL,0,Transient,101,0,1,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,50.33,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,244,2016,October,43,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,244,2016,October,43,16,2,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,145.5,0,1,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,25,2016,October,43,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Keep,36,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,0,2016,October,43,22,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,39,2016,October,44,23,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,47,0,0,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,390,2016,October,44,24,1,0,2,0,0,BB,GBR,Groups,Corporate, 0,0,1,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,9,2016,October,43,21,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Keep,2,2016,October,43,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,3,2016,October,43,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,3,No Deposit , 250, NULL,0,Transient,140,0,2,Check-Out,2016-10-23,Fall,2016-10-22T07:00Z +Keep,0,2016,October,43,21,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,85.5,0,1,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Keep,255,2016,October,43,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,75.6,0,0,Check-Out,2016-10-23,Fall,2016-10-16T07:00Z +Keep,386,2016,October,43,20,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient-Party,46,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,13,2016,October,43,21,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-10-23,Fall,2016-10-21T07:00Z +Keep,15,2017,January,4,26,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient-Party,88,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,53,2017,April,17,28,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,2,E,F,0,No Deposit , 240, NULL,0,Transient,147,0,2,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,11,2017,June,24,14,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,3,E,E,0,No Deposit , 240, NULL,0,Transient,216,1,2,Check-Out,2017-06-18,Summer,2017-06-14T07:00Z +Keep,41,2017,August,33,18,1,2,2,0,0,HB,PRT,Direct,TA/TO, 1,0,4,F,F,0,No Deposit , 250, NULL,0,Transient,331,1,2,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,15,2017,January,4,26,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,88,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,5,2017,August,33,19,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,231,0,2,Check-Out,2017-08-20,Summer,2017-08-19T07:00Z +Keep,0,2017,August,34,20,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,2,Check-Out,2017-08-21,Summer,2017-08-20T07:00Z +Keep,386,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,36,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,39,2016,October,44,23,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,0,No Deposit , 327, NULL,0,Transient,46,0,1,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,36,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,39,2016,October,44,23,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,47,0,0,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,36,2016,October,43,20,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,I,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-23,Fall,2016-10-20T07:00Z +Keep,39,2016,October,44,23,1,0,2,0,0,BB,GBR,Online travel agent,Corporate, 0,0,0,D,A,0,No Deposit , 241, NULL,0,Transient,57.75,0,1,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,9,2016,October,44,23,0,0,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,G,5,No Deposit , NULL, NULL,0,Transient-Party,0,0,1,Check-Out,2016-10-23,Fall,2016-10-23T07:00Z +Keep,389,2016,October,44,23,0,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,D,5,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-23,Fall,2016-10-23T07:00Z +Keep,389,2016,October,44,23,0,0,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2016-10-23,Fall,2016-10-23T07:00Z +Keep,77,2016,October,43,17,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,9.71,0,0,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,79,0,1,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,1,0,BB,GBR,Groups,Corporate, 0,0,0,C,C,2,No Deposit , NULL, NULL,0,Transient-Party,89,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,79,0,1,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,61,2016,October,44,23,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,62,2016,October,44,23,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,49,0,1,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,36,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,36,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,6,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,1,2016,October,44,23,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,10,2016,October,43,16,3,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,144.75,1,1,Check-Out,2016-10-24,Fall,2016-10-16T07:00Z +Keep,173,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,58.71,0,1,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,173,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,57,0,1,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,385,2016,October,43,19,1,4,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-19T07:00Z +Keep,107,2016,October,43,17,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,118,0,1,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,105,2016,October,43,20,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,46,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,36,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,H,1,No Deposit , NULL, NULL,0,Transient-Party,6,1,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,77,2016,October,43,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,10,0,0,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,134,2016,October,43,17,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,220,2016,October,43,17,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,72.75,0,0,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,189,2016,October,43,21,1,2,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,72.56,0,1,Check-Out,2016-10-24,Fall,2016-10-21T07:00Z +Keep,111,2016,October,43,21,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,0,1,Check-Out,2016-10-24,Fall,2016-10-21T07:00Z +Keep,189,2016,October,43,21,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,53.57,0,1,Check-Out,2016-10-24,Fall,2016-10-21T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,50.5,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,1,2016,October,44,23,1,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-10-24,Fall,2016-10-23T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,51,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,222,2016,October,43,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient,64,0,2,Check-Out,2016-10-24,Fall,2016-10-17T07:00Z +Keep,221,2016,October,44,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.2,0,2,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,101,2016,October,43,20,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2016-10-24,Fall,2016-10-20T07:00Z +Keep,95,2016,October,44,25,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,58,0,3,Check-Out,2016-10-28,Fall,2016-10-25T07:00Z +Keep,5,2016,October,44,24,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,39,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,180,2016,October,43,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,62.3,0,1,Check-Out,2016-10-25,Fall,2016-10-18T07:00Z +Keep,386,2016,October,43,20,2,3,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,81,0,2,Check-Out,2016-10-25,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,49,0,0,Check-Out,2016-10-25,Fall,2016-10-20T07:00Z +Keep,386,2016,October,43,20,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,50.6,0,0,Check-Out,2016-10-25,Fall,2016-10-20T07:00Z +Keep,66,2016,October,43,21,2,2,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,75.76,1,1,Check-Out,2016-10-25,Fall,2016-10-21T07:00Z +Keep,125,2016,October,43,18,2,5,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-10-25,Fall,2016-10-18T07:00Z +Keep,386,2016,October,43,20,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-25,Fall,2016-10-20T07:00Z +Keep,4,2016,October,44,24,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,46.8,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,3,2016,October,44,24,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 353,0,Transient,50,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,6,2017,February,8,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 353,0,Transient-Party,35,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,4,2016,October,44,24,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 254,0,Transient,54.9,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,4,2016,December,52,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 254, NULL,0,Transient,39,0,0,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,92,2016,October,44,23,2,0,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,71.2,0,2,Check-Out,2016-10-25,Fall,2016-10-23T07:00Z +Keep,0,2016,October,43,22,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,89,0,0,Check-Out,2016-10-25,Fall,2016-10-22T07:00Z +Keep,3,2016,October,44,24,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,37.31,0,1,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,169,2016,October,43,21,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,63.5,0,1,Check-Out,2016-10-25,Fall,2016-10-21T07:00Z +Keep,7,2016,October,44,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,52.36,1,1,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,386,2016,October,43,20,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2016-10-25,Fall,2016-10-20T07:00Z +Keep,0,2016,October,44,24,1,0,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,0,2017,March,10,9,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,0,2017,April,16,21,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,63.75,0,1,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,161,2016,October,43,18,2,5,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,81.62,0,0,Check-Out,2016-10-25,Fall,2016-10-18T07:00Z +Keep,161,2016,October,43,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,60.46,0,0,Check-Out,2016-10-25,Fall,2016-10-18T07:00Z +Keep,3,2016,October,44,24,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,37.31,0,1,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,0,2016,October,44,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,0,2016,October,44,24,1,0,2,0,0,BB,ROU,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-10-25,Fall,2016-10-24T07:00Z +Keep,124,2016,October,43,22,2,1,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,115,1,0,Check-Out,2016-10-25,Fall,2016-10-22T07:00Z +Keep,124,2016,October,43,22,2,1,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-25,Fall,2016-10-22T07:00Z +Keep,80,2016,October,43,22,2,1,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,115,1,0,Check-Out,2016-10-25,Fall,2016-10-22T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,4,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient-Party,75,1,1,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient-Party,115,0,0,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,122,2016,October,43,20,2,4,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-20T07:00Z +Keep,1,2016,October,44,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 47, NULL,0,Transient-Party,42,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,0,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 47,0,Group,35,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,13,2016,October,44,24,1,1,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,67,1,0,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,37,2016,October,44,25,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,1,2,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,23,2016,October,44,24,1,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,1,2,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,12,2016,October,44,23,2,1,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,65,1,0,Check-Out,2016-10-26,Fall,2016-10-23T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,124,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,F,F,3,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,124,2016,October,43,22,2,2,1,0,0,BB,SWE,Groups,Corporate, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient-Party,77,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,11,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,65,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,11,2016,October,43,22,2,2,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,115,1,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,1,2016,October,44,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,0,2016,October,44,25,0,1,1,0,0,BB,NOR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,166,2016,October,43,19,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98.14,0,2,Check-Out,2016-10-26,Fall,2016-10-19T07:00Z +Keep,163,2016,October,43,16,4,6,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,99.3,0,2,Check-Out,2016-10-26,Fall,2016-10-16T07:00Z +Keep,24,2016,October,44,24,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,32,2016,October,44,24,1,1,2,0,1,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,40,0,1,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,131,2016,October,43,22,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 336, NULL,0,Transient,96,0,0,Check-Out,2016-10-26,Fall,2016-10-22T07:00Z +Keep,23,2016,October,44,24,1,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,78,0,2,Check-Out,2016-10-26,Fall,2016-10-24T07:00Z +Keep,123,2016,October,43,21,2,3,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,F,F,3,No Deposit , NULL, NULL,0,Transient-Party,95,1,0,Check-Out,2016-10-26,Fall,2016-10-21T07:00Z +Keep,37,2016,October,44,25,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-10-26,Fall,2016-10-25T07:00Z +Keep,2,2016,October,44,23,2,2,1,0,0,SC,SWE,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,4.5,0,1,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,123,2016,October,43,21,2,4,2,0,0,BB,SWE,Groups,Corporate, 0,0,0,G,G,3,No Deposit , NULL, NULL,0,Transient,115,1,0,Check-Out,2016-10-27,Fall,2016-10-21T07:00Z +Keep,66,2016,October,43,18,2,7,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,89.78,0,1,Check-Out,2016-10-27,Fall,2016-10-18T07:00Z +Keep,66,2016,October,43,18,2,7,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,89.78,0,1,Check-Out,2016-10-27,Fall,2016-10-18T07:00Z +Keep,156,2016,October,43,20,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,104.71,0,0,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,156,2016,October,43,20,2,5,1,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,94.71,0,1,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,176,2016,October,43,19,2,6,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,72,0,0,Check-Out,2016-10-27,Fall,2016-10-19T07:00Z +Keep,103,2016,October,44,23,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,55,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,185,2016,October,43,20,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Contract,123.41,0,0,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,65,2016,October,44,23,2,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,73.44,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,2,2016,October,44,26,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,216,2016,October,42,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Contract,48.75,0,0,Check-Out,2016-10-27,Fall,2016-10-13T07:00Z +Keep,63,2016,October,44,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,42.43,0,1,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,386,2016,October,43,20,2,5,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,79,0,1,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,216,2016,October,42,13,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,63.4,0,0,Check-Out,2016-10-27,Fall,2016-10-13T07:00Z +Keep,386,2016,October,43,20,2,5,3,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,B,1,No Deposit , NULL, NULL,0,Transient-Party,79,0,1,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,22,2016,October,44,25,0,2,2,0,0,BB,SWE,Direct,Direct, 0,0,0,D,E,3,No Deposit , 250, NULL,0,Transient,75,1,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,14,2016,October,44,24,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,39,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,29,2016,October,44,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,25,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,58.8,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,25,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,52.8,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,25,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,52.8,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,25,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,39,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,0,2016,October,44,25,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,8,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 460,0,Transient,54.9,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,8,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 460,0,Transient,54.9,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,42,2016,October,44,23,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,88,0,2,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,6,2016,October,44,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,46,0,2,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,6,2016,October,44,26,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,46,0,2,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,5,2016,October,44,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,11,2016,October,44,25,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient-Party,54.9,0,0,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,85,2016,October,44,25,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,88,0,1,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,85,2016,October,44,25,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,94,0,1,Check-Out,2016-10-27,Fall,2016-10-25T07:00Z +Keep,19,2016,October,44,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient-Party,54,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,129,2016,October,44,23,2,2,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,76.4,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,18,2016,October,44,24,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,50.05,0,1,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,72,2016,October,44,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,48,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,190,2016,October,44,24,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,61.2,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,190,2016,October,44,24,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,61.2,0,0,Check-Out,2016-10-27,Fall,2016-10-24T07:00Z +Keep,18,2016,October,43,21,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100.5,1,1,Check-Out,2016-10-27,Fall,2016-10-21T07:00Z +Keep,49,2016,October,44,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient-Party,81.5,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,4,2016,October,44,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,81.5,0,0,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,38,2016,October,44,23,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,63.4,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,58,2016,October,44,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,0,2016,October,44,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 96, NULL,0,Transient,48,0,0,Check-Out,2016-10-27,Fall,2016-10-23T07:00Z +Keep,34,2016,October,44,27,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-10-27,Fall,2016-10-27T07:00Z +Keep,386,2016,October,43,20,2,5,2,1,0,BB,GBR,Groups,Corporate, 0,0,0,C,C,2,No Deposit , NULL, NULL,0,Transient,97,0,0,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,98,2016,October,43,20,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,I,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,166,2016,October,43,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,52.71,0,3,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,166,2016,October,43,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,52.71,0,3,Check-Out,2016-10-27,Fall,2016-10-20T07:00Z +Keep,0,2016,October,44,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,63,1,1,Check-Out,2016-10-27,Fall,2016-10-26T07:00Z +Keep,281,2016,October,43,22,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,41.33,0,0,Check-Out,2016-10-27,Fall,2016-10-22T07:00Z +Keep,34,2016,October,44,27,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-10-27,Fall,2016-10-27T07:00Z +Keep,39,2016,October,44,27,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-10-27,Fall,2016-10-27T07:00Z +Keep,31,2016,October,44,28,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,47,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,0,2016,October,44,26,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 306, NULL,0,Transient,50.18,0,0,Check-Out,2016-10-28,Fall,2016-10-26T07:00Z +Keep,1,2016,October,44,26,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 184, NULL,0,Transient,96,1,0,Check-Out,2016-10-28,Fall,2016-10-26T07:00Z +Keep,38,2016,October,44,24,1,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,63.4,0,0,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,4,2016,October,44,24,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,1,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,4,2016,October,44,24,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,39,0,1,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,116,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,1,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,116,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,323,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,40.19,0,2,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,323,2016,October,44,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,40.19,0,2,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,8,2016,October,44,25,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2016-10-28,Fall,2016-10-25T07:00Z +Keep,8,2016,October,44,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient-Party,40.8,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,8,2016,October,44,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient-Party,40.8,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,29,2016,October,44,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 113,0,Transient,45,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,28,2016,November,49,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 113,0,Transient,41.5,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,20,2016,October,44,26,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 10, NULL,0,Transient,41.4,0,0,Check-Out,2016-10-28,Fall,2016-10-26T07:00Z +Keep,5,2016,October,44,27,0,1,3,0,0,HB,AUT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,151,1,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,3,2016,October,44,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,121,2016,October,44,25,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,95.53,0,2,Check-Out,2016-10-28,Fall,2016-10-25T07:00Z +Keep,2,2016,December,52,23,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,E,E,0,No Deposit , 171, NULL,0,Transient,50,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,362,2016,December,52,24,1,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,1,E,E,2,No Deposit , 57, NULL,0,Contract,80,0,1,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,60,2016,December,53,26,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,2,E,E,0,No Deposit , 241, NULL,0,Transient,43.65,0,1,Check-Out,2016-12-27,Winter,2016-12-26T08:00Z +Keep,151,2017,May,22,29,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,4,D,D,0,No Deposit , 95, NULL,0,Transient,70.2,0,2,Check-Out,2017-06-01,Spring,2017-05-29T07:00Z +Keep,2,2017,June,22,1,0,1,2,0,0,BB,GBR,Direct,Direct, 1,0,4,D,D,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,240,2016,October,43,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,84.95,1,2,Check-Out,2016-10-28,Fall,2016-10-21T07:00Z +Keep,32,2016,October,44,26,0,2,2,2,0,BB,IND,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,1,1,Check-Out,2016-10-28,Fall,2016-10-26T07:00Z +Keep,52,2016,October,44,23,2,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,171,0,0,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,17,2016,October,44,24,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,0,2016,October,44,28,0,1,2,0,0,BB,IRL,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,1,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,0,2016,October,44,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 314, NULL,0,Transient,58.8,1,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,0,2016,October,44,27,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,58.8,1,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,2,2016,October,44,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 92,0,Transient,42,0,0,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,76,2016,October,44,23,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-10-28,Fall,2016-10-23T07:00Z +Keep,240,2016,October,43,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 2, NULL,0,Contract,74.75,0,2,Check-Out,2016-10-28,Fall,2016-10-21T07:00Z +Keep,0,2016,October,44,27,0,1,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,66,2016,October,44,24,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,48,0,1,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,39,2016,October,44,24,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,2,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,139,2016,October,43,21,2,5,3,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,96.4,0,0,Check-Out,2016-10-28,Fall,2016-10-21T07:00Z +Keep,223,2016,October,43,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,66.6,0,2,Check-Out,2016-10-28,Fall,2016-10-21T07:00Z +Keep,240,2016,October,43,21,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Contract,90.95,0,2,Check-Out,2016-10-28,Fall,2016-10-21T07:00Z +Keep,19,2016,October,44,24,1,3,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 2, NULL,0,Transient,65.75,0,1,Check-Out,2016-10-28,Fall,2016-10-24T07:00Z +Keep,21,2016,October,44,27,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,105.75,1,2,Check-Out,2016-10-28,Fall,2016-10-27T07:00Z +Keep,5,2016,October,44,26,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.5,1,1,Check-Out,2016-10-28,Fall,2016-10-26T07:00Z +Keep,1,2016,October,44,29,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,42.86,0,3,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,11,2016,October,44,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,156,2016,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Contract,55,0,0,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,0,2016,October,44,23,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,46,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,0,2016,October,44,23,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,46,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,0,2016,October,44,23,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Group,46,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,10,2016,October,44,26,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,91,2016,October,43,22,2,5,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,128.14,1,0,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,64,2016,October,44,25,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,208,2016,October,43,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,49.5,0,0,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,3,2016,October,44,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,194,2016,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 430, NULL,0,Transient,82.28,0,0,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,0,2016,October,44,27,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-10-29,Fall,2016-10-27T07:00Z +Keep,8,2016,October,44,26,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,1,2016,October,44,27,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2016-10-29,Fall,2016-10-27T07:00Z +Keep,0,2016,October,44,29,0,1,2,0,0,BB,CN,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,93,2016,October,43,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,69.71,0,2,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,81,2016,October,44,25,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,1,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,115,2016,October,44,23,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,49,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,18,2016,October,44,24,1,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,46,0,0,Check-Out,2016-10-29,Fall,2016-10-24T07:00Z +Keep,22,2016,October,44,24,1,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,139,1,1,Check-Out,2016-10-29,Fall,2016-10-24T07:00Z +Keep,115,2016,October,44,23,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,28,2016,October,44,26,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,129,2016,October,44,25,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,1,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,52,2016,October,44,25,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,37,2016,October,44,25,0,4,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,183,0,1,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,7,2016,October,44,24,1,4,2,1,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient-Party,119,0,3,Check-Out,2016-10-29,Fall,2016-10-24T07:00Z +Keep,1,2016,October,44,24,1,4,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,76,0,0,Check-Out,2016-10-29,Fall,2016-10-24T07:00Z +Keep,63,2016,October,44,25,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,0,0,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,255,2016,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,74.61,0,1,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,29,2016,October,44,26,0,3,2,0,0,HB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,72,0,0,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,27,2016,October,44,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,255,2016,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,74.9,0,1,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,0,2016,October,44,28,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,290,2016,October,44,23,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,117,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,216,2016,October,44,23,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,41.76,0,0,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,10,2016,October,44,26,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,75,0,1,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,10,2016,October,44,26,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,75,0,1,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,255,2016,October,43,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 143, NULL,0,Transient,74.9,0,1,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,37,2016,October,44,26,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,70,0,0,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,47,2016,October,44,25,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,48,0,0,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,56,2016,October,44,25,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,47.5,0,0,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,115,2016,October,44,23,2,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,58,0,1,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,1,2016,October,44,27,0,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,70,0,0,Check-Out,2016-10-29,Fall,2016-10-27T07:00Z +Keep,218,2016,October,43,22,2,5,2,1,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,71,0,1,Check-Out,2016-10-29,Fall,2016-10-22T07:00Z +Keep,0,2016,October,44,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,0,2016,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,0,2016,November,46,7,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,8,2016,October,44,26,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,I,1,No Deposit , NULL, NULL,0,Transient,92.5,1,1,Check-Out,2016-10-29,Fall,2016-10-26T07:00Z +Keep,2,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,I,0,No Deposit , NULL, NULL,0,Transient,85,1,1,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,12,2016,October,45,30,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,92.5,1,1,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,82,2016,October,44,25,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,46,0,0,Check-Out,2016-10-29,Fall,2016-10-25T07:00Z +Keep,82,2016,October,44,23,2,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51,0,2,Check-Out,2016-10-29,Fall,2016-10-23T07:00Z +Keep,0,2016,October,44,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-10-29,Fall,2016-10-28T07:00Z +Keep,43,2016,October,44,29,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-10-29,Fall,2016-10-29T07:00Z +Keep,39,2016,October,44,29,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-10-29,Fall,2016-10-29T07:00Z +Keep,2,2016,October,44,29,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-10-29,Fall,2016-10-29T07:00Z +Keep,44,2016,October,44,23,2,5,3,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 69, NULL,0,Transient,129.45,0,0,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,118,2016,October,44,23,2,5,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,79.2,0,1,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,118,2016,October,44,23,2,5,3,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,111.2,0,1,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,20,2016,October,44,24,1,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,96.13,0,1,Check-Out,2016-10-30,Fall,2016-10-24T07:00Z +Keep,14,2016,October,44,28,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,38,2016,October,44,28,0,2,2,0,0,BB,NLD,Corporate,Corporate, 0,0,0,F,F,2,No Deposit , NULL, 447,0,Transient,51,1,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,0,2017,January,3,16,1,1,2,0,0,BB,NLD,Corporate,Corporate, 1,0,1,A,G,2,No Deposit , NULL, 447,0,Transient,36,1,1,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,234,2016,October,44,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,39.4,0,2,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,16,2016,October,44,27,0,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 317,0,Transient-Party,63,0,0,Check-Out,2016-10-30,Fall,2016-10-27T07:00Z +Keep,87,2016,October,44,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,70,0,0,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,17,2016,October,44,27,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,122.67,1,2,Check-Out,2016-10-30,Fall,2016-10-27T07:00Z +Keep,226,2016,October,44,23,2,5,2,1,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,94.64,0,0,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,17,2016,October,44,28,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 317,0,Transient-Party,63,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,47,2016,October,44,28,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,37,2016,October,44,25,0,5,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,178,0,0,Check-Out,2016-10-30,Fall,2016-10-25T07:00Z +Keep,131,2016,October,43,16,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,81,0,0,Check-Out,2016-10-30,Fall,2016-10-16T07:00Z +Keep,234,2016,October,44,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,37.4,0,2,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,17,2016,October,44,28,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 317,0,Transient-Party,63,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,35,2016,October,44,28,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 339, NULL,0,Transient,78,1,2,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,145,2016,October,44,23,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,72.4,0,0,Check-Out,2016-10-30,Fall,2016-10-23T07:00Z +Keep,39,2016,October,44,29,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,59,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,21,2016,October,44,29,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,92,2016,October,44,25,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,70.2,0,0,Check-Out,2016-10-30,Fall,2016-10-25T07:00Z +Keep,146,2016,October,44,28,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,D,D,3,No Deposit , NULL, NULL,142,Transient-Party,52,1,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,55,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,58.5,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,20,2016,October,44,26,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,69.68,1,1,Check-Out,2016-10-30,Fall,2016-10-26T07:00Z +Keep,4,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,10,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,20,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,H,1,No Deposit , 250, NULL,0,Transient,38,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,18,2016,October,44,29,0,1,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,17,2016,October,44,28,0,2,2,0,0,BB,CN,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,0,2016,October,45,30,1,0,2,0,0,BB,CN,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,11,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,10,2016,October,44,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,0,2016,October,44,29,0,1,2,0,0,BB,CPV,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,136,2016,October,44,24,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2016-10-30,Fall,2016-10-24T07:00Z +Keep,0,2016,October,44,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,0,2016,October,44,29,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,90,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,2,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,8,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,28,2016,October,44,27,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.2,0,1,Check-Out,2016-10-30,Fall,2016-10-27T07:00Z +Keep,138,2016,October,44,26,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,4,Check-Out,2016-10-30,Fall,2016-10-26T07:00Z +Keep,138,2016,October,44,26,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-10-30,Fall,2016-10-26T07:00Z +Keep,19,2016,October,44,27,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,136.67,0,1,Check-Out,2016-10-30,Fall,2016-10-27T07:00Z +Keep,138,2016,October,44,26,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2016-10-30,Fall,2016-10-26T07:00Z +Keep,0,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,20,2016,October,44,28,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,16,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Cancel,1,2016,October,45,30,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,No-Show,2016-10-30,Fall,2016-10-30T07:00Z +Keep,178,2016,October,43,16,4,10,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,80.57,0,0,Check-Out,2016-10-30,Fall,2016-10-16T07:00Z +Keep,13,2016,October,44,28,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,10,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,62,0,1,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,7,2016,October,44,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,1,Check-Out,2016-10-30,Fall,2016-10-28T07:00Z +Keep,10,2016,October,44,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,1,Check-Out,2016-10-30,Fall,2016-10-29T07:00Z +Keep,115,2016,October,43,22,3,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58.22,0,1,Check-Out,2016-10-31,Fall,2016-10-22T07:00Z +Keep,92,2016,October,44,27,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,74,0,2,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,133,2016,October,44,24,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,94,0,2,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,92,2016,October,44,27,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,74,0,2,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,45,2016,October,44,26,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,94,1,2,Check-Out,2016-10-31,Fall,2016-10-26T07:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,61,2016,October,44,24,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,41,0,0,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,23,2016,October,44,25,1,5,2,1,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,D,D,5,No Deposit , 240, NULL,0,Transient,138.33,1,3,Check-Out,2016-10-31,Fall,2016-10-25T07:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 346,0,Transient-Party,66,0,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,129,2016,October,44,28,1,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 2, NULL,0,Transient,93,0,0,Check-Out,2016-10-31,Fall,2016-10-28T07:00Z +Keep,62,2016,October,44,25,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Transient,44,0,0,Check-Out,2016-10-31,Fall,2016-10-25T07:00Z +Keep,33,2016,October,44,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74,0,4,Check-Out,2016-10-31,Fall,2016-10-29T07:00Z +Keep,11,2016,October,44,28,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-10-31,Fall,2016-10-28T07:00Z +Keep,0,2016,October,45,31,1,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,71,1,0,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,35,2016,October,44,24,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,46,0,0,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,33,2016,October,44,27,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80.5,1,0,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,1,2016,October,45,30,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,66,0,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 346,0,Transient-Party,66,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,36,2016,October,44,27,1,3,3,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,55,0,0,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,9,2016,October,44,27,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,170,2016,October,43,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,49.5,0,1,Check-Out,2016-10-31,Fall,2016-10-17T07:00Z +Keep,154,2016,October,44,24,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,54.2,0,1,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,5,2016,October,44,26,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-10-31,Fall,2016-10-26T07:00Z +Keep,22,2016,October,44,26,1,4,2,1,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,145,1,2,Check-Out,2016-10-31,Fall,2016-10-26T07:00Z +Keep,5,2016,October,44,29,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,38,0,2,Check-Out,2016-10-31,Fall,2016-10-29T07:00Z +Keep,5,2016,October,44,29,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,38,0,2,Check-Out,2016-10-31,Fall,2016-10-29T07:00Z +Keep,30,2016,October,44,28,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2016-10-31,Fall,2016-10-28T07:00Z +Keep,69,2016,October,44,27,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,79.2,0,1,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,69,2016,October,44,27,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,79.2,0,1,Check-Out,2016-10-31,Fall,2016-10-27T07:00Z +Keep,1,2016,October,45,30,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,60,1,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,33,2016,October,44,24,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,33,2016,October,44,24,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,40,0,0,Check-Out,2016-10-31,Fall,2016-10-24T07:00Z +Keep,17,2016,October,45,30,1,0,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 346,0,Transient,66,0,0,Check-Out,2016-10-31,Fall,2016-10-30T07:00Z +Keep,159,2016,October,44,28,1,2,2,0,0,BB,AUS,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,71.2,0,0,Check-Out,2016-10-31,Fall,2016-10-28T07:00Z +Keep,2,2016,October,45,31,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,0,0,2,Check-Out,2016-10-31,Fall,2016-10-31T07:00Z +Keep,6,2016,November,45,1,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-11-01,Fall,2016-11-01T07:00Z +Keep,47,2016,November,45,1,0,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,32.34,0,1,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,34,2016,November,45,1,2,7,2,0,0,HB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,47.4,0,1,Check-Out,2016-11-10,Fall,2016-11-01T07:00Z +Keep,187,2016,October,43,21,4,7,2,1,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,77.4,0,0,Check-Out,2016-11-01,Fall,2016-10-21T07:00Z +Keep,187,2016,October,43,21,4,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient-Party,77.4,0,0,Check-Out,2016-11-01,Fall,2016-10-21T07:00Z +Keep,187,2016,October,43,21,4,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient-Party,79.4,0,0,Check-Out,2016-11-01,Fall,2016-10-21T07:00Z +Keep,48,2016,October,44,29,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64,0,2,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,123,2016,October,44,28,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,48.95,0,1,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,32,2016,October,44,28,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,1,2016,October,45,31,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,57.97,1,1,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,0,2016,November,45,1,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,1,0,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,38,2016,October,44,29,2,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,2,2016,October,45,30,2,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,6,1,0,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,46,2016,October,44,29,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,160,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,46.4,0,1,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,0,2016,October,45,31,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,14,2016,October,44,28,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,14,2016,October,44,28,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,0,Check-Out,2016-11-01,Fall,2016-10-28T07:00Z +Keep,51,2016,October,45,30,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,21,2016,October,44,29,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,6,2016,October,45,31,1,0,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,145,1,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,6,2016,October,45,31,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,150,1,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,0,2016,October,45,30,2,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,B,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,1,2016,October,45,31,1,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,108,0,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,160,2016,October,44,26,2,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,46.98,0,1,Check-Out,2016-11-01,Fall,2016-10-26T07:00Z +Keep,236,2017,January,2,10,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,46.17,0,1,Check-Out,2017-01-14,Winter,2017-01-10T08:00Z +Keep,10,2016,October,44,29,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,2,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,0,2016,October,45,30,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,66,1,0,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,42,2016,October,44,29,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.23,0,0,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,1,2016,October,45,30,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,1,1,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,1,2016,November,45,1,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,1,1,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,42,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.73,0,0,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,0,2016,October,45,31,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,41.57,0,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,2,2016,October,45,30,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-11-01,Fall,2016-10-30T07:00Z +Keep,50,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,50,2016,October,44,29,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,69.67,0,2,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,10,2016,October,44,29,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,2,Check-Out,2016-11-01,Fall,2016-10-29T07:00Z +Keep,83,2016,October,45,31,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,37.8,0,0,Check-Out,2016-11-01,Fall,2016-10-31T07:00Z +Keep,141,2016,October,43,19,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,81.66,0,1,Check-Out,2016-11-02,Fall,2016-10-19T07:00Z +Keep,93,2016,October,44,27,2,4,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,102.93,1,1,Check-Out,2016-11-02,Fall,2016-10-27T07:00Z +Keep,38,2016,October,45,31,1,1,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,13,2016,October,45,30,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2016-11-02,Fall,2016-10-30T07:00Z +Keep,89,2016,October,44,29,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.9,0,2,Check-Out,2016-11-02,Fall,2016-10-29T07:00Z +Keep,89,2016,October,44,29,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.9,0,2,Check-Out,2016-11-02,Fall,2016-10-29T07:00Z +Keep,0,2016,October,45,31,1,1,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,118.5,1,0,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,2,2016,November,45,1,0,1,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,2,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,137,2016,October,44,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.46,0,1,Check-Out,2016-11-02,Fall,2016-10-26T07:00Z +Keep,149,2016,October,44,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.94,0,2,Check-Out,2016-11-02,Fall,2016-10-26T07:00Z +Keep,121,2016,October,44,25,2,6,1,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.45,0,2,Check-Out,2016-11-02,Fall,2016-10-25T07:00Z +Keep,121,2016,October,44,25,2,6,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,70.45,0,1,Check-Out,2016-11-02,Fall,2016-10-25T07:00Z +Keep,21,2016,October,44,29,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,60.64,0,1,Check-Out,2016-11-02,Fall,2016-10-29T07:00Z +Keep,77,2016,October,44,28,2,3,3,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,114.6,0,2,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,77,2016,October,44,28,2,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,69.12,0,3,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,6,2016,November,45,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,45,0,0,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,43,2016,October,44,28,2,3,2,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,65.75,0,0,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,43,2016,October,44,28,2,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,195,2016,October,44,27,2,4,2,2,0,HB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,139.05,0,0,Check-Out,2016-11-02,Fall,2016-10-27T07:00Z +Keep,81,2016,October,45,30,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.81,0,1,Check-Out,2016-11-02,Fall,2016-10-30T07:00Z +Keep,141,2016,October,43,19,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,79.66,0,1,Check-Out,2016-11-02,Fall,2016-10-19T07:00Z +Keep,160,2016,October,44,28,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105.8,0,0,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,193,2016,October,44,28,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,50.84,0,1,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,0,2016,November,45,1,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,39,2016,October,44,28,2,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,118.84,1,1,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,90,2016,October,44,29,2,2,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.9,1,1,Check-Out,2016-11-02,Fall,2016-10-29T07:00Z +Keep,0,2016,November,45,1,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,1,0,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,18,2016,November,45,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,66,1,1,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,46,2016,October,45,30,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,53.41,0,1,Check-Out,2016-11-02,Fall,2016-10-30T07:00Z +Keep,18,2016,November,45,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2016-11-02,Fall,2016-11-01T07:00Z +Keep,72,2016,October,45,31,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,43.8,1,1,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,94,2016,October,44,28,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 171, NULL,0,Transient,57.92,0,2,Check-Out,2016-11-02,Fall,2016-10-28T07:00Z +Keep,2,2016,October,45,31,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62.5,0,0,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,43,2016,October,44,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,79,0,0,Check-Out,2016-11-02,Fall,2016-10-29T07:00Z +Keep,7,2016,October,45,31,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,62.5,0,1,Check-Out,2016-11-02,Fall,2016-10-31T07:00Z +Keep,46,2016,October,44,26,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,43.89,0,0,Check-Out,2016-11-02,Fall,2016-10-26T07:00Z +Keep,3,2016,October,45,30,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,93.5,1,0,Check-Out,2016-11-02,Fall,2016-10-30T07:00Z +Keep,33,2016,October,44,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,55.1,0,0,Check-Out,2016-11-03,Fall,2016-10-27T07:00Z +Keep,43,2016,October,44,29,2,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77.36,0,2,Check-Out,2016-11-03,Fall,2016-10-29T07:00Z +Keep,40,2016,October,45,31,1,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-03,Fall,2016-10-31T07:00Z +Keep,84,2016,October,45,30,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,64.8,0,0,Check-Out,2016-11-03,Fall,2016-10-30T07:00Z +Keep,6,2016,November,45,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 168,0,Transient,30,0,0,Check-Out,2016-11-03,Fall,2016-11-02T07:00Z +Keep,6,2016,November,45,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,39.6,0,0,Check-Out,2016-11-03,Fall,2016-11-02T07:00Z +Keep,3,2017,January,5,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Group,34.4,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,0,2017,March,13,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 314, NULL,0,Transient,56,0,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,32,2016,October,44,27,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,91.85,1,0,Check-Out,2016-11-03,Fall,2016-10-27T07:00Z +Keep,90,2016,October,44,29,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,54.08,0,1,Check-Out,2016-11-03,Fall,2016-10-29T07:00Z +Keep,4,2016,November,45,1,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-11-03,Fall,2016-11-01T07:00Z +Keep,39,2016,November,45,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,3,Check-Out,2016-11-03,Fall,2016-11-01T07:00Z +Keep,39,2016,November,45,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,3,Check-Out,2016-11-03,Fall,2016-11-01T07:00Z +Keep,141,2016,November,45,1,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-03,Fall,2016-11-01T07:00Z +Keep,66,2016,October,44,28,2,4,2,1,0,BB,BEL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,100.27,1,0,Check-Out,2016-11-03,Fall,2016-10-28T07:00Z +Keep,43,2016,October,45,31,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.6,0,2,Check-Out,2016-11-03,Fall,2016-10-31T07:00Z +Keep,43,2016,October,45,31,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42.6,0,2,Check-Out,2016-11-03,Fall,2016-10-31T07:00Z +Keep,162,2016,November,45,1,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-03,Fall,2016-11-01T07:00Z +Keep,3,2016,October,45,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2016-11-03,Fall,2016-10-31T07:00Z +Keep,1,2016,October,45,30,2,2,2,0,0,BB,MDV,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-11-03,Fall,2016-10-30T07:00Z +Keep,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,60.71,0,0,Check-Out,2016-11-03,Fall,2016-10-26T07:00Z +Keep,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,60.71,0,0,Check-Out,2016-11-03,Fall,2016-10-26T07:00Z +Keep,54,2016,October,44,26,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,62.71,0,0,Check-Out,2016-11-03,Fall,2016-10-26T07:00Z +Keep,35,2016,October,44,27,2,5,3,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 6, NULL,0,Transient,54,0,0,Check-Out,2016-11-03,Fall,2016-10-27T07:00Z +Keep,0,2016,November,45,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,0,Check-Out,2016-11-03,Fall,2016-11-02T07:00Z +Keep,30,2016,October,45,30,2,2,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,40.54,0,1,Check-Out,2016-11-03,Fall,2016-10-30T07:00Z +Keep,85,2016,October,44,24,3,7,2,0,0,BB,LTU,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,65.44,0,1,Check-Out,2016-11-03,Fall,2016-10-24T07:00Z +Keep,110,2016,October,44,29,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,52.18,0,0,Check-Out,2016-11-03,Fall,2016-10-29T07:00Z +Keep,34,2016,October,44,28,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89.59,0,2,Check-Out,2016-11-04,Fall,2016-10-28T07:00Z +Keep,61,2016,October,45,31,1,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.4,0,2,Check-Out,2016-11-04,Fall,2016-10-31T07:00Z +Keep,1,2016,November,45,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,28,2016,November,45,2,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,36,2016,October,45,31,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,49.17,0,2,Check-Out,2016-11-04,Fall,2016-10-31T07:00Z +Keep,39,2016,October,45,30,2,3,2,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,66.44,0,1,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,39,2016,October,45,30,2,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,46,2016,November,45,2,0,2,2,0,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,70.8,1,1,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,46,2016,November,45,2,0,2,2,0,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,64.8,0,1,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,38,2016,October,45,30,2,3,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,67.35,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,10,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 470,0,Transient,45,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,8,2016,December,53,29,0,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,4,No Deposit , NULL, 470,0,Transient,44,0,1,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Cancel,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 470,0,Transient,35,0,1,No-Show,2017-01-19,Winter,2017-01-19T08:00Z +Keep,8,2017,June,25,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,2,A,A,0,No Deposit , NULL, 470,0,Transient,75,0,1,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,7,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,7,2016,November,45,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 94, NULL,0,Transient,27,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,40,2016,October,45,30,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient-Party,67.22,1,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,40,2016,October,45,30,2,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient-Party,59.22,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,69,2016,October,45,31,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33,0,1,Check-Out,2016-11-04,Fall,2016-10-31T07:00Z +Keep,7,2016,November,45,3,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,43.2,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,13,2016,November,45,3,0,1,1,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,B,0,No Deposit , 368, NULL,0,Transient-Party,0,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,7,2016,November,45,3,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,43.2,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,7,2016,November,47,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,45,2016,October,44,29,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,80.33,0,1,Check-Out,2016-11-04,Fall,2016-10-29T07:00Z +Keep,13,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,13,2016,November,45,3,0,1,1,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,30.4,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,13,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,47,2016,October,45,30,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48.4,0,1,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,32,2016,November,45,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-04,Fall,2016-11-02T07:00Z +Keep,31,2016,October,44,28,2,5,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,63.47,0,0,Check-Out,2016-11-04,Fall,2016-10-28T07:00Z +Keep,0,2016,November,45,3,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,0,2016,October,45,31,1,3,2,2,0,BB,SWE,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,100,0,0,Check-Out,2016-11-04,Fall,2016-10-31T07:00Z +Keep,3,2016,October,45,30,2,3,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,72.9,0,2,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,292,2016,November,45,3,0,1,2,0,0,BB,UKR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 368, NULL,0,Transient-Party,38,0,1,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,31,2016,October,45,30,2,3,2,0,0,BB,BRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,62.88,1,1,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,89,2016,October,45,30,2,3,1,0,0,HB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,61.8,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,28,2016,November,45,3,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 339, NULL,0,Transient,59.04,0,0,Check-Out,2016-11-04,Fall,2016-11-03T07:00Z +Keep,89,2016,October,45,30,2,3,1,0,0,HB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,61.8,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,89,2016,October,45,30,2,3,2,2,0,HB,GBR,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,128.7,0,0,Check-Out,2016-11-04,Fall,2016-10-30T07:00Z +Keep,18,2016,November,45,4,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-11-04,Fall,2016-11-04T07:00Z +Keep,228,2016,November,45,1,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,53.1,0,1,Check-Out,2016-11-04,Fall,2016-11-01T07:00Z +Keep,48,2016,October,44,29,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,44.14,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,31,2016,October,45,30,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,70.45,0,2,Check-Out,2016-11-05,Fall,2016-10-30T07:00Z +Keep,3,2016,November,45,1,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,62,0,0,Check-Out,2016-11-05,Fall,2016-11-01T07:00Z +Keep,31,2016,October,45,30,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,70.45,0,1,Check-Out,2016-11-05,Fall,2016-10-30T07:00Z +Keep,69,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,52.86,0,3,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,69,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,52.86,0,3,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,43,2016,November,45,1,0,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,1,Check-Out,2016-11-05,Fall,2016-11-01T07:00Z +Keep,33,2016,October,44,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,41.57,0,0,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,43,2016,November,45,1,0,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-11-05,Fall,2016-11-01T07:00Z +Keep,75,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,55.43,1,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,78,2016,November,45,2,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,92.63,1,2,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,146,2016,October,44,29,2,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.43,1,2,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,226,2016,October,44,29,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,56.57,0,3,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,89,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,190,2016,October,45,31,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.88,0,2,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,200,2016,October,44,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,46.51,0,0,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,190,2016,October,45,31,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.88,1,2,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,147,2016,October,44,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.57,0,2,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,9,2016,November,45,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 53,0,Transient,33,0,0,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,99,2016,November,45,4,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,30,2016,November,45,4,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient,51.84,0,0,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,0,2016,November,45,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,39,2016,October,45,31,1,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,88,2016,October,44,29,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,51.43,0,2,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,6,2016,November,45,2,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,67.19,1,1,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,6,2016,November,45,2,0,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,61.19,0,1,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,1,2016,November,45,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 51,0,Transient,48,1,0,Check-Out,2016-11-05,Fall,2016-11-04T07:00Z +Keep,181,2016,October,44,29,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,74.49,0,0,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,17,2016,October,45,30,2,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,55.65,0,1,Check-Out,2016-11-05,Fall,2016-10-30T07:00Z +Keep,181,2016,October,44,29,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,74.49,0,0,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,50,2016,November,45,2,0,3,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,49.5,0,0,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,28,2016,October,45,31,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,33.68,0,1,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,36,2016,October,44,29,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,46.69,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,0,2016,November,45,2,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,96,1,0,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,43,2016,October,45,31,1,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,66.48,1,2,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,62,2016,October,44,26,2,8,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,49.7,0,0,Check-Out,2016-11-05,Fall,2016-10-26T07:00Z +Keep,7,2016,October,45,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-11-05,Fall,2016-10-30T07:00Z +Keep,8,2016,October,45,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.04,0,1,Check-Out,2016-11-05,Fall,2016-10-30T07:00Z +Keep,96,2016,October,44,29,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78.43,0,2,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,158,2016,October,44,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,37.14,0,2,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,142,2016,October,44,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.57,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,19,2016,October,44,26,2,8,2,0,0,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,90.96,0,1,Check-Out,2016-11-05,Fall,2016-10-26T07:00Z +Keep,26,2016,November,45,2,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-05,Fall,2016-11-02T07:00Z +Keep,69,2016,October,44,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,39.21,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,142,2016,October,44,29,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95.71,0,1,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,34,2016,October,45,31,1,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87.48,0,0,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,35,2016,October,45,31,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.68,0,1,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,35,2016,October,45,31,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.68,0,1,Check-Out,2016-11-05,Fall,2016-10-31T07:00Z +Keep,196,2016,October,44,29,2,5,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,96,0,0,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,226,2016,October,44,29,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,56.57,0,3,Check-Out,2016-11-05,Fall,2016-10-29T07:00Z +Keep,111,2016,October,44,27,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,44.28,0,1,Check-Out,2016-11-06,Fall,2016-10-27T07:00Z +Keep,111,2016,October,44,29,2,6,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient,40.85,0,2,Check-Out,2016-11-06,Fall,2016-10-29T07:00Z +Keep,8,2016,November,45,2,0,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,59.26,0,1,Check-Out,2016-11-06,Fall,2016-11-02T07:00Z +Keep,54,2016,October,45,30,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,35,0,0,Check-Out,2016-11-06,Fall,2016-10-30T07:00Z +Keep,6,2016,October,45,31,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,83.5,1,1,Check-Out,2016-11-06,Fall,2016-10-31T07:00Z +Keep,53,2016,October,45,30,2,5,2,1,0,HB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,73.92,0,0,Check-Out,2016-11-06,Fall,2016-10-30T07:00Z +Keep,3,2016,November,45,3,0,3,1,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.57,0,4,Check-Out,2016-11-06,Fall,2016-11-03T07:00Z +Keep,37,2016,November,45,2,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2016-11-06,Fall,2016-11-02T07:00Z +Keep,1,2016,November,45,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,1,2016,November,45,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,157,2016,October,45,30,2,5,2,0,0,BB,CMR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.03,0,1,Check-Out,2016-11-06,Fall,2016-10-30T07:00Z +Keep,108,2016,October,45,31,1,5,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 314, NULL,0,Transient,51.47,0,0,Check-Out,2016-11-06,Fall,2016-10-31T07:00Z +Keep,1,2016,November,45,4,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,3,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,36,2016,November,45,1,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,36,2016,November,45,1,0,5,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,1,2016,November,45,4,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,42,2016,November,45,1,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,2,2016,November,45,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,40,2016,November,45,1,0,5,2,0,0,HB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,201,2016,November,45,5,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,3,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,0,2016,November,45,5,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,0,2016,November,45,5,0,1,2,0,0,BB,MAR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,84,1,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,3,2016,November,45,4,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,1,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,142,2016,October,45,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,39.15,0,0,Check-Out,2016-11-06,Fall,2016-10-30T07:00Z +Keep,17,2016,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,17,2016,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,2,2016,November,45,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,17,2016,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,72,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,6,2016,November,45,5,0,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,89.1,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,36,2016,November,45,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,8,2016,November,45,4,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,82,2016,November,45,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,1,2016,November,45,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,75,0,1,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,86,2016,October,45,30,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,35,0,0,Check-Out,2016-11-06,Fall,2016-10-30T07:00Z +Keep,22,2016,November,45,1,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,0,2,Check-Out,2016-11-06,Fall,2016-11-01T07:00Z +Keep,7,2016,November,45,3,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-11-06,Fall,2016-11-03T07:00Z +Keep,7,2016,November,45,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,11,2016,November,45,2,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.57,0,1,Check-Out,2016-11-06,Fall,2016-11-02T07:00Z +Keep,55,2016,November,45,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 348, NULL,0,Transient,48,1,1,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,29,2016,November,45,4,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,55.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,29,2016,November,45,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,55.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,29,2016,November,45,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,55.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,29,2016,November,45,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,55.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,29,2016,November,45,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,9,2016,November,45,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,1,2,Check-Out,2016-11-06,Fall,2016-11-05T07:00Z +Keep,21,2016,November,45,4,0,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,3,2016,November,45,4,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,74,1,2,Check-Out,2016-11-06,Fall,2016-11-04T07:00Z +Keep,70,2016,October,45,31,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,70,2016,October,45,31,2,5,2,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient-Party,55.3,0,3,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,35,2016,October,45,31,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,1,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,48,2016,November,45,3,1,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,45,2016,November,45,3,1,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,34,2016,November,45,3,1,3,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,1,0,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,8,2016,November,45,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,80,2016,October,45,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,32.8,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,30,2016,October,45,31,2,5,2,0,0,HB,SRB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,69.04,0,1,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,80,2016,October,45,31,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,32.8,0,1,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,35,2016,October,45,31,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,28.71,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,54,2016,November,45,4,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,33,2016,October,45,31,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 57, NULL,0,Transient,60,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,28,2016,October,45,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,32.31,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,41,2016,November,45,2,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-07,Fall,2016-11-02T07:00Z +Keep,2,2016,November,46,6,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 10, NULL,0,Transient,58,1,0,Check-Out,2016-11-07,Fall,2016-11-06T07:00Z +Keep,32,2016,November,45,4,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,58.65,0,0,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,84,2016,October,45,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,2,2016,November,46,6,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,52,1,0,Check-Out,2016-11-07,Fall,2016-11-06T07:00Z +Keep,40,2016,November,45,2,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-11-07,Fall,2016-11-02T07:00Z +Keep,49,2016,November,45,3,1,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,68,1,0,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,84,2016,October,45,31,2,5,2,1,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,62.9,0,2,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,84,2016,October,45,31,2,5,1,1,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,33.26,0,1,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,10,2016,November,45,3,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,31,2016,November,45,4,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,84.8,0,2,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,10,2016,November,45,3,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,61.5,0,2,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,28,2016,November,45,2,1,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,33.3,0,1,Check-Out,2016-11-07,Fall,2016-11-02T07:00Z +Keep,43,2016,November,45,2,1,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-07,Fall,2016-11-02T07:00Z +Keep,26,2016,November,45,4,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.14,0,1,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,2,2016,November,46,6,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2016-11-07,Fall,2016-11-06T07:00Z +Keep,35,2016,November,45,4,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-11-07,Fall,2016-11-04T07:00Z +Keep,95,2016,October,45,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,32.8,0,0,Check-Out,2016-11-07,Fall,2016-10-31T07:00Z +Keep,40,2016,November,45,3,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,61.8,1,1,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,13,2016,November,45,3,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,1,2,Check-Out,2016-11-07,Fall,2016-11-03T07:00Z +Keep,21,2016,November,45,3,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,33.26,0,1,Check-Out,2016-11-08,Fall,2016-11-03T07:00Z +Keep,4,2016,November,47,16,4,13,2,0,0,BB,IRL,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,33.26,0,1,Check-Out,2016-12-03,Fall,2016-11-16T08:00Z +Keep,43,2016,November,45,3,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30.6,0,1,Check-Out,2016-11-08,Fall,2016-11-03T07:00Z +Keep,43,2016,November,45,3,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30.6,0,1,Check-Out,2016-11-08,Fall,2016-11-03T07:00Z +Keep,0,2016,November,46,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,35,0,1,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,36,2016,November,45,5,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,62.83,1,1,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,7,2016,November,46,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 394,0,Transient-Party,51,1,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,7,2016,November,46,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 394,0,Transient-Party,45,0,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,27,2016,November,46,7,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient,53.46,0,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,11,2016,November,45,1,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,97,0,1,Check-Out,2016-11-08,Fall,2016-11-01T07:00Z +Keep,5,2016,November,46,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,64.5,1,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,5,2016,November,46,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58.5,0,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,45,2016,November,45,5,2,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,36.5,0,0,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,1,2016,November,46,7,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,59.9,1,1,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,46,2016,November,45,5,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.8,1,1,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,57,2016,October,44,25,4,10,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,34,0,0,Check-Out,2016-11-08,Fall,2016-10-25T07:00Z +Keep,37,2016,November,45,5,2,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,17,2016,November,45,5,2,1,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,79,2016,November,46,6,2,0,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.8,1,2,Check-Out,2016-11-08,Fall,2016-11-06T07:00Z +Keep,3,2016,November,46,7,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,5,2016,November,46,6,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,52.36,0,1,Check-Out,2016-11-08,Fall,2016-11-06T07:00Z +Keep,32,2016,November,45,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-08,Fall,2016-11-01T07:00Z +Keep,69,2016,November,45,5,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,0,2016,November,46,7,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,0,2016,November,46,7,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,40,2016,November,45,4,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,57.76,0,2,Check-Out,2016-11-08,Fall,2016-11-04T07:00Z +Keep,105,2016,November,45,1,2,5,2,1,0,BB,RUS,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,84.3,1,0,Check-Out,2016-11-08,Fall,2016-11-01T07:00Z +Keep,96,2016,November,45,4,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,2,Check-Out,2016-11-08,Fall,2016-11-04T07:00Z +Keep,91,2016,November,45,3,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-11-08,Fall,2016-11-03T07:00Z +Keep,43,2016,November,45,1,2,5,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-11-08,Fall,2016-11-01T07:00Z +Keep,0,2016,November,46,7,1,0,2,0,0,BB,MAR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2016-11-08,Fall,2016-11-07T08:00Z +Keep,74,2016,November,45,5,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,55.8,0,0,Check-Out,2016-11-08,Fall,2016-11-05T07:00Z +Keep,57,2016,November,45,2,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,69.94,0,1,Check-Out,2016-11-09,Fall,2016-11-02T07:00Z +Keep,57,2016,November,45,2,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,71.94,0,1,Check-Out,2016-11-09,Fall,2016-11-02T07:00Z +Keep,46,2016,November,46,6,2,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 314, NULL,0,Transient,60.24,0,0,Check-Out,2016-11-09,Fall,2016-11-06T07:00Z +Keep,164,2016,November,45,4,2,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,43.8,1,0,Check-Out,2016-11-09,Fall,2016-11-04T07:00Z +Keep,26,2016,November,45,2,2,5,2,0,0,Undefined,ITA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,87.65,0,0,Check-Out,2016-11-09,Fall,2016-11-02T07:00Z +Keep,6,2016,November,46,8,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,42,0,1,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,89,2016,October,45,30,4,6,2,0,0,HB,ITA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,102.8,1,0,Check-Out,2016-11-09,Fall,2016-10-30T07:00Z +Keep,26,2016,November,45,5,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,45.77,0,0,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,45,2016,November,45,5,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,49,2016,November,45,5,2,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,1,2016,November,46,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,28,2016,November,45,5,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.85,0,1,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,48,2016,November,45,5,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,1,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,47,2016,November,45,5,2,2,2,0,2,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,74.8,0,5,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,6,2016,November,46,8,0,1,2,0,0,BB,CZE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,42,0,1,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,51,2016,November,45,2,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,47.24,1,1,Check-Out,2016-11-09,Fall,2016-11-02T07:00Z +Keep,7,2016,November,46,7,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,57.97,1,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,3,2016,November,46,7,1,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 302,0,Transient,0,0,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,3,2016,November,46,7,1,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 302,0,Transient,0,1,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,1,2016,November,46,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 180, NULL,0,Transient,30,0,0,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,5,2017,February,5,1,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,1,A,A,0,No Deposit , 78, NULL,0,Group,30,0,0,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,41,2016,November,46,6,2,1,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,1,Check-Out,2016-11-09,Fall,2016-11-06T07:00Z +Keep,0,2016,November,46,9,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 8, NULL,0,Transient,0,0,0,Check-Out,2016-11-09,Fall,2016-11-09T08:00Z +Keep,0,2016,November,46,8,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-11-09,Fall,2016-11-08T08:00Z +Keep,0,2016,November,46,9,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 8, NULL,0,Transient,0,0,0,Check-Out,2016-11-09,Fall,2016-11-09T08:00Z +Keep,0,2016,November,46,9,0,0,2,0,0,HB,GBR,Online travel agent,TA/TO, 1,0,0,F,I,0,No Deposit , 241, NULL,0,Transient,0,0,2,Check-Out,2016-11-09,Fall,2016-11-09T08:00Z +Keep,42,2016,November,45,5,2,2,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,76.96,0,1,Check-Out,2016-11-09,Fall,2016-11-05T07:00Z +Keep,0,2016,November,46,6,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,54.86,0,0,Check-Out,2016-11-09,Fall,2016-11-06T07:00Z +Keep,45,2016,November,45,4,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,0,Check-Out,2016-11-09,Fall,2016-11-04T07:00Z +Keep,22,2016,November,46,7,1,1,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,22,2016,November,46,7,1,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,61,1,1,Check-Out,2016-11-09,Fall,2016-11-07T08:00Z +Keep,49,2016,November,46,6,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,6,No Deposit , 240, NULL,0,Transient,64.8,0,3,Check-Out,2016-11-09,Fall,2016-11-06T07:00Z +Keep,70,2016,November,45,2,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,70.11,0,0,Check-Out,2016-11-09,Fall,2016-11-02T07:00Z +Keep,56,2016,November,46,6,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2016-11-09,Fall,2016-11-06T07:00Z +Keep,6,2016,November,46,9,0,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,I,1,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2016-11-09,Fall,2016-11-09T08:00Z +Keep,73,2016,November,45,4,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48.47,0,0,Check-Out,2016-11-10,Fall,2016-11-04T07:00Z +Keep,55,2016,November,46,6,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,46.43,0,0,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,12,2016,November,45,3,2,5,2,0,1,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 464, NULL,0,Transient,66,0,1,Check-Out,2016-11-10,Fall,2016-11-03T07:00Z +Keep,48,2016,November,46,6,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,93,2016,November,46,9,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,66,2016,November,46,6,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,253,2016,November,45,5,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,E,1,No Deposit , 250, NULL,0,Transient,73,0,0,Check-Out,2016-11-10,Fall,2016-11-05T07:00Z +Keep,59,2016,November,46,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,74,2016,November,46,6,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient-Party,62.48,0,2,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,10,2016,November,46,7,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,30,0,0,Check-Out,2016-11-10,Fall,2016-11-07T08:00Z +Keep,22,2016,November,45,1,2,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.8,1,2,Check-Out,2016-11-10,Fall,2016-11-01T07:00Z +Keep,74,2016,November,46,6,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient-Party,60.48,0,2,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,85,2016,November,45,2,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-10,Fall,2016-11-02T07:00Z +Keep,41,2016,November,46,6,2,2,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,78,2016,November,46,8,0,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.8,1,1,Check-Out,2016-11-10,Fall,2016-11-08T08:00Z +Keep,7,2016,November,46,7,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-11-10,Fall,2016-11-07T08:00Z +Keep,6,2016,November,48,21,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,4,Check-Out,2016-11-25,Fall,2016-11-21T08:00Z +Keep,4,2016,December,50,5,1,2,2,0,0,BB,BRA,Direct,TA/TO, 1,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,4,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,2,2017,January,2,9,1,2,2,0,0,BB,BRA,Direct,TA/TO, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Group,44,0,4,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,6,2017,February,6,7,0,4,2,0,0,BB,BRA,Direct,TA/TO, 1,0,2,A,C,0,No Deposit , 250, NULL,0,Transient,43.2,0,4,Check-Out,2017-02-11,Winter,2017-02-07T08:00Z +Keep,9,2017,March,10,6,1,2,2,0,0,BB,BRA,Direct,TA/TO, 1,0,3,A,D,0,No Deposit , 250, NULL,0,Transient,49.5,0,4,Check-Out,2017-03-09,Spring,2017-03-06T08:00Z +Keep,24,2017,March,13,29,0,2,2,0,0,BB,BRA,Direct,TA/TO, 1,0,4,D,D,0,No Deposit , 250, NULL,0,Group,63,0,5,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,14,2016,November,46,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 126, NULL,0,Transient,30,1,0,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,1,2016,November,46,9,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,47,2016,November,45,5,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,32.24,0,1,Check-Out,2016-11-10,Fall,2016-11-05T07:00Z +Keep,9,2016,November,46,6,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70.56,0,1,Check-Out,2016-11-10,Fall,2016-11-06T07:00Z +Keep,30,2016,November,46,10,0,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-11-10,Fall,2016-11-10T08:00Z +Keep,4,2016,November,46,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,60,0,0,Check-Out,2016-11-10,Fall,2016-11-08T08:00Z +Keep,6,2016,November,46,7,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68.33,0,2,Check-Out,2016-11-10,Fall,2016-11-07T08:00Z +Keep,18,2016,November,46,9,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-11-10,Fall,2016-11-09T08:00Z +Keep,4,2016,November,46,7,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,44,0,0,Check-Out,2016-11-11,Fall,2016-11-07T08:00Z +Keep,11,2016,November,47,14,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,D,D,1,No Deposit , 146, NULL,0,Group,32,0,0,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,150,2016,November,46,8,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,26,2016,November,46,8,0,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,50,2016,November,45,4,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,28,2016,November,46,8,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.4,0,1,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,0,2016,November,46,11,0,1,2,0,0,BB,ITA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,21,2016,November,46,8,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,2,No Deposit , 146, NULL,0,Transient,33,1,0,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,36,2016,November,45,4,2,5,1,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,27,0,1,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,20,2016,November,46,8,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 0,0,0,A,C,2,No Deposit , 146, NULL,0,Transient,27,0,0,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,21,2016,November,46,8,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 0,0,0,A,A,1,No Deposit , 146, NULL,0,Transient,33,1,0,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,0,2016,November,46,10,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-11-11,Fall,2016-11-10T08:00Z +Keep,42,2016,November,45,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,30.71,0,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,117,2016,October,45,30,4,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.15,1,2,Check-Out,2016-11-11,Fall,2016-10-30T07:00Z +Keep,2,2016,November,46,10,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,96,1,1,Check-Out,2016-11-11,Fall,2016-11-10T08:00Z +Keep,2,2016,November,46,10,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2016-11-11,Fall,2016-11-10T08:00Z +Keep,53,2016,November,45,4,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,38.7,0,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,53,2016,November,45,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,54,0,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,65,2016,November,46,8,0,3,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,79.8,0,1,Check-Out,2016-11-11,Fall,2016-11-08T08:00Z +Keep,53,2016,November,45,4,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,55.71,0,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,198,2016,November,46,6,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-11,Fall,2016-11-06T07:00Z +Keep,36,2016,November,45,4,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,1,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,39,2016,November,45,4,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,91.06,1,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,0,2016,November,45,4,2,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-11-11,Fall,2016-11-04T07:00Z +Keep,9,2017,February,7,18,1,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,1,A,A,2,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,29,2016,November,46,11,0,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-11-11,Fall,2016-11-11T08:00Z +Keep,60,2016,November,46,7,1,3,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,80.22,0,1,Check-Out,2016-11-11,Fall,2016-11-07T08:00Z +Keep,43,2016,November,46,8,0,4,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,3,2016,November,46,8,0,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,263,2016,November,46,7,1,4,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,30.03,0,1,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,49,2016,November,46,9,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,1,Check-Out,2016-11-12,Fall,2016-11-09T08:00Z +Keep,70,2016,November,45,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,12,2016,November,46,8,0,4,1,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.11,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,17,2016,November,45,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,82,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,104,2016,November,45,5,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,29,2016,November,45,5,2,5,2,0,0,HB,DZA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,68.4,0,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,41,2016,November,45,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.51,0,2,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,104,2016,November,45,5,2,5,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,51,2016,November,45,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,104,2016,November,45,5,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,46,2016,November,45,5,2,5,2,0,0,BB,MLT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,65,2016,November,46,8,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,92,2016,November,46,8,0,4,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,0,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,92,2016,November,46,8,0,4,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,0,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,31,2016,November,46,8,0,4,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,95,2016,November,45,5,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,92,2016,November,46,8,0,4,3,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,60.3,0,0,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,25,2016,November,46,10,0,2,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2016-11-12,Fall,2016-11-10T08:00Z +Keep,31,2016,November,46,12,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 242, NULL,0,Transient,0,0,1,Check-Out,2016-11-12,Fall,2016-11-12T08:00Z +Keep,2,2016,November,46,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,48,2016,November,46,7,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,99,2016,November,45,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 339, NULL,0,Transient,68.04,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,47,2016,November,45,5,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,E,1,No Deposit , 250, NULL,0,Transient,83.06,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,44,2016,November,46,9,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-12,Fall,2016-11-09T08:00Z +Keep,60,2016,November,45,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,43,2016,November,45,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,191,2016,November,45,5,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,0,2016,November,46,11,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,40,2016,November,46,8,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,44,2016,November,46,9,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-12,Fall,2016-11-09T08:00Z +Keep,26,2016,November,46,8,0,4,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,53.2,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,67,2016,November,46,6,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,57.47,0,2,Check-Out,2016-11-12,Fall,2016-11-06T07:00Z +Keep,42,2016,November,46,7,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,1,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,34,2016,November,45,5,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,43,2016,November,46,8,0,4,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,46.8,0,2,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,20,2016,November,46,8,0,4,2,0,0,BB,POL,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,78.25,1,2,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,12,2016,November,46,8,0,4,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,55,1,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,12,2016,November,46,8,0,4,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,106,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,13,2016,November,46,7,1,4,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 6, NULL,0,Transient,37,0,0,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,50,2016,November,46,9,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,43.8,1,2,Check-Out,2016-11-12,Fall,2016-11-09T08:00Z +Keep,95,2016,November,45,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,3,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,40,2016,November,46,8,0,4,2,0,0,BB,MLT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.8,1,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,40,2016,November,46,8,0,4,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,110,2016,November,46,11,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,36.24,1,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,110,2016,November,46,11,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,27,2016,November,46,6,2,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-12,Fall,2016-11-06T07:00Z +Keep,27,2016,November,46,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,76,1,1,Check-Out,2016-11-12,Fall,2016-11-10T08:00Z +Keep,29,2016,November,46,6,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-12,Fall,2016-11-06T07:00Z +Keep,27,2016,November,45,5,2,5,2,0,0,BB,ROU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,36.1,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,67,2016,November,46,6,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-12,Fall,2016-11-06T07:00Z +Keep,62,2016,November,46,7,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79.8,1,2,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,28,2016,November,46,7,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,64.8,0,0,Check-Out,2016-11-12,Fall,2016-11-07T08:00Z +Keep,121,2016,November,45,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,31.95,0,0,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,48,2016,November,46,9,0,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,33.26,0,1,Check-Out,2016-11-12,Fall,2016-11-09T08:00Z +Keep,43,2016,November,46,8,0,4,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,46.8,0,2,Check-Out,2016-11-12,Fall,2016-11-08T08:00Z +Keep,24,2016,November,45,5,2,5,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,143.97,0,2,Check-Out,2016-11-12,Fall,2016-11-05T07:00Z +Keep,0,2016,November,46,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-11-12,Fall,2016-11-11T08:00Z +Keep,148,2016,October,45,30,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.1,0,2,Check-Out,2016-11-13,Fall,2016-10-30T07:00Z +Keep,230,2016,November,46,7,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,64.9,1,3,Check-Out,2016-11-13,Fall,2016-11-07T08:00Z +Keep,22,2016,November,46,10,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,75.6,0,2,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,35,2016,November,46,10,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,1,1,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,73,2016,November,46,10,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,35,2016,November,46,10,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,39,2016,November,46,6,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,61.58,0,0,Check-Out,2016-11-13,Fall,2016-11-06T07:00Z +Keep,36,2016,November,46,10,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,64.8,0,1,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,36,2016,November,46,10,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,70.8,1,1,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,35,2016,November,46,10,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,0,2016,November,46,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,1,1,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,5,2016,November,46,12,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,17,2016,November,46,7,1,5,2,0,0,BB,ROU,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,74.17,0,2,Check-Out,2016-11-13,Fall,2016-11-07T08:00Z +Keep,73,2016,October,45,31,3,10,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-13,Fall,2016-10-31T07:00Z +Keep,4,2016,November,46,12,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,28,2016,November,46,11,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,114.4,1,3,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,51,2016,November,46,11,0,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,93,1,1,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,5,2016,November,46,10,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,57.75,0,1,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,52,2016,November,46,10,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,12,2016,November,46,7,1,5,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,175,0,0,Check-Out,2016-11-13,Fall,2016-11-07T08:00Z +Keep,73,2016,November,46,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,73,2016,November,46,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,73,2016,November,46,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,69,2016,November,46,8,0,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,2,Check-Out,2016-11-13,Fall,2016-11-08T08:00Z +Keep,27,2016,November,46,10,0,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,54,0,0,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,47,2016,November,46,9,0,4,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2016-11-13,Fall,2016-11-09T08:00Z +Keep,37,2016,October,45,30,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50.02,0,2,Check-Out,2016-11-13,Fall,2016-10-30T07:00Z +Keep,52,2016,November,46,10,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,15,2016,November,46,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.57,0,1,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,19,2016,November,45,5,2,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,47.7,0,0,Check-Out,2016-11-13,Fall,2016-11-05T07:00Z +Keep,65,2016,November,46,11,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,35,2016,November,46,10,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,1,Check-Out,2016-11-13,Fall,2016-11-10T08:00Z +Keep,0,2016,November,46,12,0,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113,0,1,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,0,2016,November,46,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2016-11-13,Fall,2016-11-12T08:00Z +Keep,26,2016,November,46,11,0,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,69,2016,November,46,11,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,65.8,0,1,Check-Out,2016-11-13,Fall,2016-11-11T08:00Z +Keep,16,2016,November,46,7,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,67.71,0,0,Check-Out,2016-11-14,Fall,2016-11-07T08:00Z +Keep,34,2016,November,46,10,1,3,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,77.18,0,0,Check-Out,2016-11-14,Fall,2016-11-10T08:00Z +Keep,14,2016,October,45,30,5,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,53.32,1,1,Check-Out,2016-11-14,Fall,2016-10-30T07:00Z +Keep,0,2016,November,46,11,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,71.67,0,1,Check-Out,2016-11-14,Fall,2016-11-11T08:00Z +Keep,20,2016,November,46,9,1,4,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 6, NULL,0,Transient,43,1,0,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,25,2016,November,46,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Transient,60.65,0,0,Check-Out,2016-11-14,Fall,2016-11-07T08:00Z +Keep,92,2016,November,46,8,1,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-14,Fall,2016-11-08T08:00Z +Keep,49,2016,November,46,11,1,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2016-11-14,Fall,2016-11-11T08:00Z +Keep,152,2016,November,46,9,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,52.8,1,0,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,36,2016,November,46,7,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.51,0,1,Check-Out,2016-11-14,Fall,2016-11-07T08:00Z +Keep,19,2016,November,45,4,3,7,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,3,No Deposit , 250, NULL,0,Transient,89.77,0,0,Check-Out,2016-11-14,Fall,2016-11-04T07:00Z +Keep,32,2016,November,46,9,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,11,2016,November,47,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 40, NULL,0,Transient,68.15,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,1,2016,November,47,13,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-11-14,Fall,2016-11-13T08:00Z +Keep,50,2016,November,46,9,1,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,50,2016,November,46,9,1,4,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient,46.7,1,0,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,123,2016,November,47,13,1,0,3,0,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,63.28,1,1,Check-Out,2016-11-14,Fall,2016-11-13T08:00Z +Keep,41,2016,November,45,2,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Check-Out,2016-11-14,Fall,2016-11-02T07:00Z +Keep,57,2016,November,46,11,1,2,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-14,Fall,2016-11-11T08:00Z +Keep,57,2016,November,46,11,1,2,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-14,Fall,2016-11-11T08:00Z +Keep,167,2016,November,46,9,1,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,87,0,1,Check-Out,2016-11-14,Fall,2016-11-09T08:00Z +Keep,30,2016,November,46,10,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,1,No Deposit , 314, NULL,0,Transient,59.12,0,0,Check-Out,2016-11-14,Fall,2016-11-10T08:00Z +Keep,19,2016,November,47,13,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-14,Fall,2016-11-13T08:00Z +Keep,2,2016,November,47,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-11-14,Fall,2016-11-13T08:00Z +Keep,9,2016,November,46,10,1,3,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-14,Fall,2016-11-10T08:00Z +Keep,4,2016,November,46,12,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,2,Transient,48,0,0,Check-Out,2016-11-14,Fall,2016-11-12T08:00Z +Keep,19,2016,November,46,10,2,3,2,0,0,BB,BEL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,88.68,0,1,Check-Out,2016-11-15,Fall,2016-11-10T08:00Z +Keep,34,2016,November,46,11,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient,60.48,0,0,Check-Out,2016-11-15,Fall,2016-11-11T08:00Z +Keep,50,2016,November,46,8,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,46.8,0,4,Check-Out,2016-11-15,Fall,2016-11-08T08:00Z +Keep,101,2016,November,46,10,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 339, NULL,0,Transient,37.44,0,0,Check-Out,2016-11-15,Fall,2016-11-10T08:00Z +Keep,104,2016,November,46,8,2,5,2,0,1,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-15,Fall,2016-11-08T08:00Z +Keep,45,2016,November,46,9,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-15,Fall,2016-11-09T08:00Z +Keep,26,2016,November,47,13,2,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-11-15,Fall,2016-11-13T08:00Z +Keep,4,2016,November,47,14,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,6,2016,November,47,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,4,2016,November,48,21,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,2,A,D,0,No Deposit , NULL, 167,0,Transient,30,0,2,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,6,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,3,A,D,0,No Deposit , NULL, 167,0,Transient,30,0,2,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,3,2016,November,49,28,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,4,A,D,0,No Deposit , NULL, 167,0,Transient,30,0,2,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,3,2016,December,50,5,1,0,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,5,A,D,0,No Deposit , NULL, 167,0,Transient,30,0,2,Check-Out,2016-12-06,Winter,2016-12-05T08:00Z +Keep,210,2016,November,46,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,2,Check-Out,2016-11-15,Fall,2016-11-10T08:00Z +Keep,29,2016,November,46,9,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,58.98,1,1,Check-Out,2016-11-15,Fall,2016-11-09T08:00Z +Keep,19,2016,November,47,14,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,39,2016,November,46,8,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-15,Fall,2016-11-08T08:00Z +Keep,68,2016,November,46,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-15,Fall,2016-11-11T08:00Z +Keep,158,2016,November,46,12,2,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,51,1,0,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,39,2016,November,46,8,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Check-Out,2016-11-15,Fall,2016-11-08T08:00Z +Keep,0,2016,November,47,14,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,14,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,60,0,1,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 241, NULL,0,Group,46.2,0,1,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,November,47,14,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,53,2016,November,46,12,2,1,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,0,2016,November,47,14,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,10,2016,November,47,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,1,2017,January,2,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,14,2017,March,10,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2017-03-11,Spring,2017-03-08T08:00Z +Keep,0,2016,November,47,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,111,1,0,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,20,2016,November,47,13,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,62.7,1,2,Check-Out,2016-11-15,Fall,2016-11-13T08:00Z +Keep,1,2016,November,47,14,1,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-11-15,Fall,2016-11-14T08:00Z +Keep,44,2016,November,45,5,4,6,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,34.86,0,0,Check-Out,2016-11-15,Fall,2016-11-05T07:00Z +Keep,50,2016,November,46,12,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,50,2016,November,46,12,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,50,2016,November,46,12,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,39,2016,November,46,10,2,3,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Check-Out,2016-11-15,Fall,2016-11-10T08:00Z +Keep,52,2016,November,46,10,2,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-11-15,Fall,2016-11-10T08:00Z +Keep,50,2016,November,46,12,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-11-15,Fall,2016-11-12T08:00Z +Keep,103,2016,November,46,11,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-15,Fall,2016-11-11T08:00Z +Keep,25,2016,November,46,6,4,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,39.6,0,0,Check-Out,2016-11-16,Fall,2016-11-06T07:00Z +Keep,69,2016,November,45,2,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,30.6,0,1,Check-Out,2016-11-16,Fall,2016-11-02T07:00Z +Keep,224,2016,November,46,9,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 143, NULL,0,Contract,26.1,0,0,Check-Out,2016-11-16,Fall,2016-11-09T08:00Z +Keep,97,2016,November,46,7,3,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,64.6,0,0,Check-Out,2016-11-16,Fall,2016-11-07T08:00Z +Keep,1,2016,November,47,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,30,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,52,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,52,2016,November,46,11,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.4,0,2,Check-Out,2016-11-16,Fall,2016-11-11T08:00Z +Keep,52,2016,November,46,11,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-16,Fall,2016-11-11T08:00Z +Keep,53,2016,November,46,12,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,5,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,4,2016,November,47,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,3,2017,January,3,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,G,G,1,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,0,2017,February,7,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,E,E,0,No Deposit , 240, NULL,0,Transient,68,1,2,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,35,2016,November,46,12,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,8,2016,November,47,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.12,1,1,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,21,2016,November,47,14,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,89.71,1,1,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,13,2,1,3,0,0,BB,AUS,Direct,Direct, 0,0,0,H,H,2,No Deposit , NULL, NULL,0,Transient,116,1,0,Check-Out,2016-11-16,Fall,2016-11-13T08:00Z +Keep,11,2016,November,46,12,2,2,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,37.37,1,2,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,21,2016,November,47,14,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,83.71,0,1,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,202,2016,November,46,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,202,2016,November,46,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,1,2016,November,47,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.88,0,1,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,3,2016,December,53,27,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,I,0,No Deposit , 250, NULL,0,Transient,54.9,1,0,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,164,2016,December,53,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , 250, NULL,0,Group,63.1,1,1,Check-Out,2017-01-01,Winter,2016-12-29T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,40,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,November,47,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 306, NULL,0,Transient,45.1,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,45,2016,November,47,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.04,1,1,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,1,2016,November,47,14,1,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,85,2016,November,45,2,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,66.6,0,0,Check-Out,2016-11-16,Fall,2016-11-02T07:00Z +Keep,1,2016,November,47,14,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,15,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,1,2016,November,47,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 358, NULL,0,Transient,33,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,29,2016,November,47,15,0,1,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,2,2016,November,47,13,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,86,1,2,Check-Out,2016-11-16,Fall,2016-11-13T08:00Z +Keep,160,2016,November,46,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-16,Fall,2016-11-12T08:00Z +Keep,55,2016,November,47,13,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-16,Fall,2016-11-13T08:00Z +Keep,4,2016,November,47,14,1,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-11-16,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,111,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,1,2016,November,47,13,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,50.05,1,1,Check-Out,2016-11-16,Fall,2016-11-13T08:00Z +Keep,33,2016,November,46,9,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,65.86,0,1,Check-Out,2016-11-16,Fall,2016-11-09T08:00Z +Keep,0,2016,November,47,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,1,2017,January,3,20,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 255,0,Transient,38.5,1,0,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,1,2017,March,9,1,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,A,0,No Deposit , NULL, 255,0,Transient,42,1,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,1,2017,March,9,4,0,1,2,0,0,BB,PRT,Corporate,Direct, 1,0,3,A,A,0,No Deposit , NULL, 255,0,Transient,40,0,0,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,97,2017,June,24,12,1,1,2,1,0,BB,PRT,Corporate,Direct, 1,0,4,A,A,1,No Deposit , NULL, 255,0,Transient,108.5,1,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,0,2016,November,47,15,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,111,1,0,Check-Out,2016-11-16,Fall,2016-11-15T08:00Z +Keep,0,2016,December,50,8,0,1,2,0,0,BB,FRA,Direct,Direct, 1,0,1,A,E,1,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,52,2016,November,46,12,2,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-17,Fall,2016-11-12T08:00Z +Keep,54,2016,November,46,12,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-11-17,Fall,2016-11-12T08:00Z +Keep,98,2016,November,46,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 57, NULL,0,Transient,34,0,1,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,3,2016,November,47,13,2,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-11-17,Fall,2016-11-13T08:00Z +Keep,80,2016,November,45,3,4,10,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,82.8,0,1,Check-Out,2016-11-17,Fall,2016-11-03T07:00Z +Keep,11,2016,November,47,16,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,0,No Deposit , 195, NULL,0,Transient,35,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,3,2016,November,47,14,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 83,0,Transient,30,0,0,Check-Out,2016-11-17,Fall,2016-11-14T08:00Z +Keep,3,2017,February,6,6,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 83,0,Transient,35,0,0,Check-Out,2017-02-10,Winter,2017-02-06T08:00Z +Keep,0,2016,November,47,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,54,1,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,52,2016,November,46,12,2,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-17,Fall,2016-11-12T08:00Z +Keep,85,2016,November,47,14,1,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 242, NULL,0,Transient,61.8,1,1,Check-Out,2016-11-17,Fall,2016-11-14T08:00Z +Keep,51,2016,November,47,13,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,1,Check-Out,2016-11-17,Fall,2016-11-13T08:00Z +Keep,15,2016,November,46,12,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,36.29,0,0,Check-Out,2016-11-17,Fall,2016-11-12T08:00Z +Keep,44,2016,November,47,15,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,13,2016,November,47,13,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Transient,50.68,0,2,Check-Out,2016-11-17,Fall,2016-11-13T08:00Z +Keep,7,2016,November,47,16,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,1,2,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,15,2016,November,47,16,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,1,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,50,2016,November,47,14,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-17,Fall,2016-11-14T08:00Z +Keep,44,2016,November,47,15,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,1,2016,November,47,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,60,0,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,34,2016,November,47,15,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,59.4,0,3,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,34,2016,November,47,15,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,59.4,0,3,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,36,2016,November,46,11,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,54.47,0,0,Check-Out,2016-11-17,Fall,2016-11-11T08:00Z +Keep,80,2016,November,45,3,4,10,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,85.8,1,1,Check-Out,2016-11-17,Fall,2016-11-03T07:00Z +Keep,19,2016,November,46,10,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,1,2016,November,47,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,54,1,0,Check-Out,2016-11-17,Fall,2016-11-16T08:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,39.6,1,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,19,2016,November,46,10,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,39,2016,November,46,11,2,4,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,29.41,0,0,Check-Out,2016-11-17,Fall,2016-11-11T08:00Z +Keep,19,2016,November,46,10,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,19,2016,November,46,10,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,19,2016,November,46,10,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,63,2016,November,47,14,1,2,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient,77.18,0,0,Check-Out,2016-11-17,Fall,2016-11-14T08:00Z +Keep,19,2016,November,46,10,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2016-11-17,Fall,2016-11-10T08:00Z +Keep,0,2016,November,47,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2016-11-17,Fall,2016-11-14T08:00Z +Keep,34,2016,November,47,15,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,65.4,1,3,Check-Out,2016-11-17,Fall,2016-11-15T08:00Z +Keep,3,2016,November,47,17,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,0,2016,November,47,17,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,53.4,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,21,2016,November,47,14,1,3,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient,66,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,28,2016,November,46,9,2,7,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,40.7,0,0,Check-Out,2016-11-18,Fall,2016-11-09T08:00Z +Keep,8,2016,November,47,14,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 348, NULL,0,Transient,48,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,4,2016,November,47,13,2,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-18,Fall,2016-11-13T08:00Z +Keep,12,2016,November,49,27,4,8,1,0,0,BB,PRT,Corporate,Direct, 0,0,1,A,A,0,No Deposit , 154, NULL,0,Transient,27,0,0,Check-Out,2016-12-09,Fall,2016-11-27T08:00Z +Keep,35,2016,November,47,14,1,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,14,2016,November,47,17,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,14,2016,November,47,17,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,11,2016,November,47,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,0,2017,April,17,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,64.6,0,1,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,18,2016,November,47,13,2,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 466,0,Transient,35,0,0,Check-Out,2016-11-18,Fall,2016-11-13T08:00Z +Keep,6,2016,November,47,15,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,42,1,0,Check-Out,2016-11-18,Fall,2016-11-15T08:00Z +Keep,52,2016,November,47,14,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,67.8,0,3,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,61.2,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,2,2016,November,47,17,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,30,0,0,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,119,2016,November,47,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48.8,0,3,Check-Out,2016-11-18,Fall,2016-11-15T08:00Z +Keep,182,2016,November,47,14,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,56.24,0,0,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,6,2016,November,47,14,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-18,Fall,2016-11-14T08:00Z +Keep,32,2016,November,46,12,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,1,Check-Out,2016-11-18,Fall,2016-11-12T08:00Z +Keep,8,2016,November,47,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-18,Fall,2016-11-17T08:00Z +Keep,0,2016,November,47,16,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-11-18,Fall,2016-11-16T08:00Z +Keep,37,2016,November,47,15,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.8,0,2,Check-Out,2016-11-18,Fall,2016-11-15T08:00Z +Keep,2,2016,November,47,18,0,2,2,0,0,HB,DEU,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,73.8,0,2,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,109,2016,November,46,11,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,43.8,1,2,Check-Out,2016-11-18,Fall,2016-11-11T08:00Z +Keep,132,2016,November,45,4,4,10,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-11-18,Fall,2016-11-04T07:00Z +Keep,47,2016,November,46,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,1,Check-Out,2016-11-18,Fall,2016-11-11T08:00Z +Keep,53,2016,November,46,11,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-11-18,Fall,2016-11-11T08:00Z +Keep,44,2016,November,45,4,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,1,Check-Out,2016-11-18,Fall,2016-11-04T07:00Z +Keep,37,2016,November,46,11,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,54.56,0,0,Check-Out,2016-11-18,Fall,2016-11-11T08:00Z +Keep,19,2016,November,47,15,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,30.6,0,1,Check-Out,2016-11-18,Fall,2016-11-15T08:00Z +Keep,19,2016,November,47,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,52,0,0,Check-Out,2016-11-18,Fall,2016-11-13T08:00Z +Keep,32,2016,November,47,18,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 26, NULL,0,Transient,0,0,0,Check-Out,2016-11-18,Fall,2016-11-18T08:00Z +Keep,40,2016,November,46,12,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,51.84,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,97,2016,November,47,14,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,1,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,23,2016,November,46,12,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 175, NULL,0,Transient,57.39,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,41,2016,November,46,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,113,2016,November,47,13,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,37.71,0,1,Check-Out,2016-11-19,Fall,2016-11-13T08:00Z +Keep,0,2016,November,47,18,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,105,1,0,Check-Out,2016-11-19,Fall,2016-11-18T08:00Z +Keep,0,2016,November,47,19,1,1,1,0,0,BB,NLD,Direct,Direct, 1,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,108,1,0,Check-Out,2016-11-21,Fall,2016-11-19T08:00Z +Keep,41,2016,November,47,16,0,3,2,0,0,HB,SVK,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,63.26,0,0,Check-Out,2016-11-19,Fall,2016-11-16T08:00Z +Keep,153,2016,November,47,14,1,4,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.4,0,1,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,0,2016,November,47,18,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,111,1,0,Check-Out,2016-11-19,Fall,2016-11-18T08:00Z +Keep,37,2016,November,46,12,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,37,2016,November,46,12,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.8,1,2,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,1,2016,November,47,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-11-19,Fall,2016-11-18T08:00Z +Keep,5,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,71,1,2,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,12,2017,February,5,3,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,47,2017,March,10,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,11,2016,November,47,13,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,74.05,0,0,Check-Out,2016-11-19,Fall,2016-11-13T08:00Z +Keep,56,2016,November,47,16,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-19,Fall,2016-11-16T08:00Z +Keep,56,2016,November,47,16,0,3,3,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,44,0,0,Check-Out,2016-11-19,Fall,2016-11-16T08:00Z +Keep,19,2016,November,47,15,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-19,Fall,2016-11-15T08:00Z +Keep,0,2016,November,47,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-11-19,Fall,2016-11-18T08:00Z +Keep,0,2016,November,47,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2016-11-19,Fall,2016-11-17T08:00Z +Keep,1,2016,November,47,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,49,2016,November,47,14,1,4,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,40,2016,November,46,12,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,131,2017,April,14,8,0,1,2,0,0,BB,SWE,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,133,2017,April,15,9,4,9,2,0,0,BB,SWE,Online travel agent,TA/TO, 1,0,1,A,A,1,No Deposit , 240, NULL,0,Transient,65.77,0,2,Check-Out,2017-04-22,Spring,2017-04-09T07:00Z +Keep,27,2016,November,47,17,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,38.88,0,0,Check-Out,2016-11-19,Fall,2016-11-17T08:00Z +Keep,55,2016,November,47,14,1,4,2,0,1,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,55,2016,November,47,14,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-19,Fall,2016-11-14T08:00Z +Keep,83,2016,November,46,12,2,5,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,57.64,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,83,2016,November,46,12,2,5,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,50.44,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,57,2016,November,47,16,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-19,Fall,2016-11-16T08:00Z +Keep,47,2016,November,46,12,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,1,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,46,2016,November,46,12,2,5,2,0,0,HB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,54,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,33,2016,November,47,15,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,26.99,0,1,Check-Out,2016-11-19,Fall,2016-11-15T08:00Z +Keep,33,2016,November,47,15,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,26.99,0,1,Check-Out,2016-11-19,Fall,2016-11-15T08:00Z +Keep,33,2016,November,47,15,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,26.99,0,1,Check-Out,2016-11-19,Fall,2016-11-15T08:00Z +Keep,9,2016,November,46,12,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,82.51,1,1,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,17,2016,November,46,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49.71,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,1,2016,November,47,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-11-19,Fall,2016-11-18T08:00Z +Keep,95,2016,November,47,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,8,0,2,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,52,2016,November,46,12,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-19,Fall,2016-11-12T08:00Z +Keep,40,2016,November,47,14,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 339, NULL,0,Transient,51.84,0,0,Check-Out,2016-11-20,Fall,2016-11-14T08:00Z +Keep,15,2016,November,47,17,0,3,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,38,2016,November,47,13,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,68.4,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,46,2016,November,47,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.47,1,2,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,27,2016,November,47,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,55.8,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,52,2016,November,47,17,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,46.8,0,0,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,3,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,33,2016,November,47,13,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,41.53,0,1,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,17,2016,November,47,17,0,3,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,62,1,2,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,17,2016,November,47,17,0,3,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,82,2016,November,47,15,0,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,42.12,0,2,Check-Out,2016-11-20,Fall,2016-11-15T08:00Z +Keep,34,2016,November,47,18,0,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.52,0,1,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,34,2016,November,47,18,0,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.52,0,1,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,6,2016,November,47,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,62.12,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,23,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,18,2016,November,47,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,38.68,0,1,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,26,2016,November,46,6,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.72,0,0,Check-Out,2016-11-20,Fall,2016-11-06T07:00Z +Keep,12,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,7,2016,November,47,18,0,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,72,1,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,14,2016,November,47,18,0,2,1,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,36,1,1,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,14,2016,November,47,18,0,2,1,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,30,0,1,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,8,2016,November,47,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,74.38,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,40,2016,November,47,14,1,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,32.3,0,0,Check-Out,2016-11-20,Fall,2016-11-14T08:00Z +Keep,12,2016,November,47,19,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,4,2016,November,47,16,0,4,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2016-11-20,Fall,2016-11-16T08:00Z +Keep,10,2016,November,47,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-11-20,Fall,2016-11-16T08:00Z +Keep,43,2016,November,47,18,0,2,2,1,0,HB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,52.5,0,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,3,2016,November,47,17,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,0,2016,November,47,18,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,95,0,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,1,2016,November,47,18,0,2,2,0,0,BB,MWI,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,86,1,1,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,1,2016,November,48,20,1,0,2,0,0,BB,MWI,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,80,1,1,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,2,2016,November,47,19,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,G,G,0,No Deposit , NULL, 364,0,Transient,50,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,15,2016,November,47,18,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,85.2,1,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,7,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,38,2016,November,47,17,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-11-20,Fall,2016-11-17T08:00Z +Keep,73,2016,November,46,10,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,34.24,0,2,Check-Out,2016-11-20,Fall,2016-11-10T08:00Z +Keep,94,2016,November,47,16,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,3,Check-Out,2016-11-20,Fall,2016-11-16T08:00Z +Keep,4,2016,November,47,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,36.12,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,5,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,73,0,2,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,116,2016,November,47,18,0,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,39.8,0,2,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,10,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,7,2016,November,47,16,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,48.25,0,3,Check-Out,2016-11-20,Fall,2016-11-16T08:00Z +Keep,1,2016,November,47,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,26,2016,November,47,19,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,123,2016,November,47,19,0,1,2,0,0,BB,POL,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,34.02,0,0,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,3,2016,November,47,19,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 330, NULL,0,Transient-Party,30,0,0,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,11,2016,November,47,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,83.76,0,1,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,61,2016,November,47,18,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,48.3,0,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,4,2016,November,47,18,0,2,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,Refundable , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,71,2016,November,47,16,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-11-20,Fall,2016-11-16T08:00Z +Keep,35,2016,November,47,19,0,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,11,2016,November,47,13,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,29,0,0,Check-Out,2016-11-20,Fall,2016-11-13T08:00Z +Keep,3,2016,November,47,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,1,2017,February,7,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,C,1,No Deposit , 330, NULL,0,Group,34,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,3,2016,November,47,19,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,1,2017,February,7,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,C,0,No Deposit , 330, NULL,0,Group,34,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,2,2016,November,47,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,80,0,1,Check-Out,2016-11-20,Fall,2016-11-19T08:00Z +Keep,72,2016,November,47,18,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,47.8,0,2,Check-Out,2016-11-20,Fall,2016-11-18T08:00Z +Keep,65,2016,November,47,18,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,58.24,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,15,2016,November,47,18,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,40.4,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,23,2016,November,47,17,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 57, NULL,0,Transient,50.6,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,14,2016,November,47,18,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,49,1,1,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,14,2016,November,47,18,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,14,2016,November,47,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,58.65,0,0,Check-Out,2016-11-21,Fall,2016-11-14T08:00Z +Keep,2,2016,November,47,19,1,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2016-11-21,Fall,2016-11-19T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,79,2016,November,47,17,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,29,2016,November,45,5,5,11,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38.81,0,1,Check-Out,2016-11-21,Fall,2016-11-05T07:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,1,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,15,2016,November,47,18,1,2,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 411, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,49,2016,November,47,14,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45,0,0,Check-Out,2016-11-21,Fall,2016-11-14T08:00Z +Keep,67,2016,November,47,18,1,2,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 411, NULL,0,Transient-Party,67.5,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 411, NULL,0,Transient-Party,50,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,67,2016,November,47,18,1,2,1,0,0,HB,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 411, NULL,0,Transient-Party,0,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,23,2016,November,47,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,3,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,0,2016,November,48,20,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,37,2016,October,45,31,6,15,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,58.91,0,0,Check-Out,2016-11-21,Fall,2016-10-31T07:00Z +Keep,0,2016,November,48,20,1,0,2,0,0,BB,DEU,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,0,2016,November,47,18,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,97,2016,November,47,14,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,37.7,0,0,Check-Out,2016-11-21,Fall,2016-11-14T08:00Z +Keep,10,2016,November,47,17,1,3,3,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,51,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,40,2016,November,47,19,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-21,Fall,2016-11-19T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,47,2016,November,47,18,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,116,2016,November,47,17,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,183,2016,November,47,18,1,2,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 411, NULL,116,Transient-Party,52,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,80,2016,November,47,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,36,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,0,2016,November,47,17,1,3,1,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,10,2016,November,47,17,1,3,3,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,51,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,115,2016,November,47,17,1,3,2,0,0,BB,IRL,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,34,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,104,2016,November,47,17,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,43.3,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,10,2016,November,47,17,1,3,3,0,0,BB,IRL,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,51,0,0,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,4,2016,November,48,20,1,0,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,66,1,1,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,20,2016,November,48,20,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-21,Fall,2016-11-20T08:00Z +Keep,59,2016,November,47,18,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 339, NULL,0,Transient,51.84,0,0,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,80,2016,November,47,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,90,2016,November,47,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,39.8,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,116,2016,November,47,17,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,34,2016,November,47,14,2,5,2,1,1,BB,FRA,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,65.4,1,2,Check-Out,2016-11-21,Fall,2016-11-14T08:00Z +Keep,36,2016,November,47,18,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,41.58,0,2,Check-Out,2016-11-21,Fall,2016-11-18T08:00Z +Keep,9,2016,November,47,17,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,111,1,3,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,48,2016,November,47,16,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-21,Fall,2016-11-16T08:00Z +Keep,38,2016,November,47,17,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,50.22,0,2,Check-Out,2016-11-21,Fall,2016-11-17T08:00Z +Keep,22,2016,November,47,15,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.62,0,1,Check-Out,2016-11-22,Fall,2016-11-15T08:00Z +Keep,53,2016,November,47,18,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-22,Fall,2016-11-18T08:00Z +Keep,4,2016,November,47,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.57,0,2,Check-Out,2016-11-22,Fall,2016-11-15T08:00Z +Keep,49,2016,November,47,16,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,82.8,0,2,Check-Out,2016-11-22,Fall,2016-11-16T08:00Z +Keep,49,2016,November,47,16,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,88.8,1,2,Check-Out,2016-11-22,Fall,2016-11-16T08:00Z +Keep,0,2016,November,48,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,0,2016,November,48,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,61,1,0,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,7,2016,November,48,21,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 428,0,Transient,30,0,0,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,95,2016,November,47,19,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2016-11-22,Fall,2016-11-19T08:00Z +Keep,56,2016,November,47,15,2,5,2,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,65.75,0,0,Check-Out,2016-11-22,Fall,2016-11-15T08:00Z +Keep,1,2016,November,48,21,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-11-22,Fall,2016-11-21T08:00Z +Keep,0,2016,November,47,19,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,64.4,0,0,Check-Out,2016-11-22,Fall,2016-11-19T08:00Z +Keep,64,2016,November,47,19,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,315,2016,November,46,9,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 69, NULL,0,Transient,28.1,0,2,Check-Out,2016-11-23,Fall,2016-11-09T08:00Z +Keep,64,2016,November,47,19,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,50,2016,November,47,19,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,1,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,24,2016,November,47,19,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,36,2016,November,47,19,2,2,1,0,0,HB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,94.2,0,0,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,4,2016,November,48,21,1,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,1,2016,November,48,22,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,55,0,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,0,2016,November,48,22,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,48,0,0,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,34,2016,November,48,21,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,115,2016,November,47,18,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,36.6,1,0,Check-Out,2016-11-23,Fall,2016-11-18T08:00Z +Keep,3,2016,November,48,20,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,50.98,0,2,Check-Out,2016-11-23,Fall,2016-11-20T08:00Z +Keep,3,2016,November,48,21,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,34,0,0,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,9,2016,November,47,18,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,62,1,0,Check-Out,2016-11-23,Fall,2016-11-18T08:00Z +Keep,33,2016,November,47,19,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-11-23,Fall,2016-11-19T08:00Z +Keep,6,2016,November,48,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-23,Fall,2016-11-22T08:00Z +Keep,14,2016,November,48,21,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-11-23,Fall,2016-11-21T08:00Z +Keep,18,2016,November,48,20,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,36,0,0,Check-Out,2016-11-23,Fall,2016-11-20T08:00Z +Keep,2,2016,November,48,24,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,0,0,0,Check-Out,2016-11-24,Fall,2016-11-24T08:00Z +Keep,45,2016,November,48,20,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-24,Fall,2016-11-20T08:00Z +Keep,28,2016,November,47,16,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37.8,0,0,Check-Out,2016-11-24,Fall,2016-11-16T08:00Z +Keep,2,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 108,0,Transient-Party,44,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,58,2016,November,47,17,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2016-11-24,Fall,2016-11-17T08:00Z +Keep,58,2016,November,47,17,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-24,Fall,2016-11-17T08:00Z +Keep,13,2016,November,47,17,2,5,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,1,1,Check-Out,2016-11-24,Fall,2016-11-17T08:00Z +Keep,58,2016,November,47,17,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-24,Fall,2016-11-17T08:00Z +Keep,0,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 34,0,Transient,50,1,1,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,0,2016,November,49,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 34,0,Transient,38,1,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,0,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 34,0,Transient,50,0,1,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,15,2016,November,47,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,37.8,0,0,Check-Out,2016-11-24,Fall,2016-11-17T08:00Z +Keep,0,2016,November,48,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,63,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,2,2016,November,48,23,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,36,1,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,0,2016,November,48,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,6,2016,November,47,13,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,42,0,0,Check-Out,2016-11-24,Fall,2016-11-13T08:00Z +Keep,9,2016,November,48,20,2,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 336, NULL,0,Transient,48.9,0,0,Check-Out,2016-11-24,Fall,2016-11-20T08:00Z +Keep,2,2016,November,48,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 108,0,Transient-Party,44,0,0,Check-Out,2016-11-24,Fall,2016-11-23T08:00Z +Keep,54,2016,November,47,19,2,3,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-24,Fall,2016-11-19T08:00Z +Keep,47,2016,November,47,19,2,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-24,Fall,2016-11-19T08:00Z +Keep,33,2016,November,48,20,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,28.3,0,2,Check-Out,2016-11-24,Fall,2016-11-20T08:00Z +Keep,33,2016,November,48,20,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,30.3,0,2,Check-Out,2016-11-24,Fall,2016-11-20T08:00Z +Keep,18,2017,March,13,31,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 241, NULL,0,Transient,53.39,0,3,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,116,2016,November,47,18,2,5,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30.6,0,0,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,25,2016,November,47,18,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,7,2016,November,48,22,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,35,1,1,Check-Out,2016-11-25,Fall,2016-11-22T08:00Z +Keep,25,2016,November,47,18,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,34.3,0,0,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,93,2016,November,47,18,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56.83,0,3,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,2,2016,December,51,15,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, 421,0,Transient,39,0,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,13,2016,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,2,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,15,2016,November,48,24,0,1,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,6,2016,November,48,23,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-11-25,Fall,2016-11-23T08:00Z +Keep,2,2016,November,48,24,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 484,0,Transient,48.4,0,1,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,2,2016,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,5,2016,November,48,22,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-11-25,Fall,2016-11-22T08:00Z +Keep,5,2016,November,48,22,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-25,Fall,2016-11-22T08:00Z +Keep,5,2016,November,48,22,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-11-25,Fall,2016-11-22T08:00Z +Keep,34,2016,November,48,25,0,0,1,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,0,0,0,Check-Out,2016-11-25,Fall,2016-11-25T08:00Z +Keep,50,2016,November,47,19,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-25,Fall,2016-11-19T08:00Z +Keep,1,2016,November,48,25,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-11-25,Fall,2016-11-25T08:00Z +Keep,61,2016,November,47,19,2,4,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-11-25,Fall,2016-11-19T08:00Z +Keep,60,2016,November,48,20,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 15, NULL,0,Transient,53.84,0,0,Check-Out,2016-11-25,Fall,2016-11-20T08:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2016,November,48,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,0,2017,February,5,3,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,43,2016,November,47,18,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,33.26,0,0,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,0,2016,November,48,24,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,1,2016,November,48,24,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,51,2016,November,48,21,1,3,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 242, NULL,0,Transient,84.12,0,1,Check-Out,2016-11-25,Fall,2016-11-21T08:00Z +Keep,9,2016,November,47,19,2,4,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-11-25,Fall,2016-11-19T08:00Z +Keep,3,2016,November,48,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2016-11-25,Fall,2016-11-24T08:00Z +Keep,10,2016,November,48,21,1,3,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60,0,0,Check-Out,2016-11-25,Fall,2016-11-21T08:00Z +Keep,87,2016,November,48,22,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-25,Fall,2016-11-22T08:00Z +Keep,58,2016,November,47,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-11-25,Fall,2016-11-18T08:00Z +Keep,1,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,1,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,1,2016,November,48,26,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2016-11-26,Fall,2016-11-26T08:00Z +Keep,24,2016,November,47,13,4,9,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,54,0,0,Check-Out,2016-11-26,Fall,2016-11-13T08:00Z +Keep,30,2016,November,46,12,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 177, NULL,0,Transient,70.97,0,0,Check-Out,2016-11-26,Fall,2016-11-12T08:00Z +Keep,16,2016,November,47,19,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,32,2016,November,47,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,56.6,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,47,2016,November,48,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-26,Fall,2016-11-21T08:00Z +Keep,1,2016,November,48,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,84,2016,November,48,25,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,55,2016,November,47,19,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,67.44,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,30,2016,November,48,24,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,93,0,1,Check-Out,2016-11-26,Fall,2016-11-24T08:00Z +Keep,31,2016,November,47,19,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,43.2,0,1,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,4,2016,November,47,19,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,47.86,0,3,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,4,2016,November,47,19,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67.86,0,3,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,29,2016,November,48,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,43.65,0,2,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,18,2016,November,48,20,2,4,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,68.4,0,0,Check-Out,2016-11-26,Fall,2016-11-20T08:00Z +Keep,47,2016,November,48,20,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,59.4,1,0,Check-Out,2016-11-26,Fall,2016-11-20T08:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93,0,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,67,2016,November,47,18,2,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 411, NULL,0,Transient,50,0,0,Check-Out,2016-11-26,Fall,2016-11-18T08:00Z +Keep,11,2016,November,48,25,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,68.03,0,1,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,0,2016,November,48,25,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,31,2016,November,47,19,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,52.4,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,67,2016,November,47,13,4,9,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,57.65,0,1,Check-Out,2016-11-26,Fall,2016-11-13T08:00Z +Keep,151,2016,November,47,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,26.64,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,45,2016,November,48,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-11-26,Fall,2016-11-21T08:00Z +Keep,0,2016,November,48,25,0,1,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,6,2016,November,48,25,0,1,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,147,0,0,Check-Out,2016-11-26,Fall,2016-11-25T08:00Z +Keep,52,2016,November,47,19,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-26,Fall,2016-11-19T08:00Z +Keep,35,2016,November,48,24,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.56,0,0,Check-Out,2016-11-27,Fall,2016-11-24T08:00Z +Keep,133,2016,November,48,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 314, NULL,0,Transient-Party,67.24,0,2,Check-Out,2016-11-27,Fall,2016-11-20T08:00Z +Keep,133,2016,November,48,20,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,36.64,0,1,Check-Out,2016-11-27,Fall,2016-11-20T08:00Z +Keep,133,2016,November,48,20,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,46.64,0,1,Check-Out,2016-11-27,Fall,2016-11-20T08:00Z +Keep,25,2016,November,48,24,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,61.19,0,1,Check-Out,2016-11-27,Fall,2016-11-24T08:00Z +Keep,47,2016,November,48,26,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient-Party,73.3,0,2,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,47,2016,November,48,26,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient-Party,73.3,0,2,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,47,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,11,2016,November,48,26,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,49.75,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,9,2016,November,48,21,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,29,1,1,Check-Out,2016-11-27,Fall,2016-11-21T08:00Z +Keep,15,2016,November,48,23,0,4,2,1,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,88,1,2,Check-Out,2016-11-27,Fall,2016-11-23T08:00Z +Keep,15,2016,November,48,23,0,4,2,1,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,54,0,2,Check-Out,2016-11-27,Fall,2016-11-23T08:00Z +Keep,1,2016,November,48,25,0,2,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,62.4,0,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,57,2016,November,48,24,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63.8,1,1,Check-Out,2016-11-27,Fall,2016-11-24T08:00Z +Keep,17,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,17,2016,November,48,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,8,2016,November,48,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,8,2016,November,48,26,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,1,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,17,2016,November,48,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,17,2016,November,48,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,48,1,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,5,2016,November,48,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,63,0,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,9,2016,November,48,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,45,2016,November,48,25,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,67.8,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,45,2016,November,48,25,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,67.8,0,2,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,45,2016,November,48,25,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,67.8,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,4,2016,November,48,24,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2016-11-27,Fall,2016-11-24T08:00Z +Keep,20,2016,November,48,25,0,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,3,2016,November,48,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 113,0,Transient,36,1,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,34,2016,November,48,21,1,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,74.88,1,0,Check-Out,2016-11-27,Fall,2016-11-21T08:00Z +Keep,2,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,0,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,50,0,1,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,16,2016,November,48,26,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,0,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,0,2016,November,48,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,31,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,38.81,0,4,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,1,2016,November,48,25,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,49,1,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,23,2016,November,48,21,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-11-27,Fall,2016-11-21T08:00Z +Keep,33,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,0,2016,November,48,25,0,2,2,1,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,50.4,0,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,81,2016,November,48,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,1,2016,November,48,26,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,2,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,1,2016,November,48,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,13,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,5,2016,November,48,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,17,2016,November,48,25,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,63,0,0,Check-Out,2016-11-27,Fall,2016-11-25T08:00Z +Keep,12,2016,November,48,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,47,2016,November,48,26,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,87,0,2,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,26,2016,November,48,26,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2016-11-27,Fall,2016-11-26T08:00Z +Keep,58,2016,November,48,25,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-11-28,Fall,2016-11-25T08:00Z +Keep,69,2016,November,47,18,3,7,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2016-11-28,Fall,2016-11-18T08:00Z +Keep,2,2016,November,48,26,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,38,0,0,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,2,2017,January,1,7,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Group,39,0,1,Check-Out,2017-01-09,Winter,2017-01-07T08:00Z +Keep,2,2017,February,7,18,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,66,2016,November,48,24,1,3,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-28,Fall,2016-11-24T08:00Z +Keep,0,2016,November,48,26,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,49,1,1,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,0,2016,November,48,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,11,2016,November,48,21,2,5,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-11-28,Fall,2016-11-21T08:00Z +Keep,146,2016,November,46,7,6,15,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 75, NULL,0,Transient,70.6,1,2,Check-Out,2016-11-28,Fall,2016-11-07T08:00Z +Keep,115,2016,November,48,21,2,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,19.35,0,0,Check-Out,2016-11-28,Fall,2016-11-21T08:00Z +Keep,4,2016,November,49,27,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-11-28,Fall,2016-11-27T08:00Z +Keep,53,2016,November,49,28,4,10,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.14,0,3,Check-Out,2016-12-12,Fall,2016-11-28T08:00Z +Keep,19,2016,December,51,12,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,3,2016,November,48,21,2,5,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,36.4,0,0,Check-Out,2016-11-28,Fall,2016-11-21T08:00Z +Keep,41,2016,November,48,24,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43.2,0,0,Check-Out,2016-11-28,Fall,2016-11-24T08:00Z +Keep,28,2016,November,48,21,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 464, NULL,0,Transient,52,0,1,Check-Out,2016-11-28,Fall,2016-11-21T08:00Z +Keep,1,2016,November,48,26,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,69,1,0,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,4,2016,November,48,26,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,11,2016,November,48,25,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,66,1,1,Check-Out,2016-11-28,Fall,2016-11-25T08:00Z +Keep,11,2016,November,48,25,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,60,0,1,Check-Out,2016-11-28,Fall,2016-11-25T08:00Z +Keep,7,2016,November,48,21,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,86,0,0,Check-Out,2016-11-28,Fall,2016-11-21T08:00Z +Keep,2,2016,November,48,26,1,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,48.5,1,1,Check-Out,2016-11-28,Fall,2016-11-26T08:00Z +Keep,0,2016,November,48,25,1,2,2,0,0,BB,AUS,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,70.33,1,0,Check-Out,2016-11-28,Fall,2016-11-25T08:00Z +Keep,66,2016,November,48,24,2,3,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 336, NULL,0,Transient,49,0,0,Check-Out,2016-11-29,Fall,2016-11-24T08:00Z +Keep,5,2016,November,48,24,2,3,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,34,0,0,Check-Out,2016-11-29,Fall,2016-11-24T08:00Z +Keep,3,2016,November,49,28,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 118,0,Transient,30,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,3,2016,November,49,28,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, 184,0,Transient,43,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,0,2016,December,52,19,1,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,1,No Deposit , 146, NULL,0,Transient,43,0,0,Check-Out,2016-12-21,Winter,2016-12-19T08:00Z +Keep,4,2016,November,49,28,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,73,2016,November,49,27,2,0,2,0,0,HB,RUS,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,105.5,1,1,Check-Out,2016-11-29,Fall,2016-11-27T08:00Z +Keep,1,2016,November,49,28,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, 485,0,Transient,43,0,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,1,2016,November,48,26,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-11-29,Fall,2016-11-26T08:00Z +Keep,4,2016,November,48,26,2,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-11-29,Fall,2016-11-26T08:00Z +Keep,0,2016,November,49,28,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,0,2016,November,49,28,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,57,1,1,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,0,2016,November,49,28,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,51,0,1,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,45,2016,November,49,27,2,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-11-29,Fall,2016-11-27T08:00Z +Keep,0,2016,November,49,27,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-11-29,Fall,2016-11-27T08:00Z +Keep,16,2016,November,49,27,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-11-29,Fall,2016-11-27T08:00Z +Keep,0,2016,November,49,28,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2016-11-29,Fall,2016-11-28T08:00Z +Keep,76,2016,November,49,29,0,1,2,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 481, NULL,0,Transient,50,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,1,2016,November,49,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 32,0,Transient,37.8,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,64,2016,November,48,23,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,31,0,0,Check-Out,2016-11-30,Fall,2016-11-23T08:00Z +Keep,25,2016,November,49,27,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2016-11-30,Fall,2016-11-27T08:00Z +Keep,68,2016,November,48,26,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,1,0,Check-Out,2016-11-30,Fall,2016-11-26T08:00Z +Keep,7,2016,November,49,29,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 28,0,Transient,45,0,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,0,2016,November,49,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,0,2016,November,49,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,21,2016,November,49,28,1,1,1,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,0,2016,November,49,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,21,2016,November,49,28,1,1,1,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,1,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,1,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,21,2016,November,49,28,1,1,1,0,0,BB,POL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,1,2016,November,49,29,0,1,2,0,1,BB,NZL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,64,2016,November,48,23,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-11-30,Fall,2016-11-23T08:00Z +Keep,0,2016,November,49,29,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,93,0,2,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,30,2016,November,48,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,45,0,0,Check-Out,2016-11-30,Fall,2016-11-23T08:00Z +Keep,0,2016,November,49,29,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,0,2016,November,49,29,0,1,1,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,73,0,0,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,1,2016,November,49,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-30,Fall,2016-11-28T08:00Z +Keep,58,2016,November,48,23,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,35,1,0,Check-Out,2016-11-30,Fall,2016-11-23T08:00Z +Keep,0,2016,November,49,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,23,2016,November,48,25,2,3,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2016-11-30,Fall,2016-11-25T08:00Z +Keep,8,2016,November,49,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,14,2017,March,13,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,60,0,1,Check-Out,2017-04-01,Spring,2017-03-30T07:00Z +Keep,22,2016,November,47,16,4,10,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,33.05,0,1,Check-Out,2016-11-30,Fall,2016-11-16T08:00Z +Keep,1,2016,November,49,29,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,3,Check-Out,2016-11-30,Fall,2016-11-29T08:00Z +Keep,12,2016,November,49,27,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,63,0,3,Check-Out,2016-11-30,Fall,2016-11-27T08:00Z +Keep,22,2016,November,47,16,4,10,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,31.05,0,1,Check-Out,2016-11-30,Fall,2016-11-16T08:00Z +Keep,76,2016,November,49,29,0,2,2,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 481, NULL,0,Transient-Party,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,76,2016,November,49,29,0,2,1,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 481, NULL,0,Transient-Party,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,117,2016,November,48,20,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2016-12-01,Fall,2016-11-20T08:00Z +Keep,0,2016,November,49,29,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,76,2016,November,49,29,0,2,2,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 481, NULL,0,Transient-Party,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,76,2016,November,49,29,0,2,2,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 481, NULL,0,Transient-Party,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,76,2016,November,49,29,0,2,2,0,0,BB,SWE,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , 481, NULL,0,Transient-Party,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,27,2016,November,49,29,0,2,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,34,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,0,2016,November,49,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 34,0,Transient,38,1,1,Check-Out,2016-12-01,Fall,2016-11-30T08:00Z +Keep,76,2016,November,49,29,0,2,1,0,0,BB,DNK,Corporate,Corporate, 0,0,0,E,E,1,No Deposit , 481, NULL,0,Transient,50,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,0,2016,November,49,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-12-01,Fall,2016-11-30T08:00Z +Keep,0,2016,November,49,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-12-01,Fall,2016-11-30T08:00Z +Keep,10,2016,November,49,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-01,Fall,2016-11-30T08:00Z +Keep,12,2016,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,November,49,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-12-01,Fall,2016-11-29T08:00Z +Keep,19,2016,November,49,27,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-12-01,Fall,2016-11-27T08:00Z +Keep,31,2016,November,49,28,1,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.26,0,1,Check-Out,2016-12-01,Fall,2016-11-28T08:00Z +Keep,0,2016,November,49,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,1,3,Check-Out,2016-12-01,Fall,2016-11-30T08:00Z +Keep,33,2016,November,48,24,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-01,Fall,2016-11-24T08:00Z +Keep,120,2016,November,49,28,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,3,Check-Out,2016-12-01,Fall,2016-11-28T08:00Z +Keep,59,2016,December,49,2,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,58.33,1,1,Check-Out,2016-12-08,Winter,2016-12-02T08:00Z +Keep,1,2016,November,49,30,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,1,Check-Out,2016-12-02,Fall,2016-11-30T08:00Z +Keep,28,2016,November,49,28,1,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-12-02,Fall,2016-11-28T08:00Z +Keep,29,2016,November,49,29,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,47.12,0,1,Check-Out,2016-12-02,Fall,2016-11-29T08:00Z +Keep,19,2016,December,49,1,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 336, NULL,0,Transient,29,0,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,54,2016,November,49,27,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-12-02,Fall,2016-11-27T08:00Z +Keep,0,2016,November,49,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-12-02,Fall,2016-11-30T08:00Z +Keep,8,2016,November,49,27,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,55.44,0,0,Check-Out,2016-12-02,Fall,2016-11-27T08:00Z +Keep,54,2016,November,49,27,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-12-02,Fall,2016-11-27T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,50.4,0,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,0,2016,November,49,30,0,2,2,1,0,HB,PRT,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,62.5,1,2,Check-Out,2016-12-02,Fall,2016-11-30T08:00Z +Keep,6,2016,November,48,22,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.99,0,1,Check-Out,2016-12-02,Fall,2016-11-22T08:00Z +Keep,7,2016,November,49,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-12-02,Fall,2016-11-30T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,50.4,1,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,0,2016,December,49,1,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,1,0,Check-Out,2016-12-02,Winter,2016-12-01T08:00Z +Keep,23,2016,November,47,19,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,73.89,0,0,Check-Out,2016-12-03,Fall,2016-11-19T08:00Z +Keep,51,2016,November,48,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 339, NULL,0,Transient-Party,44.64,0,0,Check-Out,2016-12-03,Fall,2016-11-26T08:00Z +Keep,51,2016,November,48,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 339, NULL,0,Transient-Party,44.64,0,0,Check-Out,2016-12-03,Fall,2016-11-26T08:00Z +Keep,33,2016,November,48,20,4,9,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,54,0,0,Check-Out,2016-12-03,Fall,2016-11-20T08:00Z +Keep,15,2016,November,48,23,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,43,0,0,Check-Out,2016-12-03,Fall,2016-11-23T08:00Z +Keep,20,2016,December,49,1,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,61,1,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,20,2016,December,49,1,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,0,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,8,2016,December,49,2,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,94,1,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,70,2016,November,49,29,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,82.8,0,1,Check-Out,2016-12-03,Fall,2016-11-29T08:00Z +Keep,68,2016,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43.8,1,2,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,2,2016,December,49,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient,30,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,2,2017,March,11,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 330, NULL,0,Transient-Party,30,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,5,2016,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,29,2016,November,47,19,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,27,1,0,Check-Out,2016-12-03,Fall,2016-11-19T08:00Z +Keep,38,2016,November,49,29,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.56,0,0,Check-Out,2016-12-03,Fall,2016-11-29T08:00Z +Keep,4,2016,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient-Party,38.4,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,4,2016,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient-Party,38.4,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,4,2016,December,49,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient-Party,38.4,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,1,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,99,1,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,13,2016,December,49,2,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,23,2016,December,49,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,2,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,2,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,1,2016,November,49,30,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60,1,2,Check-Out,2016-12-03,Fall,2016-11-30T08:00Z +Keep,7,2016,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,2,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,10,2017,April,16,21,2,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,G,G,0,No Deposit , 250, NULL,0,Transient,171,0,2,Check-Out,2017-04-25,Spring,2017-04-21T07:00Z +Keep,3,2016,December,49,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,1,2016,December,49,2,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,62,2016,November,48,23,2,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-03,Fall,2016-11-23T08:00Z +Keep,5,2016,December,49,2,0,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,63,1,3,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,38,2016,December,49,1,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,67.2,1,1,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,40,2016,December,49,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Group,137.2,1,2,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,86,2016,November,48,26,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88.8,1,1,Check-Out,2016-12-03,Fall,2016-11-26T08:00Z +Keep,140,2016,December,49,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,1,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,E,1,No Deposit , NULL, NULL,0,Transient,51,1,0,Check-Out,2016-12-03,Winter,2016-12-01T08:00Z +Keep,3,2016,December,49,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-12-03,Winter,2016-12-02T08:00Z +Keep,69,2016,November,48,26,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-03,Fall,2016-11-26T08:00Z +Keep,117,2016,November,48,22,2,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Check-Out,2016-12-04,Fall,2016-11-22T08:00Z +Keep,1,2016,November,49,29,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.4,0,1,Check-Out,2016-12-04,Fall,2016-11-29T08:00Z +Keep,0,2016,December,49,2,0,2,2,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,5,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,0,2016,December,50,4,0,0,3,0,0,BB,PRT,Direct,Direct, 1,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-04,Winter,2016-12-04T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,4,2016,December,50,4,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2016-12-04,Winter,2016-12-04T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,37,2016,December,49,3,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,37,2016,December,49,3,0,1,3,0,0,BB,PRT,Complementary,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,10,2016,December,49,3,0,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,44,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,141,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, 487,13,Transient-Party,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,128,2016,December,49,3,0,1,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,64,0,1,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,0,2016,December,49,2,0,2,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,11,2016,December,49,2,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,22,2016,December,49,1,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-12-04,Winter,2016-12-01T08:00Z +Keep,40,2016,December,49,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,84,2016,December,49,1,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,90.33,1,1,Check-Out,2016-12-04,Winter,2016-12-01T08:00Z +Keep,29,2016,December,49,2,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient-Party,58.74,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,29,2016,December,49,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,49.74,1,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,19,2016,December,49,2,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 253, NULL,0,Transient-Party,44.8,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,2,2016,December,49,2,0,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,65.85,1,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,0,2016,December,49,2,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 253, NULL,0,Transient-Party,44.8,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,22,2016,December,49,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,1,2,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,1,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53.67,0,1,Check-Out,2016-12-04,Winter,2016-12-01T08:00Z +Keep,80,2016,December,49,2,0,2,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 253, NULL,0,Transient-Party,44.8,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,66,2016,November,49,29,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,37.01,0,1,Check-Out,2016-12-04,Fall,2016-11-29T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,3,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,3,2016,December,49,3,0,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,158,1,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,1,2016,December,49,2,0,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,51.6,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,8,2016,December,49,1,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,53.67,0,1,Check-Out,2016-12-04,Winter,2016-12-01T08:00Z +Keep,25,2016,December,49,2,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,60,2016,December,49,2,0,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,3,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,G,G,0,No Deposit , NULL, 364,0,Transient,50,0,3,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,25,2016,November,49,30,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,40.8,0,1,Check-Out,2016-12-04,Fall,2016-11-30T08:00Z +Keep,80,2016,December,49,2,0,2,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 253, NULL,0,Transient-Party,44.8,0,0,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,7,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,80,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,18,2016,December,49,2,0,2,2,0,0,BB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 253, NULL,0,Transient-Party,51.8,0,1,Check-Out,2016-12-04,Winter,2016-12-02T08:00Z +Keep,1,2016,December,49,3,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-12-04,Winter,2016-12-03T08:00Z +Keep,4,2016,December,50,4,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,66,1,0,Check-Out,2016-12-05,Winter,2016-12-04T08:00Z +Keep,11,2016,December,50,5,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,0,0,Check-Out,2016-12-07,Winter,2016-12-05T08:00Z +Keep,26,2016,November,49,30,1,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,38.62,0,1,Check-Out,2016-12-05,Fall,2016-11-30T08:00Z +Keep,0,2016,December,50,4,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,1,Check-Out,2016-12-05,Winter,2016-12-04T08:00Z +Keep,37,2016,December,49,3,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-12-05,Winter,2016-12-03T08:00Z +Keep,0,2016,December,50,4,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,58,0,0,Check-Out,2016-12-05,Winter,2016-12-04T08:00Z +Keep,21,2016,December,49,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-12-05,Winter,2016-12-01T08:00Z +Keep,7,2016,December,49,1,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97.25,1,0,Check-Out,2016-12-05,Winter,2016-12-01T08:00Z +Keep,21,2016,December,49,3,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2016-12-05,Winter,2016-12-03T08:00Z +Keep,20,2016,December,50,4,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2016-12-05,Winter,2016-12-04T08:00Z +Keep,31,2016,December,49,3,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,60,0,0,Check-Out,2016-12-05,Winter,2016-12-03T08:00Z +Keep,0,2016,December,49,1,1,3,2,0,1,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,62.25,0,0,Check-Out,2016-12-05,Winter,2016-12-01T08:00Z +Keep,1,2016,December,50,4,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-05,Winter,2016-12-04T08:00Z +Keep,294,2016,November,49,29,1,5,1,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 8, NULL,0,Transient,35.4,0,1,Check-Out,2016-12-05,Fall,2016-11-29T08:00Z +Keep,13,2016,December,50,6,1,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient,50,0,0,Check-Out,2016-12-12,Winter,2016-12-06T08:00Z +Keep,24,2016,December,49,3,2,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-12-06,Winter,2016-12-03T08:00Z +Keep,56,2016,December,49,3,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96,1,2,Check-Out,2016-12-06,Winter,2016-12-03T08:00Z +Keep,40,2016,December,50,4,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-12-06,Winter,2016-12-04T08:00Z +Keep,22,2016,December,50,6,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-12-06,Winter,2016-12-06T08:00Z +Keep,168,2016,November,49,28,3,5,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-12-06,Fall,2016-11-28T08:00Z +Keep,67,2016,December,49,1,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,32.02,0,1,Check-Out,2016-12-06,Winter,2016-12-01T08:00Z +Keep,72,2016,December,49,2,2,2,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-12-06,Winter,2016-12-02T08:00Z +Keep,6,2016,December,50,4,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,71.5,0,0,Check-Out,2016-12-06,Winter,2016-12-04T08:00Z +Keep,3,2016,December,49,3,2,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,72.31,0,1,Check-Out,2016-12-06,Winter,2016-12-03T08:00Z +Keep,74,2016,December,49,3,2,1,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-12-06,Winter,2016-12-03T08:00Z +Keep,63,2016,November,49,29,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.72,0,1,Check-Out,2016-12-06,Fall,2016-11-29T08:00Z +Keep,2,2016,December,50,4,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,80.5,1,1,Check-Out,2016-12-06,Winter,2016-12-04T08:00Z +Keep,50,2016,November,49,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,44.99,0,1,Check-Out,2016-12-06,Fall,2016-11-29T08:00Z +Keep,0,2016,December,49,3,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,81,1,0,Check-Out,2016-12-06,Winter,2016-12-03T08:00Z +Keep,6,2016,December,50,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 104, NULL,0,Transient,41.4,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,11,2016,December,49,3,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,1,No Deposit , 134, NULL,0,Transient-Party,89,0,1,Check-Out,2016-12-07,Winter,2016-12-03T08:00Z +Keep,0,2016,December,50,5,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 43,0,Transient-Party,30,0,0,Check-Out,2016-12-07,Winter,2016-12-05T08:00Z +Keep,28,2016,December,49,3,2,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,1,Check-Out,2016-12-07,Winter,2016-12-03T08:00Z +Keep,1,2016,December,50,6,0,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 491,0,Transient,54.9,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,1,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 490,0,Transient,49.5,1,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,17,2017,February,6,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 490,0,Transient,36,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,4,2016,December,50,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,9,2016,December,50,4,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,59.33,0,1,Check-Out,2016-12-07,Winter,2016-12-04T08:00Z +Keep,32,2016,November,48,23,4,10,2,0,1,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 464, NULL,0,Transient,96,0,1,Check-Out,2016-12-07,Fall,2016-11-23T08:00Z +Keep,92,2016,December,49,3,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 336, NULL,0,Transient,34,0,2,Check-Out,2016-12-07,Winter,2016-12-03T08:00Z +Keep,11,2016,December,49,3,2,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,1,No Deposit , 134, NULL,0,Transient-Party,93,1,1,Check-Out,2016-12-07,Winter,2016-12-03T08:00Z +Keep,0,2016,December,50,6,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,53.55,1,1,Check-Out,2016-12-07,Winter,2016-12-06T08:00Z +Keep,0,2016,December,50,5,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 43,0,Transient-Party,36,1,0,Check-Out,2016-12-07,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 134, NULL,0,Transient-Party,115.5,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,1,0,0,Undefined,ESP,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,0,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,3,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient-Party,86,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,6,2016,December,50,5,1,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 134, NULL,0,Transient-Party,115.5,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,5,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,3,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 134, NULL,0,Transient-Party,42,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,14,2016,December,50,5,1,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 134, NULL,0,Transient-Party,84,0,0,Check-Out,2016-12-08,Winter,2016-12-05T08:00Z +Keep,80,2016,November,46,10,8,20,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,38.25,0,1,Check-Out,2016-12-08,Fall,2016-11-10T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,1,2016,December,50,7,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,73,0,1,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,0,2016,December,50,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-08,Winter,2016-12-08T08:00Z +Keep,0,2016,December,51,11,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-11,Winter,2016-12-11T08:00Z +Keep,40,2016,December,49,1,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 464, NULL,0,Transient,48,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,33,2016,November,48,24,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-08,Fall,2016-11-24T08:00Z +Keep,3,2016,December,50,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,1,2,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,17,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,7,2016,December,50,4,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,81.75,1,0,Check-Out,2016-12-08,Winter,2016-12-04T08:00Z +Keep,9,2016,December,50,7,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,1,0,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,3,2016,December,50,6,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2016-12-08,Winter,2016-12-06T08:00Z +Keep,27,2016,December,49,1,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,52,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,26,2016,December,50,4,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,50,0,0,Check-Out,2016-12-08,Winter,2016-12-04T08:00Z +Keep,40,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,21,2016,December,50,7,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,60,1,1,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,21,2016,December,50,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,40,2016,December,49,1,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,48,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,49,2016,December,50,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,2,Check-Out,2016-12-08,Winter,2016-12-07T08:00Z +Keep,0,2016,December,50,6,0,2,3,1,0,BB,LVA,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,106,0,0,Check-Out,2016-12-08,Winter,2016-12-06T08:00Z +Keep,174,2016,December,50,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,55.8,0,3,Check-Out,2016-12-12,Winter,2016-12-08T08:00Z +Keep,73,2016,December,50,6,0,2,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2016-12-08,Winter,2016-12-06T08:00Z +Keep,33,2016,November,48,24,4,10,3,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 464, NULL,0,Transient,99,0,0,Check-Out,2016-12-08,Fall,2016-11-24T08:00Z +Keep,26,2016,December,50,4,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,50,0,0,Check-Out,2016-12-08,Winter,2016-12-04T08:00Z +Keep,28,2016,December,49,1,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,17,2016,December,49,1,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,48,0,0,Check-Out,2016-12-08,Winter,2016-12-01T08:00Z +Keep,3,2016,December,50,5,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2016-12-09,Winter,2016-12-05T08:00Z +Keep,10,2016,December,51,12,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2016-12-17,Winter,2016-12-12T08:00Z +Keep,50,2016,December,50,7,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-12-09,Winter,2016-12-07T08:00Z +Keep,0,2016,December,50,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,0,2017,January,3,15,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,41,0,0,Check-Out,2017-01-16,Winter,2017-01-15T08:00Z +Keep,17,2016,December,50,4,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,96,1,1,Check-Out,2016-12-09,Winter,2016-12-04T08:00Z +Keep,16,2016,December,50,8,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,71,1,0,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,14,2016,December,50,9,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-12-09,Winter,2016-12-09T08:00Z +Keep,48,2016,December,50,9,0,0,1,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,0,0,0,Check-Out,2016-12-09,Winter,2016-12-09T08:00Z +Keep,1,2016,December,50,4,2,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,52.75,0,0,Check-Out,2016-12-09,Winter,2016-12-04T08:00Z +Keep,5,2016,December,50,7,0,2,2,1,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-09,Winter,2016-12-07T08:00Z +Keep,154,2016,December,49,3,2,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,42.12,0,0,Check-Out,2016-12-09,Winter,2016-12-03T08:00Z +Keep,32,2016,December,50,6,0,3,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,40,1,0,Check-Out,2016-12-09,Winter,2016-12-06T08:00Z +Keep,1,2016,December,50,7,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2016-12-09,Winter,2016-12-07T08:00Z +Keep,1,2016,December,50,7,0,2,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,62,1,2,Check-Out,2016-12-09,Winter,2016-12-07T08:00Z +Keep,16,2016,December,50,8,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,0,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,16,2016,December,50,8,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,0,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,16,2016,December,50,8,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,2,Check-Out,2016-12-09,Winter,2016-12-08T08:00Z +Keep,203,2016,December,49,2,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,4,No Deposit , 250, NULL,0,Transient,66.8,0,0,Check-Out,2016-12-09,Winter,2016-12-02T08:00Z +Keep,102,2016,December,50,9,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,1,No Deposit , 241, NULL,0,Transient,0,0,3,Check-Out,2016-12-09,Winter,2016-12-09T08:00Z +Keep,24,2016,December,49,3,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,130,2016,December,49,3,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,57.1,0,1,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,232,2016,December,49,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,34.11,0,0,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,72,2016,December,49,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,47.07,1,0,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,62,2016,December,50,5,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,72.06,1,1,Check-Out,2016-12-10,Winter,2016-12-05T08:00Z +Keep,34,2016,December,50,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-10,Winter,2016-12-09T08:00Z +Keep,34,2016,December,50,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-10,Winter,2016-12-09T08:00Z +Keep,1,2016,December,50,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2016-12-10,Winter,2016-12-09T08:00Z +Keep,1,2017,January,4,26,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , 250, NULL,0,Transient,52,1,1,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,34,2016,December,50,9,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-12-10,Winter,2016-12-09T08:00Z +Keep,9,2016,December,50,8,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-12-10,Winter,2016-12-08T08:00Z +Keep,67,2016,December,50,6,0,4,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,25.42,0,0,Check-Out,2016-12-10,Winter,2016-12-06T08:00Z +Keep,62,2016,December,50,4,2,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,54.9,1,0,Check-Out,2016-12-10,Winter,2016-12-04T08:00Z +Keep,33,2016,December,50,8,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-12-10,Winter,2016-12-08T08:00Z +Keep,168,2016,November,48,21,5,14,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,86.6,0,2,Check-Out,2016-12-10,Fall,2016-11-21T08:00Z +Keep,87,2016,December,49,3,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , 240, NULL,0,Transient-Party,85.5,0,2,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,87,2016,December,49,3,2,5,2,1,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,133,0,3,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,87,2016,December,49,3,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient-Party,143,0,2,Check-Out,2016-12-10,Winter,2016-12-03T08:00Z +Keep,35,2016,December,50,8,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-10,Winter,2016-12-08T08:00Z +Keep,14,2016,December,50,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2016-12-10,Winter,2016-12-09T08:00Z +Keep,234,2016,December,50,7,0,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,48.12,1,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,33.3,0,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,1,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,5,2016,December,50,8,0,3,1,0,0,Undefined,ESP,Complementary,TA/TO, 0,0,0,A,A,1,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,1,2016,December,50,8,0,3,1,0,0,Undefined,ESP,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,0,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,35,2016,December,50,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,66,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,44,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,22,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,5,2016,December,50,8,0,3,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,56,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,1,2016,December,50,8,0,3,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 38, NULL,0,Transient-Party,80,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,39.3,1,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,33.3,0,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,82,2016,December,50,7,0,4,1,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,33.3,0,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,22,2016,December,50,9,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,0,0,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,22,2016,December,50,9,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,61,1,1,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39.3,1,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,33.3,0,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,0,2016,December,50,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,0,1,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,20,2016,December,50,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,86,1,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,3,2016,December,50,8,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,110,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,17,2016,December,50,8,0,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,105,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,1,2016,December,50,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,91,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,1,2016,December,49,2,2,7,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,76.22,0,1,Check-Out,2016-12-11,Winter,2016-12-02T08:00Z +Keep,72,2016,December,50,5,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 242, NULL,0,Transient-Party,47.85,0,1,Check-Out,2016-12-11,Winter,2016-12-05T08:00Z +Keep,35,2016,December,50,8,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,35,2016,December,50,8,0,3,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,4,2016,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,72,2016,December,50,5,1,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 242, NULL,0,Transient-Party,47.85,0,1,Check-Out,2016-12-11,Winter,2016-12-05T08:00Z +Keep,0,2016,December,50,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,49,2016,December,50,8,0,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,97.2,1,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,3,2016,December,50,10,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,110,0,0,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,35,2016,December,50,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,3,2016,December,50,9,0,2,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,44,2016,December,50,8,0,3,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,72,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,1,2016,December,50,10,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,2,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,0,2016,December,50,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,61,0,0,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,115,2016,December,50,9,0,2,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,46.8,0,1,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,2,2016,December,50,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.04,1,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,57,2016,December,50,8,0,3,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient-Party,79.2,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,61,2016,December,50,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-12-11,Winter,2016-12-09T08:00Z +Keep,57,2016,December,50,8,0,3,3,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient-Party,114.07,0,0,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,128,2016,December,50,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,2,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,128,2016,December,50,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,2,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,4,2016,December,50,7,0,4,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,5,2016,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,86,1,3,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,9,2017,January,2,14,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,85,1,3,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,6,2016,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,6,2016,December,50,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,25,2016,December,50,10,0,1,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,42.5,1,2,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,25,2016,December,50,10,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient-Party,34,0,2,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,25,2016,December,50,10,0,1,2,0,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 177, NULL,0,Transient-Party,34,1,2,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,17,2016,December,50,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-12-11,Winter,2016-12-08T08:00Z +Keep,25,2016,December,50,10,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,34,0,2,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,52,2016,December,50,10,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,99,1,1,Check-Out,2016-12-11,Winter,2016-12-10T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39.3,1,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,82,2016,December,50,7,0,4,2,0,0,BB,ESP,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39.3,1,0,Check-Out,2016-12-11,Winter,2016-12-07T08:00Z +Keep,2,2016,December,51,12,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-12-12,Winter,2016-12-12T08:00Z +Keep,0,2016,December,51,11,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-12,Winter,2016-12-11T08:00Z +Keep,80,2016,December,50,8,1,3,2,0,0,HB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-12-12,Winter,2016-12-08T08:00Z +Keep,34,2016,December,50,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,64.71,0,1,Check-Out,2016-12-12,Winter,2016-12-05T08:00Z +Keep,1,2016,December,51,11,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2016-12-12,Winter,2016-12-11T08:00Z +Keep,1,2016,December,51,12,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Group,38.4,0,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,5,2016,December,50,10,1,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,42.75,0,1,Check-Out,2016-12-12,Winter,2016-12-10T08:00Z +Keep,34,2016,December,50,7,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-12-12,Winter,2016-12-07T08:00Z +Keep,8,2016,December,50,10,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-12-12,Winter,2016-12-10T08:00Z +Keep,4,2016,December,51,11,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,50.4,0,0,Check-Out,2016-12-12,Winter,2016-12-11T08:00Z +Keep,51,2016,December,50,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2016-12-12,Winter,2016-12-10T08:00Z +Keep,155,2016,December,50,5,2,5,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,61.8,1,2,Check-Out,2016-12-12,Winter,2016-12-05T08:00Z +Keep,37,2016,December,50,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-12,Winter,2016-12-09T08:00Z +Keep,34,2016,December,50,5,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,70.71,1,1,Check-Out,2016-12-12,Winter,2016-12-05T08:00Z +Keep,60,2016,December,50,6,2,5,1,0,0,HB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,56.7,0,0,Check-Out,2016-12-13,Winter,2016-12-06T08:00Z +Keep,4,2016,December,51,12,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,32.95,0,1,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,22,2016,December,50,10,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,55.44,0,0,Check-Out,2016-12-13,Winter,2016-12-10T08:00Z +Keep,0,2016,December,51,12,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,41.11,1,1,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,2,2016,December,51,12,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 494,0,Transient,45,1,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,0,2016,December,52,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 494,0,Transient,39,1,1,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,0,2016,December,53,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 494,0,Transient,69,1,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,12,2016,December,50,9,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.96,0,2,Check-Out,2016-12-13,Winter,2016-12-09T08:00Z +Keep,1,2016,December,51,12,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,0,2016,December,51,12,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,0,2017,January,4,23,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-25,Winter,2017-01-23T08:00Z +Keep,0,2016,December,51,13,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-13,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,13,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-13,Winter,2016-12-13T08:00Z +Keep,3,2016,December,51,12,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,82,2016,December,50,10,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-12-13,Winter,2016-12-10T08:00Z +Keep,43,2016,December,50,8,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,34.86,0,2,Check-Out,2016-12-13,Winter,2016-12-08T08:00Z +Keep,53,2016,December,51,12,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,43.2,0,1,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,1,2016,December,51,11,2,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-13,Winter,2016-12-11T08:00Z +Keep,0,2016,December,51,13,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-13,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,12,1,0,1,0,0,BB,ECU,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2016-12-13,Winter,2016-12-12T08:00Z +Keep,7,2016,December,50,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,73,0,0,Check-Out,2016-12-13,Winter,2016-12-09T08:00Z +Keep,64,2016,December,50,10,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-13,Winter,2016-12-10T08:00Z +Keep,9,2016,December,51,11,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,35.12,0,2,Check-Out,2016-12-13,Winter,2016-12-11T08:00Z +Keep,9,2016,December,51,11,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,35.12,0,2,Check-Out,2016-12-13,Winter,2016-12-11T08:00Z +Keep,14,2016,December,51,14,0,2,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.8,0,1,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,14,2016,December,51,14,0,2,1,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.8,0,1,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,14,2016,December,51,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,49,1,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,7,2016,December,51,13,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,12,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,0,2017,March,12,20,1,3,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,C,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-03-24,Spring,2017-03-20T07:00Z +Keep,1,2016,December,51,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,14,0,0,1,0,0,BB,Unknown,Corporate,Corporate, 1,0,0,A,A,0,No Deposit , NULL, 178,0,Transient,0,0,0,Check-Out,2016-12-14,Winter,2016-12-14T08:00Z +Keep,33,2016,December,51,14,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2016-12-14,Winter,2016-12-14T08:00Z +Keep,36,2016,December,51,12,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,11,2016,December,51,12,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,36,2016,December,51,12,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,5,2016,December,51,13,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,5,2016,December,51,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-12-14,Winter,2016-12-11T08:00Z +Keep,0,2016,December,51,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,15,2016,December,51,12,1,1,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,56.4,1,0,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,0,2016,December,51,13,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,6,1,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,13,0,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59,0,0,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,20,2016,December,51,12,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,80.09,1,2,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,0,2016,December,51,12,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2016-12-14,Winter,2016-12-12T08:00Z +Keep,6,2016,December,51,13,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.11,1,1,Check-Out,2016-12-14,Winter,2016-12-13T08:00Z +Keep,1,2016,December,51,15,0,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-15,Winter,2016-12-15T08:00Z +Keep,1,2016,December,51,15,0,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-12-15,Winter,2016-12-15T08:00Z +Keep,83,2016,December,51,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2016-12-15,Winter,2016-12-12T08:00Z +Keep,8,2016,December,51,13,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 388,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,1,2017,January,3,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 388,0,Transient,35,0,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,1,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,2,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 355,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,12,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 355,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,5,2016,December,51,14,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,5,2016,December,51,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2017,March,9,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,79,2016,December,51,11,2,2,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2016-12-15,Winter,2016-12-11T08:00Z +Keep,7,2016,December,51,13,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 78, NULL,0,Transient-Party,30,0,0,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,7,2016,December,51,13,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 78, NULL,0,Transient-Party,30,0,0,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,5,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 47,0,Transient,30,1,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,0,2016,December,51,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,1,2016,December,51,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 8, NULL,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,7,2016,December,51,13,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 78, NULL,0,Transient-Party,30,0,0,Check-Out,2016-12-15,Winter,2016-12-13T08:00Z +Keep,2,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 355,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,12,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 355,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,13,2017,May,19,8,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,2,No Deposit , NULL, 355,0,Transient,45,0,0,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,2,2016,December,51,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 428,0,Transient,30,0,0,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,56,2016,December,50,10,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,60.98,0,1,Check-Out,2016-12-15,Winter,2016-12-10T08:00Z +Keep,10,2016,December,51,12,1,2,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,36,0,0,Check-Out,2016-12-15,Winter,2016-12-12T08:00Z +Keep,186,2016,December,50,10,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,36.24,1,0,Check-Out,2016-12-15,Winter,2016-12-10T08:00Z +Keep,1,2016,December,51,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,1,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,47,2016,December,50,8,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-15,Winter,2016-12-08T08:00Z +Keep,6,2016,December,50,8,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-15,Winter,2016-12-08T08:00Z +Keep,0,2016,December,51,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2016-12-15,Winter,2016-12-14T08:00Z +Keep,47,2016,December,50,8,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-15,Winter,2016-12-08T08:00Z +Keep,6,2016,December,50,8,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-15,Winter,2016-12-08T08:00Z +Keep,47,2016,December,50,8,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-15,Winter,2016-12-08T08:00Z +Keep,40,2016,December,49,1,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,64,0,0,Check-Out,2016-12-15,Winter,2016-12-01T08:00Z +Keep,6,2016,December,51,12,1,3,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, 193,0,Transient,39,0,0,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,1,2016,December,51,15,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,0,2016,December,51,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,2,2016,December,51,15,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,2,2016,December,51,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,1,2016,December,51,12,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,0,2017,February,8,21,0,3,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,1,A,I,0,No Deposit , NULL, 516,0,Transient,42,1,2,Check-Out,2017-02-24,Winter,2017-02-21T08:00Z +Keep,1,2016,December,51,12,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,54,2016,December,50,10,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 336, NULL,0,Transient,55,0,0,Check-Out,2016-12-16,Winter,2016-12-10T08:00Z +Keep,50,2016,December,51,15,0,1,3,1,0,BB,EST,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,1,2016,December,51,12,1,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,39,0,0,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,21,2016,December,51,12,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-12-16,Winter,2016-12-12T08:00Z +Keep,7,2016,December,51,14,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,67,2016,December,50,9,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2016-12-16,Winter,2016-12-09T08:00Z +Keep,8,2016,December,51,15,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,0,2016,December,51,14,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,18,2016,December,51,15,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,8,2016,December,51,15,0,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,1,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,9,2016,December,51,14,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-16,Winter,2016-12-14T08:00Z +Keep,10,2016,December,51,15,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-16,Winter,2016-12-15T08:00Z +Keep,71,2016,December,50,10,2,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,30.6,0,0,Check-Out,2016-12-17,Winter,2016-12-10T08:00Z +Keep,254,2016,December,51,11,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2016-12-17,Winter,2016-12-11T08:00Z +Keep,16,2016,December,51,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,16,2016,December,51,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,41,2016,December,51,12,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,74.88,1,0,Check-Out,2016-12-17,Winter,2016-12-12T08:00Z +Keep,2,2016,December,51,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,36,1,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,32,2016,December,51,13,0,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,66.4,0,1,Check-Out,2016-12-17,Winter,2016-12-13T08:00Z +Keep,2,2016,December,51,16,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,81,2016,December,50,10,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,54.4,1,0,Check-Out,2016-12-17,Winter,2016-12-10T08:00Z +Keep,16,2016,December,51,16,0,1,1,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,0,2016,December,51,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,5,2016,December,50,10,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,58.43,1,1,Check-Out,2016-12-17,Winter,2016-12-10T08:00Z +Keep,59,2016,December,51,15,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,30.6,0,0,Check-Out,2016-12-17,Winter,2016-12-15T08:00Z +Keep,0,2016,December,51,16,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59,0,0,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,27,2016,December,50,9,2,6,2,0,0,BB,BEL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,87.46,1,1,Check-Out,2016-12-17,Winter,2016-12-09T08:00Z +Keep,101,2016,December,51,15,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,25.64,0,3,Check-Out,2016-12-17,Winter,2016-12-15T08:00Z +Keep,101,2016,December,51,15,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,25.64,0,3,Check-Out,2016-12-17,Winter,2016-12-15T08:00Z +Keep,65,2016,December,51,13,0,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48.8,0,3,Check-Out,2016-12-17,Winter,2016-12-13T08:00Z +Keep,26,2016,December,51,11,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2016-12-17,Winter,2016-12-11T08:00Z +Keep,77,2016,December,51,13,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-17,Winter,2016-12-13T08:00Z +Keep,1,2016,December,51,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,79,0,1,Check-Out,2016-12-17,Winter,2016-12-16T08:00Z +Keep,87,2016,December,51,15,0,3,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,29,2016,December,51,16,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,1,0,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,86,2016,December,51,15,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,1,2016,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,16,0,2,2,0,1,BB,ESP,Corporate,Corporate, 0,0,0,G,G,1,No Deposit , NULL, 496,0,Transient,81,1,2,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,50,2016,December,51,15,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,38.81,0,1,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,0,2016,December,51,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,45.6,0,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,162,2016,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,9,2016,December,51,17,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,30,2016,December,51,16,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,1,2016,December,51,17,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,17,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,17,0,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,39,1,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,3,2016,December,51,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,39,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,98,2016,December,51,16,0,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,43.8,1,0,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,4,2016,December,51,17,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,19,2016,December,51,17,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,119,1,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,19,2016,December,51,17,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,4,No Deposit , 250, NULL,0,Transient-Party,99,1,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,19,2016,December,51,17,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,4,No Deposit , 250, NULL,0,Transient-Party,99,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,30,2016,December,51,16,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,59,1,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,28,2016,December,51,16,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,25,2016,December,51,16,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,31,2016,December,51,15,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,52,1,0,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,6,2016,December,51,16,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,4,2016,December,51,16,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,62,1,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,8,2016,December,51,15,0,3,2,0,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,4,2016,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,1,2016,December,51,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,46,2016,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,66,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,11,2016,December,51,16,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,6,1,0,Check-Out,2016-12-18,Winter,2016-12-16T08:00Z +Keep,52,2016,December,51,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49.5,0,2,Check-Out,2016-12-18,Winter,2016-12-14T08:00Z +Keep,46,2016,December,51,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,66,0,0,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,18,2016,December,51,17,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,70,0,2,Check-Out,2016-12-18,Winter,2016-12-17T08:00Z +Keep,10,2016,December,51,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2016-12-18,Winter,2016-12-15T08:00Z +Keep,5,2016,December,52,18,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2016-12-19,Winter,2016-12-18T08:00Z +Keep,5,2016,December,52,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,41.11,1,1,Check-Out,2016-12-19,Winter,2016-12-18T08:00Z +Keep,22,2016,December,51,16,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-19,Winter,2016-12-16T08:00Z +Keep,2,2016,December,51,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,24,2016,December,51,15,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2016-12-19,Winter,2016-12-15T08:00Z +Keep,1,2016,December,51,14,1,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,0,Check-Out,2016-12-19,Winter,2016-12-14T08:00Z +Keep,0,2016,December,51,17,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,28,2016,December,51,17,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,68,2016,December,51,16,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,70,1,0,Check-Out,2016-12-19,Winter,2016-12-16T08:00Z +Keep,68,2016,December,51,16,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,62,0,0,Check-Out,2016-12-19,Winter,2016-12-16T08:00Z +Keep,8,2016,December,51,17,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,53.86,1,1,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,9,2016,December,51,16,1,2,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,49.66,1,1,Check-Out,2016-12-19,Winter,2016-12-16T08:00Z +Keep,42,2016,December,51,17,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-19,Winter,2016-12-17T08:00Z +Keep,3,2016,December,52,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2016-12-19,Winter,2016-12-18T08:00Z +Keep,29,2016,December,52,18,1,0,2,3,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,88,0,0,Check-Out,2016-12-19,Winter,2016-12-18T08:00Z +Keep,0,2016,December,52,19,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 115, NULL,0,Group,0,0,1,Check-Out,2016-12-19,Winter,2016-12-19T08:00Z +Keep,9,2016,December,52,18,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-12-19,Winter,2016-12-18T08:00Z +Keep,13,2016,December,52,19,0,0,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 6, NULL,0,Transient,0,0,0,Check-Out,2016-12-19,Winter,2016-12-19T08:00Z +Keep,52,2016,December,51,17,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2016-12-20,Winter,2016-12-17T08:00Z +Keep,5,2016,December,52,19,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,0,2016,December,52,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,9,2016,December,52,18,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2016-12-20,Winter,2016-12-18T08:00Z +Keep,3,2016,December,52,19,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,2,2017,January,3,18,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 1,0,1,A,C,0,No Deposit , NULL, 178,0,Transient,35,0,2,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,0,2016,December,52,19,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, 421,0,Transient,39,0,0,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,0,2016,December,52,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,50,1,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,0,2016,December,51,17,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-12-20,Winter,2016-12-17T08:00Z +Keep,1,2016,December,52,19,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,2,2016,December,53,29,0,2,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient-Party,75,0,3,Check-Out,2016-12-31,Winter,2016-12-29T08:00Z +Keep,1,2017,January,4,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Group,43,0,3,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,65,2016,December,51,17,2,1,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,88.22,0,1,Check-Out,2016-12-20,Winter,2016-12-17T08:00Z +Keep,8,2016,December,52,19,1,0,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,89.4,0,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,1,2016,December,52,19,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,103,2016,December,50,10,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,61.2,0,0,Check-Out,2016-12-20,Winter,2016-12-10T08:00Z +Keep,0,2016,December,52,18,2,0,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,99,1,0,Check-Out,2016-12-20,Winter,2016-12-18T08:00Z +Keep,0,2016,December,52,18,2,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,1,0,Check-Out,2016-12-20,Winter,2016-12-18T08:00Z +Keep,60,2016,December,51,15,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,57.93,1,2,Check-Out,2016-12-20,Winter,2016-12-15T08:00Z +Keep,1,2016,December,52,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59,1,1,Check-Out,2016-12-20,Winter,2016-12-19T08:00Z +Keep,77,2016,December,51,16,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-20,Winter,2016-12-16T08:00Z +Keep,79,2016,December,51,16,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,70.8,1,1,Check-Out,2016-12-21,Winter,2016-12-16T08:00Z +Keep,7,2016,December,52,20,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,7,2016,December,52,20,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,49,1,1,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,0,2016,December,52,18,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2016-12-21,Winter,2016-12-18T08:00Z +Keep,35,2016,December,52,19,1,1,1,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2016-12-21,Winter,2016-12-19T08:00Z +Keep,1,2016,December,52,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 291,0,Transient,30,1,0,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,1,2017,January,2,10,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 291,0,Transient,35,1,0,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,99,2016,December,52,20,0,1,2,2,0,BB,BRA,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,7,2016,December,52,20,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,0,2016,December,52,20,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,1,0,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,0,2017,May,18,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,73,1,1,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,8,2016,December,51,16,2,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,31.8,0,1,Check-Out,2016-12-21,Winter,2016-12-16T08:00Z +Keep,0,2016,December,52,20,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,90,1,0,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,15,2016,December,51,16,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.41,0,1,Check-Out,2016-12-21,Winter,2016-12-16T08:00Z +Keep,1,2016,December,51,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,27.6,0,0,Check-Out,2016-12-21,Winter,2016-12-17T08:00Z +Keep,0,2016,December,52,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,A,1,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2016-12-21,Winter,2016-12-20T08:00Z +Keep,0,2016,December,52,20,0,2,1,0,0,FB,MAR,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 59,0,Transient,68,0,0,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,109,2016,December,51,16,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,48.8,0,1,Check-Out,2016-12-22,Winter,2016-12-16T08:00Z +Keep,5,2016,December,52,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, 146,0,Transient,43,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,2,2017,January,3,18,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,C,0,No Deposit , 146, NULL,0,Group,38,1,0,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,49,2016,December,51,17,2,3,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,86.7,0,0,Check-Out,2016-12-22,Winter,2016-12-17T08:00Z +Keep,117,2016,December,51,17,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2016-12-22,Winter,2016-12-17T08:00Z +Keep,6,2016,December,52,20,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,0,2016,December,52,21,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59,0,1,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,0,2016,December,52,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,35,2016,December,52,19,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-22,Winter,2016-12-19T08:00Z +Keep,0,2016,December,51,15,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-22,Winter,2016-12-15T08:00Z +Keep,9,2016,December,52,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,39,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,2,2017,January,1,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,16,2017,January,3,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,1,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,17,2016,December,50,8,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-22,Winter,2016-12-08T08:00Z +Keep,66,2016,December,52,21,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,0,2,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,15,2016,December,52,20,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,5,2017,May,18,3,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,13,2017,June,23,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 154,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-07T07:00Z +Keep,60,2017,July,30,24,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 154,0,Transient,135,0,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,58,2016,December,52,20,0,2,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2016-12-22,Winter,2016-12-20T08:00Z +Keep,150,2016,December,51,15,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,49.8,0,2,Check-Out,2016-12-22,Winter,2016-12-15T08:00Z +Keep,154,2016,December,52,22,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47.8,0,2,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,2,2016,December,53,29,0,1,2,0,0,BB,CN,Direct,TA/TO, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,75,0,2,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Keep,1,2016,December,52,19,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,1,1,Check-Out,2016-12-22,Winter,2016-12-19T08:00Z +Keep,15,2016,December,52,21,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,20,2016,December,51,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2016-12-22,Winter,2016-12-17T08:00Z +Keep,23,2016,December,51,17,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,55.44,0,0,Check-Out,2016-12-22,Winter,2016-12-17T08:00Z +Keep,2,2016,December,52,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 92,0,Transient,30,0,0,Check-Out,2016-12-22,Winter,2016-12-21T08:00Z +Keep,3,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 92,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,0,2016,December,51,15,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2016-12-22,Winter,2016-12-15T08:00Z +Keep,17,2016,December,52,19,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,71,1,0,Check-Out,2016-12-22,Winter,2016-12-19T08:00Z +Keep,24,2016,December,51,15,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2016-12-22,Winter,2016-12-15T08:00Z +Keep,7,2016,December,52,19,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,34.4,0,1,Check-Out,2016-12-22,Winter,2016-12-19T08:00Z +Keep,5,2017,February,8,20,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 241, NULL,0,Transient,33.65,0,2,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,3,2017,March,13,27,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,A,0,No Deposit , 146, NULL,0,Transient,50,0,2,Check-Out,2017-03-31,Spring,2017-03-27T07:00Z +Keep,4,2017,June,23,6,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,3,A,A,0,No Deposit , 146, NULL,0,Transient,108,0,2,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,2,2016,December,52,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2016-12-23,Winter,2016-12-23T08:00Z +Keep,90,2016,December,52,19,1,3,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,64.8,0,2,Check-Out,2016-12-23,Winter,2016-12-19T08:00Z +Keep,55,2016,December,52,19,1,3,2,0,1,BB,CHN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30.6,0,0,Check-Out,2016-12-23,Winter,2016-12-19T08:00Z +Keep,3,2016,December,52,19,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2016-12-23,Winter,2016-12-19T08:00Z +Keep,103,2016,December,52,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,0,0,1,Check-Out,2016-12-23,Winter,2016-12-23T08:00Z +Keep,71,2016,December,52,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2016-12-23,Winter,2016-12-21T08:00Z +Keep,8,2016,December,52,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,1,1,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,88,2016,December,51,17,2,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2016-12-23,Winter,2016-12-17T08:00Z +Keep,0,2016,December,52,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,1,0,Check-Out,2016-12-23,Winter,2016-12-22T08:00Z +Keep,26,2016,December,52,19,1,3,2,0,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2016-12-23,Winter,2016-12-19T08:00Z +Keep,94,2016,December,51,16,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2016-12-23,Winter,2016-12-16T08:00Z +Keep,1,2016,December,52,19,1,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,55.11,0,1,Check-Out,2016-12-23,Winter,2016-12-19T08:00Z +Keep,71,2016,December,52,21,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,64.8,0,1,Check-Out,2016-12-23,Winter,2016-12-21T08:00Z +Keep,1,2016,December,52,22,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2016-12-24,Winter,2016-12-22T08:00Z +Keep,5,2016,December,53,26,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 314, NULL,0,Transient,48,0,1,Check-Out,2016-12-29,Winter,2016-12-26T08:00Z +Keep,3,2016,December,51,14,2,8,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,78,0,1,Check-Out,2016-12-24,Winter,2016-12-14T08:00Z +Keep,54,2016,December,52,19,1,4,2,0,1,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2016-12-24,Winter,2016-12-19T08:00Z +Keep,54,2016,December,52,19,1,4,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-12-24,Winter,2016-12-19T08:00Z +Keep,3,2016,December,52,23,0,1,1,0,0,BB,BGR,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, 499,0,Transient,44,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,3,2016,December,51,12,3,9,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-24,Winter,2016-12-12T08:00Z +Keep,83,2016,December,52,23,0,1,2,1,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,87,0,2,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,83,2016,December,52,23,0,1,2,0,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,83,2016,December,52,23,0,1,2,0,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,83,2016,December,52,23,0,1,2,1,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,87,0,2,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,83,2016,December,52,23,0,1,2,0,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,83,2016,December,52,23,0,1,2,1,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,87,0,2,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,77,2016,December,52,23,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,44.64,0,0,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,118,2016,December,52,19,1,4,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,39.8,0,1,Check-Out,2016-12-24,Winter,2016-12-19T08:00Z +Keep,118,2016,December,52,19,1,4,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,55.8,0,1,Check-Out,2016-12-24,Winter,2016-12-19T08:00Z +Keep,7,2016,December,52,21,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,1,Check-Out,2016-12-24,Winter,2016-12-21T08:00Z +Keep,0,2016,December,52,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2016-12-24,Winter,2016-12-23T08:00Z +Keep,1,2016,December,52,20,0,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.6,0,1,Check-Out,2016-12-24,Winter,2016-12-20T08:00Z +Keep,223,2016,December,52,18,2,4,2,2,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,78.3,0,1,Check-Out,2016-12-24,Winter,2016-12-18T08:00Z +Keep,5,2016,December,52,24,0,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,101,0,1,Check-Out,2016-12-25,Winter,2016-12-24T08:00Z +Keep,19,2016,December,52,24,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65.4,0,0,Check-Out,2016-12-25,Winter,2016-12-24T08:00Z +Keep,2,2016,December,52,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2016-12-25,Winter,2016-12-24T08:00Z +Keep,69,2016,December,52,23,0,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,136,0,1,Check-Out,2016-12-25,Winter,2016-12-23T08:00Z +Keep,73,2016,December,51,17,3,6,2,0,0,HB,RUS,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,80.2,0,0,Check-Out,2016-12-26,Winter,2016-12-17T08:00Z +Keep,1,2016,December,52,24,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,89,2016,December,52,19,2,5,2,0,0,BB,HUN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 6, NULL,0,Transient,46.57,0,0,Check-Out,2016-12-26,Winter,2016-12-19T08:00Z +Keep,37,2016,December,51,17,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,52.67,0,3,Check-Out,2016-12-26,Winter,2016-12-17T08:00Z +Keep,0,2016,December,52,24,1,1,2,0,0,HB,BEL,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,117,1,0,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,64,2016,December,52,24,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,37.8,0,0,Check-Out,2016-12-27,Winter,2016-12-24T08:00Z +Keep,9,2016,December,52,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71,1,1,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,38,2016,December,52,24,1,1,2,1,0,BB,SGP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,130.35,0,0,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,95,2016,December,52,24,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,57.8,0,2,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,54,2016,December,53,25,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-12-26,Winter,2016-12-25T08:00Z +Keep,54,2016,December,53,25,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,0,Check-Out,2016-12-26,Winter,2016-12-25T08:00Z +Keep,18,2016,December,53,25,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,68,0,2,Check-Out,2016-12-26,Winter,2016-12-25T08:00Z +Keep,54,2016,December,53,25,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-12-26,Winter,2016-12-25T08:00Z +Keep,109,2016,December,52,24,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,109,2016,December,52,24,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,80,2016,December,52,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Group,30.24,0,0,Check-Out,2016-12-26,Winter,2016-12-19T08:00Z +Keep,152,2016,December,52,24,1,1,2,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,84.02,0,1,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,10,2016,December,52,23,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,55.57,0,1,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,102,2016,December,52,23,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43.67,0,1,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,102,2016,December,52,23,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55.33,0,1,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,124,2016,December,52,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,51.13,0,3,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,71,2016,December,52,23,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,2,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,49,2016,December,53,26,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,46,0,2,Check-Out,2016-12-28,Winter,2016-12-26T08:00Z +Keep,25,2016,December,52,20,1,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68.67,0,1,Check-Out,2016-12-26,Winter,2016-12-20T08:00Z +Keep,36,2016,December,52,23,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,80,1,0,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,3,2016,December,53,26,1,0,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,84,1,0,Check-Out,2016-12-27,Winter,2016-12-26T08:00Z +Keep,199,2016,December,52,19,2,5,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,29.97,0,3,Check-Out,2016-12-26,Winter,2016-12-19T08:00Z +Keep,199,2016,December,52,19,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,34.02,0,3,Check-Out,2016-12-26,Winter,2016-12-19T08:00Z +Keep,1,2016,December,52,24,1,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,123,0,1,Check-Out,2016-12-26,Winter,2016-12-24T08:00Z +Keep,124,2016,December,52,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,51.13,0,3,Check-Out,2016-12-26,Winter,2016-12-23T08:00Z +Keep,6,2016,December,53,25,1,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,76,1,0,Check-Out,2016-12-26,Winter,2016-12-25T08:00Z +Keep,0,2016,December,53,26,0,0,2,0,0,BB,PRT,Corporate,Corporate, 1,0,0,D,I,0,No Deposit , NULL, 270,0,Transient,0,0,1,Check-Out,2016-12-26,Winter,2016-12-26T08:00Z +Keep,128,2016,December,52,21,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,77.1,1,2,Check-Out,2016-12-27,Winter,2016-12-21T08:00Z +Keep,128,2016,December,52,21,2,4,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,71.1,0,2,Check-Out,2016-12-27,Winter,2016-12-21T08:00Z +Keep,99,2016,December,52,23,2,2,1,0,0,BB,BLR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,32,0,0,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,105,2016,December,52,22,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,77.44,0,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,105,2016,December,52,22,2,3,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,57.44,0,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,102,2016,December,52,22,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112.4,1,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,7,2016,December,52,23,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.75,0,2,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,16,2016,December,52,24,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,99.33,0,0,Check-Out,2016-12-27,Winter,2016-12-24T08:00Z +Keep,0,2016,December,53,26,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,93,0,1,Check-Out,2016-12-27,Winter,2016-12-26T08:00Z +Keep,156,2016,December,52,22,2,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient-Party,70.22,1,2,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,156,2016,December,52,22,2,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,57.22,0,3,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,156,2016,December,52,22,2,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient-Party,64.22,0,2,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,63,0,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,2,2016,December,52,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,62.75,0,2,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,44,2016,December,53,25,2,0,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,111,1,2,Check-Out,2016-12-27,Winter,2016-12-25T08:00Z +Keep,44,2016,December,53,25,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2016-12-27,Winter,2016-12-25T08:00Z +Keep,73,2016,December,52,23,2,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,87.9,1,1,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,47,2016,December,52,24,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,82,0,1,Check-Out,2016-12-27,Winter,2016-12-24T08:00Z +Keep,32,2016,December,52,19,3,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,50.15,0,0,Check-Out,2016-12-27,Winter,2016-12-19T08:00Z +Keep,73,2016,December,52,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,81.9,0,1,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,2,2016,December,52,22,2,3,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,108.7,0,1,Check-Out,2016-12-27,Winter,2016-12-22T08:00Z +Keep,59,2016,December,52,23,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,109,1,1,Check-Out,2016-12-27,Winter,2016-12-23T08:00Z +Keep,33,2016,December,52,24,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2016-12-27,Winter,2016-12-24T08:00Z +Keep,223,2016,December,52,20,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,89.31,1,3,Check-Out,2016-12-27,Winter,2016-12-20T08:00Z +Keep,223,2016,December,52,20,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,81.31,0,3,Check-Out,2016-12-27,Winter,2016-12-20T08:00Z +Keep,215,2016,December,52,20,2,5,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,43.5,0,0,Check-Out,2016-12-27,Winter,2016-12-20T08:00Z +Keep,98,2016,December,53,27,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,0,0,0,Check-Out,2016-12-27,Winter,2016-12-27T08:00Z +Keep,148,2016,November,48,23,10,25,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 75, NULL,0,Transient,41.98,0,1,Check-Out,2016-12-28,Fall,2016-11-23T08:00Z +Keep,57,2016,December,52,23,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,67.14,0,2,Check-Out,2016-12-28,Winter,2016-12-23T08:00Z +Keep,156,2016,December,52,19,3,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78.2,0,1,Check-Out,2016-12-28,Winter,2016-12-19T08:00Z +Keep,90,2016,December,52,21,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,56.63,0,0,Check-Out,2016-12-28,Winter,2016-12-21T08:00Z +Keep,36,2016,December,52,24,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,48,0,0,Check-Out,2016-12-28,Winter,2016-12-24T08:00Z +Keep,123,2016,December,53,25,2,1,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2016-12-28,Winter,2016-12-25T08:00Z +Keep,78,2016,December,53,26,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,1,Check-Out,2016-12-28,Winter,2016-12-26T08:00Z +Keep,0,2016,December,53,27,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,1,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,155,2016,December,52,21,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,66.22,1,1,Check-Out,2016-12-28,Winter,2016-12-21T08:00Z +Keep,29,2016,December,52,21,2,5,1,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,63.46,0,0,Check-Out,2016-12-28,Winter,2016-12-21T08:00Z +Keep,117,2016,December,52,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-28,Winter,2016-12-21T08:00Z +Keep,2,2016,December,53,27,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,110,1,2,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,2,2016,December,53,27,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,65,0,2,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,35,2016,December,53,25,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-12-28,Winter,2016-12-25T08:00Z +Keep,35,2016,December,53,25,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-12-28,Winter,2016-12-25T08:00Z +Keep,35,2016,December,53,25,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2016-12-28,Winter,2016-12-25T08:00Z +Keep,41,2016,December,52,21,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,101.31,0,0,Check-Out,2016-12-28,Winter,2016-12-21T08:00Z +Keep,36,2016,December,53,27,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,75,0,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,60,2016,December,52,24,2,2,3,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,96.94,0,3,Check-Out,2016-12-28,Winter,2016-12-24T08:00Z +Keep,1,2016,December,53,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,59.2,0,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,0,2016,December,53,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,81,1,0,Check-Out,2016-12-28,Winter,2016-12-27T08:00Z +Keep,29,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,2,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,10,2017,February,9,27,1,2,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.67,0,2,Check-Out,2017-03-02,Winter,2017-02-27T08:00Z +Keep,18,2017,May,18,6,2,1,2,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-05-09,Spring,2017-05-06T07:00Z +Keep,163,2016,December,52,24,2,3,2,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 339, NULL,0,Transient,86.24,0,1,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,185,2016,December,52,18,4,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 339, NULL,0,Transient,32.24,0,0,Check-Out,2016-12-29,Winter,2016-12-18T08:00Z +Keep,191,2016,December,52,23,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,39.8,0,2,Check-Out,2016-12-29,Winter,2016-12-23T08:00Z +Keep,164,2016,December,52,24,2,3,1,0,0,Undefined,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,54.64,0,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,94,2016,December,52,24,2,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,89,2016,December,52,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,120,2016,December,52,22,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,49.51,0,4,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,76,2016,December,52,18,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,47,0,1,Check-Out,2016-12-29,Winter,2016-12-18T08:00Z +Keep,239,2016,December,52,20,2,7,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,97.99,0,1,Check-Out,2016-12-29,Winter,2016-12-20T08:00Z +Keep,254,2016,December,52,24,2,3,2,0,0,BB,OMN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,4,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,131,2016,December,52,24,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,15,2016,December,52,24,2,3,2,1,0,BB,GBR,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,96,1,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,18,2016,December,52,24,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,111,1,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,0,2016,December,53,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2016-12-29,Winter,2016-12-28T08:00Z +Keep,16,2016,December,52,22,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,55.69,0,1,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,0,2016,December,53,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,65.2,1,1,Check-Out,2016-12-29,Winter,2016-12-28T08:00Z +Keep,208,2016,December,52,22,2,5,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Group,28.64,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,103,2016,December,53,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,62,0,0,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,51,2016,December,53,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70.33,1,2,Check-Out,2016-12-29,Winter,2016-12-26T08:00Z +Keep,39,2016,December,53,26,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2016-12-29,Winter,2016-12-26T08:00Z +Keep,47,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 464, NULL,0,Transient-Party,69.64,0,1,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,47,2016,December,52,22,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 464, NULL,0,Transient-Party,94.29,0,1,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,29,2016,December,53,27,0,2,2,0,0,HB,BRA,Complementary,Direct, 0,0,0,E,E,3,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,29,2016,December,53,27,0,2,2,0,0,HB,BRA,Complementary,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,67,2016,December,52,24,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.96,0,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,67,2016,December,52,24,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.96,0,0,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,191,2016,December,52,23,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,39.8,0,2,Check-Out,2016-12-29,Winter,2016-12-23T08:00Z +Keep,62,2016,December,53,29,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,I,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-29,Winter,2016-12-29T08:00Z +Keep,61,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,114.29,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,114.29,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,254,2016,December,52,24,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,4,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,3,2016,December,53,27,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,63,0,2,Check-Out,2016-12-29,Winter,2016-12-27T08:00Z +Keep,31,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,61,2016,December,52,22,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,77.14,0,0,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,12,2016,December,52,23,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90.17,0,0,Check-Out,2016-12-29,Winter,2016-12-23T08:00Z +Keep,12,2016,December,52,23,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70.17,0,1,Check-Out,2016-12-29,Winter,2016-12-23T08:00Z +Keep,79,2016,December,52,24,2,3,1,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,104.76,0,1,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,120,2016,December,52,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,47.8,0,4,Check-Out,2016-12-29,Winter,2016-12-22T08:00Z +Keep,10,2016,December,52,24,2,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,79,2016,December,52,24,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,83.76,1,1,Check-Out,2016-12-29,Winter,2016-12-24T08:00Z +Keep,0,2016,December,53,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2016-12-29,Winter,2016-12-28T08:00Z +Keep,66,2016,December,53,26,1,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,151,2016,December,52,23,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,55.8,0,0,Check-Out,2016-12-30,Winter,2016-12-23T08:00Z +Keep,128,2016,December,53,26,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,39.44,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,128,2016,December,53,26,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient-Party,37.44,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,42,2017,March,13,27,2,5,2,0,0,BB,GBR,Direct,Direct, 1,0,0,D,D,0,No Deposit , 250, NULL,0,Group,63.07,0,0,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,87,2016,December,53,29,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Keep,39,2016,December,53,26,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,57.75,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,69,2016,December,52,24,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.44,1,3,Check-Out,2016-12-30,Winter,2016-12-24T08:00Z +Keep,69,2016,December,52,24,2,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,50.6,0,3,Check-Out,2016-12-30,Winter,2016-12-24T08:00Z +Keep,7,2016,December,53,28,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,111,1,0,Check-Out,2016-12-30,Winter,2016-12-28T08:00Z +Keep,96,2016,December,53,26,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 468, NULL,0,Transient,66.24,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,101,2016,December,53,25,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,57.6,0,0,Check-Out,2016-12-30,Winter,2016-12-25T08:00Z +Keep,191,2016,December,52,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2016-12-30,Winter,2016-12-23T08:00Z +Keep,87,2016,December,53,27,0,3,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2016-12-30,Winter,2016-12-27T08:00Z +Keep,17,2016,December,53,26,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,27,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,120,2016,December,53,25,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86.4,0,2,Check-Out,2016-12-30,Winter,2016-12-25T08:00Z +Keep,120,2016,December,53,25,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86.4,0,2,Check-Out,2016-12-30,Winter,2016-12-25T08:00Z +Keep,120,2016,December,53,25,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86.4,0,2,Check-Out,2016-12-30,Winter,2016-12-25T08:00Z +Keep,30,2016,December,53,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2016-12-30,Winter,2016-12-28T08:00Z +Keep,16,2016,December,53,29,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Keep,120,2016,December,53,26,1,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,54.8,1,3,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,31,2016,December,53,26,1,3,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,66,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,1,2016,December,53,29,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,0,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Keep,120,2016,December,53,26,1,3,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,46.8,0,3,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,80,2016,December,52,24,2,4,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,46.8,0,1,Check-Out,2016-12-30,Winter,2016-12-24T08:00Z +Keep,80,2016,December,52,24,2,4,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58.47,0,1,Check-Out,2016-12-30,Winter,2016-12-24T08:00Z +Keep,79,2016,December,53,27,0,3,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,67.05,0,0,Check-Out,2016-12-30,Winter,2016-12-27T08:00Z +Keep,31,2016,December,53,26,1,3,2,0,1,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,52.8,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,94,2016,December,53,26,1,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,26.64,0,0,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,81,2016,December,51,16,4,10,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,89.43,0,2,Check-Out,2016-12-30,Winter,2016-12-16T08:00Z +Keep,63,2016,December,52,20,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,48.03,0,0,Check-Out,2016-12-30,Winter,2016-12-20T08:00Z +Keep,67,2016,December,52,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,96.09,0,0,Check-Out,2016-12-30,Winter,2016-12-23T08:00Z +Keep,32,2016,December,53,26,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,1,2016,December,53,29,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,119,0,0,Check-Out,2016-12-30,Winter,2016-12-29T08:00Z +Keep,0,2016,December,53,30,0,1,2,2,0,BB,ESP,Direct,TA/TO, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,106.5,0,0,Check-Out,2016-12-31,Winter,2016-12-30T08:00Z +Keep,28,2016,December,53,26,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,23,2016,December,53,26,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,55.44,0,1,Check-Out,2016-12-30,Winter,2016-12-26T08:00Z +Keep,1,2017,January,1,6,0,2,2,0,0,BB,NLD,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,2,2017,January,4,26,0,2,2,0,0,BB,NLD,Direct,Direct, 1,0,2,A,D,1,No Deposit , NULL, NULL,0,Transient,40.5,0,0,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,1,2017,February,7,17,0,1,2,0,0,BB,NLD,Direct,Direct, 1,0,3,A,A,0,No Deposit , NULL, NULL,0,Transient,48.6,0,0,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,3,2017,March,11,17,0,2,2,0,0,BB,NLD,Direct,Direct, 1,0,4,A,A,1,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,0,2016,December,53,30,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2016-12-30,Winter,2016-12-30T08:00Z +Keep,85,2016,December,52,21,2,8,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,89.4,0,1,Check-Out,2016-12-31,Winter,2016-12-21T08:00Z +Keep,85,2016,December,52,21,2,8,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,89.4,1,2,Check-Out,2016-12-31,Winter,2016-12-21T08:00Z +Keep,78,2016,December,52,24,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,58.04,0,1,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,79,2016,December,52,24,2,5,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.59,1,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,160,2016,December,52,24,2,5,3,1,0,BB,POL,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,92.19,0,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,131,2016,December,52,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52.33,0,1,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,68,2016,December,53,26,1,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.56,0,1,Check-Out,2016-12-31,Winter,2016-12-26T08:00Z +Keep,96,2016,December,52,24,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,56.63,0,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,336,2016,December,53,30,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 360, NULL,0,Transient,61,0,0,Check-Out,2016-12-31,Winter,2016-12-30T08:00Z +Keep,63,2016,December,53,25,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.33,1,2,Check-Out,2016-12-31,Winter,2016-12-25T08:00Z +Keep,92,2016,December,52,24,2,5,1,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,38,0,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,92,2016,December,52,24,2,5,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,44,0,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,2,2016,December,53,29,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,75,0,0,Check-Out,2016-12-31,Winter,2016-12-29T08:00Z +Keep,187,2016,December,52,24,2,5,1,0,0,HB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,61.64,0,0,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,67,2016,December,53,27,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,44.81,1,1,Check-Out,2016-12-31,Winter,2016-12-27T08:00Z +Keep,11,2016,December,53,29,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,83.5,0,1,Check-Out,2016-12-31,Winter,2016-12-29T08:00Z +Keep,13,2016,December,53,31,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,61.6,0,1,Check-Out,2017-01-05,Winter,2016-12-31T08:00Z +Keep,18,2016,December,51,17,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,46.22,0,1,Check-Out,2016-12-31,Winter,2016-12-17T08:00Z +Keep,142,2016,December,52,24,2,5,2,1,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,140.43,0,3,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,142,2016,December,52,24,2,5,2,0,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,76.11,0,3,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,98,2016,December,53,28,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97.7,0,2,Check-Out,2016-12-31,Winter,2016-12-28T08:00Z +Keep,6,2016,December,53,27,0,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,83.5,0,0,Check-Out,2016-12-31,Winter,2016-12-27T08:00Z +Keep,62,2016,December,52,24,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,63.03,0,1,Check-Out,2016-12-31,Winter,2016-12-24T08:00Z +Keep,63,2016,December,53,25,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53.33,0,2,Check-Out,2016-12-31,Winter,2016-12-25T08:00Z +Keep,41,2016,December,53,28,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2016-12-31,Winter,2016-12-28T08:00Z +Keep,12,2016,December,53,27,0,4,2,0,0,SC,PRT,Direct,Direct, 0,0,0,A,I,3,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2016-12-31,Winter,2016-12-27T08:00Z +Keep,136,2016,December,53,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,61.02,1,1,Check-Out,2017-01-01,Winter,2016-12-25T08:00Z +Keep,126,2016,December,53,26,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient-Party,50.36,0,0,Check-Out,2017-01-01,Winter,2016-12-26T08:00Z +Keep,66,2016,December,53,30,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,175,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,71,2017,January,1,1,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 5, NULL,0,Transient-Party,83.6,0,1,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,66,2016,December,53,30,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,175,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,71,2017,January,1,1,1,0,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,4,No Deposit , 5, NULL,0,Transient-Party,83.6,0,1,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,66,2016,December,53,30,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 5, NULL,0,Transient,175,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,69,2017,January,1,1,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 5, NULL,0,Group,0,0,1,Check-Out,2017-01-01,Winter,2017-01-01T08:00Z +Keep,52,2016,December,53,28,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,142.5,0,1,Check-Out,2017-01-01,Winter,2016-12-28T08:00Z +Keep,52,2016,December,53,28,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,148.5,1,1,Check-Out,2017-01-01,Winter,2016-12-28T08:00Z +Keep,236,2016,December,53,26,1,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,79.97,0,1,Check-Out,2017-01-01,Winter,2016-12-26T08:00Z +Keep,225,2016,December,53,26,1,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,76.2,0,0,Check-Out,2017-01-01,Winter,2016-12-26T08:00Z +Keep,0,2016,December,53,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,101,0,0,Check-Out,2017-01-01,Winter,2016-12-31T08:00Z +Keep,61,2016,December,53,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,154,1,1,Check-Out,2017-01-01,Winter,2016-12-29T08:00Z +Keep,14,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,109.5,0,0,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,6,No Deposit , NULL, NULL,0,Transient-Party,340,0,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,340,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,0,2016,December,53,29,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.67,0,1,Check-Out,2017-01-01,Winter,2016-12-29T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,340,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,128,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,97,Transient,340,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,45,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,1,Transient-Party,295,1,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,62,2016,December,53,30,0,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,273.13,1,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,128,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,97,Transient-Party,325,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,10,2016,December,53,31,0,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,0,Check-Out,2017-01-01,Winter,2016-12-31T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,325,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,45,2016,December,53,30,0,2,3,1,0,HB,PRT,Groups,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,1,Transient-Party,367,1,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,325,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,157,2016,December,53,30,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,88.41,0,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,157,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,80.25,0,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,140,2016,December,52,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,59.6,0,0,Check-Out,2017-01-01,Winter,2016-12-22T08:00Z +Keep,4,2016,December,53,31,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2017-01-01,Winter,2016-12-31T08:00Z +Keep,128,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,97,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,340,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,59,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,202.5,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,59,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,202.5,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,1,2016,December,53,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,1,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,45,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,225,0,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,45,2016,December,53,30,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,231,0,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,46,2016,December,53,30,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,162,0,0,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,171,2016,December,53,27,0,5,2,1,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,114.78,0,3,Check-Out,2017-01-01,Winter,2016-12-27T08:00Z +Keep,73,2016,December,53,30,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,211.5,0,0,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,55,2016,December,53,30,0,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,164,1,2,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,325,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,2,0,0,HB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,305,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,31,2016,December,53,30,0,2,1,0,0,HB,Unknown,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,222.5,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,1,2016,December,53,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 469, NULL,0,Transient,78.98,0,1,Check-Out,2017-01-01,Winter,2016-12-30T08:00Z +Keep,99,2016,December,53,26,2,5,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,246,0,0,Check-Out,2017-01-02,Winter,2016-12-26T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,350,2016,December,52,23,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 26, NULL,0,Transient,44.27,0,0,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,196,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,114,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,198,2017,January,1,1,1,0,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , NULL, 308,0,Transient-Party,0,0,0,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,196,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,0,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,10,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,10,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 308,0,Transient-Party,100.25,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,196,2016,December,53,30,1,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 308,0,Transient-Party,114,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,105,2016,December,52,23,3,7,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,92.4,0,1,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,71,2016,December,53,30,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 5, NULL,0,Transient,120,0,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,110,2016,December,53,28,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,148,1,1,Check-Out,2017-01-02,Winter,2016-12-28T08:00Z +Keep,105,2016,December,52,23,3,7,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,98.4,0,2,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,66,2016,December,53,31,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,208.5,1,1,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,66,2016,December,53,31,1,1,1,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,175.5,0,1,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,165,2016,December,53,25,3,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,50.63,0,2,Check-Out,2017-01-02,Winter,2016-12-25T08:00Z +Keep,129,2016,December,52,23,3,7,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,56.1,1,0,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,58,2016,December,53,30,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,208.33,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,116,2016,December,53,30,1,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,158.33,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,54,2016,December,53,31,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,225,0,0,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,116,2016,December,53,30,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,192.67,1,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,178,2016,December,52,23,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55.06,0,2,Check-Out,2017-01-02,Winter,2016-12-23T08:00Z +Keep,22,2017,January,1,1,1,0,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 360, NULL,0,Transient,81.9,0,0,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,100,2016,December,53,29,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,171.94,1,0,Check-Out,2017-01-02,Winter,2016-12-29T08:00Z +Keep,0,2017,January,1,1,1,0,3,0,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,111,0,0,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,53,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,166.67,1,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,73,2016,December,53,30,1,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,176,1,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,157,2016,December,53,26,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,82.31,1,0,Check-Out,2017-01-02,Winter,2016-12-26T08:00Z +Keep,102,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,159,0,3,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,62,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,62,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,156,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,78,2016,December,53,31,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,1,No Deposit , 181, NULL,0,Transient-Party,162,0,0,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,78,2016,December,53,31,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,1,No Deposit , 181, NULL,0,Transient-Party,168,0,0,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,95,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,172.67,1,0,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,98,2016,December,52,24,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.87,0,1,Check-Out,2017-01-02,Winter,2016-12-24T08:00Z +Keep,1,2016,December,53,30,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100.67,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,123,2016,December,53,29,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,84.83,0,1,Check-Out,2017-01-02,Winter,2016-12-29T08:00Z +Keep,72,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,71,2016,December,53,29,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,154.69,0,1,Check-Out,2017-01-02,Winter,2016-12-29T08:00Z +Keep,62,2016,December,53,30,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 3, NULL,0,Transient,137.33,0,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,2,2016,December,53,29,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84,0,1,Check-Out,2017-01-02,Winter,2016-12-29T08:00Z +Keep,5,2016,December,53,31,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,0,2017,January,1,1,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,106,0,0,Check-Out,2017-01-02,Winter,2017-01-01T08:00Z +Keep,1,2017,January,1,2,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,71,0,0,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,136,2016,December,53,28,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,157.6,0,4,Check-Out,2017-01-02,Winter,2016-12-28T08:00Z +Keep,9,2016,December,53,31,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,119.5,0,2,Check-Out,2017-01-02,Winter,2016-12-31T08:00Z +Keep,56,2016,December,53,30,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,157.67,1,1,Check-Out,2017-01-02,Winter,2016-12-30T08:00Z +Keep,251,2016,December,53,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,51.02,0,1,Check-Out,2017-01-03,Winter,2016-12-27T08:00Z +Keep,294,2016,December,53,28,2,4,1,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,84.5,0,0,Check-Out,2017-01-03,Winter,2016-12-28T08:00Z +Keep,78,2017,January,1,2,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,269,2016,December,53,29,2,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,87.8,1,0,Check-Out,2017-01-03,Winter,2016-12-29T08:00Z +Keep,0,2017,January,1,2,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,78,2016,December,53,31,2,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,326.33,1,1,Check-Out,2017-01-03,Winter,2016-12-31T08:00Z +Keep,0,2017,January,1,2,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,1,2017,January,1,2,1,0,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,98,2016,December,53,27,2,5,1,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,78.19,0,1,Check-Out,2017-01-03,Winter,2016-12-27T08:00Z +Keep,98,2016,December,53,27,2,5,1,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,78.19,0,0,Check-Out,2017-01-03,Winter,2016-12-27T08:00Z +Keep,103,2016,December,53,31,2,1,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 6, NULL,0,Transient,126.27,1,0,Check-Out,2017-01-03,Winter,2016-12-31T08:00Z +Keep,0,2017,January,1,2,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,0,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,15,2017,January,1,2,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-03,Winter,2017-01-02T08:00Z +Keep,214,2016,December,53,30,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,87.45,1,2,Check-Out,2017-01-03,Winter,2016-12-30T08:00Z +Keep,97,2016,December,53,28,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134.14,0,1,Check-Out,2017-01-04,Winter,2016-12-28T08:00Z +Keep,97,2016,December,53,28,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,134.14,0,1,Check-Out,2017-01-04,Winter,2016-12-28T08:00Z +Keep,231,2016,December,53,28,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,57.53,1,2,Check-Out,2017-01-04,Winter,2016-12-28T08:00Z +Keep,127,2016,December,53,28,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,94.89,0,0,Check-Out,2017-01-04,Winter,2016-12-28T08:00Z +Keep,4,2017,January,1,2,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,0,Check-Out,2017-01-04,Winter,2017-01-02T08:00Z +Keep,1,2017,January,1,3,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,170,2016,December,52,22,4,9,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51.69,0,2,Check-Out,2017-01-04,Winter,2016-12-22T08:00Z +Keep,170,2016,December,52,22,4,9,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.69,1,2,Check-Out,2017-01-04,Winter,2016-12-22T08:00Z +Keep,0,2017,January,1,3,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,1,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,2,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 165, NULL,0,Transient,41,1,0,Check-Out,2017-01-04,Winter,2017-01-02T08:00Z +Keep,8,2017,January,1,4,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,2,Check-Out,2017-01-04,Winter,2017-01-04T08:00Z +Keep,60,2017,January,1,3,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,3,0,1,1,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,3,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,3,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,41,1,0,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,0,2017,January,3,17,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,0,2017,February,8,23,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,68.5,1,0,Check-Out,2017-02-24,Winter,2017-02-23T08:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,3,A,D,0,No Deposit , NULL, NULL,0,Transient,77,1,0,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,12,2017,January,1,2,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 103,0,Transient,35,0,0,Check-Out,2017-01-04,Winter,2017-01-02T08:00Z +Keep,6,2017,May,20,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 103,0,Transient,45,0,0,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,219,2016,December,53,29,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54.9,0,1,Check-Out,2017-01-04,Winter,2016-12-29T08:00Z +Keep,77,2017,January,1,3,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,29.11,0,3,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,77,2017,January,1,3,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,29.11,0,3,Check-Out,2017-01-04,Winter,2017-01-03T08:00Z +Keep,29,2017,January,1,2,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,0,2,Check-Out,2017-01-04,Winter,2017-01-02T08:00Z +Keep,31,2016,December,53,30,2,3,2,0,0,SC,PRT,Groups,Direct, 0,0,0,E,I,3,No Deposit , NULL, NULL,0,Transient-Party,50,0,1,Check-Out,2017-01-04,Winter,2016-12-30T08:00Z +Keep,91,2016,December,53,27,2,7,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,121.4,0,1,Check-Out,2017-01-05,Winter,2016-12-27T08:00Z +Keep,91,2016,December,53,27,2,7,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,119.4,0,1,Check-Out,2017-01-05,Winter,2016-12-27T08:00Z +Keep,186,2016,December,51,15,6,15,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,54.97,0,3,Check-Out,2017-01-05,Winter,2016-12-15T08:00Z +Keep,55,2017,January,1,2,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,1,2,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,97,2016,December,53,28,2,6,2,0,0,HB,ROU,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,137.7,0,0,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,68,2016,December,53,29,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,94.29,0,1,Check-Out,2017-01-05,Winter,2016-12-29T08:00Z +Keep,61,2016,December,52,22,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,82.29,0,0,Check-Out,2017-01-05,Winter,2016-12-22T08:00Z +Keep,97,2016,December,53,28,2,6,1,0,0,HB,ROU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,107.08,0,1,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,97,2016,December,53,28,2,6,2,0,0,HB,ROU,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,137.7,0,0,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,61,2016,December,52,22,4,10,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,82.29,0,0,Check-Out,2017-01-05,Winter,2016-12-22T08:00Z +Keep,68,2016,December,53,29,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,94.29,0,1,Check-Out,2017-01-05,Winter,2016-12-29T08:00Z +Keep,23,2017,January,1,4,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,75,1,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,101,2016,December,53,29,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,141.57,0,3,Check-Out,2017-01-05,Winter,2016-12-29T08:00Z +Keep,33,2017,January,1,3,0,2,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,G,0,No Deposit , 240, NULL,0,Transient,141,0,1,Check-Out,2017-01-05,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,0,2017,January,1,7,0,1,2,0,0,BB,ITA,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,2,2017,January,1,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2017-01-05,Winter,2017-01-03T08:00Z +Keep,1,2017,January,1,4,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,71,0,1,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,14,2017,January,1,5,2,3,2,0,0,BB,GBR,Online travel agent,Direct, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Group,44.97,0,1,Check-Out,2017-01-10,Winter,2017-01-05T08:00Z +Keep,10,2016,December,53,28,2,6,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,H,2,No Deposit , 240, NULL,0,Transient,67.75,0,1,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,1,2017,January,1,5,0,1,2,0,0,BB,SWE,Direct,TA/TO, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,45,2017,January,1,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,9,2017,January,1,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,59,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,224,2017,January,1,2,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,72.6,1,2,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,224,2017,January,1,2,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,66.6,0,2,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,3,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-05,Winter,2017-01-03T08:00Z +Keep,12,2017,January,3,17,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-17T08:00Z +Keep,145,2017,January,1,2,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 314, NULL,0,Transient,98.64,1,0,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,77,2017,January,1,2,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,77,2017,January,1,2,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,77,2017,January,1,2,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,54,1,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,105,2017,January,1,2,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,105,2017,January,1,2,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,68,2017,January,1,1,2,2,2,1,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,47.5,1,0,Check-Out,2017-01-05,Winter,2017-01-01T08:00Z +Keep,1,2016,December,53,28,2,6,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,97.88,0,0,Check-Out,2017-01-05,Winter,2016-12-28T08:00Z +Keep,93,2017,January,1,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2017-01-05,Winter,2017-01-03T08:00Z +Keep,4,2017,January,1,2,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,2,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,1,2017,January,1,2,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2017-01-05,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-05,Winter,2017-01-04T08:00Z +Keep,42,2016,February,9,27,2,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,1,3,Check-Out,2016-03-02,Winter,2016-02-27T08:00Z +Keep,45,2016,March,10,1,2,6,2,0,0,SC,DEU,Groups,Direct, 0,0,0,E,I,2,No Deposit , NULL, NULL,0,Transient-Party,0,0,1,Check-Out,2016-03-09,Spring,2016-03-01T08:00Z +Keep,0,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,74,1,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,1,2016,March,10,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2016-03-06,Spring,2016-03-05T08:00Z +Keep,2,2016,March,11,6,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,0,Check-Out,2016-03-09,Spring,2016-03-06T08:00Z +Keep,1,2016,March,11,7,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,5,A,D,0,No Deposit , 250, NULL,0,Transient,40,1,0,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,1,2016,March,11,7,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,5,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,1,2016,March,11,7,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,5,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2016-03-08,Spring,2016-03-07T08:00Z +Keep,1,2016,March,11,8,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,5,D,D,1,No Deposit , 250, NULL,0,Transient,39.33,0,0,Check-Out,2016-03-11,Spring,2016-03-08T08:00Z +Keep,4,2016,March,11,8,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,A,A,0,No Deposit , 242, NULL,0,Transient,43,0,1,Check-Out,2016-03-10,Spring,2016-03-08T08:00Z +Keep,1,2016,March,11,8,0,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,5,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,5,A,D,0,No Deposit , 241, NULL,0,Transient,37.45,1,0,Check-Out,2016-03-09,Spring,2016-03-08T08:00Z +Keep,0,2016,March,11,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,8,A,D,0,No Deposit , 240, NULL,0,Transient,53,0,0,Check-Out,2016-03-10,Spring,2016-03-09T08:00Z +Keep,0,2017,January,1,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,153,2017,January,1,2,1,3,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2017-01-06,Winter,2017-01-02T08:00Z +Keep,1,2017,January,1,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,76,2017,January,1,2,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,3,Check-Out,2017-01-06,Winter,2017-01-02T08:00Z +Keep,5,2017,January,1,2,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, 29,0,Transient-Party,40.4,1,1,Check-Out,2017-01-06,Winter,2017-01-02T08:00Z +Keep,5,2017,January,1,2,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, 29,0,Transient-Party,40.4,1,1,Check-Out,2017-01-06,Winter,2017-01-02T08:00Z +Keep,141,2017,January,1,2,1,3,2,0,0,HB,BEL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,108.3,0,0,Check-Out,2017-01-06,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,5,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,1,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,154,2017,January,1,5,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,1,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,237,2016,December,53,29,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,68.25,0,2,Check-Out,2017-01-06,Winter,2016-12-29T08:00Z +Keep,237,2016,December,53,29,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,76.25,1,1,Check-Out,2017-01-06,Winter,2016-12-29T08:00Z +Keep,31,2016,December,53,27,2,8,0,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,3,No Deposit , NULL, NULL,0,Transient,28,1,0,Check-Out,2017-01-06,Winter,2016-12-27T08:00Z +Keep,0,2017,January,1,5,0,1,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,68,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,0,2017,January,1,5,0,1,3,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,0,2017,January,1,6,0,1,3,0,0,BB,NLD,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,0,2017,January,1,5,0,1,2,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,93,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,0,2017,January,1,6,0,1,2,1,0,BB,NLD,Online travel agent,TA/TO, 1,0,0,H,H,0,No Deposit , 240, NULL,0,Transient-Party,93,0,0,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,0,2017,January,1,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,1,2017,January,1,3,0,3,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-06,Winter,2017-01-03T08:00Z +Keep,0,2017,January,1,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,78,2017,January,1,3,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-01-06,Winter,2017-01-03T08:00Z +Keep,43,2017,January,1,5,0,1,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,59.66,1,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,2,2017,January,1,3,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,1,1,Check-Out,2017-01-06,Winter,2017-01-03T08:00Z +Keep,1,2017,January,1,4,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,1,Check-Out,2017-01-06,Winter,2017-01-04T08:00Z +Keep,8,2017,January,1,4,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2017-01-06,Winter,2017-01-04T08:00Z +Keep,43,2017,January,1,5,0,1,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,52.66,0,1,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,205,2017,January,1,5,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,H,G,0,No Deposit , 250, NULL,0,Transient,87.3,0,0,Check-Out,2017-01-06,Winter,2017-01-05T08:00Z +Keep,1,2017,January,1,4,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,64,0,1,Check-Out,2017-01-06,Winter,2017-01-04T08:00Z +Keep,1,2017,January,1,4,0,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2017-01-06,Winter,2017-01-04T08:00Z +Keep,1,2017,January,1,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-06,Winter,2017-01-04T08:00Z +Keep,2,2017,January,1,3,0,4,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,50.85,0,1,Check-Out,2017-01-07,Winter,2017-01-03T08:00Z +Keep,5,2017,January,1,2,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,1,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,4,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-01-07,Winter,2017-01-04T08:00Z +Keep,0,2017,January,5,30,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,4,2017,March,10,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,7,2017,June,23,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 270,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-07T07:00Z +Keep,6,2017,January,1,4,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient,68.4,1,1,Check-Out,2017-01-07,Winter,2017-01-04T08:00Z +Keep,1,2017,January,1,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,0,2017,January,1,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,101,2016,December,53,31,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,63.14,0,0,Check-Out,2017-01-07,Winter,2016-12-31T08:00Z +Keep,21,2017,January,1,5,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,50,1,0,Check-Out,2017-01-07,Winter,2017-01-05T08:00Z +Keep,0,2017,March,9,2,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,G,G,1,No Deposit , NULL, NULL,0,Transient,102,1,0,Check-Out,2017-03-04,Spring,2017-03-02T08:00Z +Keep,54,2016,December,53,30,2,6,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,215.25,1,0,Check-Out,2017-01-07,Winter,2016-12-30T08:00Z +Keep,34,2017,January,1,2,1,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,88.53,0,0,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,26,2017,January,1,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,26,2017,January,1,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,5,2017,January,1,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,1,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,6,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,0,2017,January,1,5,0,2,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-07,Winter,2017-01-05T08:00Z +Keep,0,2017,January,1,5,0,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-07,Winter,2017-01-05T08:00Z +Keep,244,2016,December,52,22,4,12,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,64.21,0,2,Check-Out,2017-01-07,Winter,2016-12-22T08:00Z +Keep,325,2016,December,53,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,38.57,0,0,Check-Out,2017-01-07,Winter,2016-12-31T08:00Z +Keep,5,2017,January,1,3,0,4,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,50.4,0,0,Check-Out,2017-01-07,Winter,2017-01-03T08:00Z +Keep,73,2017,January,1,2,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-07,Winter,2017-01-06T08:00Z +Keep,124,2016,December,53,31,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108.86,0,2,Check-Out,2017-01-07,Winter,2016-12-31T08:00Z +Keep,1,2017,January,1,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-07,Winter,2017-01-05T08:00Z +Keep,20,2017,January,1,2,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,68,0,1,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,123,2016,December,53,31,2,5,2,0,1,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,47.57,0,2,Check-Out,2017-01-07,Winter,2016-12-31T08:00Z +Keep,105,2017,January,1,2,1,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2017-01-07,Winter,2017-01-02T08:00Z +Keep,42,2017,January,1,1,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,78.23,0,1,Check-Out,2017-01-08,Winter,2017-01-01T08:00Z +Keep,3,2017,January,1,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,44,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,3,2017,January,1,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,39,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,45,2017,January,1,6,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient-Party,70.8,1,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,15,2017,January,1,6,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,70.8,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,3,2017,January,1,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,44,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,132,2016,December,53,31,2,6,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.98,0,2,Check-Out,2017-01-08,Winter,2016-12-31T08:00Z +Keep,34,2017,January,1,6,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,2,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,0,2017,January,2,11,0,1,2,0,0,BB,NLD,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,44,1,2,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,29,2017,January,1,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,121,2017,January,1,6,0,2,2,2,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,1,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,181,2017,January,1,5,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,5,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2017-01-08,Winter,2017-01-05T08:00Z +Keep,68,2017,January,1,7,0,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,68,2017,January,1,7,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,37,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,3,2017,January,1,6,0,2,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,74,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,3,2017,January,1,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,44,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,1,2017,January,1,7,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,18,2017,January,1,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50.43,0,2,Check-Out,2017-01-08,Winter,2017-01-01T08:00Z +Keep,1,2017,January,1,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,1,2017,January,2,13,0,1,2,0,0,BB,NLD,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,1,2017,January,1,7,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,136,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,1,2017,January,1,7,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,78,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,0,2017,January,1,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,24,2017,January,1,2,1,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-08,Winter,2017-01-02T08:00Z +Keep,0,2017,January,1,4,0,4,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2017-01-08,Winter,2017-01-04T08:00Z +Keep,15,2017,January,1,6,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,66.4,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,15,2017,January,1,6,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,80.4,2,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,14,2017,January,1,6,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,66.4,0,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,2,2017,January,1,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,47,0,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,2,2017,January,1,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,47,1,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,0,2017,January,1,6,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,50,2017,January,1,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,62,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,1,2017,January,1,6,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,3,2017,January,1,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,69,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,1,2017,January,1,6,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,36,2017,January,1,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,37.94,0,1,Check-Out,2017-01-08,Winter,2017-01-01T08:00Z +Keep,4,2017,January,1,6,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,69,0,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,36,2017,January,1,1,2,5,1,0,0,BB,MYS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient-Party,33.94,0,1,Check-Out,2017-01-08,Winter,2017-01-01T08:00Z +Keep,2,2017,January,1,4,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-04T08:00Z +Keep,20,2017,January,1,6,0,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,100,1,2,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,20,2017,January,1,6,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,1,2017,January,1,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,51,1,1,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,1,2017,January,1,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93,0,2,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,0,2017,January,2,8,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,0,2017,January,1,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-08,Winter,2017-01-07T08:00Z +Keep,1,2017,January,1,6,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2017-01-08,Winter,2017-01-06T08:00Z +Keep,70,2017,January,1,7,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-01-09,Winter,2017-01-07T08:00Z +Keep,2,2017,January,1,5,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,39.6,0,0,Check-Out,2017-01-09,Winter,2017-01-05T08:00Z +Keep,39,2017,January,1,2,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-09,Winter,2017-01-02T08:00Z +Keep,60,2017,January,2,8,1,0,2,2,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,89,1,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,95,2017,January,2,8,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,95,2017,January,2,8,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,19,2017,January,2,8,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,8,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,3,2017,January,2,8,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,1,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,3,2017,January,2,8,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,1,2017,January,1,7,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,1,2,Check-Out,2017-01-09,Winter,2017-01-07T08:00Z +Keep,1,2017,June,22,2,1,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,D,D,0,No Deposit , 250, NULL,0,Transient,130.5,1,2,Check-Out,2017-06-05,Summer,2017-06-02T07:00Z +Keep,114,2017,January,1,6,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 468, NULL,0,Group,37.44,0,1,Check-Out,2017-01-09,Winter,2017-01-06T08:00Z +Keep,141,2017,January,1,1,3,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,91.75,0,1,Check-Out,2017-01-09,Winter,2017-01-01T08:00Z +Keep,154,2016,December,53,29,3,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.54,0,3,Check-Out,2017-01-09,Winter,2016-12-29T08:00Z +Keep,0,2017,January,2,8,1,0,2,0,0,BB,MDG,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,119,2017,January,2,8,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,44,1,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,47,2017,January,1,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,2,Check-Out,2017-01-09,Winter,2017-01-06T08:00Z +Keep,0,2017,January,2,8,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,8,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,34.44,0,0,Check-Out,2017-01-09,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,9,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,30.99,0,0,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,2,2017,January,1,4,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2017-01-09,Winter,2017-01-04T08:00Z +Keep,24,2017,January,1,6,2,2,1,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,24,2017,January,1,6,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,186,2017,January,1,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,51.6,0,0,Check-Out,2017-01-10,Winter,2017-01-03T08:00Z +Keep,26,2017,January,2,9,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,0,2017,January,2,9,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,76,2017,January,1,6,2,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,0,2017,January,2,9,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,34.4,0,0,Check-Out,2017-01-10,Winter,2017-01-09T08:00Z +Keep,91,2017,January,1,6,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,40.24,0,0,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,218,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,1,A,D,1,No Deposit , 40, NULL,0,Group,50.95,0,1,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,7,2017,January,2,8,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-10,Winter,2017-01-08T08:00Z +Keep,35,2017,January,1,7,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,38,0,0,Check-Out,2017-01-10,Winter,2017-01-07T08:00Z +Keep,26,2017,January,1,6,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,65.84,0,2,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,60,2017,January,1,1,4,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,90.6,0,1,Check-Out,2017-01-10,Winter,2017-01-01T08:00Z +Keep,26,2017,January,1,6,2,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,65.84,0,2,Check-Out,2017-01-10,Winter,2017-01-06T08:00Z +Keep,147,2016,December,51,13,8,20,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,59.08,0,1,Check-Out,2017-01-10,Winter,2016-12-13T08:00Z +Keep,20,2017,January,1,1,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,39.76,0,1,Check-Out,2017-01-11,Winter,2017-01-01T08:00Z +Keep,19,2017,January,1,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2017-01-11,Winter,2017-01-04T08:00Z +Keep,5,2017,January,2,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 112,0,Transient,42,1,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,5,2017,January,2,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 112,0,Transient,35,0,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,1,2017,January,2,10,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,0,2017,January,2,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,5,2017,January,2,8,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-11,Winter,2017-01-08T08:00Z +Keep,4,2017,January,2,9,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2017-01-11,Winter,2017-01-09T08:00Z +Keep,14,2017,January,2,8,2,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-11,Winter,2017-01-08T08:00Z +Keep,26,2017,January,1,7,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.5,0,1,Check-Out,2017-01-11,Winter,2017-01-07T08:00Z +Keep,1,2017,January,2,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,48.6,0,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,5,2017,March,12,22,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,0,2017,January,2,10,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,10,2017,January,2,9,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2017-01-11,Winter,2017-01-09T08:00Z +Keep,94,2017,January,1,4,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2017-01-11,Winter,2017-01-04T08:00Z +Keep,56,2017,January,1,5,2,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-11,Winter,2017-01-05T08:00Z +Keep,1,2017,January,2,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-11,Winter,2017-01-10T08:00Z +Keep,190,2017,January,1,5,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66.6,0,1,Check-Out,2017-01-12,Winter,2017-01-05T08:00Z +Keep,170,2017,January,1,3,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,40.81,0,1,Check-Out,2017-01-12,Winter,2017-01-03T08:00Z +Keep,0,2017,January,2,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,2,2017,January,2,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,14,2017,January,2,8,2,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-12,Winter,2017-01-08T08:00Z +Keep,14,2017,January,2,8,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-12,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,0,2017,January,2,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,74,2017,January,2,9,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,81,2017,January,3,16,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,74,2017,January,2,9,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,81,2017,January,3,16,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,74,2017,January,2,9,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,81,2017,January,3,16,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,30,0,1,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2017,January,2,8,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-12,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,0,2017,January,2,8,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-12,Winter,2017-01-08T08:00Z +Keep,23,2017,January,1,5,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-01-12,Winter,2017-01-05T08:00Z +Keep,3,2017,January,2,9,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-12,Winter,2017-01-09T08:00Z +Keep,0,2017,January,2,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-12,Winter,2017-01-11T08:00Z +Keep,23,2017,January,1,5,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-01-12,Winter,2017-01-05T08:00Z +Keep,23,2017,January,1,5,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-01-12,Winter,2017-01-05T08:00Z +Keep,0,2017,January,2,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,0,2017,January,2,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,3,No Deposit , NULL, NULL,0,Transient,64,0,0,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,68,2016,December,53,29,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,80.14,0,1,Check-Out,2017-01-12,Winter,2016-12-29T08:00Z +Keep,0,2017,January,2,10,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2017-01-12,Winter,2017-01-10T08:00Z +Keep,2,2017,January,2,12,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,5,2017,January,2,9,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,39,0,0,Check-Out,2017-01-13,Winter,2017-01-09T08:00Z +Keep,11,2017,February,8,21,2,5,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,1,2017,January,2,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,2,2017,January,4,26,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,8,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-02-24,Winter,2017-02-23T08:00Z +Keep,1,2017,March,12,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,4,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,1,2017,April,14,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,5,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,1,2017,May,18,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,6,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,2,2017,June,22,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,7,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,1,2017,January,2,12,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 272,0,Transient-Party,35,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,1,0,0,BB,CHN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,1,0,0,BB,CHN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,1,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,34,1,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,7,2017,January,2,11,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient,48,2,1,Check-Out,2017-01-13,Winter,2017-01-11T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,0,2017,January,2,10,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,1,2017,January,2,12,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,85,2017,January,2,9,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,51.4,0,2,Check-Out,2017-01-13,Winter,2017-01-09T08:00Z +Keep,6,2017,January,2,10,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 181, NULL,0,Transient-Party,34,0,1,Check-Out,2017-01-13,Winter,2017-01-10T08:00Z +Keep,3,2017,January,2,11,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2017-01-13,Winter,2017-01-11T08:00Z +Keep,74,2017,January,2,12,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,11,2017,January,2,9,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-01-13,Winter,2017-01-09T08:00Z +Keep,11,2017,January,2,9,1,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2017-01-13,Winter,2017-01-09T08:00Z +Keep,0,2017,January,2,11,0,2,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient,86,1,0,Check-Out,2017-01-13,Winter,2017-01-11T08:00Z +Keep,3,2017,January,2,12,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 169,0,Transient,47,1,1,Check-Out,2017-01-13,Winter,2017-01-12T08:00Z +Keep,61,2017,May,21,22,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,3,No Deposit , NULL, 169,0,Transient-Party,50,1,1,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,24,2017,January,1,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 314, NULL,0,Transient,70.64,0,0,Check-Out,2017-01-14,Winter,2017-01-07T08:00Z +Keep,4,2017,January,2,8,2,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-01-14,Winter,2017-01-08T08:00Z +Keep,4,2017,January,2,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,4,2017,January,2,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,38.4,0,0,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,33,2017,January,2,9,1,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-14,Winter,2017-01-09T08:00Z +Keep,72,2017,January,1,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,44.64,0,0,Check-Out,2017-01-14,Winter,2017-01-07T08:00Z +Keep,8,2017,January,2,10,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2017-01-14,Winter,2017-01-10T08:00Z +Keep,13,2017,January,2,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,148,2016,December,51,17,8,20,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,67.82,0,0,Check-Out,2017-01-14,Winter,2016-12-17T08:00Z +Keep,58,2017,January,2,11,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,0,2,Check-Out,2017-01-14,Winter,2017-01-11T08:00Z +Keep,0,2017,January,2,13,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,55,2017,January,2,11,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,44.41,0,1,Check-Out,2017-01-14,Winter,2017-01-11T08:00Z +Keep,12,2017,January,2,12,0,2,1,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,22,2017,January,2,12,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,66,2017,January,2,10,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-01-14,Winter,2017-01-10T08:00Z +Keep,66,2017,January,2,10,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-01-14,Winter,2017-01-10T08:00Z +Keep,259,2017,January,2,9,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2017-01-14,Winter,2017-01-09T08:00Z +Keep,1,2017,January,1,7,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-14,Winter,2017-01-07T08:00Z +Keep,1,2017,January,2,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,90,2017,January,1,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,35.95,0,1,Check-Out,2017-01-14,Winter,2017-01-07T08:00Z +Keep,66,2017,January,2,10,0,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-01-14,Winter,2017-01-10T08:00Z +Keep,72,2017,January,1,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,46.64,0,0,Check-Out,2017-01-14,Winter,2017-01-07T08:00Z +Keep,12,2017,January,2,12,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,4,2017,January,2,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,38.4,0,0,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,2,2017,January,2,12,0,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-14,Winter,2017-01-12T08:00Z +Keep,1,2017,January,2,13,0,1,2,2,0,SC,PRT,Online travel agent,TA/TO, 0,0,0,C,I,1,No Deposit , 196, NULL,0,Transient,0,0,0,Check-Out,2017-01-14,Winter,2017-01-13T08:00Z +Keep,2,2017,January,2,14,0,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,I,0,No Deposit , 196, NULL,0,Transient,0,0,0,Check-Out,2017-01-14,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,2,1,2,0,0,BB,SWE,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2017-01-17,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,52,2017,January,2,12,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,53.06,0,0,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,52,2017,January,2,12,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,53.06,0,0,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,10,2017,January,2,12,0,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,CHN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,CHN,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,8,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,0,0,0,SC,PRT,Groups,TA/TO, 0,0,0,A,G,0,No Deposit , 168, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,100,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 168, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,4,2017,January,2,14,0,1,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient-Party,68,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,3,16,1,0,2,0,0,BB,ITA,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,56,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,3,16,1,0,2,0,0,BB,ITA,Direct,Direct, 1,0,1,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,96,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,74,2017,January,2,14,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,38.04,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,88,2017,January,3,15,2,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,36.04,0,1,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,6,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,56.21,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,3,2017,January,2,8,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,59.71,0,1,Check-Out,2017-01-15,Winter,2017-01-08T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,8,2017,January,2,12,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,53.4,0,1,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,3,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,1,2017,May,19,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,92.25,0,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,92,2017,January,2,8,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.8,1,1,Check-Out,2017-01-15,Winter,2017-01-08T08:00Z +Keep,6,2017,January,2,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,6,2017,January,2,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,2,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,5,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,1,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,1,2,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,1,2017,January,2,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,30,2017,January,2,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,1,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,10,2017,January,2,14,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,0,2017,January,2,14,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,2,2017,January,2,12,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,3,2017,January,2,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,39,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,10,2017,January,2,14,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,56,2017,January,2,13,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,37.8,0,0,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,0,2017,January,2,12,0,3,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2017-01-15,Winter,2017-01-12T08:00Z +Keep,2,2017,January,2,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,69,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,10,2017,January,2,14,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,114,0,1,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,5,2017,January,3,15,1,0,2,1,0,SC,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 177, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-16,Winter,2017-01-15T08:00Z +Keep,4,2017,January,2,14,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-01-15,Winter,2017-01-14T08:00Z +Keep,3,2017,January,2,13,0,2,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,3,2017,January,2,13,0,2,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-15,Winter,2017-01-13T08:00Z +Keep,62,2017,January,1,7,3,6,1,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-01-16,Winter,2017-01-07T08:00Z +Keep,0,2017,January,2,13,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-16,Winter,2017-01-13T08:00Z +Keep,3,2017,January,2,13,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,79.33,1,2,Check-Out,2017-01-16,Winter,2017-01-13T08:00Z +Cancel,32,2017,February,7,17,0,2,2,0,0,BB,PRT,Direct,Direct, 1,1,1,E,E,0,No Deposit , NULL, NULL,0,Transient,76.5,0,2,Canceled,2017-02-11,Winter,2017-02-17T08:00Z +Keep,48,2017,January,2,12,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-16,Winter,2017-01-12T08:00Z +Keep,142,2017,January,2,14,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-16,Winter,2017-01-14T08:00Z +Keep,17,2017,January,2,13,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-16,Winter,2017-01-13T08:00Z +Keep,77,2017,January,2,10,1,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-16,Winter,2017-01-10T08:00Z +Keep,11,2017,January,2,12,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,0,Check-Out,2017-01-16,Winter,2017-01-12T08:00Z +Keep,0,2017,January,2,9,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,76,1,0,Check-Out,2017-01-16,Winter,2017-01-09T08:00Z +Keep,0,2017,January,2,14,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-01-16,Winter,2017-01-14T08:00Z +Keep,0,2017,January,4,27,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 240, NULL,0,Transient-Party,83,1,1,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,3,2017,May,18,1,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,2,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-05-03,Spring,2017-05-01T07:00Z +Keep,5,2017,May,21,21,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,3,A,I,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,2,2017,May,21,22,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,3,C,C,0,No Deposit , NULL, NULL,0,Transient,105,0,1,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,0,2017,January,2,9,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Transient,70,0,0,Check-Out,2017-01-16,Winter,2017-01-09T08:00Z +Keep,160,2017,January,2,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-01-16,Winter,2017-01-09T08:00Z +Keep,160,2017,January,2,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,47.8,0,3,Check-Out,2017-01-16,Winter,2017-01-09T08:00Z +Keep,5,2017,January,3,15,1,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-16,Winter,2017-01-15T08:00Z +Keep,0,2017,January,3,15,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,69,0,0,Check-Out,2017-01-16,Winter,2017-01-15T08:00Z +Keep,18,2017,January,3,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,1,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,28,2017,January,4,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,34,2017,February,5,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,2,A,D,1,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,87,2017,January,2,14,2,1,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.89,0,1,Check-Out,2017-01-17,Winter,2017-01-14T08:00Z +Keep,57,2017,January,1,7,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,43.8,0,2,Check-Out,2017-01-17,Winter,2017-01-07T08:00Z +Keep,3,2017,January,3,16,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,35,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,33,2017,January,2,14,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69.33,0,2,Check-Out,2017-01-17,Winter,2017-01-14T08:00Z +Keep,266,2017,January,3,15,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,45.8,1,1,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,266,2017,January,3,15,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,37.8,0,1,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,2,2017,January,3,16,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 428,0,Transient,35,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,127,2017,January,2,12,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,49.9,0,1,Check-Out,2017-01-17,Winter,2017-01-12T08:00Z +Keep,4,2017,January,2,14,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-17,Winter,2017-01-14T08:00Z +Keep,25,2017,January,1,7,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 115, NULL,0,Transient,42,0,1,Check-Out,2017-01-17,Winter,2017-01-07T08:00Z +Keep,0,2017,January,3,17,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,0,2017,May,19,13,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 1,0,1,E,E,0,No Deposit , 241, NULL,0,Transient,117.6,0,1,Check-Out,2017-05-14,Spring,2017-05-13T07:00Z +Keep,3,2017,May,20,14,1,0,1,1,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,2,No Deposit , 241, NULL,0,Transient,72.5,0,1,Check-Out,2017-05-15,Spring,2017-05-14T07:00Z +Keep,2,2017,January,3,15,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,1,2017,January,3,15,2,0,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,45,1,1,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,39,2017,January,3,15,2,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,1,2017,January,3,16,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,122,2017,January,3,15,2,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,83,Transient-Party,55,0,1,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Keep,40,2017,February,9,26,2,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,36,0,1,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,3,2017,January,3,16,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,3,2017,January,3,16,1,0,1,0,0,Undefined,ITA,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-17,Winter,2017-01-16T08:00Z +Keep,41,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,2,2017,January,3,15,2,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-17,Winter,2017-01-15T08:00Z +Cancel,35,2017,February,5,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Canceled,2017-02-02,Winter,2017-02-02T08:00Z +Keep,4,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,41,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,41,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,41,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,41,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,3,2017,January,3,17,0,0,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-17,Winter,2017-01-17T08:00Z +Keep,0,2017,January,3,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,4,2017,January,3,17,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,3,No Deposit , 250, NULL,0,Transient,44,1,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,1,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 94, NULL,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,1,2017,January,3,17,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , 94, NULL,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,0,2017,January,3,16,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,48.75,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,HB,PRT,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,48.75,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,3,2017,January,3,17,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,I,0,No Deposit , NULL, NULL,0,Transient,65,1,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,9,2017,January,3,18,0,1,2,0,0,BB,ESP,Online travel agent,Direct, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,5,2017,January,3,17,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 468, NULL,0,Transient,54.4,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,3,2017,January,3,17,0,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,1,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,35,2017,January,3,15,2,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37,0,0,Check-Out,2017-01-18,Winter,2017-01-15T08:00Z +Keep,0,2017,January,3,17,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,67,0,0,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,4,2017,January,3,15,2,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,0,Check-Out,2017-01-18,Winter,2017-01-15T08:00Z +Keep,2,2017,January,3,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,44,1,1,Check-Out,2017-01-18,Winter,2017-01-17T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,1,1,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,E,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-18,Winter,2017-01-16T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,57,1,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,2,2017,January,3,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 96, NULL,0,Transient,30,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2017,March,11,13,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,67,1,1,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,1,2017,April,17,27,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,2,A,A,0,No Deposit , 240, NULL,0,Transient-Party,71,1,1,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,7,2017,May,21,24,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,3,A,E,0,No Deposit , 250, NULL,0,Transient,75,1,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52,1,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2017,March,13,28,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 88,0,Group,35,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52,1,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,0,2017,January,3,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,52,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,108,2017,January,2,12,2,5,1,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,49.7,1,1,Check-Out,2017-01-19,Winter,2017-01-12T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,F,3,No Deposit , NULL, NULL,0,Transient-Party,27.5,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,10,2017,January,3,18,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,1,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,1,2017,January,3,19,0,2,2,0,0,BB,FRA,Direct,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,62,1,0,Check-Out,2017-01-21,Winter,2017-01-19T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,ITA,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2017,January,3,15,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.25,0,1,Check-Out,2017-01-19,Winter,2017-01-15T08:00Z +Keep,2,2017,January,3,19,0,2,2,0,0,BB,FRA,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-01-21,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,18,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2017,January,3,18,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-01-19,Winter,2017-01-18T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,27,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,BRA,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,4,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,IDN,Groups,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,IND,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,F,3,No Deposit , NULL, NULL,0,Transient-Party,27.5,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,F,4,No Deposit , NULL, NULL,0,Transient-Party,27.5,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,F,2,No Deposit , NULL, NULL,0,Transient-Party,27.5,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,62,1,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,0,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,57.33,1,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,41,2017,January,3,17,0,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-17T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,4,2017,January,3,17,0,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-17T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,ESP,Groups,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,40,2017,January,3,16,1,2,1,0,0,Undefined,PRT,Groups,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-01-19,Winter,2017-01-16T08:00Z +Keep,1,2017,January,3,17,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,66,0,0,Check-Out,2017-01-19,Winter,2017-01-17T08:00Z +Keep,3,2017,January,3,19,2,6,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Group,39,0,0,Check-Out,2017-01-27,Winter,2017-01-19T08:00Z +Keep,109,2017,January,2,12,2,6,2,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,47.76,0,0,Check-Out,2017-01-20,Winter,2017-01-12T08:00Z +Keep,96,2017,January,3,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,40.32,0,0,Check-Out,2017-01-20,Winter,2017-01-15T08:00Z +Keep,0,2017,January,3,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,2,2017,January,3,18,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 178,0,Transient,35,0,0,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,64,0,1,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,0,2017,January,3,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,64,0,1,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient-Party,30,0,2,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,3,2017,January,3,19,0,1,1,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,30,0,2,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,18,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,0,2017,January,3,19,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,64,2017,January,3,15,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-01-20,Winter,2017-01-15T08:00Z +Keep,39,2017,January,2,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,34.82,0,1,Check-Out,2017-01-20,Winter,2017-01-13T08:00Z +Keep,75,2017,January,3,16,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-01-20,Winter,2017-01-16T08:00Z +Keep,26,2017,January,1,6,4,10,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,88.86,1,0,Check-Out,2017-01-20,Winter,2017-01-06T08:00Z +Keep,84,2017,January,3,18,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient,100.5,0,5,Check-Out,2017-01-20,Winter,2017-01-18T08:00Z +Keep,0,2017,January,3,19,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,1,2017,January,3,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,19,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,77,1,0,Check-Out,2017-01-20,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,20,0,1,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,3,2017,January,3,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,0,2017,January,3,19,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-21,Winter,2017-01-19T08:00Z +Keep,1,2017,January,3,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,1,2017,January,3,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.66,0,1,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,0,2017,January,3,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,119,2017,January,1,7,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,44.11,0,1,Check-Out,2017-01-21,Winter,2017-01-07T08:00Z +Keep,31,2017,January,3,18,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,75,1,0,Check-Out,2017-01-21,Winter,2017-01-18T08:00Z +Keep,2,2017,January,3,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,60,0,2,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,0,2017,January,3,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,60,0,2,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,17,2017,January,3,17,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,53.4,0,2,Check-Out,2017-01-21,Winter,2017-01-17T08:00Z +Keep,0,2017,January,3,20,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,1,0,Check-Out,2017-01-21,Winter,2017-01-20T08:00Z +Keep,5,2017,January,3,19,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,27,2017,January,3,20,0,2,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient-Party,62.4,0,1,Check-Out,2017-01-22,Winter,2017-01-20T08:00Z +Keep,27,2017,January,3,20,0,2,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 468, NULL,0,Transient-Party,62.4,0,1,Check-Out,2017-01-22,Winter,2017-01-20T08:00Z +Keep,118,2017,January,3,19,0,3,3,0,0,BB,POL,Direct,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,49.1,0,0,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,98,2017,January,3,19,0,3,2,2,0,BB,POL,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,88.9,1,1,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,107,2017,January,3,17,0,5,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,94,1,0,Check-Out,2017-01-22,Winter,2017-01-17T08:00Z +Keep,6,2017,January,3,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,6,2017,January,3,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,9,2017,January,3,19,0,3,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,21,0,1,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,1,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,February,6,10,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,1,2017,January,3,21,0,1,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,9,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,43,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,4,2017,January,3,21,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,1,2017,January,4,22,1,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-01-23,Winter,2017-01-22T08:00Z +Keep,2,2017,January,3,21,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,5,2017,January,3,21,0,1,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,96,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,2,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,4,2017,January,3,21,0,1,2,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 127, NULL,0,Transient,0,0,3,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,2,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,1,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,2,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,65,1,2,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,2,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,15,2017,January,3,20,0,2,2,0,0,FB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,88.4,0,0,Check-Out,2017-01-22,Winter,2017-01-20T08:00Z +Keep,56,2017,January,3,18,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-22,Winter,2017-01-18T08:00Z +Keep,1,2017,January,3,21,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,65,2017,January,3,21,0,1,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,82,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,2,2017,January,3,20,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-22,Winter,2017-01-20T08:00Z +Keep,0,2017,January,3,19,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,0,2017,January,3,21,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,19,0,3,2,1,1,BB,POL,Direct,Direct, 0,0,0,C,C,3,No Deposit , NULL, NULL,0,Transient,49.1,0,0,Check-Out,2017-01-22,Winter,2017-01-19T08:00Z +Keep,0,2017,January,4,22,1,0,2,1,1,BB,POL,Direct,Direct, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,49.1,0,0,Check-Out,2017-01-23,Winter,2017-01-22T08:00Z +Keep,1,2017,January,3,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,77,1,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,1,2017,March,12,25,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,F,F,0,No Deposit , 250, NULL,0,Group,100,1,1,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,36,2017,January,3,21,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,54,0,0,Check-Out,2017-01-22,Winter,2017-01-21T08:00Z +Keep,37,2017,January,4,22,2,0,2,0,0,BB,DEU,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Group,84,0,0,Check-Out,2017-01-24,Winter,2017-01-22T08:00Z +Keep,121,2017,January,4,22,0,0,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-22,Winter,2017-01-22T08:00Z +Keep,117,2017,January,3,16,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,3,Check-Out,2017-01-23,Winter,2017-01-16T08:00Z +Keep,9,2017,January,3,19,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,81.76,0,0,Check-Out,2017-01-23,Winter,2017-01-19T08:00Z +Keep,5,2017,January,3,20,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55.6,1,1,Check-Out,2017-01-23,Winter,2017-01-20T08:00Z +Keep,6,2017,January,3,20,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,1,Check-Out,2017-01-23,Winter,2017-01-20T08:00Z +Keep,11,2017,January,4,22,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,57.6,0,0,Check-Out,2017-01-23,Winter,2017-01-22T08:00Z +Keep,0,2017,January,4,22,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-01-23,Winter,2017-01-22T08:00Z +Keep,93,2017,January,3,19,1,3,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2017-01-23,Winter,2017-01-19T08:00Z +Keep,93,2017,January,3,19,1,3,2,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,94,1,0,Check-Out,2017-01-23,Winter,2017-01-19T08:00Z +Keep,91,2017,January,3,19,1,3,2,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,89,1,0,Check-Out,2017-01-23,Winter,2017-01-19T08:00Z +Keep,19,2017,January,3,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-23,Winter,2017-01-21T08:00Z +Keep,3,2017,January,3,19,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,1,1,Check-Out,2017-01-23,Winter,2017-01-19T08:00Z +Keep,7,2017,January,3,21,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-23,Winter,2017-01-21T08:00Z +Keep,0,2017,January,3,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-23,Winter,2017-01-21T08:00Z +Keep,204,2017,January,3,17,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,3,Check-Out,2017-01-23,Winter,2017-01-17T08:00Z +Keep,13,2017,January,3,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-23,Winter,2017-01-16T08:00Z +Keep,12,2017,January,3,21,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,42.43,0,2,Check-Out,2017-01-23,Winter,2017-01-21T08:00Z +Keep,4,2017,January,2,14,3,6,1,0,0,SC,PRT,Groups,TA/TO, 0,0,0,A,I,5,No Deposit , 168, NULL,0,Transient-Party,0,0,0,Check-Out,2017-01-23,Winter,2017-01-14T08:00Z +Keep,64,2017,January,3,17,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-01-24,Winter,2017-01-17T08:00Z +Keep,64,2017,January,3,17,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-01-24,Winter,2017-01-17T08:00Z +Keep,39,2017,January,3,21,2,1,2,0,0,HB,BEL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,75.6,1,0,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,116,2017,January,3,21,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,3,2017,January,4,22,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-24,Winter,2017-01-22T08:00Z +Keep,7,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,7,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Cancel,0,2017,February,7,17,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,No-Show,2017-02-17,Winter,2017-02-17T08:00Z +Keep,2,2017,March,9,1,0,1,2,0,0,BB,PRT,Corporate,Direct, 1,1,1,A,A,1,No Deposit , NULL, 195,0,Transient,40,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,7,2017,May,21,22,1,0,1,0,0,BB,PRT,Online travel agent,Direct, 1,1,2,A,A,0,No Deposit , 240, NULL,0,Transient-Party,76,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,4,2017,January,4,22,2,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,37,1,0,Check-Out,2017-01-24,Winter,2017-01-22T08:00Z +Keep,1,2017,January,4,23,1,0,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,57.06,1,1,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,3,2017,January,4,23,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 465,0,Transient,35,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,7,2017,January,4,23,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,6,2017,January,4,22,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-01-24,Winter,2017-01-22T08:00Z +Keep,57,2017,January,3,17,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-01-24,Winter,2017-01-17T08:00Z +Keep,0,2017,January,4,23,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,52,1,0,Check-Out,2017-01-24,Winter,2017-01-23T08:00Z +Keep,83,2017,January,2,10,4,10,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 147, NULL,0,Transient,50.96,0,0,Check-Out,2017-01-24,Winter,2017-01-10T08:00Z +Keep,7,2017,January,3,21,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,2,2017,January,3,21,2,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2017-01-24,Winter,2017-01-21T08:00Z +Keep,6,2017,January,4,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 135,0,Transient,35,1,2,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,1,2017,January,4,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,8,2017,January,4,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,135,2017,January,3,19,2,4,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,38.5,0,1,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,8,2017,January,4,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,30,0,0,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,1,2017,January,4,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,45,0,2,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,0,2017,January,4,24,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,14,2017,January,4,22,2,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-25,Winter,2017-01-22T08:00Z +Keep,0,2017,January,3,19,2,4,2,2,0,BB,POL,Direct,Direct, 0,0,0,A,C,3,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,19,2017,January,3,18,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,76,0,0,Check-Out,2017-01-25,Winter,2017-01-18T08:00Z +Keep,1,2017,January,4,24,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,29,2017,January,3,21,2,2,1,0,1,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,39,0,3,Check-Out,2017-01-25,Winter,2017-01-21T08:00Z +Keep,29,2017,January,3,21,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,44,0,3,Check-Out,2017-01-25,Winter,2017-01-21T08:00Z +Keep,4,2017,January,4,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,70,1,0,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,0,2017,January,4,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 51,0,Transient,30,0,0,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,8,2017,April,16,21,0,1,2,1,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 51,0,Transient,75,1,2,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,14,2017,May,22,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,Corporate, 1,0,2,A,D,2,No Deposit , NULL, 78,0,Transient,45,0,2,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,135,2017,January,3,19,2,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,38.5,0,1,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,123,2017,January,3,19,2,4,2,2,0,BB,POL,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,82,0,2,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,5,2017,January,4,24,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 297,0,Transient,35,0,0,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,6,2017,March,10,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 297,0,Transient,35,0,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,4,2017,January,4,22,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-25,Winter,2017-01-22T08:00Z +Keep,2,2017,January,3,21,2,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-25,Winter,2017-01-21T08:00Z +Keep,6,2017,January,4,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, 146,0,Transient,43,0,0,Check-Out,2017-01-25,Winter,2017-01-24T08:00Z +Keep,49,2017,January,3,19,2,4,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,51.9,0,1,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,8,2017,January,3,19,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,5,No Deposit , 250, NULL,0,Transient,69,0,2,Check-Out,2017-01-25,Winter,2017-01-19T08:00Z +Keep,2,2017,January,4,23,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-25,Winter,2017-01-23T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 1,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,4,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,35,2017,January,2,14,4,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-26,Winter,2017-01-14T08:00Z +Keep,72,2017,January,3,19,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,92,0,2,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,56,2017,January,3,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44,0,1,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,0,2017,January,4,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,22,2017,January,4,23,1,2,2,0,1,BB,GBR,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,39.6,0,2,Check-Out,2017-01-26,Winter,2017-01-23T08:00Z +Keep,122,2017,January,4,23,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,33.26,0,2,Check-Out,2017-01-26,Winter,2017-01-23T08:00Z +Keep,0,2017,January,4,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,1,2017,January,4,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,1,2017,January,4,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,1,2017,January,4,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,8,2017,January,4,25,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 291,0,Transient,40,1,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 139, NULL,0,Transient,35,1,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 139, NULL,0,Transient,35,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 139, NULL,0,Transient,35,0,1,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,13,2017,January,4,24,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,6,2017,January,4,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 254, NULL,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,23,2017,January,4,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,8,2017,February,7,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 331,0,Transient,54,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,5,2017,March,9,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 331,0,Transient,38,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,9,2017,March,11,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,16,2017,March,12,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,17,2017,January,4,24,0,2,2,0,0,HB,DNK,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,75.34,0,1,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,0,2017,January,4,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,1,2017,January,3,19,2,5,2,1,0,BB,POL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,88,0,2,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,6,2017,January,4,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,37,2017,January,3,19,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,5,2017,January,4,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,37,2017,January,3,19,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,2,2017,January,4,25,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,F,G,0,No Deposit , 146, NULL,0,Transient,59.5,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,85,2017,January,1,5,6,15,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,69.99,0,1,Check-Out,2017-01-26,Winter,2017-01-05T08:00Z +Keep,6,2017,January,4,24,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-26,Winter,2017-01-24T08:00Z +Keep,13,2017,January,4,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,2,No Deposit , 250, NULL,0,Transient,149,0,4,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2017,January,3,19,2,5,1,0,0,BB,ISL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,1,2017,January,4,26,2,5,1,0,0,BB,ISL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.29,0,1,Check-Out,2017-02-02,Winter,2017-01-26T08:00Z +Keep,1,2017,February,5,2,2,7,1,0,0,BB,ISL,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,45.67,0,1,Check-Out,2017-02-11,Winter,2017-02-02T08:00Z +Keep,37,2017,January,3,19,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-01-26,Winter,2017-01-19T08:00Z +Keep,0,2017,January,4,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-01-26,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,27,2017,January,1,4,6,17,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,67.87,1,1,Check-Out,2017-01-27,Winter,2017-01-04T08:00Z +Keep,11,2017,January,4,23,1,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 254,0,Transient,35,0,0,Check-Out,2017-01-27,Winter,2017-01-23T08:00Z +Keep,9,2017,February,8,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 254, NULL,0,Transient,35,0,0,Check-Out,2017-02-24,Winter,2017-02-22T08:00Z +Keep,23,2017,March,13,29,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 254,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,26,2017,May,19,8,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,D,D,0,No Deposit , 254, NULL,0,Transient,65,0,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,0,2017,June,25,20,0,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,D,0,No Deposit , NULL, 254,0,Transient,121.5,0,0,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 94,0,Transient-Party,35,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , 94, NULL,0,Transient-Party,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,4,2017,August,31,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 94,0,Transient,135,0,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,0,2017,January,4,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,2,2017,January,4,25,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 484,0,Transient,40,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,6,2017,May,21,23,0,1,1,0,0,BB,PRT,Online travel agent,Corporate, 1,0,1,A,D,1,No Deposit , 240, NULL,0,Transient,63.9,0,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,1,2017,January,4,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,RUS,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,10,2017,January,4,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 269,0,Transient,35,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,3,2017,March,12,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,1,No Deposit , NULL, 269,0,Transient,35,0,0,Check-Out,2017-03-22,Spring,2017-03-20T07:00Z +Keep,13,2017,April,16,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 269,0,Transient,45,0,0,Check-Out,2017-04-20,Spring,2017-04-19T07:00Z +Keep,1,2017,May,22,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,A,0,No Deposit , NULL, 269,0,Transient,45,0,0,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,36,2017,January,4,23,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-27,Winter,2017-01-23T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,3,2017,January,4,26,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,1,2017,January,4,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,2,2017,January,4,25,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2017-01-27,Winter,2017-01-25T08:00Z +Keep,2,2017,January,3,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-27,Winter,2017-01-20T08:00Z +Keep,0,2017,January,4,27,1,2,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,70,0,2,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,9,2017,January,3,21,2,4,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,47.4,0,0,Check-Out,2017-01-27,Winter,2017-01-21T08:00Z +Keep,2,2017,January,4,26,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,35.6,1,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,26,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-01-27,Winter,2017-01-26T08:00Z +Keep,4,2017,January,3,21,2,5,1,0,0,FB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,53,0,0,Check-Out,2017-01-28,Winter,2017-01-21T08:00Z +Keep,43,2017,January,3,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.6,0,1,Check-Out,2017-01-28,Winter,2017-01-21T08:00Z +Keep,14,2017,January,4,25,0,3,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2017-01-28,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,27,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,0,2017,January,4,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,23,2017,January,4,23,1,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,42.11,1,1,Check-Out,2017-01-28,Winter,2017-01-23T08:00Z +Keep,5,2017,January,4,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,132,2017,January,4,25,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,57.74,0,1,Check-Out,2017-01-28,Winter,2017-01-25T08:00Z +Keep,5,2017,January,4,26,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,51,2017,January,3,21,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,68.92,0,1,Check-Out,2017-01-28,Winter,2017-01-21T08:00Z +Keep,3,2017,January,4,26,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,40.5,0,0,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,27,2017,January,4,25,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,1,Check-Out,2017-01-28,Winter,2017-01-25T08:00Z +Keep,6,2017,January,2,14,4,10,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-01-28,Winter,2017-01-14T08:00Z +Keep,3,2017,January,3,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2017-01-28,Winter,2017-01-21T08:00Z +Keep,0,2017,January,4,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,73,0,0,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,56,2017,January,4,25,0,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,79.67,0,0,Check-Out,2017-01-28,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,26,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2017-01-28,Winter,2017-01-26T08:00Z +Keep,6,2017,January,4,22,2,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,108,1,0,Check-Out,2017-01-28,Winter,2017-01-22T08:00Z +Keep,1,2017,January,4,25,0,3,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-28,Winter,2017-01-25T08:00Z +Keep,0,2017,January,4,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,76,0,1,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,11,2017,January,4,28,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 8, NULL,0,Transient,0,0,0,Check-Out,2017-01-28,Winter,2017-01-28T08:00Z +Keep,3,2017,January,4,27,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-01-28,Winter,2017-01-27T08:00Z +Keep,4,2017,January,3,18,2,9,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45.82,0,0,Check-Out,2017-01-29,Winter,2017-01-18T08:00Z +Keep,2,2017,January,4,26,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,48,2017,January,4,26,0,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,49.9,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,17,2017,January,4,26,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,27,0,2,1,0,0,BB,TUR,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,5,2017,January,4,27,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,121,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,66.8,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,55,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,4,2017,January,4,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,24,2017,January,4,27,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,1,2017,January,4,27,0,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,41,1,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,21,2017,January,4,26,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,1,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,21,2017,January,4,26,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,5,2017,January,4,26,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,53.33,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,7,2017,January,4,27,0,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,1,2017,January,5,29,1,0,2,0,0,BB,ARG,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,64,1,1,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,4,2017,January,4,28,0,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,95,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,17,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,4,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,55,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,112,2017,January,4,26,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,36.96,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,4,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,32,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,1,2017,January,4,28,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient-Party,110,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,121,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,66.8,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,121,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,66.8,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,0,2017,January,4,27,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,105,1,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,15,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,121,2017,January,4,25,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-01-29,Winter,2017-01-25T08:00Z +Keep,121,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,72,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,1,2017,January,4,28,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,2,No Deposit , NULL, NULL,0,Transient,110,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,17,2017,January,4,27,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 171, NULL,0,Contract,51,1,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,58,2017,January,4,26,0,3,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,16,2017,January,4,28,0,1,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,141,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,1,2017,January,4,28,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient-Party,78,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,35,2017,January,4,25,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-29,Winter,2017-01-25T08:00Z +Keep,2,2017,January,4,28,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,88,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,66.8,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,125,2017,January,4,22,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 273, NULL,4,Transient-Party,72,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,1,2017,January,4,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,70,1,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,0,2017,January,4,26,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53.33,0,0,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,121,2017,January,4,22,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient,43.4,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,121,2017,January,4,22,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient,41.4,0,0,Check-Out,2017-01-29,Winter,2017-01-22T08:00Z +Keep,24,2017,January,4,26,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,1,2017,January,4,28,0,1,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,64.75,1,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,17,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,18,2017,January,4,26,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,2,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,2,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,3,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,26,2017,January,4,28,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88,1,1,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,0,2017,January,4,27,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,53,0,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,16,2017,January,4,27,0,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 504,0,Transient-Party,36,0,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,18,2017,January,4,26,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,2,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,18,2017,January,4,26,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,2,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,28,2017,January,4,27,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 95, NULL,0,Transient,34,0,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,18,2017,January,4,26,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,2,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,0,2017,January,4,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,53,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,2,2017,January,4,27,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 261, NULL,0,Transient,41,1,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,18,2017,January,4,26,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,9,2017,January,4,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,78,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,48,2017,January,4,26,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,5,2017,January,4,26,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,1,Check-Out,2017-01-29,Winter,2017-01-26T08:00Z +Keep,9,2017,January,4,27,0,2,2,0,0,BB,ITA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,4,2017,January,4,27,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,24,2017,January,4,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,0,2017,January,4,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,4,2017,January,4,27,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,3,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,17,2017,January,4,28,0,1,2,2,0,BB,PRT,Groups,Corporate, 0,0,0,A,C,0,Non Refund , NULL, 504,0,Transient-Party,51,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,17,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,17,2017,January,4,28,0,1,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,C,0,Non Refund , NULL, 504,0,Transient-Party,36,0,0,Check-Out,2017-01-29,Winter,2017-01-28T08:00Z +Keep,0,2017,January,4,27,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,106.5,2,0,Check-Out,2017-01-29,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,2,0,BB,GBR,Direct,TA/TO, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,85,2,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,56,2017,January,3,16,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,60,0,0,Check-Out,2017-01-30,Winter,2017-01-16T08:00Z +Keep,17,2017,January,4,23,2,5,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,0,Check-Out,2017-01-30,Winter,2017-01-23T08:00Z +Keep,15,2017,January,4,26,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,55.4,0,1,Check-Out,2017-01-30,Winter,2017-01-26T08:00Z +Keep,20,2017,January,3,19,3,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 40, NULL,0,Transient,91.76,0,1,Check-Out,2017-01-30,Winter,2017-01-19T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65,0,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,11,2017,January,4,27,1,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient-Party,35,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,16,2017,January,4,27,1,2,2,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,16,2017,January,4,27,1,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,35,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,4,26,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,30,0,0,Check-Out,2017-01-30,Winter,2017-01-26T08:00Z +Keep,16,2017,January,4,27,1,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,40,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,16,2017,January,4,27,1,2,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,35,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,74,2017,January,4,24,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99,1,2,Check-Out,2017-01-30,Winter,2017-01-24T08:00Z +Keep,2,2017,January,5,30,1,0,2,0,0,HB,FRA,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,92,1,2,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,46,2017,January,4,27,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,44,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,16,2017,January,4,27,1,2,1,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,35,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,1,2017,January,4,27,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient-Party,95.67,1,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,1,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,74,2017,January,4,24,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2017-01-30,Winter,2017-01-24T08:00Z +Keep,2,2017,January,5,30,1,0,2,0,0,HB,FRA,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,92,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,34,2017,January,4,27,1,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,71,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,16,2017,January,4,27,1,2,2,0,0,BB,ARG,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,14,2017,January,4,28,1,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-01-30,Winter,2017-01-28T08:00Z +Keep,7,2017,January,4,27,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,63,2017,January,4,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43.71,0,2,Check-Out,2017-01-30,Winter,2017-01-23T08:00Z +Keep,16,2017,January,4,27,1,2,2,0,0,BB,JPN,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,4,2017,January,4,27,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,3,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,30,1,3,1,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-03,Winter,2017-01-30T08:00Z +Keep,1,2017,February,5,3,13,32,1,0,0,BB,GBR,Direct,Direct, 1,0,1,A,D,2,No Deposit , NULL, NULL,0,Transient,42.11,0,3,Check-Out,2017-03-20,Winter,2017-02-03T08:00Z +Keep,3,2017,January,4,28,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2017-01-30,Winter,2017-01-28T08:00Z +Keep,3,2017,January,4,27,1,2,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,4,2017,January,4,27,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,30,1,3,1,0,0,BB,GBR,Direct,TA/TO, 1,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,43,0,2,Check-Out,2017-02-03,Winter,2017-01-30T08:00Z +Keep,18,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 467, NULL,0,Transient,54.56,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,18,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 467, NULL,0,Transient,52.56,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,1,2017,January,4,27,1,2,2,1,1,BB,IRL,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient-Party,95.33,0,4,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,52.67,2,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,0,2017,January,4,27,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient-Party,93,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,30,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,43,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,4,27,1,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient-Party,93,0,0,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,30,1,0,2,0,1,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,43,2017,January,4,27,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,3,2017,January,4,27,1,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,2,2017,January,5,29,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,1,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,47,1,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,2,2017,January,5,29,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,1,0,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,0,2017,January,5,30,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,1,2017,January,4,27,1,2,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient-Party,88.67,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,1,2017,January,4,27,1,2,1,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,70.33,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,0,2017,January,5,29,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,45,0,2,Check-Out,2017-01-30,Winter,2017-01-29T08:00Z +Keep,8,2017,January,4,26,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2017-01-30,Winter,2017-01-26T08:00Z +Keep,3,2017,January,4,27,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-30,Winter,2017-01-27T08:00Z +Keep,112,2017,January,4,28,2,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2017-01-31,Winter,2017-01-28T08:00Z +Keep,58,2017,January,4,28,2,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,72,0,0,Check-Out,2017-01-31,Winter,2017-01-28T08:00Z +Keep,126,2017,January,4,24,2,5,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2017-01-31,Winter,2017-01-24T08:00Z +Keep,1,2017,January,5,30,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,4,2017,January,5,30,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 34,0,Transient,38.5,1,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,309,2017,January,3,21,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,27,0,0,Check-Out,2017-01-31,Winter,2017-01-21T08:00Z +Keep,12,2017,January,4,28,2,1,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-01-31,Winter,2017-01-28T08:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 510, NULL,0,Transient,40,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,0,2017,January,5,30,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 510, NULL,0,Transient,40,0,0,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,3,2017,January,5,30,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.45,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,0,2017,February,7,13,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 96, NULL,0,Transient,30,0,0,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,4,2017,January,5,30,1,0,1,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 40, NULL,0,Transient,0,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,5,2017,May,20,15,1,0,1,0,0,BB,GBR,Complementary,TA/TO, 1,0,1,E,E,0,No Deposit , 40, NULL,0,Transient,0,1,2,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,4,2017,January,5,30,1,0,1,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 40, NULL,0,Transient,0,0,1,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,97,2017,January,3,16,5,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2017-01-31,Winter,2017-01-16T08:00Z +Keep,47,2017,January,4,28,2,1,2,1,1,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 6, NULL,0,Transient,42.5,0,0,Check-Out,2017-01-31,Winter,2017-01-28T08:00Z +Keep,4,2017,January,5,29,2,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-01-31,Winter,2017-01-29T08:00Z +Keep,84,2017,January,5,30,1,0,3,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,94,1,2,Check-Out,2017-01-31,Winter,2017-01-30T08:00Z +Keep,1,2017,January,5,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 78, NULL,0,Transient,30,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,2,2017,January,5,30,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,18,2017,January,5,30,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, 268,0,Transient-Party,53,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,8,2017,January,4,28,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 184, NULL,0,Transient,68,0,0,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,1,2017,January,5,30,1,1,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,6,2017,January,5,30,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,11,2017,January,5,30,1,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,1,2,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,1,2017,February,5,1,0,3,1,0,0,BB,BEL,Direct,TA/TO, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,47.67,1,2,Check-Out,2017-02-04,Winter,2017-02-01T08:00Z +Keep,4,2017,January,5,31,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,42,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2017,January,5,31,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,1,2017,January,5,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 225,0,Transient,35,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,1,2017,February,7,15,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,1,No Deposit , NULL, 225,0,Transient,35,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,March,11,14,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,I,0,No Deposit , NULL, 225,0,Transient,35,0,0,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,30,2017,January,4,27,2,3,2,0,0,SC,PRT,Groups,Corporate, 0,0,0,A,I,4,No Deposit , NULL, 504,14,Transient-Party,0,0,1,Check-Out,2017-02-01,Winter,2017-01-27T08:00Z +Keep,6,2017,January,5,31,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , 88, NULL,0,Transient,35,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,6,2017,January,5,31,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,5,2017,January,5,30,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,48,2017,January,4,28,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,37.8,1,2,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,0,2017,January,5,30,1,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,58,1,0,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,69,2017,January,4,28,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,11,2017,January,5,30,1,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,1,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,34.4,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,202,2017,January,4,28,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,27,2017,January,5,30,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,0,2017,January,5,31,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,80,2017,January,5,30,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,2,No Deposit , 240, NULL,0,Transient,69,1,0,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,128,2017,January,4,28,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,4,2017,January,5,29,2,1,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,57.4,1,0,Check-Out,2017-02-01,Winter,2017-01-29T08:00Z +Keep,45,2017,January,5,31,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,19,2017,January,5,31,0,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-02-01,Winter,2017-01-31T08:00Z +Keep,24,2017,January,4,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,42,0,0,Check-Out,2017-02-01,Winter,2017-01-28T08:00Z +Keep,36,2017,January,5,29,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,35.33,0,0,Check-Out,2017-02-01,Winter,2017-01-29T08:00Z +Keep,43,2017,January,4,27,2,3,2,0,0,SC,GBR,Online travel agent,TA/TO, 0,0,0,A,I,2,No Deposit , 240, NULL,0,Transient-Party,0,0,1,Check-Out,2017-02-01,Winter,2017-01-27T08:00Z +Keep,27,2017,January,5,30,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-01,Winter,2017-01-30T08:00Z +Keep,0,2017,February,5,1,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2017-02-01,Winter,2017-02-01T08:00Z +Keep,11,2017,January,5,30,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,11,2017,January,5,30,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,11,2017,January,5,30,1,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,1,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,45,2017,January,5,30,1,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.8,0,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,0,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,0,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Cancel,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Canceled,2017-03-20,Spring,2017-03-20T07:00Z +Keep,0,2017,February,5,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Cancel,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 88,0,Transient,35,0,0,Canceled,2017-03-20,Spring,2017-03-20T07:00Z +Keep,0,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,1,1,A,A,0,No Deposit , NULL, 88,0,Transient,35,1,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,4,2017,January,5,29,2,2,2,1,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,68,0,0,Check-Out,2017-02-02,Winter,2017-01-29T08:00Z +Keep,0,2017,February,5,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,1,2017,February,5,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, 130,0,Transient-Party,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,0,2017,June,25,22,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 130,0,Transient,75,0,0,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,1,2017,February,5,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, 130,0,Transient-Party,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,1,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,A,0,No Deposit , NULL, 130,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,1,2017,February,5,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, 130,0,Transient-Party,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,7,2017,January,5,31,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,40.11,1,1,Check-Out,2017-02-02,Winter,2017-01-31T08:00Z +Keep,1,2017,February,5,2,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,72,1,1,Check-Out,2017-02-04,Winter,2017-02-02T08:00Z +Keep,1,2017,February,5,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,72,1,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,5,2017,January,5,30,1,2,2,2,0,BB,MAR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,92,1,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,0,2017,January,4,23,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,52,0,0,Check-Out,2017-02-02,Winter,2017-01-23T08:00Z +Keep,1,2017,February,5,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, 130,0,Transient-Party,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,1,2017,January,5,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-02,Winter,2017-01-31T08:00Z +Keep,11,2017,January,5,30,1,2,1,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,50,0,0,Check-Out,2017-02-02,Winter,2017-01-30T08:00Z +Keep,8,2017,February,5,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,1,1,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,8,2017,February,5,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,1,2017,January,4,24,2,7,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50,1,1,Check-Out,2017-02-02,Winter,2017-01-24T08:00Z +Keep,1,2017,February,5,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,3,No Deposit , NULL, 130,0,Transient-Party,35,0,0,Check-Out,2017-02-02,Winter,2017-02-01T08:00Z +Keep,1,2017,June,23,8,0,2,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 130,0,Transient,75,1,1,Check-Out,2017-06-10,Summer,2017-06-08T07:00Z +Keep,49,2017,August,32,8,0,3,1,0,0,BB,PRT,Corporate,Direct, 1,0,2,A,E,0,No Deposit , NULL, 130,0,Transient,147.33,1,1,Check-Out,2017-08-11,Summer,2017-08-08T07:00Z +Keep,0,2017,February,5,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,3,2017,February,5,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,5,2017,February,5,1,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,36,0,0,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,0,2017,February,5,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,48,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,0,2017,February,7,17,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,54,0,1,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,1,2017,February,9,28,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Group,45.5,0,1,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,0,2017,February,5,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,0,2017,February,5,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,48,0,1,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,0,2017,February,6,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 241, NULL,0,Group,36.96,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,3,2017,February,5,2,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,0,2017,February,5,2,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 390,0,Transient,40,0,1,Check-Out,2017-02-03,Winter,2017-02-02T08:00Z +Keep,11,2017,January,5,30,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-03,Winter,2017-01-30T08:00Z +Keep,157,2017,January,4,26,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2017-02-03,Winter,2017-01-26T08:00Z +Keep,0,2017,January,5,31,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-02-03,Winter,2017-01-31T08:00Z +Keep,2,2017,February,5,1,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 390,0,Transient,40,0,1,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,10,2017,March,13,27,1,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 390,0,Transient,35,0,1,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,2,2017,May,19,10,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 390,0,Transient,45,0,1,Check-Out,2017-05-11,Spring,2017-05-10T07:00Z +Keep,11,2017,February,5,1,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-02-03,Winter,2017-02-01T08:00Z +Keep,41,2017,January,4,23,3,8,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-02-03,Winter,2017-01-23T08:00Z +Keep,177,2017,January,5,31,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,39,2017,January,5,31,0,4,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,0,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,4,2017,February,5,1,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-04,Winter,2017-02-01T08:00Z +Keep,177,2017,January,5,31,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,1,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,4,2017,January,4,28,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,87,1,1,Check-Out,2017-02-04,Winter,2017-01-28T08:00Z +Keep,10,2017,February,5,3,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,40.5,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,20,2017,January,5,29,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,59,0,0,Check-Out,2017-02-04,Winter,2017-01-29T08:00Z +Keep,1,2017,February,5,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,31,2017,February,5,3,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,1,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,31,2017,February,5,3,0,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,1,2017,February,5,3,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,0,2017,February,5,3,0,1,1,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,1,2017,February,5,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43.2,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,2,2017,February,6,10,4,10,2,0,0,SC,PRT,Direct,Direct, 1,0,1,A,I,6,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2017-02-24,Winter,2017-02-10T08:00Z +Keep,15,2017,February,5,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , NULL, NULL,0,Transient,70,0,2,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,3,2017,February,5,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 159,0,Transient,35,0,1,Check-Out,2017-02-04,Winter,2017-02-02T08:00Z +Keep,1,2017,March,11,18,2,1,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,3,No Deposit , NULL, 159,0,Transient,45,0,1,Check-Out,2017-03-21,Spring,2017-03-18T07:00Z +Keep,10,2017,July,28,15,2,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,3,No Deposit , NULL, 520,0,Transient,145,0,1,Check-Out,2017-07-19,Summer,2017-07-15T07:00Z +Keep,3,2017,February,5,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 159,0,Transient,35,0,1,Check-Out,2017-02-04,Winter,2017-02-02T08:00Z +Keep,0,2017,January,5,31,0,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,45,0,0,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,67,2017,February,5,3,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,52,0,3,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,67,2017,February,5,3,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,52,0,3,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,1,2017,February,5,1,0,3,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,31.21,0,1,Check-Out,2017-02-04,Winter,2017-02-01T08:00Z +Keep,1,2017,February,5,3,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,56.21,0,1,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,56,2017,January,5,31,0,4,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,29.6,0,0,Check-Out,2017-02-04,Winter,2017-01-31T08:00Z +Keep,3,2017,February,5,2,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 159,0,Transient,35,0,1,Check-Out,2017-02-04,Winter,2017-02-02T08:00Z +Keep,0,2017,February,5,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-04,Winter,2017-02-03T08:00Z +Keep,131,2017,January,2,8,8,20,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 314, NULL,0,Transient,54.35,0,0,Check-Out,2017-02-05,Winter,2017-01-08T08:00Z +Keep,81,2017,February,5,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,4,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,81,2017,February,5,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,81,2017,February,5,2,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,37,0,1,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,13,2017,February,5,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,3,2017,February,5,2,0,3,2,0,0,BB,SVN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,3,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,132,2017,February,5,2,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,71,2017,January,5,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,47.72,1,1,Check-Out,2017-02-05,Winter,2017-01-29T08:00Z +Keep,12,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,2,2017,February,5,3,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,87,1,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,2,2017,February,5,3,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,80,0,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,1,2017,February,5,4,0,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,55,1,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,27,2017,February,5,4,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,27,2017,February,5,4,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,3,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,8,2017,February,5,4,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,40.5,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,2,2017,February,5,3,0,2,2,1,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient,128.74,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,4,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,2,2017,February,5,4,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,4,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,58.5,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,1,2017,February,5,2,0,3,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,43.12,0,1,Check-Out,2017-02-05,Winter,2017-02-02T08:00Z +Keep,1,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,1,2017,February,5,4,0,1,2,1,0,BB,PRT,Direct,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,63,0,3,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,10,2017,February,5,3,0,2,2,0,0,BB,KOR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,54,2017,February,5,3,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,0,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,1,2017,February,5,3,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,10,2017,February,5,3,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,10,2017,February,5,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,47.5,1,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,15,2017,February,5,3,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,158,2017,January,5,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,44.64,0,0,Check-Out,2017-02-05,Winter,2017-01-29T08:00Z +Keep,10,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,17,2017,February,5,4,0,1,2,0,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,88,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,11,2017,February,5,4,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 467, NULL,0,Transient,75.6,0,0,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,4,2017,February,5,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,40.5,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,1,2017,February,5,3,0,2,2,1,1,HB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,103,0,0,Check-Out,2017-02-05,Winter,2017-02-03T08:00Z +Keep,0,2017,February,5,4,0,1,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-05,Winter,2017-02-04T08:00Z +Keep,18,2017,January,5,29,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.71,0,1,Check-Out,2017-02-05,Winter,2017-01-29T08:00Z +Keep,23,2017,February,5,3,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,42,0,0,Check-Out,2017-02-06,Winter,2017-02-03T08:00Z +Keep,8,2017,February,5,4,1,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,57,1,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,70,2017,January,5,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,83.76,0,1,Check-Out,2017-02-06,Winter,2017-01-30T08:00Z +Keep,0,2017,February,6,5,1,0,2,0,0,BB,NLD,Direct,Direct, 0,0,0,H,G,0,No Deposit , 250, NULL,0,Transient,100,1,0,Check-Out,2017-02-06,Winter,2017-02-05T08:00Z +Keep,3,2017,February,6,5,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-06,Winter,2017-02-05T08:00Z +Keep,36,2017,February,5,4,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,40.85,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,0,2017,February,5,4,1,1,1,0,0,BB,CHN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,36,2017,February,5,4,1,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,40.85,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,36,2017,February,5,4,1,1,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,40.85,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,29,2017,February,5,4,1,1,2,0,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,74.1,0,2,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,80,2017,February,5,4,1,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,63.65,0,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,54,2017,January,5,30,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,57.6,0,0,Check-Out,2017-02-06,Winter,2017-01-30T08:00Z +Keep,0,2017,February,6,5,1,0,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-06,Winter,2017-02-05T08:00Z +Keep,0,2017,February,5,2,1,3,2,0,0,BB,AGO,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,44.95,1,0,Check-Out,2017-02-06,Winter,2017-02-02T08:00Z +Keep,36,2017,February,5,3,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-06,Winter,2017-02-03T08:00Z +Keep,20,2017,January,5,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-02-06,Winter,2017-01-30T08:00Z +Keep,6,2017,February,5,1,1,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,68,0,0,Check-Out,2017-02-06,Winter,2017-02-01T08:00Z +Keep,67,2017,February,5,3,1,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,33.26,0,0,Check-Out,2017-02-06,Winter,2017-02-03T08:00Z +Keep,9,2017,February,5,2,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,34.56,0,0,Check-Out,2017-02-06,Winter,2017-02-02T08:00Z +Keep,3,2017,February,5,4,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-02-06,Winter,2017-02-04T08:00Z +Keep,4,2017,January,5,29,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78,0,2,Check-Out,2017-02-06,Winter,2017-01-29T08:00Z +Keep,17,2017,January,5,30,2,5,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,58,1,2,Check-Out,2017-02-06,Winter,2017-01-30T08:00Z +Keep,46,2017,January,4,25,3,9,0,0,0,SC,FRA,Direct,Direct, 0,0,0,A,I,8,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-06,Winter,2017-01-25T08:00Z +Keep,145,2017,February,5,4,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,46.8,0,2,Check-Out,2017-02-07,Winter,2017-02-04T08:00Z +Keep,0,2017,February,6,6,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,67,1,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,159,2017,February,5,4,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.13,0,1,Check-Out,2017-02-07,Winter,2017-02-04T08:00Z +Keep,159,2017,February,5,4,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-02-07,Winter,2017-02-04T08:00Z +Keep,159,2017,February,5,4,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,46.8,0,0,Check-Out,2017-02-07,Winter,2017-02-04T08:00Z +Keep,0,2017,February,6,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,3,2017,February,6,5,2,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-02-07,Winter,2017-02-05T08:00Z +Cancel,20,2017,February,6,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,1,Canceled,2017-02-07,Winter,2017-02-07T08:00Z +Keep,17,2017,February,6,6,1,0,1,0,0,BB,BRA,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 490,0,Transient,36,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,17,2017,February,6,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 490,0,Transient,36,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,52,2017,February,5,4,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-07,Winter,2017-02-04T08:00Z +Keep,0,2017,February,6,5,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2017-02-07,Winter,2017-02-05T08:00Z +Keep,1,2017,February,6,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,87,1,1,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,1,2017,February,7,12,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,2,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,1,2017,February,6,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,1,2017,February,7,12,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,75,1,2,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,1,2017,February,6,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,1,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,10,2017,February,5,3,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.61,0,1,Check-Out,2017-02-07,Winter,2017-02-03T08:00Z +Keep,27,2017,January,5,31,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,66.4,0,0,Check-Out,2017-02-07,Winter,2017-01-31T08:00Z +Keep,19,2017,February,6,6,1,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,102,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,1,2017,February,6,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,92,1,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,1,2017,February,6,6,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,85,0,0,Check-Out,2017-02-07,Winter,2017-02-06T08:00Z +Keep,0,2017,February,6,7,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,0,0,0,Check-Out,2017-02-07,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,7,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,0,0,0,Check-Out,2017-02-07,Winter,2017-02-07T08:00Z +Keep,14,2017,February,6,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,35,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 3, NULL,0,Transient-Party,34,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,7,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 3, NULL,0,Transient-Party,30,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,6,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,47,1,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,0,2017,February,6,7,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,55,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,3,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 507,0,Transient-Party,120,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,14,2017,February,6,6,1,1,3,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 507,4,Transient-Party,120,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,1,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,3,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 507,0,Transient-Party,120,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,3,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 507,0,Transient-Party,120,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,0,2017,February,6,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,1,2017,February,6,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 355,0,Transient,35,0,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,4,2017,February,5,4,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,54,0,0,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,14,2017,February,5,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 436, NULL,0,Transient,34,0,0,Check-Out,2017-02-08,Winter,2017-02-01T08:00Z +Keep,2,2017,February,6,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,7,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80,1,0,Check-Out,2017-02-08,Winter,2017-02-07T08:00Z +Keep,140,2017,February,6,6,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,2,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,21,2017,February,5,4,2,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,36,2017,February,5,4,2,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,39.6,0,3,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,36,2017,February,5,4,2,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,39.6,0,3,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,9,2017,February,5,4,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 467, NULL,0,Transient-Party,45.36,0,0,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,9,2017,February,5,4,2,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 467, NULL,0,Transient-Party,47.36,0,0,Check-Out,2017-02-08,Winter,2017-02-04T08:00Z +Keep,23,2017,February,6,8,0,0,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2017-02-08,Winter,2017-02-08T08:00Z +Keep,10,2017,February,6,6,1,1,3,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 507,0,Transient-Party,120,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,2,2017,February,6,5,2,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,35.33,0,0,Check-Out,2017-02-08,Winter,2017-02-05T08:00Z +Keep,10,2017,February,6,6,1,1,2,0,0,Undefined,PRT,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 507,0,Transient-Party,90,0,0,Check-Out,2017-02-08,Winter,2017-02-06T08:00Z +Keep,31,2017,February,6,5,2,2,2,0,0,HB,JPN,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,78.6,0,0,Check-Out,2017-02-09,Winter,2017-02-05T08:00Z +Keep,8,2017,February,6,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,0,No Deposit , 168, NULL,0,Transient,75,1,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,35,1,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,38.4,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,19,2017,January,5,29,4,7,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,34.4,0,0,Check-Out,2017-02-09,Winter,2017-01-29T08:00Z +Keep,19,2017,January,5,29,4,7,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 314, NULL,0,Transient-Party,64.4,0,0,Check-Out,2017-02-09,Winter,2017-01-29T08:00Z +Keep,6,2017,February,6,7,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74,0,2,Check-Out,2017-02-09,Winter,2017-02-07T08:00Z +Keep,160,2017,February,6,8,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,8,2017,February,6,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,1,No Deposit , 146, NULL,0,Transient,68.2,1,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,SWE,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,48,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,48,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,8,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,15,2017,February,6,6,1,2,1,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,58.4,0,0,Check-Out,2017-02-09,Winter,2017-02-06T08:00Z +Keep,32,2017,February,5,4,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-09,Winter,2017-02-04T08:00Z +Keep,6,2017,February,6,6,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,41.65,0,0,Check-Out,2017-02-09,Winter,2017-02-06T08:00Z +Keep,6,2017,February,6,6,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 467, NULL,0,Transient,46.08,0,0,Check-Out,2017-02-09,Winter,2017-02-06T08:00Z +Keep,1,2017,February,6,7,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,86,1,1,Check-Out,2017-02-09,Winter,2017-02-07T08:00Z +Keep,0,2017,February,6,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,111,2017,January,4,26,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30.6,0,0,Check-Out,2017-02-09,Winter,2017-01-26T08:00Z +Keep,21,2017,February,6,8,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-02-09,Winter,2017-02-08T08:00Z +Keep,6,2017,February,6,9,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,56,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,1,2017,February,6,9,0,1,2,0,0,BB,DNK,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,75,1,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,7,2017,February,6,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,7,2017,February,6,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,1,2017,May,21,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,2,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,7,2017,February,6,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,6,2017,February,6,8,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2017-02-10,Winter,2017-02-08T08:00Z +Keep,10,2017,February,6,9,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,45,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,4,2017,February,6,7,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-10,Winter,2017-02-07T08:00Z +Keep,1,2017,February,6,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,0,2017,February,6,9,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,1,2017,February,6,10,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,2,2017,February,6,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,0,2017,February,6,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,1,2017,February,9,27,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,0,2017,February,6,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,1,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,1,2017,February,9,27,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,55,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,0,2017,February,9,28,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,6,9,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,6,2017,February,6,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,20,2017,February,6,7,0,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 242, NULL,0,Transient,80,0,1,Check-Out,2017-02-10,Winter,2017-02-07T08:00Z +Keep,2,2017,February,6,6,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.5,0,1,Check-Out,2017-02-10,Winter,2017-02-06T08:00Z +Keep,2,2017,February,6,6,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,39.5,0,1,Check-Out,2017-02-10,Winter,2017-02-06T08:00Z +Keep,3,2017,February,6,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,43.2,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,7,2017,February,6,9,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,43,0,2,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,140,2017,January,1,6,10,25,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,45,0,1,Check-Out,2017-02-10,Winter,2017-01-06T08:00Z +Keep,14,2017,February,6,9,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,38.4,0,0,Check-Out,2017-02-10,Winter,2017-02-09T08:00Z +Keep,20,2017,February,6,10,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,34.56,0,0,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,109,2017,February,6,6,1,3,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,47.8,0,2,Check-Out,2017-02-10,Winter,2017-02-06T08:00Z +Keep,87,2017,February,6,7,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-02-11,Winter,2017-02-07T08:00Z +Keep,16,2017,February,6,7,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-11,Winter,2017-02-07T08:00Z +Keep,216,2017,February,5,3,2,6,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,64.8,1,2,Check-Out,2017-02-11,Winter,2017-02-03T08:00Z +Keep,9,2017,February,5,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,44,0,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,53,2017,February,5,4,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,99.43,0,1,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,3,2017,February,6,9,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2017-02-11,Winter,2017-02-09T08:00Z +Keep,0,2017,February,6,10,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,24,2017,February,6,9,0,2,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 506,0,Transient,40,0,1,Check-Out,2017-02-11,Winter,2017-02-09T08:00Z +Keep,62,2017,February,6,6,1,4,2,1,0,HB,FRA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,122.5,1,0,Check-Out,2017-02-11,Winter,2017-02-06T08:00Z +Keep,125,2017,January,5,30,3,9,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,0,Check-Out,2017-02-11,Winter,2017-01-30T08:00Z +Keep,9,2017,February,5,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,49,1,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,0,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,2,2017,February,6,11,0,0,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2017-02-11,Winter,2017-02-11T08:00Z +Keep,6,2017,February,6,9,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-09T08:00Z +Keep,2,2017,February,6,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,55,1,2,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,2,2017,February,5,4,2,5,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,43.14,0,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,142,2017,February,5,4,2,5,2,1,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,65.75,0,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,3,2017,February,6,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,2,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,25,2017,February,5,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,53,2017,February,5,4,2,5,2,0,1,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-02-11,Winter,2017-02-04T08:00Z +Keep,1,2017,February,6,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,14,2017,February,6,6,1,4,3,0,0,SC,PRT,Complementary,Corporate, 0,0,0,A,I,4,No Deposit , NULL, 507,4,Transient-Party,48,0,0,Check-Out,2017-02-11,Winter,2017-02-06T08:00Z +Keep,0,2017,February,6,10,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-11,Winter,2017-02-10T08:00Z +Keep,33,2017,February,6,6,1,4,2,0,0,BB,BGR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-11,Winter,2017-02-06T08:00Z +Keep,13,2017,February,5,2,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,36,0,0,Check-Out,2017-02-12,Winter,2017-02-02T08:00Z +Keep,66,2017,February,6,9,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,38,0,0,Check-Out,2017-02-12,Winter,2017-02-09T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,37,2017,February,6,10,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient,58.4,0,1,Check-Out,2017-02-14,Winter,2017-02-10T08:00Z +Keep,1,2017,February,6,10,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,16,2017,February,6,8,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-12,Winter,2017-02-08T08:00Z +Keep,11,2017,February,6,10,0,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,3,2017,February,6,10,0,2,2,0,0,Undefined,BRA,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient-Party,122,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,23,2017,February,6,8,0,4,2,0,0,HB,ITA,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,76,0,0,Check-Out,2017-02-12,Winter,2017-02-08T08:00Z +Keep,3,2017,February,6,10,0,2,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient-Party,163,1,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,80,2017,February,5,2,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,62.12,0,0,Check-Out,2017-02-12,Winter,2017-02-02T08:00Z +Keep,19,2017,February,6,9,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,42,0,0,Check-Out,2017-02-12,Winter,2017-02-09T08:00Z +Keep,0,2017,February,7,17,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,60,0,1,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,11,2017,February,6,11,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,9,2017,February,6,8,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-12,Winter,2017-02-08T08:00Z +Keep,2,2017,February,6,11,0,1,2,0,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,8,2017,February,6,11,0,1,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,141,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,112,2017,February,6,5,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,54.02,1,1,Check-Out,2017-02-12,Winter,2017-02-05T08:00Z +Keep,5,2017,February,6,10,0,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,80,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,4,2017,February,6,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,24,2017,February,6,11,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 171, NULL,0,Transient,50,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,75,1,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,37,2017,February,6,10,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,110,0,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,9,2017,February,6,7,0,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 467, NULL,0,Transient,44.56,0,0,Check-Out,2017-02-12,Winter,2017-02-07T08:00Z +Keep,23,2017,February,6,9,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-12,Winter,2017-02-09T08:00Z +Keep,18,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,32,2017,February,6,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,33,2017,February,6,8,0,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,54,0,1,Check-Out,2017-02-12,Winter,2017-02-08T08:00Z +Keep,1,2017,February,6,10,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,6,2017,February,6,11,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,15,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,19,2017,February,6,9,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,50,0,1,Check-Out,2017-02-12,Winter,2017-02-09T08:00Z +Keep,19,2017,February,6,9,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,50,0,0,Check-Out,2017-02-12,Winter,2017-02-09T08:00Z +Keep,4,2017,February,6,11,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,63,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,11,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,1,2017,February,6,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,1,2017,February,6,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,1,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,14,2017,February,6,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,3,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,2,2017,February,6,10,0,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.11,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,2,2017,February,7,12,1,0,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.11,0,1,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,2,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,2,2017,February,6,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,2,2017,February,6,10,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,60,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,2,2017,February,6,10,0,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,60,0,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,14,2017,February,6,10,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,3,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,14,2017,February,6,10,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,5,2017,February,6,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,73,0,0,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,2,2017,February,6,11,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80,1,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,23,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,103,0,3,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,23,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,103,0,3,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,5,2017,February,6,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,3,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,5,2017,February,6,11,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,4,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,48,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,19,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,7,2017,February,6,10,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,66,0,2,Check-Out,2017-02-12,Winter,2017-02-10T08:00Z +Keep,38,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,74,0,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,2,2017,February,6,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , 250, NULL,0,Transient,78,0,2,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,1,2017,February,6,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-12,Winter,2017-02-11T08:00Z +Keep,65,2017,February,7,12,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,0,0,0,Check-Out,2017-02-12,Winter,2017-02-12T08:00Z +Keep,26,2017,February,7,13,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,70,0,2,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,17,2017,February,6,10,1,2,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,69.3,0,1,Check-Out,2017-02-13,Winter,2017-02-10T08:00Z +Keep,31,2017,February,6,10,1,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,1,Check-Out,2017-02-13,Winter,2017-02-10T08:00Z +Keep,4,2017,February,6,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,34.56,0,0,Check-Out,2017-02-13,Winter,2017-02-10T08:00Z +Keep,1,2017,February,6,11,1,1,2,1,0,SC,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 314, NULL,0,Transient,0,1,0,Check-Out,2017-02-13,Winter,2017-02-11T08:00Z +Keep,0,2017,February,6,8,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-13,Winter,2017-02-08T08:00Z +Keep,109,2017,February,5,4,3,6,2,1,0,SC,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,1,No Deposit , 177, NULL,0,Transient,0,0,0,Check-Out,2017-02-13,Winter,2017-02-04T08:00Z +Keep,10,2017,February,7,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,32,2017,February,6,8,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-02-13,Winter,2017-02-08T08:00Z +Keep,13,2017,February,6,9,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,72,1,0,Check-Out,2017-02-13,Winter,2017-02-09T08:00Z +Keep,47,2017,February,6,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-13,Winter,2017-02-06T08:00Z +Keep,47,2017,February,6,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-02-13,Winter,2017-02-06T08:00Z +Keep,5,2017,February,6,9,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,63.72,0,4,Check-Out,2017-02-13,Winter,2017-02-09T08:00Z +Keep,5,2017,February,7,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,16,2017,February,6,9,1,3,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,42.5,0,0,Check-Out,2017-02-13,Winter,2017-02-09T08:00Z +Keep,11,2017,February,6,10,1,2,2,0,0,HB,POL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,1,Check-Out,2017-02-13,Winter,2017-02-10T08:00Z +Keep,122,2017,February,6,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.81,0,1,Check-Out,2017-02-13,Winter,2017-02-10T08:00Z +Keep,32,2017,February,6,8,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-02-13,Winter,2017-02-08T08:00Z +Keep,22,2017,February,7,12,1,0,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,73.06,0,1,Check-Out,2017-02-13,Winter,2017-02-12T08:00Z +Keep,0,2017,February,7,13,0,0,2,0,0,SC,PRT,Direct,Direct, 1,0,0,A,I,1,No Deposit , 250, NULL,0,Transient,0,1,0,Check-Out,2017-02-13,Winter,2017-02-13T08:00Z +Keep,63,2017,February,6,5,4,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.88,0,1,Check-Out,2017-02-14,Winter,2017-02-05T08:00Z +Keep,1,2017,February,7,13,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,63,2017,February,7,12,2,0,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,2,Check-Out,2017-02-14,Winter,2017-02-12T08:00Z +Keep,18,2017,February,7,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,1,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,18,2017,February,7,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,1,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,16,2017,February,6,11,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,72,1,0,Check-Out,2017-02-14,Winter,2017-02-11T08:00Z +Keep,24,2017,February,7,12,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.04,0,1,Check-Out,2017-02-14,Winter,2017-02-12T08:00Z +Keep,9,2017,February,6,11,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,33.84,0,0,Check-Out,2017-02-14,Winter,2017-02-11T08:00Z +Keep,0,2017,February,7,13,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,5,2017,February,6,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-14,Winter,2017-02-11T08:00Z +Keep,133,2017,February,7,13,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,1,2,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,15,2017,February,6,8,2,4,1,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-02-14,Winter,2017-02-08T08:00Z +Keep,15,2017,February,6,11,2,1,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,65,1,2,Check-Out,2017-02-14,Winter,2017-02-11T08:00Z +Keep,8,2017,February,7,13,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-14,Winter,2017-02-13T08:00Z +Keep,0,2017,February,7,14,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,0,0,1,Check-Out,2017-02-14,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,0,A,I,0,No Deposit , 6, NULL,0,Transient,0,0,1,Check-Out,2017-02-14,Winter,2017-02-14T08:00Z +Keep,5,2017,February,6,11,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-14,Winter,2017-02-11T08:00Z +Keep,1,2017,February,7,12,2,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-14,Winter,2017-02-12T08:00Z +Keep,8,2017,February,5,4,4,7,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,34,0,0,Check-Out,2017-02-15,Winter,2017-02-04T08:00Z +Keep,93,2017,February,5,4,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,46,0,1,Check-Out,2017-02-15,Winter,2017-02-04T08:00Z +Keep,1,2017,February,7,14,0,1,1,0,0,BB,CAF,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,55,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,21,2017,February,6,11,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 467, NULL,0,Transient,45.36,0,0,Check-Out,2017-02-15,Winter,2017-02-11T08:00Z +Keep,0,2017,February,7,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,4,2017,March,10,6,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,Direct, 1,0,1,A,A,0,No Deposit , 8, NULL,0,Transient,30,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,10,2017,February,6,10,2,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,69.96,0,1,Check-Out,2017-02-15,Winter,2017-02-10T08:00Z +Keep,19,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,4,2017,February,7,13,1,1,1,0,0,BB,Unknown,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,38.5,1,0,Check-Out,2017-02-15,Winter,2017-02-13T08:00Z +Keep,5,2017,February,7,13,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2017-02-15,Winter,2017-02-13T08:00Z +Keep,1,2017,February,7,15,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,105,1,1,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,121,2017,February,6,5,4,6,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,60.98,1,1,Check-Out,2017-02-15,Winter,2017-02-05T08:00Z +Keep,20,2017,February,7,13,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,61,1,1,Check-Out,2017-02-15,Winter,2017-02-13T08:00Z +Keep,98,2017,February,6,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53.8,1,2,Check-Out,2017-02-15,Winter,2017-02-10T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,60,1,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,1,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,78,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,43,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,17,2017,February,7,18,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,H,H,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,16,2017,February,6,11,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2017-02-15,Winter,2017-02-11T08:00Z +Keep,25,2017,February,7,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,9,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,26,2017,February,6,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,49.99,1,1,Check-Out,2017-02-15,Winter,2017-02-11T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,17,0,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,0,No Deposit , NULL, NULL,0,Transient,8,0,0,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,2,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,8,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,14,2017,February,7,14,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,128,0,3,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,1,2017,February,7,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,30,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,6,2017,February,7,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,78,0,3,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,7,2017,February,7,14,0,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,128,0,2,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,129,2017,February,7,14,0,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,87,0,0,Check-Out,2017-02-15,Winter,2017-02-14T08:00Z +Keep,38,2017,February,7,14,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,79.31,0,1,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,19,2017,February,6,9,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 171, NULL,0,Transient,43.71,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,44,2017,February,6,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.12,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,158,2017,February,7,13,1,2,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient-Party,130,0,0,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,18,2017,February,7,13,1,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 95, NULL,0,Transient,60,0,0,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,33,2017,February,7,12,2,2,2,2,0,BB,GBR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,59,0,0,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,6,2017,February,7,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,10,2017,February,7,13,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Transient,35,0,0,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,7,2017,March,12,20,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,D,0,No Deposit , 146, NULL,0,Group,35,0,0,Check-Out,2017-03-23,Spring,2017-03-20T07:00Z +Keep,11,2017,May,18,2,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,2,A,A,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,19,2017,February,7,14,0,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,60,0,0,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 269,0,Transient,35,1,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,February,7,14,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,54.4,0,0,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,30,2017,February,6,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 40, NULL,0,Contract,64.12,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,110,2017,February,6,9,2,5,2,0,0,Undefined,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,1,2017,February,7,12,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,57,0,1,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,35,2017,February,6,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,81.76,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,9,2017,February,7,15,0,1,2,0,0,BB,CAF,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,6,2017,February,6,9,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,8,2017,February,7,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,0,2017,February,7,14,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,52.35,0,1,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,5,2017,February,7,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 168, NULL,0,Transient-Party,30,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,17,2017,February,7,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,165,0,3,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,27,2017,February,7,14,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2017-02-16,Winter,2017-02-14T08:00Z +Keep,6,2017,February,6,9,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-02-16,Winter,2017-02-09T08:00Z +Keep,158,2017,February,7,13,1,2,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient-Party,106,0,0,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,1,2017,February,7,12,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,57,0,1,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,5,2017,February,7,15,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 168, NULL,0,Transient-Party,30,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,75,2017,February,7,12,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,66.5,0,2,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,53,2017,February,7,13,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-16,Winter,2017-02-13T08:00Z +Keep,75,2017,February,7,12,2,2,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,91.5,0,2,Check-Out,2017-02-16,Winter,2017-02-12T08:00Z +Keep,2,2017,February,7,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-16,Winter,2017-02-15T08:00Z +Keep,2,2017,February,7,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,3,2017,February,7,12,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 57, NULL,0,Transient,42,0,0,Check-Out,2017-02-17,Winter,2017-02-12T08:00Z +Keep,1,2017,February,7,16,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,0,2017,February,7,16,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,1,2,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,9,2017,February,7,15,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-17,Winter,2017-02-15T08:00Z +Keep,10,2017,February,6,9,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,34,0,0,Check-Out,2017-02-17,Winter,2017-02-09T08:00Z +Keep,3,2017,February,7,13,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,10,2017,February,8,20,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,17,2017,February,9,27,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,2,A,A,1,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-03-04,Winter,2017-02-27T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,29,2017,February,7,14,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-17,Winter,2017-02-14T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,31,2017,February,7,14,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-02-17,Winter,2017-02-14T08:00Z +Keep,31,2017,February,7,14,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-02-17,Winter,2017-02-14T08:00Z +Keep,0,2017,February,7,16,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,1,2017,February,7,17,0,2,2,0,0,BB,USA,Online travel agent,Direct, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,5,2017,February,7,12,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,97.6,0,1,Check-Out,2017-02-17,Winter,2017-02-12T08:00Z +Keep,6,2017,February,7,16,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,1,1,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,2,2017,February,7,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,44,2017,February,7,15,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,1,0,Check-Out,2017-02-17,Winter,2017-02-15T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,136,2017,February,6,11,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,39.44,0,0,Check-Out,2017-02-17,Winter,2017-02-11T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,3,2017,February,7,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,3,2017,February,7,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,43,1,0,Check-Out,2017-02-17,Winter,2017-02-16T08:00Z +Keep,207,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 152, NULL,113,Transient-Party,31,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,70,2017,February,7,12,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.91,0,1,Check-Out,2017-02-17,Winter,2017-02-12T08:00Z +Keep,207,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 152, NULL,113,Transient-Party,56,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,207,2017,February,7,13,1,3,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 152, NULL,113,Transient-Party,78,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,207,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 152, NULL,113,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,214,2017,February,7,13,1,3,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,66.6,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 152, NULL,0,Transient-Party,70,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,13,2017,February,7,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,1,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,204,2017,February,7,13,1,3,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,3,No Deposit , 240, NULL,0,Transient,53.85,0,2,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,JAM,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Complementary,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,0,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,183,2017,February,7,14,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,55.44,0,0,Check-Out,2017-02-17,Winter,2017-02-14T08:00Z +Keep,32,2017,February,7,13,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,41.87,0,1,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,3,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,207,2017,February,7,13,1,3,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,113,Transient-Party,44,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,94,2017,February,7,13,1,3,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 152, NULL,0,Transient,62,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,22,2017,February,7,13,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,46.4,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,22,2017,February,7,13,1,3,1,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,50.4,0,0,Check-Out,2017-02-17,Winter,2017-02-13T08:00Z +Keep,245,2017,February,7,12,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,0,Check-Out,2017-02-17,Winter,2017-02-12T08:00Z +Keep,245,2017,February,7,12,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,55.8,0,0,Check-Out,2017-02-17,Winter,2017-02-12T08:00Z +Keep,29,2017,February,7,15,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-18,Winter,2017-02-15T08:00Z +Keep,19,2017,February,6,11,2,5,1,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,46.4,0,1,Check-Out,2017-02-18,Winter,2017-02-11T08:00Z +Keep,19,2017,February,6,11,2,5,2,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,63,0,1,Check-Out,2017-02-18,Winter,2017-02-11T08:00Z +Keep,12,2017,February,7,16,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-18,Winter,2017-02-16T08:00Z +Keep,353,2017,February,6,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,32.4,0,1,Check-Out,2017-02-18,Winter,2017-02-11T08:00Z +Keep,63,2017,February,5,4,4,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,39.84,0,1,Check-Out,2017-02-18,Winter,2017-02-04T08:00Z +Keep,84,2017,February,7,17,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,41.6,0,0,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,69,2017,February,7,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-02-18,Winter,2017-02-16T08:00Z +Keep,3,2017,February,7,13,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2017-02-18,Winter,2017-02-13T08:00Z +Keep,18,2017,February,6,11,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,C,0,No Deposit , 171, NULL,0,Transient,62.5,0,2,Check-Out,2017-02-18,Winter,2017-02-11T08:00Z +Keep,82,2017,February,7,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,43.5,0,2,Check-Out,2017-02-18,Winter,2017-02-14T08:00Z +Keep,27,2017,February,7,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,95,0,2,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,89,2017,February,7,15,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,77.9,0,1,Check-Out,2017-02-18,Winter,2017-02-15T08:00Z +Keep,0,2017,February,7,17,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient-Party,110,0,1,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,0,2017,February,7,17,0,1,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,67,1,1,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,19,2017,February,7,14,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,1,Check-Out,2017-02-18,Winter,2017-02-14T08:00Z +Keep,1,2017,February,7,14,0,4,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,42,0,0,Check-Out,2017-02-18,Winter,2017-02-14T08:00Z +Keep,19,2017,February,7,14,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,1,Check-Out,2017-02-18,Winter,2017-02-14T08:00Z +Keep,192,2017,January,2,14,10,25,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,34,0,0,Check-Out,2017-02-18,Winter,2017-01-14T08:00Z +Keep,10,2017,February,7,15,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 467, NULL,0,Transient,84.24,0,0,Check-Out,2017-02-18,Winter,2017-02-15T08:00Z +Keep,11,2017,February,7,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,1,2,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,30,2017,February,7,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,89,2017,February,7,15,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,84.9,1,1,Check-Out,2017-02-18,Winter,2017-02-15T08:00Z +Keep,5,2017,February,7,13,1,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 315, NULL,0,Transient,34,0,0,Check-Out,2017-02-18,Winter,2017-02-13T08:00Z +Keep,17,2017,February,7,17,0,1,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,149,0,3,Check-Out,2017-02-18,Winter,2017-02-17T08:00Z +Keep,34,2017,February,7,18,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,138,2017,February,7,13,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,38.93,0,0,Check-Out,2017-02-19,Winter,2017-02-13T08:00Z +Keep,88,2017,March,10,11,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,1,A,C,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,1,2017,March,11,18,0,1,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,D,2,No Deposit , NULL, NULL,0,Group,35,0,0,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,96,2017,March,12,19,2,5,1,0,0,BB,PRT,Groups,TA/TO, 0,0,2,A,D,0,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,38,2017,February,7,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-19,Winter,2017-02-12T08:00Z +Keep,83,2017,February,7,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,45.6,0,0,Check-Out,2017-02-19,Winter,2017-02-16T08:00Z +Keep,0,2017,February,7,18,0,1,2,0,0,BB,UZB,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2017,February,7,16,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,45.2,0,0,Check-Out,2017-02-19,Winter,2017-02-16T08:00Z +Keep,11,2017,February,7,18,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,0,2017,February,7,18,0,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,6,2017,February,7,13,1,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2017-02-19,Winter,2017-02-13T08:00Z +Keep,26,2017,February,7,12,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,102,0,0,Check-Out,2017-02-19,Winter,2017-02-12T08:00Z +Keep,16,2017,February,7,18,0,1,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,46.75,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,24,2017,February,7,17,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,24,2017,February,7,17,0,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,35,2017,February,7,17,0,2,3,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,84,2017,February,7,14,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,73.2,0,1,Check-Out,2017-02-19,Winter,2017-02-14T08:00Z +Keep,3,2017,February,7,18,0,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,42,1,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,23,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,24,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,70,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,1,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,10,2017,February,7,17,0,2,3,1,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,161,0,2,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,10,2017,February,7,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2017,February,7,17,0,2,2,0,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,47.2,0,0,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,24,2017,February,7,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,1,2017,February,7,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-19,Winter,2017-02-16T08:00Z +Keep,1,2017,February,7,16,0,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,57,1,0,Check-Out,2017-02-19,Winter,2017-02-16T08:00Z +Keep,47,2017,February,7,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.38,0,0,Check-Out,2017-02-19,Winter,2017-02-12T08:00Z +Keep,26,2017,February,7,17,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,6,2017,February,7,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,1,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,7,2017,March,10,8,0,1,1,0,0,BB,PRT,Online travel agent,Direct, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55,0,2,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,36,2017,February,6,8,2,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,44.43,0,1,Check-Out,2017-02-19,Winter,2017-02-08T08:00Z +Keep,23,2017,February,7,18,0,1,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,22,2017,February,7,18,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,83,2017,February,7,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient-Party,43.6,0,0,Check-Out,2017-02-19,Winter,2017-02-16T08:00Z +Keep,1,2017,February,7,18,0,1,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,52.5,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,5,2017,February,7,18,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,1,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,87,1,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,5,2017,February,7,18,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,92,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,5,2017,February,7,18,0,1,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,71,0,2,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,11,2017,February,7,18,0,1,3,1,0,BB,PRT,Direct,Direct, 0,0,0,G,E,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,0,2017,February,7,18,0,1,3,1,0,BB,PRT,Direct,Direct, 0,0,0,G,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,0,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,78,0,1,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,24,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,70,1,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,2,2017,February,7,17,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,1,2,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,7,2017,February,7,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,0,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,8,2017,February,7,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,138,0,3,Check-Out,2017-02-19,Winter,2017-02-18T08:00Z +Keep,30,2017,February,7,17,0,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-02-19,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,1,2,1,0,0,BB,DNK,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,36,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,20,2017,February,6,6,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,36,0,1,Check-Out,2017-02-20,Winter,2017-02-06T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,44.67,1,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,44.67,1,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,15,2017,February,7,16,1,3,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-16T08:00Z +Keep,74,2017,February,7,18,1,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,0,2017,February,7,18,1,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,71,2017,February,7,15,1,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-15T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,29,2017,February,7,16,1,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,47.5,1,0,Check-Out,2017-02-20,Winter,2017-02-16T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,24,2017,February,8,19,1,0,2,0,0,BB,USA,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,15,2017,February,7,17,1,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,85,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,15,2017,February,7,17,1,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,92,1,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,24,2017,February,8,19,1,0,2,0,0,BB,DEU,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,19,1,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,12,2017,February,8,19,1,0,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,1,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,17,2017,February,7,18,1,1,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,55,1,0,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,16,2017,February,7,17,1,2,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40.67,1,1,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,36,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,1,0,0,BB,DNK,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,36,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,1,2,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,36,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,0,2017,February,7,17,1,2,2,0,0,BB,DNK,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,56,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,19,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,80,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,0,2017,February,8,19,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,80,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,0,2017,February,8,19,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,80,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,18,2017,February,8,19,1,0,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,10,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,47,1,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,0,2017,February,7,17,1,2,2,0,0,BB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,31,2017,February,8,19,1,0,2,0,2,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient-Party,50,1,2,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,23,2017,February,7,18,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,42.43,0,1,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,61,2017,February,7,17,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,33.11,0,1,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,106,2017,February,7,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,63.14,0,1,Check-Out,2017-02-20,Winter,2017-02-16T08:00Z +Keep,22,2017,February,7,18,1,1,2,0,1,BB,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,7,1,1,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,22,2017,February,7,17,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,70,0,1,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,31,2017,February,8,19,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,8,2017,February,7,17,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,67,1,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,73,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,3,2017,February,7,18,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,61.2,0,0,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,3,2017,February,7,18,1,1,1,0,0,BB,DNK,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,87,1,1,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,29,2017,February,7,18,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,2,No Deposit , 467, NULL,0,Transient,61.56,1,0,Check-Out,2017-02-20,Winter,2017-02-18T08:00Z +Keep,16,2017,February,7,17,1,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-20,Winter,2017-02-17T08:00Z +Keep,4,2017,February,8,19,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,87,1,1,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,24,2017,February,8,19,1,0,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,3,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-20,Winter,2017-02-19T08:00Z +Keep,24,2017,February,7,17,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 95, NULL,0,Transient,60,0,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,30,2017,February,7,16,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,40.5,0,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,16,2017,February,7,17,2,2,3,0,0,BB,DNK,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 498,0,Transient-Party,53.25,1,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,30,2017,February,7,16,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,30,2017,February,7,16,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,40.5,0,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,34,2017,February,7,17,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,20,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,43,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,0,2017,February,8,20,1,0,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,2,2017,February,8,20,1,0,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,0,2017,June,23,6,0,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,E,0,No Deposit , NULL, 195,0,Transient,75,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,18,2017,February,8,20,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,18,2017,February,8,20,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,37,1,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,0,2017,February,8,20,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,4,2017,February,8,20,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,38.7,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,3,2017,February,8,20,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,2,2017,February,8,20,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,21,2017,February,8,20,1,0,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient,74,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,15,2017,February,7,14,2,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69.71,0,2,Check-Out,2017-02-21,Winter,2017-02-14T08:00Z +Keep,35,2017,February,7,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,35.71,0,0,Check-Out,2017-02-21,Winter,2017-02-14T08:00Z +Keep,2,2017,February,8,20,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,43,0,1,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,73,2017,February,7,17,2,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,32,2017,February,6,11,4,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,1,2,Check-Out,2017-02-21,Winter,2017-02-11T08:00Z +Keep,145,2017,February,7,16,2,3,3,1,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,88.56,1,1,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,65,2017,February,7,16,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,16,2017,February,7,17,2,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,55,1,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,16,2017,February,7,17,2,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 498,0,Transient-Party,40,0,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,22,2017,February,7,17,2,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,26,2017,February,7,16,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 467, NULL,0,Transient,59.56,1,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,15,2017,February,8,19,2,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 467, NULL,0,Transient,35.28,0,0,Check-Out,2017-02-21,Winter,2017-02-19T08:00Z +Keep,73,2017,February,7,17,2,2,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 498,0,Transient-Party,48,0,0,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,20,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,82,2017,February,7,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,62.86,0,1,Check-Out,2017-02-21,Winter,2017-02-14T08:00Z +Keep,31,2017,February,7,16,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,78,0,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,31,2017,February,7,16,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,88,0,0,Check-Out,2017-02-21,Winter,2017-02-16T08:00Z +Keep,1,2017,February,7,18,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,56,0,1,Check-Out,2017-02-21,Winter,2017-02-18T08:00Z +Keep,13,2017,February,7,17,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,102,1,1,Check-Out,2017-02-21,Winter,2017-02-17T08:00Z +Keep,2,2017,February,7,12,4,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,102.13,0,0,Check-Out,2017-02-21,Winter,2017-02-12T08:00Z +Keep,5,2017,February,8,20,1,0,1,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,0,No Deposit , NULL, 515,0,Transient,0,0,0,Check-Out,2017-02-21,Winter,2017-02-20T08:00Z +Keep,0,2017,March,12,20,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,C,0,No Deposit , NULL, 515,0,Transient,60,0,0,Check-Out,2017-03-24,Spring,2017-03-20T07:00Z +Keep,0,2017,March,13,27,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,2,No Deposit , NULL, 515,0,Transient,60,0,1,Check-Out,2017-03-28,Spring,2017-03-27T07:00Z +Keep,4,2017,April,16,17,1,3,1,0,0,BB,PRT,Corporate,Corporate, 1,0,3,A,C,0,No Deposit , NULL, 515,0,Transient,45,0,1,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,0,2017,April,17,25,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,4,A,A,0,No Deposit , NULL, 515,0,Transient,60,0,1,Check-Out,2017-04-26,Spring,2017-04-25T07:00Z +Keep,16,2017,February,8,19,2,1,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,54.75,0,0,Check-Out,2017-02-22,Winter,2017-02-19T08:00Z +Keep,15,2017,February,7,17,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,39.74,0,0,Check-Out,2017-02-22,Winter,2017-02-17T08:00Z +Keep,6,2017,February,8,20,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 467, NULL,0,Transient,40.32,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,19,2017,February,7,15,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,82.15,1,2,Check-Out,2017-02-22,Winter,2017-02-15T08:00Z +Keep,0,2017,February,8,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,21,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,41,2017,February,7,18,2,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,43,0,0,Check-Out,2017-02-22,Winter,2017-02-18T08:00Z +Keep,41,2017,February,7,18,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-22,Winter,2017-02-18T08:00Z +Keep,150,2017,February,7,17,2,3,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,58.4,1,0,Check-Out,2017-02-22,Winter,2017-02-17T08:00Z +Keep,150,2017,February,7,17,2,3,2,0,1,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,0,Check-Out,2017-02-22,Winter,2017-02-17T08:00Z +Keep,6,2017,February,8,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 353,0,Transient-Party,35,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,5,2017,April,15,12,0,1,1,0,0,BB,PRT,Online travel agent,Corporate, 1,0,1,A,A,0,No Deposit , 468, NULL,0,Transient-Party,67.24,0,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,21,2017,February,7,18,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.25,1,0,Check-Out,2017-02-22,Winter,2017-02-18T08:00Z +Keep,12,2017,February,7,17,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,63.2,0,0,Check-Out,2017-02-22,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 428,0,Transient,35,0,0,Check-Out,2017-02-22,Winter,2017-02-21T08:00Z +Keep,66,2017,February,7,18,2,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,136,0,0,Check-Out,2017-02-22,Winter,2017-02-18T08:00Z +Keep,5,2017,February,8,20,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,64.7,1,2,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,0,2017,February,8,20,1,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2017-02-22,Winter,2017-02-20T08:00Z +Keep,36,2017,February,7,16,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,39.6,0,0,Check-Out,2017-02-23,Winter,2017-02-16T08:00Z +Keep,11,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,143,2017,February,6,9,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,2,Check-Out,2017-02-23,Winter,2017-02-09T08:00Z +Keep,37,2017,February,7,16,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,35.5,1,1,Check-Out,2017-02-23,Winter,2017-02-16T08:00Z +Keep,37,2017,February,7,16,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,28.5,0,1,Check-Out,2017-02-23,Winter,2017-02-16T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,1,2017,February,8,21,0,2,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,43,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,117,2017,February,7,16,2,5,2,2,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 464, NULL,0,Transient,100.71,0,0,Check-Out,2017-02-23,Winter,2017-02-16T08:00Z +Keep,5,2017,February,8,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,1,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,5,2017,February,8,22,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,30,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,68,1,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,134,2017,February,8,20,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,1,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,23,2017,February,8,21,0,2,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,43,0,2,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,11,2017,February,8,20,1,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 94,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,0,2017,February,8,21,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 388,0,Transient,35,0,0,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,1,2017,February,8,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,61.2,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,1,2017,February,8,22,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,61.2,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,26,2017,February,7,18,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,35.72,0,0,Check-Out,2017-02-23,Winter,2017-02-18T08:00Z +Keep,9,2017,February,8,20,1,2,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,50,1,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,20,2017,February,8,20,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,34.56,0,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,44,2017,February,8,19,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,72.38,0,0,Check-Out,2017-02-23,Winter,2017-02-19T08:00Z +Keep,3,2017,February,8,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-02-23,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80,1,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,22,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,115,2017,February,7,16,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,77.85,0,0,Check-Out,2017-02-23,Winter,2017-02-16T08:00Z +Keep,4,2017,February,8,22,0,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,68,0,0,Check-Out,2017-02-23,Winter,2017-02-22T08:00Z +Keep,24,2017,February,8,20,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,38.4,0,0,Check-Out,2017-02-23,Winter,2017-02-20T08:00Z +Keep,33,2017,February,8,20,1,3,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,43.2,0,0,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,149,2017,February,5,2,6,16,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,73.8,0,1,Check-Out,2017-02-24,Winter,2017-02-02T08:00Z +Keep,69,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,79,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,69,2017,February,8,19,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,69,2017,February,8,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,37,0,1,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,69,2017,February,8,19,2,3,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,28,2017,February,8,19,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,1,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,18,2017,February,7,18,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,34,0,0,Check-Out,2017-02-24,Winter,2017-02-18T08:00Z +Keep,182,2017,February,8,20,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,0,2017,February,8,22,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-02-24,Winter,2017-02-22T08:00Z +Keep,6,2017,February,8,22,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 459,0,Transient,57,1,0,Check-Out,2017-02-24,Winter,2017-02-22T08:00Z +Keep,5,2017,May,18,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 459,0,Transient,45,1,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,1,2017,February,8,23,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2017-02-24,Winter,2017-02-23T08:00Z +Keep,178,2017,February,6,10,4,10,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,45,0,0,Check-Out,2017-02-24,Winter,2017-02-10T08:00Z +Keep,17,2017,February,6,10,4,10,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,30,0,0,Check-Out,2017-02-24,Winter,2017-02-10T08:00Z +Keep,225,2017,February,8,19,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,0,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,19,2017,February,8,22,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,35,0,0,Check-Out,2017-02-24,Winter,2017-02-22T08:00Z +Keep,8,2017,February,8,21,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient,59.6,0,0,Check-Out,2017-02-24,Winter,2017-02-21T08:00Z +Keep,6,2017,February,8,21,0,3,1,0,0,BB,IRL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 22,0,Transient,35,0,0,Check-Out,2017-02-24,Winter,2017-02-21T08:00Z +Keep,48,2017,February,7,17,2,5,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2017-02-24,Winter,2017-02-17T08:00Z +Keep,36,2017,February,7,18,2,4,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,57.06,0,1,Check-Out,2017-02-24,Winter,2017-02-18T08:00Z +Keep,64,2017,February,7,17,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,47.25,0,1,Check-Out,2017-02-24,Winter,2017-02-17T08:00Z +Keep,0,2017,February,8,21,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-24,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,21,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-02-24,Winter,2017-02-21T08:00Z +Keep,1,2017,August,35,31,0,1,2,0,0,BB,PRT,Complementary,Direct, 1,0,1,A,A,0,No Deposit , 531, NULL,0,Transient,0,0,1,Check-Out,2017-09-01,Summer,2017-08-31T07:00Z +Keep,100,2017,February,8,20,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,37.8,0,1,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,41,2017,February,8,19,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,38.4,0,1,Check-Out,2017-02-24,Winter,2017-02-19T08:00Z +Keep,0,2017,February,8,20,1,3,1,0,0,BB,CHE,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,59,0,0,Check-Out,2017-02-24,Winter,2017-02-20T08:00Z +Keep,0,2017,February,7,17,2,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,40,0,0,Check-Out,2017-02-24,Winter,2017-02-17T08:00Z +Keep,60,2017,February,8,21,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-25,Winter,2017-02-21T08:00Z +Keep,60,2017,February,8,21,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,48,0,0,Check-Out,2017-02-25,Winter,2017-02-21T08:00Z +Keep,7,2017,February,8,20,1,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,42.24,0,1,Check-Out,2017-02-25,Winter,2017-02-20T08:00Z +Keep,183,2017,February,7,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,183,2017,February,7,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,37.8,0,2,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,116,2017,February,7,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,272,2017,February,7,18,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,72.07,0,2,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,2,2017,February,8,23,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 68, NULL,0,Transient-Party,0,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,6,2017,February,8,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,68.2,1,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,20,2017,February,8,20,1,4,2,0,0,HB,ROU,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,89.8,0,1,Check-Out,2017-02-25,Winter,2017-02-20T08:00Z +Keep,20,2017,February,8,20,1,4,2,2,0,HB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,137.8,0,0,Check-Out,2017-02-25,Winter,2017-02-20T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,2,2017,February,8,23,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 68, NULL,0,Transient-Party,82.5,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,6,2017,February,8,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,61.2,1,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,2,2017,February,8,23,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 68, NULL,0,Transient-Party,0,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,2,2017,February,8,23,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 68, NULL,0,Transient-Party,82.5,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,6,2017,February,8,24,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,61.2,0,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,60,0,1,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,9,2017,February,8,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,1,0,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,2,2017,February,8,23,0,2,3,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 68, NULL,0,Transient-Party,82.5,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,152,2017,February,7,18,2,5,2,2,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,28,2017,February,7,18,2,5,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,87,1,0,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,42,2017,February,7,18,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,55.1,0,1,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,17,2017,February,8,20,1,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,104.8,0,1,Check-Out,2017-02-25,Winter,2017-02-20T08:00Z +Keep,26,2017,February,8,24,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,2,2017,February,8,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,316,2017,February,8,21,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,30.6,0,0,Check-Out,2017-02-25,Winter,2017-02-21T08:00Z +Keep,22,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 68, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,40,2017,February,8,23,0,2,2,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 68, NULL,18,Transient-Party,60,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,6,2017,February,8,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,61.2,0,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,6,2017,February,8,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,68.2,1,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,2,2017,February,8,23,0,2,1,0,0,Undefined,ESP,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 68, NULL,0,Transient,46,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,22,2017,February,7,18,2,5,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,125,2017,February,5,4,6,15,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 242, NULL,0,Transient,48.8,0,1,Check-Out,2017-02-25,Winter,2017-02-04T08:00Z +Keep,2,2017,February,8,22,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,113,0,2,Check-Out,2017-02-25,Winter,2017-02-22T08:00Z +Keep,42,2017,February,8,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,4,2017,February,7,18,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,96.02,0,0,Check-Out,2017-02-25,Winter,2017-02-18T08:00Z +Keep,0,2017,February,8,24,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68,0,0,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,0,2017,February,8,23,0,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,52,0,0,Check-Out,2017-02-25,Winter,2017-02-23T08:00Z +Keep,11,2017,February,8,24,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,107,1,0,Check-Out,2017-02-25,Winter,2017-02-24T08:00Z +Keep,138,2017,February,5,4,6,15,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,82.8,0,0,Check-Out,2017-02-25,Winter,2017-02-04T08:00Z +Keep,37,2017,February,8,23,0,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,64.37,0,0,Check-Out,2017-02-26,Winter,2017-02-23T08:00Z +Keep,139,2017,February,8,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,39.8,0,1,Check-Out,2017-02-26,Winter,2017-02-19T08:00Z +Keep,70,2017,February,8,22,0,4,3,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,3,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,21,2017,February,8,22,0,4,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,36,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,21,2017,February,8,22,0,4,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,36,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,29,2017,February,8,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,42.38,0,0,Check-Out,2017-02-26,Winter,2017-02-19T08:00Z +Keep,119,2017,February,7,16,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,66.72,0,0,Check-Out,2017-02-26,Winter,2017-02-16T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,24,2017,February,8,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,34,0,0,Check-Out,2017-02-26,Winter,2017-02-19T08:00Z +Keep,21,2017,February,8,22,0,4,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,36,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,29,2017,February,8,19,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,51.71,0,0,Check-Out,2017-02-26,Winter,2017-02-19T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,44,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,50,2017,February,8,24,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,54,0,0,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,110,2017,February,8,24,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,49,1,1,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,78,2017,February,8,22,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,38.04,0,1,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,49,1,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,37,2017,February,8,24,0,2,2,0,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,88.56,0,0,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,21,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,21,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,70,2017,February,8,22,0,4,3,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 405,0,Transient-Party,58,1,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,111,2017,February,8,19,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,52.4,0,0,Check-Out,2017-02-26,Winter,2017-02-19T08:00Z +Keep,20,2017,February,8,21,0,5,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-21T08:00Z +Keep,139,2017,February,7,12,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,99,0,0,Check-Out,2017-02-26,Winter,2017-02-12T08:00Z +Keep,25,2017,February,8,22,0,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,30,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,0,2017,February,8,25,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2017-02-26,Winter,2017-02-25T08:00Z +Keep,0,2017,February,8,25,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2017-02-26,Winter,2017-02-25T08:00Z +Keep,19,2017,February,8,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68,0,2,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,10,2017,February,8,24,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,70,2017,February,8,22,0,4,3,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,36,2017,February,7,16,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,83.76,0,0,Check-Out,2017-02-26,Winter,2017-02-16T08:00Z +Keep,3,2017,February,8,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-02-26,Winter,2017-02-25T08:00Z +Keep,70,2017,February,8,22,0,4,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,27,2017,February,8,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-26,Winter,2017-02-24T08:00Z +Keep,70,2017,February,8,22,0,4,3,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 405,0,Transient-Party,58,0,0,Check-Out,2017-02-26,Winter,2017-02-22T08:00Z +Keep,65,2017,February,7,16,2,8,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-02-26,Winter,2017-02-16T08:00Z +Keep,88,2017,February,8,20,2,5,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 405,20,Transient-Party,42,0,0,Check-Out,2017-02-27,Winter,2017-02-20T08:00Z +Keep,43,2017,February,8,23,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2017-02-27,Winter,2017-02-23T08:00Z +Keep,166,2017,February,6,6,6,15,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,32.6,0,1,Check-Out,2017-02-27,Winter,2017-02-06T08:00Z +Keep,25,2017,February,7,13,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,83.76,0,0,Check-Out,2017-02-27,Winter,2017-02-13T08:00Z +Keep,16,2017,February,8,20,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 467, NULL,0,Transient,82.02,1,0,Check-Out,2017-02-27,Winter,2017-02-20T08:00Z +Keep,29,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,2,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,77,2017,February,8,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,36,0,0,Check-Out,2017-02-27,Winter,2017-02-20T08:00Z +Keep,3,2017,February,9,26,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,39.6,1,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,17,2017,February,8,25,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,86,0,2,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,121,2017,February,8,20,2,5,2,1,1,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 464, NULL,0,Transient,70,0,1,Check-Out,2017-02-27,Winter,2017-02-20T08:00Z +Keep,18,2017,February,8,25,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,88,2017,February,8,25,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,16,2017,February,8,25,1,1,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,88,0,0,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,27,2017,February,8,24,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,104.5,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,32,2017,February,9,26,1,0,2,0,0,HB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,48,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,3,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,55,2017,February,8,23,1,3,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient-Party,75,1,2,Check-Out,2017-02-27,Winter,2017-02-23T08:00Z +Keep,55,2017,February,8,23,1,3,3,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,H,H,4,No Deposit , 240, NULL,0,Transient-Party,93,0,2,Check-Out,2017-02-27,Winter,2017-02-23T08:00Z +Keep,62,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,62,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,2,2017,February,9,26,1,0,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,96,0,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,3,2017,February,9,26,1,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,75,0,3,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,88,2017,February,8,25,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,88,2017,February,8,25,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,32,2017,February,8,23,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-02-27,Winter,2017-02-23T08:00Z +Keep,32,2017,February,8,25,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,69,1,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,3,2017,February,8,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,70,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,13,2017,February,8,25,1,1,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,C,3,No Deposit , 240, NULL,0,Transient,74,0,3,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,2,2017,February,9,26,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,19,2017,February,8,25,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,72.38,1,0,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,26,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,18,2017,February,8,23,1,3,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-02-27,Winter,2017-02-23T08:00Z +Keep,19,2017,February,9,26,1,0,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,87.85,0,1,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,0,2017,February,9,26,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,1,2017,February,9,26,1,0,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,16,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,49,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,2,2017,February,9,26,1,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,99,1,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,16,2017,February,8,25,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,47,2017,February,8,25,1,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,84,0,1,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,25,2017,February,8,24,1,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,25,2017,February,8,24,1,2,2,0,0,HB,ZWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,25,2017,February,8,24,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,25,2017,February,8,24,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,6,2017,February,8,21,1,5,1,0,0,BB,IRL,Corporate,Corporate, 0,0,0,A,I,1,No Deposit , NULL, 22,0,Transient,0,0,0,Check-Out,2017-02-27,Winter,2017-02-21T08:00Z +Keep,48,2017,February,8,25,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,3,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,25,2017,February,8,24,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,65.83,0,1,Check-Out,2017-02-27,Winter,2017-02-24T08:00Z +Keep,51,2017,February,8,25,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,44,0,0,Check-Out,2017-02-27,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,26,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,0,2017,February,9,26,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,60,0,0,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,3,2017,February,9,26,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,43.2,0,3,Check-Out,2017-02-27,Winter,2017-02-26T08:00Z +Keep,119,2017,February,8,25,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,119,2017,February,8,25,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,69,1,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,119,2017,February,8,25,2,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,64,2017,February,7,18,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,42,0,0,Check-Out,2017-02-28,Winter,2017-02-18T08:00Z +Keep,28,2017,February,8,21,2,5,1,2,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,95,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,47,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,88,2017,January,4,24,10,25,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,41.47,0,1,Check-Out,2017-02-28,Winter,2017-01-24T08:00Z +Keep,22,2017,February,8,25,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,64.44,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,22,2017,February,8,25,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,71.44,1,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,22,2017,February,8,25,2,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,75.16,1,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,10,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,29,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,14,2017,February,8,25,2,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,109,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,153,2017,February,8,21,2,5,2,0,1,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,24,2,2,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,0,2017,February,8,24,2,2,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,0,2017,February,8,24,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,38,0,0,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,18,2017,February,9,26,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,43.12,0,1,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,GBR,Direct,Direct, 1,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,70.5,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,1,2017,February,9,27,1,0,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,71,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,18,2017,February,9,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,56,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,4,2017,February,8,25,2,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,82.33,1,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,65,2017,February,8,21,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,40.31,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,7,2017,February,9,27,1,0,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,26,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,64.96,1,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,26,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,0,0,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,17,2017,February,8,24,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,55.8,0,1,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,26,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,57.96,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,36,2017,February,8,25,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,64,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,26,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,64.96,1,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,20,2017,February,8,21,2,5,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,42,0,0,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,1,2017,February,9,27,1,0,3,2,0,BB,ESP,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,11,2017,February,9,27,1,0,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 436, NULL,0,Transient,34,1,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,69,2017,February,8,21,2,5,2,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 405,0,Transient-Party,44,0,0,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,26,2017,February,8,24,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,65,1,2,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,6,2017,March,13,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,70,1,2,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,10,2017,February,8,25,2,1,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,104,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,7,2017,February,9,26,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,1,1,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,10,2017,February,8,25,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,78.67,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,8,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,13,2017,February,8,25,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,21,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,61.33,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,138,2017,February,8,24,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,87,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,12,2017,February,8,25,2,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,79,1,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,80,2017,February,8,23,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 26, NULL,0,Transient,36,0,0,Check-Out,2017-02-28,Winter,2017-02-23T08:00Z +Keep,1,2017,February,9,26,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,0,2,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,119,2017,February,8,21,2,5,3,1,0,HB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,46,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,58,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,3,2017,February,9,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,3,2017,February,9,27,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,119,2017,February,8,21,2,5,3,1,0,HB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2017-02-28,Winter,2017-02-21T08:00Z +Keep,0,2017,February,8,25,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,15,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,91,1,3,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,10,2017,February,8,25,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,78.67,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,109,2017,February,8,25,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,42,0,3,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,4,2017,February,9,27,1,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient,54,0,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,32,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,48,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,27,1,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,12,2017,February,8,25,2,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,97,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,9,2017,February,9,26,2,0,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,108,0,1,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,18,2017,February,9,26,2,0,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,63,0,2,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,50,2017,February,8,25,2,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,39.6,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,49,2017,February,9,26,2,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,67,0,0,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,8,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,91,2017,February,8,25,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,2,2017,February,9,27,1,0,2,1,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Group,42.5,0,0,Check-Out,2017-02-28,Winter,2017-02-27T08:00Z +Keep,32,2017,February,8,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,58,0,2,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,10,2017,February,8,25,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52,0,1,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,15,2017,February,9,26,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-02-28,Winter,2017-02-26T08:00Z +Keep,26,2017,February,8,24,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,58,0,0,Check-Out,2017-02-28,Winter,2017-02-24T08:00Z +Keep,26,2017,February,8,25,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,57.96,0,0,Check-Out,2017-02-28,Winter,2017-02-25T08:00Z +Keep,27,2017,February,8,22,2,5,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,76,0,0,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,81,2017,February,8,22,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,49,1,1,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,34,2017,February,8,22,2,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.11,0,1,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,7,2017,February,9,28,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,37,2017,February,9,26,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,11,2017,February,9,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,38,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,23,2017,February,9,28,0,1,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,43.96,1,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,27,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,49,0,0,Check-Out,2017-03-01,Winter,2017-02-27T08:00Z +Keep,0,2017,February,9,27,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2017-03-01,Winter,2017-02-27T08:00Z +Keep,61,2017,February,8,22,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,65,1,2,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,113,2017,February,8,22,2,5,2,0,0,BB,NLD,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,60.3,0,1,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,3,2017,February,9,28,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,1,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,48,2017,February,9,28,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,49.74,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,27,2017,February,9,28,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,63,1,2,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,67,2017,February,8,25,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,53.4,0,1,Check-Out,2017-03-01,Winter,2017-02-25T08:00Z +Keep,27,2017,February,9,28,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,32,2017,February,8,24,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,77,1,2,Check-Out,2017-03-01,Winter,2017-02-24T08:00Z +Keep,2,2017,February,9,26,2,1,2,0,0,BB,UKR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,58,0,0,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,1,2017,February,9,28,0,1,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,153,1,0,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,27,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,62,1,0,Check-Out,2017-03-01,Winter,2017-02-27T08:00Z +Keep,12,2017,June,26,26,1,0,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,I,2,No Deposit , NULL, NULL,0,Transient,149,1,0,Check-Out,2017-06-27,Summer,2017-06-26T07:00Z +Keep,13,2017,June,26,27,0,1,3,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,1,No Deposit , NULL, NULL,0,Transient,185,1,1,Check-Out,2017-06-28,Summer,2017-06-27T07:00Z +Keep,81,2017,February,8,22,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,42,0,1,Check-Out,2017-03-01,Winter,2017-02-22T08:00Z +Keep,37,2017,February,8,25,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,34,0,0,Check-Out,2017-03-01,Winter,2017-02-25T08:00Z +Keep,97,2017,February,8,25,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,33.6,0,0,Check-Out,2017-03-01,Winter,2017-02-25T08:00Z +Keep,14,2017,February,9,26,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,1,1,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,4,2017,February,9,26,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,78,0,1,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,0,2017,February,9,27,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-01,Winter,2017-02-27T08:00Z +Keep,1,2017,February,9,28,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-03-01,Winter,2017-02-28T08:00Z +Keep,93,2017,February,9,26,2,1,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,62,0,0,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,5,2017,February,9,26,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,40.8,0,0,Check-Out,2017-03-01,Winter,2017-02-26T08:00Z +Keep,0,2017,March,9,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,37,2017,February,8,23,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 57, NULL,0,Transient,34,0,1,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,50,2017,February,9,26,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,48.8,0,0,Check-Out,2017-03-02,Winter,2017-02-26T08:00Z +Keep,41,2017,February,8,25,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99,1,1,Check-Out,2017-03-02,Winter,2017-02-25T08:00Z +Keep,40,2017,February,8,25,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2017-03-02,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,27,1,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-02,Winter,2017-02-27T08:00Z +Keep,20,2017,February,8,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,2,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,6,2017,February,9,26,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient-Party,51.25,0,0,Check-Out,2017-03-02,Winter,2017-02-26T08:00Z +Keep,6,2017,February,9,26,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient-Party,51.25,1,0,Check-Out,2017-03-02,Winter,2017-02-26T08:00Z +Keep,6,2017,February,9,26,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,51.25,1,0,Check-Out,2017-03-02,Winter,2017-02-26T08:00Z +Keep,13,2017,February,8,21,2,7,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,44,0,0,Check-Out,2017-03-02,Winter,2017-02-21T08:00Z +Keep,0,2017,March,9,1,0,1,3,0,0,BB,BRA,Direct,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,20,2017,February,8,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,65.5,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,3,2017,April,15,11,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,34,2017,March,9,1,0,1,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,26,2017,February,8,23,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 40, NULL,0,Transient,42.5,0,3,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,33,2017,April,16,20,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 40, NULL,0,Contract,49.2,0,3,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,0,2017,March,9,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,43,0,1,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,53,2017,February,8,25,2,3,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,90.4,0,2,Check-Out,2017-03-02,Winter,2017-02-25T08:00Z +Keep,28,2017,February,7,16,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,81.76,0,0,Check-Out,2017-03-02,Winter,2017-02-16T08:00Z +Keep,4,2017,February,9,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45.5,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,4,2017,February,9,27,1,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,74,1,2,Check-Out,2017-03-02,Winter,2017-02-27T08:00Z +Keep,0,2017,March,9,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,1,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,48,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,3,2017,February,9,27,1,2,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,67,0,1,Check-Out,2017-03-02,Winter,2017-02-27T08:00Z +Keep,9,2017,February,8,23,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,74.86,0,2,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,53,2017,February,8,25,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,72.4,0,2,Check-Out,2017-03-02,Winter,2017-02-25T08:00Z +Keep,0,2017,February,9,28,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,38,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,28,2017,February,8,20,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,78,0,0,Check-Out,2017-03-02,Winter,2017-02-20T08:00Z +Keep,36,2017,February,8,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.12,0,0,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,0,2017,February,9,28,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,33,2017,February,8,25,2,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,36.32,0,0,Check-Out,2017-03-02,Winter,2017-02-25T08:00Z +Keep,7,2017,March,9,2,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,44,1,0,Check-Out,2017-03-07,Spring,2017-03-02T08:00Z +Keep,0,2017,February,9,28,0,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,38,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,1,2017,March,9,1,0,1,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,93,0,0,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,38,1,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,0,2017,February,9,28,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,56,0,0,Check-Out,2017-03-02,Winter,2017-02-28T08:00Z +Keep,40,2017,February,8,23,2,5,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,69.71,0,2,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,0,2017,March,9,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-02,Spring,2017-03-01T08:00Z +Keep,28,2017,February,8,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69.71,0,2,Check-Out,2017-03-02,Winter,2017-02-23T08:00Z +Keep,126,2017,February,9,27,1,2,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-03-02,Winter,2017-02-27T08:00Z +Keep,61,2017,February,8,25,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,0,2,Check-Out,2017-03-03,Winter,2017-02-25T08:00Z +Keep,0,2017,March,9,1,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,57,0,0,Check-Out,2017-03-03,Spring,2017-03-01T08:00Z +Keep,5,2017,February,9,26,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.2,0,2,Check-Out,2017-03-03,Winter,2017-02-26T08:00Z +Keep,1,2017,March,9,2,0,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,1,2017,March,9,2,0,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,68,1,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,101,2017,February,5,3,8,20,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,45.72,0,0,Check-Out,2017-03-03,Winter,2017-02-03T08:00Z +Keep,27,2017,February,9,27,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,45.35,0,2,Check-Out,2017-03-03,Winter,2017-02-27T08:00Z +Keep,0,2017,March,9,1,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-03-03,Spring,2017-03-01T08:00Z +Keep,0,2017,May,18,3,0,2,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,1,2017,March,9,2,0,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 331,0,Transient,54,0,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,9,2017,March,13,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,1,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,17,2017,June,25,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,A,0,No Deposit , NULL, 331,0,Transient,75,0,0,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,16,2017,March,9,2,0,1,2,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,100,1,2,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,1,2017,March,9,2,0,1,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,68,0,0,Check-Out,2017-03-03,Spring,2017-03-02T08:00Z +Keep,1,2017,February,9,28,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2017-03-03,Winter,2017-02-28T08:00Z +Keep,150,2017,February,9,28,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,49.4,0,1,Check-Out,2017-03-04,Winter,2017-02-28T08:00Z +Keep,98,2017,February,9,28,0,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,76.83,0,0,Check-Out,2017-03-04,Winter,2017-02-28T08:00Z +Keep,7,2017,March,9,2,0,2,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,54,1,0,Check-Out,2017-03-04,Spring,2017-03-02T08:00Z +Keep,91,2017,February,8,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,54.86,0,0,Check-Out,2017-03-04,Winter,2017-02-25T08:00Z +Keep,78,2017,February,9,27,1,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.8,0,1,Check-Out,2017-03-04,Winter,2017-02-27T08:00Z +Keep,69,2017,February,8,25,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,53.14,0,2,Check-Out,2017-03-04,Winter,2017-02-25T08:00Z +Keep,0,2017,March,9,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient-Party,60,0,0,Check-Out,2017-03-04,Spring,2017-03-03T08:00Z +Keep,0,2017,March,9,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient-Party,60,0,0,Check-Out,2017-03-04,Spring,2017-03-03T08:00Z +Keep,0,2017,March,9,3,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2017-03-04,Spring,2017-03-03T08:00Z +Keep,0,2017,March,9,3,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient-Party,60,0,0,Check-Out,2017-03-04,Spring,2017-03-03T08:00Z +Keep,4,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,8,0,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,0,2017,March,10,5,0,0,2,0,0,BB,BEL,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-05,Spring,2017-03-05T08:00Z +Keep,7,2017,March,9,3,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 467, NULL,0,Transient,57.6,0,0,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,3,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,50.33,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,CZE,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,C,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,B,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,1,0,4,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-01T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,0,2017,March,10,5,1,0,1,0,0,BB,BEL,Direct,Direct, 1,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-06,Spring,2017-03-05T08:00Z +Keep,1,2017,March,9,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient-Party,65,0,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,6,2017,March,9,1,0,4,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-01T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,2,No Deposit , NULL, 223,0,Transient-Party,54,1,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,163,2017,February,9,28,0,5,3,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient-Party,87,0,0,Check-Out,2017-03-05,Winter,2017-02-28T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,163,2017,February,9,28,0,5,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,2,No Deposit , 240, NULL,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Winter,2017-02-28T08:00Z +Keep,1,2017,March,9,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,120,2017,February,9,28,0,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,62.8,0,1,Check-Out,2017-03-05,Winter,2017-02-28T08:00Z +Keep,11,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,75,0,2,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,0,2017,March,9,3,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,67,1,0,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,0,2017,March,9,3,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,1,2017,March,9,3,0,2,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,1,1,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,0,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,H,4,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,0,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,0,2017,March,9,3,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,60,0,0,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,307,2017,February,8,24,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,4,Check-Out,2017-03-05,Winter,2017-02-24T08:00Z +Keep,0,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,307,2017,February,8,24,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,42.97,0,4,Check-Out,2017-03-05,Winter,2017-02-24T08:00Z +Keep,53,2017,March,9,3,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,1,2,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,0,3,3,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,50.33,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,0,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,3,2017,March,9,3,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112,0,2,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,146,2017,March,9,2,0,3,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,0,2017,March,9,4,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,1,2017,March,9,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient-Party,67,1,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,2,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,2,No Deposit , NULL, NULL,0,Transient,72,1,1,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,138,2017,March,9,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,41.58,0,2,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,138,2017,March,9,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,41.58,0,2,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,138,2017,March,9,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,41.58,0,2,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,112,2017,June,25,18,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-20,Summer,2017-06-18T07:00Z +Keep,4,2017,March,9,4,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,3,2017,March,9,4,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2017-03-05,Spring,2017-03-04T08:00Z +Keep,128,2017,March,9,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,70,0,2,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,128,2017,March,9,2,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,70,0,2,Check-Out,2017-03-05,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,3,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2017-03-05,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,E,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,52.25,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,37,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,FRA,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,F,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,54,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,56,2017,March,9,2,1,3,2,1,0,BB,BEL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,103,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,8,2017,March,9,3,1,2,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,2,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,1,1,4,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,7,2017,March,9,2,1,3,3,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,C,4,No Deposit , NULL, 223,0,Transient-Party,63.45,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,44,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,DEU,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,1,1,4,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,5,2017,February,9,28,1,5,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,47.5,2,0,Check-Out,2017-03-06,Winter,2017-02-28T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,C,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,1,1,4,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,0,2017,March,10,5,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-06,Spring,2017-03-05T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,6,2017,March,9,1,1,4,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,6,2017,March,9,1,1,4,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,56,2017,March,9,3,1,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,74.4,1,0,Check-Out,2017-03-06,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,17,2017,March,9,3,1,2,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,100,0,1,Check-Out,2017-03-06,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,14,2017,March,9,4,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 175, NULL,0,Transient,64,0,0,Check-Out,2017-03-06,Spring,2017-03-04T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,1,2017,March,9,1,1,4,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 195,0,Transient,35,0,0,Check-Out,2017-03-06,Spring,2017-03-01T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,E,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,192,2017,March,9,2,1,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,F,1,No Deposit , NULL, 223,185,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,BEL,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,196,2017,February,7,13,6,15,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,56.6,0,0,Check-Out,2017-03-06,Winter,2017-02-13T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,F,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,E,0,No Deposit , NULL, 223,0,Transient-Party,54,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,39,2017,March,9,3,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 467, NULL,0,Transient-Party,57.6,0,0,Check-Out,2017-03-06,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,34,2017,March,10,5,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,60,1,2,Check-Out,2017-03-06,Spring,2017-03-05T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,125,2017,February,9,27,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,59.06,0,2,Check-Out,2017-03-06,Winter,2017-02-27T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,FIN,Online travel agent,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,75,0,2,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,BEL,Groups,Corporate, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,192,2017,March,9,2,1,3,2,0,0,BB,NLD,Groups,Corporate, 0,0,0,D,F,0,No Deposit , NULL, 223,185,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,39,2017,March,9,3,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 467, NULL,0,Transient-Party,57.6,0,0,Check-Out,2017-03-06,Spring,2017-03-03T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,42.25,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,1,0,0,BB,NLD,Groups,Corporate, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,29,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,47,0,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,1,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,54,1,0,Check-Out,2017-03-06,Spring,2017-03-02T08:00Z +Keep,39,2017,February,9,28,2,5,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,98.29,0,0,Check-Out,2017-03-07,Winter,2017-02-28T08:00Z +Keep,71,2017,January,2,10,16,40,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,28.79,0,0,Check-Out,2017-03-07,Winter,2017-01-10T08:00Z +Keep,0,2017,March,10,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 116,0,Transient,42,1,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,38,2017,March,10,5,2,0,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,55,0,0,Check-Out,2017-03-07,Spring,2017-03-05T08:00Z +Keep,16,2017,March,10,5,2,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,75,1,3,Check-Out,2017-03-07,Spring,2017-03-05T08:00Z +Keep,2,2017,March,10,6,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,5,2017,March,10,6,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,30,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,7,2017,April,15,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 314, NULL,0,Group,67.24,0,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,33,2017,March,10,6,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 360, NULL,0,Transient,65.45,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,1,2017,March,10,6,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,0,2017,March,10,7,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-07,Spring,2017-03-07T08:00Z +Keep,7,2017,March,9,2,2,3,2,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-07,Spring,2017-03-02T08:00Z +Keep,7,2017,March,9,2,2,3,1,0,0,BB,GBR,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,37,0,0,Check-Out,2017-03-07,Spring,2017-03-02T08:00Z +Keep,13,2017,March,10,5,2,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,87,1,0,Check-Out,2017-03-07,Spring,2017-03-05T08:00Z +Keep,0,2017,March,10,6,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 512,0,Transient,35,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 512,0,Transient,35,0,0,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,0,2017,April,14,3,1,0,1,0,0,BB,PRT,Corporate,Corporate, 1,0,2,A,D,0,No Deposit , NULL, 512,0,Transient,45,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,11,2017,March,10,6,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,55,1,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,1,2017,March,9,4,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,I,2,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-07,Spring,2017-03-04T08:00Z +Keep,11,2017,March,10,6,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,62,0,0,Check-Out,2017-03-07,Spring,2017-03-06T08:00Z +Keep,40,2017,March,10,7,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 184, 126,0,Transient,0,0,0,Check-Out,2017-03-07,Spring,2017-03-07T08:00Z +Keep,155,2017,February,7,15,6,15,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,45,0,1,Check-Out,2017-03-08,Winter,2017-02-15T08:00Z +Keep,0,2017,March,10,7,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,60,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,0,2017,March,10,7,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,60,1,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,161,2017,March,9,1,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-03-08,Spring,2017-03-01T08:00Z +Keep,0,2017,March,10,5,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-08,Spring,2017-03-05T08:00Z +Keep,1,2017,March,10,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,1,2,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,4,2017,March,10,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,1,2017,March,10,7,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,2,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,105,2017,February,8,25,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,48.27,0,1,Check-Out,2017-03-08,Winter,2017-02-25T08:00Z +Keep,0,2017,March,10,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,48,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,7,2017,March,10,7,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,117,1,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,25,2017,March,10,5,2,1,1,0,0,HB,GBR,Direct,Direct, 0,0,0,A,H,1,No Deposit , 250, NULL,0,Transient,61,0,0,Check-Out,2017-03-08,Spring,2017-03-05T08:00Z +Keep,1,2017,March,10,7,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,85,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,1,2017,March,10,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 511,0,Transient,45,0,0,Check-Out,2017-03-08,Spring,2017-03-07T08:00Z +Keep,2,2017,March,10,9,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,0,0,0,Check-Out,2017-03-09,Spring,2017-03-09T08:00Z +Keep,1,2017,March,10,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 371,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,1,2017,March,10,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 371,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,201,2017,March,9,4,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2017-03-09,Spring,2017-03-04T08:00Z +Keep,5,2017,March,10,8,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,48,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,0,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,D,0,No Deposit , NULL, 225,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,8,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 380,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,6,2017,March,10,8,0,1,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,34,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,1,2017,March,10,9,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Group,52,0,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,11,2017,March,10,6,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,0,1,Check-Out,2017-03-09,Spring,2017-03-06T08:00Z +Keep,20,2017,February,8,23,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-09,Winter,2017-02-23T08:00Z +Keep,12,2017,March,10,5,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,34,0,0,Check-Out,2017-03-09,Spring,2017-03-05T08:00Z +Keep,0,2017,March,10,8,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 146, NULL,0,Group,32,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,1,2017,March,10,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 64,0,Transient,35,0,0,Check-Out,2017-03-09,Spring,2017-03-08T08:00Z +Keep,145,2017,February,9,26,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 171, NULL,0,Transient,41.51,0,0,Check-Out,2017-03-09,Winter,2017-02-26T08:00Z +Keep,124,2017,February,8,23,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-09,Winter,2017-02-23T08:00Z +Keep,5,2017,March,10,7,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,56,0,1,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,110,2017,March,10,7,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,33.6,0,0,Check-Out,2017-03-09,Spring,2017-03-07T08:00Z +Keep,191,2017,February,8,23,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,47,0,1,Check-Out,2017-03-09,Winter,2017-02-23T08:00Z +Keep,191,2017,February,8,23,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,52,1,1,Check-Out,2017-03-09,Winter,2017-02-23T08:00Z +Keep,145,2017,February,9,26,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,36.72,0,0,Check-Out,2017-03-09,Winter,2017-02-26T08:00Z +Keep,0,2017,March,10,9,0,1,2,0,0,BB,FIN,Direct,Direct, 1,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,77,1,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,0,2017,March,10,7,0,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,1,Check-Out,2017-03-10,Spring,2017-03-07T08:00Z +Keep,14,2017,March,10,9,0,1,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 360, NULL,0,Transient,53.55,0,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,1,2017,March,10,9,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 168, NULL,0,Transient,48,1,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,0,2017,March,10,9,0,1,2,1,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,3,2017,March,10,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 274,0,Transient,35,0,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,6,2017,March,10,6,1,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,45,0,0,Check-Out,2017-03-10,Spring,2017-03-06T08:00Z +Keep,18,2017,March,9,3,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,107,0,0,Check-Out,2017-03-10,Spring,2017-03-03T08:00Z +Keep,200,2017,February,7,17,6,15,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,66.6,0,0,Check-Out,2017-03-10,Winter,2017-02-17T08:00Z +Keep,50,2017,March,10,8,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,I,0,No Deposit , 250, NULL,0,Transient,97,0,0,Check-Out,2017-03-10,Spring,2017-03-08T08:00Z +Keep,2,2017,March,10,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,48,2017,March,9,4,2,4,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,0,Check-Out,2017-03-10,Spring,2017-03-04T08:00Z +Keep,2,2017,March,10,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,50,0,2,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,70,2017,March,10,6,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2017-03-10,Spring,2017-03-06T08:00Z +Keep,63,2017,March,10,9,0,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,5,2017,March,10,9,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,1,2,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,154,2017,March,10,6,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,62.3,0,2,Check-Out,2017-03-10,Spring,2017-03-06T08:00Z +Keep,1,2017,March,10,9,0,1,3,1,0,BB,ESP,Direct,Direct, 0,0,0,H,I,0,No Deposit , NULL, NULL,0,Transient,122,1,1,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,0,2017,March,10,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient,48,1,0,Check-Out,2017-03-10,Spring,2017-03-09T08:00Z +Keep,32,2017,February,9,27,3,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2017-03-11,Winter,2017-02-27T08:00Z +Keep,35,2017,March,10,6,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,57,0,1,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,35,2017,March,10,6,1,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,3,2017,March,10,6,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,68.4,0,0,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,74,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient-Party,99,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,2,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient-Party,99,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,2,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient-Party,99,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,74,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient-Party,99,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,74,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,2,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient-Party,99,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,2,No Deposit , 96, NULL,0,Transient-Party,47,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,107,2017,March,10,9,0,2,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,77,2017,March,10,10,0,1,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,0,No Deposit , 360, NULL,0,Transient,50,0,0,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,65,2017,March,10,9,0,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,40,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,1,2017,March,10,10,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 330,0,Transient-Party,37,1,1,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,0,2017,March,10,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,126,2017,March,10,7,0,4,2,0,0,HB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,107,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,112,2017,March,10,7,0,4,2,0,0,HB,DEU,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,93,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,1,2017,March,10,10,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, 330,0,Transient-Party,34,0,1,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,211,2017,March,9,4,2,5,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-03-11,Spring,2017-03-04T08:00Z +Keep,3,2017,March,10,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,3,2017,March,10,9,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,27,2017,March,10,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,1,1,Check-Out,2017-03-11,Spring,2017-03-08T08:00Z +Keep,29,2017,March,10,8,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-03-11,Spring,2017-03-08T08:00Z +Keep,14,2017,March,10,8,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2017-03-11,Spring,2017-03-08T08:00Z +Keep,15,2017,March,10,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,126,2017,March,10,6,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,64,0,2,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,19,2017,March,10,7,0,4,2,0,0,HB,AUT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,75,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,41,2017,March,10,6,1,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,92,0,2,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,0,2017,March,10,7,0,4,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,50,1,0,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,216,2017,March,10,9,0,2,2,0,0,Undefined,CN,Groups,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,109,Transient-Party,99,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,9,2017,March,10,10,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,0,2,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,9,2017,March,10,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,65,1,2,Check-Out,2017-03-11,Spring,2017-03-10T08:00Z +Keep,2,2017,March,10,9,0,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,65,0,1,Check-Out,2017-03-11,Spring,2017-03-09T08:00Z +Keep,117,2017,March,10,6,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-03-11,Spring,2017-03-06T08:00Z +Keep,48,2017,March,10,7,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-03-11,Spring,2017-03-07T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 298, NULL,0,Transient-Party,42,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,E,E,2,No Deposit , 298, NULL,0,Transient-Party,73,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,73,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,73,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,73,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,73,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,171,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 298, NULL,0,Transient-Party,71,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,40,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,42,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,40,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,40,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,28,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,40,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,58,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,53,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,42,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,56,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,312,2017,March,10,5,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 298, NULL,0,Transient-Party,58,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,1,2017,March,10,7,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,69,0,1,Check-Out,2017-03-12,Spring,2017-03-07T08:00Z +Keep,143,2017,March,10,5,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 177, NULL,0,Transient,52.4,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,17,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,56.7,0,0,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,17,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,56.7,0,0,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,69.67,1,1,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,8,2017,March,10,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,115,2017,March,10,9,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,179,2017,March,10,5,2,5,2,1,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 436, NULL,0,Transient,100.71,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,28,2017,March,10,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,75,2017,March,10,11,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,195,2017,March,10,9,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,26.64,0,2,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,169,2017,March,10,5,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,9,2017,March,10,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,169,2017,March,10,5,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,40.5,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,2,2017,March,10,10,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,97,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,70,2017,March,10,8,0,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, 242,0,Transient,66.5,0,1,Check-Out,2017-03-12,Spring,2017-03-08T08:00Z +Keep,8,2017,March,10,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,13,2017,March,10,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,4,2017,March,10,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,1,2,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,1,2017,March,10,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,90,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,1,2017,March,10,11,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,90,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,1,2017,March,10,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,90,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,2,2017,March,10,11,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,G,G,0,No Deposit , NULL, 364,0,Transient,70,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,0,2017,March,10,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,30,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,100,0,0,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,49,2017,March,10,10,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,43,2017,March,10,10,0,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,148,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,4,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,63,0,1,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,2,2017,March,10,9,0,3,1,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,B,3,No Deposit , NULL, NULL,0,Transient,65,0,1,Check-Out,2017-03-12,Spring,2017-03-09T08:00Z +Keep,32,2017,March,10,10,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,132.5,0,2,Check-Out,2017-03-12,Spring,2017-03-10T08:00Z +Keep,0,2017,March,10,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2017-03-12,Spring,2017-03-11T08:00Z +Keep,0,2017,June,24,17,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,E,E,1,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2017-06-18,Summer,2017-06-17T07:00Z +Keep,195,2017,March,10,5,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,67.94,0,0,Check-Out,2017-03-12,Spring,2017-03-05T08:00Z +Keep,99,2017,March,10,6,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,83.86,0,1,Check-Out,2017-03-13,Spring,2017-03-06T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,57.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,57.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,274,2017,March,10,10,1,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,39.8,0,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,1,2017,March,11,12,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,72,0,0,Check-Out,2017-03-13,Spring,2017-03-12T08:00Z +Keep,31,2017,March,10,6,2,5,3,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,59,0,1,Check-Out,2017-03-13,Spring,2017-03-06T08:00Z +Keep,31,2017,March,10,6,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,48,0,1,Check-Out,2017-03-13,Spring,2017-03-06T08:00Z +Keep,2,2017,March,11,12,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-13,Spring,2017-03-12T08:00Z +Keep,220,2017,March,10,7,1,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,48.9,0,1,Check-Out,2017-03-13,Spring,2017-03-07T08:00Z +Keep,39,2017,March,10,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80.33,1,2,Check-Out,2017-03-13,Spring,2017-03-10T08:00Z +Keep,15,2017,March,10,11,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-13,Spring,2017-03-11T08:00Z +Keep,29,2017,March,10,11,1,1,2,0,0,BB,URY,Corporate,Direct, 0,0,0,A,E,2,No Deposit , NULL, 263,0,Transient-Party,58,0,0,Check-Out,2017-03-13,Spring,2017-03-11T08:00Z +Keep,89,2017,March,10,11,1,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,E,2,No Deposit , NULL, 263,0,Transient-Party,58,0,0,Check-Out,2017-03-13,Spring,2017-03-11T08:00Z +Keep,0,2017,March,10,11,1,1,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64,0,1,Check-Out,2017-03-13,Spring,2017-03-11T08:00Z +Keep,172,2017,March,10,8,1,4,2,0,0,SC,BEL,Direct,Direct, 0,0,0,D,I,3,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-03-13,Spring,2017-03-08T08:00Z +Keep,89,2017,March,10,11,1,1,2,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,I,2,No Deposit , NULL, 263,0,Transient-Party,58,1,0,Check-Out,2017-03-13,Spring,2017-03-11T08:00Z +Keep,110,2017,March,11,13,1,0,1,0,0,BB,ESP,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 66, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,134,2017,March,10,9,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,48.43,0,2,Check-Out,2017-03-14,Spring,2017-03-09T08:00Z +Keep,134,2017,March,10,9,2,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,48.43,0,2,Check-Out,2017-03-14,Spring,2017-03-09T08:00Z +Keep,134,2017,March,10,9,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,48.43,0,2,Check-Out,2017-03-14,Spring,2017-03-09T08:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,110,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,F,1,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,110,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,F,1,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,110,2017,March,11,13,1,0,1,0,0,BB,CHN,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 66, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,9,2017,March,10,7,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-14,Spring,2017-03-07T08:00Z +Keep,146,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,34,Transient-Party,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,10,2017,March,10,9,2,3,2,1,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-03-14,Spring,2017-03-09T08:00Z +Keep,112,2017,March,11,13,1,0,2,0,0,BB,CHN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 66, NULL,0,Transient,50,0,0,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,167,2017,March,11,12,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,44.8,1,1,Check-Out,2017-03-14,Spring,2017-03-12T08:00Z +Keep,0,2017,March,11,13,1,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,8,2017,March,11,13,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,52,0,1,Check-Out,2017-03-14,Spring,2017-03-13T07:00Z +Keep,37,2017,March,10,11,2,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,2,Check-Out,2017-03-14,Spring,2017-03-11T08:00Z +Keep,0,2017,March,10,6,3,6,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Group,42,0,1,Check-Out,2017-03-15,Spring,2017-03-06T08:00Z +Keep,159,2017,March,9,1,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,48.71,1,1,Check-Out,2017-03-15,Spring,2017-03-01T08:00Z +Keep,201,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,6,Transient-Party,64.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,64.08,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,176,2017,March,11,12,2,1,2,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,40.5,0,1,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,10,2017,March,11,13,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,195,2017,March,10,5,4,6,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,40.14,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,5,2017,March,11,12,2,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,201,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,6,Transient-Party,62.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,56,2017,March,11,12,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,1,1,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,189,2017,July,30,23,3,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,1,D,D,0,No Deposit , 240, NULL,0,Transient,217.75,1,1,Check-Out,2017-07-31,Summer,2017-07-23T07:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,62.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 273, NULL,0,Transient-Party,71.48,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,62.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,64.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,62.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,40.14,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,41.94,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,195,2017,March,10,5,4,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,64.28,0,0,Check-Out,2017-03-15,Spring,2017-03-05T08:00Z +Keep,1,2017,March,11,14,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,63,0,3,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,0,2017,March,11,14,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,226,2017,March,9,1,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-03-15,Spring,2017-03-01T08:00Z +Keep,226,2017,March,9,1,4,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.8,0,1,Check-Out,2017-03-15,Spring,2017-03-01T08:00Z +Keep,67,2017,March,11,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77,1,1,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,4,2017,March,11,13,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,1,1,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,8,2017,March,10,10,2,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,1,1,Check-Out,2017-03-15,Spring,2017-03-10T08:00Z +Keep,97,2017,March,11,13,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2017-03-15,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,15,0,2,2,0,0,BB,GBR,Corporate,Direct, 0,0,0,A,F,2,No Deposit , NULL, 477,0,Group,60,0,1,Check-Out,2017-03-17,Spring,2017-03-15T07:00Z +Keep,1,2017,March,11,14,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.6,0,1,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,0,2017,March,11,14,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,80,0,1,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,0,2017,March,11,14,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,80,0,1,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,4,2017,March,11,12,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,97,0,2,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,0,2017,March,11,12,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,0,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,3,2017,March,11,12,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,3,2017,March,11,12,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2017-03-15,Spring,2017-03-12T08:00Z +Keep,1,2017,March,11,14,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,63,0,3,Check-Out,2017-03-15,Spring,2017-03-14T07:00Z +Keep,22,2017,March,11,13,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,0,3,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,0,2017,March,11,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,34,2017,March,10,9,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-16,Spring,2017-03-09T08:00Z +Keep,1,2017,March,11,14,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-03-16,Spring,2017-03-14T07:00Z +Keep,3,2017,March,11,13,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,3,2017,April,14,3,1,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,64.8,0,0,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,2,2017,March,11,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,35,1,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,11,2017,March,11,13,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,67,1,1,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,1,2017,March,11,15,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,138,2017,March,10,9,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,49,0,0,Check-Out,2017-03-16,Spring,2017-03-09T08:00Z +Keep,12,2017,March,11,14,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2017-03-16,Spring,2017-03-14T07:00Z +Keep,14,2017,March,11,16,0,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,11,2017,March,11,13,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,24,2017,March,11,13,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,27,2017,March,11,16,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,24,2017,March,11,13,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,27,2017,March,11,16,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,1,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,115,2017,March,11,13,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97.33,0,1,Check-Out,2017-03-16,Spring,2017-03-13T07:00Z +Keep,26,2017,March,11,14,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,55,0,0,Check-Out,2017-03-16,Spring,2017-03-14T07:00Z +Keep,24,2017,March,10,10,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,77,0,2,Check-Out,2017-03-16,Spring,2017-03-10T08:00Z +Keep,0,2017,March,11,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-03-16,Spring,2017-03-15T07:00Z +Keep,12,2017,March,11,15,0,2,1,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,39,1,1,Check-Out,2017-03-17,Spring,2017-03-15T07:00Z +Keep,20,2017,March,11,15,0,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-17,Spring,2017-03-15T07:00Z +Keep,0,2017,March,11,16,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 195,0,Transient,40,0,0,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,2,2017,March,11,16,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,60,2017,March,11,13,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,105.25,1,2,Check-Out,2017-03-17,Spring,2017-03-13T07:00Z +Keep,246,2017,March,10,7,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2017-03-17,Spring,2017-03-07T08:00Z +Keep,26,2017,March,11,16,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,2,2017,March,11,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 518,0,Transient,35,0,1,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,2,2017,March,11,16,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 518,0,Transient,35,0,1,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,155,2017,March,11,16,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-03-17,Spring,2017-03-16T07:00Z +Keep,355,2017,March,11,13,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,34.2,0,0,Check-Out,2017-03-17,Spring,2017-03-13T07:00Z +Keep,62,2017,March,11,14,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2017-03-17,Spring,2017-03-14T07:00Z +Keep,30,2017,March,11,13,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-03-17,Spring,2017-03-13T07:00Z +Keep,74,2017,February,8,25,6,15,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 363, NULL,0,Transient,79.14,0,1,Check-Out,2017-03-18,Winter,2017-02-25T08:00Z +Keep,29,2017,March,10,11,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,110,1,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,125,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 477,13,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,131,2017,March,10,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,66.72,0,2,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,140,2017,March,11,14,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-03-18,Spring,2017-03-14T07:00Z +Keep,140,2017,March,11,14,0,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,42,0,1,Check-Out,2017-03-18,Spring,2017-03-14T07:00Z +Keep,127,2017,March,10,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,51.76,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,4,2017,March,11,17,0,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,H,0,No Deposit , NULL, NULL,0,Transient,56.7,0,1,Check-Out,2017-03-18,Spring,2017-03-17T07:00Z +Keep,7,2017,March,10,5,4,9,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,112,1,2,Check-Out,2017-03-18,Spring,2017-03-05T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,88,2017,March,10,11,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,57,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,2,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,57,2017,March,10,11,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,51,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,120,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,6,No Deposit , NULL, 477,8,Transient-Party,45,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,202,2017,March,11,13,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 177, NULL,0,Transient,32.6,0,1,Check-Out,2017-03-18,Spring,2017-03-13T07:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,BRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,46,2017,March,11,18,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,64,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,339,2017,March,10,11,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 298, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,FRA,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,46,2017,March,11,18,1,1,2,0,0,BB,FRA,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,52,2017,March,11,18,1,1,2,0,0,BB,GBR,Direct,Corporate, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,50,2017,March,11,13,1,4,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,70,0,1,Check-Out,2017-03-18,Spring,2017-03-13T07:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,IRL,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,46,2017,March,11,18,1,1,2,0,0,BB,IRL,Direct,Corporate, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,15,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,15,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,88,2017,March,10,11,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,186,2017,February,8,25,6,15,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,38.55,0,1,Check-Out,2017-03-18,Winter,2017-02-25T08:00Z +Keep,88,2017,March,10,11,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,0,2017,March,11,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2017-03-18,Spring,2017-03-17T07:00Z +Keep,148,2017,March,10,11,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,60,Transient-Party,34,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,148,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,60,Transient-Party,30,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,88,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,88,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,180,2017,February,8,25,6,15,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,53,0,0,Check-Out,2017-03-18,Winter,2017-02-25T08:00Z +Keep,0,2017,March,11,17,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-18,Spring,2017-03-17T07:00Z +Keep,186,2017,February,8,25,6,15,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,36.55,0,1,Check-Out,2017-03-18,Winter,2017-02-25T08:00Z +Keep,88,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,88,2017,March,10,11,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,32,0,0,Check-Out,2017-03-18,Spring,2017-03-11T08:00Z +Keep,112,2017,March,11,15,0,3,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,I,2,No Deposit , NULL, 477,0,Transient,40,0,0,Check-Out,2017-03-18,Spring,2017-03-15T07:00Z +Keep,12,2017,March,11,18,0,1,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 477,0,Transient-Party,60,0,0,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,26,2017,March,11,14,0,5,1,0,0,HB,DEU,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,175,2017,March,11,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46.8,0,2,Check-Out,2017-03-19,Spring,2017-03-12T08:00Z +Keep,21,2017,March,11,16,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 242, NULL,0,Transient,90,0,2,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,31,2017,March,11,14,0,5,2,0,1,BB,FRA,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,73,0,3,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,241,2017,March,11,17,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,44.8,1,2,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,125,2017,March,11,17,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,66,2017,March,11,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,3,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,2,2017,March,11,17,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,102,0,0,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,2,2017,March,11,17,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,102,0,0,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,DEU,Direct,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient-Party,105,0,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,144,2017,March,10,5,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 40, NULL,0,Transient,51.76,0,2,Check-Out,2017-03-19,Spring,2017-03-05T08:00Z +Keep,3,2017,March,11,15,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-03-19,Spring,2017-03-15T07:00Z +Keep,1,2017,March,11,18,0,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,77,1,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,3,2017,March,11,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,26,2017,March,11,14,0,5,1,0,0,HB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,1,2017,March,11,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,6,2017,March,11,16,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,21,2017,March,11,16,0,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,2,2017,March,11,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,95,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,1,2017,March,11,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,8,2017,March,11,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,60,1,2,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,26,2017,March,11,14,0,5,1,0,0,HB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,313,2017,March,11,16,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,84.6,0,3,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,26,2017,March,11,14,0,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,65,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,126,2017,March,11,17,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,23,2017,March,11,16,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,68,0,2,Check-Out,2017-03-19,Spring,2017-03-16T07:00Z +Keep,126,2017,March,11,17,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-03-19,Spring,2017-03-17T07:00Z +Keep,138,2017,March,11,13,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,69,1,1,Check-Out,2017-03-19,Spring,2017-03-13T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,DEU,Direct,Direct, 0,0,0,E,G,0,No Deposit , NULL, NULL,0,Transient-Party,105,0,1,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,2,2017,March,11,18,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,34,0,1,Check-Out,2017-03-19,Spring,2017-03-18T07:00Z +Keep,26,2017,March,11,14,0,5,2,0,0,HB,DEU,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-03-19,Spring,2017-03-14T07:00Z +Keep,25,2017,March,11,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,60,0,1,Check-Out,2017-03-20,Spring,2017-03-17T07:00Z +Keep,207,2017,March,11,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,4,2017,March,12,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,35,0,0,Check-Out,2017-03-20,Spring,2017-03-19T07:00Z +Keep,4,2017,March,12,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 135,0,Transient,35,0,0,Check-Out,2017-03-20,Spring,2017-03-19T07:00Z +Keep,207,2017,March,11,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,207,2017,March,11,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,0,2017,March,12,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-03-20,Spring,2017-03-19T07:00Z +Keep,0,2017,March,11,18,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,0,2017,March,12,19,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-20,Spring,2017-03-19T07:00Z +Keep,0,2017,March,12,19,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-20,Spring,2017-03-19T07:00Z +Keep,68,2017,March,11,18,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,2,2017,March,11,16,1,3,2,0,0,HB,PRT,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,119.5,0,1,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,89,2017,March,10,10,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,71.8,0,1,Check-Out,2017-03-20,Spring,2017-03-10T08:00Z +Keep,9,2017,March,11,18,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Group,79,1,1,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,2,2017,March,11,18,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-03-20,Spring,2017-03-18T07:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,0,2017,March,12,20,0,0,1,0,0,BB,PRT,Direct,Direct, 1,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-20,Spring,2017-03-20T07:00Z +Keep,207,2017,March,11,16,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,37.8,0,3,Check-Out,2017-03-20,Spring,2017-03-16T07:00Z +Keep,13,2017,March,12,20,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,12,2017,May,19,9,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,G,0,No Deposit , NULL, 270,0,Transient,45,0,0,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,0,2017,March,11,17,2,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,109,1,1,Check-Out,2017-03-21,Spring,2017-03-17T07:00Z +Keep,3,2017,March,12,20,1,0,1,0,0,BB,ESP,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 329,0,Transient,60,0,1,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,0,2017,March,12,20,1,0,1,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 329,0,Transient,60,0,1,Check-Out,2017-03-21,Spring,2017-03-20T07:00Z +Keep,0,2017,April,16,18,0,1,1,0,0,BB,PRT,Direct,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 329,0,Transient,74,0,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,280,2017,March,12,19,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,39.8,0,3,Check-Out,2017-03-21,Spring,2017-03-19T07:00Z +Keep,131,2017,March,12,19,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,42,0,2,Check-Out,2017-03-21,Spring,2017-03-19T07:00Z +Keep,219,2017,March,11,18,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,67.93,0,3,Check-Out,2017-03-21,Spring,2017-03-18T07:00Z +Keep,219,2017,March,11,18,2,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,73.6,1,3,Check-Out,2017-03-21,Spring,2017-03-18T07:00Z +Keep,205,2017,March,10,7,4,10,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,55.8,0,2,Check-Out,2017-03-21,Spring,2017-03-07T08:00Z +Keep,15,2017,March,12,19,2,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,90,0,2,Check-Out,2017-03-21,Spring,2017-03-19T07:00Z +Keep,295,2017,March,11,15,2,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.64,0,1,Check-Out,2017-03-21,Spring,2017-03-15T07:00Z +Keep,295,2017,March,11,15,2,4,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,26.64,0,1,Check-Out,2017-03-21,Spring,2017-03-15T07:00Z +Keep,24,2017,March,11,18,2,1,2,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,93.13,0,0,Check-Out,2017-03-21,Spring,2017-03-18T07:00Z +Keep,126,2017,March,10,8,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,47,0,0,Check-Out,2017-03-22,Spring,2017-03-08T08:00Z +Keep,0,2017,March,12,21,0,1,1,0,0,HB,PRT,Complementary,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,4,2017,March,12,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 367,0,Transient,63,0,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,0,2017,March,12,20,1,1,1,0,0,BB,HUN,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient-Party,70,0,0,Check-Out,2017-03-22,Spring,2017-03-20T07:00Z +Keep,3,2017,March,12,19,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,85.33,1,3,Check-Out,2017-03-22,Spring,2017-03-19T07:00Z +Keep,33,2017,March,12,20,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,87,0,0,Check-Out,2017-03-22,Spring,2017-03-20T07:00Z +Keep,67,2017,March,11,16,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,148,0,0,Check-Out,2017-03-22,Spring,2017-03-16T07:00Z +Keep,18,2017,March,12,21,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,15,2017,March,12,20,1,1,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,82,1,1,Check-Out,2017-03-22,Spring,2017-03-20T07:00Z +Keep,19,2017,March,12,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 66, NULL,0,Transient-Party,45,0,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,19,2017,March,12,21,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 66, NULL,0,Transient-Party,45,1,0,Check-Out,2017-03-22,Spring,2017-03-21T07:00Z +Keep,16,2017,March,12,19,2,2,2,0,0,HB,DEU,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,16,2017,March,12,19,2,2,2,0,0,HB,CHE,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,82,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,1,2017,March,12,21,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 168, NULL,0,Transient,66.5,1,0,Check-Out,2017-03-23,Spring,2017-03-21T07:00Z +Keep,337,2017,February,8,23,8,20,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,46.4,0,1,Check-Out,2017-03-23,Winter,2017-02-23T08:00Z +Keep,168,2017,March,12,20,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 177, NULL,0,Transient,30.6,0,0,Check-Out,2017-03-23,Spring,2017-03-20T07:00Z +Keep,181,2017,March,12,19,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,36,1,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,181,2017,March,12,19,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,181,2017,March,12,19,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,36,1,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,51.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,16,2017,March,12,19,2,2,2,0,0,HB,AUT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,82,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,181,2017,March,12,19,2,2,1,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,29,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,5,2017,March,12,22,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.36,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,16,2017,March,12,19,2,2,2,0,0,HB,ITA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,4,No Deposit , NULL, NULL,0,Transient-Party,78.18,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,5,No Deposit , NULL, NULL,0,Transient-Party,65.09,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,116,2017,March,12,22,0,1,3,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,82,0,4,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,116,2017,March,12,22,0,1,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,37,0,3,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,41,2017,March,11,16,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-23,Spring,2017-03-16T07:00Z +Keep,41,2017,March,11,16,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-23,Spring,2017-03-16T07:00Z +Keep,41,2017,March,11,16,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-23,Spring,2017-03-16T07:00Z +Keep,5,2017,March,12,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 394,0,Transient,55,0,0,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,34,2017,March,10,9,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-23,Spring,2017-03-09T08:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,63.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,0,2017,March,11,15,2,6,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,121.25,1,0,Check-Out,2017-03-23,Spring,2017-03-15T07:00Z +Keep,117,2017,March,12,19,2,2,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,27.07,0,1,Check-Out,2017-03-23,Spring,2017-03-19T07:00Z +Keep,124,2017,March,13,26,2,4,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,1,A,C,1,No Deposit , 241, NULL,0,Transient,27.07,0,0,Check-Out,2017-04-01,Spring,2017-03-26T07:00Z +Keep,65,2017,March,11,17,2,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,63,0,2,Check-Out,2017-03-23,Spring,2017-03-17T07:00Z +Keep,65,2017,March,11,17,2,4,2,0,0,BB,COL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,64.67,0,2,Check-Out,2017-03-23,Spring,2017-03-17T07:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,53.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,33.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,51.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , NULL, NULL,0,Transient-Party,74.18,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,8,2017,March,12,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-03-23,Spring,2017-03-22T07:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,52.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,35.27,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,96,2017,March,11,12,4,7,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,50.55,0,0,Check-Out,2017-03-23,Spring,2017-03-12T08:00Z +Keep,6,2017,March,12,20,1,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67,1,2,Check-Out,2017-03-23,Spring,2017-03-20T07:00Z +Keep,28,2017,March,11,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,0,Check-Out,2017-03-24,Spring,2017-03-17T07:00Z +Keep,2,2017,March,12,19,2,3,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,1,No Deposit , NULL, 154,0,Transient,40,0,0,Check-Out,2017-03-24,Spring,2017-03-19T07:00Z +Keep,7,2017,April,14,7,2,6,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,2,No Deposit , NULL, 154,0,Transient,11.75,0,0,Check-Out,2017-04-15,Spring,2017-04-07T07:00Z +Keep,0,2017,March,12,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,23,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,1,A,A,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,1,2017,March,12,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,70,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,9,2017,March,12,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 270,0,Transient,35,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,34,2017,March,12,19,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-03-24,Spring,2017-03-19T07:00Z +Keep,34,2017,March,12,19,2,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,3,Check-Out,2017-03-24,Spring,2017-03-19T07:00Z +Keep,0,2017,March,12,23,0,1,1,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,60,0,1,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,0,2017,March,12,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,137,2017,March,11,14,2,8,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,60.3,1,1,Check-Out,2017-03-24,Spring,2017-03-14T07:00Z +Keep,156,2017,March,11,16,2,6,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37.7,0,0,Check-Out,2017-03-24,Spring,2017-03-16T07:00Z +Keep,1,2017,March,12,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,56,0,0,Check-Out,2017-03-24,Spring,2017-03-23T07:00Z +Keep,0,2017,March,12,24,0,1,1,0,0,HB,IND,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 59,0,Transient,81,0,0,Check-Out,2017-03-25,Spring,2017-03-24T07:00Z +Keep,232,2017,March,11,18,2,5,1,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 75, NULL,0,Transient,25.5,0,0,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,30,2017,March,12,22,0,3,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-25,Spring,2017-03-22T07:00Z +Keep,45,2017,March,11,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,50,0,0,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,15,2017,March,11,18,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,62,0,0,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,47,2017,March,12,20,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient-Party,48.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,47,2017,March,12,20,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient-Party,48.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,47,2017,March,12,20,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient,50.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,46,2017,March,12,20,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient-Party,50.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,15,2017,March,12,20,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,60,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,47,2017,March,12,20,1,4,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient-Party,48.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,160,2017,March,11,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,55.8,0,3,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,47,2017,March,12,20,1,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 91, NULL,0,Transient,50.5,0,0,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,73,2017,March,11,18,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 242, NULL,0,Transient,85,1,1,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,192,2017,March,11,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,46.64,0,1,Check-Out,2017-03-25,Spring,2017-03-18T07:00Z +Keep,31,2017,March,12,20,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-03-25,Spring,2017-03-20T07:00Z +Keep,78,2017,March,12,21,0,4,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2017-03-25,Spring,2017-03-21T07:00Z +Keep,1,2017,March,11,13,3,9,2,0,0,BB,ITA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-03-25,Spring,2017-03-13T07:00Z +Keep,41,2017,March,11,18,2,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,67,1,1,Check-Out,2017-03-26,Spring,2017-03-18T07:00Z +Keep,15,2017,March,12,19,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,95,0,1,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,61,2017,March,12,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,64.18,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 440, NULL,0,Transient-Party,57.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,181,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,181,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,9,2017,March,12,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,63,2017,March,9,1,6,19,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 440, NULL,37,Transient-Party,41.52,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,84,2017,March,9,1,6,19,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,57.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,96,2017,March,12,19,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,31.71,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,181,2017,March,9,1,6,19,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 440, NULL,0,Transient-Party,55.8,0,1,Check-Out,2017-03-26,Spring,2017-03-01T08:00Z +Keep,26,2017,March,12,25,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,D,0,No Deposit , NULL, 251,0,Transient,72,0,0,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,152,2017,March,12,25,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,52,1,1,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,96,2017,March,12,19,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,1,0,0,BB,NOR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,30,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,156,2017,March,12,19,2,5,1,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,60,Transient-Party,30,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,156,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,60,Transient-Party,34,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,73,2017,March,12,25,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,29,2017,March,11,18,2,6,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-26,Spring,2017-03-18T07:00Z +Keep,23,2017,March,12,19,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,10,2017,March,12,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-03-26,Spring,2017-03-24T07:00Z +Keep,145,2017,March,12,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,60.65,0,0,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,2,2017,March,12,24,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-26,Spring,2017-03-24T07:00Z +Keep,11,2017,March,12,24,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,119,1,0,Check-Out,2017-03-26,Spring,2017-03-24T07:00Z +Keep,43,2017,March,12,25,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,153,1,0,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,3,2017,March,12,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,70,0,2,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,3,2017,March,12,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient-Party,70,0,2,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,43,2017,March,12,25,0,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,153,1,0,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,13,2017,March,12,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,43,2017,March,12,25,0,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,112,0,0,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,31,2017,March,12,23,0,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2017-03-26,Spring,2017-03-23T07:00Z +Keep,96,2017,March,12,19,2,5,2,0,0,BB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,34,0,1,Check-Out,2017-03-26,Spring,2017-03-19T07:00Z +Keep,29,2017,March,11,18,2,6,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-26,Spring,2017-03-18T07:00Z +Keep,237,2017,March,11,12,4,10,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,71,0,0,Check-Out,2017-03-26,Spring,2017-03-12T08:00Z +Keep,65,2017,March,11,18,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 468, NULL,0,Transient-Party,80,0,0,Check-Out,2017-03-26,Spring,2017-03-18T07:00Z +Keep,65,2017,March,11,18,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 468, NULL,0,Transient-Party,82,0,0,Check-Out,2017-03-26,Spring,2017-03-18T07:00Z +Keep,12,2017,March,12,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,120,0,4,Check-Out,2017-03-26,Spring,2017-03-25T07:00Z +Keep,166,2017,March,12,23,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.95,0,1,Check-Out,2017-03-27,Spring,2017-03-23T07:00Z +Keep,166,2017,March,12,23,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40.95,0,1,Check-Out,2017-03-27,Spring,2017-03-23T07:00Z +Keep,31,2017,March,12,20,2,5,2,0,0,BB,SVK,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,2,0,0,BB,SVK,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,18,2017,March,12,20,2,5,1,0,0,BB,AUT,Groups,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,2,0,0,BB,AUT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,2,0,0,BB,AUT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,160.71,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,1,0,0,BB,AUT,Groups,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,100,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,143,2017,March,12,20,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 464, NULL,0,Transient,48,0,1,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,31,2017,March,12,20,2,5,2,0,0,BB,AUT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,75,0,0,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,192,2017,March,12,22,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,2,Check-Out,2017-03-27,Spring,2017-03-22T07:00Z +Keep,12,2017,March,12,25,1,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-03-27,Spring,2017-03-25T07:00Z +Keep,326,2017,March,12,20,2,5,2,0,0,HB,NLD,Direct,Direct, 0,0,0,E,I,1,No Deposit , 250, NULL,0,Transient,91.8,0,2,Check-Out,2017-03-27,Spring,2017-03-20T07:00Z +Keep,44,2017,March,13,26,1,0,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,3,Check-Out,2017-03-27,Spring,2017-03-26T07:00Z +Keep,73,2017,March,13,28,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,62,0,3,Check-Out,2017-03-31,Spring,2017-03-28T07:00Z +Keep,73,2017,March,13,28,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,69,1,3,Check-Out,2017-03-31,Spring,2017-03-28T07:00Z +Keep,313,2017,March,12,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,30.24,0,0,Check-Out,2017-03-28,Spring,2017-03-24T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,USA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,30.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,30.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,284,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,43,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,28.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,39.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,30.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,28.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,241,2017,March,12,21,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 273, NULL,0,Transient-Party,30.8,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,207,2017,March,12,24,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 26, NULL,0,Transient,41.6,0,0,Check-Out,2017-03-28,Spring,2017-03-24T07:00Z +Keep,7,2017,March,13,27,1,0,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2017-03-28,Spring,2017-03-27T07:00Z +Keep,45,2017,March,12,21,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,82,0,0,Check-Out,2017-03-28,Spring,2017-03-21T07:00Z +Keep,15,2017,March,13,27,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,90,0,0,Check-Out,2017-03-28,Spring,2017-03-27T07:00Z +Keep,15,2017,March,13,27,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,90,0,0,Check-Out,2017-03-28,Spring,2017-03-27T07:00Z +Keep,150,2017,March,12,24,2,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 6, NULL,0,Transient,37,0,0,Check-Out,2017-03-28,Spring,2017-03-24T07:00Z +Keep,40,2017,March,13,26,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68,0,2,Check-Out,2017-03-28,Spring,2017-03-26T07:00Z +Keep,152,2017,March,12,19,4,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,29.11,0,1,Check-Out,2017-03-28,Spring,2017-03-19T07:00Z +Keep,133,2017,March,11,15,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 96, NULL,0,Transient,45,0,0,Check-Out,2017-03-29,Spring,2017-03-15T07:00Z +Keep,23,2017,March,13,26,2,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,32,0,0,Check-Out,2017-03-29,Spring,2017-03-26T07:00Z +Keep,8,2017,March,13,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,0,2017,March,13,28,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,65,1,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,35,2017,March,12,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,80,0,2,Check-Out,2017-03-29,Spring,2017-03-22T07:00Z +Keep,1,2017,March,13,28,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,56,0,1,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,120,2017,March,13,26,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-03-29,Spring,2017-03-26T07:00Z +Keep,120,2017,March,13,26,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,37,0,1,Check-Out,2017-03-29,Spring,2017-03-26T07:00Z +Keep,3,2017,March,13,27,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,39,2017,March,13,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,1,1,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,0,2017,March,13,28,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,0,2017,March,13,28,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2017-03-29,Spring,2017-03-28T07:00Z +Keep,38,2017,March,13,27,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,1,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,152,2017,March,11,15,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,55.86,0,0,Check-Out,2017-03-29,Spring,2017-03-15T07:00Z +Keep,214,2017,March,12,25,2,2,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,27,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,152,2017,March,11,15,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,54.21,1,0,Check-Out,2017-03-29,Spring,2017-03-15T07:00Z +Keep,0,2017,March,13,26,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-03-29,Spring,2017-03-26T07:00Z +Keep,225,2017,March,11,15,4,10,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 75, NULL,0,Transient,44.5,0,1,Check-Out,2017-03-29,Spring,2017-03-15T07:00Z +Keep,226,2017,March,12,25,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient-Party,28.64,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,141,2017,March,12,25,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,22,2017,March,13,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,0,0,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,22,2017,March,13,27,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,87,0,0,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,214,2017,March,12,25,2,2,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,27,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,54,2017,March,13,26,2,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,65,0,2,Check-Out,2017-03-29,Spring,2017-03-26T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,167,2017,March,13,27,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,63.9,1,2,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,226,2017,March,12,25,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient-Party,28.64,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,1,2017,March,13,27,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,83,1,1,Check-Out,2017-03-29,Spring,2017-03-27T07:00Z +Keep,226,2017,March,12,25,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient-Party,30.24,0,0,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,140,2017,March,12,25,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,42,0,2,Check-Out,2017-03-29,Spring,2017-03-25T07:00Z +Keep,24,2017,March,13,29,2,5,2,2,0,BB,FRA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,12,0,1,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,48,2017,March,12,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,163,2017,March,13,29,0,1,2,0,0,HB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,78,1,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,49,2017,March,13,29,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,55,0,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,338,2017,March,11,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 8, NULL,0,Transient,30.9,0,1,Check-Out,2017-03-30,Spring,2017-03-16T07:00Z +Keep,0,2017,March,13,29,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 88,0,Transient,40,1,1,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,33,2017,March,13,29,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,44,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,4,2017,March,13,27,1,2,1,0,0,BB,ECU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,67.33,0,0,Check-Out,2017-03-30,Spring,2017-03-27T07:00Z +Keep,1,2017,March,13,28,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 112,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-28T07:00Z +Keep,4,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,0,No Deposit , NULL, 112,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 464, NULL,0,Transient-Party,70,1,1,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,45,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 464, NULL,0,Transient-Party,66,0,1,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,41,2017,March,11,16,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-16T07:00Z +Keep,48,2017,March,13,29,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,0,2017,March,13,29,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 72,0,Transient,35,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,42,2017,March,13,29,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-03-30,Spring,2017-03-29T07:00Z +Keep,41,2017,March,11,16,4,10,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-16T07:00Z +Keep,152,2017,March,12,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,41,2017,March,11,16,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,2,Check-Out,2017-03-30,Spring,2017-03-16T07:00Z +Keep,27,2017,March,13,26,2,2,2,0,0,BB,NZL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2017-03-30,Spring,2017-03-26T07:00Z +Keep,152,2017,March,12,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,149,2017,March,12,25,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,49,1,1,Check-Out,2017-03-30,Spring,2017-03-25T07:00Z +Keep,162,2017,March,13,27,1,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient,92,0,3,Check-Out,2017-03-30,Spring,2017-03-27T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,0,2017,March,13,27,1,2,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 337, NULL,0,Transient,60,0,0,Check-Out,2017-03-30,Spring,2017-03-27T07:00Z +Keep,41,2017,March,11,16,4,10,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-16T07:00Z +Keep,48,2017,March,12,25,2,3,2,0,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,84,1,0,Check-Out,2017-03-30,Spring,2017-03-25T07:00Z +Keep,48,2017,March,12,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,48,2017,March,12,23,2,5,1,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,47,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,48,2017,March,12,23,2,5,2,0,0,Undefined,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,66,0,0,Check-Out,2017-03-30,Spring,2017-03-23T07:00Z +Keep,68,2017,March,13,26,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,86.2,1,0,Check-Out,2017-03-31,Spring,2017-03-26T07:00Z +Keep,68,2017,March,13,26,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,79.2,0,0,Check-Out,2017-03-31,Spring,2017-03-26T07:00Z +Keep,18,2017,March,13,28,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,80,0,0,Check-Out,2017-03-31,Spring,2017-03-28T07:00Z +Keep,119,2017,March,13,26,2,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,63.14,0,1,Check-Out,2017-03-31,Spring,2017-03-26T07:00Z +Keep,75,2017,March,12,25,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,76,0,0,Check-Out,2017-03-31,Spring,2017-03-25T07:00Z +Keep,0,2017,March,13,30,0,1,1,0,0,BB,PRT,Corporate,Direct, 0,0,0,A,A,1,No Deposit , NULL, 225,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,2,2017,March,13,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 331,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,7,2017,April,17,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 331,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,65,2017,March,13,30,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,42,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,53,2017,March,12,25,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,118,1,2,Check-Out,2017-03-31,Spring,2017-03-25T07:00Z +Keep,0,2017,March,13,30,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 286,0,Transient,65,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,214,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,62.91,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,242,2017,February,7,17,12,30,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,35.7,0,1,Check-Out,2017-03-31,Winter,2017-02-17T08:00Z +Keep,214,2017,March,12,24,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,0,2017,March,13,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,0,2017,March,13,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,70,0,1,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,214,2017,March,12,24,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,214,2017,March,12,24,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,41.6,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,214,2017,March,12,24,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,39.6,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,214,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,63.2,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,214,2017,March,12,24,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,39.6,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,32,2017,March,13,28,0,3,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,80,0,2,Check-Out,2017-03-31,Spring,2017-03-28T07:00Z +Keep,77,2017,March,13,26,2,3,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.2,0,3,Check-Out,2017-03-31,Spring,2017-03-26T07:00Z +Keep,7,2017,March,13,29,0,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,42,0,0,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,74,2017,March,13,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,48,0,0,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,214,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,61.2,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,29,2017,March,13,29,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 113,0,Transient,35,0,0,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,220,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 273, NULL,6,Transient-Party,63.2,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,69,2017,March,13,29,0,2,2,0,1,BB,FRA,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,92,1,1,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,23,2017,March,13,29,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,102,1,1,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,57,2017,March,13,26,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,55.2,0,1,Check-Out,2017-03-31,Spring,2017-03-26T07:00Z +Keep,220,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,6,Transient-Party,62.63,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,39,2017,March,13,30,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,54.4,0,2,Check-Out,2017-03-31,Spring,2017-03-30T07:00Z +Keep,0,2017,March,13,29,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,70,0,2,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,0,2017,April,14,7,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,2,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,0,2017,March,13,29,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,72,1,2,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,1,2017,March,13,29,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,2,No Deposit , 240, NULL,0,Transient,97,0,2,Check-Out,2017-03-31,Spring,2017-03-29T07:00Z +Keep,2,2017,March,13,31,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient,95,0,2,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,1,2017,April,14,8,2,5,2,0,0,BB,FRA,Direct,TA/TO, 1,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,145.71,0,2,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,214,2017,March,12,24,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient,63.2,0,0,Check-Out,2017-03-31,Spring,2017-03-24T07:00Z +Keep,157,2017,March,12,25,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,54.4,0,0,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,214,2017,March,12,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,46.64,0,0,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,10,2017,March,12,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,46.64,0,0,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,10,2017,March,12,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,44.64,0,0,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,214,2017,March,12,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,44.64,0,0,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,149,2017,March,12,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,44.97,0,1,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,146,2017,March,12,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 242, NULL,0,Transient,37.8,0,1,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,146,2017,March,11,16,4,12,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , 440, NULL,0,Transient-Party,63,0,0,Check-Out,2017-04-01,Spring,2017-03-16T07:00Z +Keep,146,2017,March,11,16,4,12,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , 440, NULL,105,Transient-Party,55.8,0,0,Check-Out,2017-04-01,Spring,2017-03-16T07:00Z +Keep,64,2017,March,13,26,2,4,2,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,94,0,1,Check-Out,2017-04-01,Spring,2017-03-26T07:00Z +Keep,146,2017,March,11,16,4,12,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 440, NULL,0,Transient-Party,63,0,0,Check-Out,2017-04-01,Spring,2017-03-16T07:00Z +Keep,146,2017,March,11,16,4,12,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 440, NULL,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-16T07:00Z +Keep,0,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,2,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,0,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,0,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,0,2017,March,13,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,2,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,1,2017,March,13,31,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,70,0,1,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,1,2017,March,13,31,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,64,2017,March,13,31,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,25,2017,March,13,30,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,72,1,1,Check-Out,2017-04-01,Spring,2017-03-30T07:00Z +Keep,2,2017,March,13,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 521,0,Transient,65,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,139,2017,March,12,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,71,2017,March,13,29,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,72.5,1,0,Check-Out,2017-04-01,Spring,2017-03-29T07:00Z +Keep,166,2017,March,12,25,2,5,2,0,1,BB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,46.8,0,4,Check-Out,2017-04-01,Spring,2017-03-25T07:00Z +Keep,15,2017,March,13,27,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-04-01,Spring,2017-03-27T07:00Z +Keep,9,2017,March,13,30,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,63,1,1,Check-Out,2017-04-01,Spring,2017-03-30T07:00Z +Keep,9,2017,March,13,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,60,0,1,Check-Out,2017-04-01,Spring,2017-03-30T07:00Z +Keep,9,2017,March,13,31,0,1,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,88,0,0,Check-Out,2017-04-01,Spring,2017-03-31T07:00Z +Keep,90,2017,March,13,27,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,59.8,1,2,Check-Out,2017-04-01,Spring,2017-03-27T07:00Z +Keep,103,2017,March,13,29,0,3,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-04-01,Spring,2017-03-29T07:00Z +Keep,90,2017,March,13,27,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,52.8,0,2,Check-Out,2017-04-01,Spring,2017-03-27T07:00Z +Keep,115,2017,March,13,29,0,3,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,88,0,0,Check-Out,2017-04-01,Spring,2017-03-29T07:00Z +Keep,28,2017,March,13,29,0,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,78,0,0,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,17,2017,March,13,30,0,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,100,0,0,Check-Out,2017-04-02,Spring,2017-03-30T07:00Z +Keep,6,2017,March,13,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,64.67,0,1,Check-Out,2017-04-02,Spring,2017-03-30T07:00Z +Keep,28,2017,March,13,31,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,112,2017,March,13,29,0,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,72.5,0,0,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,113,2017,March,13,29,0,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,74,2017,March,13,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,55.14,0,1,Check-Out,2017-04-02,Spring,2017-03-26T07:00Z +Keep,86,2017,March,13,30,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,71.33,0,1,Check-Out,2017-04-02,Spring,2017-03-30T07:00Z +Keep,86,2017,March,13,30,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,73.33,0,1,Check-Out,2017-04-02,Spring,2017-03-30T07:00Z +Keep,64,2017,March,13,31,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,29,2017,March,13,31,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,54,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,7,2017,July,30,26,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,D,1,No Deposit , NULL, NULL,0,Transient,164,0,0,Check-Out,2017-07-27,Summer,2017-07-26T07:00Z +Keep,12,2017,April,13,1,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-04-02,Spring,2017-04-01T07:00Z +Keep,38,2017,March,13,31,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,7,2017,April,13,1,0,1,3,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,116,0,0,Check-Out,2017-04-02,Spring,2017-04-01T07:00Z +Keep,26,2017,March,13,31,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63,0,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,29,2017,March,13,29,0,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,67.5,0,2,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,26,2017,March,13,31,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,1,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,25,2017,March,13,31,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,28,2017,March,13,29,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,50,0,0,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,23,2017,March,13,31,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,32,2017,March,13,29,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,60,0,0,Check-Out,2017-04-02,Spring,2017-03-29T07:00Z +Keep,8,2017,March,13,31,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,94.5,1,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,222,2017,March,13,26,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,52.97,0,1,Check-Out,2017-04-02,Spring,2017-03-26T07:00Z +Keep,71,2017,March,13,31,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,0,2017,March,13,31,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,1,2017,April,13,1,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient,68,0,1,Check-Out,2017-04-02,Spring,2017-04-01T07:00Z +Keep,38,2017,March,13,31,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,65,0,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,0,2017,April,13,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,87,0,0,Check-Out,2017-04-02,Spring,2017-04-01T07:00Z +Keep,0,2017,April,13,1,0,1,2,0,0,BB,AGO,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,110,1,0,Check-Out,2017-04-02,Spring,2017-04-01T07:00Z +Keep,0,2017,June,23,8,0,0,2,0,0,BB,AGO,Direct,Direct, 1,0,1,D,D,1,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2017-06-08,Summer,2017-06-08T07:00Z +Cancel,0,2017,August,34,24,0,1,1,0,0,BB,AGO,Direct,Direct, 1,0,2,G,G,0,No Deposit , NULL, NULL,0,Transient,190,0,0,Canceled,2017-08-24,Summer,2017-08-24T07:00Z +Keep,22,2017,March,13,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,11,2017,March,13,31,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,60,0,0,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,5,2017,March,13,31,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,99.5,1,1,Check-Out,2017-04-02,Spring,2017-03-31T07:00Z +Keep,122,2017,March,13,27,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,47.14,0,1,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,38,2017,March,13,30,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,76.5,0,1,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,151,2017,March,13,30,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,56.72,0,0,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,250,2017,March,13,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,52.43,0,1,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,229,2017,March,13,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,52.43,0,2,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,85,2017,March,13,30,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,69,0,0,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,70,2017,March,13,29,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,34.56,0,0,Check-Out,2017-04-03,Spring,2017-03-29T07:00Z +Keep,62,2017,March,13,29,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,36.96,0,1,Check-Out,2017-04-03,Spring,2017-03-29T07:00Z +Keep,66,2017,March,12,25,3,6,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.56,0,1,Check-Out,2017-04-03,Spring,2017-03-25T07:00Z +Keep,62,2017,April,13,1,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,85,1,0,Check-Out,2017-04-03,Spring,2017-04-01T07:00Z +Keep,52,2017,March,13,27,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,48,0,0,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,52,2017,March,13,27,2,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 464, NULL,0,Transient,48,0,0,Check-Out,2017-04-03,Spring,2017-03-27T07:00Z +Keep,0,2017,April,14,3,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,I,0,No Deposit , 184, NULL,0,Transient,0,0,0,Check-Out,2017-04-03,Spring,2017-04-03T07:00Z +Keep,9,2017,March,13,30,1,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,87,1,1,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,20,2017,April,14,2,1,0,2,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,48,0,0,Check-Out,2017-04-03,Spring,2017-04-02T07:00Z +Keep,63,2017,March,13,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 467, NULL,0,Transient,34.56,0,0,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,170,2017,March,12,20,4,10,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,40,0,3,Check-Out,2017-04-03,Spring,2017-03-20T07:00Z +Keep,5,2017,March,13,31,1,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,74,0,1,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,72,2017,March,13,31,1,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,70.47,0,1,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,92,2017,April,13,1,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,48,0,1,Check-Out,2017-04-03,Spring,2017-04-01T07:00Z +Keep,256,2017,March,13,30,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,45.9,0,2,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,61,2017,April,13,1,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,1,2,Check-Out,2017-04-03,Spring,2017-04-01T07:00Z +Keep,66,2017,March,13,31,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,68.33,1,2,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,19,2017,March,13,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,56.47,0,1,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,60,2017,March,13,31,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,68.47,0,1,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,57,2017,March,13,29,1,4,2,0,1,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,66,0,2,Check-Out,2017-04-03,Spring,2017-03-29T07:00Z +Keep,2,2017,April,14,2,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,84,1,0,Check-Out,2017-04-03,Spring,2017-04-02T07:00Z +Keep,56,2017,March,13,31,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,60,0,1,Check-Out,2017-04-03,Spring,2017-03-31T07:00Z +Keep,32,2017,March,13,29,1,4,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,63.1,0,0,Check-Out,2017-04-03,Spring,2017-03-29T07:00Z +Keep,173,2017,March,13,30,1,3,3,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,89.9,1,4,Check-Out,2017-04-03,Spring,2017-03-30T07:00Z +Keep,121,2017,March,13,28,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.49,0,1,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,20,2017,March,13,28,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,69.29,0,0,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,25,2017,March,13,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 476, NULL,0,Transient,76,0,0,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,159,2017,March,11,14,6,15,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,68.4,0,1,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,159,2017,March,11,14,6,15,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,61.2,0,1,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,159,2017,March,11,14,6,15,1,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 75, NULL,0,Transient,49.5,0,1,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,159,2017,March,11,14,6,15,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,68.4,0,1,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,159,2017,March,11,14,6,15,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,68.4,0,1,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,159,2017,March,11,14,6,15,2,0,0,HB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,70.3,0,2,Check-Out,2017-04-04,Spring,2017-03-14T07:00Z +Keep,29,2017,March,13,30,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,88,0,0,Check-Out,2017-04-04,Spring,2017-03-30T07:00Z +Keep,142,2017,March,13,30,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,70.8,0,2,Check-Out,2017-04-04,Spring,2017-03-30T07:00Z +Keep,30,2017,March,13,28,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,106.74,1,1,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,103,2017,March,13,31,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,42,0,1,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,165,2017,March,13,31,2,2,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,65.96,0,2,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,165,2017,March,13,31,2,2,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,65.96,0,2,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,3,2017,April,14,3,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,61.6,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,3,2017,April,14,3,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,61.6,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,0,2017,April,14,3,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,68,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,42,2017,March,13,28,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,59.29,0,2,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,42,2017,March,13,28,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,59.29,0,2,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,83,2017,March,13,31,2,2,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,150,2017,March,13,28,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,41.98,0,1,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,26,2017,April,14,3,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,62,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,27,2017,April,14,2,2,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,0,Check-Out,2017-04-04,Spring,2017-04-02T07:00Z +Keep,47,2017,March,13,28,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 95, NULL,0,Transient,48,0,2,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,37,2017,March,13,31,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 467, NULL,0,Transient,50.6,0,0,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,22,2017,April,13,1,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,107,0,2,Check-Out,2017-04-04,Spring,2017-04-01T07:00Z +Keep,98,2017,March,13,31,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,77.5,0,1,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,62,2017,March,12,25,4,6,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,77.8,0,1,Check-Out,2017-04-04,Spring,2017-03-25T07:00Z +Keep,24,2017,March,13,26,4,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 418, NULL,0,Transient,61.33,0,0,Check-Out,2017-04-04,Spring,2017-03-26T07:00Z +Keep,26,2017,April,14,3,1,0,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,4,No Deposit , NULL, 281,0,Transient-Party,50,0,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,27,2017,March,13,28,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,50,0,1,Check-Out,2017-04-04,Spring,2017-03-28T07:00Z +Keep,7,2017,April,14,3,1,0,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 184, NULL,0,Transient,122,1,0,Check-Out,2017-04-04,Spring,2017-04-03T07:00Z +Keep,3,2017,April,14,2,2,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,G,0,No Deposit , 241, NULL,0,Transient,140.6,1,1,Check-Out,2017-04-04,Spring,2017-04-02T07:00Z +Keep,18,2017,March,13,31,2,2,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.39,0,1,Check-Out,2017-04-04,Spring,2017-03-31T07:00Z +Keep,211,2017,March,10,8,8,20,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,57.8,0,1,Check-Out,2017-04-05,Spring,2017-03-08T08:00Z +Keep,19,2017,March,13,29,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,49,1,0,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,159,2017,March,12,22,4,10,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,64.8,0,2,Check-Out,2017-04-05,Spring,2017-03-22T07:00Z +Keep,40,2017,April,13,1,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,60,0,0,Check-Out,2017-04-05,Spring,2017-04-01T07:00Z +Keep,155,2017,March,11,15,6,15,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,66.8,0,0,Check-Out,2017-04-05,Spring,2017-03-15T07:00Z +Keep,67,2017,March,13,29,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,36.96,0,2,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,30,2017,March,13,29,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,62.71,0,1,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,149,2017,March,10,8,8,20,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,54,0,0,Check-Out,2017-04-05,Spring,2017-03-08T08:00Z +Keep,155,2017,March,11,15,6,15,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,64.8,0,1,Check-Out,2017-04-05,Spring,2017-03-15T07:00Z +Keep,25,2017,March,13,29,2,5,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,193.71,0,0,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,0,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,45,0,0,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,69,2017,March,13,31,2,3,4,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 147, NULL,0,Transient,59.62,0,0,Check-Out,2017-04-05,Spring,2017-03-31T07:00Z +Keep,1,2017,April,14,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient-Party,61.6,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,1,2017,April,14,4,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient-Party,61.6,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,4,2017,April,14,3,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,45,0,0,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,89,2017,April,14,3,1,1,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,194,0,0,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,20,2017,March,13,29,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,76,0,1,Check-Out,2017-04-05,Spring,2017-03-29T07:00Z +Keep,8,2017,April,14,4,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,60,2017,April,14,4,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,62,0,1,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,76,2017,April,14,2,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,86.2,1,0,Check-Out,2017-04-05,Spring,2017-04-02T07:00Z +Keep,49,2017,April,14,2,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,78.33,0,1,Check-Out,2017-04-05,Spring,2017-04-02T07:00Z +Keep,14,2017,April,14,4,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76,1,1,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,69,1,1,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,20,2017,March,13,28,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,100,0,1,Check-Out,2017-04-05,Spring,2017-03-28T07:00Z +Keep,35,2017,March,13,28,2,6,1,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,36,0,0,Check-Out,2017-04-05,Spring,2017-03-28T07:00Z +Keep,0,2017,March,13,28,2,6,1,0,0,BB,FIN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,1,No Deposit , 8, NULL,0,Transient,36,0,0,Check-Out,2017-04-05,Spring,2017-03-28T07:00Z +Keep,3,2017,April,14,2,2,1,2,0,0,BB,NPL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-04-05,Spring,2017-04-02T07:00Z +Keep,11,2017,April,14,2,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-04-05,Spring,2017-04-02T07:00Z +Keep,32,2017,April,14,5,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-08,Spring,2017-04-05T07:00Z +Keep,38,2017,April,14,2,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2017-04-05,Spring,2017-04-02T07:00Z +Keep,0,2017,April,14,3,1,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,102,1,0,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,29,2017,April,14,3,1,1,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,114,1,1,Check-Out,2017-04-05,Spring,2017-04-03T07:00Z +Keep,33,2017,March,13,28,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,0,1,Check-Out,2017-04-05,Spring,2017-03-28T07:00Z +Keep,1,2017,April,14,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,45,0,0,Check-Out,2017-04-05,Spring,2017-04-04T07:00Z +Keep,54,2017,April,14,2,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,9,2017,March,13,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.47,0,0,Check-Out,2017-04-06,Spring,2017-03-30T07:00Z +Keep,15,2017,April,14,2,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,40.95,0,0,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,42,2017,March,13,30,2,5,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,80.14,0,0,Check-Out,2017-04-06,Spring,2017-03-30T07:00Z +Keep,107,2017,March,13,30,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,70.99,0,1,Check-Out,2017-04-06,Spring,2017-03-30T07:00Z +Keep,27,2017,April,13,1,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-06,Spring,2017-04-01T07:00Z +Keep,37,2017,April,14,4,0,2,3,1,0,BB,FRA,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,147,1,0,Check-Out,2017-04-06,Spring,2017-04-04T07:00Z +Keep,5,2017,April,14,4,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,0,No Deposit , NULL, 270,0,Transient,45,0,0,Check-Out,2017-04-06,Spring,2017-04-04T07:00Z +Keep,74,2017,March,13,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,113.29,0,1,Check-Out,2017-04-06,Spring,2017-03-30T07:00Z +Keep,45,2017,April,14,3,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,68.33,0,1,Check-Out,2017-04-06,Spring,2017-04-03T07:00Z +Keep,31,2017,April,14,3,1,2,2,0,0,BB,EST,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-06,Spring,2017-04-03T07:00Z +Keep,39,2017,March,13,31,2,4,2,1,0,BB,POL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,101.67,1,0,Check-Out,2017-04-06,Spring,2017-03-31T07:00Z +Keep,37,2017,April,14,2,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,82.25,0,2,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,35,2017,April,14,2,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,2,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,167,2017,March,13,26,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,82.68,0,0,Check-Out,2017-04-06,Spring,2017-03-26T07:00Z +Keep,57,2017,March,13,31,2,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,83.33,0,0,Check-Out,2017-04-06,Spring,2017-03-31T07:00Z +Keep,47,2017,April,13,1,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,70,0,1,Check-Out,2017-04-06,Spring,2017-04-01T07:00Z +Keep,31,2017,April,14,2,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-06,Spring,2017-04-02T07:00Z +Keep,29,2017,April,14,3,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,3,Check-Out,2017-04-06,Spring,2017-04-03T07:00Z +Keep,1,2017,April,14,5,0,1,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 523,0,Transient-Party,97,1,0,Check-Out,2017-04-06,Spring,2017-04-05T07:00Z +Keep,48,2017,March,13,31,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,120.57,0,2,Check-Out,2017-04-07,Spring,2017-03-31T07:00Z +Keep,38,2017,March,13,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,83.66,0,0,Check-Out,2017-04-07,Spring,2017-03-31T07:00Z +Keep,34,2017,April,14,3,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,86.5,0,2,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,25,2017,April,14,3,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,77,0,2,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,105,2017,March,12,22,4,12,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,63.56,0,2,Check-Out,2017-04-07,Spring,2017-03-22T07:00Z +Keep,3,2017,April,14,3,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,42,0,0,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,10,2017,April,15,10,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,A,A,1,No Deposit , 146, NULL,0,Group,61,0,1,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,26,2017,April,14,3,1,3,1,0,0,BB,AUT,Corporate,Corporate, 0,0,0,E,E,2,No Deposit , NULL, 281,0,Transient-Party,5.25,1,0,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,194,2017,April,14,2,2,3,2,0,1,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,52.4,0,2,Check-Out,2017-04-07,Spring,2017-04-02T07:00Z +Keep,80,2017,March,13,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,41.97,0,0,Check-Out,2017-04-07,Spring,2017-03-31T07:00Z +Keep,1,2017,April,14,6,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,1,2017,April,14,6,0,1,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,153,2017,April,14,3,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,78.75,0,1,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,61,2017,April,14,4,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,1,2,Check-Out,2017-04-07,Spring,2017-04-04T07:00Z +Keep,27,2017,April,14,3,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 127, NULL,0,Transient,67,1,0,Check-Out,2017-04-07,Spring,2017-04-03T07:00Z +Keep,33,2017,April,13,1,2,4,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,58.5,0,1,Check-Out,2017-04-07,Spring,2017-04-01T07:00Z +Keep,66,2017,April,13,1,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,79,1,1,Check-Out,2017-04-07,Spring,2017-04-01T07:00Z +Keep,1,2017,April,14,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 511,0,Transient,80,0,0,Check-Out,2017-04-07,Spring,2017-04-06T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,0,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 523,0,Transient-Party,0,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,56,2017,April,13,1,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 526, NULL,0,Transient-Party,43.2,0,0,Check-Out,2017-04-07,Spring,2017-04-01T07:00Z +Keep,54,2017,March,13,31,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,56.85,0,2,Check-Out,2017-04-07,Spring,2017-03-31T07:00Z +Keep,15,2017,March,13,30,2,6,2,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 523,0,Transient-Party,120,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,0,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 523,0,Transient-Party,0,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,2,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,120,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,2,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,120,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,2,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 523,0,Transient-Party,120,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,2,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 523,0,Transient-Party,120,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,3,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,C,C,2,No Deposit , NULL, 523,0,Transient-Party,160,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,15,2017,March,13,30,2,6,1,0,0,Undefined,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 523,0,Transient-Party,90,0,0,Check-Out,2017-04-07,Spring,2017-03-30T07:00Z +Keep,56,2017,April,13,1,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,4,No Deposit , 526, NULL,0,Transient-Party,45.2,0,1,Check-Out,2017-04-07,Spring,2017-04-01T07:00Z +Keep,26,2017,April,14,4,0,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,105,0,2,Check-Out,2017-04-08,Spring,2017-04-04T07:00Z +Keep,73,2017,April,13,1,2,5,2,0,0,Undefined,CHE,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,153.61,0,1,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,26,2017,April,14,4,0,4,2,0,0,BB,SRB,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,105,0,2,Check-Out,2017-04-08,Spring,2017-04-04T07:00Z +Keep,170,2017,April,13,1,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.71,1,2,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,81,2017,April,13,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,64.49,0,0,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,12,2017,April,13,1,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,94.95,0,1,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,33,2017,April,14,6,0,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,77,1,0,Check-Out,2017-04-08,Spring,2017-04-06T07:00Z +Keep,57,2017,April,14,5,0,3,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2017-04-08,Spring,2017-04-05T07:00Z +Keep,56,2017,April,14,4,0,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,64,1,1,Check-Out,2017-04-08,Spring,2017-04-04T07:00Z +Keep,56,2017,April,14,4,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,51,0,1,Check-Out,2017-04-08,Spring,2017-04-04T07:00Z +Keep,58,2017,April,14,7,0,1,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,50,0,0,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,57,2017,April,14,5,0,3,2,0,0,BB,PRT,Direct,Corporate, 0,0,0,A,E,4,No Deposit , NULL, NULL,0,Transient,76.67,0,0,Check-Out,2017-04-08,Spring,2017-04-05T07:00Z +Keep,70,2017,April,13,1,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,89.61,0,0,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,137,2017,April,14,2,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,49.7,0,0,Check-Out,2017-04-08,Spring,2017-04-02T07:00Z +Keep,30,2017,April,13,1,2,5,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,81,1,0,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,265,2017,April,13,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,53.97,0,1,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,265,2017,April,13,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,51.97,0,1,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,264,2017,April,13,1,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,72.9,0,0,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,265,2017,April,13,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.37,0,1,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,25,2017,April,13,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,155,1,0,Check-Out,2017-04-08,Spring,2017-04-01T07:00Z +Keep,0,2017,April,14,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,9,2017,April,14,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,2,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,61,2017,April,14,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-04-08,Spring,2017-04-03T07:00Z +Keep,4,2017,April,14,3,1,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,80.85,0,0,Check-Out,2017-04-08,Spring,2017-04-03T07:00Z +Keep,5,2017,April,14,7,0,1,2,0,0,BB,CPV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,1,2017,April,14,7,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,170,2017,April,14,3,1,4,2,2,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,105.3,0,0,Check-Out,2017-04-08,Spring,2017-04-03T07:00Z +Keep,63,2017,April,14,6,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-04-08,Spring,2017-04-06T07:00Z +Keep,4,2017,April,14,7,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,3,Check-Out,2017-04-08,Spring,2017-04-07T07:00Z +Keep,5,2017,April,14,8,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,3,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,15,2017,March,13,30,2,7,2,0,0,SC,PRT,Corporate,Corporate, 0,0,0,A,I,1,No Deposit , NULL, 523,0,Transient-Party,0,0,0,Check-Out,2017-04-08,Spring,2017-03-30T07:00Z +Keep,150,2017,February,9,26,12,30,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,39.41,0,2,Check-Out,2017-04-09,Winter,2017-02-26T08:00Z +Keep,152,2017,April,14,5,0,4,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,75,1,1,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,49,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,E,2,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,151,2017,April,14,4,0,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , NULL, 223,0,Transient-Party,49,1,0,Check-Out,2017-04-09,Spring,2017-04-04T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,E,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,151,2017,April,14,4,0,5,1,0,0,BB,USA,Groups,TA/TO, 0,0,0,A,D,5,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-04T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,49,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,0,2017,April,14,8,0,1,1,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,50,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,43.75,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,5,No Deposit , NULL, 223,0,Transient-Party,48,0,1,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,B,1,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,78,2017,April,14,6,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,82,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,8,2017,April,14,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,0,2,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,78,2017,April,14,6,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,53.25,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,4,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,14,2017,April,14,6,0,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,0,2017,April,14,8,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,2,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,17,2017,March,13,30,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,51.98,0,0,Check-Out,2017-04-09,Spring,2017-03-30T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,252,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 223,100,Transient-Party,61.75,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,209,2017,April,15,9,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,1,1,Check-Out,2017-04-10,Spring,2017-04-09T07:00Z +Keep,2,2017,April,14,7,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,104.5,0,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,1,2017,April,14,7,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,140.6,1,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,1,2017,April,14,8,0,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,223,1,0,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,20,2017,April,14,4,0,5,2,1,0,BB,JAM,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,129.6,0,1,Check-Out,2017-04-09,Spring,2017-04-04T07:00Z +Keep,199,2017,April,14,7,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,52.9,1,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,55,2017,April,14,2,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,71.14,1,1,Check-Out,2017-04-09,Spring,2017-04-02T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,POL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,63,2017,April,14,6,0,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,73.15,0,1,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,4,2017,April,14,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,9,2017,April,14,7,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,3,2017,April,14,8,0,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,92,0,1,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,0,2017,April,14,7,0,2,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,121,0,0,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,73,2017,April,14,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.85,0,0,Check-Out,2017-04-09,Spring,2017-04-02T07:00Z +Keep,0,2017,April,14,8,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,30,2017,April,14,2,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,48.2,0,0,Check-Out,2017-04-09,Spring,2017-04-02T07:00Z +Keep,152,2017,April,14,5,0,4,2,1,0,BB,POL,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,58,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,1,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,58,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,2,2017,April,14,7,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,125,0,1,Check-Out,2017-04-09,Spring,2017-04-07T07:00Z +Keep,2,2017,April,14,8,0,1,2,2,0,BB,PRT,Corporate,Corporate, 0,0,0,C,C,1,No Deposit , NULL, 523,0,Transient,65,0,0,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,153,2017,April,14,6,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,152,2017,April,14,5,0,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,53.25,1,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,0,4,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,80,0,0,Check-Out,2017-04-09,Spring,2017-04-05T07:00Z +Keep,1,2017,April,14,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,122,1,2,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,1,2017,April,14,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,115,0,2,Check-Out,2017-04-09,Spring,2017-04-08T07:00Z +Keep,9,2017,April,14,6,0,3,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,162,0,1,Check-Out,2017-04-09,Spring,2017-04-06T07:00Z +Keep,150,2017,April,14,3,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,67,1,3,Check-Out,2017-04-10,Spring,2017-04-03T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,63,2017,April,14,5,1,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,86.4,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,64,2017,April,14,6,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,54,0,0,Check-Out,2017-04-10,Spring,2017-04-06T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,48,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,4,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , NULL, 223,0,Transient-Party,49.4,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,125,2017,April,14,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-04-10,Spring,2017-04-03T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,69,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,D,4,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,1,2017,April,15,9,1,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,65.6,0,1,Check-Out,2017-04-10,Spring,2017-04-09T07:00Z +Keep,83,2017,April,14,3,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,34.2,0,0,Check-Out,2017-04-10,Spring,2017-04-03T07:00Z +Keep,125,2017,April,14,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,1,Check-Out,2017-04-10,Spring,2017-04-03T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,5,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,72,2017,March,13,31,3,7,1,2,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,99.21,0,1,Check-Out,2017-04-10,Spring,2017-03-31T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,72,2017,March,13,31,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 40, NULL,0,Contract,101.21,0,1,Check-Out,2017-04-10,Spring,2017-03-31T07:00Z +Keep,7,2017,April,14,7,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,92,1,1,Check-Out,2017-04-10,Spring,2017-04-07T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,33,2017,April,14,7,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-10,Spring,2017-04-07T07:00Z +Keep,205,2017,April,14,5,1,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.34,0,1,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,205,2017,April,14,5,1,4,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,35.34,0,1,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,2,1,0,BB,GBR,Groups,TA/TO, 0,0,0,D,F,3,No Deposit , NULL, 223,0,Transient-Party,60,0,1,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,38,2017,April,14,8,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,77,0,1,Check-Out,2017-04-10,Spring,2017-04-08T07:00Z +Keep,207,2017,April,14,6,1,3,1,0,0,BB,NZL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,51,0,1,Check-Out,2017-04-10,Spring,2017-04-06T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,65.6,1,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , NULL, 223,0,Transient-Party,67,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,208,2017,April,14,6,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,2,Check-Out,2017-04-10,Spring,2017-04-06T07:00Z +Keep,30,2017,March,13,31,3,7,2,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,65,0,1,Check-Out,2017-04-10,Spring,2017-03-31T07:00Z +Keep,214,2017,April,14,6,1,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,130,0,2,Check-Out,2017-04-10,Spring,2017-04-06T07:00Z +Keep,20,2017,April,15,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-04-10,Spring,2017-04-09T07:00Z +Keep,152,2017,April,14,5,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-10,Spring,2017-04-05T07:00Z +Keep,29,2017,April,14,6,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107,0,1,Check-Out,2017-04-11,Spring,2017-04-06T07:00Z +Keep,151,2017,April,14,4,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, 223,0,Transient-Party,60,0,2,Check-Out,2017-04-11,Spring,2017-04-04T07:00Z +Keep,36,2017,April,14,3,3,5,2,1,1,BB,FRA,Direct,Direct, 0,0,0,F,H,1,No Deposit , 250, NULL,0,Transient,131.88,1,1,Check-Out,2017-04-11,Spring,2017-04-03T07:00Z +Keep,152,2017,April,14,5,2,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-04-11,Spring,2017-04-05T07:00Z +Keep,152,2017,April,14,5,2,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,1,Check-Out,2017-04-11,Spring,2017-04-05T07:00Z +Keep,112,2017,April,14,6,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-04-11,Spring,2017-04-06T07:00Z +Keep,29,2017,April,15,10,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-11,Spring,2017-04-10T07:00Z +Keep,40,2017,March,13,28,4,10,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97.36,0,1,Check-Out,2017-04-11,Spring,2017-03-28T07:00Z +Keep,240,2017,April,14,4,2,5,2,0,0,BB,IRN,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,57.43,0,1,Check-Out,2017-04-11,Spring,2017-04-04T07:00Z +Keep,0,2017,April,15,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,94,1,2,Check-Out,2017-04-11,Spring,2017-04-10T07:00Z +Keep,10,2017,April,14,8,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2017-04-11,Spring,2017-04-08T07:00Z +Keep,48,2017,April,15,10,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-04-11,Spring,2017-04-10T07:00Z +Keep,16,2017,April,14,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,161.43,0,1,Check-Out,2017-04-11,Spring,2017-04-04T07:00Z +Keep,11,2017,April,14,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,0,Check-Out,2017-04-11,Spring,2017-04-07T07:00Z +Keep,0,2017,April,15,9,2,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2017-04-11,Spring,2017-04-09T07:00Z +Keep,0,2017,April,15,9,2,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient-Party,110,0,1,Check-Out,2017-04-11,Spring,2017-04-09T07:00Z +Keep,13,2017,April,15,9,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,2,No Deposit , 250, NULL,0,Transient,117,1,0,Check-Out,2017-04-11,Spring,2017-04-09T07:00Z +Keep,8,2017,April,14,8,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Check-Out,2017-04-11,Spring,2017-04-08T07:00Z +Keep,1,2017,April,15,10,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-04-11,Spring,2017-04-10T07:00Z +Keep,35,2017,April,14,8,2,2,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,0,2017,March,13,29,4,10,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,75.6,0,0,Check-Out,2017-04-12,Spring,2017-03-29T07:00Z +Keep,25,2017,April,15,9,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.67,0,1,Check-Out,2017-04-12,Spring,2017-04-09T07:00Z +Keep,4,2017,April,15,9,2,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,65.6,0,0,Check-Out,2017-04-12,Spring,2017-04-09T07:00Z +Keep,3,2017,May,18,1,1,2,1,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-04,Spring,2017-05-01T07:00Z +Keep,152,2017,April,14,5,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-04-12,Spring,2017-04-05T07:00Z +Keep,30,2017,April,14,8,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,152,2017,April,14,5,2,5,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,3,No Deposit , NULL, 223,0,Transient-Party,68,0,0,Check-Out,2017-04-12,Spring,2017-04-05T07:00Z +Keep,13,2017,April,15,11,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,76,0,2,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,14,2017,April,15,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,14,2017,April,15,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,13,2017,April,15,11,0,1,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,76,0,2,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,7,2017,April,15,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient-Party,105,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,7,2017,April,15,11,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 240, NULL,0,Transient-Party,105,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,110,2017,April,15,9,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-04-12,Spring,2017-04-09T07:00Z +Keep,39,2017,April,14,8,2,2,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,0,2,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,68,2017,April,15,11,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,24,2017,April,15,9,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135.67,1,2,Check-Out,2017-04-12,Spring,2017-04-09T07:00Z +Keep,155,2017,April,15,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,50.2,1,0,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,53,2017,April,14,5,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,140.62,0,1,Check-Out,2017-04-12,Spring,2017-04-05T07:00Z +Keep,11,2017,April,14,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,11,2017,April,14,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,5,2017,April,15,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2017-04-12,Spring,2017-04-10T07:00Z +Keep,42,2017,April,15,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,102,1,1,Check-Out,2017-04-15,Spring,2017-04-12T07:00Z +Keep,180,2017,April,14,4,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64.1,0,1,Check-Out,2017-04-12,Spring,2017-04-04T07:00Z +Keep,21,2017,April,14,5,2,5,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 15, NULL,0,Transient,137.89,1,0,Check-Out,2017-04-12,Spring,2017-04-05T07:00Z +Keep,36,2017,April,14,3,3,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,111.78,0,0,Check-Out,2017-04-12,Spring,2017-04-03T07:00Z +Keep,13,2017,April,14,8,2,2,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,165,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,39,2017,April,14,8,2,2,2,2,0,BB,IND,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,145,0,1,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,53,2017,April,14,8,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,84,0,2,Check-Out,2017-04-12,Spring,2017-04-08T07:00Z +Keep,3,2017,April,15,10,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-04-12,Spring,2017-04-10T07:00Z +Keep,21,2017,April,15,11,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,99,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,14,2017,April,15,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,1,Check-Out,2017-04-12,Spring,2017-04-11T07:00Z +Keep,4,2017,April,14,6,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,215.5,0,1,Check-Out,2017-04-12,Spring,2017-04-06T07:00Z +Keep,80,2017,March,10,5,12,26,2,0,0,SC,GBR,Groups,TA/TO, 0,0,0,D,I,10,No Deposit , 273, NULL,0,Transient-Party,0.26,0,0,Check-Out,2017-04-12,Spring,2017-03-05T08:00Z +Keep,47,2017,April,15,13,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,2,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,4,2017,April,15,10,1,2,1,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 277,0,Transient,59.33,0,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,4,2017,April,15,10,1,2,1,0,0,HB,BEL,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 277,0,Transient,59.33,0,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,7,2017,April,15,11,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,105,0,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,7,2017,April,15,11,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,90,0,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,61,2017,April,15,9,2,2,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,85.5,0,4,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,42,2017,April,15,12,0,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,63,2017,April,15,10,1,2,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63.95,0,0,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,2,2017,April,15,12,0,1,1,0,0,HB,SRB,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 59,0,Transient,89,0,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,49,2017,April,15,9,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,57,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,5,2017,April,15,12,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient-Party,67.24,0,0,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,14,2017,April,15,9,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,62,2017,April,15,9,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,79.2,0,0,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,62,2017,April,15,9,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient-Party,86.2,1,0,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,10,2017,April,15,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,103.33,0,2,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,200,2017,April,15,9,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.58,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,200,2017,April,15,9,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,46.83,1,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,200,2017,April,15,9,2,2,1,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,57.14,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,45,2017,April,15,9,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,22,2017,April,15,10,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,120.67,1,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,22,2017,April,15,10,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,113.67,0,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,129,2017,April,15,10,1,2,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,152,1,0,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,211,2017,April,14,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,76.64,0,1,Check-Out,2017-04-13,Spring,2017-04-06T07:00Z +Keep,211,2017,April,14,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,69.64,0,1,Check-Out,2017-04-13,Spring,2017-04-06T07:00Z +Keep,58,2017,April,15,12,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,2,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,58,2017,April,15,12,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,2,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,150,2017,April,15,9,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,3,2017,April,15,10,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,99,1,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,211,2017,April,14,6,2,5,2,1,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,107.83,0,0,Check-Out,2017-04-13,Spring,2017-04-06T07:00Z +Keep,29,2017,April,15,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,11,2017,April,15,9,2,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,129.5,1,0,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,9,2017,April,15,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,13,2017,April,15,9,2,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient-Party,115,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,16,2017,April,15,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,2,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,18,2017,April,15,10,1,2,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient-Party,173,0,3,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,2,2017,April,15,10,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,122,0,1,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,40,2017,April,15,10,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 526, NULL,0,Transient,75.6,0,2,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,12,2017,April,15,9,2,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,78.5,0,2,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,12,2017,April,15,9,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,94.5,1,2,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,19,2017,April,15,11,0,2,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 196, NULL,0,Transient,167.25,1,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,2,2017,April,15,12,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,91,0,1,Check-Out,2017-04-13,Spring,2017-04-12T07:00Z +Keep,13,2017,April,15,9,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient-Party,117,0,1,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,133,2017,April,15,11,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62,0,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,17,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,152,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,3,2017,April,15,11,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,127,0,1,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,6,2017,April,15,10,1,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,5,No Deposit , 250, NULL,0,Transient,123.28,0,0,Check-Out,2017-04-13,Spring,2017-04-10T07:00Z +Keep,185,2017,April,15,9,2,2,2,1,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,95.2,1,2,Check-Out,2017-04-13,Spring,2017-04-09T07:00Z +Keep,1,2017,April,15,11,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,116,0,2,Check-Out,2017-04-13,Spring,2017-04-11T07:00Z +Keep,53,2017,April,14,7,2,5,2,1,0,HB,FRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,199.71,1,0,Check-Out,2017-04-14,Spring,2017-04-07T07:00Z +Keep,10,2017,April,15,9,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,76,1,3,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,64,2017,April,15,12,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.6,0,1,Check-Out,2017-04-14,Spring,2017-04-12T07:00Z +Keep,0,2017,April,15,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,56,2017,April,15,11,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,80.71,0,1,Check-Out,2017-04-14,Spring,2017-04-11T07:00Z +Keep,276,2017,April,14,7,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,58.61,0,1,Check-Out,2017-04-14,Spring,2017-04-07T07:00Z +Keep,48,2017,April,15,9,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,1,2,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,84,2017,April,15,13,0,1,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,90,2017,April,15,10,1,3,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.95,0,0,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,166,2017,April,15,10,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,38.55,0,1,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,166,2017,April,15,10,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,36.55,0,1,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,50,2017,April,15,10,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.5,1,0,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,70,2017,April,15,9,2,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,63.32,1,1,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,87,2017,April,15,9,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,144,1,0,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,53,2017,April,15,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,70.53,1,1,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,49,2017,June,23,5,1,2,2,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , 250, NULL,0,Transient,142,1,0,Check-Out,2017-06-08,Summer,2017-06-05T07:00Z +Keep,23,2017,July,27,5,0,3,2,0,0,BB,PRT,Direct,Direct, 1,0,2,A,A,0,No Deposit , 250, NULL,0,Transient,161.25,1,2,Check-Out,2017-07-08,Summer,2017-07-05T07:00Z +Keep,62,2017,April,15,9,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,70.84,0,1,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,62,2017,April,15,9,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,77.84,1,1,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,24,2017,April,15,13,0,1,2,0,0,BB,RUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,115,0,0,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,32,2017,April,15,12,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,72,0,1,Check-Out,2017-04-14,Spring,2017-04-12T07:00Z +Keep,31,2017,April,15,10,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,122.5,0,2,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,39,2017,April,15,10,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.5,0,0,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,38,2017,April,14,8,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,87,1,2,Check-Out,2017-04-14,Spring,2017-04-08T07:00Z +Keep,198,2017,April,15,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,91.5,0,0,Check-Out,2017-04-14,Spring,2017-04-11T07:00Z +Keep,198,2017,April,15,11,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,109,0,1,Check-Out,2017-04-14,Spring,2017-04-11T07:00Z +Keep,0,2017,April,15,11,0,3,2,0,0,BB,ARG,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,141.33,0,1,Check-Out,2017-04-14,Spring,2017-04-11T07:00Z +Keep,44,2017,April,15,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,53,2017,April,15,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,105,0,3,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,82,2017,April,15,9,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,21,2017,April,15,12,0,2,3,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,192,1,1,Check-Out,2017-04-14,Spring,2017-04-12T07:00Z +Keep,71,2017,April,15,13,0,1,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76,0,2,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,26,2017,April,15,10,1,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,113.25,0,1,Check-Out,2017-04-14,Spring,2017-04-10T07:00Z +Keep,88,2017,April,15,9,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,92.58,1,1,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,44,2017,April,15,12,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,110.5,0,0,Check-Out,2017-04-14,Spring,2017-04-12T07:00Z +Keep,10,2017,April,15,9,2,3,1,0,0,HB,KAZ,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,102,0,0,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,68,2017,April,15,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,28,2017,April,15,9,2,3,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,F,0,No Deposit , 240, NULL,0,Transient,158,1,0,Check-Out,2017-04-14,Spring,2017-04-09T07:00Z +Keep,0,2017,April,15,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,105,0,0,Check-Out,2017-04-14,Spring,2017-04-13T07:00Z +Keep,72,2017,April,15,14,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,105,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,4,2017,April,15,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,161,0,0,Check-Out,2017-04-15,Spring,2017-04-14T07:00Z +Keep,49,2017,April,14,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,70.4,0,1,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,108,2017,April,15,10,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-04-15,Spring,2017-04-10T07:00Z +Keep,28,2017,April,15,13,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,127,0,1,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,5,2017,April,14,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,108,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,36,2017,April,15,11,0,4,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,133.5,0,2,Check-Out,2017-04-15,Spring,2017-04-11T07:00Z +Keep,72,2017,April,14,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,48,2017,April,15,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,94,1,1,Check-Out,2017-04-15,Spring,2017-04-10T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,59,2017,April,15,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,79,0,1,Check-Out,2017-04-15,Spring,2017-04-10T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,72,2017,April,14,8,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,72,2017,April,14,8,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,84,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,72,2017,April,14,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,68,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,46,2017,April,14,8,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,84,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,82,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,17,2017,April,15,12,0,3,2,2,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,183.33,0,0,Check-Out,2017-04-15,Spring,2017-04-12T07:00Z +Keep,351,2017,April,14,8,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 298, NULL,0,Transient-Party,84,0,0,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,42,2017,April,15,12,0,3,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,95,0,0,Check-Out,2017-04-15,Spring,2017-04-12T07:00Z +Keep,42,2017,April,15,12,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,102,1,0,Check-Out,2017-04-15,Spring,2017-04-12T07:00Z +Keep,23,2017,April,15,11,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,102.5,0,1,Check-Out,2017-04-15,Spring,2017-04-11T07:00Z +Keep,142,2017,April,15,9,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,84.49,0,2,Check-Out,2017-04-15,Spring,2017-04-09T07:00Z +Keep,142,2017,April,15,9,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,84.49,0,2,Check-Out,2017-04-15,Spring,2017-04-09T07:00Z +Keep,49,2017,April,15,13,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,175,0,0,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,61,2017,April,15,11,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149,1,2,Check-Out,2017-04-15,Spring,2017-04-11T07:00Z +Keep,44,2017,April,14,8,2,5,2,2,0,BB,HUN,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,148.57,0,3,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,74,2017,April,15,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,85,0,2,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,74,2017,April,15,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,85,0,2,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,7,2017,April,15,10,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,65,0,0,Check-Out,2017-04-15,Spring,2017-04-10T07:00Z +Keep,31,2017,April,15,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,152,1,2,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,34,2017,April,14,8,2,5,2,2,0,BB,HUN,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,118.57,0,3,Check-Out,2017-04-15,Spring,2017-04-08T07:00Z +Keep,74,2017,April,15,13,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,85,0,2,Check-Out,2017-04-15,Spring,2017-04-13T07:00Z +Keep,85,2017,April,15,9,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,105.69,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,96,2017,April,15,9,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,41.2,1,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,22,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,127,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,66,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.5,0,1,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,153,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,77,2017,April,15,11,0,5,2,1,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,153.9,0,3,Check-Out,2017-04-16,Spring,2017-04-11T07:00Z +Keep,67,2017,April,15,15,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,62,0,0,Check-Out,2017-04-16,Spring,2017-04-15T07:00Z +Keep,23,2017,April,15,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,116,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.5,0,2,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,18,2017,April,15,14,0,2,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 181, NULL,0,Transient,139,1,0,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,153,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,17,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,152,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,41,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,152,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,34,2017,April,15,9,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,157,2017,April,15,12,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,80,2017,April,15,14,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124,1,1,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,37,2017,April,15,13,0,3,2,2,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,152,1,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,31,2017,April,15,13,0,3,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,127,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,28,2017,April,15,12,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,151.25,0,2,Check-Out,2017-04-16,Spring,2017-04-12T07:00Z +Keep,134,2017,April,15,13,0,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 3, NULL,0,Transient-Party,79.2,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,40,2017,April,15,9,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,16,2017,April,15,13,0,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,270,1,0,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,52,2017,April,15,13,0,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,143,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,5,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,11,2017,April,15,11,0,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.85,0,1,Check-Out,2017-04-16,Spring,2017-04-11T07:00Z +Keep,124,2017,April,15,9,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,81.71,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,36,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,89,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,122,1,2,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,89,2017,April,15,14,0,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,122,0,3,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,73,2017,April,15,13,0,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,115.5,1,0,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,10,2017,April,15,11,0,5,3,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,165.86,0,0,Check-Out,2017-04-16,Spring,2017-04-11T07:00Z +Keep,65,2017,April,15,13,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,124,2017,April,15,9,2,5,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,124,2017,April,15,9,2,5,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 493, NULL,0,Contract,62,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,124,2017,April,15,9,2,5,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-16,Spring,2017-04-09T07:00Z +Keep,39,2017,April,15,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,6,2017,April,15,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,67,2017,April,15,13,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,3,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,156,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,34,2017,April,15,13,0,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,3,No Deposit , 240, NULL,0,Transient,228.5,1,2,Check-Out,2017-04-16,Spring,2017-04-13T07:00Z +Keep,156,2017,April,15,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60,0,2,Check-Out,2017-04-16,Spring,2017-04-14T07:00Z +Keep,52,2017,April,15,13,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,142,0,2,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,88,2017,April,15,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,57.61,0,0,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,58,2017,April,15,12,1,4,2,0,0,HB,CHE,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,171,1,0,Check-Out,2017-04-17,Spring,2017-04-12T07:00Z +Keep,92,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,80.02,0,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,237,2017,April,15,13,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,80.85,0,0,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,267,2017,April,14,8,3,6,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,56.45,0,0,Check-Out,2017-04-17,Spring,2017-04-08T07:00Z +Keep,267,2017,April,14,8,3,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,54.68,0,0,Check-Out,2017-04-17,Spring,2017-04-08T07:00Z +Keep,77,2017,April,15,13,1,3,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,117.75,1,3,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,77,2017,April,15,13,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110.75,0,2,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,41,2017,April,15,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,89.4,0,1,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,222,2017,April,14,8,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-04-17,Spring,2017-04-08T07:00Z +Keep,87,2017,April,16,16,1,0,2,0,0,BB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-04-17,Spring,2017-04-16T07:00Z +Keep,13,2017,April,15,14,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116.67,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,8,2017,April,15,12,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,249,0,1,Check-Out,2017-04-17,Spring,2017-04-12T07:00Z +Keep,32,2017,April,15,14,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,97.5,0,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,42,2017,April,15,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,128.33,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,4,2017,April,15,14,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 181, NULL,0,Transient-Party,148.1,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,4,2017,April,15,14,1,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 181, NULL,0,Transient-Party,148.1,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,18,2017,April,15,12,1,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,111.8,0,0,Check-Out,2017-04-17,Spring,2017-04-12T07:00Z +Keep,2,2017,April,15,15,1,1,2,0,0,BB,AGO,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,118,1,0,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,0,2017,April,17,28,0,1,1,0,0,BB,AGO,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,76,2017,April,15,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,2,Check-Out,2017-04-17,Spring,2017-04-10T07:00Z +Keep,3,2017,April,15,15,1,1,2,0,0,SC,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 330, NULL,0,Transient,0,1,0,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,18,2017,April,15,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,78.85,0,0,Check-Out,2017-04-17,Spring,2017-04-10T07:00Z +Keep,1,2017,April,15,12,1,4,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,137,1,0,Check-Out,2017-04-17,Spring,2017-04-12T07:00Z +Keep,32,2017,April,15,14,1,2,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,197.33,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,30,2017,April,15,14,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,76.67,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,4,2017,April,15,14,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,138.67,1,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,15,2017,April,15,14,1,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,212,0,0,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,34,2017,April,15,13,1,3,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,193,1,0,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,12,2017,April,15,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,146.67,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,38,2017,April,15,14,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,98.33,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,65,2017,April,15,14,1,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,113.67,0,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,65,2017,April,15,14,1,2,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,91.67,1,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,10,2017,April,15,15,1,1,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,158.4,0,1,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,10,2017,April,15,15,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,165.4,1,1,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,0,2017,April,16,16,1,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,131,0,0,Check-Out,2017-04-17,Spring,2017-04-16T07:00Z +Keep,110,2017,April,15,15,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.5,0,2,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,68,2017,April,15,13,1,3,2,0,0,BB,NZL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85.75,1,1,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,72,2017,April,15,14,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,104.33,1,2,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,6,2017,April,15,14,1,2,2,2,0,BB,MAR,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,158.67,1,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,86,2017,April,15,12,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-17,Spring,2017-04-12T07:00Z +Keep,4,2017,April,16,16,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,91,0,0,Check-Out,2017-04-17,Spring,2017-04-16T07:00Z +Keep,108,2017,April,15,14,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,91.67,0,1,Check-Out,2017-04-17,Spring,2017-04-14T07:00Z +Keep,72,2017,April,15,13,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.75,0,1,Check-Out,2017-04-17,Spring,2017-04-13T07:00Z +Keep,17,2017,April,15,15,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,88,0,1,Check-Out,2017-04-17,Spring,2017-04-15T07:00Z +Keep,7,2017,April,16,17,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,83,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,9,2017,April,16,19,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,83,0,0,Check-Out,2017-04-20,Spring,2017-04-19T07:00Z +Keep,73,2017,April,15,15,2,1,2,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,82.07,1,0,Check-Out,2017-04-18,Spring,2017-04-15T07:00Z +Keep,73,2017,April,15,15,2,1,1,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64.17,0,0,Check-Out,2017-04-18,Spring,2017-04-15T07:00Z +Keep,73,2017,April,15,15,2,1,1,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,64.17,0,0,Check-Out,2017-04-18,Spring,2017-04-15T07:00Z +Keep,156,2017,April,15,11,2,5,2,0,0,Undefined,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,111.25,0,2,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,156,2017,April,15,11,2,5,3,0,0,Undefined,FRA,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,180,0,1,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,84,2017,April,15,13,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-04-18,Spring,2017-04-13T07:00Z +Keep,32,2017,April,16,16,2,0,2,0,0,BB,JPN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,87,1,0,Check-Out,2017-04-18,Spring,2017-04-16T07:00Z +Keep,4,2017,April,16,17,1,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,114.95,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,7,2017,April,16,17,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 184, NULL,0,Transient,95,1,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,67,2017,April,14,8,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,1,Check-Out,2017-04-18,Spring,2017-04-08T07:00Z +Keep,67,2017,April,14,8,4,6,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,57.09,0,1,Check-Out,2017-04-18,Spring,2017-04-08T07:00Z +Keep,28,2017,April,16,16,2,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-18,Spring,2017-04-16T07:00Z +Keep,28,2017,April,16,16,2,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-18,Spring,2017-04-16T07:00Z +Keep,7,2017,April,16,17,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient-Party,72.16,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,17,2017,April,15,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,68.95,0,0,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,17,2017,April,15,11,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,68.95,0,0,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,88,2017,April,15,14,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,55.83,0,1,Check-Out,2017-04-18,Spring,2017-04-14T07:00Z +Keep,14,2017,April,15,14,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,137.5,0,2,Check-Out,2017-04-18,Spring,2017-04-14T07:00Z +Keep,2,2017,April,16,18,0,2,2,0,0,BB,CHE,Direct,TA/TO, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,125,0,2,Check-Out,2017-04-20,Spring,2017-04-18T07:00Z +Keep,28,2017,April,15,11,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,228,0,1,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,7,2017,April,16,17,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,88.6,1,1,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,212,2017,April,15,15,2,1,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,E,E,4,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2017-04-18,Spring,2017-04-15T07:00Z +Keep,67,2017,April,16,17,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,0,2017,April,16,18,0,1,2,0,0,BB,BRA,Direct,TA/TO, 1,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,101,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,61,2017,April,16,17,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,1,1,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,0,2017,April,16,18,0,1,2,0,0,BB,BRA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,91,1,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,69,2017,April,15,14,2,2,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111.5,0,0,Check-Out,2017-04-18,Spring,2017-04-14T07:00Z +Keep,180,2017,April,16,17,1,0,2,0,0,BB,AUS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,198,2017,April,15,15,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,98.5,1,1,Check-Out,2017-04-18,Spring,2017-04-15T07:00Z +Keep,0,2017,April,16,17,1,0,2,1,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 112,0,Transient,70,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,75,2017,April,15,13,2,3,2,0,0,BB,LVA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.6,1,1,Check-Out,2017-04-18,Spring,2017-04-13T07:00Z +Keep,0,2017,April,16,17,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,172,2017,April,15,13,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,105.5,0,0,Check-Out,2017-04-18,Spring,2017-04-13T07:00Z +Keep,85,2017,April,15,11,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient-Party,142.5,0,1,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,85,2017,April,15,11,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient-Party,142.5,0,1,Check-Out,2017-04-18,Spring,2017-04-11T07:00Z +Keep,11,2017,April,16,16,2,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,119.75,1,1,Check-Out,2017-04-18,Spring,2017-04-16T07:00Z +Keep,0,2017,April,16,17,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,98,1,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,3,2017,April,16,17,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 184, NULL,0,Transient,133,1,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,216,2017,April,15,9,4,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,94.9,1,2,Check-Out,2017-04-18,Spring,2017-04-09T07:00Z +Keep,216,2017,April,15,9,4,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,87.9,0,2,Check-Out,2017-04-18,Spring,2017-04-09T07:00Z +Keep,22,2017,April,15,14,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109.5,0,2,Check-Out,2017-04-18,Spring,2017-04-14T07:00Z +Keep,67,2017,April,15,13,2,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-04-18,Spring,2017-04-13T07:00Z +Keep,0,2017,April,16,17,1,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2017-04-18,Spring,2017-04-17T07:00Z +Keep,86,2017,April,15,14,2,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,133.25,0,1,Check-Out,2017-04-18,Spring,2017-04-14T07:00Z +Keep,89,2017,April,15,12,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,132.86,0,1,Check-Out,2017-04-19,Spring,2017-04-12T07:00Z +Keep,164,2017,April,15,12,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,126.64,1,3,Check-Out,2017-04-19,Spring,2017-04-12T07:00Z +Keep,171,2017,April,15,11,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,77.19,0,1,Check-Out,2017-04-19,Spring,2017-04-11T07:00Z +Keep,9,2017,April,15,14,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Check-Out,2017-04-19,Spring,2017-04-14T07:00Z +Keep,73,2017,April,15,14,2,3,2,0,0,BB,SRB,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,77,1,1,Check-Out,2017-04-19,Spring,2017-04-14T07:00Z +Keep,76,2017,April,16,16,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2017-04-19,Spring,2017-04-16T07:00Z +Keep,80,2017,April,15,13,2,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,168.25,0,0,Check-Out,2017-04-19,Spring,2017-04-13T07:00Z +Keep,63,2017,April,15,12,2,5,2,0,1,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,82.86,0,2,Check-Out,2017-04-19,Spring,2017-04-12T07:00Z +Keep,7,2017,April,16,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 282,0,Transient-Party,45,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,126,2017,April,16,17,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,54,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,126,2017,April,16,17,1,1,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,54,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,12,2017,April,16,18,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient-Party,96,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,IRL,Complementary,TA/TO, 0,0,0,F,F,1,No Deposit , 40, NULL,0,Transient,0,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,12,2017,April,16,18,0,1,1,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient-Party,96,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,126,2017,April,16,17,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,54,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,27,2017,April,15,14,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,94,0,1,Check-Out,2017-04-19,Spring,2017-04-14T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,0,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,0,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,F,F,0,No Deposit , 40, NULL,0,Transient,0,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,PRT,Complementary,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,0,0,2,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,192,2017,April,16,17,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,1,2017,April,16,18,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,107.1,1,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,126,2017,April,16,17,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,54,0,1,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,4,2017,April,16,16,2,1,2,1,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,139.95,1,1,Check-Out,2017-04-19,Spring,2017-04-16T07:00Z +Keep,60,2017,April,15,15,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,104,0,2,Check-Out,2017-04-19,Spring,2017-04-15T07:00Z +Keep,5,2017,April,16,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 104, NULL,0,Transient,65,0,0,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,100,2017,April,16,16,2,1,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-04-19,Spring,2017-04-16T07:00Z +Keep,1,2017,April,16,18,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,45,0,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,1,2017,April,16,18,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,50,0,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,1,2017,April,16,18,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,50,0,1,Check-Out,2017-04-19,Spring,2017-04-18T07:00Z +Keep,0,2017,April,16,17,1,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,0,2017,April,16,17,1,1,1,0,0,BB,POL,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2017-04-19,Spring,2017-04-17T07:00Z +Keep,1,2017,April,16,20,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient-Party,0,0,0,Check-Out,2017-04-20,Spring,2017-04-20T07:00Z +Keep,1,2017,April,16,20,0,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Transient-Party,0,0,0,Check-Out,2017-04-20,Spring,2017-04-20T07:00Z +Keep,0,2017,April,17,27,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,D,0,No Deposit , NULL, 195,0,Transient-Party,45,0,0,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,128,2017,April,15,13,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,61.71,0,1,Check-Out,2017-04-20,Spring,2017-04-13T07:00Z +Keep,128,2017,April,15,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,72.71,0,1,Check-Out,2017-04-20,Spring,2017-04-13T07:00Z +Keep,0,2017,April,16,18,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,91,0,0,Check-Out,2017-04-20,Spring,2017-04-18T07:00Z +Keep,142,2017,April,15,13,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,115.57,0,3,Check-Out,2017-04-20,Spring,2017-04-13T07:00Z +Keep,27,2017,April,16,16,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.94,0,1,Check-Out,2017-04-20,Spring,2017-04-16T07:00Z +Keep,60,2017,April,15,15,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,3,Check-Out,2017-04-20,Spring,2017-04-15T07:00Z +Keep,33,2017,April,14,8,4,8,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,106.85,0,1,Check-Out,2017-04-20,Spring,2017-04-08T07:00Z +Keep,26,2017,April,16,16,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,78.85,0,1,Check-Out,2017-04-20,Spring,2017-04-16T07:00Z +Keep,27,2017,April,16,19,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,95,0,1,Check-Out,2017-04-20,Spring,2017-04-19T07:00Z +Keep,254,2017,April,15,9,4,7,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60.16,0,2,Check-Out,2017-04-20,Spring,2017-04-09T07:00Z +Keep,100,2017,April,15,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-04-20,Spring,2017-04-15T07:00Z +Keep,20,2017,April,16,16,2,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,156.5,1,1,Check-Out,2017-04-20,Spring,2017-04-16T07:00Z +Keep,0,2017,April,16,19,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.75,1,1,Check-Out,2017-04-20,Spring,2017-04-19T07:00Z +Keep,167,2017,April,15,11,2,7,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,78.8,0,2,Check-Out,2017-04-20,Spring,2017-04-11T07:00Z +Keep,31,2017,April,15,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-04-20,Spring,2017-04-13T07:00Z +Keep,67,2017,April,16,16,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,1,2,Check-Out,2017-04-20,Spring,2017-04-16T07:00Z +Keep,0,2017,April,16,19,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,80.75,0,0,Check-Out,2017-04-20,Spring,2017-04-19T07:00Z +Keep,1,2017,April,15,15,2,3,1,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,98.88,0,1,Check-Out,2017-04-20,Spring,2017-04-15T07:00Z +Keep,75,2017,April,15,15,2,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,46.2,0,0,Check-Out,2017-04-21,Spring,2017-04-15T07:00Z +Keep,95,2017,April,15,12,2,7,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-04-21,Spring,2017-04-12T07:00Z +Keep,130,2017,April,15,15,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,87,1,0,Check-Out,2017-04-21,Spring,2017-04-15T07:00Z +Keep,72,2017,April,15,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,89.14,1,1,Check-Out,2017-04-21,Spring,2017-04-14T07:00Z +Keep,60,2017,April,16,17,1,3,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,153.25,0,2,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,83,2017,April,15,15,2,4,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,G,1,No Deposit , 250, NULL,0,Transient,127.75,0,1,Check-Out,2017-04-21,Spring,2017-04-15T07:00Z +Keep,2,2017,April,16,20,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, 530,0,Transient,72,1,0,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,10,2017,May,20,15,1,1,1,0,0,BB,PRT,Corporate,Direct, 1,0,1,A,D,0,No Deposit , NULL, 530,0,Transient,63.5,1,0,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,14,2017,April,16,19,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 104, NULL,0,Transient,65,0,0,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,94,2017,April,15,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-04-21,Spring,2017-04-14T07:00Z +Keep,6,2017,April,16,19,0,2,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,121,0,0,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,2,2017,April,16,19,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 15, NULL,0,Transient,70.4,0,0,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,4,2017,June,26,26,1,3,1,0,0,BB,PRT,Direct,TA/TO, 1,0,1,A,A,0,No Deposit , NULL, 539,0,Group,82,1,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,11,2017,July,27,3,1,3,1,0,0,BB,PRT,Direct,TA/TO, 1,0,2,A,A,0,No Deposit , NULL, 539,0,Transient,92,0,0,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,174,2017,April,16,17,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,3,No Deposit , 240, NULL,0,Transient-Party,82.75,1,2,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,174,2017,April,16,17,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,81,0,2,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,47,2017,April,16,19,0,2,2,1,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,138,0,2,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,34,2017,April,16,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,8,2017,April,16,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,45,0,0,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,111,2017,April,16,19,0,2,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,109.8,0,0,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,137,2017,April,16,19,0,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 177, NULL,0,Transient,43.2,0,1,Check-Out,2017-04-21,Spring,2017-04-19T07:00Z +Keep,8,2017,April,16,20,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 47,0,Transient,45,1,1,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,1,2017,April,16,17,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,108,1,1,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,87,2017,April,16,17,1,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,131,1,1,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,22,2017,April,16,17,1,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,115.5,0,1,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,0,2017,April,16,20,0,1,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,68,0,1,Check-Out,2017-04-21,Spring,2017-04-20T07:00Z +Keep,74,2017,April,16,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2017-04-21,Spring,2017-04-17T07:00Z +Keep,30,2017,April,15,14,2,5,2,0,0,SC,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,4,No Deposit , 420, NULL,0,Transient,3,0,0,Check-Out,2017-04-21,Spring,2017-04-14T07:00Z +Keep,0,2017,April,16,20,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,102,0,0,Check-Out,2017-04-22,Spring,2017-04-20T07:00Z +Keep,23,2017,April,16,20,0,2,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,99,0,0,Check-Out,2017-04-22,Spring,2017-04-20T07:00Z +Keep,24,2017,April,16,21,0,1,1,0,0,BB,NLD,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,99,0,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,23,2017,April,16,20,0,2,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,99,1,0,Check-Out,2017-04-22,Spring,2017-04-20T07:00Z +Keep,32,2017,April,16,16,2,4,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.84,0,0,Check-Out,2017-04-22,Spring,2017-04-16T07:00Z +Keep,95,2017,April,15,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,63,2017,April,16,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-04-22,Spring,2017-04-17T07:00Z +Keep,63,2017,April,16,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-04-22,Spring,2017-04-17T07:00Z +Keep,63,2017,April,16,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2017-04-22,Spring,2017-04-17T07:00Z +Keep,23,2017,April,16,20,0,2,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,106,1,0,Check-Out,2017-04-22,Spring,2017-04-20T07:00Z +Keep,30,2017,April,16,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,108,2017,April,16,21,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,30,2017,April,16,21,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,29,2017,April,16,19,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,92,1,1,Check-Out,2017-04-22,Spring,2017-04-19T07:00Z +Keep,0,2017,April,16,21,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,1,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,8,2017,April,16,21,0,1,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,D,0,No Deposit , NULL, 367,0,Transient,0,1,1,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,232,2017,April,15,15,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56.89,0,2,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,108,2017,April,16,22,0,1,2,0,0,BB,IRL,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,74.25,0,2,Check-Out,2017-04-23,Spring,2017-04-22T07:00Z +Keep,66,2017,April,16,18,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-22,Spring,2017-04-18T07:00Z +Keep,1,2017,April,16,19,0,3,1,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,87,0,1,Check-Out,2017-04-22,Spring,2017-04-19T07:00Z +Keep,91,2017,April,15,15,2,5,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.57,0,1,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,206,2017,April,16,18,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-04-22,Spring,2017-04-18T07:00Z +Keep,98,2017,April,15,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,58.02,0,1,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,2,2017,April,16,21,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,185,0,0,Check-Out,2017-04-22,Spring,2017-04-21T07:00Z +Keep,73,2017,April,15,15,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,43.2,0,0,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,4,2017,April,16,16,2,4,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.95,1,1,Check-Out,2017-04-22,Spring,2017-04-16T07:00Z +Keep,6,2017,April,16,19,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,1,Check-Out,2017-04-22,Spring,2017-04-19T07:00Z +Keep,98,2017,April,16,22,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,8,0,0,Check-Out,2017-04-24,Spring,2017-04-22T07:00Z +Keep,84,2017,April,15,15,2,5,2,0,1,HB,NGA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,83.22,0,0,Check-Out,2017-04-22,Spring,2017-04-15T07:00Z +Keep,8,2017,April,16,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,8,0,1,Check-Out,2017-04-23,Spring,2017-04-22T07:00Z +Keep,124,2017,April,15,9,4,10,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 493, NULL,0,Contract,106.86,0,0,Check-Out,2017-04-23,Spring,2017-04-09T07:00Z +Keep,58,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 493, NULL,0,Contract,82,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,128,2017,April,15,13,2,8,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-13T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,128,2017,April,15,13,2,8,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-13T07:00Z +Keep,76,2017,April,15,15,2,6,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.13,0,2,Check-Out,2017-04-23,Spring,2017-04-15T07:00Z +Keep,128,2017,April,15,13,2,8,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-13T07:00Z +Keep,123,2017,April,14,8,4,11,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-08T07:00Z +Keep,131,2017,April,16,16,2,5,3,0,0,HB,DEU,Groups,TA/TO, 0,0,0,C,C,2,No Deposit , 493, NULL,0,Contract,105,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,47,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,0,2017,April,16,21,0,2,1,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,137,1,0,Check-Out,2017-04-23,Spring,2017-04-21T07:00Z +Keep,6,2017,April,16,19,0,4,1,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,121,0,0,Check-Out,2017-04-23,Spring,2017-04-19T07:00Z +Keep,49,2017,April,15,15,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.7,0,0,Check-Out,2017-04-23,Spring,2017-04-15T07:00Z +Keep,25,2017,April,16,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,150,2017,April,16,17,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129,1,1,Check-Out,2017-04-23,Spring,2017-04-17T07:00Z +Keep,23,2017,April,16,20,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,99,0,0,Check-Out,2017-04-23,Spring,2017-04-20T07:00Z +Keep,12,2017,April,16,18,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,47.5,0,0,Check-Out,2017-04-23,Spring,2017-04-18T07:00Z +Keep,0,2017,April,16,21,0,2,2,0,0,BB,BGR,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 240, NULL,0,Transient,125,0,1,Check-Out,2017-04-23,Spring,2017-04-21T07:00Z +Keep,153,2017,April,16,19,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,65.87,1,1,Check-Out,2017-04-23,Spring,2017-04-19T07:00Z +Keep,3,2017,April,16,21,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,157,1,0,Check-Out,2017-04-23,Spring,2017-04-21T07:00Z +Keep,63,2017,April,16,16,2,5,2,1,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,87.5,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,65,2017,April,16,16,2,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,95,2017,April,16,22,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,1,1,Check-Out,2017-04-23,Spring,2017-04-22T07:00Z +Keep,21,2017,April,16,18,0,5,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,112,0,1,Check-Out,2017-04-23,Spring,2017-04-18T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,40,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,E,1,No Deposit , 493, NULL,0,Contract,107,1,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,57,2017,April,15,14,2,7,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 493, NULL,0,Contract,92,0,0,Check-Out,2017-04-23,Spring,2017-04-14T07:00Z +Keep,52,2017,April,16,21,0,2,1,0,0,HB,CHE,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 493, NULL,0,Contract,60,0,0,Check-Out,2017-04-23,Spring,2017-04-21T07:00Z +Keep,47,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 493, NULL,0,Contract,83,1,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,124,2017,April,15,9,4,10,2,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-09T07:00Z +Keep,177,2017,April,16,16,2,5,2,0,0,BB,DNK,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,100.21,1,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,CZE,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 493, NULL,0,Contract,90,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,0,2017,April,16,20,0,3,2,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-04-23,Spring,2017-04-20T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,CHE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,48,2017,April,16,17,1,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-17T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,CHE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,CHE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 493, NULL,0,Contract,80,0,1,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,131,2017,April,16,16,2,5,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 493, NULL,0,Contract,80,0,0,Check-Out,2017-04-23,Spring,2017-04-16T07:00Z +Keep,138,2017,April,16,17,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2017-04-23,Spring,2017-04-17T07:00Z +Keep,124,2017,April,15,9,4,10,2,1,0,HB,PRT,Groups,TA/TO, 0,0,0,H,H,0,No Deposit , 493, NULL,0,Contract,120,0,0,Check-Out,2017-04-23,Spring,2017-04-09T07:00Z +Keep,84,2017,April,16,18,1,5,1,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,84,2017,April,16,18,1,5,1,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,114.6,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,63,2017,April,16,20,1,3,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 307,0,Transient-Party,90,0,0,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,63,2017,April,16,20,1,3,1,0,0,BB,ITA,Corporate,Corporate, 0,0,0,A,A,3,No Deposit , NULL, 307,0,Transient-Party,90,0,0,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,85,2017,April,16,19,1,4,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,AUS,Groups,Corporate, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,RUS,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,RUS,Corporate,Corporate, 0,0,0,A,C,3,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,76,2017,April,16,21,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 241, NULL,0,Transient,47.55,0,1,Check-Out,2017-04-24,Spring,2017-04-21T07:00Z +Keep,23,2017,April,16,20,1,3,2,0,0,BB,FRA,Groups,Corporate, 0,0,0,A,F,2,No Deposit , NULL, 307,0,Transient-Party,95,0,0,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,84,2017,April,16,18,1,5,1,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,1,2017,April,16,21,1,2,1,0,0,BB,DEU,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-21T07:00Z +Keep,84,2017,April,16,18,1,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,3,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,84,2017,April,16,18,1,5,1,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,84,2017,April,16,18,1,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,74.6,0,1,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,84,2017,April,16,18,1,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,2,2017,April,16,21,1,2,1,0,0,BB,RUS,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,187.33,1,0,Check-Out,2017-04-24,Spring,2017-04-21T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,168,2017,April,16,19,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,62.6,0,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,168,2017,April,16,19,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,60.6,0,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,62,2017,April,16,19,1,4,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 307,0,Transient-Party,92,1,0,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,0,2017,April,16,20,1,3,1,0,0,BB,SVN,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,168,2017,April,16,19,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,60.6,0,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,47,2017,April,16,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-04-24,Spring,2017-04-17T07:00Z +Keep,168,2017,April,16,19,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,67.6,1,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,168,2017,April,16,19,1,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,67.6,1,1,Check-Out,2017-04-24,Spring,2017-04-19T07:00Z +Keep,42,2017,April,16,18,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,70,0,1,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,61,2017,April,16,18,1,5,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 307,0,Transient-Party,85,0,0,Check-Out,2017-04-24,Spring,2017-04-18T07:00Z +Keep,0,2017,April,16,20,1,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,74.6,0,0,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,108,2017,April,16,20,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,93.75,0,2,Check-Out,2017-04-24,Spring,2017-04-20T07:00Z +Keep,64,2017,April,16,21,1,2,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,7,No Deposit , NULL, 307,0,Transient-Party,90,0,1,Check-Out,2017-04-24,Spring,2017-04-21T07:00Z +Keep,1,2017,April,17,25,0,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136,0,1,Check-Out,2017-04-26,Spring,2017-04-25T07:00Z +Keep,74,2017,April,16,20,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,100,0,1,Check-Out,2017-04-25,Spring,2017-04-20T07:00Z +Keep,1,2017,April,17,24,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,1,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,140,2017,April,17,24,1,0,1,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,74,0,1,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,140,2017,April,17,24,1,0,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient,74,0,1,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,267,2017,April,16,22,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 196, NULL,0,Transient,54,0,0,Check-Out,2017-04-25,Spring,2017-04-22T07:00Z +Keep,4,2017,April,17,24,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,1,No Deposit , NULL, 437,0,Transient,72,1,0,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,75,2017,April,16,22,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,78.85,0,0,Check-Out,2017-04-25,Spring,2017-04-22T07:00Z +Keep,63,2017,April,16,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-04-25,Spring,2017-04-18T07:00Z +Keep,0,2017,April,17,24,1,0,2,1,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,126,1,0,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,61,2017,April,16,18,2,5,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 307,0,Transient-Party,90,1,1,Check-Out,2017-04-25,Spring,2017-04-18T07:00Z +Keep,61,2017,April,16,18,2,5,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 307,0,Transient-Party,90,1,0,Check-Out,2017-04-25,Spring,2017-04-18T07:00Z +Keep,212,2017,April,16,20,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Check-Out,2017-04-25,Spring,2017-04-20T07:00Z +Keep,4,2017,April,17,24,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,2,No Deposit , NULL, 437,0,Transient,65,0,0,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,4,2017,April,17,24,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,F,2,No Deposit , NULL, 437,0,Transient,65,0,0,Check-Out,2017-04-25,Spring,2017-04-24T07:00Z +Keep,200,2017,April,16,22,2,1,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,G,0,No Deposit , 250, NULL,0,Transient,44.88,0,0,Check-Out,2017-04-25,Spring,2017-04-22T07:00Z +Keep,60,2017,April,16,17,3,5,2,0,0,BB,PRT,Groups,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 307,0,Transient-Party,90,0,1,Check-Out,2017-04-25,Spring,2017-04-17T07:00Z +Keep,142,2017,April,16,19,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,81.43,0,1,Check-Out,2017-04-26,Spring,2017-04-19T07:00Z +Keep,184,2017,April,16,19,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,100.86,1,2,Check-Out,2017-04-26,Spring,2017-04-19T07:00Z +Keep,184,2017,April,16,19,2,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,93.86,0,2,Check-Out,2017-04-26,Spring,2017-04-19T07:00Z +Keep,0,2017,April,17,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,80,0,0,Check-Out,2017-04-26,Spring,2017-04-25T07:00Z +Keep,0,2017,April,17,25,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,80,1,0,Check-Out,2017-04-26,Spring,2017-04-25T07:00Z +Keep,1,2017,June,26,27,0,1,1,0,0,BB,PRT,Direct,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,85,1,0,Check-Out,2017-06-28,Summer,2017-06-27T07:00Z +Keep,198,2017,April,16,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,43.2,0,0,Check-Out,2017-04-26,Spring,2017-04-19T07:00Z +Keep,0,2017,April,17,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,84,0,0,Check-Out,2017-04-26,Spring,2017-04-25T07:00Z +Keep,60,2017,April,16,17,3,6,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 307,0,Transient-Party,85,1,0,Check-Out,2017-04-26,Spring,2017-04-17T07:00Z +Keep,60,2017,April,16,17,3,6,1,0,0,BB,ITA,Groups,Corporate, 0,0,0,A,A,2,No Deposit , NULL, 307,0,Transient-Party,92,0,0,Check-Out,2017-04-26,Spring,2017-04-17T07:00Z +Keep,80,2017,April,17,24,1,1,2,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,152,1,2,Check-Out,2017-04-26,Spring,2017-04-24T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,237,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,34,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,204,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,3,No Deposit , 502, NULL,1,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 502, NULL,0,Transient-Party,90,0,1,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,1,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,2,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,203,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,0,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 502, NULL,0,Transient-Party,75,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,75,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,75,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,75,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,1,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 502, NULL,0,Transient-Party,75,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,109,2017,April,17,25,0,2,2,0,0,HB,AUT,Groups,TA/TO, 0,0,0,A,D,3,No Deposit , 502, NULL,0,Transient-Party,90,0,0,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,73,2017,April,16,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,3,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,12,2017,April,17,23,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 40, NULL,0,Contract,45.5,0,0,Check-Out,2017-04-27,Spring,2017-04-23T07:00Z +Keep,4,2017,April,17,26,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 112,0,Transient,45,0,0,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,168,2017,April,16,19,2,6,2,2,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,192.5,1,0,Check-Out,2017-04-27,Spring,2017-04-19T07:00Z +Keep,28,2017,April,16,17,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.86,0,0,Check-Out,2017-04-27,Spring,2017-04-17T07:00Z +Keep,104,2017,April,17,25,0,2,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,76.81,0,1,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,99,2017,April,17,25,0,2,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,87.78,0,1,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,106,2017,April,17,25,0,2,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,76.81,0,1,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,105,2017,April,17,25,0,2,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,76.81,0,1,Check-Out,2017-04-27,Spring,2017-04-25T07:00Z +Keep,31,2017,April,16,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,54.29,0,0,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,92,2017,April,16,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.85,0,0,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,82,2017,April,16,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,71,2017,April,16,19,2,6,2,0,0,BB,AUS,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient-Party,104.5,0,0,Check-Out,2017-04-27,Spring,2017-04-19T07:00Z +Keep,71,2017,April,16,19,2,6,2,0,1,BB,AUS,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient-Party,105.13,1,0,Check-Out,2017-04-27,Spring,2017-04-19T07:00Z +Keep,3,2017,April,17,24,1,2,2,0,0,BB,AUS,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,131,0,0,Check-Out,2017-04-27,Spring,2017-04-24T07:00Z +Keep,6,2017,April,17,26,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 126, NULL,0,Transient,80,1,0,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,5,2017,July,30,25,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Group,190,0,0,Check-Out,2017-07-26,Summer,2017-07-25T07:00Z +Keep,76,2017,April,17,26,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,1,Check-Out,2017-04-27,Spring,2017-04-26T07:00Z +Keep,195,2017,April,16,20,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,73.79,0,1,Check-Out,2017-04-27,Spring,2017-04-20T07:00Z +Keep,6,2017,April,17,23,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,103.36,0,1,Check-Out,2017-04-27,Spring,2017-04-23T07:00Z +Keep,250,2017,April,17,28,2,4,2,2,0,BB,POL,Direct,Direct, 0,0,0,G,G,3,No Deposit , 250, NULL,0,Transient-Party,108,0,1,Check-Out,2017-05-04,Spring,2017-04-28T07:00Z +Keep,250,2017,April,17,28,2,4,2,2,0,BB,POL,Direct,Direct, 0,0,0,G,G,3,No Deposit , 250, NULL,0,Transient-Party,108,0,1,Check-Out,2017-05-04,Spring,2017-04-28T07:00Z +Keep,12,2017,April,17,25,0,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,196,1,1,Check-Out,2017-04-28,Spring,2017-04-25T07:00Z +Keep,93,2017,April,16,22,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,92.85,0,0,Check-Out,2017-04-28,Spring,2017-04-22T07:00Z +Keep,93,2017,April,16,22,2,4,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 40, NULL,0,Contract,51.2,0,0,Check-Out,2017-04-28,Spring,2017-04-22T07:00Z +Keep,4,2017,April,17,26,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 112,0,Transient,45,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,85,2017,April,17,23,2,3,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 40, NULL,0,Contract,90.95,0,0,Check-Out,2017-04-28,Spring,2017-04-23T07:00Z +Keep,222,2017,April,16,22,2,4,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,116.8,1,1,Check-Out,2017-04-28,Spring,2017-04-22T07:00Z +Keep,26,2017,April,17,26,0,2,3,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,H,1,No Deposit , NULL, 390,0,Transient,90,0,0,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,24,2017,April,17,26,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,117.6,0,1,Check-Out,2017-04-28,Spring,2017-04-26T07:00Z +Keep,0,2017,April,17,27,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,104.75,1,1,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,0,2017,April,17,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,77,0,0,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,0,2017,April,17,24,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,188,1,0,Check-Out,2017-04-28,Spring,2017-04-24T07:00Z +Keep,1,2017,April,17,27,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,71,0,1,Check-Out,2017-04-28,Spring,2017-04-27T07:00Z +Keep,24,2017,April,17,27,0,2,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83,1,1,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,3,2017,April,17,27,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,138,1,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,31,2017,April,17,23,2,4,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,106,2017,April,16,19,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,86,0,0,Check-Out,2017-04-29,Spring,2017-04-19T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,23,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,0,Transient-Party,116,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,31,2017,April,17,23,2,4,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,6,2017,April,17,28,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,160,1,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,7,2017,April,17,29,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.67,1,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,H,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,95,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,6,2017,April,17,28,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,153,0,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,7,2017,April,17,29,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,115.67,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,31,2017,April,17,23,2,4,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,185,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,E,F,3,No Deposit , 298, NULL,154,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,158,2017,April,17,27,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,94.5,0,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,31,2017,April,17,23,2,4,1,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 298, NULL,0,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,31,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 298, NULL,0,Transient-Party,93,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,44,2017,April,17,28,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 241, NULL,0,Transient,92,0,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,1,2017,April,17,28,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,45,0,0,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,1,2017,April,17,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 330, NULL,0,Transient-Party,50,0,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,1,2017,April,17,28,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,50,0,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,36,2017,April,17,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,F,1,No Deposit , 240, NULL,0,Transient,172,1,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 527, NULL,0,Transient-Party,125.43,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,23,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,0,Transient-Party,116,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,23,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,0,Transient-Party,117.71,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,0,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 273, NULL,0,Transient-Party,47.44,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , 273, NULL,0,Transient-Party,65.1,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 273, NULL,0,Transient-Party,49.16,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,23,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 527, NULL,0,Transient-Party,117.71,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,239,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,0,2017,May,19,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,0,2017,May,19,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,0,2017,May,19,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,75.09,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 527, NULL,0,Transient-Party,125.43,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,0,2017,April,17,27,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,252,2017,April,16,22,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 273, NULL,0,Transient-Party,49.16,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,128,2017,April,16,22,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,49.16,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,288,2017,April,16,20,2,7,2,0,1,Undefined,SWE,Groups,TA/TO, 0,0,0,G,G,0,No Deposit , 527, NULL,14,Transient-Party,131,0,1,Check-Out,2017-04-29,Spring,2017-04-20T07:00Z +Keep,288,2017,April,16,20,2,7,2,0,1,Undefined,SWE,Groups,TA/TO, 0,0,0,C,C,0,No Deposit , 527, NULL,14,Transient,131,0,0,Check-Out,2017-04-29,Spring,2017-04-20T07:00Z +Keep,234,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,208,2017,April,16,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,73.28,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient,75.09,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,185,2017,April,17,23,2,4,2,0,0,HB,DEU,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 298, NULL,154,Transient-Party,46.5,0,0,Check-Out,2017-04-29,Spring,2017-04-23T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,239,2017,April,16,22,2,5,3,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , 527, NULL,0,Transient-Party,158,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,234,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,5,No Deposit , 273, NULL,0,Transient-Party,65.1,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,234,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 527, NULL,0,Transient-Party,104,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,129,2017,April,16,22,2,5,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 273, NULL,0,Transient-Party,49.44,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,290,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,14,Transient-Party,74,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,F,0,No Deposit , 527, NULL,0,Transient-Party,125.43,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,75.09,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,239,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,234,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,0,Transient-Party,116,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,E,0,No Deposit , 527, NULL,0,Transient-Party,86.29,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,0,2017,April,17,28,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,B,B,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,252,2017,April,16,22,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,2,No Deposit , 273, NULL,0,Transient-Party,76.8,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 527, NULL,0,Transient-Party,73.71,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,23,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,C,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,0,2017,April,17,28,0,1,2,0,0,BB,JAM,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2017-04-29,Spring,2017-04-28T07:00Z +Keep,106,2017,April,16,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,103.57,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,104,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,104,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,281,2017,April,16,22,2,5,2,0,0,Undefined,FIN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,5,Transient-Party,116,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,208,2017,April,16,22,2,5,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,40.39,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,0,Transient-Party,104,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,208,2017,April,16,22,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,73.28,0,2,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,276,2017,April,16,22,2,5,1,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,D,0,No Deposit , 527, NULL,0,Transient-Party,72,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,23,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 527, NULL,0,Transient-Party,116,0,1,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,290,2017,April,16,22,2,5,2,0,0,Undefined,SWE,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 527, NULL,14,Transient-Party,105.71,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,38,2017,April,16,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-04-29,Spring,2017-04-22T07:00Z +Keep,72,2017,April,17,27,0,2,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,162,1,0,Check-Out,2017-04-29,Spring,2017-04-27T07:00Z +Keep,253,2017,April,17,26,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,3,No Deposit , 240, NULL,0,Transient,62.5,1,1,Check-Out,2017-04-30,Spring,2017-04-26T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,51.09,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,51.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,49.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,317,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , 273, NULL,64,Transient-Party,78.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,E,3,No Deposit , 273, NULL,0,Transient-Party,67.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,NLD,Groups,TA/TO, 0,0,0,D,E,3,No Deposit , 273, NULL,0,Transient-Party,69.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,D,E,2,No Deposit , 273, NULL,0,Transient-Party,69.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,80.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,2,0,0,HB,BRA,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,80.66,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,51.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,80.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,0,Transient-Party,80.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , 273, NULL,0,Transient-Party,78.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,317,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,64,Transient-Party,78.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 273, NULL,0,Transient-Party,51.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,8,2017,April,17,27,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,104,1,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,253,2017,April,17,23,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,E,3,No Deposit , 273, NULL,0,Transient-Party,67.37,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,317,2017,April,17,23,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 273, NULL,64,Transient-Party,80.94,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,8,2017,April,17,27,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,113,1,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,8,2017,April,17,27,0,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,97,0,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,30,2017,April,17,27,0,3,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,85,0,0,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,144,2017,April,17,29,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,3,2017,April,17,28,0,2,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,78.4,0,1,Check-Out,2017-04-30,Spring,2017-04-28T07:00Z +Keep,3,2017,April,17,28,0,2,1,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,78.4,0,1,Check-Out,2017-04-30,Spring,2017-04-28T07:00Z +Keep,94,2017,April,17,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,70.95,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,82,2017,April,17,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,11,2017,April,17,26,0,4,2,0,1,HB,PRT,Direct,Direct, 0,0,0,E,E,5,No Deposit , 250, NULL,0,Transient,161.08,1,1,Check-Out,2017-04-30,Spring,2017-04-26T07:00Z +Keep,15,2017,April,17,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,31,2017,April,17,27,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,2,2017,April,17,29,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,3,2017,May,20,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,83,2017,April,17,29,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,157,2017,April,17,27,0,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,78.33,0,2,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,6,2017,April,17,29,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138,0,1,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,28,2017,April,17,26,0,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,165,1,0,Check-Out,2017-04-30,Spring,2017-04-26T07:00Z +Keep,16,2017,April,17,29,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,103,1,1,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,23,2017,April,18,30,2,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Group,109,1,1,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,19,2017,May,18,2,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,1,A,D,0,No Deposit , 242, NULL,0,Transient,108,1,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,105,2017,April,17,27,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,108.33,0,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,68,2017,April,17,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,68.95,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,5,2017,April,17,27,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,93.29,0,1,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,5,2017,April,17,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,107,0,1,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,70,2017,April,17,28,0,2,1,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,58.52,0,1,Check-Out,2017-04-30,Spring,2017-04-28T07:00Z +Keep,28,2017,April,17,26,0,4,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,172,0,0,Check-Out,2017-04-30,Spring,2017-04-26T07:00Z +Keep,9,2017,April,17,24,1,5,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,103.67,0,1,Check-Out,2017-04-30,Spring,2017-04-24T07:00Z +Keep,1,2017,April,17,29,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,107,1,0,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,30,2017,April,17,27,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,92,1,0,Check-Out,2017-04-30,Spring,2017-04-27T07:00Z +Keep,132,2017,April,17,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,42.65,0,0,Check-Out,2017-04-30,Spring,2017-04-23T07:00Z +Keep,0,2017,April,17,29,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,169.4,1,2,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,9,2017,April,17,29,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,131,1,0,Check-Out,2017-04-30,Spring,2017-04-29T07:00Z +Keep,51,2017,April,17,24,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient,73.71,0,1,Check-Out,2017-05-01,Spring,2017-04-24T07:00Z +Keep,27,2017,April,16,20,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-01,Spring,2017-04-20T07:00Z +Keep,43,2017,April,17,29,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,82,1,2,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,6,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,128,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,97,2017,April,17,29,1,1,2,0,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,115.2,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,24,2017,April,18,30,1,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,110,2017,April,17,29,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,24,2017,April,18,30,1,0,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,6,2017,April,17,27,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106,0,0,Check-Out,2017-05-01,Spring,2017-04-27T07:00Z +Keep,58,2017,April,17,29,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,127,0,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,58,2017,April,17,29,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,120,0,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,4,2017,April,17,29,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,147,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,16,2017,April,17,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,58.5,0,1,Check-Out,2017-05-01,Spring,2017-04-24T07:00Z +Keep,75,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,0,2017,April,18,30,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,100,0,0,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,0,2017,April,18,30,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,100,1,0,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,76,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,75,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,76,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,82,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,2,2017,April,18,30,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,3,2017,April,17,28,1,2,2,0,0,Undefined,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,52,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,96,2017,April,17,29,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,96,2017,April,17,29,1,1,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,80,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,96,2017,April,17,29,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,3,No Deposit , 250, NULL,0,Transient,76.5,0,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,19,2017,April,17,29,1,1,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,193,1,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,14,2017,April,17,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,103,1,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,1,2017,April,18,30,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,112,1,1,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,10,2017,April,17,29,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,4,2017,April,17,29,1,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,126,0,2,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,47,2017,April,17,29,1,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,67,1,0,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,2,2017,April,17,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,2,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,9,2017,April,17,29,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,138,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,27,2017,April,17,29,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,172.5,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,11,2017,April,17,28,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,121,0,1,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,221,2017,April,17,28,1,2,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.58,0,1,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,5,2017,April,17,29,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,113,1,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,0,2017,April,17,28,1,2,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,88.2,0,0,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,259,2017,June,26,29,0,3,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,1,A,A,0,No Deposit , 6, NULL,0,Transient,119.7,0,2,Check-Out,2017-07-02,Summer,2017-06-29T07:00Z +Keep,27,2017,April,17,29,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,147,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,0,2017,April,17,29,1,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,5,2017,April,17,29,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,106,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,1,2017,April,17,29,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,116,0,1,Check-Out,2017-05-01,Spring,2017-04-29T07:00Z +Keep,12,2017,April,17,27,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,118,1,1,Check-Out,2017-05-01,Spring,2017-04-27T07:00Z +Keep,26,2017,April,17,28,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,0,2017,April,18,30,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-05-01,Spring,2017-04-30T07:00Z +Keep,0,2017,May,18,1,1,0,1,0,0,HB,IRL,Online travel agent,TA/TO, 1,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,29,0,0,Check-Out,2017-05-02,Spring,2017-05-01T07:00Z +Keep,24,2017,April,17,28,1,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,61.5,0,0,Check-Out,2017-05-01,Spring,2017-04-28T07:00Z +Keep,1,2017,May,18,2,0,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2017-05-02,Spring,2017-05-02T07:00Z +Keep,46,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,117,0,0,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,46,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,115,0,0,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,88,2017,April,17,29,2,1,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,68.4,0,0,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,204,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,83,0,2,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,204,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,83,0,2,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,111,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,97.5,0,1,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,204,2017,April,17,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,81,0,2,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,93,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,93,0,0,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient-Party,93,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,221,2017,April,17,29,2,1,1,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 385, NULL,121,Transient-Party,0,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 385, NULL,0,Transient-Party,83,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,100,2017,April,17,29,2,1,2,0,0,Undefined,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 385, NULL,0,Transient,93,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,5,2017,May,18,1,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,77,1,0,Check-Out,2017-05-02,Spring,2017-05-01T07:00Z +Keep,89,2017,April,17,28,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,121.5,1,1,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,3,2017,April,17,28,2,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,98.25,1,1,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,12,2017,April,17,25,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,144.4,0,1,Check-Out,2017-05-02,Spring,2017-04-25T07:00Z +Keep,38,2017,May,18,1,1,0,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 468, NULL,0,Transient,93.6,0,0,Check-Out,2017-05-02,Spring,2017-05-01T07:00Z +Keep,3,2017,April,17,29,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,97,1,0,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,0,2017,April,17,27,2,3,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,D,2,No Deposit , NULL, NULL,0,Transient,123.1,1,0,Check-Out,2017-05-02,Spring,2017-04-27T07:00Z +Keep,57,2017,April,17,28,2,2,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,167,1,0,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,5,2017,April,17,29,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,110.8,1,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,5,2017,April,17,29,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,106.13,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,215,2017,April,17,28,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,103.3,1,2,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,3,2017,April,18,30,2,0,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,7,2017,April,17,29,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,95,0,2,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,74,2017,April,18,30,2,0,2,0,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 241, NULL,0,Transient,62.18,0,2,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,74,2017,April,18,30,2,0,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,55.59,0,1,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,7,2017,April,18,30,2,0,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 241, NULL,0,Transient,78.4,0,1,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,4,2017,May,18,1,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 20,0,Transient,60,0,0,Check-Out,2017-05-02,Spring,2017-05-01T07:00Z +Keep,4,2017,July,27,2,1,0,2,0,0,BB,PRT,Corporate,Corporate, 1,0,1,A,A,1,No Deposit , NULL, 20,0,Transient,218,0,0,Check-Out,2017-07-03,Summer,2017-07-02T07:00Z +Keep,112,2017,April,17,29,2,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,72.67,0,2,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,112,2017,April,17,29,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,5,No Deposit , 240, NULL,0,Transient,81.67,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,20,2017,April,17,29,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,126.33,0,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,55,2017,May,18,2,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,8,0,1,Check-Out,2017-05-06,Spring,2017-05-02T07:00Z +Keep,11,2017,April,17,29,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139.67,1,1,Check-Out,2017-05-02,Spring,2017-04-29T07:00Z +Keep,1,2017,April,18,30,2,0,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,162,1,0,Check-Out,2017-05-02,Spring,2017-04-30T07:00Z +Keep,53,2017,April,17,27,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-05-02,Spring,2017-04-27T07:00Z +Keep,28,2017,April,17,28,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,173,1,0,Check-Out,2017-05-02,Spring,2017-04-28T07:00Z +Keep,15,2017,April,18,30,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83.67,0,0,Check-Out,2017-05-03,Spring,2017-04-30T07:00Z +Keep,110,2017,April,17,29,2,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,81.2,0,0,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,126,2017,April,17,26,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142.43,0,1,Check-Out,2017-05-03,Spring,2017-04-26T07:00Z +Keep,16,2017,April,18,30,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,111.78,0,3,Check-Out,2017-05-03,Spring,2017-04-30T07:00Z +Keep,60,2017,April,17,29,2,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient-Party,142,0,1,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,60,2017,April,17,29,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,115,0,1,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,5,2017,May,18,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,45,1,0,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,4,2017,June,23,5,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 1,0,1,A,A,0,No Deposit , 146, NULL,0,Transient,104,0,0,Check-Out,2017-06-09,Summer,2017-06-05T07:00Z +Keep,0,2017,May,18,2,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,62,0,0,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,168,2017,May,18,2,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,4,2017,April,18,30,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88.33,0,0,Check-Out,2017-05-03,Spring,2017-04-30T07:00Z +Keep,46,2017,April,17,29,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,59,2017,May,18,3,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,42,2017,May,18,1,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-03,Spring,2017-05-01T07:00Z +Keep,72,2017,May,18,1,1,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2017-05-03,Spring,2017-05-01T07:00Z +Keep,2,2017,May,18,1,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-05-03,Spring,2017-05-01T07:00Z +Keep,22,2017,May,18,1,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,111,1,1,Check-Out,2017-05-03,Spring,2017-05-01T07:00Z +Keep,179,2017,April,18,30,2,1,2,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,107.99,1,2,Check-Out,2017-05-03,Spring,2017-04-30T07:00Z +Keep,4,2017,April,17,29,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,99.15,0,0,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,98,2017,April,17,29,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,25,2017,April,17,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,0,1,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,6,2017,May,18,2,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-05-03,Spring,2017-05-02T07:00Z +Keep,0,2017,April,17,29,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,155.25,1,0,Check-Out,2017-05-03,Spring,2017-04-29T07:00Z +Keep,131,2017,April,17,28,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152.33,1,2,Check-Out,2017-05-04,Spring,2017-04-28T07:00Z +Keep,129,2017,April,17,28,2,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,143.33,0,2,Check-Out,2017-05-04,Spring,2017-04-28T07:00Z +Keep,99,2017,April,17,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.85,0,0,Check-Out,2017-05-04,Spring,2017-04-27T07:00Z +Keep,195,2017,April,16,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-04,Spring,2017-04-20T07:00Z +Keep,126,2017,May,18,2,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,64.8,0,0,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,126,2017,May,18,2,0,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,G,0,No Deposit , 6, NULL,0,Contract,84,1,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,3,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,6,2017,May,18,3,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,4,2017,May,18,2,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,58.9,0,0,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,3,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,62,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,2,2017,April,17,27,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,114.43,0,0,Check-Out,2017-05-04,Spring,2017-04-27T07:00Z +Keep,134,2017,May,18,3,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,134,2017,May,18,3,0,1,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,134,2017,May,18,3,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,13,2017,May,18,3,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 270,0,Transient,45,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,27,2017,May,18,3,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,62,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,3,2017,May,18,3,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,75,0,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,118,2017,April,18,30,2,2,2,2,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,184.5,0,1,Check-Out,2017-05-04,Spring,2017-04-30T07:00Z +Keep,91,2017,May,18,2,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50.2,1,2,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,2,0,2,1,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,1,2017,May,18,4,0,1,1,0,0,BB,AUS,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,225,2017,April,18,30,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,78,0,2,Check-Out,2017-05-04,Spring,2017-04-30T07:00Z +Keep,84,2017,May,18,2,0,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,127,1,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,104,2017,May,18,3,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,41,2017,April,18,30,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2017-05-04,Spring,2017-04-30T07:00Z +Keep,126,2017,May,18,2,0,2,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,64.8,1,0,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,71,2017,May,18,1,1,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,125,1,1,Check-Out,2017-05-04,Spring,2017-05-01T07:00Z +Keep,0,2017,May,18,2,0,2,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,66,0,1,Check-Out,2017-05-04,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,3,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,75,1,1,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,56,2017,April,17,27,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94,0,2,Check-Out,2017-05-04,Spring,2017-04-27T07:00Z +Keep,0,2017,May,18,3,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,B,B,0,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-05-04,Spring,2017-05-03T07:00Z +Keep,96,2017,April,17,29,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-04,Spring,2017-04-29T07:00Z +Keep,3,2017,May,18,1,1,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,0,Check-Out,2017-05-05,Spring,2017-05-01T07:00Z +Keep,6,2017,May,18,3,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,12,2017,May,18,1,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,84,0,1,Check-Out,2017-05-05,Spring,2017-05-01T07:00Z +Keep,76,2017,April,17,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 469, NULL,0,Transient,98.99,0,0,Check-Out,2017-05-05,Spring,2017-04-28T07:00Z +Keep,77,2017,April,17,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-05,Spring,2017-04-28T07:00Z +Keep,151,2017,April,17,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-05,Spring,2017-04-28T07:00Z +Keep,181,2017,April,17,27,2,6,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,93.75,0,4,Check-Out,2017-05-05,Spring,2017-04-27T07:00Z +Keep,181,2017,April,17,27,2,6,1,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,76.25,0,4,Check-Out,2017-05-05,Spring,2017-04-27T07:00Z +Keep,86,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,E,1,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,218,2017,May,18,3,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,220,2017,May,18,5,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,218,2017,May,18,3,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,220,2017,May,18,5,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,218,2017,May,18,3,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,220,2017,May,18,5,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,79,2017,May,18,2,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,122,1,2,Check-Out,2017-05-05,Spring,2017-05-02T07:00Z +Keep,300,2017,April,17,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2017-05-05,Spring,2017-04-28T07:00Z +Keep,50,2017,May,18,2,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,115,0,1,Check-Out,2017-05-05,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,4,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,0,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,50,2017,May,18,2,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,122,1,1,Check-Out,2017-05-05,Spring,2017-05-02T07:00Z +Keep,1,2017,May,18,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,80.75,0,1,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,62,2017,April,17,28,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,92,0,0,Check-Out,2017-05-05,Spring,2017-04-28T07:00Z +Keep,87,2017,April,18,30,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,50,0,0,Check-Out,2017-05-05,Spring,2017-04-30T07:00Z +Keep,202,2017,May,18,4,0,1,2,0,0,BB,BRA,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,1,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,10,2017,May,18,1,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,106.5,0,1,Check-Out,2017-05-05,Spring,2017-05-01T07:00Z +Keep,14,2017,May,18,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 169,0,Transient-Party,52,1,0,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,6,2017,May,18,3,0,2,1,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,1,1,Check-Out,2017-05-05,Spring,2017-05-03T07:00Z +Keep,178,2017,May,18,1,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,94.26,0,2,Check-Out,2017-05-05,Spring,2017-05-01T07:00Z +Keep,68,2017,May,18,2,0,3,2,0,1,BB,NGA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 6, NULL,0,Transient,48,0,1,Check-Out,2017-05-05,Spring,2017-05-02T07:00Z +Keep,43,2017,May,18,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,43,2017,May,18,4,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 169,0,Transient,50,0,0,Check-Out,2017-05-05,Spring,2017-05-04T07:00Z +Keep,102,2017,April,17,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,63,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,9,2017,May,18,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,85,0,1,Check-Out,2017-05-07,Spring,2017-05-06T07:00Z +Keep,95,2017,April,17,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,45.2,0,1,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,74,2017,April,17,29,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,68.95,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,95,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,42.95,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,85,2017,April,17,29,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,70.66,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,88,2017,April,17,29,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,34.2,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,81,2017,April,17,29,2,5,2,0,0,BB,IDN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,40.95,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,95,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,40.95,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,53,2017,April,18,30,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,87.4,0,1,Check-Out,2017-05-06,Spring,2017-04-30T07:00Z +Keep,74,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,44.38,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,97,2017,May,18,1,1,4,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,54,0,2,Check-Out,2017-05-06,Spring,2017-05-01T07:00Z +Keep,121,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,56,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,113,2017,April,18,30,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,120.83,1,1,Check-Out,2017-05-06,Spring,2017-04-30T07:00Z +Keep,100,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,113,2017,April,18,30,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-06,Spring,2017-04-30T07:00Z +Keep,175,2017,April,17,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.66,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,207,2017,May,18,1,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 314, NULL,0,Transient,79.8,0,2,Check-Out,2017-05-06,Spring,2017-05-01T07:00Z +Keep,26,2017,May,18,3,0,3,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,118.2,1,1,Check-Out,2017-05-06,Spring,2017-05-03T07:00Z +Keep,159,2017,April,17,29,2,5,2,0,0,BB,BHS,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,102,2017,April,17,29,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,56,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,39,2017,May,18,3,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,104.6,0,1,Check-Out,2017-05-06,Spring,2017-05-03T07:00Z +Keep,133,2017,May,18,3,0,3,3,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,94.48,1,0,Check-Out,2017-05-06,Spring,2017-05-03T07:00Z +Keep,194,2017,April,15,15,6,15,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47.5,0,2,Check-Out,2017-05-06,Spring,2017-04-15T07:00Z +Keep,285,2017,April,17,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,64.37,0,4,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,285,2017,April,17,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,64.37,0,3,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,96,2017,May,18,4,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-06,Spring,2017-05-04T07:00Z +Keep,5,2017,May,18,2,0,4,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,220,1,1,Check-Out,2017-05-06,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,3,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , NULL, NULL,0,Transient,157,1,0,Check-Out,2017-05-06,Spring,2017-05-03T07:00Z +Keep,12,2017,May,18,4,0,2,2,1,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,2,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-05-06,Spring,2017-05-04T07:00Z +Keep,0,2017,May,18,5,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,100,1,0,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,6,2017,April,17,29,2,5,2,1,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,122.07,0,0,Check-Out,2017-05-06,Spring,2017-04-29T07:00Z +Keep,0,2017,May,18,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,70,0,0,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,0,2017,May,18,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,77,1,0,Check-Out,2017-05-06,Spring,2017-05-05T07:00Z +Keep,173,2017,April,18,30,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,104.91,1,0,Check-Out,2017-05-06,Spring,2017-04-30T07:00Z +Keep,104,2017,May,18,1,1,5,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,68.4,0,0,Check-Out,2017-05-07,Spring,2017-05-01T07:00Z +Keep,36,2017,May,18,3,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,85.2,0,1,Check-Out,2017-05-07,Spring,2017-05-03T07:00Z +Keep,37,2017,May,18,1,1,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,202,0,0,Check-Out,2017-05-07,Spring,2017-05-01T07:00Z +Keep,160,2017,April,17,23,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.2,0,0,Check-Out,2017-05-07,Spring,2017-04-23T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.2,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,261,2017,April,18,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,8,2017,May,18,4,0,3,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 526, NULL,0,Transient,75.6,0,1,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,83.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,73.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,191,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,56.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,191,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,191,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,191,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,23,2017,May,18,6,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,90,0,0,Check-Out,2017-05-07,Spring,2017-05-06T07:00Z +Keep,221,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient-Party,73.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,71.43,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,199,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,8,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,16,2017,May,18,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127,1,0,Check-Out,2017-05-07,Spring,2017-05-06T07:00Z +Keep,221,2017,April,18,30,2,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,85.43,0,2,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,191,2017,April,18,30,2,5,1,0,0,HB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,54.71,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,6,2017,May,18,1,1,5,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,122,1,0,Check-Out,2017-05-07,Spring,2017-05-01T07:00Z +Keep,6,2017,May,18,5,0,2,2,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,95,0,0,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,70,2017,May,18,4,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,0,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,11,2017,May,18,5,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,191,2017,May,18,4,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,82.17,0,1,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,191,2017,May,18,4,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,89.17,1,2,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,191,2017,May,18,4,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,89.17,1,2,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,4,2017,April,18,30,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 479, NULL,0,Transient,99,0,2,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,90,2017,May,18,1,1,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-07,Spring,2017-05-01T07:00Z +Keep,7,2017,May,18,6,0,1,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,200.7,1,1,Check-Out,2017-05-07,Spring,2017-05-06T07:00Z +Keep,99,2017,April,18,30,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,56,0,1,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,9,2017,May,18,4,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,129,0,1,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,0,2017,May,18,5,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,137,0,1,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,68,2017,May,18,2,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,2,Check-Out,2017-05-07,Spring,2017-05-02T07:00Z +Keep,70,2017,May,18,2,0,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-07,Spring,2017-05-02T07:00Z +Keep,222,2017,May,18,1,1,5,2,0,0,HB,GBR,Groups,TA/TO, 0,0,0,D,D,4,No Deposit , NULL, NULL,0,Transient-Party,92,0,1,Check-Out,2017-05-07,Spring,2017-05-01T07:00Z +Keep,70,2017,May,18,2,0,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-07,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,0,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,7,2017,May,18,4,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,73.33,0,1,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,36,2017,May,18,4,0,3,2,0,0,HB,IND,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,0,1,Check-Out,2017-05-07,Spring,2017-05-04T07:00Z +Keep,21,2017,May,18,3,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,100.8,0,0,Check-Out,2017-05-07,Spring,2017-05-03T07:00Z +Keep,1,2017,May,18,5,0,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,78.25,1,2,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,1,2017,May,18,5,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,2,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,11,2017,May,18,5,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,107,1,1,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,52,2017,April,18,30,2,5,2,0,0,HB,LUX,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,131,0,0,Check-Out,2017-05-07,Spring,2017-04-30T07:00Z +Keep,5,2017,May,18,5,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,2,Check-Out,2017-05-07,Spring,2017-05-05T07:00Z +Keep,116,2017,May,18,2,0,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 6, NULL,0,Transient,44.8,0,0,Check-Out,2017-05-07,Spring,2017-05-02T07:00Z +Keep,0,2017,May,18,3,0,4,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,89.25,1,1,Check-Out,2017-05-07,Spring,2017-05-03T07:00Z +Keep,3,2017,May,19,8,0,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 437,0,Transient-Party,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,111,2017,May,18,1,2,5,2,0,0,FB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,92.95,0,0,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,88,2017,May,18,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,68.95,0,1,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,111,2017,April,17,24,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,89,0,0,Check-Out,2017-05-08,Spring,2017-04-24T07:00Z +Keep,32,2017,May,18,5,1,2,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,86.5,0,0,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,4,2017,May,18,5,1,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.33,0,0,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,0,2017,May,19,7,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,97,1,0,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,76,2017,May,19,8,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,42,2017,May,18,1,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,130,0,0,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,2,2017,May,19,7,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,46.8,0,0,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,2,2017,May,19,7,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,55,0,1,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,61,1,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,1,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 242, NULL,0,Transient,61,1,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,2,2017,May,19,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 195,0,Group,45,0,0,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,2,2017,May,19,7,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 437,0,Transient,60,0,0,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,116,2017,May,18,6,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2017-05-08,Spring,2017-05-06T07:00Z +Keep,248,2017,May,18,3,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-03T07:00Z +Keep,1,2017,May,18,6,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72.5,0,2,Check-Out,2017-05-08,Spring,2017-05-06T07:00Z +Keep,198,2017,May,18,5,1,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,198,2017,May,18,5,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,198,2017,May,18,5,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,54,0,1,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,0,2017,May,19,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,0,2017,May,19,8,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,7,2017,May,19,7,1,0,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,66.4,1,1,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,239,2017,May,18,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,64,0,2,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,104,2017,May,18,1,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,55.71,0,1,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,0,2017,May,18,6,1,1,2,1,0,BB,NLD,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,128,0,0,Check-Out,2017-05-08,Spring,2017-05-06T07:00Z +Keep,2,2017,May,18,5,1,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.33,0,1,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,207,2017,May,18,5,1,2,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,68.4,0,0,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,244,2017,May,18,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,66.8,0,0,Check-Out,2017-05-08,Spring,2017-05-01T07:00Z +Keep,11,2017,May,18,4,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.25,0,1,Check-Out,2017-05-08,Spring,2017-05-04T07:00Z +Keep,0,2017,May,19,7,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,1,2,Check-Out,2017-05-08,Spring,2017-05-07T07:00Z +Keep,79,2017,May,18,6,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-08,Spring,2017-05-06T07:00Z +Keep,7,2017,May,18,5,1,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140.33,0,1,Check-Out,2017-05-08,Spring,2017-05-05T07:00Z +Keep,3,2017,May,19,8,0,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 437,0,Transient-Party,0,0,0,Check-Out,2017-05-08,Spring,2017-05-08T07:00Z +Keep,217,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 434, NULL,61,Transient-Party,62,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 434, NULL,0,Transient-Party,82,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,115,2017,May,18,4,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,56,0,0,Check-Out,2017-05-09,Spring,2017-05-04T07:00Z +Keep,95,2017,April,17,29,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,42.75,0,2,Check-Out,2017-05-09,Spring,2017-04-29T07:00Z +Keep,237,2017,May,18,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 436, NULL,0,Transient,43.2,0,1,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,179,2017,May,19,7,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,74.25,0,2,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,179,2017,May,19,7,2,0,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,74.25,0,2,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,211,2017,May,18,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,96,2017,May,19,7,2,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient-Party,111.25,0,1,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,70,2017,May,18,2,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,50,0,2,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,1,2017,May,18,6,2,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.67,0,1,Check-Out,2017-05-09,Spring,2017-05-06T07:00Z +Keep,36,2017,May,18,5,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,108.4,0,1,Check-Out,2017-05-09,Spring,2017-05-05T07:00Z +Keep,70,2017,May,18,2,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,44,0,2,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,0,2017,May,19,8,1,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,92,0,1,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,84,2017,May,18,2,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,42,0,0,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,84,2017,May,18,2,2,5,1,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,42,0,0,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,69,2017,May,18,6,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,66.6,0,1,Check-Out,2017-05-09,Spring,2017-05-06T07:00Z +Keep,72,2017,May,18,3,2,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,116.67,0,1,Check-Out,2017-05-09,Spring,2017-05-03T07:00Z +Keep,35,2017,May,18,5,2,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,139.4,1,1,Check-Out,2017-05-09,Spring,2017-05-05T07:00Z +Keep,4,2017,May,18,5,2,2,2,0,0,BB,NZL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,0,2,Check-Out,2017-05-09,Spring,2017-05-05T07:00Z +Keep,2,2017,May,19,7,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,79.5,1,1,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,113,2017,April,17,29,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,79.85,0,0,Check-Out,2017-05-09,Spring,2017-04-29T07:00Z +Keep,96,2017,May,19,7,2,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient-Party,118.25,1,1,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,41,2017,May,18,2,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,112.63,0,1,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,5,2017,May,19,7,2,0,2,0,0,BB,CPV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80,0,1,Check-Out,2017-05-09,Spring,2017-05-07T07:00Z +Keep,77,2017,May,18,4,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-09,Spring,2017-05-04T07:00Z +Keep,41,2017,May,18,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,90.1,0,1,Check-Out,2017-05-09,Spring,2017-05-02T07:00Z +Keep,0,2017,May,19,8,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2017-05-09,Spring,2017-05-08T07:00Z +Keep,1,2017,May,19,9,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,85,2017,May,18,6,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,102,0,1,Check-Out,2017-05-10,Spring,2017-05-06T07:00Z +Keep,85,2017,May,18,6,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,3,Check-Out,2017-05-10,Spring,2017-05-06T07:00Z +Keep,82,2017,May,19,8,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,65.52,1,1,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Keep,14,2017,May,19,7,2,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-05-10,Spring,2017-05-07T07:00Z +Keep,3,2017,May,19,7,2,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 175, NULL,0,Transient,65.33,0,0,Check-Out,2017-05-10,Spring,2017-05-07T07:00Z +Keep,82,2017,May,19,8,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,58.52,0,1,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Keep,82,2017,May,19,8,1,1,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,58.52,0,1,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Keep,9,2017,May,18,6,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.5,1,2,Check-Out,2017-05-10,Spring,2017-05-06T07:00Z +Keep,95,2017,May,18,3,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,92,1,2,Check-Out,2017-05-10,Spring,2017-05-03T07:00Z +Keep,0,2017,May,19,9,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,65,0,0,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,115,2017,May,18,6,2,2,2,0,0,HB,NZL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,88.2,0,0,Check-Out,2017-05-10,Spring,2017-05-06T07:00Z +Keep,5,2017,May,19,8,1,1,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-10,Spring,2017-05-08T07:00Z +Keep,0,2017,May,19,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,68,0,0,Check-Out,2017-05-11,Spring,2017-05-10T07:00Z +Keep,88,2017,May,19,9,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,132,0,1,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,117,2017,May,18,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,74.86,0,1,Check-Out,2017-05-10,Spring,2017-05-03T07:00Z +Keep,16,2017,May,19,7,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-10,Spring,2017-05-07T07:00Z +Keep,0,2017,May,19,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,65,1,0,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,46,2017,May,18,3,2,5,2,0,0,HB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,163.71,0,0,Check-Out,2017-05-10,Spring,2017-05-03T07:00Z +Keep,11,2017,May,19,7,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-05-10,Spring,2017-05-07T07:00Z +Keep,0,2017,May,19,9,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,65,0,2,Check-Out,2017-05-10,Spring,2017-05-09T07:00Z +Keep,117,2017,May,18,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,79,1,0,Check-Out,2017-05-10,Spring,2017-05-03T07:00Z +Keep,114,2017,May,18,4,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,157,0,1,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,10,2017,May,18,6,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.8,0,1,Check-Out,2017-05-11,Spring,2017-05-06T07:00Z +Keep,272,2017,May,18,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,78.85,0,0,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,272,2017,May,18,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,78.85,0,0,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,72,2017,May,18,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,6,2017,May,19,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 371,0,Transient-Party,76,0,0,Check-Out,2017-05-11,Spring,2017-05-09T07:00Z +Keep,6,2017,May,19,9,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 371,0,Transient,76,0,0,Check-Out,2017-05-11,Spring,2017-05-09T07:00Z +Keep,272,2017,May,18,1,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 40, NULL,0,Contract,70.95,0,1,Check-Out,2017-05-11,Spring,2017-05-01T07:00Z +Keep,272,2017,May,18,1,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 40, NULL,0,Contract,72.95,0,1,Check-Out,2017-05-11,Spring,2017-05-01T07:00Z +Keep,72,2017,May,18,4,2,5,1,1,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,2,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,120,2017,May,19,10,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-11,Spring,2017-05-10T07:00Z +Keep,7,2017,May,18,6,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,98,0,1,Check-Out,2017-05-11,Spring,2017-05-06T07:00Z +Keep,114,2017,May,18,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,63.2,0,0,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,213,2017,May,18,4,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,43.2,0,1,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,88,2017,May,19,9,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-11,Spring,2017-05-09T07:00Z +Keep,47,2017,May,19,8,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,G,0,No Deposit , 410, NULL,0,Transient,85.5,0,0,Check-Out,2017-05-11,Spring,2017-05-08T07:00Z +Keep,27,2017,May,19,8,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,86,0,1,Check-Out,2017-05-11,Spring,2017-05-08T07:00Z +Keep,32,2017,May,19,7,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,80.4,0,1,Check-Out,2017-05-11,Spring,2017-05-07T07:00Z +Keep,248,2017,May,18,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,70.95,0,0,Check-Out,2017-05-11,Spring,2017-05-04T07:00Z +Keep,117,2017,May,19,7,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 410, NULL,0,Transient,40.95,0,1,Check-Out,2017-05-11,Spring,2017-05-07T07:00Z +Keep,8,2017,May,18,6,2,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-11,Spring,2017-05-06T07:00Z +Keep,143,2017,May,19,8,1,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 410, NULL,0,Transient,42.28,0,0,Check-Out,2017-05-11,Spring,2017-05-08T07:00Z +Keep,82,2017,May,19,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,87,0,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,82,2017,May,19,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,87,0,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,82,2017,May,19,8,1,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,87,0,1,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,79,2017,May,19,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,95.48,0,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,51,2017,May,18,5,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,160,0,1,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,111,2017,May,19,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,61.2,0,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,116,2017,May,18,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,74,0,0,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,199,2017,May,18,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,7,2017,May,19,9,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-12,Spring,2017-05-09T07:00Z +Keep,7,2017,May,19,10,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,46,1,0,Check-Out,2017-05-12,Spring,2017-05-10T07:00Z +Keep,0,2017,May,19,11,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,0,2017,May,19,11,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,75.4,1,0,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,172,2017,May,18,5,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,130,0,3,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,172,2017,May,18,5,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,137,1,3,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,0,2017,May,19,11,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,87,1,0,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,101,2017,May,19,9,0,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102,0,1,Check-Out,2017-05-12,Spring,2017-05-09T07:00Z +Keep,11,2017,May,19,10,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,1,0,Check-Out,2017-05-12,Spring,2017-05-10T07:00Z +Keep,314,2017,May,19,7,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,41.58,0,1,Check-Out,2017-05-12,Spring,2017-05-07T07:00Z +Keep,15,2017,May,19,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,97,1,1,Check-Out,2017-05-12,Spring,2017-05-09T07:00Z +Keep,245,2017,May,19,9,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,43.2,0,1,Check-Out,2017-05-12,Spring,2017-05-09T07:00Z +Keep,86,2017,May,19,10,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,65.45,0,1,Check-Out,2017-05-12,Spring,2017-05-10T07:00Z +Keep,88,2017,May,18,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.28,0,0,Check-Out,2017-05-12,Spring,2017-05-05T07:00Z +Keep,8,2017,May,19,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2017-05-12,Spring,2017-05-09T07:00Z +Keep,26,2017,May,19,8,1,3,1,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,96,0,1,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,5,2017,May,19,11,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,2,2017,May,19,11,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-12,Spring,2017-05-11T07:00Z +Keep,33,2017,May,19,8,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,176,1,0,Check-Out,2017-05-12,Spring,2017-05-08T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,1,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,91,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,LBN,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,91,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient-Party,57.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,1,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,57.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,102.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,1,0,0,HB,ESP,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,0,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,32,2017,May,19,9,0,4,1,0,0,HB,IRL,Groups,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient-Party,77.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,F,1,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,103,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,231,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,1,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,93,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,103,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,231,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,1,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,67.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,231,2017,May,19,9,0,4,1,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,79.5,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,84,2017,May,18,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-13,Spring,2017-05-06T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient-Party,91,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,101,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,302,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,81,0,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,0,2017,May,19,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,95,0,0,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,257,2017,May,19,9,0,4,2,0,0,HB,GBR,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,109.5,1,0,Check-Out,2017-05-13,Spring,2017-05-09T07:00Z +Keep,0,2017,May,19,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,107,1,0,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,2,2017,May,19,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,76,0,0,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,0,2017,May,19,13,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,110,0,0,Check-Out,2017-05-14,Spring,2017-05-13T07:00Z +Keep,29,2017,May,18,4,2,7,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,109.96,0,1,Check-Out,2017-05-13,Spring,2017-05-04T07:00Z +Keep,0,2017,May,19,12,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,1,2017,May,19,13,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,145,0,0,Check-Out,2017-05-15,Spring,2017-05-13T07:00Z +Keep,27,2017,May,19,10,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,94,0,1,Check-Out,2017-05-13,Spring,2017-05-10T07:00Z +Keep,4,2017,May,19,12,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient-Party,85,0,1,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,118,2017,May,18,6,2,5,1,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,101.71,0,1,Check-Out,2017-05-13,Spring,2017-05-06T07:00Z +Keep,4,2017,May,19,12,0,1,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,92,1,1,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,0,2017,May,19,12,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68,0,1,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,0,2017,May,19,12,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.5,1,1,Check-Out,2017-05-13,Spring,2017-05-12T07:00Z +Keep,83,2017,May,19,8,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,62.18,0,1,Check-Out,2017-05-13,Spring,2017-05-08T07:00Z +Keep,48,2017,May,19,11,0,2,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,2,Check-Out,2017-05-13,Spring,2017-05-11T07:00Z +Keep,82,2017,May,19,12,0,2,2,0,0,BB,NGA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,102,0,2,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,93,2017,May,19,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,82.86,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,256,2017,May,19,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.95,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,93,2017,May,19,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.86,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,296,2017,May,18,4,2,8,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 243, NULL,0,Contract,51.18,0,2,Check-Out,2017-05-14,Spring,2017-05-04T07:00Z +Keep,296,2017,May,18,4,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 243, NULL,0,Contract,40.95,0,2,Check-Out,2017-05-14,Spring,2017-05-04T07:00Z +Keep,101,2017,May,19,7,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.66,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,2,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,266,2017,May,19,12,0,2,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,118.8,1,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,42,2017,May,19,12,0,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,111,1,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,42,2017,May,19,12,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,106,0,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,102,2017,May,19,7,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.71,0,1,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,35,2017,May,19,12,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,128.44,0,1,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,0,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,2,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,35,2017,May,19,12,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,98.04,1,2,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,0,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,35,2017,May,19,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,98.04,1,2,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,2,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,2,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,116,2017,May,19,11,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,2,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,15,2017,May,18,6,2,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97.13,1,0,Check-Out,2017-05-14,Spring,2017-05-06T07:00Z +Keep,0,2017,May,19,11,0,3,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,91.67,0,0,Check-Out,2017-05-14,Spring,2017-05-11T07:00Z +Keep,228,2017,May,18,5,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2017-05-14,Spring,2017-05-05T07:00Z +Keep,0,2017,May,19,13,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,105,0,0,Check-Out,2017-05-14,Spring,2017-05-13T07:00Z +Keep,116,2017,May,19,7,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 479, NULL,0,Transient,69.95,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,90,2017,May,19,9,0,5,2,0,0,BB,SRB,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,94,1,1,Check-Out,2017-05-14,Spring,2017-05-09T07:00Z +Keep,7,2017,May,19,13,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-05-14,Spring,2017-05-13T07:00Z +Keep,90,2017,May,19,9,0,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient-Party,85,0,1,Check-Out,2017-05-14,Spring,2017-05-09T07:00Z +Keep,82,2017,May,19,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,6,2017,May,19,12,0,2,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,76,0,0,Check-Out,2017-05-14,Spring,2017-05-12T07:00Z +Keep,96,2017,May,19,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,61.2,0,0,Check-Out,2017-05-14,Spring,2017-05-07T07:00Z +Keep,7,2017,May,20,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,86.43,0,1,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,113,2017,May,19,8,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,73.15,0,2,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,193,2017,May,18,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-15,Spring,2017-05-01T07:00Z +Keep,193,2017,May,18,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.95,0,2,Check-Out,2017-05-15,Spring,2017-05-01T07:00Z +Keep,8,2017,May,19,12,1,2,2,0,0,BB,RUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,123.67,1,2,Check-Out,2017-05-15,Spring,2017-05-12T07:00Z +Keep,217,2017,May,19,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-05-15,Spring,2017-05-12T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,102,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,217,2017,May,19,12,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,58,0,1,Check-Out,2017-05-15,Spring,2017-05-12T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,102,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,218,2017,May,19,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,101.43,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,273,2017,May,18,1,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,64.1,0,0,Check-Out,2017-05-15,Spring,2017-05-01T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 434, NULL,0,Transient-Party,90,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,102,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 434, NULL,0,Transient-Party,80,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,36,2017,May,19,8,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,134,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 434, NULL,0,Transient-Party,90,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,217,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 434, NULL,61,Transient-Party,81.43,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 434, NULL,0,Transient-Party,90,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , 434, NULL,0,Transient-Party,80,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,100,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,94,2017,May,19,12,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,1,Check-Out,2017-05-15,Spring,2017-05-12T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 434, NULL,0,Transient-Party,92,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 434, NULL,0,Transient-Party,81.71,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,102,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , 434, NULL,0,Transient-Party,80,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,61.43,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,60,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,3,No Deposit , 434, NULL,0,Transient-Party,80,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient-Party,102,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , 434, NULL,0,Transient-Party,92,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,30,2017,May,19,13,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136,0,2,Check-Out,2017-05-15,Spring,2017-05-13T07:00Z +Keep,51,2017,May,19,11,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,170,0,2,Check-Out,2017-05-15,Spring,2017-05-11T07:00Z +Keep,156,2017,May,19,8,2,5,2,0,0,HB,IRL,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 434, NULL,0,Transient,102,0,1,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,13,2017,May,20,14,1,0,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-15,Spring,2017-05-14T07:00Z +Keep,45,2017,May,18,5,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.8,0,0,Check-Out,2017-05-15,Spring,2017-05-05T07:00Z +Keep,10,2017,May,19,10,1,4,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,94,1,0,Check-Out,2017-05-15,Spring,2017-05-10T07:00Z +Keep,25,2017,May,20,14,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-05-15,Spring,2017-05-14T07:00Z +Keep,26,2017,May,19,8,2,5,1,0,0,HB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 434, NULL,0,Transient,62,0,0,Check-Out,2017-05-15,Spring,2017-05-08T07:00Z +Keep,242,2017,May,18,1,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,84.15,0,1,Check-Out,2017-05-15,Spring,2017-05-01T07:00Z +Keep,0,2017,May,20,14,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,75,0,2,Check-Out,2017-05-15,Spring,2017-05-14T07:00Z +Keep,2,2017,May,19,13,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 468, NULL,0,Transient,84.05,0,0,Check-Out,2017-05-15,Spring,2017-05-13T07:00Z +Keep,63,2017,May,20,15,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-05-18,Spring,2017-05-15T07:00Z +Keep,313,2017,May,19,9,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,51.97,0,1,Check-Out,2017-05-16,Spring,2017-05-09T07:00Z +Keep,16,2017,May,19,13,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,72.8,0,1,Check-Out,2017-05-16,Spring,2017-05-13T07:00Z +Keep,319,2017,May,19,12,2,2,2,0,1,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,55.5,0,3,Check-Out,2017-05-16,Spring,2017-05-12T07:00Z +Keep,6,2017,May,20,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient-Party,60,0,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,110,2017,May,19,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-16,Spring,2017-05-09T07:00Z +Keep,17,2017,May,20,15,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 113,0,Transient,45,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,2,2017,May,20,15,1,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,82,1,2,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,15,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,47,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,15,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,60,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,90,2017,May,18,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-16,Spring,2017-05-02T07:00Z +Keep,2,2017,May,19,13,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,95.33,1,1,Check-Out,2017-05-16,Spring,2017-05-13T07:00Z +Keep,3,2017,May,20,15,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 358,0,Transient,52,0,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,3,2017,May,20,15,1,0,1,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 315, NULL,0,Transient,0,1,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,12,2017,May,19,12,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,105.25,0,0,Check-Out,2017-05-16,Spring,2017-05-12T07:00Z +Keep,3,2017,May,20,15,1,0,1,0,0,BB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 315, NULL,0,Transient,0,1,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,15,1,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,92,1,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,15,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,6,2017,May,20,15,1,0,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient-Party,90,0,2,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,250,2017,May,19,7,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,0,Check-Out,2017-05-16,Spring,2017-05-07T07:00Z +Keep,2,2017,May,19,11,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,151,0,0,Check-Out,2017-05-16,Spring,2017-05-11T07:00Z +Keep,9,2017,May,20,14,2,0,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,127.5,0,2,Check-Out,2017-05-16,Spring,2017-05-14T07:00Z +Keep,2,2017,May,20,15,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67,1,1,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,14,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-16,Spring,2017-05-14T07:00Z +Keep,13,2017,May,19,12,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,55,1,0,Check-Out,2017-05-16,Spring,2017-05-12T07:00Z +Keep,0,2017,May,20,15,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,79,1,0,Check-Out,2017-05-16,Spring,2017-05-15T07:00Z +Keep,110,2017,May,19,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-16,Spring,2017-05-09T07:00Z +Keep,7,2017,May,19,13,2,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 508, NULL,0,Transient,91.73,1,0,Check-Out,2017-05-16,Spring,2017-05-13T07:00Z +Keep,1,2017,May,20,15,1,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,109.5,1,2,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,112,2017,May,19,8,3,6,2,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,124,0,1,Check-Out,2017-05-17,Spring,2017-05-08T07:00Z +Keep,112,2017,May,19,8,3,6,3,0,0,HB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,143.89,0,1,Check-Out,2017-05-17,Spring,2017-05-08T07:00Z +Keep,1,2017,May,20,16,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,102,1,0,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,10,2017,May,20,15,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,1,2017,May,20,15,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,77,1,1,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,4,2017,May,20,15,1,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,63.5,0,1,Check-Out,2017-05-17,Spring,2017-05-15T07:00Z +Keep,118,2017,May,19,10,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,44,0,0,Check-Out,2017-05-17,Spring,2017-05-10T07:00Z +Keep,29,2017,May,19,12,2,3,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,211,1,4,Check-Out,2017-05-17,Spring,2017-05-12T07:00Z +Keep,6,2017,May,20,16,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,5,2017,May,19,13,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,94.5,1,0,Check-Out,2017-05-17,Spring,2017-05-13T07:00Z +Keep,5,2017,May,19,13,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,89,0,0,Check-Out,2017-05-17,Spring,2017-05-13T07:00Z +Keep,118,2017,May,19,10,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,44,0,0,Check-Out,2017-05-17,Spring,2017-05-10T07:00Z +Keep,118,2017,May,19,10,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient-Party,42,0,0,Check-Out,2017-05-17,Spring,2017-05-10T07:00Z +Keep,118,2017,May,19,10,2,5,1,0,0,BB,IRL,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient-Party,44,0,0,Check-Out,2017-05-17,Spring,2017-05-10T07:00Z +Keep,82,2017,May,19,13,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,1,Check-Out,2017-05-17,Spring,2017-05-13T07:00Z +Keep,215,2017,May,18,3,4,10,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,63.57,0,1,Check-Out,2017-05-17,Spring,2017-05-03T07:00Z +Keep,82,2017,May,19,13,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,1,Check-Out,2017-05-17,Spring,2017-05-13T07:00Z +Keep,13,2017,May,19,11,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,105.83,0,2,Check-Out,2017-05-17,Spring,2017-05-11T07:00Z +Keep,125,2017,May,20,14,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-17,Spring,2017-05-14T07:00Z +Keep,5,2017,May,20,16,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,82,2017,May,19,13,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,1,Check-Out,2017-05-17,Spring,2017-05-13T07:00Z +Keep,8,2017,May,20,16,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-17,Spring,2017-05-16T07:00Z +Keep,3,2017,May,19,11,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,170.67,1,0,Check-Out,2017-05-17,Spring,2017-05-11T07:00Z +Keep,140,2017,May,19,10,2,5,2,0,0,SC,IRL,Groups,TA/TO, 0,0,0,A,I,0,No Deposit , 96, NULL,0,Transient-Party,2,0,0,Check-Out,2017-05-17,Spring,2017-05-10T07:00Z +Keep,241,2017,May,19,12,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,41.58,0,1,Check-Out,2017-05-18,Spring,2017-05-12T07:00Z +Keep,21,2017,May,19,13,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2017-05-18,Spring,2017-05-13T07:00Z +Keep,20,2017,May,19,11,2,5,3,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,170,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,8,2017,May,20,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,89.18,0,1,Check-Out,2017-05-18,Spring,2017-05-14T07:00Z +Keep,351,2017,May,18,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.95,0,0,Check-Out,2017-05-18,Spring,2017-05-04T07:00Z +Keep,86,2017,May,19,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.86,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,8,2017,May,20,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,91.18,0,1,Check-Out,2017-05-18,Spring,2017-05-14T07:00Z +Keep,177,2017,May,20,17,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,113,2017,May,19,7,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,2,Check-Out,2017-05-18,Spring,2017-05-07T07:00Z +Keep,13,2017,May,19,11,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,104.14,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,35,2017,May,19,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,119,0,1,Check-Out,2017-05-18,Spring,2017-05-13T07:00Z +Keep,1,2017,May,20,17,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,76,0,0,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,126,2017,May,19,12,2,4,2,0,1,HB,CZE,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 241, NULL,0,Transient,88.55,0,2,Check-Out,2017-05-18,Spring,2017-05-12T07:00Z +Keep,5,2017,May,20,14,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117.75,1,1,Check-Out,2017-05-18,Spring,2017-05-14T07:00Z +Keep,1,2017,May,20,17,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95,1,1,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,0,2017,May,20,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,90,1,0,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,1,2017,May,20,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,82,1,0,Check-Out,2017-05-19,Spring,2017-05-18T07:00Z +Keep,12,2017,May,20,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,3,2017,May,20,15,1,2,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,96.67,1,2,Check-Out,2017-05-18,Spring,2017-05-15T07:00Z +Keep,16,2017,May,19,11,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,80,2017,May,20,17,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-18,Spring,2017-05-17T07:00Z +Keep,75,2017,May,20,15,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,40.95,0,1,Check-Out,2017-05-18,Spring,2017-05-15T07:00Z +Keep,37,2017,May,20,16,0,2,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,106,1,3,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,0,2017,May,20,14,2,2,2,0,0,BB,SWE,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,97.5,0,0,Check-Out,2017-05-18,Spring,2017-05-14T07:00Z +Keep,247,2017,May,19,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,E,1,No Deposit , 314, NULL,0,Transient,56,0,1,Check-Out,2017-05-18,Spring,2017-05-13T07:00Z +Keep,105,2017,May,19,13,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,71.18,1,1,Check-Out,2017-05-18,Spring,2017-05-13T07:00Z +Keep,234,2017,May,19,13,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,45.2,0,1,Check-Out,2017-05-18,Spring,2017-05-13T07:00Z +Keep,121,2017,May,20,16,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,85,0,2,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,212,2017,May,20,14,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 410, NULL,0,Transient,40.95,0,2,Check-Out,2017-05-18,Spring,2017-05-14T07:00Z +Keep,260,2017,May,19,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,230,2017,May,19,11,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,34.2,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,121,2017,May,20,16,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,225,2017,May,19,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-18,Spring,2017-05-11T07:00Z +Keep,272,2017,May,18,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,42.81,0,0,Check-Out,2017-05-18,Spring,2017-05-04T07:00Z +Keep,6,2017,May,20,15,1,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,83.67,0,0,Check-Out,2017-05-18,Spring,2017-05-15T07:00Z +Keep,121,2017,May,20,16,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,85,0,1,Check-Out,2017-05-18,Spring,2017-05-16T07:00Z +Keep,238,2017,May,19,12,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,2,No Deposit , 240, NULL,0,Transient,68,1,2,Check-Out,2017-05-19,Spring,2017-05-12T07:00Z +Keep,32,2017,May,20,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,4,Check-Out,2017-05-19,Spring,2017-05-14T07:00Z +Keep,17,2017,May,20,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89.4,0,2,Check-Out,2017-05-19,Spring,2017-05-14T07:00Z +Keep,12,2017,May,20,15,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-19,Spring,2017-05-15T07:00Z +Keep,113,2017,May,19,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,72,0,0,Check-Out,2017-05-19,Spring,2017-05-12T07:00Z +Keep,58,2017,May,20,14,2,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,128,0,0,Check-Out,2017-05-19,Spring,2017-05-14T07:00Z +Keep,106,2017,May,19,12,2,5,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 241, NULL,0,Transient,96.25,0,0,Check-Out,2017-05-19,Spring,2017-05-12T07:00Z +Keep,3,2017,May,20,18,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2017-05-19,Spring,2017-05-18T07:00Z +Keep,115,2017,May,20,17,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-19,Spring,2017-05-17T07:00Z +Keep,21,2017,May,20,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,106.4,0,1,Check-Out,2017-05-19,Spring,2017-05-14T07:00Z +Keep,94,2017,May,20,16,0,3,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-05-19,Spring,2017-05-16T07:00Z +Keep,3,2017,May,20,14,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,71,1,1,Check-Out,2017-05-19,Spring,2017-05-14T07:00Z +Keep,152,2017,May,20,15,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,50.2,0,1,Check-Out,2017-05-19,Spring,2017-05-15T07:00Z +Keep,125,2017,May,19,13,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,0,Check-Out,2017-05-19,Spring,2017-05-13T07:00Z +Keep,234,2017,May,19,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,55.71,0,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,27,2017,May,19,13,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,167,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,119,2017,May,19,7,4,9,2,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,118.8,0,0,Check-Out,2017-05-20,Spring,2017-05-07T07:00Z +Keep,119,2017,May,19,7,4,9,2,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 314, NULL,0,Transient-Party,118.8,0,0,Check-Out,2017-05-20,Spring,2017-05-07T07:00Z +Keep,105,2017,May,19,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,193,2017,May,19,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.2,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,193,2017,May,19,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,36.2,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,193,2017,May,19,13,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,34.2,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,263,2017,May,19,12,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,56,0,2,Check-Out,2017-05-20,Spring,2017-05-12T07:00Z +Keep,88,2017,May,19,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.86,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,135,2017,May,19,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,89,2017,May,20,20,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,100,0,2,Check-Out,2017-05-24,Spring,2017-05-20T07:00Z +Keep,150,2017,May,20,19,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-20,Spring,2017-05-19T07:00Z +Keep,228,2017,May,19,13,2,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,26,2017,May,20,17,0,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,80.75,0,0,Check-Out,2017-05-20,Spring,2017-05-17T07:00Z +Keep,117,2017,May,20,14,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,59.33,0,1,Check-Out,2017-05-20,Spring,2017-05-14T07:00Z +Keep,221,2017,May,19,13,2,5,2,0,0,HB,HUN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,79.2,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,30,2017,May,20,17,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-20,Spring,2017-05-17T07:00Z +Keep,5,2017,May,19,13,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,86.43,0,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,244,2017,May,18,2,4,14,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,83,0,1,Check-Out,2017-05-20,Spring,2017-05-02T07:00Z +Keep,81,2017,May,20,16,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,45.5,0,0,Check-Out,2017-05-20,Spring,2017-05-16T07:00Z +Keep,128,2017,May,19,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,82.8,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,66,2017,May,19,13,2,5,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,172,1,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,66,2017,May,19,13,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,165,0,0,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,326,2017,May,19,13,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,56,1,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,297,2017,May,20,20,0,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,54,0,1,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,16,2017,May,20,18,0,2,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-20,Spring,2017-05-18T07:00Z +Keep,8,2017,May,20,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-20,Spring,2017-05-17T07:00Z +Keep,120,2017,May,20,15,1,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-05-20,Spring,2017-05-15T07:00Z +Keep,247,2017,May,19,13,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 314, NULL,0,Transient,55.2,0,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,114,2017,May,19,13,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,88.5,0,1,Check-Out,2017-05-20,Spring,2017-05-13T07:00Z +Keep,35,2017,May,19,12,2,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,169,0,0,Check-Out,2017-05-20,Spring,2017-05-12T07:00Z +Keep,16,2017,May,20,18,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,176.67,1,1,Check-Out,2017-05-20,Spring,2017-05-18T07:00Z +Keep,103,2017,May,20,14,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,40.95,0,1,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,13,2017,May,20,14,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,68.4,0,1,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,289,2017,May,19,11,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,F,1,No Deposit , 40, NULL,0,Contract,72.95,0,0,Check-Out,2017-05-21,Spring,2017-05-11T07:00Z +Keep,361,2017,May,20,14,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,83.71,0,4,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,361,2017,May,20,14,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,80.85,0,3,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,89,2017,May,20,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,89,2017,May,20,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,81,2017,May,20,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,85,2017,May,20,14,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,80.85,0,0,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,103,2017,May,20,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,43.2,0,1,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,107,2017,May,19,11,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,0,Check-Out,2017-05-21,Spring,2017-05-11T07:00Z +Keep,93,2017,May,20,18,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,123,0,2,Check-Out,2017-05-21,Spring,2017-05-18T07:00Z +Keep,262,2017,May,19,13,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,64.1,0,0,Check-Out,2017-05-21,Spring,2017-05-13T07:00Z +Keep,12,2017,May,20,16,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,99,1,1,Check-Out,2017-05-21,Spring,2017-05-16T07:00Z +Keep,5,2017,May,20,20,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,182,1,0,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,9,2017,May,20,19,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,104.5,1,2,Check-Out,2017-05-21,Spring,2017-05-19T07:00Z +Keep,9,2017,May,20,19,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,95.5,0,1,Check-Out,2017-05-21,Spring,2017-05-19T07:00Z +Keep,66,2017,May,19,7,4,10,2,0,0,BB,DEU,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,154,0,0,Check-Out,2017-05-21,Spring,2017-05-07T07:00Z +Keep,67,2017,May,20,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,0,2017,May,20,20,0,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,0,1,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,124,2017,May,20,14,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-21,Spring,2017-05-14T07:00Z +Keep,2,2017,May,20,20,0,1,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,167,0,1,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,2,2017,May,20,20,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,108,0,1,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,2,2017,May,20,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,150,1,1,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,13,2017,May,20,17,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,125.5,1,1,Check-Out,2017-05-21,Spring,2017-05-17T07:00Z +Keep,20,2017,May,20,18,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,91.67,0,0,Check-Out,2017-05-21,Spring,2017-05-18T07:00Z +Keep,68,2017,May,20,20,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,I,2,No Deposit , 240, NULL,0,Transient,127,1,2,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,1,2017,May,21,21,1,0,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,135,0,2,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,128,2017,May,20,18,0,3,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,E,G,0,No Deposit , 177, NULL,0,Transient,64.8,0,2,Check-Out,2017-05-21,Spring,2017-05-18T07:00Z +Keep,3,2017,May,20,20,0,1,2,0,1,BB,PRT,Complementary,Direct, 0,0,0,A,H,1,No Deposit , NULL, NULL,0,Transient,0,1,3,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,223,2017,May,19,7,4,10,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 163, NULL,0,Transient,62.48,0,2,Check-Out,2017-05-21,Spring,2017-05-07T07:00Z +Keep,1,2017,May,20,20,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,127,1,0,Check-Out,2017-05-21,Spring,2017-05-20T07:00Z +Keep,59,2017,May,20,17,1,4,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,132,1,1,Check-Out,2017-05-22,Spring,2017-05-17T07:00Z +Keep,93,2017,May,20,18,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,49.5,0,0,Check-Out,2017-05-22,Spring,2017-05-18T07:00Z +Keep,0,2017,May,20,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,70.95,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,193,2017,May,20,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,68.95,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,292,2017,May,20,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.95,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,117,2017,May,19,8,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,50.2,0,0,Check-Out,2017-05-22,Spring,2017-05-08T07:00Z +Keep,117,2017,May,19,8,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,48.2,0,0,Check-Out,2017-05-22,Spring,2017-05-08T07:00Z +Keep,120,2017,May,20,17,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,56,0,0,Check-Out,2017-05-22,Spring,2017-05-17T07:00Z +Keep,120,2017,May,20,17,1,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,54,0,0,Check-Out,2017-05-22,Spring,2017-05-17T07:00Z +Keep,163,2017,May,20,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,62.1,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,0,2017,May,20,20,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,95,0,1,Check-Out,2017-05-22,Spring,2017-05-20T07:00Z +Keep,103,2017,May,20,15,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,48,0,1,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,7,2017,May,21,21,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,1,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,83,2017,May,20,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,7,2017,May,21,21,1,0,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,100,0,1,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,153,2017,May,20,19,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 177, NULL,0,Transient,43.2,0,1,Check-Out,2017-05-22,Spring,2017-05-19T07:00Z +Keep,3,2017,May,21,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,78.25,1,1,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,3,2017,May,21,21,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,286,2017,May,20,18,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 243, NULL,0,Contract,78.95,0,1,Check-Out,2017-05-22,Spring,2017-05-18T07:00Z +Keep,26,2017,May,21,21,1,0,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,177,1,0,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,286,2017,May,20,18,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 243, NULL,0,Contract,80.45,0,1,Check-Out,2017-05-22,Spring,2017-05-18T07:00Z +Keep,286,2017,May,20,18,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 243, NULL,0,Contract,78.95,0,1,Check-Out,2017-05-22,Spring,2017-05-18T07:00Z +Keep,67,2017,May,20,17,1,4,2,0,0,BB,NLD,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,160,0,0,Check-Out,2017-05-22,Spring,2017-05-17T07:00Z +Keep,0,2017,May,21,21,1,0,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,93,0,0,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,286,2017,May,20,18,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,2,No Deposit , 243, NULL,0,Contract,78.95,0,1,Check-Out,2017-05-22,Spring,2017-05-18T07:00Z +Keep,83,2017,May,20,17,1,4,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient,74,0,1,Check-Out,2017-05-22,Spring,2017-05-17T07:00Z +Keep,0,2017,May,21,21,1,0,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,75,0,0,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,59,2017,May,20,20,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,3,No Deposit , NULL, 169,0,Transient-Party,57,1,0,Check-Out,2017-05-22,Spring,2017-05-20T07:00Z +Keep,94,2017,May,20,15,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,76,0,0,Check-Out,2017-05-22,Spring,2017-05-15T07:00Z +Keep,3,2017,May,21,21,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 169,0,Transient-Party,50,0,0,Check-Out,2017-05-22,Spring,2017-05-21T07:00Z +Keep,275,2017,May,19,7,5,10,2,0,0,SC,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 243, NULL,0,Contract,0,0,1,Check-Out,2017-05-22,Spring,2017-05-07T07:00Z +Keep,74,2017,May,20,14,3,5,2,0,0,SC,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,1,No Deposit , 243, NULL,0,Contract,0,0,2,Check-Out,2017-05-22,Spring,2017-05-14T07:00Z +Keep,208,2017,May,21,22,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,0,No Deposit , 40, NULL,0,Contract,0,0,1,Check-Out,2017-05-22,Spring,2017-05-22T07:00Z +Keep,112,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,243,2017,May,20,16,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,36.2,0,2,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,205,2017,May,20,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.5,0,2,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,205,2017,May,20,16,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,78.5,0,2,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,130,2017,May,20,16,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152,1,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,329,2017,May,18,5,6,12,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Check-Out,2017-05-23,Spring,2017-05-05T07:00Z +Keep,126,2017,May,20,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.2,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,181,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,118,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,118,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,42.95,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,208,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,F,0,No Deposit , 40, NULL,0,Contract,70.85,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,200,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,5,2017,May,21,22,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 96, NULL,0,Transient,67,1,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,147,2017,May,20,16,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,70.4,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,97,2017,May,20,16,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,85.59,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,104,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,H,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,118,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,118,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,104,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,118,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,118,2017,May,21,22,1,0,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,62,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,7,2017,May,21,22,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,76,0,0,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,108,2017,May,20,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,68.95,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,0,2017,May,21,22,1,0,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 169,0,Transient-Party,60,0,1,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,222,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,42.95,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,126,2017,May,20,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,66.8,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,4,2017,May,21,22,1,0,2,1,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,75,0,1,Check-Out,2017-05-23,Spring,2017-05-22T07:00Z +Keep,219,2017,May,19,13,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,90.1,0,1,Check-Out,2017-05-23,Spring,2017-05-13T07:00Z +Keep,195,2017,May,20,16,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,154,2017,May,20,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 171, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,0,2017,May,20,20,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,165.33,1,0,Check-Out,2017-05-23,Spring,2017-05-20T07:00Z +Keep,118,2017,May,20,16,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,213,2017,May,21,23,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2017-05-23,Spring,2017-05-23T07:00Z +Keep,126,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,54,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,62,2017,May,20,16,2,5,2,0,0,BB,SUR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,132,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,89,2017,May,20,19,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,100,0,1,Check-Out,2017-05-23,Spring,2017-05-19T07:00Z +Keep,103,2017,May,20,16,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,3,No Deposit , 69, NULL,0,Transient,89.1,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,98,2017,May,20,17,2,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,72,0,0,Check-Out,2017-05-23,Spring,2017-05-17T07:00Z +Keep,303,2017,May,19,11,4,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.95,0,0,Check-Out,2017-05-23,Spring,2017-05-11T07:00Z +Keep,87,2017,May,20,20,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,94,0,0,Check-Out,2017-05-23,Spring,2017-05-20T07:00Z +Keep,130,2017,May,20,19,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,86.25,0,2,Check-Out,2017-05-23,Spring,2017-05-19T07:00Z +Keep,72,2017,May,20,16,2,5,2,0,1,HB,ROU,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,151.14,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,72,2017,May,20,16,2,5,2,0,1,HB,ROU,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,152,0,1,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,302,2017,May,20,16,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 6, NULL,0,Transient,48,0,0,Check-Out,2017-05-23,Spring,2017-05-16T07:00Z +Keep,194,2017,May,20,15,3,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-24,Spring,2017-05-15T07:00Z +Keep,142,2017,May,20,17,2,5,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,95,2017,May,20,14,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 69, NULL,0,Transient,79.85,0,0,Check-Out,2017-05-24,Spring,2017-05-14T07:00Z +Keep,127,2017,May,20,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,56,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,79,2017,May,20,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,80,0,1,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,95,2017,May,20,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,74,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,95,2017,May,20,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,48,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,15,2017,May,21,22,1,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,0,Check-Out,2017-05-24,Spring,2017-05-22T07:00Z +Keep,11,2017,May,21,23,0,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,58,1,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,18,2017,May,21,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 20,0,Transient,45,0,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,0,2017,May,21,23,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,162,1,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,25,2017,May,21,23,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,76,0,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,1,2017,May,21,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,67,1,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,68,2017,May,20,17,2,5,2,0,0,BB,BEL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Group,120,0,2,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,0,2017,May,21,23,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,2,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Group,42,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,8,2017,May,21,23,0,1,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,72,0,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,1,2017,May,21,24,0,1,1,0,0,BB,USA,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,25,2017,May,21,23,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,1,2,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,33,2017,August,33,18,1,2,2,0,0,FB,PRT,Online travel agent,Direct, 1,0,1,A,E,10,No Deposit , 240, NULL,0,Transient-Party,270,1,4,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,153,2017,May,21,23,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,133,2017,May,20,17,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,78.5,0,1,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,98,2017,May,20,17,2,5,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,72,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,105,2017,May,20,15,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,84.12,0,1,Check-Out,2017-05-24,Spring,2017-05-15T07:00Z +Keep,0,2017,May,21,23,0,1,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,112,1,0,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,11,2017,May,20,18,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,72.67,0,1,Check-Out,2017-05-24,Spring,2017-05-18T07:00Z +Keep,107,2017,May,20,20,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,47.5,0,1,Check-Out,2017-05-24,Spring,2017-05-20T07:00Z +Keep,168,2017,May,20,15,3,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 163, NULL,0,Transient,84.45,0,0,Check-Out,2017-05-24,Spring,2017-05-15T07:00Z +Keep,1,2017,May,21,23,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,97,1,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,255,2017,May,20,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,83,0,1,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,9,2017,May,21,22,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,1,2,Check-Out,2017-05-24,Spring,2017-05-22T07:00Z +Keep,87,2017,May,20,20,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94,0,2,Check-Out,2017-05-24,Spring,2017-05-20T07:00Z +Keep,3,2017,May,21,22,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,1,1,Check-Out,2017-05-24,Spring,2017-05-22T07:00Z +Keep,239,2017,May,20,18,2,4,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,101.28,0,0,Check-Out,2017-05-24,Spring,2017-05-18T07:00Z +Keep,131,2017,May,20,14,4,6,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,43.2,0,0,Check-Out,2017-05-24,Spring,2017-05-14T07:00Z +Keep,93,2017,May,19,10,4,10,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,88.2,0,0,Check-Out,2017-05-24,Spring,2017-05-10T07:00Z +Keep,2,2017,May,21,21,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,1,Check-Out,2017-05-24,Spring,2017-05-21T07:00Z +Keep,5,2017,May,21,21,2,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,63.9,0,0,Check-Out,2017-05-24,Spring,2017-05-21T07:00Z +Keep,33,2017,May,21,23,0,1,3,1,0,HB,IND,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,180,0,1,Check-Out,2017-05-24,Spring,2017-05-23T07:00Z +Keep,5,2017,May,21,22,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Check-Out,2017-05-24,Spring,2017-05-22T07:00Z +Keep,93,2017,May,20,17,2,5,2,0,0,FB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,177,1,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,93,2017,May,20,17,2,5,2,0,0,FB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,170,0,0,Check-Out,2017-05-24,Spring,2017-05-17T07:00Z +Keep,101,2017,May,20,18,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,80,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,26,2017,May,21,25,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,160,0,1,Check-Out,2017-05-26,Spring,2017-05-25T07:00Z +Keep,283,2017,May,20,15,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,40.95,0,1,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,358,2017,May,19,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,78.85,0,1,Check-Out,2017-05-25,Spring,2017-05-11T07:00Z +Keep,110,2017,May,21,21,2,2,3,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,D,0,No Deposit , 241, NULL,0,Transient,104.94,0,1,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,128,2017,May,20,18,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient-Party,48.2,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,219,2017,May,20,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,80.85,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,128,2017,May,20,18,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient-Party,50.2,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,132,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,40.95,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,117,2017,May,20,15,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,57.85,1,0,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,114,2017,May,20,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,70.95,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,42,2017,May,21,21,2,2,2,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,176,1,0,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,105,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,104,2017,May,20,15,3,7,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,80.85,0,0,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,117,2017,May,20,15,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,78.85,0,2,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,105,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,13,2017,May,21,24,0,1,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,114,2017,May,19,13,4,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,2,Check-Out,2017-05-25,Spring,2017-05-13T07:00Z +Keep,128,2017,May,20,18,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,34.2,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,128,2017,May,20,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Transient,88.85,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,91,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,287,2017,May,20,15,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,64.1,0,0,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,99,2017,May,19,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.86,0,0,Check-Out,2017-05-25,Spring,2017-05-11T07:00Z +Keep,192,2017,May,21,23,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,2,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,26,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,45,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,6,2017,May,21,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,6,2017,May,21,24,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,56,2017,May,21,24,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,62,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,14,2017,May,21,22,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,145.75,1,1,Check-Out,2017-05-25,Spring,2017-05-22T07:00Z +Keep,2,2017,May,21,23,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87,1,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,0,2017,May,21,23,0,2,1,0,0,BB,BRA,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,11,2017,May,21,23,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,0,2017,May,21,23,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,45.9,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,2,2017,May,21,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,72,0,2,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,0,2017,May,21,23,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,0,2017,May,21,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,E,0,No Deposit , NULL, NULL,0,Transient-Party,54,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,72,2017,May,21,23,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,85,0,2,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,98,2017,May,20,16,2,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,49.78,0,0,Check-Out,2017-05-25,Spring,2017-05-16T07:00Z +Keep,72,2017,May,21,23,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,93,1,2,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,220,2017,May,20,15,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,90,0,0,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,47,2017,May,21,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,89,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,2,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,150,2017,May,20,15,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 171, NULL,0,Transient,56,0,0,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,12,2017,May,21,24,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,2,2017,May,21,23,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,12,2017,May,21,23,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,77,2017,May,20,15,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,124,0,2,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,13,2017,May,21,24,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , 307, NULL,0,Transient,0,1,3,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,2,2017,May,21,23,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.5,1,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,17,2017,May,21,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,85,0,2,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,352,2017,May,21,25,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient-Party,75,0,2,Check-Out,2017-05-31,Spring,2017-05-25T07:00Z +Keep,216,2017,May,20,15,3,7,2,0,0,HB,DOM,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,132.3,0,2,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,19,2017,May,21,24,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,7,2017,May,21,24,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,42,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,7,2017,May,21,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient-Party,49.6,0,0,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,7,2017,May,21,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient-Party,49.6,0,0,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,7,2017,May,21,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient-Party,49.6,0,0,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,7,2017,May,21,23,0,2,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient-Party,49.6,0,0,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,8,2017,May,21,23,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,60,0,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,3,2017,May,21,21,2,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,72,0,2,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,11,2017,May,21,21,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,132.5,0,0,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,18,2017,May,21,24,0,1,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,92,1,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,2,2017,May,21,21,2,2,1,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 6, NULL,0,Transient,42,0,0,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,156,2017,May,20,14,4,7,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 171, NULL,0,Transient,45.2,0,0,Check-Out,2017-05-25,Spring,2017-05-14T07:00Z +Keep,134,2017,May,20,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,1,No Deposit , 314, NULL,0,Transient,83.2,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,114,2017,May,20,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,78.85,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,114,2017,May,20,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,78.85,0,2,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,114,2017,May,20,18,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,64.85,0,2,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,54,2017,May,21,22,1,2,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,217,0,0,Check-Out,2017-05-25,Spring,2017-05-22T07:00Z +Keep,238,2017,May,21,21,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,88,1,1,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,334,2017,May,20,15,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,64.1,0,2,Check-Out,2017-05-25,Spring,2017-05-15T07:00Z +Keep,238,2017,May,21,21,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2017-05-25,Spring,2017-05-21T07:00Z +Keep,159,2017,May,21,24,0,1,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,90,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,352,2017,May,21,25,2,5,2,0,1,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Group,121,0,1,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,25,2017,May,21,23,0,2,2,0,0,BB,HUN,Complementary,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,0,1,1,Check-Out,2017-05-25,Spring,2017-05-23T07:00Z +Keep,99,2017,May,20,18,2,5,2,0,0,BB,ROU,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,90,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,267,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,166,2017,May,21,24,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,142,2017,May,20,18,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,84.8,0,0,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,159,2017,May,21,24,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,115,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,353,2017,May,21,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,121,0,1,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,47,2017,May,21,24,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,60,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,48,2017,May,21,24,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,I,0,No Deposit , 250, NULL,0,Transient,84,1,0,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,Direct, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,120,2017,May,20,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,52.85,0,1,Check-Out,2017-05-25,Spring,2017-05-18T07:00Z +Keep,221,2017,May,21,24,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,103.5,1,2,Check-Out,2017-05-25,Spring,2017-05-24T07:00Z +Keep,278,2017,May,20,19,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,73.23,0,2,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,278,2017,May,20,19,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,F,2,No Deposit , 240, NULL,0,Transient-Party,93.73,1,2,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,72,2017,May,21,21,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,108,0,1,Check-Out,2017-05-26,Spring,2017-05-21T07:00Z +Keep,186,2017,May,19,12,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-26,Spring,2017-05-12T07:00Z +Keep,129,2017,May,20,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,98,2017,May,20,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,50.85,0,2,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,243,2017,May,21,23,0,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,69.7,1,2,Check-Out,2017-05-26,Spring,2017-05-23T07:00Z +Keep,114,2017,May,21,22,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,122,1,1,Check-Out,2017-05-26,Spring,2017-05-22T07:00Z +Keep,99,2017,May,20,19,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,203,2017,May,21,25,0,1,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,119.35,0,1,Check-Out,2017-05-26,Spring,2017-05-25T07:00Z +Keep,16,2017,May,20,19,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,147,1,0,Check-Out,2017-05-26,Spring,2017-05-19T07:00Z +Keep,0,2017,May,21,24,0,2,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , 250, NULL,0,Transient,100,0,2,Check-Out,2017-05-26,Spring,2017-05-24T07:00Z +Keep,52,2017,May,21,24,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,89,0,1,Check-Out,2017-05-26,Spring,2017-05-24T07:00Z +Keep,106,2017,May,21,22,1,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119,0,2,Check-Out,2017-05-26,Spring,2017-05-22T07:00Z +Keep,10,2017,May,21,24,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-05-26,Spring,2017-05-24T07:00Z +Keep,2,2017,May,21,25,0,1,2,0,0,BB,PRT,Online travel agent,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2017-05-26,Spring,2017-05-25T07:00Z +Keep,14,2017,May,21,23,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,101.33,0,1,Check-Out,2017-05-26,Spring,2017-05-23T07:00Z +Keep,50,2017,May,21,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,169,0,0,Check-Out,2017-05-26,Spring,2017-05-22T07:00Z +Keep,0,2017,May,21,23,0,3,1,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,3,No Deposit , NULL, NULL,0,Transient,80,0,0,Check-Out,2017-05-26,Spring,2017-05-23T07:00Z +Keep,110,2017,May,20,19,2,6,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,117,0,1,Check-Out,2017-05-27,Spring,2017-05-19T07:00Z +Keep,110,2017,May,20,19,2,6,2,0,0,HB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,117,0,1,Check-Out,2017-05-27,Spring,2017-05-19T07:00Z +Keep,6,2017,May,21,21,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,153.33,0,0,Check-Out,2017-05-27,Spring,2017-05-21T07:00Z +Keep,162,2017,May,20,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,1,Check-Out,2017-05-27,Spring,2017-05-20T07:00Z +Keep,11,2017,May,20,18,2,7,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,79.11,0,1,Check-Out,2017-05-27,Spring,2017-05-18T07:00Z +Keep,24,2017,May,20,20,2,5,2,1,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,198.31,0,1,Check-Out,2017-05-27,Spring,2017-05-20T07:00Z +Keep,77,2017,May,20,20,2,5,2,0,0,HB,NOR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,169,0,2,Check-Out,2017-05-27,Spring,2017-05-20T07:00Z +Keep,13,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,83.2,1,1,Check-Out,2017-05-27,Spring,2017-05-21T07:00Z +Keep,251,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,96.67,0,2,Check-Out,2017-05-27,Spring,2017-05-21T07:00Z +Keep,251,2017,May,21,21,2,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,83.2,1,2,Check-Out,2017-05-27,Spring,2017-05-21T07:00Z +Keep,45,2017,May,21,22,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,169,0,0,Check-Out,2017-05-27,Spring,2017-05-22T07:00Z +Keep,71,2017,May,21,26,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,130,0,1,Check-Out,2017-05-27,Spring,2017-05-26T07:00Z +Keep,141,2017,May,21,27,2,5,2,2,0,HB,GBR,Online travel agent,Direct, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient,194.14,0,1,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,161,2017,May,21,25,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,151.5,1,0,Check-Out,2017-05-27,Spring,2017-05-25T07:00Z +Keep,11,2017,May,21,24,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,120,1,1,Check-Out,2017-05-27,Spring,2017-05-24T07:00Z +Keep,14,2017,May,21,25,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-05-27,Spring,2017-05-25T07:00Z +Keep,142,2017,May,20,17,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,2,Check-Out,2017-05-27,Spring,2017-05-17T07:00Z +Keep,19,2017,May,21,22,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,99,0,3,Check-Out,2017-05-27,Spring,2017-05-22T07:00Z +Keep,31,2017,May,21,24,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-27,Spring,2017-05-24T07:00Z +Keep,121,2017,May,20,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 40, NULL,0,Contract,52.95,0,0,Check-Out,2017-05-27,Spring,2017-05-20T07:00Z +Keep,33,2017,May,21,23,0,4,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,122,0,1,Check-Out,2017-05-27,Spring,2017-05-23T07:00Z +Keep,1,2017,May,21,26,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,88.56,0,0,Check-Out,2017-05-27,Spring,2017-05-26T07:00Z +Keep,10,2017,May,21,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,47.5,0,2,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,270,2017,May,21,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,49,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,63,2017,May,21,23,0,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2017-05-28,Spring,2017-05-23T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,42,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,223,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,C,C,2,No Deposit , NULL, 223,20,Transient-Party,67,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,1,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,289,2017,May,21,21,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,40.95,0,2,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,36,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,USA,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,55,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,1,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,0,2017,May,21,25,0,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,122,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,1,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,1,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,1,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,73.33,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,73.33,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,0,No Deposit , 96, NULL,0,Transient-Party,72,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,388,2017,May,21,25,0,3,2,0,0,BB,CN,Groups,TA/TO, 0,0,0,E,E,2,No Deposit , 96, NULL,0,Transient-Party,72,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,175,2017,May,21,27,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,3,Check-Out,2017-05-28,Spring,2017-05-27T07:00Z +Keep,175,2017,May,21,27,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,3,Check-Out,2017-05-28,Spring,2017-05-27T07:00Z +Keep,203,2017,May,21,25,0,3,2,2,0,BB,GBR,Groups,TA/TO, 0,0,0,C,C,3,No Deposit , NULL, 223,0,Transient-Party,99,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,17,2017,May,21,26,0,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,187,1,0,Check-Out,2017-05-28,Spring,2017-05-26T07:00Z +Keep,77,2017,May,21,23,0,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,80,0,1,Check-Out,2017-05-28,Spring,2017-05-23T07:00Z +Keep,21,2017,May,21,26,0,2,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 96, NULL,0,Transient,120,1,0,Check-Out,2017-05-28,Spring,2017-05-26T07:00Z +Keep,203,2017,May,21,25,0,3,2,1,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,75,0,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,2,2017,May,22,28,1,0,2,1,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,112,0,1,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,3,2017,May,22,28,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,85,0,0,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,55,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,302,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 223,99,Transient-Party,67,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,2,2017,May,22,28,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,115,1,0,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,102,2017,May,21,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,85,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,0,2017,May,22,28,1,0,2,0,0,BB,PRT,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,99,2,0,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,2,1,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,37,2017,May,22,28,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,104,2,1,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,2,2017,May,22,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,8,0,3,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,200,2017,May,21,21,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,49.7,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,200,2017,May,21,21,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,49.7,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,200,2017,May,21,21,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,49.7,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,200,2017,May,21,21,2,5,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,49.7,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,1,2017,May,21,27,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 240, NULL,0,Transient,158.5,0,1,Check-Out,2017-05-28,Spring,2017-05-27T07:00Z +Keep,130,2017,May,21,25,0,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,155,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,107,2017,May,21,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,107,2017,May,21,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,55,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,60,0,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,0,3,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,16,2017,May,21,25,0,3,2,1,0,BB,IND,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,137.9,1,1,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,99,2017,May,21,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.86,0,0,Check-Out,2017-05-28,Spring,2017-05-21T07:00Z +Keep,203,2017,May,21,25,0,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 223,0,Transient-Party,48,1,0,Check-Out,2017-05-28,Spring,2017-05-25T07:00Z +Keep,2,2017,May,22,28,1,0,2,0,0,BB,GBR,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,92,1,1,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,203,2017,May,21,25,1,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,55,1,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,202,2017,May,21,24,1,4,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-29,Spring,2017-05-24T07:00Z +Keep,203,2017,May,21,25,1,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,1,No Deposit , NULL, 223,0,Transient-Party,48,0,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,138,2017,May,21,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,70.95,0,0,Check-Out,2017-05-29,Spring,2017-05-22T07:00Z +Keep,203,2017,May,21,25,1,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,60.13,1,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,202,2017,May,21,24,1,4,1,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,2,No Deposit , NULL, 223,0,Transient-Party,65.2,1,0,Check-Out,2017-05-29,Spring,2017-05-24T07:00Z +Keep,307,2017,May,21,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,93.81,0,0,Check-Out,2017-05-29,Spring,2017-05-22T07:00Z +Keep,206,2017,May,20,20,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,0,Check-Out,2017-05-29,Spring,2017-05-20T07:00Z +Keep,307,2017,May,21,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,94.1,0,0,Check-Out,2017-05-29,Spring,2017-05-22T07:00Z +Keep,309,2017,May,21,25,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,40.95,0,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,164,2017,May,22,28,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,62,0,0,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,1,2017,May,21,27,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,101.5,1,2,Check-Out,2017-05-29,Spring,2017-05-27T07:00Z +Keep,14,2017,May,21,26,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2017-05-29,Spring,2017-05-26T07:00Z +Keep,2,2017,May,21,24,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,86.4,0,0,Check-Out,2017-05-29,Spring,2017-05-24T07:00Z +Keep,129,2017,May,21,25,1,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,9,2017,May,21,27,1,1,2,0,0,BB,DEU,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,102,1,1,Check-Out,2017-05-29,Spring,2017-05-27T07:00Z +Keep,274,2017,May,22,28,1,0,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,100.6,1,1,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,274,2017,May,22,28,1,0,1,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,93.6,0,1,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,39,2017,May,21,26,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,111,1,1,Check-Out,2017-05-29,Spring,2017-05-26T07:00Z +Keep,1,2017,June,22,2,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103,1,1,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,196,2017,May,20,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,50.85,0,0,Check-Out,2017-05-29,Spring,2017-05-15T07:00Z +Keep,10,2017,May,22,28,1,0,3,1,0,HB,USA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,178.2,0,1,Check-Out,2017-05-29,Spring,2017-05-28T07:00Z +Keep,61,2017,May,21,26,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,68,0,1,Check-Out,2017-05-29,Spring,2017-05-26T07:00Z +Keep,227,2017,May,21,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.5,0,0,Check-Out,2017-05-29,Spring,2017-05-22T07:00Z +Keep,203,2017,May,21,25,1,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,4,No Deposit , NULL, 223,0,Transient-Party,55,1,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,38,2017,May,21,27,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,125,0,1,Check-Out,2017-05-29,Spring,2017-05-27T07:00Z +Keep,18,2017,May,21,25,1,3,2,0,0,BB,IND,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,122,0,1,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,38,2017,May,21,25,1,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 242, NULL,0,Transient,170,0,0,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,11,2017,May,21,25,1,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,0,2017,May,21,27,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 240, NULL,0,Transient,123.3,0,0,Check-Out,2017-05-29,Spring,2017-05-27T07:00Z +Keep,388,2017,May,21,25,1,3,2,0,0,SC,CN,Groups,TA/TO, 0,0,0,E,I,1,No Deposit , 96, NULL,0,Transient-Party,0,0,2,Check-Out,2017-05-29,Spring,2017-05-25T07:00Z +Keep,319,2017,May,20,20,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,54,0,2,Check-Out,2017-05-30,Spring,2017-05-20T07:00Z +Keep,9,2017,May,21,27,2,1,1,1,0,HB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,140.98,0,1,Check-Out,2017-05-30,Spring,2017-05-27T07:00Z +Keep,203,2017,May,21,25,2,3,3,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, 223,0,Transient-Party,99,1,0,Check-Out,2017-05-30,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,56.2,0,0,Check-Out,2017-05-30,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,3,2,0,0,BB,PRT,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,58.2,0,0,Check-Out,2017-05-30,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 223,0,Transient-Party,56.2,0,0,Check-Out,2017-05-30,Spring,2017-05-25T07:00Z +Keep,131,2017,May,21,23,2,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,131.63,0,0,Check-Out,2017-05-30,Spring,2017-05-23T07:00Z +Keep,203,2017,May,21,25,2,3,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,D,D,3,No Deposit , NULL, 223,0,Transient-Party,67,1,0,Check-Out,2017-05-30,Spring,2017-05-25T07:00Z +Keep,272,2017,May,21,26,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,92.1,0,1,Check-Out,2017-05-30,Spring,2017-05-26T07:00Z +Keep,128,2017,May,21,26,2,2,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,52.85,0,1,Check-Out,2017-05-30,Spring,2017-05-26T07:00Z +Keep,4,2017,May,22,29,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,E,0,No Deposit , NULL, 62,0,Transient,45,0,0,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,151,2017,May,21,26,2,2,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,112.5,0,1,Check-Out,2017-05-30,Spring,2017-05-26T07:00Z +Keep,204,2017,May,20,20,4,6,2,0,0,HB,LVA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,68.95,0,0,Check-Out,2017-05-30,Spring,2017-05-20T07:00Z +Keep,211,2017,May,19,9,6,15,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,82.85,0,0,Check-Out,2017-05-30,Spring,2017-05-09T07:00Z +Keep,2,2017,May,22,28,2,0,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,159,1,0,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,0,2017,May,22,29,1,0,2,0,0,BB,ITA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,115,1,0,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,1,2017,May,22,28,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,127,1,2,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,5,2017,May,22,28,2,0,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,88,1,0,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,345,2017,May,21,26,2,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,92.4,0,1,Check-Out,2017-05-30,Spring,2017-05-26T07:00Z +Keep,40,2017,May,22,28,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,77.6,0,1,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,40,2017,May,22,28,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,75.6,0,0,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,40,2017,May,22,28,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,75.6,0,1,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,40,2017,May,22,28,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,75.6,0,1,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,17,2017,May,22,29,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,1,No Deposit , 250, NULL,0,Transient,62,1,0,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Keep,337,2017,May,22,28,2,0,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,54,0,1,Check-Out,2017-05-30,Spring,2017-05-28T07:00Z +Keep,1,2017,May,22,29,1,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2017-05-30,Spring,2017-05-29T07:00Z +Cancel,258,2017,May,22,31,2,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,68.95,0,1,No-Show,2017-05-31,Spring,2017-05-31T07:00Z +Keep,7,2017,May,22,29,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-05-31,Spring,2017-05-29T07:00Z +Keep,123,2017,May,20,17,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,114.5,0,2,Check-Out,2017-05-31,Spring,2017-05-17T07:00Z +Keep,21,2017,May,22,28,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,142,0,3,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,201,2017,May,21,23,2,6,2,2,0,BB,GBR,Groups,TA/TO, 0,0,0,C,C,2,No Deposit , NULL, 223,0,Transient-Party,79.88,0,0,Check-Out,2017-05-31,Spring,2017-05-23T07:00Z +Keep,300,2017,May,21,23,2,6,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,99,Transient-Party,62.81,0,0,Check-Out,2017-05-31,Spring,2017-05-23T07:00Z +Keep,345,2017,May,21,24,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 6, NULL,0,Transient,53.57,1,2,Check-Out,2017-05-31,Spring,2017-05-24T07:00Z +Keep,68,2017,May,20,17,4,10,1,0,0,BB,BEL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Group,120,0,2,Check-Out,2017-05-31,Spring,2017-05-17T07:00Z +Keep,77,2017,May,22,28,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147,0,0,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,1,2017,May,22,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 104, NULL,0,Transient,72,0,0,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,1,2017,May,22,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2017-05-31,Spring,2017-05-30T07:00Z +Keep,270,2017,May,21,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,7,No Deposit , 240, NULL,0,Transient-Party,83.5,0,1,Check-Out,2017-05-31,Spring,2017-05-24T07:00Z +Keep,116,2017,May,22,28,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,107,1,2,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,65,2017,May,22,28,2,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,95,0,2,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,4,2017,May,22,28,2,1,2,0,0,BB,CUB,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,32,2017,May,21,27,2,2,2,2,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,165,0,1,Check-Out,2017-05-31,Spring,2017-05-27T07:00Z +Keep,338,2017,May,21,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,54,0,0,Check-Out,2017-05-31,Spring,2017-05-24T07:00Z +Keep,116,2017,May,21,27,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,40.95,0,0,Check-Out,2017-05-31,Spring,2017-05-27T07:00Z +Keep,112,2017,May,22,28,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,117,0,1,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,1,2017,May,22,28,2,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,109.8,0,1,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,36,2017,May,22,28,2,1,2,0,0,BB,FIN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,142,1,2,Check-Out,2017-05-31,Spring,2017-05-28T07:00Z +Keep,5,2017,May,22,29,1,1,2,0,0,BB,CPV,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2017-05-31,Spring,2017-05-29T07:00Z +Keep,184,2017,May,20,18,4,10,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 479, NULL,0,Transient,85.7,0,1,Check-Out,2017-06-01,Spring,2017-05-18T07:00Z +Keep,352,2017,May,21,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,4,No Deposit , NULL, NULL,0,Transient-Party,67.5,0,3,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,59.71,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,314,2017,May,21,22,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,84.7,0,0,Check-Out,2017-06-01,Spring,2017-05-22T07:00Z +Keep,337,2017,May,21,25,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,84.7,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,310,2017,May,20,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 243, NULL,0,Contract,80.4,0,0,Check-Out,2017-06-01,Spring,2017-05-18T07:00Z +Keep,192,2017,May,20,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-01,Spring,2017-05-18T07:00Z +Keep,309,2017,May,21,25,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 40, NULL,0,Contract,68.7,0,2,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,309,2017,May,21,25,2,5,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 40, NULL,0,Contract,82.88,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,309,2017,May,21,25,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , 40, NULL,0,Contract,80.88,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,305,2017,May,21,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,54,0,1,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,301,2017,May,21,25,2,5,2,0,1,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,303,2017,May,21,25,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,306,2017,May,21,25,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,84.23,0,1,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,314,2017,May,21,22,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,98.2,0,0,Check-Out,2017-06-01,Spring,2017-05-22T07:00Z +Keep,4,2017,May,22,29,1,2,3,1,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,144,0,0,Check-Out,2017-06-01,Spring,2017-05-29T07:00Z +Keep,1,2017,May,22,31,0,1,2,0,0,BB,CUB,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,115,0,2,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,34,2017,May,22,29,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,103,1,1,Check-Out,2017-06-01,Spring,2017-05-29T07:00Z +Keep,154,2017,May,22,28,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,1,2,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,280,2017,May,21,25,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,139,2017,May,22,29,1,2,2,0,0,FB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 436, NULL,0,Transient,128.7,0,0,Check-Out,2017-06-01,Spring,2017-05-29T07:00Z +Keep,203,2017,May,21,25,2,5,2,1,0,BB,GBR,Groups,TA/TO, 0,0,0,C,C,2,No Deposit , NULL, 223,0,Transient-Party,81.71,1,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,59.71,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,59.71,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,5,2,2,0,BB,GBR,Groups,TA/TO, 0,0,0,A,C,5,No Deposit , NULL, 223,0,Transient-Party,106,1,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,14,2017,May,22,31,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,2,No Deposit , NULL, 78,0,Transient,45,0,0,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,1,2017,May,22,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 195,0,Transient,75,0,0,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,1,2017,May,22,31,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 195,0,Transient,75,0,0,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,170,2017,May,22,28,2,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,55.5,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,174,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,330,2017,May,20,18,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-01,Spring,2017-05-18T07:00Z +Keep,120,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,202,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,64.5,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,124,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,207,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,0,2017,May,22,29,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,120,0,1,Check-Out,2017-06-01,Spring,2017-05-29T07:00Z +Keep,95,2017,May,22,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,92,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,124,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,172,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,353,2017,May,21,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,68,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,117,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,164,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,124,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,138,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,56.7,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,1,2017,May,22,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-06-01,Spring,2017-05-30T07:00Z +Keep,203,2017,May,21,25,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,59.71,1,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,138,2017,May,22,28,2,2,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,49.95,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,352,2017,May,21,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,66,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,42,2017,May,22,30,0,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 468, NULL,0,Transient,98.4,1,0,Check-Out,2017-06-01,Spring,2017-05-30T07:00Z +Keep,167,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,3,2017,May,22,31,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,88,1,1,Check-Out,2017-06-01,Spring,2017-05-31T07:00Z +Keep,135,2017,May,21,26,2,4,2,2,0,BB,GBR,Direct,Direct, 0,0,0,C,C,4,No Deposit , 250, NULL,0,Transient,96,0,1,Check-Out,2017-06-01,Spring,2017-05-26T07:00Z +Keep,352,2017,May,21,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,66,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,203,2017,May,21,25,2,5,2,0,0,BB,GBR,Groups,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 223,0,Transient-Party,66.71,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,352,2017,May,21,25,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,84.21,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,353,2017,May,21,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,80,0,0,Check-Out,2017-06-01,Spring,2017-05-25T07:00Z +Keep,199,2017,May,22,28,2,2,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 410, NULL,0,Transient,92.55,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,159,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.2,0,0,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,73,2017,May,22,30,0,2,2,0,0,BB,PAK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,100,0,1,Check-Out,2017-06-01,Spring,2017-05-30T07:00Z +Keep,212,2017,May,22,28,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,56.7,0,1,Check-Out,2017-06-01,Spring,2017-05-28T07:00Z +Keep,333,2017,May,21,26,2,5,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,70.46,0,0,Check-Out,2017-06-02,Spring,2017-05-26T07:00Z +Keep,124,2017,May,21,22,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-02,Spring,2017-05-22T07:00Z +Keep,44,2017,May,22,29,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,113,0,0,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,44,2017,May,22,29,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,113,0,0,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,34,2017,May,22,28,2,3,1,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,182.4,0,2,Check-Out,2017-06-02,Spring,2017-05-28T07:00Z +Keep,71,2017,May,21,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Contract,69.56,0,0,Check-Out,2017-06-02,Spring,2017-05-26T07:00Z +Keep,39,2017,May,22,28,2,3,2,0,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,156.8,1,0,Check-Out,2017-06-02,Spring,2017-05-28T07:00Z +Keep,79,2017,May,21,26,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,127,0,0,Check-Out,2017-06-02,Spring,2017-05-26T07:00Z +Keep,40,2017,May,22,28,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120.4,1,2,Check-Out,2017-06-02,Spring,2017-05-28T07:00Z +Keep,61,2017,May,22,29,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,106.2,1,1,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,5,2017,June,22,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,82,1,1,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,2,2017,June,22,1,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,115,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,1,2017,May,22,31,0,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,127,0,1,Check-Out,2017-06-02,Spring,2017-05-31T07:00Z +Keep,10,2017,May,22,29,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,129.5,0,1,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,2,2017,June,22,1,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,67.5,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,66.5,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,25,2017,May,22,30,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98,0,1,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,71,2017,May,22,30,0,3,2,2,1,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,176.67,0,0,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,6,2017,May,22,31,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 290,0,Transient-Party,75,0,0,Check-Out,2017-06-02,Spring,2017-05-31T07:00Z +Keep,135,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94.97,0,2,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,135,2017,May,22,30,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94.97,0,2,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,137,2017,May,22,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,108.33,0,0,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,351,2017,May,21,26,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,3,No Deposit , 241, NULL,0,Transient,81.53,0,2,Check-Out,2017-06-02,Spring,2017-05-26T07:00Z +Keep,12,2017,May,22,31,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,76,0,2,Check-Out,2017-06-02,Spring,2017-05-31T07:00Z +Keep,2,2017,June,22,1,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,85,0,0,Check-Out,2017-06-02,Summer,2017-06-01T07:00Z +Keep,192,2017,May,21,25,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,108.31,0,0,Check-Out,2017-06-02,Spring,2017-05-25T07:00Z +Keep,3,2017,May,22,29,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,129,1,2,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,1,2017,June,22,2,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,85,1,2,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,2,2017,May,22,29,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,115,0,2,Check-Out,2017-06-02,Spring,2017-05-29T07:00Z +Keep,277,2017,May,22,30,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.1,0,0,Check-Out,2017-06-02,Spring,2017-05-30T07:00Z +Keep,7,2017,May,22,28,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,145.33,0,1,Check-Out,2017-06-03,Spring,2017-05-28T07:00Z +Keep,5,2017,May,22,30,0,4,3,1,0,BB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,144,0,0,Check-Out,2017-06-03,Spring,2017-05-30T07:00Z +Keep,230,2017,May,22,29,1,4,2,0,0,HB,HRV,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,77.35,0,1,Check-Out,2017-06-03,Spring,2017-05-29T07:00Z +Keep,107,2017,May,21,27,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,80.43,0,0,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,230,2017,May,22,29,1,4,2,0,0,HB,HRV,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,77.35,0,1,Check-Out,2017-06-03,Spring,2017-05-29T07:00Z +Keep,1,2017,May,21,27,2,5,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,75.43,0,1,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,122,2017,June,22,2,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,110,0,2,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,10,2017,May,22,30,0,4,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,212.5,1,0,Check-Out,2017-06-03,Spring,2017-05-30T07:00Z +Keep,137,2017,May,21,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,1,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,137,2017,May,21,27,2,5,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.95,0,1,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,2,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,1,2017,June,22,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 384,0,Transient-Party,75,0,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,1,No Deposit , NULL, 384,0,Transient-Party,75,0,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,19,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 242, NULL,0,Transient,104,1,0,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,6,2017,May,22,31,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 175, NULL,0,Transient,79,1,0,Check-Out,2017-06-03,Spring,2017-05-31T07:00Z +Keep,132,2017,May,22,29,1,4,2,1,1,BB,ITA,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,135.1,1,3,Check-Out,2017-06-03,Spring,2017-05-29T07:00Z +Keep,9,2017,June,22,2,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,79.8,1,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,7,2017,May,22,31,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,92.42,0,0,Check-Out,2017-06-03,Spring,2017-05-31T07:00Z +Keep,15,2017,May,22,30,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,84,0,0,Check-Out,2017-06-03,Spring,2017-05-30T07:00Z +Keep,1,2017,June,22,1,0,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,92,1,1,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,1,2017,June,26,26,1,0,2,0,0,BB,CHE,Online travel agent,Direct, 1,0,1,A,G,0,No Deposit , 240, NULL,0,Transient,140,1,1,Check-Out,2017-06-27,Summer,2017-06-26T07:00Z +Keep,7,2017,May,22,31,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,95,0,0,Check-Out,2017-06-03,Spring,2017-05-31T07:00Z +Keep,19,2017,May,21,27,2,5,2,0,1,HB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 241, NULL,0,Transient,161.6,0,2,Check-Out,2017-06-03,Spring,2017-05-27T07:00Z +Keep,158,2017,May,22,30,0,4,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 298, NULL,0,Transient,75,1,1,Check-Out,2017-06-03,Spring,2017-05-30T07:00Z +Keep,191,2017,May,22,30,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,111.75,1,0,Check-Out,2017-06-03,Spring,2017-05-30T07:00Z +Keep,6,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,94.5,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,14,2017,June,22,2,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,46,2017,June,22,1,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,97.6,0,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,124,1,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,96.5,0,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,4,2017,June,22,1,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,122,0,1,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,2,2017,June,22,1,0,2,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,1,1,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,2,2017,June,22,2,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,125,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,62,2017,June,22,1,0,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,109,0,1,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,0,2017,June,22,3,0,1,3,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,158,1,0,Check-Out,2017-06-04,Summer,2017-06-03T07:00Z +Keep,0,2017,June,22,1,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,192,1,0,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,7,2017,June,22,2,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,72,1,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,9,2017,June,22,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81,0,1,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,2,2017,June,22,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,81,0,2,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,91,2017,June,22,2,0,1,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,153,0,0,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,29,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,120,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,29,2017,June,22,2,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient-Party,120,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,29,2017,June,22,2,0,1,1,0,0,BB,MAC,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient-Party,120,0,1,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,50,2017,May,22,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,150,0,0,Check-Out,2017-06-03,Spring,2017-05-31T07:00Z +Keep,0,2017,June,22,1,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,90,0,2,Check-Out,2017-06-03,Summer,2017-06-01T07:00Z +Keep,91,2017,June,22,2,0,1,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,155,0,0,Check-Out,2017-06-03,Summer,2017-06-02T07:00Z +Keep,119,2017,June,22,3,2,4,2,2,0,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient-Party,175,0,1,Check-Out,2017-06-09,Summer,2017-06-03T07:00Z +Keep,119,2017,June,22,3,2,4,2,2,0,BB,IRL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient-Party,175,0,1,Check-Out,2017-06-09,Summer,2017-06-03T07:00Z +Keep,131,2017,June,22,2,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,102.41,0,0,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,130,2017,May,22,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,118,2017,May,21,26,2,7,2,0,0,BB,FIN,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,99.28,0,0,Check-Out,2017-06-04,Spring,2017-05-26T07:00Z +Keep,0,2017,June,22,3,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2017-06-04,Summer,2017-06-03T07:00Z +Keep,67,2017,June,23,4,2,1,2,0,0,BB,CN,Online travel agent,Direct, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,114.8,0,1,Check-Out,2017-06-07,Summer,2017-06-04T07:00Z +Keep,116,2017,June,22,1,0,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,135.52,0,3,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,116,2017,June,22,1,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,109.13,0,2,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,78,2017,May,22,28,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,102.32,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,83,2017,June,22,2,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,137,1,2,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,0,2017,June,22,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,115,0,0,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,1,2017,June,22,1,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,109,1,1,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,76,2017,May,22,31,0,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,155.5,1,0,Check-Out,2017-06-04,Spring,2017-05-31T07:00Z +Keep,223,2017,May,22,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,118.7,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,25,2017,May,22,30,0,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,93,0,0,Check-Out,2017-06-04,Spring,2017-05-30T07:00Z +Keep,122,2017,May,22,28,2,5,2,2,0,BB,GBR,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,149.14,0,3,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,159,2017,May,22,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,97.43,0,2,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,19,2017,May,22,29,1,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,125.5,1,2,Check-Out,2017-06-04,Spring,2017-05-29T07:00Z +Keep,14,2017,June,22,1,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,82.69,0,0,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,11,2017,June,22,1,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,97.25,1,2,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,48,2017,June,22,2,0,2,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,128,2017,June,22,2,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,99,0,2,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,21,2017,June,22,2,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101.5,1,1,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,110,2017,June,22,2,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,107.8,0,0,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,23,2017,June,22,2,0,2,3,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,198.4,1,0,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,330,2017,May,21,26,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.75,0,1,Check-Out,2017-06-04,Spring,2017-05-26T07:00Z +Keep,1,2017,June,22,1,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,60,2017,June,22,1,0,3,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,119.33,0,2,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,335,2017,May,21,26,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,62.75,0,2,Check-Out,2017-06-04,Spring,2017-05-26T07:00Z +Keep,0,2017,June,22,1,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,94.41,1,1,Check-Out,2017-06-04,Summer,2017-06-01T07:00Z +Keep,268,2017,May,22,28,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,3,No Deposit , NULL, NULL,0,Transient-Party,102.31,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,268,2017,May,22,28,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,3,No Deposit , NULL, NULL,0,Transient-Party,123.6,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,115,2017,May,22,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70.4,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,56,2017,May,22,28,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,122.57,0,2,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,1,2017,June,22,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 348, NULL,0,Transient,105,0,1,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,223,2017,May,22,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,1,Check-Out,2017-06-04,Spring,2017-05-28T07:00Z +Keep,130,2017,June,22,2,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,132,0,1,Check-Out,2017-06-04,Summer,2017-06-02T07:00Z +Keep,0,2017,June,22,3,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,122,1,0,Check-Out,2017-06-04,Summer,2017-06-03T07:00Z +Keep,131,2017,May,22,29,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161.29,0,2,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,131,2017,May,22,29,2,5,1,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,161.29,0,2,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,321,2017,May,22,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,1,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,0,2017,June,22,1,1,3,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,113,0,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,105,2017,May,22,29,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,74.63,0,0,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,109,2017,June,22,2,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,109.41,1,0,Check-Out,2017-06-05,Summer,2017-06-02T07:00Z +Keep,136,2017,May,22,31,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,121.5,0,0,Check-Out,2017-06-05,Spring,2017-05-31T07:00Z +Keep,136,2017,May,22,31,1,4,3,0,0,BB,IRL,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2017-06-05,Spring,2017-05-31T07:00Z +Keep,37,2017,June,22,3,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,136,1,0,Check-Out,2017-06-05,Summer,2017-06-03T07:00Z +Keep,125,2017,June,22,1,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,140,0,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,270,2017,June,22,1,1,3,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,140,2017,May,22,28,3,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,215.5,0,0,Check-Out,2017-06-05,Spring,2017-05-28T07:00Z +Keep,86,2017,June,22,2,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,127,0,0,Check-Out,2017-06-05,Summer,2017-06-02T07:00Z +Keep,1,2017,June,22,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,105,0,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,130,2017,June,22,1,1,3,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 242, NULL,0,Transient,122,1,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,213,2017,May,21,22,4,10,1,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,68.6,0,0,Check-Out,2017-06-05,Spring,2017-05-22T07:00Z +Keep,321,2017,May,22,29,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,77.88,1,1,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,105,2017,June,22,1,1,3,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,139.5,1,0,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,0,2017,May,22,29,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,137.21,1,0,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,136,2017,May,22,29,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,106.72,0,1,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,15,2017,June,22,1,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,1,2017,June,22,1,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,120,0,1,Check-Out,2017-06-05,Summer,2017-06-01T07:00Z +Keep,273,2017,June,22,2,1,2,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,143.1,0,2,Check-Out,2017-06-05,Summer,2017-06-02T07:00Z +Keep,123,2017,May,21,22,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.26,0,0,Check-Out,2017-06-05,Spring,2017-05-22T07:00Z +Keep,85,2017,May,22,29,2,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,1,2017,June,22,2,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,95,0,1,Check-Out,2017-06-05,Summer,2017-06-02T07:00Z +Keep,4,2017,June,23,5,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,128,0,1,Check-Out,2017-06-09,Summer,2017-06-05T07:00Z +Keep,126,2017,May,22,29,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,179.94,0,0,Check-Out,2017-06-05,Spring,2017-05-29T07:00Z +Keep,14,2017,May,21,23,4,10,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,103.79,0,2,Check-Out,2017-06-06,Spring,2017-05-23T07:00Z +Keep,32,2017,May,22,30,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 479, NULL,0,Transient,123,0,0,Check-Out,2017-06-06,Spring,2017-05-30T07:00Z +Keep,184,2017,June,22,2,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,102,0,1,Check-Out,2017-06-06,Summer,2017-06-02T07:00Z +Keep,184,2017,June,22,2,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,102,0,1,Check-Out,2017-06-06,Summer,2017-06-02T07:00Z +Keep,264,2017,May,22,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,115.7,0,0,Check-Out,2017-06-06,Spring,2017-05-30T07:00Z +Keep,125,2017,May,21,23,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-06,Spring,2017-05-23T07:00Z +Keep,312,2017,May,22,30,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,63.36,0,2,Check-Out,2017-06-06,Spring,2017-05-30T07:00Z +Keep,312,2017,May,22,30,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,63.36,0,2,Check-Out,2017-06-06,Spring,2017-05-30T07:00Z +Keep,14,2017,June,22,2,2,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,159.5,0,0,Check-Out,2017-06-06,Summer,2017-06-02T07:00Z +Keep,79,2017,June,22,3,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,96,0,0,Check-Out,2017-06-06,Summer,2017-06-03T07:00Z +Keep,70,2017,June,23,4,2,0,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157,1,1,Check-Out,2017-06-06,Summer,2017-06-04T07:00Z +Keep,16,2017,June,22,2,2,2,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,187.5,0,1,Check-Out,2017-06-06,Summer,2017-06-02T07:00Z +Keep,16,2017,June,22,2,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,187.5,0,1,Check-Out,2017-06-06,Summer,2017-06-02T07:00Z +Keep,27,2017,May,22,31,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,172,0,2,Check-Out,2017-06-06,Spring,2017-05-31T07:00Z +Keep,158,2017,May,22,29,3,6,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,131.67,0,1,Check-Out,2017-06-07,Spring,2017-05-29T07:00Z +Keep,76,2017,May,22,28,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,140.8,0,0,Check-Out,2017-06-07,Spring,2017-05-28T07:00Z +Keep,258,2017,May,22,28,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 57, NULL,0,Transient,108,0,2,Check-Out,2017-06-07,Spring,2017-05-28T07:00Z +Keep,241,2017,June,22,3,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.6,0,2,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,79,2017,June,22,3,2,2,1,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,H,0,No Deposit , 40, NULL,0,Contract,63,0,0,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,231,2017,June,22,3,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,2,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,241,2017,June,22,3,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,93.6,0,2,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,241,2017,June,22,3,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,95.6,0,2,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,4,2017,June,23,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,108,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,4,2017,June,23,6,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 146, NULL,0,Transient,108,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,13,2017,June,23,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 534,0,Transient-Party,90,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,13,2017,June,23,6,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 534,0,Transient-Party,90,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,69,2017,June,22,3,2,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,167,1,0,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,69,2017,June,22,3,2,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,160,0,0,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,83,2017,June,23,4,2,1,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127,1,2,Check-Out,2017-06-07,Summer,2017-06-04T07:00Z +Keep,190,2017,June,23,6,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,0,2017,June,23,4,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,137,1,0,Check-Out,2017-06-07,Summer,2017-06-04T07:00Z +Keep,0,2017,June,23,6,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,122,1,0,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,251,2017,May,22,31,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,5,No Deposit , 436, NULL,0,Transient,54,0,1,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,251,2017,May,22,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,59.4,0,1,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,251,2017,May,22,31,2,5,1,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,2,No Deposit , 436, NULL,0,Transient,83.7,0,1,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,297,2017,June,22,2,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.1,0,3,Check-Out,2017-06-07,Summer,2017-06-02T07:00Z +Keep,251,2017,May,22,31,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.4,0,2,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,177,2017,May,22,29,3,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,96.8,0,0,Check-Out,2017-06-07,Spring,2017-05-29T07:00Z +Keep,251,2017,May,22,31,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 177, NULL,0,Transient,59.4,0,1,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,59,2017,June,22,3,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,152,0,1,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,251,2017,May,22,31,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 177, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-07,Spring,2017-05-31T07:00Z +Keep,2,2017,June,23,6,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2017-06-07,Summer,2017-06-06T07:00Z +Keep,90,2017,June,22,1,2,4,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,157,1,1,Check-Out,2017-06-07,Summer,2017-06-01T07:00Z +Keep,246,2017,June,22,3,2,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.1,0,3,Check-Out,2017-06-07,Summer,2017-06-03T07:00Z +Keep,297,2017,June,22,2,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,82.1,0,3,Check-Out,2017-06-07,Summer,2017-06-02T07:00Z +Keep,297,2017,June,22,2,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,3,Check-Out,2017-06-07,Summer,2017-06-02T07:00Z +Keep,21,2017,June,22,1,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,93,0,0,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,36,2017,June,22,1,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Group,93,0,0,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,124,2017,May,22,30,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,136.44,0,2,Check-Out,2017-06-08,Spring,2017-05-30T07:00Z +Keep,138,2017,May,22,28,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,222.02,0,0,Check-Out,2017-06-08,Spring,2017-05-28T07:00Z +Keep,4,2017,June,23,4,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 526, NULL,0,Transient,95,0,0,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,57,2017,June,22,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,106,0,0,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,165,2017,May,22,29,3,7,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63.95,0,1,Check-Out,2017-06-08,Spring,2017-05-29T07:00Z +Keep,165,2017,May,22,29,3,7,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63.95,0,1,Check-Out,2017-06-08,Spring,2017-05-29T07:00Z +Keep,44,2017,June,23,7,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 108,0,Transient-Party,75,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,44,2017,June,23,7,0,1,1,0,0,BB,GBR,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 108,0,Transient-Party,75,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,66,2017,June,23,4,2,2,2,0,0,BB,LVA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,187,0,2,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,180,2017,June,23,7,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,379,2017,June,22,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,1,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,183,2017,June,23,7,0,1,1,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,183,2017,June,23,7,0,1,2,0,0,BB,DNK,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 251, NULL,0,Transient-Party,95,0,0,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,324,2017,June,22,1,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,63.95,0,0,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,83,2017,June,23,7,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,96,1,1,Check-Out,2017-06-08,Summer,2017-06-07T07:00Z +Keep,165,2017,May,22,29,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,1,Check-Out,2017-06-08,Spring,2017-05-29T07:00Z +Keep,294,2017,June,22,3,2,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,107.6,1,2,Check-Out,2017-06-08,Summer,2017-06-03T07:00Z +Keep,213,2017,May,21,25,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,84.7,0,0,Check-Out,2017-06-08,Spring,2017-05-25T07:00Z +Keep,281,2017,June,22,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,86.7,0,2,Check-Out,2017-06-08,Summer,2017-06-01T07:00Z +Keep,205,2017,June,23,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 410, NULL,0,Transient,80,0,2,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,17,2017,June,23,4,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,126,0,1,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,1,2017,June,23,6,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,123.5,0,0,Check-Out,2017-06-08,Summer,2017-06-06T07:00Z +Keep,127,2017,May,22,29,3,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,97.2,0,0,Check-Out,2017-06-08,Spring,2017-05-29T07:00Z +Keep,191,2017,June,23,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,64.5,0,0,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,216,2017,May,22,29,3,7,3,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,112.57,0,2,Check-Out,2017-06-08,Spring,2017-05-29T07:00Z +Keep,181,2017,June,23,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,64.5,0,0,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,205,2017,June,23,4,2,2,1,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,55.5,0,1,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,205,2017,June,23,4,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,63,0,1,Check-Out,2017-06-08,Summer,2017-06-04T07:00Z +Keep,50,2017,June,23,8,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,165,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,142,2017,June,22,2,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-09,Summer,2017-06-02T07:00Z +Keep,313,2017,June,23,4,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,79.56,1,0,Check-Out,2017-06-09,Summer,2017-06-04T07:00Z +Keep,2,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,56,2017,June,22,2,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,149.57,1,1,Check-Out,2017-06-09,Summer,2017-06-02T07:00Z +Keep,4,2017,June,23,6,0,3,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,128,0,0,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,67,2017,June,23,4,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140.4,0,2,Check-Out,2017-06-09,Summer,2017-06-04T07:00Z +Keep,2,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,0,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,342,2017,June,23,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,89.25,0,2,Check-Out,2017-06-09,Summer,2017-06-05T07:00Z +Keep,0,2017,June,23,8,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 337,0,Transient,75,0,0,Check-Out,2017-06-09,Summer,2017-06-08T07:00Z +Keep,322,2017,June,23,6,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,274,2017,June,23,6,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,93.6,0,0,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,264,2017,June,23,6,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,99,0,0,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,21,2017,June,22,2,2,5,2,1,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,113.75,0,0,Check-Out,2017-06-09,Summer,2017-06-02T07:00Z +Keep,2,2017,June,23,7,0,2,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 269,0,Transient,70,0,0,Check-Out,2017-06-09,Summer,2017-06-07T07:00Z +Keep,40,2017,June,23,5,1,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,231.5,1,0,Check-Out,2017-06-09,Summer,2017-06-05T07:00Z +Keep,128,2017,June,23,7,0,2,2,2,0,BB,IRL,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,119.88,0,0,Check-Out,2017-06-09,Summer,2017-06-07T07:00Z +Keep,322,2017,June,23,5,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,94.25,0,1,Check-Out,2017-06-09,Summer,2017-06-05T07:00Z +Keep,318,2017,June,22,2,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,96.91,1,0,Check-Out,2017-06-09,Summer,2017-06-02T07:00Z +Keep,2,2017,June,23,6,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,180.33,0,1,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,146,2017,May,22,31,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,102.38,0,1,Check-Out,2017-06-09,Spring,2017-05-31T07:00Z +Keep,295,2017,May,22,30,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,82.1,0,2,Check-Out,2017-06-09,Spring,2017-05-30T07:00Z +Keep,141,2017,June,23,6,0,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,126,0,2,Check-Out,2017-06-09,Summer,2017-06-06T07:00Z +Keep,148,2017,June,22,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-09,Summer,2017-06-02T07:00Z +Keep,41,2017,June,22,3,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,189,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,261,2017,June,22,3,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,68.4,0,0,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,67,2017,June,22,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,171,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,23,2017,June,23,4,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,65,0,0,Check-Out,2017-06-10,Summer,2017-06-04T07:00Z +Keep,113,2017,June,22,2,2,6,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2017-06-10,Summer,2017-06-02T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,24,2017,June,23,8,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,69.5,0,0,Check-Out,2017-06-10,Summer,2017-06-08T07:00Z +Keep,1,2017,June,23,10,1,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,135,0,0,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,74.25,0,0,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,254,2017,June,22,2,2,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,125,0,4,Check-Out,2017-06-10,Summer,2017-06-02T07:00Z +Keep,241,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,95.6,0,2,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,275,2017,June,22,3,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,99.24,0,3,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,275,2017,June,22,3,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,99.24,0,3,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,0,2017,June,23,9,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,127,0,0,Check-Out,2017-06-10,Summer,2017-06-09T07:00Z +Keep,322,2017,June,23,6,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-06T07:00Z +Keep,320,2017,June,23,4,2,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.83,0,0,Check-Out,2017-06-10,Summer,2017-06-04T07:00Z +Keep,176,2017,June,23,6,0,4,3,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,142.5,0,1,Check-Out,2017-06-10,Summer,2017-06-06T07:00Z +Keep,24,2017,June,23,8,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,66,0,0,Check-Out,2017-06-10,Summer,2017-06-08T07:00Z +Keep,1,2017,June,23,10,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,135,0,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,23,2017,June,23,8,0,2,2,0,0,BB,DEU,Complementary,TA/TO, 0,0,0,D,D,1,No Deposit , 15, NULL,0,Transient,0,0,1,Check-Out,2017-06-10,Summer,2017-06-08T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,289,2017,June,22,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,61.11,0,0,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,76.25,0,3,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,28,2017,June,23,9,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,112,0,0,Check-Out,2017-06-10,Summer,2017-06-09T07:00Z +Keep,1,2017,June,23,10,2,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,135,0,0,Check-Out,2017-06-13,Summer,2017-06-10T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,88.2,0,0,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,0,2017,June,23,9,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-10,Summer,2017-06-09T07:00Z +Keep,321,2017,June,23,4,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-10,Summer,2017-06-04T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,320,2017,June,23,5,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-05T07:00Z +Keep,320,2017,June,22,3,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,74.25,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,41,2017,June,22,3,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient-Party,172,0,1,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,319,2017,June,22,3,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,68.54,0,0,Check-Out,2017-06-10,Summer,2017-06-03T07:00Z +Keep,24,2017,June,23,8,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 8, NULL,0,Transient,66,1,0,Check-Out,2017-06-10,Summer,2017-06-08T07:00Z +Keep,1,2017,June,23,10,1,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Group,149,1,0,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,296,2017,May,22,28,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-11,Spring,2017-05-28T07:00Z +Keep,247,2017,June,23,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,95.6,0,2,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,131,2017,June,22,1,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,102.8,0,1,Check-Out,2017-06-11,Summer,2017-06-01T07:00Z +Keep,131,2017,June,22,1,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient-Party,102.8,0,1,Check-Out,2017-06-11,Summer,2017-06-01T07:00Z +Keep,277,2017,May,22,28,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-11,Spring,2017-05-28T07:00Z +Keep,137,2017,June,23,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,70.4,0,0,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,96,2017,June,23,4,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,155,0,0,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,327,2017,June,23,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,1,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,159,2017,June,23,10,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,159,2017,June,23,10,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,159,2017,June,23,10,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,159,2017,June,23,10,0,1,2,0,0,BB,NOR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient-Party,80,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,145,2017,June,23,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,70.4,0,0,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,0,2017,June,23,10,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,115,2017,May,22,31,2,9,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,140.21,0,0,Check-Out,2017-06-11,Spring,2017-05-31T07:00Z +Keep,89,2017,June,23,9,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,135,0,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,0,2017,June,23,10,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,26,2017,June,23,10,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,66,0,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,16,2017,June,23,9,0,2,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,107,1,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,129,2017,June,23,4,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient-Party,108.56,0,2,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,14,2017,June,23,10,0,1,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,93,0,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,7,2017,June,23,8,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-11,Summer,2017-06-08T07:00Z +Keep,19,2017,June,23,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,3,2017,June,23,5,1,5,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133.33,0,1,Check-Out,2017-06-11,Summer,2017-06-05T07:00Z +Keep,2,2017,June,23,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 348, NULL,0,Transient,140,0,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,0,2017,June,23,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,149,1,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,22,2017,June,23,10,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,24,2017,June,23,8,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2017-06-11,Summer,2017-06-08T07:00Z +Keep,24,2017,June,23,8,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2017-06-11,Summer,2017-06-08T07:00Z +Keep,18,2017,June,23,9,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,164,1,1,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,4,2017,June,23,10,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,149,1,0,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,66,2017,June,23,8,0,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,137.6,0,1,Check-Out,2017-06-11,Summer,2017-06-08T07:00Z +Keep,45,2017,June,23,9,0,2,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,172,0,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,45,2017,June,23,9,0,2,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,147,0,1,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,300,2017,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,95.6,0,1,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,33,2017,June,23,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,118,1,2,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,33,2017,June,23,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,130,0,2,Check-Out,2017-06-17,Summer,2017-06-10T07:00Z +Keep,23,2017,June,23,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,45,2017,June,23,9,0,2,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,172,0,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,58,2017,June,23,9,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,76,0,2,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,320,2017,June,23,4,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,60.43,0,0,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,10,2017,June,23,10,0,1,2,0,0,HB,MDV,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,192,0,1,Check-Out,2017-06-11,Summer,2017-06-10T07:00Z +Keep,39,2017,June,23,4,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Group,95,0,0,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,129,2017,June,23,4,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 314, NULL,0,Transient-Party,108.56,0,2,Check-Out,2017-06-11,Summer,2017-06-04T07:00Z +Keep,21,2017,June,23,9,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,126,0,1,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,21,2017,June,23,9,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,126,0,1,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,3,2017,June,23,9,0,2,2,2,0,BB,ROU,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,182,1,0,Check-Out,2017-06-11,Summer,2017-06-09T07:00Z +Keep,237,2017,June,24,11,2,4,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,49.95,0,0,Check-Out,2017-06-17,Summer,2017-06-11T07:00Z +Keep,32,2017,June,23,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,166.75,1,1,Check-Out,2017-06-12,Summer,2017-06-08T07:00Z +Keep,32,2017,June,23,8,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,0,2,Check-Out,2017-06-12,Summer,2017-06-08T07:00Z +Keep,290,2017,May,22,29,4,10,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,51.95,0,0,Check-Out,2017-06-12,Spring,2017-05-29T07:00Z +Keep,290,2017,May,22,29,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.7,0,0,Check-Out,2017-06-12,Spring,2017-05-29T07:00Z +Keep,166,2017,May,22,29,4,10,1,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,78.95,0,0,Check-Out,2017-06-12,Spring,2017-05-29T07:00Z +Keep,108,2017,June,23,9,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,164,1,0,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,18,2017,June,23,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,63,0,0,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,18,2017,June,23,9,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 40, NULL,0,Contract,73,0,0,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,41,2017,June,23,9,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,136.67,0,0,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,27,2017,June,23,10,1,1,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,G,3,No Deposit , 240, NULL,0,Transient,186,1,3,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,33,2017,June,23,7,1,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,112,0,1,Check-Out,2017-06-12,Summer,2017-06-07T07:00Z +Keep,85,2017,June,23,9,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150,0,2,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,38,2017,June,23,10,1,1,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,160.25,0,0,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,42,2017,June,23,5,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,230,0,0,Check-Out,2017-06-12,Summer,2017-06-05T07:00Z +Keep,2,2017,June,23,10,1,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,94,1,0,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,0,2017,June,23,8,1,3,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 306, NULL,0,Transient,87.19,1,0,Check-Out,2017-06-12,Summer,2017-06-08T07:00Z +Keep,15,2017,June,23,9,1,2,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,153.5,1,0,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,344,2017,June,22,1,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-12,Summer,2017-06-01T07:00Z +Keep,23,2017,June,23,9,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,142.12,0,1,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,321,2017,June,23,5,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,100.92,0,3,Check-Out,2017-06-12,Summer,2017-06-05T07:00Z +Keep,23,2017,June,23,9,1,2,1,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,156.12,1,1,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,61,2017,June,23,5,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient-Party,99.25,0,2,Check-Out,2017-06-12,Summer,2017-06-05T07:00Z +Keep,65,2017,June,23,10,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Check-Out,2017-06-12,Summer,2017-06-10T07:00Z +Keep,75,2017,June,23,7,1,4,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,98,0,1,Check-Out,2017-06-12,Summer,2017-06-07T07:00Z +Keep,321,2017,June,23,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,80.46,0,1,Check-Out,2017-06-12,Summer,2017-06-05T07:00Z +Keep,20,2017,June,24,11,1,0,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,66,0,0,Check-Out,2017-06-12,Summer,2017-06-11T07:00Z +Keep,16,2017,June,23,9,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,2,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,19,2017,June,22,2,3,7,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,172.8,0,1,Check-Out,2017-06-12,Summer,2017-06-02T07:00Z +Keep,38,2017,June,23,9,1,2,2,0,0,SC,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,0,0,1,Check-Out,2017-06-12,Summer,2017-06-09T07:00Z +Keep,32,2017,June,23,6,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,93,0,1,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,168,2017,June,23,5,3,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,141.5,0,2,Check-Out,2017-06-13,Summer,2017-06-05T07:00Z +Keep,228,2017,June,23,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, 436,0,Group,87.13,0,0,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,117,2017,June,23,8,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,102.41,0,0,Check-Out,2017-06-13,Summer,2017-06-08T07:00Z +Keep,210,2017,June,22,3,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,100.4,0,0,Check-Out,2017-06-13,Summer,2017-06-03T07:00Z +Keep,84,2017,June,23,10,2,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,140,0,3,Check-Out,2017-06-13,Summer,2017-06-10T07:00Z +Keep,291,2017,June,23,6,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.7,0,0,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,300,2017,June,23,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.7,0,1,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,210,2017,June,22,3,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-13,Summer,2017-06-03T07:00Z +Keep,8,2017,June,23,7,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,168.72,0,1,Check-Out,2017-06-13,Summer,2017-06-07T07:00Z +Keep,259,2017,June,23,6,2,5,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,97.4,0,0,Check-Out,2017-06-13,Summer,2017-06-06T07:00Z +Keep,21,2017,June,23,8,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,2,Check-Out,2017-06-13,Summer,2017-06-08T07:00Z +Keep,101,2017,June,23,10,2,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,166,1,0,Check-Out,2017-06-13,Summer,2017-06-10T07:00Z +Keep,15,2017,June,24,11,2,0,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,196,1,0,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,157,2017,June,23,8,2,3,3,1,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,H,H,3,No Deposit , 240, NULL,0,Transient,197.6,1,0,Check-Out,2017-06-13,Summer,2017-06-08T07:00Z +Keep,8,2017,June,24,11,2,0,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,124,1,2,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,1,2017,June,24,11,2,0,2,0,2,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,201,1,1,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,111,2017,June,24,11,2,0,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,114,0,1,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,248,2017,June,24,11,2,0,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,59.4,0,0,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,0,2017,June,23,10,2,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,C,3,No Deposit , NULL, NULL,0,Transient,167,1,0,Check-Out,2017-06-13,Summer,2017-06-10T07:00Z +Keep,0,2017,June,24,11,2,0,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,0,1,0,Check-Out,2017-06-13,Summer,2017-06-11T07:00Z +Keep,26,2017,June,23,10,2,1,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-13,Summer,2017-06-10T07:00Z +Keep,79,2017,June,22,3,4,6,3,0,0,HB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,258,0,0,Check-Out,2017-06-13,Summer,2017-06-03T07:00Z +Keep,1,2017,June,24,12,1,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,149,1,0,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,0,2017,June,24,12,1,1,1,0,0,BB,NLD,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,169,2017,June,23,7,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,92,0,1,Check-Out,2017-06-14,Summer,2017-06-07T07:00Z +Keep,3,2017,June,24,12,1,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,4,0,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,3,2017,June,24,12,1,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,4,1,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,3,2017,June,24,12,1,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,4,0,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,3,2017,June,24,12,1,1,1,0,0,BB,BEL,Complementary,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient,4,0,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,159,2017,June,23,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-14,Summer,2017-06-07T07:00Z +Keep,310,2017,June,23,4,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,1,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,236,2017,June,23,4,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,100.4,0,0,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,100,2017,June,23,10,2,2,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,132.5,0,1,Check-Out,2017-06-14,Summer,2017-06-10T07:00Z +Keep,21,2017,June,24,13,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-14,Summer,2017-06-13T07:00Z +Keep,104,2017,June,24,12,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,110,1,1,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,247,2017,June,23,7,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,104.17,0,1,Check-Out,2017-06-14,Summer,2017-06-07T07:00Z +Keep,79,2017,June,24,11,2,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,193,1,0,Check-Out,2017-06-14,Summer,2017-06-11T07:00Z +Keep,137,2017,June,23,4,4,6,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,175.56,0,1,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,5,2017,June,24,12,1,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,C,0,No Deposit , NULL, 39,0,Transient,75,0,0,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,310,2017,June,23,4,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,1,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,82,2017,June,24,12,1,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,0,Check-Out,2017-06-14,Summer,2017-06-12T07:00Z +Keep,21,2017,June,23,10,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165,0,0,Check-Out,2017-06-14,Summer,2017-06-10T07:00Z +Keep,149,2017,June,23,4,4,6,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,115.4,0,0,Check-Out,2017-06-14,Summer,2017-06-04T07:00Z +Keep,3,2017,June,23,8,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,95,0,0,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,82,2017,June,23,8,2,5,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,152,0,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,188,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,65,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,255,2017,June,23,5,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-15,Summer,2017-06-05T07:00Z +Keep,330,2017,June,23,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,255,2017,June,23,5,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-15,Summer,2017-06-05T07:00Z +Keep,330,2017,June,23,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,84.7,0,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,330,2017,June,23,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,84.7,0,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,285,2017,June,23,5,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,100.4,0,0,Check-Out,2017-06-15,Summer,2017-06-05T07:00Z +Keep,232,2017,June,23,8,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,156.8,1,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,128,2017,June,24,13,0,2,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,171,1,0,Check-Out,2017-06-15,Summer,2017-06-13T07:00Z +Keep,18,2017,June,23,10,2,3,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,4,No Deposit , 250, NULL,0,Transient,263,0,1,Check-Out,2017-06-15,Summer,2017-06-10T07:00Z +Keep,148,2017,June,24,13,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-15,Summer,2017-06-13T07:00Z +Keep,0,2017,June,24,14,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 1,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,0,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,97,2017,June,23,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,123.6,0,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,131,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,7,2017,June,24,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , 535, NULL,0,Transient,114.75,0,0,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,131,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,131,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,146,2017,June,23,10,2,3,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,111.6,0,2,Check-Out,2017-06-15,Summer,2017-06-10T07:00Z +Keep,147,2017,June,23,10,2,3,2,0,1,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,180,0,2,Check-Out,2017-06-15,Summer,2017-06-10T07:00Z +Keep,146,2017,June,23,10,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,3,Check-Out,2017-06-15,Summer,2017-06-10T07:00Z +Keep,103,2017,June,24,11,2,2,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,164,1,1,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,114,2017,June,23,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,111.73,0,1,Check-Out,2017-06-15,Summer,2017-06-08T07:00Z +Keep,128,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,57.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,128,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,65,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,143,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,94,2017,June,23,5,3,7,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,153.6,0,1,Check-Out,2017-06-15,Summer,2017-06-05T07:00Z +Keep,135,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,0,2017,June,24,12,1,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,154,1,1,Check-Out,2017-06-15,Summer,2017-06-12T07:00Z +Keep,210,2017,June,24,12,1,2,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,83.9,0,3,Check-Out,2017-06-15,Summer,2017-06-12T07:00Z +Keep,146,2017,June,23,10,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-06-15,Summer,2017-06-10T07:00Z +Keep,201,2017,June,24,11,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,64.5,0,0,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,13,2017,June,24,13,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,132,0,0,Check-Out,2017-06-15,Summer,2017-06-13T07:00Z +Keep,19,2017,June,24,11,2,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,194,1,2,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,11,2017,June,24,11,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,124,0,1,Check-Out,2017-06-15,Summer,2017-06-11T07:00Z +Keep,0,2017,June,24,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,121.5,0,3,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,0,2017,June,24,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,148.5,0,3,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,0,2017,June,24,14,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,127,0,0,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,6,2017,June,24,14,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,2,No Deposit , 535, NULL,0,Transient,114.75,0,0,Check-Out,2017-06-15,Summer,2017-06-14T07:00Z +Keep,0,2017,June,24,15,0,1,1,0,0,BB,PRT,Corporate,Corporate, 1,0,0,A,A,2,No Deposit , 535, NULL,0,Transient,114.75,0,0,Check-Out,2017-06-16,Summer,2017-06-15T07:00Z +Keep,27,2017,June,24,14,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,106.4,0,2,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,164,2017,June,24,11,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 95, NULL,0,Transient,87.4,0,0,Check-Out,2017-06-16,Summer,2017-06-11T07:00Z +Keep,202,2017,June,23,7,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,92,0,0,Check-Out,2017-06-16,Summer,2017-06-07T07:00Z +Keep,138,2017,June,24,11,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,98.6,1,1,Check-Out,2017-06-16,Summer,2017-06-11T07:00Z +Keep,27,2017,June,24,14,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,126,1,1,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,287,2017,June,24,14,0,2,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,121.1,1,2,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,287,2017,June,24,14,0,2,2,0,0,BB,CZE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,107.1,0,2,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,190,2017,June,24,15,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-16,Summer,2017-06-15T07:00Z +Keep,0,2017,June,24,15,0,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,A,0,No Deposit , 302, NULL,0,Transient,0,0,0,Check-Out,2017-06-16,Summer,2017-06-15T07:00Z +Keep,6,2017,June,24,14,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,179,1,0,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,85,2017,June,23,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-16,Summer,2017-06-09T07:00Z +Keep,169,2017,June,24,15,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-16,Summer,2017-06-15T07:00Z +Keep,140,2017,June,23,10,2,4,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,207,1,1,Check-Out,2017-06-16,Summer,2017-06-10T07:00Z +Keep,85,2017,June,23,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-16,Summer,2017-06-09T07:00Z +Keep,80,2017,June,23,10,2,4,1,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient-Party,171,0,0,Check-Out,2017-06-16,Summer,2017-06-10T07:00Z +Keep,139,2017,June,23,10,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,5,No Deposit , NULL, NULL,0,Transient-Party,173.67,1,2,Check-Out,2017-06-16,Summer,2017-06-10T07:00Z +Keep,2,2017,June,24,14,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,1,Check-Out,2017-06-16,Summer,2017-06-14T07:00Z +Keep,140,2017,June,24,12,1,3,2,1,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,164,1,1,Check-Out,2017-06-16,Summer,2017-06-12T07:00Z +Keep,140,2017,June,24,12,1,3,1,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,101,0,1,Check-Out,2017-06-16,Summer,2017-06-12T07:00Z +Keep,244,2017,June,23,9,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,78.55,0,0,Check-Out,2017-06-16,Summer,2017-06-09T07:00Z +Keep,204,2017,June,24,13,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,167,1,2,Check-Out,2017-06-16,Summer,2017-06-13T07:00Z +Keep,4,2017,June,23,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,78,0,0,Check-Out,2017-06-16,Summer,2017-06-09T07:00Z +Keep,132,2017,June,22,2,4,10,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-16,Summer,2017-06-02T07:00Z +Keep,253,2017,June,23,9,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,81.81,0,2,Check-Out,2017-06-16,Summer,2017-06-09T07:00Z +Keep,106,2017,June,24,12,1,3,2,0,1,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,166,1,1,Check-Out,2017-06-16,Summer,2017-06-12T07:00Z +Keep,71,2017,June,24,13,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-06-17,Summer,2017-06-13T07:00Z +Keep,36,2017,June,24,12,1,4,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,1,1,Check-Out,2017-06-17,Summer,2017-06-12T07:00Z +Keep,268,2017,June,23,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,70.4,0,0,Check-Out,2017-06-17,Summer,2017-06-10T07:00Z +Keep,159,2017,June,23,10,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,80.47,0,1,Check-Out,2017-06-17,Summer,2017-06-10T07:00Z +Keep,61,2017,June,24,13,0,4,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,145.6,0,1,Check-Out,2017-06-17,Summer,2017-06-13T07:00Z +Keep,82,2017,June,24,11,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-06-17,Summer,2017-06-11T07:00Z +Keep,320,2017,June,22,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-17,Summer,2017-06-03T07:00Z +Keep,130,2017,June,23,9,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,111.73,0,1,Check-Out,2017-06-17,Summer,2017-06-09T07:00Z +Keep,312,2017,June,22,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-17,Summer,2017-06-03T07:00Z +Keep,0,2017,June,24,16,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-17,Summer,2017-06-16T07:00Z +Keep,10,2017,June,24,13,0,4,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,230,0,0,Check-Out,2017-06-17,Summer,2017-06-13T07:00Z +Keep,3,2017,June,24,17,0,1,2,0,0,BB,FRA,Direct,TA/TO, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,225,0,0,Check-Out,2017-06-18,Summer,2017-06-17T07:00Z +Keep,114,2017,June,24,11,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient-Party,128.07,0,3,Check-Out,2017-06-17,Summer,2017-06-11T07:00Z +Keep,114,2017,June,24,11,2,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,140.4,1,3,Check-Out,2017-06-17,Summer,2017-06-11T07:00Z +Keep,114,2017,June,24,11,2,4,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 5, NULL,0,Transient-Party,140.4,1,3,Check-Out,2017-06-17,Summer,2017-06-11T07:00Z +Keep,233,2017,June,24,15,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,136,2017,June,23,10,2,5,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,199,0,2,Check-Out,2017-06-17,Summer,2017-06-10T07:00Z +Keep,0,2017,June,24,17,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-06-17,Summer,2017-06-17T07:00Z +Keep,182,2017,June,24,13,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.2,0,0,Check-Out,2017-06-17,Summer,2017-06-13T07:00Z +Keep,242,2017,June,22,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,68.4,0,0,Check-Out,2017-06-17,Summer,2017-06-03T07:00Z +Keep,288,2017,June,22,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,68.4,0,0,Check-Out,2017-06-17,Summer,2017-06-03T07:00Z +Keep,40,2017,June,24,12,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-17,Summer,2017-06-12T07:00Z +Keep,125,2017,June,23,10,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172,1,1,Check-Out,2017-06-17,Summer,2017-06-10T07:00Z +Keep,17,2017,June,24,15,0,2,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,234,1,2,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,146,2017,June,24,15,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,154,0,1,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,146,2017,June,24,15,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,142,1,1,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,146,2017,June,24,15,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,140,0,1,Check-Out,2017-06-17,Summer,2017-06-15T07:00Z +Keep,1,2017,June,24,16,0,1,1,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,107.6,0,1,Check-Out,2017-06-17,Summer,2017-06-16T07:00Z +Keep,150,2017,June,22,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,1,Check-Out,2017-06-17,Summer,2017-06-03T07:00Z +Keep,13,2017,June,24,11,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,108.57,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,241,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.4,1,0,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,347,2017,June,23,4,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-18,Summer,2017-06-04T07:00Z +Keep,254,2017,June,23,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-18,Summer,2017-06-04T07:00Z +Keep,221,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,267,2017,June,23,6,2,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,121,0,3,Check-Out,2017-06-18,Summer,2017-06-06T07:00Z +Keep,220,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,220,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,236,2017,June,24,11,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,54,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,236,2017,June,24,11,2,5,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,54,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,11,2017,June,24,16,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,149,1,1,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,25,2017,June,24,15,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,G,0,No Deposit , 250, NULL,0,Transient,205.67,1,0,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,257,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,83.7,0,0,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,119,2017,June,23,8,2,8,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,97.4,0,0,Check-Out,2017-06-18,Summer,2017-06-08T07:00Z +Keep,162,2017,June,24,12,1,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,155,0,2,Check-Out,2017-06-18,Summer,2017-06-12T07:00Z +Keep,12,2017,June,24,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,169,1,1,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,2,2017,June,25,18,1,0,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, NULL,0,Transient,155,1,1,Check-Out,2017-06-19,Summer,2017-06-18T07:00Z +Keep,119,2017,June,23,8,2,8,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,97.4,0,0,Check-Out,2017-06-18,Summer,2017-06-08T07:00Z +Keep,1,2017,June,24,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,154,1,0,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,95,2017,June,24,15,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,166,1,1,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,236,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.4,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,14,2017,June,24,16,0,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,102,2017,June,24,14,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2017-06-18,Summer,2017-06-14T07:00Z +Keep,273,2017,August,34,23,0,4,2,0,0,BB,PRT,Direct,TA/TO, 0,0,1,A,A,4,No Deposit , 250, NULL,0,Transient,152.38,1,1,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,1,2017,June,24,15,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,185,1,0,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,43,2017,June,24,11,2,5,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,0,2017,June,24,17,0,1,2,0,0,HB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,196,1,1,Check-Out,2017-06-18,Summer,2017-06-17T07:00Z +Keep,236,2017,June,24,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,61.4,0,1,Check-Out,2017-06-18,Summer,2017-06-11T07:00Z +Keep,36,2017,June,24,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,140,0,2,Check-Out,2017-06-18,Summer,2017-06-17T07:00Z +Keep,265,2017,June,24,15,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,80.1,0,2,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,265,2017,June,24,15,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,2,No Deposit , 240, NULL,0,Transient-Party,94.1,1,2,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,49,2017,June,24,12,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,271,1,0,Check-Out,2017-06-18,Summer,2017-06-12T07:00Z +Keep,4,2017,June,24,16,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,0,2017,June,24,14,0,4,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,C,3,No Deposit , NULL, NULL,0,Transient,140,0,0,Check-Out,2017-06-18,Summer,2017-06-14T07:00Z +Keep,1,2017,June,25,18,2,5,0,0,0,BB,GBR,Direct,Direct, 0,0,0,A,I,6,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,0,2017,July,28,9,2,1,2,0,0,BB,GBR,Online travel agent,Direct, 1,0,2,E,E,0,No Deposit , 240, NULL,0,Transient,145,0,1,Check-Out,2017-07-12,Summer,2017-07-09T07:00Z +Keep,174,2017,June,24,14,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124,1,0,Check-Out,2017-06-18,Summer,2017-06-14T07:00Z +Keep,5,2017,June,24,15,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,166.25,0,0,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,1,2017,June,24,16,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2017-06-18,Summer,2017-06-16T07:00Z +Keep,124,2017,June,24,15,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,4,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,5,2017,June,24,17,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2017-06-18,Summer,2017-06-17T07:00Z +Keep,1,2017,June,24,15,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,1,Check-Out,2017-06-18,Summer,2017-06-15T07:00Z +Keep,252,2017,June,24,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-19,Summer,2017-06-12T07:00Z +Keep,348,2017,June,23,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,86.7,0,2,Check-Out,2017-06-19,Summer,2017-06-05T07:00Z +Keep,88,2017,June,24,16,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,0,Check-Out,2017-06-19,Summer,2017-06-16T07:00Z +Keep,259,2017,June,24,12,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 241, NULL,0,Transient,98.35,0,2,Check-Out,2017-06-19,Summer,2017-06-12T07:00Z +Keep,208,2017,June,24,12,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,136,0,2,Check-Out,2017-06-19,Summer,2017-06-12T07:00Z +Keep,13,2017,June,24,14,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2017-06-19,Summer,2017-06-14T07:00Z +Keep,208,2017,June,24,14,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,90,0,0,Check-Out,2017-06-19,Summer,2017-06-14T07:00Z +Keep,23,2017,June,24,17,1,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,145,0,2,Check-Out,2017-06-19,Summer,2017-06-17T07:00Z +Keep,0,2017,June,25,18,1,0,2,0,0,BB,FIN,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2017-06-19,Summer,2017-06-18T07:00Z +Keep,0,2017,June,25,18,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,129,1,0,Check-Out,2017-06-19,Summer,2017-06-18T07:00Z +Keep,7,2017,June,24,16,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,186,1,1,Check-Out,2017-06-19,Summer,2017-06-16T07:00Z +Keep,33,2017,June,24,16,1,2,2,0,0,BB,IRN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-19,Summer,2017-06-16T07:00Z +Keep,28,2017,June,24,14,1,4,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,132,0,1,Check-Out,2017-06-19,Summer,2017-06-14T07:00Z +Keep,334,2017,June,24,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70.4,0,2,Check-Out,2017-06-19,Summer,2017-06-12T07:00Z +Keep,2,2017,June,24,16,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,135,0,0,Check-Out,2017-06-19,Summer,2017-06-16T07:00Z +Keep,25,2017,June,24,17,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-19,Summer,2017-06-17T07:00Z +Keep,73,2017,June,24,15,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-06-19,Summer,2017-06-15T07:00Z +Keep,101,2017,June,24,13,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-06-19,Summer,2017-06-13T07:00Z +Keep,348,2017,June,23,5,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,86.13,0,2,Check-Out,2017-06-19,Summer,2017-06-05T07:00Z +Keep,7,2017,June,24,16,1,2,1,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,160.89,1,0,Check-Out,2017-06-19,Summer,2017-06-16T07:00Z +Keep,145,2017,June,25,18,1,0,2,0,0,BB,NZL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,83.7,1,0,Check-Out,2017-06-19,Summer,2017-06-18T07:00Z +Keep,145,2017,June,25,18,1,0,2,0,0,BB,NZL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,59.4,0,0,Check-Out,2017-06-19,Summer,2017-06-18T07:00Z +Keep,268,2017,June,23,10,4,6,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,51.5,0,0,Check-Out,2017-06-20,Summer,2017-06-10T07:00Z +Keep,140,2017,June,24,13,2,5,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 242, NULL,0,Transient,110,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,150,2017,June,24,13,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,126.2,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,222,2017,June,24,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, 436,0,Transient,96.4,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,124,2017,June,24,13,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,145,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,91,2017,June,24,13,2,5,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,258,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,287,2017,June,24,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,1,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,287,2017,June,24,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,7,2017,June,25,19,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 135,0,Transient,75,0,0,Check-Out,2017-06-20,Summer,2017-06-19T07:00Z +Keep,157,2017,June,23,10,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-20,Summer,2017-06-10T07:00Z +Keep,1,2017,June,25,18,2,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,117,0,0,Check-Out,2017-06-20,Summer,2017-06-18T07:00Z +Keep,11,2017,June,24,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,76,0,0,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,123,2017,June,24,14,2,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,147,0,1,Check-Out,2017-06-20,Summer,2017-06-14T07:00Z +Keep,284,2017,June,24,17,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,100.03,1,2,Check-Out,2017-06-20,Summer,2017-06-17T07:00Z +Keep,179,2017,June,23,10,4,6,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140.8,1,2,Check-Out,2017-06-20,Summer,2017-06-10T07:00Z +Keep,195,2017,June,23,7,4,9,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-20,Summer,2017-06-07T07:00Z +Keep,0,2017,June,25,19,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , NULL, NULL,0,Transient,142.5,1,0,Check-Out,2017-06-20,Summer,2017-06-19T07:00Z +Keep,232,2017,June,24,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,72.2,0,1,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,22,2017,June,25,18,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2017-06-20,Summer,2017-06-18T07:00Z +Keep,162,2017,June,24,15,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,86.7,0,1,Check-Out,2017-06-20,Summer,2017-06-15T07:00Z +Keep,232,2017,June,24,13,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,73.63,0,1,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,135,2017,June,24,13,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 314, NULL,0,Transient,106.2,0,2,Check-Out,2017-06-20,Summer,2017-06-13T07:00Z +Keep,143,2017,June,24,17,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,135,0,1,Check-Out,2017-06-20,Summer,2017-06-17T07:00Z +Keep,90,2017,June,24,15,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-20,Summer,2017-06-15T07:00Z +Keep,261,2017,June,25,21,2,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,72.2,0,0,Check-Out,2017-06-27,Summer,2017-06-21T07:00Z +Keep,181,2017,June,24,14,2,5,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,172,1,1,Check-Out,2017-06-21,Summer,2017-06-14T07:00Z +Keep,155,2017,June,24,12,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,93.44,0,1,Check-Out,2017-06-21,Summer,2017-06-12T07:00Z +Keep,330,2017,June,23,10,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,85.7,0,0,Check-Out,2017-06-21,Summer,2017-06-10T07:00Z +Keep,136,2017,June,24,17,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,123.8,1,0,Check-Out,2017-06-21,Summer,2017-06-17T07:00Z +Keep,202,2017,June,25,20,0,1,2,0,0,BB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-21,Summer,2017-06-20T07:00Z +Keep,152,2017,June,25,20,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,80,0,0,Check-Out,2017-06-21,Summer,2017-06-20T07:00Z +Keep,201,2017,June,24,17,2,2,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,86.2,0,0,Check-Out,2017-06-21,Summer,2017-06-17T07:00Z +Keep,144,2017,June,24,11,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,103.6,0,0,Check-Out,2017-06-21,Summer,2017-06-11T07:00Z +Keep,22,2017,June,25,18,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,122.67,1,0,Check-Out,2017-06-21,Summer,2017-06-18T07:00Z +Keep,13,2017,June,25,21,0,1,2,0,0,BB,PRT,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,136,1,0,Check-Out,2017-06-22,Summer,2017-06-21T07:00Z +Keep,116,2017,June,25,19,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,135,0,1,Check-Out,2017-06-21,Summer,2017-06-19T07:00Z +Keep,104,2017,June,25,18,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 241, NULL,0,Transient,122,0,2,Check-Out,2017-06-21,Summer,2017-06-18T07:00Z +Keep,47,2017,June,24,16,2,3,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.8,1,1,Check-Out,2017-06-21,Summer,2017-06-16T07:00Z +Keep,225,2017,June,24,14,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,100.71,0,0,Check-Out,2017-06-21,Summer,2017-06-14T07:00Z +Keep,121,2017,June,24,12,3,6,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,180,0,4,Check-Out,2017-06-21,Summer,2017-06-12T07:00Z +Keep,236,2017,June,23,10,4,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient-Party,115.68,0,0,Check-Out,2017-06-21,Summer,2017-06-10T07:00Z +Keep,86,2017,June,24,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,218,1,2,Check-Out,2017-06-21,Summer,2017-06-14T07:00Z +Keep,236,2017,June,23,10,4,7,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient-Party,113.68,0,0,Check-Out,2017-06-21,Summer,2017-06-10T07:00Z +Keep,33,2017,June,25,19,1,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-21,Summer,2017-06-19T07:00Z +Keep,19,2017,June,24,17,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,167.5,0,0,Check-Out,2017-06-21,Summer,2017-06-17T07:00Z +Keep,122,2017,June,24,17,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient,187,0,0,Check-Out,2017-06-21,Summer,2017-06-17T07:00Z +Keep,145,2017,June,23,7,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,116.11,0,0,Check-Out,2017-06-21,Summer,2017-06-07T07:00Z +Keep,167,2017,June,24,14,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,167,0,0,Check-Out,2017-06-21,Summer,2017-06-14T07:00Z +Keep,145,2017,June,24,14,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,81.2,0,0,Check-Out,2017-06-21,Summer,2017-06-14T07:00Z +Keep,134,2017,June,24,12,3,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,104.6,0,0,Check-Out,2017-06-22,Summer,2017-06-12T07:00Z +Keep,21,2017,June,25,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,169,1,1,Check-Out,2017-06-24,Summer,2017-06-22T07:00Z +Keep,126,2017,June,24,15,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,83.7,0,0,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,41,2017,June,24,15,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 479, NULL,0,Transient,123,0,0,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,139,2017,June,24,15,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,83.7,0,0,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,206,2017,June,24,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,70.11,0,1,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,213,2017,June,24,15,2,5,2,1,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,72.88,0,0,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,157,2017,June,24,13,2,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,92,0,1,Check-Out,2017-06-22,Summer,2017-06-13T07:00Z +Keep,245,2017,June,24,12,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 436, NULL,0,Transient,85.7,0,0,Check-Out,2017-06-22,Summer,2017-06-12T07:00Z +Keep,159,2017,June,24,11,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-22,Summer,2017-06-11T07:00Z +Keep,192,2017,June,23,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-22,Summer,2017-06-08T07:00Z +Keep,143,2017,June,24,13,2,7,3,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,112.42,0,1,Check-Out,2017-06-22,Summer,2017-06-13T07:00Z +Keep,159,2017,June,24,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,224,2017,June,24,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,96.4,0,1,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,159,2017,June,25,18,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,70.2,0,0,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,307,2017,June,23,8,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,98.4,0,0,Check-Out,2017-06-22,Summer,2017-06-08T07:00Z +Keep,158,2017,June,24,11,4,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,1,Check-Out,2017-06-22,Summer,2017-06-11T07:00Z +Keep,105,2017,June,24,15,2,5,2,1,0,HB,FRA,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,230,0,0,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,217,2017,June,24,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,96.4,0,4,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,217,2017,June,24,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,98.4,0,3,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,39,2017,June,25,19,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,1,1,Check-Out,2017-06-22,Summer,2017-06-19T07:00Z +Keep,29,2017,June,24,15,2,5,2,0,0,HB,LTU,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,177,0,2,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,136,2017,June,25,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,73.5,1,0,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,258,2017,June,23,8,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,70.4,0,2,Check-Out,2017-06-22,Summer,2017-06-08T07:00Z +Keep,138,2017,June,25,20,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,194,1,0,Check-Out,2017-06-22,Summer,2017-06-20T07:00Z +Keep,188,2017,June,25,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,56.7,0,1,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,145,2017,June,25,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,185,2017,June,25,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,62.95,0,1,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,194,2017,June,23,8,4,10,2,1,0,HB,RUS,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,153.5,0,0,Check-Out,2017-06-22,Summer,2017-06-08T07:00Z +Keep,131,2017,June,25,18,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,1,1,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,105,2017,June,25,19,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-06-22,Summer,2017-06-19T07:00Z +Keep,147,2017,June,25,20,0,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,70.2,0,0,Check-Out,2017-06-22,Summer,2017-06-20T07:00Z +Keep,18,2017,June,25,21,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-22,Summer,2017-06-21T07:00Z +Keep,145,2017,June,25,18,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,58.7,0,0,Check-Out,2017-06-22,Summer,2017-06-18T07:00Z +Keep,256,2017,June,25,20,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,I,0,No Deposit , 240, NULL,0,Transient,109.1,0,2,Check-Out,2017-06-22,Summer,2017-06-20T07:00Z +Keep,287,2017,June,25,22,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,107.1,0,2,Check-Out,2017-06-28,Summer,2017-06-22T07:00Z +Keep,75,2017,June,24,15,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,223.57,0,1,Check-Out,2017-06-22,Summer,2017-06-15T07:00Z +Keep,242,2017,June,24,13,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,109.1,0,1,Check-Out,2017-06-23,Summer,2017-06-13T07:00Z +Keep,146,2017,June,24,13,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,88.7,0,0,Check-Out,2017-06-23,Summer,2017-06-13T07:00Z +Keep,171,2017,June,24,17,2,4,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,1,2,Check-Out,2017-06-23,Summer,2017-06-17T07:00Z +Keep,163,2017,June,24,15,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,80.95,0,0,Check-Out,2017-06-23,Summer,2017-06-15T07:00Z +Keep,161,2017,June,25,20,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,2,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,0,2017,June,25,22,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 470,0,Transient,75,1,1,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,129,2017,June,25,19,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,118.1,1,0,Check-Out,2017-06-23,Summer,2017-06-19T07:00Z +Keep,339,2017,June,24,16,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,130.5,1,1,Check-Out,2017-06-23,Summer,2017-06-16T07:00Z +Keep,143,2017,June,25,21,0,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,129,1,2,Check-Out,2017-06-23,Summer,2017-06-21T07:00Z +Keep,143,2017,June,25,21,0,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,115,0,2,Check-Out,2017-06-23,Summer,2017-06-21T07:00Z +Keep,81,2017,June,25,18,2,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,181,1,0,Check-Out,2017-06-23,Summer,2017-06-18T07:00Z +Keep,224,2017,June,24,13,2,8,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,92,0,0,Check-Out,2017-06-23,Summer,2017-06-13T07:00Z +Keep,282,2017,June,24,16,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,93.6,0,0,Check-Out,2017-06-23,Summer,2017-06-16T07:00Z +Keep,282,2017,June,24,16,2,5,2,1,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,120.6,0,0,Check-Out,2017-06-23,Summer,2017-06-16T07:00Z +Keep,256,2017,June,23,9,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,71.18,0,1,Check-Out,2017-06-23,Summer,2017-06-09T07:00Z +Keep,125,2017,June,25,20,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,150,0,1,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,13,2017,June,25,19,1,3,2,0,0,BB,CYP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,98,0,0,Check-Out,2017-06-23,Summer,2017-06-19T07:00Z +Keep,190,2017,June,24,16,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,3,No Deposit , 250, NULL,0,Transient,122.5,0,2,Check-Out,2017-06-23,Summer,2017-06-16T07:00Z +Keep,158,2017,June,24,16,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,154,1,2,Check-Out,2017-06-23,Summer,2017-06-16T07:00Z +Keep,139,2017,June,24,15,2,6,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,107.1,0,0,Check-Out,2017-06-23,Summer,2017-06-15T07:00Z +Keep,339,2017,June,24,13,2,8,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-23,Summer,2017-06-13T07:00Z +Keep,1,2017,June,25,21,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 306, NULL,0,Transient,92.82,0,0,Check-Out,2017-06-23,Summer,2017-06-21T07:00Z +Keep,0,2017,June,25,21,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-23,Summer,2017-06-21T07:00Z +Keep,2,2017,June,25,22,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,1,Check-Out,2017-06-23,Summer,2017-06-22T07:00Z +Keep,57,2017,June,25,20,0,3,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,G,I,1,No Deposit , 240, NULL,0,Transient-Party,288,1,2,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,57,2017,June,25,20,0,3,2,2,0,HB,USA,Online travel agent,TA/TO, 0,0,0,C,I,0,No Deposit , 240, NULL,0,Transient-Party,248,0,2,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,33,2017,June,25,20,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,I,1,No Deposit , 240, NULL,0,Transient-Party,189.33,1,1,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,33,2017,June,25,20,0,3,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,I,0,No Deposit , 240, NULL,0,Transient-Party,180,0,1,Check-Out,2017-06-23,Summer,2017-06-20T07:00Z +Keep,132,2017,June,24,13,2,9,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,155.82,1,1,Check-Out,2017-06-24,Summer,2017-06-13T07:00Z +Keep,176,2017,June,23,10,4,10,2,0,0,HB,CHE,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,0,No Deposit , 497, NULL,0,Transient,177.8,0,1,Check-Out,2017-06-24,Summer,2017-06-10T07:00Z +Keep,275,2017,June,24,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,257,2017,June,23,10,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,61.2,0,3,Check-Out,2017-06-24,Summer,2017-06-10T07:00Z +Keep,45,2017,June,24,17,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,186.29,1,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,133,2017,June,24,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 314, NULL,0,Transient,92.29,0,0,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,10,2017,June,25,18,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,106,0,0,Check-Out,2017-06-24,Summer,2017-06-18T07:00Z +Keep,123,2017,June,23,10,4,10,2,0,0,BB,BRA,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,0,No Deposit , 181, NULL,0,Transient,141.14,0,0,Check-Out,2017-06-24,Summer,2017-06-10T07:00Z +Keep,0,2017,June,25,23,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,1,Check-Out,2017-06-24,Summer,2017-06-23T07:00Z +Keep,156,2017,June,24,17,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,110,0,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,223,2017,June,24,15,2,7,2,0,0,HB,AUT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,165,0,0,Check-Out,2017-06-24,Summer,2017-06-15T07:00Z +Keep,223,2017,June,24,15,2,7,2,0,0,HB,DEU,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,165,0,0,Check-Out,2017-06-24,Summer,2017-06-15T07:00Z +Keep,137,2017,June,24,17,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 196, NULL,0,Transient,115.3,0,0,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,154,2017,June,25,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110,0,2,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,280,2017,June,24,17,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,150.81,0,3,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,75,2017,June,25,20,0,4,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-06-24,Summer,2017-06-20T07:00Z +Keep,0,2017,June,25,23,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,1,0,Check-Out,2017-06-24,Summer,2017-06-23T07:00Z +Keep,1,2017,June,25,24,1,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,178,1,0,Check-Out,2017-06-26,Summer,2017-06-24T07:00Z +Keep,0,2017,June,25,23,0,1,2,0,0,BB,SWE,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,138,1,0,Check-Out,2017-06-24,Summer,2017-06-23T07:00Z +Keep,0,2017,June,25,23,0,1,2,0,0,BB,SWE,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,138,0,0,Check-Out,2017-06-24,Summer,2017-06-23T07:00Z +Keep,127,2017,June,25,19,1,4,2,2,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,154.8,1,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,32,2017,June,25,20,0,4,2,2,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,242,1,1,Check-Out,2017-06-24,Summer,2017-06-20T07:00Z +Keep,205,2017,June,24,17,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,92.34,0,3,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,26,2017,June,25,22,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,120.4,1,1,Check-Out,2017-06-24,Summer,2017-06-22T07:00Z +Keep,331,2017,June,24,17,2,5,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient-Party,157,1,2,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,133,2017,June,25,20,0,4,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,96.8,1,0,Check-Out,2017-06-24,Summer,2017-06-20T07:00Z +Keep,218,2017,June,25,22,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,194,0,2,Check-Out,2017-06-24,Summer,2017-06-22T07:00Z +Keep,149,2017,June,24,17,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,80.47,0,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,257,2017,June,24,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,84.37,0,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,182,2017,June,24,17,2,5,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,117,2017,June,23,10,4,10,2,1,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,166.43,0,1,Check-Out,2017-06-24,Summer,2017-06-10T07:00Z +Keep,4,2017,June,25,19,1,4,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,135,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,239,2017,June,25,19,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,239,2017,June,25,19,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,239,2017,June,25,19,1,4,3,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,H,H,3,No Deposit , 240, NULL,0,Transient,185,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,239,2017,June,25,19,1,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,2,2017,June,25,23,0,1,2,0,0,BB,NLD,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,150,0,1,Check-Out,2017-06-24,Summer,2017-06-23T07:00Z +Keep,239,2017,June,25,19,1,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,99,0,1,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,154,2017,June,25,19,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,110,0,3,Check-Out,2017-06-24,Summer,2017-06-19T07:00Z +Keep,78,2017,June,24,17,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,153.5,0,1,Check-Out,2017-06-24,Summer,2017-06-17T07:00Z +Keep,26,2017,June,25,19,1,5,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,192.33,0,1,Check-Out,2017-06-25,Summer,2017-06-19T07:00Z +Keep,247,2017,June,25,18,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 75, NULL,0,Transient,80.76,0,0,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,236,2017,June,25,18,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,92.17,0,1,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,16,2017,June,25,23,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,234,1,0,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,116,2017,June,25,20,0,5,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,105.5,0,0,Check-Out,2017-06-25,Summer,2017-06-20T07:00Z +Keep,28,2017,June,25,20,0,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,154,0,0,Check-Out,2017-06-25,Summer,2017-06-20T07:00Z +Keep,333,2017,June,24,11,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,98.4,0,1,Check-Out,2017-06-25,Summer,2017-06-11T07:00Z +Keep,152,2017,June,24,11,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,68.4,0,0,Check-Out,2017-06-25,Summer,2017-06-11T07:00Z +Keep,88,2017,June,25,22,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,108,0,1,Check-Out,2017-06-25,Summer,2017-06-22T07:00Z +Keep,129,2017,June,25,23,0,2,2,0,0,BB,LUX,Direct,Direct, 0,0,0,F,G,2,No Deposit , 250, NULL,0,Transient,169,1,0,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,152,2017,June,24,11,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,70.4,0,0,Check-Out,2017-06-25,Summer,2017-06-11T07:00Z +Keep,97,2017,June,25,19,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-06-25,Summer,2017-06-19T07:00Z +Keep,225,2017,June,25,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,23,2017,June,24,17,2,6,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142.5,0,0,Check-Out,2017-06-25,Summer,2017-06-17T07:00Z +Keep,27,2017,June,25,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,141.71,0,1,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,9,2017,June,25,22,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,181,1,0,Check-Out,2017-06-25,Summer,2017-06-22T07:00Z +Keep,136,2017,June,25,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,68.4,0,1,Check-Out,2017-06-25,Summer,2017-06-18T07:00Z +Keep,241,2017,June,24,16,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,113.7,0,0,Check-Out,2017-06-25,Summer,2017-06-16T07:00Z +Keep,2,2017,June,25,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,126,0,0,Check-Out,2017-06-25,Summer,2017-06-24T07:00Z +Keep,65,2017,June,25,22,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2017-06-25,Summer,2017-06-22T07:00Z +Keep,136,2017,June,24,17,2,6,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,213.71,1,1,Check-Out,2017-06-25,Summer,2017-06-17T07:00Z +Keep,12,2017,June,25,24,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-25,Summer,2017-06-24T07:00Z +Keep,4,2017,June,25,24,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,H,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-25,Summer,2017-06-24T07:00Z +Keep,4,2017,June,25,23,0,2,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,184,1,1,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,4,2017,June,25,23,0,2,2,1,1,Undefined,ESP,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,265.25,1,2,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,9,2017,June,25,22,0,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,229,1,0,Check-Out,2017-06-25,Summer,2017-06-22T07:00Z +Keep,19,2017,June,25,24,0,1,2,2,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,176,1,2,Check-Out,2017-06-25,Summer,2017-06-24T07:00Z +Keep,134,2017,June,25,21,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,141.67,0,2,Check-Out,2017-06-25,Summer,2017-06-21T07:00Z +Keep,35,2017,June,25,22,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,162.83,0,1,Check-Out,2017-06-25,Summer,2017-06-22T07:00Z +Keep,25,2017,June,25,21,0,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,236,1,0,Check-Out,2017-06-25,Summer,2017-06-21T07:00Z +Keep,1,2017,June,25,23,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,128,2017,June,25,19,1,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,E,1,No Deposit , 241, NULL,0,Transient,119.35,1,2,Check-Out,2017-06-25,Summer,2017-06-19T07:00Z +Keep,224,2017,June,25,24,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,117.12,0,0,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,6,2017,June,25,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,7,2017,June,25,23,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,128.25,0,0,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,6,2017,June,25,23,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,172,0,1,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,82,2017,June,25,23,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,2,Check-Out,2017-06-25,Summer,2017-06-23T07:00Z +Keep,27,2017,June,25,24,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,160,0,1,Check-Out,2017-06-26,Summer,2017-06-24T07:00Z +Keep,319,2017,June,24,16,3,7,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,88.74,0,1,Check-Out,2017-06-26,Summer,2017-06-16T07:00Z +Keep,150,2017,June,24,13,3,10,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,91.85,0,0,Check-Out,2017-06-26,Summer,2017-06-13T07:00Z +Keep,318,2017,June,25,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,61.68,0,2,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,318,2017,June,25,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,63.68,0,2,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,25,2017,June,25,23,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,78,0,0,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,6,2017,June,26,25,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,104,1,0,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,124,2017,June,25,20,1,5,1,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,117.04,0,2,Check-Out,2017-06-26,Summer,2017-06-20T07:00Z +Keep,124,2017,June,25,20,1,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,119.04,0,1,Check-Out,2017-06-26,Summer,2017-06-20T07:00Z +Keep,35,2017,June,25,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,242,2017,June,24,16,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,72.2,0,0,Check-Out,2017-06-26,Summer,2017-06-16T07:00Z +Keep,136,2017,June,25,23,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,328,2017,June,25,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,84.7,0,0,Check-Out,2017-06-26,Summer,2017-06-19T07:00Z +Keep,328,2017,June,25,19,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-26,Summer,2017-06-19T07:00Z +Keep,120,2017,June,25,19,2,5,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,210.14,1,2,Check-Out,2017-06-26,Summer,2017-06-19T07:00Z +Keep,27,2017,June,25,23,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,155,0,1,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,247,2017,June,25,22,1,3,3,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,212,0,1,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,1,2017,June,26,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.7,1,1,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,23,2017,June,25,21,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient,147,1,2,Check-Out,2017-06-26,Summer,2017-06-21T07:00Z +Keep,262,2017,June,25,18,3,5,3,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,113.62,0,0,Check-Out,2017-06-26,Summer,2017-06-18T07:00Z +Keep,2,2017,June,26,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,9,2017,June,25,23,1,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,135,0,0,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,0,2017,June,26,25,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 10, NULL,0,Transient,4,0,0,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,247,2017,June,25,22,1,3,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,108.9,0,0,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,247,2017,June,25,22,1,3,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,108.9,0,0,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,247,2017,June,25,22,1,3,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,108.9,0,0,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,2,2017,June,26,25,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,72,0,0,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,5,2017,June,26,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,207,2017,June,24,16,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-06-26,Summer,2017-06-16T07:00Z +Keep,19,2017,June,25,24,1,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,F,2,No Deposit , 250, NULL,0,Transient,155,0,2,Check-Out,2017-06-26,Summer,2017-06-24T07:00Z +Keep,132,2017,June,25,19,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,147.43,0,1,Check-Out,2017-06-26,Summer,2017-06-19T07:00Z +Keep,11,2017,June,25,23,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,166.08,1,0,Check-Out,2017-06-26,Summer,2017-06-23T07:00Z +Keep,20,2017,June,25,22,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-06-26,Summer,2017-06-22T07:00Z +Keep,0,2017,June,26,25,1,0,2,0,0,BB,JOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,101.7,0,1,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,0,2017,June,26,25,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,142,1,0,Check-Out,2017-06-26,Summer,2017-06-25T07:00Z +Keep,223,2017,June,25,19,2,5,2,0,0,FB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,158.9,0,0,Check-Out,2017-06-26,Summer,2017-06-19T07:00Z +Keep,332,2017,June,26,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,64.42,0,0,Check-Out,2017-07-09,Summer,2017-06-25T07:00Z +Keep,157,2017,June,25,18,4,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,166.56,1,0,Check-Out,2017-06-27,Summer,2017-06-18T07:00Z +Keep,273,2017,June,25,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,56.7,0,0,Check-Out,2017-06-27,Summer,2017-06-20T07:00Z +Keep,198,2017,June,25,19,3,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,142,1,3,Check-Out,2017-06-27,Summer,2017-06-19T07:00Z +Keep,294,2017,June,25,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-27,Summer,2017-06-20T07:00Z +Keep,253,2017,June,24,13,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-27,Summer,2017-06-13T07:00Z +Keep,264,2017,June,24,17,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-27,Summer,2017-06-17T07:00Z +Keep,112,2017,June,25,24,2,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,192,1,2,Check-Out,2017-06-27,Summer,2017-06-24T07:00Z +Keep,250,2017,June,24,17,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,4,Check-Out,2017-06-27,Summer,2017-06-17T07:00Z +Keep,246,2017,June,23,6,6,15,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,82,2,1,Check-Out,2017-06-27,Summer,2017-06-06T07:00Z +Keep,218,2017,June,25,20,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,116.43,1,1,Check-Out,2017-06-27,Summer,2017-06-20T07:00Z +Keep,21,2017,June,25,24,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,114.8,0,0,Check-Out,2017-06-27,Summer,2017-06-24T07:00Z +Keep,15,2017,June,25,24,2,1,2,0,1,BB,ESP,Direct,Direct, 0,0,0,D,D,5,No Deposit , 250, NULL,0,Transient,150,0,1,Check-Out,2017-06-27,Summer,2017-06-24T07:00Z +Keep,10,2017,June,25,24,2,1,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,185,1,0,Check-Out,2017-06-27,Summer,2017-06-24T07:00Z +Keep,321,2017,June,26,27,0,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 40, NULL,0,Contract,0,0,0,Check-Out,2017-06-27,Summer,2017-06-27T07:00Z +Keep,245,2017,June,25,21,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,128,0,1,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,253,2017,June,24,15,4,9,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,137.9,0,2,Check-Out,2017-06-28,Summer,2017-06-15T07:00Z +Keep,110,2017,June,25,19,3,6,2,0,0,HB,TGO,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152,0,2,Check-Out,2017-06-28,Summer,2017-06-19T07:00Z +Keep,275,2017,June,24,14,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 57, NULL,0,Transient,95,0,2,Check-Out,2017-06-28,Summer,2017-06-14T07:00Z +Keep,323,2017,June,25,21,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,88.2,0,2,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,326,2017,June,25,24,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,101.7,0,2,Check-Out,2017-06-28,Summer,2017-06-24T07:00Z +Keep,325,2017,June,24,17,4,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-28,Summer,2017-06-17T07:00Z +Keep,43,2017,June,25,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,135.4,0,2,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,104,2017,June,25,21,2,5,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,111,0,1,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,6,2017,June,26,25,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,100.8,0,1,Check-Out,2017-06-28,Summer,2017-06-25T07:00Z +Keep,326,2017,June,25,24,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,1,Check-Out,2017-06-28,Summer,2017-06-24T07:00Z +Keep,37,2017,June,25,24,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,243,1,3,Check-Out,2017-06-28,Summer,2017-06-24T07:00Z +Keep,20,2017,June,26,25,2,1,1,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,145,0,1,Check-Out,2017-06-28,Summer,2017-06-25T07:00Z +Keep,327,2017,June,26,25,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,74.25,0,1,Check-Out,2017-06-28,Summer,2017-06-25T07:00Z +Keep,327,2017,June,26,25,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-28,Summer,2017-06-25T07:00Z +Keep,307,2017,June,26,25,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,80.1,0,1,Check-Out,2017-06-28,Summer,2017-06-25T07:00Z +Keep,3,2017,June,25,22,2,4,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,133,0,2,Check-Out,2017-06-28,Summer,2017-06-22T07:00Z +Keep,1,2017,June,26,27,0,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,154,1,0,Check-Out,2017-06-28,Summer,2017-06-27T07:00Z +Keep,222,2017,June,25,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,76.23,0,2,Check-Out,2017-06-28,Summer,2017-06-23T07:00Z +Keep,222,2017,June,25,23,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,76.23,0,1,Check-Out,2017-06-28,Summer,2017-06-23T07:00Z +Keep,12,2017,June,26,26,1,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,G,0,No Deposit , 250, NULL,0,Transient,145,0,2,Check-Out,2017-06-28,Summer,2017-06-26T07:00Z +Keep,64,2017,June,25,21,2,5,2,0,0,HB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,277,2017,June,25,21,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,91.1,0,0,Check-Out,2017-06-28,Summer,2017-06-21T07:00Z +Keep,44,2017,June,25,24,2,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,130,0,1,Check-Out,2017-06-28,Summer,2017-06-24T07:00Z +Keep,337,2017,June,24,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,2,Check-Out,2017-06-29,Summer,2017-06-15T07:00Z +Keep,292,2017,June,25,23,2,4,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,2,Check-Out,2017-06-29,Summer,2017-06-23T07:00Z +Keep,186,2017,June,25,24,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,68.4,0,0,Check-Out,2017-06-29,Summer,2017-06-24T07:00Z +Keep,255,2017,June,24,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,59.4,0,0,Check-Out,2017-06-29,Summer,2017-06-15T07:00Z +Keep,344,2017,June,25,22,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-29,Summer,2017-06-22T07:00Z +Keep,238,2017,June,24,15,4,10,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,63.95,0,1,Check-Out,2017-06-29,Summer,2017-06-15T07:00Z +Keep,284,2017,June,25,19,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,100.4,0,0,Check-Out,2017-06-29,Summer,2017-06-19T07:00Z +Keep,307,2017,June,25,19,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-29,Summer,2017-06-19T07:00Z +Keep,331,2017,June,24,15,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,0,Check-Out,2017-06-29,Summer,2017-06-15T07:00Z +Keep,337,2017,June,25,22,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,72.2,0,0,Check-Out,2017-06-29,Summer,2017-06-22T07:00Z +Keep,121,2017,June,25,24,2,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,185,0,3,Check-Out,2017-06-29,Summer,2017-06-24T07:00Z +Keep,259,2017,June,25,24,2,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,104.49,0,0,Check-Out,2017-06-29,Summer,2017-06-24T07:00Z +Keep,325,2017,June,25,23,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,85.21,0,1,Check-Out,2017-06-29,Summer,2017-06-23T07:00Z +Keep,225,2017,June,25,22,2,5,2,1,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,138.13,0,1,Check-Out,2017-06-29,Summer,2017-06-22T07:00Z +Keep,93,2017,June,25,24,2,3,1,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,126.15,0,1,Check-Out,2017-06-29,Summer,2017-06-24T07:00Z +Keep,115,2017,June,26,25,2,2,3,0,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,204,1,0,Check-Out,2017-06-29,Summer,2017-06-25T07:00Z +Keep,259,2017,June,25,22,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,86.7,0,0,Check-Out,2017-06-29,Summer,2017-06-22T07:00Z +Keep,260,2017,June,25,22,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,74.06,0,2,Check-Out,2017-06-29,Summer,2017-06-22T07:00Z +Keep,322,2017,June,25,23,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,64.95,0,0,Check-Out,2017-06-30,Summer,2017-06-23T07:00Z +Keep,299,2017,June,25,24,2,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,141.3,0,1,Check-Out,2017-06-30,Summer,2017-06-24T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,45,2017,June,25,23,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,144.4,0,2,Check-Out,2017-06-30,Summer,2017-06-23T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,7,2017,June,26,28,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-06-30,Summer,2017-06-28T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 96, NULL,0,Transient-Party,106,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 96, NULL,0,Transient-Party,106,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,F,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,106,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,C,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,1,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,A,1,No Deposit , 96, NULL,0,Transient-Party,92,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,1,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,G,1,No Deposit , 96, NULL,0,Transient-Party,92,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,106,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,7,2017,June,26,28,0,2,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-06-30,Summer,2017-06-28T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,F,0,No Deposit , 96, NULL,0,Transient-Party,108,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,F,0,No Deposit , 96, NULL,0,Transient-Party,106,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,C,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,E,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,8,2017,June,26,29,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,H,0,No Deposit , 96, NULL,0,Transient-Party,106,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,0,2017,June,26,29,0,1,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,137,1,1,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,156,2017,June,26,30,2,3,2,0,0,BB,IRL,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2017-07-05,Summer,2017-06-30T07:00Z +Keep,0,2017,June,26,29,0,1,1,0,0,BB,PRT,Complementary,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,2,2017,August,35,28,1,0,1,0,0,BB,PRT,Complementary,Direct, 1,0,1,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-08-29,Summer,2017-08-28T07:00Z +Keep,279,2017,June,25,24,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,80.35,0,1,Check-Out,2017-06-30,Summer,2017-06-24T07:00Z +Keep,105,2017,June,25,24,2,4,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,166,1,1,Check-Out,2017-06-30,Summer,2017-06-24T07:00Z +Keep,335,2017,June,26,26,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,74.25,0,2,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,91,2017,June,25,23,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,70.4,0,0,Check-Out,2017-06-30,Summer,2017-06-23T07:00Z +Keep,2,2017,June,26,29,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,65,1,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,2,2017,June,26,27,0,3,2,0,0,BB,DNK,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,159,1,2,Check-Out,2017-06-30,Summer,2017-06-27T07:00Z +Keep,123,2017,June,26,26,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,134,1,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,0,2017,June,26,29,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128,0,0,Check-Out,2017-06-30,Summer,2017-06-29T07:00Z +Keep,12,2017,June,26,26,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 3, NULL,0,Transient,128.75,1,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,12,2017,June,26,26,1,3,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 3, NULL,0,Transient,114.75,0,1,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,308,2017,June,25,24,2,4,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , 250, NULL,0,Transient,177.6,1,2,Check-Out,2017-06-30,Summer,2017-06-24T07:00Z +Keep,274,2017,June,24,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,56.7,0,1,Check-Out,2017-06-30,Summer,2017-06-16T07:00Z +Keep,288,2017,June,25,23,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,125.6,0,0,Check-Out,2017-06-30,Summer,2017-06-23T07:00Z +Keep,274,2017,June,24,16,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,58.7,0,1,Check-Out,2017-06-30,Summer,2017-06-16T07:00Z +Keep,251,2017,June,26,26,1,3,2,0,0,HB,CN,Groups,TA/TO, 0,0,0,D,F,4,No Deposit , 96, NULL,0,Transient-Party,108,0,0,Check-Out,2017-06-30,Summer,2017-06-26T07:00Z +Keep,284,2017,June,25,20,2,8,1,0,0,HB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,68.6,1,0,Check-Out,2017-06-30,Summer,2017-06-20T07:00Z +Keep,0,2017,June,26,28,0,2,2,0,0,BB,MAR,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,167.5,0,1,Check-Out,2017-06-30,Summer,2017-06-28T07:00Z +Keep,244,2017,June,25,24,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,100.71,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,249,2017,June,25,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,86.23,0,0,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,282,2017,June,25,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,112.8,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,43,2017,June,25,21,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,90.1,0,2,Check-Out,2017-07-01,Summer,2017-06-21T07:00Z +Keep,170,2017,June,24,17,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,84.8,0,1,Check-Out,2017-07-01,Summer,2017-06-17T07:00Z +Keep,46,2017,June,25,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,106,0,2,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,46,2017,June,25,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,156,0,2,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,314,2017,June,25,24,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,161,1,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,282,2017,June,25,24,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient-Party,154.8,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,282,2017,June,25,24,2,5,3,1,0,HB,ESP,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,195.6,0,0,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,122,2017,June,24,17,4,10,2,2,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,C,G,0,No Deposit , 240, NULL,0,Transient,219.86,0,2,Check-Out,2017-07-01,Summer,2017-06-17T07:00Z +Keep,0,2017,June,26,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,167,1,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,255,2017,June,25,24,2,5,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,106.09,0,2,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,318,2017,June,25,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,103.7,0,0,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,282,2017,June,25,24,2,5,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,154.8,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,117,2017,June,26,29,0,2,2,2,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,214,1,0,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,282,2017,June,25,24,2,5,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient-Party,154.8,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,282,2017,June,25,24,2,5,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient-Party,154.8,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,148,2017,June,26,30,0,1,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,99,0,1,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,326,2017,June,25,24,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,88.2,0,2,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,9,2017,June,26,30,0,1,2,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,B,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,21,2017,June,26,30,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 168, NULL,0,Transient,130,1,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,295,2017,June,25,21,2,8,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,107.1,0,2,Check-Out,2017-07-01,Summer,2017-06-21T07:00Z +Keep,84,2017,June,26,28,0,3,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-28T07:00Z +Keep,138,2017,June,26,29,0,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,117.3,1,1,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,86,2017,June,26,30,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,86,2017,June,26,30,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,1,2017,June,26,30,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 146, NULL,0,Transient,112.4,1,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,128,2017,June,26,29,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,169,1,2,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,7,2017,June,26,29,0,2,2,2,0,BB,PRT,Corporate,TA/TO, 0,0,0,C,C,0,No Deposit , NULL, 525,0,Transient-Party,140,0,0,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,84,2017,June,26,28,0,3,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 525,0,Transient-Party,129.33,1,0,Check-Out,2017-07-01,Summer,2017-06-28T07:00Z +Keep,20,2017,June,26,29,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient,120,0,0,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,9,2017,June,26,30,0,1,2,0,0,BB,COL,Corporate,TA/TO, 0,0,0,A,C,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,86,2017,June,26,30,0,1,2,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,2,No Deposit , NULL, 525,0,Transient-Party,134,1,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,17,2017,July,26,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,160,1,2,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,1,2017,June,26,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 127, NULL,0,Transient,96,1,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,4,2017,June,26,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,150,1,1,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,124,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,134,1,2,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,0,2017,June,25,24,2,5,2,0,0,HB,HUN,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,131.67,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,272,2017,June,25,24,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,80.1,0,1,Check-Out,2017-07-01,Summer,2017-06-24T07:00Z +Keep,324,2017,June,25,22,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,89.98,0,1,Check-Out,2017-07-01,Summer,2017-06-22T07:00Z +Keep,87,2017,July,26,1,0,0,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,I,2,No Deposit , NULL, 525,0,Transient-Party,0,0,0,Check-Out,2017-07-01,Summer,2017-07-01T07:00Z +Keep,17,2017,July,26,1,0,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 240, NULL,0,Transient-Party,0,0,0,Check-Out,2017-07-01,Summer,2017-07-01T07:00Z +Keep,86,2017,June,26,30,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,14,2017,June,26,30,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,140,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,86,2017,June,26,30,0,1,1,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,A,A,1,No Deposit , NULL, 525,0,Transient-Party,120,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,1,2017,June,26,30,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 5, NULL,0,Transient,96,0,0,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,112,2017,June,26,30,0,1,2,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,120.9,0,1,Check-Out,2017-07-01,Summer,2017-06-30T07:00Z +Keep,20,2017,June,26,29,0,2,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 168, NULL,0,Transient,120,0,0,Check-Out,2017-07-01,Summer,2017-06-29T07:00Z +Keep,274,2017,June,25,18,4,10,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,96.56,0,1,Check-Out,2017-07-02,Summer,2017-06-18T07:00Z +Keep,226,2017,June,25,22,2,8,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,128,0,0,Check-Out,2017-07-02,Summer,2017-06-22T07:00Z +Keep,1,2017,June,26,29,0,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,153.07,0,0,Check-Out,2017-07-02,Summer,2017-06-29T07:00Z +Keep,112,2017,June,26,28,0,4,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,180,1,1,Check-Out,2017-07-02,Summer,2017-06-28T07:00Z +Keep,112,2017,June,26,28,0,4,3,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,166,0,1,Check-Out,2017-07-02,Summer,2017-06-28T07:00Z +Keep,44,2017,June,25,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,106.47,0,0,Check-Out,2017-07-02,Summer,2017-06-22T07:00Z +Keep,44,2017,June,25,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,108.3,0,2,Check-Out,2017-07-02,Summer,2017-06-22T07:00Z +Keep,152,2017,June,26,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,84.8,0,0,Check-Out,2017-07-02,Summer,2017-06-25T07:00Z +Keep,44,2017,June,25,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,108.3,0,2,Check-Out,2017-07-02,Summer,2017-06-22T07:00Z +Keep,44,2017,June,25,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,108.97,0,0,Check-Out,2017-07-02,Summer,2017-06-22T07:00Z +Keep,347,2017,June,26,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 243, NULL,0,Contract,87.2,0,0,Check-Out,2017-07-02,Summer,2017-06-25T07:00Z +Keep,270,2017,June,26,28,0,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,112.22,0,0,Check-Out,2017-07-02,Summer,2017-06-28T07:00Z +Keep,299,2017,June,26,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 177, NULL,0,Transient,76.7,0,0,Check-Out,2017-07-02,Summer,2017-06-25T07:00Z +Keep,268,2017,June,26,28,0,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,112.22,0,0,Check-Out,2017-07-02,Summer,2017-06-28T07:00Z +Keep,19,2017,June,26,30,0,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,214,1,1,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,1,2017,June,26,30,0,2,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,185,1,1,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,127,2017,June,26,29,0,3,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,189.33,1,0,Check-Out,2017-07-02,Summer,2017-06-29T07:00Z +Keep,17,2017,June,26,30,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,135,0,2,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,7,2017,June,26,30,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,180,0,1,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,2,2017,July,26,1,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,28,2017,July,26,1,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,128,0,1,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,139,2017,June,26,29,0,3,2,3,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,H,3,No Deposit , 240, NULL,0,Transient,158,1,1,Check-Out,2017-07-02,Summer,2017-06-29T07:00Z +Keep,0,2017,July,26,1,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,113,0,0,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,2,2017,July,26,1,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,B,1,No Deposit , NULL, NULL,0,Transient,150,0,2,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,5,2017,June,26,30,0,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194,1,1,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,274,2017,June,25,24,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,81.76,1,1,Check-Out,2017-07-02,Summer,2017-06-24T07:00Z +Keep,4,2017,July,26,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,328,2017,June,26,25,2,5,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,161,1,1,Check-Out,2017-07-02,Summer,2017-06-25T07:00Z +Keep,315,2017,June,26,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,89.22,0,0,Check-Out,2017-07-02,Summer,2017-06-25T07:00Z +Keep,45,2017,July,26,1,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,150,0,1,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,160,2017,July,26,1,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-07-02,Summer,2017-07-01T07:00Z +Keep,171,2017,June,26,30,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,F,1,No Deposit , 240, NULL,0,Transient,130,0,1,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,0,2017,June,26,30,0,2,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,136,0,2,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,154,2017,June,26,29,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-07-02,Summer,2017-06-29T07:00Z +Keep,86,2017,June,26,30,0,2,2,0,0,BB,PRT,Corporate,TA/TO, 0,0,0,G,G,2,No Deposit , NULL, 525,0,Transient,127,1,0,Check-Out,2017-07-02,Summer,2017-06-30T07:00Z +Keep,271,2017,June,26,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.2,0,0,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,146,2017,June,26,29,1,3,1,1,0,HB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,107.3,0,0,Check-Out,2017-07-03,Summer,2017-06-29T07:00Z +Keep,318,2017,June,25,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,84.8,0,0,Check-Out,2017-07-03,Summer,2017-06-19T07:00Z +Keep,306,2017,June,25,21,3,9,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,157.7,0,0,Check-Out,2017-07-03,Summer,2017-06-21T07:00Z +Keep,110,2017,June,26,26,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,128.57,0,1,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,310,2017,June,25,22,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,103.7,0,0,Check-Out,2017-07-03,Summer,2017-06-22T07:00Z +Keep,326,2017,June,25,23,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,102.2,0,2,Check-Out,2017-07-03,Summer,2017-06-23T07:00Z +Keep,128,2017,June,26,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.8,0,0,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,207,2017,July,27,2,1,0,2,0,0,BB,AUT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 251, NULL,0,Transient,99,0,0,Check-Out,2017-07-03,Summer,2017-07-02T07:00Z +Keep,151,2017,June,26,30,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,178,2017,June,26,26,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,134.4,1,2,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,121,2017,June,26,27,1,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,166.33,1,0,Check-Out,2017-07-03,Summer,2017-06-27T07:00Z +Keep,128,2017,June,26,30,1,2,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,233.33,0,1,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,151,2017,June,26,30,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,111,0,1,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,12,2017,July,26,1,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,0,1,Check-Out,2017-07-03,Summer,2017-07-01T07:00Z +Keep,8,2017,June,26,27,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,146.67,0,1,Check-Out,2017-07-03,Summer,2017-06-27T07:00Z +Keep,1,2017,July,26,1,1,1,2,0,0,BB,GRC,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,204,1,2,Check-Out,2017-07-03,Summer,2017-07-01T07:00Z +Keep,178,2017,June,26,26,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,106.56,1,1,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,152,2017,June,26,28,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,106.5,0,0,Check-Out,2017-07-03,Summer,2017-06-28T07:00Z +Keep,36,2017,June,26,28,1,4,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,115.82,0,0,Check-Out,2017-07-03,Summer,2017-06-28T07:00Z +Keep,265,2017,June,26,26,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,70.2,0,0,Check-Out,2017-07-03,Summer,2017-06-26T07:00Z +Keep,326,2017,June,25,23,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,102.2,0,2,Check-Out,2017-07-03,Summer,2017-06-23T07:00Z +Keep,6,2017,June,26,27,1,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160.67,1,1,Check-Out,2017-07-03,Summer,2017-06-27T07:00Z +Keep,13,2017,June,26,30,1,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,163.67,1,0,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,47,2017,June,26,25,3,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,161.75,0,2,Check-Out,2017-07-03,Summer,2017-06-25T07:00Z +Keep,158,2017,June,26,30,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,2,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,151,2017,June,26,30,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,136.33,0,1,Check-Out,2017-07-03,Summer,2017-06-30T07:00Z +Keep,0,2017,July,27,2,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,F,2,No Deposit , 306, NULL,0,Transient,117.74,0,1,Check-Out,2017-07-03,Summer,2017-07-02T07:00Z +Keep,0,2017,July,27,2,1,0,1,0,0,HB,KAZ,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,156,0,2,Check-Out,2017-07-03,Summer,2017-07-02T07:00Z +Keep,258,2017,July,26,1,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,137.3,0,2,Check-Out,2017-07-03,Summer,2017-07-01T07:00Z +Keep,212,2017,July,27,4,1,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-07-10,Summer,2017-07-04T07:00Z +Keep,176,2017,July,26,1,2,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,112.5,0,1,Check-Out,2017-07-04,Summer,2017-07-01T07:00Z +Keep,169,2017,June,26,30,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,81.4,0,0,Check-Out,2017-07-04,Summer,2017-06-30T07:00Z +Keep,232,2017,June,25,24,4,6,1,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,94.17,0,2,Check-Out,2017-07-04,Summer,2017-06-24T07:00Z +Keep,278,2017,June,26,27,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Contract,100.2,0,0,Check-Out,2017-07-04,Summer,2017-06-27T07:00Z +Keep,282,2017,June,25,24,4,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,100.2,0,0,Check-Out,2017-07-04,Summer,2017-06-24T07:00Z +Keep,283,2017,June,26,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,87.79,0,1,Check-Out,2017-07-04,Summer,2017-06-27T07:00Z +Keep,293,2017,June,26,27,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 147, NULL,0,Transient,102.55,0,0,Check-Out,2017-07-04,Summer,2017-06-27T07:00Z +Keep,289,2017,June,25,23,4,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,100.2,0,0,Check-Out,2017-07-04,Summer,2017-06-23T07:00Z +Keep,244,2017,June,25,20,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.8,0,1,Check-Out,2017-07-04,Summer,2017-06-20T07:00Z +Keep,1,2017,July,27,3,1,0,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,173,0,1,Check-Out,2017-07-04,Summer,2017-07-03T07:00Z +Keep,27,2017,July,27,3,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 135,0,Transient,142,0,0,Check-Out,2017-07-04,Summer,2017-07-03T07:00Z +Keep,24,2017,July,26,1,2,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,174,1,1,Check-Out,2017-07-04,Summer,2017-07-01T07:00Z +Keep,1,2017,July,27,4,0,2,2,0,0,BB,SWE,Direct,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,174,1,1,Check-Out,2017-07-06,Summer,2017-07-04T07:00Z +Keep,227,2017,June,25,21,4,9,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,78.23,0,2,Check-Out,2017-07-04,Summer,2017-06-21T07:00Z +Keep,161,2017,July,26,1,2,1,2,0,0,BB,ISR,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,144,1,2,Check-Out,2017-07-04,Summer,2017-07-01T07:00Z +Keep,24,2017,June,26,30,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-04,Summer,2017-06-30T07:00Z +Keep,25,2017,July,26,1,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2017-07-04,Summer,2017-07-01T07:00Z +Keep,1,2017,July,27,3,1,0,1,0,0,BB,KAZ,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,173,0,2,Check-Out,2017-07-04,Summer,2017-07-03T07:00Z +Keep,81,2017,July,27,2,2,0,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,250,0,1,Check-Out,2017-07-04,Summer,2017-07-02T07:00Z +Keep,220,2017,June,26,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,81.2,0,1,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,220,2017,June,26,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,81.2,0,1,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,220,2017,June,26,28,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,81.2,0,1,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,253,2017,June,26,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,1,No Deposit , 177, NULL,0,Transient,99.7,0,1,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,327,2017,June,26,26,3,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,103.7,0,0,Check-Out,2017-07-05,Summer,2017-06-26T07:00Z +Keep,258,2017,June,25,21,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,115.51,0,1,Check-Out,2017-07-05,Summer,2017-06-21T07:00Z +Keep,51,2017,June,26,29,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 531, NULL,0,Transient,161.33,0,3,Check-Out,2017-07-05,Summer,2017-06-29T07:00Z +Keep,90,2017,June,26,28,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,127,0,0,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,50,2017,June,26,28,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 531, NULL,0,Transient,159.14,0,3,Check-Out,2017-07-05,Summer,2017-06-28T07:00Z +Keep,82,2017,June,25,21,4,10,2,0,0,HB,ITA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,159,0,0,Check-Out,2017-07-05,Summer,2017-06-21T07:00Z +Keep,261,2017,July,26,1,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,115,1,1,Check-Out,2017-07-05,Summer,2017-07-01T07:00Z +Keep,47,2017,July,27,3,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,184,0,1,Check-Out,2017-07-05,Summer,2017-07-03T07:00Z +Keep,133,2017,July,27,3,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,170,0,0,Check-Out,2017-07-05,Summer,2017-07-03T07:00Z +Keep,159,2017,July,27,2,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,96.25,0,1,Check-Out,2017-07-05,Summer,2017-07-02T07:00Z +Keep,165,2017,June,25,21,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,123.5,0,1,Check-Out,2017-07-05,Summer,2017-06-21T07:00Z +Keep,165,2017,June,25,21,4,10,2,1,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,138.5,0,1,Check-Out,2017-07-05,Summer,2017-06-21T07:00Z +Keep,276,2017,July,27,2,2,1,2,0,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.37,1,1,Check-Out,2017-07-05,Summer,2017-07-02T07:00Z +Keep,114,2017,June,26,30,2,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,159,0,1,Check-Out,2017-07-05,Summer,2017-06-30T07:00Z +Keep,114,2017,June,26,30,2,3,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,159,0,1,Check-Out,2017-07-05,Summer,2017-06-30T07:00Z +Keep,317,2017,June,26,25,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,70.2,0,0,Check-Out,2017-07-05,Summer,2017-06-25T07:00Z +Keep,257,2017,June,26,29,2,5,2,0,1,BB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,140,0,3,Check-Out,2017-07-06,Summer,2017-06-29T07:00Z +Keep,198,2017,July,26,1,2,3,2,1,1,BB,CHE,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,174,1,0,Check-Out,2017-07-06,Summer,2017-07-01T07:00Z +Keep,97,2017,July,27,3,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,188,0,2,Check-Out,2017-07-06,Summer,2017-07-03T07:00Z +Keep,342,2017,June,26,26,3,7,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,120.45,0,2,Check-Out,2017-07-06,Summer,2017-06-26T07:00Z +Keep,342,2017,June,26,26,3,7,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,126.2,0,0,Check-Out,2017-07-06,Summer,2017-06-26T07:00Z +Keep,48,2017,June,26,26,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,145.75,0,2,Check-Out,2017-07-06,Summer,2017-06-26T07:00Z +Keep,11,2017,July,27,5,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,166,1,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,273,2017,June,26,29,2,5,2,2,0,BB,GBR,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,153.75,0,0,Check-Out,2017-07-06,Summer,2017-06-29T07:00Z +Keep,47,2017,July,26,1,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,I,0,No Deposit , 240, NULL,0,Transient,210,0,1,Check-Out,2017-07-06,Summer,2017-07-01T07:00Z +Keep,50,2017,July,27,6,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,I,0,No Deposit , 240, NULL,0,Transient,260,1,1,Check-Out,2017-07-07,Summer,2017-07-06T07:00Z +Keep,235,2017,July,27,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 410, NULL,0,Transient,78,0,0,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,207,2017,July,27,2,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,80,0,0,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,171,2017,June,26,26,3,7,3,0,0,HB,NLD,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,212,0,0,Check-Out,2017-07-06,Summer,2017-06-26T07:00Z +Keep,220,2017,July,26,1,2,3,2,1,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 314, NULL,0,Transient,112.95,0,1,Check-Out,2017-07-06,Summer,2017-07-01T07:00Z +Keep,122,2017,June,26,30,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,176.67,0,1,Check-Out,2017-07-06,Summer,2017-06-30T07:00Z +Keep,122,2017,June,26,30,2,4,2,2,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,151.67,0,1,Check-Out,2017-07-06,Summer,2017-06-30T07:00Z +Keep,57,2017,July,27,2,2,2,2,2,0,BB,IND,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,264,1,2,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,177,2017,July,27,2,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,70.2,0,1,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,93,0,2,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,234,2017,June,26,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.8,0,0,Check-Out,2017-07-06,Summer,2017-06-29T07:00Z +Keep,248,2017,July,27,2,2,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,113.4,0,2,Check-Out,2017-07-06,Summer,2017-07-02T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,113,0,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,98,0,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,118,2017,July,26,1,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165,0,1,Check-Out,2017-07-06,Summer,2017-07-01T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,123,0,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,108,0,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,0,2017,July,27,5,0,1,2,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 541,0,Transient,93,0,0,Check-Out,2017-07-06,Summer,2017-07-05T07:00Z +Keep,1,2017,July,27,6,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,8,0,1,Check-Out,2017-07-07,Summer,2017-07-06T07:00Z +Keep,0,2017,July,27,3,1,2,2,0,0,SC,CHE,Direct,Direct, 0,0,0,G,I,0,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2017-07-06,Summer,2017-07-03T07:00Z +Keep,193,2017,July,27,4,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,90,1,0,Check-Out,2017-07-07,Summer,2017-07-04T07:00Z +Keep,263,2017,July,27,3,1,3,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,85.05,0,0,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,303,2017,June,26,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.8,0,2,Check-Out,2017-07-07,Summer,2017-06-30T07:00Z +Keep,270,2017,June,26,30,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.8,0,0,Check-Out,2017-07-07,Summer,2017-06-30T07:00Z +Keep,62,2017,July,27,5,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,216,0,1,Check-Out,2017-07-07,Summer,2017-07-05T07:00Z +Keep,173,2017,July,27,3,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,140,0,1,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,173,2017,July,27,3,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,234,2017,June,26,30,2,5,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,119.85,0,1,Check-Out,2017-07-07,Summer,2017-06-30T07:00Z +Keep,275,2017,June,26,30,2,5,2,0,0,BB,JPN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,76.94,0,1,Check-Out,2017-07-07,Summer,2017-06-30T07:00Z +Keep,166,2017,July,27,3,1,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,173.2,0,3,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,165,2017,July,27,3,1,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,172.2,0,3,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,200,2017,July,27,2,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,124,1,1,Check-Out,2017-07-07,Summer,2017-07-02T07:00Z +Keep,172,2017,June,26,27,2,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,119.64,0,2,Check-Out,2017-07-07,Summer,2017-06-27T07:00Z +Keep,172,2017,June,26,27,2,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,110.94,1,0,Check-Out,2017-07-07,Summer,2017-06-27T07:00Z +Keep,29,2017,July,27,3,1,3,3,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,219,1,2,Check-Out,2017-07-07,Summer,2017-07-03T07:00Z +Keep,5,2017,July,27,4,0,3,1,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,147.25,0,0,Check-Out,2017-07-07,Summer,2017-07-04T07:00Z +Keep,72,2017,July,27,5,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,162,1,1,Check-Out,2017-07-07,Summer,2017-07-05T07:00Z +Keep,170,2017,June,26,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-07-07,Summer,2017-06-30T07:00Z +Keep,181,2017,July,26,1,2,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,127.5,0,1,Check-Out,2017-07-07,Summer,2017-07-01T07:00Z +Keep,5,2017,July,27,5,0,2,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,169,1,0,Check-Out,2017-07-07,Summer,2017-07-05T07:00Z +Keep,8,2017,July,27,6,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,147.25,0,1,Check-Out,2017-07-07,Summer,2017-07-06T07:00Z +Keep,207,2017,June,26,28,2,7,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,120.48,0,1,Check-Out,2017-07-07,Summer,2017-06-28T07:00Z +Keep,0,2017,July,27,6,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,96,0,1,Check-Out,2017-07-07,Summer,2017-07-06T07:00Z +Keep,244,2017,July,26,1,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,99,0,2,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,241,2017,July,26,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,84.8,0,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,52,2017,July,26,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,165.1,0,2,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,327,2017,July,26,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,76.7,0,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,244,2017,July,26,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,101,0,2,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,306,2017,July,26,1,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,1,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,288,2017,July,27,3,1,4,2,0,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,2,No Deposit , 240, NULL,0,Transient,115.68,1,3,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,0,2017,July,27,3,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,164.6,0,0,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,121,2017,July,27,6,0,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,165,0,1,Check-Out,2017-07-08,Summer,2017-07-06T07:00Z +Keep,1,2017,July,27,7,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,123.6,1,1,Check-Out,2017-07-08,Summer,2017-07-07T07:00Z +Keep,313,2017,July,26,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,114.04,0,0,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,313,2017,July,26,1,2,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,91.95,1,0,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,313,2017,July,26,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,128.04,1,0,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,6,2017,July,27,3,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164.4,0,1,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,57,2017,July,27,5,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,200,0,1,Check-Out,2017-07-08,Summer,2017-07-05T07:00Z +Keep,164,2017,July,26,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,121.43,1,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,261,2017,June,26,28,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,100.2,0,0,Check-Out,2017-07-08,Summer,2017-06-28T07:00Z +Keep,239,2017,June,26,27,2,9,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,153,0,3,Check-Out,2017-07-08,Summer,2017-06-27T07:00Z +Keep,239,2017,June,26,27,2,9,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,165.36,1,3,Check-Out,2017-07-08,Summer,2017-06-27T07:00Z +Keep,251,2017,July,27,3,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,114.5,0,1,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,60,2017,July,27,2,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2017-07-08,Summer,2017-07-02T07:00Z +Keep,0,2017,July,27,7,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2017-07-08,Summer,2017-07-07T07:00Z +Keep,177,2017,July,26,1,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,131.25,0,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,80,2017,July,26,1,2,5,3,1,0,HB,ZAF,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,308,0,0,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,185,2017,July,26,1,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,207,0,0,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,0,2017,July,27,7,0,1,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,2,Check-Out,2017-07-08,Summer,2017-07-07T07:00Z +Keep,327,2017,July,26,1,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient-Party,74.7,0,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,8,2017,July,27,4,0,4,3,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,193,0,0,Check-Out,2017-07-08,Summer,2017-07-04T07:00Z +Keep,45,2017,July,26,1,2,5,1,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,210,1,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,1,2017,July,27,3,1,4,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,257.6,1,1,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,164,2017,July,26,1,2,5,1,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,121.43,0,1,Check-Out,2017-07-08,Summer,2017-07-01T07:00Z +Keep,70,2017,July,27,3,1,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,208.75,1,0,Check-Out,2017-07-08,Summer,2017-07-03T07:00Z +Keep,164,2017,July,27,4,0,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,133.04,0,1,Check-Out,2017-07-09,Summer,2017-07-04T07:00Z +Keep,166,2017,June,26,25,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 243, NULL,0,Transient,110,0,0,Check-Out,2017-07-09,Summer,2017-06-25T07:00Z +Keep,270,2017,July,26,1,2,6,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 184, NULL,0,Transient,103.75,0,0,Check-Out,2017-07-09,Summer,2017-07-01T07:00Z +Keep,131,2017,July,27,6,0,3,2,1,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,216.67,0,0,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,283,2017,June,26,29,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.2,0,1,Check-Out,2017-07-09,Summer,2017-06-29T07:00Z +Keep,293,2017,July,27,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,100.2,0,0,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,11,2017,July,27,7,0,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,92,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,324,2017,June,26,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.2,0,1,Check-Out,2017-07-09,Summer,2017-06-25T07:00Z +Keep,248,2017,June,26,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.91,0,0,Check-Out,2017-07-09,Summer,2017-06-25T07:00Z +Keep,241,2017,July,27,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,97.4,0,0,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,185,2017,July,26,1,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,0,1,Check-Out,2017-07-09,Summer,2017-07-01T07:00Z +Keep,178,2017,July,27,4,0,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,G,0,No Deposit , 250, NULL,0,Transient,115.4,0,0,Check-Out,2017-07-09,Summer,2017-07-04T07:00Z +Keep,259,2017,July,27,2,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,159.14,0,2,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,11,2017,July,27,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,1,1,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,170,2017,July,27,4,0,5,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,84.7,0,0,Check-Out,2017-07-09,Summer,2017-07-04T07:00Z +Keep,149,2017,July,27,7,0,2,1,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,4,No Deposit , 250, NULL,0,Transient,178,0,2,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,270,2017,July,27,6,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,139.9,0,1,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,111,2017,July,27,4,0,5,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-07-09,Summer,2017-07-04T07:00Z +Keep,270,2017,July,27,6,0,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,125.9,0,3,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,159,2017,July,27,2,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,112.5,0,1,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,10,2017,July,27,6,0,3,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,212,0,2,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,303,2017,July,27,4,0,5,2,0,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,107.38,0,1,Check-Out,2017-07-09,Summer,2017-07-04T07:00Z +Keep,159,2017,July,27,2,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,151.43,1,1,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,122,2017,July,27,7,0,2,3,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,264,1,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,8,2017,July,27,7,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 242, NULL,0,Transient,199,1,1,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,6,2017,July,27,8,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,2,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,191,2017,July,27,6,0,3,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,124,0,1,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,165,2017,July,27,5,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,G,1,No Deposit , 241, NULL,0,Transient,131.43,0,1,Check-Out,2017-07-09,Summer,2017-07-05T07:00Z +Keep,165,2017,July,27,5,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,97.21,0,1,Check-Out,2017-07-09,Summer,2017-07-05T07:00Z +Keep,3,2017,July,27,8,0,1,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,322,1,0,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,15,2017,July,27,7,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174,1,1,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,253,2017,July,27,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient,89.1,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,205,2017,July,27,6,0,3,3,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,129.72,0,2,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,253,2017,July,27,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,116.64,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,253,2017,July,27,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,116.64,0,1,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,233,2017,July,27,2,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,101.7,0,2,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,204,2017,July,27,2,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,110,1,1,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,1,2017,July,27,7,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,122.5,0,1,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,1,2017,July,28,9,1,0,2,0,0,BB,ESP,Direct,TA/TO, 0,0,0,A,C,0,No Deposit , NULL, NULL,0,Transient,100,0,1,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,205,2017,July,27,6,0,3,3,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,129.72,0,2,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,205,2017,July,27,6,0,3,3,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,129.72,0,2,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,158,2017,July,27,3,1,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 314, NULL,0,Transient,111.6,0,0,Check-Out,2017-07-09,Summer,2017-07-03T07:00Z +Keep,19,2017,July,27,8,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,142,1,0,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,4,2017,July,27,8,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,170,1,2,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,25,2017,July,27,8,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,99,2017,July,27,2,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,185,0,3,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,4,2017,July,27,6,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,0,1,Check-Out,2017-07-09,Summer,2017-07-06T07:00Z +Keep,324,2017,June,26,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,70.2,0,1,Check-Out,2017-07-09,Summer,2017-06-25T07:00Z +Keep,233,2017,July,27,2,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,103.7,0,2,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,0,2017,July,27,8,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2017-07-09,Summer,2017-07-08T07:00Z +Keep,13,2017,July,27,2,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 11, NULL,0,Transient,111,0,1,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,253,2017,July,27,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,D,0,No Deposit , NULL, NULL,0,Transient-Party,89.1,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,52,2017,July,27,7,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,210,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,253,2017,July,27,7,0,2,2,0,0,BB,PRT,Groups,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,89.1,0,0,Check-Out,2017-07-09,Summer,2017-07-07T07:00Z +Keep,233,2017,July,27,2,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 11, NULL,0,Transient,129.7,0,2,Check-Out,2017-07-09,Summer,2017-07-02T07:00Z +Keep,205,2017,June,26,26,3,10,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,111,3,0,Check-Out,2017-07-09,Summer,2017-06-26T07:00Z +Keep,177,2017,July,27,6,1,3,2,0,0,BB,KWT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,100.18,0,1,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,52,2017,June,26,30,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 531, NULL,0,Transient,147.69,0,2,Check-Out,2017-07-10,Summer,2017-06-30T07:00Z +Keep,291,2017,June,26,30,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,153.5,0,0,Check-Out,2017-07-10,Summer,2017-06-30T07:00Z +Keep,310,2017,June,26,26,4,10,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,94.62,0,0,Check-Out,2017-07-10,Summer,2017-06-26T07:00Z +Keep,169,2017,July,27,3,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,185.29,1,2,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,226,2017,July,27,3,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,112,0,0,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,177,2017,June,26,30,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,101.95,0,0,Check-Out,2017-07-10,Summer,2017-06-30T07:00Z +Keep,174,2017,July,27,7,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,92.4,0,0,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,336,2017,July,27,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,3,2017,July,27,8,1,1,2,0,0,BB,AGO,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,214,1,1,Check-Out,2017-07-10,Summer,2017-07-08T07:00Z +Keep,2,2017,July,28,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,1,1,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,334,2017,July,27,5,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,6,No Deposit , 250, NULL,0,Transient-Party,123.38,0,0,Check-Out,2017-07-10,Summer,2017-07-05T07:00Z +Keep,81,2017,July,27,5,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,228.75,1,0,Check-Out,2017-07-10,Summer,2017-07-05T07:00Z +Keep,310,2017,July,27,6,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,9,2017,July,27,7,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,0,2017,July,28,9,1,0,1,0,0,BB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,160,0,0,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,11,2017,July,27,7,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient-Party,224.33,1,0,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,11,2017,July,27,7,1,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient-Party,315.33,1,0,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,157,2017,July,27,3,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 196, NULL,0,Transient,121.93,0,0,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,148,2017,July,27,6,1,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,24,2017,July,27,8,1,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-10,Summer,2017-07-08T07:00Z +Keep,350,2017,June,26,30,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,81.36,0,0,Check-Out,2017-07-10,Summer,2017-06-30T07:00Z +Keep,181,2017,June,25,21,5,14,1,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 69, NULL,0,Transient,117.45,0,0,Check-Out,2017-07-10,Summer,2017-06-21T07:00Z +Keep,2,2017,July,28,9,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,1,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,177,2017,June,26,30,3,7,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,79.2,0,0,Check-Out,2017-07-10,Summer,2017-06-30T07:00Z +Keep,171,2017,July,27,3,2,5,2,1,1,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,147.71,1,2,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,272,2017,July,27,6,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,137.9,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,272,2017,July,27,6,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,138.6,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,61,2017,July,27,7,1,2,2,0,0,HB,FIN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220.33,0,1,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,61,2017,July,28,9,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,210,1,1,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,159,2017,July,27,7,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,99.6,0,0,Check-Out,2017-07-10,Summer,2017-07-07T07:00Z +Keep,1,2017,July,28,9,1,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,84.01,0,1,Check-Out,2017-07-10,Summer,2017-07-09T07:00Z +Keep,177,2017,July,27,3,2,5,3,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient-Party,175.57,0,1,Check-Out,2017-07-10,Summer,2017-07-03T07:00Z +Keep,272,2017,July,27,6,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,135.9,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,272,2017,July,27,6,1,3,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,135.9,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,310,2017,July,27,6,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,93.38,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,154,2017,July,27,6,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,137.5,0,2,Check-Out,2017-07-10,Summer,2017-07-06T07:00Z +Keep,24,2017,July,27,8,1,1,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-10,Summer,2017-07-08T07:00Z +Keep,10,2017,July,28,11,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,144,0,1,Check-Out,2017-07-13,Summer,2017-07-11T07:00Z +Keep,131,2017,July,28,11,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,160.71,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,204,2017,July,26,1,4,6,2,1,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,185.5,0,2,Check-Out,2017-07-11,Summer,2017-07-01T07:00Z +Keep,52,2017,July,26,1,4,6,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,179,0,2,Check-Out,2017-07-11,Summer,2017-07-01T07:00Z +Keep,55,2017,July,27,4,2,5,2,0,0,BB,GBR,Complementary,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,109.65,0,2,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,3,2017,July,28,10,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,97,0,1,Check-Out,2017-07-11,Summer,2017-07-10T07:00Z +Keep,3,2017,July,28,10,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,97,0,1,Check-Out,2017-07-11,Summer,2017-07-10T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient-Party,178,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,140,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,178,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,140,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,1,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient-Party,140,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,252,2017,July,27,4,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.85,0,0,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,4,2017,July,28,10,1,0,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,79.54,0,0,Check-Out,2017-07-11,Summer,2017-07-10T07:00Z +Keep,166,2017,July,27,4,2,5,2,0,0,Undefined,DEU,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,213.57,0,1,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,106,2017,July,28,9,2,0,2,2,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,211,1,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,200,2017,July,27,4,2,5,1,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,83.31,0,0,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,243,2017,July,27,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,149.71,0,3,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,13,2017,July,27,8,2,1,2,2,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,214,1,2,Check-Out,2017-07-11,Summer,2017-07-08T07:00Z +Keep,173,2017,July,27,5,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,135.6,0,3,Check-Out,2017-07-11,Summer,2017-07-05T07:00Z +Keep,173,2017,July,27,5,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient,135.6,0,3,Check-Out,2017-07-11,Summer,2017-07-05T07:00Z +Keep,173,2017,July,27,5,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,135.6,0,3,Check-Out,2017-07-11,Summer,2017-07-05T07:00Z +Keep,46,2017,July,28,9,2,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,165,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,6,2017,July,27,7,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,1,1,Check-Out,2017-07-11,Summer,2017-07-07T07:00Z +Keep,179,2017,July,27,4,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,147.02,0,1,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,264,2017,June,26,27,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-07-11,Summer,2017-06-27T07:00Z +Keep,307,2017,July,27,8,2,1,1,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,168.6,0,2,Check-Out,2017-07-11,Summer,2017-07-08T07:00Z +Keep,307,2017,July,27,8,2,1,1,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient-Party,197.61,1,2,Check-Out,2017-07-11,Summer,2017-07-08T07:00Z +Keep,300,2017,July,26,1,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,129.26,0,1,Check-Out,2017-07-11,Summer,2017-07-01T07:00Z +Keep,130,2017,July,28,9,2,0,2,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient-Party,178,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,300,2017,July,26,1,4,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,127.26,0,1,Check-Out,2017-07-11,Summer,2017-07-01T07:00Z +Keep,130,2017,July,28,9,2,0,1,0,0,BB,TWN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient-Party,160,0,1,Check-Out,2017-07-11,Summer,2017-07-09T07:00Z +Keep,55,2017,July,27,4,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,165.1,0,2,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,226,2017,July,27,4,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,149.14,0,2,Check-Out,2017-07-11,Summer,2017-07-04T07:00Z +Keep,5,2017,July,27,8,2,1,2,2,0,BB,NGA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,260,0,0,Check-Out,2017-07-11,Summer,2017-07-08T07:00Z +Keep,125,2017,July,28,10,1,0,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,274,0,2,Check-Out,2017-07-11,Summer,2017-07-10T07:00Z +Keep,160,2017,July,28,10,1,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,144,0,2,Check-Out,2017-07-11,Summer,2017-07-10T07:00Z +Keep,160,2017,July,28,11,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Group,198,0,2,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,216,2017,July,27,5,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,114.32,0,0,Check-Out,2017-07-12,Summer,2017-07-05T07:00Z +Keep,159,2017,July,27,4,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,127.5,0,2,Check-Out,2017-07-12,Summer,2017-07-04T07:00Z +Keep,278,2017,July,27,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,108.24,0,1,Check-Out,2017-07-12,Summer,2017-07-05T07:00Z +Keep,168,2017,July,27,3,3,6,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,123.5,0,3,Check-Out,2017-07-12,Summer,2017-07-03T07:00Z +Keep,153,2017,July,28,9,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,120,0,1,Check-Out,2017-07-12,Summer,2017-07-09T07:00Z +Keep,131,2017,July,27,6,2,4,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,223.33,0,0,Check-Out,2017-07-12,Summer,2017-07-06T07:00Z +Keep,3,2017,July,28,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,125,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,12,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,135,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,1,2017,July,28,9,2,1,2,0,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,139,1,1,Check-Out,2017-07-12,Summer,2017-07-09T07:00Z +Keep,14,2017,July,27,8,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,226,1,1,Check-Out,2017-07-12,Summer,2017-07-08T07:00Z +Keep,47,2017,July,28,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,I,2,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,27,2017,July,28,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,174,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,47,2017,July,28,11,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,I,2,No Deposit , 240, NULL,0,Transient,160,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,27,2017,July,28,12,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,160,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,12,2017,July,28,11,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 337,0,Transient-Party,142,1,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,266,2017,July,27,3,3,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,104.25,0,1,Check-Out,2017-07-12,Summer,2017-07-03T07:00Z +Keep,87,2017,July,28,10,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2017-07-12,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,11,0,1,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,130,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,192,2017,June,26,28,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,108.56,0,0,Check-Out,2017-07-12,Summer,2017-06-28T07:00Z +Keep,18,2017,July,28,9,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Check-Out,2017-07-12,Summer,2017-07-09T07:00Z +Keep,121,2017,July,27,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-12,Summer,2017-07-05T07:00Z +Keep,2,2017,July,28,11,0,1,2,1,1,BB,FRA,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,154,1,2,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,327,2017,July,27,5,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,106.24,0,2,Check-Out,2017-07-12,Summer,2017-07-05T07:00Z +Keep,144,2017,July,28,9,2,1,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,196,1,1,Check-Out,2017-07-12,Summer,2017-07-09T07:00Z +Keep,335,2017,July,28,10,1,1,2,2,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,228,1,0,Check-Out,2017-07-12,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,11,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,115,0,0,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,3,2017,July,27,8,2,2,3,1,0,BB,ESP,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,279,1,1,Check-Out,2017-07-12,Summer,2017-07-08T07:00Z +Keep,3,2017,July,28,10,1,1,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,193,0,1,Check-Out,2017-07-12,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,135,0,1,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,0,2017,July,28,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,135,0,1,Check-Out,2017-07-12,Summer,2017-07-11T07:00Z +Keep,14,2017,July,28,10,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-12,Summer,2017-07-10T07:00Z +Keep,10,2017,July,27,8,2,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,177,0,0,Check-Out,2017-07-12,Summer,2017-07-08T07:00Z +Keep,182,2017,July,28,12,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,0,1,1,Check-Out,2017-07-12,Summer,2017-07-12T07:00Z +Keep,182,2017,July,28,12,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient-Party,0,0,1,Check-Out,2017-07-12,Summer,2017-07-12T07:00Z +Keep,182,2017,July,28,12,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , NULL, NULL,0,Transient-Party,0,0,1,Check-Out,2017-07-12,Summer,2017-07-12T07:00Z +Keep,316,2017,July,27,6,2,5,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,131.59,0,1,Check-Out,2017-07-13,Summer,2017-07-06T07:00Z +Keep,328,2017,June,26,29,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,123.5,0,2,Check-Out,2017-07-13,Summer,2017-06-29T07:00Z +Keep,0,2017,July,28,12,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,8,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,328,2017,June,26,29,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,121.5,0,2,Check-Out,2017-07-13,Summer,2017-06-29T07:00Z +Keep,272,2017,July,27,3,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,136.45,0,0,Check-Out,2017-07-13,Summer,2017-07-03T07:00Z +Keep,153,2017,July,28,9,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.85,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,149,2017,July,28,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-07-13,Summer,2017-07-10T07:00Z +Keep,5,2017,July,28,12,0,1,1,0,0,BB,ESP,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,73.95,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,5,2017,July,28,12,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,C,0,No Deposit , 250, NULL,0,Transient-Party,73.95,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,5,2017,July,28,12,0,1,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,100,0,1,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,152,2017,July,27,4,2,7,2,0,1,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,149,0,3,Check-Out,2017-07-13,Summer,2017-07-04T07:00Z +Keep,152,2017,July,27,4,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,151,0,2,Check-Out,2017-07-13,Summer,2017-07-04T07:00Z +Keep,152,2017,July,27,4,2,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,151,0,2,Check-Out,2017-07-13,Summer,2017-07-04T07:00Z +Keep,167,2017,July,27,4,2,7,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155.33,0,1,Check-Out,2017-07-13,Summer,2017-07-04T07:00Z +Keep,272,2017,July,27,3,3,7,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,119.85,0,0,Check-Out,2017-07-13,Summer,2017-07-03T07:00Z +Keep,153,2017,July,28,10,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 314, NULL,0,Transient,154.76,1,0,Check-Out,2017-07-13,Summer,2017-07-10T07:00Z +Keep,176,2017,July,27,6,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,130.03,0,1,Check-Out,2017-07-13,Summer,2017-07-06T07:00Z +Keep,149,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,0,2017,July,28,12,0,1,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,1,No Deposit , 241, NULL,0,Transient,126,1,2,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,193,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,3,2017,July,28,10,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,89.6,0,1,Check-Out,2017-07-13,Summer,2017-07-10T07:00Z +Keep,163,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,106.35,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,153,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,205,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,106.35,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,192,2017,July,27,2,4,7,3,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,203.18,0,0,Check-Out,2017-07-13,Summer,2017-07-02T07:00Z +Keep,212,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient-Party,118,0,1,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,102,2017,July,28,10,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,211,0,2,Check-Out,2017-07-13,Summer,2017-07-10T07:00Z +Keep,152,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 410, NULL,0,Transient,118,0,0,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,212,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient-Party,123.5,1,1,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,151,2017,July,28,9,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118,0,1,Check-Out,2017-07-13,Summer,2017-07-09T07:00Z +Keep,176,2017,July,27,6,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 147, NULL,0,Transient,93.54,0,0,Check-Out,2017-07-13,Summer,2017-07-06T07:00Z +Keep,0,2017,July,28,12,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,154,1,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,0,2017,July,28,12,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,8,0,0,Check-Out,2017-07-13,Summer,2017-07-12T07:00Z +Keep,182,2017,July,27,5,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 147, NULL,0,Transient,103.05,0,0,Check-Out,2017-07-13,Summer,2017-07-05T07:00Z +Keep,166,2017,July,27,7,2,5,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 314, NULL,0,Transient,151.19,0,0,Check-Out,2017-07-14,Summer,2017-07-07T07:00Z +Keep,97,2017,July,27,7,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,178.29,0,1,Check-Out,2017-07-14,Summer,2017-07-07T07:00Z +Keep,256,2017,July,27,7,2,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,156.51,1,2,Check-Out,2017-07-14,Summer,2017-07-07T07:00Z +Keep,335,2017,July,27,4,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,154.5,0,0,Check-Out,2017-07-14,Summer,2017-07-04T07:00Z +Keep,311,2017,July,27,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,1,Check-Out,2017-07-14,Summer,2017-07-07T07:00Z +Keep,311,2017,July,27,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,1,Check-Out,2017-07-14,Summer,2017-07-07T07:00Z +Keep,183,2017,July,27,5,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,139.78,1,1,Check-Out,2017-07-14,Summer,2017-07-05T07:00Z +Keep,152,2017,July,28,11,0,3,2,0,0,BB,NOR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,165,0,0,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,166,2017,July,27,4,2,8,3,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 241, NULL,0,Transient,180.02,0,1,Check-Out,2017-07-14,Summer,2017-07-04T07:00Z +Keep,164,2017,July,27,4,2,8,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140,1,0,Check-Out,2017-07-14,Summer,2017-07-04T07:00Z +Keep,30,2017,July,28,11,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,7,2017,July,28,13,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,145,0,0,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,0,2017,July,28,13,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,E,E,0,No Deposit , NULL, 34,0,Transient,130,0,0,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,158,2017,July,27,8,2,4,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,144,0,0,Check-Out,2017-07-14,Summer,2017-07-08T07:00Z +Keep,155,2017,July,28,10,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,134,1,2,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,21,2017,July,28,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,158,0,1,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,98,2017,July,28,11,0,3,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,199,0,1,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,5,2017,July,28,11,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,165,1,0,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,98,2017,July,28,10,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,193,1,1,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,148,2017,July,28,9,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,92.4,0,1,Check-Out,2017-07-14,Summer,2017-07-09T07:00Z +Keep,94,2017,July,28,12,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,173,1,0,Check-Out,2017-07-14,Summer,2017-07-12T07:00Z +Keep,1,2017,July,28,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,2,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,19,2017,July,28,10,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,21,2017,July,28,12,0,2,2,0,0,BB,USA,Direct,Direct, 0,0,0,A,E,0,No Deposit , 250, NULL,0,Transient,167.25,0,1,Check-Out,2017-07-14,Summer,2017-07-12T07:00Z +Keep,13,2017,July,28,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 196, NULL,0,Transient,160,0,0,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,1,2017,July,28,13,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,3,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,4,2017,July,28,10,1,3,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,11,2017,July,28,11,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,174,0,1,Check-Out,2017-07-14,Summer,2017-07-11T07:00Z +Keep,33,2017,July,28,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,160,0,2,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,160,2017,July,28,10,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,165,1,2,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,13,0,1,2,0,0,BB,UKR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,105,0,0,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,160,2017,July,28,10,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,120,0,2,Check-Out,2017-07-14,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,13,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 240, NULL,0,Transient,120,0,2,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,0,2017,July,28,13,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 241, NULL,0,Transient,96,0,1,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,148,2017,July,28,9,2,3,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,92.4,1,1,Check-Out,2017-07-14,Summer,2017-07-09T07:00Z +Keep,0,2017,July,28,13,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,96,0,1,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,0,2017,July,28,14,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,115.19,0,1,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,4,2017,July,28,13,0,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,120,0,1,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,1,2017,July,28,13,0,1,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,97,0,1,Check-Out,2017-07-14,Summer,2017-07-13T07:00Z +Keep,217,2017,July,27,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,104.85,0,0,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,161,2017,July,27,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,132.85,0,0,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,6,2017,July,28,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,172.5,0,1,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,165,2017,July,27,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,132.85,0,0,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,66,2017,July,28,12,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,219.33,1,1,Check-Out,2017-07-15,Summer,2017-07-12T07:00Z +Keep,59,2017,July,28,14,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,99,2017,July,28,15,3,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,0,Check-Out,2017-07-24,Summer,2017-07-15T07:00Z +Keep,27,2017,July,28,13,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2017-07-15,Summer,2017-07-13T07:00Z +Keep,4,2017,July,28,15,1,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,185,0,1,Check-Out,2017-07-17,Summer,2017-07-15T07:00Z +Keep,37,2017,July,27,8,2,5,3,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 134, NULL,0,Transient,252,1,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,148,2017,July,28,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,128,0,0,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,148,2017,July,28,10,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,142,0,0,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,14,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,175,0,0,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,183,2017,July,27,8,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,125.17,0,0,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,153,2017,July,27,8,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,127.4,1,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,9,2017,July,27,8,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,192,1,2,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,194,2017,July,28,14,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,188,0,0,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,229,2017,July,28,9,2,4,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,247.33,1,0,Check-Out,2017-07-15,Summer,2017-07-09T07:00Z +Keep,1,2017,July,28,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,140,0,2,Check-Out,2017-07-15,Summer,2017-07-13T07:00Z +Keep,132,2017,July,28,10,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,128,0,2,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,132,2017,July,28,10,1,4,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,154.5,0,2,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,149,2017,July,27,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,104.85,0,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,149,2017,July,27,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 143, NULL,0,Transient,106.85,0,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,7,2017,July,28,10,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,144,0,1,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,170,2017,July,27,8,2,5,2,0,1,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 6, NULL,0,Transient,155.7,1,2,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,25,2017,July,28,13,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,144,0,1,Check-Out,2017-07-15,Summer,2017-07-13T07:00Z +Keep,28,2017,July,28,10,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,193.25,1,0,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,142,2017,July,28,10,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154,0,1,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,14,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,175,0,0,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,21,2017,July,28,13,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-15,Summer,2017-07-13T07:00Z +Keep,4,2017,July,28,14,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,180,0,1,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,165,2017,July,27,8,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 95, NULL,0,Transient,126.9,0,0,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,31,2017,July,28,13,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,128,1,1,Check-Out,2017-07-15,Summer,2017-07-13T07:00Z +Keep,132,2017,July,28,10,1,4,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,152.9,0,1,Check-Out,2017-07-15,Summer,2017-07-10T07:00Z +Keep,164,2017,July,28,9,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,185,0,1,Check-Out,2017-07-15,Summer,2017-07-09T07:00Z +Keep,128,2017,July,27,8,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,238,0,2,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,82,2017,July,28,12,0,3,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 241, NULL,0,Transient,176.8,0,1,Check-Out,2017-07-15,Summer,2017-07-12T07:00Z +Keep,271,2017,July,27,8,2,5,3,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,235,0,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,126,2017,July,28,12,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,120,0,1,Check-Out,2017-07-15,Summer,2017-07-12T07:00Z +Keep,168,2017,July,28,11,0,4,3,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,143.55,0,0,Check-Out,2017-07-15,Summer,2017-07-11T07:00Z +Keep,159,2017,July,27,8,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,90.51,0,1,Check-Out,2017-07-15,Summer,2017-07-08T07:00Z +Keep,42,2017,July,28,11,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,184,0,2,Check-Out,2017-07-15,Summer,2017-07-11T07:00Z +Keep,0,2017,July,28,14,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 241, NULL,0,Transient,142,1,1,Check-Out,2017-07-15,Summer,2017-07-14T07:00Z +Keep,130,2017,July,28,9,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,151.5,0,0,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,312,2017,July,27,2,4,10,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Contract,131.06,0,1,Check-Out,2017-07-16,Summer,2017-07-02T07:00Z +Keep,312,2017,July,27,2,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104.85,0,1,Check-Out,2017-07-16,Summer,2017-07-02T07:00Z +Keep,152,2017,July,28,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,160.67,0,2,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,135,2017,July,28,9,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,155,2017,July,28,15,0,1,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, 251,0,Transient,143,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,13,2017,July,28,12,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,172.15,0,1,Check-Out,2017-07-16,Summer,2017-07-12T07:00Z +Keep,89,2017,July,28,13,0,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,201.67,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,152,2017,July,28,13,0,3,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient-Party,188.67,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,63,2017,July,28,10,1,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,276.83,1,1,Check-Out,2017-07-16,Summer,2017-07-10T07:00Z +Keep,140,2017,July,28,10,1,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,197.83,0,1,Check-Out,2017-07-16,Summer,2017-07-10T07:00Z +Keep,132,2017,July,28,10,1,5,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 15, NULL,0,Transient,164.4,0,1,Check-Out,2017-07-16,Summer,2017-07-10T07:00Z +Keep,155,2017,July,28,9,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,178.43,0,0,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,0,2017,July,28,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,195,2017,July,28,9,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,234.29,0,0,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,1,2017,July,28,13,0,3,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213.67,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,25,2017,July,28,14,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,215,0,1,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,27,2017,July,28,13,0,3,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,222,0,0,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,5,2017,July,28,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,1,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,155,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,23,2017,July,28,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,1,2,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,18,2017,July,28,13,0,3,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,166,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,93,2017,July,28,9,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 11, NULL,0,Transient,123,0,0,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,5,2017,July,28,14,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,G,1,No Deposit , 240, NULL,0,Transient,284,1,1,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,112,2017,July,28,12,0,4,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,164.02,0,0,Check-Out,2017-07-16,Summer,2017-07-12T07:00Z +Keep,104,2017,July,28,12,0,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-07-16,Summer,2017-07-12T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,123.5,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,2,2017,July,28,14,0,2,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,172.9,1,1,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,91,2017,July,28,11,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-07-16,Summer,2017-07-11T07:00Z +Keep,150,2017,July,27,8,2,6,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,223,0,2,Check-Out,2017-07-16,Summer,2017-07-08T07:00Z +Keep,349,2017,July,28,9,2,5,2,2,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,206.86,0,1,Check-Out,2017-07-16,Summer,2017-07-09T07:00Z +Keep,66,2017,July,28,12,0,4,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,292.75,1,1,Check-Out,2017-07-16,Summer,2017-07-12T07:00Z +Keep,152,2017,July,28,13,0,3,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,200.67,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,145,2017,July,28,12,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,125.44,0,1,Check-Out,2017-07-16,Summer,2017-07-12T07:00Z +Keep,1,2017,July,28,13,0,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,186.33,1,2,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,39,2017,July,28,13,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2017-07-16,Summer,2017-07-13T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,195,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,195,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,27,2017,July,28,14,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,180,0,2,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,155,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,145,2017,July,29,16,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,147.6,0,2,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,9,2017,July,28,14,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,157.5,0,1,Check-Out,2017-07-16,Summer,2017-07-14T07:00Z +Keep,0,2017,July,28,15,0,1,2,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,147.7,0,1,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,0,2017,July,28,15,0,1,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,E,1,No Deposit , NULL, NULL,0,Transient-Party,195,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,0,2017,July,29,16,0,0,2,0,0,BB,GBR,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-07-16,Summer,2017-07-16T07:00Z +Keep,0,2017,July,28,15,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,230,0,0,Check-Out,2017-07-16,Summer,2017-07-15T07:00Z +Keep,195,2017,July,29,17,1,4,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,241.6,0,2,Check-Out,2017-07-22,Summer,2017-07-17T07:00Z +Keep,206,2017,July,28,10,2,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,2,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,151,2017,July,28,10,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, 40,0,Contract,163.4,0,0,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,136,2017,July,28,10,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,181.43,0,2,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,0,2017,July,28,14,1,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,186.67,1,0,Check-Out,2017-07-17,Summer,2017-07-14T07:00Z +Keep,139,2017,July,28,10,2,5,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,107.71,0,3,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,129,2017,July,28,10,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,222.93,1,0,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,120,2017,July,28,10,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,202,0,1,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,43,2017,July,28,12,1,4,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,224,0,1,Check-Out,2017-07-17,Summer,2017-07-12T07:00Z +Keep,41,2017,July,28,12,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,206,0,0,Check-Out,2017-07-17,Summer,2017-07-12T07:00Z +Keep,4,2017,July,29,17,1,1,2,0,0,HB,PRT,Direct,TA/TO, 0,0,0,D,F,0,No Deposit , NULL, NULL,0,Transient,207,0,0,Check-Out,2017-07-19,Summer,2017-07-17T07:00Z +Keep,0,2017,July,29,16,1,0,3,0,0,BB,USA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,160,0,0,Check-Out,2017-07-17,Summer,2017-07-16T07:00Z +Keep,104,2017,July,28,11,1,5,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,203,0,1,Check-Out,2017-07-17,Summer,2017-07-11T07:00Z +Keep,3,2017,July,28,15,1,1,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,207,0,1,Check-Out,2017-07-17,Summer,2017-07-15T07:00Z +Keep,0,2017,July,28,15,1,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,184,0,1,Check-Out,2017-07-17,Summer,2017-07-15T07:00Z +Keep,103,2017,July,28,13,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 241, NULL,0,Transient,188.4,0,1,Check-Out,2017-07-17,Summer,2017-07-13T07:00Z +Keep,180,2017,July,28,14,1,2,2,2,0,BB,BEL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,230,1,1,Check-Out,2017-07-17,Summer,2017-07-14T07:00Z +Keep,235,2017,July,27,3,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,106.85,0,0,Check-Out,2017-07-17,Summer,2017-07-03T07:00Z +Keep,224,2017,July,27,3,4,10,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,135.9,0,0,Check-Out,2017-07-17,Summer,2017-07-03T07:00Z +Keep,2,2017,July,28,14,1,2,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213.33,0,1,Check-Out,2017-07-17,Summer,2017-07-14T07:00Z +Keep,33,2017,July,29,17,1,5,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,292.5,0,1,Check-Out,2017-07-23,Summer,2017-07-17T07:00Z +Keep,46,2017,July,28,13,1,3,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,285,0,0,Check-Out,2017-07-17,Summer,2017-07-13T07:00Z +Keep,110,2017,July,28,10,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,1,Check-Out,2017-07-17,Summer,2017-07-10T07:00Z +Keep,3,2017,July,28,14,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,2,Check-Out,2017-07-17,Summer,2017-07-14T07:00Z +Keep,3,2017,July,27,6,3,8,2,0,0,SC,CHE,Direct,Direct, 0,0,0,F,I,8,No Deposit , NULL, NULL,0,Transient,0,0,2,Check-Out,2017-07-17,Summer,2017-07-06T07:00Z +Keep,127,2017,July,28,11,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 479, NULL,0,Transient,160.69,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,110,2017,July,28,11,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,153.2,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,212,2017,July,28,9,4,5,2,0,0,HB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 479, NULL,0,Transient,160.4,0,1,Check-Out,2017-07-18,Summer,2017-07-09T07:00Z +Keep,110,2017,July,28,11,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 479, NULL,0,Transient,133.85,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,0,2017,July,29,17,1,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,183,0,1,Check-Out,2017-07-18,Summer,2017-07-17T07:00Z +Keep,160,2017,July,28,11,2,5,2,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.86,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,114,2017,July,28,11,2,5,3,0,0,BB,BEL,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,211.5,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,0,2017,July,28,15,2,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,168,0,0,Check-Out,2017-07-18,Summer,2017-07-15T07:00Z +Keep,0,2017,July,28,15,2,1,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,205.33,0,0,Check-Out,2017-07-18,Summer,2017-07-15T07:00Z +Keep,151,2017,July,28,11,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,188.86,0,2,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,118,2017,July,27,4,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-18,Summer,2017-07-04T07:00Z +Keep,63,2017,July,28,14,2,2,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,221.25,0,2,Check-Out,2017-07-18,Summer,2017-07-14T07:00Z +Keep,3,2017,July,28,11,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 241, NULL,0,Transient,132.8,0,1,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,3,2017,July,28,13,2,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,271,1,0,Check-Out,2017-07-18,Summer,2017-07-13T07:00Z +Keep,57,2017,July,28,12,2,4,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,182,0,2,Check-Out,2017-07-18,Summer,2017-07-12T07:00Z +Keep,241,2017,July,27,4,4,10,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,219.43,0,1,Check-Out,2017-07-18,Summer,2017-07-04T07:00Z +Keep,184,2017,July,27,4,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,116.6,0,1,Check-Out,2017-07-18,Summer,2017-07-04T07:00Z +Keep,62,2017,July,28,11,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,248.29,0,2,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,33,2017,July,28,11,2,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,241.86,1,0,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,152,2017,July,28,11,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,208.86,1,2,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,152,2017,July,28,11,2,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,194.86,0,2,Check-Out,2017-07-18,Summer,2017-07-11T07:00Z +Keep,27,2017,July,28,14,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.25,0,1,Check-Out,2017-07-18,Summer,2017-07-14T07:00Z +Keep,82,2017,July,28,12,2,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,220.4,0,0,Check-Out,2017-07-18,Summer,2017-07-12T07:00Z +Keep,2,2017,July,28,15,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,194,1,1,Check-Out,2017-07-18,Summer,2017-07-15T07:00Z +Keep,1,2017,July,29,17,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,179,0,2,Check-Out,2017-07-18,Summer,2017-07-17T07:00Z +Keep,0,2017,July,29,18,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-07-18,Summer,2017-07-18T07:00Z +Keep,106,2017,July,29,17,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,259,0,2,Check-Out,2017-07-18,Summer,2017-07-17T07:00Z +Keep,0,2017,July,29,18,0,0,2,0,0,SC,PRT,Direct,Direct, 1,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-07-18,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,17,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,154,0,0,Check-Out,2017-07-18,Summer,2017-07-17T07:00Z +Keep,1,2017,July,29,19,0,0,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,0,0,1,Check-Out,2017-07-19,Summer,2017-07-19T07:00Z +Keep,1,2017,July,29,19,0,2,1,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,159,0,1,Check-Out,2017-07-21,Summer,2017-07-19T07:00Z +Keep,126,2017,July,28,12,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,184.86,0,2,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,96,2017,July,28,12,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,216.14,0,1,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,8,2017,July,28,15,2,2,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,247,0,1,Check-Out,2017-07-19,Summer,2017-07-15T07:00Z +Keep,12,2017,July,28,12,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,172.14,0,0,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,11,2017,July,28,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,136.71,0,0,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,156,2017,July,28,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,159,2017,July,28,9,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.85,0,0,Check-Out,2017-07-19,Summer,2017-07-09T07:00Z +Keep,153,2017,July,28,9,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-19,Summer,2017-07-09T07:00Z +Keep,152,2017,July,29,16,2,1,2,2,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,214,1,2,Check-Out,2017-07-19,Summer,2017-07-16T07:00Z +Keep,39,2017,July,28,15,2,2,1,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,204.16,0,1,Check-Out,2017-07-19,Summer,2017-07-15T07:00Z +Keep,39,2017,July,28,15,2,2,2,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,220.16,1,1,Check-Out,2017-07-19,Summer,2017-07-15T07:00Z +Keep,5,2017,July,28,13,2,4,3,0,0,BB,BEL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,212.88,1,1,Check-Out,2017-07-19,Summer,2017-07-13T07:00Z +Keep,0,2017,July,29,18,0,1,2,2,0,BB,BRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,155,0,0,Check-Out,2017-07-19,Summer,2017-07-18T07:00Z +Keep,25,2017,July,28,13,2,4,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,166.25,0,2,Check-Out,2017-07-19,Summer,2017-07-13T07:00Z +Keep,80,2017,July,29,17,1,1,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,2,No Deposit , 241, NULL,0,Transient,221.6,0,2,Check-Out,2017-07-19,Summer,2017-07-17T07:00Z +Keep,80,2017,July,29,17,1,1,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,203.6,0,2,Check-Out,2017-07-19,Summer,2017-07-17T07:00Z +Keep,185,2017,July,28,11,2,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,135.36,0,1,Check-Out,2017-07-19,Summer,2017-07-11T07:00Z +Keep,90,2017,July,28,12,2,5,1,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,250,1,2,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,90,2017,July,28,12,2,5,1,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,224.16,0,3,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,283,2017,July,28,12,2,5,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,F,0,No Deposit , 240, NULL,0,Transient,166.24,0,1,Check-Out,2017-07-19,Summer,2017-07-12T07:00Z +Keep,124,2017,July,29,16,2,1,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,174,0,2,Check-Out,2017-07-19,Summer,2017-07-16T07:00Z +Keep,202,2017,July,28,11,2,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-07-19,Summer,2017-07-11T07:00Z +Keep,154,2017,July,29,16,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-07-19,Summer,2017-07-16T07:00Z +Keep,0,2017,July,29,18,0,1,2,0,0,HB,HKG,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,92,0,1,Check-Out,2017-07-19,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,18,0,1,2,2,0,BB,DJI,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,273,0,0,Check-Out,2017-07-19,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,18,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,157.2,0,1,Check-Out,2017-07-19,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,19,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 1,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,159.2,0,1,Check-Out,2017-07-22,Summer,2017-07-19T07:00Z +Keep,118,2017,July,28,15,2,3,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,180,0,2,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,118,2017,July,28,15,2,3,2,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,200,0,2,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,316,2017,July,27,6,4,10,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,145.1,0,3,Check-Out,2017-07-20,Summer,2017-07-06T07:00Z +Keep,154,2017,July,27,6,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,134.85,0,1,Check-Out,2017-07-20,Summer,2017-07-06T07:00Z +Keep,144,2017,July,29,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,0,Check-Out,2017-07-20,Summer,2017-07-16T07:00Z +Keep,2,2017,July,29,19,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 455,0,Transient,160,0,0,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,114,2017,July,28,14,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,189,1,1,Check-Out,2017-07-20,Summer,2017-07-14T07:00Z +Keep,154,2017,July,28,13,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,155.57,1,1,Check-Out,2017-07-20,Summer,2017-07-13T07:00Z +Keep,345,2017,July,28,11,2,7,3,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,219,0,3,Check-Out,2017-07-20,Summer,2017-07-11T07:00Z +Keep,68,2017,July,29,16,2,2,2,0,0,HB,DNK,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,264,0,1,Check-Out,2017-07-20,Summer,2017-07-16T07:00Z +Keep,184,2017,July,28,10,3,7,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165.8,0,1,Check-Out,2017-07-20,Summer,2017-07-10T07:00Z +Keep,199,2017,July,28,15,2,3,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,150,0,1,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,32,2017,July,29,20,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2017-07-21,Summer,2017-07-20T07:00Z +Keep,165,2017,July,29,19,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,123.2,0,1,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,240,2017,July,29,16,2,2,2,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,203,1,0,Check-Out,2017-07-20,Summer,2017-07-16T07:00Z +Keep,37,2017,July,29,19,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,190,0,0,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,68,2017,July,28,15,2,3,2,1,0,BB,SWE,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,220,0,0,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,174,2017,July,29,17,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,190,0,3,Check-Out,2017-07-20,Summer,2017-07-17T07:00Z +Keep,102,2017,July,28,15,2,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,223,0,1,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,158,2017,July,29,18,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 314, NULL,0,Transient,115.2,0,0,Check-Out,2017-07-20,Summer,2017-07-18T07:00Z +Keep,158,2017,July,29,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118,0,0,Check-Out,2017-07-20,Summer,2017-07-16T07:00Z +Keep,114,2017,July,29,16,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, 410,0,Transient,116.5,0,0,Check-Out,2017-07-20,Summer,2017-07-16T07:00Z +Keep,0,2017,July,29,19,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,154,0,0,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,162,2017,July,28,10,3,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,188,0,1,Check-Out,2017-07-20,Summer,2017-07-10T07:00Z +Keep,0,2017,July,29,19,0,1,2,1,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,186,0,0,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,35,2017,July,29,18,0,2,2,1,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,277,1,1,Check-Out,2017-07-20,Summer,2017-07-18T07:00Z +Keep,158,2017,July,29,18,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 314, NULL,0,Transient,129.2,0,0,Check-Out,2017-07-20,Summer,2017-07-18T07:00Z +Keep,152,2017,July,28,11,2,7,2,0,0,HB,UKR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 75, NULL,0,Transient,130.05,0,0,Check-Out,2017-07-20,Summer,2017-07-11T07:00Z +Keep,0,2017,July,29,19,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,254,0,0,Check-Out,2017-07-20,Summer,2017-07-19T07:00Z +Keep,82,2017,July,28,14,2,4,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,209.33,0,1,Check-Out,2017-07-20,Summer,2017-07-14T07:00Z +Keep,4,2017,July,28,15,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,233,0,1,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,4,2017,July,28,15,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,220,1,2,Check-Out,2017-07-20,Summer,2017-07-15T07:00Z +Keep,25,2017,August,33,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,1,A,A,0,No Deposit , 240, NULL,0,Transient-Party,244,0,2,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,5,2017,July,29,20,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,222,0,1,Check-Out,2017-07-21,Summer,2017-07-20T07:00Z +Keep,235,2017,July,27,7,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-21,Summer,2017-07-07T07:00Z +Keep,131,2017,July,29,17,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195,0,1,Check-Out,2017-07-21,Summer,2017-07-17T07:00Z +Keep,108,2017,July,28,10,3,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,153.5,0,0,Check-Out,2017-07-21,Summer,2017-07-10T07:00Z +Keep,180,2017,July,29,17,1,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,303,0,1,Check-Out,2017-07-21,Summer,2017-07-17T07:00Z +Keep,143,2017,July,29,16,2,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,299.2,1,0,Check-Out,2017-07-21,Summer,2017-07-16T07:00Z +Keep,2,2017,July,29,17,1,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,287,1,0,Check-Out,2017-07-21,Summer,2017-07-17T07:00Z +Keep,9,2017,July,28,14,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,237.71,0,1,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,87,2017,July,28,13,2,6,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,223,0,1,Check-Out,2017-07-21,Summer,2017-07-13T07:00Z +Keep,197,2017,July,28,15,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,164.63,1,2,Check-Out,2017-07-21,Summer,2017-07-15T07:00Z +Keep,21,2017,July,28,14,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,212.71,0,0,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,145,2017,July,29,18,0,3,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,207.8,1,1,Check-Out,2017-07-21,Summer,2017-07-18T07:00Z +Keep,141,2017,July,28,10,3,8,2,2,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,247.09,0,2,Check-Out,2017-07-21,Summer,2017-07-10T07:00Z +Keep,1,2017,July,29,20,0,1,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,228,1,1,Check-Out,2017-07-21,Summer,2017-07-20T07:00Z +Keep,163,2017,July,29,18,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,147.84,0,0,Check-Out,2017-07-21,Summer,2017-07-18T07:00Z +Keep,119,2017,July,29,17,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,138.8,0,1,Check-Out,2017-07-21,Summer,2017-07-17T07:00Z +Keep,152,2017,July,29,16,2,3,2,1,0,FB,LUX,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,296.5,0,0,Check-Out,2017-07-21,Summer,2017-07-16T07:00Z +Keep,187,2017,July,29,16,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,194.75,0,1,Check-Out,2017-07-21,Summer,2017-07-16T07:00Z +Keep,6,2017,July,28,14,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,210.86,0,1,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,6,2017,July,28,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,239.66,0,1,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,336,2017,July,29,16,2,3,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,281,1,1,Check-Out,2017-07-21,Summer,2017-07-16T07:00Z +Keep,152,2017,July,29,16,2,3,2,2,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,188.65,0,0,Check-Out,2017-07-21,Summer,2017-07-16T07:00Z +Keep,69,2017,July,28,14,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,160,1,0,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,68,2017,July,28,15,2,4,2,0,0,HB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,205.6,0,2,Check-Out,2017-07-21,Summer,2017-07-15T07:00Z +Keep,192,2017,July,29,17,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,110.18,0,0,Check-Out,2017-07-21,Summer,2017-07-17T07:00Z +Keep,1,2017,July,29,19,0,2,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient-Party,174,0,1,Check-Out,2017-07-21,Summer,2017-07-19T07:00Z +Keep,113,2017,July,28,14,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,171.69,1,0,Check-Out,2017-07-21,Summer,2017-07-14T07:00Z +Keep,112,2017,July,28,15,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,104.85,0,2,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,115,2017,July,28,15,2,5,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,104.85,0,0,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,127,2017,July,29,18,0,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,1,Check-Out,2017-07-22,Summer,2017-07-18T07:00Z +Keep,160,2017,July,29,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,134.85,0,1,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,178,2017,July,28,14,2,6,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,167.85,0,1,Check-Out,2017-07-22,Summer,2017-07-14T07:00Z +Keep,178,2017,July,28,14,2,6,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,167.85,1,1,Check-Out,2017-07-22,Summer,2017-07-14T07:00Z +Keep,72,2017,July,29,18,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2017-07-22,Summer,2017-07-18T07:00Z +Keep,121,2017,July,28,15,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Group,198,0,3,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,15,2017,July,29,17,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,204,0,1,Check-Out,2017-07-22,Summer,2017-07-17T07:00Z +Keep,6,2017,July,29,16,2,4,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,176.16,0,1,Check-Out,2017-07-22,Summer,2017-07-16T07:00Z +Keep,1,2017,July,29,18,0,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,233,0,1,Check-Out,2017-07-22,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,20,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,183,1,0,Check-Out,2017-07-22,Summer,2017-07-20T07:00Z +Keep,99,2017,July,28,14,2,6,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,205.25,0,1,Check-Out,2017-07-22,Summer,2017-07-14T07:00Z +Keep,77,2017,July,29,19,0,3,3,1,0,BB,ISL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,329,1,0,Check-Out,2017-07-22,Summer,2017-07-19T07:00Z +Keep,5,2017,July,29,19,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,238.5,1,2,Check-Out,2017-07-22,Summer,2017-07-19T07:00Z +Keep,108,2017,July,28,15,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,204,1,2,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,108,2017,July,28,15,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,239,0,2,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,183,2017,July,29,18,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,169.54,0,2,Check-Out,2017-07-22,Summer,2017-07-18T07:00Z +Keep,147,2017,July,28,12,2,8,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,143.05,0,3,Check-Out,2017-07-22,Summer,2017-07-12T07:00Z +Keep,318,2017,July,28,15,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,152.1,0,0,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,44,2017,July,29,20,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,144.4,0,1,Check-Out,2017-07-22,Summer,2017-07-20T07:00Z +Keep,133,2017,July,28,13,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,135.56,0,2,Check-Out,2017-07-22,Summer,2017-07-13T07:00Z +Keep,196,2017,July,29,19,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.5,0,2,Check-Out,2017-07-22,Summer,2017-07-19T07:00Z +Keep,194,2017,July,29,17,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,151.5,0,1,Check-Out,2017-07-22,Summer,2017-07-17T07:00Z +Keep,268,2017,July,28,15,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,192.68,0,3,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,268,2017,July,28,15,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,192.68,0,3,Check-Out,2017-07-22,Summer,2017-07-15T07:00Z +Keep,169,2017,July,29,19,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient-Party,160,0,2,Check-Out,2017-07-23,Summer,2017-07-19T07:00Z +Keep,169,2017,July,29,19,0,4,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,160,0,2,Check-Out,2017-07-23,Summer,2017-07-19T07:00Z +Keep,111,2017,July,29,17,1,5,2,0,0,BB,SWE,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,137,0,0,Check-Out,2017-07-23,Summer,2017-07-17T07:00Z +Keep,17,2017,July,29,21,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,156.6,0,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,6,2017,July,29,21,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,142.21,0,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,153,2017,July,29,18,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,207,0,3,Check-Out,2017-07-23,Summer,2017-07-18T07:00Z +Keep,117,2017,July,29,19,0,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,187,0,1,Check-Out,2017-07-23,Summer,2017-07-19T07:00Z +Keep,114,2017,July,29,16,2,5,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,182.86,0,1,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,3,2017,July,29,21,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,213,1,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,53,2017,July,29,16,2,5,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,157,0,2,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,50,2017,July,29,20,0,3,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,196.93,0,0,Check-Out,2017-07-23,Summer,2017-07-20T07:00Z +Keep,145,2017,July,28,13,2,8,2,1,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,256,0,2,Check-Out,2017-07-23,Summer,2017-07-13T07:00Z +Keep,188,2017,July,29,16,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,204.17,1,3,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,193,2017,July,29,20,0,3,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,144.75,0,2,Check-Out,2017-07-23,Summer,2017-07-20T07:00Z +Keep,1,2017,July,29,22,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,219,1,1,Check-Out,2017-07-23,Summer,2017-07-22T07:00Z +Keep,193,2017,July,29,20,0,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,233.6,0,2,Check-Out,2017-07-23,Summer,2017-07-20T07:00Z +Keep,2,2017,July,29,17,1,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209.5,0,1,Check-Out,2017-07-23,Summer,2017-07-17T07:00Z +Keep,9,2017,July,29,21,0,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,222,0,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,111,2017,July,28,11,2,10,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,202.5,0,0,Check-Out,2017-07-23,Summer,2017-07-11T07:00Z +Keep,39,2017,July,29,18,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-07-23,Summer,2017-07-18T07:00Z +Keep,6,2017,July,29,22,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2017-07-23,Summer,2017-07-22T07:00Z +Keep,4,2017,July,30,23,1,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,159,0,1,Check-Out,2017-07-24,Summer,2017-07-23T07:00Z +Keep,6,2017,July,29,22,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,209,0,1,Check-Out,2017-07-23,Summer,2017-07-22T07:00Z +Keep,20,2017,July,29,19,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,235,0,1,Check-Out,2017-07-23,Summer,2017-07-19T07:00Z +Keep,69,2017,July,29,18,0,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,200,0,2,Check-Out,2017-07-23,Summer,2017-07-18T07:00Z +Keep,69,2017,July,29,18,0,5,1,1,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,246,1,2,Check-Out,2017-07-23,Summer,2017-07-18T07:00Z +Keep,0,2017,July,29,21,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,160,0,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,9,2017,July,29,21,0,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,256.5,1,0,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,109,2017,July,29,16,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 243, NULL,0,Transient,106.85,0,0,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,120,2017,July,28,14,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-23,Summer,2017-07-14T07:00Z +Keep,0,2017,July,29,21,0,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,160,0,1,Check-Out,2017-07-23,Summer,2017-07-21T07:00Z +Keep,178,2017,July,29,16,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,180.8,0,3,Check-Out,2017-07-23,Summer,2017-07-16T07:00Z +Keep,207,2017,July,28,15,2,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,209.85,0,3,Check-Out,2017-07-23,Summer,2017-07-15T07:00Z +Keep,2,2017,July,29,19,0,4,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,156.1,0,1,Check-Out,2017-07-23,Summer,2017-07-19T07:00Z +Keep,150,2017,July,28,14,3,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225.5,0,1,Check-Out,2017-07-24,Summer,2017-07-14T07:00Z +Keep,152,2017,July,28,14,3,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,191.5,0,1,Check-Out,2017-07-24,Summer,2017-07-14T07:00Z +Keep,116,2017,July,28,14,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,151.3,0,0,Check-Out,2017-07-24,Summer,2017-07-14T07:00Z +Keep,116,2017,July,28,14,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,149.5,0,0,Check-Out,2017-07-24,Summer,2017-07-14T07:00Z +Keep,104,2017,July,29,18,1,5,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,216.89,0,2,Check-Out,2017-07-24,Summer,2017-07-18T07:00Z +Keep,61,2017,July,28,10,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 531, NULL,0,Transient,171.53,0,2,Check-Out,2017-07-24,Summer,2017-07-10T07:00Z +Keep,99,2017,July,28,15,3,6,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,231.22,0,1,Check-Out,2017-07-24,Summer,2017-07-15T07:00Z +Keep,115,2017,July,29,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,111,2017,July,29,17,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,131.07,0,2,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,17,2017,July,28,15,3,6,3,0,0,BB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,255.84,1,2,Check-Out,2017-07-24,Summer,2017-07-15T07:00Z +Keep,255,2017,July,29,17,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,130.05,0,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,91,2017,July,29,20,1,3,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,377,1,0,Check-Out,2017-07-24,Summer,2017-07-20T07:00Z +Keep,182,2017,July,29,17,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 240, NULL,0,Transient,152.15,0,1,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,207,2017,July,29,18,1,5,2,0,0,FB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,155.7,0,0,Check-Out,2017-07-24,Summer,2017-07-18T07:00Z +Keep,141,2017,July,28,15,3,6,2,1,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,162.56,0,0,Check-Out,2017-07-24,Summer,2017-07-15T07:00Z +Keep,179,2017,July,29,18,1,5,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,117.43,0,0,Check-Out,2017-07-24,Summer,2017-07-18T07:00Z +Keep,1,2017,July,30,23,1,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,170,0,0,Check-Out,2017-07-24,Summer,2017-07-23T07:00Z +Keep,8,2017,July,29,21,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,D,1,No Deposit , 240, NULL,0,Transient,220.4,1,2,Check-Out,2017-07-24,Summer,2017-07-21T07:00Z +Keep,172,2017,July,29,20,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2017-07-24,Summer,2017-07-20T07:00Z +Keep,136,2017,July,29,21,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,1,Check-Out,2017-07-24,Summer,2017-07-21T07:00Z +Keep,102,2017,July,29,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 526, NULL,0,Transient,150.48,0,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,14,2017,July,29,17,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,163,0,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,0,2017,July,29,22,1,1,2,0,0,BB,ITA,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,170,0,0,Check-Out,2017-07-24,Summer,2017-07-22T07:00Z +Keep,130,2017,July,29,20,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,170,0,1,Check-Out,2017-07-24,Summer,2017-07-20T07:00Z +Keep,14,2017,July,29,17,2,5,3,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,298.71,1,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,52,2017,July,30,24,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,202,0,2,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,1,2017,July,29,22,1,1,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 526, NULL,0,Transient,165.44,0,0,Check-Out,2017-07-24,Summer,2017-07-22T07:00Z +Keep,47,2017,July,29,21,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,210,0,1,Check-Out,2017-07-24,Summer,2017-07-21T07:00Z +Keep,155,2017,July,29,17,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,217.86,0,0,Check-Out,2017-07-24,Summer,2017-07-17T07:00Z +Keep,117,2017,July,29,20,1,3,2,1,1,FB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,247,0,3,Check-Out,2017-07-24,Summer,2017-07-20T07:00Z +Keep,167,2017,July,29,19,2,4,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 143, NULL,0,Transient,134.85,0,0,Check-Out,2017-07-25,Summer,2017-07-19T07:00Z +Keep,8,2017,July,29,20,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,149.74,0,1,Check-Out,2017-07-25,Summer,2017-07-20T07:00Z +Keep,154,2017,July,29,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,132.85,0,0,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,189,2017,July,29,18,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,163.4,0,0,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,115,2017,July,29,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,213,2017,July,28,11,4,10,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,191.43,0,2,Check-Out,2017-07-25,Summer,2017-07-11T07:00Z +Keep,213,2017,July,28,11,4,10,2,0,0,BB,LTU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,189.43,0,2,Check-Out,2017-07-25,Summer,2017-07-11T07:00Z +Keep,119,2017,July,29,18,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,206.03,0,0,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,58,2017,July,29,19,2,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,220,0,1,Check-Out,2017-07-25,Summer,2017-07-19T07:00Z +Keep,13,2017,July,30,24,1,0,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,D,0,No Deposit , NULL, 20,0,Transient,135,0,0,Check-Out,2017-07-25,Summer,2017-07-24T07:00Z +Keep,0,2017,July,30,25,0,1,2,0,0,BB,ESP,Direct,Direct, 1,0,0,D,D,1,No Deposit , NULL, NULL,0,Transient,189,1,0,Check-Out,2017-07-26,Summer,2017-07-25T07:00Z +Keep,192,2017,July,30,23,2,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,155.52,0,2,Check-Out,2017-07-25,Summer,2017-07-23T07:00Z +Keep,192,2017,July,30,23,2,0,2,0,0,BB,BEL,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,167.52,1,2,Check-Out,2017-07-25,Summer,2017-07-23T07:00Z +Keep,172,2017,July,29,18,2,5,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,114.95,0,1,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,172,2017,July,29,21,2,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,156,0,0,Check-Out,2017-07-25,Summer,2017-07-21T07:00Z +Keep,19,2017,July,30,23,2,0,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,1,1,Check-Out,2017-07-25,Summer,2017-07-23T07:00Z +Keep,30,2017,July,29,21,2,2,2,2,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,311.25,0,1,Check-Out,2017-07-25,Summer,2017-07-21T07:00Z +Keep,150,2017,July,29,18,2,5,3,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,172,0,2,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,161,2017,July,29,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.21,0,1,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,30,2017,July,29,21,2,2,3,1,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,296.75,0,1,Check-Out,2017-07-25,Summer,2017-07-21T07:00Z +Keep,161,2017,July,29,20,2,3,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,161.56,1,0,Check-Out,2017-07-25,Summer,2017-07-20T07:00Z +Keep,115,2017,July,29,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,187,2017,July,29,21,2,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,153.68,1,0,Check-Out,2017-07-25,Summer,2017-07-21T07:00Z +Keep,22,2017,July,29,20,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,219,0,3,Check-Out,2017-07-25,Summer,2017-07-20T07:00Z +Keep,22,2017,July,29,20,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient-Party,299,0,3,Check-Out,2017-07-25,Summer,2017-07-20T07:00Z +Keep,11,2017,July,29,22,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,158,0,1,Check-Out,2017-07-25,Summer,2017-07-22T07:00Z +Keep,9,2017,July,29,21,2,2,2,2,0,HB,CN,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,359.5,1,0,Check-Out,2017-07-25,Summer,2017-07-21T07:00Z +Keep,18,2017,July,30,23,2,0,2,1,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,205.1,0,1,Check-Out,2017-07-25,Summer,2017-07-23T07:00Z +Keep,20,2017,July,28,13,4,8,2,0,0,SC,GBR,Complementary,Direct, 0,0,0,F,I,7,No Deposit , NULL, NULL,0,Transient,0,0,1,Check-Out,2017-07-25,Summer,2017-07-13T07:00Z +Keep,62,2017,July,29,18,2,5,2,0,0,SC,ZAF,Complementary,TA/TO, 0,0,0,D,I,2,No Deposit , 240, NULL,0,Transient,9.14,0,1,Check-Out,2017-07-25,Summer,2017-07-18T07:00Z +Keep,189,2017,July,29,17,3,6,2,1,1,HB,CHE,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,218.4,0,1,Check-Out,2017-07-26,Summer,2017-07-17T07:00Z +Keep,325,2017,July,29,16,4,6,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,171.94,0,2,Check-Out,2017-07-26,Summer,2017-07-16T07:00Z +Keep,323,2017,July,30,24,1,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 240, NULL,0,Transient,152.38,0,2,Check-Out,2017-07-26,Summer,2017-07-24T07:00Z +Keep,0,2017,July,30,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,G,0,No Deposit , NULL, NULL,0,Transient,170,0,0,Check-Out,2017-07-26,Summer,2017-07-25T07:00Z +Keep,220,2017,July,27,4,6,16,3,0,0,BB,BEL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,142.97,0,0,Check-Out,2017-07-26,Summer,2017-07-04T07:00Z +Keep,125,2017,July,29,19,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,168.14,0,0,Check-Out,2017-07-26,Summer,2017-07-19T07:00Z +Keep,166,2017,July,29,16,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,0,2,Check-Out,2017-07-26,Summer,2017-07-16T07:00Z +Keep,94,2017,July,30,24,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,G,0,No Deposit , 240, NULL,0,Transient,239,0,1,Check-Out,2017-07-26,Summer,2017-07-24T07:00Z +Keep,5,2017,July,29,21,2,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,221,1,1,Check-Out,2017-07-26,Summer,2017-07-21T07:00Z +Keep,325,2017,July,29,16,4,6,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,171.94,0,2,Check-Out,2017-07-26,Summer,2017-07-16T07:00Z +Keep,23,2017,July,29,21,2,3,2,0,0,BB,ISL,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,211.12,1,1,Check-Out,2017-07-26,Summer,2017-07-21T07:00Z +Keep,72,2017,July,29,19,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,306,1,1,Check-Out,2017-07-26,Summer,2017-07-19T07:00Z +Keep,49,2017,July,30,23,2,1,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,200,0,0,Check-Out,2017-07-26,Summer,2017-07-23T07:00Z +Keep,108,2017,July,29,19,2,5,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,213.56,0,1,Check-Out,2017-07-26,Summer,2017-07-19T07:00Z +Keep,215,2017,July,29,17,3,6,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,190.67,1,1,Check-Out,2017-07-26,Summer,2017-07-17T07:00Z +Keep,159,2017,July,29,16,4,6,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 75, NULL,0,Transient,132.05,0,1,Check-Out,2017-07-26,Summer,2017-07-16T07:00Z +Keep,128,2017,July,29,17,3,6,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168.89,0,1,Check-Out,2017-07-26,Summer,2017-07-17T07:00Z +Keep,144,2017,July,29,19,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,166.03,0,0,Check-Out,2017-07-26,Summer,2017-07-19T07:00Z +Keep,160,2017,July,29,20,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,115.2,0,0,Check-Out,2017-07-26,Summer,2017-07-20T07:00Z +Keep,142,2017,July,29,17,3,6,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,235,0,1,Check-Out,2017-07-26,Summer,2017-07-17T07:00Z +Keep,295,2017,July,29,18,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,174.8,0,1,Check-Out,2017-07-27,Summer,2017-07-18T07:00Z +Keep,349,2017,July,29,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,118.85,0,2,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,80,2017,July,29,22,2,3,2,0,0,HB,CN,Online travel agent,TA/TO, 0,0,0,F,F,2,No Deposit , 241, NULL,0,Transient,253.6,0,1,Check-Out,2017-07-27,Summer,2017-07-22T07:00Z +Keep,16,2017,July,29,19,2,6,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231.13,1,1,Check-Out,2017-07-27,Summer,2017-07-19T07:00Z +Keep,145,2017,July,29,20,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,198,0,1,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,80,2017,July,29,20,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,237,0,2,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,359,2017,July,29,20,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 40, NULL,0,Transient,224.39,0,2,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,154,2017,July,28,13,4,10,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,119.41,0,0,Check-Out,2017-07-27,Summer,2017-07-13T07:00Z +Keep,116,2017,July,30,23,2,2,3,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,200.7,0,1,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,275,2017,July,29,20,2,5,2,2,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,244,0,1,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,125,2017,July,28,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.85,0,0,Check-Out,2017-07-27,Summer,2017-07-13T07:00Z +Keep,125,2017,July,28,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-27,Summer,2017-07-13T07:00Z +Keep,210,2017,July,30,24,1,2,2,1,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,218.75,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,210,2017,July,30,24,1,2,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,183.75,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,210,2017,July,30,24,1,2,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,183.75,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,210,2017,July,30,24,1,2,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,183.75,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,210,2017,July,30,24,1,2,2,0,0,HB,VNM,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,183.75,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,180,2017,July,29,17,3,7,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,242.32,0,0,Check-Out,2017-07-27,Summer,2017-07-17T07:00Z +Keep,6,2017,July,30,25,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,231,0,1,Check-Out,2017-07-27,Summer,2017-07-25T07:00Z +Keep,2,2017,July,30,24,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,1,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,164,2017,July,29,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,181,2017,July,29,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,149.12,1,2,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,183,2017,July,29,22,2,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , 250, NULL,0,Transient,185.12,1,1,Check-Out,2017-07-27,Summer,2017-07-22T07:00Z +Keep,181,2017,July,29,22,2,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154.95,0,2,Check-Out,2017-07-27,Summer,2017-07-22T07:00Z +Keep,180,2017,July,30,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,106.85,0,0,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,221,2017,July,30,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,1,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,200,2017,July,30,23,2,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,188,1,1,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,80,2017,July,29,20,2,5,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,257,0,2,Check-Out,2017-07-27,Summer,2017-07-20T07:00Z +Keep,4,2017,July,30,23,2,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,193,0,3,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,180,2017,July,30,23,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,0,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,26,2017,July,29,22,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,219,0,1,Check-Out,2017-07-27,Summer,2017-07-22T07:00Z +Keep,23,2017,July,30,23,2,2,2,1,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,258,0,0,Check-Out,2017-07-27,Summer,2017-07-23T07:00Z +Keep,0,2017,July,30,27,0,1,2,0,0,BB,SWE,Online travel agent,TA/TO, 1,0,0,A,A,1,No Deposit , 241, NULL,0,Transient,140,0,1,Check-Out,2017-07-28,Summer,2017-07-27T07:00Z +Keep,189,2017,July,30,24,1,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,203.6,1,2,Check-Out,2017-07-27,Summer,2017-07-24T07:00Z +Keep,216,2017,July,30,24,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,194,0,1,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,155,2017,July,29,21,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,123,0,0,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,115,2017,July,29,16,4,8,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,123.5,0,1,Check-Out,2017-07-28,Summer,2017-07-16T07:00Z +Keep,26,2017,July,30,24,1,3,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,2,2017,July,30,27,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-07-28,Summer,2017-07-27T07:00Z +Keep,98,2017,July,29,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,189,2017,July,29,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,133.4,0,2,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,189,2017,July,29,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,131.4,0,2,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,108,2017,July,28,14,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,0,Check-Out,2017-07-28,Summer,2017-07-14T07:00Z +Keep,345,2017,July,29,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,132.85,0,0,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,332,2017,July,29,22,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154.38,0,2,Check-Out,2017-07-28,Summer,2017-07-22T07:00Z +Keep,226,2017,July,30,24,1,3,3,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,309,0,1,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,37,2017,July,29,22,2,4,2,1,0,HB,AND,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,354,1,0,Check-Out,2017-07-28,Summer,2017-07-22T07:00Z +Keep,194,2017,July,29,17,3,8,1,1,0,HB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,159.85,0,0,Check-Out,2017-07-28,Summer,2017-07-17T07:00Z +Keep,5,2017,July,30,25,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,159.35,0,1,Check-Out,2017-07-28,Summer,2017-07-25T07:00Z +Keep,59,2017,July,30,27,0,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,305,0,1,Check-Out,2017-07-28,Summer,2017-07-27T07:00Z +Keep,166,2017,July,29,21,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,212,0,2,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,26,2017,July,30,24,1,3,3,1,0,BB,EST,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,0,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,0,2017,July,30,27,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,184,0,0,Check-Out,2017-07-28,Summer,2017-07-27T07:00Z +Keep,179,2017,July,30,24,1,3,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 6, NULL,0,Transient,126.2,1,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,140,2017,July,30,26,0,2,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,200,0,2,Check-Out,2017-07-28,Summer,2017-07-26T07:00Z +Keep,305,2017,July,29,21,2,5,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 5, NULL,0,Transient,139.68,0,0,Check-Out,2017-07-28,Summer,2017-07-21T07:00Z +Keep,258,2017,July,30,24,1,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,194,2017,July,29,17,3,8,2,1,0,HB,CHE,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,189.85,0,0,Check-Out,2017-07-28,Summer,2017-07-17T07:00Z +Keep,8,2017,July,30,25,0,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,248.33,1,2,Check-Out,2017-07-28,Summer,2017-07-25T07:00Z +Keep,43,2017,July,30,24,1,3,2,0,0,BB,CN,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,242,0,0,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,0,2017,July,30,27,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,185,1,0,Check-Out,2017-07-28,Summer,2017-07-27T07:00Z +Keep,121,2017,July,30,24,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,174,0,1,Check-Out,2017-07-28,Summer,2017-07-24T07:00Z +Keep,296,2017,July,30,24,1,4,2,0,0,HB,CHE,Direct,Direct, 0,0,0,A,A,7,No Deposit , 250, NULL,0,Transient,169.77,1,2,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,23,2017,July,29,22,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,162.94,0,1,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,162,2017,July,29,22,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,201,1,0,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,219,2017,July,30,24,1,4,2,1,0,Undefined,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,249.38,1,0,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,117,2017,July,29,22,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,274.6,1,0,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,163,2017,July,30,24,1,4,2,2,0,BB,POL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,214,0,1,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,33,2017,July,30,24,1,4,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,210,1,2,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,85,2017,July,30,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,1,Check-Out,2017-07-29,Summer,2017-07-23T07:00Z +Keep,28,2017,July,30,27,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 15, NULL,0,Transient,194,1,0,Check-Out,2017-07-29,Summer,2017-07-27T07:00Z +Keep,112,2017,July,30,23,2,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2017-07-29,Summer,2017-07-23T07:00Z +Keep,195,2017,July,30,23,2,4,2,1,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,153.38,0,0,Check-Out,2017-07-29,Summer,2017-07-23T07:00Z +Keep,140,2017,July,30,25,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,172,1,1,Check-Out,2017-07-29,Summer,2017-07-25T07:00Z +Keep,130,2017,July,29,22,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,252.3,1,1,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,163,2017,July,30,24,1,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,262,0,2,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,18,2017,July,30,26,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,164,0,1,Check-Out,2017-07-29,Summer,2017-07-26T07:00Z +Keep,4,2017,July,30,24,1,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,242,0,2,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,149,2017,July,30,25,8,21,2,0,0,SC,FRA,Online travel agent,TA/TO, 0,0,0,E,I,13,No Deposit , 240, NULL,0,Transient,0,0,0,Check-Out,2017-08-23,Summer,2017-07-25T07:00Z +Keep,176,2017,July,29,22,2,5,3,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 196, NULL,0,Transient,145.5,0,0,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,126,2017,July,29,22,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,1,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,149,2017,July,30,25,0,4,2,0,0,HB,POL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,245,0,1,Check-Out,2017-07-29,Summer,2017-07-25T07:00Z +Keep,131,2017,July,29,22,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 479, NULL,0,Transient,148.5,0,0,Check-Out,2017-07-29,Summer,2017-07-22T07:00Z +Keep,163,2017,July,30,24,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,262,1,1,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,154,2017,July,30,24,1,4,1,0,0,HB,CHE,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,171,0,1,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,115,2017,July,29,18,2,9,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,217.82,0,1,Check-Out,2017-07-29,Summer,2017-07-18T07:00Z +Keep,115,2017,July,29,18,2,9,2,0,0,BB,HUN,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient-Party,212.73,0,1,Check-Out,2017-07-29,Summer,2017-07-18T07:00Z +Keep,15,2017,July,30,23,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,253,0,0,Check-Out,2017-07-29,Summer,2017-07-23T07:00Z +Keep,51,2017,July,30,28,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,178,0,1,Check-Out,2017-07-29,Summer,2017-07-28T07:00Z +Keep,345,2017,July,29,21,2,6,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,2,Check-Out,2017-07-29,Summer,2017-07-21T07:00Z +Keep,142,2017,July,29,21,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213,0,1,Check-Out,2017-07-29,Summer,2017-07-21T07:00Z +Keep,0,2017,July,30,27,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,215,0,1,Check-Out,2017-07-29,Summer,2017-07-27T07:00Z +Keep,0,2017,July,30,29,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 1,0,0,E,E,0,Non Refund , NULL, NULL,0,Transient-Party,245,0,1,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,0,2017,July,30,27,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient-Party,175,0,1,Check-Out,2017-07-29,Summer,2017-07-27T07:00Z +Keep,7,2017,July,30,24,1,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,2,No Deposit , NULL, NULL,0,Transient,341,0,0,Check-Out,2017-07-29,Summer,2017-07-24T07:00Z +Keep,0,2017,July,30,29,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-07-29,Summer,2017-07-29T07:00Z +Keep,0,2017,July,30,27,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,175,0,1,Check-Out,2017-07-29,Summer,2017-07-27T07:00Z +Keep,177,2017,July,30,25,0,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient-Party,189,0,1,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,177,2017,July,30,25,0,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient-Party,189,1,1,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,167,2017,July,29,22,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,158.35,0,0,Check-Out,2017-07-30,Summer,2017-07-22T07:00Z +Keep,167,2017,July,29,22,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,154.8,0,0,Check-Out,2017-07-30,Summer,2017-07-22T07:00Z +Keep,10,2017,July,29,17,3,10,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,244.31,0,1,Check-Out,2017-07-30,Summer,2017-07-17T07:00Z +Keep,167,2017,July,29,22,2,6,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,154.8,0,0,Check-Out,2017-07-30,Summer,2017-07-22T07:00Z +Keep,27,2017,July,30,26,0,4,2,1,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,207.59,1,1,Check-Out,2017-07-30,Summer,2017-07-26T07:00Z +Keep,48,2017,July,30,26,0,4,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,319,1,1,Check-Out,2017-07-30,Summer,2017-07-26T07:00Z +Keep,27,2017,July,30,24,1,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,293.5,1,0,Check-Out,2017-07-30,Summer,2017-07-24T07:00Z +Keep,188,2017,July,30,23,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,155.75,0,1,Check-Out,2017-07-30,Summer,2017-07-23T07:00Z +Keep,47,2017,July,30,27,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,245,0,3,Check-Out,2017-07-30,Summer,2017-07-27T07:00Z +Keep,143,2017,July,30,24,1,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 181, NULL,0,Transient,156,0,0,Check-Out,2017-07-30,Summer,2017-07-24T07:00Z +Keep,160,2017,July,30,25,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,222,0,1,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,165,2017,July,29,22,2,6,2,2,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,200,0,1,Check-Out,2017-07-30,Summer,2017-07-22T07:00Z +Keep,151,2017,July,30,23,2,5,3,0,0,HB,CZE,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 315, NULL,0,Transient,200.05,0,0,Check-Out,2017-07-30,Summer,2017-07-23T07:00Z +Keep,30,2017,July,30,27,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,245,0,2,Check-Out,2017-07-30,Summer,2017-07-27T07:00Z +Keep,150,2017,July,30,25,0,5,3,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,271,0,0,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,18,2017,July,30,28,0,2,2,0,0,BB,PRT,Complementary,Direct, 0,0,0,E,E,0,No Deposit , 187, NULL,0,Transient,14,0,0,Check-Out,2017-07-30,Summer,2017-07-28T07:00Z +Keep,27,2017,July,30,25,0,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,253.54,0,0,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,19,2017,July,30,29,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,184.5,0,3,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,19,2017,July,30,29,0,1,2,0,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,184.5,0,3,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,83,2017,July,30,23,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,229.25,0,0,Check-Out,2017-07-30,Summer,2017-07-23T07:00Z +Keep,149,2017,July,30,26,0,4,2,2,0,BB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,211.25,0,0,Check-Out,2017-07-30,Summer,2017-07-26T07:00Z +Keep,176,2017,July,30,23,2,5,3,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,2,No Deposit , 181, NULL,0,Transient,144,1,0,Check-Out,2017-07-30,Summer,2017-07-23T07:00Z +Keep,122,2017,July,30,23,2,5,2,2,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,360,0,1,Check-Out,2017-07-30,Summer,2017-07-23T07:00Z +Keep,19,2017,July,30,29,0,1,2,0,0,BB,JPN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,184.5,0,3,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,18,2017,July,30,29,0,1,2,2,0,BB,CHN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient-Party,255,0,2,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,11,2017,July,30,25,0,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,2,2017,July,30,25,0,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,268,1,1,Check-Out,2017-07-30,Summer,2017-07-25T07:00Z +Keep,4,2017,July,30,28,0,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224.5,0,1,Check-Out,2017-07-30,Summer,2017-07-28T07:00Z +Keep,17,2017,July,30,27,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,2,Check-Out,2017-07-30,Summer,2017-07-27T07:00Z +Keep,198,2017,July,29,20,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-07-30,Summer,2017-07-20T07:00Z +Keep,0,2017,July,30,29,0,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,205,0,1,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,0,2017,July,30,29,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,199,1,0,Check-Out,2017-07-30,Summer,2017-07-29T07:00Z +Keep,206,2017,July,31,30,4,6,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,190.7,1,2,Check-Out,2017-08-09,Summer,2017-07-30T07:00Z +Keep,0,2017,July,30,28,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 306, NULL,0,Transient,105.31,1,0,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,177,2017,July,30,28,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,116.53,0,0,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,30,2017,July,30,27,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,181.31,0,1,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,181,2017,July,30,27,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,129.2,0,0,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,181,2017,July,30,26,1,4,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,298,0,1,Check-Out,2017-07-31,Summer,2017-07-26T07:00Z +Keep,175,2017,July,30,23,3,5,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,1,Check-Out,2017-07-31,Summer,2017-07-23T07:00Z +Keep,14,2017,July,30,27,1,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Transient,116.5,0,0,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,46,2017,July,30,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,14,2017,July,30,27,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,165,0,0,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,18,2017,July,30,27,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,82,2017,July,30,23,3,5,2,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,294,0,2,Check-Out,2017-07-31,Summer,2017-07-23T07:00Z +Keep,82,2017,July,30,23,3,5,3,0,0,HB,GBR,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,344,0,2,Check-Out,2017-07-31,Summer,2017-07-23T07:00Z +Keep,50,2017,July,30,28,1,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,214,1,2,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,195,2017,July,30,27,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,152.38,1,0,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,156,2017,July,29,16,5,10,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 134, NULL,0,Transient,171,0,0,Check-Out,2017-07-31,Summer,2017-07-16T07:00Z +Keep,157,2017,July,30,28,1,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,280.33,0,4,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,28,2017,July,30,27,1,3,2,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,219,0,3,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,192,2017,July,29,22,3,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,227.6,1,2,Check-Out,2017-07-31,Summer,2017-07-22T07:00Z +Keep,114,2017,July,30,27,1,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,185,1,1,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,179,2017,July,30,24,2,5,2,2,0,HB,DEU,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,273,0,0,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,32,2017,July,30,27,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,251,0,2,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,18,2017,July,30,28,1,2,2,0,0,BB,BEL,Direct,Direct, 0,0,0,A,H,0,No Deposit , 250, NULL,0,Transient,214,1,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,52,2017,July,30,24,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,200,0,1,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,143,2017,July,30,28,1,2,2,0,0,BB,LUX,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,193.5,0,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,143,2017,July,30,28,1,2,2,0,0,BB,LUX,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,207.5,0,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,143,2017,July,30,28,1,2,2,0,0,BB,LUX,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,207.5,1,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,161,2017,July,30,28,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,141,0,0,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,161,2017,July,30,28,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 177, NULL,0,Transient,155,0,0,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,5,2017,July,30,25,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,228.33,0,0,Check-Out,2017-07-31,Summer,2017-07-25T07:00Z +Keep,0,2017,July,30,28,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,102.73,0,0,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,12,2017,July,30,27,1,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,239,0,2,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,72,2017,July,30,28,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 242, NULL,0,Transient,271,0,2,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,4,2017,July,30,23,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,203.38,0,2,Check-Out,2017-07-31,Summer,2017-07-23T07:00Z +Keep,25,2017,July,30,24,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,272,0,0,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,1,2017,July,30,28,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,172.67,1,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,8,2017,July,30,28,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,202.33,0,1,Check-Out,2017-07-31,Summer,2017-07-28T07:00Z +Keep,170,2017,July,29,16,5,10,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,163.8,0,0,Check-Out,2017-07-31,Summer,2017-07-16T07:00Z +Keep,195,2017,July,30,24,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 436, NULL,0,Transient,149.45,0,0,Check-Out,2017-07-31,Summer,2017-07-24T07:00Z +Keep,151,2017,July,30,29,1,1,2,2,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,220,0,3,Check-Out,2017-07-31,Summer,2017-07-29T07:00Z +Keep,0,2017,July,30,27,1,3,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient-Party,269,1,2,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,280,2017,July,30,27,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,140.94,0,0,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,0,2017,July,30,27,1,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,245,0,3,Check-Out,2017-07-31,Summer,2017-07-27T07:00Z +Keep,171,2017,July,30,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,182.86,0,1,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,171,2017,July,30,25,2,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,182.86,0,1,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,171,2017,July,30,25,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient-Party,182.86,0,1,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,6,2017,July,30,28,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,168.15,0,1,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,223,2017,July,30,27,2,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,112.7,0,0,Check-Out,2017-08-01,Summer,2017-07-27T07:00Z +Keep,62,2017,July,29,18,4,10,2,0,0,HB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 531, NULL,0,Transient,192.1,0,2,Check-Out,2017-08-01,Summer,2017-07-18T07:00Z +Keep,44,2017,July,30,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,281,2017,July,30,29,2,1,3,1,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,261,0,2,Check-Out,2017-08-01,Summer,2017-07-29T07:00Z +Keep,31,2017,July,30,26,2,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,171,0,1,Check-Out,2017-08-01,Summer,2017-07-26T07:00Z +Keep,16,2017,July,30,27,2,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,262,0,1,Check-Out,2017-08-01,Summer,2017-07-27T07:00Z +Keep,231,2017,July,30,25,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,187.25,0,0,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,45,2017,July,30,27,2,5,2,2,0,SC,ESP,Online travel agent,TA/TO, 0,0,0,C,I,1,No Deposit , 429, NULL,0,Transient,0,0,0,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,276,2017,July,30,24,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,138.38,0,2,Check-Out,2017-08-01,Summer,2017-07-24T07:00Z +Keep,318,2017,July,30,25,2,5,2,1,1,HB,PRT,Direct,Direct, 0,0,0,G,G,3,No Deposit , 250, NULL,0,Transient,222.26,1,2,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,231,2017,July,30,25,2,5,2,0,1,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,147.33,1,1,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,0,2017,July,31,31,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,169,0,0,Check-Out,2017-08-01,Summer,2017-07-31T07:00Z +Keep,276,2017,July,30,24,3,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,140.38,0,2,Check-Out,2017-08-01,Summer,2017-07-24T07:00Z +Keep,1,2017,July,31,31,1,0,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,155,0,0,Check-Out,2017-08-01,Summer,2017-07-31T07:00Z +Keep,266,2017,July,30,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient-Party,128.9,0,1,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,266,2017,July,30,28,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient-Party,128.9,0,1,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,19,2017,July,30,25,2,5,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,242.86,0,2,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,32,2017,July,30,28,2,2,2,2,0,BB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,300,0,1,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,115,2017,July,31,30,2,0,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2017-08-01,Summer,2017-07-30T07:00Z +Keep,25,2017,July,30,28,2,4,2,0,0,SC,IRL,Online travel agent,TA/TO, 0,0,0,A,I,1,No Deposit , 429, NULL,0,Transient,0,0,0,Check-Out,2017-08-03,Summer,2017-07-28T07:00Z +Keep,9,2017,July,30,29,2,1,2,0,0,FB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 526, NULL,0,Transient,208.08,0,0,Check-Out,2017-08-01,Summer,2017-07-29T07:00Z +Keep,199,2017,July,30,25,2,5,2,1,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,127.28,0,1,Check-Out,2017-08-01,Summer,2017-07-25T07:00Z +Keep,1,2017,July,30,28,2,2,2,1,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,171.9,0,1,Check-Out,2017-08-01,Summer,2017-07-28T07:00Z +Keep,17,2017,July,30,26,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,237,0,1,Check-Out,2017-08-01,Summer,2017-07-26T07:00Z +Keep,17,2017,July,30,26,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,237,0,1,Check-Out,2017-08-01,Summer,2017-07-26T07:00Z +Keep,335,2017,July,30,24,3,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,1,Check-Out,2017-08-02,Summer,2017-07-24T07:00Z +Keep,335,2017,July,30,24,3,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,1,Check-Out,2017-08-02,Summer,2017-07-24T07:00Z +Keep,124,2017,July,30,23,4,6,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,158.85,0,2,Check-Out,2017-08-02,Summer,2017-07-23T07:00Z +Keep,124,2017,July,30,23,4,6,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,158.85,0,2,Check-Out,2017-08-02,Summer,2017-07-23T07:00Z +Keep,124,2017,July,30,23,4,6,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,158.85,0,2,Check-Out,2017-08-02,Summer,2017-07-23T07:00Z +Keep,4,2017,August,31,1,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 94,0,Transient,135,0,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,24,2017,July,30,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,2,Check-Out,2017-08-02,Summer,2017-07-29T07:00Z +Keep,281,2017,July,31,30,2,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,170.24,0,1,Check-Out,2017-08-02,Summer,2017-07-30T07:00Z +Keep,176,2017,July,30,26,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,152.1,0,0,Check-Out,2017-08-02,Summer,2017-07-26T07:00Z +Keep,139,2017,July,30,29,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,234,1,2,Check-Out,2017-08-02,Summer,2017-07-29T07:00Z +Keep,120,2017,August,31,1,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,167.2,0,1,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,52,2017,July,31,31,1,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 241, NULL,0,Transient,235.6,0,1,Check-Out,2017-08-02,Summer,2017-07-31T07:00Z +Keep,58,2017,July,30,28,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,242,0,2,Check-Out,2017-08-02,Summer,2017-07-28T07:00Z +Keep,58,2017,July,30,28,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,242,0,2,Check-Out,2017-08-02,Summer,2017-07-28T07:00Z +Keep,125,2017,August,31,1,0,1,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,224.8,1,1,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,126,2017,August,31,1,0,1,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,176.8,0,1,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,197,2017,July,30,26,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,131.85,0,1,Check-Out,2017-08-02,Summer,2017-07-26T07:00Z +Keep,0,2017,July,30,29,2,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,225,0,1,Check-Out,2017-08-02,Summer,2017-07-29T07:00Z +Keep,7,2017,August,31,1,0,1,1,0,0,BB,PRT,Direct,Direct, 0,0,0,D,I,0,No Deposit , NULL, NULL,0,Transient,212.8,0,0,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,22,2017,July,31,31,1,1,3,0,0,BB,FRA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,324,0,2,Check-Out,2017-08-02,Summer,2017-07-31T07:00Z +Keep,178,2017,July,30,26,2,5,2,0,1,BB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,178.2,0,2,Check-Out,2017-08-02,Summer,2017-07-26T07:00Z +Keep,23,2017,July,30,29,2,2,3,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,306,1,3,Check-Out,2017-08-02,Summer,2017-07-29T07:00Z +Keep,27,2017,August,31,2,0,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,326,1,3,Check-Out,2017-08-05,Summer,2017-08-02T07:00Z +Keep,51,2017,August,31,1,0,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,319,1,1,Check-Out,2017-08-02,Summer,2017-08-01T07:00Z +Keep,201,2017,July,29,20,4,10,2,0,1,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,112.7,0,2,Check-Out,2017-08-03,Summer,2017-07-20T07:00Z +Keep,197,2017,July,29,20,4,10,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 177, NULL,0,Transient,173.25,0,0,Check-Out,2017-08-03,Summer,2017-07-20T07:00Z +Keep,60,2017,July,30,29,2,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,270,0,1,Check-Out,2017-08-03,Summer,2017-07-29T07:00Z +Keep,1,2017,August,31,2,0,1,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 146, NULL,0,Transient,165.75,0,0,Check-Out,2017-08-03,Summer,2017-08-02T07:00Z +Keep,62,2017,August,31,2,0,1,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,230,0,2,Check-Out,2017-08-03,Summer,2017-08-02T07:00Z +Keep,175,2017,August,31,3,4,10,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,258.29,0,2,Check-Out,2017-08-17,Summer,2017-08-03T07:00Z +Keep,175,2017,July,30,27,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,180,0,3,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,108,2017,July,30,29,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,260.6,0,2,Check-Out,2017-08-03,Summer,2017-07-29T07:00Z +Keep,256,2017,July,30,27,2,5,2,1,0,FB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient,241.81,1,0,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,43,2017,July,30,29,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 479, NULL,0,Group,165,0,0,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,25,2017,July,30,29,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,265.86,0,3,Check-Out,2017-08-03,Summer,2017-07-29T07:00Z +Keep,25,2017,July,30,29,2,3,1,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient-Party,273.56,0,3,Check-Out,2017-08-03,Summer,2017-07-29T07:00Z +Keep,256,2017,July,30,27,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,174.78,0,1,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,118,2017,July,30,24,3,7,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,183.16,0,1,Check-Out,2017-08-03,Summer,2017-07-24T07:00Z +Keep,166,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,185,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,106.85,0,0,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,124,2017,July,31,30,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,209,0,3,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,1,2017,July,30,27,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,216.29,0,1,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,185,2017,July,30,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,112.7,0,0,Check-Out,2017-08-03,Summer,2017-07-27T07:00Z +Keep,74,2017,July,31,31,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,216.93,0,1,Check-Out,2017-08-03,Summer,2017-07-31T07:00Z +Keep,181,2017,July,31,31,1,2,3,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,175.58,0,0,Check-Out,2017-08-03,Summer,2017-07-31T07:00Z +Keep,262,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,226,2017,July,29,20,4,10,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,156.6,0,1,Check-Out,2017-08-03,Summer,2017-07-20T07:00Z +Keep,188,2017,July,31,31,1,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,110.7,0,0,Check-Out,2017-08-03,Summer,2017-07-31T07:00Z +Keep,76,2017,August,31,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 242, NULL,0,Transient,304,0,3,Check-Out,2017-08-03,Summer,2017-08-01T07:00Z +Keep,76,2017,August,31,1,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,250,0,3,Check-Out,2017-08-03,Summer,2017-08-01T07:00Z +Keep,76,2017,August,31,1,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 242, NULL,0,Transient,250,0,2,Check-Out,2017-08-03,Summer,2017-08-01T07:00Z +Keep,287,2017,July,30,29,2,3,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,154.38,0,1,Check-Out,2017-08-03,Summer,2017-07-29T07:00Z +Keep,31,2017,July,31,31,1,2,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,3,Check-Out,2017-08-03,Summer,2017-07-31T07:00Z +Keep,229,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,0,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,229,2017,July,31,30,2,2,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 410, NULL,0,Transient,157.28,0,1,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,180,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,106.35,0,1,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,187,2017,July,31,30,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,0,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,124,2017,July,31,30,2,2,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,245,1,3,Check-Out,2017-08-03,Summer,2017-07-30T07:00Z +Keep,77,2017,July,30,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-04,Summer,2017-07-28T07:00Z +Keep,63,2017,July,30,24,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-04,Summer,2017-07-24T07:00Z +Keep,5,2017,August,31,3,0,1,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,F,H,1,No Deposit , 360, NULL,0,Transient-Party,230.35,0,0,Check-Out,2017-08-04,Summer,2017-08-03T07:00Z +Keep,5,2017,August,31,3,0,1,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,F,E,0,No Deposit , 360, NULL,0,Transient-Party,199.75,0,0,Check-Out,2017-08-04,Summer,2017-08-03T07:00Z +Keep,182,2017,July,31,31,1,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient,275.6,0,1,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,60,2017,July,31,31,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,257.75,0,2,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,5,2017,July,31,31,1,3,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,228.32,1,1,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,95,2017,July,31,30,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,F,F,5,No Deposit , 250, NULL,0,Transient,310.75,1,3,Check-Out,2017-08-04,Summer,2017-07-30T07:00Z +Keep,29,2017,August,31,2,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,205,0,1,Check-Out,2017-08-04,Summer,2017-08-02T07:00Z +Keep,321,2017,July,31,31,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168.62,1,1,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,178,2017,July,30,28,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,210,0,1,Check-Out,2017-08-04,Summer,2017-07-28T07:00Z +Keep,169,2017,July,30,29,2,4,2,2,0,HB,CHE,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,223.5,0,1,Check-Out,2017-08-04,Summer,2017-07-29T07:00Z +Keep,178,2017,July,30,24,3,8,3,0,0,HB,AZE,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,213.6,0,2,Check-Out,2017-08-04,Summer,2017-07-24T07:00Z +Keep,6,2017,August,31,2,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-04,Summer,2017-08-02T07:00Z +Keep,97,2017,August,31,1,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-04,Summer,2017-08-01T07:00Z +Keep,230,2017,August,31,1,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,178.75,0,3,Check-Out,2017-08-04,Summer,2017-08-01T07:00Z +Keep,87,2017,July,30,25,2,8,3,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,F,E,0,No Deposit , 241, NULL,0,Transient,239.3,0,2,Check-Out,2017-08-04,Summer,2017-07-25T07:00Z +Keep,178,2017,July,31,30,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , NULL, NULL,0,Transient,202.6,1,4,Check-Out,2017-08-04,Summer,2017-07-30T07:00Z +Keep,169,2017,July,31,31,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,3,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,114,2017,July,30,27,2,6,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,185,1,1,Check-Out,2017-08-04,Summer,2017-07-27T07:00Z +Keep,169,2017,July,31,31,1,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,230,0,3,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,40,2017,July,31,30,2,3,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,204,0,2,Check-Out,2017-08-04,Summer,2017-07-30T07:00Z +Keep,230,2017,August,31,1,0,3,2,0,1,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,155.75,0,2,Check-Out,2017-08-04,Summer,2017-08-01T07:00Z +Keep,48,2017,July,31,30,2,3,2,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,196.92,0,3,Check-Out,2017-08-04,Summer,2017-07-30T07:00Z +Keep,230,2017,August,31,1,0,3,2,0,1,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,2,Check-Out,2017-08-04,Summer,2017-08-01T07:00Z +Keep,0,2017,August,31,4,0,0,2,0,0,BB,USA,Direct,Direct, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-08-04,Summer,2017-08-04T07:00Z +Keep,193,2017,July,31,31,1,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,224,0,3,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,169,2017,July,31,31,1,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,212,0,4,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,188,2017,July,30,28,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,185.75,0,1,Check-Out,2017-08-04,Summer,2017-07-28T07:00Z +Keep,112,2017,July,31,30,2,3,2,0,0,BB,USA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,246,0,1,Check-Out,2017-08-04,Summer,2017-07-30T07:00Z +Keep,169,2017,July,31,31,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,212,0,3,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,207,2017,July,31,31,1,3,2,0,0,SC,PRT,Direct,Direct, 0,0,0,A,I,2,No Deposit , 250, NULL,0,Transient,2,1,0,Check-Out,2017-08-04,Summer,2017-07-31T07:00Z +Keep,183,2017,August,31,2,0,3,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,136.23,0,0,Check-Out,2017-08-05,Summer,2017-08-02T07:00Z +Keep,379,2017,July,30,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,1,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,186,2017,July,29,20,4,12,2,0,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,129.92,0,1,Check-Out,2017-08-05,Summer,2017-07-20T07:00Z +Keep,163,2017,July,31,31,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,229,1,1,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,64,2017,July,31,31,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,271,0,2,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,201,2017,July,31,31,1,4,2,0,0,HB,CHE,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,219.32,0,3,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,201,2017,July,31,31,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,215.95,0,4,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,9,2017,August,31,2,0,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,254.67,0,1,Check-Out,2017-08-05,Summer,2017-08-02T07:00Z +Keep,9,2017,August,31,1,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,193.4,0,1,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,117,2017,August,31,1,0,4,2,2,0,BB,USA,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,315.5,0,1,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,147,2017,July,31,30,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,234,0,2,Check-Out,2017-08-05,Summer,2017-07-30T07:00Z +Keep,49,2017,July,30,29,2,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,305,0,2,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,0,2017,August,31,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , 250, NULL,0,Transient,213.75,0,0,Check-Out,2017-08-05,Summer,2017-08-03T07:00Z +Keep,166,2017,July,31,30,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,194,0,2,Check-Out,2017-08-05,Summer,2017-07-30T07:00Z +Keep,0,2017,August,31,3,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,D,0,No Deposit , 250, NULL,0,Transient,213.75,0,0,Check-Out,2017-08-05,Summer,2017-08-03T07:00Z +Keep,53,2017,August,31,4,0,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,178,1,1,Check-Out,2017-08-05,Summer,2017-08-04T07:00Z +Keep,59,2017,August,31,1,0,4,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 242, NULL,0,Transient,331,0,2,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,188,2017,August,31,1,0,4,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,248.5,0,2,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,10,2017,August,31,1,0,4,2,0,1,BB,CZE,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,209.75,0,3,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,161,2017,August,31,1,0,4,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 134, NULL,0,Transient,238.75,0,0,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,131,2017,July,30,29,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,236.86,1,3,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,69,2017,August,31,1,0,4,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,378,0,2,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,34,2017,August,31,4,0,1,3,1,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,315,1,1,Check-Out,2017-08-05,Summer,2017-08-04T07:00Z +Keep,34,2017,July,31,31,1,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,230,1,1,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,29,2017,August,31,3,0,2,3,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 241, NULL,0,Transient,176.4,0,1,Check-Out,2017-08-05,Summer,2017-08-03T07:00Z +Keep,186,2017,July,30,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168.93,1,1,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,22,2017,July,31,31,1,4,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,225,0,2,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,173,2017,July,30,24,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,2,Check-Out,2017-08-05,Summer,2017-07-24T07:00Z +Keep,98,2017,July,30,29,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,144.5,0,1,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,62,2017,August,31,1,0,4,1,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,183.99,0,1,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,62,2017,August,31,1,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,185.99,0,1,Check-Out,2017-08-05,Summer,2017-08-01T07:00Z +Keep,246,2017,July,30,29,2,5,2,2,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,244,0,1,Check-Out,2017-08-05,Summer,2017-07-29T07:00Z +Keep,1,2017,July,31,31,1,4,1,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,339.4,1,2,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,187,2017,July,31,31,1,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,277,0,4,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,170,2017,July,31,31,1,4,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,195,0,2,Check-Out,2017-08-05,Summer,2017-07-31T07:00Z +Keep,55,2017,July,29,21,4,11,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,207.67,0,0,Check-Out,2017-08-05,Summer,2017-07-21T07:00Z +Keep,14,2017,August,32,6,1,0,2,2,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,249,0,2,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,1,2017,August,32,7,1,0,2,2,0,BB,MAR,Direct,TA/TO, 1,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,245,0,2,Check-Out,2017-08-08,Summer,2017-08-07T07:00Z +Keep,256,2017,July,31,30,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,170.6,1,0,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,300,2017,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,138.38,0,2,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,300,2017,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,138.38,0,2,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,300,2017,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,149.81,1,2,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,300,2017,July,31,30,2,5,1,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,149.81,1,2,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,201,2017,July,31,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,106.85,0,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,201,2017,July,31,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Transient,104.85,0,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,4,2017,August,31,4,0,2,2,1,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,204.9,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,173,2017,July,30,26,2,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,132.91,0,0,Check-Out,2017-08-06,Summer,2017-07-26T07:00Z +Keep,3,2017,August,31,4,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,300,2017,July,31,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,149.81,1,2,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,45,2017,August,31,3,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 242, NULL,0,Transient,263.33,0,2,Check-Out,2017-08-06,Summer,2017-08-03T07:00Z +Keep,209,2017,July,31,30,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,233.13,0,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,5,2017,August,31,4,0,2,2,0,0,BB,BRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,215,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,354,2017,July,30,23,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,2,No Deposit , NULL, NULL,0,Transient,140.64,0,1,Check-Out,2017-08-06,Summer,2017-07-23T07:00Z +Keep,231,2017,August,31,2,0,4,2,0,1,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,225,1,5,Check-Out,2017-08-06,Summer,2017-08-02T07:00Z +Keep,191,2017,July,30,26,2,9,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,158.16,0,2,Check-Out,2017-08-06,Summer,2017-07-26T07:00Z +Keep,10,2017,August,31,2,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,228.5,0,1,Check-Out,2017-08-06,Summer,2017-08-02T07:00Z +Keep,174,2017,August,31,1,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,193.1,0,1,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,174,2017,August,31,1,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,207.1,0,1,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,174,2017,August,31,1,0,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,193.1,0,1,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,182,2017,July,30,29,2,6,2,1,1,HB,ESP,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,204.03,0,1,Check-Out,2017-08-06,Summer,2017-07-29T07:00Z +Keep,174,2017,August,31,1,0,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,241.1,0,1,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,0,2017,August,31,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,245,0,0,Check-Out,2017-08-06,Summer,2017-08-05T07:00Z +Keep,0,2017,August,31,5,0,1,2,0,0,BB,FRA,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,259,1,0,Check-Out,2017-08-06,Summer,2017-08-05T07:00Z +Keep,40,2017,July,31,30,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,194,0,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,129,2017,August,31,2,0,4,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,262,0,2,Check-Out,2017-08-06,Summer,2017-08-02T07:00Z +Keep,40,2017,August,31,4,0,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,283.5,0,2,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,122,2017,August,31,4,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,253,1,4,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,26,2017,August,31,1,0,5,2,1,1,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,310,0,3,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,23,2017,July,31,31,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,219.58,1,2,Check-Out,2017-08-06,Summer,2017-07-31T07:00Z +Keep,41,2017,August,31,2,0,4,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,0,Check-Out,2017-08-06,Summer,2017-08-02T07:00Z +Keep,173,2017,August,31,1,0,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,3,No Deposit , 314, NULL,0,Transient,163.2,0,2,Check-Out,2017-08-06,Summer,2017-08-01T07:00Z +Keep,33,2017,July,31,30,2,5,2,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,154,0,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,1,2017,August,31,4,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,171,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,3,2017,August,31,4,0,2,3,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,196,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,3,2017,August,31,4,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,17,2017,July,30,29,2,6,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 531, NULL,0,Transient,183.65,0,1,Check-Out,2017-08-06,Summer,2017-07-29T07:00Z +Keep,3,2017,August,31,4,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,3,2017,August,31,4,0,2,3,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,196,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,3,2017,August,31,4,0,2,2,0,0,BB,PHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,164,0,1,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,161,2017,July,31,30,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,239,1,1,Check-Out,2017-08-06,Summer,2017-07-30T07:00Z +Keep,0,2017,August,31,4,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,225,0,0,Check-Out,2017-08-06,Summer,2017-08-04T07:00Z +Keep,0,2017,August,31,5,0,1,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,250,0,0,Check-Out,2017-08-06,Summer,2017-08-05T07:00Z +Keep,0,2017,August,32,6,1,0,2,0,0,BB,GBR,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,0,2017,August,31,5,1,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,244,1,2,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,206,2017,July,30,28,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,131.4,0,1,Check-Out,2017-08-07,Summer,2017-07-28T07:00Z +Keep,206,2017,July,30,28,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,133.4,0,1,Check-Out,2017-08-07,Summer,2017-07-28T07:00Z +Keep,24,2017,August,31,4,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,211,2017,August,31,5,1,1,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,183.52,1,2,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,153,2017,August,31,3,1,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,230,0,2,Check-Out,2017-08-07,Summer,2017-08-03T07:00Z +Keep,211,2017,August,31,5,1,1,1,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,189.42,0,1,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,211,2017,August,31,5,1,1,1,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,180.42,0,2,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,185,2017,July,31,30,3,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.5,0,2,Check-Out,2017-08-07,Summer,2017-07-30T07:00Z +Keep,100,2017,August,31,2,1,4,2,0,0,FB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,232,0,0,Check-Out,2017-08-07,Summer,2017-08-02T07:00Z +Keep,2,2017,August,31,5,1,1,1,0,0,HB,GBR,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,216,0,1,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,91,2017,August,31,4,1,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,230.67,0,1,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,0,2017,August,32,6,1,0,1,0,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,205,0,0,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,24,2017,August,31,2,1,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,275,0,2,Check-Out,2017-08-07,Summer,2017-08-02T07:00Z +Keep,12,2017,August,31,2,1,4,1,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient,238.26,0,0,Check-Out,2017-08-07,Summer,2017-08-02T07:00Z +Keep,26,2017,August,31,4,1,2,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,253.49,0,2,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,351,2017,August,31,4,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,154.38,1,2,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,16,2017,August,31,4,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,223.67,0,3,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,113,2017,July,31,31,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,273.86,0,3,Check-Out,2017-08-07,Summer,2017-07-31T07:00Z +Keep,11,2017,August,31,2,1,4,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,251.6,1,2,Check-Out,2017-08-07,Summer,2017-08-02T07:00Z +Keep,3,2017,August,32,6,1,0,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,151.99,0,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,25,2017,August,32,6,1,0,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,224.9,1,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,155,2017,July,31,31,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,268,0,3,Check-Out,2017-08-07,Summer,2017-07-31T07:00Z +Keep,26,2017,July,31,31,2,5,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,270.51,1,2,Check-Out,2017-08-07,Summer,2017-07-31T07:00Z +Keep,26,2017,July,31,31,2,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,259,0,1,Check-Out,2017-08-07,Summer,2017-07-31T07:00Z +Keep,0,2017,August,31,5,1,1,2,1,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,G,G,1,No Deposit , 171, NULL,0,Group,250,0,0,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,19,2017,August,31,5,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,260,0,4,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,182,2017,July,30,29,3,6,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,223.14,0,1,Check-Out,2017-08-07,Summer,2017-07-29T07:00Z +Keep,12,2017,August,31,1,1,5,2,0,0,BB,ISL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210.67,0,2,Check-Out,2017-08-07,Summer,2017-08-01T07:00Z +Keep,15,2017,August,31,4,1,2,2,0,0,BB,AUS,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,207.33,0,1,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,4,2017,August,32,7,1,0,2,0,0,BB,AUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Group,225,0,1,Check-Out,2017-08-08,Summer,2017-08-07T07:00Z +Keep,1,2017,August,31,5,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,299,0,0,Check-Out,2017-08-07,Summer,2017-08-05T07:00Z +Keep,4,2017,August,31,4,1,2,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,349.67,1,2,Check-Out,2017-08-07,Summer,2017-08-04T07:00Z +Keep,87,2017,August,31,3,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-07,Summer,2017-08-03T07:00Z +Keep,17,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,199,0,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,17,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,199,0,0,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,17,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 240, NULL,0,Transient,249,1,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,1,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,144.4,0,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,5,2017,August,32,6,1,0,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,372,1,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,1,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,144.4,0,1,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,2,2017,August,32,6,1,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,3,Check-Out,2017-08-07,Summer,2017-08-06T07:00Z +Keep,191,2017,July,31,30,4,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,160.08,1,0,Check-Out,2017-08-08,Summer,2017-07-30T07:00Z +Keep,43,2017,August,31,3,2,3,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,204.16,0,1,Check-Out,2017-08-08,Summer,2017-08-03T07:00Z +Keep,138,2017,August,31,2,2,4,3,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 242, NULL,0,Transient,259.33,0,2,Check-Out,2017-08-08,Summer,2017-08-02T07:00Z +Keep,150,2017,August,31,2,2,4,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,292,0,2,Check-Out,2017-08-08,Summer,2017-08-02T07:00Z +Keep,27,2017,August,32,6,2,0,2,0,0,BB,FRA,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,227,0,2,Check-Out,2017-08-08,Summer,2017-08-06T07:00Z +Keep,96,2017,July,30,25,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,1,Check-Out,2017-08-08,Summer,2017-07-25T07:00Z +Keep,3,2017,August,31,5,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,180.5,0,1,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,171,2017,August,31,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,132.85,0,0,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,22,2017,August,31,5,2,1,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 508, NULL,0,Transient-Party,188.6,0,1,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,22,2017,August,31,5,2,1,3,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 508, NULL,0,Transient-Party,241.41,1,1,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,19,2017,August,31,4,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,175.14,1,1,Check-Out,2017-08-08,Summer,2017-08-04T07:00Z +Keep,202,2017,August,31,4,2,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,1,Check-Out,2017-08-08,Summer,2017-08-04T07:00Z +Keep,11,2017,August,31,5,2,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,343,1,1,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,187,2017,August,31,1,2,5,2,0,0,HB,ROU,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 5, NULL,0,Transient,190.97,0,1,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,280,2017,August,32,6,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Check-Out,2017-08-08,Summer,2017-08-06T07:00Z +Keep,280,2017,August,32,6,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,152.38,0,1,Check-Out,2017-08-08,Summer,2017-08-06T07:00Z +Keep,23,2017,August,31,5,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,242.84,0,0,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,27,2017,August,31,1,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,235.95,0,1,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,36,2017,August,31,4,2,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,239.75,0,2,Check-Out,2017-08-08,Summer,2017-08-04T07:00Z +Keep,191,2017,July,31,30,4,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,I,0,No Deposit , 250, NULL,0,Transient,189.2,0,1,Check-Out,2017-08-08,Summer,2017-07-30T07:00Z +Keep,26,2017,July,31,31,3,5,3,2,0,HB,MAR,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,397.38,0,1,Check-Out,2017-08-08,Summer,2017-07-31T07:00Z +Keep,11,2017,August,31,4,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 242, NULL,0,Transient,316.5,0,4,Check-Out,2017-08-08,Summer,2017-08-04T07:00Z +Keep,38,2017,August,31,5,2,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,294,0,0,Check-Out,2017-08-08,Summer,2017-08-05T07:00Z +Keep,106,2017,August,31,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,0,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,109,2017,August,31,4,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,266,0,2,Check-Out,2017-08-08,Summer,2017-08-04T07:00Z +Keep,1,2017,August,32,7,1,0,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 306, NULL,0,Transient,154.98,0,0,Check-Out,2017-08-08,Summer,2017-08-07T07:00Z +Keep,191,2017,July,31,30,4,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,129.67,0,0,Check-Out,2017-08-08,Summer,2017-07-30T07:00Z +Keep,162,2017,August,31,1,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient,134.86,0,0,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,235,2017,July,30,25,4,10,2,0,0,SC,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,0,No Deposit , 479, NULL,0,Transient,0,0,1,Check-Out,2017-08-08,Summer,2017-07-25T07:00Z +Keep,9,2017,August,32,6,2,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,219,1,1,Check-Out,2017-08-08,Summer,2017-08-06T07:00Z +Keep,173,2017,August,31,1,2,5,2,2,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,157.48,0,0,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,231,2017,August,31,2,2,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,4,No Deposit , 240, NULL,0,Transient,315.33,1,5,Check-Out,2017-08-08,Summer,2017-08-02T07:00Z +Keep,336,2017,August,31,1,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,F,1,No Deposit , 177, NULL,0,Transient,180.8,0,0,Check-Out,2017-08-08,Summer,2017-08-01T07:00Z +Keep,231,2017,August,31,2,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 240, NULL,0,Transient,229.33,1,4,Check-Out,2017-08-08,Summer,2017-08-02T07:00Z +Keep,6,2017,August,32,6,2,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,291,0,1,Check-Out,2017-08-08,Summer,2017-08-06T07:00Z +Keep,204,2017,August,31,3,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,165.63,0,1,Check-Out,2017-08-09,Summer,2017-08-03T07:00Z +Keep,220,2017,July,30,26,4,10,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160.84,0,1,Check-Out,2017-08-09,Summer,2017-07-26T07:00Z +Keep,102,2017,August,31,2,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,148.5,0,0,Check-Out,2017-08-09,Summer,2017-08-02T07:00Z +Keep,263,2017,August,31,1,2,6,2,1,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,186.02,0,1,Check-Out,2017-08-09,Summer,2017-08-01T07:00Z +Keep,165,2017,July,30,28,4,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,165.33,0,0,Check-Out,2017-08-09,Summer,2017-07-28T07:00Z +Keep,51,2017,August,31,2,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,235,0,2,Check-Out,2017-08-09,Summer,2017-08-02T07:00Z +Keep,165,2017,July,30,28,4,8,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,163.5,0,0,Check-Out,2017-08-09,Summer,2017-07-28T07:00Z +Keep,21,2017,August,31,2,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,2,Check-Out,2017-08-09,Summer,2017-08-02T07:00Z +Keep,85,2017,August,31,4,2,3,2,0,0,BB,ARG,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,197.93,0,0,Check-Out,2017-08-09,Summer,2017-08-04T07:00Z +Keep,91,2017,August,31,2,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,159.28,0,0,Check-Out,2017-08-09,Summer,2017-08-02T07:00Z +Keep,102,2017,August,32,7,1,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,184,0,1,Check-Out,2017-08-09,Summer,2017-08-07T07:00Z +Keep,14,2017,August,31,5,2,2,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,228.5,0,2,Check-Out,2017-08-09,Summer,2017-08-05T07:00Z +Keep,1,2017,August,32,8,0,1,2,0,0,BB,LUX,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,269,0,1,Check-Out,2017-08-09,Summer,2017-08-08T07:00Z +Keep,97,2017,August,32,7,1,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,294,0,3,Check-Out,2017-08-09,Summer,2017-08-07T07:00Z +Keep,217,2017,August,31,5,2,2,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,255,1,3,Check-Out,2017-08-09,Summer,2017-08-05T07:00Z +Keep,177,2017,August,31,5,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,218,0,3,Check-Out,2017-08-09,Summer,2017-08-05T07:00Z +Keep,8,2017,August,32,6,2,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,324,0,1,Check-Out,2017-08-09,Summer,2017-08-06T07:00Z +Keep,1,2017,August,32,8,0,1,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,250,0,1,Check-Out,2017-08-09,Summer,2017-08-08T07:00Z +Keep,2,2017,August,32,8,0,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,300,0,1,Check-Out,2017-08-09,Summer,2017-08-08T07:00Z +Keep,23,2017,August,31,3,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,307.67,1,3,Check-Out,2017-08-09,Summer,2017-08-03T07:00Z +Keep,43,2017,August,31,4,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,257,0,3,Check-Out,2017-08-09,Summer,2017-08-04T07:00Z +Keep,24,2017,August,31,5,2,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,264,1,4,Check-Out,2017-08-09,Summer,2017-08-05T07:00Z +Keep,31,2017,August,31,1,2,6,2,2,0,Undefined,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,426.25,0,2,Check-Out,2017-08-09,Summer,2017-08-01T07:00Z +Keep,143,2017,August,31,3,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,175.5,0,1,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,121,2017,August,31,3,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,38,2017,August,32,6,2,2,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,264,0,2,Check-Out,2017-08-10,Summer,2017-08-06T07:00Z +Keep,326,2017,August,32,7,1,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,1,No Deposit , 242, NULL,0,Transient,197.6,0,2,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,326,2017,August,32,7,1,2,1,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 242, NULL,0,Transient,183.6,0,3,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,163,2017,July,30,27,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.86,0,0,Check-Out,2017-08-10,Summer,2017-07-27T07:00Z +Keep,192,2017,July,31,30,4,7,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,166.03,0,2,Check-Out,2017-08-10,Summer,2017-07-30T07:00Z +Keep,3,2017,August,32,7,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,212,2017,August,31,3,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,206.03,0,1,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,122,2017,August,31,3,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,165,0,0,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,134,2017,August,31,2,2,6,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 40, NULL,0,Contract,141.55,0,0,Check-Out,2017-08-10,Summer,2017-08-02T07:00Z +Keep,179,2017,August,31,3,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,212.29,0,2,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,183,2017,August,32,9,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 251,0,Transient-Party,141,0,1,Check-Out,2017-08-10,Summer,2017-08-09T07:00Z +Keep,183,2017,August,32,9,0,1,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , NULL, 251,0,Transient-Party,141,0,1,Check-Out,2017-08-10,Summer,2017-08-09T07:00Z +Keep,32,2017,August,31,5,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,276,0,2,Check-Out,2017-08-10,Summer,2017-08-05T07:00Z +Keep,15,2017,August,32,7,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,231.67,0,2,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,5,2017,August,32,10,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,95,2017,August,31,4,2,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,328,0,2,Check-Out,2017-08-10,Summer,2017-08-04T07:00Z +Keep,240,2017,August,32,6,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient-Party,118,0,1,Check-Out,2017-08-10,Summer,2017-08-06T07:00Z +Keep,199,2017,August,31,3,2,5,3,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,187.37,0,2,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,0,2017,August,32,9,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,244,1,0,Check-Out,2017-08-10,Summer,2017-08-09T07:00Z +Keep,40,2017,August,32,7,1,2,2,2,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,387,0,3,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,2,2017,August,32,9,0,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,230,1,1,Check-Out,2017-08-10,Summer,2017-08-09T07:00Z +Keep,195,2017,August,31,3,2,5,2,1,1,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,182.16,0,2,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,180,2017,August,32,7,1,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,140.6,0,1,Check-Out,2017-08-10,Summer,2017-08-07T07:00Z +Keep,240,2017,August,32,6,2,2,2,0,1,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient-Party,116.5,0,2,Check-Out,2017-08-10,Summer,2017-08-06T07:00Z +Keep,240,2017,August,32,6,2,2,2,1,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient-Party,147.13,0,1,Check-Out,2017-08-10,Summer,2017-08-06T07:00Z +Keep,171,2017,August,31,1,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,191.11,0,2,Check-Out,2017-08-10,Summer,2017-08-01T07:00Z +Keep,174,2017,August,31,3,2,5,2,0,1,Undefined,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,248.36,1,2,Check-Out,2017-08-10,Summer,2017-08-03T07:00Z +Keep,121,2017,August,31,5,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,239,0,1,Check-Out,2017-08-10,Summer,2017-08-05T07:00Z +Keep,121,2017,August,31,5,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,239,0,1,Check-Out,2017-08-10,Summer,2017-08-05T07:00Z +Keep,121,2017,August,31,5,2,3,2,0,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,239,0,1,Check-Out,2017-08-10,Summer,2017-08-05T07:00Z +Keep,3,2017,August,32,9,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,282,0,2,Check-Out,2017-08-10,Summer,2017-08-09T07:00Z +Keep,1,2017,August,32,10,0,1,2,0,0,BB,ESP,Direct,TA/TO, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,205,0,2,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,27,2017,August,32,8,0,2,1,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 241, NULL,0,Transient,232,0,1,Check-Out,2017-08-10,Summer,2017-08-08T07:00Z +Keep,27,2017,August,32,8,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,202,0,1,Check-Out,2017-08-10,Summer,2017-08-08T07:00Z +Keep,17,2017,August,32,8,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Group,116.5,0,0,Check-Out,2017-08-11,Summer,2017-08-08T07:00Z +Keep,119,2017,August,31,1,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-11,Summer,2017-08-01T07:00Z +Keep,307,2017,August,31,5,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,168.6,1,2,Check-Out,2017-08-11,Summer,2017-08-05T07:00Z +Keep,301,2017,July,30,25,4,13,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,179.06,0,2,Check-Out,2017-08-11,Summer,2017-07-25T07:00Z +Keep,301,2017,July,30,25,4,13,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,169.06,0,2,Check-Out,2017-08-11,Summer,2017-07-25T07:00Z +Keep,48,2017,August,32,7,1,3,2,0,0,HB,OMN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient-Party,216.84,0,0,Check-Out,2017-08-11,Summer,2017-08-07T07:00Z +Keep,48,2017,August,32,7,1,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 26, NULL,0,Transient-Party,214.84,0,0,Check-Out,2017-08-11,Summer,2017-08-07T07:00Z +Keep,229,2017,August,31,4,2,5,2,1,0,BB,GBR,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,169.28,0,0,Check-Out,2017-08-11,Summer,2017-08-04T07:00Z +Keep,322,2017,August,32,7,1,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,180.75,0,1,Check-Out,2017-08-11,Summer,2017-08-07T07:00Z +Keep,0,2017,August,32,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,180,0,1,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,131,2017,August,32,7,1,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,266,0,2,Check-Out,2017-08-11,Summer,2017-08-07T07:00Z +Keep,42,2017,August,31,4,2,5,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 5, NULL,0,Transient-Party,197.14,0,0,Check-Out,2017-08-11,Summer,2017-08-04T07:00Z +Keep,42,2017,August,31,4,2,5,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient-Party,181.14,0,0,Check-Out,2017-08-11,Summer,2017-08-04T07:00Z +Keep,0,2017,August,32,10,0,1,2,0,0,BB,RUS,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,1,0,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,208,2017,August,32,8,0,3,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,G,3,No Deposit , 240, NULL,0,Transient,206,0,2,Check-Out,2017-08-11,Summer,2017-08-08T07:00Z +Keep,2,2017,August,32,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,205,0,1,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,2,2017,August,32,10,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,241,0,1,Check-Out,2017-08-11,Summer,2017-08-10T07:00Z +Keep,25,2017,August,32,6,2,3,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,254.31,0,0,Check-Out,2017-08-11,Summer,2017-08-06T07:00Z +Keep,43,2017,August,32,7,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,296,0,2,Check-Out,2017-08-11,Summer,2017-08-07T07:00Z +Keep,49,2017,August,32,8,0,3,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 130,0,Group,135,0,1,Check-Out,2017-08-11,Summer,2017-08-08T07:00Z +Keep,3,2017,August,32,6,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,224,0,2,Check-Out,2017-08-11,Summer,2017-08-06T07:00Z +Keep,305,2017,August,31,5,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,132.85,0,0,Check-Out,2017-08-12,Summer,2017-08-05T07:00Z +Keep,183,2017,August,32,6,2,4,1,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,223.07,0,1,Check-Out,2017-08-12,Summer,2017-08-06T07:00Z +Keep,183,2017,August,32,6,2,4,2,2,0,HB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,239.78,0,1,Check-Out,2017-08-12,Summer,2017-08-06T07:00Z +Keep,264,2017,August,32,7,1,4,2,1,0,BB,CHE,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,231.6,1,1,Check-Out,2017-08-12,Summer,2017-08-07T07:00Z +Keep,207,2017,August,32,8,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,250,0,2,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,218,2017,August,31,5,2,5,1,1,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,135.9,0,1,Check-Out,2017-08-12,Summer,2017-08-05T07:00Z +Keep,218,2017,August,31,5,2,5,2,0,0,HB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 171, NULL,0,Transient,135.9,0,1,Check-Out,2017-08-12,Summer,2017-08-05T07:00Z +Keep,204,2017,August,32,10,0,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,202,1,3,Check-Out,2017-08-12,Summer,2017-08-10T07:00Z +Keep,152,2017,August,32,7,1,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,2,Check-Out,2017-08-12,Summer,2017-08-07T07:00Z +Keep,163,2017,August,32,8,0,4,2,2,0,BB,DNK,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,215,0,4,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,157,2017,August,32,10,0,2,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,314,1,3,Check-Out,2017-08-12,Summer,2017-08-10T07:00Z +Keep,14,2017,August,32,9,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,241,0,2,Check-Out,2017-08-12,Summer,2017-08-09T07:00Z +Keep,166,2017,August,32,8,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,213,0,1,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,31,2017,August,32,7,1,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,283,0,2,Check-Out,2017-08-12,Summer,2017-08-07T07:00Z +Keep,167,2017,August,32,8,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,209,1,3,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,104,2017,August,31,3,2,7,2,1,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,255,0,2,Check-Out,2017-08-12,Summer,2017-08-03T07:00Z +Keep,33,2017,August,32,10,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,G,0,No Deposit , 241, NULL,0,Transient,179.59,1,1,Check-Out,2017-08-12,Summer,2017-08-10T07:00Z +Keep,187,2017,July,30,29,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,123.5,0,0,Check-Out,2017-08-12,Summer,2017-07-29T07:00Z +Keep,174,2017,August,32,9,0,3,3,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,244,1,1,Check-Out,2017-08-12,Summer,2017-08-09T07:00Z +Keep,253,2017,August,32,9,0,3,3,1,0,BB,GBR,Direct,Direct, 0,0,0,H,H,2,No Deposit , 250, NULL,0,Transient,236.1,1,1,Check-Out,2017-08-12,Summer,2017-08-09T07:00Z +Keep,190,2017,August,31,2,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,161.4,0,0,Check-Out,2017-08-12,Summer,2017-08-02T07:00Z +Keep,190,2017,August,31,2,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,161.4,0,0,Check-Out,2017-08-12,Summer,2017-08-02T07:00Z +Keep,93,2017,August,32,8,0,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,184,0,1,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,173,2017,July,31,31,3,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,223.67,0,2,Check-Out,2017-08-12,Summer,2017-07-31T07:00Z +Keep,174,2017,August,32,9,0,3,3,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient-Party,244,1,1,Check-Out,2017-08-12,Summer,2017-08-09T07:00Z +Keep,24,2017,August,31,5,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,2,Check-Out,2017-08-12,Summer,2017-08-05T07:00Z +Keep,36,2017,August,32,9,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-12,Summer,2017-08-09T07:00Z +Keep,3,2017,August,32,10,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,240,0,3,Check-Out,2017-08-12,Summer,2017-08-10T07:00Z +Keep,15,2017,August,32,6,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,214,0,3,Check-Out,2017-08-12,Summer,2017-08-06T07:00Z +Keep,214,2017,August,31,5,2,5,2,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 175, NULL,0,Transient,151.76,0,0,Check-Out,2017-08-12,Summer,2017-08-05T07:00Z +Keep,33,2017,August,32,7,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-12,Summer,2017-08-07T07:00Z +Keep,164,2017,August,32,8,0,4,2,2,0,BB,AUT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,227,1,2,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,32,2017,August,32,8,0,4,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,237.6,0,1,Check-Out,2017-08-12,Summer,2017-08-08T07:00Z +Keep,0,2017,August,32,11,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,1,Check-Out,2017-08-12,Summer,2017-08-11T07:00Z +Keep,23,2017,August,32,11,0,1,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,241,0,2,Check-Out,2017-08-12,Summer,2017-08-11T07:00Z +Keep,12,2017,August,32,11,0,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168,0,1,Check-Out,2017-08-13,Summer,2017-08-11T07:00Z +Keep,269,2017,July,31,30,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,106.85,0,0,Check-Out,2017-08-13,Summer,2017-07-30T07:00Z +Keep,46,2017,August,32,8,0,5,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 508, NULL,0,Transient-Party,243.81,0,4,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,46,2017,August,32,8,0,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 508, NULL,0,Transient-Party,188,0,3,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,128,2017,August,31,3,2,8,3,0,0,HB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,368.1,1,1,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,331,2017,August,32,12,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,2,No Deposit , 143, NULL,0,Transient,174.4,0,2,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,51,2017,August,32,12,0,1,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,284,1,2,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,233,2017,August,31,2,2,9,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,143.57,0,2,Check-Out,2017-08-13,Summer,2017-08-02T07:00Z +Keep,233,2017,August,31,2,2,9,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,133.07,0,1,Check-Out,2017-08-13,Summer,2017-08-02T07:00Z +Keep,22,2017,August,31,3,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Group,161.4,0,2,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,176,2017,August,32,6,2,5,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,133.07,0,3,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,153,2017,August,32,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,189,2017,August,31,3,2,8,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,163.08,0,0,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,189,2017,August,31,3,2,8,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient-Party,167.28,0,0,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,38,2017,August,32,6,2,5,2,0,0,HB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,271,1,1,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,188,2017,August,31,3,2,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,62,2017,August,32,7,1,5,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,290.67,0,0,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,262,2017,August,32,6,2,5,2,3,0,HB,PRT,Direct,Direct, 0,0,0,H,H,1,No Deposit , 250, NULL,0,Transient,288.03,1,1,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,0,2017,August,32,12,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,214,1,0,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,188,2017,August,31,3,2,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,169,0,1,Check-Out,2017-08-13,Summer,2017-08-03T07:00Z +Keep,255,2017,August,32,6,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,179.81,0,0,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,176,2017,August,32,7,1,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,268,0,2,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,38,2017,August,32,7,1,5,2,1,0,HB,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,302.5,0,1,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,291,2017,August,32,7,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,138.38,0,1,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,291,2017,August,32,7,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,154.38,0,1,Check-Out,2017-08-13,Summer,2017-08-07T07:00Z +Keep,188,2017,August,31,5,2,6,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,212,0,2,Check-Out,2017-08-13,Summer,2017-08-05T07:00Z +Keep,136,2017,August,32,8,0,5,2,0,0,HB,HUN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,252,0,4,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,185,2017,August,32,6,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 181, NULL,0,Transient,174,0,0,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,25,2017,August,32,6,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,121.5,0,2,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,84,2017,August,32,8,0,5,2,2,0,Undefined,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,335,0,1,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,5,2017,August,32,12,0,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,260,0,3,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,191,2017,August,32,9,0,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2017-08-13,Summer,2017-08-09T07:00Z +Keep,30,2017,August,32,8,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,230,0,2,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,3,2017,August,32,12,0,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,324,1,1,Check-Out,2017-08-13,Summer,2017-08-12T07:00Z +Keep,194,2017,August,32,8,0,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,210,1,3,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,33,2017,August,32,8,0,5,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 241, NULL,0,Transient,196,0,2,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,176,2017,August,32,8,0,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,211,1,4,Check-Out,2017-08-13,Summer,2017-08-08T07:00Z +Keep,314,2017,August,32,6,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,133.74,0,1,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,327,2017,August,31,4,2,7,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,174.8,0,1,Check-Out,2017-08-13,Summer,2017-08-04T07:00Z +Keep,1,2017,August,32,11,0,2,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,295,1,0,Check-Out,2017-08-13,Summer,2017-08-11T07:00Z +Keep,89,2017,August,32,6,2,5,1,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,282,0,2,Check-Out,2017-08-13,Summer,2017-08-06T07:00Z +Keep,286,2017,August,32,7,2,5,1,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 315, NULL,0,Contract,117.45,0,0,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,286,2017,August,32,7,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 315, NULL,0,Contract,130.06,0,1,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,116,2017,August,32,8,1,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,205.2,0,1,Check-Out,2017-08-14,Summer,2017-08-08T07:00Z +Keep,27,2017,August,33,13,1,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,181.2,1,2,Check-Out,2017-08-14,Summer,2017-08-13T07:00Z +Keep,184,2017,August,32,9,1,4,2,1,0,HB,HUN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,170.57,0,2,Check-Out,2017-08-14,Summer,2017-08-09T07:00Z +Keep,15,2017,August,32,11,1,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-14,Summer,2017-08-11T07:00Z +Keep,137,2017,August,32,7,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,205.43,0,0,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,3,2017,August,32,12,1,1,2,0,0,HB,GBR,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,283,1,1,Check-Out,2017-08-14,Summer,2017-08-12T07:00Z +Keep,84,2017,August,32,8,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-14,Summer,2017-08-08T07:00Z +Keep,191,2017,August,32,6,3,5,2,0,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 196, NULL,0,Transient,196,1,0,Check-Out,2017-08-14,Summer,2017-08-06T07:00Z +Keep,256,2017,August,32,10,1,3,2,1,1,BB,FRA,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,258,0,2,Check-Out,2017-08-14,Summer,2017-08-10T07:00Z +Keep,43,2017,August,32,7,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,270,0,2,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,195,2017,August,32,7,2,5,2,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 315, NULL,0,Contract,158.6,0,0,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,11,2017,August,32,10,1,3,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,204.75,0,1,Check-Out,2017-08-14,Summer,2017-08-10T07:00Z +Keep,87,2017,August,32,11,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-14,Summer,2017-08-11T07:00Z +Keep,28,2017,August,32,7,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,239,2017,August,32,9,1,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,183.2,0,1,Check-Out,2017-08-14,Summer,2017-08-09T07:00Z +Keep,0,2017,August,33,13,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2017-08-14,Summer,2017-08-13T07:00Z +Keep,257,2017,August,32,7,2,5,2,1,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,178.75,0,2,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,11,2017,August,32,12,1,1,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,284,1,2,Check-Out,2017-08-14,Summer,2017-08-12T07:00Z +Keep,37,2017,August,32,10,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,190.1,0,0,Check-Out,2017-08-14,Summer,2017-08-10T07:00Z +Keep,0,2017,August,33,13,1,0,1,0,0,BB,LUX,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,171,0,0,Check-Out,2017-08-14,Summer,2017-08-13T07:00Z +Keep,45,2017,August,32,9,1,4,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,1,Check-Out,2017-08-14,Summer,2017-08-09T07:00Z +Keep,45,2017,August,32,10,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 240, NULL,0,Transient,276,0,1,Check-Out,2017-08-14,Summer,2017-08-10T07:00Z +Keep,12,2017,August,32,11,1,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,167.73,0,1,Check-Out,2017-08-14,Summer,2017-08-11T07:00Z +Keep,26,2017,August,32,7,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,114.76,0,2,Check-Out,2017-08-14,Summer,2017-08-07T07:00Z +Keep,59,2017,August,32,9,1,4,3,0,0,BB,SWE,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,289,1,2,Check-Out,2017-08-14,Summer,2017-08-09T07:00Z +Keep,1,2017,August,33,13,1,0,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,136.8,0,1,Check-Out,2017-08-14,Summer,2017-08-13T07:00Z +Keep,190,2017,August,32,8,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,134.85,0,0,Check-Out,2017-08-15,Summer,2017-08-08T07:00Z +Keep,0,2017,August,32,9,2,4,2,0,0,BB,NOR,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,192,0,0,Check-Out,2017-08-15,Summer,2017-08-09T07:00Z +Keep,43,2017,August,32,7,3,5,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,316,0,1,Check-Out,2017-08-15,Summer,2017-08-07T07:00Z +Keep,119,2017,August,31,5,4,6,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.3,0,0,Check-Out,2017-08-15,Summer,2017-08-05T07:00Z +Keep,132,2017,August,32,11,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,132,2017,August,32,11,2,2,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,132,2017,August,32,11,2,2,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,20,2017,August,33,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,180,0,1,Check-Out,2017-08-15,Summer,2017-08-14T07:00Z +Keep,20,2017,August,33,14,1,0,1,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient-Party,180,0,1,Check-Out,2017-08-15,Summer,2017-08-14T07:00Z +Keep,33,2017,August,32,9,2,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,330,0,1,Check-Out,2017-08-15,Summer,2017-08-09T07:00Z +Keep,43,2017,August,32,8,2,5,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,269.43,1,0,Check-Out,2017-08-15,Summer,2017-08-08T07:00Z +Keep,60,2017,August,32,12,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,239,1,2,Check-Out,2017-08-15,Summer,2017-08-12T07:00Z +Keep,60,2017,August,32,12,2,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,225,0,3,Check-Out,2017-08-15,Summer,2017-08-12T07:00Z +Keep,197,2017,August,31,5,4,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,0,Check-Out,2017-08-15,Summer,2017-08-05T07:00Z +Keep,209,2017,August,32,12,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 240, NULL,0,Transient,202,0,2,Check-Out,2017-08-15,Summer,2017-08-12T07:00Z +Keep,214,2017,August,33,13,2,0,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,199.2,1,2,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,5,2017,August,33,13,2,0,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,1,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,FRA,Direct,TA/TO, 1,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,174,0,1,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,190,2017,August,32,8,2,5,2,2,0,BB,CN,Direct,Direct, 0,0,0,C,C,2,No Deposit , 250, NULL,0,Transient,198,0,1,Check-Out,2017-08-15,Summer,2017-08-08T07:00Z +Keep,49,2017,August,33,13,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,198,0,1,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,191,2017,August,32,9,2,4,2,0,0,BB,CN,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,162,0,0,Check-Out,2017-08-15,Summer,2017-08-09T07:00Z +Keep,155,2017,August,32,11,2,2,3,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,284.7,0,2,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,155,2017,August,32,11,2,2,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,225.5,0,1,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,155,2017,August,32,11,2,2,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,251,0,1,Check-Out,2017-08-15,Summer,2017-08-11T07:00Z +Keep,0,2017,August,33,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,B,0,No Deposit , 250, NULL,0,Transient,225,0,0,Check-Out,2017-08-15,Summer,2017-08-14T07:00Z +Keep,105,2017,August,32,8,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,275,0,1,Check-Out,2017-08-15,Summer,2017-08-08T07:00Z +Keep,286,2017,August,32,10,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,101.22,0,1,Check-Out,2017-08-15,Summer,2017-08-10T07:00Z +Keep,172,2017,August,32,6,4,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,153.5,0,0,Check-Out,2017-08-15,Summer,2017-08-06T07:00Z +Keep,0,2017,August,33,13,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,1,Check-Out,2017-08-15,Summer,2017-08-13T07:00Z +Keep,177,2017,August,32,9,2,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,329.67,0,1,Check-Out,2017-08-15,Summer,2017-08-09T07:00Z +Keep,0,2017,August,33,14,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2017-08-15,Summer,2017-08-14T07:00Z +Keep,286,2017,August,32,7,3,6,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,157.52,0,1,Check-Out,2017-08-16,Summer,2017-08-07T07:00Z +Keep,67,2017,August,32,11,2,3,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,165,0,0,Check-Out,2017-08-16,Summer,2017-08-11T07:00Z +Keep,280,2017,August,32,8,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,150.48,0,0,Check-Out,2017-08-16,Summer,2017-08-08T07:00Z +Keep,1,2017,August,33,15,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,175.5,1,1,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,2,2017,August,33,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,1,2017,August,33,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.2,0,2,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,307,2017,August,33,14,1,1,1,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,138.38,0,1,Check-Out,2017-08-16,Summer,2017-08-14T07:00Z +Keep,1,2017,August,33,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,103.2,0,2,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,255,2017,August,31,4,4,8,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 6, NULL,0,Transient,151.1,0,0,Check-Out,2017-08-16,Summer,2017-08-04T07:00Z +Keep,219,2017,August,33,13,2,1,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 242, NULL,0,Transient,250.32,1,2,Check-Out,2017-08-16,Summer,2017-08-13T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161.1,0,1,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,0,0,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,0,0,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,194,0,0,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,6,2017,August,33,14,1,1,2,2,0,BB,USA,Direct,Direct, 0,0,0,H,H,0,No Deposit , NULL, NULL,0,Transient,300,0,1,Check-Out,2017-08-16,Summer,2017-08-14T07:00Z +Keep,39,2017,August,33,14,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 242, NULL,0,Transient,250,0,2,Check-Out,2017-08-16,Summer,2017-08-14T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,161.1,1,1,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,201,2017,August,31,5,4,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient-Party,198.2,0,2,Check-Out,2017-08-16,Summer,2017-08-05T07:00Z +Keep,201,2017,August,31,5,4,7,2,0,0,BB,IRL,Direct,Direct, 0,0,0,F,F,2,No Deposit , 250, NULL,0,Transient-Party,221.2,0,2,Check-Out,2017-08-16,Summer,2017-08-05T07:00Z +Keep,116,2017,August,32,12,2,2,2,0,0,BB,FIN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,230,0,2,Check-Out,2017-08-16,Summer,2017-08-12T07:00Z +Keep,194,2017,August,33,13,2,1,2,0,0,HB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 8, NULL,0,Transient,165.8,0,0,Check-Out,2017-08-16,Summer,2017-08-13T07:00Z +Keep,1,2017,August,33,15,0,1,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,143,0,2,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,121,2017,August,32,9,2,5,3,0,0,HB,BEL,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,372.71,0,1,Check-Out,2017-08-16,Summer,2017-08-09T07:00Z +Keep,220,2017,August,33,13,2,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 242, NULL,0,Transient,252.33,1,2,Check-Out,2017-08-16,Summer,2017-08-13T07:00Z +Keep,0,2017,August,33,15,0,1,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 306, NULL,0,Transient,131.2,0,0,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,1,2017,August,33,15,0,1,2,0,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,129,0,2,Check-Out,2017-08-16,Summer,2017-08-15T07:00Z +Keep,208,2017,August,32,7,3,6,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,214.53,1,3,Check-Out,2017-08-16,Summer,2017-08-07T07:00Z +Keep,254,2017,August,32,11,2,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,I,1,No Deposit , 240, NULL,0,Transient,258,0,1,Check-Out,2017-08-16,Summer,2017-08-11T07:00Z +Keep,201,2017,August,31,5,4,7,2,1,0,BB,IRL,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient-Party,196.2,0,3,Check-Out,2017-08-16,Summer,2017-08-05T07:00Z +Keep,204,2017,August,33,16,0,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,I,0,No Deposit , NULL, NULL,0,Transient,0,0,0,Check-Out,2017-08-16,Summer,2017-08-16T07:00Z +Keep,66,2017,August,32,10,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,1,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,195,2017,August,32,7,3,7,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 261, NULL,0,Transient,139.1,1,0,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,160,2017,August,32,7,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,A,1,No Deposit , 40, NULL,0,Contract,153.5,0,2,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,220,2017,August,32,10,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,134.43,0,0,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,273,2017,August,32,7,3,7,2,0,0,HB,FRA,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient-Party,214.8,1,1,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,273,2017,August,32,7,3,7,2,2,0,HB,FRA,Direct,Direct, 0,0,0,G,G,0,No Deposit , NULL, NULL,0,Transient-Party,264.6,0,1,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,188,2017,August,32,12,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,210,0,3,Check-Out,2017-08-17,Summer,2017-08-12T07:00Z +Keep,78,2017,August,33,15,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,232,0,1,Check-Out,2017-08-17,Summer,2017-08-15T07:00Z +Keep,78,2017,August,33,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,232,0,1,Check-Out,2017-08-17,Summer,2017-08-15T07:00Z +Keep,197,2017,August,33,13,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,110.7,0,0,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,197,2017,August,33,13,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,110.7,0,0,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,197,2017,August,33,13,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,124.7,0,0,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,197,2017,August,33,13,2,2,2,0,0,BB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient-Party,110.7,0,0,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,26,2017,August,32,7,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,151.3,0,2,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,315,2017,August,33,14,1,2,2,0,0,BB,JPN,Online travel agent,TA/TO, 0,0,0,E,G,0,No Deposit , 240, NULL,0,Transient,172.8,0,3,Check-Out,2017-08-17,Summer,2017-08-14T07:00Z +Keep,97,2017,August,32,11,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,230,0,3,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,97,2017,August,32,11,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,230,0,3,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,44,2017,August,32,10,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient-Party,262,0,0,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,44,2017,August,32,10,2,5,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 196, NULL,0,Transient-Party,337,0,2,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,85,2017,August,32,10,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,232.6,0,0,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,85,2017,August,32,10,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,218.6,0,0,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,212,2017,August,32,11,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,203.67,0,4,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,212,2017,August,32,11,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,203.67,0,4,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,212,2017,August,32,11,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,217.67,0,4,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,217,2017,August,32,11,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199.67,0,2,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,226,2017,August,32,11,2,4,2,2,0,Undefined,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,220.98,0,1,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,173,2017,August,32,11,2,4,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,200,0,4,Check-Out,2017-08-17,Summer,2017-08-11T07:00Z +Keep,174,2017,August,32,7,3,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,3,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,174,2017,August,32,7,3,7,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,2,Check-Out,2017-08-17,Summer,2017-08-07T07:00Z +Keep,1,2017,August,33,15,0,2,2,0,0,BB,DNK,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,163.05,0,1,Check-Out,2017-08-17,Summer,2017-08-15T07:00Z +Keep,207,2017,August,32,10,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,231.6,1,2,Check-Out,2017-08-17,Summer,2017-08-10T07:00Z +Keep,5,2017,August,33,16,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-17,Summer,2017-08-16T07:00Z +Keep,1,2017,August,33,15,0,2,2,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,153.72,1,1,Check-Out,2017-08-17,Summer,2017-08-15T07:00Z +Keep,28,2017,August,33,15,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,209,0,4,Check-Out,2017-08-17,Summer,2017-08-15T07:00Z +Keep,256,2017,August,32,8,2,7,2,1,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,172.81,0,4,Check-Out,2017-08-17,Summer,2017-08-08T07:00Z +Keep,256,2017,August,32,8,2,7,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,131.85,0,4,Check-Out,2017-08-17,Summer,2017-08-08T07:00Z +Keep,218,2017,August,33,14,1,2,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,191.41,1,4,Check-Out,2017-08-17,Summer,2017-08-14T07:00Z +Keep,201,2017,August,33,13,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,104.85,0,2,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,250,2017,August,33,13,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,106.85,0,1,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,250,2017,August,33,13,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,104.85,0,1,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,14,2017,August,33,14,1,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,187.33,0,2,Check-Out,2017-08-17,Summer,2017-08-14T07:00Z +Keep,0,2017,August,33,16,0,1,3,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,199,0,0,Check-Out,2017-08-17,Summer,2017-08-16T07:00Z +Keep,20,2017,August,33,13,2,2,2,1,1,BB,ESP,Direct,Direct, 0,0,0,C,C,1,No Deposit , 250, NULL,0,Transient,254,0,1,Check-Out,2017-08-17,Summer,2017-08-13T07:00Z +Keep,207,2017,August,32,12,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,204.8,0,1,Check-Out,2017-08-17,Summer,2017-08-12T07:00Z +Keep,215,2017,August,32,8,2,8,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 163, NULL,0,Transient,116.5,0,1,Check-Out,2017-08-18,Summer,2017-08-08T07:00Z +Keep,215,2017,August,32,8,2,8,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 163, NULL,0,Transient,118.5,0,1,Check-Out,2017-08-18,Summer,2017-08-08T07:00Z +Keep,10,2017,August,32,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,3,Check-Out,2017-08-18,Summer,2017-08-11T07:00Z +Keep,26,2017,August,32,7,3,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Group,125.1,0,1,Check-Out,2017-08-18,Summer,2017-08-07T07:00Z +Keep,10,2017,August,32,11,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, 40,0,Contract,135,0,3,Check-Out,2017-08-18,Summer,2017-08-11T07:00Z +Keep,6,2017,August,33,17,0,1,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,E,0,No Deposit , 302, NULL,0,Transient,0,0,0,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,210,2017,August,33,14,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,190.88,0,3,Check-Out,2017-08-18,Summer,2017-08-14T07:00Z +Keep,210,2017,August,33,14,1,3,2,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,206.88,1,3,Check-Out,2017-08-18,Summer,2017-08-14T07:00Z +Keep,183,2017,August,32,12,2,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,H,0,No Deposit , 240, NULL,0,Transient,201.67,0,2,Check-Out,2017-08-18,Summer,2017-08-12T07:00Z +Keep,2,2017,August,33,17,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,231,0,3,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,2,2017,August,33,17,0,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,231,0,3,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,223,2017,August,33,13,2,3,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162.3,0,2,Check-Out,2017-08-18,Summer,2017-08-13T07:00Z +Keep,5,2017,August,33,17,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,255,0,0,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,301,2017,August,32,12,2,4,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,112.12,0,1,Check-Out,2017-08-18,Summer,2017-08-12T07:00Z +Keep,6,2017,August,33,15,0,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217.33,0,2,Check-Out,2017-08-18,Summer,2017-08-15T07:00Z +Keep,224,2017,August,33,13,2,3,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,311.6,0,2,Check-Out,2017-08-18,Summer,2017-08-13T07:00Z +Keep,320,2017,August,33,14,1,3,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,258,1,2,Check-Out,2017-08-18,Summer,2017-08-14T07:00Z +Keep,77,2017,August,33,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,216,0,2,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,140,2017,August,33,17,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,231,0,2,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,1,2017,August,33,17,0,1,2,1,0,BB,NOR,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 241, NULL,0,Transient,170.1,0,1,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,192,2017,August,33,16,0,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 242, NULL,0,Transient,244,0,3,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,20,2017,August,33,16,0,2,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient-Party,260.5,0,2,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,2,2017,August,33,16,0,2,1,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient-Party,238.3,0,1,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,140,2017,August,32,8,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,153.5,0,0,Check-Out,2017-08-18,Summer,2017-08-08T07:00Z +Keep,35,2017,August,33,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,222.8,1,1,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,33,2017,August,33,14,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,240.37,1,1,Check-Out,2017-08-18,Summer,2017-08-14T07:00Z +Keep,189,2017,August,32,12,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,238,0,3,Check-Out,2017-08-18,Summer,2017-08-12T07:00Z +Keep,15,2017,August,33,16,0,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,17,2017,August,33,17,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,140,2017,August,33,17,0,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,229,0,2,Check-Out,2017-08-18,Summer,2017-08-17T07:00Z +Keep,40,2017,August,33,14,1,3,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-18,Summer,2017-08-14T07:00Z +Keep,77,2017,August,33,16,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 241, NULL,0,Transient,200,0,2,Check-Out,2017-08-18,Summer,2017-08-16T07:00Z +Keep,23,2017,August,33,16,0,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-19,Summer,2017-08-16T07:00Z +Keep,96,2017,August,32,12,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,217.1,0,0,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,96,2017,August,32,12,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,217.1,0,0,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,11,2017,August,33,18,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,B,0,No Deposit , NULL, 337,0,Transient,135,0,0,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,223,2017,August,33,13,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,212.33,0,4,Check-Out,2017-08-19,Summer,2017-08-13T07:00Z +Keep,17,2017,August,33,16,0,3,2,0,0,BB,IRN,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,178.39,0,1,Check-Out,2017-08-19,Summer,2017-08-16T07:00Z +Keep,1,2017,August,33,18,0,1,2,1,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,186.1,0,0,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,50,2017,August,32,12,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Transient,216,0,0,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,45,2017,August,33,19,0,1,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 5, NULL,0,Group,216,0,0,Check-Out,2017-08-20,Summer,2017-08-19T07:00Z +Keep,19,2017,August,33,17,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,232,0,1,Check-Out,2017-08-19,Summer,2017-08-17T07:00Z +Keep,36,2017,August,33,15,0,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,297,1,3,Check-Out,2017-08-19,Summer,2017-08-15T07:00Z +Keep,163,2017,August,32,12,2,5,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,252,0,3,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,6,2017,August,33,17,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,230,0,0,Check-Out,2017-08-19,Summer,2017-08-17T07:00Z +Keep,56,2017,August,33,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,284,0,4,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,57,2017,August,33,19,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,283.43,0,4,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,56,2017,August,33,18,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,270,0,4,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,57,2017,August,33,19,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,270,0,4,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,192,2017,August,32,12,2,5,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,199.15,1,3,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,254,2017,August,32,12,2,5,2,2,0,Undefined,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,212.58,0,1,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,50,2017,August,33,14,1,4,2,0,0,BB,FRA,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,299,1,1,Check-Out,2017-08-19,Summer,2017-08-14T07:00Z +Keep,38,2017,August,33,13,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,296.33,0,1,Check-Out,2017-08-19,Summer,2017-08-13T07:00Z +Keep,200,2017,August,32,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,106.56,0,1,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,197,2017,August,32,12,2,5,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,207.29,0,1,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,205,2017,August,33,18,0,1,4,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 147, NULL,0,Transient,153.68,1,0,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,365,2017,August,33,15,0,4,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,322,0,1,Check-Out,2017-08-19,Summer,2017-08-15T07:00Z +Keep,0,2017,August,33,17,0,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,194,0,0,Check-Out,2017-08-19,Summer,2017-08-17T07:00Z +Keep,188,2017,August,32,8,2,9,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,174.55,0,2,Check-Out,2017-08-19,Summer,2017-08-08T07:00Z +Keep,11,2017,August,32,12,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,116.47,0,2,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,59,2017,August,33,14,1,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , NULL, NULL,0,Transient,262,0,1,Check-Out,2017-08-19,Summer,2017-08-14T07:00Z +Keep,324,2017,August,31,5,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,1,No Deposit , 143, NULL,0,Transient,131.4,0,0,Check-Out,2017-08-19,Summer,2017-08-05T07:00Z +Keep,4,2017,August,32,9,2,8,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 5, NULL,0,Transient,306.7,1,0,Check-Out,2017-08-19,Summer,2017-08-09T07:00Z +Keep,207,2017,August,33,14,1,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,173.45,1,2,Check-Out,2017-08-19,Summer,2017-08-14T07:00Z +Keep,24,2017,August,33,18,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,196,0,3,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,24,2017,August,33,18,0,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,250,0,4,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,3,2017,August,33,18,0,1,3,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,265,0,1,Check-Out,2017-08-19,Summer,2017-08-18T07:00Z +Keep,215,2017,August,33,13,2,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,F,1,No Deposit , 250, NULL,0,Transient,203.19,1,1,Check-Out,2017-08-19,Summer,2017-08-13T07:00Z +Keep,0,2017,August,33,17,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,179,0,1,Check-Out,2017-08-19,Summer,2017-08-17T07:00Z +Keep,264,2017,August,32,12,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,174,0,4,Check-Out,2017-08-19,Summer,2017-08-12T07:00Z +Keep,32,2017,August,33,14,1,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-08-19,Summer,2017-08-14T07:00Z +Keep,70,2017,August,33,17,0,3,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,276,0,1,Check-Out,2017-08-20,Summer,2017-08-17T07:00Z +Keep,164,2017,August,33,13,2,5,2,0,0,FB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,267.5,1,1,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,29,2017,August,32,10,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Group,131.4,0,2,Check-Out,2017-08-20,Summer,2017-08-10T07:00Z +Keep,32,2017,August,32,9,2,9,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,273.09,0,2,Check-Out,2017-08-20,Summer,2017-08-09T07:00Z +Keep,193,2017,August,33,17,0,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,182,0,3,Check-Out,2017-08-20,Summer,2017-08-17T07:00Z +Keep,338,2017,August,32,9,2,9,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,215.24,0,4,Check-Out,2017-08-20,Summer,2017-08-09T07:00Z +Keep,94,2017,August,33,13,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,167,0,0,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,223,2017,August,33,13,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,131.49,0,0,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,176,2017,August,33,18,0,2,2,2,0,HB,USA,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,279,0,1,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,201,2017,August,33,13,2,5,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,121.5,0,0,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,156,2017,August,33,16,0,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,228.5,0,2,Check-Out,2017-08-20,Summer,2017-08-16T07:00Z +Keep,168,2017,August,33,16,0,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,207,0,1,Check-Out,2017-08-20,Summer,2017-08-16T07:00Z +Keep,156,2017,August,33,16,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,193.5,0,2,Check-Out,2017-08-20,Summer,2017-08-16T07:00Z +Keep,43,2017,August,33,15,0,5,2,2,0,HB,ESP,Direct,Direct, 0,0,0,C,C,5,No Deposit , 250, NULL,0,Transient,337,1,2,Check-Out,2017-08-20,Summer,2017-08-15T07:00Z +Keep,206,2017,August,33,13,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,232.61,1,1,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,206,2017,August,33,13,2,5,2,0,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,177.5,0,1,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,63,2017,August,33,18,0,2,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,286,0,2,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,32,2017,August,33,13,2,5,2,1,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 11, NULL,0,Transient,202.5,0,3,Check-Out,2017-08-20,Summer,2017-08-13T07:00Z +Keep,88,2017,August,33,18,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,244,0,2,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,176,2017,August,32,12,2,6,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,A,1,No Deposit , 240, NULL,0,Transient,232,0,2,Check-Out,2017-08-20,Summer,2017-08-12T07:00Z +Keep,242,2017,August,32,12,2,6,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 261, NULL,0,Transient,187.24,0,1,Check-Out,2017-08-20,Summer,2017-08-12T07:00Z +Keep,25,2017,August,33,18,0,2,3,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,205.2,0,1,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,192,2017,August,33,14,1,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,215.33,0,2,Check-Out,2017-08-20,Summer,2017-08-14T07:00Z +Keep,280,2017,August,33,15,0,5,3,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,147,0,3,Check-Out,2017-08-20,Summer,2017-08-15T07:00Z +Keep,24,2017,August,33,17,0,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,392,1,1,Check-Out,2017-08-20,Summer,2017-08-17T07:00Z +Keep,21,2017,August,33,17,0,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-20,Summer,2017-08-17T07:00Z +Keep,2,2017,August,33,18,0,2,1,0,0,BB,ZAF,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,219,0,2,Check-Out,2017-08-20,Summer,2017-08-18T07:00Z +Keep,13,2017,August,33,14,1,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,247.65,0,3,Check-Out,2017-08-20,Summer,2017-08-14T07:00Z +Keep,25,2017,August,32,6,4,10,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,114.76,0,2,Check-Out,2017-08-20,Summer,2017-08-06T07:00Z +Keep,69,2017,August,33,17,0,3,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,320.7,0,1,Check-Out,2017-08-20,Summer,2017-08-17T07:00Z +Keep,163,2017,August,32,10,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,1,No Deposit , 40, NULL,0,Contract,119.85,0,0,Check-Out,2017-08-20,Summer,2017-08-10T07:00Z +Keep,163,2017,August,32,10,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,3,No Deposit , 40, NULL,0,Contract,121.85,0,0,Check-Out,2017-08-20,Summer,2017-08-10T07:00Z +Keep,178,2017,August,33,14,1,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,262.5,0,5,Check-Out,2017-08-20,Summer,2017-08-14T07:00Z +Keep,2,2017,August,33,19,0,1,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,201.14,1,1,Check-Out,2017-08-20,Summer,2017-08-19T07:00Z +Keep,0,2017,August,34,20,0,0,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,0,1,1,Check-Out,2017-08-20,Summer,2017-08-20T07:00Z +Keep,53,2017,August,33,14,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,218,0,1,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,188,2017,August,32,7,4,10,2,2,0,BB,GEO,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,169.37,0,0,Check-Out,2017-08-21,Summer,2017-08-07T07:00Z +Keep,3,2017,August,33,17,1,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,271,0,2,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,60,2017,August,32,11,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-21,Summer,2017-08-11T07:00Z +Keep,1,2017,August,33,18,1,2,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,206.4,0,1,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,194,2017,August,33,14,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,201.6,0,2,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,194,2017,August,33,14,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,222.39,0,0,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,67,2017,August,32,11,3,7,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-21,Summer,2017-08-11T07:00Z +Keep,367,2017,August,33,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,249.23,1,3,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,0,2017,August,34,20,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,176,0,0,Check-Out,2017-08-21,Summer,2017-08-20T07:00Z +Keep,309,2017,August,34,21,1,2,2,0,0,HB,ESP,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,181.18,0,1,Check-Out,2017-08-24,Summer,2017-08-21T07:00Z +Keep,182,2017,August,33,14,2,5,2,0,0,HB,FRA,Direct,Direct, 0,0,0,D,D,4,No Deposit , 250, NULL,0,Transient,192.5,0,3,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,166,2017,August,32,10,3,8,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,162.9,0,2,Check-Out,2017-08-21,Summer,2017-08-10T07:00Z +Keep,194,2017,August,33,14,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,3,No Deposit , 314, NULL,0,Transient,158.66,0,2,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,12,2017,August,33,16,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,264,0,2,Check-Out,2017-08-21,Summer,2017-08-16T07:00Z +Keep,64,2017,August,33,16,1,4,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,388,0,2,Check-Out,2017-08-21,Summer,2017-08-16T07:00Z +Keep,103,2017,August,33,18,1,2,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,216,0,1,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,8,2017,August,33,17,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,210,0,2,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,8,2017,August,33,17,1,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient-Party,224,1,2,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,1,2017,August,33,17,1,3,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,184,0,1,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,3,2017,August,34,20,1,0,1,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 127, NULL,0,Transient,143.2,0,0,Check-Out,2017-08-21,Summer,2017-08-20T07:00Z +Keep,212,2017,August,33,17,1,3,2,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient-Party,182.25,0,0,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,212,2017,August,33,17,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,0,Check-Out,2017-08-21,Summer,2017-08-17T07:00Z +Keep,7,2017,August,33,16,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,260,1,2,Check-Out,2017-08-21,Summer,2017-08-16T07:00Z +Keep,202,2017,August,33,19,1,1,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,151,0,1,Check-Out,2017-08-21,Summer,2017-08-19T07:00Z +Keep,202,2017,August,33,19,1,1,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,194,0,2,Check-Out,2017-08-21,Summer,2017-08-19T07:00Z +Keep,16,2017,August,33,15,1,5,2,0,0,BB,POL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,169.48,0,1,Check-Out,2017-08-21,Summer,2017-08-15T07:00Z +Keep,197,2017,August,33,16,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient,188,1,1,Check-Out,2017-08-21,Summer,2017-08-16T07:00Z +Keep,194,2017,August,33,14,2,5,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,218.63,0,1,Check-Out,2017-08-21,Summer,2017-08-14T07:00Z +Keep,33,2017,August,33,18,1,2,2,2,0,FB,PRT,Online travel agent,Direct, 0,0,0,D,G,8,No Deposit , 240, NULL,0,Transient-Party,310,1,4,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,256,2017,August,32,7,4,10,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,126.41,0,1,Check-Out,2017-08-21,Summer,2017-08-07T07:00Z +Keep,25,2017,August,33,18,1,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,230,0,2,Check-Out,2017-08-21,Summer,2017-08-18T07:00Z +Keep,59,2017,August,33,18,2,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,207.2,0,1,Check-Out,2017-08-22,Summer,2017-08-18T07:00Z +Keep,87,2017,August,33,17,2,3,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,332,0,1,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,28,2017,August,34,20,2,0,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,250,0,1,Check-Out,2017-08-22,Summer,2017-08-20T07:00Z +Keep,70,2017,August,33,15,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-22,Summer,2017-08-15T07:00Z +Keep,227,2017,August,33,18,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,153.75,0,1,Check-Out,2017-08-22,Summer,2017-08-18T07:00Z +Keep,189,2017,August,33,13,4,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,186.44,0,1,Check-Out,2017-08-22,Summer,2017-08-13T07:00Z +Keep,227,2017,August,33,18,2,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,167.75,0,1,Check-Out,2017-08-22,Summer,2017-08-18T07:00Z +Keep,20,2017,August,33,19,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,B,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-22,Summer,2017-08-19T07:00Z +Keep,104,2017,August,33,17,2,3,3,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,402,0,1,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,4,2017,August,34,21,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,228,1,1,Check-Out,2017-08-22,Summer,2017-08-21T07:00Z +Keep,118,2017,August,33,17,2,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,264,0,2,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,274,2017,August,33,16,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,224.1,1,3,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,227,2017,August,33,16,2,4,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,202.88,0,1,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,8,2017,August,33,17,2,3,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,171.2,0,1,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,7,2017,August,33,17,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,246,0,2,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,227,2017,August,33,16,2,4,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,276.6,0,1,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,29,2017,August,33,16,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,272.5,0,2,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,3,2017,August,33,19,2,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,211.49,1,1,Check-Out,2017-08-22,Summer,2017-08-19T07:00Z +Keep,21,2017,August,34,20,2,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,284,0,2,Check-Out,2017-08-22,Summer,2017-08-20T07:00Z +Keep,76,2017,August,33,16,2,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,241.67,0,2,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,238,2017,August,33,18,2,2,2,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-08-22,Summer,2017-08-18T07:00Z +Keep,69,2017,August,33,16,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-22,Summer,2017-08-16T07:00Z +Keep,27,2017,August,33,19,2,1,2,0,1,HB,PRT,Direct,Direct, 0,0,0,F,F,3,No Deposit , 250, NULL,0,Transient,317,0,2,Check-Out,2017-08-22,Summer,2017-08-19T07:00Z +Keep,226,2017,August,33,19,2,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,194,0,2,Check-Out,2017-08-22,Summer,2017-08-19T07:00Z +Keep,19,2017,August,33,19,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,266,0,2,Check-Out,2017-08-22,Summer,2017-08-19T07:00Z +Keep,4,2017,August,34,20,2,0,1,0,0,BB,PRT,Complementary,Corporate, 0,0,0,A,E,0,No Deposit , 302, NULL,0,Transient,0,0,1,Check-Out,2017-08-22,Summer,2017-08-20T07:00Z +Keep,1,2017,August,34,20,2,0,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,269,0,1,Check-Out,2017-08-22,Summer,2017-08-20T07:00Z +Keep,249,2017,August,33,17,2,3,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,167.91,0,1,Check-Out,2017-08-22,Summer,2017-08-17T07:00Z +Keep,5,2017,August,34,21,1,0,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,H,1,No Deposit , 250, NULL,0,Transient,268.3,1,1,Check-Out,2017-08-22,Summer,2017-08-21T07:00Z +Keep,24,2017,August,34,22,0,5,2,0,0,HB,PRT,Online travel agent,Direct, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,223.6,1,1,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,30,2017,August,34,21,1,0,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,299,1,1,Check-Out,2017-08-22,Summer,2017-08-21T07:00Z +Keep,194,2017,August,33,19,2,2,2,0,0,BB,USA,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 8, NULL,0,Transient,125,0,0,Check-Out,2017-08-23,Summer,2017-08-19T07:00Z +Keep,144,2017,August,33,16,2,5,2,0,0,Undefined,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,158.85,0,0,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,185,2017,August,33,13,4,6,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,229.13,0,1,Check-Out,2017-08-23,Summer,2017-08-13T07:00Z +Keep,0,2017,August,34,22,0,1,3,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,230,0,0,Check-Out,2017-08-23,Summer,2017-08-22T07:00Z +Keep,13,2017,August,33,17,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,222.33,1,1,Check-Out,2017-08-23,Summer,2017-08-17T07:00Z +Keep,38,2017,August,33,19,2,2,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,5,No Deposit , 240, NULL,0,Transient,262,0,1,Check-Out,2017-08-23,Summer,2017-08-19T07:00Z +Keep,150,2017,August,33,16,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,261,0,2,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,217,2017,August,33,16,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient-Party,186.6,0,1,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,217,2017,August,33,16,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient-Party,168.38,0,0,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,4,2017,August,34,21,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,253,0,2,Check-Out,2017-08-23,Summer,2017-08-21T07:00Z +Keep,203,2017,August,33,17,2,4,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,110.7,0,0,Check-Out,2017-08-23,Summer,2017-08-17T07:00Z +Keep,19,2017,August,34,21,1,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,182,0,1,Check-Out,2017-08-23,Summer,2017-08-21T07:00Z +Keep,3,2017,August,34,21,1,1,2,2,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,229,0,1,Check-Out,2017-08-23,Summer,2017-08-21T07:00Z +Keep,183,2017,August,33,16,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,232,0,2,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,9,2017,August,34,22,0,1,2,2,0,BB,ESP,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,319,1,3,Check-Out,2017-08-23,Summer,2017-08-22T07:00Z +Keep,160,2017,August,33,17,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 3, NULL,0,Transient,198.3,0,1,Check-Out,2017-08-23,Summer,2017-08-17T07:00Z +Keep,160,2017,August,33,17,2,4,2,0,0,HB,FRA,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 3, NULL,0,Transient,196.3,0,1,Check-Out,2017-08-23,Summer,2017-08-17T07:00Z +Keep,22,2017,August,33,19,2,2,3,1,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,340,0,1,Check-Out,2017-08-23,Summer,2017-08-19T07:00Z +Keep,0,2017,August,34,22,0,1,2,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,180,0,0,Check-Out,2017-08-23,Summer,2017-08-22T07:00Z +Keep,330,2017,August,34,20,2,1,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 240, NULL,0,Transient,172.8,0,2,Check-Out,2017-08-23,Summer,2017-08-20T07:00Z +Keep,199,2017,August,33,15,2,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,112.45,0,0,Check-Out,2017-08-23,Summer,2017-08-15T07:00Z +Keep,13,2017,August,33,18,2,3,2,0,1,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,244.55,1,3,Check-Out,2017-08-23,Summer,2017-08-18T07:00Z +Keep,45,2017,August,34,21,1,1,3,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,186.68,0,1,Check-Out,2017-08-23,Summer,2017-08-21T07:00Z +Keep,217,2017,August,33,16,2,5,1,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,153.38,0,0,Check-Out,2017-08-23,Summer,2017-08-16T07:00Z +Keep,12,2017,August,34,21,1,1,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,224,0,3,Check-Out,2017-08-23,Summer,2017-08-21T07:00Z +Keep,186,2017,August,32,12,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 8, NULL,0,Transient,151,0,2,Check-Out,2017-08-23,Summer,2017-08-12T07:00Z +Keep,186,2017,August,32,12,4,7,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 8, NULL,0,Transient,169,0,0,Check-Out,2017-08-23,Summer,2017-08-12T07:00Z +Keep,189,2017,August,32,12,4,8,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,158,0,1,Check-Out,2017-08-24,Summer,2017-08-12T07:00Z +Keep,189,2017,August,32,12,4,8,2,0,0,BB,FRA,Direct,Direct, 0,0,0,E,E,1,No Deposit , NULL, NULL,0,Transient,172,1,1,Check-Out,2017-08-24,Summer,2017-08-12T07:00Z +Keep,223,2017,August,33,17,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 143, NULL,0,Transient,106.85,0,0,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,290,2017,August,34,20,2,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,140.38,0,1,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,342,2017,August,33,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,112.7,0,0,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,342,2017,August,33,17,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient-Party,110.7,0,0,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,12,2017,August,33,13,4,7,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,163,0,2,Check-Out,2017-08-24,Summer,2017-08-13T07:00Z +Keep,199,2017,August,33,19,2,3,2,0,0,BB,AUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,125.2,0,1,Check-Out,2017-08-24,Summer,2017-08-19T07:00Z +Keep,94,2017,August,33,14,3,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-08-24,Summer,2017-08-14T07:00Z +Keep,189,2017,August,33,14,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,1,Check-Out,2017-08-24,Summer,2017-08-14T07:00Z +Keep,0,2017,August,34,23,0,1,2,1,0,BB,PRT,Direct,Direct, 0,0,0,F,F,1,No Deposit , NULL, NULL,0,Transient,238,0,0,Check-Out,2017-08-24,Summer,2017-08-23T07:00Z +Keep,211,2017,August,33,17,2,5,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,147.74,1,1,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,82,2017,August,33,17,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 175, NULL,0,Transient,216,0,0,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,295,2017,August,34,20,2,2,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,306,0,3,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,79,2017,August,33,18,2,4,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,284,1,2,Check-Out,2017-08-24,Summer,2017-08-18T07:00Z +Keep,247,2017,August,33,16,2,6,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 96, NULL,0,Transient,139.28,0,1,Check-Out,2017-08-24,Summer,2017-08-16T07:00Z +Keep,247,2017,August,33,16,2,6,2,0,2,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,C,C,0,No Deposit , 96, NULL,0,Transient,141.68,0,1,Check-Out,2017-08-24,Summer,2017-08-16T07:00Z +Keep,18,2017,August,33,19,2,3,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,219.2,0,1,Check-Out,2017-08-24,Summer,2017-08-19T07:00Z +Keep,172,2017,August,33,17,2,5,2,1,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,193.03,0,1,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,1,2017,August,34,23,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,159.2,0,1,Check-Out,2017-08-24,Summer,2017-08-23T07:00Z +Keep,172,2017,August,33,17,2,5,3,0,0,HB,FRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,206.72,0,1,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,37,2017,August,34,23,0,1,1,0,0,BB,PRT,Corporate,Corporate, 0,0,0,A,A,0,No Deposit , NULL, 154,0,Transient,135,0,0,Check-Out,2017-08-24,Summer,2017-08-23T07:00Z +Keep,7,2017,August,34,21,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,274.67,0,2,Check-Out,2017-08-24,Summer,2017-08-21T07:00Z +Keep,3,2017,August,34,23,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,189,0,2,Check-Out,2017-08-24,Summer,2017-08-23T07:00Z +Keep,19,2017,August,34,21,1,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-24,Summer,2017-08-21T07:00Z +Keep,1,2017,August,34,23,0,1,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,209,0,2,Check-Out,2017-08-24,Summer,2017-08-23T07:00Z +Keep,16,2017,August,34,22,0,2,3,1,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,382,1,1,Check-Out,2017-08-24,Summer,2017-08-22T07:00Z +Keep,155,2017,August,33,17,2,5,3,0,0,HB,PRT,Direct,Direct, 0,0,0,C,C,3,No Deposit , 250, NULL,0,Transient,258,1,2,Check-Out,2017-08-24,Summer,2017-08-17T07:00Z +Keep,258,2017,August,34,20,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,2,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,4,2017,August,33,19,2,3,3,0,0,HB,ESP,Direct,Direct, 0,0,0,F,F,1,No Deposit , 250, NULL,0,Transient,350.2,0,1,Check-Out,2017-08-24,Summer,2017-08-19T07:00Z +Keep,272,2017,August,34,20,2,2,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,157.28,0,1,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,75,2017,August,34,22,0,2,1,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 241, NULL,0,Transient,202,0,1,Check-Out,2017-08-24,Summer,2017-08-22T07:00Z +Keep,119,2017,August,33,19,2,3,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,157.28,0,0,Check-Out,2017-08-24,Summer,2017-08-19T07:00Z +Keep,184,2017,August,34,20,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,23,2017,August,34,22,0,2,2,0,0,BB,COL,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,185.99,0,1,Check-Out,2017-08-24,Summer,2017-08-22T07:00Z +Keep,178,2017,August,34,20,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,0,Check-Out,2017-08-24,Summer,2017-08-20T07:00Z +Keep,1,2017,August,34,22,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 306, NULL,0,Transient,151.29,0,0,Check-Out,2017-08-24,Summer,2017-08-22T07:00Z +Keep,18,2017,August,34,21,1,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168,0,1,Check-Out,2017-08-25,Summer,2017-08-21T07:00Z +Keep,244,2017,August,33,15,2,8,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,136.85,0,0,Check-Out,2017-08-25,Summer,2017-08-15T07:00Z +Keep,81,2017,August,33,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,134,2017,August,33,15,2,8,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,1,Check-Out,2017-08-25,Summer,2017-08-15T07:00Z +Keep,187,2017,August,33,14,3,8,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,233.64,0,4,Check-Out,2017-08-25,Summer,2017-08-14T07:00Z +Keep,178,2017,August,33,18,2,5,3,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,170.03,0,0,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,188,2017,August,33,16,2,7,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,200,0,2,Check-Out,2017-08-25,Summer,2017-08-16T07:00Z +Keep,13,2017,August,33,14,3,8,1,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-08-25,Summer,2017-08-14T07:00Z +Keep,197,2017,August,33,18,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,160,2017,August,33,18,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,203.71,0,0,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,288,2017,August,33,15,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,104.85,0,0,Check-Out,2017-08-25,Summer,2017-08-15T07:00Z +Keep,105,2017,August,34,20,2,3,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,256.31,1,1,Check-Out,2017-08-25,Summer,2017-08-20T07:00Z +Keep,12,2017,August,34,21,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,256,0,2,Check-Out,2017-08-25,Summer,2017-08-21T07:00Z +Keep,20,2017,August,34,22,0,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,1,No Deposit , 240, NULL,0,Transient,322,0,1,Check-Out,2017-08-25,Summer,2017-08-22T07:00Z +Keep,169,2017,August,34,20,2,3,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,248,0,3,Check-Out,2017-08-25,Summer,2017-08-20T07:00Z +Keep,169,2017,August,34,20,2,3,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,2,No Deposit , 240, NULL,0,Transient,262,1,4,Check-Out,2017-08-25,Summer,2017-08-20T07:00Z +Keep,65,2017,August,33,18,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 508, NULL,0,Transient,190.6,0,1,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,127,2017,August,33,18,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,E,E,4,No Deposit , 250, NULL,0,Transient,334.43,1,4,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,150,2017,August,33,18,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,121.5,0,0,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,124,2017,August,33,16,2,7,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,3,Check-Out,2017-08-25,Summer,2017-08-16T07:00Z +Keep,177,2017,August,33,19,2,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,239,0,1,Check-Out,2017-08-25,Summer,2017-08-19T07:00Z +Keep,191,2017,August,34,21,1,3,2,2,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,264,0,3,Check-Out,2017-08-25,Summer,2017-08-21T07:00Z +Keep,10,2017,August,34,22,0,3,2,2,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,275.33,0,2,Check-Out,2017-08-25,Summer,2017-08-22T07:00Z +Keep,199,2017,August,33,18,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 171, NULL,0,Transient,112.41,0,0,Check-Out,2017-08-25,Summer,2017-08-18T07:00Z +Keep,218,2017,August,33,15,2,8,2,0,0,HB,AUT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,217.6,0,2,Check-Out,2017-08-25,Summer,2017-08-15T07:00Z +Keep,84,2017,August,34,20,2,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,3,Check-Out,2017-08-25,Summer,2017-08-20T07:00Z +Keep,47,2017,August,34,23,0,2,2,2,0,BB,ESP,Direct,Direct, 0,0,0,C,C,0,No Deposit , 250, NULL,0,Transient,289,0,1,Check-Out,2017-08-25,Summer,2017-08-23T07:00Z +Keep,21,2017,August,34,22,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,261,1,1,Check-Out,2017-08-25,Summer,2017-08-22T07:00Z +Keep,42,2017,August,34,21,1,3,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,242.84,0,0,Check-Out,2017-08-25,Summer,2017-08-21T07:00Z +Keep,55,2017,August,34,22,0,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,264,0,2,Check-Out,2017-08-25,Summer,2017-08-22T07:00Z +Keep,62,2017,August,34,21,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 15, NULL,0,Transient,205,0,2,Check-Out,2017-08-25,Summer,2017-08-21T07:00Z +Keep,146,2017,August,33,19,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,237.71,0,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,10,2017,August,34,22,0,4,2,2,0,BB,IRL,Direct,Direct, 0,0,0,G,G,0,No Deposit , 250, NULL,0,Transient,306.5,0,2,Check-Out,2017-08-26,Summer,2017-08-22T07:00Z +Keep,204,2017,August,33,16,2,8,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 69, NULL,0,Transient,148.7,0,0,Check-Out,2017-08-26,Summer,2017-08-16T07:00Z +Keep,125,2017,August,34,20,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,276,1,2,Check-Out,2017-08-26,Summer,2017-08-20T07:00Z +Keep,64,2017,August,33,19,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,331.43,1,2,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,64,2017,August,33,19,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,270,0,2,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,209,2017,August,34,21,1,4,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,218.8,1,2,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,210,2017,August,33,19,2,5,2,2,0,HB,PRT,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,279.03,0,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,181,2017,August,34,22,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,1,Check-Out,2017-08-26,Summer,2017-08-22T07:00Z +Keep,169,2017,August,34,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,234,0,2,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,157,2017,August,33,19,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 468, NULL,0,Transient-Party,198.17,0,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,157,2017,August,33,19,2,5,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 468, NULL,0,Transient-Party,211.6,1,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,17,2017,August,34,24,0,2,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,274,0,2,Check-Out,2017-08-26,Summer,2017-08-24T07:00Z +Keep,0,2017,August,34,25,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,244,1,0,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,210,2017,August,33,19,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,187.24,0,0,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,210,2017,August,33,19,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 261, NULL,0,Transient,135.9,1,0,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,0,2017,August,34,25,0,1,2,1,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,175,0,0,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,0,2017,August,34,25,0,1,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,225,0,0,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,212,2017,August,34,21,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,156.25,0,1,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,203,2017,August,33,19,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,184.5,0,2,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,203,2017,August,33,19,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,2,No Deposit , 314, NULL,0,Transient,184.5,0,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,203,2017,August,33,19,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,187.14,0,1,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,7,2017,August,34,21,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,1,2017,August,34,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,D,0,No Deposit , 241, NULL,0,Transient,154,0,1,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,215,2017,August,33,19,2,5,2,0,1,FB,PRT,Direct,Direct, 0,0,0,A,A,3,No Deposit , 250, NULL,0,Transient-Party,184.54,0,3,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,215,2017,August,33,19,2,5,2,0,1,FB,PRT,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient-Party,184.54,0,2,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,235,2017,August,34,20,2,4,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 15, NULL,0,Transient,177.6,1,2,Check-Out,2017-08-26,Summer,2017-08-20T07:00Z +Keep,83,2017,August,34,21,1,4,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,310,0,0,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,83,2017,August,34,21,1,4,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 196, NULL,0,Transient,310,0,0,Check-Out,2017-08-26,Summer,2017-08-21T07:00Z +Keep,0,2017,August,34,25,0,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,116.61,0,0,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,122,2017,August,33,19,2,5,3,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,4,No Deposit , 181, NULL,0,Transient-Party,253.8,0,0,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,144,2017,August,33,19,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.21,0,0,Check-Out,2017-08-26,Summer,2017-08-19T07:00Z +Keep,1,2017,August,34,25,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,171.5,0,1,Check-Out,2017-08-26,Summer,2017-08-25T07:00Z +Keep,0,2017,August,34,26,0,1,2,0,0,BB,PRT,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,200,0,1,Check-Out,2017-08-27,Summer,2017-08-26T07:00Z +Keep,207,2017,August,34,22,0,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,162,0,1,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,324,2017,August,33,13,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,134.85,0,0,Check-Out,2017-08-27,Summer,2017-08-13T07:00Z +Keep,315,2017,August,33,14,3,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,134.85,0,0,Check-Out,2017-08-27,Summer,2017-08-14T07:00Z +Keep,71,2017,August,34,23,0,4,2,0,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,228.84,0,0,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,327,2017,August,33,17,2,8,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 196, NULL,0,Transient,142.58,1,2,Check-Out,2017-08-27,Summer,2017-08-17T07:00Z +Keep,134,2017,August,34,22,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,225,0,2,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,134,2017,August,34,22,0,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,239,0,2,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,48,2017,August,34,21,1,5,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,262.5,0,1,Check-Out,2017-08-27,Summer,2017-08-21T07:00Z +Keep,62,2017,August,34,20,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,182.5,0,1,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,29,2017,August,34,20,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,164.71,0,0,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,7,2017,August,34,25,0,2,3,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,222,0,1,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,296,2017,August,34,20,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,143.73,1,0,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,42,2017,August,34,23,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,262,0,1,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,0,2017,August,34,26,0,1,2,0,0,BB,ITA,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,230,0,1,Check-Out,2017-08-27,Summer,2017-08-26T07:00Z +Keep,2,2017,August,34,25,0,2,1,0,0,BB,DEU,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,220,0,1,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,83,2017,August,34,20,2,5,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 196, NULL,0,Transient,291.43,1,0,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,33,2017,August,34,24,0,3,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,315,1,2,Check-Out,2017-08-27,Summer,2017-08-24T07:00Z +Keep,12,2017,August,33,13,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, 40,0,Contract,135,0,1,Check-Out,2017-08-27,Summer,2017-08-13T07:00Z +Keep,129,2017,August,34,20,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 181, NULL,0,Transient,227.06,0,2,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,58,2017,August,34,23,0,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 175, NULL,0,Transient,239.6,0,0,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,26,2017,August,34,21,1,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,1,Check-Out,2017-08-27,Summer,2017-08-21T07:00Z +Keep,306,2017,August,34,24,0,3,3,1,0,HB,POL,Online travel agent,TA/TO, 0,0,0,H,H,0,No Deposit , 240, NULL,0,Transient,311,0,1,Check-Out,2017-08-27,Summer,2017-08-24T07:00Z +Keep,2,2017,August,34,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,196.25,0,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,263,2017,August,33,19,2,6,2,1,0,HB,GBR,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,208.02,0,1,Check-Out,2017-08-27,Summer,2017-08-19T07:00Z +Keep,220,2017,August,34,22,0,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,2,No Deposit , 240, NULL,0,Transient,258,0,1,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,220,2017,August,34,23,0,4,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,123.77,0,1,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,227,2017,August,34,20,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,180.18,0,0,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,4,2017,August,34,25,0,2,2,0,1,BB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 240, NULL,0,Transient,220,0,3,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,31,2017,August,34,20,2,5,3,0,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 11, NULL,0,Transient,190.35,0,1,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,23,2017,August,34,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,240,0,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,5,2017,August,34,25,0,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,274,1,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,0,2017,August,34,25,0,2,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,188,0,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,4,2017,August,34,25,0,2,2,0,0,BB,ROU,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,214,0,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,200,2017,August,34,22,0,5,2,1,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,220.75,1,0,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,204,2017,August,34,23,0,4,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,160,0,1,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,177,2017,August,33,19,2,6,2,2,0,HB,PRT,Direct,Direct, 0,0,0,C,C,1,No Deposit , NULL, NULL,0,Transient,248.5,1,3,Check-Out,2017-08-27,Summer,2017-08-19T07:00Z +Keep,0,2017,August,34,26,0,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,235,0,0,Check-Out,2017-08-27,Summer,2017-08-26T07:00Z +Keep,12,2017,August,34,22,0,5,2,1,0,HB,LTU,Online travel agent,TA/TO, 0,0,0,A,B,1,No Deposit , 241, NULL,0,Transient,194.64,0,1,Check-Out,2017-08-27,Summer,2017-08-22T07:00Z +Keep,60,2017,August,34,25,0,2,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 240, NULL,0,Transient,230,0,2,Check-Out,2017-08-27,Summer,2017-08-25T07:00Z +Keep,64,2017,August,34,23,0,4,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,265,0,1,Check-Out,2017-08-27,Summer,2017-08-23T07:00Z +Keep,191,2017,August,34,20,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,121.5,0,2,Check-Out,2017-08-27,Summer,2017-08-20T07:00Z +Keep,0,2017,August,35,27,1,0,2,2,0,BB,CHE,Direct,Direct, 0,0,0,H,H,1,No Deposit , NULL, NULL,0,Transient,220.5,1,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,11,2017,August,34,24,1,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 241, NULL,0,Transient,157.42,0,1,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,49,2017,August,34,25,1,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,157.99,0,1,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,221,2017,August,34,21,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 241, NULL,0,Transient,187.88,0,1,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,154,2017,August,34,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 40, NULL,0,Contract,132.86,0,1,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,126,2017,August,34,21,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,167,0,1,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,136,2017,August,34,21,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,199,2017,August,33,18,3,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,132.85,0,0,Check-Out,2017-08-28,Summer,2017-08-18T07:00Z +Keep,218,2017,August,34,22,1,5,2,0,0,HB,IRL,Direct,Direct, 0,0,0,A,A,1,No Deposit , 250, NULL,0,Transient,170.38,0,1,Check-Out,2017-08-28,Summer,2017-08-22T07:00Z +Keep,140,2017,August,34,21,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,166.91,0,0,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,20,2017,August,34,21,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,189,2017,August,34,21,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,0,2,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,220,2017,August,35,27,1,0,1,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,220,2017,August,35,27,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,220,2017,August,35,27,1,0,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,220,2017,August,35,27,1,0,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,58,2017,August,34,25,1,2,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,195,0,2,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,0,2017,August,35,27,1,0,2,0,0,BB,CHE,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,185,1,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,0,2017,August,35,28,1,0,2,0,0,BB,CHE,Direct,Direct, 1,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,194,1,0,Check-Out,2017-08-29,Summer,2017-08-28T07:00Z +Keep,30,2017,August,34,23,1,4,2,0,0,BB,DEU,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,251,1,1,Check-Out,2017-08-28,Summer,2017-08-23T07:00Z +Keep,220,2017,August,35,27,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 251, NULL,0,Transient-Party,128.7,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,2,2017,August,34,25,1,2,2,0,0,HB,BRA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,227.81,0,0,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,2,2017,August,34,25,1,2,2,0,0,HB,PAK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 314, NULL,0,Transient-Party,243.81,1,0,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,13,2017,August,34,26,1,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,292,0,3,Check-Out,2017-08-28,Summer,2017-08-26T07:00Z +Keep,30,2017,August,34,26,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,C,1,No Deposit , 241, NULL,0,Transient,182,1,1,Check-Out,2017-08-28,Summer,2017-08-26T07:00Z +Keep,22,2017,August,34,25,1,2,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient-Party,314.67,0,2,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,22,2017,August,34,25,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient-Party,302.67,0,2,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,261,2017,August,34,24,1,3,3,0,0,HB,POL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,C,1,No Deposit , 315, NULL,0,Contract,175.56,0,0,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,25,2017,August,34,22,1,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,279.33,1,3,Check-Out,2017-08-28,Summer,2017-08-22T07:00Z +Keep,34,2017,August,34,22,1,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,253.65,0,1,Check-Out,2017-08-28,Summer,2017-08-22T07:00Z +Keep,0,2017,August,35,27,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,225,2017,August,34,22,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,138.38,0,0,Check-Out,2017-08-28,Summer,2017-08-22T07:00Z +Keep,315,2017,August,34,21,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 196, NULL,0,Transient,282.03,1,1,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,33,2017,August,34,21,2,5,3,0,0,BB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,282.32,0,1,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,27,2017,August,34,21,2,5,3,0,0,BB,ESP,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,326.71,1,2,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,203,2017,August,34,21,2,5,2,0,0,Undefined,ESP,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,240.8,0,3,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,0,2017,August,35,27,1,0,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,185,0,0,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,6,2017,August,34,24,1,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,E,0,No Deposit , 240, NULL,0,Transient,267,0,2,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,36,2017,August,34,25,1,2,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 5, NULL,0,Transient,259,0,0,Check-Out,2017-08-28,Summer,2017-08-25T07:00Z +Keep,17,2017,August,35,28,1,3,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 5, NULL,0,Transient,248.29,0,0,Check-Out,2017-09-01,Summer,2017-08-28T07:00Z +Keep,102,2017,August,34,21,2,5,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 196, NULL,0,Transient,281.43,1,0,Check-Out,2017-08-28,Summer,2017-08-21T07:00Z +Keep,5,2017,August,34,24,1,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,269,0,3,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,43,2017,August,34,24,1,3,2,1,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,293,0,3,Check-Out,2017-08-28,Summer,2017-08-24T07:00Z +Keep,3,2017,August,35,27,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 330, NULL,0,Transient-Party,75,0,1,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,3,2017,August,35,27,1,0,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,75,0,2,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,3,2017,August,35,27,1,0,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,D,0,No Deposit , 330, NULL,0,Transient-Party,80,0,2,Check-Out,2017-08-28,Summer,2017-08-27T07:00Z +Keep,34,2017,August,34,23,2,4,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,D,A,0,No Deposit , 241, NULL,0,Transient,207.52,0,1,Check-Out,2017-08-29,Summer,2017-08-23T07:00Z +Keep,92,2017,August,34,23,2,4,3,2,0,BB,USA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,328.33,0,2,Check-Out,2017-08-29,Summer,2017-08-23T07:00Z +Keep,39,2017,August,34,26,2,1,2,0,0,BB,CHL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,217.33,0,2,Check-Out,2017-08-29,Summer,2017-08-26T07:00Z +Keep,0,2017,August,35,27,2,0,2,0,0,BB,HRV,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,244,1,0,Check-Out,2017-08-29,Summer,2017-08-27T07:00Z +Keep,250,2017,August,34,23,2,4,2,1,0,HB,ESP,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,266.43,1,2,Check-Out,2017-08-29,Summer,2017-08-23T07:00Z +Keep,204,2017,August,34,26,2,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,168.6,0,2,Check-Out,2017-08-29,Summer,2017-08-26T07:00Z +Keep,126,2017,August,34,24,2,3,3,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,204,0,2,Check-Out,2017-08-29,Summer,2017-08-24T07:00Z +Keep,204,2017,August,34,26,2,1,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient-Party,168.6,0,2,Check-Out,2017-08-29,Summer,2017-08-26T07:00Z +Keep,23,2017,August,34,26,2,1,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,168,0,1,Check-Out,2017-08-29,Summer,2017-08-26T07:00Z +Keep,10,2017,August,34,23,2,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,I,0,No Deposit , 240, NULL,0,Transient,225.67,0,2,Check-Out,2017-08-29,Summer,2017-08-23T07:00Z +Keep,1,2017,August,35,29,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,204,0,2,Check-Out,2017-08-30,Summer,2017-08-29T07:00Z +Keep,204,2017,August,34,26,2,1,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,181.8,0,1,Check-Out,2017-08-29,Summer,2017-08-26T07:00Z +Keep,34,2017,August,34,22,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,F,1,No Deposit , 242, NULL,0,Transient,330.57,0,2,Check-Out,2017-08-29,Summer,2017-08-22T07:00Z +Keep,9,2017,August,34,22,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210,0,2,Check-Out,2017-08-29,Summer,2017-08-22T07:00Z +Keep,184,2017,August,34,20,4,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,207.5,0,2,Check-Out,2017-08-29,Summer,2017-08-20T07:00Z +Keep,184,2017,August,34,20,4,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,257.5,0,2,Check-Out,2017-08-29,Summer,2017-08-20T07:00Z +Keep,184,2017,August,34,20,4,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,235,0,3,Check-Out,2017-08-29,Summer,2017-08-20T07:00Z +Keep,21,2017,August,34,25,2,2,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,224,0,2,Check-Out,2017-08-29,Summer,2017-08-25T07:00Z +Keep,191,2017,August,34,20,4,5,2,0,0,SC,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,I,2,No Deposit , 243, NULL,0,Contract,1.56,0,2,Check-Out,2017-08-29,Summer,2017-08-20T07:00Z +Keep,191,2017,August,33,16,4,10,2,2,0,BB,ARG,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 526, NULL,0,Transient,144,0,0,Check-Out,2017-08-30,Summer,2017-08-16T07:00Z +Keep,228,2017,August,34,23,2,5,2,0,1,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 240, NULL,0,Transient-Party,185.46,0,3,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,228,2017,August,34,23,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,185.46,0,2,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,41,2017,August,34,26,2,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,266,1,2,Check-Out,2017-08-30,Summer,2017-08-26T07:00Z +Keep,202,2017,August,34,21,3,6,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 314, NULL,0,Transient,196.5,1,0,Check-Out,2017-08-30,Summer,2017-08-21T07:00Z +Keep,76,2017,August,34,23,2,5,1,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,231.69,0,1,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,163,2017,August,35,27,2,1,2,2,0,BB,CN,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,246,1,1,Check-Out,2017-08-30,Summer,2017-08-27T07:00Z +Keep,26,2017,August,34,24,2,4,3,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,350.75,0,1,Check-Out,2017-08-30,Summer,2017-08-24T07:00Z +Keep,155,2017,August,34,25,2,3,2,1,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,236.85,0,3,Check-Out,2017-08-30,Summer,2017-08-25T07:00Z +Keep,85,2017,August,35,27,2,1,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,236,1,2,Check-Out,2017-08-30,Summer,2017-08-27T07:00Z +Keep,40,2017,August,35,28,1,1,2,1,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,204.16,0,3,Check-Out,2017-08-30,Summer,2017-08-28T07:00Z +Keep,125,2017,August,35,28,1,1,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,204,0,1,Check-Out,2017-08-30,Summer,2017-08-28T07:00Z +Keep,125,2017,August,35,28,1,1,2,2,0,BB,USA,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 241, NULL,0,Transient,228.89,0,1,Check-Out,2017-08-30,Summer,2017-08-28T07:00Z +Keep,106,2017,August,34,23,2,5,3,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,224.25,0,0,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,26,2017,August,34,25,2,3,2,1,1,HB,PRT,Direct,Direct, 0,0,0,D,D,2,No Deposit , 250, NULL,0,Transient,292.5,0,2,Check-Out,2017-08-30,Summer,2017-08-25T07:00Z +Keep,28,2017,August,35,27,2,1,2,0,0,BB,BEL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,204,1,2,Check-Out,2017-08-30,Summer,2017-08-27T07:00Z +Keep,73,2017,August,34,26,2,2,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,167.2,0,1,Check-Out,2017-08-30,Summer,2017-08-26T07:00Z +Keep,165,2017,August,34,20,4,6,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,172.4,0,1,Check-Out,2017-08-30,Summer,2017-08-20T07:00Z +Keep,268,2017,August,34,20,4,6,2,2,0,HB,POL,Direct,Direct, 0,0,0,G,G,1,No Deposit , 250, NULL,0,Transient,275.4,0,2,Check-Out,2017-08-30,Summer,2017-08-20T07:00Z +Keep,69,2017,August,35,27,2,1,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,190,0,2,Check-Out,2017-08-30,Summer,2017-08-27T07:00Z +Keep,47,2017,August,34,23,2,5,3,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,1,No Deposit , 479, NULL,0,Transient,234.18,0,0,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,6,2017,August,35,27,2,1,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,344.67,0,2,Check-Out,2017-08-30,Summer,2017-08-27T07:00Z +Keep,23,2017,August,34,23,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 479, NULL,0,Transient,146.5,0,1,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,31,2017,August,34,23,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,229.19,0,1,Check-Out,2017-08-30,Summer,2017-08-23T07:00Z +Keep,228,2017,August,35,30,0,3,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,C,3,No Deposit , 250, NULL,0,Transient,28,0,1,Check-Out,2017-09-02,Summer,2017-08-30T07:00Z +Keep,64,2017,August,35,28,1,1,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,E,0,No Deposit , 240, NULL,0,Transient,185,0,1,Check-Out,2017-08-30,Summer,2017-08-28T07:00Z +Keep,0,2017,August,35,30,0,0,2,0,0,BB,PRT,Online travel agent,TA/TO, 1,0,0,A,A,0,No Deposit , 306, NULL,0,Transient,0,0,0,Check-Out,2017-08-30,Summer,2017-08-30T07:00Z +Keep,148,2017,August,34,24,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 243, NULL,0,Transient,123.5,0,0,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,99,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,176,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104.85,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,176,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,104.85,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,269,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,3,2017,August,35,28,1,2,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,235.8,0,2,Check-Out,2017-08-31,Summer,2017-08-28T07:00Z +Keep,112,2017,August,34,24,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,146.5,0,3,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,112,2017,August,34,24,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,131.5,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,14,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,14,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,135,0,0,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,172,2017,August,34,24,2,5,2,0,0,BB,ITA,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,205,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,0,2017,August,35,30,0,1,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,175,0,1,Check-Out,2017-08-31,Summer,2017-08-30T07:00Z +Keep,8,2017,August,35,30,0,1,1,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,A,E,0,No Deposit , 104, NULL,0,Transient,166.5,0,0,Check-Out,2017-08-31,Summer,2017-08-30T07:00Z +Keep,308,2017,August,34,24,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Transient,125.3,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,308,2017,August,34,24,2,5,1,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 115, NULL,0,Group,125.3,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,407,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,121.5,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,407,2017,August,34,24,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Contract,121.5,0,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,81,2017,August,35,27,2,2,2,2,0,Undefined,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,351,1,2,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,155,2017,August,34,24,2,5,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,208.03,1,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,162,2017,August,34,24,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,152.43,1,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,211,2017,August,34,22,2,7,2,0,0,BB,EST,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,124.54,0,1,Check-Out,2017-08-31,Summer,2017-08-22T07:00Z +Keep,191,2017,August,34,24,2,5,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,I,1,No Deposit , 196, NULL,0,Transient,169.98,1,2,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,29,2017,August,35,31,0,1,2,1,0,Undefined,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 96, NULL,0,Group,204,1,2,Check-Out,2017-09-01,Summer,2017-08-31T07:00Z +Keep,155,2017,August,34,24,2,5,2,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 15, NULL,0,Transient,220.53,1,3,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,162,2017,August,34,24,2,5,2,1,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 6, NULL,0,Transient,173,0,1,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,0,2017,August,35,30,0,1,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient,210,0,0,Check-Out,2017-08-31,Summer,2017-08-30T07:00Z +Keep,34,2017,August,34,24,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,256,1,3,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,59,2017,August,34,26,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,4,Check-Out,2017-08-31,Summer,2017-08-26T07:00Z +Keep,7,2017,August,34,25,2,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,190.27,0,1,Check-Out,2017-08-31,Summer,2017-08-25T07:00Z +Keep,28,2017,August,35,28,1,2,2,0,0,HB,LUX,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,276,1,2,Check-Out,2017-08-31,Summer,2017-08-28T07:00Z +Keep,4,2017,August,35,27,2,2,2,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,210,0,2,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,123,2017,August,35,27,2,2,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,118.5,0,0,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,185,2017,August,35,27,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 410, NULL,0,Transient,116.5,0,2,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,229,2017,August,35,27,2,2,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,B,0,No Deposit , 410, NULL,0,Transient,104.85,0,0,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,26,2017,August,35,27,2,2,1,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,197,0,3,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,12,2017,August,34,26,2,3,3,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,4,No Deposit , 250, NULL,0,Transient,295,0,1,Check-Out,2017-08-31,Summer,2017-08-26T07:00Z +Keep,66,2017,August,34,24,2,5,3,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 468, NULL,0,Transient,276.46,0,0,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,56,2017,August,35,27,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient-Party,242,0,3,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,56,2017,August,35,27,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,222,0,3,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,56,2017,August,35,27,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient-Party,262,0,3,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,56,2017,August,35,27,2,2,2,0,0,HB,CHE,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,222,0,3,Check-Out,2017-08-31,Summer,2017-08-27T07:00Z +Keep,5,2017,August,35,30,0,1,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,171,0,1,Check-Out,2017-08-31,Summer,2017-08-30T07:00Z +Keep,10,2017,August,35,31,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,175,0,2,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,59,2017,August,34,26,2,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,230,0,4,Check-Out,2017-08-31,Summer,2017-08-26T07:00Z +Keep,28,2017,August,35,28,1,2,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient-Party,262,0,2,Check-Out,2017-08-31,Summer,2017-08-28T07:00Z +Keep,34,2017,August,34,24,2,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,F,F,0,No Deposit , NULL, NULL,0,Transient,256,0,3,Check-Out,2017-08-31,Summer,2017-08-24T07:00Z +Keep,56,2017,August,35,28,1,2,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 175, NULL,0,Transient,191.6,1,0,Check-Out,2017-08-31,Summer,2017-08-28T07:00Z +Keep,0,2017,August,35,30,0,2,1,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 306, NULL,0,Transient,104.55,0,0,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,169,2017,August,34,25,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,123.5,0,0,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,23,2017,August,35,31,0,1,2,0,0,BB,RUS,Online travel agent,TA/TO, 0,0,0,E,F,0,No Deposit , 240, NULL,0,Transient,217,0,2,Check-Out,2017-09-01,Summer,2017-08-31T07:00Z +Keep,238,2017,August,34,25,2,5,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 314, NULL,0,Transient,134.1,0,0,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,172,2017,August,34,25,2,5,2,0,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,2,No Deposit , 5, NULL,0,Transient,202,0,0,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,3,2017,August,35,30,0,2,1,0,0,BB,PRT,Direct,Direct, 0,0,0,E,F,0,No Deposit , NULL, NULL,0,Transient,217,0,1,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,8,2017,August,35,30,0,2,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,266.06,1,0,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,19,2017,August,35,30,0,2,1,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,153,0,1,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,19,2017,August,35,30,0,2,2,0,0,BB,BRA,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 241, NULL,0,Transient,139,0,1,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,21,2017,August,35,30,0,2,2,1,0,BB,USA,Online travel agent,TA/TO, 0,0,0,A,G,1,No Deposit , 241, NULL,0,Transient,186,0,2,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,4,2017,August,34,25,2,5,2,1,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 241, NULL,0,Transient,219.03,0,1,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,50,2017,August,34,22,2,8,2,0,0,BB,CHE,Direct,Direct, 0,0,0,D,A,0,No Deposit , 250, NULL,0,Transient,241.75,1,1,Check-Out,2017-09-01,Summer,2017-08-22T07:00Z +Keep,108,2017,August,34,22,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 26, NULL,0,Transient,208.28,0,0,Check-Out,2017-09-01,Summer,2017-08-22T07:00Z +Keep,190,2017,August,34,22,2,8,2,0,0,BB,FRA,Online travel agent,TA/TO, 0,0,0,E,E,2,No Deposit , 240, NULL,0,Transient,207.4,0,1,Check-Out,2017-09-01,Summer,2017-08-22T07:00Z +Keep,31,2017,August,35,28,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196.75,1,2,Check-Out,2017-09-01,Summer,2017-08-28T07:00Z +Keep,1,2017,August,35,28,1,3,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,212.5,0,3,Check-Out,2017-09-01,Summer,2017-08-28T07:00Z +Keep,3,2017,August,34,26,2,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,1,No Deposit , 250, NULL,0,Transient,252.57,1,2,Check-Out,2017-09-01,Summer,2017-08-26T07:00Z +Keep,43,2017,August,35,30,0,2,2,0,0,BB,GBR,Direct,Direct, 0,0,0,A,A,2,No Deposit , 250, NULL,0,Transient,177.75,0,1,Check-Out,2017-09-01,Summer,2017-08-30T07:00Z +Keep,82,2017,August,35,29,0,3,2,0,0,BB,SWE,Online travel agent,TA/TO, 0,0,0,E,E,1,No Deposit , 240, NULL,0,Transient,230,0,3,Check-Out,2017-09-01,Summer,2017-08-29T07:00Z +Keep,42,2017,August,34,23,2,7,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 314, NULL,0,Transient,205.18,0,0,Check-Out,2017-09-01,Summer,2017-08-23T07:00Z +Keep,128,2017,August,34,25,2,5,2,2,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,308.57,0,2,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,37,2017,August,34,26,2,4,2,0,0,HB,ESP,Direct,Direct, 0,0,0,E,E,1,No Deposit , 250, NULL,0,Transient,277.67,1,1,Check-Out,2017-09-01,Summer,2017-08-26T07:00Z +Keep,21,2017,August,34,25,2,5,2,1,0,BB,MAR,Online travel agent,TA/TO, 0,0,0,E,E,3,No Deposit , 240, NULL,0,Transient,277.71,1,3,Check-Out,2017-09-01,Summer,2017-08-25T07:00Z +Keep,74,2017,August,35,28,1,4,2,0,0,BB,SVK,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,199.4,1,2,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,222,2017,August,34,24,2,7,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,106.64,0,1,Check-Out,2017-09-02,Summer,2017-08-24T07:00Z +Keep,5,2017,August,34,26,2,5,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,G,G,0,No Deposit , 240, NULL,0,Transient,336.57,1,2,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,5,2017,August,35,28,1,4,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,218,0,2,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,142,2017,August,34,26,2,5,2,2,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,289.86,0,2,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,162,2017,August,33,19,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,135,0,0,Check-Out,2017-09-02,Summer,2017-08-19T07:00Z +Keep,142,2017,August,34,26,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,169,0,0,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,277,2017,August,34,26,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,E,E,0,No Deposit , NULL, NULL,0,Transient,182.06,0,2,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,0,2017,August,35,31,0,2,4,0,0,BB,ITA,Direct,Direct, 0,0,0,H,H,0,No Deposit , 250, NULL,0,Transient,244,1,0,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,115,2017,August,35,28,1,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,3,No Deposit , 6, NULL,0,Transient,207,1,1,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,115,2017,August,35,28,1,4,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 6, NULL,0,Transient,191,0,1,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,75,2017,August,35,30,0,3,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,160.33,1,0,Check-Out,2017-09-02,Summer,2017-08-30T07:00Z +Keep,30,2017,August,35,31,0,2,2,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,142,0,4,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,236,2017,August,34,26,2,5,2,0,1,BB,PRT,Direct,Direct, 0,0,0,A,C,1,No Deposit , 250, NULL,0,Transient,124.54,0,2,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,30,2017,August,35,31,0,2,1,0,0,BB,TUR,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,191,1,3,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,0,2017,August,35,28,1,4,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,192.8,0,1,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,30,2017,August,35,29,0,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,196.5,1,2,Check-Out,2017-09-02,Summer,2017-08-29T07:00Z +Keep,128,2017,August,35,28,1,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,237,0,2,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,184,2017,August,34,26,2,5,2,0,1,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,123,1,3,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,184,2017,August,34,26,2,5,2,1,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 96, NULL,0,Transient,153.75,1,3,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,37,2017,August,35,28,1,4,2,2,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,1,No Deposit , 240, NULL,0,Transient,298,1,3,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,10,2017,August,34,26,2,5,2,0,0,BB,CHE,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,176.86,1,1,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,45,2017,August,35,31,0,2,2,0,0,BB,USA,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,214,0,2,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,59,2017,August,35,27,2,4,2,0,0,BB,BGR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,168,0,0,Check-Out,2017-09-02,Summer,2017-08-27T07:00Z +Keep,50,2017,August,35,28,1,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,174.4,0,1,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,217,2017,August,35,29,0,4,3,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 410, NULL,0,Transient,141.55,0,1,Check-Out,2017-09-02,Summer,2017-08-29T07:00Z +Keep,217,2017,August,35,29,0,4,2,0,0,BB,CN,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,2,No Deposit , 410, NULL,0,Transient,106.35,0,1,Check-Out,2017-09-02,Summer,2017-08-29T07:00Z +Keep,40,2017,August,35,31,0,2,2,0,0,BB,NLD,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,180,0,3,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,142,2017,August,34,26,2,5,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 96, NULL,0,Transient,169,0,0,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,6,2017,August,35,29,0,4,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,F,0,No Deposit , 314, NULL,0,Transient,149.45,0,0,Check-Out,2017-09-02,Summer,2017-08-29T07:00Z +Keep,1,2017,August,35,31,0,2,2,0,0,BB,ESP,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,184,1,0,Check-Out,2017-09-02,Summer,2017-08-31T07:00Z +Keep,26,2017,August,34,26,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,166.71,0,0,Check-Out,2017-09-02,Summer,2017-08-26T07:00Z +Keep,140,2017,August,35,28,1,4,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,G,0,No Deposit , 5, NULL,0,Transient,225.2,1,0,Check-Out,2017-09-02,Summer,2017-08-28T07:00Z +Keep,81,2017,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Group,135,0,0,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,63,2017,August,35,28,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,1,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,38,2017,August,35,27,2,5,1,2,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,G,G,1,No Deposit , 240, NULL,0,Transient,284.29,0,1,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,151,2017,August,35,27,2,5,2,0,0,FB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,171.5,0,0,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,178,2017,August,35,27,2,5,3,1,0,FB,PRT,Online travel agent,TA/TO, 0,0,0,H,H,2,No Deposit , 240, NULL,0,Transient,383,1,3,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,95,2017,August,35,27,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,4,No Deposit , 240, NULL,0,Transient,184.29,1,2,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,2,2017,August,35,31,0,3,2,0,0,Undefined,PRT,Direct,Direct, 0,0,0,A,D,2,No Deposit , 250, NULL,0,Transient,245.33,0,2,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,202,2017,August,35,27,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,118.75,0,1,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,51,2017,August,35,28,1,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,3,No Deposit , 15, NULL,0,Transient,161.33,1,1,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,202,2017,August,35,27,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,118.75,0,1,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,46,2017,August,35,31,0,3,2,0,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,127.2,0,1,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,126,2017,August,35,29,0,5,2,0,0,BB,USA,Direct,Direct, 0,0,0,E,E,2,No Deposit , 250, NULL,0,Transient,240.6,1,1,Check-Out,2017-09-03,Summer,2017-08-29T07:00Z +Keep,171,2017,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,131.4,1,0,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,171,2017,August,35,27,2,5,2,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 75, NULL,0,Transient,121.5,0,0,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,2,2017,August,35,31,0,3,2,0,0,BB,PRT,Direct,Direct, 0,0,0,A,F,0,No Deposit , NULL, NULL,0,Transient-Party,174,1,0,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,2,2017,August,35,31,0,3,2,2,0,BB,PRT,Direct,Direct, 0,0,0,C,C,0,No Deposit , NULL, NULL,0,Transient-Party,200,0,2,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,3,2017,August,35,31,0,3,2,0,0,HB,DEU,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,261,1,2,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,95,2017,August,35,28,1,5,2,1,0,BB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,3,No Deposit , 11, NULL,0,Transient,176.25,0,1,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,17,2017,August,35,31,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,207,0,3,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,17,2017,August,35,31,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient-Party,221,0,3,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,193,2017,August,35,28,1,5,2,0,0,BB,PRT,Direct,Direct, 0,0,0,E,G,0,No Deposit , 250, NULL,0,Transient,205.7,1,2,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,15,2017,August,35,30,0,4,3,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,1,No Deposit , 240, NULL,0,Transient,257.75,1,3,Check-Out,2017-09-03,Summer,2017-08-30T07:00Z +Keep,15,2017,August,35,30,0,4,2,0,0,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,210.75,0,3,Check-Out,2017-09-03,Summer,2017-08-30T07:00Z +Keep,111,2017,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,148,0,0,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,97,2017,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,1,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,97,2017,August,35,27,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,1,Check-Out,2017-09-03,Summer,2017-08-27T07:00Z +Keep,13,2017,August,35,28,1,5,2,1,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 242, NULL,0,Transient,250.2,1,3,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,18,2017,August,35,28,1,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,135,0,2,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,43,2017,August,35,30,0,4,2,0,1,HB,PRT,Online travel agent,TA/TO, 0,0,0,A,C,0,No Deposit , 15, NULL,0,Transient,169.6,0,0,Check-Out,2017-09-03,Summer,2017-08-30T07:00Z +Keep,19,2017,August,35,31,0,3,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 15, NULL,0,Transient,165.6,0,0,Check-Out,2017-09-03,Summer,2017-08-31T07:00Z +Keep,9,2017,August,35,28,1,5,2,2,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,232.5,0,2,Check-Out,2017-09-03,Summer,2017-08-28T07:00Z +Keep,161,2017,August,34,23,3,9,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 75, NULL,0,Transient,158.6,0,1,Check-Out,2017-09-04,Summer,2017-08-23T07:00Z +Keep,61,2017,August,35,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 243, NULL,0,Transient,137,0,2,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,34,2017,August,35,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,137,0,0,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,7,2017,August,35,30,1,4,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,192,1,1,Check-Out,2017-09-04,Summer,2017-08-30T07:00Z +Keep,42,2017,August,35,28,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,0,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,153,2017,August,35,28,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,230.43,0,3,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,153,2017,August,35,28,2,5,2,1,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,230.43,0,3,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,153,2017,August,35,28,2,5,2,0,0,HB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , NULL, NULL,0,Transient,204.93,0,3,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,6,2017,August,35,31,1,3,2,1,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,207.5,0,1,Check-Out,2017-09-04,Summer,2017-08-31T07:00Z +Keep,73,2017,August,35,28,2,5,2,0,0,HB,IRL,Online travel agent,TA/TO, 0,0,0,D,D,1,No Deposit , 314, NULL,0,Transient,221.41,0,0,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,27,2017,August,35,28,2,5,2,0,0,BB,CHE,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,234.29,0,1,Check-Out,2017-09-04,Summer,2017-08-28T07:00Z +Keep,34,2017,August,35,29,2,5,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 479, NULL,0,Transient,165,0,0,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,137,2017,August,34,26,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,0,Check-Out,2017-09-05,Summer,2017-08-26T07:00Z +Keep,19,2017,August,35,29,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Transient,135,0,2,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,229,2017,August,35,27,4,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Transient,131.4,0,0,Check-Out,2017-09-05,Summer,2017-08-27T07:00Z +Keep,97,2017,August,35,27,4,5,2,0,0,BB,ESP,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 134, NULL,0,Transient,156,0,0,Check-Out,2017-09-05,Summer,2017-08-27T07:00Z +Keep,51,2017,August,35,31,2,3,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,116.5,0,0,Check-Out,2017-09-05,Summer,2017-08-31T07:00Z +Keep,64,2017,August,35,31,2,3,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,187.19,0,1,Check-Out,2017-09-05,Summer,2017-08-31T07:00Z +Keep,6,2017,August,35,29,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,130.23,0,1,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,117,2017,August,35,29,2,5,2,0,0,BB,ITA,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,152.43,1,0,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,33,2017,August,35,31,2,3,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,154,0,1,Check-Out,2017-09-05,Summer,2017-08-31T07:00Z +Keep,292,2017,August,35,28,3,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,5,No Deposit , 11, NULL,0,Transient-Party,166.6,0,1,Check-Out,2017-09-05,Summer,2017-08-28T07:00Z +Keep,21,2017,August,35,28,3,5,1,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,3,No Deposit , 11, NULL,0,Transient-Party,137,0,2,Check-Out,2017-09-05,Summer,2017-08-28T07:00Z +Keep,293,2017,August,35,29,2,5,2,0,0,HB,ROU,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,5,No Deposit , 11, NULL,0,Transient-Party,166.6,0,1,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,30,2017,August,35,31,2,3,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,149.45,0,1,Check-Out,2017-09-05,Summer,2017-08-31T07:00Z +Keep,48,2017,August,35,29,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,F,F,0,No Deposit , 241, NULL,0,Transient,178.58,0,1,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,137,2017,August,34,26,4,6,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,118.5,0,1,Check-Out,2017-09-05,Summer,2017-08-26T07:00Z +Keep,0,2017,August,35,29,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,186.43,1,2,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,30,2017,August,35,29,2,5,2,1,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 314, NULL,0,Transient,147.01,0,0,Check-Out,2017-09-05,Summer,2017-08-29T07:00Z +Keep,87,2017,August,35,30,2,4,2,0,0,HB,ESP,Online travel agent,TA/TO, 0,0,0,D,I,0,No Deposit , 429, NULL,0,Transient,0,0,0,Check-Out,2017-09-05,Summer,2017-08-30T07:00Z +Keep,191,2017,August,35,28,3,6,2,0,0,BB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 8, NULL,0,Transient,99,0,0,Check-Out,2017-09-06,Summer,2017-08-28T07:00Z +Keep,58,2017,August,35,30,2,5,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,140.57,0,0,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,172,2017,August,35,28,3,6,2,0,0,BB,GBR,Online travel agent,TA/TO, 0,0,0,D,D,0,No Deposit , 240, NULL,0,Transient,195.11,0,2,Check-Out,2017-09-06,Summer,2017-08-28T07:00Z +Keep,20,2017,August,35,30,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Group,92,0,0,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,50,2017,August,35,30,2,5,2,0,0,BB,IRL,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,123.88,0,1,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,25,2017,August,35,30,2,5,2,2,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,C,C,0,No Deposit , 240, NULL,0,Transient,222.86,1,1,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,88,2017,August,34,26,4,7,2,0,0,HB,PRT,Direct,Direct, 0,0,0,A,A,0,No Deposit , NULL, NULL,0,Transient,211.2,0,2,Check-Out,2017-09-06,Summer,2017-08-26T07:00Z +Keep,41,2017,August,35,29,2,6,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 240, NULL,0,Transient,177.5,0,2,Check-Out,2017-09-06,Summer,2017-08-29T07:00Z +Keep,161,2017,August,35,30,2,5,2,0,0,BB,PRT,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,213.43,0,2,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,206,2017,August,35,31,2,4,3,0,0,BB,PRT,Direct,Direct, 0,0,0,D,D,0,No Deposit , 250, NULL,0,Transient,209.67,1,1,Check-Out,2017-09-06,Summer,2017-08-31T07:00Z +Keep,138,2017,August,35,30,2,5,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 436, NULL,0,Transient,99,0,0,Check-Out,2017-09-06,Summer,2017-08-30T07:00Z +Keep,43,2017,August,35,31,2,4,1,0,0,BB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 6, NULL,0,Transient,158.53,0,0,Check-Out,2017-09-06,Summer,2017-08-31T07:00Z +Keep,151,2017,August,35,31,2,5,2,0,0,BB,IRL,Direct,Direct, 0,0,0,A,A,0,No Deposit , 250, NULL,0,Transient,167.43,0,0,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,135,2017,August,35,30,2,6,2,0,0,HB,BEL,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 479, NULL,0,Group,122,0,2,Check-Out,2017-09-07,Summer,2017-08-30T07:00Z +Keep,301,2017,August,35,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 143, NULL,0,Transient,110.8,0,2,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,21,2017,August,35,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,101.7,0,2,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,379,2017,August,34,24,4,10,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,72.2,0,1,Check-Out,2017-09-07,Summer,2017-08-24T07:00Z +Keep,279,2017,August,35,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.2,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,21,2017,August,35,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 40, NULL,0,Contract,101.7,0,2,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,279,2017,August,35,31,2,5,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 40, NULL,0,Contract,72.2,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,379,2017,August,34,24,4,10,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 243, NULL,0,Contract,87.75,0,3,Check-Out,2017-09-07,Summer,2017-08-24T07:00Z +Keep,191,2017,August,35,31,2,5,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,114.8,0,0,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,108,2017,August,35,31,2,5,2,0,0,HB,GBR,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 241, NULL,0,Transient,207.03,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,194,2017,August,35,31,2,5,2,1,0,HB,ITA,Online travel agent,TA/TO, 0,0,0,G,G,3,No Deposit , 240, NULL,0,Transient,312.29,1,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,227,2017,August,35,31,2,5,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,127.58,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,210,2017,August,35,31,2,5,2,0,0,BB,GBR,Direct,Direct, 0,0,0,F,F,0,No Deposit , 250, NULL,0,Transient,187,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,227,2017,August,35,31,2,5,2,1,0,BB,CN,Online travel agent,TA/TO, 0,0,0,A,A,0,No Deposit , 241, NULL,0,Transient,125.58,0,1,Check-Out,2017-09-07,Summer,2017-08-31T07:00Z +Keep,270,2017,August,34,25,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.8,0,0,Check-Out,2017-09-08,Summer,2017-08-25T07:00Z +Keep,210,2017,August,34,25,4,10,2,0,0,BB,IRL,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 171, NULL,0,Transient,103.7,0,0,Check-Out,2017-09-08,Summer,2017-08-25T07:00Z +Keep,208,2017,August,34,26,4,9,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 177, NULL,0,Transient,101.75,0,0,Check-Out,2017-09-08,Summer,2017-08-26T07:00Z +Keep,214,2017,August,35,29,2,8,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,85.8,0,0,Check-Out,2017-09-08,Summer,2017-08-29T07:00Z +Keep,239,2017,August,35,29,2,9,2,0,0,BB,ESP,Online travel agent,TA/TO, 0,0,0,E,E,0,No Deposit , 240, NULL,0,Transient,184.73,0,2,Check-Out,2017-09-09,Summer,2017-08-29T07:00Z +Keep,217,2017,August,35,31,2,7,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,E,0,No Deposit , 40, NULL,0,Contract,110.8,0,0,Check-Out,2017-09-09,Summer,2017-08-31T07:00Z +Keep,173,2017,August,35,27,4,9,2,0,0,HB,PRT,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,1,No Deposit , 181, NULL,0,Transient-Party,168.92,0,1,Check-Out,2017-09-09,Summer,2017-08-27T07:00Z +Keep,264,2017,August,34,26,4,10,2,0,0,BB,NLD,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,2,No Deposit , 71, NULL,0,Transient,89.79,0,0,Check-Out,2017-09-09,Summer,2017-08-26T07:00Z +Keep,207,2017,August,34,26,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,E,E,0,No Deposit , 143, NULL,0,Transient,131.7,0,2,Check-Out,2017-09-09,Summer,2017-08-26T07:00Z +Keep,269,2017,August,34,24,4,13,2,0,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,84.8,0,2,Check-Out,2017-09-10,Summer,2017-08-24T07:00Z +Keep,169,2017,August,35,30,2,9,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,204.27,0,1,Check-Out,2017-09-10,Summer,2017-08-30T07:00Z +Keep,212,2017,August,35,31,2,8,2,1,0,BB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,1,No Deposit , 143, NULL,0,Transient,89.75,0,0,Check-Out,2017-09-10,Summer,2017-08-31T07:00Z +Keep,169,2017,August,35,30,2,9,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient-Party,202.27,0,1,Check-Out,2017-09-10,Summer,2017-08-30T07:00Z +Keep,204,2017,August,35,29,4,10,2,0,0,BB,IRL,Direct,Direct, 0,0,0,E,E,0,No Deposit , 250, NULL,0,Transient,153.57,0,3,Check-Out,2017-09-12,Summer,2017-08-29T07:00Z +Keep,211,2017,August,35,31,4,10,2,0,0,HB,GBR,Offline travel agent / tour operator,TA/TO, 0,0,0,D,D,0,No Deposit , 40, NULL,0,Contract,112.8,0,1,Check-Out,2017-09-14,Summer,2017-08-31T07:00Z +Keep,161,2017,August,35,31,4,10,2,0,0,HB,DEU,Offline travel agent / tour operator,TA/TO, 0,0,0,A,A,0,No Deposit , 69, NULL,0,Transient,99.06,0,0,Check-Out,2017-09-14,Summer,2017-08-31T07:00Z \ No newline at end of file diff --git a/examples/hotel-bookings/src/index.md b/examples/hotel-bookings/src/index.md new file mode 100644 index 000000000..968fec28c --- /dev/null +++ b/examples/hotel-bookings/src/index.md @@ -0,0 +1,362 @@ +--- +toc: false +theme: [air, ocean-floor, wide] +--- + +# Hotel reservations by market segment + +## Excludes complementary reservations + +```js +import {DonutChart} from "./components/donutChart.js"; +import {bigNumber} from "./components/bigNumber.js"; + +const hotelData = FileAttachment("data/hotelData.csv").csv({typed: true}); +``` + +```js +// Radio button input to choose market segment +const pickMarketSegmentInput = Inputs.radio( + ["All"].concat(hotelData.filter((d) => d.MarketSegment != "Complementary").map((d) => d.MarketSegment)), + { + label: "Booking type:", + value: "All", + unique: true + } +); +const pickMarketSegment = Generators.input(pickMarketSegmentInput); +``` + +${pickMarketSegmentInput} + +## ${pickMarketSegment} bookings + +```js +const countryOrder = ["PRT", "ESP", "GBR", "DEU", "FRA", "IRL", "AUT", "Other", "Unknown"]; + +const countryColors = [ + "#4269d0", + "#efb118", + "#ff725c", + "#6cc5b0", + "#3ca951", + "#ff8ab7", + "#a463f2", + "#97bbf5", + "#9c6b4e" +]; +``` + +
+
+ ${resize(width => DonutChart(byCountry, {centerText: "Guest nationality", width, colorDomain: countryOrder, colorRange: countryColors}))} +
+
+ ${resize(width => DonutChart(byBookingOutcome, {centerText: "Status", width, colorDomain: ["Cancel", "Keep"], colorRange: ["#525252", "#8b8b8b"]}))} +
+
+ ${resize((width) => DonutChart(bookingSeason, {centerText: "Visit season", width, colorDomain: seasonDomain, colorRange: seasonColors}))} +
+
+ ${resize((width) => bigNumber(`Number of bookings, ${pickMarketSegment}`, datesExtent, `${d3.format(",")(bookingsByMarketSegment.length)}`, `${d3.format(".1%")(bookingsByMarketSegment.length / bookingsAll.length)} of all bookings`, width))} +
+
+ ${resize((width) => bigNumber(`Average daily rate`, datesExtent, `$${d3.mean(bookingsByMarketSegment.map((d) => d.ADR)).toFixed(2)}`, `${pickMarketSegment == "All" ? `` : d3.format("$.2f")(Math.abs(rateDiffFromAverage))} ${rateDiffFromAverage > 0 ? `greater than average rate` : rateDiffFromAverage === 0 ? `` : `less than average rate`}`, width))} +
+
+ +
+ ${resize((width, height) => arrivalLineChart(width, height))} +
+ +
+
+

Bookings by room type and season

+

Market segment: ${pickMarketSegment}

+ ${resize((width) => typeSeasonChart(width))} +
+
+

${pickMarketSegment} reservations: rate distribution by season

+ ${resize((width, height) => dailyRateChart(width, height))} +
+
+ +
+
+ ${display(tableSearch)} +
+ ${display(Inputs.table(tableSearchValue, { + columns: [ + "arrivalDate", + "ADR", + "Arrival date", + "ReservedRoomType", + "MarketSegment", + "Country", + "Adults", + "Children", + "LeadTime", + "IsCanceled" + ], + header: + { + arrivalDate: "Arrival date", + ADR: "Average rate", + ReservedRoomType: "Room type", + MarketSegment: "Booking type", + Country: "Guest country", + Adults: "Adults", + Children: "Children", + LeadTime: "Lead time", + IsCanceled: "Status" + }, + width: {arrivalDate: 100}, + format: {arrivalDate: d3.utcFormat("%d %b %Y")} + } + ))} +
+ +**Data source:** Antonio et al (2021). Hotel booking demand datasets. Data in Brief (22): 41-49. https://doi.org/10.1016/j.dib.2018.11.126 + +```js +// Filtered data for selected market segment +const bookingsByMarketSegment = + pickMarketSegment == "All" + ? hotelData.filter((d) => d.MarketSegment != "Complementary") + : hotelData.filter((d) => d.MarketSegment == pickMarketSegment && d.MarketSegment != "Complementary"); + +// All bookings data (except complementary) +const bookingsAll = hotelData.filter((d) => d.MarketSegment != "Complementary"); + +// Bookings by nationality +const bookingCountry = d3 + .rollups( + bookingsByMarketSegment, + (d) => d.length, + (v) => v.Country + ) + .map(([name, value]) => ({name, value})) + .sort((a, b) => d3.descending(a.value, b.value)); + +// Limit to top 5 +const bookingCountryTopN = bookingCountry.slice(0, 5); + +// Bin the rest as "Other" +const bookingCountryOther = { + name: "Other", + value: d3.sum(bookingCountry.slice(5 - bookingCountry.length), (d) => d.value) +}; + +// Combine top 5 countries and "other" for donut chart +const byCountry = bookingCountryTopN.concat(bookingCountryOther); + +//Booking status (cancelled or not cancelled) +const byBookingOutcome = d3 + .rollups( + bookingsByMarketSegment, + (d) => d.length, + (d) => d.IsCanceled + ) + .map(([name, value]) => ({name, value})) + .sort((a, b) => d3.descending(a.value, b.value)); + +// Bookings by room type +const byRoomType = d3 + .rollups( + bookingsByMarketSegment, + (d) => d.length, + (d) => d.ReservedRoomType + ) + .map(([name, value]) => ({name, value})) + .sort((a, b) => d3.descending(a.value, b.value)); + +// Bookings by season +const bookingSeason = d3 + .rollups( + bookingsByMarketSegment, + (d) => d.length, + (v) => v.season + ) + .map(([name, value]) => ({name, value})); + +// Find & format arrival date extent for big number +const arrivalDates = d3.extent(bookingsAll, (d) => d.arrivalDate); + +const datesExtent = [ + d3.timeFormat("%b %d, %Y")(new Date(arrivalDates[0])), + d3.timeFormat("%b %d, %Y")(new Date(arrivalDates[1])) +]; + +// Calculate rate difference from total average for big number +const rateDiffFromAverage = d3.mean(bookingsByMarketSegment, (d) => d.ADR) - d3.mean(bookingsAll, (d) => d.ADR); +``` + +```js +// Create search input (for searchable table) +const tableSearch = Inputs.search(bookingsAll); + +const tableSearchValue = view(tableSearch); +``` + +```js +// Line chart (arrival dates) +let mem; +function firstOrRecent(values) { + return values.length ? (mem = values[0]) : mem; +} +function arrivalLineChart(width, height) { + return Plot.plot({ + height: height - 50, + marginBottom: 35, + width, + x: {label: "Arrival date"}, + y: {label: "Bookings", grid: true}, + color: {domain: seasonDomain, range: seasonColors, label: "Season"}, + title: `${pickMarketSegment} bookings by arrival date`, + subtitle: `Daily reservation counts (gray area) and 28-day moving average (solid line).`, + marks: [ + () => htl.svg` + + + + + `, + Plot.areaY( + bookingsByMarketSegment, + Plot.binX( + {y: "count", thresholds: "day", filter: null}, + { + x: "arrivalDate", + curve: "step", + fill: "url(#gradient)" + } + ) + ), + Plot.lineY( + bookingsByMarketSegment, + Plot.windowY( + {k: 28}, + Plot.binX( + {y: "count", interval: "day", stroke: firstOrRecent, filter: null}, + { + x: "arrivalDate", + strokeWidth: 2, + stroke: "season", + z: null, + tip: { + format: { + arrivalDate: true, + bookings: true, + x: "%d %b %Y" + } + } + } + ) + ) + ), + Plot.ruleY([0]), + Plot.axisX({ticks: 5}), + Plot.axisY({ticks: 5}) + ] + }); +} +``` + +```js +//Create faceted histograms of daily rate + +// Season color scheme +const seasonColors = ["#959C00", "#9C5A00", "#465C9C", "#109F73"]; +const seasonDomain = ["Summer", "Fall", "Winter", "Spring"]; + +// Calculate mean daily rate by season (for rule mark) +const meanRateBySeason = d3 + .rollups( + bookingsByMarketSegment, + (v) => d3.mean(v, (d) => d.ADR), + (d) => d.season + ) + .map(([season, value]) => ({season, value})); + +// Build daily rate faceted histograms +const dollarFormat = d3.format("$.2f"); +const defaultFormat = d3.format(","); +function dailyRateChart(width, height) { + return Plot.plot({ + width, + height: height - 20, + marginLeft: 30, + marginRight: 0, + marginTop: 10, + marginBottom: 30, + x: {label: "Average rate($)", grid: true}, + y: {nice: true, label: null}, + axis: null, + fy: {label: "Season", domain: seasonDomain}, + color: {domain: seasonDomain, range: seasonColors, label: "Season"}, + marks: [ + Plot.axisX({ticks: 4}), + Plot.axisY({ticks: 2}), + Plot.rectY( + bookingsByMarketSegment, + Plot.binX({y: "count"}, {x: "ADR", interval: 10, fill: "season", fy: "season", tip: true}) + ), + Plot.text( + bookingsByMarketSegment, + Plot.groupZ( + {text: (v) => `${v[0].season} (n = ${defaultFormat(v.length)})`}, + { + fy: "season", + frameAnchor: "top-right", + dx: -6, + dy: 6 + } + ) + ), + Plot.ruleX(meanRateBySeason, {x: "value", fy: "season", stroke: "currentColor"}), + Plot.text(meanRateBySeason, { + x: "value", + fy: "season", + text: (d) => `${d.season} mean rate: ${dollarFormat(d.value)}`, + dx: 5, + dy: -20, + textAnchor: "start" + }), + Plot.frame({opacity: 0.4}) + ] + }); +} +``` + +```js +// Faceted bar charts of bookings by room type +function typeSeasonChart(width, height) { + return Plot.plot({ + marginTop: 20, + marginBottom: 30, + marginLeft: 40, + width, + height: 270, + x: {domain: seasonDomain, tickSize: 0, axis: null, label: "Season"}, + y: {label: "Count", fontSize: 0, grid: true, insetTop: 5}, + fx: {label: "Room type"}, + color: {legend: true, domain: seasonDomain, range: seasonColors, label: "Season"}, + marks: [ + Plot.text("ABCDEFGHLP", {fx: Plot.identity, text: null}), + Plot.frame({opacity: 0.4}), + Plot.barY( + bookingsByMarketSegment, + Plot.groupX( + {y: "count"}, + { + x: "season", + fx: "ReservedRoomType", + fill: "season", + tip: true + } + ) + ) + ] + }); +} +``` diff --git a/examples/input-select-file/.gitignore b/examples/input-select-file/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/input-select-file/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/input-select-file/README.md b/examples/input-select-file/README.md new file mode 100644 index 000000000..f1f9653e7 --- /dev/null +++ b/examples/input-select-file/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Selecting files + +View live: + +This is Observable Framework example demonstrates how to select a file from a drop-down menu using Inputs.select. FileAttachment requires a static string literal argument, so the value of the select is a FileAttachment object rather than a string. The source code for this example is in [`src/index.md`](./src/index.md?plain=1). diff --git a/examples/input-select-file/observablehq.config.js b/examples/input-select-file/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/input-select-file/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/input-select-file/package.json b/examples/input-select-file/package.json new file mode 100644 index 000000000..89cc560df --- /dev/null +++ b/examples/input-select-file/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.8.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/input-select-file/src/.gitignore b/examples/input-select-file/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/input-select-file/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/input-select-file/src/data/buy-a-boat-cat.jpg b/examples/input-select-file/src/data/buy-a-boat-cat.jpg new file mode 100644 index 000000000..cc8d9d81d Binary files /dev/null and b/examples/input-select-file/src/data/buy-a-boat-cat.jpg differ diff --git a/examples/input-select-file/src/data/is-this-a-pigeon.jpg b/examples/input-select-file/src/data/is-this-a-pigeon.jpg new file mode 100644 index 000000000..9defd57b6 Binary files /dev/null and b/examples/input-select-file/src/data/is-this-a-pigeon.jpg differ diff --git a/examples/input-select-file/src/data/picard-annoyed.jpg b/examples/input-select-file/src/data/picard-annoyed.jpg new file mode 100644 index 000000000..7b3d4d582 Binary files /dev/null and b/examples/input-select-file/src/data/picard-annoyed.jpg differ diff --git a/examples/input-select-file/src/data/picard-facepalm.jpg b/examples/input-select-file/src/data/picard-facepalm.jpg new file mode 100644 index 000000000..6ebd64201 Binary files /dev/null and b/examples/input-select-file/src/data/picard-facepalm.jpg differ diff --git a/examples/input-select-file/src/index.md b/examples/input-select-file/src/index.md new file mode 100644 index 000000000..7609be495 --- /dev/null +++ b/examples/input-select-file/src/index.md @@ -0,0 +1,24 @@ +# Selecting files + +This example demonstrates how to select a file from a drop-down menu using [`Inputs.select`](https://observablehq.com/framework/inputs/select). `FileAttachment` requires a [static string literal argument](https://observablehq.com/framework/files#static-analysis), so the value of the select is a `FileAttachment` rather than a string. + +```js echo +const file = view(Inputs.select([ + FileAttachment("data/buy-a-boat-cat.jpg"), + FileAttachment("data/is-this-a-pigeon.jpg"), + FileAttachment("data/picard-annoyed.jpg"), + FileAttachment("data/picard-facepalm.jpg") +], { + format: (d) => d.name +})); +``` + +```js echo +file +``` + +To load the file, call the desired contents method. For example, for an image: + +```js echo +file.image({width: 640}) // load the image +``` diff --git a/examples/intersection-observer/.gitignore b/examples/intersection-observer/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/intersection-observer/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/intersection-observer/README.md b/examples/intersection-observer/README.md new file mode 100644 index 000000000..d626f4bc8 --- /dev/null +++ b/examples/intersection-observer/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Scrollytelling with IntersectionObserver + +View live: + +This Observable Framework example demonstrates how to implement scrollytelling using `IntersectionObserver` and `position: sticky`. The implementation is in [`src/index.md`](./src/index.md?plain=1). diff --git a/examples/intersection-observer/observablehq.config.js b/examples/intersection-observer/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/intersection-observer/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/intersection-observer/package.json b/examples/intersection-observer/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/intersection-observer/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/intersection-observer/src/.gitignore b/examples/intersection-observer/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/intersection-observer/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/intersection-observer/src/index.md b/examples/intersection-observer/src/index.md new file mode 100644 index 000000000..a56bda567 --- /dev/null +++ b/examples/intersection-observer/src/index.md @@ -0,0 +1,153 @@ +# Scrollytelling with IntersectionObserver + +This example demonstrates how to implement scrollytelling in Observable Framework using `IntersectionObserver` and `position: sticky`. + + + +
+
+
STEP 1
+
STEP 2
+
STEP 3
+
STEP 4
+
+ +The structure of the HTML is: + +```html run=false +
+
+
STEP 1
+
STEP 2
+
STEP 3
+
STEP 4
+
+``` + +The CSS is: + +```css run=false +.scroll-container { + position: relative; + margin: 1rem auto; + font-family: var(--sans-serif); +} + +.scroll-info { + position: sticky; + aspect-ratio: 16 / 9; + top: calc((100% - 9 / 16 * 100vw) / 2); + margin: 0 auto; + display: flex; + align-items: center; + justify-content: center; + font-size: 64px; + transition: ease background-color 0.5s; + background-color: var(--theme-background-alt); +} + +.scroll-info--step-1 { + background-color: #4269d0; +} + +.scroll-info--step-2 { + background-color: #efb118; +} + +.scroll-info--step-3 { + background-color: #ff725c; +} + +.scroll-info--step-4 { + background-color: #6cc5b0; +} + +.scroll-section { + position: relative; + aspect-ratio: 16 / 9; + margin: 1rem 0; + display: flex; + align-items: start; + justify-content: center; + border: solid 1px var(--theme-foreground-focus); + background: color-mix(in srgb, var(--theme-foreground-focus) 5%, transparent); + padding: 1rem; + box-sizing: border-box; +} +``` + +Lastly, here’s the JavaScript that updates the background: + +```js echo +const info = document.querySelector(".scroll-info"); +const targets = document.querySelectorAll(".scroll-section"); + +const observer = new IntersectionObserver((entries) => { + for (const target of Array.from(targets).reverse()) { + const rect = target.getBoundingClientRect(); + if (rect.top < innerHeight / 2) { + info.textContent = target.dataset.step; + info.className = `scroll-info scroll-info--step-${target.dataset.step}`; + return; + } + } + info.className = "scroll-info"; + info.textContent = "0"; +}, { + rootMargin: "-50% 0% -50% 0%" +}); + +for (const target of targets) observer.observe(target); + +invalidation.then(() => observer.disconnect()); +``` diff --git a/examples/loader-airtable/README.md b/examples/loader-airtable/README.md new file mode 100644 index 000000000..27af460c8 --- /dev/null +++ b/examples/loader-airtable/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Airtable data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that uses [Airtable](https://airtable.com/) as a backend. The data loader lives in [`src/data/penguins.csv.ts`](./src/data/penguins.csv.ts). diff --git a/examples/loader-airtable/observablehq.config.js b/examples/loader-airtable/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-airtable/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-airtable/package.json b/examples/loader-airtable/package.json new file mode 100644 index 000000000..0876fb980 --- /dev/null +++ b/examples/loader-airtable/package.json @@ -0,0 +1,22 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "airtable": "^0.12.2", + "dotenv": "^16.4.5" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-airtable/src/.gitignore b/examples/loader-airtable/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-airtable/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-airtable/src/data/penguins.csv b/examples/loader-airtable/src/data/penguins.csv new file mode 100644 index 000000000..a1c6de8d4 --- /dev/null +++ b/examples/loader-airtable/src/data/penguins.csv @@ -0,0 +1,345 @@ +sex,body_mass_g,culmen_length_mm,culmen_depth_mm,id,flipper_length_mm,island,species +MALE,3750,39.1,18.7,1,181,Torgersen,Adelie +FEMALE,3800,39.5,17.4,2,186,Torgersen,Adelie +FEMALE,3250,40.3,18,3,195,Torgersen,Adelie +,,,,4,,Torgersen,Adelie +FEMALE,3450,36.7,19.3,5,193,Torgersen,Adelie +MALE,3650,39.3,20.6,6,190,Torgersen,Adelie +FEMALE,3625,38.9,17.8,7,181,Torgersen,Adelie +MALE,4675,39.2,19.6,8,195,Torgersen,Adelie +,3475,34.1,18.1,9,193,Torgersen,Adelie +,4250,42,20.2,10,190,Torgersen,Adelie +,3300,37.8,17.1,11,186,Torgersen,Adelie +,3700,37.8,17.3,12,180,Torgersen,Adelie +FEMALE,3200,41.1,17.6,13,182,Torgersen,Adelie +MALE,3800,38.6,21.2,14,191,Torgersen,Adelie +MALE,4400,34.6,21.1,15,198,Torgersen,Adelie +FEMALE,3700,36.6,17.8,16,185,Torgersen,Adelie +FEMALE,3450,38.7,19,17,195,Torgersen,Adelie +MALE,4500,42.5,20.7,18,197,Torgersen,Adelie +FEMALE,3325,34.4,18.4,19,184,Torgersen,Adelie +MALE,4200,46,21.5,20,194,Torgersen,Adelie +FEMALE,3400,37.8,18.3,21,174,Biscoe,Adelie +MALE,3600,37.7,18.7,22,180,Biscoe,Adelie +FEMALE,3800,35.9,19.2,23,189,Biscoe,Adelie +MALE,3950,38.2,18.1,24,185,Biscoe,Adelie +MALE,3800,38.8,17.2,25,180,Biscoe,Adelie +FEMALE,3800,35.3,18.9,26,187,Biscoe,Adelie +MALE,3550,40.6,18.6,27,183,Biscoe,Adelie +FEMALE,3200,40.5,17.9,28,187,Biscoe,Adelie +FEMALE,3150,37.9,18.6,29,172,Biscoe,Adelie +MALE,3950,40.5,18.9,30,180,Biscoe,Adelie +FEMALE,3250,39.5,16.7,31,178,Dream,Adelie +MALE,3900,37.2,18.1,32,178,Dream,Adelie +FEMALE,3300,39.5,17.8,33,188,Dream,Adelie +MALE,3900,40.9,18.9,34,184,Dream,Adelie +FEMALE,3325,36.4,17,35,195,Dream,Adelie +MALE,4150,39.2,21.1,36,196,Dream,Adelie +MALE,3950,38.8,20,37,190,Dream,Adelie +FEMALE,3550,42.2,18.5,38,180,Dream,Adelie +FEMALE,3300,37.6,19.3,39,181,Dream,Adelie +MALE,4650,39.8,19.1,40,184,Dream,Adelie +FEMALE,3150,36.5,18,41,182,Dream,Adelie +MALE,3900,40.8,18.4,42,195,Dream,Adelie +FEMALE,3100,36,18.5,43,186,Dream,Adelie +MALE,4400,44.1,19.7,44,196,Dream,Adelie +FEMALE,3000,37,16.9,45,185,Dream,Adelie +MALE,4600,39.6,18.8,46,190,Dream,Adelie +MALE,3425,41.1,19,47,182,Dream,Adelie +,2975,37.5,18.9,48,179,Dream,Adelie +FEMALE,3450,36,17.9,49,190,Dream,Adelie +MALE,4150,42.3,21.2,50,191,Dream,Adelie +FEMALE,3500,39.6,17.7,51,186,Biscoe,Adelie +MALE,4300,40.1,18.9,52,188,Biscoe,Adelie +FEMALE,3450,35,17.9,53,190,Biscoe,Adelie +MALE,4050,42,19.5,54,200,Biscoe,Adelie +FEMALE,2900,34.5,18.1,55,187,Biscoe,Adelie +MALE,3700,41.4,18.6,56,191,Biscoe,Adelie +FEMALE,3550,39,17.5,57,186,Biscoe,Adelie +MALE,3800,40.6,18.8,58,193,Biscoe,Adelie +FEMALE,2850,36.5,16.6,59,181,Biscoe,Adelie +MALE,3750,37.6,19.1,60,194,Biscoe,Adelie +FEMALE,3150,35.7,16.9,61,185,Biscoe,Adelie +MALE,4400,41.3,21.1,62,195,Biscoe,Adelie +FEMALE,3600,37.6,17,63,185,Biscoe,Adelie +MALE,4050,41.1,18.2,64,192,Biscoe,Adelie +FEMALE,2850,36.4,17.1,65,184,Biscoe,Adelie +MALE,3950,41.6,18,66,192,Biscoe,Adelie +FEMALE,3350,35.5,16.2,67,195,Biscoe,Adelie +MALE,4100,41.1,19.1,68,188,Biscoe,Adelie +FEMALE,3050,35.9,16.6,69,190,Torgersen,Adelie +MALE,4450,41.8,19.4,70,198,Torgersen,Adelie +FEMALE,3600,33.5,19,71,190,Torgersen,Adelie +MALE,3900,39.7,18.4,72,190,Torgersen,Adelie +FEMALE,3550,39.6,17.2,73,196,Torgersen,Adelie +MALE,4150,45.8,18.9,74,197,Torgersen,Adelie +FEMALE,3700,35.5,17.5,75,190,Torgersen,Adelie +MALE,4250,42.8,18.5,76,195,Torgersen,Adelie +FEMALE,3700,40.9,16.8,77,191,Torgersen,Adelie +MALE,3900,37.2,19.4,78,184,Torgersen,Adelie +FEMALE,3550,36.2,16.1,79,187,Torgersen,Adelie +MALE,4000,42.1,19.1,80,195,Torgersen,Adelie +FEMALE,3200,34.6,17.2,81,189,Torgersen,Adelie +MALE,4700,42.9,17.6,82,196,Torgersen,Adelie +FEMALE,3800,36.7,18.8,83,187,Torgersen,Adelie +MALE,4200,35.1,19.4,84,193,Torgersen,Adelie +FEMALE,3350,37.3,17.8,85,191,Dream,Adelie +MALE,3550,41.3,20.3,86,194,Dream,Adelie +MALE,3800,36.3,19.5,87,190,Dream,Adelie +FEMALE,3500,36.9,18.6,88,189,Dream,Adelie +MALE,3950,38.3,19.2,89,189,Dream,Adelie +FEMALE,3600,38.9,18.8,90,190,Dream,Adelie +FEMALE,3550,35.7,18,91,202,Dream,Adelie +MALE,4300,41.1,18.1,92,205,Dream,Adelie +FEMALE,3400,34,17.1,93,185,Dream,Adelie +MALE,4450,39.6,18.1,94,186,Dream,Adelie +FEMALE,3300,36.2,17.3,95,187,Dream,Adelie +MALE,4300,40.8,18.9,96,208,Dream,Adelie +FEMALE,3700,38.1,18.6,97,190,Dream,Adelie +MALE,4350,40.3,18.5,98,196,Dream,Adelie +FEMALE,2900,33.1,16.1,99,178,Dream,Adelie +MALE,4100,43.2,18.5,100,192,Dream,Adelie +FEMALE,3725,35,17.9,101,192,Biscoe,Adelie +MALE,4725,41,20,102,203,Biscoe,Adelie +FEMALE,3075,37.7,16,103,183,Biscoe,Adelie +MALE,4250,37.8,20,104,190,Biscoe,Adelie +FEMALE,2925,37.9,18.6,105,193,Biscoe,Adelie +MALE,3550,39.7,18.9,106,184,Biscoe,Adelie +FEMALE,3750,38.6,17.2,107,199,Biscoe,Adelie +MALE,3900,38.2,20,108,190,Biscoe,Adelie +FEMALE,3175,38.1,17,109,181,Biscoe,Adelie +MALE,4775,43.2,19,110,197,Biscoe,Adelie +FEMALE,3825,38.1,16.5,111,198,Biscoe,Adelie +MALE,4600,45.6,20.3,112,191,Biscoe,Adelie +FEMALE,3200,39.7,17.7,113,193,Biscoe,Adelie +MALE,4275,42.2,19.5,114,197,Biscoe,Adelie +FEMALE,3900,39.6,20.7,115,191,Biscoe,Adelie +MALE,4075,42.7,18.3,116,196,Biscoe,Adelie +FEMALE,2900,38.6,17,117,188,Torgersen,Adelie +MALE,3775,37.3,20.5,118,199,Torgersen,Adelie +FEMALE,3350,35.7,17,119,189,Torgersen,Adelie +MALE,3325,41.1,18.6,120,189,Torgersen,Adelie +FEMALE,3150,36.2,17.2,121,187,Torgersen,Adelie +MALE,3500,37.7,19.8,122,198,Torgersen,Adelie +FEMALE,3450,40.2,17,123,176,Torgersen,Adelie +MALE,3875,41.4,18.5,124,202,Torgersen,Adelie +FEMALE,3050,35.2,15.9,125,186,Torgersen,Adelie +MALE,4000,40.6,19,126,199,Torgersen,Adelie +FEMALE,3275,38.8,17.6,127,191,Torgersen,Adelie +MALE,4300,41.5,18.3,128,195,Torgersen,Adelie +FEMALE,3050,39,17.1,129,191,Torgersen,Adelie +MALE,4000,44.1,18,130,210,Torgersen,Adelie +FEMALE,3325,38.5,17.9,131,190,Torgersen,Adelie +MALE,3500,43.1,19.2,132,197,Torgersen,Adelie +FEMALE,3500,36.8,18.5,133,193,Dream,Adelie +MALE,4475,37.5,18.5,134,199,Dream,Adelie +FEMALE,3425,38.1,17.6,135,187,Dream,Adelie +MALE,3900,41.1,17.5,136,190,Dream,Adelie +FEMALE,3175,35.6,17.5,137,191,Dream,Adelie +MALE,3975,40.2,20.1,138,200,Dream,Adelie +FEMALE,3400,37,16.5,139,185,Dream,Adelie +MALE,4250,39.7,17.9,140,193,Dream,Adelie +FEMALE,3400,40.2,17.1,141,193,Dream,Adelie +MALE,3475,40.6,17.2,142,187,Dream,Adelie +FEMALE,3050,32.1,15.5,143,188,Dream,Adelie +MALE,3725,40.7,17,144,190,Dream,Adelie +FEMALE,3000,37.3,16.8,145,192,Dream,Adelie +MALE,3650,39,18.7,146,185,Dream,Adelie +MALE,4250,39.2,18.6,147,190,Dream,Adelie +FEMALE,3475,36.6,18.4,148,184,Dream,Adelie +FEMALE,3450,36,17.8,149,195,Dream,Adelie +MALE,3750,37.8,18.1,150,193,Dream,Adelie +FEMALE,3700,36,17.1,151,187,Dream,Adelie +MALE,4000,41.5,18.5,152,201,Dream,Adelie +FEMALE,3500,46.5,17.9,153,192,Dream,Chinstrap +MALE,3900,50,19.5,154,196,Dream,Chinstrap +MALE,3650,51.3,19.2,155,193,Dream,Chinstrap +FEMALE,3525,45.4,18.7,156,188,Dream,Chinstrap +MALE,3725,52.7,19.8,157,197,Dream,Chinstrap +FEMALE,3950,45.2,17.8,158,198,Dream,Chinstrap +FEMALE,3250,46.1,18.2,159,178,Dream,Chinstrap +MALE,3750,51.3,18.2,160,197,Dream,Chinstrap +FEMALE,4150,46,18.9,161,195,Dream,Chinstrap +MALE,3700,51.3,19.9,162,198,Dream,Chinstrap +FEMALE,3800,46.6,17.8,163,193,Dream,Chinstrap +MALE,3775,51.7,20.3,164,194,Dream,Chinstrap +FEMALE,3700,47,17.3,165,185,Dream,Chinstrap +MALE,4050,52,18.1,166,201,Dream,Chinstrap +FEMALE,3575,45.9,17.1,167,190,Dream,Chinstrap +MALE,4050,50.5,19.6,168,201,Dream,Chinstrap +MALE,3300,50.3,20,169,197,Dream,Chinstrap +FEMALE,3700,58,17.8,170,181,Dream,Chinstrap +FEMALE,3450,46.4,18.6,171,190,Dream,Chinstrap +MALE,4400,49.2,18.2,172,195,Dream,Chinstrap +FEMALE,3600,42.4,17.3,173,181,Dream,Chinstrap +MALE,3400,48.5,17.5,174,191,Dream,Chinstrap +FEMALE,2900,43.2,16.6,175,187,Dream,Chinstrap +MALE,3800,50.6,19.4,176,193,Dream,Chinstrap +FEMALE,3300,46.7,17.9,177,195,Dream,Chinstrap +MALE,4150,52,19,178,197,Dream,Chinstrap +FEMALE,3400,50.5,18.4,179,200,Dream,Chinstrap +MALE,3800,49.5,19,180,200,Dream,Chinstrap +FEMALE,3700,46.4,17.8,181,191,Dream,Chinstrap +MALE,4550,52.8,20,182,205,Dream,Chinstrap +FEMALE,3200,40.9,16.6,183,187,Dream,Chinstrap +MALE,4300,54.2,20.8,184,201,Dream,Chinstrap +FEMALE,3350,42.5,16.7,185,187,Dream,Chinstrap +MALE,4100,51,18.8,186,203,Dream,Chinstrap +MALE,3600,49.7,18.6,187,195,Dream,Chinstrap +FEMALE,3900,47.5,16.8,188,199,Dream,Chinstrap +FEMALE,3850,47.6,18.3,189,195,Dream,Chinstrap +MALE,4800,52,20.7,190,210,Dream,Chinstrap +FEMALE,2700,46.9,16.6,191,192,Dream,Chinstrap +MALE,4500,53.5,19.9,192,205,Dream,Chinstrap +MALE,3950,49,19.5,193,210,Dream,Chinstrap +FEMALE,3650,46.2,17.5,194,187,Dream,Chinstrap +MALE,3550,50.9,19.1,195,196,Dream,Chinstrap +FEMALE,3500,45.5,17,196,196,Dream,Chinstrap +FEMALE,3675,50.9,17.9,197,196,Dream,Chinstrap +MALE,4450,50.8,18.5,198,201,Dream,Chinstrap +FEMALE,3400,50.1,17.9,199,190,Dream,Chinstrap +MALE,4300,49,19.6,200,212,Dream,Chinstrap +MALE,3250,51.5,18.7,201,187,Dream,Chinstrap +FEMALE,3675,49.8,17.3,202,198,Dream,Chinstrap +FEMALE,3325,48.1,16.4,203,199,Dream,Chinstrap +MALE,3950,51.4,19,204,201,Dream,Chinstrap +FEMALE,3600,45.7,17.3,205,193,Dream,Chinstrap +MALE,4050,50.7,19.7,206,203,Dream,Chinstrap +FEMALE,3350,42.5,17.3,207,187,Dream,Chinstrap +MALE,3450,52.2,18.8,208,197,Dream,Chinstrap +FEMALE,3250,45.2,16.6,209,191,Dream,Chinstrap +MALE,4050,49.3,19.9,210,203,Dream,Chinstrap +MALE,3800,50.2,18.8,211,202,Dream,Chinstrap +FEMALE,3525,45.6,19.4,212,194,Dream,Chinstrap +MALE,3950,51.9,19.5,213,206,Dream,Chinstrap +FEMALE,3650,46.8,16.5,214,189,Dream,Chinstrap +FEMALE,3650,45.7,17,215,195,Dream,Chinstrap +MALE,4000,55.8,19.8,216,207,Dream,Chinstrap +FEMALE,3400,43.5,18.1,217,202,Dream,Chinstrap +MALE,3775,49.6,18.2,218,193,Dream,Chinstrap +MALE,4100,50.8,19,219,210,Dream,Chinstrap +FEMALE,3775,50.2,18.7,220,198,Dream,Chinstrap +FEMALE,4500,46.1,13.2,221,211,Biscoe,Gentoo +MALE,5700,50,16.3,222,230,Biscoe,Gentoo +FEMALE,4450,48.7,14.1,223,210,Biscoe,Gentoo +MALE,5700,50,15.2,224,218,Biscoe,Gentoo +MALE,5400,47.6,14.5,225,215,Biscoe,Gentoo +FEMALE,4550,46.5,13.5,226,210,Biscoe,Gentoo +FEMALE,4800,45.4,14.6,227,211,Biscoe,Gentoo +MALE,5200,46.7,15.3,228,219,Biscoe,Gentoo +FEMALE,4400,43.3,13.4,229,209,Biscoe,Gentoo +MALE,5150,46.8,15.4,230,215,Biscoe,Gentoo +FEMALE,4650,40.9,13.7,231,214,Biscoe,Gentoo +MALE,5550,49,16.1,232,216,Biscoe,Gentoo +FEMALE,4650,45.5,13.7,233,214,Biscoe,Gentoo +MALE,5850,48.4,14.6,234,213,Biscoe,Gentoo +FEMALE,4200,45.8,14.6,235,210,Biscoe,Gentoo +MALE,5850,49.3,15.7,236,217,Biscoe,Gentoo +FEMALE,4150,42,13.5,237,210,Biscoe,Gentoo +MALE,6300,49.2,15.2,238,221,Biscoe,Gentoo +FEMALE,4800,46.2,14.5,239,209,Biscoe,Gentoo +MALE,5350,48.7,15.1,240,222,Biscoe,Gentoo +MALE,5700,50.2,14.3,241,218,Biscoe,Gentoo +FEMALE,5000,45.1,14.5,242,215,Biscoe,Gentoo +FEMALE,4400,46.5,14.5,243,213,Biscoe,Gentoo +MALE,5050,46.3,15.8,244,215,Biscoe,Gentoo +FEMALE,5000,42.9,13.1,245,215,Biscoe,Gentoo +MALE,5100,46.1,15.1,246,215,Biscoe,Gentoo +,4100,44.5,14.3,247,216,Biscoe,Gentoo +MALE,5650,47.8,15,248,215,Biscoe,Gentoo +FEMALE,4600,48.2,14.3,249,210,Biscoe,Gentoo +MALE,5550,50,15.3,250,220,Biscoe,Gentoo +MALE,5250,47.3,15.3,251,222,Biscoe,Gentoo +FEMALE,4700,42.8,14.2,252,209,Biscoe,Gentoo +FEMALE,5050,45.1,14.5,253,207,Biscoe,Gentoo +MALE,6050,59.6,17,254,230,Biscoe,Gentoo +FEMALE,5150,49.1,14.8,255,220,Biscoe,Gentoo +MALE,5400,48.4,16.3,256,220,Biscoe,Gentoo +FEMALE,4950,42.6,13.7,257,213,Biscoe,Gentoo +MALE,5250,44.4,17.3,258,219,Biscoe,Gentoo +FEMALE,4350,44,13.6,259,208,Biscoe,Gentoo +MALE,5350,48.7,15.7,260,208,Biscoe,Gentoo +FEMALE,3950,42.7,13.7,261,208,Biscoe,Gentoo +MALE,5700,49.6,16,262,225,Biscoe,Gentoo +FEMALE,4300,45.3,13.7,263,210,Biscoe,Gentoo +MALE,4750,49.6,15,264,216,Biscoe,Gentoo +MALE,5550,50.5,15.9,265,222,Biscoe,Gentoo +FEMALE,4900,43.6,13.9,266,217,Biscoe,Gentoo +FEMALE,4200,45.5,13.9,267,210,Biscoe,Gentoo +MALE,5400,50.5,15.9,268,225,Biscoe,Gentoo +FEMALE,5100,44.9,13.3,269,213,Biscoe,Gentoo +MALE,5300,45.2,15.8,270,215,Biscoe,Gentoo +FEMALE,4850,46.6,14.2,271,210,Biscoe,Gentoo +MALE,5300,48.5,14.1,272,220,Biscoe,Gentoo +FEMALE,4400,45.1,14.4,273,210,Biscoe,Gentoo +MALE,5000,50.1,15,274,225,Biscoe,Gentoo +FEMALE,4900,46.5,14.4,275,217,Biscoe,Gentoo +MALE,5050,45,15.4,276,220,Biscoe,Gentoo +FEMALE,4300,43.8,13.9,277,208,Biscoe,Gentoo +MALE,5000,45.5,15,278,220,Biscoe,Gentoo +FEMALE,4450,43.2,14.5,279,208,Biscoe,Gentoo +MALE,5550,50.4,15.3,280,224,Biscoe,Gentoo +FEMALE,4200,45.3,13.8,281,208,Biscoe,Gentoo +MALE,5300,46.2,14.9,282,221,Biscoe,Gentoo +FEMALE,4400,45.7,13.9,283,214,Biscoe,Gentoo +MALE,5650,54.3,15.7,284,231,Biscoe,Gentoo +FEMALE,4700,45.8,14.2,285,219,Biscoe,Gentoo +MALE,5700,49.8,16.8,286,230,Biscoe,Gentoo +,4650,46.2,14.4,287,214,Biscoe,Gentoo +MALE,5800,49.5,16.2,288,229,Biscoe,Gentoo +FEMALE,4700,43.5,14.2,289,220,Biscoe,Gentoo +MALE,5550,50.7,15,290,223,Biscoe,Gentoo +FEMALE,4750,47.7,15,291,216,Biscoe,Gentoo +MALE,5000,46.4,15.6,292,221,Biscoe,Gentoo +MALE,5100,48.2,15.6,293,221,Biscoe,Gentoo +FEMALE,5200,46.5,14.8,294,217,Biscoe,Gentoo +FEMALE,4700,46.4,15,295,216,Biscoe,Gentoo +MALE,5800,48.6,16,296,230,Biscoe,Gentoo +FEMALE,4600,47.5,14.2,297,209,Biscoe,Gentoo +MALE,6000,51.1,16.3,298,220,Biscoe,Gentoo +FEMALE,4750,45.2,13.8,299,215,Biscoe,Gentoo +MALE,5950,45.2,16.4,300,223,Biscoe,Gentoo +FEMALE,4625,49.1,14.5,301,212,Biscoe,Gentoo +MALE,5450,52.5,15.6,302,221,Biscoe,Gentoo +FEMALE,4725,47.4,14.6,303,212,Biscoe,Gentoo +MALE,5350,50,15.9,304,224,Biscoe,Gentoo +FEMALE,4750,44.9,13.8,305,212,Biscoe,Gentoo +MALE,5600,50.8,17.3,306,228,Biscoe,Gentoo +FEMALE,4600,43.4,14.4,307,218,Biscoe,Gentoo +MALE,5300,51.3,14.2,308,218,Biscoe,Gentoo +FEMALE,4875,47.5,14,309,212,Biscoe,Gentoo +MALE,5550,52.1,17,310,230,Biscoe,Gentoo +FEMALE,4950,47.5,15,311,218,Biscoe,Gentoo +MALE,5400,52.2,17.1,312,228,Biscoe,Gentoo +FEMALE,4750,45.5,14.5,313,212,Biscoe,Gentoo +MALE,5650,49.5,16.1,314,224,Biscoe,Gentoo +FEMALE,4850,44.5,14.7,315,214,Biscoe,Gentoo +MALE,5200,50.8,15.7,316,226,Biscoe,Gentoo +MALE,4925,49.4,15.8,317,216,Biscoe,Gentoo +FEMALE,4875,46.9,14.6,318,222,Biscoe,Gentoo +FEMALE,4625,48.4,14.4,319,203,Biscoe,Gentoo +MALE,5250,51.1,16.5,320,225,Biscoe,Gentoo +FEMALE,4850,48.5,15,321,219,Biscoe,Gentoo +MALE,5600,55.9,17,322,228,Biscoe,Gentoo +FEMALE,4975,47.2,15.5,323,215,Biscoe,Gentoo +MALE,5500,49.1,15,324,228,Biscoe,Gentoo +,4725,47.3,13.8,325,216,Biscoe,Gentoo +MALE,5500,46.8,16.1,326,215,Biscoe,Gentoo +FEMALE,4700,41.7,14.7,327,210,Biscoe,Gentoo +MALE,5500,53.4,15.8,328,219,Biscoe,Gentoo +FEMALE,4575,43.3,14,329,208,Biscoe,Gentoo +MALE,5500,48.1,15.1,330,209,Biscoe,Gentoo +FEMALE,5000,50.5,15.2,331,216,Biscoe,Gentoo +MALE,5950,49.8,15.9,332,229,Biscoe,Gentoo +FEMALE,4650,43.5,15.2,333,213,Biscoe,Gentoo +MALE,5500,51.5,16.3,334,230,Biscoe,Gentoo +FEMALE,4375,46.2,14.1,335,217,Biscoe,Gentoo +MALE,5850,55.1,16,336,230,Biscoe,Gentoo +,4875,44.5,15.7,337,217,Biscoe,Gentoo +MALE,6000,48.8,16.2,338,222,Biscoe,Gentoo +FEMALE,4925,47.2,13.7,339,214,Biscoe,Gentoo +,,,,340,,Biscoe,Gentoo +FEMALE,4850,46.8,14.3,341,215,Biscoe,Gentoo +MALE,5750,50.4,15.7,342,222,Biscoe,Gentoo +FEMALE,5200,45.2,14.8,343,212,Biscoe,Gentoo +MALE,5400,49.9,16.1,344,213,Biscoe,Gentoo \ No newline at end of file diff --git a/examples/loader-airtable/src/data/penguins.csv.ts b/examples/loader-airtable/src/data/penguins.csv.ts new file mode 100644 index 000000000..6fd22db07 --- /dev/null +++ b/examples/loader-airtable/src/data/penguins.csv.ts @@ -0,0 +1,24 @@ +import "dotenv/config"; +import Airtable from "airtable"; +import {csvFormat} from "d3-dsv"; + +const {AIRTABLE_PAT, AIRTABLE_DB} = process.env; + +Airtable.configure({apiKey: AIRTABLE_PAT}); + +const base = Airtable.base(AIRTABLE_DB!); + +const data: any[] = []; + +base("penguins") + .select({view: "Grid view"}) + .eachPage( + (records, fetchNextPage) => { + records.forEach((record) => data.push(record.fields)); + fetchNextPage(); + }, + (err) => { + if (err) throw err; + process.stdout.write(csvFormat(data)); + } + ); diff --git a/examples/loader-airtable/src/index.md b/examples/loader-airtable/src/index.md new file mode 100644 index 000000000..9dceda4e7 --- /dev/null +++ b/examples/loader-airtable/src/index.md @@ -0,0 +1,63 @@ +# Airtable data loader + +Here’s a TypeScript data loader that reads values from a database hosted on [Airtable](https://airtable.com/). + +It uses the [airtable.js](https://github.com/Airtable/airtable.js) development kit. See [the official API documentation](https://airtable.com/developers/web/api/introduction), which allows you to select your database for “live documentation” running on your own data; make sure to select the “JavaScript” tab. + +To run this data loader, you’ll need to create a personal access token at [/create/tokens](https://airtable.com/create/tokens) and save its value in the `.env` file at the root of the project. (Mine is scoped to only _read_ values from the _penguins_ database.) In that same `.env` file, you will also specify the database id: + +```txt +AIRTABLE_PAT="patXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXX" +AIRTABLE_DB="appWXXXXXXXXX" +``` + +
+ +To run this data loader, you’ll need to install `airtable` and `dotenv` using your preferred package manager such as npm or Yarn. + +
+ +The data loader’s code: + +```js run=false +import "dotenv/config"; +import Airtable from "airtable"; +import {csvFormat} from "d3-dsv"; + +const {AIRTABLE_PAT, AIRTABLE_DB} = process.env; + +Airtable.configure({apiKey: AIRTABLE_PAT}); + +const base = Airtable.base(AIRTABLE_DB as string); + +const data: any[] = []; + +base("penguins") + .select({view: "Grid view"}) + .eachPage( + (records, fetchNextPage) => { + records.forEach((record) => data.push(record.fields)); + fetchNextPage(); + }, + (err) => { + if (err) throw err; + process.stdout.write(csvFormat(data)); + } + ); +``` + +It lives in `data/penguins.csv.ts`, so we can load the data using `data/penguins.csv`. + +```js +Inputs.table(penguins) +``` + +```js echo +const penguins = FileAttachment("./data/penguins.csv").csv({typed: true}); +``` + +
+ +Using the Airtable API you can do more than just read the whole database: it’s also possible to load comments, or make specific queries to get a subset of the values. + +
diff --git a/examples/loader-arrow/.gitignore b/examples/loader-arrow/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-arrow/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-arrow/README.md b/examples/loader-arrow/README.md new file mode 100644 index 000000000..c63d274f8 --- /dev/null +++ b/examples/loader-arrow/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Apache Arrow data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that outputs an Apache Arrow table in the Arrow IPC format using the `apache-arrow` package. The data loader generates a synthetic time-series dataset using a random walk. diff --git a/examples/loader-arrow/observablehq.config.js b/examples/loader-arrow/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-arrow/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-arrow/package.json b/examples/loader-arrow/package.json new file mode 100644 index 000000000..29d061d56 --- /dev/null +++ b/examples/loader-arrow/package.json @@ -0,0 +1,21 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "apache-arrow": "^16.0.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-arrow/src/.gitignore b/examples/loader-arrow/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-arrow/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-arrow/src/data/samples.arrow.js b/examples/loader-arrow/src/data/samples.arrow.js new file mode 100644 index 000000000..029977519 --- /dev/null +++ b/examples/loader-arrow/src/data/samples.arrow.js @@ -0,0 +1,19 @@ +import * as Arrow from "apache-arrow"; + +// Generate a daily random walk as parallel arrays of {date, value}. +const date = []; +const value = []; +const start = new Date("2022-01-01"); +const end = new Date("2023-01-01"); +for (let currentValue = 0, currentDate = start; currentDate < end; ) { + date.push(currentDate); + value.push(currentValue); + (currentDate = new Date(currentDate)), currentDate.setUTCDate(currentDate.getUTCDate() + 1); + currentValue += Math.random() - 0.5; +} + +// Construct an Apache Arrow table from the parallel arrays. +const table = Arrow.tableFromArrays({date, value}); + +// Output the Apache Arrow table as an IPC stream to stdout. +process.stdout.write(Arrow.tableToIPC(table)); diff --git a/examples/loader-arrow/src/index.md b/examples/loader-arrow/src/index.md new file mode 100644 index 000000000..1eb10e24e --- /dev/null +++ b/examples/loader-arrow/src/index.md @@ -0,0 +1,61 @@ +# Apache Arrow data loader + +Here’s a JavaScript data loader that generates a random walk for each day in 2022 and outputs an Apache Arrow table to standard out. + +```js run=false +import * as Arrow from "apache-arrow"; + +// Generate a daily random walk as parallel arrays of {date, value}. +const date = []; +const value = []; +const start = new Date("2022-01-01"); +const end = new Date("2023-01-01"); +for (let currentValue = 0, currentDate = start; currentDate < end; ) { + date.push(currentDate); + value.push(currentValue); + (currentDate = new Date(currentDate)), currentDate.setUTCDate(currentDate.getUTCDate() + 1); + currentValue += Math.random() - 0.5; +} + +// Construct an Apache Arrow table from the parallel arrays. +const table = Arrow.tableFromArrays({date, value}); + +// Output the Apache Arrow table as an IPC stream to stdout. +process.stdout.write(Arrow.tableToIPC(table)); +``` + +
+ +To run this data loader, you’ll need to install `apache-arrow` using your preferred package manager such as npm or Yarn. + +
+ +The above data loader lives in `data/samples.arrow.js`, so we can load the data using `data/samples.arrow`. The `FileAttachment.arrow` method parses the file and returns a promise to an Apache Arrow table. + +```js echo +const samples = FileAttachment("./data/samples.arrow").arrow(); +``` + +The `samples` table has two columns: `date` and `value`. We can display the table using `Inputs.table`, though note that the `date` column is represented as numbers intead of `Date` instances — some information was lost when serialized as Arrow. (Perhaps in the future the Apache Arrow JavaScript library could return `Date` instances for date columns? Though this is typically much slower than representing dates as numbers in typed arrays.) We use the **format** option to make these dates readable. + +```js echo +Inputs.table(samples, { + format: { + date: (x) => new Date(x).toISOString().slice(0, 10) + } +}) +``` + +Lastly, we can pass the table to `Plot.plot` to make a simple line chart. Again, since the `date` column is numbers, Plot will interpret these as quantitative values by default; by setting the **type** of the *x* scale to *utc*, we tell Plot to treat these values as dates intead, producing a more readable axis. + +```js echo +Plot.plot({ + x: { + type: "utc" // treat x-values as dates, not numbers + }, + marks: [ + Plot.ruleY([0]), + Plot.lineY(samples, {x: "date", y: "value"}) + ] +}) +``` diff --git a/examples/loader-canvas-to-png/.gitignore b/examples/loader-canvas-to-png/.gitignore new file mode 100644 index 000000000..0922a3170 --- /dev/null +++ b/examples/loader-canvas-to-png/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.venv diff --git a/examples/loader-canvas-to-png/README.md b/examples/loader-canvas-to-png/README.md new file mode 100644 index 000000000..8aa7cfeb8 --- /dev/null +++ b/examples/loader-canvas-to-png/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Data loader to generate PNG from canvas + +View live: + +This Observable Framework example demonstrates how to write a Node.js data loader that creates a map using [node-canvas](https://github.com/Automattic/node-canvas) and D3, then writes the map to standard out as a PNG. The data loader lives in [`src/data/us-map.png.js`](./src/data/us-map.png.js). diff --git a/examples/loader-canvas-to-png/observablehq.config.js b/examples/loader-canvas-to-png/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-canvas-to-png/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-canvas-to-png/package.json b/examples/loader-canvas-to-png/package.json new file mode 100644 index 000000000..c6d4cc602 --- /dev/null +++ b/examples/loader-canvas-to-png/package.json @@ -0,0 +1,23 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "latest", + "topojson-client": "^3.0.0", + "d3": "^7.0.0", + "canvas": "^2.8.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-canvas-to-png/src/.gitignore b/examples/loader-canvas-to-png/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-canvas-to-png/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-canvas-to-png/src/data/us-map.png.js b/examples/loader-canvas-to-png/src/data/us-map.png.js new file mode 100644 index 000000000..250d51b8f --- /dev/null +++ b/examples/loader-canvas-to-png/src/data/us-map.png.js @@ -0,0 +1,48 @@ +import {createCanvas} from "canvas"; +import {geoPath} from "d3"; +import * as topojson from "topojson-client"; + +// Get the map file from the US Atlas package +// https://github.com/topojson/us-atlas +const url = "https://cdn.jsdelivr.net/npm/us-atlas@3/counties-albers-10m.json"; +const us = await fetch(url).then(response => response.json()); + +// Create and configure a canvas +const width = 975; +const height = 610; +const canvas = createCanvas(width * 2, height * 2); +const context = canvas.getContext("2d"); +context.scale(2, 2); + +// https://observablehq.com/@d3/u-s-map-canvas +context.lineJoin = "round"; +context.lineCap = "round"; +// Use the null projection, since coordinates in US Atlas are already projected. +const path = geoPath(null, context); + +context.fillStyle = "#fff"; +context.fillRect(0, 0, width, height); + +context.beginPath(); +path(topojson.mesh(us, us.objects.counties, (a, b) => a !== b && (a.id / 1000 | 0) === (b.id / 1000 | 0))); +context.lineWidth = 0.5; +context.strokeStyle = "#aaa"; +context.stroke(); + +context.beginPath(); +path(topojson.mesh(us, us.objects.states, (a, b) => a !== b)); +context.lineWidth = 0.5; +context.strokeStyle = "#000"; +context.stroke(); + +context.beginPath(); +path(topojson.feature(us, us.objects.nation)); +context.lineWidth = 1; +context.strokeStyle = "#000"; +context.stroke(); + +// Write the canvas to a PNG buffer +const buffer = canvas.toBuffer("image/png"); + +// Pipe the buffer to process.stdout +process.stdout.write(buffer); diff --git a/examples/loader-canvas-to-png/src/index.md b/examples/loader-canvas-to-png/src/index.md new file mode 100644 index 000000000..4da548d4f --- /dev/null +++ b/examples/loader-canvas-to-png/src/index.md @@ -0,0 +1,70 @@ +# Data loader to generate PNG from canvas + +Here’s a Node.js data loader that creates a map using [node-canvas](https://github.com/Automattic/node-canvas) and D3, then writes the map to standard out as a PNG. + +This pattern can be used to render maps that require a large amount of data as lightweight static files. + +```js run=false +import {createCanvas} from "canvas"; +import {geoPath} from "d3"; +import * as topojson from "topojson-client"; + +// Get the map file from the US Atlas package +// https://github.com/topojson/us-atlas +const url = "https://cdn.jsdelivr.net/npm/us-atlas@3/counties-albers-10m.json"; +const us = await fetch(url).then(response => response.json()); + +// Create and configure a canvas +const width = 975; +const height = 610; +const canvas = createCanvas(width * 2, height * 2); +const context = canvas.getContext("2d"); +context.scale(2, 2); + +// https://observablehq.com/@d3/u-s-map-canvas +context.lineJoin = "round"; +context.lineCap = "round"; +// Use the null projection, since coordinates in US Atlas are already projected. +const path = geoPath(null, context); + +context.fillStyle = "#fff"; +context.fillRect(0, 0, width, height); + +context.beginPath(); +path(topojson.mesh(us, us.objects.counties, (a, b) => a !== b && (a.id / 1000 | 0) === (b.id / 1000 | 0))); +context.lineWidth = 0.5; +context.strokeStyle = "#aaa"; +context.stroke(); + +context.beginPath(); +path(topojson.mesh(us, us.objects.states, (a, b) => a !== b)); +context.lineWidth = 0.5; +context.strokeStyle = "#000"; +context.stroke(); + +context.beginPath(); +path(topojson.feature(us, us.objects.nation)); +context.lineWidth = 1; +context.strokeStyle = "#000"; +context.stroke(); + +// Write the canvas to a PNG buffer +const buffer = canvas.toBuffer("image/png"); + +// Pipe the buffer to process.stdout +process.stdout.write(buffer); +``` + +
+ +To run this data loader, you’ll need to add the `d3`, `topojson-client` and `canvas` libraries as dependencies with `npm add d3 topojson-client canvas` or `yarn add d3 topojson-client canvas`. + +
+ +The above data loader lives in `data/us-map.png.js`, so we can access the image using `data/us-map.png`: + +```html run=false + +``` + + diff --git a/examples/loader-census/.gitignore b/examples/loader-census/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-census/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-census/README.md b/examples/loader-census/README.md new file mode 100644 index 000000000..ca6976aee --- /dev/null +++ b/examples/loader-census/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# U.S. Census Bureau data loader + +View live: + +This Observable Framework example demonstrates how to write a bash data loader that downloads high-resolution shapefiles from the US Census Bureau, and converts them into a web-friendly format. \ No newline at end of file diff --git a/examples/loader-census/observablehq.config.js b/examples/loader-census/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-census/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-census/package.json b/examples/loader-census/package.json new file mode 100644 index 000000000..0f3201f41 --- /dev/null +++ b/examples/loader-census/package.json @@ -0,0 +1,24 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "latest", + "shapefile": "^0.6.6", + "topojson-client": "^3.1.0", + "topojson-server": "^3.0.1", + "topojson-simplify": "^3.0.3" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-census/src/.gitignore b/examples/loader-census/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-census/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-census/src/data/ca.json.sh b/examples/loader-census/src/data/ca.json.sh new file mode 100755 index 000000000..cc910c61d --- /dev/null +++ b/examples/loader-census/src/data/ca.json.sh @@ -0,0 +1,14 @@ +# Download the ZIP archive from the Census Bureau (if needed). +if [ ! -f src/.observablehq/cache/cb_2023_06_cousub_500k.zip ]; then + curl -f -o src/.observablehq/cache/cb_2023_06_cousub_500k.zip 'https://www2.census.gov/geo/tiger/GENZ2023/shp/cb_2023_06_cousub_500k.zip' +fi + +# Unzip the ZIP archive to extract the shapefile. +unzip -oqd src/.observablehq/cache src/.observablehq/cache/cb_2023_06_cousub_500k.zip + +# Convert the shapefile to TopoJSON, simplify, and merge counties. +shp2json --encoding utf-8 -n src/.observablehq/cache/cb_2023_06_cousub_500k.shp > src/.observablehq/cache/cb_2023_06_cousub_500k.ndjson + +geo2topo -q 1e5 -n counties=src/.observablehq/cache/cb_2023_06_cousub_500k.ndjson \ + | toposimplify -f -s 1e-7 \ + | topomerge state=counties diff --git a/examples/loader-census/src/index.md b/examples/loader-census/src/index.md new file mode 100644 index 000000000..34e998eb2 --- /dev/null +++ b/examples/loader-census/src/index.md @@ -0,0 +1,57 @@ +# Census boundaries + +Here’s how to fetch high-resolution shapefiles from the [U.S. Census Bureau](https://www.census.gov/geographies/mapping-files/time-series/geo/cartographic-boundary.html) and convert them into a web-friendly format in a bash data loader. + +First, you’ll need to install a few packages: + +```sh +npm install shapefile topojson-client topojson-server topojson-simplify +``` + +Next, here’s a bash script, `ca.json.sh`: + +```bash +# Download the ZIP archive from the Census Bureau (if needed). +if [ ! -f src/.observablehq/cache/cb_2023_06_cousub_500k.zip ]; then + curl -f -o src/.observablehq/cache/cb_2023_06_cousub_500k.zip 'https://www2.census.gov/geo/tiger/GENZ2023/shp/cb_2023_06_cousub_500k.zip' +fi + +# Unzip the ZIP archive to extract the shapefile. +unzip -oqd src/.observablehq/cache src/.observablehq/cache/cb_2023_06_cousub_500k.zip + +# Convert the shapefile to GeoJSON, then to TopoJSON, simplify, and merge counties. +shp2json --encoding utf-8 -n src/.observablehq/cache/cb_2023_06_cousub_500k.shp > src/.observablehq/cache/cb_2023_06_cousub_500k.ndjson +geo2topo -q 1e5 -n counties=src/.observablehq/cache/cb_2023_06_cousub_500k.ndjson \ + | toposimplify -f -s 1e-7 \ + | topomerge state=counties +``` + +The census.gov URL comes from the Census Bureau page linked above. Here “06” is the state of California’s FIPS code, and “cousub” means county subdivisions. + +And here’s the result displayed with Plot: + +```js echo +Plot.plot({ + width: 640, + height: 720, + projection: { + type: "conic-conformal", + parallels: [37 + 4 / 60, 38 + 26 / 60], + rotate: [120 + 30 / 60, 0], + domain: castate + }, + marks: [ + Plot.geo(castate), + Plot.geo(cacounties, {strokeOpacity: 0.2}) + ] +}) +``` + +```js echo +const ca = FileAttachment("data/ca.json").json(); +``` + +```js echo +const castate = topojson.feature(ca, ca.objects.state); +const cacounties = topojson.mesh(ca, ca.objects.counties, (a, b) => a !== b); +``` diff --git a/examples/loader-databricks/.gitignore b/examples/loader-databricks/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-databricks/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-databricks/README.md b/examples/loader-databricks/README.md new file mode 100644 index 000000000..dee7b87ab --- /dev/null +++ b/examples/loader-databricks/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Databricks data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that runs a query on Databricks using the [Databricks SQL Driver for Node.js](https://docs.databricks.com/en/dev-tools/nodejs-sql-driver.html) and generates a CSV file. The data loader lives in [`src/data/trips.csv.js`](./src/data/trips.csv.js) and uses the helper [`src/data/databricks.js`](./src/data/databricks.js). diff --git a/examples/loader-databricks/observablehq.config.js b/examples/loader-databricks/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-databricks/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-databricks/package.json b/examples/loader-databricks/package.json new file mode 100644 index 000000000..cca618cbc --- /dev/null +++ b/examples/loader-databricks/package.json @@ -0,0 +1,23 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@databricks/sql": "^1.8.4", + "@observablehq/framework": "^1.7.0", + "d3-dsv": "^3.0.1", + "dotenv": "^16.4.5" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-databricks/src/.gitignore b/examples/loader-databricks/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-databricks/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-databricks/src/data/databricks.js b/examples/loader-databricks/src/data/databricks.js new file mode 100644 index 000000000..9c3f696e9 --- /dev/null +++ b/examples/loader-databricks/src/data/databricks.js @@ -0,0 +1,34 @@ +import "dotenv/config"; +import {DBSQLClient, DBSQLLogger, LogLevel} from "@databricks/sql"; + +const token = process.env.DATABRICKS_TOKEN; +const host = process.env.DATABRICKS_SERVER_HOSTNAME; +const path = process.env.DATABRICKS_HTTP_PATH; + +if (!token) throw new Error("missing DATABRICKS_TOKEN"); +if (!host) throw new Error("missing DATABRICKS_SERVER_HOSTNAME"); +if (!path) throw new Error("missing DATABRICKS_HTTP_PATH"); + +export async function openSession(f) { + const logger = new DBSQLLogger({level: LogLevel.error}); // don’t pollute stdout + const client = new DBSQLClient({logger}); + await client.connect({host, path, token}); + const session = await client.openSession(); + try { + return await f(session, client); + } finally { + await session.close(); + await client.close(); + } +} + +export async function executeStatement(statement, options) { + return await openSession(async (session) => { + const queryOperation = await session.executeStatement(statement, options); + try { + return await queryOperation.fetchAll(); + } finally { + await queryOperation.close(); + } + }); +} diff --git a/examples/loader-databricks/src/data/trips.csv.js b/examples/loader-databricks/src/data/trips.csv.js new file mode 100644 index 000000000..811fb685f --- /dev/null +++ b/examples/loader-databricks/src/data/trips.csv.js @@ -0,0 +1,4 @@ +import {csvFormat} from "d3-dsv"; +import {executeStatement} from "./databricks.js"; + +process.stdout.write(csvFormat(await executeStatement("SELECT * FROM samples.nyctaxi.trips LIMIT 100"))); diff --git a/examples/loader-databricks/src/index.md b/examples/loader-databricks/src/index.md new file mode 100644 index 000000000..25940f932 --- /dev/null +++ b/examples/loader-databricks/src/index.md @@ -0,0 +1,83 @@ +# Databricks data loader + +Here’s a TypeScript data loader that queries Databricks. It runs a simple query that returns 100 rows from the `nyctaxi` sample dataset. + +```js run=false +import {csvFormat} from "d3-dsv"; +import {executeStatement} from "./databricks.js"; + +process.stdout.write(csvFormat(await executeStatement("SELECT * FROM samples.nyctaxi.trips LIMIT 100"))); +``` + +The data loader uses a helper file, `databricks.js`, which is a thin wrapper on the `@databricks/sql` package. This reduces the amount of boilerplate you need to write to issue a query. + +```js run=false +import "dotenv/config"; +import {DBSQLClient, DBSQLLogger, LogLevel} from "@databricks/sql"; + +const token = process.env.DATABRICKS_TOKEN; +const host = process.env.DATABRICKS_SERVER_HOSTNAME; +const path = process.env.DATABRICKS_HTTP_PATH; + +if (!token) throw new Error("missing DATABRICKS_TOKEN"); +if (!host) throw new Error("missing DATABRICKS_SERVER_HOSTNAME"); +if (!path) throw new Error("missing DATABRICKS_HTTP_PATH"); + +export async function openSession(f) { + const logger = new DBSQLLogger({level: LogLevel.error}); // don’t pollute stdout + const client = new DBSQLClient({logger}); + await client.connect({host, path, token}); + const session = await client.openSession(); + try { + return await f(session, client); + } finally { + await session.close(); + await client.close(); + } +} + +export async function executeStatement(statement, options) { + return await openSession(async (session) => { + const queryOperation = await session.executeStatement(statement, options); + try { + return await queryOperation.fetchAll(); + } finally { + await queryOperation.close(); + } + }); +} +``` + +
+ +To run this data loader, you’ll need to install `@databricks/sql`, `d3-dsv`, and `dotenv` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with Databricks, you will need to set several secret environment variable, each with the `DATABRICKS_` prefix. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks something like this: + +``` +DATABRICKS_SERVER_HOSTNAME="XXX.cloud.databricks.com" +DATABRICKS_HTTP_PATH="/sql/1.0/warehouses/XXX" +DATABRICKS_TOKEN="XXX" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +This example uses a [personal access token](https://docs.databricks.com/en/dev-tools/nodejs-sql-driver.html#databricks-personal-access-token-authentication) to authenticate with Databricks; please follow the linked instructions to create your own token. Replace each `XXX` above with your credentials as appropriate. Alternatively, read Databricks’s [Authentication guide](https://docs.databricks.com/en/dev-tools/nodejs-sql-driver.html#authentication) to use a different authentication method. + +The above data loader lives in `data/trips.csv.js`, so we can load the data as `data/trips.csv`. The `FileAttachment.csv` method parses the file and returns a promise to an array of objects. + +```js echo +const trips = FileAttachment("./data/trips.csv").csv({typed: true}); +``` + +The `trips` table has several columns: `tpep_pickup_datetime`, `tpep_dropoff_datetime`, `trip_distance`, `fare_amount`, `pickup_zip`, and `dropoff_zip`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(trips) +``` diff --git a/examples/loader-duckdb/.gitignore b/examples/loader-duckdb/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-duckdb/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-duckdb/README.md b/examples/loader-duckdb/README.md new file mode 100644 index 000000000..01253a3a1 --- /dev/null +++ b/examples/loader-duckdb/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# DuckDB data loader + +View live: + +This Observable Framework example demonstrates how to write a data loader as a shell script that downloads a CSV file, then uses the DuckDB CLI to filter and reshape this data, finally outputting the result as Apache Parquet. The example data is statistics about the education of modern foreign languages from Eurostat, the data portal of the statistical office of the European Union. + +The data loader lives in [`src/educ_uoe_lang01.parquet.sh`](./src/educ_uoe_lang01.parquet.sh). diff --git a/examples/loader-duckdb/observablehq.config.js b/examples/loader-duckdb/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-duckdb/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-duckdb/package.json b/examples/loader-duckdb/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-duckdb/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-duckdb/src/.gitignore b/examples/loader-duckdb/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-duckdb/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-duckdb/src/educ_uoe_lang01.parquet.sh b/examples/loader-duckdb/src/educ_uoe_lang01.parquet.sh new file mode 100644 index 000000000..0ee625015 --- /dev/null +++ b/examples/loader-duckdb/src/educ_uoe_lang01.parquet.sh @@ -0,0 +1,25 @@ +CODE="educ_uoe_lang01" +URL="https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/$CODE/?format=SDMX-CSV&i" + +# Use the data loader cache directory to store the downloaded data. +TMPDIR="src/.observablehq/cache/" + +# Download the data (if it’s not already in the cache). +if [ ! -f "$TMPDIR/$CODE.csv" ]; then + curl -f "$URL" -o "$TMPDIR/$CODE.csv" +fi + +# Generate a Parquet file using DuckDB. +duckdb :memory: << EOF +COPY ( + SELECT * + FROM read_csv('$TMPDIR/$CODE.csv') + WHERE true + AND TIME_PERIOD = 2019 -- a good year in terms of data quality + AND OBS_VALUE > 0 -- filter out zeros + AND isced11 = 'ED2' -- lower secondary education + AND unit = 'PC' -- ignore absolute numbers, keep percentages + AND language != 'TOTAL' -- ignore total + AND length(geo) = 2 -- ignore groupings such as EU_27 +) TO STDOUT (FORMAT 'parquet', COMPRESSION 'gzip'); +EOF diff --git a/examples/loader-duckdb/src/index.md b/examples/loader-duckdb/src/index.md new file mode 100644 index 000000000..d97f0e9e5 --- /dev/null +++ b/examples/loader-duckdb/src/index.md @@ -0,0 +1,152 @@ +# DuckDB data loader + +Here’s a shell script data loader that uses curl to download a CSV file, then uses the [DuckDB CLI](https://duckdb.org/docs/api/cli/overview.html) to filter it, and finally outputs the result as a [Apache Parquet](https://observablehq.com/framework/lib/arrow#apache-parquet) file. + +```sh +CODE="educ_uoe_lang01" +URL="https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/$CODE/?format=SDMX-CSV&i" + +# Use the data loader cache directory to store the downloaded data. +TMPDIR="src/.observablehq/cache/" + +# Download the data (if it’s not already in the cache). +if [ ! -f "$TMPDIR/$CODE.csv" ]; then + curl -f "$URL" -o "$TMPDIR/$CODE.csv" +fi + +# Generate a Parquet file using DuckDB. +duckdb :memory: << EOF +COPY ( + SELECT * + FROM read_csv('$TMPDIR/$CODE.csv') + WHERE true + AND TIME_PERIOD = 2019 -- a good year in terms of data quality + AND OBS_VALUE > 0 -- filter out zeros + AND isced11 = 'ED2' -- lower secondary education + AND unit = 'PC' -- ignore absolute numbers, keep percentages + AND language != 'TOTAL' -- ignore total + AND length(geo) = 2 -- ignore groupings such as EU_27 +) TO STDOUT (FORMAT 'parquet', COMPRESSION 'gzip'); +EOF +``` + +
+ +To run this data loader, you’ll need to install curl and the DuckDB CLI if they are not already installed on your system. + +
+ +The example data is statistics about modern foreign language education ([educ_uoe_lang01](https://ec.europa.eu/eurostat/databrowser/view/educ_uoe_lang01/default/table?lang=en&category=educ.educ_lang.educ_uoe_lang)) from Eurostat, the data portal of the statistical office of the European Union. To make it faster to iterate on the data — for example to change the education level or the time period — we save the downloaded data to Framework’s cache folder. + +The above data loader lives in `educ_uoe_lang01.parquet.sh`, so we can load the data as `educ_uoe_lang01.parquet`. The `FileAttachment.parquet` method parses the file and returns a promise to an Arrow table. + +```js echo +const languages = FileAttachment("educ_uoe_lang01.parquet").parquet(); +``` + +We can display this dataset with Inputs.table: + +```js echo +Inputs.table(languages) +``` + +We can also make a quick chart of most-frequently taught modern foreign languages in Europe using [Observable Plot](https://observablehq.com/plot/); note that the stacked percentages go above 100% in most countries because many pupils learn at least two foreign languages. Ireland (IE) is the only exception as English is not taught as a foreign language. + +```js +Plot.plot({ + x: {axis: "top", grid: true}, + color: {legend: true, unknown: "grey"}, + marks: [ + Plot.barX(languages, { + x: "OBS_VALUE", + y: "geo", + fill: "language", + order: "-sum", + sort: {y: "-x", color: {value: "width", reduce: "sum", limit: 9}}, + tip: true + }) + ] +}) +``` + +For reference, here are the codes used for countries and languages: + +
+
+ +| code | country | +| ---- | ---------------------- | +| BE | Belgium | +| BG | Bulgaria | +| CZ | Czechia | +| DK | Denmark | +| DE | Germany | +| EE | Estonia | +| IE | Ireland | +| EL | Greece | +| ES | Spain | +| FR | France | +| HR | Croatia | +| IT | Italy | +| CY | Cyprus | +| LV | Latvia | +| LT | Lithuania | +| LU | Luxembourg | +| HU | Hungary | +| MT | Malta | +| NL | Netherlands | +| AT | Austria | +| PL | Poland | +| PT | Portugal | +| RO | Romania | +| SI | Slovenia | +| SK | Slovakia | +| FI | Finland | +| SE | Sweden | +| IS | Iceland | +| LI | Liechtenstein | +| NO | Norway | +| UK | United Kingdom | +| BA | Bosnia and Herzegovina | +| MK | North Macedonia | +| AL | Albania | +| RS | Serbia | + +
+
+ +| code | language | +| ---- | -------------- | +| BUL | Bulgarian | +| SPA | Spanish | +| CZE | Czech | +| DAN | Danish | +| GER | German | +| EST | Estonian | +| GRE | Greek | +| ENG | English | +| FRE | French | +| GLE | Irish | +| HRV | Croatian | +| ITA | Italian | +| LAV | Latvian | +| LIT | Lithuanian | +| HUN | Hungarian | +| MLT | Maltese | +| DUT | Dutch; Flemish | +| POL | Polish | +| POR | Portuguese | +| RUM | Romanian | +| SLO | Slovak | +| SLV | Slovenian | +| FIN | Finnish | +| SWE | Swedish | +| ARA | Arabic | +| CHI | Chinese | +| JPN | Japanese | +| RUS | Russian | +| OTH | Other | +| UNK | Unknown | + +
+
diff --git a/examples/loader-elasticsearch/.gitignore b/examples/loader-elasticsearch/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-elasticsearch/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-elasticsearch/README.md b/examples/loader-elasticsearch/README.md new file mode 100644 index 000000000..32b6ad124 --- /dev/null +++ b/examples/loader-elasticsearch/README.md @@ -0,0 +1,37 @@ +[Framework examples →](../) + +# Elasticsearch data loader + +View live: + +This Observable Framework example demonstrates how to write a TypeScript data loader that runs a query on Elasticsearch using the [Elasticsearch Node.js client](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html). The data loader lives in [`src/data/kibana_sample_data_logs.csv.ts`](./src/data/kibana_sample_data_logs.csv.ts) and uses the helper [`src/data/es_client.ts`](./src/data/es_client.ts). + +To fully reproduce the example, you need to have a setup with both Elasticsearch and Kibana running to create the sample data. Here’s how to set up both on macOS: + +```bash +# Download and run Elasticsearch +curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.14.1-darwin-x86_64.tar.gz +gunzip -c elasticsearch-8.14.1-darwin-x86_64.tar.gz | tar xopf - +cd elasticsearch-8.14.1 +./bin/elasticsearch + +# Next, in another terminal tab, download and run Kibana +curl -O https://artifacts.elastic.co/downloads/kibana/kibana-8.14.1-darwin-x86_64.tar.gz +gunzip -c kibana-8.14.1-darwin-x86_64.tar.gz | tar xopf - +cd kibana-8.14.1 +./bin/kibana +``` + +The commands for both will output instructions how to finish the setup with security enabled. Once you have both running, you can create the “Sample web logs” dataset in Kibana via this URL: http://localhost:5601/app/home#/tutorial_directory/sampleData + +Finally, create the `.env` file with the credentials shared for the user `elastic` that were logged when starting Elasticsearch like this. To get the CA fingerprint for the config, run the following command from the directory you started installing Elasticsearch: + +``` +openssl x509 -fingerprint -sha256 -noout -in ./elasticsearch-8.14.1/config/certs/http_ca.crt +``` + +``` +ES_NODE="https://elastic:@localhost:9200" +ES_CA_FINGERPRINT="" +ES_UNSAFE_TLS_REJECT_UNAUTHORIZED="FALSE" +``` diff --git a/examples/loader-elasticsearch/observablehq.config.js b/examples/loader-elasticsearch/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-elasticsearch/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-elasticsearch/package.json b/examples/loader-elasticsearch/package.json new file mode 100644 index 000000000..735b2eb6a --- /dev/null +++ b/examples/loader-elasticsearch/package.json @@ -0,0 +1,26 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@elastic/elasticsearch": "^8.14.0", + "@observablehq/framework": "latest", + "d3-dsv": "^3.0.1", + "d3-time": "^3.1.0", + "dotenv": "^16.4.5" + }, + "devDependencies": { + "@types/d3-dsv": "^3.0.7", + "@types/d3-time": "^3.0.3", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=20" + } +} diff --git a/examples/loader-elasticsearch/src/.gitignore b/examples/loader-elasticsearch/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-elasticsearch/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-elasticsearch/src/data/es_client.ts b/examples/loader-elasticsearch/src/data/es_client.ts new file mode 100644 index 000000000..23ccd3bd4 --- /dev/null +++ b/examples/loader-elasticsearch/src/data/es_client.ts @@ -0,0 +1,67 @@ +import "dotenv/config"; +import { Client } from "@elastic/elasticsearch"; + +// Have a look at the "Getting started" guide of the Elasticsearch node.js client +// to learn more about how to configure these environment variables: +// https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/getting-started-js.html + +const { + // ES_NODE can include the username and password in the URL, e.g.: + // ES_NODE=https://:@:9200 + ES_NODE, + // As an alternative to ES_NODE when using Elastic Cloud, you can use ES_CLOUD_ID and + // set it to the Cloud ID that you can find in the cloud console of the deployment (https://cloud.elastic.co/). + ES_CLOUD_ID, + // ES_API_KEY can be used instead of username and password. + // The API key will take precedence if both are set. + ES_API_KEY, + ES_USERNAME, + ES_PASSWORD, + // the fingerprint (SHA256) of the CA certificate that is used to sign + // the certificate that the Elasticsearch node presents for TLS. + ES_CA_FINGERPRINT, + // Warning: This option should be considered an insecure workaround for local development only. + // You may wish to specify a self-signed certificate rather than disabling certificate verification. + // ES_UNSAFE_TLS_REJECT_UNAUTHORIZED can be set to FALSE to disable certificate verification. + // See https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-connecting.html#auth-tls for more. + ES_UNSAFE_TLS_REJECT_UNAUTHORIZED, +} = process.env; + +if ((!ES_NODE && !ES_CLOUD_ID) || (ES_NODE && ES_CLOUD_ID)) + throw new Error( + "Either ES_NODE or ES_CLOUD_ID need to be defined, but not both.", + ); + +const esUrl = ES_NODE ? new URL(ES_NODE) : undefined; +const isHTTPS = esUrl?.protocol === "https:"; +const isLocalhost = esUrl?.hostname === "localhost"; + +export const esClient = new Client({ + ...(ES_NODE ? { node: ES_NODE } : {}), + ...(ES_CLOUD_ID ? { cloud: { id: ES_CLOUD_ID } } : {}), + ...(ES_CA_FINGERPRINT ? { caFingerprint: ES_CA_FINGERPRINT } : {}), + ...(ES_API_KEY + ? { + auth: { + apiKey: ES_API_KEY, + }, + } + : {}), + ...(!ES_API_KEY && ES_USERNAME && ES_PASSWORD + ? { + auth: { + username: ES_USERNAME, + password: ES_PASSWORD, + }, + } + : {}), + ...(isHTTPS && + isLocalhost && + ES_UNSAFE_TLS_REJECT_UNAUTHORIZED?.toLowerCase() === "false" + ? { + tls: { + rejectUnauthorized: false, + }, + } + : {}), +}); diff --git a/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv b/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv new file mode 100644 index 000000000..aff60bffe --- /dev/null +++ b/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv @@ -0,0 +1,184 @@ +date,count,response_code +2024-06-16,230,200 +2024-06-16,12,503 +2024-06-16,7,404 +2024-06-17,209,200 +2024-06-17,12,404 +2024-06-17,10,503 +2024-06-18,210,200 +2024-06-18,16,404 +2024-06-18,4,503 +2024-06-19,220,200 +2024-06-19,11,404 +2024-06-19,5,503 +2024-06-20,211,200 +2024-06-20,15,404 +2024-06-20,4,503 +2024-06-21,210,200 +2024-06-21,12,404 +2024-06-21,8,503 +2024-06-22,211,200 +2024-06-22,10,503 +2024-06-22,8,404 +2024-06-23,219,200 +2024-06-23,9,404 +2024-06-23,3,503 +2024-06-24,211,200 +2024-06-24,12,404 +2024-06-24,7,503 +2024-06-25,208,200 +2024-06-25,11,404 +2024-06-25,11,503 +2024-06-26,222,200 +2024-06-26,7,503 +2024-06-26,1,404 +2024-06-27,209,200 +2024-06-27,13,503 +2024-06-27,8,404 +2024-06-28,203,200 +2024-06-28,18,404 +2024-06-28,9,503 +2024-06-29,216,200 +2024-06-29,8,404 +2024-06-29,6,503 +2024-06-30,214,200 +2024-06-30,10,404 +2024-06-30,6,503 +2024-07-01,212,200 +2024-07-01,12,404 +2024-07-01,6,503 +2024-07-02,215,200 +2024-07-02,12,404 +2024-07-02,3,503 +2024-07-03,212,200 +2024-07-03,11,404 +2024-07-03,6,503 +2024-07-04,210,200 +2024-07-04,14,404 +2024-07-04,7,503 +2024-07-05,211,200 +2024-07-05,14,404 +2024-07-05,5,503 +2024-07-06,196,200 +2024-07-06,32,404 +2024-07-06,2,503 +2024-07-07,205,200 +2024-07-07,17,404 +2024-07-07,8,503 +2024-07-08,204,200 +2024-07-08,14,404 +2024-07-08,12,503 +2024-07-09,202,200 +2024-07-09,17,404 +2024-07-09,11,503 +2024-07-10,214,200 +2024-07-10,10,503 +2024-07-10,6,404 +2024-07-11,206,200 +2024-07-11,13,404 +2024-07-11,11,503 +2024-07-12,218,200 +2024-07-12,6,404 +2024-07-12,6,503 +2024-07-13,216,200 +2024-07-13,10,404 +2024-07-13,4,503 +2024-07-14,216,200 +2024-07-14,7,404 +2024-07-14,6,503 +2024-07-15,218,200 +2024-07-15,12,404 +2024-07-15,1,503 +2024-07-16,162,200 +2024-07-16,7,404 +2024-07-16,4,503 +2024-07-17,211,200 +2024-07-17,14,404 +2024-07-17,5,503 +2024-07-18,214,200 +2024-07-18,9,404 +2024-07-18,7,503 +2024-07-19,213,200 +2024-07-19,9,404 +2024-07-19,8,503 +2024-07-20,212,200 +2024-07-20,10,404 +2024-07-20,7,503 +2024-07-21,203,200 +2024-07-21,21,404 +2024-07-21,7,503 +2024-07-22,215,200 +2024-07-22,8,503 +2024-07-22,7,404 +2024-07-23,208,200 +2024-07-23,17,404 +2024-07-23,4,503 +2024-07-24,212,200 +2024-07-24,13,404 +2024-07-24,6,503 +2024-07-25,211,200 +2024-07-25,13,404 +2024-07-25,6,503 +2024-07-26,213,200 +2024-07-26,9,404 +2024-07-26,8,503 +2024-07-27,210,200 +2024-07-27,110,404 +2024-07-27,9,503 +2024-07-28,217,200 +2024-07-28,8,404 +2024-07-28,6,503 +2024-07-29,200,200 +2024-07-29,17,404 +2024-07-29,13,503 +2024-07-30,215,200 +2024-07-30,12,404 +2024-07-30,3,503 +2024-07-31,212,200 +2024-07-31,11,404 +2024-07-31,7,503 +2024-08-01,206,200 +2024-08-01,13,503 +2024-08-01,11,404 +2024-08-02,216,200 +2024-08-02,7,404 +2024-08-02,7,503 +2024-08-03,214,200 +2024-08-03,14,404 +2024-08-03,2,503 +2024-08-04,213,200 +2024-08-04,13,503 +2024-08-04,4,404 +2024-08-05,212,200 +2024-08-05,9,404 +2024-08-05,9,503 +2024-08-06,211,200 +2024-08-06,11,503 +2024-08-06,8,404 +2024-08-07,210,200 +2024-08-07,13,404 +2024-08-07,7,503 +2024-08-08,206,200 +2024-08-08,16,404 +2024-08-08,8,503 +2024-08-09,211,200 +2024-08-09,13,404 +2024-08-09,6,503 +2024-08-10,212,200 +2024-08-10,13,404 +2024-08-10,5,503 +2024-08-11,208,200 +2024-08-11,12,404 +2024-08-11,10,503 +2024-08-12,210,200 +2024-08-12,10,404 +2024-08-12,10,503 +2024-08-13,213,200 +2024-08-13,9,503 +2024-08-13,8,404 +2024-08-14,210,200 +2024-08-14,13,404 +2024-08-14,7,503 +2024-08-15,194,200 +2024-08-15,8,404 +2024-08-15,3,503 diff --git a/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv.ts b/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv.ts new file mode 100644 index 000000000..1ff13918e --- /dev/null +++ b/examples/loader-elasticsearch/src/data/kibana_sample_data_logs.csv.ts @@ -0,0 +1,62 @@ +import { csvFormat } from "d3-dsv"; +import { esClient } from "./es_client.js"; + +interface AggsResponseFormat { + logs_histogram: { + buckets: Array<{ + key: number; + key_as_string: string; + doc_count: number; + response_code: { + buckets: Array<{ key: string; doc_count: number }>; + }; + }>; + }; +} + +interface LoaderOutputFormat { + date: string; + count: number; + response_code: string; +} + +const resp = await esClient.search({ + index: "kibana_sample_data_logs", + size: 0, + aggs: { + logs_histogram: { + date_histogram: { + field: "@timestamp", + calendar_interval: "1d", + }, + aggs: { + response_code: { + terms: { + field: "response.keyword", + }, + }, + }, + }, + }, +}); + +process.stdout.write( + csvFormat( + // This transforms the nested response from Elasticsearch into a flat array. + resp.aggregations!.logs_histogram.buckets.reduce>( + (p, c) => { + p.push( + ...c.response_code.buckets.map((d) => ({ + // Just keep the date from the full ISO string. + date: c.key_as_string.split("T")[0], + count: d.doc_count, + response_code: d.key, + })), + ); + + return p; + }, + [], + ), + ), +); diff --git a/examples/loader-elasticsearch/src/index.md b/examples/loader-elasticsearch/src/index.md new file mode 100644 index 000000000..4740f03d6 --- /dev/null +++ b/examples/loader-elasticsearch/src/index.md @@ -0,0 +1,184 @@ +# Elasticsearch data loader + +Here’s a TypeScript data loader that queries an Elasticsearch cluster. + +```ts +import { csvFormat } from "d3-dsv"; +import { esClient } from "./es_client.js"; + +interface AggsResponseFormat { + logs_histogram: { + buckets: Array<{ + key: number; + key_as_string: string; + doc_count: number; + response_code: { + buckets: Array<{ key: string; doc_count: number }>; + }; + }>; + }; +} + +interface LoaderOutputFormat { + date: string; + count: number; + response_code: string; +} + +const resp = await esClient.search({ + index: "kibana_sample_data_logs", + size: 0, + aggs: { + logs_histogram: { + date_histogram: { + field: "@timestamp", + calendar_interval: "1d", + }, + aggs: { + response_code: { + terms: { + field: "response.keyword", + }, + }, + }, + }, + }, +}); + +process.stdout.write( + csvFormat( + // This transforms the nested response from Elasticsearch into a flat array. + resp.aggregations!.logs_histogram.buckets.reduce>( + (p, c) => { + p.push( + ...c.response_code.buckets.map((d) => ({ + // Just keep the date from the full ISO string. + date: c.key_as_string.split("T")[0], + count: d.doc_count, + response_code: d.key, + })), + ); + + return p; + }, + [], + ), + ), +); +``` + +The data loader uses a helper file, `es_client.ts`, which provides a wrapper on the `@elastic/elasticsearch` package. This reduces the amount of boilerplate you need to write to issue a query. + +```ts +import "dotenv/config"; +import { Client } from "@elastic/elasticsearch"; + +// Have a look at the "Getting started" guide of the Elasticsearch node.js client +// to learn more about how to configure these environment variables: +// https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/getting-started-js.html + +const { + // ES_NODE can include the username and password in the URL, e.g.: + // ES_NODE=https://:@:9200 + ES_NODE, + // As an alternative to ES_NODE when using Elastic Cloud, you can use ES_CLOUD_ID and + // set it to the Cloud ID that you can find in the cloud console of the deployment (https://cloud.elastic.co/). + ES_CLOUD_ID, + // ES_API_KEY can be used instead of username and password. + // The API key will take precedence if both are set. + ES_API_KEY, + ES_USERNAME, + ES_PASSWORD, + // the fingerprint (SHA256) of the CA certificate that is used to sign + // the certificate that the Elasticsearch node presents for TLS. + ES_CA_FINGERPRINT, + // Warning: This option should be considered an insecure workaround for local development only. + // You may wish to specify a self-signed certificate rather than disabling certificate verification. + // ES_UNSAFE_TLS_REJECT_UNAUTHORIZED can be set to FALSE to disable certificate verification. + // See https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-connecting.html#auth-tls for more. + ES_UNSAFE_TLS_REJECT_UNAUTHORIZED, +} = process.env; + +if ((!ES_NODE && !ES_CLOUD_ID) || (ES_NODE && ES_CLOUD_ID)) + throw new Error( + "Either ES_NODE or ES_CLOUD_ID need to be defined, but not both.", + ); + +const esUrl = ES_NODE ? new URL(ES_NODE) : undefined; +const isHTTPS = esUrl?.protocol === "https:"; +const isLocalhost = esUrl?.hostname === "localhost"; + +export const esClient = new Client({ + ...(ES_NODE ? { node: ES_NODE } : {}), + ...(ES_CLOUD_ID ? { cloud: { id: ES_CLOUD_ID } } : {}), + ...(ES_CA_FINGERPRINT ? { caFingerprint: ES_CA_FINGERPRINT } : {}), + ...(ES_API_KEY + ? { + auth: { + apiKey: ES_API_KEY, + }, + } + : {}), + ...(!ES_API_KEY && ES_USERNAME && ES_PASSWORD + ? { + auth: { + username: ES_USERNAME, + password: ES_PASSWORD, + }, + } + : {}), + ...(isHTTPS && + isLocalhost && + ES_UNSAFE_TLS_REJECT_UNAUTHORIZED?.toLowerCase() === "false" + ? { + tls: { + rejectUnauthorized: false, + }, + } + : {}), +}); +``` + +
+ +To run this data loader, you’ll need to install `@elastic/elasticsearch`, `d3-dsv` and `dotenv` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with your Elasticsearch cluster, you need to set the environment variables defined in the helper. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +ES_NODE="https://USERNAME:PASSWORD@HOST:9200" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +The above data loader lives in `data/kibana_sample_data_logs.csv.ts`, so we can load the data as `data/kibana_sample_data_logs.csv`. The `FileAttachment.csv` method parses the file and returns a promise to an array of objects. + +```js echo +const logs = FileAttachment("./data/kibana_sample_data_logs.csv").csv({typed: true}); +``` + +The `logs` table has three columns: `date`, `count` and `response_code`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(logs) +``` + +Lastly, we can pass the table to Observable Plot to make a line chart. + +```js echo +Plot.plot({ + style: "overflow: visible;", + y: { grid: true }, + marks: [ + Plot.ruleY([0]), + Plot.line(logs, {x: "date", y: "count", stroke: "response_code", tip: true}), + Plot.text(logs, Plot.selectLast({x: "date", y: "count", z: "response_code", text: "response_code", textAnchor: "start", dx: 3})) + ] +}) +``` diff --git a/examples/loader-github/.gitignore b/examples/loader-github/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-github/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-github/README.md b/examples/loader-github/README.md new file mode 100644 index 000000000..2cf7b0ca4 --- /dev/null +++ b/examples/loader-github/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# GitHub data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that talks to the GitHub API using [`octokit`](https://github.com/octokit/octokit.js), the official GitHub SDK. It fetches a summary of all open issues and pull requests in the Observable Framework repo. The data loader lives in [`src/data/issues.json.js`](./src/data/issues.json.js). diff --git a/examples/loader-github/observablehq.config.js b/examples/loader-github/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-github/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-github/package.json b/examples/loader-github/package.json new file mode 100644 index 000000000..eb5515945 --- /dev/null +++ b/examples/loader-github/package.json @@ -0,0 +1,22 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "dotenv": "^16.4.5", + "octokit": "^4.0.2" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-github/src/.gitignore b/examples/loader-github/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-github/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-github/src/data/issues.json.js b/examples/loader-github/src/data/issues.json.js new file mode 100644 index 000000000..778a0da3e --- /dev/null +++ b/examples/loader-github/src/data/issues.json.js @@ -0,0 +1,30 @@ +import "dotenv/config"; +import {Octokit} from "octokit"; + +const octokit = new Octokit({auth: process.env.GITHUB_TOKEN}); + +const iterator = octokit.paginate.iterator(octokit.rest.issues.listForRepo, { + owner: "observablehq", + repo: "framework", + state: "open", + per_page: 100 +}); + +const issues = []; + +for await (const {data} of iterator) { + for (const item of data) { + issues.push({ + state: item.state, + pull_request: !!item.pull_request, + created_at: item.created_at, + closed_at: item.closed_at, + draft: item.draft, + reactions: {...item.reactions, url: undefined}, + title: item.title, + number: item.number + }); + } +} + +process.stdout.write(JSON.stringify(issues)); diff --git a/examples/loader-github/src/index.md b/examples/loader-github/src/index.md new file mode 100644 index 000000000..dff0a00cf --- /dev/null +++ b/examples/loader-github/src/index.md @@ -0,0 +1,84 @@ +# GitHub data loader + +Here’s a TypeScript data loader that talks to the GitHub API using [`octokit`](https://github.com/octokit/octokit.js), the official GitHub SDK. It fetches a summary of all open issues and pull requests in the Observable Framework repo. (To produce a smaller file, only a subset of fields are included in the output.) + +```js run=false +import "dotenv/config"; +import {Octokit} from "octokit"; + +const octokit = new Octokit({auth: process.env.GITHUB_TOKEN}); + +const iterator = octokit.paginate.iterator(octokit.rest.issues.listForRepo, { + owner: "observablehq", + repo: "framework", + state: "open", + per_page: 100 +}); + +const issues = []; + +for await (const {data} of iterator) { + for (const item of data) { + issues.push({ + state: item.state, + pull_request: !!item.pull_request, + created_at: item.created_at, + closed_at: item.closed_at, + draft: item.draft, + reactions: {...item.reactions, url: undefined}, + title: item.title, + number: item.number + }); + } +} + +process.stdout.write(JSON.stringify(issues)); +``` + +
+ +To run this data loader, you’ll need to install `dotenv` and `octokit` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with GitHub, you will need to set the secret `GITHUB_TOKEN` environment variable. If you use GitHub Actions, the `GITHUB_TOKEN` is [provided automatically as a secret](https://docs.github.com/en/actions/security-guides/automatic-token-authentication). For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +GITHUB_TOKEN="github_pat_XXX" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +Replace the `XXX` above with your [GitHub personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens). + +The above data loader lives in `data/issues.json.js`, so we can load the data as `data/issues.json`. The `FileAttachment.json` method parses the file and returns a promise to an array of objects. + +```js echo +const issues = FileAttachment("./data/issues.json").json(); +``` + +You can inspect the data using `display`. + +```js echo +display(issues); +``` + +Alternatively, you can display the data in a table using `Inputs.table`. + +```js echo +Inputs.table( + issues.map((d) => ({ + title: `#${d.number} - ${d.title}`, + upvotes: d.reactions["+1"] + })), + { + maxWidth: 640, + sort: "upvotes", + reverse: true + } +) +``` diff --git a/examples/loader-google-analytics/.gitignore b/examples/loader-google-analytics/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-google-analytics/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-google-analytics/README.md b/examples/loader-google-analytics/README.md new file mode 100644 index 000000000..6256b7d6e --- /dev/null +++ b/examples/loader-google-analytics/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Google Analytics data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that fetches metrics from the Google Analytics API using the [Google Analytics Data Node.js Client](https://googleapis.dev/nodejs/analytics-data/latest/). The data loader fetches the `activeUsers` metric for a specified date range and then displays the data in a line chart. The data loader lives in [`src/data/active-users.csv.js`](./src/data/active-users.csv.js) and uses the helper [`src/data/google-analytics.js`](./src/data/google-analytics.js). diff --git a/examples/loader-google-analytics/observablehq.config.js b/examples/loader-google-analytics/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-google-analytics/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-google-analytics/package.json b/examples/loader-google-analytics/package.json new file mode 100644 index 000000000..dd0b2bb34 --- /dev/null +++ b/examples/loader-google-analytics/package.json @@ -0,0 +1,23 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@google-analytics/data": "^4.5.0", + "@observablehq/framework": "^1.7.0", + "d3-dsv": "^3.0.1", + "dotenv": "^16.4.5" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-google-analytics/src/.gitignore b/examples/loader-google-analytics/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-google-analytics/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-google-analytics/src/data/active-users.csv.js b/examples/loader-google-analytics/src/data/active-users.csv.js new file mode 100644 index 000000000..40d8b85c2 --- /dev/null +++ b/examples/loader-google-analytics/src/data/active-users.csv.js @@ -0,0 +1,22 @@ +import {csvFormat} from "d3-dsv"; +import {runReport} from "./google-analytics.js"; + +const {rows} = await runReport({ + dateRanges: [{startDate: "2023-06-01", endDate: "2023-09-01"}], + dimensions: [{name: "date"}], + metrics: [{name: "activeUsers"}], + orderBys: [{dimension: {dimensionName: "date"}}] +}); + +process.stdout.write( + csvFormat( + rows.map((d) => ({ + date: parseDate(d.dimensionValues[0].value), + value: d.metricValues[0].value + })) + ) +); + +function parseDate(date) { + return new Date(`${date.slice(0, 4)}-${date.slice(4, 6)}-${date.slice(6, 8)}`); +} diff --git a/examples/loader-google-analytics/src/data/google-analytics.js b/examples/loader-google-analytics/src/data/google-analytics.js new file mode 100644 index 000000000..abf8fd655 --- /dev/null +++ b/examples/loader-google-analytics/src/data/google-analytics.js @@ -0,0 +1,21 @@ +import "dotenv/config"; +import {BetaAnalyticsDataClient} from "@google-analytics/data"; + +const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; + +if (!GA_CLIENT_EMAIL) throw new Error("missing GA_CLIENT_EMAIL"); +if (!GA_PRIVATE_KEY) throw new Error("missing GA_PRIVATE_KEY"); + +const analyticsClient = new BetaAnalyticsDataClient({ + credentials: { + client_email: GA_CLIENT_EMAIL, + private_key: GA_PRIVATE_KEY + } +}); + +const defaultProperty = GA_PROPERTY_ID && `properties/${GA_PROPERTY_ID}`; + +export async function runReport({property = defaultProperty, ...options} = {}) { + const [response] = await analyticsClient.runReport({property, ...options}); + return response; +} diff --git a/examples/loader-google-analytics/src/index.md b/examples/loader-google-analytics/src/index.md new file mode 100644 index 000000000..5f353fc5e --- /dev/null +++ b/examples/loader-google-analytics/src/index.md @@ -0,0 +1,111 @@ +# Google Analytics data loader + +Here’s a JavaScript data loader that fetches the `activeUsers` metric from the Google Analytics API using the [Google Analytics Data Node.js Client](https://googleapis.dev/nodejs/analytics-data/latest/). + +```js run=false +import {csvFormat} from "d3-dsv"; +import {runReport} from "./google-analytics.js"; + +const {rows} = await runReport({ + dateRanges: [{startDate: "2023-06-01", endDate: "2023-09-01"}], + dimensions: [{name: "date"}], + metrics: [{name: "activeUsers"}], + orderBys: [{dimension: {dimensionName: "date"}}] +}); + +process.stdout.write( + csvFormat( + rows.map((d) => ({ + date: parseDate(d.dimensionValues[0].value), + value: d.metricValues[0].value + })) + ) +); + +function parseDate(date) { + return new Date(`${date.slice(0, 4)}-${date.slice(4, 6)}-${date.slice(6, 8)}`); +} +``` + +
+ +The Google Analytics API returns dates in the `YYYYMMDD` format, so we convert them to ISO 8601 `YYYY-MM-DD` format and then pass them to the `Date` constructor in the `parseDate` function. This ensures a standard representation that will be correctly parsed by `FileAttachment.csv`. + +
+ +The data loader uses a helper file, `google-analytics.js`, which is a thin wrapper on the `@google-analytics/data` package. This reduces the amount of boilerplate you need to run a report. + +```js run=false +import "dotenv/config"; +import {BetaAnalyticsDataClient} from "@google-analytics/data"; + +const {GA_PROPERTY_ID, GA_CLIENT_EMAIL, GA_PRIVATE_KEY} = process.env; + +if (!GA_CLIENT_EMAIL) throw new Error("missing GA_CLIENT_EMAIL"); +if (!GA_PRIVATE_KEY) throw new Error("missing GA_PRIVATE_KEY"); + +const analyticsClient = new BetaAnalyticsDataClient({ + credentials: { + client_email: GA_CLIENT_EMAIL, + private_key: GA_PRIVATE_KEY + } +}); + +const defaultProperty = GA_PROPERTY_ID && `properties/${GA_PROPERTY_ID}`; + +export async function runReport({property = defaultProperty, ...options} = {}) { + const [response] = await analyticsClient.runReport({property, ...options}); + return response; +} +``` + +
+ +To run this data loader, you’ll need to install `@google-analytics/data`, `d3-dsv`, and +`dotenv` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with the Google Analytics API, you will need to set several environment variables containing secret credentials. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +GA_PROPERTY_ID="123456789" +GA_CLIENT_EMAIL="xxx@yyy.iam.gserviceaccount.com" +GA_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nxxxxxxxxxx-----END PRIVATE KEY-----\n" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +
+ +See the [Google Analytics API Quickstart](https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries) for how to create the service account needed to access the Google Analytics API. + +
+ +The above data loader lives in `data/active-users.csv.js`, so we can load the data as `data/active-users.csv`. The `FileAttachment.csv` method parses the file and returns a promise to an array of objects. + +```js echo +const activeUsers = FileAttachment("./data/active-users.csv").csv({typed: true}); +``` + +The `activeUsers` table has two columns: `date` and `value`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(activeUsers) +``` + +Lastly, we can pass the table to `Plot.plot` to make a simple line chart. + +```js echo +Plot.plot({ + marks: [ + Plot.axisY({tickFormat: (d) => d / 1000, label: "Daily active users (thousands)"}), + Plot.ruleY([0]), + Plot.lineY(activeUsers, {x: "date", y: "value", curve: "step", tip: true}) + ] +}) +``` diff --git a/examples/loader-google-bigquery/.gitignore b/examples/loader-google-bigquery/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-google-bigquery/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-google-bigquery/README.md b/examples/loader-google-bigquery/README.md new file mode 100644 index 000000000..c7cc50b28 --- /dev/null +++ b/examples/loader-google-bigquery/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# Google BigQuery data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that fetches metrics from the Google Bigquery API using the [Google BigQuery Data Node.js Client](https://cloud.google.com/nodejs/docs/reference/bigquery-connection/latest). + +The data loader authenticates into BigQuery using a service account, then fetches a selection of the `confirmed_cases` metric from a publicly available Covid-19 BigQuery dataset and then displays the data in a line chart. The data loader lives in [`src/data/covidstats_it.csv.js`](./src/data/covidstats_it.csv.js) and uses the helper [`src/data/google-bigquery.js`](./src/data/google-bigquery.js). diff --git a/examples/loader-google-bigquery/observablehq.config.js b/examples/loader-google-bigquery/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-google-bigquery/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-google-bigquery/package.json b/examples/loader-google-bigquery/package.json new file mode 100644 index 000000000..1754d4f91 --- /dev/null +++ b/examples/loader-google-bigquery/package.json @@ -0,0 +1,23 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "rimraf dist && observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@google-cloud/bigquery": "^7.8.0", + "@observablehq/framework": "^1.8.0", + "d3-dsv": "^3.0.1", + "dotenv": "^16.4.5" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-google-bigquery/src/.gitignore b/examples/loader-google-bigquery/src/.gitignore new file mode 100644 index 000000000..b6ed896fd --- /dev/null +++ b/examples/loader-google-bigquery/src/.gitignore @@ -0,0 +1,6 @@ +/.observablehq/cache/ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-google-bigquery/src/data/covidstats_it.csv b/examples/loader-google-bigquery/src/data/covidstats_it.csv new file mode 100644 index 000000000..762dfbba5 --- /dev/null +++ b/examples/loader-google-bigquery/src/data/covidstats_it.csv @@ -0,0 +1,15 @@ +date,confirmed_cases +2020-05-01,2277 +2020-05-02,2290 +2020-05-03,2344 +2020-05-04,2360 +2020-05-05,2371 +2020-05-06,2381 +2020-05-07,2419 +2020-05-08,2448 +2020-05-09,2482 +2020-05-10,2486 +2020-05-11,2536 +2020-05-12,2561 +2020-05-13,2583 +2020-05-14,2599 \ No newline at end of file diff --git a/examples/loader-google-bigquery/src/data/covidstats_it.csv.js b/examples/loader-google-bigquery/src/data/covidstats_it.csv.js new file mode 100644 index 000000000..9056f30fb --- /dev/null +++ b/examples/loader-google-bigquery/src/data/covidstats_it.csv.js @@ -0,0 +1,18 @@ +import {csvFormat} from "d3-dsv"; +import {runQuery} from "./google-bigquery.js"; + +const rows = await runQuery(` + SELECT + FORMAT_TIMESTAMP('%Y-%m-%d', date) as date, + confirmed_cases + FROM + \`bigquery-public-data.covid19_italy.data_by_province\` + WHERE + name = "Lombardia" + AND province_name = "Lecco" + AND date BETWEEN '2020-05-01 00:00:00 UTC' AND '2020-05-15 00:00:00 UTC' + GROUP BY 1,2 + ORDER BY 1 ASC; +`); + +process.stdout.write(csvFormat(rows)); diff --git a/examples/loader-google-bigquery/src/data/google-bigquery.js b/examples/loader-google-bigquery/src/data/google-bigquery.js new file mode 100644 index 000000000..0187d5694 --- /dev/null +++ b/examples/loader-google-bigquery/src/data/google-bigquery.js @@ -0,0 +1,20 @@ +import "dotenv/config"; +import {BigQuery} from "@google-cloud/bigquery"; + +const {BQ_PROJECT_ID, BQ_CLIENT_EMAIL, BQ_PRIVATE_KEY} = process.env; + +if (!BQ_PROJECT_ID) throw new Error("missing BQ_PROJECT_ID"); +if (!BQ_CLIENT_EMAIL) throw new Error("missing BQ_CLIENT_EMAIL"); +if (!BQ_PRIVATE_KEY) throw new Error("missing BQ_PRIVATE_KEY"); + +const bigQueryClient = new BigQuery({ + projectId: BQ_PROJECT_ID, + credentials: { + client_email: BQ_CLIENT_EMAIL, + private_key: BQ_PRIVATE_KEY + } +}); + +export async function runQuery(query) { + return (await bigQueryClient.query({query}))[0]; +} diff --git a/examples/loader-google-bigquery/src/index.md b/examples/loader-google-bigquery/src/index.md new file mode 100644 index 000000000..e7184e5f8 --- /dev/null +++ b/examples/loader-google-bigquery/src/index.md @@ -0,0 +1,108 @@ +# Google BigQuery data loader + +Here’s a JavaScript data loader that fetches the `confirmed_cases` metric from the publicly available BigQuery Covid19 dataset through the Google BigQuery API by using the [Google BigQuery Data Node.js Client](https://cloud.google.com/nodejs/docs/reference/bigquery-connection/latest). + +```js run=false +import {csvFormat} from "d3-dsv"; +import {runQuery} from "./google-bigquery.js"; + +const rows = await runQuery(` + SELECT + FORMAT_TIMESTAMP('%Y-%m-%d', date) as date, + confirmed_cases + FROM + \`bigquery-public-data.covid19_italy.data_by_province\` + WHERE + name = "Lombardia" + AND province_name = "Lecco" + AND date BETWEEN '2020-05-01 00:00:00 UTC' AND '2020-05-15 00:00:00 UTC' + GROUP BY 1,2 + ORDER BY 1 ASC; +`); + +process.stdout.write(csvFormat(rows)); +``` + +
+ +This data loader depends on `@google-cloud/bigquery`, `d3-dsv`, and `dotenv`, which we reference in `package.json`. + +
+ +The data loader uses a helper file, `google-bigquery.js`, which is a thin wrapper on the `@google-cloud/bigquery` package. This reduces the amount of boilerplate you need to run a report. + +```js run=false +import "dotenv/config"; +import {BigQuery} from "@google-cloud/bigquery"; + +const {BQ_PROJECT_ID, BQ_CLIENT_EMAIL, BQ_PRIVATE_KEY} = process.env; + +if (!BQ_PROJECT_ID) throw new Error("missing BQ_PROJECT_ID"); +if (!BQ_CLIENT_EMAIL) throw new Error("missing BQ_CLIENT_EMAIL"); +if (!BQ_PRIVATE_KEY) throw new Error("missing BQ_PRIVATE_KEY"); + +const bigQueryClient = new BigQuery({ + projectId: BQ_PROJECT_ID, + credentials: { + client_email: BQ_CLIENT_EMAIL, + private_key: BQ_PRIVATE_KEY + } +}); + +export async function runQuery(query) { + return (await bigQueryClient.query({query}))[0]; +} +``` + +For the data loader to authenticate with the Google BigQuery API, you will need to set several environment variables containing secret credentials. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +BQ_PROJECT_ID="123456789-abc" +BQ_CLIENT_EMAIL="xxx@yyy.iam.gserviceaccount.com" +BQ_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nxxxxxxxxxx-----END PRIVATE KEY-----\n" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +
+ +See the [Google BigQuery API Quickstart](https://cloud.google.com/bigquery/docs/authentication) for how to create the service account needed to access the Google BigQuery API after it has been enable in the GCP console. The following [Google codelab](https://codelabs.developers.google.com/codelabs/cloud-bigquery-nodejs#0) might be helpful walk-through before getting started. Although the data in this example lives in the public database `bigquery-public-data.covid19_italy`, you still need to set up a service account and authenticate into one of your projects to access it. + +
+ +The above data loader lives in `data/covidstats_it.csv.js`, so we can load the data as `data/covidstats_it.csv`. + +```js echo +const covidStats = FileAttachment("data/covidstats_it.csv").csv({typed: true}); +``` + +The `covidStats` table has two columns: `date` and `confirmed_cases`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(covidStats) +``` + +Lastly, we can pass the table to `Plot.plot`. + +```js echo +Plot.plot({ + y: { + nice: 2, + grid: true, + label: "Confirmed cases" + }, + marks: [ + Plot.lineY(covidStats, { + x: "date", + y: "confirmed_cases", + stroke: "steelblue", + marker: true, + tip: true + }) + ] +}) +``` diff --git a/examples/loader-julia-to-txt/.gitignore b/examples/loader-julia-to-txt/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-julia-to-txt/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-julia-to-txt/README.md b/examples/loader-julia-to-txt/README.md new file mode 100644 index 000000000..2c390b1e1 --- /dev/null +++ b/examples/loader-julia-to-txt/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# Julia data loader to generate TXT + +View live: + +This Observable Framework example demonstrates how to write a data loader in Julia that generates a text file. Text of Edgar Allen Poe’s _The Raven_ is accessed from [Project Gutenberg](https://www.gutenberg.org/cache/epub/1065/pg1065.txt). The text is parsed and its 29th stanza (paragraph) is returned as text to standard out. + +The data loader lives in [`src/data/raven.txt.jl`](./src/data/raven.txt.jl). diff --git a/examples/loader-julia-to-txt/observablehq.config.js b/examples/loader-julia-to-txt/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-julia-to-txt/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-julia-to-txt/package.json b/examples/loader-julia-to-txt/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-julia-to-txt/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-julia-to-txt/src/.gitignore b/examples/loader-julia-to-txt/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-julia-to-txt/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-julia-to-txt/src/data/raven.txt.jl b/examples/loader-julia-to-txt/src/data/raven.txt.jl new file mode 100644 index 000000000..081a38cd7 --- /dev/null +++ b/examples/loader-julia-to-txt/src/data/raven.txt.jl @@ -0,0 +1,35 @@ +# Load Julia packages (must be installed) +using HTTP +using Gumbo +using TextAnalysis + +# Text URL +url = "https://www.gutenberg.org/cache/epub/1065/pg1065.txt" + +# Function to fetch text +function fetch_text_from_url(url::String) + response = HTTP.get(url) + text = String(response.body) + text = replace(text, "\r" => "") + return text +end + +# Split into paragraphs +function split_into_paragraphs(text::String) + paragraphs = split(text, "\n\n") + return paragraphs +end + +# Return a paragraph by number +function get_paragraph_by_number(text::String, paragraph_number::Int) + paragraphs = split_into_paragraphs(text) + return paragraphs[paragraph_number] +end + +# Fetch text and access a paragraph by number +text = fetch_text_from_url(url) +paragraph_number = 29 +result_paragraph = get_paragraph_by_number(text, paragraph_number) + +# Return text to standard output +println(result_paragraph) diff --git a/examples/loader-julia-to-txt/src/index.md b/examples/loader-julia-to-txt/src/index.md new file mode 100644 index 000000000..f1916093e --- /dev/null +++ b/examples/loader-julia-to-txt/src/index.md @@ -0,0 +1,57 @@ +# Julia data loader to generate TXT + +Here’s a Julia data loader that accesses Edgar Allen Poe’s _The Raven_ from [Project Gutenberg](https://www.gutenberg.org/cache/epub/1065/pg1065.txt), splits the text by stanza (paragraph), then outputs its 29th stanza as text to standard out. + +```julia +# Load Julia packages (must be installed) +using HTTP +using Gumbo +using TextAnalysis + +# Text URL +url = "https://www.gutenberg.org/cache/epub/1065/pg1065.txt" + +# Function to fetch text +function fetch_text_from_url(url::String) + response = HTTP.get(url) + text = String(response.body) + text = replace(text, "\r" => "") + return text +end + +# Split into paragraphs +function split_into_paragraphs(text::String) + paragraphs = split(text, "\n\n") + return paragraphs +end + +# Return a paragraph by number +function get_paragraph_by_number(text::String, paragraph_number::Int) + paragraphs = split_into_paragraphs(text) + return paragraphs[paragraph_number] +end + +# Fetch text and access a paragraph by number +text = fetch_text_from_url(url) +paragraph_number = 29 +result_paragraph = get_paragraph_by_number(text, paragraph_number) + +# Return text to standard output +println(result_paragraph) +``` + +
+ +To run this data loader, you’ll need Julia installed, along with the HTTP, Gumbo, and TextAnalysis packages, _e.g._ with `pkg> add HTTP Gumbo TextAnalysis` in the [Pkg REPL](https://pkgdocs.julialang.org/v1/managing-packages/#Adding-packages). + +
+ +The above data loader lives in `data/raven.txt.jl`, so we can load the data as `data/raven.txt` using FileAttachment: + +```js echo +const ravenStanza = FileAttachment("data/raven.txt").text() +``` + +```js echo +ravenStanza +``` diff --git a/examples/loader-parquet/.gitignore b/examples/loader-parquet/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-parquet/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-parquet/README.md b/examples/loader-parquet/README.md new file mode 100644 index 000000000..4aa09f890 --- /dev/null +++ b/examples/loader-parquet/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Apache Parquet data loader + +View live: + +This Observable Framework example demonstrates how to write a JavaScript data loader that outputs an Apache Parquet file using the `apache-arrow` and `parquet-wasm` packages. The data loader generates a synthetic time-series dataset using a random walk. The data loader lives in [`src/data/samples.parquet.js`](./src/data/samples.parquet.js). diff --git a/examples/loader-parquet/observablehq.config.js b/examples/loader-parquet/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-parquet/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-parquet/package.json b/examples/loader-parquet/package.json new file mode 100644 index 000000000..73bea1d9c --- /dev/null +++ b/examples/loader-parquet/package.json @@ -0,0 +1,22 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "apache-arrow": "^16.0.0", + "parquet-wasm": "^0.6.1" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-parquet/src/.gitignore b/examples/loader-parquet/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-parquet/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-parquet/src/data/samples.parquet.js b/examples/loader-parquet/src/data/samples.parquet.js new file mode 100644 index 000000000..1f0e4ba29 --- /dev/null +++ b/examples/loader-parquet/src/data/samples.parquet.js @@ -0,0 +1,23 @@ +import * as Arrow from "apache-arrow"; +import * as Parquet from "parquet-wasm"; + +// Generate a daily random walk as parallel arrays of {date, value}. +const date = []; +const value = []; +const start = new Date("2022-01-01"); +const end = new Date("2023-01-01"); +for (let currentValue = 0, currentDate = start; currentDate < end; ) { + date.push(currentDate); + value.push(currentValue); + (currentDate = new Date(currentDate)), currentDate.setUTCDate(currentDate.getUTCDate() + 1); + currentValue += Math.random() - 0.5; +} + +// Construct an Apache Arrow table from the parallel arrays. +const table = Arrow.tableFromArrays({date, value}); + +// Output the Apache Arrow table as a Parquet table to standard out. +const parquetTable = Parquet.Table.fromIPCStream(Arrow.tableToIPC(table, "stream")); +const parquetBuilder = new Parquet.WriterPropertiesBuilder().setCompression(Parquet.Compression.ZSTD).build(); +const parquetData = Parquet.writeParquet(parquetTable, parquetBuilder); +process.stdout.write(parquetData); diff --git a/examples/loader-parquet/src/index.md b/examples/loader-parquet/src/index.md new file mode 100644 index 000000000..7d2f942db --- /dev/null +++ b/examples/loader-parquet/src/index.md @@ -0,0 +1,65 @@ +# Apache Parquet data loader + +Here’s a JavaScript data loader that generates a random walk for each day in 2022 and outputs an Apache Parquet file to standard out. + +```js run=false +import * as Arrow from "apache-arrow"; +import * as Parquet from "parquet-wasm"; + +// Generate a daily random walk as parallel arrays of {date, value}. +const date = []; +const value = []; +const start = new Date("2022-01-01"); +const end = new Date("2023-01-01"); +for (let currentValue = 0, currentDate = start; currentDate < end; ) { + date.push(currentDate); + value.push(currentValue); + (currentDate = new Date(currentDate)), currentDate.setUTCDate(currentDate.getUTCDate() + 1); + currentValue += Math.random() - 0.5; +} + +// Construct an Apache Arrow table from the parallel arrays. +const table = Arrow.tableFromArrays({date, value}); + +// Output the Apache Arrow table as a Parquet table to standard out. +const parquetTable = Parquet.Table.fromIPCStream(Arrow.tableToIPC(table, "stream")); +const parquetBuilder = new Parquet.WriterPropertiesBuilder().setCompression(Parquet.Compression.ZSTD).build(); +const parquetData = Parquet.writeParquet(parquetTable, parquetBuilder); +process.stdout.write(parquetData); +``` + +
+ +To run this data loader, you’ll need to install `apache-arrow` and `parquet-wasm` using your preferred package manager such as npm or Yarn. + +
+ +The above data loader lives in `data/samples.parquet.js`, so we can load the data using `data/samples.parquet`. The `FileAttachment.parquet` method parses the file and returns a promise to an Apache Arrow table. + +```js echo +const samples = FileAttachment("./data/samples.parquet").parquet(); +``` + +The `samples` table has two columns: `date` and `value`. We can display the table using `Inputs.table`, though note that the `date` column is represented as numbers intead of `Date` instances — some information was lost when serialized as Parquet. (Perhaps in the future the Apache Arrow JavaScript library could return `Date` instances for date columns? Though this is typically much slower than representing dates as numbers in typed arrays.) We use the **format** option to make these dates readable. + +```js echo +Inputs.table(samples, { + format: { + date: (x) => new Date(x).toISOString().slice(0, 10) + } +}) +``` + +Lastly, we can pass the table to `Plot.plot` to make a simple line chart. Again, since the `date` column is numbers, Plot will interpret these as quantitative values by default; by setting the **type** of the *x* scale to *utc*, we tell Plot to treat these values as dates intead, producing a more readable axis. + +```js echo +Plot.plot({ + x: { + type: "utc" // treat x-values as dates, not numbers + }, + marks: [ + Plot.ruleY([0]), + Plot.lineY(samples, {x: "date", y: "value"}) + ] +}) +``` diff --git a/examples/loader-postgres/.gitignore b/examples/loader-postgres/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-postgres/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-postgres/README.md b/examples/loader-postgres/README.md new file mode 100644 index 000000000..228c47afd --- /dev/null +++ b/examples/loader-postgres/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# PostgreSQL data loader + +View live: + +This Observable Framework example demonstrates how to write a TypeScript data loader that runs a query on a PostgreSQL database using [Postgres.js](https://github.com/porsager/postgres). The data loader lives in [`src/data/edits.csv.ts`](./src/data/edits.csv.ts) and uses the helper [`src/data/postgres.ts`](./src/data/postgres.ts). diff --git a/examples/loader-postgres/observablehq.config.js b/examples/loader-postgres/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-postgres/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-postgres/package.json b/examples/loader-postgres/package.json new file mode 100644 index 000000000..de725b6b1 --- /dev/null +++ b/examples/loader-postgres/package.json @@ -0,0 +1,26 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "d3-dsv": "^3.0.1", + "d3-time": "^3.1.0", + "dotenv": "^16.4.5", + "postgres": "^3.4.4" + }, + "devDependencies": { + "@types/d3-dsv": "^3.0.7", + "@types/d3-time": "^3.0.3", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=20" + } +} diff --git a/examples/loader-postgres/src/.gitignore b/examples/loader-postgres/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-postgres/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-postgres/src/data/edits.csv.ts b/examples/loader-postgres/src/data/edits.csv.ts new file mode 100644 index 000000000..54090639b --- /dev/null +++ b/examples/loader-postgres/src/data/edits.csv.ts @@ -0,0 +1,20 @@ +import {csvFormat} from "d3-dsv"; +import {run} from "./postgres.js"; + +process.stdout.write( + csvFormat( + await run( + (sql) => + sql`WITH counts AS (SELECT DATE_TRUNC('day', e.time) AS "date", COUNT(*) AS "count" + FROM document_events e + JOIN documents d ON d.id = e.id + JOIN users u ON u.id = d.user_id + WHERE u.login = 'd3' + GROUP BY 1) +SELECT g.date, COALESCE(c.count, 0) AS count +FROM GENERATE_SERIES(DATE '2019-01-01', DATE '2019-12-31', INTERVAL '1 DAY') AS g(date) +LEFT JOIN counts c ON c.date = g.date +ORDER BY 1 DESC` + ) + ) +); diff --git a/examples/loader-postgres/src/data/postgres.ts b/examples/loader-postgres/src/data/postgres.ts new file mode 100644 index 000000000..0affc30cc --- /dev/null +++ b/examples/loader-postgres/src/data/postgres.ts @@ -0,0 +1,19 @@ +import "dotenv/config"; +import type {Row, Sql} from "postgres"; +import postgres from "postgres"; + +const {POSTGRES_URL} = process.env; + +if (!POSTGRES_URL) throw new Error("missing POSTGRES_URL"); + +// Warning: you may wish to specify a self-signed certificate rather than +// disabling certificate verification via rejectUnauthorized: false as below. +// See https://github.com/porsager/postgres/blob/master/README.md#ssl for more. +export async function run(f: (sql: Sql) => Promise): Promise { + const sql = postgres(POSTGRES_URL!, {ssl: {rejectUnauthorized: false}}); + try { + return await f(sql); + } finally { + await sql.end(); + } +} diff --git a/examples/loader-postgres/src/index.md b/examples/loader-postgres/src/index.md new file mode 100644 index 000000000..ce9f6f7ff --- /dev/null +++ b/examples/loader-postgres/src/index.md @@ -0,0 +1,97 @@ +# PostgreSQL data loader + +Here’s a TypeScript data loader that queries a PostgreSQL database. + +```ts run=false +import {csvFormat} from "d3-dsv"; +import {run} from "./postgres.js"; + +process.stdout.write( + csvFormat( + await run( + (sql) => + sql`WITH counts AS (SELECT DATE_TRUNC('day', e.time) AS "date", COUNT(*) AS "count" + FROM document_events e + JOIN documents d ON d.id = e.id + JOIN users u ON u.id = d.user_id + WHERE u.login = 'd3' + GROUP BY 1) +SELECT g.date, COALESCE(c.count, 0) AS count +FROM GENERATE_SERIES(DATE '2019-01-01', DATE '2019-12-31', INTERVAL '1 DAY') AS g(date) +LEFT JOIN counts c ON c.date = g.date +ORDER BY 1 DESC` + ) + ) +); +``` + +The data loader uses a helper file, `postgres.ts`, which is a thin wrapper on the `postgres` package. This reduces the amount of boilerplate you need to write to issue a query. + +```ts run=false +import "dotenv/config"; +import type {Row, Sql} from "postgres"; +import postgres from "postgres"; + +const {POSTGRES_URL} = process.env; + +if (!POSTGRES_URL) throw new Error("missing POSTGRES_URL"); + +// Warning: you may wish to specify a self-signed certificate rather than +// disabling certificate verification via rejectUnauthorized: false as below. +// See https://github.com/porsager/postgres/blob/master/README.md#ssl for more. +export async function run(f: (sql: Sql) => Promise): Promise { + const sql = postgres(POSTGRES_URL!, {ssl: {rejectUnauthorized: false}}); + try { + return await f(sql); + } finally { + await sql.end(); + } +} +``` + +
+ +To run this data loader, you’ll need to install `postgres`, `d3-dsv`, and `dotenv` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with your PostgreSQL database, you will need to set the secret `POSTGRES_URL` environment variable. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +POSTGRES_URL="postgres://USERNAME:PASSWORD@HOST.example.com:5432/DATABASE" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +The above data loader lives in `data/edits.csv.js`, so we can load the data as `data/edits.csv`. The `FileAttachment.csv` method parses the file and returns a promise to an array of objects. + +```js echo +const edits = FileAttachment("./data/edits.csv").csv({typed: true}); +``` + +The `edits` table has two columns: `date` and `count`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(edits) +``` + +Lastly, we can pass the table to `Plot.plot` to make a simple line chart. + +```js echo +Plot.plot({ + marks: [ + Plot.areaY(edits, {x: "date", y: "count", curve: "step", tip: true}), + Plot.ruleY([0]) + ] +}) +``` + +
+ +The query uses `GENERATE_SERIES` to compute each day in 2019; this is used to populate zeroes for days with no events. Without this, rows would be missing for days with no events. (And unless you supply the **interval** mark option, Observable Plot won’t know the expected regularity of the data and hence will interpolate over missing data — which is probably misleading.) + +
diff --git a/examples/loader-python-to-csv/.gitignore b/examples/loader-python-to-csv/.gitignore new file mode 100644 index 000000000..3f1673065 --- /dev/null +++ b/examples/loader-python-to-csv/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.venv +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-python-to-csv/README.md b/examples/loader-python-to-csv/README.md new file mode 100644 index 000000000..d5635dbb9 --- /dev/null +++ b/examples/loader-python-to-csv/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# Python data loader to generate CSV + +View live: + +This Observable Framework example demonstrates how to write a data loader in Python to generate a CSV file. The data loader uses scikit-learn’s [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) function to classify [penguins](https://journal.r-project.org/articles/RJ-2022-020/) by species, based on body mass, culmen and flipper measurements. Charts (made with Observable Plot) explore which penguins are misclassified. + +The data loader lives in [`src/data/predictions.csv.py`](./src/data/predictions.csv.py). diff --git a/examples/loader-python-to-csv/observablehq.config.js b/examples/loader-python-to-csv/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-python-to-csv/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-python-to-csv/package.json b/examples/loader-python-to-csv/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-python-to-csv/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/penguin-classification/requirements.txt b/examples/loader-python-to-csv/requirements.txt similarity index 87% rename from examples/penguin-classification/requirements.txt rename to examples/loader-python-to-csv/requirements.txt index e162f1cf7..d046eaf6c 100644 --- a/examples/penguin-classification/requirements.txt +++ b/examples/loader-python-to-csv/requirements.txt @@ -3,7 +3,7 @@ numpy==1.26.3 pandas==2.2.0 python-dateutil==2.8.2 pytz==2023.3.post1 -scikit-learn==1.4.0 +scikit-learn==1.5.0 scipy==1.12.0 six==1.16.0 threadpoolctl==3.2.0 diff --git a/examples/loader-python-to-csv/src/.gitignore b/examples/loader-python-to-csv/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-python-to-csv/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/penguin-classification/docs/data/penguins.csv b/examples/loader-python-to-csv/src/data/penguins.csv similarity index 100% rename from examples/penguin-classification/docs/data/penguins.csv rename to examples/loader-python-to-csv/src/data/penguins.csv diff --git a/examples/penguin-classification/docs/data/predictions.csv.py b/examples/loader-python-to-csv/src/data/predictions.csv.py similarity index 91% rename from examples/penguin-classification/docs/data/predictions.csv.py rename to examples/loader-python-to-csv/src/data/predictions.csv.py index 2dd5f38e7..25de90c64 100644 --- a/examples/penguin-classification/docs/data/predictions.csv.py +++ b/examples/loader-python-to-csv/src/data/predictions.csv.py @@ -3,7 +3,7 @@ import sys # Read the CSV -df = pd.read_csv("docs/data/penguins.csv") +df = pd.read_csv("src/data/penguins.csv") # Select columns to train the model X = df.iloc[:, [2, 3, 4, 5]] diff --git a/examples/loader-python-to-csv/src/index.md b/examples/loader-python-to-csv/src/index.md new file mode 100644 index 000000000..0896c5062 --- /dev/null +++ b/examples/loader-python-to-csv/src/index.md @@ -0,0 +1,78 @@ +# Python data loader to generate CSV + +Here’s a Python data loader that performs logistic regression to classify penguin species based on bill and body size measurements, then outputs a CSV file to standard out. + +```python +import pandas as pd +from sklearn.linear_model import LogisticRegression +import sys + +# Read the CSV +df = pd.read_csv("src/data/penguins.csv") + +# Select columns to train the model +X = df.iloc[:, [2, 3, 4, 5]] +Y = df.iloc[:, 0] + +# Create an instance of Logistic Regression Classifier and fit the data. +logreg = LogisticRegression() +logreg.fit(X, Y) + +results = df.copy(); +# Add predicted values +results['species_predicted'] = logreg.predict(X) + +# Write to CSV +results.to_csv(sys.stdout) +``` + +
+ +To run this data loader, you’ll need python3 and the pandas, matplotlib, io, and sys modules installed and available on your `$PATH`. + +
+ +
+ +We recommend using a [Python virtual environment](https://observablehq.com/framework/loaders#venv), such as with venv or uv, and managing required packages via `requirements.txt` rather than installing them globally. + +
+ +The above data loader lives in `data/predictions.csv.py`, so we can load the data using `data/predictions.csv` with `FileAttachment`: + +```js echo +const predictions = FileAttachment("data/predictions.csv").csv({typed: true}); +``` + +We can create a quick chart of predicted species, highlighting cases where penguins are misclassified, using Observable Plot: + +```js echo +Plot.plot({ + grid: true, + height: 400, + caption: "Incorrect predictions highlighted with diamonds. Actual species encoded with color and predicted species encoded with symbols.", + color: { + legend: true, + }, + x: {label: "Culmen length (mm)"}, + y: {label: "Culmen depth (mm)"}, + marks: [ + Plot.dot(predictions, { + x: "culmen_length_mm", + y: "culmen_depth_mm", + stroke: "species", + symbol: "species_predicted", + r: 3, + tip: {channels: {"mass": "body_mass_g"}} + }), + Plot.dot(predictions, { + filter: (d) => d.species !== d.species_predicted, + x: "culmen_length_mm", + y: "culmen_depth_mm", + r: 7, + symbol: "diamond", + stroke: "currentColor" + }) + ], +}) +``` diff --git a/examples/loader-python-to-parquet/.gitignore b/examples/loader-python-to-parquet/.gitignore new file mode 100644 index 000000000..0922a3170 --- /dev/null +++ b/examples/loader-python-to-parquet/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.venv diff --git a/examples/loader-python-to-parquet/README.md b/examples/loader-python-to-parquet/README.md new file mode 100644 index 000000000..3350bc74f --- /dev/null +++ b/examples/loader-python-to-parquet/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Python data loader to generate Apache Parquet + +View live: + +This Observable Framework example demonstrates how to write a Python data loader that outputs an Apache Parquet file using the [pyarrow](https://pypi.org/project/pyarrow/) library. The loader reads in a CSV with records for over 91,000 dams in the United States from the [National Inventory of Dams](https://nid.sec.usace.army.mil/), selects several columns, then writes the data frame as a parquet file to standard output. The data loader lives in [`src/data/us-dams.parquet.py`](./src/data/us-dams.parquet.py). diff --git a/examples/loader-python-to-parquet/observablehq.config.js b/examples/loader-python-to-parquet/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-python-to-parquet/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-python-to-parquet/package.json b/examples/loader-python-to-parquet/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-python-to-parquet/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-python-to-parquet/requirements.txt b/examples/loader-python-to-parquet/requirements.txt new file mode 100644 index 000000000..d95fadc55 --- /dev/null +++ b/examples/loader-python-to-parquet/requirements.txt @@ -0,0 +1,2 @@ +pandas==2.2.0 +pyarrow==16.1 diff --git a/examples/loader-python-to-parquet/src/.gitignore b/examples/loader-python-to-parquet/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-python-to-parquet/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-python-to-parquet/src/data/us-dams.parquet.py b/examples/loader-python-to-parquet/src/data/us-dams.parquet.py new file mode 100644 index 000000000..47cc474e6 --- /dev/null +++ b/examples/loader-python-to-parquet/src/data/us-dams.parquet.py @@ -0,0 +1,18 @@ +# Load libraries (must be installed in environment) +import pandas as pd +import pyarrow as pa +import pyarrow.parquet as pq +import sys + +df = pd.read_csv("https://nid.sec.usace.army.mil/api/nation/csv", low_memory=False, skiprows=1).loc[:, ["Dam Name", "Primary Purpose", "Primary Dam Type", "Hazard Potential Classification"]] + +# Write DataFrame to a temporary file-like object +buf = pa.BufferOutputStream() +table = pa.Table.from_pandas(df) +pq.write_table(table, buf, compression="snappy") + +# Get the buffer as a bytes object +buf_bytes = buf.getvalue().to_pybytes() + +# Write the bytes to standard output +sys.stdout.buffer.write(buf_bytes) diff --git a/examples/loader-python-to-parquet/src/index.md b/examples/loader-python-to-parquet/src/index.md new file mode 100644 index 000000000..e433bf9ec --- /dev/null +++ b/examples/loader-python-to-parquet/src/index.md @@ -0,0 +1,71 @@ +# Python data loader to generate Apache Parquet + +Here’s a Python data loader that accesses records for over 91,000 dams from the [National Inventory of Dams](https://nid.sec.usace.army.mil/), limits the data to only four columns, then outputs an Apache Parquet file to standard out. + +```python +# Load libraries (must be installed in environment) +import pandas as pd +import pyarrow as pa +import pyarrow.parquet as pq +import sys + +df = pd.read_csv("https://nid.sec.usace.army.mil/api/nation/csv", low_memory=False, skiprows=1).loc[:, ["Dam Name", "Primary Purpose", "Primary Dam Type", "Hazard Potential Classification"]] + +# Write DataFrame to a temporary file-like object +buf = pa.BufferOutputStream() +table = pa.Table.from_pandas(df) +pq.write_table(table, buf, compression="snappy") + +# Get the buffer as a bytes object +buf_bytes = buf.getvalue().to_pybytes() + +# Write the bytes to standard output +sys.stdout.buffer.write(buf_bytes) +``` + +
+ +To run this data loader you’ll need python3, and the `pandas` and `pyarrow` libraries installed and available on your `$PATH`. + +
+ +
+ +We recommend using a [Python virtual environment](https://observablehq.com/framework/loaders#venv), such as with venv or uv, and managing required packages via `requirements.txt` rather than installing them globally. + +
+ +This example uses the default Snappy compression algorithm. See other [options for compression](https://parquet.apache.org/docs/file-format/data-pages/compression/) available in pyarrow’s [`write_table()`](https://arrow.apache.org/docs/python/generated/pyarrow.parquet.write_table.html) function. + +The above data loader lives in `data/us-dams.parquet.py`, so we can load the data using `data/us-dams.parquet`. The `FileAttachment.parquet` method parses the file and returns a promise to an Apache Arrow table. + +```js echo +const dams = FileAttachment("data/us-dams.parquet").parquet(); +``` + +We can display the table using `Inputs.table`. + +```js echo +Inputs.table(dams) +``` + +Lastly, we can pass the table to Observable Plot to make a simple bar chart of dam counts by purpose, with color mapped to hazard classification. + +```js echo + Plot.plot({ + marginLeft: 220, + color: {legend: true, domain: ["Undetermined", "Low", "Significant", "High"]}, + marks: [ + Plot.barX(dams, + Plot.groupY( + {x: "count"}, + { + y: "Primary Purpose", + fill: "Hazard Potential Classification", + sort: {y: "x", reverse: true} + } + ) + ) + ] + }) +``` diff --git a/examples/loader-python-to-png/.gitignore b/examples/loader-python-to-png/.gitignore new file mode 100644 index 000000000..0922a3170 --- /dev/null +++ b/examples/loader-python-to-png/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.venv diff --git a/examples/loader-python-to-png/README.md b/examples/loader-python-to-png/README.md new file mode 100644 index 000000000..7921208e9 --- /dev/null +++ b/examples/loader-python-to-png/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Python data loader to generate PNG + +View live: + +This Observable Framework example demonstrates how to write a Python data loader that outputs a PNG to standard out. The data loader generates a choropleth map of birth rates in one Illinois county using [matplotlib](https://matplotlib.org/). The data loader lives in [`src/data/birth-statistics.png.py`](./src/data/birth-statistics.png.py). diff --git a/examples/loader-python-to-png/observablehq.config.js b/examples/loader-python-to-png/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-python-to-png/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-python-to-png/package.json b/examples/loader-python-to-png/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-python-to-png/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-python-to-png/requirements.txt b/examples/loader-python-to-png/requirements.txt new file mode 100644 index 000000000..8fd68ca81 --- /dev/null +++ b/examples/loader-python-to-png/requirements.txt @@ -0,0 +1,2 @@ +geopandas==0.14.4 +matplotlib==3.9.0 diff --git a/examples/loader-python-to-png/src/.gitignore b/examples/loader-python-to-png/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-python-to-png/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-python-to-png/src/data/birth-statistics.png.py b/examples/loader-python-to-png/src/data/birth-statistics.png.py new file mode 100644 index 000000000..2ed8644da --- /dev/null +++ b/examples/loader-python-to-png/src/data/birth-statistics.png.py @@ -0,0 +1,19 @@ +# Import libraries (must be installed and available in environment) +import geopandas as gpd +import matplotlib.pyplot as plt +import io +import sys + +# Read in data: +birth_statistics = gpd.read_file("src/data/birth_statistics.geojson") + +# Create a basic choropleth map +birth_statistics.plot(column="Birth_Rate", legend=True) +plt.axis("off") + +# Save plot to a virtual file, then write binary PNG data to stdout +img_buffer = io.BytesIO() +plt.savefig(img_buffer, format="png") +img_buffer.seek(0) + +sys.stdout.buffer.write(img_buffer.getvalue()) diff --git a/examples/loader-python-to-png/src/data/birth_statistics.geojson b/examples/loader-python-to-png/src/data/birth_statistics.geojson new file mode 100644 index 000000000..0f768d438 --- /dev/null +++ b/examples/loader-python-to-png/src/data/birth_statistics.geojson @@ -0,0 +1,34 @@ +{ +"type": "FeatureCollection", +"name": "Birth_Rates", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "FID": 1, "ZIP": "60002", "LBW": 0.084836847, "Preterm": 0.134124037, "TeenBirth": 18.5, "Birth_Rate": 10.440238634, "F1stTriCare": 74.639700066800003, "SHAPE_Length": 0.73085665703809077, "SHAPE_Area": 0.01168576217149471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.951578148999943, 42.494621920000043 ], [ -87.952384885999948, 42.479982913000072 ], [ -87.971963931999937, 42.480212927000025 ], [ -87.972188918999962, 42.465684937000049 ], [ -88.003384937999954, 42.46610693100007 ], [ -88.004023941999947, 42.444287950000046 ], [ -88.009893907999981, 42.44432691600008 ], [ -88.011227933999976, 42.447467949000043 ], [ -88.022993931999963, 42.448034928000027 ], [ -88.023139900999979, 42.444436922000079 ], [ -88.037922934999983, 42.444535943000062 ], [ -88.037946924999972, 42.441164947000061 ], [ -88.041086922999966, 42.440792902000055 ], [ -88.044003950999979, 42.439671948000068 ], [ -88.047527910999975, 42.442265951000024 ], [ -88.052585908999959, 42.441919918000053 ], [ -88.052624925999964, 42.437213913000051 ], [ -88.053550944999984, 42.43724992500006 ], [ -88.057659917999956, 42.437199922000048 ], [ -88.057648932999939, 42.441823901000078 ], [ -88.062536917999978, 42.441868929000066 ], [ -88.06864995899997, 42.442451920000053 ], [ -88.067335935999949, 42.444354946000033 ], [ -88.067399929999965, 42.448037931000044 ], [ -88.071868925999979, 42.448107935000053 ], [ -88.072262940999963, 42.447473904000049 ], [ -88.072363930999984, 42.447033928000053 ], [ -88.072371963999956, 42.44436391000005 ], [ -88.073373944999958, 42.444299916000034 ], [ -88.073625929999935, 42.443542923000052 ], [ -88.082920939999951, 42.444518945000027 ], [ -88.093089942999939, 42.444552936000036 ], [ -88.112519962999954, 42.444504901000073 ], [ -88.114105972999937, 42.440462929000034 ], [ -88.123271957999975, 42.440714913000079 ], [ -88.124541936999947, 42.440597911000054 ], [ -88.120538929999952, 42.439062940000042 ], [ -88.120647951999956, 42.437412937000033 ], [ -88.119510935999983, 42.43629291600007 ], [ -88.121638948999987, 42.432490908000034 ], [ -88.125768957999981, 42.431479909000075 ], [ -88.127370927999948, 42.430361909000055 ], [ -88.134874939999975, 42.429419931000041 ], [ -88.134907946999988, 42.429390913000077 ], [ -88.136271972999964, 42.428733927000053 ], [ -88.136710965999953, 42.426989928000069 ], [ -88.139783963999946, 42.42275789100006 ], [ -88.139668980999943, 42.416135907000069 ], [ -88.149214937999943, 42.415597892000051 ], [ -88.155960973999981, 42.415749923000078 ], [ -88.156820976999938, 42.415710904000036 ], [ -88.157559936999974, 42.416203890000077 ], [ -88.160975962999942, 42.415593902000069 ], [ -88.163479959999961, 42.418047895000029 ], [ -88.165226965999977, 42.420918910000069 ], [ -88.165558955999984, 42.42344793500007 ], [ -88.164088964999962, 42.425922915000058 ], [ -88.164963943999965, 42.425873896000041 ], [ -88.166722969999967, 42.425758914000028 ], [ -88.167179941999962, 42.426823905000049 ], [ -88.170818987999951, 42.42838690800005 ], [ -88.171094964999952, 42.427702926000052 ], [ -88.172901973999956, 42.428298923000057 ], [ -88.170710949999943, 42.428403904000049 ], [ -88.171349954999982, 42.432170936000034 ], [ -88.176346964999937, 42.43473892600008 ], [ -88.176477957999964, 42.43625389500005 ], [ -88.177922973999955, 42.436914923000074 ], [ -88.178955942999949, 42.438960910000048 ], [ -88.179124969999975, 42.439733914000044 ], [ -88.177152976999935, 42.443722930000035 ], [ -88.175584946999948, 42.444002896000029 ], [ -88.170485961999987, 42.44335290600003 ], [ -88.170652967999956, 42.446273924000025 ], [ -88.177739957999961, 42.448060931000043 ], [ -88.177736952999965, 42.448389916000053 ], [ -88.177668969999957, 42.449985927000057 ], [ -88.173180956999943, 42.453347907000079 ], [ -88.17425097499995, 42.454534927000054 ], [ -88.174077959999977, 42.455266943000026 ], [ -88.17496594399995, 42.455315910000024 ], [ -88.175007967999989, 42.45553794500006 ], [ -88.174485964999974, 42.455687903000069 ], [ -88.174621984999987, 42.456219907000047 ], [ -88.173970957999984, 42.457449935000056 ], [ -88.175074966999944, 42.461620931000027 ], [ -88.176305979999938, 42.463142947000051 ], [ -88.176146954999979, 42.463170928000068 ], [ -88.176258982999968, 42.463649923000048 ], [ -88.176371994999954, 42.463622926000028 ], [ -88.175798952999969, 42.464523917000065 ], [ -88.172884980999982, 42.465135926000073 ], [ -88.172179960999983, 42.465866906000031 ], [ -88.174218953999969, 42.467205905000071 ], [ -88.174687947999985, 42.468971926000052 ], [ -88.173440975999938, 42.470721936000075 ], [ -88.173257958999955, 42.470065935000036 ], [ -88.17261496399999, 42.471241919000079 ], [ -88.173369986999944, 42.472018912000067 ], [ -88.175695992999977, 42.470809922000058 ], [ -88.178015989999949, 42.471069938000028 ], [ -88.180203954999968, 42.472321936000071 ], [ -88.17994994899999, 42.473488903000032 ], [ -88.180537966999964, 42.474899927000081 ], [ -88.179971970999986, 42.475312908000035 ], [ -88.178912990999947, 42.474098943000058 ], [ -88.177985986999943, 42.47447793200007 ], [ -88.178915995999944, 42.47904993800006 ], [ -88.185887952999963, 42.479784908000056 ], [ -88.184503976999963, 42.477377912000065 ], [ -88.185683949999941, 42.477432942000064 ], [ -88.185808982999959, 42.473823899000081 ], [ -88.199153996999939, 42.473488902000042 ], [ -88.199256978999983, 42.475756023000031 ], [ -88.199452310999959, 42.488038804000041 ], [ -88.199541390999968, 42.495140356000036 ], [ -88.179947372999948, 42.495324737000033 ], [ -88.159803246999957, 42.495488445000035 ], [ -88.140878172999976, 42.495612191000077 ], [ -88.121623785999986, 42.495610167000052 ], [ -88.101892076999945, 42.495626994000077 ], [ -88.082100940999965, 42.495645787000058 ], [ -88.078402633999985, 42.495622164000054 ], [ -88.077718947999983, 42.495612936000043 ], [ -88.075639787999989, 42.495604438000044 ], [ -88.067667839999956, 42.495552918000044 ], [ -88.066615945999956, 42.495524952000039 ], [ -88.049599916999966, 42.495352921000062 ], [ -88.048823347999985, 42.495365716000038 ], [ -88.042520439999976, 42.49529422300003 ], [ -88.003289644999938, 42.494901184000071 ], [ -88.003289292999966, 42.494968437000068 ], [ -87.981329507999988, 42.494935873000031 ], [ -87.961778339999967, 42.494764327000041 ], [ -87.951578148999943, 42.494621920000043 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 2, "ZIP": "60010", "LBW": 0.052208093, "Preterm": 0.080827506, "TeenBirth": 1.4, "Birth_Rate": 3.2195605187299998, "F1stTriCare": 86.189945880699995, "SHAPE_Length": 0.58515708917071252, "SHAPE_Area": 0.0081286420169568389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.115912908999974, 42.240747889000033 ], [ -88.11718594599995, 42.238892898000074 ], [ -88.113901949999956, 42.238371879000056 ], [ -88.111844923999968, 42.236041883000041 ], [ -88.111407949999943, 42.212041880000072 ], [ -88.11162791199996, 42.212046906000069 ], [ -88.111651903999984, 42.206743867000057 ], [ -88.111657913999977, 42.205312893000041 ], [ -88.113659908999978, 42.205021890000069 ], [ -88.120672904999935, 42.205014894000044 ], [ -88.121355901999948, 42.197676905000037 ], [ -88.120834933999959, 42.190502864000052 ], [ -88.116204943999946, 42.190434880000055 ], [ -88.116822910999986, 42.18450589400004 ], [ -88.11379494199997, 42.184503874000029 ], [ -88.11379494199997, 42.184904885000037 ], [ -88.111356906999958, 42.184753890000025 ], [ -88.111356907999948, 42.18312585700005 ], [ -88.101625911999975, 42.18307290000007 ], [ -88.101631922999957, 42.183601899000053 ], [ -88.091923933999965, 42.183604904000049 ], [ -88.09201989799999, 42.17577589900003 ], [ -88.082320924999976, 42.175664856000026 ], [ -88.082303927999988, 42.169514871000047 ], [ -88.081905922999965, 42.169563890000063 ], [ -88.081877888999941, 42.168388891000063 ], [ -88.073359925999966, 42.168373865000035 ], [ -88.073075918999962, 42.172683885000026 ], [ -88.07258692299996, 42.172266864000051 ], [ -88.072062898999945, 42.17265087800007 ], [ -88.069644917999938, 42.168866902000048 ], [ -88.067623905999938, 42.167970886000035 ], [ -88.072352917999979, 42.167930883000054 ], [ -88.072921917999963, 42.165096865000066 ], [ -88.072077925999963, 42.164858870000046 ], [ -88.072092899999973, 42.165429892000077 ], [ -88.069439929999987, 42.165292888000067 ], [ -88.069439929999987, 42.16471886100004 ], [ -88.067648932999987, 42.16471886100004 ], [ -88.067642920999958, 42.162924859000043 ], [ -88.062786906999975, 42.162934859000075 ], [ -88.06280488699997, 42.166333888000054 ], [ -88.055078891999983, 42.163340897000069 ], [ -88.062813902999949, 42.161866862000068 ], [ -88.062839914999984, 42.15593186600006 ], [ -88.062838932999966, 42.153850404000025 ], [ -88.063024703999986, 42.153851208000049 ], [ -88.082552996999937, 42.153917513000067 ], [ -88.102117957999951, 42.154052086000036 ], [ -88.121683041999972, 42.154177821000076 ], [ -88.141202713999974, 42.154232150000041 ], [ -88.160698724999975, 42.154263100000037 ], [ -88.180246624999938, 42.154230308000081 ], [ -88.199631821999958, 42.154270994000058 ], [ -88.19983816499996, 42.168768697000075 ], [ -88.199556839999957, 42.183238299000038 ], [ -88.199522375999948, 42.187431137000033 ], [ -88.19919697499995, 42.187268867000057 ], [ -88.199107953999942, 42.187792891000072 ], [ -88.199435953999966, 42.191504893000058 ], [ -88.199477818999981, 42.192850964000058 ], [ -88.199466940999969, 42.194173972000044 ], [ -88.190227945999936, 42.194190872000036 ], [ -88.190159962999985, 42.194361867000055 ], [ -88.189192956999989, 42.196788864000041 ], [ -88.191641924999942, 42.197323873000073 ], [ -88.192942941999945, 42.196892860000048 ], [ -88.19344794899996, 42.197230862000026 ], [ -88.19720296, 42.197064891000025 ], [ -88.199095932999967, 42.197258894000072 ], [ -88.199069972999951, 42.199722888000053 ], [ -88.199420430999965, 42.199737138000046 ], [ -88.199401777999981, 42.201906831000031 ], [ -88.199045929999954, 42.201895879000062 ], [ -88.19902297499999, 42.202495867000039 ], [ -88.198986962999982, 42.203062898000042 ], [ -88.198986962999982, 42.203162853000038 ], [ -88.195832975999963, 42.203844866000054 ], [ -88.194555948999948, 42.20499587300003 ], [ -88.195351959999982, 42.20778688300004 ], [ -88.191956971999957, 42.213441863000071 ], [ -88.189694960999987, 42.216051876000051 ], [ -88.188505970999984, 42.218499859000076 ], [ -88.186414954999975, 42.220178880000049 ], [ -88.179687936999983, 42.22122485500006 ], [ -88.17888493199996, 42.221491867000054 ], [ -88.178041922999967, 42.221771886000056 ], [ -88.176982941999938, 42.222508876000063 ], [ -88.176825937999979, 42.223685896000063 ], [ -88.177218968999966, 42.225856866000072 ], [ -88.179342940999959, 42.229917907000072 ], [ -88.182279972999936, 42.23288887700005 ], [ -88.183579953999981, 42.235446866000075 ], [ -88.186039957999981, 42.23790987600006 ], [ -88.189021965999984, 42.237840908000067 ], [ -88.189676930999951, 42.23726890100005 ], [ -88.19431396799996, 42.23736787200005 ], [ -88.194754928999942, 42.238895898000067 ], [ -88.195117957999969, 42.237494874000049 ], [ -88.197681958999965, 42.237401864000049 ], [ -88.198904940999967, 42.236898877000044 ], [ -88.198911715999941, 42.236902623000049 ], [ -88.198814105999986, 42.241452921000075 ], [ -88.198763518999954, 42.252473601000077 ], [ -88.198487970999963, 42.252467868000053 ], [ -88.197940941999946, 42.252510875000041 ], [ -88.195573946999957, 42.248760891000074 ], [ -88.188449960999947, 42.248106860000064 ], [ -88.188167972999963, 42.245089876000065 ], [ -88.184813972999962, 42.244918881000046 ], [ -88.184390939999957, 42.242378871000028 ], [ -88.182501956999943, 42.242419858000062 ], [ -88.182439931999966, 42.241542858000059 ], [ -88.178402932999973, 42.241752873000053 ], [ -88.164894955999955, 42.240804884000056 ], [ -88.160281961999942, 42.242419860000041 ], [ -88.157846932999973, 42.24135486800003 ], [ -88.149817964999954, 42.241705876000026 ], [ -88.136537929999974, 42.241197864000071 ], [ -88.130531942999937, 42.241349895000042 ], [ -88.128793954999935, 42.241214913000078 ], [ -88.128753951999954, 42.239093894000064 ], [ -88.123834926999962, 42.236542900000074 ], [ -88.121696911999948, 42.237846871000045 ], [ -88.124118935999945, 42.24060088300007 ], [ -88.12130994499995, 42.241524881000032 ], [ -88.117174907999981, 42.241563900000074 ], [ -88.115912908999974, 42.240747889000033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 3, "ZIP": "60015", "LBW": 0.095519241, "Preterm": 0.101959104, "TeenBirth": 1.8, "Birth_Rate": 7.63526102364, "F1stTriCare": 83.544131935400003, "SHAPE_Length": 0.37188890560551235, "SHAPE_Area": 0.0037197146715287222 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.852115846999936, 42.204065884000045 ], [ -87.852801849999935, 42.199978883000028 ], [ -87.852270829999952, 42.189895897000042 ], [ -87.847110856999961, 42.189750914000058 ], [ -87.847110856999961, 42.189141910000046 ], [ -87.846753837999984, 42.18484391100003 ], [ -87.846525844999974, 42.182834869000033 ], [ -87.844217818999937, 42.182763879000049 ], [ -87.843486838999979, 42.18150789200007 ], [ -87.836673855999948, 42.178266904000054 ], [ -87.834558847999972, 42.177969890000043 ], [ -87.834924829999977, 42.17468791500005 ], [ -87.835285837999947, 42.174218869000072 ], [ -87.832044848999942, 42.173855893000052 ], [ -87.831573834999972, 42.173547893000034 ], [ -87.830272817999969, 42.172340872000063 ], [ -87.828894850999973, 42.167570873000045 ], [ -87.82667584699999, 42.16880390700004 ], [ -87.82644583199999, 42.168473885000026 ], [ -87.824204856999984, 42.169207871000026 ], [ -87.824053810999942, 42.168954901000063 ], [ -87.82319784799995, 42.169199891000062 ], [ -87.823012810999955, 42.16719390600008 ], [ -87.822765850999986, 42.165312903000029 ], [ -87.823246814999948, 42.161094909000042 ], [ -87.823608857999943, 42.158899896000037 ], [ -87.823146859999952, 42.158649880000041 ], [ -87.822776835999946, 42.158157879000044 ], [ -87.822651853999957, 42.157989889000078 ], [ -87.822284833999959, 42.15710589400004 ], [ -87.820916817999944, 42.153424877000077 ], [ -87.821244634999971, 42.152726668000071 ], [ -87.82764457199994, 42.152751420000072 ], [ -87.832010854999965, 42.152777892000074 ], [ -87.832010689999947, 42.15277397400007 ], [ -87.848231755999961, 42.152861785000027 ], [ -87.867529770999965, 42.152936216000057 ], [ -87.873412620999943, 42.152930201000061 ], [ -87.874233861999983, 42.152972876000035 ], [ -87.891819875999943, 42.153007904000049 ], [ -87.907182844999966, 42.153071896000029 ], [ -87.909556884999972, 42.153094903000067 ], [ -87.910002872999939, 42.153112883000063 ], [ -87.910013856999967, 42.155582888000026 ], [ -87.91124886099999, 42.155806892000044 ], [ -87.91188185499999, 42.154937872000062 ], [ -87.913387858999954, 42.156106860000079 ], [ -87.910382845999948, 42.158379909000075 ], [ -87.911631839999984, 42.159838864000051 ], [ -87.914028886999972, 42.160915877000036 ], [ -87.914301857999988, 42.160917898000037 ], [ -87.917847839999979, 42.160939868000071 ], [ -87.918886869999938, 42.160679903000073 ], [ -87.918436840999959, 42.159805908000067 ], [ -87.919370839999942, 42.159777875000032 ], [ -87.919978858999968, 42.159910889000059 ], [ -87.922031842999957, 42.160172874000068 ], [ -87.921999870999969, 42.160738870000046 ], [ -87.922899877999953, 42.160769908000077 ], [ -87.933189874999982, 42.160641868000027 ], [ -87.937322887999983, 42.160582901000055 ], [ -87.938848895999968, 42.165357873000062 ], [ -87.939708847999952, 42.167071870000029 ], [ -87.927722886999959, 42.167039900000077 ], [ -87.92771387099998, 42.167334894000078 ], [ -87.921897843999943, 42.167561904000081 ], [ -87.923050872999966, 42.171838865000041 ], [ -87.925378849999959, 42.179335880000053 ], [ -87.925743846999978, 42.180772865000051 ], [ -87.920619886999987, 42.181947864000051 ], [ -87.918742874999964, 42.183428893000041 ], [ -87.918613849999986, 42.183184887000039 ], [ -87.906520886999942, 42.181883870000036 ], [ -87.903881855999941, 42.179277898000066 ], [ -87.903586862999987, 42.182036887000038 ], [ -87.899458872999958, 42.182041913000035 ], [ -87.899431877999973, 42.185713913000029 ], [ -87.902123865999954, 42.18571391200004 ], [ -87.90211588599999, 42.186912903000064 ], [ -87.906399843999964, 42.186887875000025 ], [ -87.906331860999956, 42.191121880000026 ], [ -87.898576847999948, 42.191049906000046 ], [ -87.898566846999984, 42.189284870000051 ], [ -87.897587871999974, 42.189281917000073 ], [ -87.897270855999977, 42.191096905000052 ], [ -87.896946845999935, 42.191096905000052 ], [ -87.896938865999971, 42.191966910000076 ], [ -87.894138838999936, 42.191966910000076 ], [ -87.894175835999988, 42.191304898000055 ], [ -87.887045837999949, 42.191150899000036 ], [ -87.887072834999969, 42.191964890000065 ], [ -87.884743875999959, 42.192874897000081 ], [ -87.884442871999966, 42.193297878000067 ], [ -87.887310882999941, 42.194026888000053 ], [ -87.887404877999984, 42.195241890000034 ], [ -87.88665286, 42.196333877000029 ], [ -87.88544387, 42.195794879000061 ], [ -87.886933863999957, 42.198760875000062 ], [ -87.886930857999971, 42.200254910000069 ], [ -87.886718875999975, 42.203869911000027 ], [ -87.88263985399999, 42.20446787700007 ], [ -87.879923873999985, 42.203721871000027 ], [ -87.873493869999947, 42.20419387100003 ], [ -87.868952848999982, 42.203400918000057 ], [ -87.865205869999954, 42.20408588500004 ], [ -87.864672829999961, 42.203717882000035 ], [ -87.864614847999974, 42.203714876000049 ], [ -87.853005852999956, 42.202704915000027 ], [ -87.852115846999936, 42.204065884000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 4, "ZIP": "60020", "LBW": 0.077066559, "Preterm": 0.087777121, "TeenBirth": 29.9, "Birth_Rate": 13.7370681241, "F1stTriCare": 79.075398081399996, "SHAPE_Length": 0.29982302802567262, "SHAPE_Area": 0.0016928328796241381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.160975962999942, 42.415593902000069 ], [ -88.157559936999974, 42.416203890000077 ], [ -88.156820976999938, 42.415710904000036 ], [ -88.155960973999981, 42.415749923000078 ], [ -88.149214937999943, 42.415597892000051 ], [ -88.139668980999943, 42.416135907000069 ], [ -88.139609959999973, 42.405767928000046 ], [ -88.139765928999964, 42.405756891000067 ], [ -88.140873928999952, 42.406556891000037 ], [ -88.142653940999935, 42.40621391500008 ], [ -88.145920939999939, 42.400072895000051 ], [ -88.152812942999958, 42.399384922000081 ], [ -88.148116937999987, 42.398699904000068 ], [ -88.147723958999961, 42.397035910000056 ], [ -88.147056972999962, 42.39671889400006 ], [ -88.147473941999976, 42.394067894000045 ], [ -88.149645947999943, 42.394183912000074 ], [ -88.152711951999947, 42.39504189400003 ], [ -88.153886950999947, 42.39491090100006 ], [ -88.154053954999938, 42.394862919000047 ], [ -88.155665977999945, 42.393909903000065 ], [ -88.159617944999979, 42.394059913000035 ], [ -88.16032695399997, 42.394055923000053 ], [ -88.16303998099994, 42.39404193300004 ], [ -88.162960959999964, 42.390457917000049 ], [ -88.163352954999937, 42.390327909000064 ], [ -88.16343197399999, 42.387471920000053 ], [ -88.159526952999954, 42.38742191700004 ], [ -88.159523948999947, 42.386401903000035 ], [ -88.161386969999967, 42.385177886000065 ], [ -88.164480954999988, 42.38386489800007 ], [ -88.165825962999975, 42.382482891000052 ], [ -88.167952940999953, 42.382812913000066 ], [ -88.167786971999988, 42.379429895000044 ], [ -88.170264956999972, 42.379545913000072 ], [ -88.17081395699995, 42.378734927000039 ], [ -88.173236963999955, 42.381851917000063 ], [ -88.174344962999953, 42.381851917000063 ], [ -88.174344963999943, 42.382454910000035 ], [ -88.174684985999988, 42.382455894000032 ], [ -88.174712966999948, 42.380172896000033 ], [ -88.174885983999957, 42.380030918000045 ], [ -88.176836938999941, 42.380000916000029 ], [ -88.176899947999971, 42.382094886000061 ], [ -88.177487965999944, 42.382720886000072 ], [ -88.176774965999982, 42.38301292500006 ], [ -88.176319962999969, 42.382952922000072 ], [ -88.178070957999978, 42.384542921000047 ], [ -88.177834983999958, 42.384297931000049 ], [ -88.177784979999956, 42.384172897000042 ], [ -88.177322981999964, 42.38347088300003 ], [ -88.18156398299999, 42.382727933000069 ], [ -88.182956974999968, 42.38422590600004 ], [ -88.181712955999956, 42.386026903000072 ], [ -88.181325987999969, 42.386255934000076 ], [ -88.181756948999976, 42.386482891000071 ], [ -88.181360964999953, 42.386539890000051 ], [ -88.181208984999955, 42.386693889000071 ], [ -88.19123399099999, 42.38663689100008 ], [ -88.194068993999963, 42.386288888000081 ], [ -88.194148946999974, 42.387732920000076 ], [ -88.194657943999971, 42.394889913000043 ], [ -88.19880858199997, 42.394935047000047 ], [ -88.198812904999954, 42.400195478000057 ], [ -88.198728987999971, 42.400505926000051 ], [ -88.198643955999955, 42.400513905000025 ], [ -88.198545969999941, 42.400941912000064 ], [ -88.198224964999952, 42.401138920000051 ], [ -88.198131952999972, 42.401358934000029 ], [ -88.197085978999951, 42.401399921000063 ], [ -88.196304995999981, 42.401331885000047 ], [ -88.196263956999985, 42.401365929000065 ], [ -88.19410495599999, 42.401360903000068 ], [ -88.191226945999972, 42.403331912000056 ], [ -88.192469978999952, 42.40394490500006 ], [ -88.192128972999967, 42.404221918000076 ], [ -88.191711950999945, 42.404054913000039 ], [ -88.190416943999935, 42.405360904000077 ], [ -88.19018998699994, 42.405381890000058 ], [ -88.189253967999946, 42.404811904000042 ], [ -88.189161992999971, 42.404844912000044 ], [ -88.191774960999965, 42.406420921000063 ], [ -88.192012954999939, 42.40683690600008 ], [ -88.191953987999966, 42.407041894000031 ], [ -88.192406970999969, 42.407550891000028 ], [ -88.189281947999973, 42.408165905000033 ], [ -88.188882957999965, 42.408164920000047 ], [ -88.18944496499995, 42.411592915000028 ], [ -88.18913297499995, 42.411836920000042 ], [ -88.188468994999937, 42.412187928000037 ], [ -88.188407954999946, 42.412975907000032 ], [ -88.188191980999989, 42.413225923000027 ], [ -88.188434950999977, 42.413682895000079 ], [ -88.188108970999963, 42.415131901000052 ], [ -88.187761953999939, 42.415686912000069 ], [ -88.187454991999971, 42.415709918000061 ], [ -88.187575983999977, 42.415897910000069 ], [ -88.187635986999965, 42.419042933000071 ], [ -88.188073995999957, 42.419110916000079 ], [ -88.187291975999983, 42.419784898000046 ], [ -88.187246946999949, 42.421248930000047 ], [ -88.189972979999936, 42.422567928000035 ], [ -88.194634992999966, 42.422742914000025 ], [ -88.194611985999984, 42.42229293500003 ], [ -88.198412958999938, 42.422184898000069 ], [ -88.198669969999969, 42.42186891800003 ], [ -88.19868199199999, 42.422866911000028 ], [ -88.198740958999963, 42.428712938000047 ], [ -88.19876396699999, 42.437424903000078 ], [ -88.185601971999972, 42.437290905000054 ], [ -88.181430973999966, 42.437261940000042 ], [ -88.179542975999937, 42.437165923000066 ], [ -88.178795983999976, 42.434678922000046 ], [ -88.177608963999944, 42.433869906000041 ], [ -88.179760968999972, 42.433405938000078 ], [ -88.181632955999987, 42.429831924000041 ], [ -88.181771979999951, 42.426400923000074 ], [ -88.184902960999977, 42.428007919000038 ], [ -88.186170969999978, 42.420031909000045 ], [ -88.178295949999949, 42.417947888000072 ], [ -88.178323981999938, 42.416463906000047 ], [ -88.175933981999947, 42.415480888000047 ], [ -88.172012950999942, 42.41613191600004 ], [ -88.162331957999982, 42.415478920000055 ], [ -88.160975962999942, 42.415593902000069 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 5, "ZIP": "60030", "LBW": 0.071310876, "Preterm": 0.0866745, "TeenBirth": 6.2, "Birth_Rate": 10.598145666400001, "F1stTriCare": 81.745315624499995, "SHAPE_Length": 0.79632696467677455, "SHAPE_Area": 0.0085803813422123988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.999906928999962, 42.362197905000073 ], [ -87.998762916999965, 42.362342940000076 ], [ -87.998643892999951, 42.361060941000062 ], [ -87.995535919999952, 42.364003929000035 ], [ -87.991944908999983, 42.364106889000027 ], [ -87.990145879999943, 42.364093936000074 ], [ -87.990115929999945, 42.363534936000065 ], [ -87.988902897999935, 42.362672911000061 ], [ -87.989198925999972, 42.359576906000029 ], [ -87.988763923999954, 42.358702912000069 ], [ -87.98956190399997, 42.354558912000073 ], [ -87.990364908999936, 42.354605910000032 ], [ -87.989898919999973, 42.353273907000073 ], [ -87.988808899999981, 42.353216908000036 ], [ -87.984664899999984, 42.353178927000044 ], [ -87.977663874999962, 42.353143899000031 ], [ -87.977667917999952, 42.35458492500004 ], [ -87.97821489599994, 42.356678895000073 ], [ -87.97342992099999, 42.356706928000051 ], [ -87.973279911999953, 42.354742915000031 ], [ -87.972956885999963, 42.35464793400007 ], [ -87.973111920999941, 42.353129909000074 ], [ -87.963629904999948, 42.35308690100004 ], [ -87.963579900999946, 42.348001908000072 ], [ -87.964476901999944, 42.347620898000059 ], [ -87.964539911999964, 42.345361892000028 ], [ -87.967724885999985, 42.344890928000041 ], [ -87.963607881999963, 42.344626921000042 ], [ -87.963571920999982, 42.340863932000047 ], [ -87.978437913999983, 42.340375919000053 ], [ -87.97837790899996, 42.328088904000026 ], [ -87.978543876999936, 42.320627902000069 ], [ -88.00091890799996, 42.32058188700006 ], [ -88.000885900999947, 42.317596926000078 ], [ -88.002366929999937, 42.317328929000041 ], [ -88.002613887999985, 42.320573907000039 ], [ -88.00456189099998, 42.320569917000057 ], [ -88.01318592299998, 42.320549915000072 ], [ -88.013491902999988, 42.321735899000032 ], [ -88.014270915999987, 42.321716882000032 ], [ -88.014246924999952, 42.320652927000026 ], [ -88.014103908999971, 42.306073897000033 ], [ -88.019030913999984, 42.306108926000036 ], [ -88.028617910999969, 42.306183904000079 ], [ -88.03229089499996, 42.300239890000057 ], [ -88.038492904999941, 42.298735906000047 ], [ -88.033425890999979, 42.298287898000069 ], [ -88.037459934999958, 42.290749896000079 ], [ -88.03977391899997, 42.285056883000038 ], [ -88.042379890999939, 42.278999910000039 ], [ -88.05811889499995, 42.290945918000034 ], [ -88.066517939999983, 42.295326875000057 ], [ -88.083438935999936, 42.294367900000054 ], [ -88.097739917999945, 42.289202901000067 ], [ -88.107001920999949, 42.292783910000026 ], [ -88.118496917999948, 42.301928907000047 ], [ -88.120632911999962, 42.301595880000036 ], [ -88.120651927999972, 42.302406917000042 ], [ -88.118108912999958, 42.301921912000068 ], [ -88.115393917999938, 42.30041989800003 ], [ -88.114680918999966, 42.301214923000032 ], [ -88.113709922999988, 42.301135903000045 ], [ -88.113631938999958, 42.302684915000043 ], [ -88.116261953999981, 42.302775905000033 ], [ -88.116172932999973, 42.30349590000003 ], [ -88.120711932999939, 42.305101911000065 ], [ -88.120428960999959, 42.305941914000073 ], [ -88.120741934999955, 42.306520915000078 ], [ -88.122760926999945, 42.306580919000055 ], [ -88.125578933999975, 42.305968911000036 ], [ -88.130459924999968, 42.305968910000047 ], [ -88.130444949999969, 42.304847905000031 ], [ -88.12555893199999, 42.303141887000038 ], [ -88.124736961999986, 42.303904890000069 ], [ -88.124057953999966, 42.303523881000046 ], [ -88.124839920999989, 42.302106897000044 ], [ -88.127430918999949, 42.303047892000052 ], [ -88.142262919999951, 42.30268387700005 ], [ -88.144938949999982, 42.303526885000053 ], [ -88.143408952999948, 42.305771901000071 ], [ -88.144993929999941, 42.325917925000056 ], [ -88.121311922999951, 42.330492886000059 ], [ -88.116766963999964, 42.327865876000033 ], [ -88.112719911999989, 42.328315906000057 ], [ -88.111998933999985, 42.338716892000036 ], [ -88.108310921999987, 42.33868388500008 ], [ -88.108302941999966, 42.336965898000074 ], [ -88.107391949999965, 42.337038908000068 ], [ -88.107391950999954, 42.336342904000048 ], [ -88.102248921999944, 42.337633921000076 ], [ -88.102399914999978, 42.328182892000029 ], [ -88.097504932999982, 42.328138900000056 ], [ -88.097330930999988, 42.324244917000044 ], [ -88.101280929999973, 42.324143926000033 ], [ -88.099167941999951, 42.32102191000007 ], [ -88.098687910999956, 42.313531890000036 ], [ -88.101437932999943, 42.313917926000045 ], [ -88.101419952999947, 42.309622880000063 ], [ -88.091688905999945, 42.309760920000031 ], [ -88.091667918999974, 42.303545905000078 ], [ -88.089501922999943, 42.303314906000026 ], [ -88.08230694699995, 42.305438879000064 ], [ -88.082297930999971, 42.307429888000058 ], [ -88.083390904999987, 42.308062882000058 ], [ -88.090455922999979, 42.311402892000046 ], [ -88.089181954999958, 42.313343899000074 ], [ -88.087037928999962, 42.31334488400006 ], [ -88.087051919999965, 42.31374988400006 ], [ -88.087303905999988, 42.320642922000047 ], [ -88.083520913999962, 42.320657897000046 ], [ -88.083815907999963, 42.327942878000044 ], [ -88.082873928999959, 42.327951895000069 ], [ -88.082855949999953, 42.335300921000055 ], [ -88.084099916999946, 42.335300921000055 ], [ -88.084099916999946, 42.334864882000034 ], [ -88.085825935999935, 42.334905921000029 ], [ -88.085767952999959, 42.335741882000036 ], [ -88.084629950999954, 42.335919925000042 ], [ -88.08552094199996, 42.337125910000054 ], [ -88.086830923999969, 42.337275919000035 ], [ -88.087103946999946, 42.337794917000053 ], [ -88.087528947999942, 42.338404904000072 ], [ -88.084675913999945, 42.339063911000039 ], [ -88.084619950999979, 42.339663898000026 ], [ -88.084867946999964, 42.339789917000076 ], [ -88.087585947999969, 42.339189930000032 ], [ -88.08755195599997, 42.34099989200007 ], [ -88.068495949999942, 42.345111921000068 ], [ -88.068571912999971, 42.346025919000056 ], [ -88.067549929999984, 42.34588793000006 ], [ -88.067135912999959, 42.350353919000042 ], [ -88.06686294299999, 42.353710926000076 ], [ -88.067959904999952, 42.357023886000036 ], [ -88.06797695299997, 42.35836190100008 ], [ -88.06797695399996, 42.361430909000035 ], [ -88.067542935999938, 42.361389921000068 ], [ -88.06715793699999, 42.362787888000071 ], [ -88.065036917999976, 42.364308920000042 ], [ -88.062265908999962, 42.364369908000072 ], [ -88.061575915999981, 42.364237931000048 ], [ -88.061438911999971, 42.363926926000033 ], [ -88.059825905999958, 42.363245898000059 ], [ -88.058325911999987, 42.36292489200008 ], [ -88.05827891399997, 42.362656896000033 ], [ -88.056710935999945, 42.362598913000056 ], [ -88.056698913999981, 42.362526887000058 ], [ -88.05667393799996, 42.362735916000076 ], [ -88.058103928999969, 42.362765918000036 ], [ -88.058150925999939, 42.36444193400007 ], [ -88.061592911999981, 42.364388925000071 ], [ -88.062130926999941, 42.368118908000042 ], [ -88.062004907999949, 42.37519289100004 ], [ -88.061127908999936, 42.375277922000066 ], [ -88.059586926999941, 42.371685927000044 ], [ -88.058292904999973, 42.371589910000068 ], [ -88.057682916999966, 42.371582915000033 ], [ -88.057720950999965, 42.372333896000043 ], [ -88.056665907999957, 42.372314932000052 ], [ -88.05662694199998, 42.374023903000079 ], [ -88.056003947999955, 42.374023903000079 ], [ -88.056029907999971, 42.374793901000032 ], [ -88.051125909999939, 42.371539907000056 ], [ -88.045953915999974, 42.371701940000037 ], [ -88.043725946999984, 42.372425925000073 ], [ -88.042142942999988, 42.37297093400008 ], [ -88.041717940999945, 42.379019927000058 ], [ -88.043505933999938, 42.379287924000039 ], [ -88.043318926999973, 42.383112939000057 ], [ -88.049529900999971, 42.382874892000075 ], [ -88.049511920999976, 42.387070916000027 ], [ -88.049792923999973, 42.389702901000078 ], [ -88.046279948999938, 42.389670929000033 ], [ -88.046233934999975, 42.388491941000041 ], [ -88.04387393799999, 42.388241925000045 ], [ -88.044908926999938, 42.38627490600004 ], [ -88.036600924999959, 42.386354912000058 ], [ -88.037542902999974, 42.384138913000072 ], [ -88.038713911999935, 42.383930920000068 ], [ -88.038911904999964, 42.379273934000025 ], [ -88.033814939999957, 42.379311916000063 ], [ -88.033873907999975, 42.384343901000079 ], [ -88.027285914999936, 42.38578689600007 ], [ -88.027920929999937, 42.382074894000027 ], [ -88.019765890999963, 42.377795912000067 ], [ -88.02097089099999, 42.375636911000072 ], [ -88.020290898999974, 42.373584912000069 ], [ -88.018718931999956, 42.376684907000026 ], [ -88.011937920999969, 42.376685891000079 ], [ -88.011962895999943, 42.375680904000035 ], [ -88.00458391899997, 42.375127916000054 ], [ -88.004129898999963, 42.370749911000075 ], [ -88.001925921999941, 42.369682899000054 ], [ -88.001363915999946, 42.368043932000035 ], [ -88.001227896999978, 42.366893910000044 ], [ -88.001249918999974, 42.366651925000042 ], [ -88.001842909999937, 42.360619927000073 ], [ -88.000818905999949, 42.360617906000073 ], [ -87.999906928999962, 42.362197905000073 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 6, "ZIP": "60031", "LBW": 0.081407401, "Preterm": 0.098994319, "TeenBirth": 10.1, "Birth_Rate": 10.265031645600001, "F1stTriCare": 78.372131158900004, "SHAPE_Length": 0.53316481857436848, "SHAPE_Area": 0.0053527747757457092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.928652868999961, 42.414199939000071 ], [ -87.927132872999948, 42.409859916000073 ], [ -87.926108868999961, 42.408180947000062 ], [ -87.92799888799999, 42.40817291500008 ], [ -87.928020910999976, 42.407472922000068 ], [ -87.931438903999947, 42.407389911000053 ], [ -87.930183900999964, 42.405321900000047 ], [ -87.930558898999948, 42.404832905000035 ], [ -87.931796906999978, 42.404275926000025 ], [ -87.931056910999985, 42.403171917000066 ], [ -87.931657881999968, 42.40287790800005 ], [ -87.931431907999979, 42.40253591700008 ], [ -87.929787915999952, 42.40171990500005 ], [ -87.9304149, 42.401271949000034 ], [ -87.930592890999947, 42.401152925000076 ], [ -87.930155866999939, 42.40071092800008 ], [ -87.929581891999987, 42.400745904000075 ], [ -87.929185907999965, 42.400979909000057 ], [ -87.928772875999982, 42.401080901000057 ], [ -87.92842088399999, 42.40099794200006 ], [ -87.927965879999988, 42.400221932000079 ], [ -87.92709888, 42.399065951000068 ], [ -87.92642189299994, 42.398678931000063 ], [ -87.925510900999939, 42.398585919000027 ], [ -87.925250884999969, 42.398475913000027 ], [ -87.924963870999989, 42.397754933000044 ], [ -87.923859912999944, 42.396773937000034 ], [ -87.923635907999937, 42.396306912000057 ], [ -87.923922870999945, 42.395893931000046 ], [ -87.92489386599999, 42.395654900000068 ], [ -87.925358870999958, 42.395384934000049 ], [ -87.925428874999966, 42.394963923000034 ], [ -87.923805866999942, 42.394012929000041 ], [ -87.920491868999989, 42.392461948000062 ], [ -87.921182898999973, 42.39103392700008 ], [ -87.919310911999958, 42.389914942000075 ], [ -87.918803883999942, 42.389734931000078 ], [ -87.917791900999987, 42.389681923000069 ], [ -87.917213883999977, 42.389280912000061 ], [ -87.917120872999988, 42.388957937000043 ], [ -87.917254870999955, 42.388359920000028 ], [ -87.916868886999964, 42.387455922000072 ], [ -87.916986873999974, 42.387007914000037 ], [ -87.916884898999967, 42.386872931000028 ], [ -87.916790902999935, 42.386794947000055 ], [ -87.916615865999972, 42.386768936000067 ], [ -87.916536895999968, 42.386768936000067 ], [ -87.916359889999967, 42.386787900000058 ], [ -87.915287902999978, 42.386878943000056 ], [ -87.915160900999979, 42.386675924000031 ], [ -87.915455892999944, 42.386109929000042 ], [ -87.915772909999987, 42.385841932000062 ], [ -87.915850893999959, 42.385558908000064 ], [ -87.915195875999984, 42.385122921000061 ], [ -87.914219905999971, 42.383757911000032 ], [ -87.914182909999965, 42.383410945000037 ], [ -87.913976885999944, 42.383566914000028 ], [ -87.91333186899999, 42.38401093300007 ], [ -87.914247887999977, 42.387058902000035 ], [ -87.910232858999962, 42.38717994700005 ], [ -87.909707903999958, 42.387499916000081 ], [ -87.909224865999988, 42.388681910000059 ], [ -87.909652874999949, 42.38904291700004 ], [ -87.909862887999964, 42.390902935000042 ], [ -87.912190862999978, 42.39223690700004 ], [ -87.904611872999965, 42.392006944000059 ], [ -87.904309884999975, 42.396689943000069 ], [ -87.904242885999963, 42.399975907000055 ], [ -87.907844881999949, 42.400005909000072 ], [ -87.907530871999938, 42.405139922000046 ], [ -87.908142880999947, 42.405127952000043 ], [ -87.90733189599996, 42.406875941000067 ], [ -87.906179903999941, 42.40656892700008 ], [ -87.904123863999985, 42.407005949000052 ], [ -87.904231900999946, 42.400715904000037 ], [ -87.902088859999935, 42.400607918000048 ], [ -87.902378877999979, 42.399958912000045 ], [ -87.898749885999962, 42.399830924000071 ], [ -87.898739885999987, 42.402266937000036 ], [ -87.897339897999984, 42.401416934000054 ], [ -87.896738874999983, 42.402262948000043 ], [ -87.894400898999947, 42.402262948000043 ], [ -87.893047856999942, 42.402430938000066 ], [ -87.890282858999967, 42.40248291000006 ], [ -87.889516901999968, 42.40236694500004 ], [ -87.889549857999953, 42.400483921000045 ], [ -87.88955690399996, 42.399601946000075 ], [ -87.887105864999967, 42.399505930000032 ], [ -87.887137885999948, 42.397715917000028 ], [ -87.889574883999956, 42.397781932000044 ], [ -87.890100877999942, 42.398709920000044 ], [ -87.892000897999935, 42.39876593300005 ], [ -87.892023903999984, 42.396073945000069 ], [ -87.898752891999948, 42.39637992300004 ], [ -87.898787866999953, 42.392563924000058 ], [ -87.894526864999989, 42.392465938000043 ], [ -87.894582877999937, 42.389719905000049 ], [ -87.884134892999953, 42.38949393300004 ], [ -87.884177899999941, 42.385960906000037 ], [ -87.884866856999963, 42.385974948000069 ], [ -87.88491587499999, 42.38514194000004 ], [ -87.884849860999964, 42.383770919000028 ], [ -87.884841880999943, 42.38289293400004 ], [ -87.884031879999952, 42.382880912000076 ], [ -87.88396887, 42.382014949000052 ], [ -87.88485488699996, 42.382006918000059 ], [ -87.884821878999958, 42.376746939000043 ], [ -87.885013859999958, 42.367139943000041 ], [ -87.883912854999949, 42.366798936000066 ], [ -87.88430085899995, 42.363201914000058 ], [ -87.884866853999938, 42.363180929000066 ], [ -87.885263874999964, 42.359585929000048 ], [ -87.894672880999963, 42.359667902000069 ], [ -87.894922896999958, 42.359672929000055 ], [ -87.897578872999986, 42.359616914000071 ], [ -87.89733989399997, 42.357917944000064 ], [ -87.895163896999975, 42.356760926000049 ], [ -87.895293852999941, 42.35597393200004 ], [ -87.898816880999959, 42.355965900000058 ], [ -87.900078878999977, 42.35641494500004 ], [ -87.902186892999964, 42.356157933000077 ], [ -87.90462886499995, 42.355755938000073 ], [ -87.907293856999956, 42.355643910000026 ], [ -87.906275862999962, 42.347278910000057 ], [ -87.905820858999959, 42.343408919000069 ], [ -87.906824860999961, 42.342478910000068 ], [ -87.906833877999986, 42.342696903000046 ], [ -87.909666858999969, 42.342004941000027 ], [ -87.90960789199994, 42.345243908000043 ], [ -87.90998087, 42.346139924000056 ], [ -87.914542876999974, 42.345493924000039 ], [ -87.914540855999974, 42.346179927000037 ], [ -87.940946873999962, 42.343936930000041 ], [ -87.941143881999949, 42.343920918000038 ], [ -87.94133788399995, 42.343905892000066 ], [ -87.945098904999952, 42.343570895000028 ], [ -87.958387904999938, 42.341792904000044 ], [ -87.95889591699995, 42.34171989400005 ], [ -87.95892291399997, 42.344328923000035 ], [ -87.961516916999983, 42.344308922000039 ], [ -87.961517901999969, 42.345556930000043 ], [ -87.963602907999984, 42.345566931000064 ], [ -87.963590886999953, 42.346511915000065 ], [ -87.95892089299997, 42.346503935000044 ], [ -87.958902913999964, 42.353048919000059 ], [ -87.963629904999948, 42.35308690100004 ], [ -87.973111920999941, 42.353129909000074 ], [ -87.972956885999963, 42.35464793400007 ], [ -87.973279911999953, 42.354742915000031 ], [ -87.97342992099999, 42.356706928000051 ], [ -87.97821489599994, 42.356678895000073 ], [ -87.977667917999952, 42.35458492500004 ], [ -87.977663874999962, 42.353143899000031 ], [ -87.984664899999984, 42.353178927000044 ], [ -87.988808899999981, 42.353216908000036 ], [ -87.989898919999973, 42.353273907000073 ], [ -87.990364908999936, 42.354605910000032 ], [ -87.98956190399997, 42.354558912000073 ], [ -87.988763923999954, 42.358702912000069 ], [ -87.989198925999972, 42.359576906000029 ], [ -87.988902897999935, 42.362672911000061 ], [ -87.990115929999945, 42.363534936000065 ], [ -87.990145879999943, 42.364093936000074 ], [ -87.991944908999983, 42.364106889000027 ], [ -87.995535919999952, 42.364003929000035 ], [ -87.998643892999951, 42.361060941000062 ], [ -87.998762916999965, 42.362342940000076 ], [ -87.999906928999962, 42.362197905000073 ], [ -87.997775909999973, 42.365917939000042 ], [ -87.998236925999947, 42.371350935000066 ], [ -88.002306930999964, 42.374770898000065 ], [ -88.001412935999952, 42.375187919000041 ], [ -87.996643921999976, 42.385869909000064 ], [ -87.999016925999967, 42.386015928000063 ], [ -88.000671903999944, 42.388802897000062 ], [ -88.00025089199994, 42.389533928000048 ], [ -87.998202935999984, 42.38983892300007 ], [ -87.998142931999951, 42.393340911000053 ], [ -87.99745889799999, 42.393326921000039 ], [ -87.997428895999974, 42.396878914000069 ], [ -87.99261391899995, 42.396974931000045 ], [ -87.992377893999958, 42.396068913000079 ], [ -87.986410924999973, 42.396517907000032 ], [ -87.988150883999936, 42.398966925000025 ], [ -87.982780895999952, 42.399085897000077 ], [ -87.963174905999949, 42.394233925000037 ], [ -87.949138914999935, 42.393488904000037 ], [ -87.948870917999955, 42.393465897000056 ], [ -87.948377881999988, 42.402905940000039 ], [ -87.940645875999962, 42.404806944000029 ], [ -87.939389887999937, 42.409946915000035 ], [ -87.944977920999975, 42.410820910000041 ], [ -87.945066890999954, 42.414464929000076 ], [ -87.937854917999971, 42.414649915000041 ], [ -87.933121915999948, 42.414294918000053 ], [ -87.93286791, 42.414271912000061 ], [ -87.928652868999961, 42.414199939000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 7, "ZIP": "60035", "LBW": 0.067941479, "Preterm": 0.08888844, "TeenBirth": 3.6, "Birth_Rate": 8.1610081442499993, "F1stTriCare": 84.821849981499994, "SHAPE_Length": 0.37288944359398818, "SHAPE_Area": 0.0035009122844938366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.80924896099998, 42.224962124000058 ], [ -87.809120585999949, 42.224847854000075 ], [ -87.806056595999962, 42.220672481000065 ], [ -87.805920284999956, 42.220384624000076 ], [ -87.805819161999977, 42.220092546000046 ], [ -87.80558495799994, 42.219794355000033 ], [ -87.805446720999953, 42.219518612000059 ], [ -87.805419467999968, 42.219237877000069 ], [ -87.805318256999954, 42.218956805000062 ], [ -87.805150484999956, 42.218675424000025 ], [ -87.805093832999944, 42.218372547000058 ], [ -87.804939895999951, 42.218115430000068 ], [ -87.804913813999974, 42.217621896000026 ], [ -87.805550850999964, 42.217447896000067 ], [ -87.805429857999968, 42.215268894000076 ], [ -87.807932818999973, 42.214157889000035 ], [ -87.808923815999947, 42.216082884000059 ], [ -87.811178832999985, 42.215717887000039 ], [ -87.811730838999949, 42.216103922000059 ], [ -87.815501860999973, 42.21512292500006 ], [ -87.816416842999956, 42.216849877000072 ], [ -87.817673815999967, 42.217972903000032 ], [ -87.820520839999972, 42.218049903000065 ], [ -87.816260820999958, 42.211979923000058 ], [ -87.814212811999937, 42.210933897000075 ], [ -87.816201853999985, 42.210861924000028 ], [ -87.816285848999939, 42.210596880000026 ], [ -87.817933831999937, 42.210654915000077 ], [ -87.817839835999962, 42.205238916000042 ], [ -87.817892843999971, 42.203428902000041 ], [ -87.817897817999949, 42.201981916000079 ], [ -87.817897817999949, 42.199810895000041 ], [ -87.81790781899997, 42.196693905000075 ], [ -87.817903828999988, 42.196059874000071 ], [ -87.81755385699995, 42.196137910000061 ], [ -87.81355784499999, 42.195230908000042 ], [ -87.81264084299994, 42.194341887000064 ], [ -87.811100845999988, 42.194563922000043 ], [ -87.808262837999962, 42.196045884000057 ], [ -87.809251814999982, 42.197120876000042 ], [ -87.808839818999957, 42.197094915000037 ], [ -87.808905833999972, 42.197821906000058 ], [ -87.807912815999941, 42.199151889000063 ], [ -87.808334811999941, 42.199795920000042 ], [ -87.808438859999967, 42.200167914000076 ], [ -87.808667838999952, 42.200562913000056 ], [ -87.808678823999969, 42.200643903000071 ], [ -87.808307814999978, 42.201552874000072 ], [ -87.808546846999946, 42.201960879000069 ], [ -87.80832382799997, 42.201972901000033 ], [ -87.808235841999988, 42.203414912000028 ], [ -87.804215840999973, 42.203402890000064 ], [ -87.797819827999945, 42.203395896000075 ], [ -87.796853989999988, 42.203655584000046 ], [ -87.79682384299997, 42.203621475000034 ], [ -87.796685771999989, 42.203334717000075 ], [ -87.796658610999941, 42.203048482000042 ], [ -87.796498263999979, 42.202772624000033 ], [ -87.796500865999974, 42.202464518000056 ], [ -87.796584615999961, 42.20217879900008 ], [ -87.796446641999978, 42.201881038000067 ], [ -87.796205203999989, 42.201577289000056 ], [ -87.795837837999954, 42.201300462000063 ], [ -87.795832814999983, 42.201019830000064 ], [ -87.795524605999958, 42.200743277000072 ], [ -87.795416075999981, 42.200462161000075 ], [ -87.795095594999964, 42.199888436000037 ], [ -87.794920525999942, 42.199607005000075 ], [ -87.79462730299997, 42.199308513000062 ], [ -87.794452233999948, 42.199027082000043 ], [ -87.794402950999938, 42.198735237000051 ], [ -87.79369068799997, 42.198154163000027 ], [ -87.793449136999982, 42.197866915000077 ], [ -87.793118911999954, 42.197573747000035 ], [ -87.793010534999951, 42.197276123000051 ], [ -87.792768988999967, 42.196988873000066 ], [ -87.792564364999976, 42.19670730100006 ], [ -87.792404145999967, 42.19642043500005 ], [ -87.792140661999952, 42.196105569000053 ], [ -87.79195817499999, 42.19582960300005 ], [ -87.791857014999948, 42.195554018000053 ], [ -87.791541454999958, 42.195277420000025 ], [ -87.791521760999956, 42.194985713000051 ], [ -87.791324539999948, 42.194704175000027 ], [ -87.791038699999945, 42.194411211000045 ], [ -87.790737981999939, 42.194129179000072 ], [ -87.790247965999981, 42.193505118000076 ], [ -87.789976874999979, 42.193217723000032 ], [ -87.789739734999955, 42.193015122000077 ], [ -87.78960183099997, 42.192802877000076 ], [ -87.78816982099994, 42.191776903000061 ], [ -87.78790672699995, 42.191688695000039 ], [ -87.787824228999966, 42.191639398000063 ], [ -87.787033798999971, 42.19069888100006 ], [ -87.786972099999957, 42.190607797000041 ], [ -87.787702253999953, 42.190345817000036 ], [ -87.7876233, 42.19007033400004 ], [ -87.787408123999967, 42.189852509000048 ], [ -87.787474853999981, 42.189638889000037 ], [ -87.787547810999968, 42.189416906000076 ], [ -87.78681843399994, 42.188567555000077 ], [ -87.786854541999958, 42.188339001000031 ], [ -87.786590787999955, 42.188062638000076 ], [ -87.785903448999989, 42.187184521000063 ], [ -87.785602787999949, 42.186902475000068 ], [ -87.785250433999977, 42.186614681000037 ], [ -87.785011596999937, 42.186463400000036 ], [ -87.784318584999937, 42.185656308000034 ], [ -87.784210357999939, 42.185498274000054 ], [ -87.784116735999987, 42.185211715000037 ], [ -87.783919529999935, 42.184935665000069 ], [ -87.783655799999963, 42.184659294000028 ], [ -87.783355207999989, 42.184371741000064 ], [ -87.78320245599997, 42.184084897000048 ], [ -87.782812883999952, 42.183829931000048 ], [ -87.782623176999948, 42.183542908000049 ], [ -87.782337427999948, 42.183249923000062 ], [ -87.78209588499999, 42.182973657000048 ], [ -87.781913624999959, 42.182681167000055 ], [ -87.781851402999962, 42.182613074000074 ], [ -87.781358433999969, 42.181854353000062 ], [ -87.781352062999986, 42.181803626000033 ], [ -87.781239054999958, 42.181670617000066 ], [ -87.780730428999959, 42.180887774000041 ], [ -87.780608124999958, 42.180650096000079 ], [ -87.780425827999977, 42.180363105000026 ], [ -87.780304710999985, 42.18023252100005 ], [ -87.779889798999989, 42.179593885000031 ], [ -87.779784949999964, 42.179518900000062 ], [ -87.779805177999947, 42.179485271000033 ], [ -87.779548925999961, 42.179203424000036 ], [ -87.779314642999964, 42.178995302000033 ], [ -87.779125350999948, 42.17877635900004 ], [ -87.779014453999935, 42.178617617000043 ], [ -87.778876417999982, 42.178341844000045 ], [ -87.77868689, 42.178038310000034 ], [ -87.777869276999979, 42.176867900000047 ], [ -87.77763521899999, 42.176586156000042 ], [ -87.777137835999952, 42.175989515000026 ], [ -87.776866974999962, 42.175691086000029 ], [ -87.776499410999975, 42.175463713000056 ], [ -87.776236040999947, 42.175154315000043 ], [ -87.776076049999972, 42.174856420000026 ], [ -87.775797710999939, 42.174568959000055 ], [ -87.775004832999969, 42.173959865000029 ], [ -87.774492473999942, 42.173390649000055 ], [ -87.774305151999954, 42.17283952300005 ], [ -87.773975050999979, 42.172557303000076 ], [ -87.773585829999945, 42.172274798000046 ], [ -87.77329247199998, 42.172028913000076 ], [ -87.77240532799999, 42.171002519000069 ], [ -87.772378884999966, 42.170854851000058 ], [ -87.772211336999987, 42.17057892400004 ], [ -87.771430783999961, 42.169874960000072 ], [ -87.771271014999968, 42.169690100000025 ], [ -87.771260576999964, 42.169446330000028 ], [ -87.770503977999965, 42.168925418000072 ], [ -87.770210627999973, 42.168749989000048 ], [ -87.76520381499995, 42.161528383000075 ], [ -87.765088522999974, 42.16129475300005 ], [ -87.764877041999966, 42.160980081000048 ], [ -87.764776200999961, 42.160687967000058 ], [ -87.764601320999986, 42.160411995000061 ], [ -87.764030442999967, 42.15979842400003 ], [ -87.76400354399999, 42.159501173000081 ], [ -87.763762173999964, 42.15922487000006 ], [ -87.763461793999966, 42.158937267000056 ], [ -87.763044065999964, 42.158466174000068 ], [ -87.762718250999967, 42.158012798000073 ], [ -87.762541412999951, 42.157749726000077 ], [ -87.762472871999989, 42.157671346000029 ], [ -87.761989214999971, 42.156998311000052 ], [ -87.761980388999973, 42.15686658900006 ], [ -87.761790806999954, 42.15658503700007 ], [ -87.761616148999963, 42.156287048000081 ], [ -87.761500552999962, 42.155994858000042 ], [ -87.761407124999948, 42.155702778000034 ], [ -87.761341176999963, 42.155594478000069 ], [ -87.761344806999944, 42.155380914000034 ], [ -87.759733716999961, 42.153390455000078 ], [ -87.759197589999985, 42.152368496000065 ], [ -87.761020034999945, 42.152382205000038 ], [ -87.770058564999943, 42.152449767000064 ], [ -87.789661794999972, 42.152524434000043 ], [ -87.790365953999981, 42.15253008500008 ], [ -87.796030845999951, 42.152610888000027 ], [ -87.798571840999955, 42.152619904000062 ], [ -87.799493817999974, 42.152620888000058 ], [ -87.800589631999969, 42.152611645000036 ], [ -87.809067253999956, 42.152678584000057 ], [ -87.821244634999971, 42.152726668000071 ], [ -87.820916817999944, 42.153424877000077 ], [ -87.822284833999959, 42.15710589400004 ], [ -87.822651853999957, 42.157989889000078 ], [ -87.822776835999946, 42.158157879000044 ], [ -87.823146859999952, 42.158649880000041 ], [ -87.823608857999943, 42.158899896000037 ], [ -87.823246814999948, 42.161094909000042 ], [ -87.822765850999986, 42.165312903000029 ], [ -87.823012810999955, 42.16719390600008 ], [ -87.82319784799995, 42.169199891000062 ], [ -87.824053810999942, 42.168954901000063 ], [ -87.824204856999984, 42.169207871000026 ], [ -87.82644583199999, 42.168473885000026 ], [ -87.82667584699999, 42.16880390700004 ], [ -87.828894850999973, 42.167570873000045 ], [ -87.830272817999969, 42.172340872000063 ], [ -87.831573834999972, 42.173547893000034 ], [ -87.832044848999942, 42.173855893000052 ], [ -87.835285837999947, 42.174218869000072 ], [ -87.834924829999977, 42.17468791500005 ], [ -87.834558847999972, 42.177969890000043 ], [ -87.836673855999948, 42.178266904000054 ], [ -87.843486838999979, 42.18150789200007 ], [ -87.844217818999937, 42.182763879000049 ], [ -87.846525844999974, 42.182834869000033 ], [ -87.846753837999984, 42.18484391100003 ], [ -87.847110856999961, 42.189141910000046 ], [ -87.847110856999961, 42.189750914000058 ], [ -87.852270829999952, 42.189895897000042 ], [ -87.852801849999935, 42.199978883000028 ], [ -87.852115846999936, 42.204065884000045 ], [ -87.846939863999978, 42.203977899000051 ], [ -87.846737829999938, 42.210810882000033 ], [ -87.842342828999961, 42.212293880000061 ], [ -87.842588854999974, 42.214914879000048 ], [ -87.84537183499998, 42.218082908000042 ], [ -87.838521854999954, 42.218027880000079 ], [ -87.837322864999976, 42.218033890000072 ], [ -87.834825863999981, 42.218024874000037 ], [ -87.827552852999986, 42.218093895000038 ], [ -87.826745856999935, 42.218103896000059 ], [ -87.821917821999989, 42.218085915000074 ], [ -87.821328819999962, 42.218034875000058 ], [ -87.826542837999966, 42.22515891300003 ], [ -87.827569848999985, 42.227245888000027 ], [ -87.825584849999984, 42.226190897000038 ], [ -87.819348847999947, 42.225279906000026 ], [ -87.811920851999957, 42.225766881000027 ], [ -87.80924896099998, 42.224962124000058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 8, "ZIP": "60040", "LBW": 0.081060193, "Preterm": 0.116596957, "TeenBirth": 21.7, "Birth_Rate": 14.2592592593, "F1stTriCare": 81.801378659799994, "SHAPE_Length": 0.080798312811830211, "SHAPE_Area": 0.00018037080800800294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.807932818999973, 42.214157889000035 ], [ -87.8072398199999, 42.212796920000073 ], [ -87.809080820999952, 42.211943911000049 ], [ -87.809089836999988, 42.211259877000032 ], [ -87.81250083499998, 42.210121875000027 ], [ -87.812570840999967, 42.209526914000037 ], [ -87.810558843999956, 42.205795895000051 ], [ -87.808207861999961, 42.205877921000081 ], [ -87.808235841999988, 42.203414912000028 ], [ -87.80832382799997, 42.201972901000033 ], [ -87.808546846999946, 42.201960879000069 ], [ -87.808307814999978, 42.201552874000072 ], [ -87.808678823999969, 42.200643903000071 ], [ -87.808667838999952, 42.200562913000056 ], [ -87.808438859999967, 42.200167914000076 ], [ -87.808334811999941, 42.199795920000042 ], [ -87.807912815999941, 42.199151889000063 ], [ -87.808905833999972, 42.197821906000058 ], [ -87.808839818999957, 42.197094915000037 ], [ -87.809251814999982, 42.197120876000042 ], [ -87.808262837999962, 42.196045884000057 ], [ -87.811100845999988, 42.194563922000043 ], [ -87.81264084299994, 42.194341887000064 ], [ -87.81355784499999, 42.195230908000042 ], [ -87.81755385699995, 42.196137910000061 ], [ -87.817903828999988, 42.196059874000071 ], [ -87.81790781899997, 42.196693905000075 ], [ -87.817897817999949, 42.199810895000041 ], [ -87.817897817999949, 42.201981916000079 ], [ -87.817892843999971, 42.203428902000041 ], [ -87.817839835999962, 42.205238916000042 ], [ -87.817933831999937, 42.210654915000077 ], [ -87.816285848999939, 42.210596880000026 ], [ -87.816201853999985, 42.210861924000028 ], [ -87.814212811999937, 42.210933897000075 ], [ -87.816260820999958, 42.211979923000058 ], [ -87.820520839999972, 42.218049903000065 ], [ -87.817673815999967, 42.217972903000032 ], [ -87.816416842999956, 42.216849877000072 ], [ -87.815501860999973, 42.21512292500006 ], [ -87.811730838999949, 42.216103922000059 ], [ -87.811178832999985, 42.215717887000039 ], [ -87.808923815999947, 42.216082884000059 ], [ -87.807932818999973, 42.214157889000035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 9, "ZIP": "60042", "LBW": 0.057217236, "Preterm": 0.103992211, "TeenBirth": 5.2, "Birth_Rate": 5.1425899953199998, "F1stTriCare": 74.762788621499993, "SHAPE_Length": 0.13580310066504386, "SHAPE_Area": 0.00045803354414114002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.178987947999985, 42.262334882000061 ], [ -88.17905292599994, 42.260526889000062 ], [ -88.181678950999981, 42.254054862000032 ], [ -88.182869961999984, 42.254065899000068 ], [ -88.183780952999939, 42.256209873000046 ], [ -88.183842926999944, 42.257940866000069 ], [ -88.184353943999952, 42.25804387800008 ], [ -88.186400968999976, 42.255932911000059 ], [ -88.192504940999981, 42.256406880000043 ], [ -88.192949942999974, 42.25593488100003 ], [ -88.198052969999935, 42.256286872000032 ], [ -88.198451958999954, 42.256288892000043 ], [ -88.197632942999974, 42.258931863000043 ], [ -88.198647930999982, 42.26038589400008 ], [ -88.198651972999983, 42.261176878000072 ], [ -88.19869834299999, 42.261295999000026 ], [ -88.198613170999977, 42.270544120000068 ], [ -88.198767913999973, 42.284988550000037 ], [ -88.198966150999979, 42.298040332000028 ], [ -88.198625964999962, 42.298308875000032 ], [ -88.19819997799999, 42.291726893000032 ], [ -88.197777980999945, 42.291309871000067 ], [ -88.196612983999955, 42.291622897000025 ], [ -88.194754934999935, 42.288724885000079 ], [ -88.194567978999942, 42.285785885000053 ], [ -88.194055977999938, 42.285730908000062 ], [ -88.194042970999988, 42.285038895000071 ], [ -88.191442956999936, 42.284981896000033 ], [ -88.191204962999961, 42.284502901000053 ], [ -88.190642956999966, 42.284504871000081 ], [ -88.19052994399999, 42.283774875000063 ], [ -88.188256946999957, 42.283181883000054 ], [ -88.188691948999974, 42.28143788400007 ], [ -88.18361695499999, 42.281115894000038 ], [ -88.183979930999953, 42.266840874000025 ], [ -88.185502931999963, 42.267536878000044 ], [ -88.186147947999984, 42.266301876000057 ], [ -88.185181977999946, 42.265697898000042 ], [ -88.185996953999961, 42.264645912000049 ], [ -88.185001965999959, 42.264599899000075 ], [ -88.187226929999952, 42.263602891000062 ], [ -88.187387975999968, 42.263044876000038 ], [ -88.183768931999964, 42.264587878000043 ], [ -88.182013947999963, 42.263558899000031 ], [ -88.181579929999941, 42.262312912000027 ], [ -88.178987947999985, 42.262334882000061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 10, "ZIP": "60044", "LBW": 0.045740741, "Preterm": 0.077592593, "TeenBirth": 4.8, "Birth_Rate": 8.4942683052800003, "F1stTriCare": 84.421497584500003, "SHAPE_Length": 0.29381103562711225, "SHAPE_Area": 0.0021577281737708838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.892447859999947, 42.309458891000077 ], [ -87.892276864999985, 42.309322923000025 ], [ -87.880521851999958, 42.308601893000059 ], [ -87.880615845999955, 42.30505990100005 ], [ -87.875779884999986, 42.304684903000066 ], [ -87.875175853999963, 42.289684914000077 ], [ -87.873505848999969, 42.287963921000028 ], [ -87.87030486399999, 42.288860923000072 ], [ -87.869929864999961, 42.288967924000076 ], [ -87.858891840999945, 42.292766929000038 ], [ -87.859943878999957, 42.296627905000037 ], [ -87.856292863999954, 42.296612929000048 ], [ -87.856365874999938, 42.297141927000041 ], [ -87.85136487599999, 42.297429926000063 ], [ -87.851348863999988, 42.294185932000062 ], [ -87.846674881999945, 42.294135930000039 ], [ -87.846122875999981, 42.294173912000076 ], [ -87.846069868999962, 42.304612931000065 ], [ -87.833351835999963, 42.30499343200006 ], [ -87.833312088999946, 42.304883590000031 ], [ -87.833337374999985, 42.304845999000065 ], [ -87.833557489999976, 42.304582488000051 ], [ -87.833599546999949, 42.304456241000025 ], [ -87.834548859999984, 42.303044903000057 ], [ -87.834376969999937, 42.302303231000053 ], [ -87.834378618999949, 42.302093966000029 ], [ -87.834268022999936, 42.301833138000063 ], [ -87.834257885999989, 42.30178939700005 ], [ -87.834323712999947, 42.301527089000047 ], [ -87.834414977999984, 42.30124691900005 ], [ -87.834432070999981, 42.300960926000073 ], [ -87.834389710999972, 42.300685674000079 ], [ -87.834238427999935, 42.300107376000028 ], [ -87.834211168999957, 42.299799181000026 ], [ -87.834154017999936, 42.299518366000029 ], [ -87.83399332099998, 42.299193087000049 ], [ -87.833775083999967, 42.298636502000079 ], [ -87.833681044999935, 42.298328018000063 ], [ -87.833633134999957, 42.298273512000037 ], [ -87.834181839999985, 42.294328896000025 ], [ -87.832542243999967, 42.28900328900005 ], [ -87.832614025999987, 42.288740034000057 ], [ -87.83257176799998, 42.288453780000054 ], [ -87.832492460999958, 42.288161863000028 ], [ -87.832390804999989, 42.287880849000032 ], [ -87.832378271999971, 42.287589223000055 ], [ -87.832210759999953, 42.287192395000034 ], [ -87.832079391999969, 42.286916753000071 ], [ -87.832119141999954, 42.286581346000048 ], [ -87.831980525999938, 42.286283666000031 ], [ -87.831945605999977, 42.28600844500005 ], [ -87.831881142999976, 42.285716592000028 ], [ -87.831787000999952, 42.285424609000074 ], [ -87.83175954699999, 42.285143922000032 ], [ -87.831665276999956, 42.284868441000071 ], [ -87.831615609999972, 42.284582154000077 ], [ -87.831521688999942, 42.284262665000028 ], [ -87.831405340999936, 42.283965082000066 ], [ -87.831236884999953, 42.283689279000043 ], [ -87.831135332999963, 42.28339726300004 ], [ -87.831011524999951, 42.28310514900005 ], [ -87.830830765999963, 42.282510211000044 ], [ -87.83069975899997, 42.282190558000025 ], [ -87.830524418999971, 42.281848706000062 ], [ -87.830355972999939, 42.281572899000025 ], [ -87.830071540999938, 42.280955499000072 ], [ -87.830043768999985, 42.280886194000061 ], [ -87.830041827999935, 42.280879889000062 ], [ -87.828770520999967, 42.277365388000078 ], [ -87.829025095999953, 42.27727599800005 ], [ -87.829109147999986, 42.276968293000039 ], [ -87.829040129999953, 42.276318829000047 ], [ -87.829052315999945, 42.275719234000064 ], [ -87.829017926999938, 42.275164474000064 ], [ -87.829320848999942, 42.274925926000037 ], [ -87.82846879799996, 42.270963368000025 ], [ -87.828512094999951, 42.270897670000068 ], [ -87.828455426999938, 42.270561837000059 ], [ -87.82847517099998, 42.269945771000039 ], [ -87.828294252999967, 42.269378335000056 ], [ -87.828170483999941, 42.269086218000041 ], [ -87.828068834999954, 42.268810701000064 ], [ -87.828004404999945, 42.268518844000027 ], [ -87.827887122999982, 42.268257943000037 ], [ -87.82786583099994, 42.268158907000043 ], [ -87.831187859999943, 42.268830920000028 ], [ -87.839462854999965, 42.268398922000074 ], [ -87.843401867999944, 42.268706921000046 ], [ -87.844069838999985, 42.268488927000078 ], [ -87.844660860999966, 42.268579918000057 ], [ -87.845449875999975, 42.268682930000068 ], [ -87.849005858999988, 42.268784905000075 ], [ -87.85122486299997, 42.267803909000065 ], [ -87.853168875999984, 42.268678888000068 ], [ -87.855957865999983, 42.268720911000059 ], [ -87.861813841999947, 42.268878900000061 ], [ -87.864606873999946, 42.268560900000068 ], [ -87.872278875999939, 42.268850919000045 ], [ -87.874423885999988, 42.272914913000079 ], [ -87.875294875999941, 42.274576886000034 ], [ -87.875709876999963, 42.275537881000048 ], [ -87.877025869999954, 42.277603922000026 ], [ -87.878587888999959, 42.279713903000072 ], [ -87.884851870999967, 42.279776912000045 ], [ -87.885214847999976, 42.279194906000043 ], [ -87.885761877999983, 42.276548930000047 ], [ -87.891767863999974, 42.276583907000031 ], [ -87.890496847999941, 42.269071917000076 ], [ -87.89039487299999, 42.268395914000052 ], [ -87.891864864999945, 42.269122904000028 ], [ -87.893637880999961, 42.268373892000056 ], [ -87.896895866999955, 42.279993921000028 ], [ -87.905270867999945, 42.280015890000072 ], [ -87.911868861999949, 42.280140924000079 ], [ -87.909061891999954, 42.284552921000056 ], [ -87.908927893999987, 42.284756924000078 ], [ -87.904969863999952, 42.291034896000042 ], [ -87.903990889999989, 42.292763920000027 ], [ -87.902808895999954, 42.295522908000066 ], [ -87.904238885999973, 42.307203925000067 ], [ -87.903117880999957, 42.311224911000068 ], [ -87.892447859999947, 42.309458891000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 11, "ZIP": "60045", "LBW": 0.048820455, "Preterm": 0.076689063, "TeenBirth": 0.3, "Birth_Rate": 4.8864301033300004, "F1stTriCare": 84.572198448199998, "SHAPE_Length": 0.52015565717168977, "SHAPE_Area": 0.0062974304080415178 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.82786583099994, 42.268158907000043 ], [ -87.827763929999946, 42.268014386000061 ], [ -87.82773444899999, 42.267956515000037 ], [ -87.82761983499995, 42.267810021000059 ], [ -87.82734471699996, 42.267419827000026 ], [ -87.827316290999988, 42.267377027000066 ], [ -87.827304234999986, 42.267362411000079 ], [ -87.82670537499996, 42.266513040000063 ], [ -87.827030548999971, 42.266006584000024 ], [ -87.82692598899996, 42.265587760000074 ], [ -87.827005826999937, 42.265480910000065 ], [ -87.826435290999939, 42.264748378000036 ], [ -87.826456121999968, 42.264565670000025 ], [ -87.826206241999955, 42.264279084000066 ], [ -87.826097189999984, 42.264004103000048 ], [ -87.825951097999962, 42.263723467000034 ], [ -87.825894137999967, 42.263426755000069 ], [ -87.825762968999982, 42.263135202000058 ], [ -87.825587657999961, 42.262799539000071 ], [ -87.82527834199999, 42.262248807000049 ], [ -87.825268821999941, 42.262219921000053 ], [ -87.825088239999957, 42.261910328000056 ], [ -87.824907618999987, 42.261588724000035 ], [ -87.824485358999937, 42.260604140000055 ], [ -87.824265258999958, 42.260306702000037 ], [ -87.823956693999946, 42.259942991000059 ], [ -87.823853976999942, 42.259794186000079 ], [ -87.820006707999937, 42.253197065000052 ], [ -87.819933998999943, 42.252991173000055 ], [ -87.819877123999959, 42.25268896700004 ], [ -87.819753288999948, 42.252413913000055 ], [ -87.819703600999958, 42.252139191000026 ], [ -87.819595178999975, 42.25179283500006 ], [ -87.819493587999943, 42.251517877000026 ], [ -87.819522923999955, 42.251429712000061 ], [ -87.817781965999984, 42.248852137000029 ], [ -87.81767137099996, 42.248677337000061 ], [ -87.817785754999989, 42.24841465600008 ], [ -87.81781760399997, 42.248137205000035 ], [ -87.817790263999939, 42.247859488000074 ], [ -87.817711125999949, 42.247581535000052 ], [ -87.817706142999953, 42.247571828000048 ], [ -87.817749833999983, 42.247362895000037 ], [ -87.817349238999952, 42.24658601200008 ], [ -87.817343016999985, 42.246441736000065 ], [ -87.817241687999967, 42.246163685000056 ], [ -87.817162599999961, 42.245880180000029 ], [ -87.817061406999983, 42.245585473000062 ], [ -87.817019268999957, 42.245307689000072 ], [ -87.816895835999958, 42.245018433000041 ], [ -87.816735317999985, 42.244740113000034 ], [ -87.816707978999943, 42.244462394000038 ], [ -87.816488273999937, 42.244183809000049 ], [ -87.816557213999943, 42.243895420000058 ], [ -87.816396702999953, 42.243617099000062 ], [ -87.816524829999935, 42.243328977000033 ], [ -87.816475297999943, 42.243051159000061 ], [ -87.816396262999945, 42.242762103000075 ], [ -87.816228444999979, 42.242472646000067 ], [ -87.816138226999954, 42.242365438000036 ], [ -87.816027855999948, 42.241789890000064 ], [ -87.815984251999964, 42.24170747900007 ], [ -87.815969018999965, 42.241622032000066 ], [ -87.81596388, 42.241344413000036 ], [ -87.815877406999959, 42.241060875000073 ], [ -87.815687311999966, 42.240782421000063 ], [ -87.815379020999956, 42.240481224000064 ], [ -87.815298824999957, 42.240411995000045 ], [ -87.815047423999943, 42.239936821000072 ], [ -87.815038141999935, 42.239641344000063 ], [ -87.814833256999975, 42.239362823000079 ], [ -87.814774474999979, 42.239302449000036 ], [ -87.814623603999962, 42.238899977000074 ], [ -87.814660365999941, 42.238790540000025 ], [ -87.814544420999937, 42.238492903000065 ], [ -87.814375213999938, 42.238237354000034 ], [ -87.814348177999989, 42.23816523000005 ], [ -87.814312267999981, 42.23793063800008 ], [ -87.814225740999973, 42.237655141000062 ], [ -87.814250180999977, 42.237380145000031 ], [ -87.814156258999958, 42.237104616000067 ], [ -87.814033010999935, 42.236795938000057 ], [ -87.813889599999982, 42.236239577000049 ], [ -87.81374389299998, 42.235963810000044 ], [ -87.813775913999962, 42.235666842000057 ], [ -87.813622898999938, 42.235380039000063 ], [ -87.81353132299995, 42.234818410000059 ], [ -87.813274837999984, 42.234520134000036 ], [ -87.81320311099995, 42.234244702000069 ], [ -87.81310919799995, 42.233969169000034 ], [ -87.812889610999946, 42.23368206300006 ], [ -87.812869672999966, 42.233406869000078 ], [ -87.812687169999947, 42.233108926000057 ], [ -87.81249713599999, 42.232827455000063 ], [ -87.812499482999954, 42.23254135600007 ], [ -87.812464751999983, 42.232266092000032 ], [ -87.812319148999961, 42.231979323000076 ], [ -87.812336291999941, 42.231693291000056 ], [ -87.812272106999956, 42.231401387000062 ], [ -87.812171830999944, 42.231163319000075 ], [ -87.812468814999988, 42.229816885000048 ], [ -87.811245540999948, 42.22799832100003 ], [ -87.811235293999971, 42.227941345000033 ], [ -87.81090958499999, 42.22707052700008 ], [ -87.8107787499999, 42.226789323000048 ], [ -87.810603488999959, 42.226513417000035 ], [ -87.810383896999952, 42.226231810000058 ], [ -87.810060980999936, 42.225922216000072 ], [ -87.809797196999966, 42.225618397000062 ], [ -87.80958523399994, 42.225309312000036 ], [ -87.809328622999942, 42.225033032000056 ], [ -87.80924896099998, 42.224962124000058 ], [ -87.811920851999957, 42.225766881000027 ], [ -87.819348847999947, 42.225279906000026 ], [ -87.825584849999984, 42.226190897000038 ], [ -87.827569848999985, 42.227245888000027 ], [ -87.826542837999966, 42.22515891300003 ], [ -87.821328819999962, 42.218034875000058 ], [ -87.821917821999989, 42.218085915000074 ], [ -87.826745856999935, 42.218103896000059 ], [ -87.827552852999986, 42.218093895000038 ], [ -87.834825863999981, 42.218024874000037 ], [ -87.837322864999976, 42.218033890000072 ], [ -87.838521854999954, 42.218027880000079 ], [ -87.84537183499998, 42.218082908000042 ], [ -87.842588854999974, 42.214914879000048 ], [ -87.842342828999961, 42.212293880000061 ], [ -87.846737829999938, 42.210810882000033 ], [ -87.846939863999978, 42.203977899000051 ], [ -87.852115846999936, 42.204065884000045 ], [ -87.853005852999956, 42.202704915000027 ], [ -87.864614847999974, 42.203714876000049 ], [ -87.864672829999961, 42.203717882000035 ], [ -87.865205869999954, 42.20408588500004 ], [ -87.868952848999982, 42.203400918000057 ], [ -87.873493869999947, 42.20419387100003 ], [ -87.879923873999985, 42.203721871000027 ], [ -87.88263985399999, 42.20446787700007 ], [ -87.886718875999975, 42.203869911000027 ], [ -87.886930857999971, 42.200254910000069 ], [ -87.890685868999981, 42.200296881000043 ], [ -87.897334851999972, 42.200343879000059 ], [ -87.897338840999964, 42.204227913000068 ], [ -87.891497839999943, 42.204260868000063 ], [ -87.891524835999974, 42.205848899000046 ], [ -87.893802860999983, 42.210986901000069 ], [ -87.894437876999973, 42.210990891000051 ], [ -87.89648687, 42.214778909000074 ], [ -87.901240857999937, 42.21487088400005 ], [ -87.905899864999981, 42.214869898000074 ], [ -87.905891885999949, 42.216451919000065 ], [ -87.908052855999983, 42.216439897000043 ], [ -87.91057488499996, 42.214542883000036 ], [ -87.909902871999975, 42.213675883000064 ], [ -87.906864850999966, 42.213898903000029 ], [ -87.905910850999987, 42.212987911000027 ], [ -87.905946863999986, 42.210706882000068 ], [ -87.902742871999976, 42.210919901000068 ], [ -87.9012888399999, 42.210966899000027 ], [ -87.901630881999949, 42.204080909000027 ], [ -87.900304836999965, 42.204079872000079 ], [ -87.90031887899994, 42.202298876000043 ], [ -87.901207849999935, 42.202298875000054 ], [ -87.901206864999949, 42.201242900000068 ], [ -87.902019870999936, 42.200371911000047 ], [ -87.905460871999935, 42.200399892000064 ], [ -87.906095886999935, 42.200407872000028 ], [ -87.915889892999985, 42.20051290400005 ], [ -87.915710865999984, 42.207631915000036 ], [ -87.915759884999943, 42.208129875000054 ], [ -87.920294894999984, 42.20824490800004 ], [ -87.925768877999985, 42.208350873000029 ], [ -87.926520894999953, 42.208621875000063 ], [ -87.926689870999951, 42.214324888000078 ], [ -87.930073873999959, 42.214764917000025 ], [ -87.930005889999961, 42.216520885000079 ], [ -87.934510898999974, 42.22099791200003 ], [ -87.926037859999951, 42.221200879000037 ], [ -87.925642860999972, 42.222182912000051 ], [ -87.924921880999989, 42.218814869000028 ], [ -87.919937876999938, 42.218004920000055 ], [ -87.919712889999971, 42.222124877000056 ], [ -87.919043882999972, 42.222109902000057 ], [ -87.918942890999972, 42.222761913000056 ], [ -87.916447858999959, 42.222713879000025 ], [ -87.916512887999943, 42.222058914000058 ], [ -87.915580858999988, 42.222048914000027 ], [ -87.915839890999962, 42.225691896000058 ], [ -87.917452845999946, 42.226335876000064 ], [ -87.9172578599999, 42.229334879000078 ], [ -87.919853883999963, 42.229547897000032 ], [ -87.920850892999965, 42.233085899000059 ], [ -87.92082684899998, 42.234920888000033 ], [ -87.920335884999986, 42.234989909000035 ], [ -87.920289870999966, 42.234539880000057 ], [ -87.920157892999953, 42.234575893000056 ], [ -87.920157893999942, 42.235535903000027 ], [ -87.918666864999977, 42.235007890000077 ], [ -87.918467887999952, 42.233261921000064 ], [ -87.916309871999943, 42.235316873000045 ], [ -87.915156895999985, 42.240160918000072 ], [ -87.925183868999966, 42.240277921000029 ], [ -87.925043860999949, 42.247472896000033 ], [ -87.914865892999956, 42.250167889000068 ], [ -87.91557987799996, 42.250224888000048 ], [ -87.914595875999964, 42.258314895000069 ], [ -87.914020863999951, 42.258392880000031 ], [ -87.90551487099998, 42.258018918000062 ], [ -87.905476889999989, 42.261948914000072 ], [ -87.90543284499995, 42.263372892000064 ], [ -87.90533289199999, 42.27533092300007 ], [ -87.905270867999945, 42.280015890000072 ], [ -87.896895866999955, 42.279993921000028 ], [ -87.893637880999961, 42.268373892000056 ], [ -87.891864864999945, 42.269122904000028 ], [ -87.89039487299999, 42.268395914000052 ], [ -87.890496847999941, 42.269071917000076 ], [ -87.891767863999974, 42.276583907000031 ], [ -87.885761877999983, 42.276548930000047 ], [ -87.885214847999976, 42.279194906000043 ], [ -87.884851870999967, 42.279776912000045 ], [ -87.878587888999959, 42.279713903000072 ], [ -87.877025869999954, 42.277603922000026 ], [ -87.875709876999963, 42.275537881000048 ], [ -87.875294875999941, 42.274576886000034 ], [ -87.874423885999988, 42.272914913000079 ], [ -87.872278875999939, 42.268850919000045 ], [ -87.864606873999946, 42.268560900000068 ], [ -87.861813841999947, 42.268878900000061 ], [ -87.855957865999983, 42.268720911000059 ], [ -87.853168875999984, 42.268678888000068 ], [ -87.85122486299997, 42.267803909000065 ], [ -87.849005858999988, 42.268784905000075 ], [ -87.845449875999975, 42.268682930000068 ], [ -87.844660860999966, 42.268579918000057 ], [ -87.844069838999985, 42.268488927000078 ], [ -87.843401867999944, 42.268706921000046 ], [ -87.839462854999965, 42.268398922000074 ], [ -87.831187859999943, 42.268830920000028 ], [ -87.82786583099994, 42.268158907000043 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 12, "ZIP": "60046", "LBW": 0.068125776, "Preterm": 0.085629527, "TeenBirth": 9.1, "Birth_Rate": 10.1838836455, "F1stTriCare": 80.923183582899995, "SHAPE_Length": 0.6658469585840191, "SHAPE_Area": 0.0074219849995341928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.004023941999947, 42.444287950000046 ], [ -88.00377889799995, 42.424252919000025 ], [ -88.00390589899996, 42.410468915000081 ], [ -88.003941911999959, 42.409374906000039 ], [ -88.003948905999948, 42.407930926000063 ], [ -87.998604932999967, 42.407434936000072 ], [ -87.991416898999944, 42.403744904000064 ], [ -87.988150883999936, 42.398966925000025 ], [ -87.986410924999973, 42.396517907000032 ], [ -87.992377893999958, 42.396068913000079 ], [ -87.99261391899995, 42.396974931000045 ], [ -87.997428895999974, 42.396878914000069 ], [ -87.99745889799999, 42.393326921000039 ], [ -87.998142931999951, 42.393340911000053 ], [ -87.998202935999984, 42.38983892300007 ], [ -88.00025089199994, 42.389533928000048 ], [ -88.000671903999944, 42.388802897000062 ], [ -87.999016925999967, 42.386015928000063 ], [ -87.996643921999976, 42.385869909000064 ], [ -88.001412935999952, 42.375187919000041 ], [ -88.002306930999964, 42.374770898000065 ], [ -87.998236925999947, 42.371350935000066 ], [ -87.997775909999973, 42.365917939000042 ], [ -87.999906928999962, 42.362197905000073 ], [ -88.000818905999949, 42.360617906000073 ], [ -88.001842909999937, 42.360619927000073 ], [ -88.001249918999974, 42.366651925000042 ], [ -88.001227896999978, 42.366893910000044 ], [ -88.001363915999946, 42.368043932000035 ], [ -88.001925921999941, 42.369682899000054 ], [ -88.004129898999963, 42.370749911000075 ], [ -88.00458391899997, 42.375127916000054 ], [ -88.011962895999943, 42.375680904000035 ], [ -88.011937920999969, 42.376685891000079 ], [ -88.018718931999956, 42.376684907000026 ], [ -88.020290898999974, 42.373584912000069 ], [ -88.02097089099999, 42.375636911000072 ], [ -88.019765890999963, 42.377795912000067 ], [ -88.027920929999937, 42.382074894000027 ], [ -88.027285914999936, 42.38578689600007 ], [ -88.033873907999975, 42.384343901000079 ], [ -88.033814939999957, 42.379311916000063 ], [ -88.038911904999964, 42.379273934000025 ], [ -88.038713911999935, 42.383930920000068 ], [ -88.037542902999974, 42.384138913000072 ], [ -88.036600924999959, 42.386354912000058 ], [ -88.044908926999938, 42.38627490600004 ], [ -88.04387393799999, 42.388241925000045 ], [ -88.046233934999975, 42.388491941000041 ], [ -88.046279948999938, 42.389670929000033 ], [ -88.049792923999973, 42.389702901000078 ], [ -88.04929791699999, 42.391827909000028 ], [ -88.050563906999969, 42.391699921000054 ], [ -88.050561937999987, 42.392526918000044 ], [ -88.05021994699996, 42.393262925000045 ], [ -88.057620945999986, 42.393326918000071 ], [ -88.057663953999963, 42.39254691900004 ], [ -88.059620920999976, 42.392180936000045 ], [ -88.058901910999964, 42.391889933000073 ], [ -88.060082919999957, 42.391660903000059 ], [ -88.059642942999972, 42.391333939000049 ], [ -88.060639950999985, 42.390604927000027 ], [ -88.059571953999978, 42.390306929000076 ], [ -88.061135940999975, 42.388803929000062 ], [ -88.060603937999986, 42.387551931000075 ], [ -88.058973934999983, 42.388127927000028 ], [ -88.058388923999985, 42.388895905000027 ], [ -88.055833938999967, 42.388850928000068 ], [ -88.055678901999954, 42.386417920000042 ], [ -88.055102905999945, 42.386646898000038 ], [ -88.052216914999974, 42.385905918000049 ], [ -88.052177949999987, 42.38814590800007 ], [ -88.050586912999961, 42.387057910000067 ], [ -88.049511920999976, 42.387070916000027 ], [ -88.049529900999971, 42.382874892000075 ], [ -88.043318926999973, 42.383112939000057 ], [ -88.043505933999938, 42.379287924000039 ], [ -88.041717940999945, 42.379019927000058 ], [ -88.042142942999988, 42.37297093400008 ], [ -88.043725946999984, 42.372425925000073 ], [ -88.045953915999974, 42.371701940000037 ], [ -88.051125909999939, 42.371539907000056 ], [ -88.056029907999971, 42.374793901000032 ], [ -88.056003947999955, 42.374023903000079 ], [ -88.05662694199998, 42.374023903000079 ], [ -88.056665907999957, 42.372314932000052 ], [ -88.057720950999965, 42.372333896000043 ], [ -88.057682916999966, 42.371582915000033 ], [ -88.058292904999973, 42.371589910000068 ], [ -88.059586926999941, 42.371685927000044 ], [ -88.061127908999936, 42.375277922000066 ], [ -88.060330912999973, 42.375265901000034 ], [ -88.058142947999954, 42.375597891000041 ], [ -88.05853794799998, 42.37643089900007 ], [ -88.057707944999947, 42.378744935000043 ], [ -88.055397950999975, 42.378950907000046 ], [ -88.055578946999958, 42.381972917000041 ], [ -88.056812912999987, 42.382885929000054 ], [ -88.062941912999975, 42.383594939000034 ], [ -88.06309192399999, 42.386998890000029 ], [ -88.064114943999982, 42.391381921000061 ], [ -88.065188952999961, 42.396050928000079 ], [ -88.069900915999938, 42.396084920000078 ], [ -88.070020924999938, 42.396085904000074 ], [ -88.071590922999974, 42.396138913000073 ], [ -88.072454916999959, 42.396339911000041 ], [ -88.07317594899996, 42.39660593800005 ], [ -88.077520946999982, 42.398006910000049 ], [ -88.082908912999983, 42.398052922000034 ], [ -88.084552957999961, 42.39804489100004 ], [ -88.084887953999953, 42.398041937000073 ], [ -88.084877952999989, 42.397836898000037 ], [ -88.087125922999974, 42.397467911000035 ], [ -88.087311945999943, 42.389887936000036 ], [ -88.092126920999988, 42.389907937000032 ], [ -88.092136921999952, 42.388876937000077 ], [ -88.092121946999953, 42.386300916000039 ], [ -88.095176963999961, 42.386319932000049 ], [ -88.097150925999983, 42.386627931000078 ], [ -88.097071957999958, 42.389351891000047 ], [ -88.097000916999946, 42.393549935000067 ], [ -88.097141962999956, 42.39354490900007 ], [ -88.100383935999957, 42.393596933000026 ], [ -88.099779958999989, 42.398150907000058 ], [ -88.111247958999968, 42.399332900000047 ], [ -88.111674928999946, 42.398722913000029 ], [ -88.11379594899995, 42.399225899000044 ], [ -88.114634965999983, 42.397342926000078 ], [ -88.116581932999964, 42.397446923000075 ], [ -88.115643944999988, 42.401031922000072 ], [ -88.117417945999989, 42.401011921000077 ], [ -88.116892936999989, 42.392081911000048 ], [ -88.120285955999975, 42.391907910000043 ], [ -88.120361970999966, 42.393520916000057 ], [ -88.120384926999975, 42.401007931000038 ], [ -88.128987973999983, 42.400942900000075 ], [ -88.130430967999985, 42.400938910000036 ], [ -88.134275933999959, 42.400878906000059 ], [ -88.139858939999954, 42.400810922000062 ], [ -88.139414973999976, 42.40494792700008 ], [ -88.139609959999973, 42.405767928000046 ], [ -88.139668980999943, 42.416135907000069 ], [ -88.139783963999946, 42.42275789100006 ], [ -88.136710965999953, 42.426989928000069 ], [ -88.136271972999964, 42.428733927000053 ], [ -88.134907946999988, 42.429390913000077 ], [ -88.134874939999975, 42.429419931000041 ], [ -88.127370927999948, 42.430361909000055 ], [ -88.125768957999981, 42.431479909000075 ], [ -88.121638948999987, 42.432490908000034 ], [ -88.119510935999983, 42.43629291600007 ], [ -88.120647951999956, 42.437412937000033 ], [ -88.120538929999952, 42.439062940000042 ], [ -88.124541936999947, 42.440597911000054 ], [ -88.123271957999975, 42.440714913000079 ], [ -88.114105972999937, 42.440462929000034 ], [ -88.112519962999954, 42.444504901000073 ], [ -88.093089942999939, 42.444552936000036 ], [ -88.082920939999951, 42.444518945000027 ], [ -88.073625929999935, 42.443542923000052 ], [ -88.073373944999958, 42.444299916000034 ], [ -88.072371963999956, 42.44436391000005 ], [ -88.072363930999984, 42.447033928000053 ], [ -88.072262940999963, 42.447473904000049 ], [ -88.071868925999979, 42.448107935000053 ], [ -88.067399929999965, 42.448037931000044 ], [ -88.067335935999949, 42.444354946000033 ], [ -88.06864995899997, 42.442451920000053 ], [ -88.062536917999978, 42.441868929000066 ], [ -88.057648932999939, 42.441823901000078 ], [ -88.057659917999956, 42.437199922000048 ], [ -88.053550944999984, 42.43724992500006 ], [ -88.052624925999964, 42.437213913000051 ], [ -88.052585908999959, 42.441919918000053 ], [ -88.047527910999975, 42.442265951000024 ], [ -88.044003950999979, 42.439671948000068 ], [ -88.041086922999966, 42.440792902000055 ], [ -88.037946924999972, 42.441164947000061 ], [ -88.037922934999983, 42.444535943000062 ], [ -88.023139900999979, 42.444436922000079 ], [ -88.022993931999963, 42.448034928000027 ], [ -88.011227933999976, 42.447467949000043 ], [ -88.009893907999981, 42.44432691600008 ], [ -88.004023941999947, 42.444287950000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 13, "ZIP": "60047", "LBW": 0.071366323, "Preterm": 0.098070154, "TeenBirth": 3.5, "Birth_Rate": 7.8278581748400002, "F1stTriCare": 84.344977997900003, "SHAPE_Length": 0.57579686546793507, "SHAPE_Area": 0.0093109820760344381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.99423587199999, 42.219519885000068 ], [ -87.994243902999983, 42.21893487300008 ], [ -87.994037879999951, 42.216494870000076 ], [ -87.993397889999983, 42.216025875000071 ], [ -87.993057866999948, 42.215084882000042 ], [ -87.992105887999969, 42.21458490100008 ], [ -87.991551914999945, 42.213297874000034 ], [ -87.990531899999951, 42.212404915000036 ], [ -87.989678890999983, 42.212206871000035 ], [ -87.98946690799994, 42.21160191000007 ], [ -87.98812490399996, 42.210834865000038 ], [ -87.987547870999947, 42.21054489800008 ], [ -87.989283890999957, 42.208694882000032 ], [ -87.996717897999986, 42.209744898000054 ], [ -87.997319905999973, 42.207044878000033 ], [ -87.992743907999966, 42.204450876000067 ], [ -87.99018586599999, 42.205636911000056 ], [ -87.989902894999943, 42.206232908000061 ], [ -87.989438873999973, 42.204404914000065 ], [ -87.989449910999951, 42.197211908000043 ], [ -87.98604487099999, 42.197225899000046 ], [ -87.980026862999978, 42.197220873000049 ], [ -87.973103872999957, 42.197202893000053 ], [ -87.974186895999935, 42.190251871000044 ], [ -87.977972893999947, 42.190145905000065 ], [ -87.977972893999947, 42.187713883000072 ], [ -87.977310881999983, 42.187713883000072 ], [ -87.977285905999963, 42.185866872000076 ], [ -87.974934871999949, 42.183377902000075 ], [ -87.975293858999976, 42.182709879000072 ], [ -87.989490896999939, 42.18269189800003 ], [ -87.989607898999964, 42.182663865000052 ], [ -87.989909885999964, 42.177818887000058 ], [ -87.988963866999939, 42.175371889000075 ], [ -87.994157882999957, 42.175473864000026 ], [ -87.994239908999987, 42.174825895000026 ], [ -87.992474872999935, 42.174373896000077 ], [ -87.992643898999972, 42.173322895000069 ], [ -87.993433897999978, 42.172705861000054 ], [ -87.993472863999955, 42.171945863000076 ], [ -87.994233898999937, 42.17195586400004 ], [ -87.99393387799995, 42.168574867000075 ], [ -87.993938903999947, 42.168115873000033 ], [ -87.993676866999976, 42.16799990800007 ], [ -87.98904786099996, 42.167810880000047 ], [ -87.984897901999943, 42.167995867000059 ], [ -87.984936866999988, 42.160640881000063 ], [ -87.999492891999978, 42.160913903000051 ], [ -87.999558905999947, 42.153651877000073 ], [ -87.99980448599996, 42.153651072000059 ], [ -88.004624390999936, 42.153665879000073 ], [ -88.01625553599996, 42.153708434000066 ], [ -88.017392915999949, 42.153715870000042 ], [ -88.017533456999956, 42.153713037000045 ], [ -88.023252242999945, 42.153733466000062 ], [ -88.023914893999972, 42.153743902000031 ], [ -88.02575294899998, 42.153739063000046 ], [ -88.029023743999971, 42.15374406400008 ], [ -88.028916878999951, 42.160949862000052 ], [ -88.035914898999977, 42.160716893000028 ], [ -88.036909885999989, 42.160700881000025 ], [ -88.0365748899999, 42.161618869000051 ], [ -88.046208884999942, 42.160853896000049 ], [ -88.047853913999973, 42.161833856000044 ], [ -88.048614895999947, 42.160946856000066 ], [ -88.049498891999974, 42.161102876000029 ], [ -88.050044885999966, 42.160794877000058 ], [ -88.053442878999988, 42.162580899000034 ], [ -88.054109916999948, 42.163686878000078 ], [ -88.055078891999983, 42.163340897000069 ], [ -88.06280488699997, 42.166333888000054 ], [ -88.062786906999975, 42.162934859000075 ], [ -88.067642920999958, 42.162924859000043 ], [ -88.067648932999987, 42.16471886100004 ], [ -88.069439929999987, 42.16471886100004 ], [ -88.069439929999987, 42.165292888000067 ], [ -88.072092899999973, 42.165429892000077 ], [ -88.072077925999963, 42.164858870000046 ], [ -88.072921917999963, 42.165096865000066 ], [ -88.072352917999979, 42.167930883000054 ], [ -88.067623905999938, 42.167970886000035 ], [ -88.069644917999938, 42.168866902000048 ], [ -88.072062898999945, 42.17265087800007 ], [ -88.07258692299996, 42.172266864000051 ], [ -88.073075918999962, 42.172683885000026 ], [ -88.073359925999966, 42.168373865000035 ], [ -88.081877888999941, 42.168388891000063 ], [ -88.081905922999965, 42.169563890000063 ], [ -88.082303927999988, 42.169514871000047 ], [ -88.082320924999976, 42.175664856000026 ], [ -88.09201989799999, 42.17577589900003 ], [ -88.091923933999965, 42.183604904000049 ], [ -88.101631922999957, 42.183601899000053 ], [ -88.101625911999975, 42.18307290000007 ], [ -88.111356907999948, 42.18312585700005 ], [ -88.111356906999958, 42.184753890000025 ], [ -88.11379494199997, 42.184904885000037 ], [ -88.11379494199997, 42.184503874000029 ], [ -88.116822910999986, 42.18450589400004 ], [ -88.116204943999946, 42.190434880000055 ], [ -88.120834933999959, 42.190502864000052 ], [ -88.121355901999948, 42.197676905000037 ], [ -88.120672904999935, 42.205014894000044 ], [ -88.113659908999978, 42.205021890000069 ], [ -88.111657913999977, 42.205312893000041 ], [ -88.111651903999984, 42.206743867000057 ], [ -88.11162791199996, 42.212046906000069 ], [ -88.111407949999943, 42.212041880000072 ], [ -88.111844923999968, 42.236041883000041 ], [ -88.113901949999956, 42.238371879000056 ], [ -88.11718594599995, 42.238892898000074 ], [ -88.115912908999974, 42.240747889000033 ], [ -88.111389920999954, 42.237414874000081 ], [ -88.111100937999936, 42.240199874000041 ], [ -88.107435933999966, 42.241131903000053 ], [ -88.107345927999972, 42.242291875000035 ], [ -88.096968930999935, 42.244710893000047 ], [ -88.096420915999943, 42.241055888000062 ], [ -88.09185191399996, 42.240998891000061 ], [ -88.082348911999986, 42.240530881000041 ], [ -88.079704905999961, 42.240400873000056 ], [ -88.069506937999961, 42.240763902000026 ], [ -88.068960890999961, 42.243240902000025 ], [ -88.071708893999983, 42.248227910000026 ], [ -88.063853927999958, 42.248159875000056 ], [ -88.063847916999975, 42.248012871000071 ], [ -88.063265909999984, 42.248173918000077 ], [ -88.056705897999962, 42.248205889000076 ], [ -88.053848923999965, 42.243632898000044 ], [ -88.053397909999944, 42.241889883000056 ], [ -88.053218934999961, 42.241328914000064 ], [ -88.051980925999942, 42.238922903000059 ], [ -88.045772904999978, 42.234761908000053 ], [ -88.042023904999951, 42.236159875000055 ], [ -88.042775922999965, 42.236502902000041 ], [ -88.043503897999983, 42.240454868000029 ], [ -88.024888904999955, 42.241285908000066 ], [ -88.023393884999962, 42.24066089300004 ], [ -88.019717893999939, 42.240564876000064 ], [ -88.01935191199999, 42.240523890000077 ], [ -88.019014895999987, 42.240504873000077 ], [ -88.014774878999958, 42.240562908000072 ], [ -88.014510922999989, 42.23680390800007 ], [ -88.01264790099998, 42.237041902000044 ], [ -88.014122918999988, 42.233460892000039 ], [ -88.004197920999957, 42.233471878000046 ], [ -88.004151906999937, 42.226947880000068 ], [ -88.004102886999988, 42.22450290200004 ], [ -88.001364885999976, 42.225612870000077 ], [ -87.999363874999972, 42.224273872000026 ], [ -87.997548885999947, 42.224338902000056 ], [ -87.995844888999954, 42.220368904000054 ], [ -87.99423587199999, 42.219519885000068 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 14, "ZIP": "60048", "LBW": 0.047031619, "Preterm": 0.07770726, "TeenBirth": 1.6, "Birth_Rate": 6.8552793334200004, "F1stTriCare": 83.484953499200003, "SHAPE_Length": 0.61996697669802814, "SHAPE_Area": 0.0083063973702308808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.914542876999974, 42.345493924000039 ], [ -87.914524895999989, 42.341899908000073 ], [ -87.91955190699997, 42.341580923000038 ], [ -87.918236898999965, 42.340020925000033 ], [ -87.916194900999983, 42.339713911000047 ], [ -87.916185883999958, 42.340126891000068 ], [ -87.91455386199999, 42.340374938000025 ], [ -87.91455489699996, 42.336058907000051 ], [ -87.907925863999935, 42.328429914000026 ], [ -87.907563871999969, 42.327194912000039 ], [ -87.90383787799999, 42.326718923000044 ], [ -87.903047877999938, 42.320051910000075 ], [ -87.895253898999954, 42.320167928000046 ], [ -87.895218869999951, 42.319921902000033 ], [ -87.892447859999947, 42.309458891000077 ], [ -87.903117880999957, 42.311224911000068 ], [ -87.904238885999973, 42.307203925000067 ], [ -87.902808895999954, 42.295522908000066 ], [ -87.903990889999989, 42.292763920000027 ], [ -87.904969863999952, 42.291034896000042 ], [ -87.908927893999987, 42.284756924000078 ], [ -87.909061891999954, 42.284552921000056 ], [ -87.911868861999949, 42.280140924000079 ], [ -87.905270867999945, 42.280015890000072 ], [ -87.90533289199999, 42.27533092300007 ], [ -87.90543284499995, 42.263372892000064 ], [ -87.905476889999989, 42.261948914000072 ], [ -87.90551487099998, 42.258018918000062 ], [ -87.914020863999951, 42.258392880000031 ], [ -87.914595875999964, 42.258314895000069 ], [ -87.91557987799996, 42.250224888000048 ], [ -87.914865892999956, 42.250167889000068 ], [ -87.925043860999949, 42.247472896000033 ], [ -87.925183868999966, 42.240277921000029 ], [ -87.915156895999985, 42.240160918000072 ], [ -87.916309871999943, 42.235316873000045 ], [ -87.918467887999952, 42.233261921000064 ], [ -87.918666864999977, 42.235007890000077 ], [ -87.920157893999942, 42.235535903000027 ], [ -87.920157892999953, 42.234575893000056 ], [ -87.920289870999966, 42.234539880000057 ], [ -87.920335884999986, 42.234989909000035 ], [ -87.92082684899998, 42.234920888000033 ], [ -87.920850892999965, 42.233085899000059 ], [ -87.919853883999963, 42.229547897000032 ], [ -87.9172578599999, 42.229334879000078 ], [ -87.917452845999946, 42.226335876000064 ], [ -87.915839890999962, 42.225691896000058 ], [ -87.915580858999988, 42.222048914000027 ], [ -87.916512887999943, 42.222058914000058 ], [ -87.916447858999959, 42.222713879000025 ], [ -87.918942890999972, 42.222761913000056 ], [ -87.919043882999972, 42.222109902000057 ], [ -87.919712889999971, 42.222124877000056 ], [ -87.919937876999938, 42.218004920000055 ], [ -87.924921880999989, 42.218814869000028 ], [ -87.925642860999972, 42.222182912000051 ], [ -87.926037859999951, 42.221200879000037 ], [ -87.934510898999974, 42.22099791200003 ], [ -87.930005889999961, 42.216520885000079 ], [ -87.930073873999959, 42.214764917000025 ], [ -87.926689870999951, 42.214324888000078 ], [ -87.926520894999953, 42.208621875000063 ], [ -87.925768877999985, 42.208350873000029 ], [ -87.933266878999973, 42.208084897000049 ], [ -87.93538085099999, 42.215424907000056 ], [ -87.936298890999979, 42.217129888000045 ], [ -87.936737882999978, 42.217989893000038 ], [ -87.940779855999949, 42.226359918000071 ], [ -87.941024897999966, 42.226872904000061 ], [ -87.942381878999981, 42.231527921000065 ], [ -87.942820870999981, 42.232199882000032 ], [ -87.944581866999954, 42.240427877000059 ], [ -87.945221856999979, 42.244874902000049 ], [ -87.94529289799999, 42.245379909000064 ], [ -87.947047882999982, 42.254025910000053 ], [ -87.947381894999978, 42.255468906000033 ], [ -87.948113859999978, 42.25883192100008 ], [ -87.94893386199999, 42.262535893000063 ], [ -87.955131881999989, 42.263016909000044 ], [ -87.9612899, 42.263631922000059 ], [ -87.963884886999949, 42.263636896000037 ], [ -87.963363868999977, 42.263334907000058 ], [ -87.963296868999976, 42.263038878000032 ], [ -87.964944903999935, 42.26307888000008 ], [ -87.965332907999937, 42.262637919000042 ], [ -87.966604907999965, 42.263076911000041 ], [ -87.966919902999962, 42.26387888000005 ], [ -87.969812888999968, 42.265385921000075 ], [ -87.971828875999961, 42.265815897000039 ], [ -87.971647878999988, 42.267923909000046 ], [ -87.971200907999958, 42.269029888000034 ], [ -87.973300887999983, 42.269083881000029 ], [ -87.974015908999945, 42.26965692400006 ], [ -87.974019899999973, 42.270121876000076 ], [ -87.975724879999973, 42.270197892000056 ], [ -87.976198900999975, 42.270860888000072 ], [ -87.984095891999971, 42.270719894000081 ], [ -87.984121903999949, 42.275258893000057 ], [ -87.980951904999984, 42.277591894000068 ], [ -87.983892873999935, 42.280081901000074 ], [ -87.98352891199994, 42.28350087900003 ], [ -87.983794888999967, 42.28434689200003 ], [ -87.990820889999952, 42.284561881000059 ], [ -87.997956897999984, 42.285064917000057 ], [ -87.997057876999975, 42.288239890000057 ], [ -88.000585877999981, 42.288519908000069 ], [ -88.003627889999962, 42.291364911000073 ], [ -88.004174919999969, 42.291466888000059 ], [ -88.004245909999952, 42.297728900000038 ], [ -88.018981894999968, 42.299280917000033 ], [ -88.019030913999984, 42.306108926000036 ], [ -88.014103908999971, 42.306073897000033 ], [ -88.014246924999952, 42.320652927000026 ], [ -88.014270915999987, 42.321716882000032 ], [ -88.013491902999988, 42.321735899000032 ], [ -88.01318592299998, 42.320549915000072 ], [ -88.00456189099998, 42.320569917000057 ], [ -88.002613887999985, 42.320573907000039 ], [ -88.002366929999937, 42.317328929000041 ], [ -88.000885900999947, 42.317596926000078 ], [ -88.00091890799996, 42.32058188700006 ], [ -87.978543876999936, 42.320627902000069 ], [ -87.97837790899996, 42.328088904000026 ], [ -87.978437913999983, 42.340375919000053 ], [ -87.963571920999982, 42.340863932000047 ], [ -87.963607881999963, 42.344626921000042 ], [ -87.967724885999985, 42.344890928000041 ], [ -87.964539911999964, 42.345361892000028 ], [ -87.964476901999944, 42.347620898000059 ], [ -87.963579900999946, 42.348001908000072 ], [ -87.963629904999948, 42.35308690100004 ], [ -87.958902913999964, 42.353048919000059 ], [ -87.95892089299997, 42.346503935000044 ], [ -87.963590886999953, 42.346511915000065 ], [ -87.963602907999984, 42.345566931000064 ], [ -87.961517901999969, 42.345556930000043 ], [ -87.961516916999983, 42.344308922000039 ], [ -87.95892291399997, 42.344328923000035 ], [ -87.95889591699995, 42.34171989400005 ], [ -87.958387904999938, 42.341792904000044 ], [ -87.945098904999952, 42.343570895000028 ], [ -87.94133788399995, 42.343905892000066 ], [ -87.941143881999949, 42.343920918000038 ], [ -87.940946873999962, 42.343936930000041 ], [ -87.914540855999974, 42.346179927000037 ], [ -87.914542876999974, 42.345493924000039 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 15, "ZIP": "60060", "LBW": 0.073593986, "Preterm": 0.09625956, "TeenBirth": 20.6, "Birth_Rate": 13.367328115499999, "F1stTriCare": 78.087837485500003, "SHAPE_Length": 0.58083454564160097, "SHAPE_Area": 0.006261043864898278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.019030913999984, 42.306108926000036 ], [ -88.018981894999968, 42.299280917000033 ], [ -88.004245909999952, 42.297728900000038 ], [ -88.004174919999969, 42.291466888000059 ], [ -88.003627889999962, 42.291364911000073 ], [ -88.000585877999981, 42.288519908000069 ], [ -87.997057876999975, 42.288239890000057 ], [ -87.997956897999984, 42.285064917000057 ], [ -87.990820889999952, 42.284561881000059 ], [ -87.983794888999967, 42.28434689200003 ], [ -87.98352891199994, 42.28350087900003 ], [ -87.983892873999935, 42.280081901000074 ], [ -87.980951904999984, 42.277591894000068 ], [ -87.984121903999949, 42.275258893000057 ], [ -87.984095891999971, 42.270719894000081 ], [ -87.983923910999977, 42.266014925000036 ], [ -87.983901888999981, 42.265554896000026 ], [ -87.982211881999945, 42.265901912000061 ], [ -87.98170791199999, 42.265884917000051 ], [ -87.975369882999985, 42.265864916000055 ], [ -87.97456288699999, 42.265713922000032 ], [ -87.975162873999977, 42.26448891900003 ], [ -87.977797915999986, 42.259197903000029 ], [ -87.978833888999986, 42.256943922000062 ], [ -87.980676909999943, 42.249256894000041 ], [ -87.979412889999935, 42.246480911000049 ], [ -87.977046880999978, 42.240590891000068 ], [ -87.978056893999963, 42.240600892000032 ], [ -87.976885884999945, 42.238816890000066 ], [ -87.976826865999953, 42.238701909000042 ], [ -87.974193896999964, 42.233666919000029 ], [ -87.977111909999962, 42.233507892000034 ], [ -87.977082891999942, 42.233427887000062 ], [ -87.976896869999962, 42.23342591800008 ], [ -87.977115898999955, 42.227901881000037 ], [ -87.977223884999944, 42.227834882000025 ], [ -87.979359879999947, 42.228948891000073 ], [ -87.980505912999945, 42.233456904000036 ], [ -87.984280873999978, 42.233791900000028 ], [ -87.984266882999975, 42.234203896000054 ], [ -87.984338908999973, 42.237385916000051 ], [ -87.988013914999954, 42.237385916000051 ], [ -87.992104906999941, 42.237061904000029 ], [ -87.99285987799999, 42.237406901000043 ], [ -87.993085901999962, 42.235854883000059 ], [ -87.988984909999942, 42.233718890000034 ], [ -87.993158911999956, 42.233530898000026 ], [ -87.993607904999976, 42.231713889000048 ], [ -87.994098869999959, 42.231865868000057 ], [ -87.994114879999984, 42.223974889000033 ], [ -87.99423587199999, 42.219519885000068 ], [ -87.995844888999954, 42.220368904000054 ], [ -87.997548885999947, 42.224338902000056 ], [ -87.999363874999972, 42.224273872000026 ], [ -88.001364885999976, 42.225612870000077 ], [ -88.004102886999988, 42.22450290200004 ], [ -88.004151906999937, 42.226947880000068 ], [ -88.004197920999957, 42.233471878000046 ], [ -88.014122918999988, 42.233460892000039 ], [ -88.01264790099998, 42.237041902000044 ], [ -88.014510922999989, 42.23680390800007 ], [ -88.014774878999958, 42.240562908000072 ], [ -88.019014895999987, 42.240504873000077 ], [ -88.01935191199999, 42.240523890000077 ], [ -88.019717893999939, 42.240564876000064 ], [ -88.023393884999962, 42.24066089300004 ], [ -88.024888904999955, 42.241285908000066 ], [ -88.043503897999983, 42.240454868000029 ], [ -88.042775922999965, 42.236502902000041 ], [ -88.042023904999951, 42.236159875000055 ], [ -88.045772904999978, 42.234761908000053 ], [ -88.051980925999942, 42.238922903000059 ], [ -88.053218934999961, 42.241328914000064 ], [ -88.053397909999944, 42.241889883000056 ], [ -88.053848923999965, 42.243632898000044 ], [ -88.056705897999962, 42.248205889000076 ], [ -88.063265909999984, 42.248173918000077 ], [ -88.063847916999975, 42.248012871000071 ], [ -88.063853927999958, 42.248159875000056 ], [ -88.071708893999983, 42.248227910000026 ], [ -88.068960890999961, 42.243240902000025 ], [ -88.069506937999961, 42.240763902000026 ], [ -88.079704905999961, 42.240400873000056 ], [ -88.08414094599999, 42.246723874000054 ], [ -88.079741903999945, 42.25001590200003 ], [ -88.082248905999961, 42.251774875000081 ], [ -88.081015925999964, 42.255513875000076 ], [ -88.067469914999947, 42.258703876000027 ], [ -88.069260912999937, 42.266319914000064 ], [ -88.086727903999986, 42.265444882000054 ], [ -88.091455931999974, 42.26250888800007 ], [ -88.102443951999987, 42.263346870000078 ], [ -88.110203939999963, 42.277226889000076 ], [ -88.11175891299996, 42.283151885000052 ], [ -88.118367944999989, 42.287699901000053 ], [ -88.118914922999977, 42.286985916000049 ], [ -88.120764939999958, 42.289150875000075 ], [ -88.118050928999935, 42.287755914000059 ], [ -88.116146919999949, 42.289352910000048 ], [ -88.11577891799999, 42.298845910000068 ], [ -88.120616952999967, 42.298651906000032 ], [ -88.118790925999974, 42.300424872000065 ], [ -88.120632911999962, 42.301595880000036 ], [ -88.118496917999948, 42.301928907000047 ], [ -88.107001920999949, 42.292783910000026 ], [ -88.097739917999945, 42.289202901000067 ], [ -88.083438935999936, 42.294367900000054 ], [ -88.066517939999983, 42.295326875000057 ], [ -88.05811889499995, 42.290945918000034 ], [ -88.042379890999939, 42.278999910000039 ], [ -88.03977391899997, 42.285056883000038 ], [ -88.037459934999958, 42.290749896000079 ], [ -88.033425890999979, 42.298287898000069 ], [ -88.038492904999941, 42.298735906000047 ], [ -88.03229089499996, 42.300239890000057 ], [ -88.028617910999969, 42.306183904000079 ], [ -88.019030913999984, 42.306108926000036 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 16, "ZIP": "60061", "LBW": 0.092853168, "Preterm": 0.11023024, "TeenBirth": 8.1, "Birth_Rate": 10.824663402700001, "F1stTriCare": 82.1289832784, "SHAPE_Length": 0.32205853249566407, "SHAPE_Area": 0.0026082055937143205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.933266878999973, 42.208084897000049 ], [ -87.932769850999989, 42.204301905000079 ], [ -87.933262887999945, 42.202382869000076 ], [ -87.933158891999938, 42.200887901000044 ], [ -87.93464888599999, 42.201394877000041 ], [ -87.938696867999965, 42.201477888000056 ], [ -87.939607860999956, 42.204077900000073 ], [ -87.940578856999934, 42.204158890000031 ], [ -87.94093789599998, 42.204359888000056 ], [ -87.94010286699995, 42.204381910000052 ], [ -87.939521896999963, 42.204714885000044 ], [ -87.941003857999988, 42.205401873000028 ], [ -87.955123896999964, 42.21203188800007 ], [ -87.955180895999945, 42.209703913000055 ], [ -87.955179858999941, 42.209501879000072 ], [ -87.955170894999981, 42.20735288000003 ], [ -87.957068893999974, 42.207033895000052 ], [ -87.957461871999953, 42.204456888000038 ], [ -87.958919893999962, 42.20447787300003 ], [ -87.959039901999972, 42.204472899000052 ], [ -87.965507886999944, 42.20449486900003 ], [ -87.97480989099995, 42.204431911000029 ], [ -87.974491891999946, 42.205327876000069 ], [ -87.97768287699995, 42.205358914000044 ], [ -87.980346883999971, 42.204566893000049 ], [ -87.980236876999982, 42.204048881000062 ], [ -87.98467991199999, 42.203884880000032 ], [ -87.986696882999979, 42.206376907000049 ], [ -87.989902894999943, 42.206232908000061 ], [ -87.99018586599999, 42.205636911000056 ], [ -87.992743907999966, 42.204450876000067 ], [ -87.997319905999973, 42.207044878000033 ], [ -87.996717897999986, 42.209744898000054 ], [ -87.989283890999957, 42.208694882000032 ], [ -87.987547870999947, 42.21054489800008 ], [ -87.98812490399996, 42.210834865000038 ], [ -87.98946690799994, 42.21160191000007 ], [ -87.989678890999983, 42.212206871000035 ], [ -87.990531899999951, 42.212404915000036 ], [ -87.991551914999945, 42.213297874000034 ], [ -87.992105887999969, 42.21458490100008 ], [ -87.993057866999948, 42.215084882000042 ], [ -87.993397889999983, 42.216025875000071 ], [ -87.994037879999951, 42.216494870000076 ], [ -87.994243902999983, 42.21893487300008 ], [ -87.99423587199999, 42.219519885000068 ], [ -87.994114879999984, 42.223974889000033 ], [ -87.994098869999959, 42.231865868000057 ], [ -87.993607904999976, 42.231713889000048 ], [ -87.993158911999956, 42.233530898000026 ], [ -87.988984909999942, 42.233718890000034 ], [ -87.993085901999962, 42.235854883000059 ], [ -87.99285987799999, 42.237406901000043 ], [ -87.992104906999941, 42.237061904000029 ], [ -87.988013914999954, 42.237385916000051 ], [ -87.984338908999973, 42.237385916000051 ], [ -87.984266882999975, 42.234203896000054 ], [ -87.984280873999978, 42.233791900000028 ], [ -87.980505912999945, 42.233456904000036 ], [ -87.979359879999947, 42.228948891000073 ], [ -87.977223884999944, 42.227834882000025 ], [ -87.977115898999955, 42.227901881000037 ], [ -87.976896869999962, 42.23342591800008 ], [ -87.977082891999942, 42.233427887000062 ], [ -87.977111909999962, 42.233507892000034 ], [ -87.974193896999964, 42.233666919000029 ], [ -87.976826865999953, 42.238701909000042 ], [ -87.976885884999945, 42.238816890000066 ], [ -87.978056893999963, 42.240600892000032 ], [ -87.977046880999978, 42.240590891000068 ], [ -87.979412889999935, 42.246480911000049 ], [ -87.980676909999943, 42.249256894000041 ], [ -87.978833888999986, 42.256943922000062 ], [ -87.977797915999986, 42.259197903000029 ], [ -87.975162873999977, 42.26448891900003 ], [ -87.97456288699999, 42.265713922000032 ], [ -87.975369882999985, 42.265864916000055 ], [ -87.98170791199999, 42.265884917000051 ], [ -87.982211881999945, 42.265901912000061 ], [ -87.983901888999981, 42.265554896000026 ], [ -87.983923910999977, 42.266014925000036 ], [ -87.984095891999971, 42.270719894000081 ], [ -87.976198900999975, 42.270860888000072 ], [ -87.975724879999973, 42.270197892000056 ], [ -87.974019899999973, 42.270121876000076 ], [ -87.974015908999945, 42.26965692400006 ], [ -87.973300887999983, 42.269083881000029 ], [ -87.971200907999958, 42.269029888000034 ], [ -87.971647878999988, 42.267923909000046 ], [ -87.971828875999961, 42.265815897000039 ], [ -87.969812888999968, 42.265385921000075 ], [ -87.966919902999962, 42.26387888000005 ], [ -87.966604907999965, 42.263076911000041 ], [ -87.965332907999937, 42.262637919000042 ], [ -87.964944903999935, 42.26307888000008 ], [ -87.963296868999976, 42.263038878000032 ], [ -87.963363868999977, 42.263334907000058 ], [ -87.963884886999949, 42.263636896000037 ], [ -87.9612899, 42.263631922000059 ], [ -87.955131881999989, 42.263016909000044 ], [ -87.94893386199999, 42.262535893000063 ], [ -87.948113859999978, 42.25883192100008 ], [ -87.947381894999978, 42.255468906000033 ], [ -87.947047882999982, 42.254025910000053 ], [ -87.94529289799999, 42.245379909000064 ], [ -87.945221856999979, 42.244874902000049 ], [ -87.944581866999954, 42.240427877000059 ], [ -87.942820870999981, 42.232199882000032 ], [ -87.942381878999981, 42.231527921000065 ], [ -87.941024897999966, 42.226872904000061 ], [ -87.940779855999949, 42.226359918000071 ], [ -87.936737882999978, 42.217989893000038 ], [ -87.936298890999979, 42.217129888000045 ], [ -87.93538085099999, 42.215424907000056 ], [ -87.933266878999973, 42.208084897000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 17, "ZIP": "60064", "LBW": 0.080330389, "Preterm": 0.085871161, "TeenBirth": 48.3, "Birth_Rate": 15.4579192351, "F1stTriCare": 59.121392114000002, "SHAPE_Length": 0.28787977186912445, "SHAPE_Area": 0.0014195129323088245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.826876861999949, 42.341130899000063 ], [ -87.826830685999937, 42.339198853000028 ], [ -87.826831323999954, 42.339189212000065 ], [ -87.826870652999958, 42.338914320000072 ], [ -87.826873250999938, 42.338589755000044 ], [ -87.826809726999954, 42.338321888000053 ], [ -87.826808622999977, 42.338275704000068 ], [ -87.826981874999944, 42.338007097000059 ], [ -87.826991631999988, 42.337715572000036 ], [ -87.827201738999975, 42.337441437000052 ], [ -87.827367334999963, 42.337161600000059 ], [ -87.827364130999968, 42.336992992000035 ], [ -87.83110884599995, 42.331195902000047 ], [ -87.831196677999969, 42.330657552000048 ], [ -87.831429601999957, 42.330533889000037 ], [ -87.831476373999976, 42.330253528000071 ], [ -87.831411826999954, 42.32996717900005 ], [ -87.831518120999988, 42.329670572000055 ], [ -87.831557509999982, 42.329384678000054 ], [ -87.831547155999942, 42.328817998000034 ], [ -87.831638468999984, 42.328537832000052 ], [ -87.83156668099997, 42.328389549000065 ], [ -87.831674715999952, 42.327727302000028 ], [ -87.831712086999971, 42.327679950000061 ], [ -87.831744183999945, 42.327377517000059 ], [ -87.831738084999984, 42.327338845000043 ], [ -87.831771842999956, 42.32713190700008 ], [ -87.83552586899998, 42.32737290700004 ], [ -87.836552877999964, 42.325622897000073 ], [ -87.836875852999981, 42.323844906000033 ], [ -87.838163863999966, 42.32318289400007 ], [ -87.838189875999944, 42.322477926000033 ], [ -87.840163838999956, 42.322377919000076 ], [ -87.843929833999937, 42.316033932000039 ], [ -87.845950845999937, 42.310904894000032 ], [ -87.846115881999935, 42.307675928000037 ], [ -87.847290880999935, 42.307779924000045 ], [ -87.847091852999938, 42.312020926000059 ], [ -87.848293848999958, 42.311935894000044 ], [ -87.848318875999951, 42.315431924000052 ], [ -87.851231862999953, 42.315622920000067 ], [ -87.85130186799995, 42.315627895000034 ], [ -87.851231863999942, 42.316287937000027 ], [ -87.851473848999944, 42.31602289500006 ], [ -87.851481879999938, 42.317166907000058 ], [ -87.85232887799998, 42.31698689500007 ], [ -87.852416862999974, 42.315816923000057 ], [ -87.856159852999951, 42.315759924000076 ], [ -87.858587886999942, 42.315768940000055 ], [ -87.861003846999949, 42.315783915000054 ], [ -87.861023847999945, 42.312298922000025 ], [ -87.863478877999967, 42.312328923000052 ], [ -87.86329886599998, 42.311772929000028 ], [ -87.863227876999986, 42.311772929000028 ], [ -87.862503838999942, 42.308673920000047 ], [ -87.862626851999948, 42.308674903000053 ], [ -87.862525860999938, 42.308496913000056 ], [ -87.865881882999986, 42.308514893000051 ], [ -87.875506861999952, 42.308580907000078 ], [ -87.874427878999938, 42.304274928000041 ], [ -87.873029859999974, 42.300910927000075 ], [ -87.872697869999968, 42.300702935000061 ], [ -87.869929864999961, 42.288967924000076 ], [ -87.87030486399999, 42.288860923000072 ], [ -87.873505848999969, 42.287963921000028 ], [ -87.875175853999963, 42.289684914000077 ], [ -87.875779884999986, 42.304684903000066 ], [ -87.880615845999955, 42.30505990100005 ], [ -87.880521851999958, 42.308601893000059 ], [ -87.892276864999985, 42.309322923000025 ], [ -87.892447859999947, 42.309458891000077 ], [ -87.895218869999951, 42.319921902000033 ], [ -87.880507861999945, 42.319810911000047 ], [ -87.884899858999972, 42.334266927000044 ], [ -87.884306866999964, 42.334260916000062 ], [ -87.871647856999971, 42.334228894000034 ], [ -87.872735854999974, 42.337859907000052 ], [ -87.878693859999942, 42.337916906000032 ], [ -87.879211873999964, 42.341117942000039 ], [ -87.868019849999939, 42.341421901000047 ], [ -87.86557684099995, 42.341411899000036 ], [ -87.86517588199996, 42.336379915000066 ], [ -87.865349882999965, 42.334166922000065 ], [ -87.855870870999979, 42.334139926000034 ], [ -87.854687841999976, 42.334121894000077 ], [ -87.849781874999962, 42.334093912000071 ], [ -87.847333839999976, 42.334098939000057 ], [ -87.846138839999981, 42.334100908000039 ], [ -87.84611386399996, 42.335816927000053 ], [ -87.846103863999986, 42.341334901000039 ], [ -87.840690868999957, 42.34131992600004 ], [ -87.833486876999984, 42.341258938000067 ], [ -87.830240862999972, 42.341214946000036 ], [ -87.826876861999949, 42.341130899000063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 18, "ZIP": "60069", "LBW": 0.057700705, "Preterm": 0.08199738, "TeenBirth": 4.3, "Birth_Rate": 5.3005661968400002, "F1stTriCare": 82.899793581799997, "SHAPE_Length": 0.47318871394547085, "SHAPE_Area": 0.0017220767842684721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.886930857999971, 42.200254910000069 ], [ -87.886933863999957, 42.198760875000062 ], [ -87.88544387, 42.195794879000061 ], [ -87.88665286, 42.196333877000029 ], [ -87.887404877999984, 42.195241890000034 ], [ -87.887310882999941, 42.194026888000053 ], [ -87.884442871999966, 42.193297878000067 ], [ -87.884743875999959, 42.192874897000081 ], [ -87.887072834999969, 42.191964890000065 ], [ -87.887045837999949, 42.191150899000036 ], [ -87.894175835999988, 42.191304898000055 ], [ -87.894138838999936, 42.191966910000076 ], [ -87.896938865999971, 42.191966910000076 ], [ -87.896946845999935, 42.191096905000052 ], [ -87.897270855999977, 42.191096905000052 ], [ -87.897587871999974, 42.189281917000073 ], [ -87.898566846999984, 42.189284870000051 ], [ -87.898576847999948, 42.191049906000046 ], [ -87.906331860999956, 42.191121880000026 ], [ -87.906399843999964, 42.186887875000025 ], [ -87.90211588599999, 42.186912903000064 ], [ -87.902123865999954, 42.18571391200004 ], [ -87.899431877999973, 42.185713913000029 ], [ -87.899458872999958, 42.182041913000035 ], [ -87.903586862999987, 42.182036887000038 ], [ -87.903881855999941, 42.179277898000066 ], [ -87.906520886999942, 42.181883870000036 ], [ -87.918613849999986, 42.183184887000039 ], [ -87.918742874999964, 42.183428893000041 ], [ -87.920619886999987, 42.181947864000051 ], [ -87.925743846999978, 42.180772865000051 ], [ -87.925378849999959, 42.179335880000053 ], [ -87.923050872999966, 42.171838865000041 ], [ -87.926594885999975, 42.171812905000024 ], [ -87.929283869999949, 42.171468892000064 ], [ -87.932077884999956, 42.171428890000072 ], [ -87.93197487399999, 42.175485889000072 ], [ -87.935541893999982, 42.178390896000053 ], [ -87.935112849999939, 42.181765882000036 ], [ -87.93823585199999, 42.182179899000062 ], [ -87.938273884999944, 42.18194387300008 ], [ -87.940379877999987, 42.182151865000037 ], [ -87.94063087699999, 42.177699866000069 ], [ -87.941983866999976, 42.175767876000066 ], [ -87.944161883999982, 42.175730878000024 ], [ -87.944114885999966, 42.174761904000036 ], [ -87.945087851999972, 42.174002891000043 ], [ -87.945747894999954, 42.17395889800008 ], [ -87.946040866999965, 42.173544881000055 ], [ -87.945755873999985, 42.171313908000059 ], [ -87.942488873999935, 42.171248877000039 ], [ -87.942362854999942, 42.171266910000043 ], [ -87.94068585499997, 42.167327898000053 ], [ -87.940305881999961, 42.166563910000036 ], [ -87.941043856999954, 42.166589871000042 ], [ -87.941026859999965, 42.160740890000056 ], [ -87.94815986399999, 42.160839860000067 ], [ -87.952267850999988, 42.160822863000078 ], [ -87.95150386399996, 42.162641893000057 ], [ -87.950925898999969, 42.164484862000052 ], [ -87.945783854999945, 42.164448902000061 ], [ -87.945965887999989, 42.168022865000069 ], [ -87.948190850999936, 42.167874876000042 ], [ -87.948304847999964, 42.165854900000056 ], [ -87.949323876999983, 42.165795880000076 ], [ -87.949557881999965, 42.165027904000056 ], [ -87.950184866999962, 42.165183872000057 ], [ -87.949859870999944, 42.166041907000078 ], [ -87.948793894999937, 42.166348870000036 ], [ -87.948650879999946, 42.16813686100005 ], [ -87.949259884999947, 42.168740890000038 ], [ -87.94778486499996, 42.168890900000065 ], [ -87.947677864999946, 42.168800895000061 ], [ -87.947614853999937, 42.168803900000057 ], [ -87.947569877999968, 42.168838876000052 ], [ -87.947539875999951, 42.168913907000046 ], [ -87.947597858999984, 42.168962874000044 ], [ -87.947180888999981, 42.171293906000074 ], [ -87.94953985099994, 42.171430910000026 ], [ -87.949534875999973, 42.171493867000038 ], [ -87.94938388199995, 42.174141863000045 ], [ -87.948879860999966, 42.176480875000038 ], [ -87.946526856999981, 42.176597877000063 ], [ -87.946566859999962, 42.178647907000027 ], [ -87.948221889999957, 42.178781905000051 ], [ -87.948388896999973, 42.181236884000043 ], [ -87.948449884999945, 42.181485863000034 ], [ -87.94850185599995, 42.18164691000004 ], [ -87.948887892999949, 42.182630912000036 ], [ -87.95540790199999, 42.182615885000075 ], [ -87.963671858999987, 42.182665887000041 ], [ -87.964227853999944, 42.182673867000062 ], [ -87.965457882999942, 42.182695889000058 ], [ -87.96536886199999, 42.187625898000078 ], [ -87.966475875999947, 42.189581880000048 ], [ -87.96537989899997, 42.190048905000026 ], [ -87.962985856999978, 42.190016883000055 ], [ -87.962354883999978, 42.190040874000033 ], [ -87.960107896999943, 42.190019888000052 ], [ -87.960106859999939, 42.186330892000058 ], [ -87.955721859999983, 42.186326902000076 ], [ -87.956595855999979, 42.183985870000072 ], [ -87.954526859999987, 42.183684866000078 ], [ -87.954440895999937, 42.184816908000073 ], [ -87.950603858999955, 42.185439902000041 ], [ -87.950455870999974, 42.188029863000054 ], [ -87.951524851999977, 42.190468881000072 ], [ -87.94764086899994, 42.190073882000036 ], [ -87.943403857999954, 42.191049904000067 ], [ -87.94319586499995, 42.196701878000056 ], [ -87.954307883999945, 42.195565896000062 ], [ -87.952739853999958, 42.191922914000031 ], [ -87.955309865999936, 42.191744871000026 ], [ -87.955288878999966, 42.193836872000077 ], [ -87.955239861999985, 42.195746893000035 ], [ -87.960150853999949, 42.195898871000054 ], [ -87.959938871999952, 42.197935894000068 ], [ -87.958770868999977, 42.198202907000052 ], [ -87.958436856999981, 42.200182880000057 ], [ -87.956849861999956, 42.199893897000038 ], [ -87.956079863999946, 42.199099908000051 ], [ -87.955199858999947, 42.199506877000033 ], [ -87.955170894999981, 42.20735288000003 ], [ -87.955179858999941, 42.209501879000072 ], [ -87.955180895999945, 42.209703913000055 ], [ -87.955123896999964, 42.21203188800007 ], [ -87.941003857999988, 42.205401873000028 ], [ -87.939521896999963, 42.204714885000044 ], [ -87.94010286699995, 42.204381910000052 ], [ -87.94093789599998, 42.204359888000056 ], [ -87.940578856999934, 42.204158890000031 ], [ -87.939607860999956, 42.204077900000073 ], [ -87.938696867999965, 42.201477888000056 ], [ -87.93464888599999, 42.201394877000041 ], [ -87.933158891999938, 42.200887901000044 ], [ -87.933262887999945, 42.202382869000076 ], [ -87.932769850999989, 42.204301905000079 ], [ -87.933266878999973, 42.208084897000049 ], [ -87.925768877999985, 42.208350873000029 ], [ -87.920294894999984, 42.20824490800004 ], [ -87.915759884999943, 42.208129875000054 ], [ -87.915710865999984, 42.207631915000036 ], [ -87.915889892999985, 42.20051290400005 ], [ -87.906095886999935, 42.200407872000028 ], [ -87.905460871999935, 42.200399892000064 ], [ -87.902019870999936, 42.200371911000047 ], [ -87.901206864999949, 42.201242900000068 ], [ -87.901207849999935, 42.202298875000054 ], [ -87.90031887899994, 42.202298876000043 ], [ -87.900304836999965, 42.204079872000079 ], [ -87.901630881999949, 42.204080909000027 ], [ -87.9012888399999, 42.210966899000027 ], [ -87.902742871999976, 42.210919901000068 ], [ -87.905946863999986, 42.210706882000068 ], [ -87.905910850999987, 42.212987911000027 ], [ -87.906864850999966, 42.213898903000029 ], [ -87.909902871999975, 42.213675883000064 ], [ -87.91057488499996, 42.214542883000036 ], [ -87.908052855999983, 42.216439897000043 ], [ -87.905891885999949, 42.216451919000065 ], [ -87.905899864999981, 42.214869898000074 ], [ -87.901240857999937, 42.21487088400005 ], [ -87.89648687, 42.214778909000074 ], [ -87.894437876999973, 42.210990891000051 ], [ -87.893802860999983, 42.210986901000069 ], [ -87.891524835999974, 42.205848899000046 ], [ -87.891497839999943, 42.204260868000063 ], [ -87.897338840999964, 42.204227913000068 ], [ -87.897334851999972, 42.200343879000059 ], [ -87.890685868999981, 42.200296881000043 ], [ -87.886930857999971, 42.200254910000069 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 19, "ZIP": "60073", "LBW": 0.064898476, "Preterm": 0.092917361, "TeenBirth": 42.9, "Birth_Rate": 17.0247662785, "F1stTriCare": 74.793288565300003, "SHAPE_Length": 0.65925812389778493, "SHAPE_Area": 0.0052751029413468991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.050561937999987, 42.392526918000044 ], [ -88.050563906999969, 42.391699921000054 ], [ -88.04929791699999, 42.391827909000028 ], [ -88.049792923999973, 42.389702901000078 ], [ -88.049511920999976, 42.387070916000027 ], [ -88.050586912999961, 42.387057910000067 ], [ -88.052177949999987, 42.38814590800007 ], [ -88.052216914999974, 42.385905918000049 ], [ -88.055102905999945, 42.386646898000038 ], [ -88.055678901999954, 42.386417920000042 ], [ -88.055833938999967, 42.388850928000068 ], [ -88.058388923999985, 42.388895905000027 ], [ -88.058973934999983, 42.388127927000028 ], [ -88.060603937999986, 42.387551931000075 ], [ -88.061135940999975, 42.388803929000062 ], [ -88.059571953999978, 42.390306929000076 ], [ -88.060639950999985, 42.390604927000027 ], [ -88.059642942999972, 42.391333939000049 ], [ -88.060082919999957, 42.391660903000059 ], [ -88.058901910999964, 42.391889933000073 ], [ -88.059620920999976, 42.392180936000045 ], [ -88.057663953999963, 42.39254691900004 ], [ -88.057620945999986, 42.393326918000071 ], [ -88.05021994699996, 42.393262925000045 ], [ -88.050561937999987, 42.392526918000044 ] ] ], [ [ [ -88.064114943999982, 42.391381921000061 ], [ -88.06309192399999, 42.386998890000029 ], [ -88.062941912999975, 42.383594939000034 ], [ -88.056812912999987, 42.382885929000054 ], [ -88.055578946999958, 42.381972917000041 ], [ -88.055397950999975, 42.378950907000046 ], [ -88.057707944999947, 42.378744935000043 ], [ -88.05853794799998, 42.37643089900007 ], [ -88.058142947999954, 42.375597891000041 ], [ -88.060330912999973, 42.375265901000034 ], [ -88.061127908999936, 42.375277922000066 ], [ -88.062004907999949, 42.37519289100004 ], [ -88.062130926999941, 42.368118908000042 ], [ -88.061592911999981, 42.364388925000071 ], [ -88.058150925999939, 42.36444193400007 ], [ -88.058103928999969, 42.362765918000036 ], [ -88.05667393799996, 42.362735916000076 ], [ -88.056698913999981, 42.362526887000058 ], [ -88.056710935999945, 42.362598913000056 ], [ -88.05827891399997, 42.362656896000033 ], [ -88.058325911999987, 42.36292489200008 ], [ -88.059825905999958, 42.363245898000059 ], [ -88.061438911999971, 42.363926926000033 ], [ -88.061575915999981, 42.364237931000048 ], [ -88.062265908999962, 42.364369908000072 ], [ -88.065036917999976, 42.364308920000042 ], [ -88.06715793699999, 42.362787888000071 ], [ -88.067542935999938, 42.361389921000068 ], [ -88.06797695399996, 42.361430909000035 ], [ -88.06797695299997, 42.35836190100008 ], [ -88.067959904999952, 42.357023886000036 ], [ -88.06686294299999, 42.353710926000076 ], [ -88.067135912999959, 42.350353919000042 ], [ -88.067549929999984, 42.34588793000006 ], [ -88.068571912999971, 42.346025919000056 ], [ -88.068495949999942, 42.345111921000068 ], [ -88.08755195599997, 42.34099989200007 ], [ -88.087585947999969, 42.339189930000032 ], [ -88.084867946999964, 42.339789917000076 ], [ -88.084619950999979, 42.339663898000026 ], [ -88.084675913999945, 42.339063911000039 ], [ -88.087528947999942, 42.338404904000072 ], [ -88.087103946999946, 42.337794917000053 ], [ -88.086830923999969, 42.337275919000035 ], [ -88.08552094199996, 42.337125910000054 ], [ -88.084629950999954, 42.335919925000042 ], [ -88.085767952999959, 42.335741882000036 ], [ -88.085825935999935, 42.334905921000029 ], [ -88.084099916999946, 42.334864882000034 ], [ -88.084099916999946, 42.335300921000055 ], [ -88.082855949999953, 42.335300921000055 ], [ -88.082873928999959, 42.327951895000069 ], [ -88.083815907999963, 42.327942878000044 ], [ -88.083520913999962, 42.320657897000046 ], [ -88.087303905999988, 42.320642922000047 ], [ -88.087051919999965, 42.31374988400006 ], [ -88.087037928999962, 42.31334488400006 ], [ -88.089181954999958, 42.313343899000074 ], [ -88.090455922999979, 42.311402892000046 ], [ -88.083390904999987, 42.308062882000058 ], [ -88.082297930999971, 42.307429888000058 ], [ -88.08230694699995, 42.305438879000064 ], [ -88.089501922999943, 42.303314906000026 ], [ -88.091667918999974, 42.303545905000078 ], [ -88.091688905999945, 42.309760920000031 ], [ -88.101419952999947, 42.309622880000063 ], [ -88.101437932999943, 42.313917926000045 ], [ -88.098687910999956, 42.313531890000036 ], [ -88.099167941999951, 42.32102191000007 ], [ -88.101280929999973, 42.324143926000033 ], [ -88.097330930999988, 42.324244917000044 ], [ -88.097504932999982, 42.328138900000056 ], [ -88.102399914999978, 42.328182892000029 ], [ -88.102248921999944, 42.337633921000076 ], [ -88.107391950999954, 42.336342904000048 ], [ -88.107391949999965, 42.337038908000068 ], [ -88.108302941999966, 42.336965898000074 ], [ -88.108310921999987, 42.33868388500008 ], [ -88.111998933999985, 42.338716892000036 ], [ -88.112719911999989, 42.328315906000057 ], [ -88.116766963999964, 42.327865876000033 ], [ -88.121311922999951, 42.330492886000059 ], [ -88.144993929999941, 42.325917925000056 ], [ -88.143408952999948, 42.305771901000071 ], [ -88.144938949999982, 42.303526885000053 ], [ -88.144828939999968, 42.289461878000054 ], [ -88.149198965999972, 42.287760887000047 ], [ -88.148986931999957, 42.288633897000068 ], [ -88.156643957999961, 42.288530885000057 ], [ -88.162211936999938, 42.295057889000077 ], [ -88.164722930999972, 42.303923905000033 ], [ -88.169649934999939, 42.304861893000066 ], [ -88.16949495199998, 42.310984881000024 ], [ -88.164953930999957, 42.310512882000069 ], [ -88.164955950999968, 42.311412888000064 ], [ -88.164953930999957, 42.31193888100006 ], [ -88.164728942999943, 42.322902909000049 ], [ -88.166945977999944, 42.322875912000029 ], [ -88.165997937999975, 42.32413490600004 ], [ -88.168223937999983, 42.326013888000034 ], [ -88.166551962999961, 42.326697922000051 ], [ -88.169527959999982, 42.327317910000033 ], [ -88.169375929999944, 42.328931901000033 ], [ -88.165672943999937, 42.329058905000068 ], [ -88.169118970999989, 42.335797891000027 ], [ -88.165235972999938, 42.335931889000051 ], [ -88.163806966999971, 42.332216882000068 ], [ -88.158126959999947, 42.334385883000039 ], [ -88.156125949999989, 42.334862908000048 ], [ -88.155937958999971, 42.331385896000029 ], [ -88.155827950999935, 42.328509906000079 ], [ -88.144979938999938, 42.329160881000064 ], [ -88.144776974999957, 42.350423920000026 ], [ -88.139916968999955, 42.350449881000031 ], [ -88.139973968999982, 42.357726881000076 ], [ -88.147074948999943, 42.357740924000041 ], [ -88.14698696399995, 42.361115909000034 ], [ -88.148036927999954, 42.36114389100004 ], [ -88.148065945999974, 42.362756897000054 ], [ -88.147237964999988, 42.36237391800006 ], [ -88.14660896, 42.361779890000037 ], [ -88.144310935999954, 42.362942919000034 ], [ -88.139919924999958, 42.362974891000079 ], [ -88.139937956999972, 42.364998908000075 ], [ -88.130383966999943, 42.364796926000054 ], [ -88.130028969999955, 42.364442914000051 ], [ -88.125266949999968, 42.365384893000055 ], [ -88.120227968999984, 42.365747921000036 ], [ -88.120785933999969, 42.368628885000078 ], [ -88.120457932999955, 42.370284900000058 ], [ -88.120375960999979, 42.379298905000041 ], [ -88.120346942999959, 42.383010908000074 ], [ -88.120398966999971, 42.385776891000035 ], [ -88.116298959999938, 42.386474915000065 ], [ -88.113112949999959, 42.386442892000048 ], [ -88.101821955999981, 42.386438904000045 ], [ -88.101803923999967, 42.38776292700004 ], [ -88.100486946999979, 42.389356917000043 ], [ -88.101142947999961, 42.389585895000039 ], [ -88.10139793899998, 42.392706927000063 ], [ -88.100381966999976, 42.392950933000066 ], [ -88.100383935999957, 42.393596933000026 ], [ -88.097141962999956, 42.39354490900007 ], [ -88.097000916999946, 42.393549935000067 ], [ -88.097071957999958, 42.389351891000047 ], [ -88.097150925999983, 42.386627931000078 ], [ -88.095176963999961, 42.386319932000049 ], [ -88.092121946999953, 42.386300916000039 ], [ -88.092136921999952, 42.388876937000077 ], [ -88.092126920999988, 42.389907937000032 ], [ -88.087311945999943, 42.389887936000036 ], [ -88.087125922999974, 42.397467911000035 ], [ -88.084877952999989, 42.397836898000037 ], [ -88.084887953999953, 42.398041937000073 ], [ -88.084552957999961, 42.39804489100004 ], [ -88.082908912999983, 42.398052922000034 ], [ -88.077520946999982, 42.398006910000049 ], [ -88.07317594899996, 42.39660593800005 ], [ -88.072454916999959, 42.396339911000041 ], [ -88.071590922999974, 42.396138913000073 ], [ -88.070020924999938, 42.396085904000074 ], [ -88.069900915999938, 42.396084920000078 ], [ -88.065188952999961, 42.396050928000079 ], [ -88.064114943999982, 42.391381921000061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 20, "ZIP": "60083", "LBW": 0.08544719, "Preterm": 0.1151015, "TeenBirth": 14.7, "Birth_Rate": 9.4394143710300007, "F1stTriCare": 80.726607490800006, "SHAPE_Length": 0.53143185176654373, "SHAPE_Area": 0.0074022807679842012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.884230861999981, 42.428489936000062 ], [ -87.884901889999981, 42.428495947000044 ], [ -87.884303870999986, 42.421241952000059 ], [ -87.898592882999935, 42.421679908000044 ], [ -87.898834868999984, 42.424980951000066 ], [ -87.903964891999976, 42.425029918000064 ], [ -87.904003907999936, 42.41412392400008 ], [ -87.904106866999939, 42.408036949000063 ], [ -87.907974890999981, 42.408084932000065 ], [ -87.908473886999957, 42.407228917000054 ], [ -87.909480894999945, 42.407000923000055 ], [ -87.911063899999988, 42.405738924000048 ], [ -87.911401900999977, 42.403587903000073 ], [ -87.91349188099997, 42.401246922000041 ], [ -87.915924888999939, 42.400824926000041 ], [ -87.914652888999967, 42.399192903000028 ], [ -87.914391887999955, 42.398740904000078 ], [ -87.914876892999985, 42.398142939000024 ], [ -87.914469871999984, 42.397688919000075 ], [ -87.915103902999988, 42.397222930000055 ], [ -87.916937907999966, 42.396926901000029 ], [ -87.919194893999986, 42.39655293800007 ], [ -87.91919188899999, 42.396067932000051 ], [ -87.924304865999943, 42.405011933000026 ], [ -87.923518906999959, 42.408217944000057 ], [ -87.923110901999962, 42.408211933000075 ], [ -87.924032878999981, 42.410170921000031 ], [ -87.922502882999936, 42.410605923000048 ], [ -87.918558895999979, 42.409705917000053 ], [ -87.918082906999985, 42.414266939000072 ], [ -87.923589896999943, 42.414293935000046 ], [ -87.928652868999961, 42.414199939000071 ], [ -87.93286791, 42.414271912000061 ], [ -87.933121915999948, 42.414294918000053 ], [ -87.937854917999971, 42.414649915000041 ], [ -87.945066890999954, 42.414464929000076 ], [ -87.944977920999975, 42.410820910000041 ], [ -87.939389887999937, 42.409946915000035 ], [ -87.940645875999962, 42.404806944000029 ], [ -87.948377881999988, 42.402905940000039 ], [ -87.948870917999955, 42.393465897000056 ], [ -87.949138914999935, 42.393488904000037 ], [ -87.963174905999949, 42.394233925000037 ], [ -87.982780895999952, 42.399085897000077 ], [ -87.988150883999936, 42.398966925000025 ], [ -87.991416898999944, 42.403744904000064 ], [ -87.998604932999967, 42.407434936000072 ], [ -88.003948905999948, 42.407930926000063 ], [ -88.003941911999959, 42.409374906000039 ], [ -88.00390589899996, 42.410468915000081 ], [ -88.00377889799995, 42.424252919000025 ], [ -88.004023941999947, 42.444287950000046 ], [ -88.003384937999954, 42.46610693100007 ], [ -87.972188918999962, 42.465684937000049 ], [ -87.971963931999937, 42.480212927000025 ], [ -87.952384885999948, 42.479982913000072 ], [ -87.951760907999983, 42.479986955000072 ], [ -87.949946903999944, 42.477568923000035 ], [ -87.946777889999964, 42.480576942000027 ], [ -87.946457919999943, 42.481823914000074 ], [ -87.946352886999989, 42.481806918000075 ], [ -87.946313920999955, 42.480787940000027 ], [ -87.946143910999979, 42.479883943000061 ], [ -87.945064928999955, 42.479877933000068 ], [ -87.94495191599998, 42.481625922000035 ], [ -87.942539893999935, 42.481580944000029 ], [ -87.94238889899998, 42.484464914000057 ], [ -87.943311912999945, 42.484468956000057 ], [ -87.943285900999967, 42.485667946000035 ], [ -87.943281910999985, 42.485715928000047 ], [ -87.943203927999946, 42.487139958000057 ], [ -87.938344905999941, 42.487077934000069 ], [ -87.937631906999968, 42.486664954000048 ], [ -87.937891923999985, 42.485251961000074 ], [ -87.940427890999956, 42.484472946000039 ], [ -87.940398924999954, 42.478505927000072 ], [ -87.944088904999944, 42.475779946000046 ], [ -87.946929918999956, 42.472189920000062 ], [ -87.946426880999979, 42.465418911000029 ], [ -87.943156926999961, 42.46535693800007 ], [ -87.942990905999977, 42.465353933000074 ], [ -87.942674925999938, 42.465350927000031 ], [ -87.931368905999989, 42.465240921000031 ], [ -87.884841888999972, 42.464762913000072 ], [ -87.883569888999943, 42.458328920000042 ], [ -87.888640891999955, 42.454582925000068 ], [ -87.884853909999947, 42.454468929000029 ], [ -87.884089869999968, 42.446606916000064 ], [ -87.886431886999958, 42.444780942000079 ], [ -87.886489870999981, 42.446653913000034 ], [ -87.898479872999985, 42.446618937000039 ], [ -87.898512879999942, 42.439498940000078 ], [ -87.89340389399996, 42.439425930000027 ], [ -87.883512887999984, 42.439227939000034 ], [ -87.883944884999948, 42.432769955000026 ], [ -87.884230861999981, 42.428489936000062 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 21, "ZIP": "60084", "LBW": 0.064687978, "Preterm": 0.101781864, "TeenBirth": 24.3, "Birth_Rate": 13.9125228462, "F1stTriCare": 79.698111834299993, "SHAPE_Length": 0.5189090772549283, "SHAPE_Area": 0.0051213998342259908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.164955950999968, 42.311412888000064 ], [ -88.164953930999957, 42.310512882000069 ], [ -88.16949495199998, 42.310984881000024 ], [ -88.169649934999939, 42.304861893000066 ], [ -88.164722930999972, 42.303923905000033 ], [ -88.162211936999938, 42.295057889000077 ], [ -88.156643957999961, 42.288530885000057 ], [ -88.148986931999957, 42.288633897000068 ], [ -88.149198965999972, 42.287760887000047 ], [ -88.144828939999968, 42.289461878000054 ], [ -88.144938949999982, 42.303526885000053 ], [ -88.142262919999951, 42.30268387700005 ], [ -88.127430918999949, 42.303047892000052 ], [ -88.124839920999989, 42.302106897000044 ], [ -88.124057953999966, 42.303523881000046 ], [ -88.124736961999986, 42.303904890000069 ], [ -88.12555893199999, 42.303141887000038 ], [ -88.130444949999969, 42.304847905000031 ], [ -88.130459924999968, 42.305968910000047 ], [ -88.125578933999975, 42.305968911000036 ], [ -88.122760926999945, 42.306580919000055 ], [ -88.120741934999955, 42.306520915000078 ], [ -88.120428960999959, 42.305941914000073 ], [ -88.120711932999939, 42.305101911000065 ], [ -88.116172932999973, 42.30349590000003 ], [ -88.116261953999981, 42.302775905000033 ], [ -88.113631938999958, 42.302684915000043 ], [ -88.113709922999988, 42.301135903000045 ], [ -88.114680918999966, 42.301214923000032 ], [ -88.115393917999938, 42.30041989800003 ], [ -88.118108912999958, 42.301921912000068 ], [ -88.120651927999972, 42.302406917000042 ], [ -88.120632911999962, 42.301595880000036 ], [ -88.118790925999974, 42.300424872000065 ], [ -88.120616952999967, 42.298651906000032 ], [ -88.11577891799999, 42.298845910000068 ], [ -88.116146919999949, 42.289352910000048 ], [ -88.118050928999935, 42.287755914000059 ], [ -88.120764939999958, 42.289150875000075 ], [ -88.118914922999977, 42.286985916000049 ], [ -88.118367944999989, 42.287699901000053 ], [ -88.11175891299996, 42.283151885000052 ], [ -88.110203939999963, 42.277226889000076 ], [ -88.102443951999987, 42.263346870000078 ], [ -88.091455931999974, 42.26250888800007 ], [ -88.086727903999986, 42.265444882000054 ], [ -88.069260912999937, 42.266319914000064 ], [ -88.067469914999947, 42.258703876000027 ], [ -88.081015925999964, 42.255513875000076 ], [ -88.082248905999961, 42.251774875000081 ], [ -88.079741903999945, 42.25001590200003 ], [ -88.08414094599999, 42.246723874000054 ], [ -88.079704905999961, 42.240400873000056 ], [ -88.082348911999986, 42.240530881000041 ], [ -88.09185191399996, 42.240998891000061 ], [ -88.096420915999943, 42.241055888000062 ], [ -88.096968930999935, 42.244710893000047 ], [ -88.107345927999972, 42.242291875000035 ], [ -88.107435933999966, 42.241131903000053 ], [ -88.111100937999936, 42.240199874000041 ], [ -88.111389920999954, 42.237414874000081 ], [ -88.115912908999974, 42.240747889000033 ], [ -88.117174907999981, 42.241563900000074 ], [ -88.12130994499995, 42.241524881000032 ], [ -88.124118935999945, 42.24060088300007 ], [ -88.121696911999948, 42.237846871000045 ], [ -88.123834926999962, 42.236542900000074 ], [ -88.128753951999954, 42.239093894000064 ], [ -88.128793954999935, 42.241214913000078 ], [ -88.130531942999937, 42.241349895000042 ], [ -88.136537929999974, 42.241197864000071 ], [ -88.149817964999954, 42.241705876000026 ], [ -88.157846932999973, 42.24135486800003 ], [ -88.160281961999942, 42.242419860000041 ], [ -88.164894955999955, 42.240804884000056 ], [ -88.178402932999973, 42.241752873000053 ], [ -88.182439931999966, 42.241542858000059 ], [ -88.182501956999943, 42.242419858000062 ], [ -88.184390939999957, 42.242378871000028 ], [ -88.184813972999962, 42.244918881000046 ], [ -88.188167972999963, 42.245089876000065 ], [ -88.188449960999947, 42.248106860000064 ], [ -88.195573946999957, 42.248760891000074 ], [ -88.197940941999946, 42.252510875000041 ], [ -88.198528958999987, 42.253748883000071 ], [ -88.198299979999945, 42.254998861000047 ], [ -88.198575956999946, 42.255487908000077 ], [ -88.19822697099994, 42.255583873000035 ], [ -88.198052969999935, 42.256286872000032 ], [ -88.192949942999974, 42.25593488100003 ], [ -88.192504940999981, 42.256406880000043 ], [ -88.186400968999976, 42.255932911000059 ], [ -88.184353943999952, 42.25804387800008 ], [ -88.183842926999944, 42.257940866000069 ], [ -88.183780952999939, 42.256209873000046 ], [ -88.182869961999984, 42.254065899000068 ], [ -88.181678950999981, 42.254054862000032 ], [ -88.17905292599994, 42.260526889000062 ], [ -88.178987947999985, 42.262334882000061 ], [ -88.179432950999967, 42.264375896000047 ], [ -88.183307970999977, 42.266493908000029 ], [ -88.181394943999976, 42.267687872000067 ], [ -88.179087953999954, 42.267040887000064 ], [ -88.179702971999973, 42.299922919000039 ], [ -88.190219977999959, 42.308594880000044 ], [ -88.189935969999965, 42.309379905000071 ], [ -88.18822798399998, 42.309601889000078 ], [ -88.183668982999961, 42.310195917000044 ], [ -88.18069096499994, 42.313162897000041 ], [ -88.164955950999968, 42.311412888000064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 22, "ZIP": "60085", "LBW": 0.081798519, "Preterm": 0.085460101, "TeenBirth": 52.5, "Birth_Rate": 18.080633367099999, "F1stTriCare": 64.381569878799993, "SHAPE_Length": 0.44495640312522211, "SHAPE_Area": 0.00397857217160218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.805499244999965, 42.384238718000063 ], [ -87.805590690999963, 42.384147399000028 ], [ -87.805860276999965, 42.383873675000075 ], [ -87.806196953999972, 42.383567261000053 ], [ -87.80625953599997, 42.383526916000051 ], [ -87.807253727999978, 42.38341013400003 ], [ -87.807392948999961, 42.383495760000073 ], [ -87.80776257499997, 42.383689932000038 ], [ -87.808147965999979, 42.383774188000075 ], [ -87.80853633299995, 42.383500999000034 ], [ -87.808916446999945, 42.383326760000045 ], [ -87.809295279999958, 42.383306493000077 ], [ -87.810074490999966, 42.383354046000079 ], [ -87.810499510999989, 42.383136013000069 ], [ -87.810886131999951, 42.38307178000008 ], [ -87.811264690999963, 42.383084505000056 ], [ -87.811695583999949, 42.38305346900006 ], [ -87.812096461999943, 42.383060791000048 ], [ -87.812482082999963, 42.383117535000054 ], [ -87.81285987199999, 42.383223738000027 ], [ -87.813136847999942, 42.382950029000028 ], [ -87.813090010999986, 42.382724400000029 ], [ -87.813476875999982, 42.382678934000069 ], [ -87.814060850999965, 42.381592905000048 ], [ -87.812251366999988, 42.381432373000052 ], [ -87.812154760999988, 42.381394760000035 ], [ -87.81167331499995, 42.381255087000056 ], [ -87.811280281999984, 42.381198305000055 ], [ -87.81090168899999, 42.381191083000033 ], [ -87.810845249999943, 42.381307606000064 ], [ -87.810814836999953, 42.381304907000072 ], [ -87.809628413999974, 42.382779322000033 ], [ -87.809451390999982, 42.382874647000051 ], [ -87.807540122999967, 42.382924883000044 ], [ -87.808826745999966, 42.379823275000035 ], [ -87.808836635999967, 42.379526356000042 ], [ -87.808935431999942, 42.379251843000077 ], [ -87.809205388999942, 42.378928615000063 ], [ -87.809628475999943, 42.378045158000077 ], [ -87.809823913999935, 42.377754584000058 ], [ -87.810041619999936, 42.37746411300003 ], [ -87.810274174999961, 42.377173709000033 ], [ -87.810462134999966, 42.376888600000029 ], [ -87.810679838999988, 42.376598127000079 ], [ -87.810845830999938, 42.376415240000028 ], [ -87.811669505999987, 42.375104633000035 ], [ -87.812405287999979, 42.373678305000055 ], [ -87.812508980999951, 42.373250332000055 ], [ -87.812563523999984, 42.372943183000075 ], [ -87.812640119999969, 42.37266358200003 ], [ -87.812971938999965, 42.372066763000078 ], [ -87.813212066999938, 42.371776925000063 ], [ -87.813825902999952, 42.371214317000067 ], [ -87.814081468999973, 42.370853188000069 ], [ -87.814321722999978, 42.370546879000074 ], [ -87.814645857999949, 42.369977469000048 ], [ -87.814848691999941, 42.369703925000067 ], [ -87.81500712899998, 42.36940822300005 ], [ -87.81512851399998, 42.369101374000024 ], [ -87.81525714299994, 42.368816518000074 ], [ -87.815424400999973, 42.368350690000057 ], [ -87.815563561999966, 42.367687123000053 ], [ -87.815595658999939, 42.367396340000028 ], [ -87.815605561999973, 42.36709447800007 ], [ -87.815570802999957, 42.366803393000055 ], [ -87.815580747999945, 42.366496041000062 ], [ -87.815554227999939, 42.366106186000025 ], [ -87.815529328999958, 42.365518727000051 ], [ -87.815601533999939, 42.364865836000035 ], [ -87.815707957999962, 42.364569901000038 ], [ -87.815844230999971, 42.364257630000054 ], [ -87.816408576999947, 42.363376410000058 ], [ -87.816574419999938, 42.363080738000065 ], [ -87.816673723999941, 42.362746345000062 ], [ -87.816802467999935, 42.362445019000063 ], [ -87.816879125999947, 42.362154436000026 ], [ -87.816873987999941, 42.36187446100007 ], [ -87.816809420999959, 42.361594220000029 ], [ -87.816525104999982, 42.36157135600007 ], [ -87.81657686799997, 42.361471910000034 ], [ -87.81540352899998, 42.361432647000072 ], [ -87.819896932999939, 42.361395110000046 ], [ -87.819987865999963, 42.361395789000028 ], [ -87.820261626999979, 42.361472857000081 ], [ -87.821797802999981, 42.362438393000048 ], [ -87.821956604999968, 42.362583393000079 ], [ -87.82193932399997, 42.362831594000056 ], [ -87.821462255999961, 42.364533529000028 ], [ -87.821360052999978, 42.364699570000028 ], [ -87.821199340999954, 42.365280708000057 ], [ -87.821152281999957, 42.365587895000033 ], [ -87.821016120999957, 42.365889193000044 ], [ -87.820961807999936, 42.366174391000072 ], [ -87.820885297999951, 42.366448510000055 ], [ -87.82083098399994, 42.366733703000079 ], [ -87.820826843999953, 42.36680020600005 ], [ -87.820777866999947, 42.366974910000067 ], [ -87.819176830999936, 42.367142951000062 ], [ -87.82069123399998, 42.367503591000059 ], [ -87.820668123999951, 42.367578316000049 ], [ -87.82059904099998, 42.367852468000081 ], [ -87.820978391999972, 42.367793781000046 ], [ -87.821014109999965, 42.367580478000036 ], [ -87.821621034999964, 42.367725002000043 ], [ -87.821788074999972, 42.367802887000039 ], [ -87.822157778999951, 42.36801861400005 ], [ -87.82254941399998, 42.368278353000051 ], [ -87.822750088999953, 42.368322935000037 ], [ -87.822939872999939, 42.368426921000037 ], [ -87.823190873999977, 42.368211933000055 ], [ -87.822372840999947, 42.367674903000079 ], [ -87.822236491999945, 42.366000224000061 ], [ -87.822621066999943, 42.365846949000058 ], [ -87.822459948999949, 42.365560792000053 ], [ -87.822358170999962, 42.365285877000076 ], [ -87.822206878999964, 42.364703348000035 ], [ -87.822476628999937, 42.364496794000047 ], [ -87.824337563999961, 42.36500303300005 ], [ -87.825224293999952, 42.36545231100007 ], [ -87.825330497999971, 42.36517832100003 ], [ -87.824740503999976, 42.364818213000035 ], [ -87.82362686, 42.363883931000032 ], [ -87.824578838999969, 42.360401943000056 ], [ -87.824615260999963, 42.35959755500005 ], [ -87.824655010999948, 42.359576323000056 ], [ -87.82464616599998, 42.358915009000043 ], [ -87.824722919999942, 42.357219779000047 ], [ -87.824726038999984, 42.357210783000028 ], [ -87.82472336, 42.357210062000036 ], [ -87.824739129999955, 42.356861740000056 ], [ -87.824959025999988, 42.356871484000067 ], [ -87.825347014999977, 42.356653634000054 ], [ -87.825602278999952, 42.35631443300008 ], [ -87.825738616999956, 42.355985683000029 ], [ -87.825792854999975, 42.355705972000067 ], [ -87.825824853999961, 42.355420673000026 ], [ -87.825827145999938, 42.355135245000042 ], [ -87.825876732999973, 42.354509693000068 ], [ -87.825856961999989, 42.354196719000072 ], [ -87.825854672999981, 42.35417602800004 ], [ -87.826963228999944, 42.346615215000043 ], [ -87.826980308999964, 42.346550596000043 ], [ -87.827009210999961, 42.346301561000075 ], [ -87.827102835999938, 42.345662904000051 ], [ -87.826876861999949, 42.341130899000063 ], [ -87.830240862999972, 42.341214946000036 ], [ -87.833486876999984, 42.341258938000067 ], [ -87.840690868999957, 42.34131992600004 ], [ -87.846103863999986, 42.341334901000039 ], [ -87.84611386399996, 42.335816927000053 ], [ -87.846138839999981, 42.334100908000039 ], [ -87.847333839999976, 42.334098939000057 ], [ -87.849781874999962, 42.334093912000071 ], [ -87.854687841999976, 42.334121894000077 ], [ -87.855870870999979, 42.334139926000034 ], [ -87.865349882999965, 42.334166922000065 ], [ -87.86517588199996, 42.336379915000066 ], [ -87.86557684099995, 42.341411899000036 ], [ -87.868019849999939, 42.341421901000047 ], [ -87.879211873999964, 42.341117942000039 ], [ -87.878693859999942, 42.337916906000032 ], [ -87.872735854999974, 42.337859907000052 ], [ -87.871647856999971, 42.334228894000034 ], [ -87.884306866999964, 42.334260916000062 ], [ -87.884899858999972, 42.334266927000044 ], [ -87.880507861999945, 42.319810911000047 ], [ -87.895218869999951, 42.319921902000033 ], [ -87.895253898999954, 42.320167928000046 ], [ -87.903047877999938, 42.320051910000075 ], [ -87.90383787799999, 42.326718923000044 ], [ -87.907563871999969, 42.327194912000039 ], [ -87.907925863999935, 42.328429914000026 ], [ -87.91455489699996, 42.336058907000051 ], [ -87.91455386199999, 42.340374938000025 ], [ -87.916185883999958, 42.340126891000068 ], [ -87.916194900999983, 42.339713911000047 ], [ -87.918236898999965, 42.340020925000033 ], [ -87.91955190699997, 42.341580923000038 ], [ -87.914524895999989, 42.341899908000073 ], [ -87.914542876999974, 42.345493924000039 ], [ -87.90998087, 42.346139924000056 ], [ -87.90960789199994, 42.345243908000043 ], [ -87.909666858999969, 42.342004941000027 ], [ -87.906833877999986, 42.342696903000046 ], [ -87.906824860999961, 42.342478910000068 ], [ -87.905820858999959, 42.343408919000069 ], [ -87.906275862999962, 42.347278910000057 ], [ -87.907293856999956, 42.355643910000026 ], [ -87.90462886499995, 42.355755938000073 ], [ -87.902186892999964, 42.356157933000077 ], [ -87.900078878999977, 42.35641494500004 ], [ -87.898816880999959, 42.355965900000058 ], [ -87.895293852999941, 42.35597393200004 ], [ -87.895163896999975, 42.356760926000049 ], [ -87.89733989399997, 42.357917944000064 ], [ -87.897578872999986, 42.359616914000071 ], [ -87.894922896999958, 42.359672929000055 ], [ -87.894672880999963, 42.359667902000069 ], [ -87.885263874999964, 42.359585929000048 ], [ -87.884866853999938, 42.363180929000066 ], [ -87.88430085899995, 42.363201914000058 ], [ -87.883912854999949, 42.366798936000066 ], [ -87.885013859999958, 42.367139943000041 ], [ -87.884821878999958, 42.376746939000043 ], [ -87.88485488699996, 42.382006918000059 ], [ -87.88396887, 42.382014949000052 ], [ -87.884031879999952, 42.382880912000076 ], [ -87.884841880999943, 42.38289293400004 ], [ -87.884849860999964, 42.383770919000028 ], [ -87.88491587499999, 42.38514194000004 ], [ -87.877796862999958, 42.385244901000078 ], [ -87.877376887999958, 42.385329932000047 ], [ -87.877397873999939, 42.385125929000026 ], [ -87.87661689, 42.385275939000053 ], [ -87.874603857999944, 42.385606945000063 ], [ -87.872683888999973, 42.385777941000072 ], [ -87.870046876999936, 42.385709905000056 ], [ -87.865166870999985, 42.385796906000053 ], [ -87.865235889999951, 42.382427931000052 ], [ -87.862739872999953, 42.382510941000078 ], [ -87.862768890999973, 42.384743936000064 ], [ -87.860546880999948, 42.38473590500007 ], [ -87.860651861999941, 42.385606946000053 ], [ -87.858639865999976, 42.385498908000045 ], [ -87.855355869999983, 42.385483933000046 ], [ -87.855410847999963, 42.382753911000066 ], [ -87.855412867999974, 42.381979923000074 ], [ -87.855418878999956, 42.381001932000061 ], [ -87.845986865999976, 42.380804925000064 ], [ -87.845984844999975, 42.380971931000033 ], [ -87.845497869999974, 42.381135931000074 ], [ -87.845439887999987, 42.38471295100004 ], [ -87.841663838999978, 42.384720931000061 ], [ -87.838017849999972, 42.384733937000078 ], [ -87.837875872999973, 42.384907938000026 ], [ -87.837652852999952, 42.384764923000034 ], [ -87.835692879999954, 42.384707925000043 ], [ -87.806405845999961, 42.384862911000027 ], [ -87.805499244999965, 42.384238718000063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 23, "ZIP": "60087", "LBW": 0.077744483, "Preterm": 0.089881576, "TeenBirth": 52.7, "Birth_Rate": 14.863122772400001, "F1stTriCare": 67.712426847800003, "SHAPE_Length": 0.53061995079970725, "SHAPE_Area": 0.0039609794599638213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.803358297999978, 42.413854683000068 ], [ -87.803315985999973, 42.413651726000069 ], [ -87.803292915999975, 42.41346171400005 ], [ -87.803137641999967, 42.41171513300003 ], [ -87.803162516999976, 42.411583281000048 ], [ -87.803160080999987, 42.410989345000075 ], [ -87.803103384999986, 42.410664625000038 ], [ -87.803031417999989, 42.410389327000075 ], [ -87.803003787999955, 42.410209402000078 ], [ -87.802940201999945, 42.409494106000068 ], [ -87.80291531599994, 42.409178944000075 ], [ -87.80290563899996, 42.408562975000052 ], [ -87.802878378999935, 42.40827138800006 ], [ -87.802905746999954, 42.407666588000041 ], [ -87.802937952999969, 42.407369775000063 ], [ -87.802936348999935, 42.406676857000036 ], [ -87.802961312999969, 42.406358011000066 ], [ -87.803041500999939, 42.405654471000048 ], [ -87.803044088999968, 42.405346523000048 ], [ -87.803031544999953, 42.405071498000041 ], [ -87.803041606999955, 42.404758085000026 ], [ -87.803009322999969, 42.404180506000046 ], [ -87.803014176999966, 42.403603104000069 ], [ -87.803061556999978, 42.403267863000053 ], [ -87.803086563999955, 42.402943522000044 ], [ -87.803133804999959, 42.402624778000074 ], [ -87.803136160999941, 42.402344326000048 ], [ -87.803086528999984, 42.402063631000033 ], [ -87.803074494999976, 42.401728117000062 ], [ -87.803126447999944, 42.400848468000049 ], [ -87.803128848999961, 42.400562515000047 ], [ -87.80304476699996, 42.399962701000049 ], [ -87.803062436999937, 42.399627324000051 ], [ -87.803176606999955, 42.399297894000028 ], [ -87.803305485999942, 42.398985028000027 ], [ -87.803389669999945, 42.39868845400008 ], [ -87.80344396299995, 42.39841374000008 ], [ -87.803461724999977, 42.398067365000031 ], [ -87.803503794999983, 42.397479132000058 ], [ -87.803660118999971, 42.396550469000033 ], [ -87.803692914999942, 42.396182167000063 ], [ -87.803728294999985, 42.395505913000079 ], [ -87.803852134999943, 42.394907060000037 ], [ -87.803901856999971, 42.394291367000051 ], [ -87.804048480999938, 42.393632126000057 ], [ -87.804095478999955, 42.39334087800006 ], [ -87.804142983999952, 42.392989141000044 ], [ -87.804200445999982, 42.392334988000073 ], [ -87.804182965999985, 42.391762977000042 ], [ -87.804215475999968, 42.391427670000041 ], [ -87.804212888999984, 42.390850228000033 ], [ -87.804233039999986, 42.39021789800006 ], [ -87.804272563999973, 42.389932118000047 ], [ -87.80433463899999, 42.389613442000041 ], [ -87.804426368999941, 42.389300405000029 ], [ -87.804787428999987, 42.388746638000043 ], [ -87.805002790999936, 42.387856739000028 ], [ -87.805034836999937, 42.387576420000073 ], [ -87.805104189999952, 42.387274277000074 ], [ -87.805159522999986, 42.386873081000033 ], [ -87.805226281999978, 42.385993496000026 ], [ -87.805231616999947, 42.385355600000025 ], [ -87.805189551999945, 42.385058443000048 ], [ -87.805058576999954, 42.384738878000064 ], [ -87.805283706999944, 42.384453951000069 ], [ -87.805499244999965, 42.384238718000063 ], [ -87.806405845999961, 42.384862911000027 ], [ -87.835692879999954, 42.384707925000043 ], [ -87.837652852999952, 42.384764923000034 ], [ -87.837875872999973, 42.384907938000026 ], [ -87.838017849999972, 42.384733937000078 ], [ -87.841663838999978, 42.384720931000061 ], [ -87.845439887999987, 42.38471295100004 ], [ -87.845497869999974, 42.381135931000074 ], [ -87.845984844999975, 42.380971931000033 ], [ -87.845986865999976, 42.380804925000064 ], [ -87.855418878999956, 42.381001932000061 ], [ -87.855412867999974, 42.381979923000074 ], [ -87.855410847999963, 42.382753911000066 ], [ -87.855355869999983, 42.385483933000046 ], [ -87.858639865999976, 42.385498908000045 ], [ -87.860651861999941, 42.385606946000053 ], [ -87.860546880999948, 42.38473590500007 ], [ -87.862768890999973, 42.384743936000064 ], [ -87.862739872999953, 42.382510941000078 ], [ -87.865235889999951, 42.382427931000052 ], [ -87.865166870999985, 42.385796906000053 ], [ -87.870046876999936, 42.385709905000056 ], [ -87.872683888999973, 42.385777941000072 ], [ -87.874603857999944, 42.385606945000063 ], [ -87.87661689, 42.385275939000053 ], [ -87.877397873999939, 42.385125929000026 ], [ -87.877376887999958, 42.385329932000047 ], [ -87.877796862999958, 42.385244901000078 ], [ -87.88491587499999, 42.38514194000004 ], [ -87.884866856999963, 42.385974948000069 ], [ -87.884177899999941, 42.385960906000037 ], [ -87.884134892999953, 42.38949393300004 ], [ -87.894582877999937, 42.389719905000049 ], [ -87.894526864999989, 42.392465938000043 ], [ -87.898787866999953, 42.392563924000058 ], [ -87.898752891999948, 42.39637992300004 ], [ -87.892023903999984, 42.396073945000069 ], [ -87.892000897999935, 42.39876593300005 ], [ -87.890100877999942, 42.398709920000044 ], [ -87.889574883999956, 42.397781932000044 ], [ -87.887137885999948, 42.397715917000028 ], [ -87.887105864999967, 42.399505930000032 ], [ -87.88955690399996, 42.399601946000075 ], [ -87.889549857999953, 42.400483921000045 ], [ -87.889516901999968, 42.40236694500004 ], [ -87.890282858999967, 42.40248291000006 ], [ -87.893047856999942, 42.402430938000066 ], [ -87.894400898999947, 42.402262948000043 ], [ -87.896738874999983, 42.402262948000043 ], [ -87.897339897999984, 42.401416934000054 ], [ -87.898739885999987, 42.402266937000036 ], [ -87.898749885999962, 42.399830924000071 ], [ -87.902378877999979, 42.399958912000045 ], [ -87.902088859999935, 42.400607918000048 ], [ -87.904231900999946, 42.400715904000037 ], [ -87.904123863999985, 42.407005949000052 ], [ -87.906179903999941, 42.40656892700008 ], [ -87.90733189599996, 42.406875941000067 ], [ -87.908142880999947, 42.405127952000043 ], [ -87.907530871999938, 42.405139922000046 ], [ -87.907844881999949, 42.400005909000072 ], [ -87.904242885999963, 42.399975907000055 ], [ -87.904309884999975, 42.396689943000069 ], [ -87.904611872999965, 42.392006944000059 ], [ -87.912190862999978, 42.39223690700004 ], [ -87.909862887999964, 42.390902935000042 ], [ -87.909652874999949, 42.38904291700004 ], [ -87.909224865999988, 42.388681910000059 ], [ -87.909707903999958, 42.387499916000081 ], [ -87.910232858999962, 42.38717994700005 ], [ -87.914247887999977, 42.387058902000035 ], [ -87.91333186899999, 42.38401093300007 ], [ -87.913976885999944, 42.383566914000028 ], [ -87.914182909999965, 42.383410945000037 ], [ -87.914219905999971, 42.383757911000032 ], [ -87.915195875999984, 42.385122921000061 ], [ -87.915850893999959, 42.385558908000064 ], [ -87.915772909999987, 42.385841932000062 ], [ -87.915455892999944, 42.386109929000042 ], [ -87.915160900999979, 42.386675924000031 ], [ -87.915287902999978, 42.386878943000056 ], [ -87.916359889999967, 42.386787900000058 ], [ -87.916536895999968, 42.386768936000067 ], [ -87.916615865999972, 42.386768936000067 ], [ -87.916790902999935, 42.386794947000055 ], [ -87.916884898999967, 42.386872931000028 ], [ -87.916986873999974, 42.387007914000037 ], [ -87.916868886999964, 42.387455922000072 ], [ -87.917254870999955, 42.388359920000028 ], [ -87.917120872999988, 42.388957937000043 ], [ -87.917213883999977, 42.389280912000061 ], [ -87.917791900999987, 42.389681923000069 ], [ -87.918803883999942, 42.389734931000078 ], [ -87.919310911999958, 42.389914942000075 ], [ -87.921182898999973, 42.39103392700008 ], [ -87.920491868999989, 42.392461948000062 ], [ -87.923805866999942, 42.394012929000041 ], [ -87.925428874999966, 42.394963923000034 ], [ -87.925358870999958, 42.395384934000049 ], [ -87.92489386599999, 42.395654900000068 ], [ -87.923922870999945, 42.395893931000046 ], [ -87.923635907999937, 42.396306912000057 ], [ -87.923859912999944, 42.396773937000034 ], [ -87.924963870999989, 42.397754933000044 ], [ -87.925250884999969, 42.398475913000027 ], [ -87.925510900999939, 42.398585919000027 ], [ -87.92642189299994, 42.398678931000063 ], [ -87.92709888, 42.399065951000068 ], [ -87.927965879999988, 42.400221932000079 ], [ -87.92842088399999, 42.40099794200006 ], [ -87.928772875999982, 42.401080901000057 ], [ -87.929185907999965, 42.400979909000057 ], [ -87.929581891999987, 42.400745904000075 ], [ -87.930155866999939, 42.40071092800008 ], [ -87.930592890999947, 42.401152925000076 ], [ -87.9304149, 42.401271949000034 ], [ -87.929787915999952, 42.40171990500005 ], [ -87.931431907999979, 42.40253591700008 ], [ -87.931657881999968, 42.40287790800005 ], [ -87.931056910999985, 42.403171917000066 ], [ -87.931796906999978, 42.404275926000025 ], [ -87.930558898999948, 42.404832905000035 ], [ -87.930183900999964, 42.405321900000047 ], [ -87.931438903999947, 42.407389911000053 ], [ -87.928020910999976, 42.407472922000068 ], [ -87.92799888799999, 42.40817291500008 ], [ -87.926108868999961, 42.408180947000062 ], [ -87.927132872999948, 42.409859916000073 ], [ -87.928652868999961, 42.414199939000071 ], [ -87.923589896999943, 42.414293935000046 ], [ -87.918082906999985, 42.414266939000072 ], [ -87.918558895999979, 42.409705917000053 ], [ -87.922502882999936, 42.410605923000048 ], [ -87.924032878999981, 42.410170921000031 ], [ -87.923110901999962, 42.408211933000075 ], [ -87.923518906999959, 42.408217944000057 ], [ -87.924304865999943, 42.405011933000026 ], [ -87.91919188899999, 42.396067932000051 ], [ -87.919194893999986, 42.39655293800007 ], [ -87.916937907999966, 42.396926901000029 ], [ -87.915103902999988, 42.397222930000055 ], [ -87.914469871999984, 42.397688919000075 ], [ -87.914876892999985, 42.398142939000024 ], [ -87.914391887999955, 42.398740904000078 ], [ -87.914652888999967, 42.399192903000028 ], [ -87.915924888999939, 42.400824926000041 ], [ -87.91349188099997, 42.401246922000041 ], [ -87.911401900999977, 42.403587903000073 ], [ -87.911063899999988, 42.405738924000048 ], [ -87.909480894999945, 42.407000923000055 ], [ -87.908473886999957, 42.407228917000054 ], [ -87.907974890999981, 42.408084932000065 ], [ -87.904106866999939, 42.408036949000063 ], [ -87.904003907999936, 42.41412392400008 ], [ -87.903964891999976, 42.425029918000064 ], [ -87.898834868999984, 42.424980951000066 ], [ -87.898592882999935, 42.421679908000044 ], [ -87.884303870999986, 42.421241952000059 ], [ -87.884901889999981, 42.428495947000044 ], [ -87.884230861999981, 42.428489936000062 ], [ -87.876563885999985, 42.428445944000032 ], [ -87.876071885999977, 42.435630919000062 ], [ -87.871891872999981, 42.435599933000049 ], [ -87.864652852999939, 42.435530912000047 ], [ -87.864763895999943, 42.428573933000052 ], [ -87.863493864999953, 42.428682955000056 ], [ -87.863502880999988, 42.428328942000064 ], [ -87.858601887999953, 42.428278939000052 ], [ -87.857357868999941, 42.428281945000037 ], [ -87.854935846999979, 42.428429934000064 ], [ -87.854970873999946, 42.424126909000051 ], [ -87.85662087899999, 42.424150951000058 ], [ -87.857183867999936, 42.422913928000071 ], [ -87.858930872999963, 42.422897916000068 ], [ -87.858930872999963, 42.421054948000062 ], [ -87.859923890999937, 42.421057953000059 ], [ -87.859932854999954, 42.419275919000029 ], [ -87.858090868999966, 42.419232912000041 ], [ -87.857570887999941, 42.419081918000074 ], [ -87.857473886999969, 42.421063912000079 ], [ -87.855007870999941, 42.421017950000078 ], [ -87.853904846999967, 42.421045931000037 ], [ -87.84798684399999, 42.42100292300006 ], [ -87.842844851999985, 42.42098592800005 ], [ -87.840947889999939, 42.420964942000069 ], [ -87.835482870999954, 42.42093893100008 ], [ -87.825684874999979, 42.420935926000027 ], [ -87.825642851999987, 42.419092957000032 ], [ -87.825563882999973, 42.418671944000039 ], [ -87.820012848999966, 42.418852941000068 ], [ -87.819790864999959, 42.413709913000048 ], [ -87.803358297999978, 42.413854683000068 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 24, "ZIP": "60089", "LBW": 0.076835914, "Preterm": 0.099674315, "TeenBirth": 0.8, "Birth_Rate": 5.1642458637899997, "F1stTriCare": 84.390634280300006, "SHAPE_Length": 0.54401476645729319, "SHAPE_Area": 0.0023057424001477929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.923050872999966, 42.171838865000041 ], [ -87.921897843999943, 42.167561904000081 ], [ -87.92771387099998, 42.167334894000078 ], [ -87.927722886999959, 42.167039900000077 ], [ -87.939708847999952, 42.167071870000029 ], [ -87.938848895999968, 42.165357873000062 ], [ -87.937322887999983, 42.160582901000055 ], [ -87.933189874999982, 42.160641868000027 ], [ -87.922899877999953, 42.160769908000077 ], [ -87.921999870999969, 42.160738870000046 ], [ -87.922031842999957, 42.160172874000068 ], [ -87.919978858999968, 42.159910889000059 ], [ -87.919370839999942, 42.159777875000032 ], [ -87.918436840999959, 42.159805908000067 ], [ -87.918886869999938, 42.160679903000073 ], [ -87.917847839999979, 42.160939868000071 ], [ -87.914301857999988, 42.160917898000037 ], [ -87.914028886999972, 42.160915877000036 ], [ -87.911631839999984, 42.159838864000051 ], [ -87.910382845999948, 42.158379909000075 ], [ -87.913387858999954, 42.156106860000079 ], [ -87.91188185499999, 42.154937872000062 ], [ -87.91124886099999, 42.155806892000044 ], [ -87.910013856999967, 42.155582888000026 ], [ -87.910002872999939, 42.153112883000063 ], [ -87.910489846999951, 42.153121899000041 ], [ -87.91285682299997, 42.15310461100006 ], [ -87.926489497999967, 42.153219224000054 ], [ -87.946192762999942, 42.153386448000049 ], [ -87.951305090999938, 42.153413698000065 ], [ -87.951454894999983, 42.153433886000073 ], [ -87.955305070999941, 42.153434860000061 ], [ -87.965653061999944, 42.153488958000025 ], [ -87.984955414999945, 42.153603883000073 ], [ -87.9849549, 42.153614880000077 ], [ -87.990579387999958, 42.153622168000027 ], [ -87.997668412999985, 42.153644445000054 ], [ -87.999558905999947, 42.153651877000073 ], [ -87.999492891999978, 42.160913903000051 ], [ -87.984936866999988, 42.160640881000063 ], [ -87.984897901999943, 42.167995867000059 ], [ -87.98904786099996, 42.167810880000047 ], [ -87.993676866999976, 42.16799990800007 ], [ -87.993938903999947, 42.168115873000033 ], [ -87.99393387799995, 42.168574867000075 ], [ -87.994233898999937, 42.17195586400004 ], [ -87.993472863999955, 42.171945863000076 ], [ -87.993433897999978, 42.172705861000054 ], [ -87.992643898999972, 42.173322895000069 ], [ -87.992474872999935, 42.174373896000077 ], [ -87.994239908999987, 42.174825895000026 ], [ -87.994157882999957, 42.175473864000026 ], [ -87.988963866999939, 42.175371889000075 ], [ -87.989909885999964, 42.177818887000058 ], [ -87.989607898999964, 42.182663865000052 ], [ -87.989490896999939, 42.18269189800003 ], [ -87.975293858999976, 42.182709879000072 ], [ -87.974934871999949, 42.183377902000075 ], [ -87.977285905999963, 42.185866872000076 ], [ -87.977310881999983, 42.187713883000072 ], [ -87.977972893999947, 42.187713883000072 ], [ -87.977972893999947, 42.190145905000065 ], [ -87.974186895999935, 42.190251871000044 ], [ -87.973103872999957, 42.197202893000053 ], [ -87.980026862999978, 42.197220873000049 ], [ -87.98604487099999, 42.197225899000046 ], [ -87.989449910999951, 42.197211908000043 ], [ -87.989438873999973, 42.204404914000065 ], [ -87.989902894999943, 42.206232908000061 ], [ -87.986696882999979, 42.206376907000049 ], [ -87.98467991199999, 42.203884880000032 ], [ -87.980236876999982, 42.204048881000062 ], [ -87.980346883999971, 42.204566893000049 ], [ -87.97768287699995, 42.205358914000044 ], [ -87.974491891999946, 42.205327876000069 ], [ -87.97480989099995, 42.204431911000029 ], [ -87.965507886999944, 42.20449486900003 ], [ -87.959039901999972, 42.204472899000052 ], [ -87.958919893999962, 42.20447787300003 ], [ -87.957461871999953, 42.204456888000038 ], [ -87.957068893999974, 42.207033895000052 ], [ -87.955170894999981, 42.20735288000003 ], [ -87.955199858999947, 42.199506877000033 ], [ -87.956079863999946, 42.199099908000051 ], [ -87.956849861999956, 42.199893897000038 ], [ -87.958436856999981, 42.200182880000057 ], [ -87.958770868999977, 42.198202907000052 ], [ -87.959938871999952, 42.197935894000068 ], [ -87.960150853999949, 42.195898871000054 ], [ -87.955239861999985, 42.195746893000035 ], [ -87.955288878999966, 42.193836872000077 ], [ -87.955309865999936, 42.191744871000026 ], [ -87.952739853999958, 42.191922914000031 ], [ -87.954307883999945, 42.195565896000062 ], [ -87.94319586499995, 42.196701878000056 ], [ -87.943403857999954, 42.191049904000067 ], [ -87.94764086899994, 42.190073882000036 ], [ -87.951524851999977, 42.190468881000072 ], [ -87.950455870999974, 42.188029863000054 ], [ -87.950603858999955, 42.185439902000041 ], [ -87.954440895999937, 42.184816908000073 ], [ -87.954526859999987, 42.183684866000078 ], [ -87.956595855999979, 42.183985870000072 ], [ -87.955721859999983, 42.186326902000076 ], [ -87.960106859999939, 42.186330892000058 ], [ -87.960107896999943, 42.190019888000052 ], [ -87.962354883999978, 42.190040874000033 ], [ -87.962985856999978, 42.190016883000055 ], [ -87.96537989899997, 42.190048905000026 ], [ -87.966475875999947, 42.189581880000048 ], [ -87.96536886199999, 42.187625898000078 ], [ -87.965457882999942, 42.182695889000058 ], [ -87.964227853999944, 42.182673867000062 ], [ -87.963671858999987, 42.182665887000041 ], [ -87.95540790199999, 42.182615885000075 ], [ -87.948887892999949, 42.182630912000036 ], [ -87.94850185599995, 42.18164691000004 ], [ -87.948449884999945, 42.181485863000034 ], [ -87.948388896999973, 42.181236884000043 ], [ -87.948221889999957, 42.178781905000051 ], [ -87.946566859999962, 42.178647907000027 ], [ -87.946526856999981, 42.176597877000063 ], [ -87.948879860999966, 42.176480875000038 ], [ -87.94938388199995, 42.174141863000045 ], [ -87.949534875999973, 42.171493867000038 ], [ -87.94953985099994, 42.171430910000026 ], [ -87.947180888999981, 42.171293906000074 ], [ -87.947597858999984, 42.168962874000044 ], [ -87.947539875999951, 42.168913907000046 ], [ -87.947569877999968, 42.168838876000052 ], [ -87.947614853999937, 42.168803900000057 ], [ -87.947677864999946, 42.168800895000061 ], [ -87.94778486499996, 42.168890900000065 ], [ -87.949259884999947, 42.168740890000038 ], [ -87.948650879999946, 42.16813686100005 ], [ -87.948793894999937, 42.166348870000036 ], [ -87.949859870999944, 42.166041907000078 ], [ -87.950184866999962, 42.165183872000057 ], [ -87.949557881999965, 42.165027904000056 ], [ -87.949323876999983, 42.165795880000076 ], [ -87.948304847999964, 42.165854900000056 ], [ -87.948190850999936, 42.167874876000042 ], [ -87.945965887999989, 42.168022865000069 ], [ -87.945783854999945, 42.164448902000061 ], [ -87.950925898999969, 42.164484862000052 ], [ -87.95150386399996, 42.162641893000057 ], [ -87.952267850999988, 42.160822863000078 ], [ -87.94815986399999, 42.160839860000067 ], [ -87.941026859999965, 42.160740890000056 ], [ -87.941043856999954, 42.166589871000042 ], [ -87.940305881999961, 42.166563910000036 ], [ -87.94068585499997, 42.167327898000053 ], [ -87.942362854999942, 42.171266910000043 ], [ -87.942488873999935, 42.171248877000039 ], [ -87.945755873999985, 42.171313908000059 ], [ -87.946040866999965, 42.173544881000055 ], [ -87.945747894999954, 42.17395889800008 ], [ -87.945087851999972, 42.174002891000043 ], [ -87.944114885999966, 42.174761904000036 ], [ -87.944161883999982, 42.175730878000024 ], [ -87.941983866999976, 42.175767876000066 ], [ -87.94063087699999, 42.177699866000069 ], [ -87.940379877999987, 42.182151865000037 ], [ -87.938273884999944, 42.18194387300008 ], [ -87.93823585199999, 42.182179899000062 ], [ -87.935112849999939, 42.181765882000036 ], [ -87.935541893999982, 42.178390896000053 ], [ -87.93197487399999, 42.175485889000072 ], [ -87.932077884999956, 42.171428890000072 ], [ -87.929283869999949, 42.171468892000064 ], [ -87.926594885999975, 42.171812905000024 ], [ -87.923050872999966, 42.171838865000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 25, "ZIP": "60096", "LBW": 0.090144231, "Preterm": 0.063301282, "TeenBirth": 13.6, "Birth_Rate": 7.7424023154799997, "F1stTriCare": 70.191001254200003, "SHAPE_Length": 0.20567645868227749, "SHAPE_Area": 0.0014379816247919982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.79771285399994, 42.471737931000064 ], [ -87.801767884999947, 42.472189929000081 ], [ -87.803107867999984, 42.471347956000045 ], [ -87.814268852999987, 42.471516931000053 ], [ -87.816492882999967, 42.466916943000058 ], [ -87.816747874999976, 42.471533927000053 ], [ -87.816890888999978, 42.467927941000028 ], [ -87.820936851999988, 42.467565948000072 ], [ -87.823435873999983, 42.469075943000064 ], [ -87.824641858999939, 42.466918963000069 ], [ -87.828091875999974, 42.466126943000063 ], [ -87.829226872999982, 42.466674957000066 ], [ -87.83501787099999, 42.466908962000048 ], [ -87.835031861999937, 42.467519934000052 ], [ -87.836244892999957, 42.467539936000037 ], [ -87.836230851999971, 42.468032921000031 ], [ -87.841748878999965, 42.468028931000049 ], [ -87.842343890999985, 42.465700956000035 ], [ -87.841796860999978, 42.46557094700006 ], [ -87.841810851999981, 42.464342940000051 ], [ -87.848732856999959, 42.464398954000046 ], [ -87.849043860999984, 42.465577942000039 ], [ -87.84972385399999, 42.465774950000025 ], [ -87.849744890999943, 42.46704995500005 ], [ -87.851360851999971, 42.466325918000052 ], [ -87.854502868999987, 42.466393953000079 ], [ -87.853923868999971, 42.478903937000041 ], [ -87.860592903999986, 42.478942954000047 ], [ -87.863135867999972, 42.478944924000075 ], [ -87.862712887999976, 42.489693963000036 ], [ -87.861305904999938, 42.489515921000077 ], [ -87.861287872999981, 42.48892096000003 ], [ -87.857863866999935, 42.488936920000071 ], [ -87.857835886999965, 42.489598932000035 ], [ -87.85820186899997, 42.489734951000059 ], [ -87.861293883999963, 42.489754952000055 ], [ -87.861134857999957, 42.491766948000077 ], [ -87.857902884999987, 42.491760937000038 ], [ -87.85789786, 42.491001924000045 ], [ -87.856453879999947, 42.491019957000049 ], [ -87.856443878999983, 42.490675944000031 ], [ -87.852949868999985, 42.490700920000052 ], [ -87.852897924999979, 42.493177206000041 ], [ -87.844425504999947, 42.493056600000045 ], [ -87.825029465999989, 42.492845841000076 ], [ -87.805115402999945, 42.492616824000038 ], [ -87.8032605399999, 42.492595316000063 ], [ -87.803076834999956, 42.491222489000052 ], [ -87.803058014999976, 42.491118639000035 ], [ -87.803008456999976, 42.49082145400007 ], [ -87.802827350999962, 42.490248696000037 ], [ -87.80251242199995, 42.489669820000074 ], [ -87.802321612999947, 42.489366480000058 ], [ -87.802115832999959, 42.489074071000061 ], [ -87.801947107999979, 42.48879832700004 ], [ -87.801520595999989, 42.488224432000038 ], [ -87.801366929999972, 42.487926762000029 ], [ -87.801161350999962, 42.487612350000063 ], [ -87.800806756999975, 42.487330247000045 ], [ -87.800965345999941, 42.487045022000075 ], [ -87.801086940999937, 42.48673763000005 ], [ -87.800965260999988, 42.486176145000059 ], [ -87.800790179999979, 42.485773886000061 ], [ -87.80063652399997, 42.485476216000052 ], [ -87.800150740999982, 42.484880042000043 ], [ -87.799877968999965, 42.484598313000049 ], [ -87.799377092999976, 42.484029564000025 ], [ -87.799253005999958, 42.483754023000074 ], [ -87.799211234999973, 42.483418375000042 ], [ -87.79919883599996, 42.483126860000027 ], [ -87.79903032499999, 42.482829117000051 ], [ -87.798943469999983, 42.482548250000036 ], [ -87.798908669999946, 42.482267626000066 ], [ -87.798856293999961, 42.482117179000056 ], [ -87.799507841999969, 42.479785966000065 ], [ -87.80001787499998, 42.478821966000055 ], [ -87.799399870999935, 42.476922810000076 ], [ -87.799453452999956, 42.476781925000068 ], [ -87.799381475999951, 42.476501130000031 ], [ -87.79926502699999, 42.476203629000054 ], [ -87.799185804999979, 42.475900802000069 ], [ -87.799091617999977, 42.475608904000069 ], [ -87.79885853799999, 42.475035896000065 ], [ -87.798779082999943, 42.474760565000054 ], [ -87.79856317299999, 42.473918175000051 ], [ -87.798461601999975, 42.473620742000037 ], [ -87.798337590999949, 42.473339702000033 ], [ -87.798105039999939, 42.472706206000055 ], [ -87.797765020999975, 42.471898272000033 ], [ -87.79771285399994, 42.471737931000064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 26, "ZIP": "60099", "LBW": 0.091061703, "Preterm": 0.082217341, "TeenBirth": 35.1, "Birth_Rate": 13.486458366200001, "F1stTriCare": 61.0091910764, "SHAPE_Length": 0.61940937155031428, "SHAPE_Area": 0.0063680164679134907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.852897924999979, 42.493177206000041 ], [ -87.852949868999985, 42.490700920000052 ], [ -87.856443878999983, 42.490675944000031 ], [ -87.856453879999947, 42.491019957000049 ], [ -87.85789786, 42.491001924000045 ], [ -87.857902884999987, 42.491760937000038 ], [ -87.861134857999957, 42.491766948000077 ], [ -87.861293883999963, 42.489754952000055 ], [ -87.85820186899997, 42.489734951000059 ], [ -87.857835886999965, 42.489598932000035 ], [ -87.857863866999935, 42.488936920000071 ], [ -87.861287872999981, 42.48892096000003 ], [ -87.861305904999938, 42.489515921000077 ], [ -87.862712887999976, 42.489693963000036 ], [ -87.863135867999972, 42.478944924000075 ], [ -87.860592903999986, 42.478942954000047 ], [ -87.853923868999971, 42.478903937000041 ], [ -87.854502868999987, 42.466393953000079 ], [ -87.851360851999971, 42.466325918000052 ], [ -87.849744890999943, 42.46704995500005 ], [ -87.84972385399999, 42.465774950000025 ], [ -87.849043860999984, 42.465577942000039 ], [ -87.848732856999959, 42.464398954000046 ], [ -87.841810851999981, 42.464342940000051 ], [ -87.841796860999978, 42.46557094700006 ], [ -87.842343890999985, 42.465700956000035 ], [ -87.841748878999965, 42.468028931000049 ], [ -87.836230851999971, 42.468032921000031 ], [ -87.836244892999957, 42.467539936000037 ], [ -87.835031861999937, 42.467519934000052 ], [ -87.83501787099999, 42.466908962000048 ], [ -87.829226872999982, 42.466674957000066 ], [ -87.828091875999974, 42.466126943000063 ], [ -87.824641858999939, 42.466918963000069 ], [ -87.823435873999983, 42.469075943000064 ], [ -87.820936851999988, 42.467565948000072 ], [ -87.816890888999978, 42.467927941000028 ], [ -87.816747874999976, 42.471533927000053 ], [ -87.816492882999967, 42.466916943000058 ], [ -87.814268852999987, 42.471516931000053 ], [ -87.803107867999984, 42.471347956000045 ], [ -87.801767884999947, 42.472189929000081 ], [ -87.79771285399994, 42.471737931000064 ], [ -87.797661890999962, 42.47171383400007 ], [ -87.797418034999964, 42.471306191000053 ], [ -87.797240890999944, 42.471221879000041 ], [ -87.798913864999975, 42.464239931000066 ], [ -87.798875881999948, 42.463948927000047 ], [ -87.798872876999951, 42.463858921000053 ], [ -87.79898288399994, 42.463598957000045 ], [ -87.799018844999978, 42.463391948000037 ], [ -87.799736868999958, 42.449775935000048 ], [ -87.799360834999959, 42.448675915000081 ], [ -87.79993765599994, 42.446786039000074 ], [ -87.800131275999945, 42.446792151000068 ], [ -87.800519040999973, 42.446639970000035 ], [ -87.80089333899997, 42.445442868000043 ], [ -87.801136779999979, 42.444778586000041 ], [ -87.801498331999937, 42.444208341000035 ], [ -87.801701305999984, 42.443934317000071 ], [ -87.801712124999938, 42.443532920000052 ], [ -87.801759636999975, 42.443186686000047 ], [ -87.801844074999963, 42.44286812100006 ], [ -87.80207913299995, 42.442313783000031 ], [ -87.802193294999938, 42.441995352000049 ], [ -87.802277450999952, 42.441709779000064 ], [ -87.802575591999982, 42.440807641000049 ], [ -87.802637562999962, 42.440424618000065 ], [ -87.802791559999946, 42.439787414000079 ], [ -87.802845938999951, 42.439507202000073 ], [ -87.802907794999953, 42.439221524000061 ], [ -87.803140609999957, 42.438931141000069 ], [ -87.803224849999935, 42.438634570000033 ], [ -87.803351469999939, 42.437716775000069 ], [ -87.803405794999946, 42.437442063000049 ], [ -87.80343783, 42.437167246000058 ], [ -87.803474995999977, 42.436282033000055 ], [ -87.80347754, 42.435979584000052 ], [ -87.803521903999979, 42.435121903000038 ], [ -87.803650767999954, 42.434820037000065 ], [ -87.80374990699994, 42.434518035000053 ], [ -87.803814386999989, 42.433918912000081 ], [ -87.803802204999954, 42.433599898000068 ], [ -87.80381951399994, 42.433308516000068 ], [ -87.803814393999971, 42.433033527000077 ], [ -87.803764421999972, 42.432649434000041 ], [ -87.804113834999953, 42.427918919000035 ], [ -87.803627122999956, 42.41921035300004 ], [ -87.803660272999934, 42.418652179000048 ], [ -87.803606431999981, 42.417986514000063 ], [ -87.803548751999983, 42.417807881000044 ], [ -87.803409940999984, 42.41532367800005 ], [ -87.803422039999987, 42.415175523000073 ], [ -87.803432009999938, 42.414873108000052 ], [ -87.803407562999951, 42.414246074000062 ], [ -87.803380251999954, 42.413959986000066 ], [ -87.803358297999978, 42.413854683000068 ], [ -87.819790864999959, 42.413709913000048 ], [ -87.820012848999966, 42.418852941000068 ], [ -87.825563882999973, 42.418671944000039 ], [ -87.825642851999987, 42.419092957000032 ], [ -87.825684874999979, 42.420935926000027 ], [ -87.835482870999954, 42.42093893100008 ], [ -87.840947889999939, 42.420964942000069 ], [ -87.842844851999985, 42.42098592800005 ], [ -87.84798684399999, 42.42100292300006 ], [ -87.853904846999967, 42.421045931000037 ], [ -87.855007870999941, 42.421017950000078 ], [ -87.857473886999969, 42.421063912000079 ], [ -87.857570887999941, 42.419081918000074 ], [ -87.858090868999966, 42.419232912000041 ], [ -87.859932854999954, 42.419275919000029 ], [ -87.859923890999937, 42.421057953000059 ], [ -87.858930872999963, 42.421054948000062 ], [ -87.858930872999963, 42.422897916000068 ], [ -87.857183867999936, 42.422913928000071 ], [ -87.85662087899999, 42.424150951000058 ], [ -87.854970873999946, 42.424126909000051 ], [ -87.854935846999979, 42.428429934000064 ], [ -87.857357868999941, 42.428281945000037 ], [ -87.858601887999953, 42.428278939000052 ], [ -87.863502880999988, 42.428328942000064 ], [ -87.863493864999953, 42.428682955000056 ], [ -87.864763895999943, 42.428573933000052 ], [ -87.864652852999939, 42.435530912000047 ], [ -87.871891872999981, 42.435599933000049 ], [ -87.876071885999977, 42.435630919000062 ], [ -87.876563885999985, 42.428445944000032 ], [ -87.884230861999981, 42.428489936000062 ], [ -87.883944884999948, 42.432769955000026 ], [ -87.883512887999984, 42.439227939000034 ], [ -87.89340389399996, 42.439425930000027 ], [ -87.898512879999942, 42.439498940000078 ], [ -87.898479872999985, 42.446618937000039 ], [ -87.886489870999981, 42.446653913000034 ], [ -87.886431886999958, 42.444780942000079 ], [ -87.884089869999968, 42.446606916000064 ], [ -87.884853909999947, 42.454468929000029 ], [ -87.888640891999955, 42.454582925000068 ], [ -87.883569888999943, 42.458328920000042 ], [ -87.884841888999972, 42.464762913000072 ], [ -87.931368905999989, 42.465240921000031 ], [ -87.942674925999938, 42.465350927000031 ], [ -87.942990905999977, 42.465353933000074 ], [ -87.943156926999961, 42.46535693800007 ], [ -87.946426880999979, 42.465418911000029 ], [ -87.946929918999956, 42.472189920000062 ], [ -87.944088904999944, 42.475779946000046 ], [ -87.940398924999954, 42.478505927000072 ], [ -87.940427890999956, 42.484472946000039 ], [ -87.937891923999985, 42.485251961000074 ], [ -87.937631906999968, 42.486664954000048 ], [ -87.938344905999941, 42.487077934000069 ], [ -87.943203927999946, 42.487139958000057 ], [ -87.943281910999985, 42.485715928000047 ], [ -87.943285900999967, 42.485667946000035 ], [ -87.943311912999945, 42.484468956000057 ], [ -87.94238889899998, 42.484464914000057 ], [ -87.942539893999935, 42.481580944000029 ], [ -87.94495191599998, 42.481625922000035 ], [ -87.945064928999955, 42.479877933000068 ], [ -87.946143910999979, 42.479883943000061 ], [ -87.946313920999955, 42.480787940000027 ], [ -87.946352886999989, 42.481806918000075 ], [ -87.946457919999943, 42.481823914000074 ], [ -87.946777889999964, 42.480576942000027 ], [ -87.949946903999944, 42.477568923000035 ], [ -87.951760907999983, 42.479986955000072 ], [ -87.952384885999948, 42.479982913000072 ], [ -87.951578148999943, 42.494621920000043 ], [ -87.942220483999961, 42.494490478000046 ], [ -87.922469467999974, 42.494212596000068 ], [ -87.902502608999953, 42.493985474000056 ], [ -87.901526348999937, 42.493968349000056 ], [ -87.90147991799995, 42.493966933000081 ], [ -87.901455104999968, 42.493967099000031 ], [ -87.882960643999979, 42.493641102000026 ], [ -87.863650144999951, 42.493329364000033 ], [ -87.852897924999979, 42.493177206000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "FID": 27, "ZIP": "60041", "LBW": 0.04496564, "Preterm": 0.109025661, "TeenBirth": 12.3, "Birth_Rate": 11.9872905835, "F1stTriCare": 72.736203983199999, "SHAPE_Length": 0.48549891156574188, "SHAPE_Area": 0.0039798800852730108 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.139609959999973, 42.405767928000046 ], [ -88.139414973999976, 42.40494792700008 ], [ -88.139858939999954, 42.400810922000062 ], [ -88.134275933999959, 42.400878906000059 ], [ -88.130430967999985, 42.400938910000036 ], [ -88.128987973999983, 42.400942900000075 ], [ -88.120384926999975, 42.401007931000038 ], [ -88.120361970999966, 42.393520916000057 ], [ -88.120285955999975, 42.391907910000043 ], [ -88.116892936999989, 42.392081911000048 ], [ -88.117417945999989, 42.401011921000077 ], [ -88.115643944999988, 42.401031922000072 ], [ -88.116581932999964, 42.397446923000075 ], [ -88.114634965999983, 42.397342926000078 ], [ -88.11379594899995, 42.399225899000044 ], [ -88.111674928999946, 42.398722913000029 ], [ -88.111247958999968, 42.399332900000047 ], [ -88.099779958999989, 42.398150907000058 ], [ -88.100383935999957, 42.393596933000026 ], [ -88.100381966999976, 42.392950933000066 ], [ -88.10139793899998, 42.392706927000063 ], [ -88.101142947999961, 42.389585895000039 ], [ -88.100486946999979, 42.389356917000043 ], [ -88.101803923999967, 42.38776292700004 ], [ -88.101821955999981, 42.386438904000045 ], [ -88.113112949999959, 42.386442892000048 ], [ -88.116298959999938, 42.386474915000065 ], [ -88.120398966999971, 42.385776891000035 ], [ -88.120346942999959, 42.383010908000074 ], [ -88.120375960999979, 42.379298905000041 ], [ -88.120457932999955, 42.370284900000058 ], [ -88.120785933999969, 42.368628885000078 ], [ -88.120227968999984, 42.365747921000036 ], [ -88.125266949999968, 42.365384893000055 ], [ -88.130028969999955, 42.364442914000051 ], [ -88.130383966999943, 42.364796926000054 ], [ -88.139937956999972, 42.364998908000075 ], [ -88.139919924999958, 42.362974891000079 ], [ -88.144310935999954, 42.362942919000034 ], [ -88.14660896, 42.361779890000037 ], [ -88.147237964999988, 42.36237391800006 ], [ -88.148065945999974, 42.362756897000054 ], [ -88.148036927999954, 42.36114389100004 ], [ -88.14698696399995, 42.361115909000034 ], [ -88.147074948999943, 42.357740924000041 ], [ -88.139973968999982, 42.357726881000076 ], [ -88.139916968999955, 42.350449881000031 ], [ -88.144776974999957, 42.350423920000026 ], [ -88.144979938999938, 42.329160881000064 ], [ -88.155827950999935, 42.328509906000079 ], [ -88.155937958999971, 42.331385896000029 ], [ -88.156125949999989, 42.334862908000048 ], [ -88.158126959999947, 42.334385883000039 ], [ -88.163806966999971, 42.332216882000068 ], [ -88.165235972999938, 42.335931889000051 ], [ -88.169118970999989, 42.335797891000027 ], [ -88.165672943999937, 42.329058905000068 ], [ -88.169375929999944, 42.328931901000033 ], [ -88.169527959999982, 42.327317910000033 ], [ -88.166551962999961, 42.326697922000051 ], [ -88.168223937999983, 42.326013888000034 ], [ -88.172249950999969, 42.326456922000034 ], [ -88.174652957999967, 42.325218914000061 ], [ -88.179231959999981, 42.325124917000039 ], [ -88.179883970999981, 42.325121913000032 ], [ -88.180701951999936, 42.325150878000045 ], [ -88.180877974999987, 42.328885887000069 ], [ -88.181705954999984, 42.328764895000063 ], [ -88.181631960999937, 42.330080887000065 ], [ -88.183330983999952, 42.332481924000035 ], [ -88.181603980999967, 42.333303894000039 ], [ -88.181668958999978, 42.335347913000078 ], [ -88.184007970999971, 42.337587903000042 ], [ -88.183889984999951, 42.340567889000056 ], [ -88.184873986999946, 42.343355894000069 ], [ -88.187071952999986, 42.343496887000072 ], [ -88.190399941999942, 42.34681192100004 ], [ -88.196271982999974, 42.350354897000045 ], [ -88.198479950999968, 42.350553925000042 ], [ -88.198507983999946, 42.357368927000039 ], [ -88.198510988999942, 42.358514908000075 ], [ -88.19852995499997, 42.364972893000072 ], [ -88.196147985999971, 42.365244879000045 ], [ -88.192816941999979, 42.368530896000038 ], [ -88.190278951999971, 42.368849880000027 ], [ -88.190260971999976, 42.36979191000006 ], [ -88.191857966999976, 42.369939900000077 ], [ -88.190270971999951, 42.370653883000045 ], [ -88.190003960999945, 42.372433896000075 ], [ -88.193289977999939, 42.374578905000078 ], [ -88.194183973999941, 42.374256915000046 ], [ -88.194370980999963, 42.374938928000063 ], [ -88.195519967999985, 42.379113914000072 ], [ -88.198795735999965, 42.379313407000041 ], [ -88.19880858199997, 42.394935047000047 ], [ -88.194657943999971, 42.394889913000043 ], [ -88.194148946999974, 42.387732920000076 ], [ -88.194068993999963, 42.386288888000081 ], [ -88.19123399099999, 42.38663689100008 ], [ -88.181208984999955, 42.386693889000071 ], [ -88.181360964999953, 42.386539890000051 ], [ -88.181756948999976, 42.386482891000071 ], [ -88.181325987999969, 42.386255934000076 ], [ -88.181712955999956, 42.386026903000072 ], [ -88.182956974999968, 42.38422590600004 ], [ -88.18156398299999, 42.382727933000069 ], [ -88.177322981999964, 42.38347088300003 ], [ -88.177784979999956, 42.384172897000042 ], [ -88.177834983999958, 42.384297931000049 ], [ -88.178070957999978, 42.384542921000047 ], [ -88.176319962999969, 42.382952922000072 ], [ -88.176774965999982, 42.38301292500006 ], [ -88.177487965999944, 42.382720886000072 ], [ -88.176899947999971, 42.382094886000061 ], [ -88.176836938999941, 42.380000916000029 ], [ -88.174885983999957, 42.380030918000045 ], [ -88.174712966999948, 42.380172896000033 ], [ -88.174684985999988, 42.382455894000032 ], [ -88.174344963999943, 42.382454910000035 ], [ -88.174344962999953, 42.381851917000063 ], [ -88.173236963999955, 42.381851917000063 ], [ -88.17081395699995, 42.378734927000039 ], [ -88.170264956999972, 42.379545913000072 ], [ -88.167786971999988, 42.379429895000044 ], [ -88.167952940999953, 42.382812913000066 ], [ -88.165825962999975, 42.382482891000052 ], [ -88.164480954999988, 42.38386489800007 ], [ -88.161386969999967, 42.385177886000065 ], [ -88.159523948999947, 42.386401903000035 ], [ -88.159526952999954, 42.38742191700004 ], [ -88.16343197399999, 42.387471920000053 ], [ -88.163352954999937, 42.390327909000064 ], [ -88.162960959999964, 42.390457917000049 ], [ -88.16303998099994, 42.39404193300004 ], [ -88.16032695399997, 42.394055923000053 ], [ -88.159617944999979, 42.394059913000035 ], [ -88.155665977999945, 42.393909903000065 ], [ -88.154053954999938, 42.394862919000047 ], [ -88.153886950999947, 42.39491090100006 ], [ -88.152711951999947, 42.39504189400003 ], [ -88.149645947999943, 42.394183912000074 ], [ -88.147473941999976, 42.394067894000045 ], [ -88.147056972999962, 42.39671889400006 ], [ -88.147723958999961, 42.397035910000056 ], [ -88.148116937999987, 42.398699904000068 ], [ -88.152812942999958, 42.399384922000081 ], [ -88.145920939999939, 42.400072895000051 ], [ -88.142653940999935, 42.40621391500008 ], [ -88.140873928999952, 42.406556891000037 ], [ -88.139765928999964, 42.405756891000067 ], [ -88.139609959999973, 42.405767928000046 ] ] ] ] } } +] +} diff --git a/examples/loader-python-to-png/src/index.md b/examples/loader-python-to-png/src/index.md new file mode 100644 index 000000000..7846c8cde --- /dev/null +++ b/examples/loader-python-to-png/src/index.md @@ -0,0 +1,45 @@ +# Python data loader to generate PNG + +Here’s a Python data loader that accesses [birth data for Lake County, Illinois](https://data-lakecountyil.opendata.arcgis.com/datasets/lakecountyil::birth-statistics/explore) from a local geoJSON file, creates a choropleth map using matplotlib, then returns the map as PNG to standard out. + +```python +# Import libraries (must be installed and available in environment) +import geopandas as gpd +import matplotlib.pyplot as plt +import io +import sys + +# Read in data: +birth_statistics = gpd.read_file("src/data/birth_statistics.geojson") + +# Create a basic choropleth map +birth_statistics.plot(column="Birth_Rate", legend=True) +plt.axis("off") + +# Save plot to a virtual file, then write binary PNG data to stdout +img_buffer = io.BytesIO() +plt.savefig(img_buffer, format="png") +img_buffer.seek(0) + +sys.stdout.buffer.write(img_buffer.getvalue()) +``` + +
+ +To run this data loader, you’ll need python3 and the geopandas, matplotlib, io, and sys modules installed and available on your `$PATH`. + +
+ +
+ +We recommend using a [Python virtual environment](https://observablehq.com/framework/loaders#venv), such as with venv or uv, and managing required packages via `requirements.txt` rather than installing them globally. + +
+ +The above data loader lives in `data/birth-statistics.png.py`, so we can access the image using `data/birth-statistics.png`: + +```html run=false + +``` + + diff --git a/examples/loader-python-to-zip/.gitignore b/examples/loader-python-to-zip/.gitignore new file mode 100644 index 000000000..0922a3170 --- /dev/null +++ b/examples/loader-python-to-zip/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.venv diff --git a/examples/loader-python-to-zip/README.md b/examples/loader-python-to-zip/README.md new file mode 100644 index 000000000..732a19277 --- /dev/null +++ b/examples/loader-python-to-zip/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Python data loader to generate ZIP + +View live: + +This Observable Framework example demonstrates how to write a Python data loader that outputs a ZIP file. The data loader accesses USGS earthquake data, then returns metadata as a JSON and earthquake records as a CSV in the ZIP archive. The data loader lives in [`src/data/earthquakes.zip.py`](./src/data/earthquakes.zip.py). diff --git a/examples/loader-python-to-zip/observablehq.config.js b/examples/loader-python-to-zip/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-python-to-zip/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-python-to-zip/package.json b/examples/loader-python-to-zip/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-python-to-zip/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-python-to-zip/requirements.txt b/examples/loader-python-to-zip/requirements.txt new file mode 100644 index 000000000..2f549f75a --- /dev/null +++ b/examples/loader-python-to-zip/requirements.txt @@ -0,0 +1,2 @@ +requests==2.32.3 +pandas==2.2.2 diff --git a/examples/loader-python-to-zip/src/.gitignore b/examples/loader-python-to-zip/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-python-to-zip/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-python-to-zip/src/data/earthquakes.zip.py b/examples/loader-python-to-zip/src/data/earthquakes.zip.py new file mode 100644 index 000000000..b5a6fd863 --- /dev/null +++ b/examples/loader-python-to-zip/src/data/earthquakes.zip.py @@ -0,0 +1,42 @@ +# Import libraries (must be installed) +import requests +import pandas as pd +import json +import zipfile +import io +import sys + +# Access earthquake data as JSON from URL: +url = "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson" +response = requests.get(url) +geojson_data = response.json() + +# Get quakes metadata in JSON format: +earthquake_metadata = geojson_data["metadata"] +earthquake_meta_json = json.dumps(earthquake_metadata) + +# Create a pandas data frame with only earthquake magnitude, longitude, and latitude: +earthquakes = [] + +for i in geojson_data["features"]: + mag = i["properties"]["mag"] + longitude = i["geometry"]["coordinates"][0] + latitude = i["geometry"]["coordinates"][1] + earthquakes.append({"mag": mag, "longitude": longitude, "latitude": latitude}) + +earthquakes_df = pd.DataFrame(earthquakes) + +# Create a buffer +zip_buffer = io.BytesIO() + +# Write JSON string to the zip file +with zipfile.ZipFile(zip_buffer, "w") as zip_file: + zip_file.writestr("quakes-metadata.json", earthquake_meta_json) + +# Write DataFrame to a CSV file in the zip file +with zipfile.ZipFile(zip_buffer, "a") as zip_file: + df_csv_string = earthquakes_df.to_csv(index=False) + zip_file.writestr("quakes.csv", df_csv_string) + +# Write the zip file to standard output +sys.stdout.buffer.write(zip_buffer.getvalue()) diff --git a/examples/loader-python-to-zip/src/index.md b/examples/loader-python-to-zip/src/index.md new file mode 100644 index 000000000..7ed543070 --- /dev/null +++ b/examples/loader-python-to-zip/src/index.md @@ -0,0 +1,88 @@ +# Python data loader to generate ZIP + +This Python data loader accesses data on [earthquakes from the USGS](https://www.usgs.gov/programs/earthquake-hazards/earthquakes), then combines metadata (as JSON) and selected earthquake magnitude and location (as a CSV) in a ZIP archive. + +```python +# Import libraries (must be installed) +import requests +import pandas as pd +import json +import zipfile +import io +import sys + +# Access earthquake data as JSON from URL: +url = "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson" +response = requests.get(url) +geojson_data = response.json() + +# Get quakes metadata in JSON format: +earthquake_metadata = geojson_data["metadata"] +earthquake_meta_json = json.dumps(earthquake_metadata) + +# Create a pandas data frame with only earthquake magnitude, longitude, and latitude: +earthquakes = [] + +for i in geojson_data["features"]: + mag = i["properties"]["mag"] + longitude = i["geometry"]["coordinates"][0] + latitude = i["geometry"]["coordinates"][1] + earthquakes.append({"mag": mag, "longitude": longitude, "latitude": latitude}) + +earthquakes_df = pd.DataFrame(earthquakes) + +# Create a buffer +zip_buffer = io.BytesIO() + +# Write JSON string to the zip file +with zipfile.ZipFile(zip_buffer, "w") as zip_file: + zip_file.writestr("quakes-metadata.json", earthquake_meta_json) + +# Write DataFrame to a CSV file in the zip file +with zipfile.ZipFile(zip_buffer, "a") as zip_file: + df_csv_string = earthquakes_df.to_csv(index=False) + zip_file.writestr("quakes.csv", df_csv_string) + +# Write the zip file to standard output +sys.stdout.buffer.write(zip_buffer.getvalue()) +``` + +
+ +To run this data loader, you’ll need python3, and the requests and pandas modules, installed and available on your `$PATH`. (json, zipfile, io, and sys are part of the python3 standard library.) + +
+ +
+ +We recommend using a [Python virtual environment](https://observablehq.com/framework/loaders#venv), such as with venv or uv, and managing required packages via `requirements.txt` rather than installing them globally. + +
+ +The above data loader lives in `data/earthquakes.zip.py`. You can load the entire ZIP archive in a markdown page using `FileAttachment`: + +```js echo +const earthquakes = FileAttachment("data/earthquakes.zip").zip(); +``` + +Or access individual files (`quakes-metadata.json` and `quakes.csv`) directly: + +```js echo +const quakesMetadata = FileAttachment("data/earthquakes/quakes-metadata.json").json(); +``` + +```js echo +const quakes = FileAttachment("data/earthquakes/quakes.csv").csv({typed: true}); +``` + +Take a quick look at the quakes data using `Inputs.table`: + +```js echo +Inputs.table(quakes) +``` + +Then explore the distribution of earthquake magnitudes using Observable Plot: + +```js echo +Plot.rectY(quakes, Plot.binX({y: "count"}, {x: "mag"})).plot() +``` diff --git a/examples/loader-r-to-csv/.gitignore b/examples/loader-r-to-csv/.gitignore new file mode 100644 index 000000000..507740c9e --- /dev/null +++ b/examples/loader-r-to-csv/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.RData +.Rhistory diff --git a/examples/loader-r-to-csv/README.md b/examples/loader-r-to-csv/README.md new file mode 100644 index 000000000..533544c12 --- /dev/null +++ b/examples/loader-r-to-csv/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# R data loader to generate CSV + +View live: + +This Observable Framework example demonstrates how to write an R data loader that generates a CSV file. The data loader accesses data on penguin size measurements, performs k-means clustering, then emits a CSV containing original penguin data and cluster assignments. The data loader lives in [`src/data/penguin-kmeans.csv.R`](./src/data/penguin-kmeans.csv.R). diff --git a/examples/loader-r-to-csv/observablehq.config.js b/examples/loader-r-to-csv/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-r-to-csv/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-r-to-csv/package.json b/examples/loader-r-to-csv/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-r-to-csv/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-r-to-csv/src/.gitignore b/examples/loader-r-to-csv/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-r-to-csv/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-r-to-csv/src/data/penguin-kmeans.csv.R b/examples/loader-r-to-csv/src/data/penguin-kmeans.csv.R new file mode 100644 index 000000000..5b511ecb5 --- /dev/null +++ b/examples/loader-r-to-csv/src/data/penguin-kmeans.csv.R @@ -0,0 +1,19 @@ +# Attach libraries (must be installed) +library(readr) +library(dplyr) +library(tidyr) + +# Data access, wrangling and analysis +penguins <- read_csv("src/data/penguins.csv") |> + drop_na(culmen_depth_mm, culmen_length_mm) + +penguin_kmeans <- penguins |> + select(culmen_depth_mm, culmen_length_mm) |> + scale() |> + kmeans(centers = 3) + +penguin_clusters <- penguins |> + mutate(cluster = penguin_kmeans$cluster) + +# Convert data frame to delimited string, then write to standard output +cat(format_csv(penguin_clusters)) diff --git a/examples/loader-r-to-csv/src/data/penguins.csv b/examples/loader-r-to-csv/src/data/penguins.csv new file mode 100644 index 000000000..3c2b1818c --- /dev/null +++ b/examples/loader-r-to-csv/src/data/penguins.csv @@ -0,0 +1,343 @@ +species,island,culmen_length_mm,culmen_depth_mm,flipper_length_mm,body_mass_g,sex +Adelie,Torgersen,39.1,18.7,181,3750,MALE +Adelie,Torgersen,39.5,17.4,186,3800,FEMALE +Adelie,Torgersen,40.3,18,195,3250,FEMALE +Adelie,Torgersen,36.7,19.3,193,3450,FEMALE +Adelie,Torgersen,39.3,20.6,190,3650,MALE +Adelie,Torgersen,38.9,17.8,181,3625,FEMALE +Adelie,Torgersen,39.2,19.6,195,4675,MALE +Adelie,Torgersen,34.1,18.1,193,3475, +Adelie,Torgersen,42,20.2,190,4250, +Adelie,Torgersen,37.8,17.1,186,3300, +Adelie,Torgersen,37.8,17.3,180,3700, +Adelie,Torgersen,41.1,17.6,182,3200,FEMALE +Adelie,Torgersen,38.6,21.2,191,3800,MALE +Adelie,Torgersen,34.6,21.1,198,4400,MALE +Adelie,Torgersen,36.6,17.8,185,3700,FEMALE +Adelie,Torgersen,38.7,19,195,3450,FEMALE +Adelie,Torgersen,42.5,20.7,197,4500,MALE +Adelie,Torgersen,34.4,18.4,184,3325,FEMALE +Adelie,Torgersen,46,21.5,194,4200,MALE +Adelie,Biscoe,37.8,18.3,174,3400,FEMALE +Adelie,Biscoe,37.7,18.7,180,3600,MALE +Adelie,Biscoe,35.9,19.2,189,3800,FEMALE +Adelie,Biscoe,38.2,18.1,185,3950,MALE +Adelie,Biscoe,38.8,17.2,180,3800,MALE +Adelie,Biscoe,35.3,18.9,187,3800,FEMALE +Adelie,Biscoe,40.6,18.6,183,3550,MALE +Adelie,Biscoe,40.5,17.9,187,3200,FEMALE +Adelie,Biscoe,37.9,18.6,172,3150,FEMALE +Adelie,Biscoe,40.5,18.9,180,3950,MALE +Adelie,Dream,39.5,16.7,178,3250,FEMALE +Adelie,Dream,37.2,18.1,178,3900,MALE +Adelie,Dream,39.5,17.8,188,3300,FEMALE +Adelie,Dream,40.9,18.9,184,3900,MALE +Adelie,Dream,36.4,17,195,3325,FEMALE +Adelie,Dream,39.2,21.1,196,4150,MALE +Adelie,Dream,38.8,20,190,3950,MALE +Adelie,Dream,42.2,18.5,180,3550,FEMALE +Adelie,Dream,37.6,19.3,181,3300,FEMALE +Adelie,Dream,39.8,19.1,184,4650,MALE +Adelie,Dream,36.5,18,182,3150,FEMALE +Adelie,Dream,40.8,18.4,195,3900,MALE +Adelie,Dream,36,18.5,186,3100,FEMALE +Adelie,Dream,44.1,19.7,196,4400,MALE +Adelie,Dream,37,16.9,185,3000,FEMALE +Adelie,Dream,39.6,18.8,190,4600,MALE +Adelie,Dream,41.1,19,182,3425,MALE +Adelie,Dream,37.5,18.9,179,2975, +Adelie,Dream,36,17.9,190,3450,FEMALE +Adelie,Dream,42.3,21.2,191,4150,MALE +Adelie,Biscoe,39.6,17.7,186,3500,FEMALE +Adelie,Biscoe,40.1,18.9,188,4300,MALE +Adelie,Biscoe,35,17.9,190,3450,FEMALE +Adelie,Biscoe,42,19.5,200,4050,MALE +Adelie,Biscoe,34.5,18.1,187,2900,FEMALE +Adelie,Biscoe,41.4,18.6,191,3700,MALE +Adelie,Biscoe,39,17.5,186,3550,FEMALE +Adelie,Biscoe,40.6,18.8,193,3800,MALE +Adelie,Biscoe,36.5,16.6,181,2850,FEMALE +Adelie,Biscoe,37.6,19.1,194,3750,MALE +Adelie,Biscoe,35.7,16.9,185,3150,FEMALE +Adelie,Biscoe,41.3,21.1,195,4400,MALE +Adelie,Biscoe,37.6,17,185,3600,FEMALE +Adelie,Biscoe,41.1,18.2,192,4050,MALE +Adelie,Biscoe,36.4,17.1,184,2850,FEMALE +Adelie,Biscoe,41.6,18,192,3950,MALE +Adelie,Biscoe,35.5,16.2,195,3350,FEMALE +Adelie,Biscoe,41.1,19.1,188,4100,MALE +Adelie,Torgersen,35.9,16.6,190,3050,FEMALE +Adelie,Torgersen,41.8,19.4,198,4450,MALE +Adelie,Torgersen,33.5,19,190,3600,FEMALE +Adelie,Torgersen,39.7,18.4,190,3900,MALE +Adelie,Torgersen,39.6,17.2,196,3550,FEMALE +Adelie,Torgersen,45.8,18.9,197,4150,MALE +Adelie,Torgersen,35.5,17.5,190,3700,FEMALE +Adelie,Torgersen,42.8,18.5,195,4250,MALE +Adelie,Torgersen,40.9,16.8,191,3700,FEMALE +Adelie,Torgersen,37.2,19.4,184,3900,MALE +Adelie,Torgersen,36.2,16.1,187,3550,FEMALE +Adelie,Torgersen,42.1,19.1,195,4000,MALE +Adelie,Torgersen,34.6,17.2,189,3200,FEMALE +Adelie,Torgersen,42.9,17.6,196,4700,MALE +Adelie,Torgersen,36.7,18.8,187,3800,FEMALE +Adelie,Torgersen,35.1,19.4,193,4200,MALE +Adelie,Dream,37.3,17.8,191,3350,FEMALE +Adelie,Dream,41.3,20.3,194,3550,MALE +Adelie,Dream,36.3,19.5,190,3800,MALE +Adelie,Dream,36.9,18.6,189,3500,FEMALE +Adelie,Dream,38.3,19.2,189,3950,MALE +Adelie,Dream,38.9,18.8,190,3600,FEMALE +Adelie,Dream,35.7,18,202,3550,FEMALE +Adelie,Dream,41.1,18.1,205,4300,MALE +Adelie,Dream,34,17.1,185,3400,FEMALE +Adelie,Dream,39.6,18.1,186,4450,MALE +Adelie,Dream,36.2,17.3,187,3300,FEMALE +Adelie,Dream,40.8,18.9,208,4300,MALE +Adelie,Dream,38.1,18.6,190,3700,FEMALE +Adelie,Dream,40.3,18.5,196,4350,MALE +Adelie,Dream,33.1,16.1,178,2900,FEMALE +Adelie,Dream,43.2,18.5,192,4100,MALE +Adelie,Biscoe,35,17.9,192,3725,FEMALE +Adelie,Biscoe,41,20,203,4725,MALE +Adelie,Biscoe,37.7,16,183,3075,FEMALE +Adelie,Biscoe,37.8,20,190,4250,MALE +Adelie,Biscoe,37.9,18.6,193,2925,FEMALE +Adelie,Biscoe,39.7,18.9,184,3550,MALE +Adelie,Biscoe,38.6,17.2,199,3750,FEMALE +Adelie,Biscoe,38.2,20,190,3900,MALE +Adelie,Biscoe,38.1,17,181,3175,FEMALE +Adelie,Biscoe,43.2,19,197,4775,MALE +Adelie,Biscoe,38.1,16.5,198,3825,FEMALE +Adelie,Biscoe,45.6,20.3,191,4600,MALE +Adelie,Biscoe,39.7,17.7,193,3200,FEMALE +Adelie,Biscoe,42.2,19.5,197,4275,MALE +Adelie,Biscoe,39.6,20.7,191,3900,FEMALE +Adelie,Biscoe,42.7,18.3,196,4075,MALE +Adelie,Torgersen,38.6,17,188,2900,FEMALE +Adelie,Torgersen,37.3,20.5,199,3775,MALE +Adelie,Torgersen,35.7,17,189,3350,FEMALE +Adelie,Torgersen,41.1,18.6,189,3325,MALE +Adelie,Torgersen,36.2,17.2,187,3150,FEMALE +Adelie,Torgersen,37.7,19.8,198,3500,MALE +Adelie,Torgersen,40.2,17,176,3450,FEMALE +Adelie,Torgersen,41.4,18.5,202,3875,MALE +Adelie,Torgersen,35.2,15.9,186,3050,FEMALE +Adelie,Torgersen,40.6,19,199,4000,MALE +Adelie,Torgersen,38.8,17.6,191,3275,FEMALE +Adelie,Torgersen,41.5,18.3,195,4300,MALE +Adelie,Torgersen,39,17.1,191,3050,FEMALE +Adelie,Torgersen,44.1,18,210,4000,MALE +Adelie,Torgersen,38.5,17.9,190,3325,FEMALE +Adelie,Torgersen,43.1,19.2,197,3500,MALE +Adelie,Dream,36.8,18.5,193,3500,FEMALE +Adelie,Dream,37.5,18.5,199,4475,MALE +Adelie,Dream,38.1,17.6,187,3425,FEMALE +Adelie,Dream,41.1,17.5,190,3900,MALE +Adelie,Dream,35.6,17.5,191,3175,FEMALE +Adelie,Dream,40.2,20.1,200,3975,MALE +Adelie,Dream,37,16.5,185,3400,FEMALE +Adelie,Dream,39.7,17.9,193,4250,MALE +Adelie,Dream,40.2,17.1,193,3400,FEMALE +Adelie,Dream,40.6,17.2,187,3475,MALE +Adelie,Dream,32.1,15.5,188,3050,FEMALE +Adelie,Dream,40.7,17,190,3725,MALE +Adelie,Dream,37.3,16.8,192,3000,FEMALE +Adelie,Dream,39,18.7,185,3650,MALE +Adelie,Dream,39.2,18.6,190,4250,MALE +Adelie,Dream,36.6,18.4,184,3475,FEMALE +Adelie,Dream,36,17.8,195,3450,FEMALE +Adelie,Dream,37.8,18.1,193,3750,MALE +Adelie,Dream,36,17.1,187,3700,FEMALE +Adelie,Dream,41.5,18.5,201,4000,MALE +Chinstrap,Dream,46.5,17.9,192,3500,FEMALE +Chinstrap,Dream,50,19.5,196,3900,MALE +Chinstrap,Dream,51.3,19.2,193,3650,MALE +Chinstrap,Dream,45.4,18.7,188,3525,FEMALE +Chinstrap,Dream,52.7,19.8,197,3725,MALE +Chinstrap,Dream,45.2,17.8,198,3950,FEMALE +Chinstrap,Dream,46.1,18.2,178,3250,FEMALE +Chinstrap,Dream,51.3,18.2,197,3750,MALE +Chinstrap,Dream,46,18.9,195,4150,FEMALE +Chinstrap,Dream,51.3,19.9,198,3700,MALE +Chinstrap,Dream,46.6,17.8,193,3800,FEMALE +Chinstrap,Dream,51.7,20.3,194,3775,MALE +Chinstrap,Dream,47,17.3,185,3700,FEMALE +Chinstrap,Dream,52,18.1,201,4050,MALE +Chinstrap,Dream,45.9,17.1,190,3575,FEMALE +Chinstrap,Dream,50.5,19.6,201,4050,MALE +Chinstrap,Dream,50.3,20,197,3300,MALE +Chinstrap,Dream,58,17.8,181,3700,FEMALE +Chinstrap,Dream,46.4,18.6,190,3450,FEMALE +Chinstrap,Dream,49.2,18.2,195,4400,MALE +Chinstrap,Dream,42.4,17.3,181,3600,FEMALE +Chinstrap,Dream,48.5,17.5,191,3400,MALE +Chinstrap,Dream,43.2,16.6,187,2900,FEMALE +Chinstrap,Dream,50.6,19.4,193,3800,MALE +Chinstrap,Dream,46.7,17.9,195,3300,FEMALE +Chinstrap,Dream,52,19,197,4150,MALE +Chinstrap,Dream,50.5,18.4,200,3400,FEMALE +Chinstrap,Dream,49.5,19,200,3800,MALE +Chinstrap,Dream,46.4,17.8,191,3700,FEMALE +Chinstrap,Dream,52.8,20,205,4550,MALE +Chinstrap,Dream,40.9,16.6,187,3200,FEMALE +Chinstrap,Dream,54.2,20.8,201,4300,MALE +Chinstrap,Dream,42.5,16.7,187,3350,FEMALE +Chinstrap,Dream,51,18.8,203,4100,MALE +Chinstrap,Dream,49.7,18.6,195,3600,MALE +Chinstrap,Dream,47.5,16.8,199,3900,FEMALE +Chinstrap,Dream,47.6,18.3,195,3850,FEMALE +Chinstrap,Dream,52,20.7,210,4800,MALE +Chinstrap,Dream,46.9,16.6,192,2700,FEMALE +Chinstrap,Dream,53.5,19.9,205,4500,MALE +Chinstrap,Dream,49,19.5,210,3950,MALE +Chinstrap,Dream,46.2,17.5,187,3650,FEMALE +Chinstrap,Dream,50.9,19.1,196,3550,MALE +Chinstrap,Dream,45.5,17,196,3500,FEMALE +Chinstrap,Dream,50.9,17.9,196,3675,FEMALE +Chinstrap,Dream,50.8,18.5,201,4450,MALE +Chinstrap,Dream,50.1,17.9,190,3400,FEMALE +Chinstrap,Dream,49,19.6,212,4300,MALE +Chinstrap,Dream,51.5,18.7,187,3250,MALE +Chinstrap,Dream,49.8,17.3,198,3675,FEMALE +Chinstrap,Dream,48.1,16.4,199,3325,FEMALE +Chinstrap,Dream,51.4,19,201,3950,MALE +Chinstrap,Dream,45.7,17.3,193,3600,FEMALE +Chinstrap,Dream,50.7,19.7,203,4050,MALE +Chinstrap,Dream,42.5,17.3,187,3350,FEMALE +Chinstrap,Dream,52.2,18.8,197,3450,MALE +Chinstrap,Dream,45.2,16.6,191,3250,FEMALE +Chinstrap,Dream,49.3,19.9,203,4050,MALE +Chinstrap,Dream,50.2,18.8,202,3800,MALE +Chinstrap,Dream,45.6,19.4,194,3525,FEMALE +Chinstrap,Dream,51.9,19.5,206,3950,MALE +Chinstrap,Dream,46.8,16.5,189,3650,FEMALE +Chinstrap,Dream,45.7,17,195,3650,FEMALE +Chinstrap,Dream,55.8,19.8,207,4000,MALE +Chinstrap,Dream,43.5,18.1,202,3400,FEMALE +Chinstrap,Dream,49.6,18.2,193,3775,MALE +Chinstrap,Dream,50.8,19,210,4100,MALE +Chinstrap,Dream,50.2,18.7,198,3775,FEMALE +Gentoo,Biscoe,46.1,13.2,211,4500,FEMALE +Gentoo,Biscoe,50,16.3,230,5700,MALE +Gentoo,Biscoe,48.7,14.1,210,4450,FEMALE +Gentoo,Biscoe,50,15.2,218,5700,MALE +Gentoo,Biscoe,47.6,14.5,215,5400,MALE +Gentoo,Biscoe,46.5,13.5,210,4550,FEMALE +Gentoo,Biscoe,45.4,14.6,211,4800,FEMALE +Gentoo,Biscoe,46.7,15.3,219,5200,MALE +Gentoo,Biscoe,43.3,13.4,209,4400,FEMALE +Gentoo,Biscoe,46.8,15.4,215,5150,MALE +Gentoo,Biscoe,40.9,13.7,214,4650,FEMALE +Gentoo,Biscoe,49,16.1,216,5550,MALE +Gentoo,Biscoe,45.5,13.7,214,4650,FEMALE +Gentoo,Biscoe,48.4,14.6,213,5850,MALE +Gentoo,Biscoe,45.8,14.6,210,4200,FEMALE +Gentoo,Biscoe,49.3,15.7,217,5850,MALE +Gentoo,Biscoe,42,13.5,210,4150,FEMALE +Gentoo,Biscoe,49.2,15.2,221,6300,MALE +Gentoo,Biscoe,46.2,14.5,209,4800,FEMALE +Gentoo,Biscoe,48.7,15.1,222,5350,MALE +Gentoo,Biscoe,50.2,14.3,218,5700,MALE +Gentoo,Biscoe,45.1,14.5,215,5000,FEMALE +Gentoo,Biscoe,46.5,14.5,213,4400,FEMALE +Gentoo,Biscoe,46.3,15.8,215,5050,MALE +Gentoo,Biscoe,42.9,13.1,215,5000,FEMALE +Gentoo,Biscoe,46.1,15.1,215,5100,MALE +Gentoo,Biscoe,44.5,14.3,216,4100, +Gentoo,Biscoe,47.8,15,215,5650,MALE +Gentoo,Biscoe,48.2,14.3,210,4600,FEMALE +Gentoo,Biscoe,50,15.3,220,5550,MALE +Gentoo,Biscoe,47.3,15.3,222,5250,MALE +Gentoo,Biscoe,42.8,14.2,209,4700,FEMALE +Gentoo,Biscoe,45.1,14.5,207,5050,FEMALE +Gentoo,Biscoe,59.6,17,230,6050,MALE +Gentoo,Biscoe,49.1,14.8,220,5150,FEMALE +Gentoo,Biscoe,48.4,16.3,220,5400,MALE +Gentoo,Biscoe,42.6,13.7,213,4950,FEMALE +Gentoo,Biscoe,44.4,17.3,219,5250,MALE +Gentoo,Biscoe,44,13.6,208,4350,FEMALE +Gentoo,Biscoe,48.7,15.7,208,5350,MALE +Gentoo,Biscoe,42.7,13.7,208,3950,FEMALE +Gentoo,Biscoe,49.6,16,225,5700,MALE +Gentoo,Biscoe,45.3,13.7,210,4300,FEMALE +Gentoo,Biscoe,49.6,15,216,4750,MALE +Gentoo,Biscoe,50.5,15.9,222,5550,MALE +Gentoo,Biscoe,43.6,13.9,217,4900,FEMALE +Gentoo,Biscoe,45.5,13.9,210,4200,FEMALE +Gentoo,Biscoe,50.5,15.9,225,5400,MALE +Gentoo,Biscoe,44.9,13.3,213,5100,FEMALE +Gentoo,Biscoe,45.2,15.8,215,5300,MALE +Gentoo,Biscoe,46.6,14.2,210,4850,FEMALE +Gentoo,Biscoe,48.5,14.1,220,5300,MALE +Gentoo,Biscoe,45.1,14.4,210,4400,FEMALE +Gentoo,Biscoe,50.1,15,225,5000,MALE +Gentoo,Biscoe,46.5,14.4,217,4900,FEMALE +Gentoo,Biscoe,45,15.4,220,5050,MALE +Gentoo,Biscoe,43.8,13.9,208,4300,FEMALE +Gentoo,Biscoe,45.5,15,220,5000,MALE +Gentoo,Biscoe,43.2,14.5,208,4450,FEMALE +Gentoo,Biscoe,50.4,15.3,224,5550,MALE +Gentoo,Biscoe,45.3,13.8,208,4200,FEMALE +Gentoo,Biscoe,46.2,14.9,221,5300,MALE +Gentoo,Biscoe,45.7,13.9,214,4400,FEMALE +Gentoo,Biscoe,54.3,15.7,231,5650,MALE +Gentoo,Biscoe,45.8,14.2,219,4700,FEMALE +Gentoo,Biscoe,49.8,16.8,230,5700,MALE +Gentoo,Biscoe,46.2,14.4,214,4650, +Gentoo,Biscoe,49.5,16.2,229,5800,MALE +Gentoo,Biscoe,43.5,14.2,220,4700,FEMALE +Gentoo,Biscoe,50.7,15,223,5550,MALE +Gentoo,Biscoe,47.7,15,216,4750,FEMALE +Gentoo,Biscoe,46.4,15.6,221,5000,MALE +Gentoo,Biscoe,48.2,15.6,221,5100,MALE +Gentoo,Biscoe,46.5,14.8,217,5200,FEMALE +Gentoo,Biscoe,46.4,15,216,4700,FEMALE +Gentoo,Biscoe,48.6,16,230,5800,MALE +Gentoo,Biscoe,47.5,14.2,209,4600,FEMALE +Gentoo,Biscoe,51.1,16.3,220,6000,MALE +Gentoo,Biscoe,45.2,13.8,215,4750,FEMALE +Gentoo,Biscoe,45.2,16.4,223,5950,MALE +Gentoo,Biscoe,49.1,14.5,212,4625,FEMALE +Gentoo,Biscoe,52.5,15.6,221,5450,MALE +Gentoo,Biscoe,47.4,14.6,212,4725,FEMALE +Gentoo,Biscoe,50,15.9,224,5350,MALE +Gentoo,Biscoe,44.9,13.8,212,4750,FEMALE +Gentoo,Biscoe,50.8,17.3,228,5600,MALE +Gentoo,Biscoe,43.4,14.4,218,4600,FEMALE +Gentoo,Biscoe,51.3,14.2,218,5300,MALE +Gentoo,Biscoe,47.5,14,212,4875,FEMALE +Gentoo,Biscoe,52.1,17,230,5550,MALE +Gentoo,Biscoe,47.5,15,218,4950,FEMALE +Gentoo,Biscoe,52.2,17.1,228,5400,MALE +Gentoo,Biscoe,45.5,14.5,212,4750,FEMALE +Gentoo,Biscoe,49.5,16.1,224,5650,MALE +Gentoo,Biscoe,44.5,14.7,214,4850,FEMALE +Gentoo,Biscoe,50.8,15.7,226,5200,MALE +Gentoo,Biscoe,49.4,15.8,216,4925,MALE +Gentoo,Biscoe,46.9,14.6,222,4875,FEMALE +Gentoo,Biscoe,48.4,14.4,203,4625,FEMALE +Gentoo,Biscoe,51.1,16.5,225,5250,MALE +Gentoo,Biscoe,48.5,15,219,4850,FEMALE +Gentoo,Biscoe,55.9,17,228,5600,MALE +Gentoo,Biscoe,47.2,15.5,215,4975,FEMALE +Gentoo,Biscoe,49.1,15,228,5500,MALE +Gentoo,Biscoe,47.3,13.8,216,4725, +Gentoo,Biscoe,46.8,16.1,215,5500,MALE +Gentoo,Biscoe,41.7,14.7,210,4700,FEMALE +Gentoo,Biscoe,53.4,15.8,219,5500,MALE +Gentoo,Biscoe,43.3,14,208,4575,FEMALE +Gentoo,Biscoe,48.1,15.1,209,5500,MALE +Gentoo,Biscoe,50.5,15.2,216,5000,FEMALE +Gentoo,Biscoe,49.8,15.9,229,5950,MALE +Gentoo,Biscoe,43.5,15.2,213,4650,FEMALE +Gentoo,Biscoe,51.5,16.3,230,5500,MALE +Gentoo,Biscoe,46.2,14.1,217,4375,FEMALE +Gentoo,Biscoe,55.1,16,230,5850,MALE +Gentoo,Biscoe,44.5,15.7,217,4875, +Gentoo,Biscoe,48.8,16.2,222,6000,MALE +Gentoo,Biscoe,47.2,13.7,214,4925,FEMALE +Gentoo,Biscoe,46.8,14.3,215,4850,FEMALE +Gentoo,Biscoe,50.4,15.7,222,5750,MALE +Gentoo,Biscoe,45.2,14.8,212,5200,FEMALE +Gentoo,Biscoe,49.9,16.1,213,5400,MALE diff --git a/examples/loader-r-to-csv/src/index.md b/examples/loader-r-to-csv/src/index.md new file mode 100644 index 000000000..424645a21 --- /dev/null +++ b/examples/loader-r-to-csv/src/index.md @@ -0,0 +1,63 @@ +# R data loader to generate CSV + +Here’s an R data loader that performs k-means clustering with penguin body size measurements then outputs a CSV file to standard out. + +```r +# Attach libraries (must be installed) +library(readr) +library(dplyr) +library(tidyr) + +# Data access, wrangling and analysis +penguins <- read_csv("docs/data-files/penguins.csv") |> + drop_na(culmen_depth_mm, culmen_length_mm) + +penguin_kmeans <- penguins |> + select(culmen_depth_mm, culmen_length_mm) |> + scale() |> + kmeans(centers = 3) + +penguin_clusters <- penguins |> + mutate(cluster = penguin_kmeans$cluster) + +# Convert data frame to delimited string, then write to standard output +cat(format_csv(penguin_clusters)) +``` + +
+ +To run this data loader, you’ll need R installed, along with the `readr`, `dplyr`, and `tidyr` libraries, _e.g._ with `install.packages("dplyr"`). + +
+ +The above data loader lives in `data/penguin-kmeans.csv.R`, so we can load the data using `data/penguin-kmeans.csv`. You can access the output in a markdown page using the `FileAttachment.csv` method: + +```js echo +const penguinKmeans = FileAttachment("data/penguin-kmeans.csv").csv({typed: true}); +``` + +We can display the contents of `penguinKmeans` with `Inputs.table`: + +```js echo +Inputs.table(penguinKmeans) +``` + +We can pass the data to `Plot.plot` to make a scatterplot of penguin size (body mass and flipper length) with text indicating the assigned cluster number and color mapped to penguin species. + +```js echo +Plot.plot({ + color: { + legend: true, + range: ["lightseagreen", "orchid", "darkorange"] + }, + marks: [ + Plot.text(penguinKmeans, { + text: "cluster", + x: "body_mass_g", + y: "flipper_length_mm", + fill: "species", + fontWeight: 600 + }) + ] +}) +``` diff --git a/examples/loader-r-to-jpeg/.gitignore b/examples/loader-r-to-jpeg/.gitignore new file mode 100644 index 000000000..9ee1facff --- /dev/null +++ b/examples/loader-r-to-jpeg/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.Rhistory +.RData diff --git a/examples/loader-r-to-jpeg/README.md b/examples/loader-r-to-jpeg/README.md new file mode 100644 index 000000000..9c3988913 --- /dev/null +++ b/examples/loader-r-to-jpeg/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# R data loader to generate JPEG + +View live: + +This Observable Framework example demonstrates how to write an R data loader that creates a scatterplot using ggplot2, then outputs the chart as JPEG to standard out. The scatterplot visualizes the relationship between diamond size, cut, and price using the [diamonds](https://ggplot2.tidyverse.org/reference/diamonds.html) dataset. The data loader lives in [`src/data/diamonds.jpeg.R`](./src/data/diamonds.jpeg.R). diff --git a/examples/loader-r-to-jpeg/observablehq.config.js b/examples/loader-r-to-jpeg/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-r-to-jpeg/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-r-to-jpeg/package.json b/examples/loader-r-to-jpeg/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-r-to-jpeg/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-r-to-jpeg/src/.gitignore b/examples/loader-r-to-jpeg/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-r-to-jpeg/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-r-to-jpeg/src/data/diamonds.jpeg.R b/examples/loader-r-to-jpeg/src/data/diamonds.jpeg.R new file mode 100644 index 000000000..a9a66d6c7 --- /dev/null +++ b/examples/loader-r-to-jpeg/src/data/diamonds.jpeg.R @@ -0,0 +1,15 @@ +# Load ggplot2 +library(ggplot2) + +# Create a scatterplot with built-in diamonds dataset +my_plot <- ggplot(diamonds, aes(x = carat, y = price, color = cut)) + + geom_point(alpha = 0.6) + + labs( + title = "Diamonds Dataset: Carat vs Price by Cut", + x = "Carat", + y = "Price", + color = "Cut" + ) + +# Save as jpeg and write to standard output +ggsave(plot = my_plot, filename = "/dev/stdout", device = "jpeg") diff --git a/examples/loader-r-to-jpeg/src/index.md b/examples/loader-r-to-jpeg/src/index.md new file mode 100644 index 000000000..c62d5a93e --- /dev/null +++ b/examples/loader-r-to-jpeg/src/index.md @@ -0,0 +1,35 @@ +# R data loader to generate JPEG + +Here’s an R data loader that creates a scatterplot using [ggplot2](https://ggplot2.tidyverse.org/), then outputs the chart as JPEG to standard out. The scatterplot shows patterns for diamond price and clarity using the [diamonds](https://ggplot2.tidyverse.org/reference/diamonds.html) dataset, which is built into ggplot2 package. + +```r +# Load ggplot2 +library(ggplot2) + +# Create a scatterplot with built-in diamonds dataset +my_plot <- ggplot(diamonds, aes(x = carat, y = price, color = cut)) + + geom_point(alpha = 0.6) + + labs( + title = "Diamonds Dataset: Carat vs Price by Cut", + x = "Carat", + y = "Price", + color = "Cut" + ) + +# Save as jpeg and write to standard output +ggsave(plot = my_plot, filename = "/dev/stdout", device = "jpeg") +``` + +
+ +To run this data loader, you’ll need R and the `ggplot2` package installed, _e.g._ using `install.packages("ggplot2")`. + +
+ +The above data loader lives in `data/diamonds.jpeg.R`, so we can add the static image to our page using `data/diamonds.jpeg`: + +```html run=false + +``` + + diff --git a/examples/loader-r-to-json/.gitignore b/examples/loader-r-to-json/.gitignore new file mode 100644 index 000000000..507740c9e --- /dev/null +++ b/examples/loader-r-to-json/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.RData +.Rhistory diff --git a/examples/loader-r-to-json/README.md b/examples/loader-r-to-json/README.md new file mode 100644 index 000000000..103cf4b65 --- /dev/null +++ b/examples/loader-r-to-json/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# R data loader to generate JSON + +View live: + +This Observable Framework example demonstrates how to write a data loader in R that accesses text from Tolstoy’s _War and Peace_ from Project Gutenberg, does some basic text mining, then generates JSON with top word counts by book and chapter. + +The data loader lives in [`src/data/tolstoy.json.R`](./src/data/tolstoy.json.R). diff --git a/examples/loader-r-to-json/observablehq.config.js b/examples/loader-r-to-json/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-r-to-json/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-r-to-json/package.json b/examples/loader-r-to-json/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-r-to-json/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-r-to-json/src/.gitignore b/examples/loader-r-to-json/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-r-to-json/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-r-to-json/src/data/tolstoy.json.R b/examples/loader-r-to-json/src/data/tolstoy.json.R new file mode 100644 index 000000000..f3648beb4 --- /dev/null +++ b/examples/loader-r-to-json/src/data/tolstoy.json.R @@ -0,0 +1,37 @@ +# Attach libraries (must be installed) +library(tidytext) +library(readr) +library(dplyr) +library(stringr) +library(jsonlite) + +# Access and wrangle data +tolstoy <- read_csv("https://www.gutenberg.org/cache/epub/2600/pg2600.txt") |> + rename(text = 1) +booktext <- tolstoy[-(1:400), ] +booktext <- booktext[-(51477:51770), ] + +tidy_tolstoy <- booktext |> + mutate(book = cumsum(str_detect(text, "BOOK | EPILOGUE"))) |> + mutate(book = case_when( + book < 16 ~ paste("Book", book), + book == 16 ~ "Epilogue 1", + book == 17 ~ "Epilogue 2" + )) |> + group_by(book) |> + mutate(chapter = cumsum(str_detect(text, regex("CHAPTER", ignore_case = FALSE)))) |> + ungroup() |> + filter(!str_detect(text, regex("BOOK", ignore_case = FALSE))) |> + filter(!str_detect(text, regex("CHAPTER", ignore_case = FALSE))) |> + unnest_tokens(word, text) |> + anti_join(stop_words) + +# Find top 10 words (by count) for each chapter +tolstoy_word_counts <- tidy_tolstoy |> + group_by(book, chapter) |> + count(word) |> + top_n(10, n) |> + arrange(desc(n), .by_group = TRUE) + +# Create JSON and write to standard output +cat(toJSON(tolstoy_word_counts, pretty = TRUE)) diff --git a/examples/loader-r-to-json/src/index.md b/examples/loader-r-to-json/src/index.md new file mode 100644 index 000000000..6aa6664f6 --- /dev/null +++ b/examples/loader-r-to-json/src/index.md @@ -0,0 +1,78 @@ +# R data loader to generate JSON + +Here’s an R data loader that accesses Tolstoy’s _War and Peace_ from the [Gutenberg Project](https://www.gutenberg.org/ebooks/2600), finds the most common words by book and chapter, then outputs JSON. + +```r +# Attach libraries (must be installed) +library(tidytext) +library(readr) +library(dplyr) +library(stringr) +library(jsonlite) + +# Access and wrangle data +tolstoy <- read_csv("https://www.gutenberg.org/cache/epub/2600/pg2600.txt") |> + rename(text = 1) +booktext <- tolstoy[-(1:400), ] +booktext <- booktext[-(51477:51770), ] + +tidy_tolstoy <- booktext |> + mutate(book = cumsum(str_detect(text, "BOOK | EPILOGUE"))) |> + mutate(book = case_when( + book < 16 ~ paste("Book", book), + book == 16 ~ "Epilogue 1", + book == 17 ~ "Epilogue 2" + )) |> + group_by(book) |> + mutate(chapter = cumsum(str_detect(text, regex("CHAPTER", ignore_case = FALSE)))) |> + ungroup() |> + filter(!str_detect(text, regex("BOOK", ignore_case = FALSE))) |> + filter(!str_detect(text, regex("CHAPTER", ignore_case = FALSE))) |> + unnest_tokens(word, text) |> + anti_join(stop_words) + +# Find top 10 words (by count) for each chapter +tolstoy_word_counts <- tidy_tolstoy |> + group_by(book, chapter) |> + count(word) |> + top_n(10, n) |> + arrange(desc(n), .by_group = TRUE) + +# Create JSON and write to standard output +cat(toJSON(tolstoy_word_counts, pretty = TRUE)) +``` + +
+ +To run this data loader, you’ll need R installed, along with all required packages, _e.g._ by running `install.packages(c("tidytext", "readr", "dplyr", "stringr", "jsonlite"))`. + +
+ +The above data loader lives in `data/tolstoy.json.R`, so we can load the data as `data/tolstoy.json` using `FileAttachment`. + +```js echo +const text = FileAttachment("data/tolstoy.json").json(); +``` + +We can display this dataset with Inputs.table: + +```js echo +Inputs.table(text) +``` + +We can make a quick chart of top words in Book 1, with color mapped to book chapter, using [Observable Plot](https://observablehq.com/plot/): + +```js echo +Plot.plot({ + marks: [ + Plot.barY(text, { + filter: (d) => d.book === "Book 1", + x: "word", + y: "n", + fill: "chapter", + tip: true, + sort: {x: "y", limit: 5, reverse: true} + }) + ] +}) +``` diff --git a/examples/loader-r-to-zip/.gitignore b/examples/loader-r-to-zip/.gitignore new file mode 100644 index 000000000..9ee1facff --- /dev/null +++ b/examples/loader-r-to-zip/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log +.Rhistory +.RData diff --git a/examples/loader-r-to-zip/README.md b/examples/loader-r-to-zip/README.md new file mode 100644 index 000000000..25bff0b67 --- /dev/null +++ b/examples/loader-r-to-zip/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# R data loader to generate a ZIP archive + +View live: + +This Observable Framework example demonstrates how to write an R data loader that accesses penguin body size measurements, performs multiple linear regression, then outputs model estimates and predictions as two separate CSV files in a ZIP archive. + +The data loader lives in [`src/data/penguin-mlr.zip.R`](./src/data/penguin-mlr.zip.R). diff --git a/examples/loader-r-to-zip/observablehq.config.js b/examples/loader-r-to-zip/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-r-to-zip/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-r-to-zip/package.json b/examples/loader-r-to-zip/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/loader-r-to-zip/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-r-to-zip/src/.gitignore b/examples/loader-r-to-zip/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-r-to-zip/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-r-to-zip/src/data/penguin-mlr.zip.R b/examples/loader-r-to-zip/src/data/penguin-mlr.zip.R new file mode 100644 index 000000000..e2f460633 --- /dev/null +++ b/examples/loader-r-to-zip/src/data/penguin-mlr.zip.R @@ -0,0 +1,27 @@ +# Attach required packages (must be installed) +library(readr) +library(tidyr) +library(dplyr) +library(broom) + +# Data access, wrangling and analysis +penguins <- read_csv("src/data/penguins.csv") |> + drop_na(body_mass_g, species, sex, flipper_length_mm, culmen_depth_mm) + +penguins_mlr <- lm(body_mass_g ~ species + sex + flipper_length_mm + culmen_depth_mm, data = penguins) + +mlr_est <- tidy(penguins_mlr) + +mlr_fit <- penguins |> + mutate( + predicted_mass = penguins_mlr$fitted.values, + residual = penguins_mlr$residuals + ) + +# Write the data frames as CSVs to a temporary directory +setwd(tempdir()) +write_csv(mlr_est, "estimates.csv") +write_csv(mlr_fit, "predictions.csv") + +# Zip the contents of the temporary directory +system("zip - -r .") diff --git a/examples/loader-r-to-zip/src/data/penguins.csv b/examples/loader-r-to-zip/src/data/penguins.csv new file mode 100644 index 000000000..3c2b1818c --- /dev/null +++ b/examples/loader-r-to-zip/src/data/penguins.csv @@ -0,0 +1,343 @@ +species,island,culmen_length_mm,culmen_depth_mm,flipper_length_mm,body_mass_g,sex +Adelie,Torgersen,39.1,18.7,181,3750,MALE +Adelie,Torgersen,39.5,17.4,186,3800,FEMALE +Adelie,Torgersen,40.3,18,195,3250,FEMALE +Adelie,Torgersen,36.7,19.3,193,3450,FEMALE +Adelie,Torgersen,39.3,20.6,190,3650,MALE +Adelie,Torgersen,38.9,17.8,181,3625,FEMALE +Adelie,Torgersen,39.2,19.6,195,4675,MALE +Adelie,Torgersen,34.1,18.1,193,3475, +Adelie,Torgersen,42,20.2,190,4250, +Adelie,Torgersen,37.8,17.1,186,3300, +Adelie,Torgersen,37.8,17.3,180,3700, +Adelie,Torgersen,41.1,17.6,182,3200,FEMALE +Adelie,Torgersen,38.6,21.2,191,3800,MALE +Adelie,Torgersen,34.6,21.1,198,4400,MALE +Adelie,Torgersen,36.6,17.8,185,3700,FEMALE +Adelie,Torgersen,38.7,19,195,3450,FEMALE +Adelie,Torgersen,42.5,20.7,197,4500,MALE +Adelie,Torgersen,34.4,18.4,184,3325,FEMALE +Adelie,Torgersen,46,21.5,194,4200,MALE +Adelie,Biscoe,37.8,18.3,174,3400,FEMALE +Adelie,Biscoe,37.7,18.7,180,3600,MALE +Adelie,Biscoe,35.9,19.2,189,3800,FEMALE +Adelie,Biscoe,38.2,18.1,185,3950,MALE +Adelie,Biscoe,38.8,17.2,180,3800,MALE +Adelie,Biscoe,35.3,18.9,187,3800,FEMALE +Adelie,Biscoe,40.6,18.6,183,3550,MALE +Adelie,Biscoe,40.5,17.9,187,3200,FEMALE +Adelie,Biscoe,37.9,18.6,172,3150,FEMALE +Adelie,Biscoe,40.5,18.9,180,3950,MALE +Adelie,Dream,39.5,16.7,178,3250,FEMALE +Adelie,Dream,37.2,18.1,178,3900,MALE +Adelie,Dream,39.5,17.8,188,3300,FEMALE +Adelie,Dream,40.9,18.9,184,3900,MALE +Adelie,Dream,36.4,17,195,3325,FEMALE +Adelie,Dream,39.2,21.1,196,4150,MALE +Adelie,Dream,38.8,20,190,3950,MALE +Adelie,Dream,42.2,18.5,180,3550,FEMALE +Adelie,Dream,37.6,19.3,181,3300,FEMALE +Adelie,Dream,39.8,19.1,184,4650,MALE +Adelie,Dream,36.5,18,182,3150,FEMALE +Adelie,Dream,40.8,18.4,195,3900,MALE +Adelie,Dream,36,18.5,186,3100,FEMALE +Adelie,Dream,44.1,19.7,196,4400,MALE +Adelie,Dream,37,16.9,185,3000,FEMALE +Adelie,Dream,39.6,18.8,190,4600,MALE +Adelie,Dream,41.1,19,182,3425,MALE +Adelie,Dream,37.5,18.9,179,2975, +Adelie,Dream,36,17.9,190,3450,FEMALE +Adelie,Dream,42.3,21.2,191,4150,MALE +Adelie,Biscoe,39.6,17.7,186,3500,FEMALE +Adelie,Biscoe,40.1,18.9,188,4300,MALE +Adelie,Biscoe,35,17.9,190,3450,FEMALE +Adelie,Biscoe,42,19.5,200,4050,MALE +Adelie,Biscoe,34.5,18.1,187,2900,FEMALE +Adelie,Biscoe,41.4,18.6,191,3700,MALE +Adelie,Biscoe,39,17.5,186,3550,FEMALE +Adelie,Biscoe,40.6,18.8,193,3800,MALE +Adelie,Biscoe,36.5,16.6,181,2850,FEMALE +Adelie,Biscoe,37.6,19.1,194,3750,MALE +Adelie,Biscoe,35.7,16.9,185,3150,FEMALE +Adelie,Biscoe,41.3,21.1,195,4400,MALE +Adelie,Biscoe,37.6,17,185,3600,FEMALE +Adelie,Biscoe,41.1,18.2,192,4050,MALE +Adelie,Biscoe,36.4,17.1,184,2850,FEMALE +Adelie,Biscoe,41.6,18,192,3950,MALE +Adelie,Biscoe,35.5,16.2,195,3350,FEMALE +Adelie,Biscoe,41.1,19.1,188,4100,MALE +Adelie,Torgersen,35.9,16.6,190,3050,FEMALE +Adelie,Torgersen,41.8,19.4,198,4450,MALE +Adelie,Torgersen,33.5,19,190,3600,FEMALE +Adelie,Torgersen,39.7,18.4,190,3900,MALE +Adelie,Torgersen,39.6,17.2,196,3550,FEMALE +Adelie,Torgersen,45.8,18.9,197,4150,MALE +Adelie,Torgersen,35.5,17.5,190,3700,FEMALE +Adelie,Torgersen,42.8,18.5,195,4250,MALE +Adelie,Torgersen,40.9,16.8,191,3700,FEMALE +Adelie,Torgersen,37.2,19.4,184,3900,MALE +Adelie,Torgersen,36.2,16.1,187,3550,FEMALE +Adelie,Torgersen,42.1,19.1,195,4000,MALE +Adelie,Torgersen,34.6,17.2,189,3200,FEMALE +Adelie,Torgersen,42.9,17.6,196,4700,MALE +Adelie,Torgersen,36.7,18.8,187,3800,FEMALE +Adelie,Torgersen,35.1,19.4,193,4200,MALE +Adelie,Dream,37.3,17.8,191,3350,FEMALE +Adelie,Dream,41.3,20.3,194,3550,MALE +Adelie,Dream,36.3,19.5,190,3800,MALE +Adelie,Dream,36.9,18.6,189,3500,FEMALE +Adelie,Dream,38.3,19.2,189,3950,MALE +Adelie,Dream,38.9,18.8,190,3600,FEMALE +Adelie,Dream,35.7,18,202,3550,FEMALE +Adelie,Dream,41.1,18.1,205,4300,MALE +Adelie,Dream,34,17.1,185,3400,FEMALE +Adelie,Dream,39.6,18.1,186,4450,MALE +Adelie,Dream,36.2,17.3,187,3300,FEMALE +Adelie,Dream,40.8,18.9,208,4300,MALE +Adelie,Dream,38.1,18.6,190,3700,FEMALE +Adelie,Dream,40.3,18.5,196,4350,MALE +Adelie,Dream,33.1,16.1,178,2900,FEMALE +Adelie,Dream,43.2,18.5,192,4100,MALE +Adelie,Biscoe,35,17.9,192,3725,FEMALE +Adelie,Biscoe,41,20,203,4725,MALE +Adelie,Biscoe,37.7,16,183,3075,FEMALE +Adelie,Biscoe,37.8,20,190,4250,MALE +Adelie,Biscoe,37.9,18.6,193,2925,FEMALE +Adelie,Biscoe,39.7,18.9,184,3550,MALE +Adelie,Biscoe,38.6,17.2,199,3750,FEMALE +Adelie,Biscoe,38.2,20,190,3900,MALE +Adelie,Biscoe,38.1,17,181,3175,FEMALE +Adelie,Biscoe,43.2,19,197,4775,MALE +Adelie,Biscoe,38.1,16.5,198,3825,FEMALE +Adelie,Biscoe,45.6,20.3,191,4600,MALE +Adelie,Biscoe,39.7,17.7,193,3200,FEMALE +Adelie,Biscoe,42.2,19.5,197,4275,MALE +Adelie,Biscoe,39.6,20.7,191,3900,FEMALE +Adelie,Biscoe,42.7,18.3,196,4075,MALE +Adelie,Torgersen,38.6,17,188,2900,FEMALE +Adelie,Torgersen,37.3,20.5,199,3775,MALE +Adelie,Torgersen,35.7,17,189,3350,FEMALE +Adelie,Torgersen,41.1,18.6,189,3325,MALE +Adelie,Torgersen,36.2,17.2,187,3150,FEMALE +Adelie,Torgersen,37.7,19.8,198,3500,MALE +Adelie,Torgersen,40.2,17,176,3450,FEMALE +Adelie,Torgersen,41.4,18.5,202,3875,MALE +Adelie,Torgersen,35.2,15.9,186,3050,FEMALE +Adelie,Torgersen,40.6,19,199,4000,MALE +Adelie,Torgersen,38.8,17.6,191,3275,FEMALE +Adelie,Torgersen,41.5,18.3,195,4300,MALE +Adelie,Torgersen,39,17.1,191,3050,FEMALE +Adelie,Torgersen,44.1,18,210,4000,MALE +Adelie,Torgersen,38.5,17.9,190,3325,FEMALE +Adelie,Torgersen,43.1,19.2,197,3500,MALE +Adelie,Dream,36.8,18.5,193,3500,FEMALE +Adelie,Dream,37.5,18.5,199,4475,MALE +Adelie,Dream,38.1,17.6,187,3425,FEMALE +Adelie,Dream,41.1,17.5,190,3900,MALE +Adelie,Dream,35.6,17.5,191,3175,FEMALE +Adelie,Dream,40.2,20.1,200,3975,MALE +Adelie,Dream,37,16.5,185,3400,FEMALE +Adelie,Dream,39.7,17.9,193,4250,MALE +Adelie,Dream,40.2,17.1,193,3400,FEMALE +Adelie,Dream,40.6,17.2,187,3475,MALE +Adelie,Dream,32.1,15.5,188,3050,FEMALE +Adelie,Dream,40.7,17,190,3725,MALE +Adelie,Dream,37.3,16.8,192,3000,FEMALE +Adelie,Dream,39,18.7,185,3650,MALE +Adelie,Dream,39.2,18.6,190,4250,MALE +Adelie,Dream,36.6,18.4,184,3475,FEMALE +Adelie,Dream,36,17.8,195,3450,FEMALE +Adelie,Dream,37.8,18.1,193,3750,MALE +Adelie,Dream,36,17.1,187,3700,FEMALE +Adelie,Dream,41.5,18.5,201,4000,MALE +Chinstrap,Dream,46.5,17.9,192,3500,FEMALE +Chinstrap,Dream,50,19.5,196,3900,MALE +Chinstrap,Dream,51.3,19.2,193,3650,MALE +Chinstrap,Dream,45.4,18.7,188,3525,FEMALE +Chinstrap,Dream,52.7,19.8,197,3725,MALE +Chinstrap,Dream,45.2,17.8,198,3950,FEMALE +Chinstrap,Dream,46.1,18.2,178,3250,FEMALE +Chinstrap,Dream,51.3,18.2,197,3750,MALE +Chinstrap,Dream,46,18.9,195,4150,FEMALE +Chinstrap,Dream,51.3,19.9,198,3700,MALE +Chinstrap,Dream,46.6,17.8,193,3800,FEMALE +Chinstrap,Dream,51.7,20.3,194,3775,MALE +Chinstrap,Dream,47,17.3,185,3700,FEMALE +Chinstrap,Dream,52,18.1,201,4050,MALE +Chinstrap,Dream,45.9,17.1,190,3575,FEMALE +Chinstrap,Dream,50.5,19.6,201,4050,MALE +Chinstrap,Dream,50.3,20,197,3300,MALE +Chinstrap,Dream,58,17.8,181,3700,FEMALE +Chinstrap,Dream,46.4,18.6,190,3450,FEMALE +Chinstrap,Dream,49.2,18.2,195,4400,MALE +Chinstrap,Dream,42.4,17.3,181,3600,FEMALE +Chinstrap,Dream,48.5,17.5,191,3400,MALE +Chinstrap,Dream,43.2,16.6,187,2900,FEMALE +Chinstrap,Dream,50.6,19.4,193,3800,MALE +Chinstrap,Dream,46.7,17.9,195,3300,FEMALE +Chinstrap,Dream,52,19,197,4150,MALE +Chinstrap,Dream,50.5,18.4,200,3400,FEMALE +Chinstrap,Dream,49.5,19,200,3800,MALE +Chinstrap,Dream,46.4,17.8,191,3700,FEMALE +Chinstrap,Dream,52.8,20,205,4550,MALE +Chinstrap,Dream,40.9,16.6,187,3200,FEMALE +Chinstrap,Dream,54.2,20.8,201,4300,MALE +Chinstrap,Dream,42.5,16.7,187,3350,FEMALE +Chinstrap,Dream,51,18.8,203,4100,MALE +Chinstrap,Dream,49.7,18.6,195,3600,MALE +Chinstrap,Dream,47.5,16.8,199,3900,FEMALE +Chinstrap,Dream,47.6,18.3,195,3850,FEMALE +Chinstrap,Dream,52,20.7,210,4800,MALE +Chinstrap,Dream,46.9,16.6,192,2700,FEMALE +Chinstrap,Dream,53.5,19.9,205,4500,MALE +Chinstrap,Dream,49,19.5,210,3950,MALE +Chinstrap,Dream,46.2,17.5,187,3650,FEMALE +Chinstrap,Dream,50.9,19.1,196,3550,MALE +Chinstrap,Dream,45.5,17,196,3500,FEMALE +Chinstrap,Dream,50.9,17.9,196,3675,FEMALE +Chinstrap,Dream,50.8,18.5,201,4450,MALE +Chinstrap,Dream,50.1,17.9,190,3400,FEMALE +Chinstrap,Dream,49,19.6,212,4300,MALE +Chinstrap,Dream,51.5,18.7,187,3250,MALE +Chinstrap,Dream,49.8,17.3,198,3675,FEMALE +Chinstrap,Dream,48.1,16.4,199,3325,FEMALE +Chinstrap,Dream,51.4,19,201,3950,MALE +Chinstrap,Dream,45.7,17.3,193,3600,FEMALE +Chinstrap,Dream,50.7,19.7,203,4050,MALE +Chinstrap,Dream,42.5,17.3,187,3350,FEMALE +Chinstrap,Dream,52.2,18.8,197,3450,MALE +Chinstrap,Dream,45.2,16.6,191,3250,FEMALE +Chinstrap,Dream,49.3,19.9,203,4050,MALE +Chinstrap,Dream,50.2,18.8,202,3800,MALE +Chinstrap,Dream,45.6,19.4,194,3525,FEMALE +Chinstrap,Dream,51.9,19.5,206,3950,MALE +Chinstrap,Dream,46.8,16.5,189,3650,FEMALE +Chinstrap,Dream,45.7,17,195,3650,FEMALE +Chinstrap,Dream,55.8,19.8,207,4000,MALE +Chinstrap,Dream,43.5,18.1,202,3400,FEMALE +Chinstrap,Dream,49.6,18.2,193,3775,MALE +Chinstrap,Dream,50.8,19,210,4100,MALE +Chinstrap,Dream,50.2,18.7,198,3775,FEMALE +Gentoo,Biscoe,46.1,13.2,211,4500,FEMALE +Gentoo,Biscoe,50,16.3,230,5700,MALE +Gentoo,Biscoe,48.7,14.1,210,4450,FEMALE +Gentoo,Biscoe,50,15.2,218,5700,MALE +Gentoo,Biscoe,47.6,14.5,215,5400,MALE +Gentoo,Biscoe,46.5,13.5,210,4550,FEMALE +Gentoo,Biscoe,45.4,14.6,211,4800,FEMALE +Gentoo,Biscoe,46.7,15.3,219,5200,MALE +Gentoo,Biscoe,43.3,13.4,209,4400,FEMALE +Gentoo,Biscoe,46.8,15.4,215,5150,MALE +Gentoo,Biscoe,40.9,13.7,214,4650,FEMALE +Gentoo,Biscoe,49,16.1,216,5550,MALE +Gentoo,Biscoe,45.5,13.7,214,4650,FEMALE +Gentoo,Biscoe,48.4,14.6,213,5850,MALE +Gentoo,Biscoe,45.8,14.6,210,4200,FEMALE +Gentoo,Biscoe,49.3,15.7,217,5850,MALE +Gentoo,Biscoe,42,13.5,210,4150,FEMALE +Gentoo,Biscoe,49.2,15.2,221,6300,MALE +Gentoo,Biscoe,46.2,14.5,209,4800,FEMALE +Gentoo,Biscoe,48.7,15.1,222,5350,MALE +Gentoo,Biscoe,50.2,14.3,218,5700,MALE +Gentoo,Biscoe,45.1,14.5,215,5000,FEMALE +Gentoo,Biscoe,46.5,14.5,213,4400,FEMALE +Gentoo,Biscoe,46.3,15.8,215,5050,MALE +Gentoo,Biscoe,42.9,13.1,215,5000,FEMALE +Gentoo,Biscoe,46.1,15.1,215,5100,MALE +Gentoo,Biscoe,44.5,14.3,216,4100, +Gentoo,Biscoe,47.8,15,215,5650,MALE +Gentoo,Biscoe,48.2,14.3,210,4600,FEMALE +Gentoo,Biscoe,50,15.3,220,5550,MALE +Gentoo,Biscoe,47.3,15.3,222,5250,MALE +Gentoo,Biscoe,42.8,14.2,209,4700,FEMALE +Gentoo,Biscoe,45.1,14.5,207,5050,FEMALE +Gentoo,Biscoe,59.6,17,230,6050,MALE +Gentoo,Biscoe,49.1,14.8,220,5150,FEMALE +Gentoo,Biscoe,48.4,16.3,220,5400,MALE +Gentoo,Biscoe,42.6,13.7,213,4950,FEMALE +Gentoo,Biscoe,44.4,17.3,219,5250,MALE +Gentoo,Biscoe,44,13.6,208,4350,FEMALE +Gentoo,Biscoe,48.7,15.7,208,5350,MALE +Gentoo,Biscoe,42.7,13.7,208,3950,FEMALE +Gentoo,Biscoe,49.6,16,225,5700,MALE +Gentoo,Biscoe,45.3,13.7,210,4300,FEMALE +Gentoo,Biscoe,49.6,15,216,4750,MALE +Gentoo,Biscoe,50.5,15.9,222,5550,MALE +Gentoo,Biscoe,43.6,13.9,217,4900,FEMALE +Gentoo,Biscoe,45.5,13.9,210,4200,FEMALE +Gentoo,Biscoe,50.5,15.9,225,5400,MALE +Gentoo,Biscoe,44.9,13.3,213,5100,FEMALE +Gentoo,Biscoe,45.2,15.8,215,5300,MALE +Gentoo,Biscoe,46.6,14.2,210,4850,FEMALE +Gentoo,Biscoe,48.5,14.1,220,5300,MALE +Gentoo,Biscoe,45.1,14.4,210,4400,FEMALE +Gentoo,Biscoe,50.1,15,225,5000,MALE +Gentoo,Biscoe,46.5,14.4,217,4900,FEMALE +Gentoo,Biscoe,45,15.4,220,5050,MALE +Gentoo,Biscoe,43.8,13.9,208,4300,FEMALE +Gentoo,Biscoe,45.5,15,220,5000,MALE +Gentoo,Biscoe,43.2,14.5,208,4450,FEMALE +Gentoo,Biscoe,50.4,15.3,224,5550,MALE +Gentoo,Biscoe,45.3,13.8,208,4200,FEMALE +Gentoo,Biscoe,46.2,14.9,221,5300,MALE +Gentoo,Biscoe,45.7,13.9,214,4400,FEMALE +Gentoo,Biscoe,54.3,15.7,231,5650,MALE +Gentoo,Biscoe,45.8,14.2,219,4700,FEMALE +Gentoo,Biscoe,49.8,16.8,230,5700,MALE +Gentoo,Biscoe,46.2,14.4,214,4650, +Gentoo,Biscoe,49.5,16.2,229,5800,MALE +Gentoo,Biscoe,43.5,14.2,220,4700,FEMALE +Gentoo,Biscoe,50.7,15,223,5550,MALE +Gentoo,Biscoe,47.7,15,216,4750,FEMALE +Gentoo,Biscoe,46.4,15.6,221,5000,MALE +Gentoo,Biscoe,48.2,15.6,221,5100,MALE +Gentoo,Biscoe,46.5,14.8,217,5200,FEMALE +Gentoo,Biscoe,46.4,15,216,4700,FEMALE +Gentoo,Biscoe,48.6,16,230,5800,MALE +Gentoo,Biscoe,47.5,14.2,209,4600,FEMALE +Gentoo,Biscoe,51.1,16.3,220,6000,MALE +Gentoo,Biscoe,45.2,13.8,215,4750,FEMALE +Gentoo,Biscoe,45.2,16.4,223,5950,MALE +Gentoo,Biscoe,49.1,14.5,212,4625,FEMALE +Gentoo,Biscoe,52.5,15.6,221,5450,MALE +Gentoo,Biscoe,47.4,14.6,212,4725,FEMALE +Gentoo,Biscoe,50,15.9,224,5350,MALE +Gentoo,Biscoe,44.9,13.8,212,4750,FEMALE +Gentoo,Biscoe,50.8,17.3,228,5600,MALE +Gentoo,Biscoe,43.4,14.4,218,4600,FEMALE +Gentoo,Biscoe,51.3,14.2,218,5300,MALE +Gentoo,Biscoe,47.5,14,212,4875,FEMALE +Gentoo,Biscoe,52.1,17,230,5550,MALE +Gentoo,Biscoe,47.5,15,218,4950,FEMALE +Gentoo,Biscoe,52.2,17.1,228,5400,MALE +Gentoo,Biscoe,45.5,14.5,212,4750,FEMALE +Gentoo,Biscoe,49.5,16.1,224,5650,MALE +Gentoo,Biscoe,44.5,14.7,214,4850,FEMALE +Gentoo,Biscoe,50.8,15.7,226,5200,MALE +Gentoo,Biscoe,49.4,15.8,216,4925,MALE +Gentoo,Biscoe,46.9,14.6,222,4875,FEMALE +Gentoo,Biscoe,48.4,14.4,203,4625,FEMALE +Gentoo,Biscoe,51.1,16.5,225,5250,MALE +Gentoo,Biscoe,48.5,15,219,4850,FEMALE +Gentoo,Biscoe,55.9,17,228,5600,MALE +Gentoo,Biscoe,47.2,15.5,215,4975,FEMALE +Gentoo,Biscoe,49.1,15,228,5500,MALE +Gentoo,Biscoe,47.3,13.8,216,4725, +Gentoo,Biscoe,46.8,16.1,215,5500,MALE +Gentoo,Biscoe,41.7,14.7,210,4700,FEMALE +Gentoo,Biscoe,53.4,15.8,219,5500,MALE +Gentoo,Biscoe,43.3,14,208,4575,FEMALE +Gentoo,Biscoe,48.1,15.1,209,5500,MALE +Gentoo,Biscoe,50.5,15.2,216,5000,FEMALE +Gentoo,Biscoe,49.8,15.9,229,5950,MALE +Gentoo,Biscoe,43.5,15.2,213,4650,FEMALE +Gentoo,Biscoe,51.5,16.3,230,5500,MALE +Gentoo,Biscoe,46.2,14.1,217,4375,FEMALE +Gentoo,Biscoe,55.1,16,230,5850,MALE +Gentoo,Biscoe,44.5,15.7,217,4875, +Gentoo,Biscoe,48.8,16.2,222,6000,MALE +Gentoo,Biscoe,47.2,13.7,214,4925,FEMALE +Gentoo,Biscoe,46.8,14.3,215,4850,FEMALE +Gentoo,Biscoe,50.4,15.7,222,5750,MALE +Gentoo,Biscoe,45.2,14.8,212,5200,FEMALE +Gentoo,Biscoe,49.9,16.1,213,5400,MALE diff --git a/examples/loader-r-to-zip/src/index.md b/examples/loader-r-to-zip/src/index.md new file mode 100644 index 000000000..d220a6139 --- /dev/null +++ b/examples/loader-r-to-zip/src/index.md @@ -0,0 +1,66 @@ +# R data loader to generate a ZIP archive + +The data loader below reads in the [penguins data](https://journal.r-project.org/articles/RJ-2022-020/) from a local file, performs multiple linear regressions, then outputs multiple files (with model estimates and predictions) as a ZIP archive. + +```r +# Attach required packages (must be installed) +library(readr) +library(tidyr) +library(dplyr) +library(broom) + +# Data access, wrangling and analysis +penguins <- read_csv("src/data/penguins.csv") |> + drop_na(body_mass_g, species, sex, flipper_length_mm, culmen_depth_mm) + +penguins_mlr <- lm(body_mass_g ~ species + sex + flipper_length_mm + culmen_depth_mm, data = penguins) + +mlr_est <- tidy(penguins_mlr) + +mlr_fit <- penguins |> + mutate( + body_mass_g_predict = penguins_mlr$fitted.values, + body_mass_g_residual = penguins_mlr$residuals + ) + +# Write the data frames as CSVs to a temporary directory +setwd(tempdir()) +write_csv(mlr_est, "estimates.csv") +write_csv(mlr_fit, "predictions.csv") + +# Zip the contents of the temporary directory +system("zip - -r .") +``` + +
+ +To run this data loader, you’ll need R installed, along with the readr, tidyr, dplyr, and broom packages, _e.g._ using `install.packages("dplyr")`. + +
+ +The system function invokes the system command `"zip - -r ."`, where: + +- `zip` is the command for zipping files +- `-` means the archive is output to standard output (required for data loaders) +- `-r`, the recursive option, means all files are added to the zip archive +- `.` compresses the current working directory + +Access individual files (`estimates.csv`, or `predictions.csv`) from the generated ZIP archive using FileAttachment: + +```js echo +const modelEstimates = FileAttachment("data/penguin-mlr/estimates.csv").csv({typed: true}); +``` + +```js echo +const modelPredictions = FileAttachment("data/penguin-mlr/predictions.csv").csv({typed: true}); +``` + +We can quickly display the model estimates and predictions using [Inputs.table](https://observablehq.com/framework/inputs/table): + +```js echo +Inputs.table(modelEstimates) +``` + +```js echo +Inputs.table(modelPredictions) +``` diff --git a/examples/loader-rust-to-json/.gitignore b/examples/loader-rust-to-json/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/loader-rust-to-json/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-rust-to-json/README.md b/examples/loader-rust-to-json/README.md new file mode 100644 index 000000000..5f7816acd --- /dev/null +++ b/examples/loader-rust-to-json/README.md @@ -0,0 +1,9 @@ +[Framework examples →](../) + +# Rust data loader to generate JSON + +View live: + +This Observable Framework example demonstrates how to write a data loader in Rust that runs a Monte Carlo simulation of poker hands, calculates statistics about how often each category of hand was found, then outputs JSON. + +The data loader lives in [`src/data/poker.json.rs`](./src/data/poker.json.rs). diff --git a/examples/loader-rust-to-json/observablehq.config.js b/examples/loader-rust-to-json/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-rust-to-json/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-rust-to-json/package.json b/examples/loader-rust-to-json/package.json new file mode 100644 index 000000000..89cc560df --- /dev/null +++ b/examples/loader-rust-to-json/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.8.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/loader-rust-to-json/src/.gitignore b/examples/loader-rust-to-json/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-rust-to-json/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-rust-to-json/src/data/poker-ts.json.ts b/examples/loader-rust-to-json/src/data/poker-ts.json.ts new file mode 100644 index 000000000..179ebbcc7 --- /dev/null +++ b/examples/loader-rust-to-json/src/data/poker-ts.json.ts @@ -0,0 +1,141 @@ +import {max, min, rollup, sort} from "d3-array"; + +function main() { + const COUNT = 100_000; + const start = performance.now(); + + const counts = Array.from({length: COUNT}) + // Calculate the category of random hands + .map(() => { + const hand = Hand.random(); + // Convert the category into a one-element hashmap, so the reducer + // can sum up all the counts for each category. + return {[hand.categorize()]: 1}; + }) + // count up each category + .reduce((acc, next) => { + for (const [category, count] of Object.entries(next)) { + acc[category] = (acc[category] ?? 0) + count; + } + return acc; + }, {}); + + const tidyData = sort( + Object.entries(counts).map(([category, count]) => ({category, count})), + (d) => d.category + ); + + process.stdout.write( + JSON.stringify({ + summary: tidyData, + meta: {count: COUNT, duration_ms: performance.now() - start} + }) + ); +} + +// Here, we create types for the domain model of a poker hand. Working with +// specific types helps makes the rest of the code simpler. + +class Hand { + constructor(public cards: Card[]) {} + + static random(): Hand { + const cards: Card[] = []; + while (cards.length < 5) { + const rank = Math.floor(Math.random() * 13 + 1); + const suitRand = Math.random(); + const suit = + suitRand < 0.25 ? Suit.Clubs : suitRand < 0.5 ? Suit.Diamonds : suitRand < 0.75 ? Suit.Hearts : Suit.Spades; + const card = {rank, suit}; + if (cards.some((c) => c.rank === card.rank && c.suit === card.suit)) { + continue; + } + cards.push(card); + } + return new Hand(cards); + } + + categorize(): HandCategory { + const rankCounts = rollup( + this.cards, + (ds) => ds.length, + (d) => d.rank + ); + const suitCounts = rollup( + this.cards, + (ds) => ds.length, + (d) => d.rank + ); + + const isFlush = suitCounts.size == 1; + + let isStraight; + + if (this.cards.some((c) => c.rank == 1)) { + // Handle aces + const minRank = min( + this.cards.filter((c) => c.rank !== 1), + (d) => d.rank + ); + const maxRank = max( + this.cards.filter((c) => c.rank !== 1), + (d) => d.rank + ); + isStraight = (minRank == 2 && maxRank == 5) || (minRank == 10 && maxRank == 13); + } else { + const minRank = min(this.cards, (d) => d.rank); + const maxRank = max(this.cards, (d) => d.rank); + isStraight = maxRank! - minRank! === this.cards.length - 1; + } + + if (isFlush && isStraight) { + return HandCategory.StraightFlush; + } else if (Array.from(rankCounts.values()).some((count) => count === 4)) { + return HandCategory.FourOfAKind; + } else if ( + Array.from(rankCounts.values()).some((count) => count === 3) && + Array.from(rankCounts.values()).some((count) => count === 2) + ) { + return HandCategory.FullHouse; + } else if (isFlush) { + return HandCategory.Flush; + } else if (isStraight) { + return HandCategory.Straight; + } else if (Array.from(rankCounts.values()).some((count) => count === 3)) { + return HandCategory.ThreeOfAKind; + } else if ( + Array.from(rankCounts.values()) + .filter((count) => count === 2) + .length == 2 + ) { + return HandCategory.TwoPair; + } else if (Array.from(rankCounts.values()).some((count) => count === 2)) { + return HandCategory.OnePair; + } else { + return HandCategory.HighCard; + } + } +} + +type Card = {rank: number; suit: Suit}; + +enum Suit { + Clubs, + Diamonds, + Hearts, + Spades +} + +enum HandCategory { + HighCard = "HighCard", + OnePair = "OnePair", + TwoPair = "TwoPair", + ThreeOfAKind = "ThreeOfAKind", + Straight = "Straight", + Flush = "Flush", + FullHouse = "FullHouse", + FourOfAKind = "FourOfAKind", + StraightFlush = "StraightFlush" +} + +main(); diff --git a/examples/loader-rust-to-json/src/data/poker.json.rs b/examples/loader-rust-to-json/src/data/poker.json.rs new file mode 100644 index 000000000..98928ff25 --- /dev/null +++ b/examples/loader-rust-to-json/src/data/poker.json.rs @@ -0,0 +1,162 @@ +//! Since Framework uses rust-script, we can define dependencies here. +//! +//! ```cargo +//! [dependencies] +//! serde = { version = "1.0.203", features = ["derive"] } +//! serde_json = "1.0.117" +//! rand = "0.8.5" +//! rayon = "1.10.0" +//! ``` + +use rand::Rng; +use rayon::prelude::*; +use serde::Serialize; +use serde_json::json; +use std::collections::HashMap; + +fn main() { + const COUNT: u32 = 10_000_000; + let start = std::time::Instant::now(); + + let counts = (0..COUNT) + // This line breaks the work up into multiple parallel jobs. + .into_par_iter() + // Calculate the category of random hands + .map(|_| { + let hand = Hand::random(); + // Convert the category into a one-element hashmap, so the reducer + // can sum up all the counts for each category. + let mut map = HashMap::new(); + map.insert(hand.categorize(), 1); + map + }) + // count up each category + .reduce( + || HashMap::with_capacity(10), + |mut acc, map| { + for (category, count) in map { + *acc.entry(category).or_insert(0) += count; + } + acc + }, + ); + + let mut tidy_data = counts + .into_iter() + .map(|(category, count)| SummaryRow { category, count }) + .collect::>(); + tidy_data.sort_by_key(|data| data.category); + + serde_json::to_writer(std::io::stdout(), &json!({ + "summary": tidy_data, + "meta": { "count": COUNT, "duration_ms": start.elapsed().as_millis() }, + })).unwrap(); +} + +// Here, we create types for the domain model of a poker hand. Working with +// specific types helps makes the rest of the code simpler. + +#[derive(Debug, Clone, Serialize)] +struct SummaryRow { + category: HandCategory, + count: u32, +} + +#[derive(Debug, PartialEq, Clone, Serialize)] +struct Hand(Vec); + +#[derive(Debug, PartialEq, Clone, Copy, Serialize)] +struct Card { + /// 1 is an Ace, 2-10 are the numbered cards, 11 is Jack, 12 is Queen, 13 is King. + rank: u8, + suit: Suit, +} + +#[derive(Debug, PartialEq, Eq, Clone, Copy, Serialize, Hash)] +enum Suit { + Clubs, + Diamonds, + Hearts, + Spades, +} + +#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy, Serialize)] +enum HandCategory { + HighCard, + OnePair, + TwoPair, + ThreeOfAKind, + Straight, + Flush, + FullHouse, + FourOfAKind, + StraightFlush, +} + +// With the data domain specified, we can write the logic to generate hands and categorize them. + +impl Hand { + /// Generate a random 5 card hand + fn random() -> Self { + let mut rng = rand::thread_rng(); + let mut cards = Vec::with_capacity(5); + while cards.len() < 5 { + let rank = rng.gen_range(1..=13); + let suit = match rng.gen_range(0..4) { + 0 => Suit::Clubs, + 1 => Suit::Diamonds, + 2 => Suit::Hearts, + 3 => Suit::Spades, + _ => unreachable!(), + }; + let card = Card { rank, suit }; + if cards.iter().any(|&c| c == card) { continue }; + cards.push(card); + } + Self(cards) + } + + fn categorize(&self) -> HandCategory { + let rank_counts = self.0.iter().fold(HashMap::new(), |mut acc, card| { + *acc.entry(card.rank).or_insert(0) += 1; + acc + }); + let suit_counts = self.0.iter().fold(HashMap::new(), |mut acc, card| { + *acc.entry(card.suit).or_insert(0) += 1; + acc + }); + let is_flush = suit_counts.len() == 1; + let is_straight = if self.0.iter().any(|card| card.rank == 1) { + // Handle aces + let min_rank = self.0.iter().map(|card| card.rank).filter(|&rank| rank != 1).min().unwrap(); + let max_rank = self.0.iter().map(|card| card.rank).filter(|&rank| rank != 1).max().unwrap(); + (min_rank == 2 && max_rank == 5) || (min_rank == 10 && max_rank == 13) + } else { + let min_rank = self.0.iter().map(|card| card.rank).min().unwrap(); + let max_rank = self.0.iter().map(|card| card.rank).max().unwrap(); + (max_rank - min_rank) as usize == self.0.len() - 1 + }; + + if is_flush && is_straight { + HandCategory::StraightFlush + } else if rank_counts.values().any(|&count| count == 4) { + HandCategory::FourOfAKind + } else if rank_counts.values().any(|&count| count == 3) + && rank_counts.values().any(|&count| count == 2) + { + HandCategory::FullHouse + } else if is_flush { + HandCategory::Flush + } else if is_straight { + HandCategory::Straight + } else if rank_counts.values().any(|&count| count == 3) { + HandCategory::ThreeOfAKind + } else if rank_counts.values().filter(|&&count| count == 2).count() == 2 { + HandCategory::TwoPair + } else if rank_counts.values().any(|&count| count == 2) { + HandCategory::OnePair + } else { + HandCategory::HighCard + } + } +} diff --git a/examples/loader-rust-to-json/src/index.md b/examples/loader-rust-to-json/src/index.md new file mode 100644 index 000000000..2f3f9e07d --- /dev/null +++ b/examples/loader-rust-to-json/src/index.md @@ -0,0 +1,247 @@ +# Rust data loader to generate JSON + +Here’s a Rust data loader that simulates many hands of poker via Monte Carlo simulation, calculates statistics about how often each category of hand was found, then outputs JSON. + +```rust +#!/usr/bin/env rust-script +//! Since Framework uses rust-script, we can define dependencies here. +//! +//! ```cargo +//! [dependencies] +//! serde = { version = "1.0.203", features = ["derive"] } +//! serde_json = "1.0.117" +//! rand = "0.8.5" +//! rayon = "1.10.0" +//! ``` + +use rand::Rng; +use rayon::prelude::*; +use serde::Serialize; +use serde_json::json; +use std::collections::HashMap; + +fn main() { + const COUNT: u32 = 10_000_000; + let start = std::time::Instant::now(); + + let counts = (0..COUNT) + // This line breaks the work up into multiple parallel jobs. + .into_par_iter() + // Calculate the category of random hands + .map(|_| { + let hand = Hand::random(); + // Convert the category into a one-element hashmap, so the reducer + // can sum up all the counts for each category. + let mut map = HashMap::new(); + map.insert(hand.categorize(), 1); + map + }) + // count up each category + .reduce( + || HashMap::with_capacity(10), + |mut acc, map| { + for (category, count) in map { + *acc.entry(category).or_insert(0) += count; + } + acc + }, + ); + + let mut tidy_data = counts + .into_iter() + .map(|(category, count)| SummaryRow { category, count }) + .collect::>(); + tidy_data.sort_by_key(|data| data.category); + + serde_json::to_writer(std::io::stdout(), &json!({ + "summary": tidy_data, + "meta": { "count": COUNT, "duration_ms": start.elapsed().as_millis() }, + })).unwrap(); +} + +// Here, we create types for the domain model of a poker hand. Working with +// specific types helps makes the rest of the code simpler. + +#[derive(Debug, Clone, Serialize)] +struct SummaryRow { + category: HandCategory, + count: u32, +} + +#[derive(Debug, PartialEq, Clone, Serialize)] +struct Hand(Vec); + +#[derive(Debug, PartialEq, Clone, Copy, Serialize)] +struct Card { + /// 1 is an Ace, 2-10 are the numbered cards, 11 is Jack, 12 is Queen, 13 is King. + rank: u8, + suit: Suit, +} + +#[derive(Debug, PartialEq, Eq, Clone, Copy, Serialize, Hash)] +enum Suit { + Clubs, + Diamonds, + Hearts, + Spades, +} + +#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy, Serialize)] +enum HandCategory { + HighCard, + OnePair, + TwoPair, + ThreeOfAKind, + Straight, + Flush, + FullHouse, + FourOfAKind, + StraightFlush, +} + +// With the data domain specified, we can write the logic to generate hands and categorize them. + +impl Hand { + /// Generate a random 5 card hand + fn random() -> Self { + let mut rng = rand::thread_rng(); + let mut cards = Vec::with_capacity(5); + while cards.len() < 5 { + let rank = rng.gen_range(1..=13); + let suit = match rng.gen_range(0..4) { + 0 => Suit::Clubs, + 1 => Suit::Diamonds, + 2 => Suit::Hearts, + 3 => Suit::Spades, + _ => unreachable!(), + }; + let card = Card { rank, suit }; + if cards.iter().any(|&c| c == card) { continue }; + cards.push(card); + } + Self(cards) + } + + fn categorize(&self) -> HandCategory { + let rank_counts = self.0.iter().fold(HashMap::new(), |mut acc, card| { + *acc.entry(card.rank).or_insert(0) += 1; + acc + }); + let suit_counts = self.0.iter().fold(HashMap::new(), |mut acc, card| { + *acc.entry(card.suit).or_insert(0) += 1; + acc + }); + let is_flush = suit_counts.len() == 1; + let is_straight = if self.0.iter().any(|card| card.rank == 1) { + // Handle aces + let min_rank = self.0.iter().map(|card| card.rank).filter(|&rank| rank != 1).min().unwrap(); + let max_rank = self.0.iter().map(|card| card.rank).filter(|&rank| rank != 1).max().unwrap(); + (min_rank == 2 && max_rank == 5) || (min_rank == 10 && max_rank == 13) + } else { + let min_rank = self.0.iter().map(|card| card.rank).min().unwrap(); + let max_rank = self.0.iter().map(|card| card.rank).max().unwrap(); + (max_rank - min_rank) as usize == self.0.len() - 1 + }; + + if is_flush && is_straight { + HandCategory::StraightFlush + } else if rank_counts.values().any(|&count| count == 4) { + HandCategory::FourOfAKind + } else if rank_counts.values().any(|&count| count == 3) + && rank_counts.values().any(|&count| count == 2) + { + HandCategory::FullHouse + } else if is_flush { + HandCategory::Flush + } else if is_straight { + HandCategory::Straight + } else if rank_counts.values().any(|&count| count == 3) { + HandCategory::ThreeOfAKind + } else if rank_counts.values().filter(|&&count| count == 2).count() == 2 { + HandCategory::TwoPair + } else if rank_counts.values().any(|&count| count == 2) { + HandCategory::OnePair + } else { + HandCategory::HighCard + } + } +} +``` + +
+ +To run this data loader, you’ll need [rust-script](https://rust-script.org/) installed. + +
+ +The above data loader lives in [`data/poker.json.rs`](data/poker.json.rs), so we can load the data as `data/poker.json` using `FileAttachment`. + +```js echo +const hands = FileAttachment("data/poker.json").json(); +``` + +```js echo +const handsTs = FileAttachment("data/poker-ts.json").json(); +``` + +
+ +```js +Inputs.table(hands.summary) +``` + +```js +const extrapolatedTsTime = handsTs.meta.duration_ms * (hands.meta.count / handsTs.meta.count); +``` + +
+ +Taking advantage of Rust’s performance and simple parallelism, the data loader above was able to summarize ${hands.meta.count / 1e6} million hands in ${hands.meta.duration_ms.toLocaleString("en-US")} ms. For comparison, an equivalent data loader written in TypeScript (which you can see in `data/poker-ts.json.ts`) would take ${Math.floor(extrapolatedTsTime / 1000).toLocaleString("en-US")} seconds to do the same simulation. + +We can make a quick chart of the poker hands with Plot: + +```js echo +Plot.plot({ + x: {tickFormat: "%", grid: true}, + y: {domain: hands.summary.map(d => d.category)}, + marginLeft: 100, + marginRight: 35, + marks: [ + Plot.ruleX([0]), + Plot.barX(hands.summary, { + x: d => d.count / hands.meta.count, + y: "category", + fill: "category", + }), + Plot.textX(hands.summary, { + x: d => d.count / hands.meta.count, + y: "category", + text: d => formatPercent(d.count / hands.meta.count), + textAnchor: "start", + dx: 2, + }), + ] +}) +``` + +```js echo +/** + * Formats both large and small percentages by adding decimal places + * until there is something besides zeroes, or until the limit is hit. + * Additionally, don't show "100%" for values less than 1. + */ +function formatPercent(x, {maxDecimals = 5} = {}) { + let rv; + for (let decimals = 0; decimals <= maxDecimals; decimals++) { + const f = d3.format(`.${decimals}%`); + const s = f(x); + if (s.match(/[1-9]\.?\d/)) { + rv = s; + break; + } + } + if (!rv) return "0%"; + if (rv.startsWith("100") && x < 1) return "99.9%"; + return rv; +} +``` diff --git a/examples/loader-snowflake/.gitignore b/examples/loader-snowflake/.gitignore new file mode 100644 index 000000000..0210d7df8 --- /dev/null +++ b/examples/loader-snowflake/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +.env +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/loader-snowflake/README.md b/examples/loader-snowflake/README.md new file mode 100644 index 000000000..708438c8a --- /dev/null +++ b/examples/loader-snowflake/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Snowflake data loader + +View live: + +This Observable Framework example demonstrates how to write a TypeScript data loader that runs a query on Snowflake using the [Snowflake Node.js driver](https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver). The data loader lives in [`src/data/api-requests.csv.ts`](./src/data/api-requests.csv.ts) and uses the helper [`src/data/snowflake.ts`](./src/data/snowflake.ts). diff --git a/examples/loader-snowflake/observablehq.config.js b/examples/loader-snowflake/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/loader-snowflake/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/loader-snowflake/package.json b/examples/loader-snowflake/package.json new file mode 100644 index 000000000..15d2803b4 --- /dev/null +++ b/examples/loader-snowflake/package.json @@ -0,0 +1,25 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "d3-dsv": "^3.0.1", + "dotenv": "^16.4.5", + "snowflake-sdk": "~1.9.0" + }, + "devDependencies": { + "@types/d3-dsv": "^3.0.7", + "@types/snowflake-sdk": "^1.6.22", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=20" + } +} diff --git a/examples/loader-snowflake/src/.gitignore b/examples/loader-snowflake/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/loader-snowflake/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/loader-snowflake/src/data/api-requests.csv.ts b/examples/loader-snowflake/src/data/api-requests.csv.ts new file mode 100644 index 000000000..02a3c79b4 --- /dev/null +++ b/examples/loader-snowflake/src/data/api-requests.csv.ts @@ -0,0 +1,22 @@ +import {csvFormat} from "d3-dsv"; +import {run} from "./snowflake.js"; + +const start = new Date("2024-01-01"); +const end = new Date("2024-01-08"); + +process.stdout.write( + csvFormat( + await run((query) => + query( + `SELECT '/' || path AS "path", COUNT(*) AS "count" +FROM fct_api_logs +WHERE time between :1 and :2 +AND STARTSWITH(path, 'document/@d3/') +GROUP BY 1 +HAVING "count" >= 10 +ORDER BY 2 DESC`, + [start, end] + ) + ) + ) +); diff --git a/examples/loader-snowflake/src/data/snowflake.ts b/examples/loader-snowflake/src/data/snowflake.ts new file mode 100644 index 000000000..c6248a379 --- /dev/null +++ b/examples/loader-snowflake/src/data/snowflake.ts @@ -0,0 +1,68 @@ +import "dotenv/config"; +import type {Binds, Connection, ConnectionOptions} from "snowflake-sdk"; +import snowflake from "snowflake-sdk"; + +const { + SNOWFLAKE_ACCOUNT, + SNOWFLAKE_USERNAME, + SNOWFLAKE_PASSWORD, + SNOWFLAKE_DATABASE, + SNOWFLAKE_SCHEMA, + SNOWFLAKE_WAREHOUSE, + SNOWFLAKE_ROLE +} = process.env; + +if (!SNOWFLAKE_ACCOUNT) throw new Error("missing SNOWFLAKE_ACCOUNT"); +if (!SNOWFLAKE_USERNAME) throw new Error("missing SNOWFLAKE_USERNAME"); + +const options: ConnectionOptions = { + account: SNOWFLAKE_ACCOUNT, + username: SNOWFLAKE_USERNAME, + password: SNOWFLAKE_PASSWORD, + database: SNOWFLAKE_DATABASE, + schema: SNOWFLAKE_SCHEMA, + warehouse: SNOWFLAKE_WAREHOUSE, + role: SNOWFLAKE_ROLE +}; + +export async function run(f: (query: (sql: string, params?: Binds) => Promise) => Promise): Promise { + const connection = await connect(options); + try { + return await f((sql, params) => execute(connection, sql, params)); + } finally { + await destroy(connection); + } +} + +async function connect(options: ConnectionOptions): Promise { + const connection = (snowflake as any).createConnection(options); + await new Promise((resolve, reject) => { + connection.connect((error) => { + if (error) return reject(error); + resolve(); + }); + }); + return connection; +} + +async function destroy(connection: Connection): Promise { + await new Promise((resolve, reject) => { + connection.destroy((error) => { + if (error) return reject(error); + resolve(); + }); + }); +} + +async function execute(connection: Connection, sql: string, params?: Binds): Promise { + return await new Promise((resolve, reject) => { + connection.execute({ + sqlText: sql, + binds: params, + complete(error, statement, rows) { + if (error) return reject(error); + resolve(rows!); + } + }); + }); +} diff --git a/examples/loader-snowflake/src/index.md b/examples/loader-snowflake/src/index.md new file mode 100644 index 000000000..125f6e569 --- /dev/null +++ b/examples/loader-snowflake/src/index.md @@ -0,0 +1,139 @@ +# Snowflake data loader + +Here’s a TypeScript data loader that queries Snowflake. + +```ts run=false +import {csvFormat} from "d3-dsv"; +import {run} from "./snowflake.js"; + +const start = new Date("2024-01-01"); +const end = new Date("2024-01-08"); + +process.stdout.write( + csvFormat( + await run((query) => + query( + `SELECT '/' || path AS "path", COUNT(*) AS "count" +FROM fct_api_logs +WHERE time between :1 and :2 +AND STARTSWITH(path, 'document/@d3/') +GROUP BY 1 +HAVING "count" >= 10 +ORDER BY 2 DESC`, + [start, end] + ) + ) + ) +); +``` + +The data loader uses a helper file, `snowflake.ts`, which is a thin wrapper on the `snowflake-sdk` package. This reduces the amount of boilerplate you need to write to issue a query. + +```ts run=false +import "dotenv/config"; +import type {Binds, Connection, ConnectionOptions} from "snowflake-sdk"; +import snowflake from "snowflake-sdk"; + +const { + SNOWFLAKE_ACCOUNT, + SNOWFLAKE_USERNAME, + SNOWFLAKE_PASSWORD, + SNOWFLAKE_DATABASE, + SNOWFLAKE_SCHEMA, + SNOWFLAKE_WAREHOUSE, + SNOWFLAKE_ROLE +} = process.env; + +if (!SNOWFLAKE_ACCOUNT) throw new Error("missing SNOWFLAKE_ACCOUNT"); +if (!SNOWFLAKE_USERNAME) throw new Error("missing SNOWFLAKE_USERNAME"); + +const options: ConnectionOptions = { + account: SNOWFLAKE_ACCOUNT, + username: SNOWFLAKE_USERNAME, + password: SNOWFLAKE_PASSWORD, + database: SNOWFLAKE_DATABASE, + schema: SNOWFLAKE_SCHEMA, + warehouse: SNOWFLAKE_WAREHOUSE, + role: SNOWFLAKE_ROLE +}; + +export async function run(f: (query: (sql: string, params?: Binds) => Promise) => Promise): Promise { + const connection = await connect(options); + try { + return await f((sql, params) => execute(connection, sql, params)); + } finally { + await destroy(connection); + } +} + +async function connect(options: ConnectionOptions): Promise { + const connection = (snowflake as any).createConnection(options); + await new Promise((resolve, reject) => { + connection.connect((error) => { + if (error) return reject(error); + resolve(); + }); + }); + return connection; +} + +async function destroy(connection: Connection): Promise { + await new Promise((resolve, reject) => { + connection.destroy((error) => { + if (error) return reject(error); + resolve(); + }); + }); +} + +async function execute(connection: Connection, sql: string, params?: Binds): Promise { + return await new Promise((resolve, reject) => { + connection.execute({ + sqlText: sql, + binds: params, + complete(error, statement, rows) { + if (error) return reject(error); + resolve(rows!); + } + }); + }); +} +``` + +
+ +To run this data loader, you’ll need to install `snowflake-sdk`, `d3-dsv`, and `dotenv` using your preferred package manager such as npm or Yarn. + +
+ +For the data loader to authenticate with Snowflake, you will need to set several secret environment variable, each with the `SNOWFLAKE_` prefix. If you use GitHub, you can use [secrets in GitHub Actions](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) to set environment variables; other platforms provide similar functionality for continuous deployment. For local development, we use the `dotenv` package, which allows environment variables to be defined in a `.env` file which lives in the project root and looks like this: + +``` +SNOWFLAKE_ACCOUNT="XXX" +SNOWFLAKE_DATABASE="XXX" +SNOWFLAKE_ROLE="XXX" +SNOWFLAKE_SCHEMA="XXX" +SNOWFLAKE_USERNAME="XXX" +SNOWFLAKE_WAREHOUSE="XXX" +SNOWFLAKE_PASSWORD="XXX" +``` + +
+ +The `.env` file should not be committed to your source code repository; keep your credentials secret. + +
+ +Replace each `XXX` above with your credentials. Alternatively, read Snowflake’s [Authenticating connections guide](https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-authenticate) to use a different authentication method. + +The above data loader lives in `data/api-requests.csv.js`, so we can load the data as `data/api-requests.csv`. The `FileAttachment.csv` method parses the file and returns a promise to an array of objects. + +```js echo +const requests = FileAttachment("./data/api-requests.csv").csv({typed: true}); +``` + +The `requests` table has two columns: `path` and `count`. We can display the table using `Inputs.table`. + +```js echo +Inputs.table(requests) +``` diff --git a/examples/markdown-it-container/.gitignore b/examples/markdown-it-container/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/markdown-it-container/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/markdown-it-container/README.md b/examples/markdown-it-container/README.md new file mode 100644 index 000000000..4385432da --- /dev/null +++ b/examples/markdown-it-container/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# markdown-it-container + +View live: + +This Observable Framework example demonstrates how to use the [`markdown-it-container` plugin](https://github.com/markdown-it/markdown-it-container) to create custom containers such as `::: note` in Markdown. The markdown-it plugin is registered in the config file, [`observablehq.config.js`](./observablehq.config.js). diff --git a/examples/markdown-it-container/observablehq.config.js b/examples/markdown-it-container/observablehq.config.js new file mode 100644 index 000000000..19b972db9 --- /dev/null +++ b/examples/markdown-it-container/observablehq.config.js @@ -0,0 +1,12 @@ +import MarkdownItContainer from "markdown-it-container"; + +export default { + root: "src", + + // Register the markdown-it-container plugin. + markdownIt: (md) => + md + .use(MarkdownItContainer, "card") // ::: card + .use(MarkdownItContainer, "tip") // ::: tip + .use(MarkdownItContainer, "warning") // ::: warning +}; diff --git a/examples/markdown-it-container/package.json b/examples/markdown-it-container/package.json new file mode 100644 index 000000000..913ea1859 --- /dev/null +++ b/examples/markdown-it-container/package.json @@ -0,0 +1,21 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "markdown-it-container": "^4.0.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/markdown-it-container/src/.gitignore b/examples/markdown-it-container/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/markdown-it-container/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/markdown-it-container/src/index.md b/examples/markdown-it-container/src/index.md new file mode 100644 index 000000000..4e28c514a --- /dev/null +++ b/examples/markdown-it-container/src/index.md @@ -0,0 +1,50 @@ +# markdown-it-container + +This Framework example demonstrates how to use [`markdown-it-container`](https://github.com/markdown-it/markdown-it-container), which extends Markdown to allow `:::` syntax for styled containers. + +First, install `markdown-it-container` with your preferred package manager such as npm or Yarn. Then, register the plugin using the **markdownIt** config option in your `observablehq.config.js` file. Declare as many custom containers as you like; below, we register three (`card`, `tip`, and `warning` — each corresponding to classes that are built-in to Framework). + +```js run=false +import MarkdownItContainer from "markdown-it-container"; + +export default { + root: "src", + markdownIt: (md) => + md + .use(MarkdownItContainer, "card") // ::: card + .use(MarkdownItContainer, "tip") // ::: tip + .use(MarkdownItContainer, "warning") // ::: warning +}; +``` + +Below are some examples. + +::: card +That’s a _nice_ card, ain’t it? +::: + +```md run=false +::: card +That’s a _nice_ card, ain’t it? +::: +``` + +::: tip +That’s a _nice_ **tip**, ain’t it? +::: + +```md run=false +::: tip +That’s a _nice_ **tip**, ain’t it? +::: +``` + +::: warning +That’s a _nice_ **warning**, ain’t it? +::: + +```md run=false +::: warning +That’s a _nice_ **warning**, ain’t it? +::: +``` diff --git a/examples/markdown-it-footnote/.gitignore b/examples/markdown-it-footnote/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/markdown-it-footnote/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/markdown-it-footnote/README.md b/examples/markdown-it-footnote/README.md new file mode 100644 index 000000000..2fd4172ce --- /dev/null +++ b/examples/markdown-it-footnote/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# markdown-it-footnote + +View live: + +This Observable Framework example demonstrates how to use the [`markdown-it-footnote` plugin](https://github.com/markdown-it/markdown-it-footnote) to create footnotes in Markdown. The markdown-it plugin is registered in the config file, [`observablehq.config.js`](./observablehq.config.js). diff --git a/examples/markdown-it-footnote/observablehq.config.js b/examples/markdown-it-footnote/observablehq.config.js new file mode 100644 index 000000000..6fd991a86 --- /dev/null +++ b/examples/markdown-it-footnote/observablehq.config.js @@ -0,0 +1,8 @@ +import MarkdownItFootnote from "markdown-it-footnote"; + +export default { + root: "src", + + // Register the markdown-it-footnote plugin. + markdownIt: (md) => md.use(MarkdownItFootnote) +}; diff --git a/examples/markdown-it-footnote/package.json b/examples/markdown-it-footnote/package.json new file mode 100644 index 000000000..310a038ee --- /dev/null +++ b/examples/markdown-it-footnote/package.json @@ -0,0 +1,21 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "markdown-it-footnote": "^4.0.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/markdown-it-footnote/src/.gitignore b/examples/markdown-it-footnote/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/markdown-it-footnote/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/markdown-it-footnote/src/index.md b/examples/markdown-it-footnote/src/index.md new file mode 100644 index 000000000..80e9b4e3a --- /dev/null +++ b/examples/markdown-it-footnote/src/index.md @@ -0,0 +1,46 @@ +# markdown-it-footnote + +This Framework example demonstrates how to use [`markdown-it-footnote`](https://github.com/markdown-it/markdown-it-footnote) to create footnotes in Markdown. + +First, install `markdown-it-footnote` with your preferred package manager such as npm or Yarn. Then, register the plugin using the **markdownIt** config option in your `observablehq.config.js` file. + +```js run=false +import MarkdownItFootnote from "markdown-it-footnote"; + +export default { + root: "src", + markdownIt: (md) => md.use(MarkdownItFootnote) +}; +``` + +Below is an example of referencing a footnote. + +Here is a footnote reference,[^1] and another.[^longnote] + +```md run=false +Here is a footnote reference,[^1] and another.[^longnote] +``` + +And here is how you can define the footnotes. + +[^1]: Here is the footnote. +[^longnote]: Here's one with multiple blocks. + + Subsequent paragraphs are indented to show that they + belong to the previous footnote. + +```md run=false +[^1]: Here is the footnote. +[^longnote]: Here's one with multiple blocks. + + Subsequent paragraphs are indented to show that they + belong to the previous footnote. +``` + +Footnotes always appear at the bottom of the page, regardless of where they are defined. The remaining text is gibberish so that the page is taller, allowing you to try clicking on the footnote references to scroll down and then clicking on ther return link to scroll back up again. + +Aliquam porta accumsan eros, ut posuere lorem congue at. Cras lobortis metus sit amet ex ullamcorper lobortis. Donec vitae nulla dictum, cursus nunc auctor, facilisis tellus. Morbi iaculis ex sed nisi tristique, a auctor elit suscipit. Vestibulum varius, massa in laoreet facilisis, quam arcu dictum metus, sit amet ultricies erat metus non elit. Quisque fringilla gravida sapien non facilisis. Aliquam a ligula vitae tellus rutrum tincidunt. Integer mattis suscipit ex vel egestas. Aenean pharetra sit amet tellus ac tempus. + +Cras dapibus porta posuere. Aenean tempus nulla eget sem auctor, eget interdum urna sodales. Mauris ullamcorper nec ipsum in tempor. Pellentesque eleifend rutrum nunc eu aliquam. Aliquam quis tellus ligula. Mauris mattis quis nibh vel tincidunt. Aliquam aliquam scelerisque nisl, ac aliquam arcu accumsan et. Nunc tempor condimentum quam a ullamcorper. Aliquam imperdiet ac neque in maximus. Proin urna urna, feugiat sed placerat vitae, fringilla ac diam. Morbi ac ipsum nunc. + +Morbi placerat sodales ex, a eleifend quam interdum a. Nullam tellus sem, convallis a finibus a, placerat sed ante. Nullam sit amet dictum mauris. In sed mattis risus, et pulvinar eros. Pellentesque commodo urna ipsum, vitae euismod erat mollis a. Sed ornare, turpis in maximus dapibus, urna nibh dictum leo, suscipit mattis diam tellus ac ante. Vestibulum placerat, justo sit amet ultricies ultricies, orci massa aliquam purus, id ullamcorper odio urna nec leo. diff --git a/examples/markdown-it-wikilinks/.gitignore b/examples/markdown-it-wikilinks/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/markdown-it-wikilinks/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/markdown-it-wikilinks/README.md b/examples/markdown-it-wikilinks/README.md new file mode 100644 index 000000000..0dd04fd35 --- /dev/null +++ b/examples/markdown-it-wikilinks/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# markdown-it-wikilinks + +View live: + +This Observable Framework example demonstrates how to use the [`markdown-it-wikilinks` plugin](https://github.com/jsepia/markdown-it-wikilinks) to create use Wikimedia-style links such as `[[Main Page]]` in Markdown. The markdown-it plugin is registered in the config file, [`observablehq.config.js`](./observablehq.config.js). diff --git a/examples/markdown-it-wikilinks/observablehq.config.js b/examples/markdown-it-wikilinks/observablehq.config.js new file mode 100644 index 000000000..694bdeda2 --- /dev/null +++ b/examples/markdown-it-wikilinks/observablehq.config.js @@ -0,0 +1,8 @@ +import MarkdownItWikilinks from "markdown-it-wikilinks"; + +export default { + root: "src", + + // Register the markdown-it-wikilinks plugin. + markdownIt: (md) => md.use(MarkdownItWikilinks()) +}; diff --git a/examples/markdown-it-wikilinks/package.json b/examples/markdown-it-wikilinks/package.json new file mode 100644 index 000000000..98e6078fa --- /dev/null +++ b/examples/markdown-it-wikilinks/package.json @@ -0,0 +1,21 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0", + "markdown-it-wikilinks": "^1.4.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/markdown-it-wikilinks/src/.gitignore b/examples/markdown-it-wikilinks/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/markdown-it-wikilinks/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/markdown-it-wikilinks/src/Wiki.md b/examples/markdown-it-wikilinks/src/Wiki.md new file mode 100644 index 000000000..385ca3e27 --- /dev/null +++ b/examples/markdown-it-wikilinks/src/Wiki.md @@ -0,0 +1,3 @@ +# Wiki + +Back to [[/index]]. diff --git a/examples/markdown-it-wikilinks/src/Wiki_Links.md b/examples/markdown-it-wikilinks/src/Wiki_Links.md new file mode 100644 index 000000000..f3664773d --- /dev/null +++ b/examples/markdown-it-wikilinks/src/Wiki_Links.md @@ -0,0 +1,3 @@ +# Wiki Links + +Back to [[/index]]. diff --git a/examples/markdown-it-wikilinks/src/index.md b/examples/markdown-it-wikilinks/src/index.md new file mode 100644 index 000000000..f35a3d26b --- /dev/null +++ b/examples/markdown-it-wikilinks/src/index.md @@ -0,0 +1,22 @@ +# markdown-it-wikilinks + +This Framework example demonstrates how to use [`markdown-it-wikilinks`](https://github.com/jsepia/markdown-it-wikilinks) to create Wikimedia-style links in Markdown. + +First, install `markdown-it-wikilinks` with your preferred package manager such as npm or Yarn. Then, register the plugin using the **markdownIt** config option in your `observablehq.config.js` file. + +```js run=false +import MarkdownItWikilinks from "markdown-it-wikilinks"; + +export default { + root: "src", + markdownIt: (md) => md.use(MarkdownItWikilinks()) +}; +``` + +Below is an example of a wikilink. + +Click [[Wiki Links|here]] to learn about [[/Wiki]] links. + +```md run=false +Click [[Wiki Links|here]] to learn about [[/Wiki]] links. +``` diff --git a/examples/mortgage-rates/.gitignore b/examples/mortgage-rates/.gitignore index a82829d70..e58735f55 100644 --- a/examples/mortgage-rates/.gitignore +++ b/examples/mortgage-rates/.gitignore @@ -1,5 +1,4 @@ .DS_Store -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ yarn-error.log diff --git a/examples/mortgage-rates/README.md b/examples/mortgage-rates/README.md index a1b4e6152..68347cdbc 100644 --- a/examples/mortgage-rates/README.md +++ b/examples/mortgage-rates/README.md @@ -1,13 +1,15 @@ -# Mortage tracker +[Framework examples →](../) -This is an example Observable Framework project that tracks mortage rates published by Freddie Mac — Federal Home Loan Mortgage Corporation — every week since 1971. +# Primary mortgage market survey + +View live: -View the [live project](https://observablehq.com/framework/examples/mortgage-rates/). +This is an example Observable Framework project that tracks mortage rates published by Freddie Mac — Federal Home Loan Mortgage Corporation — every week since 1971. ## Data loader -A single TypeScript data loader `docs/data/pmms.csv.ts` fetches the data from Freddie Mac’s website. The original dataset is a csv file, with several columns that we don’t need and the classic American date format (month/day/year). The data loader restructures this dataset a little, by minimizing it to three columns (date, in ISO format; 30-year rate; 15-year rate). +A single TypeScript data loader `src/data/pmms.csv.ts` fetches the data from Freddie Mac’s website. The original dataset is a csv file, with several columns that we don’t need and the classic American date format (month/day/year). The data loader restructures this dataset a little, by minimizing it to three columns (date, in ISO format; 30-year rate; 15-year rate). ## Charts -The cards and charts reinterpret the original elements of Freddie Mac’s [PMMS dashboard](https://www.freddiemac.com/pmms). We use [Observable Plot](https://observablehq.com/plot/) to draw the charts. The chart code is simple enough to be directly inlined in the page’s markdown `docs/index.md`. +The cards and charts reinterpret the original elements of Freddie Mac’s [PMMS dashboard](https://www.freddiemac.com/pmms). We use [Observable Plot](https://observablehq.com/plot/) to draw the charts. The chart code is simple enough to be directly inlined in the page’s markdown `src/index.md`. An interactive brush on the overview chart at the bottom of the page allows the user to focus on a section of the data. diff --git a/examples/mortgage-rates/docs/data/pmms.csv.ts b/examples/mortgage-rates/docs/data/pmms.csv.ts deleted file mode 100644 index 7476d22a1..000000000 --- a/examples/mortgage-rates/docs/data/pmms.csv.ts +++ /dev/null @@ -1,14 +0,0 @@ -import {csv} from "d3-fetch"; -import {csvFormat} from "d3-dsv"; -import {utcParse} from "d3-time-format"; - -const parse = utcParse("%m/%d/%Y"); -const data = await csv("https://www.freddiemac.com/pmms/docs/PMMS_history.csv").then((data) => - data.map(({date, pmms30, pmms15}) => ({ - date: parse(date), - pmms30, - pmms15 - })) -); - -process.stdout.write(csvFormat(data)); diff --git a/examples/mortgage-rates/docs/index.md b/examples/mortgage-rates/docs/index.md deleted file mode 100644 index 2481eb147..000000000 --- a/examples/mortgage-rates/docs/index.md +++ /dev/null @@ -1,103 +0,0 @@ ---- -theme: alt ---- - -# Primary Mortgage Market Survey - -```js -const pmms = FileAttachment("data/pmms.csv").csv({typed: true}); -``` - -```js -const color = Plot.scale({color: {domain: ["30Y FRM", "15Y FRM"]}}); -function colorLegend(y) { - return html`${y}-year fixed-rate`; -} -``` - -```js -const tidy = pmms.flatMap(({date, pmms30, pmms15}) => [{date, rate: pmms30, type: "30Y FRM"}, {date, rate: pmms15, type: "15Y FRM"}]); -const recent = tidy.slice(-53 * 2); -``` - -```js -function frmCard(y, pmms) { - const key = `pmms${y}`; - const fmt = d3.format("+.2"); - const fmt2 = d3.format(".2f"); - const diff1 = pmms.at(-1)[key] - pmms.at(-2)[key]; - const diffY = pmms.at(-1)[key] - pmms.at(-53)[key]; - const range = d3.extent(pmms.slice(-52), d => d[key]); - const stroke = color.apply(`${y}Y FRM`); - const rangechart = Plot.plot({ - style: "overflow: visible;", - width: 300, - height: 40, - axis: null, - x: {inset: 40}, - marks: [ - Plot.tickX(pmms.slice(-52), { - x: key, - stroke, - insetTop: 10, - insetBottom: 10, - title: (d) => `${d.date?.toLocaleDateString("en-us")}: ${d[key]}%`, - tip: {anchor: "bottom"} - }), - Plot.tickX(pmms.slice(-1), {x: key, strokeWidth: 2}), - Plot.text([`${range[0]}%`], {frameAnchor: "left"}), - Plot.text([`${range[1]}%`], {frameAnchor: "right"}) - ], - caption: html`52 week range` - }); - return html`
-

${y}Y FRM

-

${pmms.at(-1)[key] ?? "N/A"}%

- -
1-week change ${fmt(diff1)}%${trend(diff1)} -
1-year change ${fmt(diffY)}%${trend(diffY)} -
4-week average ${fmt2(d3.mean(pmms.slice(-4), d => d[key]))}% -
52-week average ${fmt2(d3.mean(pmms.slice(-52), d => d[key]))}% -
- ${rangechart} -
`; -} - -function trend(v) { - if (Math.abs(v) < 0.01) return ""; - return v > 0 ? html`↗︎` : html`↘︎`; -} -``` - - - -> _Each week since April 1971 [Freddie Mac](https://www.freddiemac.com/pmms/about-pmms.html) surveys lenders on the rates and points for their most popular ${colorLegend(30)}, ${colorLegend(15)} and other mortgage products._ - -
${frmCard(30, pmms)} ${frmCard(15, pmms)}
- -

Data as of ${pmms.at(-1).date?.toLocaleDateString("en-us", {weekday: "long", year: "numeric", month: "short", day: "numeric", timeZone: "UTC"}) -}. Source: Freddie Mac

- -

${Plot.plot({ - title: "Past year", - height: 250, - y: {nice: 5, grid: true, label: "rate (%)"}, - color, - marks: [ - Plot.lineY(recent, {x: "date", y: "rate", stroke: "type", curve: "step", tip: true, markerEnd: true}) - ] -})}

- -

${ -Plot.plot({ - title: "Historical data", - x: {nice: 20}, - y: {grid: true, label: "rate (%)"}, - color, - marks: [ - Plot.ruleY([0]), - Plot.lineY(tidy, {x: "date", y: "rate", stroke: "type", tip: true}) - ] -})}

diff --git a/examples/mortgage-rates/observablehq.config.js b/examples/mortgage-rates/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/mortgage-rates/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/mortgage-rates/package.json b/examples/mortgage-rates/package.json index a7e13520a..4d820a405 100644 --- a/examples/mortgage-rates/package.json +++ b/examples/mortgage-rates/package.json @@ -1,16 +1,22 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../..", + "@observablehq/framework": "^1.7.0", "d3-fetch": "^3.0.1", "d3-time-format": "^4.1.0" }, + "devDependencies": { + "rimraf": "^5.0.5" + }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/examples/mortgage-rates/src/.gitignore b/examples/mortgage-rates/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/mortgage-rates/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/mortgage-rates/src/data/pmms.csv.js b/examples/mortgage-rates/src/data/pmms.csv.js new file mode 100644 index 000000000..499c86537 --- /dev/null +++ b/examples/mortgage-rates/src/data/pmms.csv.js @@ -0,0 +1,15 @@ +import {csvFormat} from "d3-dsv"; +import {csv} from "d3-fetch"; +import {utcParse} from "d3-time-format"; + +const parseDate = utcParse("%m/%d/%Y"); + +process.stdout.write( + csvFormat( + (await csv("https://www.freddiemac.com/pmms/docs/PMMS_history.csv")).map(({date, pmms30, pmms15}) => ({ + date: parseDate(date), + pmms30, + pmms15 + })) + ) +); diff --git a/examples/mortgage-rates/src/index.md b/examples/mortgage-rates/src/index.md new file mode 100644 index 000000000..f517b8842 --- /dev/null +++ b/examples/mortgage-rates/src/index.md @@ -0,0 +1,172 @@ +# Primary mortgage market survey + +```js +const pmms = FileAttachment("data/pmms.csv").csv({typed: true}); +const tidy = pmms.then((pmms) => pmms.flatMap(({date, pmms30, pmms15}) => [{date, rate: pmms30, type: "30Y FRM"}, {date, rate: pmms15, type: "15Y FRM"}])); +``` + +```js +const color = Plot.scale({color: {domain: ["30Y FRM", "15Y FRM"]}}); +const colorLegend = (y) => html`${y}-year fixed-rate`; +``` + +```js +const defaultStartEnd = [pmms.at(-53).date, pmms.at(-1).date]; +const startEnd = Mutable(defaultStartEnd); +const setStartEnd = (se) => startEnd.value = (se ?? defaultStartEnd); +const getStartEnd = () => startEnd.value; +``` + +```js +function frmCard(y, pmms) { + const key = `pmms${y}`; + const diff1 = pmms.at(-1)[key] - pmms.at(-2)[key]; + const diffY = pmms.at(-1)[key] - pmms.at(-53)[key]; + const range = d3.extent(pmms.slice(-52), (d) => d[key]); + const stroke = color.apply(`${y}Y FRM`); + return html.fragment` +

${y}-year fixed-rate

+

${formatPercent(pmms.at(-1)[key])}

+ + + + + + + + + + + + + + + + + + + +
1-week change${formatPercent(diff1, {signDisplay: "always"})}${trend(diff1)}
1-year change${formatPercent(diffY, {signDisplay: "always"})}${trend(diffY)}
4-week average${formatPercent(d3.mean(pmms.slice(-4), (d) => d[key]))}
52-week average${formatPercent(d3.mean(pmms.slice(-52), (d) => d[key]))}
+ ${resize((width) => + Plot.plot({ + width, + height: 40, + axis: null, + x: {inset: 40}, + marks: [ + Plot.tickX(pmms.slice(-52), { + x: key, + stroke, + insetTop: 10, + insetBottom: 10, + title: (d) => `${d.date?.toLocaleDateString("en-us")}: ${d[key]}%`, + tip: {anchor: "bottom"} + }), + Plot.tickX(pmms.slice(-1), {x: key, strokeWidth: 2}), + Plot.text([`${range[0]}%`], {frameAnchor: "left"}), + Plot.text([`${range[1]}%`], {frameAnchor: "right"}) + ] + }) + )} + 52-week range + `; +} + +function formatPercent(value, format) { + return value == null + ? "N/A" + : (value / 100).toLocaleString("en-US", {minimumFractionDigits: 2, style: "percent", ...format}); +} + +function trend(v) { + return v >= 0.005 ? html`↗︎` + : v <= -0.005 ? html`↘︎` + : "→"; +} +``` + +Each week, [Freddie Mac](https://www.freddiemac.com/pmms/about-pmms.html) surveys lenders on rates and points for their ${colorLegend(30)}, ${colorLegend(15)}, and other mortgage products. Data as of ${pmms.at(-1).date?.toLocaleDateString("en-US", {year: "numeric", month: "long", day: "numeric"})}. + + + +
+
${frmCard(30, pmms)}
+
${frmCard(15, pmms)}
+
+

Rates ${startEnd === defaultStartEnd ? "over the past year" : startEnd.map((d) => d.toLocaleDateString("en-US")).join("–")}


+ ${resize((width, height) => + Plot.plot({ + width, + height, + y: {grid: true, label: "rate (%)"}, + color, + marks: [ + Plot.lineY(tidy.filter((d) => startEnd[0] <= d.date && d.date < startEnd[1]), {x: "date", y: "rate", stroke: "type", curve: "step", tip: true, markerEnd: true}) + ] + }) + )} +
+
+ +
+
+

Rates over all time (${d3.extent(pmms, (d) => d.date.getUTCFullYear()).join("–")})

+

Click or drag to zoom


+ ${resize((width) => + Plot.plot({ + width, + y: {grid: true, label: "rate (%)"}, + color, + marks: [ + Plot.ruleY([0]), + Plot.lineY(tidy, {x: "date", y: "rate", stroke: "type", tip: true}), + (index, scales, channels, dimensions, context) => { + const x1 = dimensions.marginLeft; + const y1 = 0; + const x2 = dimensions.width - dimensions.marginRight; + const y2 = dimensions.height; + const brushed = (event) => { + if (!event.sourceEvent) return; + let {selection} = event; + if (!selection) { + const r = 10; // radius of point-based selection + let [px] = d3.pointer(event, context.ownerSVGElement); + px = Math.max(x1 + r, Math.min(x2 - r, px)); + selection = [px - r, px + r]; + g.call(brush.move, selection); + } + setStartEnd(selection.map(scales.x.invert)); + }; + const pointerdowned = (event) => { + const pointerleave = new PointerEvent("pointerleave", {bubbles: true, pointerType: "mouse"}); + event.target.dispatchEvent(pointerleave); + }; + const brush = d3.brushX().extent([[x1, y1], [x2, y2]]).on("brush end", brushed); + const g = d3.create("svg:g").call(brush); + g.call(brush.move, getStartEnd().map(scales.x)); + g.on("pointerdown", pointerdowned); + return g.node(); + } + ] + }) + )} +
+
diff --git a/examples/netcdf-contours/.gitignore b/examples/netcdf-contours/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/netcdf-contours/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/netcdf-contours/README.md b/examples/netcdf-contours/README.md new file mode 100644 index 000000000..1b690b253 --- /dev/null +++ b/examples/netcdf-contours/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# From NetCDF to GeoJSON contours + +View live: + +This Observable Framework example demonstrates how to use the [`netcdfjs` library](https://github.com/cheminfo/netcdfjs) to read a NetCDF file within a JavaScript data loader, and then convert to GeoJSON using [d3-geo-voronoi](https://github.com/Fil/d3-geo-voronoi). The resulting geometry is displayed using Observable Plot. The data loader is in [`src/data/navy_winds_2.json.js`](./src/data/navy_winds_2.json.js). The example data is global marine winds from NOAA’s Pacific Marine Environmental Laboratory. diff --git a/examples/netcdf-contours/observablehq.config.js b/examples/netcdf-contours/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/netcdf-contours/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/netcdf-contours/package.json b/examples/netcdf-contours/package.json new file mode 100644 index 000000000..ef2e6001a --- /dev/null +++ b/examples/netcdf-contours/package.json @@ -0,0 +1,22 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.1", + "d3-geo-voronoi": "^2.1.0", + "netcdfjs": "^3.0.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/netcdf-contours/src/.gitignore b/examples/netcdf-contours/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/netcdf-contours/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/netcdf-contours/src/data/navy_winds_2.json.js b/examples/netcdf-contours/src/data/navy_winds_2.json.js new file mode 100644 index 000000000..5eb82c913 --- /dev/null +++ b/examples/netcdf-contours/src/data/navy_winds_2.json.js @@ -0,0 +1,29 @@ +import {readFile} from "node:fs/promises"; +import {geoContour} from "d3-geo-voronoi"; +import {NetCDFReader} from "netcdfjs"; + +// Read the NetCDF file (relative to this source file). +const data = await readFile(new URL("./navy_winds_2.nc", import.meta.url)); + +// Parse the NetCDF file. +const reader = new NetCDFReader(data); + +// Extract the grid dimensions. +const n = reader.header.dimensions[0].size; // number of columns +const m = reader.header.dimensions[1].size; // number of rows + +// Create a contour generator which expects a flat n×m grid of numbers. +const contour = geoContour() + .x((_, i) => ((i % n) * 2 - n + 1) * 180 / n) + .y((_, i) => (Math.floor(i / n) * 2 - m + 1) * 90 / m) + .value((d) => d); + +// Compute the contour polygons. +const polygons = contour(reader.getDataVariable("UWND")); + +// Limit numeric precision to 2 decimal places. +function replacer(key, value) { + return typeof value === "number" ? +value.toFixed(2) : value; +} + +process.stdout.write(JSON.stringify(polygons, replacer)); diff --git a/examples/netcdf-contours/src/data/navy_winds_2.nc b/examples/netcdf-contours/src/data/navy_winds_2.nc new file mode 100644 index 000000000..efa228886 Binary files /dev/null and b/examples/netcdf-contours/src/data/navy_winds_2.nc differ diff --git a/examples/netcdf-contours/src/index.md b/examples/netcdf-contours/src/index.md new file mode 100644 index 000000000..d7af956de --- /dev/null +++ b/examples/netcdf-contours/src/index.md @@ -0,0 +1,65 @@ +# From NetCDF to GeoJSON contours + +Here’s a JavaScript data loader that uses [`netcdfjs`](https://github.com/cheminfo/netcdfjs) to read a NetCDF file, and then outputs GeoJSON contour polygons using [d3-geo-voronoi](https://github.com/Fil/d3-geo-voronoi). + +```js run=false +import {readFile} from "node:fs/promises"; +import {geoContour} from "d3-geo-voronoi"; +import {NetCDFReader} from "netcdfjs"; + +// Read the NetCDF file (relative to this source file). +const data = await readFile(new URL("./navy_winds_2.nc", import.meta.url)); + +// Parse the NetCDF file. +const reader = new NetCDFReader(data); + +// Extract the grid dimensions. +const n = reader.header.dimensions[0].size; // number of columns +const m = reader.header.dimensions[1].size; // number of rows + +// Create a contour generator which expects a flat n×m grid of numbers. +const contour = geoContour() + .x((_, i) => ((i % n) * 2 - n + 1) * 180 / n) + .y((_, i) => (Math.floor(i / n) * 2 - m + 1) * 90 / m) + .value((d) => d); + +// Compute the contour polygons. +const polygons = contour(reader.getDataVariable("UWND")); + +// Limit numeric precision to 2 decimal places. +function replacer(key, value) { + return typeof value === "number" ? +value.toFixed(2) : value; +} + +process.stdout.write(JSON.stringify(polygons, replacer)); +``` + +The data is from [NOAA’s Pacific Marine Environmental Laboratory](https://ferret.pmel.noaa.gov/Ferret/documentation/users-guide/introduction/SAMPLE-DATA-SETS), by way of [Patrick Brockmann](https://github.com/PBrockmann/D3_netcdfjs), and represents global marine winds for the period 1982–1990. + +The above data loader lives in `data/navy_winds_2.json.js`, so we can load the data as `data/navy_winds_2.json`. The `FileAttachment.json` method parses the file and returns a promise to an array of GeoJSON geometry objects. + +```js echo +const winds = FileAttachment("data/navy_winds_2.json").json(); +``` + +To make the map more legible, we’ll add land boundaries from [world-atlas](https://github.com/topojson/world-atlas). These are in TopoJSON format, so we’ll use `topojson.feature` to convert them to GeoJSON. + +```js echo +const world = fetch(import.meta.resolve("npm:world-atlas/land-110m.json")).then((r) => r.json()); +``` + +Lastly, we’ll use `Plot.geo` to render the wind data as filled contours. We’ll also add land boundaries, a graticule, and a sphere for context. + +```js echo +Plot.plot({ + width, + projection: "equal-earth", + color: {type: "diverging", legend: true, label: "UWND"}, + marks: [ + Plot.geo(winds, {fill: "value"}), + Plot.geo(topojson.feature(world, world.objects.land), {stroke: "black"}), + Plot.graticule({stroke: "black"}), + Plot.sphere({stroke: "black"}) + ] +}) +``` diff --git a/examples/netcdf/.gitignore b/examples/netcdf/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/netcdf/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/netcdf/README.md b/examples/netcdf/README.md new file mode 100644 index 000000000..a471f015c --- /dev/null +++ b/examples/netcdf/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# NetCDF + +View live: + +This Observable Framework example demonstrates how to use the [`netcdfjs` library](https://github.com/cheminfo/netcdfjs) to read a NetCDF file, and then to display it as a raster plot using Observable Plot. The code is in [`src/index.md`](./src/index.md?plain=1). The example data is global marine winds from NOAA’s Pacific Marine Environmental Laboratory. diff --git a/examples/netcdf/observablehq.config.js b/examples/netcdf/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/netcdf/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/netcdf/package.json b/examples/netcdf/package.json new file mode 100644 index 000000000..0a03a1af8 --- /dev/null +++ b/examples/netcdf/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.1" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/netcdf/src/.gitignore b/examples/netcdf/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/netcdf/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/netcdf/src/index.md b/examples/netcdf/src/index.md new file mode 100644 index 000000000..1ed859086 --- /dev/null +++ b/examples/netcdf/src/index.md @@ -0,0 +1,67 @@ +# NetCDF + +This example demonstrates how to read a NetCDF file using [`netcdfjs`](https://github.com/cheminfo/netcdfjs) and then visualize it with Observable Plot’s [raster mark](https://observablehq.com/plot/marks/raster). The data is from [NOAA’s Pacific Marine Environmental Laboratory](https://ferret.pmel.noaa.gov/Ferret/documentation/users-guide/introduction/SAMPLE-DATA-SETS), by way of [Patrick Brockmann](https://github.com/PBrockmann/D3_netcdfjs), and represents global marine winds for the period 1982–1990. + +To start, let’s import `NetCDFReader` from `netcdfjs`: + +```js echo +import {NetCDFReader} from "npm:netcdfjs"; +``` + +Then let’s declare a `FileAttachment` for the NetCDF file and load it as an `ArrayBuffer` (since it’s binary). `FileAttachment.arrayBuffer` returns a `Promise`, which we chain with the `NetCDFReader` constructor. + +```js echo +const winds = FileAttachment("navy_winds_2.nc").arrayBuffer().then((data) => new NetCDFReader(data)); +``` + +Now `winds` is a promise to a `NetCDFReader`. (Promises are implicitly awaited across code blocks, so we don’t need to explicitly `await` below.) + +We can inspect the metadata of the NetCDF file via the `header` property. The `header.dimensions` tells us the grid resolution, while the `header.variables` tells us what values are stored in the grid. `UWND` is the [zonal](https://en.wikipedia.org/wiki/Zonal_and_meridional_flow) component of the wind, while `VWND` is its meridional component. + +```js echo +winds.header +``` + +Now let’s visualize the zonal wind component using a raster plot. The values are represented as a one-dimensional array of numbers, which we can use as the raster mark’s data; but we also need to specify the `width` and `height` of the grid. Since values can be both negative (westward wind) and positive (eastward), we can use the `rdbu` diverging color scheme. + +```js echo +Plot.plot({ + color: { + label: "UWND", + legend: true, + scheme: "rdbu" + }, + marks: [ + Plot.raster(winds.getDataVariable("UWND"), { + width: winds.header.dimensions[0].size, + height: winds.header.dimensions[1].size + }) + ] +}) +``` + +We can use [Plot’s projection system](https://observablehq.com/plot/features/projections) to apply a suitable global projection. Below we use the Equal Earth projection, an equal-area projection preserving the relative size of areas. The `x1`, `y1`, `x2`, and `y2` options specify the bounds of the grid in geographic coordinates, while the `clip` option clips the data to the globe. + +```js echo +Plot.plot({ + projection: "equal-earth", + color: { + label: "UWND", + legend: true, + scheme: "rdbu" + }, + marks: [ + Plot.raster(winds.getDataVariable("UWND"), { + width: winds.header.dimensions[0].size, + height: winds.header.dimensions[1].size, + x1: -180, + y1: -90, + x2: 180, + y2: 90, + interpolate: "barycentric", + clip: "sphere" + }), + Plot.graticule({stroke: "black"}) + ] +}) +``` diff --git a/examples/netcdf/src/navy_winds_2.nc b/examples/netcdf/src/navy_winds_2.nc new file mode 100644 index 000000000..efa228886 Binary files /dev/null and b/examples/netcdf/src/navy_winds_2.nc differ diff --git a/examples/observablehq.config.js b/examples/observablehq.config.js new file mode 100644 index 000000000..19fcc37b2 --- /dev/null +++ b/examples/observablehq.config.js @@ -0,0 +1,64 @@ +import {basename, join} from "node:path"; +import {pathToFileURL} from "node:url"; +import {cwd} from "process"; + +const base = basename(cwd()); + +const {default: baseConfig} = await import(pathToFileURL(join(cwd(), "observablehq.config.js"))); + +export default { + pager: false, + toc: false, + sidebar: false, + ...baseConfig, + title: "Observable Framework", + head: ` +`, + header: ` +` +}; diff --git a/examples/penguin-classification/README.md b/examples/penguin-classification/README.md deleted file mode 100644 index c017fe1ed..000000000 --- a/examples/penguin-classification/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Penguin classification - -This is an example Observable Framework project that uses logistic regression (performed in a Python data loader) to classify penguins by species, based on body mass measurements. Charts highlights and explore which penguins are misclassified. [Learn more](https://journal.r-project.org/articles/RJ-2022-020/) about the penguins dataset. - -View the [live project](https://observablehq.com/framework/examples/penguin-classification/). - -## Data loader - -The Python [data loader](../../docs/loaders.md) `predictions.csv.py` reads in the `penguins.csv` file, then performs logistic regression using scikit-learn's [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) function. - -## Charts - -All charts are drawn with [Observable Plot](https://observablehq/com/plot). - -## Reuse this example - -Copy the contents of the `penguins-classification` directory into a new Observable Framework project. Then, run the following set up steps (as needed) get started: - -- If needed, install python3 -- Create and activate a virtual environment - - `$ python3 -m venv .venv` - - `$ source .venv/bin/activate` -- Pip install modules from requirements.txt - - `$ pip install -r requirements.txt` -- Run and preview the page - - `$ yarn` - - `$ yarn dev` -- Make changes to the page (`index.md`) or data loader and save to see instant updates in the [live preview](https://observablehq.com/framework/getting-started#test-live-preview) - -[Learn more about deploying with Github actions](https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#requirements-file) for Python 3.6 & `requirements.txt`. \ No newline at end of file diff --git a/examples/penguin-classification/docs/index.md b/examples/penguin-classification/docs/index.md deleted file mode 100644 index 5082cc6a3..000000000 --- a/examples/penguin-classification/docs/index.md +++ /dev/null @@ -1,98 +0,0 @@ ---- -toc: false ---- - -# Penguin classification - -```js -const predictions = FileAttachment("data/predictions.csv").csv({typed: true}); -``` - -
-
- ${resize((width, height) => Plot.plot({ - grid: true, - width, - height: height - 95, - title : "Predicting penguins species with logistic regression", - caption: "Incorrect predictions highlighted with diamonds. Actual species encoded with color and predicted species encoded with symbols.", - color: { - legend: true, - }, - x: {label: "Culmen length (mm)"}, - y: {label: "Culmen depth (mm)"}, - marks: [ - Plot.dot(predictions, { - x: "culmen_length_mm", - y: "culmen_depth_mm", - stroke: "species", - symbol: "species_predicted", - r: 3, - tip: {channels: {"mass": "body_mass_g"}} - }), - Plot.dot(predictions, { - filter: (d) => d.species !== d.species_predicted, - x: "culmen_length_mm", - y: "culmen_depth_mm", - r: 7, - symbol: "diamond", - stroke: "currentColor" - }) - ], - }))} -
-
- -
- ${Inputs.table(predictions)} -
- -## Analysis - -```js -const misclassified = predictions.filter((d) => d.species !== d.species_predicted); -``` - -The logistic regression failed to classify ${misclassified.length} individuals. Let’s check what was amiss, with this faceted chart: - -
-
- ${resize((width, height) => Plot.plot({ - width, - height, - inset: 4, - grid: true, - marginRight: 60, - x: {label: "Culmen length (mm)"}, - y: {label: "Culmen depth (mm)"}, - facet: { - data: predictions, - x: "island", - y: "sex", - }, - fy: {domain: ["FEMALE", "MALE"]}, - marks: [ - Plot.frame(), - Plot.dot(predictions, { - x: "culmen_length_mm", - y: "culmen_depth_mm", - stroke: "species", - symbol: "species_predicted", - r: 3 - }), - Plot.dot(predictions, { - filter: (d) => d.species !== d.species_predicted, - x: "culmen_length_mm", - y: "culmen_depth_mm", - r: 7, - symbol: "diamond", - stroke: "currentColor" - }) - ], - }))} -
-
- -As we can see in the top-right facet, the classifier could have done a better job at discovering that the Torgensen island only hosts penguins of the Adelie species. - -We could try re-running the analysis with different options — _e.g._, LogisticRegression(solver = "newton-cg") — to see if that results in better predictions. (Spoiler: it does!) See the [scikit-learn documentation](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) for details. diff --git a/examples/penguin-classification/package.json b/examples/penguin-classification/package.json deleted file mode 100644 index 6e3619044..000000000 --- a/examples/penguin-classification/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "module", - "scripts": { - "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" - }, - "dependencies": { - "@observablehq/framework": "link:../.." - }, - "engines": { - "node": ">=20.6" - } -} diff --git a/examples/plot/.gitignore b/examples/plot/.gitignore index 60cc25a09..0210d7df8 100644 --- a/examples/plot/.gitignore +++ b/examples/plot/.gitignore @@ -1,6 +1,5 @@ .DS_Store .env -dist/ -docs/.observablehq/cache/ +/dist/ node_modules/ yarn-error.log diff --git a/examples/plot/README.md b/examples/plot/README.md index adb4545a7..33c7204aa 100644 --- a/examples/plot/README.md +++ b/examples/plot/README.md @@ -1,8 +1,10 @@ -# Tracking Observable Plot +[Framework examples →](../) -This is an example Observable Framework project that tracks several metrics about the development and usage of [Observable Plot](https://observablehq.com/plot/). It contains a single page in [`docs/index.md`](./docs/index.md), with no configuration file. +# Observable Plot downloads -View the [live project](https://observablehq.com/framework/examples/plot/). +View live: + +This is an example Observable Framework project that tracks several metrics about the development and usage of [Observable Plot](https://observablehq.com/plot/). It contains a single page in [`src/index.md`](./src/index.md?plain=1), with no configuration file. ## Data loaders @@ -10,7 +12,7 @@ Various datasets are loaded from GitHub’s and npm’s APIs. ### GitHub -Stargazers, issues, and pull-requests, are retrieved from GitHub’s APIs, using a helper [`github.ts`](./docs/data/github.ts) to connect to GitHub and do authentication and pagination. Issues and pull-requests are saved as a JSON file, and stargazers as a CSV file. You could use GitHub’s [octokit.js SDK](https://github.com/octokit/octokit.js) for this instead if desired. +Stargazers, issues, and pull-requests, are retrieved from GitHub’s APIs, using a helper [`github.ts`](./src/data/github.ts) to connect to GitHub and do authentication and pagination. Issues and pull-requests are saved as a JSON file, and stargazers as a CSV file. You could use GitHub’s [octokit.js SDK](https://github.com/octokit/octokit.js) for this instead if desired. During development you might want to use a [GitHub token](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#authentication) to avoid hitting GitHub’s rate limits. To do so, create a `.env` file at the root of the project, and add the token on a single line: @@ -22,16 +24,16 @@ GITHUB_TOKEN=ghp_xxxxxxxxxxx NPM’s API returns information about the published versions (releases) of the `@observablehq/plot` module, and the number of downloads per day since it was first published. -The [`version-data.csv.ts`](./docs/data/version-data.csv.ts) loader calls two API endpoints — one that has the versions with their publication dates, the other their numbers of downloads over the last 7 days — and combines them into a single csv file. +The [`version-data.csv.ts`](./src/data/version-data.csv.ts) loader calls two API endpoints — one that has the versions with their publication dates, the other their numbers of downloads over the last 7 days — and combines them into a single csv file. -The [`npm-downloads.csv.ts`](./docs/data/npm-downloads.csv.ts) loader retrieves the daily number of downloads (of any version). The dataset is trimmed on both ends (since NPM’s API sometimes returns zeroes), and saved as a csv file. +The [`npm-downloads.csv.ts`](./src/data/npm-downloads.csv.ts) loader retrieves the daily number of downloads (of any version). The dataset is trimmed on both ends (since NPM’s API sometimes returns zeroes), and saved as a csv file. ## Big numbers -Key performance indicators are displayed as “big numbers” with, in some cases, a trend indicating growth over one week. Their layout is using the convenience CSS classes _big_, _red_ etc. +Key performance indicators are displayed as “big numbers” with, in some cases, a trend indicating growth over one week. Their layout is using the convenience CSS classes _big_, _red_ _etc._ ## Charts -The charts are drawn — quite obviously ☺️ — with Observable Plot. The code for the downloads chart is isolated in the [`components/dailyPlot.js`](./docs/components/dailyPlot.js) file. The code for the burndown chart is adapted from Tom MacWright’s [GitHub Burndown chart](https://observablehq.com/@tmcw/github-burndown). +The charts are drawn — quite obviously ☺️ — with Observable Plot. The code for the downloads chart is isolated in the [`components/dailyPlot.js`](./src/components/dailyPlot.js) file. The code for the burndown chart is adapted from Tom MacWright’s [GitHub Burndown chart](https://observablehq.com/@tmcw/github-burndown). The size of the charts automatically adapts to their container’s dimensions with the built-in `resize` helper — part of a collection of helpers currently under development. diff --git a/examples/plot/docs/components/dailyPlot.js b/examples/plot/docs/components/dailyPlot.js deleted file mode 100644 index 0229b2059..000000000 --- a/examples/plot/docs/components/dailyPlot.js +++ /dev/null @@ -1,109 +0,0 @@ -import * as Plot from "npm:@observablehq/plot"; -import * as d3 from "npm:d3"; - -export const today = d3.utcDay(d3.utcHour.offset(d3.utcHour(), -10)); -export const start = d3.utcYear.offset(today, -2); - -export function DailyPlot(data, {title, label = title, domain, width, height = 200, versions} = {}) { - return Plot.plot({ - width, - height, - round: true, - marginRight: 60, - x: {domain: [start, today]}, - y: {domain, label, insetTop: versions ? 60 : 0}, - marks: [ - Plot.axisY({ - anchor: "right", - label: `${title} (line = 28-day, blue = 7-day)` - }), - Plot.areaY( - data, - Plot.filter((d) => d.date >= start, { - x: "date", - y: "value", - curve: "step", - fillOpacity: 0.2 - }) - ), - Plot.ruleY([0]), - Plot.lineY( - data, - Plot.filter( - (d) => d.date >= start, - Plot.windowY( - {k: 7, anchor: "start", strict: true}, - { - x: "date", - y: "value", - strokeWidth: 1, - stroke: "var(--theme-foreground-focus)" - } - ) - ) - ), - Plot.lineY( - data, - Plot.filter( - (d) => d.date >= start, - Plot.windowY({k: 28, anchor: "start", strict: true}, {x: "date", y: "value"}) - ) - ), - versionsMarks(versions), - Plot.tip( - data, - Plot.pointerX({ - x: "date", - y: "value", - format: {y: ",.0f"} - }) - ) - ] - }); -} - -function versionsMarks(versions) { - if (!versions) return []; - const clip = true; - return [ - Plot.ruleX(versions, { - filter: (d) => !isPrerelease(d.version), - x: "date", - strokeOpacity: (d) => (isMajor(d.version) ? 1 : 0.1), - clip - }), - Plot.text(versions, { - filter: (d) => !isPrerelease(d.version) && !isMajor(d.version), - x: "date", - text: "version", - rotate: -90, - dx: -10, - frameAnchor: "top-right", - fontVariant: "tabular-nums", - fill: "currentColor", - stroke: "var(--theme-background)", - clip - }), - Plot.text(versions, { - filter: (d) => isMajor(d.version), - x: "date", - text: "version", - rotate: -90, - dx: -10, - frameAnchor: "top-right", - fontVariant: "tabular-nums", - fill: "currentColor", - stroke: "white", - fontWeight: "bold", - clip - }) - ]; -} - -function isPrerelease(version) { - return /-/.test(version); -} - -function isMajor(version) { - return /^\d+\.0\.0$/.test(version); -} diff --git a/examples/plot/docs/components/trend.js b/examples/plot/docs/components/trend.js deleted file mode 100644 index 53ba00142..000000000 --- a/examples/plot/docs/components/trend.js +++ /dev/null @@ -1,31 +0,0 @@ -import * as d3 from "npm:d3"; -import {html} from "npm:htl"; - -export function trend( - value /*: number */, - { - format = "+d", - positive = "green", - negative = "red", - base = "muted", - positiveSuffix = " ↗︎", - negativeSuffix = " ↘︎", - baseSuffix = "" - } = {} /* - as { - format: string | ((x: number) => string); - positive: string; - negative: string; - base: string; - positiveSuffix: string; - negativeSuffix: string; - baseSuffix: string; - } - */ -) /*: Node */ { - if (typeof format === "string") format = d3.format(format); - if (typeof format !== "function") throw new Error(`unsupported format ${format}`); - return html`${format(value)}${ - value > 0 ? positiveSuffix : value < 0 ? negativeSuffix : baseSuffix - }`; -} diff --git a/examples/plot/docs/data/plot-github-issues.json.ts b/examples/plot/docs/data/plot-github-issues.json.ts deleted file mode 100644 index 8a0bb692e..000000000 --- a/examples/plot/docs/data/plot-github-issues.json.ts +++ /dev/null @@ -1,25 +0,0 @@ -import {githubList} from "./github.js"; - -async function load(repo) { - process.stdout.write("["); - let first = true; - for await (const item of githubList(`/repos/${repo}/issues?state=all`)) { - if (first) first = false; - else process.stdout.write(","); - process.stdout.write( - `\n ${JSON.stringify({ - state: item.state, - pull_request: !!item.pull_request, - created_at: item.created_at, - closed_at: item.closed_at, - draft: item.draft, - reactions: {...item.reactions, url: undefined}, - title: item.title, - number: item.number - })}` - ); - } - process.stdout.write("\n]\n"); -} - -await load("observablehq/plot"); diff --git a/examples/plot/docs/data/plot-github-stars.csv.ts b/examples/plot/docs/data/plot-github-stars.csv.ts deleted file mode 100644 index 1572ff640..000000000 --- a/examples/plot/docs/data/plot-github-stars.csv.ts +++ /dev/null @@ -1,9 +0,0 @@ -import {githubList} from "./github.js"; -import {csvFormat} from "d3-dsv"; - -const repo = "observablehq/plot"; -const stars: any[] = []; -for await (const item of githubList(`/repos/${repo}/stargazers`, {accept: "application/vnd.github.star+json"})) - stars.push({starred_at: item.starred_at, login: item.user.login}); - -process.stdout.write(csvFormat(stars)); diff --git a/examples/plot/docs/index.md b/examples/plot/docs/index.md deleted file mode 100644 index 0098e8092..000000000 --- a/examples/plot/docs/index.md +++ /dev/null @@ -1,181 +0,0 @@ ---- -toc: false -theme: dashboard ---- - -# Plot - -```js -import {trend} from "./components/trend.js"; -import {DailyPlot, today, start} from "./components/dailyPlot.js"; -``` - -```js -const versions = FileAttachment("data/plot-version-data.csv").csv({typed: true}); -const downloads = FileAttachment("data/plot-npm-downloads.csv").csv({typed: true}); -const issues = FileAttachment("data/plot-github-issues.json").json().then((data) => data.map((d) => (d.open = d3.utcDay(new Date(d.created_at)), d.close = d.closed_at ? d3.utcDay(new Date(d.closed_at)) : null, d))); -const stars = FileAttachment("data/plot-github-stars.csv").csv({typed: true}); -``` - -```js -const lastMonth = d3.utcDay.offset(today, -28); -const lastWeek = d3.utcDay.offset(today, -7); -const x = {domain: [start, today]}; -``` - -```js -const burndown = issues - .filter((d) => !d.pull_request) - .flatMap((issue) => Array.from(d3.utcDay.range( - d3.utcDay.offset(Math.max(start, issue.open), -1), - d3.utcDay.offset(issue.close ?? today, 2) - ), (date) => ({ - date, - id: issue.number, - open: issue.open, - title: `#${issue.number}: ${issue.title}\n\nOpened ${ - issue.open.toISOString().slice(0,10)}${ - issue.close ? `\nClosed ${issue.close.toISOString().slice(0,10)}` : "" - }` - }) - ) - ); -``` - -
- -
-

GitHub stars

- ${stars.length.toLocaleString("en-US")} - ${trend(d3.sum(stars, (d) => d.starred_at >= lastWeek))} -
-
-

Daily npm downloads

- ${downloads[0].value.toLocaleString("en-US")} - ${trend(downloads[7].value - ? (downloads[0].value - downloads[7].value) / downloads[7].value - : undefined, {format: "+.1%"})} -
-
-

Total npm downloads

- ${d3.sum(downloads, (d) => d.value).toLocaleString("en-US")} -
-
- -
- ${resize((width, height) => DailyPlot(downloads, {width, height, title: "Daily npm downloads", label: "downloads", domain: [0, 6000], versions}))} -
- -
- ${resize((width) => Plot.plot({ - width, - caption: "Downloads per version (last 7 days)", - x: {label: null, tickFormat: "s", round: true, axis: "top"}, - y: {type: "band", reverse: true}, - marginTop: 20, - marginBottom: 0, - color: {type: "categorical", scheme: "ylgnbu"}, - marks: [ - Plot.barX(versions, { - x: "downloads", - stroke: "white", - strokeWidth: 0.5, - y: d => d.version.split(".").slice(0,2).join("."), - fill: d => d.version.split(".").slice(0,2).join("."), - tip: { - channels: { - version: "version", - released: d => `${d3.utcDay.count(d.date, Date.now())} days ago`, - downloads: "downloads", - }, - format: {fill: false, x: false, y: false} - } - }), - Plot.textX(versions, Plot.stackX({ - x: "downloads", - y: d => d.version.split(".").slice(0,2).join("."), - text: d => d.downloads > 500 ? d.version : null, - fill: "white", - stroke: d => d.version.split(".").slice(0,2).join("."), - strokeWidth: 5, - pointerEvents: null - })) - ] - }) -)} -
- -
- -
-

Opened issues, 28d

- ${d3.sum(issues, (d) => !d.pull_request && d.open >= lastMonth).toLocaleString("en-US")} -
-
-

Closed issues, 28d

- ${d3.sum(issues, (d) => !d.pull_request && d.close >= lastMonth).toLocaleString("en-US")} -
- -
- -
-
${resize((width, height) => Plot.plot({ - width, - height, - marginLeft: 0, - marginRight: 30, - round: true, - x, - y: {axis: "right", grid: true, label: "↑ Open issues"}, - marks: [ - Plot.areaY(burndown, { - x: "date", - y: 1, - curve: "step-before", - fill: "open", - z: "id", - title: "title", - tip: true - }), - Plot.ruleY([0]) - ] - }))}
-
${ - Inputs.table( - issues - .filter((d) => d.state === "open" && d.reactions.total_count > 5) - .sort((a, b) => b.reactions.total_count - a.reactions.total_count) - .map((d) => ({ - "title": {title: d.title, number: d.number}, - "reactions": d.reactions.total_count, - "days old": d3.utcDay.count(d.open, today) - })), - { - format: { - title: (d) => html`${d.title}` - } - } - ) - }
-
- - diff --git a/examples/plot/observablehq.config.js b/examples/plot/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/plot/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/plot/package.json b/examples/plot/package.json index e8ea55a05..929843cba 100644 --- a/examples/plot/package.json +++ b/examples/plot/package.json @@ -1,21 +1,25 @@ { "type": "module", + "private": true, "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", "dev": "observable preview", - "build": "rm -rf dist && observable build", - "postinstall": "ln -sf ../../../../bin/observable-init.js node_modules/.bin/observable" + "deploy": "observable deploy", + "observable": "observable" }, "dependencies": { - "@observablehq/framework": "link:../..", + "@observablehq/framework": "^1.7.0", "d3-fetch": "^3.0.1", "d3-time": "^3.1.0", "d3-time-format": "^4.1.0", "dotenv": "^16.3.1" }, - "engines": { - "node": ">=20.6" - }, "devDependencies": { - "@types/node": "^20.10.6" + "@types/node": "^20.10.6", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=20" } } diff --git a/examples/plot/src/.gitignore b/examples/plot/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/plot/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/plot/src/components/burndownPlot.js b/examples/plot/src/components/burndownPlot.js new file mode 100644 index 000000000..30a5117a5 --- /dev/null +++ b/examples/plot/src/components/burndownPlot.js @@ -0,0 +1,39 @@ +import * as Plot from "npm:@observablehq/plot"; +import {resize} from "npm:@observablehq/stdlib"; +import * as d3 from "npm:d3"; + +export function BurndownPlot(issues, {x, round = true, ...options} = {}) { + const [start, end] = x.domain; + const days = d3.utcDay.range(start, end); + const burndown = issues.flatMap((issue) => + Array.from( + days.filter((d) => issue.created_at <= d && (!issue.closed_at || d < issue.closed_at)), + (d) => ({date: d, number: issue.number, created_at: issue.created_at}) + ) + ); + return resize((width) => + Plot.plot({ + width, + round, + x, + ...options, + marks: [ + Plot.axisY({anchor: "right", label: null}), + Plot.areaY( + burndown, + Plot.groupX( + {y: "count"}, + { + x: "date", + y: 1, + curve: "step-before", + fill: (d) => d3.utcMonth(d.created_at), + tip: {format: {z: null}} + } + ) + ), + Plot.ruleY([0]) + ] + }) + ); +} diff --git a/examples/plot/src/components/dailyPlot.js b/examples/plot/src/components/dailyPlot.js new file mode 100644 index 000000000..d388695b6 --- /dev/null +++ b/examples/plot/src/components/dailyPlot.js @@ -0,0 +1,38 @@ +import * as Plot from "npm:@observablehq/plot"; + +export function DailyPlot(data, {round = true, annotations, ...options} = {}) { + return Plot.plot({ + ...options, + round, + marks: [ + Plot.axisY({anchor: "right", label: null}), + Plot.areaY(data, {x: "date", y: "value", curve: "step", fillOpacity: 0.2}), + Plot.ruleY([0]), + Plot.lineY( + data, + Plot.windowY( + {k: 7, anchor: "start", strict: true}, + {x: "date", y: "value", stroke: "var(--theme-foreground-focus)"} + ) + ), + Plot.lineY(data, Plot.windowY({k: 28, anchor: "start", strict: true}, {x: "date", y: "value"})), + annotations && [ + Plot.ruleX(annotations, {x: "date", strokeOpacity: 0.1}), + Plot.text(annotations, { + x: "date", + text: "text", + href: "href", + target: "_blank", + rotate: -90, + dx: -3, + frameAnchor: "top-right", + lineAnchor: "bottom", + fontVariant: "tabular-nums", + fill: "currentColor", + stroke: "var(--theme-background)" + }) + ], + Plot.tip(data, Plot.pointerX({x: "date", y: "value"})) + ] + }); +} diff --git a/examples/plot/src/components/revive.js b/examples/plot/src/components/revive.js new file mode 100644 index 000000000..9be5d19ad --- /dev/null +++ b/examples/plot/src/components/revive.js @@ -0,0 +1,13 @@ +export function revive(object) { + if (object && typeof object === "object") { + for (const key in object) { + const value = object[key]; + if (value && typeof value === "object") { + revive(value); + } else if (typeof value === "string" && /^\d{4}-\d{2}-\d{2}T/.test(value)) { + object[key] = new Date(value); + } + } + } + return object; +} diff --git a/examples/plot/src/components/trend.js b/examples/plot/src/components/trend.js new file mode 100644 index 000000000..32fc8d10f --- /dev/null +++ b/examples/plot/src/components/trend.js @@ -0,0 +1,20 @@ +import {html} from "npm:htl"; + +export function Trend( + value, + { + locale = "en-US", + format, + positive = "green", + negative = "red", + base = "muted", + positiveSuffix = " ↗︎", + negativeSuffix = " ↘︎", + baseSuffix = "" + } = {} +) { + const variant = value > 0 ? positive : value < 0 ? negative : base; + const text = value.toLocaleString(locale, {signDisplay: "always", ...format}); + const suffix = value > 0 ? positiveSuffix : value < 0 ? negativeSuffix : baseSuffix; + return html`${text}${suffix}`; +} diff --git a/examples/plot/docs/data/github.ts b/examples/plot/src/data/github.ts similarity index 100% rename from examples/plot/docs/data/github.ts rename to examples/plot/src/data/github.ts diff --git a/examples/plot/src/data/plot-github-issues.json.ts b/examples/plot/src/data/plot-github-issues.json.ts new file mode 100644 index 000000000..1c88cefd1 --- /dev/null +++ b/examples/plot/src/data/plot-github-issues.json.ts @@ -0,0 +1,20 @@ +import {githubList} from "./github.js"; + +async function load(repo: string) { + const issues: any[] = []; + for await (const item of githubList(`/repos/${repo}/issues?state=all`)) { + issues.push({ + state: item.state, + pull_request: !!item.pull_request, + created_at: item.created_at, + closed_at: item.closed_at, + draft: item.draft, + reactions: {...item.reactions, url: undefined}, + title: item.title, + number: item.number + }); + } + return issues; +} + +process.stdout.write(JSON.stringify(await load("observablehq/plot"))); diff --git a/examples/plot/src/data/plot-github-stars.csv.ts b/examples/plot/src/data/plot-github-stars.csv.ts new file mode 100644 index 000000000..19831bcac --- /dev/null +++ b/examples/plot/src/data/plot-github-stars.csv.ts @@ -0,0 +1,12 @@ +import {csvFormat} from "d3-dsv"; +import {githubList} from "./github.js"; + +async function load(repo: string) { + const stars: any[] = []; + for await (const item of githubList(`/repos/${repo}/stargazers`, {accept: "application/vnd.github.star+json"})) { + stars.push({starred_at: item.starred_at, login: item.user.login}); + } + return stars; +} + +process.stdout.write(csvFormat(await load("observablehq/plot"))); diff --git a/examples/plot/docs/data/plot-npm-downloads.csv.ts b/examples/plot/src/data/plot-npm-downloads.csv.ts similarity index 55% rename from examples/plot/docs/data/plot-npm-downloads.csv.ts rename to examples/plot/src/data/plot-npm-downloads.csv.ts index c1fec0adf..5d8e4fd54 100644 --- a/examples/plot/docs/data/plot-npm-downloads.csv.ts +++ b/examples/plot/src/data/plot-npm-downloads.csv.ts @@ -1,25 +1,24 @@ import {csvFormat} from "d3-dsv"; +import {json} from "d3-fetch"; import {timeDay, utcDay} from "d3-time"; -import {utcFormat} from "d3-time-format"; -async function load(project) { - const end = utcDay(timeDay()); // exclusive +function formatDate(date: Date): string { + return date.toISOString().slice(0, 10); +} + +async function load(project: string, start: Date, end: Date) { const data: any[] = []; - const formatDate = utcFormat("%Y-%m-%d"); - const min = new Date("2021-01-01"); let batchStart = end; let batchEnd; - while (batchStart > min) { + while (batchStart > start) { batchEnd = batchStart; batchStart = utcDay.offset(batchStart, -365); - if (batchStart < min) batchStart = min; - const response = await fetch( + if (batchStart < start) batchStart = start; + const batch = await json( `https://api.npmjs.org/downloads/range/${formatDate(batchStart)}:${formatDate( utcDay.offset(batchEnd, -1) )}/${project}` ); - if (!response.ok) throw new Error(`fetch failed: ${response.status}`); - const batch = await response.json(); for (const {downloads: value, day: date} of batch.downloads.reverse()) { data.push({date: new Date(date), value}); } @@ -28,10 +27,10 @@ async function load(project) { // trim zeroes at both ends do { if (data[0].value === 0) data.shift(); - else if (data.at(-1).value !== 0) data.pop(); + else if (data.at(-1)?.value !== 0) data.pop(); else return data; } while (data.length); throw new Error("empty dataset"); } -process.stdout.write(csvFormat(await load("@observablehq/plot"))); +process.stdout.write(csvFormat(await load("@observablehq/plot", new Date("2021-01-01"), utcDay(timeDay())))); diff --git a/examples/plot/docs/data/plot-version-data.csv.ts b/examples/plot/src/data/plot-version-data.csv.ts similarity index 51% rename from examples/plot/docs/data/plot-version-data.csv.ts rename to examples/plot/src/data/plot-version-data.csv.ts index 01fce053b..e62d536d9 100644 --- a/examples/plot/docs/data/plot-version-data.csv.ts +++ b/examples/plot/src/data/plot-version-data.csv.ts @@ -1,17 +1,11 @@ import {csvFormat} from "d3-dsv"; import {json} from "d3-fetch"; -async function load(project) { - const downloads = new Map( - Object.entries((await json(`https://api.npmjs.org/versions/${encodeURIComponent(project)}/last-week`)).downloads) - ); +async function load(project: string) { + const {downloads} = await json(`https://api.npmjs.org/versions/${encodeURIComponent(project)}/last-week`); const info = await json(`https://registry.npmjs.org/${encodeURIComponent(project)}`); return Object.values(info.versions as {version: string}[]) - .map(({version}) => ({ - version, - date: new Date(info.time[version]), - downloads: downloads.get(version) - })) + .map(({version}) => ({version, date: new Date(info.time[version]), downloads: downloads[version]})) .sort((a, b) => (a.date > b.date ? 1 : -1)); } diff --git a/examples/plot/src/index.md b/examples/plot/src/index.md new file mode 100644 index 000000000..506ed81e4 --- /dev/null +++ b/examples/plot/src/index.md @@ -0,0 +1,159 @@ +--- +theme: dashboard +--- + +# Observable Plot downloads + +```js +import {revive} from "./components/revive.js"; +import {Trend} from "./components/trend.js"; +import {BurndownPlot} from "./components/burndownPlot.js"; +import {DailyPlot} from "./components/dailyPlot.js"; +``` + +```js +const versions = FileAttachment("data/plot-version-data.csv").csv({typed: true}); +const downloads = FileAttachment("data/plot-npm-downloads.csv").csv({typed: true}); +const issues = FileAttachment("data/plot-github-issues.json").json().then(revive); +const stars = FileAttachment("data/plot-github-stars.csv").csv({typed: true}); +``` + +```js +// These dates are declared globally to ensure consistency across plots. +const end = downloads[0].date; +const start = d3.utcYear.offset(end, -2); +const lastMonth = d3.utcDay.offset(end, -28); +const lastWeek = d3.utcDay.offset(end, -7); +const x = {domain: [start, end]}; +``` + + + +
+

Daily npm downloads

+

28d and 7d moving average

+ ${resize((width) => + DailyPlot(downloads, { + width, + marginRight: 40, + x, + y: {insetTop: 40, label: "downloads"}, + annotations: versions.filter((d) => !/-/.test(d.version)).map((d) => ({date: d.date, text: d.version, href: `https://github.com/observablehq/plot/releases/v${d.version}`})) + }) + )} +
+ +
+

Weekly downloads by version

+

Last 7d, grouped by major version

+ ${resize((width) => + Plot.plot({ + width, + x: {label: null, round: true, axis: "top"}, + y: {type: "band", reverse: true}, + marginBottom: 0, + color: {type: "ordinal", scheme: "ylgnbu"}, + marks: [ + Plot.barX(versions, { + x: "downloads", + stroke: "white", + strokeWidth: 0.5, + y: (d) => d.version.split(".").slice(0, 2).join("."), + fill: (d) => d.version.split(".").slice(0, 2).join("."), + tip: { + channels: { + version: "version", + released: (d) => `${d3.utcDay.count(d.date, end).toLocaleString("en-US")} days ago`, + downloads: "downloads", + }, + format: {fill: false, x: false, y: false} + } + }), + Plot.ruleX([0]), + Plot.textX(versions, Plot.stackX({ + x: "downloads", + y: (d) => d.version.split(".").slice(0, 2).join("."), + text: (d) => d.downloads > 500 ? d.version : null, + fill: "white", + stroke: (d) => d.version.split(".").slice(0, 2).join("."), + strokeWidth: 5, + pointerEvents: null + })) + ] + }) + )} +
+ + + +
+
+

Open issues over time

+ ${BurndownPlot(issues.filter((d) => !d.pull_request), {x, color: {legend: true, label: "open month"}})} +
+
+ +
+
+ ${Inputs.table( + issues + .filter((d) => d.state === "open" && d.reactions.total_count > 5) + .sort((a, b) => b.reactions.total_count - a.reactions.total_count) + .map((d) => ({ + "title": {title: d.title, number: d.number}, + "reactions": d.reactions.total_count, + "days old": d3.utcDay.count(d.created_at, end) + })), + { + width, + header: { + title: "Top issues" + }, + format: { + title: (d) => html`${d.title}` + } + } + )} +
+
diff --git a/examples/responsive-iframe/.gitignore b/examples/responsive-iframe/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/responsive-iframe/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/responsive-iframe/README.md b/examples/responsive-iframe/README.md new file mode 100644 index 000000000..2c8c9747a --- /dev/null +++ b/examples/responsive-iframe/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Responsive iframe + +View live: + +This Observable Framework example demonstrates how to implement a responsive iframe such that the height of the iframe automatically adjusts to show all of the content without scrolling. This example also demonstrates how to turn off Framework’s additional user interface elements (such as the sidebar) so that the embedded page contains only content. The main page is in [`src/index.md`](./src/index.md?plain=1) and the embedded page is in [`src/embed.md`](./src/embed.md?plain=1). diff --git a/examples/responsive-iframe/observablehq.config.js b/examples/responsive-iframe/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/responsive-iframe/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/responsive-iframe/package.json b/examples/responsive-iframe/package.json new file mode 100644 index 000000000..0a03a1af8 --- /dev/null +++ b/examples/responsive-iframe/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.1" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/responsive-iframe/src/.gitignore b/examples/responsive-iframe/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/responsive-iframe/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/responsive-iframe/src/embed.md b/examples/responsive-iframe/src/embed.md new file mode 100644 index 000000000..2eff174b3 --- /dev/null +++ b/examples/responsive-iframe/src/embed.md @@ -0,0 +1,18 @@ +--- +sidebar: false +header: false +footer: false +pager: false +--- + +I am a responsive iframe. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada ante orci, a sodales mi faucibus eu. Nunc leo nunc, cursus vitae blandit vestibulum, porttitor vel enim. Aenean sagittis ornare sapien, et dictum erat aliquet ac. Mauris vitae fringilla arcu. Mauris faucibus lorem laoreet diam tincidunt blandit. + +Maecenas aliquet, nisi ac imperdiet molestie, libero neque tempor lacus, sit amet pellentesque lacus sapien in tellus. Fusce ex sem, scelerisque in massa sit amet, mollis pulvinar nibh. Integer rutrum sagittis mauris in pharetra. Maecenas accumsan est sit amet nunc scelerisque scelerisque. Nam rutrum nunc placerat lectus varius rutrum. Fusce viverra dolor felis, vitae aliquam velit viverra in. + +```js +const observer = new ResizeObserver(([entry]) => parent.postMessage({height: entry.target.offsetHeight}, "*")); +observer.observe(document.documentElement); +invalidation.then(() => observer.disconnect()); +``` diff --git a/examples/responsive-iframe/src/index.md b/examples/responsive-iframe/src/index.md new file mode 100644 index 000000000..af2610f1b --- /dev/null +++ b/examples/responsive-iframe/src/index.md @@ -0,0 +1,52 @@ +# Responsive iframe + +This example demonstrates how to implement a responsive iframe using Observable Framework such that the height of the iframe automatically adjusts to show all of the content without scrolling. This example also demonstrates how to turn off Framework’s additional user interface elements (such as the sidebar) so that the embedded page contains only content. + +Try resizing the width of the iframe using the slider below; notice that the height adjusts automatically. + +```js +const iframeWidth = view(Inputs.range([200, 640], {step: 1, value: document.querySelector("#observablehq-main").offsetWidth, label: "Width"})); +``` + + + +```html run=false + +``` + +```js +iframe.width = iframeWidth; // set the iframe width reactively +``` + +On the embedded page (`src/embed.md`), the following code uses a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) to observe the content height and posts a message to the parent frame reporting the new height. + +```js run=false +const observer = new ResizeObserver(([entry]) => parent.postMessage({height: entry.target.offsetHeight}, "*")); +observer.observe(document.documentElement); +invalidation.then(() => observer.disconnect()); +``` + +
+ +The `invalidation` promise is used to remove the old observer if the code is re-run. This is only needed during development. + +
+ +In the parent frame (on this page, `src/index.md`), there’s a corresponding listener that receives messages and adjusts the height of the iframe accordingly. + +```js echo +const messaged = (event) => iframe.height = event.data.height; +addEventListener("message", messaged); +invalidation.then(() => removeEventListener("message", messaged)); +``` + +Lastly, the embedded page uses front matter to turn off the sidebar, header, footer, and pager. If you prefer, you can disable these for the entire project by adding these same options to the `observablehq.config.js` file. + +```yaml run=false +--- +sidebar: false +header: false +footer: false +pager: false +--- +``` diff --git a/examples/us-dams/.gitignore b/examples/us-dams/.gitignore new file mode 100644 index 000000000..734089155 --- /dev/null +++ b/examples/us-dams/.gitignore @@ -0,0 +1,8 @@ +.DS_Store +dist/ +src/.observablehq/cache/ +node_modules/ +yarn-error.log +src/.observablehq/deploy.json +.Rhistory +.Rdata diff --git a/examples/us-dams/README.md b/examples/us-dams/README.md new file mode 100644 index 000000000..f4f9eb3d5 --- /dev/null +++ b/examples/us-dams/README.md @@ -0,0 +1,39 @@ +[Framework examples →](../) + +# U.S. dams + +View live: + +This Observable Framework example explores data for 90,000+ dams in the United States from the [National Inventory of Dams](https://nid.sec.usace.army.mil/) (NID). + +The pages feature nationwide and state-by-state summaries of dam locations, highlighting dam conditions and hazard assessment. + +Interactive maps are created with [deck.gl](https://deck.gl/). To create your own maps with deck.gl in Observable Framework, see our [documentation](https://observablehq.com/framework/lib/deckgl). All other charts are built with [Observable Plot](https://observablehq.com/plot/), and searchable tables are created with Observable Inputs by combining [Inputs.search and Inputs.table](https://observablehq.com/framework/inputs/search). + +## Implementation + +``` +. +├── README.md +├── observablehq.config.js +├── package.json +└── src + ├── data + │   ├── county_fips_master.csv + │   ├── dam-simple.csv.R + │   └── us-state-capitals.csv + ├── by-state.md + └── index.md +``` + +The R data loader `dam-simple.csv.R` accesses data directly from the NID (at https://nid.sec.usace.army.mil/api/nation/csv) and generates the `dam-simple.csv` snapshot used in both pages. To run the data loader, you need to have [R](https://www.r-project.org/) installed, along with the [data.table](https://github.com/Rdatatable/data.table), [dplyr](https://github.com/tidyverse/dplyr), and [readr](https://github.com/tidyverse/readr) packages (e.g. with `install.packages("dplyr")`). + +### Data + +- Dam records are accessed from the NID API as a CSV, then minimally wrangled by the `dam-simple.csv.R` data loader to produce the static file with dam records used in our dashboard (`dam-simple.csv`) + +- County FIPS codes (`src/data/county_fips_master.csv`) are from https://github.com/kjhealy/fips-codes/blob/master/county_fips_master.csv + +- US state capitals and locations (`src/data/us-state-capitals.csv`) are from https://github.com/jasperdebie/VisInfo/blob/master/us-state-capitals.csv + +- County, state, and nation-level spatial polygons are accessed from the [us-atlas](https://www.npmjs.com/package/us-atlas?activeTab=readme) repository diff --git a/examples/us-dams/observablehq.config.js b/examples/us-dams/observablehq.config.js new file mode 100644 index 000000000..797cad6c9 --- /dev/null +++ b/examples/us-dams/observablehq.config.js @@ -0,0 +1,8 @@ +export default { + root: "src", + title: "U.S. dams overview", + theme: "wide", + sidebar: true, + pager: false, + toc: false +}; diff --git a/examples/us-dams/package.json b/examples/us-dams/package.json new file mode 100644 index 000000000..929413d75 --- /dev/null +++ b/examples/us-dams/package.json @@ -0,0 +1,24 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.1", + "d3-dsv": "^3.0.1", + "d3-time-format": "^4.1.0", + "topojson-client": "^3.1.0", + "topojson-simplify": "^3.0.3" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/us-dams/src/by-state.md b/examples/us-dams/src/by-state.md new file mode 100644 index 000000000..45a5899e8 --- /dev/null +++ b/examples/us-dams/src/by-state.md @@ -0,0 +1,356 @@ +# Dam summary by state or territory + +```js +// Read in static files +const dams = FileAttachment("data/dam-simple.csv").csv({ typed: true }); + +const fips = FileAttachment("data/county_fips_master.csv").csv({ typed: true }); + +const capitals = FileAttachment("data/us-state-capitals.csv").csv({ + typed: true, +}); + +// County-level data for US +const us = await fetch(import.meta.resolve("npm:us-atlas/counties-10m.json")).then((r) => r.json()); + +// State polygons +const states = topojson.feature(us, us.objects.states); + +// County polygons +const counties = topojson + .feature(us, us.objects.counties) + .features.map((d) => ({ ...d, fips: +d.id })); +``` + +```js +const fipsSelectedState = fips + .filter((d) => d.state_name == pickState) + .map((d) => d.fips); + +const capitalSelectedState = capitals.filter((d) => d.name == pickState); +``` + +```js +const selectedState = states.features.filter((d) => d.properties.name === pickState); + +const selectedStateCounties = counties.filter((d) => + fipsSelectedState.includes(d.fips) +); +``` + +```js +const stateCentroid = d3.geoCentroid(selectedState[0].geometry); +``` + +```js +// Color palette for dam conditions +const conditions = [ + "Not available", + "Satisfactory", + "Fair", + "Unsatisfactory", + "Poor" +]; + +const conditionsColors = [ + "#9498a0", + "#4269d0", + "#97bbf5", + "#efb118", + "#ff725c" +]; +``` + +```js +const pickState = view( + Inputs.select( + dams.map((d) => d.state), + { + multiple: false, + label: "Pick a state or territory:", + unique: true, + sort: true, + value: "Louisiana" + } + ) +); +``` + +```js +// Get dams just for the selected state +const damsSelectedState = dams.filter((d) => d.state == pickState); +``` + +## ${pickState} overview + +
+
+

${pickState} dams by primary purpose and ownership

+ ${resize((width, height) => purposeOwnership(width, height))} +
+
+
+

${pickState} dam locations and conditions

+

Zoom and scroll, or hold shift to rotate. Hover on individual dams for more information. Size represents maximum storage capacity (acre-feet). The scale should only be used to compare dam sizes within ${pickState}, not across states.

+ ${resize((width) => stackedBarChart(width))} +
+
+
+
+
+
+
+
+

${pickState} dams counts by condition and hazard potential

+ Of ${d3.format(",")(damsSelectedState.length)} ${pickState} ${damsSelectedState.length == 1 ? `dam` : `dams`} listed in the NID, ${d3.format(",")(damsSelectedState.filter(d => d.conditionAssessment == "Poor").length)} ${damsSelectedState.filter(d => d.conditionAssessment == "Poor").length == 1 ? `is` : `are`} listed as being in Poor condition. Of those in Poor condition, ${d3.format(",")(damsSelectedState.filter(d => d.conditionAssessment == "Poor" && d.hazardPotential == "High").length)} ${damsSelectedState.filter(d => d.conditionAssessment == "Poor" && d.hazardPotential == "High").length == 1 ? `has` : `have`} High hazard potential, where “downstream flooding would likely result in loss of human life.” +
${resize((width, height) => conditionHeatmap(width, height))}
+
+
+ +
+
+
+ ${damSearch} +
+ ${Inputs.table(damSearchValue, {columns: ["name", "county", "ownerType", "primaryDamType", "maxStorageAcreFt", "hazardPotential", "conditionAssessment"], header: {name: "Name", county: "County", ownerType: "Ownership", primaryDamType: "Type (primary)", maxStorageAcreFt: "Maximum storage (acre-feet)", hazardPotential: "Hazard potential", conditionAssessment: "Condition"}})} +
+
+ + + +```js +const conditionCounts = d3 + .flatRollup( + damsSelectedState, + (d) => d.length, + (v) => v.conditionAssessment + ) + .map(([condition, count]) => ({ condition, count })); + +// Stacked horizontal (1-D) bar chart of conditions +function stackedBarChart(width) { + return Plot.plot({ + width, + height: 50, + //marginTop: 40, + //marginBottom: 30, + color: { domain: conditions, range: conditionsColors, legend: true }, + x: { label: "Number of dams" }, + marks: [ + Plot.barX( + conditionCounts, + Plot.stackX({ + x: "count", + fill: "condition", + order: conditions, + tip: true, + rx: 2, + insetRight: 1 + }) + ) + ], + }); +} +``` + + + +```js +function purposeOwnership(width, height) { + return Plot.plot({ + width, + marginTop: 0, + marginBottom: 40, + height: height - 55, + marginLeft: 170, + y: {label: null, label: "Primary purpose"}, + x: {grid: true, label:"Number of dams"}, + color: { + legend: true, + scheme: "Set2", + domain: ["Private", "Public Utility", "Local Government", "State", "Federal"], + label: "Ownership"}, + marks: + [ + Plot.barX(damsSelectedState, + Plot.groupY({x: "count"}, + { + y: "primaryPurpose", + rx: 2, + insetRight: 1, + sort: {y: "x", reverse: true, limit: 10}, + fill: "ownerType", + order: ["Private", "Public Utility", "Local Government", "State", "Federal"], + tip: true})) + ] + }); +} +``` + + + +```js +function conditionHeatmap(width, height) { + return Plot.plot({ + width, + height, + marginRight: 10, + marginLeft: 100, + r: {range: [4, 20]}, + y: {domain: ["Undetermined", "Low", "Significant", "High"], + label: "Hazard potential", + grid: true, + reverse: true}, + x: { + domain: conditions, + label: "Condition", + grid: true + }, + color: {domain: conditions, range: conditionsColors, label: "Condition"}, + marks: [ + Plot.dot(damsSelectedState, Plot.group({r: "count"}, + {y: "hazardPotential", + x: "conditionAssessment", + tip: true, + fill: "conditionAssessment" + }) + ) + ] + }); +} +``` + + + +```js +const damSearch = Inputs.search(damsSelectedState); + +const damSearchValue = Generators.input(damSearch); +``` + + + +```js +import deck from "npm:deck.gl"; + +const {DeckGL, AmbientLight, GeoJsonLayer, TextLayer, HexagonLayer, LightingEffect, PointLight, ScatterplotLayer} = deck; +``` + +```js +// deck.gl setup +const colorRange = [ + [148,152,160], // not available + [66,105,208], // satisfactory + [151,187,245], // fair + [239, 213, 24], // unsatisfactory + [255, 114, 92] // poor +]; + +const colorLegend = Plot.plot({ + margin: 0, + marginTop: 30, + marginRight: 20, + width: width / 4, + height: 50, + style: "color: 'currentColor';", + x: {padding: 0, axis: null}, + marks: [ + Plot.cellX(colorRange, {fill: ([r, g, b]) => `rgb(${r},${g},${b})`, inset: 0.5}), + Plot.text(["Fewer dams"], {frameAnchor: "top-left", dy: -12}), + Plot.text(["More dams"], {frameAnchor: "top-right", dy: -12}) + ] +}); +``` + +```js +const deckInstance = new DeckGL({ + container, + initialViewState, + controller: true, +}); + +// Replace (instead of overlay) map on re-run +invalidation.then(() => { + deckInstance.finalize(); + container.innerHTML = ""; +}); +``` + +```js +const initialViewState = { + longitude: stateCentroid[0], + latitude: stateCentroid[1], + zoom: 6, + minZoom: 3, + maxZoom: 9, + pitch: 0, + bearing: 0 +}; + +// Tooltip function +function getTooltip({object}) { + return object && `Name: ${object.name}\nPrimary purpose: ${object.primaryPurpose}\nMaximum storage: ${d3.format(",")(object.maxStorageAcreFt)} acre feet\nYear completed: ${object.yearCompleted}\nCondition: ${object.conditionAssessment}\nHazard potential: ${object.hazardPotential}`; +} +``` + +```js +deckInstance.setProps({ + layers: [ + new GeoJsonLayer({ + id: "base-map", + data: selectedState, + lineWidthMinPixels: 1.5, + getLineColor: [84, 84, 84], + getFillColor: [38, 38, 38] + }), + new GeoJsonLayer({ + id: "county-map", + data: selectedStateCounties, + lineWidthMinPixels: 1.5, + getLineColor: [84, 84, 84], + getFillColor: [38, 38, 38] + }), + new ScatterplotLayer({ + id: 'scatter-plot', + pickable: true, + data: damsSelectedState, + radiusScale: 0.010, + radiusMinPixels: 2, + radiusMaxPixels: 20, + getRadius: d => d.maxStorageAcreFt, + getPosition: d => [d.longitude, d.latitude, 0], + getFillColor: d => d.conditionAssessment == "Not available" ? colorRange[0] : (d.conditionAssessment == "Satisfactory" ? colorRange[1] : (d.conditionAssessment == "Fair" ? colorRange[2] : (d.conditionAssessment == "Unsatisfactory" ? colorRange[3] : colorRange[4]))), + opacity: 0.6 + }), + new ScatterplotLayer({ + id: 'scatter-plot-2', + data: capitalSelectedState, + radiusMinPixels: 8, + getPosition: d => [d.longitude, d.latitude], + getFillColor: [255, 255, 255, 255], + getLineWidth: 20, + opacity: 1 + }), + new TextLayer({ + id: "text-layer", + data: capitalSelectedState, + pickable: true, + getPosition: d => [d.longitude, d.latitude], + getText: d => d.description, + fontFamily: 'Helvetica', + fontWeight: 700, + fontSettings: ({ + sdf: true, + }), + outlineWidth: 4, + getSize: 16, + getColor: [247,248,243, 255], + getTextAnchor: 'middle', + getAlignmentBaseline: 'center', + pickable: true, + getPixelOffset: [0, -20] + }) + ], + getTooltip +}); +``` diff --git a/examples/us-dams/src/data/county_fips_master.csv b/examples/us-dams/src/data/county_fips_master.csv new file mode 100644 index 000000000..24a25f43f --- /dev/null +++ b/examples/us-dams/src/data/county_fips_master.csv @@ -0,0 +1,3147 @@ +fips,county_name,state_abbr,state_name,long_name,sumlev,region,division,state,county,crosswalk,region_name,division_name +1001,Autauga County,AL,Alabama,Autauga County AL,50,3,6,1,1,3-6-1-1,South,East South Central +1003,Baldwin County,AL,Alabama,Baldwin County AL,50,3,6,1,3,3-6-1-3,South,East South Central +1005,Barbour County,AL,Alabama,Barbour County AL,50,3,6,1,5,3-6-1-5,South,East South Central +1007,Bibb County,AL,Alabama,Bibb County AL,50,3,6,1,7,3-6-1-7,South,East South Central +1009,Blount County,AL,Alabama,Blount County AL,50,3,6,1,9,3-6-1-9,South,East South Central +1011,Bullock County,AL,Alabama,Bullock County AL,50,3,6,1,11,3-6-1-11,South,East South Central +1013,Butler County,AL,Alabama,Butler County AL,50,3,6,1,13,3-6-1-13,South,East South Central +1015,Calhoun County,AL,Alabama,Calhoun County AL,50,3,6,1,15,3-6-1-15,South,East South Central +1017,Chambers County,AL,Alabama,Chambers County AL,50,3,6,1,17,3-6-1-17,South,East South Central +1019,Cherokee County,AL,Alabama,Cherokee County AL,50,3,6,1,19,3-6-1-19,South,East South Central +1021,Chilton County,AL,Alabama,Chilton County AL,50,3,6,1,21,3-6-1-21,South,East South Central +1023,Choctaw County,AL,Alabama,Choctaw County AL,50,3,6,1,23,3-6-1-23,South,East South Central +1025,Clarke County,AL,Alabama,Clarke County AL,50,3,6,1,25,3-6-1-25,South,East South Central +1027,Clay County,AL,Alabama,Clay County AL,50,3,6,1,27,3-6-1-27,South,East South Central +1029,Cleburne County,AL,Alabama,Cleburne County AL,50,3,6,1,29,3-6-1-29,South,East South Central +1031,Coffee County,AL,Alabama,Coffee County AL,50,3,6,1,31,3-6-1-31,South,East South Central +1033,Colbert County,AL,Alabama,Colbert County AL,50,3,6,1,33,3-6-1-33,South,East South Central +1035,Conecuh County,AL,Alabama,Conecuh County AL,50,3,6,1,35,3-6-1-35,South,East South Central +1037,Coosa County,AL,Alabama,Coosa County AL,50,3,6,1,37,3-6-1-37,South,East South Central +1039,Covington County,AL,Alabama,Covington County AL,50,3,6,1,39,3-6-1-39,South,East South Central +1041,Crenshaw County,AL,Alabama,Crenshaw County AL,50,3,6,1,41,3-6-1-41,South,East South Central +1043,Cullman County,AL,Alabama,Cullman County AL,50,3,6,1,43,3-6-1-43,South,East South Central +1045,Dale County,AL,Alabama,Dale County AL,50,3,6,1,45,3-6-1-45,South,East South Central +1047,Dallas County,AL,Alabama,Dallas County AL,50,3,6,1,47,3-6-1-47,South,East South Central +1049,DeKalb County,AL,Alabama,DeKalb County AL,50,3,6,1,49,3-6-1-49,South,East South Central +1051,Elmore County,AL,Alabama,Elmore County AL,50,3,6,1,51,3-6-1-51,South,East South Central +1053,Escambia County,AL,Alabama,Escambia County AL,50,3,6,1,53,3-6-1-53,South,East South Central +1055,Etowah County,AL,Alabama,Etowah County AL,50,3,6,1,55,3-6-1-55,South,East South Central +1057,Fayette County,AL,Alabama,Fayette County AL,50,3,6,1,57,3-6-1-57,South,East South Central +1059,Franklin County,AL,Alabama,Franklin County AL,50,3,6,1,59,3-6-1-59,South,East South Central +1061,Geneva County,AL,Alabama,Geneva County AL,50,3,6,1,61,3-6-1-61,South,East South Central +1063,Greene County,AL,Alabama,Greene County AL,50,3,6,1,63,3-6-1-63,South,East South Central +1065,Hale County,AL,Alabama,Hale County AL,50,3,6,1,65,3-6-1-65,South,East South Central +1067,Henry County,AL,Alabama,Henry County AL,50,3,6,1,67,3-6-1-67,South,East South Central +1069,Houston County,AL,Alabama,Houston County AL,50,3,6,1,69,3-6-1-69,South,East South Central +1071,Jackson County,AL,Alabama,Jackson County AL,50,3,6,1,71,3-6-1-71,South,East South Central +1073,Jefferson County,AL,Alabama,Jefferson County AL,50,3,6,1,73,3-6-1-73,South,East South Central +1075,Lamar County,AL,Alabama,Lamar County AL,50,3,6,1,75,3-6-1-75,South,East South Central +1077,Lauderdale County,AL,Alabama,Lauderdale County AL,50,3,6,1,77,3-6-1-77,South,East South Central +1079,Lawrence County,AL,Alabama,Lawrence County AL,50,3,6,1,79,3-6-1-79,South,East South Central +1081,Lee County,AL,Alabama,Lee County AL,50,3,6,1,81,3-6-1-81,South,East South Central +1083,Limestone County,AL,Alabama,Limestone County AL,50,3,6,1,83,3-6-1-83,South,East South Central +1085,Lowndes County,AL,Alabama,Lowndes County AL,50,3,6,1,85,3-6-1-85,South,East South Central +1087,Macon County,AL,Alabama,Macon County AL,50,3,6,1,87,3-6-1-87,South,East South Central +1089,Madison County,AL,Alabama,Madison County AL,50,3,6,1,89,3-6-1-89,South,East South Central +1091,Marengo County,AL,Alabama,Marengo County AL,50,3,6,1,91,3-6-1-91,South,East South Central +1093,Marion County,AL,Alabama,Marion County AL,50,3,6,1,93,3-6-1-93,South,East South Central +1095,Marshall County,AL,Alabama,Marshall County AL,50,3,6,1,95,3-6-1-95,South,East South Central +1097,Mobile County,AL,Alabama,Mobile County AL,50,3,6,1,97,3-6-1-97,South,East South Central +1099,Monroe County,AL,Alabama,Monroe County AL,50,3,6,1,99,3-6-1-99,South,East South Central +1101,Montgomery County,AL,Alabama,Montgomery County AL,50,3,6,1,101,3-6-1-101,South,East South Central +1103,Morgan County,AL,Alabama,Morgan County AL,50,3,6,1,103,3-6-1-103,South,East South Central +1105,Perry County,AL,Alabama,Perry County AL,50,3,6,1,105,3-6-1-105,South,East South Central +1107,Pickens County,AL,Alabama,Pickens County AL,50,3,6,1,107,3-6-1-107,South,East South Central +1109,Pike County,AL,Alabama,Pike County AL,50,3,6,1,109,3-6-1-109,South,East South Central +1111,Randolph County,AL,Alabama,Randolph County AL,50,3,6,1,111,3-6-1-111,South,East South Central +1113,Russell County,AL,Alabama,Russell County AL,50,3,6,1,113,3-6-1-113,South,East South Central +1115,St. Clair County,AL,Alabama,St. Clair County AL,50,3,6,1,115,3-6-1-115,South,East South Central +1117,Shelby County,AL,Alabama,Shelby County AL,50,3,6,1,117,3-6-1-117,South,East South Central +1119,Sumter County,AL,Alabama,Sumter County AL,50,3,6,1,119,3-6-1-119,South,East South Central +1121,Talladega County,AL,Alabama,Talladega County AL,50,3,6,1,121,3-6-1-121,South,East South Central +1123,Tallapoosa County,AL,Alabama,Tallapoosa County AL,50,3,6,1,123,3-6-1-123,South,East South Central +1125,Tuscaloosa County,AL,Alabama,Tuscaloosa County AL,50,3,6,1,125,3-6-1-125,South,East South Central +1127,Walker County,AL,Alabama,Walker County AL,50,3,6,1,127,3-6-1-127,South,East South Central +1129,Washington County,AL,Alabama,Washington County AL,50,3,6,1,129,3-6-1-129,South,East South Central +1131,Wilcox County,AL,Alabama,Wilcox County AL,50,3,6,1,131,3-6-1-131,South,East South Central +1133,Winston County,AL,Alabama,Winston County AL,50,3,6,1,133,3-6-1-133,South,East South Central +2013,Aleutians East Borough,AK,Alaska,Aleutians East Borough AK,50,4,9,2,13,4-9-2-13,West,Pacific +2016,Aleutians West Census Area,AK,Alaska,Aleutians West Census Area AK,50,4,9,2,16,4-9-2-16,West,Pacific +2020,Anchorage Municipality,AK,Alaska,Anchorage Municipality AK,50,4,9,2,20,4-9-2-20,West,Pacific +2050,Bethel Census Area,AK,Alaska,Bethel Census Area AK,50,4,9,2,50,4-9-2-50,West,Pacific +2060,Bristol Bay Borough,AK,Alaska,Bristol Bay Borough AK,50,4,9,2,60,4-9-2-60,West,Pacific +2068,Denali Borough,AK,Alaska,Denali Borough AK,50,4,9,2,68,4-9-2-68,West,Pacific +2070,Dillingham Census Area,AK,Alaska,Dillingham Census Area AK,50,4,9,2,70,4-9-2-70,West,Pacific +2090,Fairbanks North Star Borough,AK,Alaska,Fairbanks North Star Borough AK,50,4,9,2,90,4-9-2-90,West,Pacific +2100,Haines Borough,AK,Alaska,Haines Borough AK,50,4,9,2,100,4-9-2-100,West,Pacific +2105,Hoonah-Angoon Census Area,AK,Alaska,Hoonah-Angoon Census Area AK,50,4,9,2,105,4-9-2-105,West,Pacific +2110,Juneau City and Borough,AK,Alaska,Juneau City and Borough AK,50,4,9,2,110,4-9-2-110,West,Pacific +2122,Kenai Peninsula Borough,AK,Alaska,Kenai Peninsula Borough AK,50,4,9,2,122,4-9-2-122,West,Pacific +2130,Ketchikan Gateway Borough,AK,Alaska,Ketchikan Gateway Borough AK,50,4,9,2,130,4-9-2-130,West,Pacific +2150,Kodiak Island Borough,AK,Alaska,Kodiak Island Borough AK,50,4,9,2,150,4-9-2-150,West,Pacific +2158,Kusilvak Census Area,AK,Alaska,Kusilvak Census Area AK,50,4,9,2,158,4-9-2-158,West,Pacific +2164,Lake and Peninsula Borough,AK,Alaska,Lake and Peninsula Borough AK,50,4,9,2,164,4-9-2-164,West,Pacific +2170,Matanuska-Susitna Borough,AK,Alaska,Matanuska-Susitna Borough AK,50,4,9,2,170,4-9-2-170,West,Pacific +2180,Nome Census Area,AK,Alaska,Nome Census Area AK,50,4,9,2,180,4-9-2-180,West,Pacific +2185,North Slope Borough,AK,Alaska,North Slope Borough AK,50,4,9,2,185,4-9-2-185,West,Pacific +2188,Northwest Arctic Borough,AK,Alaska,Northwest Arctic Borough AK,50,4,9,2,188,4-9-2-188,West,Pacific +2195,Petersburg Borough,AK,Alaska,Petersburg Borough AK,50,4,9,2,195,4-9-2-195,West,Pacific +2198,Prince of Wales-Hyder Census Area,AK,Alaska,Prince of Wales-Hyder Census Area AK,50,4,9,2,198,4-9-2-198,West,Pacific +2220,Sitka City and Borough,AK,Alaska,Sitka City and Borough AK,50,4,9,2,220,4-9-2-220,West,Pacific +2230,Skagway Municipality,AK,Alaska,Skagway Municipality AK,50,4,9,2,230,4-9-2-230,West,Pacific +2240,Southeast Fairbanks Census Area,AK,Alaska,Southeast Fairbanks Census Area AK,50,4,9,2,240,4-9-2-240,West,Pacific +2261,Valdez-Cordova Census Area,AK,Alaska,Valdez-Cordova Census Area AK,50,4,9,2,261,4-9-2-261,West,Pacific +2270,Wade Hampton Census Area,AK,Alaska,Wade Hampton Census Area AK,NA,NA,NA,NA,NA,NA-NA-NA-NA,NA,NA +2275,Wrangell City and Borough,AK,Alaska,Wrangell City and Borough AK,50,4,9,2,275,4-9-2-275,West,Pacific +2282,Yakutat City and Borough,AK,Alaska,Yakutat City and Borough AK,50,4,9,2,282,4-9-2-282,West,Pacific +2290,Yukon-Koyukuk Census Area,AK,Alaska,Yukon-Koyukuk Census Area AK,50,4,9,2,290,4-9-2-290,West,Pacific +4001,Apache County,AZ,Arizona,Apache County AZ,50,4,8,4,1,4-8-4-1,West,Mountain +4003,Cochise County,AZ,Arizona,Cochise County AZ,50,4,8,4,3,4-8-4-3,West,Mountain +4005,Coconino County,AZ,Arizona,Coconino County AZ,50,4,8,4,5,4-8-4-5,West,Mountain +4007,Gila County,AZ,Arizona,Gila County AZ,50,4,8,4,7,4-8-4-7,West,Mountain +4009,Graham County,AZ,Arizona,Graham County AZ,50,4,8,4,9,4-8-4-9,West,Mountain +4011,Greenlee County,AZ,Arizona,Greenlee County AZ,50,4,8,4,11,4-8-4-11,West,Mountain +4012,La Paz County,AZ,Arizona,La Paz County AZ,50,4,8,4,12,4-8-4-12,West,Mountain +4013,Maricopa County,AZ,Arizona,Maricopa County AZ,50,4,8,4,13,4-8-4-13,West,Mountain +4015,Mohave County,AZ,Arizona,Mohave County AZ,50,4,8,4,15,4-8-4-15,West,Mountain +4017,Navajo County,AZ,Arizona,Navajo County AZ,50,4,8,4,17,4-8-4-17,West,Mountain +4019,Pima County,AZ,Arizona,Pima County AZ,50,4,8,4,19,4-8-4-19,West,Mountain +4021,Pinal County,AZ,Arizona,Pinal County AZ,50,4,8,4,21,4-8-4-21,West,Mountain +4023,Santa Cruz County,AZ,Arizona,Santa Cruz County AZ,50,4,8,4,23,4-8-4-23,West,Mountain +4025,Yavapai County,AZ,Arizona,Yavapai County AZ,50,4,8,4,25,4-8-4-25,West,Mountain +4027,Yuma County,AZ,Arizona,Yuma County AZ,50,4,8,4,27,4-8-4-27,West,Mountain +5001,Arkansas County,AR,Arkansas,Arkansas County AR,50,3,7,5,1,3-7-5-1,South,West South Central +5003,Ashley County,AR,Arkansas,Ashley County AR,50,3,7,5,3,3-7-5-3,South,West South Central +5005,Baxter County,AR,Arkansas,Baxter County AR,50,3,7,5,5,3-7-5-5,South,West South Central +5007,Benton County,AR,Arkansas,Benton County AR,50,3,7,5,7,3-7-5-7,South,West South Central +5009,Boone County,AR,Arkansas,Boone County AR,50,3,7,5,9,3-7-5-9,South,West South Central +5011,Bradley County,AR,Arkansas,Bradley County AR,50,3,7,5,11,3-7-5-11,South,West South Central +5013,Calhoun County,AR,Arkansas,Calhoun County AR,50,3,7,5,13,3-7-5-13,South,West South Central +5015,Carroll County,AR,Arkansas,Carroll County AR,50,3,7,5,15,3-7-5-15,South,West South Central +5017,Chicot County,AR,Arkansas,Chicot County AR,50,3,7,5,17,3-7-5-17,South,West South Central +5019,Clark County,AR,Arkansas,Clark County AR,50,3,7,5,19,3-7-5-19,South,West South Central +5021,Clay County,AR,Arkansas,Clay County AR,50,3,7,5,21,3-7-5-21,South,West South Central +5023,Cleburne County,AR,Arkansas,Cleburne County AR,50,3,7,5,23,3-7-5-23,South,West South Central +5025,Cleveland County,AR,Arkansas,Cleveland County AR,50,3,7,5,25,3-7-5-25,South,West South Central +5027,Columbia County,AR,Arkansas,Columbia County AR,50,3,7,5,27,3-7-5-27,South,West South Central +5029,Conway County,AR,Arkansas,Conway County AR,50,3,7,5,29,3-7-5-29,South,West South Central +5031,Craighead County,AR,Arkansas,Craighead County AR,50,3,7,5,31,3-7-5-31,South,West South Central +5033,Crawford County,AR,Arkansas,Crawford County AR,50,3,7,5,33,3-7-5-33,South,West South Central +5035,Crittenden County,AR,Arkansas,Crittenden County AR,50,3,7,5,35,3-7-5-35,South,West South Central +5037,Cross County,AR,Arkansas,Cross County AR,50,3,7,5,37,3-7-5-37,South,West South Central +5039,Dallas County,AR,Arkansas,Dallas County AR,50,3,7,5,39,3-7-5-39,South,West South Central +5041,Desha County,AR,Arkansas,Desha County AR,50,3,7,5,41,3-7-5-41,South,West South Central +5043,Drew County,AR,Arkansas,Drew County AR,50,3,7,5,43,3-7-5-43,South,West South Central +5045,Faulkner County,AR,Arkansas,Faulkner County AR,50,3,7,5,45,3-7-5-45,South,West South Central +5047,Franklin County,AR,Arkansas,Franklin County AR,50,3,7,5,47,3-7-5-47,South,West South Central +5049,Fulton County,AR,Arkansas,Fulton County AR,50,3,7,5,49,3-7-5-49,South,West South Central +5051,Garland County,AR,Arkansas,Garland County AR,50,3,7,5,51,3-7-5-51,South,West South Central +5053,Grant County,AR,Arkansas,Grant County AR,50,3,7,5,53,3-7-5-53,South,West South Central +5055,Greene County,AR,Arkansas,Greene County AR,50,3,7,5,55,3-7-5-55,South,West South Central +5057,Hempstead County,AR,Arkansas,Hempstead County AR,50,3,7,5,57,3-7-5-57,South,West South Central +5059,Hot Spring County,AR,Arkansas,Hot Spring County AR,50,3,7,5,59,3-7-5-59,South,West South Central +5061,Howard County,AR,Arkansas,Howard County AR,50,3,7,5,61,3-7-5-61,South,West South Central +5063,Independence County,AR,Arkansas,Independence County AR,50,3,7,5,63,3-7-5-63,South,West South Central +5065,Izard County,AR,Arkansas,Izard County AR,50,3,7,5,65,3-7-5-65,South,West South Central +5067,Jackson County,AR,Arkansas,Jackson County AR,50,3,7,5,67,3-7-5-67,South,West South Central +5069,Jefferson County,AR,Arkansas,Jefferson County AR,50,3,7,5,69,3-7-5-69,South,West South Central +5071,Johnson County,AR,Arkansas,Johnson County AR,50,3,7,5,71,3-7-5-71,South,West South Central +5073,Lafayette County,AR,Arkansas,Lafayette County AR,50,3,7,5,73,3-7-5-73,South,West South Central +5075,Lawrence County,AR,Arkansas,Lawrence County AR,50,3,7,5,75,3-7-5-75,South,West South Central +5077,Lee County,AR,Arkansas,Lee County AR,50,3,7,5,77,3-7-5-77,South,West South Central +5079,Lincoln County,AR,Arkansas,Lincoln County AR,50,3,7,5,79,3-7-5-79,South,West South Central +5081,Little River County,AR,Arkansas,Little River County AR,50,3,7,5,81,3-7-5-81,South,West South Central +5083,Logan County,AR,Arkansas,Logan County AR,50,3,7,5,83,3-7-5-83,South,West South Central +5085,Lonoke County,AR,Arkansas,Lonoke County AR,50,3,7,5,85,3-7-5-85,South,West South Central +5087,Madison County,AR,Arkansas,Madison County AR,50,3,7,5,87,3-7-5-87,South,West South Central +5089,Marion County,AR,Arkansas,Marion County AR,50,3,7,5,89,3-7-5-89,South,West South Central +5091,Miller County,AR,Arkansas,Miller County AR,50,3,7,5,91,3-7-5-91,South,West South Central +5093,Mississippi County,AR,Arkansas,Mississippi County AR,50,3,7,5,93,3-7-5-93,South,West South Central +5095,Monroe County,AR,Arkansas,Monroe County AR,50,3,7,5,95,3-7-5-95,South,West South Central +5097,Montgomery County,AR,Arkansas,Montgomery County AR,50,3,7,5,97,3-7-5-97,South,West South Central +5099,Nevada County,AR,Arkansas,Nevada County AR,50,3,7,5,99,3-7-5-99,South,West South Central +5101,Newton County,AR,Arkansas,Newton County AR,50,3,7,5,101,3-7-5-101,South,West South Central +5103,Ouachita County,AR,Arkansas,Ouachita County AR,50,3,7,5,103,3-7-5-103,South,West South Central +5105,Perry County,AR,Arkansas,Perry County AR,50,3,7,5,105,3-7-5-105,South,West South Central +5107,Phillips County,AR,Arkansas,Phillips County AR,50,3,7,5,107,3-7-5-107,South,West South Central +5109,Pike County,AR,Arkansas,Pike County AR,50,3,7,5,109,3-7-5-109,South,West South Central +5111,Poinsett County,AR,Arkansas,Poinsett County AR,50,3,7,5,111,3-7-5-111,South,West South Central +5113,Polk County,AR,Arkansas,Polk County AR,50,3,7,5,113,3-7-5-113,South,West South Central +5115,Pope County,AR,Arkansas,Pope County AR,50,3,7,5,115,3-7-5-115,South,West South Central +5117,Prairie County,AR,Arkansas,Prairie County AR,50,3,7,5,117,3-7-5-117,South,West South Central +5119,Pulaski County,AR,Arkansas,Pulaski County AR,50,3,7,5,119,3-7-5-119,South,West South Central +5121,Randolph County,AR,Arkansas,Randolph County AR,50,3,7,5,121,3-7-5-121,South,West South Central +5123,St. Francis County,AR,Arkansas,St. Francis County AR,50,3,7,5,123,3-7-5-123,South,West South Central +5125,Saline County,AR,Arkansas,Saline County AR,50,3,7,5,125,3-7-5-125,South,West South Central +5127,Scott County,AR,Arkansas,Scott County AR,50,3,7,5,127,3-7-5-127,South,West South Central +5129,Searcy County,AR,Arkansas,Searcy County AR,50,3,7,5,129,3-7-5-129,South,West South Central +5131,Sebastian County,AR,Arkansas,Sebastian County AR,50,3,7,5,131,3-7-5-131,South,West South Central +5133,Sevier County,AR,Arkansas,Sevier County AR,50,3,7,5,133,3-7-5-133,South,West South Central +5135,Sharp County,AR,Arkansas,Sharp County AR,50,3,7,5,135,3-7-5-135,South,West South Central +5137,Stone County,AR,Arkansas,Stone County AR,50,3,7,5,137,3-7-5-137,South,West South Central +5139,Union County,AR,Arkansas,Union County AR,50,3,7,5,139,3-7-5-139,South,West South Central +5141,Van Buren County,AR,Arkansas,Van Buren County AR,50,3,7,5,141,3-7-5-141,South,West South Central +5143,Washington County,AR,Arkansas,Washington County AR,50,3,7,5,143,3-7-5-143,South,West South Central +5145,White County,AR,Arkansas,White County AR,50,3,7,5,145,3-7-5-145,South,West South Central +5147,Woodruff County,AR,Arkansas,Woodruff County AR,50,3,7,5,147,3-7-5-147,South,West South Central +5149,Yell County,AR,Arkansas,Yell County AR,50,3,7,5,149,3-7-5-149,South,West South Central +6001,Alameda County,CA,California,Alameda County CA,50,4,9,6,1,4-9-6-1,West,Pacific +6003,Alpine County,CA,California,Alpine County CA,50,4,9,6,3,4-9-6-3,West,Pacific +6005,Amador County,CA,California,Amador County CA,50,4,9,6,5,4-9-6-5,West,Pacific +6007,Butte County,CA,California,Butte County CA,50,4,9,6,7,4-9-6-7,West,Pacific +6009,Calaveras County,CA,California,Calaveras County CA,50,4,9,6,9,4-9-6-9,West,Pacific +6011,Colusa County,CA,California,Colusa County CA,50,4,9,6,11,4-9-6-11,West,Pacific +6013,Contra Costa County,CA,California,Contra Costa County CA,50,4,9,6,13,4-9-6-13,West,Pacific +6015,Del Norte County,CA,California,Del Norte County CA,50,4,9,6,15,4-9-6-15,West,Pacific +6017,El Dorado County,CA,California,El Dorado County CA,50,4,9,6,17,4-9-6-17,West,Pacific +6019,Fresno County,CA,California,Fresno County CA,50,4,9,6,19,4-9-6-19,West,Pacific +6021,Glenn County,CA,California,Glenn County CA,50,4,9,6,21,4-9-6-21,West,Pacific +6023,Humboldt County,CA,California,Humboldt County CA,50,4,9,6,23,4-9-6-23,West,Pacific +6025,Imperial County,CA,California,Imperial County CA,50,4,9,6,25,4-9-6-25,West,Pacific +6027,Inyo County,CA,California,Inyo County CA,50,4,9,6,27,4-9-6-27,West,Pacific +6029,Kern County,CA,California,Kern County CA,50,4,9,6,29,4-9-6-29,West,Pacific +6031,Kings County,CA,California,Kings County CA,50,4,9,6,31,4-9-6-31,West,Pacific +6033,Lake County,CA,California,Lake County CA,50,4,9,6,33,4-9-6-33,West,Pacific +6035,Lassen County,CA,California,Lassen County CA,50,4,9,6,35,4-9-6-35,West,Pacific +6037,Los Angeles County,CA,California,Los Angeles County CA,50,4,9,6,37,4-9-6-37,West,Pacific +6039,Madera County,CA,California,Madera County CA,50,4,9,6,39,4-9-6-39,West,Pacific +6041,Marin County,CA,California,Marin County CA,50,4,9,6,41,4-9-6-41,West,Pacific +6043,Mariposa County,CA,California,Mariposa County CA,50,4,9,6,43,4-9-6-43,West,Pacific +6045,Mendocino County,CA,California,Mendocino County CA,50,4,9,6,45,4-9-6-45,West,Pacific +6047,Merced County,CA,California,Merced County CA,50,4,9,6,47,4-9-6-47,West,Pacific +6049,Modoc County,CA,California,Modoc County CA,50,4,9,6,49,4-9-6-49,West,Pacific +6051,Mono County,CA,California,Mono County CA,50,4,9,6,51,4-9-6-51,West,Pacific +6053,Monterey County,CA,California,Monterey County CA,50,4,9,6,53,4-9-6-53,West,Pacific +6055,Napa County,CA,California,Napa County CA,50,4,9,6,55,4-9-6-55,West,Pacific +6057,Nevada County,CA,California,Nevada County CA,50,4,9,6,57,4-9-6-57,West,Pacific +6059,Orange County,CA,California,Orange County CA,50,4,9,6,59,4-9-6-59,West,Pacific +6061,Placer County,CA,California,Placer County CA,50,4,9,6,61,4-9-6-61,West,Pacific +6063,Plumas County,CA,California,Plumas County CA,50,4,9,6,63,4-9-6-63,West,Pacific +6065,Riverside County,CA,California,Riverside County CA,50,4,9,6,65,4-9-6-65,West,Pacific +6067,Sacramento County,CA,California,Sacramento County CA,50,4,9,6,67,4-9-6-67,West,Pacific +6069,San Benito County,CA,California,San Benito County CA,50,4,9,6,69,4-9-6-69,West,Pacific +6071,San Bernardino County,CA,California,San Bernardino County CA,50,4,9,6,71,4-9-6-71,West,Pacific +6073,San Diego County,CA,California,San Diego County CA,50,4,9,6,73,4-9-6-73,West,Pacific +6075,San Francisco County,CA,California,San Francisco County CA,50,4,9,6,75,4-9-6-75,West,Pacific +6077,San Joaquin County,CA,California,San Joaquin County CA,50,4,9,6,77,4-9-6-77,West,Pacific +6079,San Luis Obispo County,CA,California,San Luis Obispo County CA,50,4,9,6,79,4-9-6-79,West,Pacific +6081,San Mateo County,CA,California,San Mateo County CA,50,4,9,6,81,4-9-6-81,West,Pacific +6083,Santa Barbara County,CA,California,Santa Barbara County CA,50,4,9,6,83,4-9-6-83,West,Pacific +6085,Santa Clara County,CA,California,Santa Clara County CA,50,4,9,6,85,4-9-6-85,West,Pacific +6087,Santa Cruz County,CA,California,Santa Cruz County CA,50,4,9,6,87,4-9-6-87,West,Pacific +6089,Shasta County,CA,California,Shasta County CA,50,4,9,6,89,4-9-6-89,West,Pacific +6091,Sierra County,CA,California,Sierra County CA,50,4,9,6,91,4-9-6-91,West,Pacific +6093,Siskiyou County,CA,California,Siskiyou County CA,50,4,9,6,93,4-9-6-93,West,Pacific +6095,Solano County,CA,California,Solano County CA,50,4,9,6,95,4-9-6-95,West,Pacific +6097,Sonoma County,CA,California,Sonoma County CA,50,4,9,6,97,4-9-6-97,West,Pacific +6099,Stanislaus County,CA,California,Stanislaus County CA,50,4,9,6,99,4-9-6-99,West,Pacific +6101,Sutter County,CA,California,Sutter County CA,50,4,9,6,101,4-9-6-101,West,Pacific +6103,Tehama County,CA,California,Tehama County CA,50,4,9,6,103,4-9-6-103,West,Pacific +6105,Trinity County,CA,California,Trinity County CA,50,4,9,6,105,4-9-6-105,West,Pacific +6107,Tulare County,CA,California,Tulare County CA,50,4,9,6,107,4-9-6-107,West,Pacific +6109,Tuolumne County,CA,California,Tuolumne County CA,50,4,9,6,109,4-9-6-109,West,Pacific +6111,Ventura County,CA,California,Ventura County CA,50,4,9,6,111,4-9-6-111,West,Pacific +6113,Yolo County,CA,California,Yolo County CA,50,4,9,6,113,4-9-6-113,West,Pacific +6115,Yuba County,CA,California,Yuba County CA,50,4,9,6,115,4-9-6-115,West,Pacific +8001,Adams County,CO,Colorado,Adams County CO,50,4,8,8,1,4-8-8-1,West,Mountain +8003,Alamosa County,CO,Colorado,Alamosa County CO,50,4,8,8,3,4-8-8-3,West,Mountain +8005,Arapahoe County,CO,Colorado,Arapahoe County CO,50,4,8,8,5,4-8-8-5,West,Mountain +8007,Archuleta County,CO,Colorado,Archuleta County CO,50,4,8,8,7,4-8-8-7,West,Mountain +8009,Baca County,CO,Colorado,Baca County CO,50,4,8,8,9,4-8-8-9,West,Mountain +8011,Bent County,CO,Colorado,Bent County CO,50,4,8,8,11,4-8-8-11,West,Mountain +8013,Boulder County,CO,Colorado,Boulder County CO,50,4,8,8,13,4-8-8-13,West,Mountain +8014,Broomfield County,CO,Colorado,Broomfield County CO,50,4,8,8,14,4-8-8-14,West,Mountain +8015,Chaffee County,CO,Colorado,Chaffee County CO,50,4,8,8,15,4-8-8-15,West,Mountain +8017,Cheyenne County,CO,Colorado,Cheyenne County CO,50,4,8,8,17,4-8-8-17,West,Mountain +8019,Clear Creek County,CO,Colorado,Clear Creek County CO,50,4,8,8,19,4-8-8-19,West,Mountain +8021,Conejos County,CO,Colorado,Conejos County CO,50,4,8,8,21,4-8-8-21,West,Mountain +8023,Costilla County,CO,Colorado,Costilla County CO,50,4,8,8,23,4-8-8-23,West,Mountain +8025,Crowley County,CO,Colorado,Crowley County CO,50,4,8,8,25,4-8-8-25,West,Mountain +8027,Custer County,CO,Colorado,Custer County CO,50,4,8,8,27,4-8-8-27,West,Mountain +8029,Delta County,CO,Colorado,Delta County CO,50,4,8,8,29,4-8-8-29,West,Mountain +8031,Denver County,CO,Colorado,Denver County CO,50,4,8,8,31,4-8-8-31,West,Mountain +8033,Dolores County,CO,Colorado,Dolores County CO,50,4,8,8,33,4-8-8-33,West,Mountain +8035,Douglas County,CO,Colorado,Douglas County CO,50,4,8,8,35,4-8-8-35,West,Mountain +8037,Eagle County,CO,Colorado,Eagle County CO,50,4,8,8,37,4-8-8-37,West,Mountain +8039,Elbert County,CO,Colorado,Elbert County CO,50,4,8,8,39,4-8-8-39,West,Mountain +8041,El Paso County,CO,Colorado,El Paso County CO,50,4,8,8,41,4-8-8-41,West,Mountain +8043,Fremont County,CO,Colorado,Fremont County CO,50,4,8,8,43,4-8-8-43,West,Mountain +8045,Garfield County,CO,Colorado,Garfield County CO,50,4,8,8,45,4-8-8-45,West,Mountain +8047,Gilpin County,CO,Colorado,Gilpin County CO,50,4,8,8,47,4-8-8-47,West,Mountain +8049,Grand County,CO,Colorado,Grand County CO,50,4,8,8,49,4-8-8-49,West,Mountain +8051,Gunnison County,CO,Colorado,Gunnison County CO,50,4,8,8,51,4-8-8-51,West,Mountain +8053,Hinsdale County,CO,Colorado,Hinsdale County CO,50,4,8,8,53,4-8-8-53,West,Mountain +8055,Huerfano County,CO,Colorado,Huerfano County CO,50,4,8,8,55,4-8-8-55,West,Mountain +8057,Jackson County,CO,Colorado,Jackson County CO,50,4,8,8,57,4-8-8-57,West,Mountain +8059,Jefferson County,CO,Colorado,Jefferson County CO,50,4,8,8,59,4-8-8-59,West,Mountain +8061,Kiowa County,CO,Colorado,Kiowa County CO,50,4,8,8,61,4-8-8-61,West,Mountain +8063,Kit Carson County,CO,Colorado,Kit Carson County CO,50,4,8,8,63,4-8-8-63,West,Mountain +8065,Lake County,CO,Colorado,Lake County CO,50,4,8,8,65,4-8-8-65,West,Mountain +8067,La Plata County,CO,Colorado,La Plata County CO,50,4,8,8,67,4-8-8-67,West,Mountain +8069,Larimer County,CO,Colorado,Larimer County CO,50,4,8,8,69,4-8-8-69,West,Mountain +8071,Las Animas County,CO,Colorado,Las Animas County CO,50,4,8,8,71,4-8-8-71,West,Mountain +8073,Lincoln County,CO,Colorado,Lincoln County CO,50,4,8,8,73,4-8-8-73,West,Mountain +8075,Logan County,CO,Colorado,Logan County CO,50,4,8,8,75,4-8-8-75,West,Mountain +8077,Mesa County,CO,Colorado,Mesa County CO,50,4,8,8,77,4-8-8-77,West,Mountain +8079,Mineral County,CO,Colorado,Mineral County CO,50,4,8,8,79,4-8-8-79,West,Mountain +8081,Moffat County,CO,Colorado,Moffat County CO,50,4,8,8,81,4-8-8-81,West,Mountain +8083,Montezuma County,CO,Colorado,Montezuma County CO,50,4,8,8,83,4-8-8-83,West,Mountain +8085,Montrose County,CO,Colorado,Montrose County CO,50,4,8,8,85,4-8-8-85,West,Mountain +8087,Morgan County,CO,Colorado,Morgan County CO,50,4,8,8,87,4-8-8-87,West,Mountain +8089,Otero County,CO,Colorado,Otero County CO,50,4,8,8,89,4-8-8-89,West,Mountain +8091,Ouray County,CO,Colorado,Ouray County CO,50,4,8,8,91,4-8-8-91,West,Mountain +8093,Park County,CO,Colorado,Park County CO,50,4,8,8,93,4-8-8-93,West,Mountain +8095,Phillips County,CO,Colorado,Phillips County CO,50,4,8,8,95,4-8-8-95,West,Mountain +8097,Pitkin County,CO,Colorado,Pitkin County CO,50,4,8,8,97,4-8-8-97,West,Mountain +8099,Prowers County,CO,Colorado,Prowers County CO,50,4,8,8,99,4-8-8-99,West,Mountain +8101,Pueblo County,CO,Colorado,Pueblo County CO,50,4,8,8,101,4-8-8-101,West,Mountain +8103,Rio Blanco County,CO,Colorado,Rio Blanco County CO,50,4,8,8,103,4-8-8-103,West,Mountain +8105,Rio Grande County,CO,Colorado,Rio Grande County CO,50,4,8,8,105,4-8-8-105,West,Mountain +8107,Routt County,CO,Colorado,Routt County CO,50,4,8,8,107,4-8-8-107,West,Mountain +8109,Saguache County,CO,Colorado,Saguache County CO,50,4,8,8,109,4-8-8-109,West,Mountain +8111,San Juan County,CO,Colorado,San Juan County CO,50,4,8,8,111,4-8-8-111,West,Mountain +8113,San Miguel County,CO,Colorado,San Miguel County CO,50,4,8,8,113,4-8-8-113,West,Mountain +8115,Sedgwick County,CO,Colorado,Sedgwick County CO,50,4,8,8,115,4-8-8-115,West,Mountain +8117,Summit County,CO,Colorado,Summit County CO,50,4,8,8,117,4-8-8-117,West,Mountain +8119,Teller County,CO,Colorado,Teller County CO,50,4,8,8,119,4-8-8-119,West,Mountain +8121,Washington County,CO,Colorado,Washington County CO,50,4,8,8,121,4-8-8-121,West,Mountain +8123,Weld County,CO,Colorado,Weld County CO,50,4,8,8,123,4-8-8-123,West,Mountain +8125,Yuma County,CO,Colorado,Yuma County CO,50,4,8,8,125,4-8-8-125,West,Mountain +9001,Fairfield County,CT,Connecticut,Fairfield County CT,50,1,1,9,1,1-1-9-1,Northeast,New England +9003,Hartford County,CT,Connecticut,Hartford County CT,50,1,1,9,3,1-1-9-3,Northeast,New England +9005,Litchfield County,CT,Connecticut,Litchfield County CT,50,1,1,9,5,1-1-9-5,Northeast,New England +9007,Middlesex County,CT,Connecticut,Middlesex County CT,50,1,1,9,7,1-1-9-7,Northeast,New England +9009,New Haven County,CT,Connecticut,New Haven County CT,50,1,1,9,9,1-1-9-9,Northeast,New England +9011,New London County,CT,Connecticut,New London County CT,50,1,1,9,11,1-1-9-11,Northeast,New England +9013,Tolland County,CT,Connecticut,Tolland County CT,50,1,1,9,13,1-1-9-13,Northeast,New England +9015,Windham County,CT,Connecticut,Windham County CT,50,1,1,9,15,1-1-9-15,Northeast,New England +10001,Kent County,DE,Delaware,Kent County DE,50,3,5,10,1,3-5-10-1,South,South Atlantic +10003,New Castle County,DE,Delaware,New Castle County DE,50,3,5,10,3,3-5-10-3,South,South Atlantic +10005,Sussex County,DE,Delaware,Sussex County DE,50,3,5,10,5,3-5-10-5,South,South Atlantic +11001,District of Columbia,DC,District of Columbia,District of Columbia DC,40,3,5,11,0,3-5-11-0,South,South Atlantic +11001,District of Columbia,DC,District of Columbia,District of Columbia DC,50,3,5,11,1,3-5-11-1,South,South Atlantic +12001,Alachua County,FL,Florida,Alachua County FL,50,3,5,12,1,3-5-12-1,South,South Atlantic +12003,Baker County,FL,Florida,Baker County FL,50,3,5,12,3,3-5-12-3,South,South Atlantic +12005,Bay County,FL,Florida,Bay County FL,50,3,5,12,5,3-5-12-5,South,South Atlantic +12007,Bradford County,FL,Florida,Bradford County FL,50,3,5,12,7,3-5-12-7,South,South Atlantic +12009,Brevard County,FL,Florida,Brevard County FL,50,3,5,12,9,3-5-12-9,South,South Atlantic +12011,Broward County,FL,Florida,Broward County FL,50,3,5,12,11,3-5-12-11,South,South Atlantic +12013,Calhoun County,FL,Florida,Calhoun County FL,50,3,5,12,13,3-5-12-13,South,South Atlantic +12015,Charlotte County,FL,Florida,Charlotte County FL,50,3,5,12,15,3-5-12-15,South,South Atlantic +12017,Citrus County,FL,Florida,Citrus County FL,50,3,5,12,17,3-5-12-17,South,South Atlantic +12019,Clay County,FL,Florida,Clay County FL,50,3,5,12,19,3-5-12-19,South,South Atlantic +12021,Collier County,FL,Florida,Collier County FL,50,3,5,12,21,3-5-12-21,South,South Atlantic +12023,Columbia County,FL,Florida,Columbia County FL,50,3,5,12,23,3-5-12-23,South,South Atlantic +12027,DeSoto County,FL,Florida,DeSoto County FL,50,3,5,12,27,3-5-12-27,South,South Atlantic +12029,Dixie County,FL,Florida,Dixie County FL,50,3,5,12,29,3-5-12-29,South,South Atlantic +12031,Duval County,FL,Florida,Duval County FL,50,3,5,12,31,3-5-12-31,South,South Atlantic +12033,Escambia County,FL,Florida,Escambia County FL,50,3,5,12,33,3-5-12-33,South,South Atlantic +12035,Flagler County,FL,Florida,Flagler County FL,50,3,5,12,35,3-5-12-35,South,South Atlantic +12037,Franklin County,FL,Florida,Franklin County FL,50,3,5,12,37,3-5-12-37,South,South Atlantic +12039,Gadsden County,FL,Florida,Gadsden County FL,50,3,5,12,39,3-5-12-39,South,South Atlantic +12041,Gilchrist County,FL,Florida,Gilchrist County FL,50,3,5,12,41,3-5-12-41,South,South Atlantic +12043,Glades County,FL,Florida,Glades County FL,50,3,5,12,43,3-5-12-43,South,South Atlantic +12045,Gulf County,FL,Florida,Gulf County FL,50,3,5,12,45,3-5-12-45,South,South Atlantic +12047,Hamilton County,FL,Florida,Hamilton County FL,50,3,5,12,47,3-5-12-47,South,South Atlantic +12049,Hardee County,FL,Florida,Hardee County FL,50,3,5,12,49,3-5-12-49,South,South Atlantic +12051,Hendry County,FL,Florida,Hendry County FL,50,3,5,12,51,3-5-12-51,South,South Atlantic +12053,Hernando County,FL,Florida,Hernando County FL,50,3,5,12,53,3-5-12-53,South,South Atlantic +12055,Highlands County,FL,Florida,Highlands County FL,50,3,5,12,55,3-5-12-55,South,South Atlantic +12057,Hillsborough County,FL,Florida,Hillsborough County FL,50,3,5,12,57,3-5-12-57,South,South Atlantic +12059,Holmes County,FL,Florida,Holmes County FL,50,3,5,12,59,3-5-12-59,South,South Atlantic +12061,Indian River County,FL,Florida,Indian River County FL,50,3,5,12,61,3-5-12-61,South,South Atlantic +12063,Jackson County,FL,Florida,Jackson County FL,50,3,5,12,63,3-5-12-63,South,South Atlantic +12065,Jefferson County,FL,Florida,Jefferson County FL,50,3,5,12,65,3-5-12-65,South,South Atlantic +12067,Lafayette County,FL,Florida,Lafayette County FL,50,3,5,12,67,3-5-12-67,South,South Atlantic +12069,Lake County,FL,Florida,Lake County FL,50,3,5,12,69,3-5-12-69,South,South Atlantic +12071,Lee County,FL,Florida,Lee County FL,50,3,5,12,71,3-5-12-71,South,South Atlantic +12073,Leon County,FL,Florida,Leon County FL,50,3,5,12,73,3-5-12-73,South,South Atlantic +12075,Levy County,FL,Florida,Levy County FL,50,3,5,12,75,3-5-12-75,South,South Atlantic +12077,Liberty County,FL,Florida,Liberty County FL,50,3,5,12,77,3-5-12-77,South,South Atlantic +12079,Madison County,FL,Florida,Madison County FL,50,3,5,12,79,3-5-12-79,South,South Atlantic +12081,Manatee County,FL,Florida,Manatee County FL,50,3,5,12,81,3-5-12-81,South,South Atlantic +12083,Marion County,FL,Florida,Marion County FL,50,3,5,12,83,3-5-12-83,South,South Atlantic +12085,Martin County,FL,Florida,Martin County FL,50,3,5,12,85,3-5-12-85,South,South Atlantic +12086,Miami-Dade County,FL,Florida,Miami-Dade County FL,50,3,5,12,86,3-5-12-86,South,South Atlantic +12087,Monroe County,FL,Florida,Monroe County FL,50,3,5,12,87,3-5-12-87,South,South Atlantic +12089,Nassau County,FL,Florida,Nassau County FL,50,3,5,12,89,3-5-12-89,South,South Atlantic +12091,Okaloosa County,FL,Florida,Okaloosa County FL,50,3,5,12,91,3-5-12-91,South,South Atlantic +12093,Okeechobee County,FL,Florida,Okeechobee County FL,50,3,5,12,93,3-5-12-93,South,South Atlantic +12095,Orange County,FL,Florida,Orange County FL,50,3,5,12,95,3-5-12-95,South,South Atlantic +12097,Osceola County,FL,Florida,Osceola County FL,50,3,5,12,97,3-5-12-97,South,South Atlantic +12099,Palm Beach County,FL,Florida,Palm Beach County FL,50,3,5,12,99,3-5-12-99,South,South Atlantic +12101,Pasco County,FL,Florida,Pasco County FL,50,3,5,12,101,3-5-12-101,South,South Atlantic +12103,Pinellas County,FL,Florida,Pinellas County FL,50,3,5,12,103,3-5-12-103,South,South Atlantic +12105,Polk County,FL,Florida,Polk County FL,50,3,5,12,105,3-5-12-105,South,South Atlantic +12107,Putnam County,FL,Florida,Putnam County FL,50,3,5,12,107,3-5-12-107,South,South Atlantic +12109,St. Johns County,FL,Florida,St. Johns County FL,50,3,5,12,109,3-5-12-109,South,South Atlantic +12111,St. Lucie County,FL,Florida,St. Lucie County FL,50,3,5,12,111,3-5-12-111,South,South Atlantic +12113,Santa Rosa County,FL,Florida,Santa Rosa County FL,50,3,5,12,113,3-5-12-113,South,South Atlantic +12115,Sarasota County,FL,Florida,Sarasota County FL,50,3,5,12,115,3-5-12-115,South,South Atlantic +12117,Seminole County,FL,Florida,Seminole County FL,50,3,5,12,117,3-5-12-117,South,South Atlantic +12119,Sumter County,FL,Florida,Sumter County FL,50,3,5,12,119,3-5-12-119,South,South Atlantic +12121,Suwannee County,FL,Florida,Suwannee County FL,50,3,5,12,121,3-5-12-121,South,South Atlantic +12123,Taylor County,FL,Florida,Taylor County FL,50,3,5,12,123,3-5-12-123,South,South Atlantic +12125,Union County,FL,Florida,Union County FL,50,3,5,12,125,3-5-12-125,South,South Atlantic +12127,Volusia County,FL,Florida,Volusia County FL,50,3,5,12,127,3-5-12-127,South,South Atlantic +12129,Wakulla County,FL,Florida,Wakulla County FL,50,3,5,12,129,3-5-12-129,South,South Atlantic +12131,Walton County,FL,Florida,Walton County FL,50,3,5,12,131,3-5-12-131,South,South Atlantic +12133,Washington County,FL,Florida,Washington County FL,50,3,5,12,133,3-5-12-133,South,South Atlantic +13001,Appling County,GA,Georgia,Appling County GA,50,3,5,13,1,3-5-13-1,South,South Atlantic +13003,Atkinson County,GA,Georgia,Atkinson County GA,50,3,5,13,3,3-5-13-3,South,South Atlantic +13005,Bacon County,GA,Georgia,Bacon County GA,50,3,5,13,5,3-5-13-5,South,South Atlantic +13007,Baker County,GA,Georgia,Baker County GA,50,3,5,13,7,3-5-13-7,South,South Atlantic +13009,Baldwin County,GA,Georgia,Baldwin County GA,50,3,5,13,9,3-5-13-9,South,South Atlantic +13011,Banks County,GA,Georgia,Banks County GA,50,3,5,13,11,3-5-13-11,South,South Atlantic +13013,Barrow County,GA,Georgia,Barrow County GA,50,3,5,13,13,3-5-13-13,South,South Atlantic +13015,Bartow County,GA,Georgia,Bartow County GA,50,3,5,13,15,3-5-13-15,South,South Atlantic +13017,Ben Hill County,GA,Georgia,Ben Hill County GA,50,3,5,13,17,3-5-13-17,South,South Atlantic +13019,Berrien County,GA,Georgia,Berrien County GA,50,3,5,13,19,3-5-13-19,South,South Atlantic +13021,Bibb County,GA,Georgia,Bibb County GA,50,3,5,13,21,3-5-13-21,South,South Atlantic +13023,Bleckley County,GA,Georgia,Bleckley County GA,50,3,5,13,23,3-5-13-23,South,South Atlantic +13025,Brantley County,GA,Georgia,Brantley County GA,50,3,5,13,25,3-5-13-25,South,South Atlantic +13027,Brooks County,GA,Georgia,Brooks County GA,50,3,5,13,27,3-5-13-27,South,South Atlantic +13029,Bryan County,GA,Georgia,Bryan County GA,50,3,5,13,29,3-5-13-29,South,South Atlantic +13031,Bulloch County,GA,Georgia,Bulloch County GA,50,3,5,13,31,3-5-13-31,South,South Atlantic +13033,Burke County,GA,Georgia,Burke County GA,50,3,5,13,33,3-5-13-33,South,South Atlantic +13035,Butts County,GA,Georgia,Butts County GA,50,3,5,13,35,3-5-13-35,South,South Atlantic +13037,Calhoun County,GA,Georgia,Calhoun County GA,50,3,5,13,37,3-5-13-37,South,South Atlantic +13039,Camden County,GA,Georgia,Camden County GA,50,3,5,13,39,3-5-13-39,South,South Atlantic +13043,Candler County,GA,Georgia,Candler County GA,50,3,5,13,43,3-5-13-43,South,South Atlantic +13045,Carroll County,GA,Georgia,Carroll County GA,50,3,5,13,45,3-5-13-45,South,South Atlantic +13047,Catoosa County,GA,Georgia,Catoosa County GA,50,3,5,13,47,3-5-13-47,South,South Atlantic +13049,Charlton County,GA,Georgia,Charlton County GA,50,3,5,13,49,3-5-13-49,South,South Atlantic +13051,Chatham County,GA,Georgia,Chatham County GA,50,3,5,13,51,3-5-13-51,South,South Atlantic +13053,Chattahoochee County,GA,Georgia,Chattahoochee County GA,50,3,5,13,53,3-5-13-53,South,South Atlantic +13055,Chattooga County,GA,Georgia,Chattooga County GA,50,3,5,13,55,3-5-13-55,South,South Atlantic +13057,Cherokee County,GA,Georgia,Cherokee County GA,50,3,5,13,57,3-5-13-57,South,South Atlantic +13059,Clarke County,GA,Georgia,Clarke County GA,50,3,5,13,59,3-5-13-59,South,South Atlantic +13061,Clay County,GA,Georgia,Clay County GA,50,3,5,13,61,3-5-13-61,South,South Atlantic +13063,Clayton County,GA,Georgia,Clayton County GA,50,3,5,13,63,3-5-13-63,South,South Atlantic +13065,Clinch County,GA,Georgia,Clinch County GA,50,3,5,13,65,3-5-13-65,South,South Atlantic +13067,Cobb County,GA,Georgia,Cobb County GA,50,3,5,13,67,3-5-13-67,South,South Atlantic +13069,Coffee County,GA,Georgia,Coffee County GA,50,3,5,13,69,3-5-13-69,South,South Atlantic +13071,Colquitt County,GA,Georgia,Colquitt County GA,50,3,5,13,71,3-5-13-71,South,South Atlantic +13073,Columbia County,GA,Georgia,Columbia County GA,50,3,5,13,73,3-5-13-73,South,South Atlantic +13075,Cook County,GA,Georgia,Cook County GA,50,3,5,13,75,3-5-13-75,South,South Atlantic +13077,Coweta County,GA,Georgia,Coweta County GA,50,3,5,13,77,3-5-13-77,South,South Atlantic +13079,Crawford County,GA,Georgia,Crawford County GA,50,3,5,13,79,3-5-13-79,South,South Atlantic +13081,Crisp County,GA,Georgia,Crisp County GA,50,3,5,13,81,3-5-13-81,South,South Atlantic +13083,Dade County,GA,Georgia,Dade County GA,50,3,5,13,83,3-5-13-83,South,South Atlantic +13085,Dawson County,GA,Georgia,Dawson County GA,50,3,5,13,85,3-5-13-85,South,South Atlantic +13087,Decatur County,GA,Georgia,Decatur County GA,50,3,5,13,87,3-5-13-87,South,South Atlantic +13089,DeKalb County,GA,Georgia,DeKalb County GA,50,3,5,13,89,3-5-13-89,South,South Atlantic +13091,Dodge County,GA,Georgia,Dodge County GA,50,3,5,13,91,3-5-13-91,South,South Atlantic +13093,Dooly County,GA,Georgia,Dooly County GA,50,3,5,13,93,3-5-13-93,South,South Atlantic +13095,Dougherty County,GA,Georgia,Dougherty County GA,50,3,5,13,95,3-5-13-95,South,South Atlantic +13097,Douglas County,GA,Georgia,Douglas County GA,50,3,5,13,97,3-5-13-97,South,South Atlantic +13099,Early County,GA,Georgia,Early County GA,50,3,5,13,99,3-5-13-99,South,South Atlantic +13101,Echols County,GA,Georgia,Echols County GA,50,3,5,13,101,3-5-13-101,South,South Atlantic +13103,Effingham County,GA,Georgia,Effingham County GA,50,3,5,13,103,3-5-13-103,South,South Atlantic +13105,Elbert County,GA,Georgia,Elbert County GA,50,3,5,13,105,3-5-13-105,South,South Atlantic +13107,Emanuel County,GA,Georgia,Emanuel County GA,50,3,5,13,107,3-5-13-107,South,South Atlantic +13109,Evans County,GA,Georgia,Evans County GA,50,3,5,13,109,3-5-13-109,South,South Atlantic +13111,Fannin County,GA,Georgia,Fannin County GA,50,3,5,13,111,3-5-13-111,South,South Atlantic +13113,Fayette County,GA,Georgia,Fayette County GA,50,3,5,13,113,3-5-13-113,South,South Atlantic +13115,Floyd County,GA,Georgia,Floyd County GA,50,3,5,13,115,3-5-13-115,South,South Atlantic +13117,Forsyth County,GA,Georgia,Forsyth County GA,50,3,5,13,117,3-5-13-117,South,South Atlantic +13119,Franklin County,GA,Georgia,Franklin County GA,50,3,5,13,119,3-5-13-119,South,South Atlantic +13121,Fulton County,GA,Georgia,Fulton County GA,50,3,5,13,121,3-5-13-121,South,South Atlantic +13123,Gilmer County,GA,Georgia,Gilmer County GA,50,3,5,13,123,3-5-13-123,South,South Atlantic +13125,Glascock County,GA,Georgia,Glascock County GA,50,3,5,13,125,3-5-13-125,South,South Atlantic +13127,Glynn County,GA,Georgia,Glynn County GA,50,3,5,13,127,3-5-13-127,South,South Atlantic +13129,Gordon County,GA,Georgia,Gordon County GA,50,3,5,13,129,3-5-13-129,South,South Atlantic +13131,Grady County,GA,Georgia,Grady County GA,50,3,5,13,131,3-5-13-131,South,South Atlantic +13133,Greene County,GA,Georgia,Greene County GA,50,3,5,13,133,3-5-13-133,South,South Atlantic +13135,Gwinnett County,GA,Georgia,Gwinnett County GA,50,3,5,13,135,3-5-13-135,South,South Atlantic +13137,Habersham County,GA,Georgia,Habersham County GA,50,3,5,13,137,3-5-13-137,South,South Atlantic +13139,Hall County,GA,Georgia,Hall County GA,50,3,5,13,139,3-5-13-139,South,South Atlantic +13141,Hancock County,GA,Georgia,Hancock County GA,50,3,5,13,141,3-5-13-141,South,South Atlantic +13143,Haralson County,GA,Georgia,Haralson County GA,50,3,5,13,143,3-5-13-143,South,South Atlantic +13145,Harris County,GA,Georgia,Harris County GA,50,3,5,13,145,3-5-13-145,South,South Atlantic +13147,Hart County,GA,Georgia,Hart County GA,50,3,5,13,147,3-5-13-147,South,South Atlantic +13149,Heard County,GA,Georgia,Heard County GA,50,3,5,13,149,3-5-13-149,South,South Atlantic +13151,Henry County,GA,Georgia,Henry County GA,50,3,5,13,151,3-5-13-151,South,South Atlantic +13153,Houston County,GA,Georgia,Houston County GA,50,3,5,13,153,3-5-13-153,South,South Atlantic +13155,Irwin County,GA,Georgia,Irwin County GA,50,3,5,13,155,3-5-13-155,South,South Atlantic +13157,Jackson County,GA,Georgia,Jackson County GA,50,3,5,13,157,3-5-13-157,South,South Atlantic +13159,Jasper County,GA,Georgia,Jasper County GA,50,3,5,13,159,3-5-13-159,South,South Atlantic +13161,Jeff Davis County,GA,Georgia,Jeff Davis County GA,50,3,5,13,161,3-5-13-161,South,South Atlantic +13163,Jefferson County,GA,Georgia,Jefferson County GA,50,3,5,13,163,3-5-13-163,South,South Atlantic +13165,Jenkins County,GA,Georgia,Jenkins County GA,50,3,5,13,165,3-5-13-165,South,South Atlantic +13167,Johnson County,GA,Georgia,Johnson County GA,50,3,5,13,167,3-5-13-167,South,South Atlantic +13169,Jones County,GA,Georgia,Jones County GA,50,3,5,13,169,3-5-13-169,South,South Atlantic +13171,Lamar County,GA,Georgia,Lamar County GA,50,3,5,13,171,3-5-13-171,South,South Atlantic +13173,Lanier County,GA,Georgia,Lanier County GA,50,3,5,13,173,3-5-13-173,South,South Atlantic +13175,Laurens County,GA,Georgia,Laurens County GA,50,3,5,13,175,3-5-13-175,South,South Atlantic +13177,Lee County,GA,Georgia,Lee County GA,50,3,5,13,177,3-5-13-177,South,South Atlantic +13179,Liberty County,GA,Georgia,Liberty County GA,50,3,5,13,179,3-5-13-179,South,South Atlantic +13181,Lincoln County,GA,Georgia,Lincoln County GA,50,3,5,13,181,3-5-13-181,South,South Atlantic +13183,Long County,GA,Georgia,Long County GA,50,3,5,13,183,3-5-13-183,South,South Atlantic +13185,Lowndes County,GA,Georgia,Lowndes County GA,50,3,5,13,185,3-5-13-185,South,South Atlantic +13187,Lumpkin County,GA,Georgia,Lumpkin County GA,50,3,5,13,187,3-5-13-187,South,South Atlantic +13189,McDuffie County,GA,Georgia,McDuffie County GA,50,3,5,13,189,3-5-13-189,South,South Atlantic +13191,McIntosh County,GA,Georgia,McIntosh County GA,50,3,5,13,191,3-5-13-191,South,South Atlantic +13193,Macon County,GA,Georgia,Macon County GA,50,3,5,13,193,3-5-13-193,South,South Atlantic +13195,Madison County,GA,Georgia,Madison County GA,50,3,5,13,195,3-5-13-195,South,South Atlantic +13197,Marion County,GA,Georgia,Marion County GA,50,3,5,13,197,3-5-13-197,South,South Atlantic +13199,Meriwether County,GA,Georgia,Meriwether County GA,50,3,5,13,199,3-5-13-199,South,South Atlantic +13201,Miller County,GA,Georgia,Miller County GA,50,3,5,13,201,3-5-13-201,South,South Atlantic +13205,Mitchell County,GA,Georgia,Mitchell County GA,50,3,5,13,205,3-5-13-205,South,South Atlantic +13207,Monroe County,GA,Georgia,Monroe County GA,50,3,5,13,207,3-5-13-207,South,South Atlantic +13209,Montgomery County,GA,Georgia,Montgomery County GA,50,3,5,13,209,3-5-13-209,South,South Atlantic +13211,Morgan County,GA,Georgia,Morgan County GA,50,3,5,13,211,3-5-13-211,South,South Atlantic +13213,Murray County,GA,Georgia,Murray County GA,50,3,5,13,213,3-5-13-213,South,South Atlantic +13215,Muscogee County,GA,Georgia,Muscogee County GA,50,3,5,13,215,3-5-13-215,South,South Atlantic +13217,Newton County,GA,Georgia,Newton County GA,50,3,5,13,217,3-5-13-217,South,South Atlantic +13219,Oconee County,GA,Georgia,Oconee County GA,50,3,5,13,219,3-5-13-219,South,South Atlantic +13221,Oglethorpe County,GA,Georgia,Oglethorpe County GA,50,3,5,13,221,3-5-13-221,South,South Atlantic +13223,Paulding County,GA,Georgia,Paulding County GA,50,3,5,13,223,3-5-13-223,South,South Atlantic +13225,Peach County,GA,Georgia,Peach County GA,50,3,5,13,225,3-5-13-225,South,South Atlantic +13227,Pickens County,GA,Georgia,Pickens County GA,50,3,5,13,227,3-5-13-227,South,South Atlantic +13229,Pierce County,GA,Georgia,Pierce County GA,50,3,5,13,229,3-5-13-229,South,South Atlantic +13231,Pike County,GA,Georgia,Pike County GA,50,3,5,13,231,3-5-13-231,South,South Atlantic +13233,Polk County,GA,Georgia,Polk County GA,50,3,5,13,233,3-5-13-233,South,South Atlantic +13235,Pulaski County,GA,Georgia,Pulaski County GA,50,3,5,13,235,3-5-13-235,South,South Atlantic +13237,Putnam County,GA,Georgia,Putnam County GA,50,3,5,13,237,3-5-13-237,South,South Atlantic +13239,Quitman County,GA,Georgia,Quitman County GA,50,3,5,13,239,3-5-13-239,South,South Atlantic +13241,Rabun County,GA,Georgia,Rabun County GA,50,3,5,13,241,3-5-13-241,South,South Atlantic +13243,Randolph County,GA,Georgia,Randolph County GA,50,3,5,13,243,3-5-13-243,South,South Atlantic +13245,Richmond County,GA,Georgia,Richmond County GA,50,3,5,13,245,3-5-13-245,South,South Atlantic +13247,Rockdale County,GA,Georgia,Rockdale County GA,50,3,5,13,247,3-5-13-247,South,South Atlantic +13249,Schley County,GA,Georgia,Schley County GA,50,3,5,13,249,3-5-13-249,South,South Atlantic +13251,Screven County,GA,Georgia,Screven County GA,50,3,5,13,251,3-5-13-251,South,South Atlantic +13253,Seminole County,GA,Georgia,Seminole County GA,50,3,5,13,253,3-5-13-253,South,South Atlantic +13255,Spalding County,GA,Georgia,Spalding County GA,50,3,5,13,255,3-5-13-255,South,South Atlantic +13257,Stephens County,GA,Georgia,Stephens County GA,50,3,5,13,257,3-5-13-257,South,South Atlantic +13259,Stewart County,GA,Georgia,Stewart County GA,50,3,5,13,259,3-5-13-259,South,South Atlantic +13261,Sumter County,GA,Georgia,Sumter County GA,50,3,5,13,261,3-5-13-261,South,South Atlantic +13263,Talbot County,GA,Georgia,Talbot County GA,50,3,5,13,263,3-5-13-263,South,South Atlantic +13265,Taliaferro County,GA,Georgia,Taliaferro County GA,50,3,5,13,265,3-5-13-265,South,South Atlantic +13267,Tattnall County,GA,Georgia,Tattnall County GA,50,3,5,13,267,3-5-13-267,South,South Atlantic +13269,Taylor County,GA,Georgia,Taylor County GA,50,3,5,13,269,3-5-13-269,South,South Atlantic +13271,Telfair County,GA,Georgia,Telfair County GA,50,3,5,13,271,3-5-13-271,South,South Atlantic +13273,Terrell County,GA,Georgia,Terrell County GA,50,3,5,13,273,3-5-13-273,South,South Atlantic +13275,Thomas County,GA,Georgia,Thomas County GA,50,3,5,13,275,3-5-13-275,South,South Atlantic +13277,Tift County,GA,Georgia,Tift County GA,50,3,5,13,277,3-5-13-277,South,South Atlantic +13279,Toombs County,GA,Georgia,Toombs County GA,50,3,5,13,279,3-5-13-279,South,South Atlantic +13281,Towns County,GA,Georgia,Towns County GA,50,3,5,13,281,3-5-13-281,South,South Atlantic +13283,Treutlen County,GA,Georgia,Treutlen County GA,50,3,5,13,283,3-5-13-283,South,South Atlantic +13285,Troup County,GA,Georgia,Troup County GA,50,3,5,13,285,3-5-13-285,South,South Atlantic +13287,Turner County,GA,Georgia,Turner County GA,50,3,5,13,287,3-5-13-287,South,South Atlantic +13289,Twiggs County,GA,Georgia,Twiggs County GA,50,3,5,13,289,3-5-13-289,South,South Atlantic +13291,Union County,GA,Georgia,Union County GA,50,3,5,13,291,3-5-13-291,South,South Atlantic +13293,Upson County,GA,Georgia,Upson County GA,50,3,5,13,293,3-5-13-293,South,South Atlantic +13295,Walker County,GA,Georgia,Walker County GA,50,3,5,13,295,3-5-13-295,South,South Atlantic +13297,Walton County,GA,Georgia,Walton County GA,50,3,5,13,297,3-5-13-297,South,South Atlantic +13299,Ware County,GA,Georgia,Ware County GA,50,3,5,13,299,3-5-13-299,South,South Atlantic +13301,Warren County,GA,Georgia,Warren County GA,50,3,5,13,301,3-5-13-301,South,South Atlantic +13303,Washington County,GA,Georgia,Washington County GA,50,3,5,13,303,3-5-13-303,South,South Atlantic +13305,Wayne County,GA,Georgia,Wayne County GA,50,3,5,13,305,3-5-13-305,South,South Atlantic +13307,Webster County,GA,Georgia,Webster County GA,50,3,5,13,307,3-5-13-307,South,South Atlantic +13309,Wheeler County,GA,Georgia,Wheeler County GA,50,3,5,13,309,3-5-13-309,South,South Atlantic +13311,White County,GA,Georgia,White County GA,50,3,5,13,311,3-5-13-311,South,South Atlantic +13313,Whitfield County,GA,Georgia,Whitfield County GA,50,3,5,13,313,3-5-13-313,South,South Atlantic +13315,Wilcox County,GA,Georgia,Wilcox County GA,50,3,5,13,315,3-5-13-315,South,South Atlantic +13317,Wilkes County,GA,Georgia,Wilkes County GA,50,3,5,13,317,3-5-13-317,South,South Atlantic +13319,Wilkinson County,GA,Georgia,Wilkinson County GA,50,3,5,13,319,3-5-13-319,South,South Atlantic +13321,Worth County,GA,Georgia,Worth County GA,50,3,5,13,321,3-5-13-321,South,South Atlantic +15001,Hawaii County,HI,Hawaii,Hawaii County HI,50,4,9,15,1,4-9-15-1,West,Pacific +15003,Honolulu County,HI,Hawaii,Honolulu County HI,50,4,9,15,3,4-9-15-3,West,Pacific +15005,Kalawao County,HI,Hawaii,Kalawao County HI,50,4,9,15,5,4-9-15-5,West,Pacific +15007,Kauai County,HI,Hawaii,Kauai County HI,50,4,9,15,7,4-9-15-7,West,Pacific +15009,Maui County,HI,Hawaii,Maui County HI,50,4,9,15,9,4-9-15-9,West,Pacific +16001,Ada County,ID,Idaho,Ada County ID,50,4,8,16,1,4-8-16-1,West,Mountain +16003,Adams County,ID,Idaho,Adams County ID,50,4,8,16,3,4-8-16-3,West,Mountain +16005,Bannock County,ID,Idaho,Bannock County ID,50,4,8,16,5,4-8-16-5,West,Mountain +16007,Bear Lake County,ID,Idaho,Bear Lake County ID,50,4,8,16,7,4-8-16-7,West,Mountain +16009,Benewah County,ID,Idaho,Benewah County ID,50,4,8,16,9,4-8-16-9,West,Mountain +16011,Bingham County,ID,Idaho,Bingham County ID,50,4,8,16,11,4-8-16-11,West,Mountain +16013,Blaine County,ID,Idaho,Blaine County ID,50,4,8,16,13,4-8-16-13,West,Mountain +16015,Boise County,ID,Idaho,Boise County ID,50,4,8,16,15,4-8-16-15,West,Mountain +16017,Bonner County,ID,Idaho,Bonner County ID,50,4,8,16,17,4-8-16-17,West,Mountain +16019,Bonneville County,ID,Idaho,Bonneville County ID,50,4,8,16,19,4-8-16-19,West,Mountain +16021,Boundary County,ID,Idaho,Boundary County ID,50,4,8,16,21,4-8-16-21,West,Mountain +16023,Butte County,ID,Idaho,Butte County ID,50,4,8,16,23,4-8-16-23,West,Mountain +16025,Camas County,ID,Idaho,Camas County ID,50,4,8,16,25,4-8-16-25,West,Mountain +16027,Canyon County,ID,Idaho,Canyon County ID,50,4,8,16,27,4-8-16-27,West,Mountain +16029,Caribou County,ID,Idaho,Caribou County ID,50,4,8,16,29,4-8-16-29,West,Mountain +16031,Cassia County,ID,Idaho,Cassia County ID,50,4,8,16,31,4-8-16-31,West,Mountain +16033,Clark County,ID,Idaho,Clark County ID,50,4,8,16,33,4-8-16-33,West,Mountain +16035,Clearwater County,ID,Idaho,Clearwater County ID,50,4,8,16,35,4-8-16-35,West,Mountain +16037,Custer County,ID,Idaho,Custer County ID,50,4,8,16,37,4-8-16-37,West,Mountain +16039,Elmore County,ID,Idaho,Elmore County ID,50,4,8,16,39,4-8-16-39,West,Mountain +16041,Franklin County,ID,Idaho,Franklin County ID,50,4,8,16,41,4-8-16-41,West,Mountain +16043,Fremont County,ID,Idaho,Fremont County ID,50,4,8,16,43,4-8-16-43,West,Mountain +16045,Gem County,ID,Idaho,Gem County ID,50,4,8,16,45,4-8-16-45,West,Mountain +16047,Gooding County,ID,Idaho,Gooding County ID,50,4,8,16,47,4-8-16-47,West,Mountain +16049,Idaho County,ID,Idaho,Idaho County ID,50,4,8,16,49,4-8-16-49,West,Mountain +16051,Jefferson County,ID,Idaho,Jefferson County ID,50,4,8,16,51,4-8-16-51,West,Mountain +16053,Jerome County,ID,Idaho,Jerome County ID,50,4,8,16,53,4-8-16-53,West,Mountain +16055,Kootenai County,ID,Idaho,Kootenai County ID,50,4,8,16,55,4-8-16-55,West,Mountain +16057,Latah County,ID,Idaho,Latah County ID,50,4,8,16,57,4-8-16-57,West,Mountain +16059,Lemhi County,ID,Idaho,Lemhi County ID,50,4,8,16,59,4-8-16-59,West,Mountain +16061,Lewis County,ID,Idaho,Lewis County ID,50,4,8,16,61,4-8-16-61,West,Mountain +16063,Lincoln County,ID,Idaho,Lincoln County ID,50,4,8,16,63,4-8-16-63,West,Mountain +16065,Madison County,ID,Idaho,Madison County ID,50,4,8,16,65,4-8-16-65,West,Mountain +16067,Minidoka County,ID,Idaho,Minidoka County ID,50,4,8,16,67,4-8-16-67,West,Mountain +16069,Nez Perce County,ID,Idaho,Nez Perce County ID,50,4,8,16,69,4-8-16-69,West,Mountain +16071,Oneida County,ID,Idaho,Oneida County ID,50,4,8,16,71,4-8-16-71,West,Mountain +16073,Owyhee County,ID,Idaho,Owyhee County ID,50,4,8,16,73,4-8-16-73,West,Mountain +16075,Payette County,ID,Idaho,Payette County ID,50,4,8,16,75,4-8-16-75,West,Mountain +16077,Power County,ID,Idaho,Power County ID,50,4,8,16,77,4-8-16-77,West,Mountain +16079,Shoshone County,ID,Idaho,Shoshone County ID,50,4,8,16,79,4-8-16-79,West,Mountain +16081,Teton County,ID,Idaho,Teton County ID,50,4,8,16,81,4-8-16-81,West,Mountain +16083,Twin Falls County,ID,Idaho,Twin Falls County ID,50,4,8,16,83,4-8-16-83,West,Mountain +16085,Valley County,ID,Idaho,Valley County ID,50,4,8,16,85,4-8-16-85,West,Mountain +16087,Washington County,ID,Idaho,Washington County ID,50,4,8,16,87,4-8-16-87,West,Mountain +17001,Adams County,IL,Illinois,Adams County IL,50,2,3,17,1,2-3-17-1,Midwest,East North Central +17003,Alexander County,IL,Illinois,Alexander County IL,50,2,3,17,3,2-3-17-3,Midwest,East North Central +17005,Bond County,IL,Illinois,Bond County IL,50,2,3,17,5,2-3-17-5,Midwest,East North Central +17007,Boone County,IL,Illinois,Boone County IL,50,2,3,17,7,2-3-17-7,Midwest,East North Central +17009,Brown County,IL,Illinois,Brown County IL,50,2,3,17,9,2-3-17-9,Midwest,East North Central +17011,Bureau County,IL,Illinois,Bureau County IL,50,2,3,17,11,2-3-17-11,Midwest,East North Central +17013,Calhoun County,IL,Illinois,Calhoun County IL,50,2,3,17,13,2-3-17-13,Midwest,East North Central +17015,Carroll County,IL,Illinois,Carroll County IL,50,2,3,17,15,2-3-17-15,Midwest,East North Central +17017,Cass County,IL,Illinois,Cass County IL,50,2,3,17,17,2-3-17-17,Midwest,East North Central +17019,Champaign County,IL,Illinois,Champaign County IL,50,2,3,17,19,2-3-17-19,Midwest,East North Central +17021,Christian County,IL,Illinois,Christian County IL,50,2,3,17,21,2-3-17-21,Midwest,East North Central +17023,Clark County,IL,Illinois,Clark County IL,50,2,3,17,23,2-3-17-23,Midwest,East North Central +17025,Clay County,IL,Illinois,Clay County IL,50,2,3,17,25,2-3-17-25,Midwest,East North Central +17027,Clinton County,IL,Illinois,Clinton County IL,50,2,3,17,27,2-3-17-27,Midwest,East North Central +17029,Coles County,IL,Illinois,Coles County IL,50,2,3,17,29,2-3-17-29,Midwest,East North Central +17031,Cook County,IL,Illinois,Cook County IL,50,2,3,17,31,2-3-17-31,Midwest,East North Central +17033,Crawford County,IL,Illinois,Crawford County IL,50,2,3,17,33,2-3-17-33,Midwest,East North Central +17035,Cumberland County,IL,Illinois,Cumberland County IL,50,2,3,17,35,2-3-17-35,Midwest,East North Central +17037,DeKalb County,IL,Illinois,DeKalb County IL,50,2,3,17,37,2-3-17-37,Midwest,East North Central +17039,De Witt County,IL,Illinois,De Witt County IL,50,2,3,17,39,2-3-17-39,Midwest,East North Central +17041,Douglas County,IL,Illinois,Douglas County IL,50,2,3,17,41,2-3-17-41,Midwest,East North Central +17043,DuPage County,IL,Illinois,DuPage County IL,50,2,3,17,43,2-3-17-43,Midwest,East North Central +17045,Edgar County,IL,Illinois,Edgar County IL,50,2,3,17,45,2-3-17-45,Midwest,East North Central +17047,Edwards County,IL,Illinois,Edwards County IL,50,2,3,17,47,2-3-17-47,Midwest,East North Central +17049,Effingham County,IL,Illinois,Effingham County IL,50,2,3,17,49,2-3-17-49,Midwest,East North Central +17051,Fayette County,IL,Illinois,Fayette County IL,50,2,3,17,51,2-3-17-51,Midwest,East North Central +17053,Ford County,IL,Illinois,Ford County IL,50,2,3,17,53,2-3-17-53,Midwest,East North Central +17055,Franklin County,IL,Illinois,Franklin County IL,50,2,3,17,55,2-3-17-55,Midwest,East North Central +17057,Fulton County,IL,Illinois,Fulton County IL,50,2,3,17,57,2-3-17-57,Midwest,East North Central +17059,Gallatin County,IL,Illinois,Gallatin County IL,50,2,3,17,59,2-3-17-59,Midwest,East North Central +17061,Greene County,IL,Illinois,Greene County IL,50,2,3,17,61,2-3-17-61,Midwest,East North Central +17063,Grundy County,IL,Illinois,Grundy County IL,50,2,3,17,63,2-3-17-63,Midwest,East North Central +17065,Hamilton County,IL,Illinois,Hamilton County IL,50,2,3,17,65,2-3-17-65,Midwest,East North Central +17067,Hancock County,IL,Illinois,Hancock County IL,50,2,3,17,67,2-3-17-67,Midwest,East North Central +17069,Hardin County,IL,Illinois,Hardin County IL,50,2,3,17,69,2-3-17-69,Midwest,East North Central +17071,Henderson County,IL,Illinois,Henderson County IL,50,2,3,17,71,2-3-17-71,Midwest,East North Central +17073,Henry County,IL,Illinois,Henry County IL,50,2,3,17,73,2-3-17-73,Midwest,East North Central +17075,Iroquois County,IL,Illinois,Iroquois County IL,50,2,3,17,75,2-3-17-75,Midwest,East North Central +17077,Jackson County,IL,Illinois,Jackson County IL,50,2,3,17,77,2-3-17-77,Midwest,East North Central +17079,Jasper County,IL,Illinois,Jasper County IL,50,2,3,17,79,2-3-17-79,Midwest,East North Central +17081,Jefferson County,IL,Illinois,Jefferson County IL,50,2,3,17,81,2-3-17-81,Midwest,East North Central +17083,Jersey County,IL,Illinois,Jersey County IL,50,2,3,17,83,2-3-17-83,Midwest,East North Central +17085,Jo Daviess County,IL,Illinois,Jo Daviess County IL,50,2,3,17,85,2-3-17-85,Midwest,East North Central +17087,Johnson County,IL,Illinois,Johnson County IL,50,2,3,17,87,2-3-17-87,Midwest,East North Central +17089,Kane County,IL,Illinois,Kane County IL,50,2,3,17,89,2-3-17-89,Midwest,East North Central +17091,Kankakee County,IL,Illinois,Kankakee County IL,50,2,3,17,91,2-3-17-91,Midwest,East North Central +17093,Kendall County,IL,Illinois,Kendall County IL,50,2,3,17,93,2-3-17-93,Midwest,East North Central +17095,Knox County,IL,Illinois,Knox County IL,50,2,3,17,95,2-3-17-95,Midwest,East North Central +17097,Lake County,IL,Illinois,Lake County IL,50,2,3,17,97,2-3-17-97,Midwest,East North Central +17099,LaSalle County,IL,Illinois,LaSalle County IL,50,2,3,17,99,2-3-17-99,Midwest,East North Central +17101,Lawrence County,IL,Illinois,Lawrence County IL,50,2,3,17,101,2-3-17-101,Midwest,East North Central +17103,Lee County,IL,Illinois,Lee County IL,50,2,3,17,103,2-3-17-103,Midwest,East North Central +17105,Livingston County,IL,Illinois,Livingston County IL,50,2,3,17,105,2-3-17-105,Midwest,East North Central +17107,Logan County,IL,Illinois,Logan County IL,50,2,3,17,107,2-3-17-107,Midwest,East North Central +17109,McDonough County,IL,Illinois,McDonough County IL,50,2,3,17,109,2-3-17-109,Midwest,East North Central +17111,McHenry County,IL,Illinois,McHenry County IL,50,2,3,17,111,2-3-17-111,Midwest,East North Central +17113,McLean County,IL,Illinois,McLean County IL,50,2,3,17,113,2-3-17-113,Midwest,East North Central +17115,Macon County,IL,Illinois,Macon County IL,50,2,3,17,115,2-3-17-115,Midwest,East North Central +17117,Macoupin County,IL,Illinois,Macoupin County IL,50,2,3,17,117,2-3-17-117,Midwest,East North Central +17119,Madison County,IL,Illinois,Madison County IL,50,2,3,17,119,2-3-17-119,Midwest,East North Central +17121,Marion County,IL,Illinois,Marion County IL,50,2,3,17,121,2-3-17-121,Midwest,East North Central +17123,Marshall County,IL,Illinois,Marshall County IL,50,2,3,17,123,2-3-17-123,Midwest,East North Central +17125,Mason County,IL,Illinois,Mason County IL,50,2,3,17,125,2-3-17-125,Midwest,East North Central +17127,Massac County,IL,Illinois,Massac County IL,50,2,3,17,127,2-3-17-127,Midwest,East North Central +17129,Menard County,IL,Illinois,Menard County IL,50,2,3,17,129,2-3-17-129,Midwest,East North Central +17131,Mercer County,IL,Illinois,Mercer County IL,50,2,3,17,131,2-3-17-131,Midwest,East North Central +17133,Monroe County,IL,Illinois,Monroe County IL,50,2,3,17,133,2-3-17-133,Midwest,East North Central +17135,Montgomery County,IL,Illinois,Montgomery County IL,50,2,3,17,135,2-3-17-135,Midwest,East North Central +17137,Morgan County,IL,Illinois,Morgan County IL,50,2,3,17,137,2-3-17-137,Midwest,East North Central +17139,Moultrie County,IL,Illinois,Moultrie County IL,50,2,3,17,139,2-3-17-139,Midwest,East North Central +17141,Ogle County,IL,Illinois,Ogle County IL,50,2,3,17,141,2-3-17-141,Midwest,East North Central +17143,Peoria County,IL,Illinois,Peoria County IL,50,2,3,17,143,2-3-17-143,Midwest,East North Central +17145,Perry County,IL,Illinois,Perry County IL,50,2,3,17,145,2-3-17-145,Midwest,East North Central +17147,Piatt County,IL,Illinois,Piatt County IL,50,2,3,17,147,2-3-17-147,Midwest,East North Central +17149,Pike County,IL,Illinois,Pike County IL,50,2,3,17,149,2-3-17-149,Midwest,East North Central +17151,Pope County,IL,Illinois,Pope County IL,50,2,3,17,151,2-3-17-151,Midwest,East North Central +17153,Pulaski County,IL,Illinois,Pulaski County IL,50,2,3,17,153,2-3-17-153,Midwest,East North Central +17155,Putnam County,IL,Illinois,Putnam County IL,50,2,3,17,155,2-3-17-155,Midwest,East North Central +17157,Randolph County,IL,Illinois,Randolph County IL,50,2,3,17,157,2-3-17-157,Midwest,East North Central +17159,Richland County,IL,Illinois,Richland County IL,50,2,3,17,159,2-3-17-159,Midwest,East North Central +17161,Rock Island County,IL,Illinois,Rock Island County IL,50,2,3,17,161,2-3-17-161,Midwest,East North Central +17163,St. Clair County,IL,Illinois,St. Clair County IL,50,2,3,17,163,2-3-17-163,Midwest,East North Central +17165,Saline County,IL,Illinois,Saline County IL,50,2,3,17,165,2-3-17-165,Midwest,East North Central +17167,Sangamon County,IL,Illinois,Sangamon County IL,50,2,3,17,167,2-3-17-167,Midwest,East North Central +17169,Schuyler County,IL,Illinois,Schuyler County IL,50,2,3,17,169,2-3-17-169,Midwest,East North Central +17171,Scott County,IL,Illinois,Scott County IL,50,2,3,17,171,2-3-17-171,Midwest,East North Central +17173,Shelby County,IL,Illinois,Shelby County IL,50,2,3,17,173,2-3-17-173,Midwest,East North Central +17175,Stark County,IL,Illinois,Stark County IL,50,2,3,17,175,2-3-17-175,Midwest,East North Central +17177,Stephenson County,IL,Illinois,Stephenson County IL,50,2,3,17,177,2-3-17-177,Midwest,East North Central +17179,Tazewell County,IL,Illinois,Tazewell County IL,50,2,3,17,179,2-3-17-179,Midwest,East North Central +17181,Union County,IL,Illinois,Union County IL,50,2,3,17,181,2-3-17-181,Midwest,East North Central +17183,Vermilion County,IL,Illinois,Vermilion County IL,50,2,3,17,183,2-3-17-183,Midwest,East North Central +17185,Wabash County,IL,Illinois,Wabash County IL,50,2,3,17,185,2-3-17-185,Midwest,East North Central +17187,Warren County,IL,Illinois,Warren County IL,50,2,3,17,187,2-3-17-187,Midwest,East North Central +17189,Washington County,IL,Illinois,Washington County IL,50,2,3,17,189,2-3-17-189,Midwest,East North Central +17191,Wayne County,IL,Illinois,Wayne County IL,50,2,3,17,191,2-3-17-191,Midwest,East North Central +17193,White County,IL,Illinois,White County IL,50,2,3,17,193,2-3-17-193,Midwest,East North Central +17195,Whiteside County,IL,Illinois,Whiteside County IL,50,2,3,17,195,2-3-17-195,Midwest,East North Central +17197,Will County,IL,Illinois,Will County IL,50,2,3,17,197,2-3-17-197,Midwest,East North Central +17199,Williamson County,IL,Illinois,Williamson County IL,50,2,3,17,199,2-3-17-199,Midwest,East North Central +17201,Winnebago County,IL,Illinois,Winnebago County IL,50,2,3,17,201,2-3-17-201,Midwest,East North Central +17203,Woodford County,IL,Illinois,Woodford County IL,50,2,3,17,203,2-3-17-203,Midwest,East North Central +18001,Adams County,IN,Indiana,Adams County IN,50,2,3,18,1,2-3-18-1,Midwest,East North Central +18003,Allen County,IN,Indiana,Allen County IN,50,2,3,18,3,2-3-18-3,Midwest,East North Central +18005,Bartholomew County,IN,Indiana,Bartholomew County IN,50,2,3,18,5,2-3-18-5,Midwest,East North Central +18007,Benton County,IN,Indiana,Benton County IN,50,2,3,18,7,2-3-18-7,Midwest,East North Central +18009,Blackford County,IN,Indiana,Blackford County IN,50,2,3,18,9,2-3-18-9,Midwest,East North Central +18011,Boone County,IN,Indiana,Boone County IN,50,2,3,18,11,2-3-18-11,Midwest,East North Central +18013,Brown County,IN,Indiana,Brown County IN,50,2,3,18,13,2-3-18-13,Midwest,East North Central +18015,Carroll County,IN,Indiana,Carroll County IN,50,2,3,18,15,2-3-18-15,Midwest,East North Central +18017,Cass County,IN,Indiana,Cass County IN,50,2,3,18,17,2-3-18-17,Midwest,East North Central +18019,Clark County,IN,Indiana,Clark County IN,50,2,3,18,19,2-3-18-19,Midwest,East North Central +18021,Clay County,IN,Indiana,Clay County IN,50,2,3,18,21,2-3-18-21,Midwest,East North Central +18023,Clinton County,IN,Indiana,Clinton County IN,50,2,3,18,23,2-3-18-23,Midwest,East North Central +18025,Crawford County,IN,Indiana,Crawford County IN,50,2,3,18,25,2-3-18-25,Midwest,East North Central +18027,Daviess County,IN,Indiana,Daviess County IN,50,2,3,18,27,2-3-18-27,Midwest,East North Central +18029,Dearborn County,IN,Indiana,Dearborn County IN,50,2,3,18,29,2-3-18-29,Midwest,East North Central +18031,Decatur County,IN,Indiana,Decatur County IN,50,2,3,18,31,2-3-18-31,Midwest,East North Central +18033,DeKalb County,IN,Indiana,DeKalb County IN,50,2,3,18,33,2-3-18-33,Midwest,East North Central +18035,Delaware County,IN,Indiana,Delaware County IN,50,2,3,18,35,2-3-18-35,Midwest,East North Central +18037,Dubois County,IN,Indiana,Dubois County IN,50,2,3,18,37,2-3-18-37,Midwest,East North Central +18039,Elkhart County,IN,Indiana,Elkhart County IN,50,2,3,18,39,2-3-18-39,Midwest,East North Central +18041,Fayette County,IN,Indiana,Fayette County IN,50,2,3,18,41,2-3-18-41,Midwest,East North Central +18043,Floyd County,IN,Indiana,Floyd County IN,50,2,3,18,43,2-3-18-43,Midwest,East North Central +18045,Fountain County,IN,Indiana,Fountain County IN,50,2,3,18,45,2-3-18-45,Midwest,East North Central +18047,Franklin County,IN,Indiana,Franklin County IN,50,2,3,18,47,2-3-18-47,Midwest,East North Central +18049,Fulton County,IN,Indiana,Fulton County IN,50,2,3,18,49,2-3-18-49,Midwest,East North Central +18051,Gibson County,IN,Indiana,Gibson County IN,50,2,3,18,51,2-3-18-51,Midwest,East North Central +18053,Grant County,IN,Indiana,Grant County IN,50,2,3,18,53,2-3-18-53,Midwest,East North Central +18055,Greene County,IN,Indiana,Greene County IN,50,2,3,18,55,2-3-18-55,Midwest,East North Central +18057,Hamilton County,IN,Indiana,Hamilton County IN,50,2,3,18,57,2-3-18-57,Midwest,East North Central +18059,Hancock County,IN,Indiana,Hancock County IN,50,2,3,18,59,2-3-18-59,Midwest,East North Central +18061,Harrison County,IN,Indiana,Harrison County IN,50,2,3,18,61,2-3-18-61,Midwest,East North Central +18063,Hendricks County,IN,Indiana,Hendricks County IN,50,2,3,18,63,2-3-18-63,Midwest,East North Central +18065,Henry County,IN,Indiana,Henry County IN,50,2,3,18,65,2-3-18-65,Midwest,East North Central +18067,Howard County,IN,Indiana,Howard County IN,50,2,3,18,67,2-3-18-67,Midwest,East North Central +18069,Huntington County,IN,Indiana,Huntington County IN,50,2,3,18,69,2-3-18-69,Midwest,East North Central +18071,Jackson County,IN,Indiana,Jackson County IN,50,2,3,18,71,2-3-18-71,Midwest,East North Central +18073,Jasper County,IN,Indiana,Jasper County IN,50,2,3,18,73,2-3-18-73,Midwest,East North Central +18075,Jay County,IN,Indiana,Jay County IN,50,2,3,18,75,2-3-18-75,Midwest,East North Central +18077,Jefferson County,IN,Indiana,Jefferson County IN,50,2,3,18,77,2-3-18-77,Midwest,East North Central +18079,Jennings County,IN,Indiana,Jennings County IN,50,2,3,18,79,2-3-18-79,Midwest,East North Central +18081,Johnson County,IN,Indiana,Johnson County IN,50,2,3,18,81,2-3-18-81,Midwest,East North Central +18083,Knox County,IN,Indiana,Knox County IN,50,2,3,18,83,2-3-18-83,Midwest,East North Central +18085,Kosciusko County,IN,Indiana,Kosciusko County IN,50,2,3,18,85,2-3-18-85,Midwest,East North Central +18087,LaGrange County,IN,Indiana,LaGrange County IN,50,2,3,18,87,2-3-18-87,Midwest,East North Central +18089,Lake County,IN,Indiana,Lake County IN,50,2,3,18,89,2-3-18-89,Midwest,East North Central +18091,LaPorte County,IN,Indiana,LaPorte County IN,50,2,3,18,91,2-3-18-91,Midwest,East North Central +18093,Lawrence County,IN,Indiana,Lawrence County IN,50,2,3,18,93,2-3-18-93,Midwest,East North Central +18095,Madison County,IN,Indiana,Madison County IN,50,2,3,18,95,2-3-18-95,Midwest,East North Central +18097,Marion County,IN,Indiana,Marion County IN,50,2,3,18,97,2-3-18-97,Midwest,East North Central +18099,Marshall County,IN,Indiana,Marshall County IN,50,2,3,18,99,2-3-18-99,Midwest,East North Central +18101,Martin County,IN,Indiana,Martin County IN,50,2,3,18,101,2-3-18-101,Midwest,East North Central +18103,Miami County,IN,Indiana,Miami County IN,50,2,3,18,103,2-3-18-103,Midwest,East North Central +18105,Monroe County,IN,Indiana,Monroe County IN,50,2,3,18,105,2-3-18-105,Midwest,East North Central +18107,Montgomery County,IN,Indiana,Montgomery County IN,50,2,3,18,107,2-3-18-107,Midwest,East North Central +18109,Morgan County,IN,Indiana,Morgan County IN,50,2,3,18,109,2-3-18-109,Midwest,East North Central +18111,Newton County,IN,Indiana,Newton County IN,50,2,3,18,111,2-3-18-111,Midwest,East North Central +18113,Noble County,IN,Indiana,Noble County IN,50,2,3,18,113,2-3-18-113,Midwest,East North Central +18115,Ohio County,IN,Indiana,Ohio County IN,50,2,3,18,115,2-3-18-115,Midwest,East North Central +18117,Orange County,IN,Indiana,Orange County IN,50,2,3,18,117,2-3-18-117,Midwest,East North Central +18119,Owen County,IN,Indiana,Owen County IN,50,2,3,18,119,2-3-18-119,Midwest,East North Central +18121,Parke County,IN,Indiana,Parke County IN,50,2,3,18,121,2-3-18-121,Midwest,East North Central +18123,Perry County,IN,Indiana,Perry County IN,50,2,3,18,123,2-3-18-123,Midwest,East North Central +18125,Pike County,IN,Indiana,Pike County IN,50,2,3,18,125,2-3-18-125,Midwest,East North Central +18127,Porter County,IN,Indiana,Porter County IN,50,2,3,18,127,2-3-18-127,Midwest,East North Central +18129,Posey County,IN,Indiana,Posey County IN,50,2,3,18,129,2-3-18-129,Midwest,East North Central +18131,Pulaski County,IN,Indiana,Pulaski County IN,50,2,3,18,131,2-3-18-131,Midwest,East North Central +18133,Putnam County,IN,Indiana,Putnam County IN,50,2,3,18,133,2-3-18-133,Midwest,East North Central +18135,Randolph County,IN,Indiana,Randolph County IN,50,2,3,18,135,2-3-18-135,Midwest,East North Central +18137,Ripley County,IN,Indiana,Ripley County IN,50,2,3,18,137,2-3-18-137,Midwest,East North Central +18139,Rush County,IN,Indiana,Rush County IN,50,2,3,18,139,2-3-18-139,Midwest,East North Central +18141,St. Joseph County,IN,Indiana,St. Joseph County IN,50,2,3,18,141,2-3-18-141,Midwest,East North Central +18143,Scott County,IN,Indiana,Scott County IN,50,2,3,18,143,2-3-18-143,Midwest,East North Central +18145,Shelby County,IN,Indiana,Shelby County IN,50,2,3,18,145,2-3-18-145,Midwest,East North Central +18147,Spencer County,IN,Indiana,Spencer County IN,50,2,3,18,147,2-3-18-147,Midwest,East North Central +18149,Starke County,IN,Indiana,Starke County IN,50,2,3,18,149,2-3-18-149,Midwest,East North Central +18151,Steuben County,IN,Indiana,Steuben County IN,50,2,3,18,151,2-3-18-151,Midwest,East North Central +18153,Sullivan County,IN,Indiana,Sullivan County IN,50,2,3,18,153,2-3-18-153,Midwest,East North Central +18155,Switzerland County,IN,Indiana,Switzerland County IN,50,2,3,18,155,2-3-18-155,Midwest,East North Central +18157,Tippecanoe County,IN,Indiana,Tippecanoe County IN,50,2,3,18,157,2-3-18-157,Midwest,East North Central +18159,Tipton County,IN,Indiana,Tipton County IN,50,2,3,18,159,2-3-18-159,Midwest,East North Central +18161,Union County,IN,Indiana,Union County IN,50,2,3,18,161,2-3-18-161,Midwest,East North Central +18163,Vanderburgh County,IN,Indiana,Vanderburgh County IN,50,2,3,18,163,2-3-18-163,Midwest,East North Central +18165,Vermillion County,IN,Indiana,Vermillion County IN,50,2,3,18,165,2-3-18-165,Midwest,East North Central +18167,Vigo County,IN,Indiana,Vigo County IN,50,2,3,18,167,2-3-18-167,Midwest,East North Central +18169,Wabash County,IN,Indiana,Wabash County IN,50,2,3,18,169,2-3-18-169,Midwest,East North Central +18171,Warren County,IN,Indiana,Warren County IN,50,2,3,18,171,2-3-18-171,Midwest,East North Central +18173,Warrick County,IN,Indiana,Warrick County IN,50,2,3,18,173,2-3-18-173,Midwest,East North Central +18175,Washington County,IN,Indiana,Washington County IN,50,2,3,18,175,2-3-18-175,Midwest,East North Central +18177,Wayne County,IN,Indiana,Wayne County IN,50,2,3,18,177,2-3-18-177,Midwest,East North Central +18179,Wells County,IN,Indiana,Wells County IN,50,2,3,18,179,2-3-18-179,Midwest,East North Central +18181,White County,IN,Indiana,White County IN,50,2,3,18,181,2-3-18-181,Midwest,East North Central +18183,Whitley County,IN,Indiana,Whitley County IN,50,2,3,18,183,2-3-18-183,Midwest,East North Central +19001,Adair County,IA,Iowa,Adair County IA,50,2,4,19,1,2-4-19-1,Midwest,West North Central +19003,Adams County,IA,Iowa,Adams County IA,50,2,4,19,3,2-4-19-3,Midwest,West North Central +19005,Allamakee County,IA,Iowa,Allamakee County IA,50,2,4,19,5,2-4-19-5,Midwest,West North Central +19007,Appanoose County,IA,Iowa,Appanoose County IA,50,2,4,19,7,2-4-19-7,Midwest,West North Central +19009,Audubon County,IA,Iowa,Audubon County IA,50,2,4,19,9,2-4-19-9,Midwest,West North Central +19011,Benton County,IA,Iowa,Benton County IA,50,2,4,19,11,2-4-19-11,Midwest,West North Central +19013,Black Hawk County,IA,Iowa,Black Hawk County IA,50,2,4,19,13,2-4-19-13,Midwest,West North Central +19015,Boone County,IA,Iowa,Boone County IA,50,2,4,19,15,2-4-19-15,Midwest,West North Central +19017,Bremer County,IA,Iowa,Bremer County IA,50,2,4,19,17,2-4-19-17,Midwest,West North Central +19019,Buchanan County,IA,Iowa,Buchanan County IA,50,2,4,19,19,2-4-19-19,Midwest,West North Central +19021,Buena Vista County,IA,Iowa,Buena Vista County IA,50,2,4,19,21,2-4-19-21,Midwest,West North Central +19023,Butler County,IA,Iowa,Butler County IA,50,2,4,19,23,2-4-19-23,Midwest,West North Central +19025,Calhoun County,IA,Iowa,Calhoun County IA,50,2,4,19,25,2-4-19-25,Midwest,West North Central +19027,Carroll County,IA,Iowa,Carroll County IA,50,2,4,19,27,2-4-19-27,Midwest,West North Central +19029,Cass County,IA,Iowa,Cass County IA,50,2,4,19,29,2-4-19-29,Midwest,West North Central +19031,Cedar County,IA,Iowa,Cedar County IA,50,2,4,19,31,2-4-19-31,Midwest,West North Central +19033,Cerro Gordo County,IA,Iowa,Cerro Gordo County IA,50,2,4,19,33,2-4-19-33,Midwest,West North Central +19035,Cherokee County,IA,Iowa,Cherokee County IA,50,2,4,19,35,2-4-19-35,Midwest,West North Central +19037,Chickasaw County,IA,Iowa,Chickasaw County IA,50,2,4,19,37,2-4-19-37,Midwest,West North Central +19039,Clarke County,IA,Iowa,Clarke County IA,50,2,4,19,39,2-4-19-39,Midwest,West North Central +19041,Clay County,IA,Iowa,Clay County IA,50,2,4,19,41,2-4-19-41,Midwest,West North Central +19043,Clayton County,IA,Iowa,Clayton County IA,50,2,4,19,43,2-4-19-43,Midwest,West North Central +19045,Clinton County,IA,Iowa,Clinton County IA,50,2,4,19,45,2-4-19-45,Midwest,West North Central +19047,Crawford County,IA,Iowa,Crawford County IA,50,2,4,19,47,2-4-19-47,Midwest,West North Central +19049,Dallas County,IA,Iowa,Dallas County IA,50,2,4,19,49,2-4-19-49,Midwest,West North Central +19051,Davis County,IA,Iowa,Davis County IA,50,2,4,19,51,2-4-19-51,Midwest,West North Central +19053,Decatur County,IA,Iowa,Decatur County IA,50,2,4,19,53,2-4-19-53,Midwest,West North Central +19055,Delaware County,IA,Iowa,Delaware County IA,50,2,4,19,55,2-4-19-55,Midwest,West North Central +19057,Des Moines County,IA,Iowa,Des Moines County IA,50,2,4,19,57,2-4-19-57,Midwest,West North Central +19059,Dickinson County,IA,Iowa,Dickinson County IA,50,2,4,19,59,2-4-19-59,Midwest,West North Central +19061,Dubuque County,IA,Iowa,Dubuque County IA,50,2,4,19,61,2-4-19-61,Midwest,West North Central +19063,Emmet County,IA,Iowa,Emmet County IA,50,2,4,19,63,2-4-19-63,Midwest,West North Central +19065,Fayette County,IA,Iowa,Fayette County IA,50,2,4,19,65,2-4-19-65,Midwest,West North Central +19067,Floyd County,IA,Iowa,Floyd County IA,50,2,4,19,67,2-4-19-67,Midwest,West North Central +19069,Franklin County,IA,Iowa,Franklin County IA,50,2,4,19,69,2-4-19-69,Midwest,West North Central +19071,Fremont County,IA,Iowa,Fremont County IA,50,2,4,19,71,2-4-19-71,Midwest,West North Central +19073,Greene County,IA,Iowa,Greene County IA,50,2,4,19,73,2-4-19-73,Midwest,West North Central +19075,Grundy County,IA,Iowa,Grundy County IA,50,2,4,19,75,2-4-19-75,Midwest,West North Central +19077,Guthrie County,IA,Iowa,Guthrie County IA,50,2,4,19,77,2-4-19-77,Midwest,West North Central +19079,Hamilton County,IA,Iowa,Hamilton County IA,50,2,4,19,79,2-4-19-79,Midwest,West North Central +19081,Hancock County,IA,Iowa,Hancock County IA,50,2,4,19,81,2-4-19-81,Midwest,West North Central +19083,Hardin County,IA,Iowa,Hardin County IA,50,2,4,19,83,2-4-19-83,Midwest,West North Central +19085,Harrison County,IA,Iowa,Harrison County IA,50,2,4,19,85,2-4-19-85,Midwest,West North Central +19087,Henry County,IA,Iowa,Henry County IA,50,2,4,19,87,2-4-19-87,Midwest,West North Central +19089,Howard County,IA,Iowa,Howard County IA,50,2,4,19,89,2-4-19-89,Midwest,West North Central +19091,Humboldt County,IA,Iowa,Humboldt County IA,50,2,4,19,91,2-4-19-91,Midwest,West North Central +19093,Ida County,IA,Iowa,Ida County IA,50,2,4,19,93,2-4-19-93,Midwest,West North Central +19095,Iowa County,IA,Iowa,Iowa County IA,50,2,4,19,95,2-4-19-95,Midwest,West North Central +19097,Jackson County,IA,Iowa,Jackson County IA,50,2,4,19,97,2-4-19-97,Midwest,West North Central +19099,Jasper County,IA,Iowa,Jasper County IA,50,2,4,19,99,2-4-19-99,Midwest,West North Central +19101,Jefferson County,IA,Iowa,Jefferson County IA,50,2,4,19,101,2-4-19-101,Midwest,West North Central +19103,Johnson County,IA,Iowa,Johnson County IA,50,2,4,19,103,2-4-19-103,Midwest,West North Central +19105,Jones County,IA,Iowa,Jones County IA,50,2,4,19,105,2-4-19-105,Midwest,West North Central +19107,Keokuk County,IA,Iowa,Keokuk County IA,50,2,4,19,107,2-4-19-107,Midwest,West North Central +19109,Kossuth County,IA,Iowa,Kossuth County IA,50,2,4,19,109,2-4-19-109,Midwest,West North Central +19111,Lee County,IA,Iowa,Lee County IA,50,2,4,19,111,2-4-19-111,Midwest,West North Central +19113,Linn County,IA,Iowa,Linn County IA,50,2,4,19,113,2-4-19-113,Midwest,West North Central +19115,Louisa County,IA,Iowa,Louisa County IA,50,2,4,19,115,2-4-19-115,Midwest,West North Central +19117,Lucas County,IA,Iowa,Lucas County IA,50,2,4,19,117,2-4-19-117,Midwest,West North Central +19119,Lyon County,IA,Iowa,Lyon County IA,50,2,4,19,119,2-4-19-119,Midwest,West North Central +19121,Madison County,IA,Iowa,Madison County IA,50,2,4,19,121,2-4-19-121,Midwest,West North Central +19123,Mahaska County,IA,Iowa,Mahaska County IA,50,2,4,19,123,2-4-19-123,Midwest,West North Central +19125,Marion County,IA,Iowa,Marion County IA,50,2,4,19,125,2-4-19-125,Midwest,West North Central +19127,Marshall County,IA,Iowa,Marshall County IA,50,2,4,19,127,2-4-19-127,Midwest,West North Central +19129,Mills County,IA,Iowa,Mills County IA,50,2,4,19,129,2-4-19-129,Midwest,West North Central +19131,Mitchell County,IA,Iowa,Mitchell County IA,50,2,4,19,131,2-4-19-131,Midwest,West North Central +19133,Monona County,IA,Iowa,Monona County IA,50,2,4,19,133,2-4-19-133,Midwest,West North Central +19135,Monroe County,IA,Iowa,Monroe County IA,50,2,4,19,135,2-4-19-135,Midwest,West North Central +19137,Montgomery County,IA,Iowa,Montgomery County IA,50,2,4,19,137,2-4-19-137,Midwest,West North Central +19139,Muscatine County,IA,Iowa,Muscatine County IA,50,2,4,19,139,2-4-19-139,Midwest,West North Central +19141,O'Brien County,IA,Iowa,O'Brien County IA,50,2,4,19,141,2-4-19-141,Midwest,West North Central +19143,Osceola County,IA,Iowa,Osceola County IA,50,2,4,19,143,2-4-19-143,Midwest,West North Central +19145,Page County,IA,Iowa,Page County IA,50,2,4,19,145,2-4-19-145,Midwest,West North Central +19147,Palo Alto County,IA,Iowa,Palo Alto County IA,50,2,4,19,147,2-4-19-147,Midwest,West North Central +19149,Plymouth County,IA,Iowa,Plymouth County IA,50,2,4,19,149,2-4-19-149,Midwest,West North Central +19151,Pocahontas County,IA,Iowa,Pocahontas County IA,50,2,4,19,151,2-4-19-151,Midwest,West North Central +19153,Polk County,IA,Iowa,Polk County IA,50,2,4,19,153,2-4-19-153,Midwest,West North Central +19155,Pottawattamie County,IA,Iowa,Pottawattamie County IA,50,2,4,19,155,2-4-19-155,Midwest,West North Central +19157,Poweshiek County,IA,Iowa,Poweshiek County IA,50,2,4,19,157,2-4-19-157,Midwest,West North Central +19159,Ringgold County,IA,Iowa,Ringgold County IA,50,2,4,19,159,2-4-19-159,Midwest,West North Central +19161,Sac County,IA,Iowa,Sac County IA,50,2,4,19,161,2-4-19-161,Midwest,West North Central +19163,Scott County,IA,Iowa,Scott County IA,50,2,4,19,163,2-4-19-163,Midwest,West North Central +19165,Shelby County,IA,Iowa,Shelby County IA,50,2,4,19,165,2-4-19-165,Midwest,West North Central +19167,Sioux County,IA,Iowa,Sioux County IA,50,2,4,19,167,2-4-19-167,Midwest,West North Central +19169,Story County,IA,Iowa,Story County IA,50,2,4,19,169,2-4-19-169,Midwest,West North Central +19171,Tama County,IA,Iowa,Tama County IA,50,2,4,19,171,2-4-19-171,Midwest,West North Central +19173,Taylor County,IA,Iowa,Taylor County IA,50,2,4,19,173,2-4-19-173,Midwest,West North Central +19175,Union County,IA,Iowa,Union County IA,50,2,4,19,175,2-4-19-175,Midwest,West North Central +19177,Van Buren County,IA,Iowa,Van Buren County IA,50,2,4,19,177,2-4-19-177,Midwest,West North Central +19179,Wapello County,IA,Iowa,Wapello County IA,50,2,4,19,179,2-4-19-179,Midwest,West North Central +19181,Warren County,IA,Iowa,Warren County IA,50,2,4,19,181,2-4-19-181,Midwest,West North Central +19183,Washington County,IA,Iowa,Washington County IA,50,2,4,19,183,2-4-19-183,Midwest,West North Central +19185,Wayne County,IA,Iowa,Wayne County IA,50,2,4,19,185,2-4-19-185,Midwest,West North Central +19187,Webster County,IA,Iowa,Webster County IA,50,2,4,19,187,2-4-19-187,Midwest,West North Central +19189,Winnebago County,IA,Iowa,Winnebago County IA,50,2,4,19,189,2-4-19-189,Midwest,West North Central +19191,Winneshiek County,IA,Iowa,Winneshiek County IA,50,2,4,19,191,2-4-19-191,Midwest,West North Central +19193,Woodbury County,IA,Iowa,Woodbury County IA,50,2,4,19,193,2-4-19-193,Midwest,West North Central +19195,Worth County,IA,Iowa,Worth County IA,50,2,4,19,195,2-4-19-195,Midwest,West North Central +19197,Wright County,IA,Iowa,Wright County IA,50,2,4,19,197,2-4-19-197,Midwest,West North Central +20001,Allen County,KS,Kansas,Allen County KS,50,2,4,20,1,2-4-20-1,Midwest,West North Central +20003,Anderson County,KS,Kansas,Anderson County KS,50,2,4,20,3,2-4-20-3,Midwest,West North Central +20005,Atchison County,KS,Kansas,Atchison County KS,50,2,4,20,5,2-4-20-5,Midwest,West North Central +20007,Barber County,KS,Kansas,Barber County KS,50,2,4,20,7,2-4-20-7,Midwest,West North Central +20009,Barton County,KS,Kansas,Barton County KS,50,2,4,20,9,2-4-20-9,Midwest,West North Central +20011,Bourbon County,KS,Kansas,Bourbon County KS,50,2,4,20,11,2-4-20-11,Midwest,West North Central +20013,Brown County,KS,Kansas,Brown County KS,50,2,4,20,13,2-4-20-13,Midwest,West North Central +20015,Butler County,KS,Kansas,Butler County KS,50,2,4,20,15,2-4-20-15,Midwest,West North Central +20017,Chase County,KS,Kansas,Chase County KS,50,2,4,20,17,2-4-20-17,Midwest,West North Central +20019,Chautauqua County,KS,Kansas,Chautauqua County KS,50,2,4,20,19,2-4-20-19,Midwest,West North Central +20021,Cherokee County,KS,Kansas,Cherokee County KS,50,2,4,20,21,2-4-20-21,Midwest,West North Central +20023,Cheyenne County,KS,Kansas,Cheyenne County KS,50,2,4,20,23,2-4-20-23,Midwest,West North Central +20025,Clark County,KS,Kansas,Clark County KS,50,2,4,20,25,2-4-20-25,Midwest,West North Central +20027,Clay County,KS,Kansas,Clay County KS,50,2,4,20,27,2-4-20-27,Midwest,West North Central +20029,Cloud County,KS,Kansas,Cloud County KS,50,2,4,20,29,2-4-20-29,Midwest,West North Central +20031,Coffey County,KS,Kansas,Coffey County KS,50,2,4,20,31,2-4-20-31,Midwest,West North Central +20033,Comanche County,KS,Kansas,Comanche County KS,50,2,4,20,33,2-4-20-33,Midwest,West North Central +20035,Cowley County,KS,Kansas,Cowley County KS,50,2,4,20,35,2-4-20-35,Midwest,West North Central +20037,Crawford County,KS,Kansas,Crawford County KS,50,2,4,20,37,2-4-20-37,Midwest,West North Central +20039,Decatur County,KS,Kansas,Decatur County KS,50,2,4,20,39,2-4-20-39,Midwest,West North Central +20041,Dickinson County,KS,Kansas,Dickinson County KS,50,2,4,20,41,2-4-20-41,Midwest,West North Central +20043,Doniphan County,KS,Kansas,Doniphan County KS,50,2,4,20,43,2-4-20-43,Midwest,West North Central +20045,Douglas County,KS,Kansas,Douglas County KS,50,2,4,20,45,2-4-20-45,Midwest,West North Central +20047,Edwards County,KS,Kansas,Edwards County KS,50,2,4,20,47,2-4-20-47,Midwest,West North Central +20049,Elk County,KS,Kansas,Elk County KS,50,2,4,20,49,2-4-20-49,Midwest,West North Central +20051,Ellis County,KS,Kansas,Ellis County KS,50,2,4,20,51,2-4-20-51,Midwest,West North Central +20053,Ellsworth County,KS,Kansas,Ellsworth County KS,50,2,4,20,53,2-4-20-53,Midwest,West North Central +20055,Finney County,KS,Kansas,Finney County KS,50,2,4,20,55,2-4-20-55,Midwest,West North Central +20057,Ford County,KS,Kansas,Ford County KS,50,2,4,20,57,2-4-20-57,Midwest,West North Central +20059,Franklin County,KS,Kansas,Franklin County KS,50,2,4,20,59,2-4-20-59,Midwest,West North Central +20061,Geary County,KS,Kansas,Geary County KS,50,2,4,20,61,2-4-20-61,Midwest,West North Central +20063,Gove County,KS,Kansas,Gove County KS,50,2,4,20,63,2-4-20-63,Midwest,West North Central +20065,Graham County,KS,Kansas,Graham County KS,50,2,4,20,65,2-4-20-65,Midwest,West North Central +20067,Grant County,KS,Kansas,Grant County KS,50,2,4,20,67,2-4-20-67,Midwest,West North Central +20069,Gray County,KS,Kansas,Gray County KS,50,2,4,20,69,2-4-20-69,Midwest,West North Central +20071,Greeley County,KS,Kansas,Greeley County KS,50,2,4,20,71,2-4-20-71,Midwest,West North Central +20073,Greenwood County,KS,Kansas,Greenwood County KS,50,2,4,20,73,2-4-20-73,Midwest,West North Central +20075,Hamilton County,KS,Kansas,Hamilton County KS,50,2,4,20,75,2-4-20-75,Midwest,West North Central +20077,Harper County,KS,Kansas,Harper County KS,50,2,4,20,77,2-4-20-77,Midwest,West North Central +20079,Harvey County,KS,Kansas,Harvey County KS,50,2,4,20,79,2-4-20-79,Midwest,West North Central +20081,Haskell County,KS,Kansas,Haskell County KS,50,2,4,20,81,2-4-20-81,Midwest,West North Central +20083,Hodgeman County,KS,Kansas,Hodgeman County KS,50,2,4,20,83,2-4-20-83,Midwest,West North Central +20085,Jackson County,KS,Kansas,Jackson County KS,50,2,4,20,85,2-4-20-85,Midwest,West North Central +20087,Jefferson County,KS,Kansas,Jefferson County KS,50,2,4,20,87,2-4-20-87,Midwest,West North Central +20089,Jewell County,KS,Kansas,Jewell County KS,50,2,4,20,89,2-4-20-89,Midwest,West North Central +20091,Johnson County,KS,Kansas,Johnson County KS,50,2,4,20,91,2-4-20-91,Midwest,West North Central +20093,Kearny County,KS,Kansas,Kearny County KS,50,2,4,20,93,2-4-20-93,Midwest,West North Central +20095,Kingman County,KS,Kansas,Kingman County KS,50,2,4,20,95,2-4-20-95,Midwest,West North Central +20097,Kiowa County,KS,Kansas,Kiowa County KS,50,2,4,20,97,2-4-20-97,Midwest,West North Central +20099,Labette County,KS,Kansas,Labette County KS,50,2,4,20,99,2-4-20-99,Midwest,West North Central +20101,Lane County,KS,Kansas,Lane County KS,50,2,4,20,101,2-4-20-101,Midwest,West North Central +20103,Leavenworth County,KS,Kansas,Leavenworth County KS,50,2,4,20,103,2-4-20-103,Midwest,West North Central +20105,Lincoln County,KS,Kansas,Lincoln County KS,50,2,4,20,105,2-4-20-105,Midwest,West North Central +20107,Linn County,KS,Kansas,Linn County KS,50,2,4,20,107,2-4-20-107,Midwest,West North Central +20109,Logan County,KS,Kansas,Logan County KS,50,2,4,20,109,2-4-20-109,Midwest,West North Central +20111,Lyon County,KS,Kansas,Lyon County KS,50,2,4,20,111,2-4-20-111,Midwest,West North Central +20113,McPherson County,KS,Kansas,McPherson County KS,50,2,4,20,113,2-4-20-113,Midwest,West North Central +20115,Marion County,KS,Kansas,Marion County KS,50,2,4,20,115,2-4-20-115,Midwest,West North Central +20117,Marshall County,KS,Kansas,Marshall County KS,50,2,4,20,117,2-4-20-117,Midwest,West North Central +20119,Meade County,KS,Kansas,Meade County KS,50,2,4,20,119,2-4-20-119,Midwest,West North Central +20121,Miami County,KS,Kansas,Miami County KS,50,2,4,20,121,2-4-20-121,Midwest,West North Central +20123,Mitchell County,KS,Kansas,Mitchell County KS,50,2,4,20,123,2-4-20-123,Midwest,West North Central +20125,Montgomery County,KS,Kansas,Montgomery County KS,50,2,4,20,125,2-4-20-125,Midwest,West North Central +20127,Morris County,KS,Kansas,Morris County KS,50,2,4,20,127,2-4-20-127,Midwest,West North Central +20129,Morton County,KS,Kansas,Morton County KS,50,2,4,20,129,2-4-20-129,Midwest,West North Central +20131,Nemaha County,KS,Kansas,Nemaha County KS,50,2,4,20,131,2-4-20-131,Midwest,West North Central +20133,Neosho County,KS,Kansas,Neosho County KS,50,2,4,20,133,2-4-20-133,Midwest,West North Central +20135,Ness County,KS,Kansas,Ness County KS,50,2,4,20,135,2-4-20-135,Midwest,West North Central +20137,Norton County,KS,Kansas,Norton County KS,50,2,4,20,137,2-4-20-137,Midwest,West North Central +20139,Osage County,KS,Kansas,Osage County KS,50,2,4,20,139,2-4-20-139,Midwest,West North Central +20141,Osborne County,KS,Kansas,Osborne County KS,50,2,4,20,141,2-4-20-141,Midwest,West North Central +20143,Ottawa County,KS,Kansas,Ottawa County KS,50,2,4,20,143,2-4-20-143,Midwest,West North Central +20145,Pawnee County,KS,Kansas,Pawnee County KS,50,2,4,20,145,2-4-20-145,Midwest,West North Central +20147,Phillips County,KS,Kansas,Phillips County KS,50,2,4,20,147,2-4-20-147,Midwest,West North Central +20149,Pottawatomie County,KS,Kansas,Pottawatomie County KS,50,2,4,20,149,2-4-20-149,Midwest,West North Central +20151,Pratt County,KS,Kansas,Pratt County KS,50,2,4,20,151,2-4-20-151,Midwest,West North Central +20153,Rawlins County,KS,Kansas,Rawlins County KS,50,2,4,20,153,2-4-20-153,Midwest,West North Central +20155,Reno County,KS,Kansas,Reno County KS,50,2,4,20,155,2-4-20-155,Midwest,West North Central +20157,Republic County,KS,Kansas,Republic County KS,50,2,4,20,157,2-4-20-157,Midwest,West North Central +20159,Rice County,KS,Kansas,Rice County KS,50,2,4,20,159,2-4-20-159,Midwest,West North Central +20161,Riley County,KS,Kansas,Riley County KS,50,2,4,20,161,2-4-20-161,Midwest,West North Central +20163,Rooks County,KS,Kansas,Rooks County KS,50,2,4,20,163,2-4-20-163,Midwest,West North Central +20165,Rush County,KS,Kansas,Rush County KS,50,2,4,20,165,2-4-20-165,Midwest,West North Central +20167,Russell County,KS,Kansas,Russell County KS,50,2,4,20,167,2-4-20-167,Midwest,West North Central +20169,Saline County,KS,Kansas,Saline County KS,50,2,4,20,169,2-4-20-169,Midwest,West North Central +20171,Scott County,KS,Kansas,Scott County KS,50,2,4,20,171,2-4-20-171,Midwest,West North Central +20173,Sedgwick County,KS,Kansas,Sedgwick County KS,50,2,4,20,173,2-4-20-173,Midwest,West North Central +20175,Seward County,KS,Kansas,Seward County KS,50,2,4,20,175,2-4-20-175,Midwest,West North Central +20177,Shawnee County,KS,Kansas,Shawnee County KS,50,2,4,20,177,2-4-20-177,Midwest,West North Central +20179,Sheridan County,KS,Kansas,Sheridan County KS,50,2,4,20,179,2-4-20-179,Midwest,West North Central +20181,Sherman County,KS,Kansas,Sherman County KS,50,2,4,20,181,2-4-20-181,Midwest,West North Central +20183,Smith County,KS,Kansas,Smith County KS,50,2,4,20,183,2-4-20-183,Midwest,West North Central +20185,Stafford County,KS,Kansas,Stafford County KS,50,2,4,20,185,2-4-20-185,Midwest,West North Central +20187,Stanton County,KS,Kansas,Stanton County KS,50,2,4,20,187,2-4-20-187,Midwest,West North Central +20189,Stevens County,KS,Kansas,Stevens County KS,50,2,4,20,189,2-4-20-189,Midwest,West North Central +20191,Sumner County,KS,Kansas,Sumner County KS,50,2,4,20,191,2-4-20-191,Midwest,West North Central +20193,Thomas County,KS,Kansas,Thomas County KS,50,2,4,20,193,2-4-20-193,Midwest,West North Central +20195,Trego County,KS,Kansas,Trego County KS,50,2,4,20,195,2-4-20-195,Midwest,West North Central +20197,Wabaunsee County,KS,Kansas,Wabaunsee County KS,50,2,4,20,197,2-4-20-197,Midwest,West North Central +20199,Wallace County,KS,Kansas,Wallace County KS,50,2,4,20,199,2-4-20-199,Midwest,West North Central +20201,Washington County,KS,Kansas,Washington County KS,50,2,4,20,201,2-4-20-201,Midwest,West North Central +20203,Wichita County,KS,Kansas,Wichita County KS,50,2,4,20,203,2-4-20-203,Midwest,West North Central +20205,Wilson County,KS,Kansas,Wilson County KS,50,2,4,20,205,2-4-20-205,Midwest,West North Central +20207,Woodson County,KS,Kansas,Woodson County KS,50,2,4,20,207,2-4-20-207,Midwest,West North Central +20209,Wyandotte County,KS,Kansas,Wyandotte County KS,50,2,4,20,209,2-4-20-209,Midwest,West North Central +21001,Adair County,KY,Kentucky,Adair County KY,50,3,6,21,1,3-6-21-1,South,East South Central +21003,Allen County,KY,Kentucky,Allen County KY,50,3,6,21,3,3-6-21-3,South,East South Central +21005,Anderson County,KY,Kentucky,Anderson County KY,50,3,6,21,5,3-6-21-5,South,East South Central +21007,Ballard County,KY,Kentucky,Ballard County KY,50,3,6,21,7,3-6-21-7,South,East South Central +21009,Barren County,KY,Kentucky,Barren County KY,50,3,6,21,9,3-6-21-9,South,East South Central +21011,Bath County,KY,Kentucky,Bath County KY,50,3,6,21,11,3-6-21-11,South,East South Central +21013,Bell County,KY,Kentucky,Bell County KY,50,3,6,21,13,3-6-21-13,South,East South Central +21015,Boone County,KY,Kentucky,Boone County KY,50,3,6,21,15,3-6-21-15,South,East South Central +21017,Bourbon County,KY,Kentucky,Bourbon County KY,50,3,6,21,17,3-6-21-17,South,East South Central +21019,Boyd County,KY,Kentucky,Boyd County KY,50,3,6,21,19,3-6-21-19,South,East South Central +21021,Boyle County,KY,Kentucky,Boyle County KY,50,3,6,21,21,3-6-21-21,South,East South Central +21023,Bracken County,KY,Kentucky,Bracken County KY,50,3,6,21,23,3-6-21-23,South,East South Central +21025,Breathitt County,KY,Kentucky,Breathitt County KY,50,3,6,21,25,3-6-21-25,South,East South Central +21027,Breckinridge County,KY,Kentucky,Breckinridge County KY,50,3,6,21,27,3-6-21-27,South,East South Central +21029,Bullitt County,KY,Kentucky,Bullitt County KY,50,3,6,21,29,3-6-21-29,South,East South Central +21031,Butler County,KY,Kentucky,Butler County KY,50,3,6,21,31,3-6-21-31,South,East South Central +21033,Caldwell County,KY,Kentucky,Caldwell County KY,50,3,6,21,33,3-6-21-33,South,East South Central +21035,Calloway County,KY,Kentucky,Calloway County KY,50,3,6,21,35,3-6-21-35,South,East South Central +21037,Campbell County,KY,Kentucky,Campbell County KY,50,3,6,21,37,3-6-21-37,South,East South Central +21039,Carlisle County,KY,Kentucky,Carlisle County KY,50,3,6,21,39,3-6-21-39,South,East South Central +21041,Carroll County,KY,Kentucky,Carroll County KY,50,3,6,21,41,3-6-21-41,South,East South Central +21043,Carter County,KY,Kentucky,Carter County KY,50,3,6,21,43,3-6-21-43,South,East South Central +21045,Casey County,KY,Kentucky,Casey County KY,50,3,6,21,45,3-6-21-45,South,East South Central +21047,Christian County,KY,Kentucky,Christian County KY,50,3,6,21,47,3-6-21-47,South,East South Central +21049,Clark County,KY,Kentucky,Clark County KY,50,3,6,21,49,3-6-21-49,South,East South Central +21051,Clay County,KY,Kentucky,Clay County KY,50,3,6,21,51,3-6-21-51,South,East South Central +21053,Clinton County,KY,Kentucky,Clinton County KY,50,3,6,21,53,3-6-21-53,South,East South Central +21055,Crittenden County,KY,Kentucky,Crittenden County KY,50,3,6,21,55,3-6-21-55,South,East South Central +21057,Cumberland County,KY,Kentucky,Cumberland County KY,50,3,6,21,57,3-6-21-57,South,East South Central +21059,Daviess County,KY,Kentucky,Daviess County KY,50,3,6,21,59,3-6-21-59,South,East South Central +21061,Edmonson County,KY,Kentucky,Edmonson County KY,50,3,6,21,61,3-6-21-61,South,East South Central +21063,Elliott County,KY,Kentucky,Elliott County KY,50,3,6,21,63,3-6-21-63,South,East South Central +21065,Estill County,KY,Kentucky,Estill County KY,50,3,6,21,65,3-6-21-65,South,East South Central +21067,Fayette County,KY,Kentucky,Fayette County KY,50,3,6,21,67,3-6-21-67,South,East South Central +21069,Fleming County,KY,Kentucky,Fleming County KY,50,3,6,21,69,3-6-21-69,South,East South Central +21071,Floyd County,KY,Kentucky,Floyd County KY,50,3,6,21,71,3-6-21-71,South,East South Central +21073,Franklin County,KY,Kentucky,Franklin County KY,50,3,6,21,73,3-6-21-73,South,East South Central +21075,Fulton County,KY,Kentucky,Fulton County KY,50,3,6,21,75,3-6-21-75,South,East South Central +21077,Gallatin County,KY,Kentucky,Gallatin County KY,50,3,6,21,77,3-6-21-77,South,East South Central +21079,Garrard County,KY,Kentucky,Garrard County KY,50,3,6,21,79,3-6-21-79,South,East South Central +21081,Grant County,KY,Kentucky,Grant County KY,50,3,6,21,81,3-6-21-81,South,East South Central +21083,Graves County,KY,Kentucky,Graves County KY,50,3,6,21,83,3-6-21-83,South,East South Central +21085,Grayson County,KY,Kentucky,Grayson County KY,50,3,6,21,85,3-6-21-85,South,East South Central +21087,Green County,KY,Kentucky,Green County KY,50,3,6,21,87,3-6-21-87,South,East South Central +21089,Greenup County,KY,Kentucky,Greenup County KY,50,3,6,21,89,3-6-21-89,South,East South Central +21091,Hancock County,KY,Kentucky,Hancock County KY,50,3,6,21,91,3-6-21-91,South,East South Central +21093,Hardin County,KY,Kentucky,Hardin County KY,50,3,6,21,93,3-6-21-93,South,East South Central +21095,Harlan County,KY,Kentucky,Harlan County KY,50,3,6,21,95,3-6-21-95,South,East South Central +21097,Harrison County,KY,Kentucky,Harrison County KY,50,3,6,21,97,3-6-21-97,South,East South Central +21099,Hart County,KY,Kentucky,Hart County KY,50,3,6,21,99,3-6-21-99,South,East South Central +21101,Henderson County,KY,Kentucky,Henderson County KY,50,3,6,21,101,3-6-21-101,South,East South Central +21103,Henry County,KY,Kentucky,Henry County KY,50,3,6,21,103,3-6-21-103,South,East South Central +21105,Hickman County,KY,Kentucky,Hickman County KY,50,3,6,21,105,3-6-21-105,South,East South Central +21107,Hopkins County,KY,Kentucky,Hopkins County KY,50,3,6,21,107,3-6-21-107,South,East South Central +21109,Jackson County,KY,Kentucky,Jackson County KY,50,3,6,21,109,3-6-21-109,South,East South Central +21111,Jefferson County,KY,Kentucky,Jefferson County KY,50,3,6,21,111,3-6-21-111,South,East South Central +21113,Jessamine County,KY,Kentucky,Jessamine County KY,50,3,6,21,113,3-6-21-113,South,East South Central +21115,Johnson County,KY,Kentucky,Johnson County KY,50,3,6,21,115,3-6-21-115,South,East South Central +21117,Kenton County,KY,Kentucky,Kenton County KY,50,3,6,21,117,3-6-21-117,South,East South Central +21119,Knott County,KY,Kentucky,Knott County KY,50,3,6,21,119,3-6-21-119,South,East South Central +21121,Knox County,KY,Kentucky,Knox County KY,50,3,6,21,121,3-6-21-121,South,East South Central +21123,Larue County,KY,Kentucky,Larue County KY,50,3,6,21,123,3-6-21-123,South,East South Central +21125,Laurel County,KY,Kentucky,Laurel County KY,50,3,6,21,125,3-6-21-125,South,East South Central +21127,Lawrence County,KY,Kentucky,Lawrence County KY,50,3,6,21,127,3-6-21-127,South,East South Central +21129,Lee County,KY,Kentucky,Lee County KY,50,3,6,21,129,3-6-21-129,South,East South Central +21131,Leslie County,KY,Kentucky,Leslie County KY,50,3,6,21,131,3-6-21-131,South,East South Central +21133,Letcher County,KY,Kentucky,Letcher County KY,50,3,6,21,133,3-6-21-133,South,East South Central +21135,Lewis County,KY,Kentucky,Lewis County KY,50,3,6,21,135,3-6-21-135,South,East South Central +21137,Lincoln County,KY,Kentucky,Lincoln County KY,50,3,6,21,137,3-6-21-137,South,East South Central +21139,Livingston County,KY,Kentucky,Livingston County KY,50,3,6,21,139,3-6-21-139,South,East South Central +21141,Logan County,KY,Kentucky,Logan County KY,50,3,6,21,141,3-6-21-141,South,East South Central +21143,Lyon County,KY,Kentucky,Lyon County KY,50,3,6,21,143,3-6-21-143,South,East South Central +21145,McCracken County,KY,Kentucky,McCracken County KY,50,3,6,21,145,3-6-21-145,South,East South Central +21147,McCreary County,KY,Kentucky,McCreary County KY,50,3,6,21,147,3-6-21-147,South,East South Central +21149,McLean County,KY,Kentucky,McLean County KY,50,3,6,21,149,3-6-21-149,South,East South Central +21151,Madison County,KY,Kentucky,Madison County KY,50,3,6,21,151,3-6-21-151,South,East South Central +21153,Magoffin County,KY,Kentucky,Magoffin County KY,50,3,6,21,153,3-6-21-153,South,East South Central +21155,Marion County,KY,Kentucky,Marion County KY,50,3,6,21,155,3-6-21-155,South,East South Central +21157,Marshall County,KY,Kentucky,Marshall County KY,50,3,6,21,157,3-6-21-157,South,East South Central +21159,Martin County,KY,Kentucky,Martin County KY,50,3,6,21,159,3-6-21-159,South,East South Central +21161,Mason County,KY,Kentucky,Mason County KY,50,3,6,21,161,3-6-21-161,South,East South Central +21163,Meade County,KY,Kentucky,Meade County KY,50,3,6,21,163,3-6-21-163,South,East South Central +21165,Menifee County,KY,Kentucky,Menifee County KY,50,3,6,21,165,3-6-21-165,South,East South Central +21167,Mercer County,KY,Kentucky,Mercer County KY,50,3,6,21,167,3-6-21-167,South,East South Central +21169,Metcalfe County,KY,Kentucky,Metcalfe County KY,50,3,6,21,169,3-6-21-169,South,East South Central +21171,Monroe County,KY,Kentucky,Monroe County KY,50,3,6,21,171,3-6-21-171,South,East South Central +21173,Montgomery County,KY,Kentucky,Montgomery County KY,50,3,6,21,173,3-6-21-173,South,East South Central +21175,Morgan County,KY,Kentucky,Morgan County KY,50,3,6,21,175,3-6-21-175,South,East South Central +21177,Muhlenberg County,KY,Kentucky,Muhlenberg County KY,50,3,6,21,177,3-6-21-177,South,East South Central +21179,Nelson County,KY,Kentucky,Nelson County KY,50,3,6,21,179,3-6-21-179,South,East South Central +21181,Nicholas County,KY,Kentucky,Nicholas County KY,50,3,6,21,181,3-6-21-181,South,East South Central +21183,Ohio County,KY,Kentucky,Ohio County KY,50,3,6,21,183,3-6-21-183,South,East South Central +21185,Oldham County,KY,Kentucky,Oldham County KY,50,3,6,21,185,3-6-21-185,South,East South Central +21187,Owen County,KY,Kentucky,Owen County KY,50,3,6,21,187,3-6-21-187,South,East South Central +21189,Owsley County,KY,Kentucky,Owsley County KY,50,3,6,21,189,3-6-21-189,South,East South Central +21191,Pendleton County,KY,Kentucky,Pendleton County KY,50,3,6,21,191,3-6-21-191,South,East South Central +21193,Perry County,KY,Kentucky,Perry County KY,50,3,6,21,193,3-6-21-193,South,East South Central +21195,Pike County,KY,Kentucky,Pike County KY,50,3,6,21,195,3-6-21-195,South,East South Central +21197,Powell County,KY,Kentucky,Powell County KY,50,3,6,21,197,3-6-21-197,South,East South Central +21199,Pulaski County,KY,Kentucky,Pulaski County KY,50,3,6,21,199,3-6-21-199,South,East South Central +21201,Robertson County,KY,Kentucky,Robertson County KY,50,3,6,21,201,3-6-21-201,South,East South Central +21203,Rockcastle County,KY,Kentucky,Rockcastle County KY,50,3,6,21,203,3-6-21-203,South,East South Central +21205,Rowan County,KY,Kentucky,Rowan County KY,50,3,6,21,205,3-6-21-205,South,East South Central +21207,Russell County,KY,Kentucky,Russell County KY,50,3,6,21,207,3-6-21-207,South,East South Central +21209,Scott County,KY,Kentucky,Scott County KY,50,3,6,21,209,3-6-21-209,South,East South Central +21211,Shelby County,KY,Kentucky,Shelby County KY,50,3,6,21,211,3-6-21-211,South,East South Central +21213,Simpson County,KY,Kentucky,Simpson County KY,50,3,6,21,213,3-6-21-213,South,East South Central +21215,Spencer County,KY,Kentucky,Spencer County KY,50,3,6,21,215,3-6-21-215,South,East South Central +21217,Taylor County,KY,Kentucky,Taylor County KY,50,3,6,21,217,3-6-21-217,South,East South Central +21219,Todd County,KY,Kentucky,Todd County KY,50,3,6,21,219,3-6-21-219,South,East South Central +21221,Trigg County,KY,Kentucky,Trigg County KY,50,3,6,21,221,3-6-21-221,South,East South Central +21223,Trimble County,KY,Kentucky,Trimble County KY,50,3,6,21,223,3-6-21-223,South,East South Central +21225,Union County,KY,Kentucky,Union County KY,50,3,6,21,225,3-6-21-225,South,East South Central +21227,Warren County,KY,Kentucky,Warren County KY,50,3,6,21,227,3-6-21-227,South,East South Central +21229,Washington County,KY,Kentucky,Washington County KY,50,3,6,21,229,3-6-21-229,South,East South Central +21231,Wayne County,KY,Kentucky,Wayne County KY,50,3,6,21,231,3-6-21-231,South,East South Central +21233,Webster County,KY,Kentucky,Webster County KY,50,3,6,21,233,3-6-21-233,South,East South Central +21235,Whitley County,KY,Kentucky,Whitley County KY,50,3,6,21,235,3-6-21-235,South,East South Central +21237,Wolfe County,KY,Kentucky,Wolfe County KY,50,3,6,21,237,3-6-21-237,South,East South Central +21239,Woodford County,KY,Kentucky,Woodford County KY,50,3,6,21,239,3-6-21-239,South,East South Central +22001,Acadia Parish,LA,Louisiana,Acadia Parish LA,50,3,7,22,1,3-7-22-1,South,West South Central +22003,Allen Parish,LA,Louisiana,Allen Parish LA,50,3,7,22,3,3-7-22-3,South,West South Central +22005,Ascension Parish,LA,Louisiana,Ascension Parish LA,50,3,7,22,5,3-7-22-5,South,West South Central +22007,Assumption Parish,LA,Louisiana,Assumption Parish LA,50,3,7,22,7,3-7-22-7,South,West South Central +22009,Avoyelles Parish,LA,Louisiana,Avoyelles Parish LA,50,3,7,22,9,3-7-22-9,South,West South Central +22011,Beauregard Parish,LA,Louisiana,Beauregard Parish LA,50,3,7,22,11,3-7-22-11,South,West South Central +22013,Bienville Parish,LA,Louisiana,Bienville Parish LA,50,3,7,22,13,3-7-22-13,South,West South Central +22015,Bossier Parish,LA,Louisiana,Bossier Parish LA,50,3,7,22,15,3-7-22-15,South,West South Central +22017,Caddo Parish,LA,Louisiana,Caddo Parish LA,50,3,7,22,17,3-7-22-17,South,West South Central +22019,Calcasieu Parish,LA,Louisiana,Calcasieu Parish LA,50,3,7,22,19,3-7-22-19,South,West South Central +22021,Caldwell Parish,LA,Louisiana,Caldwell Parish LA,50,3,7,22,21,3-7-22-21,South,West South Central +22023,Cameron Parish,LA,Louisiana,Cameron Parish LA,50,3,7,22,23,3-7-22-23,South,West South Central +22025,Catahoula Parish,LA,Louisiana,Catahoula Parish LA,50,3,7,22,25,3-7-22-25,South,West South Central +22027,Claiborne Parish,LA,Louisiana,Claiborne Parish LA,50,3,7,22,27,3-7-22-27,South,West South Central +22029,Concordia Parish,LA,Louisiana,Concordia Parish LA,50,3,7,22,29,3-7-22-29,South,West South Central +22031,De Soto Parish,LA,Louisiana,De Soto Parish LA,50,3,7,22,31,3-7-22-31,South,West South Central +22033,East Baton Rouge Parish,LA,Louisiana,East Baton Rouge Parish LA,50,3,7,22,33,3-7-22-33,South,West South Central +22035,East Carroll Parish,LA,Louisiana,East Carroll Parish LA,50,3,7,22,35,3-7-22-35,South,West South Central +22037,East Feliciana Parish,LA,Louisiana,East Feliciana Parish LA,50,3,7,22,37,3-7-22-37,South,West South Central +22039,Evangeline Parish,LA,Louisiana,Evangeline Parish LA,50,3,7,22,39,3-7-22-39,South,West South Central +22041,Franklin Parish,LA,Louisiana,Franklin Parish LA,50,3,7,22,41,3-7-22-41,South,West South Central +22043,Grant Parish,LA,Louisiana,Grant Parish LA,50,3,7,22,43,3-7-22-43,South,West South Central +22045,Iberia Parish,LA,Louisiana,Iberia Parish LA,50,3,7,22,45,3-7-22-45,South,West South Central +22047,Iberville Parish,LA,Louisiana,Iberville Parish LA,50,3,7,22,47,3-7-22-47,South,West South Central +22049,Jackson Parish,LA,Louisiana,Jackson Parish LA,50,3,7,22,49,3-7-22-49,South,West South Central +22051,Jefferson Parish,LA,Louisiana,Jefferson Parish LA,50,3,7,22,51,3-7-22-51,South,West South Central +22053,Jefferson Davis Parish,LA,Louisiana,Jefferson Davis Parish LA,50,3,7,22,53,3-7-22-53,South,West South Central +22055,Lafayette Parish,LA,Louisiana,Lafayette Parish LA,50,3,7,22,55,3-7-22-55,South,West South Central +22057,Lafourche Parish,LA,Louisiana,Lafourche Parish LA,50,3,7,22,57,3-7-22-57,South,West South Central +22059,La Salle Parish,LA,Louisiana,La Salle Parish LA,50,3,7,22,59,3-7-22-59,South,West South Central +22061,Lincoln Parish,LA,Louisiana,Lincoln Parish LA,50,3,7,22,61,3-7-22-61,South,West South Central +22063,Livingston Parish,LA,Louisiana,Livingston Parish LA,50,3,7,22,63,3-7-22-63,South,West South Central +22065,Madison Parish,LA,Louisiana,Madison Parish LA,50,3,7,22,65,3-7-22-65,South,West South Central +22067,Morehouse Parish,LA,Louisiana,Morehouse Parish LA,50,3,7,22,67,3-7-22-67,South,West South Central +22069,Natchitoches Parish,LA,Louisiana,Natchitoches Parish LA,50,3,7,22,69,3-7-22-69,South,West South Central +22071,Orleans Parish,LA,Louisiana,Orleans Parish LA,50,3,7,22,71,3-7-22-71,South,West South Central +22073,Ouachita Parish,LA,Louisiana,Ouachita Parish LA,50,3,7,22,73,3-7-22-73,South,West South Central +22075,Plaquemines Parish,LA,Louisiana,Plaquemines Parish LA,50,3,7,22,75,3-7-22-75,South,West South Central +22077,Pointe Coupee Parish,LA,Louisiana,Pointe Coupee Parish LA,50,3,7,22,77,3-7-22-77,South,West South Central +22079,Rapides Parish,LA,Louisiana,Rapides Parish LA,50,3,7,22,79,3-7-22-79,South,West South Central +22081,Red River Parish,LA,Louisiana,Red River Parish LA,50,3,7,22,81,3-7-22-81,South,West South Central +22083,Richland Parish,LA,Louisiana,Richland Parish LA,50,3,7,22,83,3-7-22-83,South,West South Central +22085,Sabine Parish,LA,Louisiana,Sabine Parish LA,50,3,7,22,85,3-7-22-85,South,West South Central +22087,St. Bernard Parish,LA,Louisiana,St. Bernard Parish LA,50,3,7,22,87,3-7-22-87,South,West South Central +22089,St. Charles Parish,LA,Louisiana,St. Charles Parish LA,50,3,7,22,89,3-7-22-89,South,West South Central +22091,St. Helena Parish,LA,Louisiana,St. Helena Parish LA,50,3,7,22,91,3-7-22-91,South,West South Central +22093,St. James Parish,LA,Louisiana,St. James Parish LA,50,3,7,22,93,3-7-22-93,South,West South Central +22095,St. John the Baptist Parish,LA,Louisiana,St. John the Baptist Parish LA,50,3,7,22,95,3-7-22-95,South,West South Central +22097,St. Landry Parish,LA,Louisiana,St. Landry Parish LA,50,3,7,22,97,3-7-22-97,South,West South Central +22099,St. Martin Parish,LA,Louisiana,St. Martin Parish LA,50,3,7,22,99,3-7-22-99,South,West South Central +22101,St. Mary Parish,LA,Louisiana,St. Mary Parish LA,50,3,7,22,101,3-7-22-101,South,West South Central +22103,St. Tammany Parish,LA,Louisiana,St. Tammany Parish LA,50,3,7,22,103,3-7-22-103,South,West South Central +22105,Tangipahoa Parish,LA,Louisiana,Tangipahoa Parish LA,50,3,7,22,105,3-7-22-105,South,West South Central +22107,Tensas Parish,LA,Louisiana,Tensas Parish LA,50,3,7,22,107,3-7-22-107,South,West South Central +22109,Terrebonne Parish,LA,Louisiana,Terrebonne Parish LA,50,3,7,22,109,3-7-22-109,South,West South Central +22111,Union Parish,LA,Louisiana,Union Parish LA,50,3,7,22,111,3-7-22-111,South,West South Central +22113,Vermilion Parish,LA,Louisiana,Vermilion Parish LA,50,3,7,22,113,3-7-22-113,South,West South Central +22115,Vernon Parish,LA,Louisiana,Vernon Parish LA,50,3,7,22,115,3-7-22-115,South,West South Central +22117,Washington Parish,LA,Louisiana,Washington Parish LA,50,3,7,22,117,3-7-22-117,South,West South Central +22119,Webster Parish,LA,Louisiana,Webster Parish LA,50,3,7,22,119,3-7-22-119,South,West South Central +22121,West Baton Rouge Parish,LA,Louisiana,West Baton Rouge Parish LA,50,3,7,22,121,3-7-22-121,South,West South Central +22123,West Carroll Parish,LA,Louisiana,West Carroll Parish LA,50,3,7,22,123,3-7-22-123,South,West South Central +22125,West Feliciana Parish,LA,Louisiana,West Feliciana Parish LA,50,3,7,22,125,3-7-22-125,South,West South Central +22127,Winn Parish,LA,Louisiana,Winn Parish LA,50,3,7,22,127,3-7-22-127,South,West South Central +23001,Androscoggin County,ME,Maine,Androscoggin County ME,50,1,1,23,1,1-1-23-1,Northeast,New England +23003,Aroostook County,ME,Maine,Aroostook County ME,50,1,1,23,3,1-1-23-3,Northeast,New England +23005,Cumberland County,ME,Maine,Cumberland County ME,50,1,1,23,5,1-1-23-5,Northeast,New England +23007,Franklin County,ME,Maine,Franklin County ME,50,1,1,23,7,1-1-23-7,Northeast,New England +23009,Hancock County,ME,Maine,Hancock County ME,50,1,1,23,9,1-1-23-9,Northeast,New England +23011,Kennebec County,ME,Maine,Kennebec County ME,50,1,1,23,11,1-1-23-11,Northeast,New England +23013,Knox County,ME,Maine,Knox County ME,50,1,1,23,13,1-1-23-13,Northeast,New England +23015,Lincoln County,ME,Maine,Lincoln County ME,50,1,1,23,15,1-1-23-15,Northeast,New England +23017,Oxford County,ME,Maine,Oxford County ME,50,1,1,23,17,1-1-23-17,Northeast,New England +23019,Penobscot County,ME,Maine,Penobscot County ME,50,1,1,23,19,1-1-23-19,Northeast,New England +23021,Piscataquis County,ME,Maine,Piscataquis County ME,50,1,1,23,21,1-1-23-21,Northeast,New England +23023,Sagadahoc County,ME,Maine,Sagadahoc County ME,50,1,1,23,23,1-1-23-23,Northeast,New England +23025,Somerset County,ME,Maine,Somerset County ME,50,1,1,23,25,1-1-23-25,Northeast,New England +23027,Waldo County,ME,Maine,Waldo County ME,50,1,1,23,27,1-1-23-27,Northeast,New England +23029,Washington County,ME,Maine,Washington County ME,50,1,1,23,29,1-1-23-29,Northeast,New England +23031,York County,ME,Maine,York County ME,50,1,1,23,31,1-1-23-31,Northeast,New England +24001,Allegany County,MD,Maryland,Allegany County MD,50,3,5,24,1,3-5-24-1,South,South Atlantic +24003,Anne Arundel County,MD,Maryland,Anne Arundel County MD,50,3,5,24,3,3-5-24-3,South,South Atlantic +24005,Baltimore County,MD,Maryland,Baltimore County MD,50,3,5,24,5,3-5-24-5,South,South Atlantic +24009,Calvert County,MD,Maryland,Calvert County MD,50,3,5,24,9,3-5-24-9,South,South Atlantic +24011,Caroline County,MD,Maryland,Caroline County MD,50,3,5,24,11,3-5-24-11,South,South Atlantic +24013,Carroll County,MD,Maryland,Carroll County MD,50,3,5,24,13,3-5-24-13,South,South Atlantic +24015,Cecil County,MD,Maryland,Cecil County MD,50,3,5,24,15,3-5-24-15,South,South Atlantic +24017,Charles County,MD,Maryland,Charles County MD,50,3,5,24,17,3-5-24-17,South,South Atlantic +24019,Dorchester County,MD,Maryland,Dorchester County MD,50,3,5,24,19,3-5-24-19,South,South Atlantic +24021,Frederick County,MD,Maryland,Frederick County MD,50,3,5,24,21,3-5-24-21,South,South Atlantic +24023,Garrett County,MD,Maryland,Garrett County MD,50,3,5,24,23,3-5-24-23,South,South Atlantic +24025,Harford County,MD,Maryland,Harford County MD,50,3,5,24,25,3-5-24-25,South,South Atlantic +24027,Howard County,MD,Maryland,Howard County MD,50,3,5,24,27,3-5-24-27,South,South Atlantic +24029,Kent County,MD,Maryland,Kent County MD,50,3,5,24,29,3-5-24-29,South,South Atlantic +24031,Montgomery County,MD,Maryland,Montgomery County MD,50,3,5,24,31,3-5-24-31,South,South Atlantic +24033,Prince George's County,MD,Maryland,Prince George's County MD,50,3,5,24,33,3-5-24-33,South,South Atlantic +24035,Queen Anne's County,MD,Maryland,Queen Anne's County MD,50,3,5,24,35,3-5-24-35,South,South Atlantic +24037,St. Mary's County,MD,Maryland,St. Mary's County MD,50,3,5,24,37,3-5-24-37,South,South Atlantic +24039,Somerset County,MD,Maryland,Somerset County MD,50,3,5,24,39,3-5-24-39,South,South Atlantic +24041,Talbot County,MD,Maryland,Talbot County MD,50,3,5,24,41,3-5-24-41,South,South Atlantic +24043,Washington County,MD,Maryland,Washington County MD,50,3,5,24,43,3-5-24-43,South,South Atlantic +24045,Wicomico County,MD,Maryland,Wicomico County MD,50,3,5,24,45,3-5-24-45,South,South Atlantic +24047,Worcester County,MD,Maryland,Worcester County MD,50,3,5,24,47,3-5-24-47,South,South Atlantic +24510,Baltimore city,MD,Maryland,Baltimore city MD,50,3,5,24,510,3-5-24-510,South,South Atlantic +25001,Barnstable County,MA,Massachusetts,Barnstable County MA,50,1,1,25,1,1-1-25-1,Northeast,New England +25003,Berkshire County,MA,Massachusetts,Berkshire County MA,50,1,1,25,3,1-1-25-3,Northeast,New England +25005,Bristol County,MA,Massachusetts,Bristol County MA,50,1,1,25,5,1-1-25-5,Northeast,New England +25007,Dukes County,MA,Massachusetts,Dukes County MA,50,1,1,25,7,1-1-25-7,Northeast,New England +25009,Essex County,MA,Massachusetts,Essex County MA,50,1,1,25,9,1-1-25-9,Northeast,New England +25011,Franklin County,MA,Massachusetts,Franklin County MA,50,1,1,25,11,1-1-25-11,Northeast,New England +25013,Hampden County,MA,Massachusetts,Hampden County MA,50,1,1,25,13,1-1-25-13,Northeast,New England +25015,Hampshire County,MA,Massachusetts,Hampshire County MA,50,1,1,25,15,1-1-25-15,Northeast,New England +25017,Middlesex County,MA,Massachusetts,Middlesex County MA,50,1,1,25,17,1-1-25-17,Northeast,New England +25019,Nantucket County,MA,Massachusetts,Nantucket County MA,50,1,1,25,19,1-1-25-19,Northeast,New England +25021,Norfolk County,MA,Massachusetts,Norfolk County MA,50,1,1,25,21,1-1-25-21,Northeast,New England +25023,Plymouth County,MA,Massachusetts,Plymouth County MA,50,1,1,25,23,1-1-25-23,Northeast,New England +25025,Suffolk County,MA,Massachusetts,Suffolk County MA,50,1,1,25,25,1-1-25-25,Northeast,New England +25027,Worcester County,MA,Massachusetts,Worcester County MA,50,1,1,25,27,1-1-25-27,Northeast,New England +26001,Alcona County,MI,Michigan,Alcona County MI,50,2,3,26,1,2-3-26-1,Midwest,East North Central +26003,Alger County,MI,Michigan,Alger County MI,50,2,3,26,3,2-3-26-3,Midwest,East North Central +26005,Allegan County,MI,Michigan,Allegan County MI,50,2,3,26,5,2-3-26-5,Midwest,East North Central +26007,Alpena County,MI,Michigan,Alpena County MI,50,2,3,26,7,2-3-26-7,Midwest,East North Central +26009,Antrim County,MI,Michigan,Antrim County MI,50,2,3,26,9,2-3-26-9,Midwest,East North Central +26011,Arenac County,MI,Michigan,Arenac County MI,50,2,3,26,11,2-3-26-11,Midwest,East North Central +26013,Baraga County,MI,Michigan,Baraga County MI,50,2,3,26,13,2-3-26-13,Midwest,East North Central +26015,Barry County,MI,Michigan,Barry County MI,50,2,3,26,15,2-3-26-15,Midwest,East North Central +26017,Bay County,MI,Michigan,Bay County MI,50,2,3,26,17,2-3-26-17,Midwest,East North Central +26019,Benzie County,MI,Michigan,Benzie County MI,50,2,3,26,19,2-3-26-19,Midwest,East North Central +26021,Berrien County,MI,Michigan,Berrien County MI,50,2,3,26,21,2-3-26-21,Midwest,East North Central +26023,Branch County,MI,Michigan,Branch County MI,50,2,3,26,23,2-3-26-23,Midwest,East North Central +26025,Calhoun County,MI,Michigan,Calhoun County MI,50,2,3,26,25,2-3-26-25,Midwest,East North Central +26027,Cass County,MI,Michigan,Cass County MI,50,2,3,26,27,2-3-26-27,Midwest,East North Central +26029,Charlevoix County,MI,Michigan,Charlevoix County MI,50,2,3,26,29,2-3-26-29,Midwest,East North Central +26031,Cheboygan County,MI,Michigan,Cheboygan County MI,50,2,3,26,31,2-3-26-31,Midwest,East North Central +26033,Chippewa County,MI,Michigan,Chippewa County MI,50,2,3,26,33,2-3-26-33,Midwest,East North Central +26035,Clare County,MI,Michigan,Clare County MI,50,2,3,26,35,2-3-26-35,Midwest,East North Central +26037,Clinton County,MI,Michigan,Clinton County MI,50,2,3,26,37,2-3-26-37,Midwest,East North Central +26039,Crawford County,MI,Michigan,Crawford County MI,50,2,3,26,39,2-3-26-39,Midwest,East North Central +26041,Delta County,MI,Michigan,Delta County MI,50,2,3,26,41,2-3-26-41,Midwest,East North Central +26043,Dickinson County,MI,Michigan,Dickinson County MI,50,2,3,26,43,2-3-26-43,Midwest,East North Central +26045,Eaton County,MI,Michigan,Eaton County MI,50,2,3,26,45,2-3-26-45,Midwest,East North Central +26047,Emmet County,MI,Michigan,Emmet County MI,50,2,3,26,47,2-3-26-47,Midwest,East North Central +26049,Genesee County,MI,Michigan,Genesee County MI,50,2,3,26,49,2-3-26-49,Midwest,East North Central +26051,Gladwin County,MI,Michigan,Gladwin County MI,50,2,3,26,51,2-3-26-51,Midwest,East North Central +26053,Gogebic County,MI,Michigan,Gogebic County MI,50,2,3,26,53,2-3-26-53,Midwest,East North Central +26055,Grand Traverse County,MI,Michigan,Grand Traverse County MI,50,2,3,26,55,2-3-26-55,Midwest,East North Central +26057,Gratiot County,MI,Michigan,Gratiot County MI,50,2,3,26,57,2-3-26-57,Midwest,East North Central +26059,Hillsdale County,MI,Michigan,Hillsdale County MI,50,2,3,26,59,2-3-26-59,Midwest,East North Central +26061,Houghton County,MI,Michigan,Houghton County MI,50,2,3,26,61,2-3-26-61,Midwest,East North Central +26063,Huron County,MI,Michigan,Huron County MI,50,2,3,26,63,2-3-26-63,Midwest,East North Central +26065,Ingham County,MI,Michigan,Ingham County MI,50,2,3,26,65,2-3-26-65,Midwest,East North Central +26067,Ionia County,MI,Michigan,Ionia County MI,50,2,3,26,67,2-3-26-67,Midwest,East North Central +26069,Iosco County,MI,Michigan,Iosco County MI,50,2,3,26,69,2-3-26-69,Midwest,East North Central +26071,Iron County,MI,Michigan,Iron County MI,50,2,3,26,71,2-3-26-71,Midwest,East North Central +26073,Isabella County,MI,Michigan,Isabella County MI,50,2,3,26,73,2-3-26-73,Midwest,East North Central +26075,Jackson County,MI,Michigan,Jackson County MI,50,2,3,26,75,2-3-26-75,Midwest,East North Central +26077,Kalamazoo County,MI,Michigan,Kalamazoo County MI,50,2,3,26,77,2-3-26-77,Midwest,East North Central +26079,Kalkaska County,MI,Michigan,Kalkaska County MI,50,2,3,26,79,2-3-26-79,Midwest,East North Central +26081,Kent County,MI,Michigan,Kent County MI,50,2,3,26,81,2-3-26-81,Midwest,East North Central +26083,Keweenaw County,MI,Michigan,Keweenaw County MI,50,2,3,26,83,2-3-26-83,Midwest,East North Central +26085,Lake County,MI,Michigan,Lake County MI,50,2,3,26,85,2-3-26-85,Midwest,East North Central +26087,Lapeer County,MI,Michigan,Lapeer County MI,50,2,3,26,87,2-3-26-87,Midwest,East North Central +26089,Leelanau County,MI,Michigan,Leelanau County MI,50,2,3,26,89,2-3-26-89,Midwest,East North Central +26091,Lenawee County,MI,Michigan,Lenawee County MI,50,2,3,26,91,2-3-26-91,Midwest,East North Central +26093,Livingston County,MI,Michigan,Livingston County MI,50,2,3,26,93,2-3-26-93,Midwest,East North Central +26095,Luce County,MI,Michigan,Luce County MI,50,2,3,26,95,2-3-26-95,Midwest,East North Central +26097,Mackinac County,MI,Michigan,Mackinac County MI,50,2,3,26,97,2-3-26-97,Midwest,East North Central +26099,Macomb County,MI,Michigan,Macomb County MI,50,2,3,26,99,2-3-26-99,Midwest,East North Central +26101,Manistee County,MI,Michigan,Manistee County MI,50,2,3,26,101,2-3-26-101,Midwest,East North Central +26103,Marquette County,MI,Michigan,Marquette County MI,50,2,3,26,103,2-3-26-103,Midwest,East North Central +26105,Mason County,MI,Michigan,Mason County MI,50,2,3,26,105,2-3-26-105,Midwest,East North Central +26107,Mecosta County,MI,Michigan,Mecosta County MI,50,2,3,26,107,2-3-26-107,Midwest,East North Central +26109,Menominee County,MI,Michigan,Menominee County MI,50,2,3,26,109,2-3-26-109,Midwest,East North Central +26111,Midland County,MI,Michigan,Midland County MI,50,2,3,26,111,2-3-26-111,Midwest,East North Central +26113,Missaukee County,MI,Michigan,Missaukee County MI,50,2,3,26,113,2-3-26-113,Midwest,East North Central +26115,Monroe County,MI,Michigan,Monroe County MI,50,2,3,26,115,2-3-26-115,Midwest,East North Central +26117,Montcalm County,MI,Michigan,Montcalm County MI,50,2,3,26,117,2-3-26-117,Midwest,East North Central +26119,Montmorency County,MI,Michigan,Montmorency County MI,50,2,3,26,119,2-3-26-119,Midwest,East North Central +26121,Muskegon County,MI,Michigan,Muskegon County MI,50,2,3,26,121,2-3-26-121,Midwest,East North Central +26123,Newaygo County,MI,Michigan,Newaygo County MI,50,2,3,26,123,2-3-26-123,Midwest,East North Central +26125,Oakland County,MI,Michigan,Oakland County MI,50,2,3,26,125,2-3-26-125,Midwest,East North Central +26127,Oceana County,MI,Michigan,Oceana County MI,50,2,3,26,127,2-3-26-127,Midwest,East North Central +26129,Ogemaw County,MI,Michigan,Ogemaw County MI,50,2,3,26,129,2-3-26-129,Midwest,East North Central +26131,Ontonagon County,MI,Michigan,Ontonagon County MI,50,2,3,26,131,2-3-26-131,Midwest,East North Central +26133,Osceola County,MI,Michigan,Osceola County MI,50,2,3,26,133,2-3-26-133,Midwest,East North Central +26135,Oscoda County,MI,Michigan,Oscoda County MI,50,2,3,26,135,2-3-26-135,Midwest,East North Central +26137,Otsego County,MI,Michigan,Otsego County MI,50,2,3,26,137,2-3-26-137,Midwest,East North Central +26139,Ottawa County,MI,Michigan,Ottawa County MI,50,2,3,26,139,2-3-26-139,Midwest,East North Central +26141,Presque Isle County,MI,Michigan,Presque Isle County MI,50,2,3,26,141,2-3-26-141,Midwest,East North Central +26143,Roscommon County,MI,Michigan,Roscommon County MI,50,2,3,26,143,2-3-26-143,Midwest,East North Central +26145,Saginaw County,MI,Michigan,Saginaw County MI,50,2,3,26,145,2-3-26-145,Midwest,East North Central +26147,St. Clair County,MI,Michigan,St. Clair County MI,50,2,3,26,147,2-3-26-147,Midwest,East North Central +26149,St. Joseph County,MI,Michigan,St. Joseph County MI,50,2,3,26,149,2-3-26-149,Midwest,East North Central +26151,Sanilac County,MI,Michigan,Sanilac County MI,50,2,3,26,151,2-3-26-151,Midwest,East North Central +26153,Schoolcraft County,MI,Michigan,Schoolcraft County MI,50,2,3,26,153,2-3-26-153,Midwest,East North Central +26155,Shiawassee County,MI,Michigan,Shiawassee County MI,50,2,3,26,155,2-3-26-155,Midwest,East North Central +26157,Tuscola County,MI,Michigan,Tuscola County MI,50,2,3,26,157,2-3-26-157,Midwest,East North Central +26159,Van Buren County,MI,Michigan,Van Buren County MI,50,2,3,26,159,2-3-26-159,Midwest,East North Central +26161,Washtenaw County,MI,Michigan,Washtenaw County MI,50,2,3,26,161,2-3-26-161,Midwest,East North Central +26163,Wayne County,MI,Michigan,Wayne County MI,50,2,3,26,163,2-3-26-163,Midwest,East North Central +26165,Wexford County,MI,Michigan,Wexford County MI,50,2,3,26,165,2-3-26-165,Midwest,East North Central +27001,Aitkin County,MN,Minnesota,Aitkin County MN,50,2,4,27,1,2-4-27-1,Midwest,West North Central +27003,Anoka County,MN,Minnesota,Anoka County MN,50,2,4,27,3,2-4-27-3,Midwest,West North Central +27005,Becker County,MN,Minnesota,Becker County MN,50,2,4,27,5,2-4-27-5,Midwest,West North Central +27007,Beltrami County,MN,Minnesota,Beltrami County MN,50,2,4,27,7,2-4-27-7,Midwest,West North Central +27009,Benton County,MN,Minnesota,Benton County MN,50,2,4,27,9,2-4-27-9,Midwest,West North Central +27011,Big Stone County,MN,Minnesota,Big Stone County MN,50,2,4,27,11,2-4-27-11,Midwest,West North Central +27013,Blue Earth County,MN,Minnesota,Blue Earth County MN,50,2,4,27,13,2-4-27-13,Midwest,West North Central +27015,Brown County,MN,Minnesota,Brown County MN,50,2,4,27,15,2-4-27-15,Midwest,West North Central +27017,Carlton County,MN,Minnesota,Carlton County MN,50,2,4,27,17,2-4-27-17,Midwest,West North Central +27019,Carver County,MN,Minnesota,Carver County MN,50,2,4,27,19,2-4-27-19,Midwest,West North Central +27021,Cass County,MN,Minnesota,Cass County MN,50,2,4,27,21,2-4-27-21,Midwest,West North Central +27023,Chippewa County,MN,Minnesota,Chippewa County MN,50,2,4,27,23,2-4-27-23,Midwest,West North Central +27025,Chisago County,MN,Minnesota,Chisago County MN,50,2,4,27,25,2-4-27-25,Midwest,West North Central +27027,Clay County,MN,Minnesota,Clay County MN,50,2,4,27,27,2-4-27-27,Midwest,West North Central +27029,Clearwater County,MN,Minnesota,Clearwater County MN,50,2,4,27,29,2-4-27-29,Midwest,West North Central +27031,Cook County,MN,Minnesota,Cook County MN,50,2,4,27,31,2-4-27-31,Midwest,West North Central +27033,Cottonwood County,MN,Minnesota,Cottonwood County MN,50,2,4,27,33,2-4-27-33,Midwest,West North Central +27035,Crow Wing County,MN,Minnesota,Crow Wing County MN,50,2,4,27,35,2-4-27-35,Midwest,West North Central +27037,Dakota County,MN,Minnesota,Dakota County MN,50,2,4,27,37,2-4-27-37,Midwest,West North Central +27039,Dodge County,MN,Minnesota,Dodge County MN,50,2,4,27,39,2-4-27-39,Midwest,West North Central +27041,Douglas County,MN,Minnesota,Douglas County MN,50,2,4,27,41,2-4-27-41,Midwest,West North Central +27043,Faribault County,MN,Minnesota,Faribault County MN,50,2,4,27,43,2-4-27-43,Midwest,West North Central +27045,Fillmore County,MN,Minnesota,Fillmore County MN,50,2,4,27,45,2-4-27-45,Midwest,West North Central +27047,Freeborn County,MN,Minnesota,Freeborn County MN,50,2,4,27,47,2-4-27-47,Midwest,West North Central +27049,Goodhue County,MN,Minnesota,Goodhue County MN,50,2,4,27,49,2-4-27-49,Midwest,West North Central +27051,Grant County,MN,Minnesota,Grant County MN,50,2,4,27,51,2-4-27-51,Midwest,West North Central +27053,Hennepin County,MN,Minnesota,Hennepin County MN,50,2,4,27,53,2-4-27-53,Midwest,West North Central +27055,Houston County,MN,Minnesota,Houston County MN,50,2,4,27,55,2-4-27-55,Midwest,West North Central +27057,Hubbard County,MN,Minnesota,Hubbard County MN,50,2,4,27,57,2-4-27-57,Midwest,West North Central +27059,Isanti County,MN,Minnesota,Isanti County MN,50,2,4,27,59,2-4-27-59,Midwest,West North Central +27061,Itasca County,MN,Minnesota,Itasca County MN,50,2,4,27,61,2-4-27-61,Midwest,West North Central +27063,Jackson County,MN,Minnesota,Jackson County MN,50,2,4,27,63,2-4-27-63,Midwest,West North Central +27065,Kanabec County,MN,Minnesota,Kanabec County MN,50,2,4,27,65,2-4-27-65,Midwest,West North Central +27067,Kandiyohi County,MN,Minnesota,Kandiyohi County MN,50,2,4,27,67,2-4-27-67,Midwest,West North Central +27069,Kittson County,MN,Minnesota,Kittson County MN,50,2,4,27,69,2-4-27-69,Midwest,West North Central +27071,Koochiching County,MN,Minnesota,Koochiching County MN,50,2,4,27,71,2-4-27-71,Midwest,West North Central +27073,Lac qui Parle County,MN,Minnesota,Lac qui Parle County MN,50,2,4,27,73,2-4-27-73,Midwest,West North Central +27075,Lake County,MN,Minnesota,Lake County MN,50,2,4,27,75,2-4-27-75,Midwest,West North Central +27077,Lake of the Woods County,MN,Minnesota,Lake of the Woods County MN,50,2,4,27,77,2-4-27-77,Midwest,West North Central +27079,Le Sueur County,MN,Minnesota,Le Sueur County MN,50,2,4,27,79,2-4-27-79,Midwest,West North Central +27081,Lincoln County,MN,Minnesota,Lincoln County MN,50,2,4,27,81,2-4-27-81,Midwest,West North Central +27083,Lyon County,MN,Minnesota,Lyon County MN,50,2,4,27,83,2-4-27-83,Midwest,West North Central +27085,McLeod County,MN,Minnesota,McLeod County MN,50,2,4,27,85,2-4-27-85,Midwest,West North Central +27087,Mahnomen County,MN,Minnesota,Mahnomen County MN,50,2,4,27,87,2-4-27-87,Midwest,West North Central +27089,Marshall County,MN,Minnesota,Marshall County MN,50,2,4,27,89,2-4-27-89,Midwest,West North Central +27091,Martin County,MN,Minnesota,Martin County MN,50,2,4,27,91,2-4-27-91,Midwest,West North Central +27093,Meeker County,MN,Minnesota,Meeker County MN,50,2,4,27,93,2-4-27-93,Midwest,West North Central +27095,Mille Lacs County,MN,Minnesota,Mille Lacs County MN,50,2,4,27,95,2-4-27-95,Midwest,West North Central +27097,Morrison County,MN,Minnesota,Morrison County MN,50,2,4,27,97,2-4-27-97,Midwest,West North Central +27099,Mower County,MN,Minnesota,Mower County MN,50,2,4,27,99,2-4-27-99,Midwest,West North Central +27101,Murray County,MN,Minnesota,Murray County MN,50,2,4,27,101,2-4-27-101,Midwest,West North Central +27103,Nicollet County,MN,Minnesota,Nicollet County MN,50,2,4,27,103,2-4-27-103,Midwest,West North Central +27105,Nobles County,MN,Minnesota,Nobles County MN,50,2,4,27,105,2-4-27-105,Midwest,West North Central +27107,Norman County,MN,Minnesota,Norman County MN,50,2,4,27,107,2-4-27-107,Midwest,West North Central +27109,Olmsted County,MN,Minnesota,Olmsted County MN,50,2,4,27,109,2-4-27-109,Midwest,West North Central +27111,Otter Tail County,MN,Minnesota,Otter Tail County MN,50,2,4,27,111,2-4-27-111,Midwest,West North Central +27113,Pennington County,MN,Minnesota,Pennington County MN,50,2,4,27,113,2-4-27-113,Midwest,West North Central +27115,Pine County,MN,Minnesota,Pine County MN,50,2,4,27,115,2-4-27-115,Midwest,West North Central +27117,Pipestone County,MN,Minnesota,Pipestone County MN,50,2,4,27,117,2-4-27-117,Midwest,West North Central +27119,Polk County,MN,Minnesota,Polk County MN,50,2,4,27,119,2-4-27-119,Midwest,West North Central +27121,Pope County,MN,Minnesota,Pope County MN,50,2,4,27,121,2-4-27-121,Midwest,West North Central +27123,Ramsey County,MN,Minnesota,Ramsey County MN,50,2,4,27,123,2-4-27-123,Midwest,West North Central +27125,Red Lake County,MN,Minnesota,Red Lake County MN,50,2,4,27,125,2-4-27-125,Midwest,West North Central +27127,Redwood County,MN,Minnesota,Redwood County MN,50,2,4,27,127,2-4-27-127,Midwest,West North Central +27129,Renville County,MN,Minnesota,Renville County MN,50,2,4,27,129,2-4-27-129,Midwest,West North Central +27131,Rice County,MN,Minnesota,Rice County MN,50,2,4,27,131,2-4-27-131,Midwest,West North Central +27133,Rock County,MN,Minnesota,Rock County MN,50,2,4,27,133,2-4-27-133,Midwest,West North Central +27135,Roseau County,MN,Minnesota,Roseau County MN,50,2,4,27,135,2-4-27-135,Midwest,West North Central +27137,St. Louis County,MN,Minnesota,St. Louis County MN,50,2,4,27,137,2-4-27-137,Midwest,West North Central +27139,Scott County,MN,Minnesota,Scott County MN,50,2,4,27,139,2-4-27-139,Midwest,West North Central +27141,Sherburne County,MN,Minnesota,Sherburne County MN,50,2,4,27,141,2-4-27-141,Midwest,West North Central +27143,Sibley County,MN,Minnesota,Sibley County MN,50,2,4,27,143,2-4-27-143,Midwest,West North Central +27145,Stearns County,MN,Minnesota,Stearns County MN,50,2,4,27,145,2-4-27-145,Midwest,West North Central +27147,Steele County,MN,Minnesota,Steele County MN,50,2,4,27,147,2-4-27-147,Midwest,West North Central +27149,Stevens County,MN,Minnesota,Stevens County MN,50,2,4,27,149,2-4-27-149,Midwest,West North Central +27151,Swift County,MN,Minnesota,Swift County MN,50,2,4,27,151,2-4-27-151,Midwest,West North Central +27153,Todd County,MN,Minnesota,Todd County MN,50,2,4,27,153,2-4-27-153,Midwest,West North Central +27155,Traverse County,MN,Minnesota,Traverse County MN,50,2,4,27,155,2-4-27-155,Midwest,West North Central +27157,Wabasha County,MN,Minnesota,Wabasha County MN,50,2,4,27,157,2-4-27-157,Midwest,West North Central +27159,Wadena County,MN,Minnesota,Wadena County MN,50,2,4,27,159,2-4-27-159,Midwest,West North Central +27161,Waseca County,MN,Minnesota,Waseca County MN,50,2,4,27,161,2-4-27-161,Midwest,West North Central +27163,Washington County,MN,Minnesota,Washington County MN,50,2,4,27,163,2-4-27-163,Midwest,West North Central +27165,Watonwan County,MN,Minnesota,Watonwan County MN,50,2,4,27,165,2-4-27-165,Midwest,West North Central +27167,Wilkin County,MN,Minnesota,Wilkin County MN,50,2,4,27,167,2-4-27-167,Midwest,West North Central +27169,Winona County,MN,Minnesota,Winona County MN,50,2,4,27,169,2-4-27-169,Midwest,West North Central +27171,Wright County,MN,Minnesota,Wright County MN,50,2,4,27,171,2-4-27-171,Midwest,West North Central +27173,Yellow Medicine County,MN,Minnesota,Yellow Medicine County MN,50,2,4,27,173,2-4-27-173,Midwest,West North Central +28001,Adams County,MS,Mississippi,Adams County MS,50,3,6,28,1,3-6-28-1,South,East South Central +28003,Alcorn County,MS,Mississippi,Alcorn County MS,50,3,6,28,3,3-6-28-3,South,East South Central +28005,Amite County,MS,Mississippi,Amite County MS,50,3,6,28,5,3-6-28-5,South,East South Central +28007,Attala County,MS,Mississippi,Attala County MS,50,3,6,28,7,3-6-28-7,South,East South Central +28009,Benton County,MS,Mississippi,Benton County MS,50,3,6,28,9,3-6-28-9,South,East South Central +28011,Bolivar County,MS,Mississippi,Bolivar County MS,50,3,6,28,11,3-6-28-11,South,East South Central +28013,Calhoun County,MS,Mississippi,Calhoun County MS,50,3,6,28,13,3-6-28-13,South,East South Central +28015,Carroll County,MS,Mississippi,Carroll County MS,50,3,6,28,15,3-6-28-15,South,East South Central +28017,Chickasaw County,MS,Mississippi,Chickasaw County MS,50,3,6,28,17,3-6-28-17,South,East South Central +28019,Choctaw County,MS,Mississippi,Choctaw County MS,50,3,6,28,19,3-6-28-19,South,East South Central +28021,Claiborne County,MS,Mississippi,Claiborne County MS,50,3,6,28,21,3-6-28-21,South,East South Central +28023,Clarke County,MS,Mississippi,Clarke County MS,50,3,6,28,23,3-6-28-23,South,East South Central +28025,Clay County,MS,Mississippi,Clay County MS,50,3,6,28,25,3-6-28-25,South,East South Central +28027,Coahoma County,MS,Mississippi,Coahoma County MS,50,3,6,28,27,3-6-28-27,South,East South Central +28029,Copiah County,MS,Mississippi,Copiah County MS,50,3,6,28,29,3-6-28-29,South,East South Central +28031,Covington County,MS,Mississippi,Covington County MS,50,3,6,28,31,3-6-28-31,South,East South Central +28033,DeSoto County,MS,Mississippi,DeSoto County MS,50,3,6,28,33,3-6-28-33,South,East South Central +28035,Forrest County,MS,Mississippi,Forrest County MS,50,3,6,28,35,3-6-28-35,South,East South Central +28037,Franklin County,MS,Mississippi,Franklin County MS,50,3,6,28,37,3-6-28-37,South,East South Central +28039,George County,MS,Mississippi,George County MS,50,3,6,28,39,3-6-28-39,South,East South Central +28041,Greene County,MS,Mississippi,Greene County MS,50,3,6,28,41,3-6-28-41,South,East South Central +28043,Grenada County,MS,Mississippi,Grenada County MS,50,3,6,28,43,3-6-28-43,South,East South Central +28045,Hancock County,MS,Mississippi,Hancock County MS,50,3,6,28,45,3-6-28-45,South,East South Central +28047,Harrison County,MS,Mississippi,Harrison County MS,50,3,6,28,47,3-6-28-47,South,East South Central +28049,Hinds County,MS,Mississippi,Hinds County MS,50,3,6,28,49,3-6-28-49,South,East South Central +28051,Holmes County,MS,Mississippi,Holmes County MS,50,3,6,28,51,3-6-28-51,South,East South Central +28053,Humphreys County,MS,Mississippi,Humphreys County MS,50,3,6,28,53,3-6-28-53,South,East South Central +28055,Issaquena County,MS,Mississippi,Issaquena County MS,50,3,6,28,55,3-6-28-55,South,East South Central +28057,Itawamba County,MS,Mississippi,Itawamba County MS,50,3,6,28,57,3-6-28-57,South,East South Central +28059,Jackson County,MS,Mississippi,Jackson County MS,50,3,6,28,59,3-6-28-59,South,East South Central +28061,Jasper County,MS,Mississippi,Jasper County MS,50,3,6,28,61,3-6-28-61,South,East South Central +28063,Jefferson County,MS,Mississippi,Jefferson County MS,50,3,6,28,63,3-6-28-63,South,East South Central +28065,Jefferson Davis County,MS,Mississippi,Jefferson Davis County MS,50,3,6,28,65,3-6-28-65,South,East South Central +28067,Jones County,MS,Mississippi,Jones County MS,50,3,6,28,67,3-6-28-67,South,East South Central +28069,Kemper County,MS,Mississippi,Kemper County MS,50,3,6,28,69,3-6-28-69,South,East South Central +28071,Lafayette County,MS,Mississippi,Lafayette County MS,50,3,6,28,71,3-6-28-71,South,East South Central +28073,Lamar County,MS,Mississippi,Lamar County MS,50,3,6,28,73,3-6-28-73,South,East South Central +28075,Lauderdale County,MS,Mississippi,Lauderdale County MS,50,3,6,28,75,3-6-28-75,South,East South Central +28077,Lawrence County,MS,Mississippi,Lawrence County MS,50,3,6,28,77,3-6-28-77,South,East South Central +28079,Leake County,MS,Mississippi,Leake County MS,50,3,6,28,79,3-6-28-79,South,East South Central +28081,Lee County,MS,Mississippi,Lee County MS,50,3,6,28,81,3-6-28-81,South,East South Central +28083,Leflore County,MS,Mississippi,Leflore County MS,50,3,6,28,83,3-6-28-83,South,East South Central +28085,Lincoln County,MS,Mississippi,Lincoln County MS,50,3,6,28,85,3-6-28-85,South,East South Central +28087,Lowndes County,MS,Mississippi,Lowndes County MS,50,3,6,28,87,3-6-28-87,South,East South Central +28089,Madison County,MS,Mississippi,Madison County MS,50,3,6,28,89,3-6-28-89,South,East South Central +28091,Marion County,MS,Mississippi,Marion County MS,50,3,6,28,91,3-6-28-91,South,East South Central +28093,Marshall County,MS,Mississippi,Marshall County MS,50,3,6,28,93,3-6-28-93,South,East South Central +28095,Monroe County,MS,Mississippi,Monroe County MS,50,3,6,28,95,3-6-28-95,South,East South Central +28097,Montgomery County,MS,Mississippi,Montgomery County MS,50,3,6,28,97,3-6-28-97,South,East South Central +28099,Neshoba County,MS,Mississippi,Neshoba County MS,50,3,6,28,99,3-6-28-99,South,East South Central +28101,Newton County,MS,Mississippi,Newton County MS,50,3,6,28,101,3-6-28-101,South,East South Central +28103,Noxubee County,MS,Mississippi,Noxubee County MS,50,3,6,28,103,3-6-28-103,South,East South Central +28105,Oktibbeha County,MS,Mississippi,Oktibbeha County MS,50,3,6,28,105,3-6-28-105,South,East South Central +28107,Panola County,MS,Mississippi,Panola County MS,50,3,6,28,107,3-6-28-107,South,East South Central +28109,Pearl River County,MS,Mississippi,Pearl River County MS,50,3,6,28,109,3-6-28-109,South,East South Central +28111,Perry County,MS,Mississippi,Perry County MS,50,3,6,28,111,3-6-28-111,South,East South Central +28113,Pike County,MS,Mississippi,Pike County MS,50,3,6,28,113,3-6-28-113,South,East South Central +28115,Pontotoc County,MS,Mississippi,Pontotoc County MS,50,3,6,28,115,3-6-28-115,South,East South Central +28117,Prentiss County,MS,Mississippi,Prentiss County MS,50,3,6,28,117,3-6-28-117,South,East South Central +28119,Quitman County,MS,Mississippi,Quitman County MS,50,3,6,28,119,3-6-28-119,South,East South Central +28121,Rankin County,MS,Mississippi,Rankin County MS,50,3,6,28,121,3-6-28-121,South,East South Central +28123,Scott County,MS,Mississippi,Scott County MS,50,3,6,28,123,3-6-28-123,South,East South Central +28125,Sharkey County,MS,Mississippi,Sharkey County MS,50,3,6,28,125,3-6-28-125,South,East South Central +28127,Simpson County,MS,Mississippi,Simpson County MS,50,3,6,28,127,3-6-28-127,South,East South Central +28129,Smith County,MS,Mississippi,Smith County MS,50,3,6,28,129,3-6-28-129,South,East South Central +28131,Stone County,MS,Mississippi,Stone County MS,50,3,6,28,131,3-6-28-131,South,East South Central +28133,Sunflower County,MS,Mississippi,Sunflower County MS,50,3,6,28,133,3-6-28-133,South,East South Central +28135,Tallahatchie County,MS,Mississippi,Tallahatchie County MS,50,3,6,28,135,3-6-28-135,South,East South Central +28137,Tate County,MS,Mississippi,Tate County MS,50,3,6,28,137,3-6-28-137,South,East South Central +28139,Tippah County,MS,Mississippi,Tippah County MS,50,3,6,28,139,3-6-28-139,South,East South Central +28141,Tishomingo County,MS,Mississippi,Tishomingo County MS,50,3,6,28,141,3-6-28-141,South,East South Central +28143,Tunica County,MS,Mississippi,Tunica County MS,50,3,6,28,143,3-6-28-143,South,East South Central +28145,Union County,MS,Mississippi,Union County MS,50,3,6,28,145,3-6-28-145,South,East South Central +28147,Walthall County,MS,Mississippi,Walthall County MS,50,3,6,28,147,3-6-28-147,South,East South Central +28149,Warren County,MS,Mississippi,Warren County MS,50,3,6,28,149,3-6-28-149,South,East South Central +28151,Washington County,MS,Mississippi,Washington County MS,50,3,6,28,151,3-6-28-151,South,East South Central +28153,Wayne County,MS,Mississippi,Wayne County MS,50,3,6,28,153,3-6-28-153,South,East South Central +28155,Webster County,MS,Mississippi,Webster County MS,50,3,6,28,155,3-6-28-155,South,East South Central +28157,Wilkinson County,MS,Mississippi,Wilkinson County MS,50,3,6,28,157,3-6-28-157,South,East South Central +28159,Winston County,MS,Mississippi,Winston County MS,50,3,6,28,159,3-6-28-159,South,East South Central +28161,Yalobusha County,MS,Mississippi,Yalobusha County MS,50,3,6,28,161,3-6-28-161,South,East South Central +28163,Yazoo County,MS,Mississippi,Yazoo County MS,50,3,6,28,163,3-6-28-163,South,East South Central +29001,Adair County,MO,Missouri,Adair County MO,50,2,4,29,1,2-4-29-1,Midwest,West North Central +29003,Andrew County,MO,Missouri,Andrew County MO,50,2,4,29,3,2-4-29-3,Midwest,West North Central +29005,Atchison County,MO,Missouri,Atchison County MO,50,2,4,29,5,2-4-29-5,Midwest,West North Central +29007,Audrain County,MO,Missouri,Audrain County MO,50,2,4,29,7,2-4-29-7,Midwest,West North Central +29009,Barry County,MO,Missouri,Barry County MO,50,2,4,29,9,2-4-29-9,Midwest,West North Central +29011,Barton County,MO,Missouri,Barton County MO,50,2,4,29,11,2-4-29-11,Midwest,West North Central +29013,Bates County,MO,Missouri,Bates County MO,50,2,4,29,13,2-4-29-13,Midwest,West North Central +29015,Benton County,MO,Missouri,Benton County MO,50,2,4,29,15,2-4-29-15,Midwest,West North Central +29017,Bollinger County,MO,Missouri,Bollinger County MO,50,2,4,29,17,2-4-29-17,Midwest,West North Central +29019,Boone County,MO,Missouri,Boone County MO,50,2,4,29,19,2-4-29-19,Midwest,West North Central +29021,Buchanan County,MO,Missouri,Buchanan County MO,50,2,4,29,21,2-4-29-21,Midwest,West North Central +29023,Butler County,MO,Missouri,Butler County MO,50,2,4,29,23,2-4-29-23,Midwest,West North Central +29025,Caldwell County,MO,Missouri,Caldwell County MO,50,2,4,29,25,2-4-29-25,Midwest,West North Central +29027,Callaway County,MO,Missouri,Callaway County MO,50,2,4,29,27,2-4-29-27,Midwest,West North Central +29029,Camden County,MO,Missouri,Camden County MO,50,2,4,29,29,2-4-29-29,Midwest,West North Central +29031,Cape Girardeau County,MO,Missouri,Cape Girardeau County MO,50,2,4,29,31,2-4-29-31,Midwest,West North Central +29033,Carroll County,MO,Missouri,Carroll County MO,50,2,4,29,33,2-4-29-33,Midwest,West North Central +29035,Carter County,MO,Missouri,Carter County MO,50,2,4,29,35,2-4-29-35,Midwest,West North Central +29037,Cass County,MO,Missouri,Cass County MO,50,2,4,29,37,2-4-29-37,Midwest,West North Central +29039,Cedar County,MO,Missouri,Cedar County MO,50,2,4,29,39,2-4-29-39,Midwest,West North Central +29041,Chariton County,MO,Missouri,Chariton County MO,50,2,4,29,41,2-4-29-41,Midwest,West North Central +29043,Christian County,MO,Missouri,Christian County MO,50,2,4,29,43,2-4-29-43,Midwest,West North Central +29045,Clark County,MO,Missouri,Clark County MO,50,2,4,29,45,2-4-29-45,Midwest,West North Central +29047,Clay County,MO,Missouri,Clay County MO,50,2,4,29,47,2-4-29-47,Midwest,West North Central +29049,Clinton County,MO,Missouri,Clinton County MO,50,2,4,29,49,2-4-29-49,Midwest,West North Central +29051,Cole County,MO,Missouri,Cole County MO,50,2,4,29,51,2-4-29-51,Midwest,West North Central +29053,Cooper County,MO,Missouri,Cooper County MO,50,2,4,29,53,2-4-29-53,Midwest,West North Central +29055,Crawford County,MO,Missouri,Crawford County MO,50,2,4,29,55,2-4-29-55,Midwest,West North Central +29057,Dade County,MO,Missouri,Dade County MO,50,2,4,29,57,2-4-29-57,Midwest,West North Central +29059,Dallas County,MO,Missouri,Dallas County MO,50,2,4,29,59,2-4-29-59,Midwest,West North Central +29061,Daviess County,MO,Missouri,Daviess County MO,50,2,4,29,61,2-4-29-61,Midwest,West North Central +29063,DeKalb County,MO,Missouri,DeKalb County MO,50,2,4,29,63,2-4-29-63,Midwest,West North Central +29065,Dent County,MO,Missouri,Dent County MO,50,2,4,29,65,2-4-29-65,Midwest,West North Central +29067,Douglas County,MO,Missouri,Douglas County MO,50,2,4,29,67,2-4-29-67,Midwest,West North Central +29069,Dunklin County,MO,Missouri,Dunklin County MO,50,2,4,29,69,2-4-29-69,Midwest,West North Central +29071,Franklin County,MO,Missouri,Franklin County MO,50,2,4,29,71,2-4-29-71,Midwest,West North Central +29073,Gasconade County,MO,Missouri,Gasconade County MO,50,2,4,29,73,2-4-29-73,Midwest,West North Central +29075,Gentry County,MO,Missouri,Gentry County MO,50,2,4,29,75,2-4-29-75,Midwest,West North Central +29077,Greene County,MO,Missouri,Greene County MO,50,2,4,29,77,2-4-29-77,Midwest,West North Central +29079,Grundy County,MO,Missouri,Grundy County MO,50,2,4,29,79,2-4-29-79,Midwest,West North Central +29081,Harrison County,MO,Missouri,Harrison County MO,50,2,4,29,81,2-4-29-81,Midwest,West North Central +29083,Henry County,MO,Missouri,Henry County MO,50,2,4,29,83,2-4-29-83,Midwest,West North Central +29085,Hickory County,MO,Missouri,Hickory County MO,50,2,4,29,85,2-4-29-85,Midwest,West North Central +29087,Holt County,MO,Missouri,Holt County MO,50,2,4,29,87,2-4-29-87,Midwest,West North Central +29089,Howard County,MO,Missouri,Howard County MO,50,2,4,29,89,2-4-29-89,Midwest,West North Central +29091,Howell County,MO,Missouri,Howell County MO,50,2,4,29,91,2-4-29-91,Midwest,West North Central +29093,Iron County,MO,Missouri,Iron County MO,50,2,4,29,93,2-4-29-93,Midwest,West North Central +29095,Jackson County,MO,Missouri,Jackson County MO,50,2,4,29,95,2-4-29-95,Midwest,West North Central +29097,Jasper County,MO,Missouri,Jasper County MO,50,2,4,29,97,2-4-29-97,Midwest,West North Central +29099,Jefferson County,MO,Missouri,Jefferson County MO,50,2,4,29,99,2-4-29-99,Midwest,West North Central +29101,Johnson County,MO,Missouri,Johnson County MO,50,2,4,29,101,2-4-29-101,Midwest,West North Central +29103,Knox County,MO,Missouri,Knox County MO,50,2,4,29,103,2-4-29-103,Midwest,West North Central +29105,Laclede County,MO,Missouri,Laclede County MO,50,2,4,29,105,2-4-29-105,Midwest,West North Central +29107,Lafayette County,MO,Missouri,Lafayette County MO,50,2,4,29,107,2-4-29-107,Midwest,West North Central +29109,Lawrence County,MO,Missouri,Lawrence County MO,50,2,4,29,109,2-4-29-109,Midwest,West North Central +29111,Lewis County,MO,Missouri,Lewis County MO,50,2,4,29,111,2-4-29-111,Midwest,West North Central +29113,Lincoln County,MO,Missouri,Lincoln County MO,50,2,4,29,113,2-4-29-113,Midwest,West North Central +29115,Linn County,MO,Missouri,Linn County MO,50,2,4,29,115,2-4-29-115,Midwest,West North Central +29117,Livingston County,MO,Missouri,Livingston County MO,50,2,4,29,117,2-4-29-117,Midwest,West North Central +29119,McDonald County,MO,Missouri,McDonald County MO,50,2,4,29,119,2-4-29-119,Midwest,West North Central +29121,Macon County,MO,Missouri,Macon County MO,50,2,4,29,121,2-4-29-121,Midwest,West North Central +29123,Madison County,MO,Missouri,Madison County MO,50,2,4,29,123,2-4-29-123,Midwest,West North Central +29125,Maries County,MO,Missouri,Maries County MO,50,2,4,29,125,2-4-29-125,Midwest,West North Central +29127,Marion County,MO,Missouri,Marion County MO,50,2,4,29,127,2-4-29-127,Midwest,West North Central +29129,Mercer County,MO,Missouri,Mercer County MO,50,2,4,29,129,2-4-29-129,Midwest,West North Central +29131,Miller County,MO,Missouri,Miller County MO,50,2,4,29,131,2-4-29-131,Midwest,West North Central +29133,Mississippi County,MO,Missouri,Mississippi County MO,50,2,4,29,133,2-4-29-133,Midwest,West North Central +29135,Moniteau County,MO,Missouri,Moniteau County MO,50,2,4,29,135,2-4-29-135,Midwest,West North Central +29137,Monroe County,MO,Missouri,Monroe County MO,50,2,4,29,137,2-4-29-137,Midwest,West North Central +29139,Montgomery County,MO,Missouri,Montgomery County MO,50,2,4,29,139,2-4-29-139,Midwest,West North Central +29141,Morgan County,MO,Missouri,Morgan County MO,50,2,4,29,141,2-4-29-141,Midwest,West North Central +29143,New Madrid County,MO,Missouri,New Madrid County MO,50,2,4,29,143,2-4-29-143,Midwest,West North Central +29145,Newton County,MO,Missouri,Newton County MO,50,2,4,29,145,2-4-29-145,Midwest,West North Central +29147,Nodaway County,MO,Missouri,Nodaway County MO,50,2,4,29,147,2-4-29-147,Midwest,West North Central +29149,Oregon County,MO,Missouri,Oregon County MO,50,2,4,29,149,2-4-29-149,Midwest,West North Central +29151,Osage County,MO,Missouri,Osage County MO,50,2,4,29,151,2-4-29-151,Midwest,West North Central +29153,Ozark County,MO,Missouri,Ozark County MO,50,2,4,29,153,2-4-29-153,Midwest,West North Central +29155,Pemiscot County,MO,Missouri,Pemiscot County MO,50,2,4,29,155,2-4-29-155,Midwest,West North Central +29157,Perry County,MO,Missouri,Perry County MO,50,2,4,29,157,2-4-29-157,Midwest,West North Central +29159,Pettis County,MO,Missouri,Pettis County MO,50,2,4,29,159,2-4-29-159,Midwest,West North Central +29161,Phelps County,MO,Missouri,Phelps County MO,50,2,4,29,161,2-4-29-161,Midwest,West North Central +29163,Pike County,MO,Missouri,Pike County MO,50,2,4,29,163,2-4-29-163,Midwest,West North Central +29165,Platte County,MO,Missouri,Platte County MO,50,2,4,29,165,2-4-29-165,Midwest,West North Central +29167,Polk County,MO,Missouri,Polk County MO,50,2,4,29,167,2-4-29-167,Midwest,West North Central +29169,Pulaski County,MO,Missouri,Pulaski County MO,50,2,4,29,169,2-4-29-169,Midwest,West North Central +29171,Putnam County,MO,Missouri,Putnam County MO,50,2,4,29,171,2-4-29-171,Midwest,West North Central +29173,Ralls County,MO,Missouri,Ralls County MO,50,2,4,29,173,2-4-29-173,Midwest,West North Central +29175,Randolph County,MO,Missouri,Randolph County MO,50,2,4,29,175,2-4-29-175,Midwest,West North Central +29177,Ray County,MO,Missouri,Ray County MO,50,2,4,29,177,2-4-29-177,Midwest,West North Central +29179,Reynolds County,MO,Missouri,Reynolds County MO,50,2,4,29,179,2-4-29-179,Midwest,West North Central +29181,Ripley County,MO,Missouri,Ripley County MO,50,2,4,29,181,2-4-29-181,Midwest,West North Central +29183,St. Charles County,MO,Missouri,St. Charles County MO,50,2,4,29,183,2-4-29-183,Midwest,West North Central +29185,St. Clair County,MO,Missouri,St. Clair County MO,50,2,4,29,185,2-4-29-185,Midwest,West North Central +29186,Ste. Genevieve County,MO,Missouri,Ste. Genevieve County MO,50,2,4,29,186,2-4-29-186,Midwest,West North Central +29187,St. Francois County,MO,Missouri,St. Francois County MO,50,2,4,29,187,2-4-29-187,Midwest,West North Central +29189,St. Louis County,MO,Missouri,St. Louis County MO,50,2,4,29,189,2-4-29-189,Midwest,West North Central +29195,Saline County,MO,Missouri,Saline County MO,50,2,4,29,195,2-4-29-195,Midwest,West North Central +29197,Schuyler County,MO,Missouri,Schuyler County MO,50,2,4,29,197,2-4-29-197,Midwest,West North Central +29199,Scotland County,MO,Missouri,Scotland County MO,50,2,4,29,199,2-4-29-199,Midwest,West North Central +29201,Scott County,MO,Missouri,Scott County MO,50,2,4,29,201,2-4-29-201,Midwest,West North Central +29203,Shannon County,MO,Missouri,Shannon County MO,50,2,4,29,203,2-4-29-203,Midwest,West North Central +29205,Shelby County,MO,Missouri,Shelby County MO,50,2,4,29,205,2-4-29-205,Midwest,West North Central +29207,Stoddard County,MO,Missouri,Stoddard County MO,50,2,4,29,207,2-4-29-207,Midwest,West North Central +29209,Stone County,MO,Missouri,Stone County MO,50,2,4,29,209,2-4-29-209,Midwest,West North Central +29211,Sullivan County,MO,Missouri,Sullivan County MO,50,2,4,29,211,2-4-29-211,Midwest,West North Central +29213,Taney County,MO,Missouri,Taney County MO,50,2,4,29,213,2-4-29-213,Midwest,West North Central +29215,Texas County,MO,Missouri,Texas County MO,50,2,4,29,215,2-4-29-215,Midwest,West North Central +29217,Vernon County,MO,Missouri,Vernon County MO,50,2,4,29,217,2-4-29-217,Midwest,West North Central +29219,Warren County,MO,Missouri,Warren County MO,50,2,4,29,219,2-4-29-219,Midwest,West North Central +29221,Washington County,MO,Missouri,Washington County MO,50,2,4,29,221,2-4-29-221,Midwest,West North Central +29223,Wayne County,MO,Missouri,Wayne County MO,50,2,4,29,223,2-4-29-223,Midwest,West North Central +29225,Webster County,MO,Missouri,Webster County MO,50,2,4,29,225,2-4-29-225,Midwest,West North Central +29227,Worth County,MO,Missouri,Worth County MO,50,2,4,29,227,2-4-29-227,Midwest,West North Central +29229,Wright County,MO,Missouri,Wright County MO,50,2,4,29,229,2-4-29-229,Midwest,West North Central +29510,St. Louis city,MO,Missouri,St. Louis city MO,50,2,4,29,510,2-4-29-510,Midwest,West North Central +30001,Beaverhead County,MT,Montana,Beaverhead County MT,50,4,8,30,1,4-8-30-1,West,Mountain +30003,Big Horn County,MT,Montana,Big Horn County MT,50,4,8,30,3,4-8-30-3,West,Mountain +30005,Blaine County,MT,Montana,Blaine County MT,50,4,8,30,5,4-8-30-5,West,Mountain +30007,Broadwater County,MT,Montana,Broadwater County MT,50,4,8,30,7,4-8-30-7,West,Mountain +30009,Carbon County,MT,Montana,Carbon County MT,50,4,8,30,9,4-8-30-9,West,Mountain +30011,Carter County,MT,Montana,Carter County MT,50,4,8,30,11,4-8-30-11,West,Mountain +30013,Cascade County,MT,Montana,Cascade County MT,50,4,8,30,13,4-8-30-13,West,Mountain +30015,Chouteau County,MT,Montana,Chouteau County MT,50,4,8,30,15,4-8-30-15,West,Mountain +30017,Custer County,MT,Montana,Custer County MT,50,4,8,30,17,4-8-30-17,West,Mountain +30019,Daniels County,MT,Montana,Daniels County MT,50,4,8,30,19,4-8-30-19,West,Mountain +30021,Dawson County,MT,Montana,Dawson County MT,50,4,8,30,21,4-8-30-21,West,Mountain +30023,Deer Lodge County,MT,Montana,Deer Lodge County MT,50,4,8,30,23,4-8-30-23,West,Mountain +30025,Fallon County,MT,Montana,Fallon County MT,50,4,8,30,25,4-8-30-25,West,Mountain +30027,Fergus County,MT,Montana,Fergus County MT,50,4,8,30,27,4-8-30-27,West,Mountain +30029,Flathead County,MT,Montana,Flathead County MT,50,4,8,30,29,4-8-30-29,West,Mountain +30031,Gallatin County,MT,Montana,Gallatin County MT,50,4,8,30,31,4-8-30-31,West,Mountain +30033,Garfield County,MT,Montana,Garfield County MT,50,4,8,30,33,4-8-30-33,West,Mountain +30035,Glacier County,MT,Montana,Glacier County MT,50,4,8,30,35,4-8-30-35,West,Mountain +30037,Golden Valley County,MT,Montana,Golden Valley County MT,50,4,8,30,37,4-8-30-37,West,Mountain +30039,Granite County,MT,Montana,Granite County MT,50,4,8,30,39,4-8-30-39,West,Mountain +30041,Hill County,MT,Montana,Hill County MT,50,4,8,30,41,4-8-30-41,West,Mountain +30043,Jefferson County,MT,Montana,Jefferson County MT,50,4,8,30,43,4-8-30-43,West,Mountain +30045,Judith Basin County,MT,Montana,Judith Basin County MT,50,4,8,30,45,4-8-30-45,West,Mountain +30047,Lake County,MT,Montana,Lake County MT,50,4,8,30,47,4-8-30-47,West,Mountain +30049,Lewis and Clark County,MT,Montana,Lewis and Clark County MT,50,4,8,30,49,4-8-30-49,West,Mountain +30051,Liberty County,MT,Montana,Liberty County MT,50,4,8,30,51,4-8-30-51,West,Mountain +30053,Lincoln County,MT,Montana,Lincoln County MT,50,4,8,30,53,4-8-30-53,West,Mountain +30055,McCone County,MT,Montana,McCone County MT,50,4,8,30,55,4-8-30-55,West,Mountain +30057,Madison County,MT,Montana,Madison County MT,50,4,8,30,57,4-8-30-57,West,Mountain +30059,Meagher County,MT,Montana,Meagher County MT,50,4,8,30,59,4-8-30-59,West,Mountain +30061,Mineral County,MT,Montana,Mineral County MT,50,4,8,30,61,4-8-30-61,West,Mountain +30063,Missoula County,MT,Montana,Missoula County MT,50,4,8,30,63,4-8-30-63,West,Mountain +30065,Musselshell County,MT,Montana,Musselshell County MT,50,4,8,30,65,4-8-30-65,West,Mountain +30067,Park County,MT,Montana,Park County MT,50,4,8,30,67,4-8-30-67,West,Mountain +30069,Petroleum County,MT,Montana,Petroleum County MT,50,4,8,30,69,4-8-30-69,West,Mountain +30071,Phillips County,MT,Montana,Phillips County MT,50,4,8,30,71,4-8-30-71,West,Mountain +30073,Pondera County,MT,Montana,Pondera County MT,50,4,8,30,73,4-8-30-73,West,Mountain +30075,Powder River County,MT,Montana,Powder River County MT,50,4,8,30,75,4-8-30-75,West,Mountain +30077,Powell County,MT,Montana,Powell County MT,50,4,8,30,77,4-8-30-77,West,Mountain +30079,Prairie County,MT,Montana,Prairie County MT,50,4,8,30,79,4-8-30-79,West,Mountain +30081,Ravalli County,MT,Montana,Ravalli County MT,50,4,8,30,81,4-8-30-81,West,Mountain +30083,Richland County,MT,Montana,Richland County MT,50,4,8,30,83,4-8-30-83,West,Mountain +30085,Roosevelt County,MT,Montana,Roosevelt County MT,50,4,8,30,85,4-8-30-85,West,Mountain +30087,Rosebud County,MT,Montana,Rosebud County MT,50,4,8,30,87,4-8-30-87,West,Mountain +30089,Sanders County,MT,Montana,Sanders County MT,50,4,8,30,89,4-8-30-89,West,Mountain +30091,Sheridan County,MT,Montana,Sheridan County MT,50,4,8,30,91,4-8-30-91,West,Mountain +30093,Silver Bow County,MT,Montana,Silver Bow County MT,50,4,8,30,93,4-8-30-93,West,Mountain +30095,Stillwater County,MT,Montana,Stillwater County MT,50,4,8,30,95,4-8-30-95,West,Mountain +30097,Sweet Grass County,MT,Montana,Sweet Grass County MT,50,4,8,30,97,4-8-30-97,West,Mountain +30099,Teton County,MT,Montana,Teton County MT,50,4,8,30,99,4-8-30-99,West,Mountain +30101,Toole County,MT,Montana,Toole County MT,50,4,8,30,101,4-8-30-101,West,Mountain +30103,Treasure County,MT,Montana,Treasure County MT,50,4,8,30,103,4-8-30-103,West,Mountain +30105,Valley County,MT,Montana,Valley County MT,50,4,8,30,105,4-8-30-105,West,Mountain +30107,Wheatland County,MT,Montana,Wheatland County MT,50,4,8,30,107,4-8-30-107,West,Mountain +30109,Wibaux County,MT,Montana,Wibaux County MT,50,4,8,30,109,4-8-30-109,West,Mountain +30111,Yellowstone County,MT,Montana,Yellowstone County MT,50,4,8,30,111,4-8-30-111,West,Mountain +31001,Adams County,NE,Nebraska,Adams County NE,50,2,4,31,1,2-4-31-1,Midwest,West North Central +31003,Antelope County,NE,Nebraska,Antelope County NE,50,2,4,31,3,2-4-31-3,Midwest,West North Central +31005,Arthur County,NE,Nebraska,Arthur County NE,50,2,4,31,5,2-4-31-5,Midwest,West North Central +31007,Banner County,NE,Nebraska,Banner County NE,50,2,4,31,7,2-4-31-7,Midwest,West North Central +31009,Blaine County,NE,Nebraska,Blaine County NE,50,2,4,31,9,2-4-31-9,Midwest,West North Central +31011,Boone County,NE,Nebraska,Boone County NE,50,2,4,31,11,2-4-31-11,Midwest,West North Central +31013,Box Butte County,NE,Nebraska,Box Butte County NE,50,2,4,31,13,2-4-31-13,Midwest,West North Central +31015,Boyd County,NE,Nebraska,Boyd County NE,50,2,4,31,15,2-4-31-15,Midwest,West North Central +31017,Brown County,NE,Nebraska,Brown County NE,50,2,4,31,17,2-4-31-17,Midwest,West North Central +31019,Buffalo County,NE,Nebraska,Buffalo County NE,50,2,4,31,19,2-4-31-19,Midwest,West North Central +31021,Burt County,NE,Nebraska,Burt County NE,50,2,4,31,21,2-4-31-21,Midwest,West North Central +31023,Butler County,NE,Nebraska,Butler County NE,50,2,4,31,23,2-4-31-23,Midwest,West North Central +31025,Cass County,NE,Nebraska,Cass County NE,50,2,4,31,25,2-4-31-25,Midwest,West North Central +31027,Cedar County,NE,Nebraska,Cedar County NE,50,2,4,31,27,2-4-31-27,Midwest,West North Central +31029,Chase County,NE,Nebraska,Chase County NE,50,2,4,31,29,2-4-31-29,Midwest,West North Central +31031,Cherry County,NE,Nebraska,Cherry County NE,50,2,4,31,31,2-4-31-31,Midwest,West North Central +31033,Cheyenne County,NE,Nebraska,Cheyenne County NE,50,2,4,31,33,2-4-31-33,Midwest,West North Central +31035,Clay County,NE,Nebraska,Clay County NE,50,2,4,31,35,2-4-31-35,Midwest,West North Central +31037,Colfax County,NE,Nebraska,Colfax County NE,50,2,4,31,37,2-4-31-37,Midwest,West North Central +31039,Cuming County,NE,Nebraska,Cuming County NE,50,2,4,31,39,2-4-31-39,Midwest,West North Central +31041,Custer County,NE,Nebraska,Custer County NE,50,2,4,31,41,2-4-31-41,Midwest,West North Central +31043,Dakota County,NE,Nebraska,Dakota County NE,50,2,4,31,43,2-4-31-43,Midwest,West North Central +31045,Dawes County,NE,Nebraska,Dawes County NE,50,2,4,31,45,2-4-31-45,Midwest,West North Central +31047,Dawson County,NE,Nebraska,Dawson County NE,50,2,4,31,47,2-4-31-47,Midwest,West North Central +31049,Deuel County,NE,Nebraska,Deuel County NE,50,2,4,31,49,2-4-31-49,Midwest,West North Central +31051,Dixon County,NE,Nebraska,Dixon County NE,50,2,4,31,51,2-4-31-51,Midwest,West North Central +31053,Dodge County,NE,Nebraska,Dodge County NE,50,2,4,31,53,2-4-31-53,Midwest,West North Central +31055,Douglas County,NE,Nebraska,Douglas County NE,50,2,4,31,55,2-4-31-55,Midwest,West North Central +31057,Dundy County,NE,Nebraska,Dundy County NE,50,2,4,31,57,2-4-31-57,Midwest,West North Central +31059,Fillmore County,NE,Nebraska,Fillmore County NE,50,2,4,31,59,2-4-31-59,Midwest,West North Central +31061,Franklin County,NE,Nebraska,Franklin County NE,50,2,4,31,61,2-4-31-61,Midwest,West North Central +31063,Frontier County,NE,Nebraska,Frontier County NE,50,2,4,31,63,2-4-31-63,Midwest,West North Central +31065,Furnas County,NE,Nebraska,Furnas County NE,50,2,4,31,65,2-4-31-65,Midwest,West North Central +31067,Gage County,NE,Nebraska,Gage County NE,50,2,4,31,67,2-4-31-67,Midwest,West North Central +31069,Garden County,NE,Nebraska,Garden County NE,50,2,4,31,69,2-4-31-69,Midwest,West North Central +31071,Garfield County,NE,Nebraska,Garfield County NE,50,2,4,31,71,2-4-31-71,Midwest,West North Central +31073,Gosper County,NE,Nebraska,Gosper County NE,50,2,4,31,73,2-4-31-73,Midwest,West North Central +31075,Grant County,NE,Nebraska,Grant County NE,50,2,4,31,75,2-4-31-75,Midwest,West North Central +31077,Greeley County,NE,Nebraska,Greeley County NE,50,2,4,31,77,2-4-31-77,Midwest,West North Central +31079,Hall County,NE,Nebraska,Hall County NE,50,2,4,31,79,2-4-31-79,Midwest,West North Central +31081,Hamilton County,NE,Nebraska,Hamilton County NE,50,2,4,31,81,2-4-31-81,Midwest,West North Central +31083,Harlan County,NE,Nebraska,Harlan County NE,50,2,4,31,83,2-4-31-83,Midwest,West North Central +31085,Hayes County,NE,Nebraska,Hayes County NE,50,2,4,31,85,2-4-31-85,Midwest,West North Central +31087,Hitchcock County,NE,Nebraska,Hitchcock County NE,50,2,4,31,87,2-4-31-87,Midwest,West North Central +31089,Holt County,NE,Nebraska,Holt County NE,50,2,4,31,89,2-4-31-89,Midwest,West North Central +31091,Hooker County,NE,Nebraska,Hooker County NE,50,2,4,31,91,2-4-31-91,Midwest,West North Central +31093,Howard County,NE,Nebraska,Howard County NE,50,2,4,31,93,2-4-31-93,Midwest,West North Central +31095,Jefferson County,NE,Nebraska,Jefferson County NE,50,2,4,31,95,2-4-31-95,Midwest,West North Central +31097,Johnson County,NE,Nebraska,Johnson County NE,50,2,4,31,97,2-4-31-97,Midwest,West North Central +31099,Kearney County,NE,Nebraska,Kearney County NE,50,2,4,31,99,2-4-31-99,Midwest,West North Central +31101,Keith County,NE,Nebraska,Keith County NE,50,2,4,31,101,2-4-31-101,Midwest,West North Central +31103,Keya Paha County,NE,Nebraska,Keya Paha County NE,50,2,4,31,103,2-4-31-103,Midwest,West North Central +31105,Kimball County,NE,Nebraska,Kimball County NE,50,2,4,31,105,2-4-31-105,Midwest,West North Central +31107,Knox County,NE,Nebraska,Knox County NE,50,2,4,31,107,2-4-31-107,Midwest,West North Central +31109,Lancaster County,NE,Nebraska,Lancaster County NE,50,2,4,31,109,2-4-31-109,Midwest,West North Central +31111,Lincoln County,NE,Nebraska,Lincoln County NE,50,2,4,31,111,2-4-31-111,Midwest,West North Central +31113,Logan County,NE,Nebraska,Logan County NE,50,2,4,31,113,2-4-31-113,Midwest,West North Central +31115,Loup County,NE,Nebraska,Loup County NE,50,2,4,31,115,2-4-31-115,Midwest,West North Central +31117,McPherson County,NE,Nebraska,McPherson County NE,50,2,4,31,117,2-4-31-117,Midwest,West North Central +31119,Madison County,NE,Nebraska,Madison County NE,50,2,4,31,119,2-4-31-119,Midwest,West North Central +31121,Merrick County,NE,Nebraska,Merrick County NE,50,2,4,31,121,2-4-31-121,Midwest,West North Central +31123,Morrill County,NE,Nebraska,Morrill County NE,50,2,4,31,123,2-4-31-123,Midwest,West North Central +31125,Nance County,NE,Nebraska,Nance County NE,50,2,4,31,125,2-4-31-125,Midwest,West North Central +31127,Nemaha County,NE,Nebraska,Nemaha County NE,50,2,4,31,127,2-4-31-127,Midwest,West North Central +31129,Nuckolls County,NE,Nebraska,Nuckolls County NE,50,2,4,31,129,2-4-31-129,Midwest,West North Central +31131,Otoe County,NE,Nebraska,Otoe County NE,50,2,4,31,131,2-4-31-131,Midwest,West North Central +31133,Pawnee County,NE,Nebraska,Pawnee County NE,50,2,4,31,133,2-4-31-133,Midwest,West North Central +31135,Perkins County,NE,Nebraska,Perkins County NE,50,2,4,31,135,2-4-31-135,Midwest,West North Central +31137,Phelps County,NE,Nebraska,Phelps County NE,50,2,4,31,137,2-4-31-137,Midwest,West North Central +31139,Pierce County,NE,Nebraska,Pierce County NE,50,2,4,31,139,2-4-31-139,Midwest,West North Central +31141,Platte County,NE,Nebraska,Platte County NE,50,2,4,31,141,2-4-31-141,Midwest,West North Central +31143,Polk County,NE,Nebraska,Polk County NE,50,2,4,31,143,2-4-31-143,Midwest,West North Central +31145,Red Willow County,NE,Nebraska,Red Willow County NE,50,2,4,31,145,2-4-31-145,Midwest,West North Central +31147,Richardson County,NE,Nebraska,Richardson County NE,50,2,4,31,147,2-4-31-147,Midwest,West North Central +31149,Rock County,NE,Nebraska,Rock County NE,50,2,4,31,149,2-4-31-149,Midwest,West North Central +31151,Saline County,NE,Nebraska,Saline County NE,50,2,4,31,151,2-4-31-151,Midwest,West North Central +31153,Sarpy County,NE,Nebraska,Sarpy County NE,50,2,4,31,153,2-4-31-153,Midwest,West North Central +31155,Saunders County,NE,Nebraska,Saunders County NE,50,2,4,31,155,2-4-31-155,Midwest,West North Central +31157,Scotts Bluff County,NE,Nebraska,Scotts Bluff County NE,50,2,4,31,157,2-4-31-157,Midwest,West North Central +31159,Seward County,NE,Nebraska,Seward County NE,50,2,4,31,159,2-4-31-159,Midwest,West North Central +31161,Sheridan County,NE,Nebraska,Sheridan County NE,50,2,4,31,161,2-4-31-161,Midwest,West North Central +31163,Sherman County,NE,Nebraska,Sherman County NE,50,2,4,31,163,2-4-31-163,Midwest,West North Central +31165,Sioux County,NE,Nebraska,Sioux County NE,50,2,4,31,165,2-4-31-165,Midwest,West North Central +31167,Stanton County,NE,Nebraska,Stanton County NE,50,2,4,31,167,2-4-31-167,Midwest,West North Central +31169,Thayer County,NE,Nebraska,Thayer County NE,50,2,4,31,169,2-4-31-169,Midwest,West North Central +31171,Thomas County,NE,Nebraska,Thomas County NE,50,2,4,31,171,2-4-31-171,Midwest,West North Central +31173,Thurston County,NE,Nebraska,Thurston County NE,50,2,4,31,173,2-4-31-173,Midwest,West North Central +31175,Valley County,NE,Nebraska,Valley County NE,50,2,4,31,175,2-4-31-175,Midwest,West North Central +31177,Washington County,NE,Nebraska,Washington County NE,50,2,4,31,177,2-4-31-177,Midwest,West North Central +31179,Wayne County,NE,Nebraska,Wayne County NE,50,2,4,31,179,2-4-31-179,Midwest,West North Central +31181,Webster County,NE,Nebraska,Webster County NE,50,2,4,31,181,2-4-31-181,Midwest,West North Central +31183,Wheeler County,NE,Nebraska,Wheeler County NE,50,2,4,31,183,2-4-31-183,Midwest,West North Central +31185,York County,NE,Nebraska,York County NE,50,2,4,31,185,2-4-31-185,Midwest,West North Central +32001,Churchill County,NV,Nevada,Churchill County NV,50,4,8,32,1,4-8-32-1,West,Mountain +32003,Clark County,NV,Nevada,Clark County NV,50,4,8,32,3,4-8-32-3,West,Mountain +32005,Douglas County,NV,Nevada,Douglas County NV,50,4,8,32,5,4-8-32-5,West,Mountain +32007,Elko County,NV,Nevada,Elko County NV,50,4,8,32,7,4-8-32-7,West,Mountain +32009,Esmeralda County,NV,Nevada,Esmeralda County NV,50,4,8,32,9,4-8-32-9,West,Mountain +32011,Eureka County,NV,Nevada,Eureka County NV,50,4,8,32,11,4-8-32-11,West,Mountain +32013,Humboldt County,NV,Nevada,Humboldt County NV,50,4,8,32,13,4-8-32-13,West,Mountain +32015,Lander County,NV,Nevada,Lander County NV,50,4,8,32,15,4-8-32-15,West,Mountain +32017,Lincoln County,NV,Nevada,Lincoln County NV,50,4,8,32,17,4-8-32-17,West,Mountain +32019,Lyon County,NV,Nevada,Lyon County NV,50,4,8,32,19,4-8-32-19,West,Mountain +32021,Mineral County,NV,Nevada,Mineral County NV,50,4,8,32,21,4-8-32-21,West,Mountain +32023,Nye County,NV,Nevada,Nye County NV,50,4,8,32,23,4-8-32-23,West,Mountain +32027,Pershing County,NV,Nevada,Pershing County NV,50,4,8,32,27,4-8-32-27,West,Mountain +32029,Storey County,NV,Nevada,Storey County NV,50,4,8,32,29,4-8-32-29,West,Mountain +32031,Washoe County,NV,Nevada,Washoe County NV,50,4,8,32,31,4-8-32-31,West,Mountain +32033,White Pine County,NV,Nevada,White Pine County NV,50,4,8,32,33,4-8-32-33,West,Mountain +32510,Carson City,NV,Nevada,Carson City NV,50,4,8,32,510,4-8-32-510,West,Mountain +33001,Belknap County,NH,New Hampshire,Belknap County NH,50,1,1,33,1,1-1-33-1,Northeast,New England +33003,Carroll County,NH,New Hampshire,Carroll County NH,50,1,1,33,3,1-1-33-3,Northeast,New England +33005,Cheshire County,NH,New Hampshire,Cheshire County NH,50,1,1,33,5,1-1-33-5,Northeast,New England +33007,Coos County,NH,New Hampshire,Coos County NH,50,1,1,33,7,1-1-33-7,Northeast,New England +33009,Grafton County,NH,New Hampshire,Grafton County NH,50,1,1,33,9,1-1-33-9,Northeast,New England +33011,Hillsborough County,NH,New Hampshire,Hillsborough County NH,50,1,1,33,11,1-1-33-11,Northeast,New England +33013,Merrimack County,NH,New Hampshire,Merrimack County NH,50,1,1,33,13,1-1-33-13,Northeast,New England +33015,Rockingham County,NH,New Hampshire,Rockingham County NH,50,1,1,33,15,1-1-33-15,Northeast,New England +33017,Strafford County,NH,New Hampshire,Strafford County NH,50,1,1,33,17,1-1-33-17,Northeast,New England +33019,Sullivan County,NH,New Hampshire,Sullivan County NH,50,1,1,33,19,1-1-33-19,Northeast,New England +34001,Atlantic County,NJ,New Jersey,Atlantic County NJ,50,1,2,34,1,1-2-34-1,Northeast,Middle Atlantic +34003,Bergen County,NJ,New Jersey,Bergen County NJ,50,1,2,34,3,1-2-34-3,Northeast,Middle Atlantic +34005,Burlington County,NJ,New Jersey,Burlington County NJ,50,1,2,34,5,1-2-34-5,Northeast,Middle Atlantic +34007,Camden County,NJ,New Jersey,Camden County NJ,50,1,2,34,7,1-2-34-7,Northeast,Middle Atlantic +34009,Cape May County,NJ,New Jersey,Cape May County NJ,50,1,2,34,9,1-2-34-9,Northeast,Middle Atlantic +34011,Cumberland County,NJ,New Jersey,Cumberland County NJ,50,1,2,34,11,1-2-34-11,Northeast,Middle Atlantic +34013,Essex County,NJ,New Jersey,Essex County NJ,50,1,2,34,13,1-2-34-13,Northeast,Middle Atlantic +34015,Gloucester County,NJ,New Jersey,Gloucester County NJ,50,1,2,34,15,1-2-34-15,Northeast,Middle Atlantic +34017,Hudson County,NJ,New Jersey,Hudson County NJ,50,1,2,34,17,1-2-34-17,Northeast,Middle Atlantic +34019,Hunterdon County,NJ,New Jersey,Hunterdon County NJ,50,1,2,34,19,1-2-34-19,Northeast,Middle Atlantic +34021,Mercer County,NJ,New Jersey,Mercer County NJ,50,1,2,34,21,1-2-34-21,Northeast,Middle Atlantic +34023,Middlesex County,NJ,New Jersey,Middlesex County NJ,50,1,2,34,23,1-2-34-23,Northeast,Middle Atlantic +34025,Monmouth County,NJ,New Jersey,Monmouth County NJ,50,1,2,34,25,1-2-34-25,Northeast,Middle Atlantic +34027,Morris County,NJ,New Jersey,Morris County NJ,50,1,2,34,27,1-2-34-27,Northeast,Middle Atlantic +34029,Ocean County,NJ,New Jersey,Ocean County NJ,50,1,2,34,29,1-2-34-29,Northeast,Middle Atlantic +34031,Passaic County,NJ,New Jersey,Passaic County NJ,50,1,2,34,31,1-2-34-31,Northeast,Middle Atlantic +34033,Salem County,NJ,New Jersey,Salem County NJ,50,1,2,34,33,1-2-34-33,Northeast,Middle Atlantic +34035,Somerset County,NJ,New Jersey,Somerset County NJ,50,1,2,34,35,1-2-34-35,Northeast,Middle Atlantic +34037,Sussex County,NJ,New Jersey,Sussex County NJ,50,1,2,34,37,1-2-34-37,Northeast,Middle Atlantic +34039,Union County,NJ,New Jersey,Union County NJ,50,1,2,34,39,1-2-34-39,Northeast,Middle Atlantic +34041,Warren County,NJ,New Jersey,Warren County NJ,50,1,2,34,41,1-2-34-41,Northeast,Middle Atlantic +35001,Bernalillo County,NM,New Mexico,Bernalillo County NM,50,4,8,35,1,4-8-35-1,West,Mountain +35003,Catron County,NM,New Mexico,Catron County NM,50,4,8,35,3,4-8-35-3,West,Mountain +35005,Chaves County,NM,New Mexico,Chaves County NM,50,4,8,35,5,4-8-35-5,West,Mountain +35006,Cibola County,NM,New Mexico,Cibola County NM,50,4,8,35,6,4-8-35-6,West,Mountain +35007,Colfax County,NM,New Mexico,Colfax County NM,50,4,8,35,7,4-8-35-7,West,Mountain +35009,Curry County,NM,New Mexico,Curry County NM,50,4,8,35,9,4-8-35-9,West,Mountain +35011,De Baca County,NM,New Mexico,De Baca County NM,50,4,8,35,11,4-8-35-11,West,Mountain +35013,Do�a Ana County,NM,New Mexico,Do�a Ana County NM,50,4,8,35,13,4-8-35-13,West,Mountain +35015,Eddy County,NM,New Mexico,Eddy County NM,50,4,8,35,15,4-8-35-15,West,Mountain +35017,Grant County,NM,New Mexico,Grant County NM,50,4,8,35,17,4-8-35-17,West,Mountain +35019,Guadalupe County,NM,New Mexico,Guadalupe County NM,50,4,8,35,19,4-8-35-19,West,Mountain +35021,Harding County,NM,New Mexico,Harding County NM,50,4,8,35,21,4-8-35-21,West,Mountain +35023,Hidalgo County,NM,New Mexico,Hidalgo County NM,50,4,8,35,23,4-8-35-23,West,Mountain +35025,Lea County,NM,New Mexico,Lea County NM,50,4,8,35,25,4-8-35-25,West,Mountain +35027,Lincoln County,NM,New Mexico,Lincoln County NM,50,4,8,35,27,4-8-35-27,West,Mountain +35028,Los Alamos County,NM,New Mexico,Los Alamos County NM,50,4,8,35,28,4-8-35-28,West,Mountain +35029,Luna County,NM,New Mexico,Luna County NM,50,4,8,35,29,4-8-35-29,West,Mountain +35031,McKinley County,NM,New Mexico,McKinley County NM,50,4,8,35,31,4-8-35-31,West,Mountain +35033,Mora County,NM,New Mexico,Mora County NM,50,4,8,35,33,4-8-35-33,West,Mountain +35035,Otero County,NM,New Mexico,Otero County NM,50,4,8,35,35,4-8-35-35,West,Mountain +35037,Quay County,NM,New Mexico,Quay County NM,50,4,8,35,37,4-8-35-37,West,Mountain +35039,Rio Arriba County,NM,New Mexico,Rio Arriba County NM,50,4,8,35,39,4-8-35-39,West,Mountain +35041,Roosevelt County,NM,New Mexico,Roosevelt County NM,50,4,8,35,41,4-8-35-41,West,Mountain +35043,Sandoval County,NM,New Mexico,Sandoval County NM,50,4,8,35,43,4-8-35-43,West,Mountain +35045,San Juan County,NM,New Mexico,San Juan County NM,50,4,8,35,45,4-8-35-45,West,Mountain +35047,San Miguel County,NM,New Mexico,San Miguel County NM,50,4,8,35,47,4-8-35-47,West,Mountain +35049,Santa Fe County,NM,New Mexico,Santa Fe County NM,50,4,8,35,49,4-8-35-49,West,Mountain +35051,Sierra County,NM,New Mexico,Sierra County NM,50,4,8,35,51,4-8-35-51,West,Mountain +35053,Socorro County,NM,New Mexico,Socorro County NM,50,4,8,35,53,4-8-35-53,West,Mountain +35055,Taos County,NM,New Mexico,Taos County NM,50,4,8,35,55,4-8-35-55,West,Mountain +35057,Torrance County,NM,New Mexico,Torrance County NM,50,4,8,35,57,4-8-35-57,West,Mountain +35059,Union County,NM,New Mexico,Union County NM,50,4,8,35,59,4-8-35-59,West,Mountain +35061,Valencia County,NM,New Mexico,Valencia County NM,50,4,8,35,61,4-8-35-61,West,Mountain +36001,Albany County,NY,New York,Albany County NY,50,1,2,36,1,1-2-36-1,Northeast,Middle Atlantic +36003,Allegany County,NY,New York,Allegany County NY,50,1,2,36,3,1-2-36-3,Northeast,Middle Atlantic +36005,Bronx County,NY,New York,Bronx County NY,50,1,2,36,5,1-2-36-5,Northeast,Middle Atlantic +36007,Broome County,NY,New York,Broome County NY,50,1,2,36,7,1-2-36-7,Northeast,Middle Atlantic +36009,Cattaraugus County,NY,New York,Cattaraugus County NY,50,1,2,36,9,1-2-36-9,Northeast,Middle Atlantic +36011,Cayuga County,NY,New York,Cayuga County NY,50,1,2,36,11,1-2-36-11,Northeast,Middle Atlantic +36013,Chautauqua County,NY,New York,Chautauqua County NY,50,1,2,36,13,1-2-36-13,Northeast,Middle Atlantic +36015,Chemung County,NY,New York,Chemung County NY,50,1,2,36,15,1-2-36-15,Northeast,Middle Atlantic +36017,Chenango County,NY,New York,Chenango County NY,50,1,2,36,17,1-2-36-17,Northeast,Middle Atlantic +36019,Clinton County,NY,New York,Clinton County NY,50,1,2,36,19,1-2-36-19,Northeast,Middle Atlantic +36021,Columbia County,NY,New York,Columbia County NY,50,1,2,36,21,1-2-36-21,Northeast,Middle Atlantic +36023,Cortland County,NY,New York,Cortland County NY,50,1,2,36,23,1-2-36-23,Northeast,Middle Atlantic +36025,Delaware County,NY,New York,Delaware County NY,50,1,2,36,25,1-2-36-25,Northeast,Middle Atlantic +36027,Dutchess County,NY,New York,Dutchess County NY,50,1,2,36,27,1-2-36-27,Northeast,Middle Atlantic +36029,Erie County,NY,New York,Erie County NY,50,1,2,36,29,1-2-36-29,Northeast,Middle Atlantic +36031,Essex County,NY,New York,Essex County NY,50,1,2,36,31,1-2-36-31,Northeast,Middle Atlantic +36033,Franklin County,NY,New York,Franklin County NY,50,1,2,36,33,1-2-36-33,Northeast,Middle Atlantic +36035,Fulton County,NY,New York,Fulton County NY,50,1,2,36,35,1-2-36-35,Northeast,Middle Atlantic +36037,Genesee County,NY,New York,Genesee County NY,50,1,2,36,37,1-2-36-37,Northeast,Middle Atlantic +36039,Greene County,NY,New York,Greene County NY,50,1,2,36,39,1-2-36-39,Northeast,Middle Atlantic +36041,Hamilton County,NY,New York,Hamilton County NY,50,1,2,36,41,1-2-36-41,Northeast,Middle Atlantic +36043,Herkimer County,NY,New York,Herkimer County NY,50,1,2,36,43,1-2-36-43,Northeast,Middle Atlantic +36045,Jefferson County,NY,New York,Jefferson County NY,50,1,2,36,45,1-2-36-45,Northeast,Middle Atlantic +36047,Kings County,NY,New York,Kings County NY,50,1,2,36,47,1-2-36-47,Northeast,Middle Atlantic +36049,Lewis County,NY,New York,Lewis County NY,50,1,2,36,49,1-2-36-49,Northeast,Middle Atlantic +36051,Livingston County,NY,New York,Livingston County NY,50,1,2,36,51,1-2-36-51,Northeast,Middle Atlantic +36053,Madison County,NY,New York,Madison County NY,50,1,2,36,53,1-2-36-53,Northeast,Middle Atlantic +36055,Monroe County,NY,New York,Monroe County NY,50,1,2,36,55,1-2-36-55,Northeast,Middle Atlantic +36057,Montgomery County,NY,New York,Montgomery County NY,50,1,2,36,57,1-2-36-57,Northeast,Middle Atlantic +36059,Nassau County,NY,New York,Nassau County NY,50,1,2,36,59,1-2-36-59,Northeast,Middle Atlantic +36061,New York County,NY,New York,New York County NY,50,1,2,36,61,1-2-36-61,Northeast,Middle Atlantic +36063,Niagara County,NY,New York,Niagara County NY,50,1,2,36,63,1-2-36-63,Northeast,Middle Atlantic +36065,Oneida County,NY,New York,Oneida County NY,50,1,2,36,65,1-2-36-65,Northeast,Middle Atlantic +36067,Onondaga County,NY,New York,Onondaga County NY,50,1,2,36,67,1-2-36-67,Northeast,Middle Atlantic +36069,Ontario County,NY,New York,Ontario County NY,50,1,2,36,69,1-2-36-69,Northeast,Middle Atlantic +36071,Orange County,NY,New York,Orange County NY,50,1,2,36,71,1-2-36-71,Northeast,Middle Atlantic +36073,Orleans County,NY,New York,Orleans County NY,50,1,2,36,73,1-2-36-73,Northeast,Middle Atlantic +36075,Oswego County,NY,New York,Oswego County NY,50,1,2,36,75,1-2-36-75,Northeast,Middle Atlantic +36077,Otsego County,NY,New York,Otsego County NY,50,1,2,36,77,1-2-36-77,Northeast,Middle Atlantic +36079,Putnam County,NY,New York,Putnam County NY,50,1,2,36,79,1-2-36-79,Northeast,Middle Atlantic +36081,Queens County,NY,New York,Queens County NY,50,1,2,36,81,1-2-36-81,Northeast,Middle Atlantic +36083,Rensselaer County,NY,New York,Rensselaer County NY,50,1,2,36,83,1-2-36-83,Northeast,Middle Atlantic +36085,Richmond County,NY,New York,Richmond County NY,50,1,2,36,85,1-2-36-85,Northeast,Middle Atlantic +36087,Rockland County,NY,New York,Rockland County NY,50,1,2,36,87,1-2-36-87,Northeast,Middle Atlantic +36089,St. Lawrence County,NY,New York,St. Lawrence County NY,50,1,2,36,89,1-2-36-89,Northeast,Middle Atlantic +36091,Saratoga County,NY,New York,Saratoga County NY,50,1,2,36,91,1-2-36-91,Northeast,Middle Atlantic +36093,Schenectady County,NY,New York,Schenectady County NY,50,1,2,36,93,1-2-36-93,Northeast,Middle Atlantic +36095,Schoharie County,NY,New York,Schoharie County NY,50,1,2,36,95,1-2-36-95,Northeast,Middle Atlantic +36097,Schuyler County,NY,New York,Schuyler County NY,50,1,2,36,97,1-2-36-97,Northeast,Middle Atlantic +36099,Seneca County,NY,New York,Seneca County NY,50,1,2,36,99,1-2-36-99,Northeast,Middle Atlantic +36101,Steuben County,NY,New York,Steuben County NY,50,1,2,36,101,1-2-36-101,Northeast,Middle Atlantic +36103,Suffolk County,NY,New York,Suffolk County NY,50,1,2,36,103,1-2-36-103,Northeast,Middle Atlantic +36105,Sullivan County,NY,New York,Sullivan County NY,50,1,2,36,105,1-2-36-105,Northeast,Middle Atlantic +36107,Tioga County,NY,New York,Tioga County NY,50,1,2,36,107,1-2-36-107,Northeast,Middle Atlantic +36109,Tompkins County,NY,New York,Tompkins County NY,50,1,2,36,109,1-2-36-109,Northeast,Middle Atlantic +36111,Ulster County,NY,New York,Ulster County NY,50,1,2,36,111,1-2-36-111,Northeast,Middle Atlantic +36113,Warren County,NY,New York,Warren County NY,50,1,2,36,113,1-2-36-113,Northeast,Middle Atlantic +36115,Washington County,NY,New York,Washington County NY,50,1,2,36,115,1-2-36-115,Northeast,Middle Atlantic +36117,Wayne County,NY,New York,Wayne County NY,50,1,2,36,117,1-2-36-117,Northeast,Middle Atlantic +36119,Westchester County,NY,New York,Westchester County NY,50,1,2,36,119,1-2-36-119,Northeast,Middle Atlantic +36121,Wyoming County,NY,New York,Wyoming County NY,50,1,2,36,121,1-2-36-121,Northeast,Middle Atlantic +36123,Yates County,NY,New York,Yates County NY,50,1,2,36,123,1-2-36-123,Northeast,Middle Atlantic +37001,Alamance County,NC,North Carolina,Alamance County NC,50,3,5,37,1,3-5-37-1,South,South Atlantic +37003,Alexander County,NC,North Carolina,Alexander County NC,50,3,5,37,3,3-5-37-3,South,South Atlantic +37005,Alleghany County,NC,North Carolina,Alleghany County NC,50,3,5,37,5,3-5-37-5,South,South Atlantic +37007,Anson County,NC,North Carolina,Anson County NC,50,3,5,37,7,3-5-37-7,South,South Atlantic +37009,Ashe County,NC,North Carolina,Ashe County NC,50,3,5,37,9,3-5-37-9,South,South Atlantic +37011,Avery County,NC,North Carolina,Avery County NC,50,3,5,37,11,3-5-37-11,South,South Atlantic +37013,Beaufort County,NC,North Carolina,Beaufort County NC,50,3,5,37,13,3-5-37-13,South,South Atlantic +37015,Bertie County,NC,North Carolina,Bertie County NC,50,3,5,37,15,3-5-37-15,South,South Atlantic +37017,Bladen County,NC,North Carolina,Bladen County NC,50,3,5,37,17,3-5-37-17,South,South Atlantic +37019,Brunswick County,NC,North Carolina,Brunswick County NC,50,3,5,37,19,3-5-37-19,South,South Atlantic +37021,Buncombe County,NC,North Carolina,Buncombe County NC,50,3,5,37,21,3-5-37-21,South,South Atlantic +37023,Burke County,NC,North Carolina,Burke County NC,50,3,5,37,23,3-5-37-23,South,South Atlantic +37025,Cabarrus County,NC,North Carolina,Cabarrus County NC,50,3,5,37,25,3-5-37-25,South,South Atlantic +37027,Caldwell County,NC,North Carolina,Caldwell County NC,50,3,5,37,27,3-5-37-27,South,South Atlantic +37029,Camden County,NC,North Carolina,Camden County NC,50,3,5,37,29,3-5-37-29,South,South Atlantic +37031,Carteret County,NC,North Carolina,Carteret County NC,50,3,5,37,31,3-5-37-31,South,South Atlantic +37033,Caswell County,NC,North Carolina,Caswell County NC,50,3,5,37,33,3-5-37-33,South,South Atlantic +37035,Catawba County,NC,North Carolina,Catawba County NC,50,3,5,37,35,3-5-37-35,South,South Atlantic +37037,Chatham County,NC,North Carolina,Chatham County NC,50,3,5,37,37,3-5-37-37,South,South Atlantic +37039,Cherokee County,NC,North Carolina,Cherokee County NC,50,3,5,37,39,3-5-37-39,South,South Atlantic +37041,Chowan County,NC,North Carolina,Chowan County NC,50,3,5,37,41,3-5-37-41,South,South Atlantic +37043,Clay County,NC,North Carolina,Clay County NC,50,3,5,37,43,3-5-37-43,South,South Atlantic +37045,Cleveland County,NC,North Carolina,Cleveland County NC,50,3,5,37,45,3-5-37-45,South,South Atlantic +37047,Columbus County,NC,North Carolina,Columbus County NC,50,3,5,37,47,3-5-37-47,South,South Atlantic +37049,Craven County,NC,North Carolina,Craven County NC,50,3,5,37,49,3-5-37-49,South,South Atlantic +37051,Cumberland County,NC,North Carolina,Cumberland County NC,50,3,5,37,51,3-5-37-51,South,South Atlantic +37053,Currituck County,NC,North Carolina,Currituck County NC,50,3,5,37,53,3-5-37-53,South,South Atlantic +37055,Dare County,NC,North Carolina,Dare County NC,50,3,5,37,55,3-5-37-55,South,South Atlantic +37057,Davidson County,NC,North Carolina,Davidson County NC,50,3,5,37,57,3-5-37-57,South,South Atlantic +37059,Davie County,NC,North Carolina,Davie County NC,50,3,5,37,59,3-5-37-59,South,South Atlantic +37061,Duplin County,NC,North Carolina,Duplin County NC,50,3,5,37,61,3-5-37-61,South,South Atlantic +37063,Durham County,NC,North Carolina,Durham County NC,50,3,5,37,63,3-5-37-63,South,South Atlantic +37065,Edgecombe County,NC,North Carolina,Edgecombe County NC,50,3,5,37,65,3-5-37-65,South,South Atlantic +37067,Forsyth County,NC,North Carolina,Forsyth County NC,50,3,5,37,67,3-5-37-67,South,South Atlantic +37069,Franklin County,NC,North Carolina,Franklin County NC,50,3,5,37,69,3-5-37-69,South,South Atlantic +37071,Gaston County,NC,North Carolina,Gaston County NC,50,3,5,37,71,3-5-37-71,South,South Atlantic +37073,Gates County,NC,North Carolina,Gates County NC,50,3,5,37,73,3-5-37-73,South,South Atlantic +37075,Graham County,NC,North Carolina,Graham County NC,50,3,5,37,75,3-5-37-75,South,South Atlantic +37077,Granville County,NC,North Carolina,Granville County NC,50,3,5,37,77,3-5-37-77,South,South Atlantic +37079,Greene County,NC,North Carolina,Greene County NC,50,3,5,37,79,3-5-37-79,South,South Atlantic +37081,Guilford County,NC,North Carolina,Guilford County NC,50,3,5,37,81,3-5-37-81,South,South Atlantic +37083,Halifax County,NC,North Carolina,Halifax County NC,50,3,5,37,83,3-5-37-83,South,South Atlantic +37085,Harnett County,NC,North Carolina,Harnett County NC,50,3,5,37,85,3-5-37-85,South,South Atlantic +37087,Haywood County,NC,North Carolina,Haywood County NC,50,3,5,37,87,3-5-37-87,South,South Atlantic +37089,Henderson County,NC,North Carolina,Henderson County NC,50,3,5,37,89,3-5-37-89,South,South Atlantic +37091,Hertford County,NC,North Carolina,Hertford County NC,50,3,5,37,91,3-5-37-91,South,South Atlantic +37093,Hoke County,NC,North Carolina,Hoke County NC,50,3,5,37,93,3-5-37-93,South,South Atlantic +37095,Hyde County,NC,North Carolina,Hyde County NC,50,3,5,37,95,3-5-37-95,South,South Atlantic +37097,Iredell County,NC,North Carolina,Iredell County NC,50,3,5,37,97,3-5-37-97,South,South Atlantic +37099,Jackson County,NC,North Carolina,Jackson County NC,50,3,5,37,99,3-5-37-99,South,South Atlantic +37101,Johnston County,NC,North Carolina,Johnston County NC,50,3,5,37,101,3-5-37-101,South,South Atlantic +37103,Jones County,NC,North Carolina,Jones County NC,50,3,5,37,103,3-5-37-103,South,South Atlantic +37105,Lee County,NC,North Carolina,Lee County NC,50,3,5,37,105,3-5-37-105,South,South Atlantic +37107,Lenoir County,NC,North Carolina,Lenoir County NC,50,3,5,37,107,3-5-37-107,South,South Atlantic +37109,Lincoln County,NC,North Carolina,Lincoln County NC,50,3,5,37,109,3-5-37-109,South,South Atlantic +37111,McDowell County,NC,North Carolina,McDowell County NC,50,3,5,37,111,3-5-37-111,South,South Atlantic +37113,Macon County,NC,North Carolina,Macon County NC,50,3,5,37,113,3-5-37-113,South,South Atlantic +37115,Madison County,NC,North Carolina,Madison County NC,50,3,5,37,115,3-5-37-115,South,South Atlantic +37117,Martin County,NC,North Carolina,Martin County NC,50,3,5,37,117,3-5-37-117,South,South Atlantic +37119,Mecklenburg County,NC,North Carolina,Mecklenburg County NC,50,3,5,37,119,3-5-37-119,South,South Atlantic +37121,Mitchell County,NC,North Carolina,Mitchell County NC,50,3,5,37,121,3-5-37-121,South,South Atlantic +37123,Montgomery County,NC,North Carolina,Montgomery County NC,50,3,5,37,123,3-5-37-123,South,South Atlantic +37125,Moore County,NC,North Carolina,Moore County NC,50,3,5,37,125,3-5-37-125,South,South Atlantic +37127,Nash County,NC,North Carolina,Nash County NC,50,3,5,37,127,3-5-37-127,South,South Atlantic +37129,New Hanover County,NC,North Carolina,New Hanover County NC,50,3,5,37,129,3-5-37-129,South,South Atlantic +37131,Northampton County,NC,North Carolina,Northampton County NC,50,3,5,37,131,3-5-37-131,South,South Atlantic +37133,Onslow County,NC,North Carolina,Onslow County NC,50,3,5,37,133,3-5-37-133,South,South Atlantic +37135,Orange County,NC,North Carolina,Orange County NC,50,3,5,37,135,3-5-37-135,South,South Atlantic +37137,Pamlico County,NC,North Carolina,Pamlico County NC,50,3,5,37,137,3-5-37-137,South,South Atlantic +37139,Pasquotank County,NC,North Carolina,Pasquotank County NC,50,3,5,37,139,3-5-37-139,South,South Atlantic +37141,Pender County,NC,North Carolina,Pender County NC,50,3,5,37,141,3-5-37-141,South,South Atlantic +37143,Perquimans County,NC,North Carolina,Perquimans County NC,50,3,5,37,143,3-5-37-143,South,South Atlantic +37145,Person County,NC,North Carolina,Person County NC,50,3,5,37,145,3-5-37-145,South,South Atlantic +37147,Pitt County,NC,North Carolina,Pitt County NC,50,3,5,37,147,3-5-37-147,South,South Atlantic +37149,Polk County,NC,North Carolina,Polk County NC,50,3,5,37,149,3-5-37-149,South,South Atlantic +37151,Randolph County,NC,North Carolina,Randolph County NC,50,3,5,37,151,3-5-37-151,South,South Atlantic +37153,Richmond County,NC,North Carolina,Richmond County NC,50,3,5,37,153,3-5-37-153,South,South Atlantic +37155,Robeson County,NC,North Carolina,Robeson County NC,50,3,5,37,155,3-5-37-155,South,South Atlantic +37157,Rockingham County,NC,North Carolina,Rockingham County NC,50,3,5,37,157,3-5-37-157,South,South Atlantic +37159,Rowan County,NC,North Carolina,Rowan County NC,50,3,5,37,159,3-5-37-159,South,South Atlantic +37161,Rutherford County,NC,North Carolina,Rutherford County NC,50,3,5,37,161,3-5-37-161,South,South Atlantic +37163,Sampson County,NC,North Carolina,Sampson County NC,50,3,5,37,163,3-5-37-163,South,South Atlantic +37165,Scotland County,NC,North Carolina,Scotland County NC,50,3,5,37,165,3-5-37-165,South,South Atlantic +37167,Stanly County,NC,North Carolina,Stanly County NC,50,3,5,37,167,3-5-37-167,South,South Atlantic +37169,Stokes County,NC,North Carolina,Stokes County NC,50,3,5,37,169,3-5-37-169,South,South Atlantic +37171,Surry County,NC,North Carolina,Surry County NC,50,3,5,37,171,3-5-37-171,South,South Atlantic +37173,Swain County,NC,North Carolina,Swain County NC,50,3,5,37,173,3-5-37-173,South,South Atlantic +37175,Transylvania County,NC,North Carolina,Transylvania County NC,50,3,5,37,175,3-5-37-175,South,South Atlantic +37177,Tyrrell County,NC,North Carolina,Tyrrell County NC,50,3,5,37,177,3-5-37-177,South,South Atlantic +37179,Union County,NC,North Carolina,Union County NC,50,3,5,37,179,3-5-37-179,South,South Atlantic +37181,Vance County,NC,North Carolina,Vance County NC,50,3,5,37,181,3-5-37-181,South,South Atlantic +37183,Wake County,NC,North Carolina,Wake County NC,50,3,5,37,183,3-5-37-183,South,South Atlantic +37185,Warren County,NC,North Carolina,Warren County NC,50,3,5,37,185,3-5-37-185,South,South Atlantic +37187,Washington County,NC,North Carolina,Washington County NC,50,3,5,37,187,3-5-37-187,South,South Atlantic +37189,Watauga County,NC,North Carolina,Watauga County NC,50,3,5,37,189,3-5-37-189,South,South Atlantic +37191,Wayne County,NC,North Carolina,Wayne County NC,50,3,5,37,191,3-5-37-191,South,South Atlantic +37193,Wilkes County,NC,North Carolina,Wilkes County NC,50,3,5,37,193,3-5-37-193,South,South Atlantic +37195,Wilson County,NC,North Carolina,Wilson County NC,50,3,5,37,195,3-5-37-195,South,South Atlantic +37197,Yadkin County,NC,North Carolina,Yadkin County NC,50,3,5,37,197,3-5-37-197,South,South Atlantic +37199,Yancey County,NC,North Carolina,Yancey County NC,50,3,5,37,199,3-5-37-199,South,South Atlantic +38001,Adams County,ND,North Dakota,Adams County ND,50,2,4,38,1,2-4-38-1,Midwest,West North Central +38003,Barnes County,ND,North Dakota,Barnes County ND,50,2,4,38,3,2-4-38-3,Midwest,West North Central +38005,Benson County,ND,North Dakota,Benson County ND,50,2,4,38,5,2-4-38-5,Midwest,West North Central +38007,Billings County,ND,North Dakota,Billings County ND,50,2,4,38,7,2-4-38-7,Midwest,West North Central +38009,Bottineau County,ND,North Dakota,Bottineau County ND,50,2,4,38,9,2-4-38-9,Midwest,West North Central +38011,Bowman County,ND,North Dakota,Bowman County ND,50,2,4,38,11,2-4-38-11,Midwest,West North Central +38013,Burke County,ND,North Dakota,Burke County ND,50,2,4,38,13,2-4-38-13,Midwest,West North Central +38015,Burleigh County,ND,North Dakota,Burleigh County ND,50,2,4,38,15,2-4-38-15,Midwest,West North Central +38017,Cass County,ND,North Dakota,Cass County ND,50,2,4,38,17,2-4-38-17,Midwest,West North Central +38019,Cavalier County,ND,North Dakota,Cavalier County ND,50,2,4,38,19,2-4-38-19,Midwest,West North Central +38021,Dickey County,ND,North Dakota,Dickey County ND,50,2,4,38,21,2-4-38-21,Midwest,West North Central +38023,Divide County,ND,North Dakota,Divide County ND,50,2,4,38,23,2-4-38-23,Midwest,West North Central +38025,Dunn County,ND,North Dakota,Dunn County ND,50,2,4,38,25,2-4-38-25,Midwest,West North Central +38027,Eddy County,ND,North Dakota,Eddy County ND,50,2,4,38,27,2-4-38-27,Midwest,West North Central +38029,Emmons County,ND,North Dakota,Emmons County ND,50,2,4,38,29,2-4-38-29,Midwest,West North Central +38031,Foster County,ND,North Dakota,Foster County ND,50,2,4,38,31,2-4-38-31,Midwest,West North Central +38033,Golden Valley County,ND,North Dakota,Golden Valley County ND,50,2,4,38,33,2-4-38-33,Midwest,West North Central +38035,Grand Forks County,ND,North Dakota,Grand Forks County ND,50,2,4,38,35,2-4-38-35,Midwest,West North Central +38037,Grant County,ND,North Dakota,Grant County ND,50,2,4,38,37,2-4-38-37,Midwest,West North Central +38039,Griggs County,ND,North Dakota,Griggs County ND,50,2,4,38,39,2-4-38-39,Midwest,West North Central +38041,Hettinger County,ND,North Dakota,Hettinger County ND,50,2,4,38,41,2-4-38-41,Midwest,West North Central +38043,Kidder County,ND,North Dakota,Kidder County ND,50,2,4,38,43,2-4-38-43,Midwest,West North Central +38045,LaMoure County,ND,North Dakota,LaMoure County ND,50,2,4,38,45,2-4-38-45,Midwest,West North Central +38047,Logan County,ND,North Dakota,Logan County ND,50,2,4,38,47,2-4-38-47,Midwest,West North Central +38049,McHenry County,ND,North Dakota,McHenry County ND,50,2,4,38,49,2-4-38-49,Midwest,West North Central +38051,McIntosh County,ND,North Dakota,McIntosh County ND,50,2,4,38,51,2-4-38-51,Midwest,West North Central +38053,McKenzie County,ND,North Dakota,McKenzie County ND,50,2,4,38,53,2-4-38-53,Midwest,West North Central +38055,McLean County,ND,North Dakota,McLean County ND,50,2,4,38,55,2-4-38-55,Midwest,West North Central +38057,Mercer County,ND,North Dakota,Mercer County ND,50,2,4,38,57,2-4-38-57,Midwest,West North Central +38059,Morton County,ND,North Dakota,Morton County ND,50,2,4,38,59,2-4-38-59,Midwest,West North Central +38061,Mountrail County,ND,North Dakota,Mountrail County ND,50,2,4,38,61,2-4-38-61,Midwest,West North Central +38063,Nelson County,ND,North Dakota,Nelson County ND,50,2,4,38,63,2-4-38-63,Midwest,West North Central +38065,Oliver County,ND,North Dakota,Oliver County ND,50,2,4,38,65,2-4-38-65,Midwest,West North Central +38067,Pembina County,ND,North Dakota,Pembina County ND,50,2,4,38,67,2-4-38-67,Midwest,West North Central +38069,Pierce County,ND,North Dakota,Pierce County ND,50,2,4,38,69,2-4-38-69,Midwest,West North Central +38071,Ramsey County,ND,North Dakota,Ramsey County ND,50,2,4,38,71,2-4-38-71,Midwest,West North Central +38073,Ransom County,ND,North Dakota,Ransom County ND,50,2,4,38,73,2-4-38-73,Midwest,West North Central +38075,Renville County,ND,North Dakota,Renville County ND,50,2,4,38,75,2-4-38-75,Midwest,West North Central +38077,Richland County,ND,North Dakota,Richland County ND,50,2,4,38,77,2-4-38-77,Midwest,West North Central +38079,Rolette County,ND,North Dakota,Rolette County ND,50,2,4,38,79,2-4-38-79,Midwest,West North Central +38081,Sargent County,ND,North Dakota,Sargent County ND,50,2,4,38,81,2-4-38-81,Midwest,West North Central +38083,Sheridan County,ND,North Dakota,Sheridan County ND,50,2,4,38,83,2-4-38-83,Midwest,West North Central +38085,Sioux County,ND,North Dakota,Sioux County ND,50,2,4,38,85,2-4-38-85,Midwest,West North Central +38087,Slope County,ND,North Dakota,Slope County ND,50,2,4,38,87,2-4-38-87,Midwest,West North Central +38089,Stark County,ND,North Dakota,Stark County ND,50,2,4,38,89,2-4-38-89,Midwest,West North Central +38091,Steele County,ND,North Dakota,Steele County ND,50,2,4,38,91,2-4-38-91,Midwest,West North Central +38093,Stutsman County,ND,North Dakota,Stutsman County ND,50,2,4,38,93,2-4-38-93,Midwest,West North Central +38095,Towner County,ND,North Dakota,Towner County ND,50,2,4,38,95,2-4-38-95,Midwest,West North Central +38097,Traill County,ND,North Dakota,Traill County ND,50,2,4,38,97,2-4-38-97,Midwest,West North Central +38099,Walsh County,ND,North Dakota,Walsh County ND,50,2,4,38,99,2-4-38-99,Midwest,West North Central +38101,Ward County,ND,North Dakota,Ward County ND,50,2,4,38,101,2-4-38-101,Midwest,West North Central +38103,Wells County,ND,North Dakota,Wells County ND,50,2,4,38,103,2-4-38-103,Midwest,West North Central +38105,Williams County,ND,North Dakota,Williams County ND,50,2,4,38,105,2-4-38-105,Midwest,West North Central +39001,Adams County,OH,Ohio,Adams County OH,50,2,3,39,1,2-3-39-1,Midwest,East North Central +39003,Allen County,OH,Ohio,Allen County OH,50,2,3,39,3,2-3-39-3,Midwest,East North Central +39005,Ashland County,OH,Ohio,Ashland County OH,50,2,3,39,5,2-3-39-5,Midwest,East North Central +39007,Ashtabula County,OH,Ohio,Ashtabula County OH,50,2,3,39,7,2-3-39-7,Midwest,East North Central +39009,Athens County,OH,Ohio,Athens County OH,50,2,3,39,9,2-3-39-9,Midwest,East North Central +39011,Auglaize County,OH,Ohio,Auglaize County OH,50,2,3,39,11,2-3-39-11,Midwest,East North Central +39013,Belmont County,OH,Ohio,Belmont County OH,50,2,3,39,13,2-3-39-13,Midwest,East North Central +39015,Brown County,OH,Ohio,Brown County OH,50,2,3,39,15,2-3-39-15,Midwest,East North Central +39017,Butler County,OH,Ohio,Butler County OH,50,2,3,39,17,2-3-39-17,Midwest,East North Central +39019,Carroll County,OH,Ohio,Carroll County OH,50,2,3,39,19,2-3-39-19,Midwest,East North Central +39021,Champaign County,OH,Ohio,Champaign County OH,50,2,3,39,21,2-3-39-21,Midwest,East North Central +39023,Clark County,OH,Ohio,Clark County OH,50,2,3,39,23,2-3-39-23,Midwest,East North Central +39025,Clermont County,OH,Ohio,Clermont County OH,50,2,3,39,25,2-3-39-25,Midwest,East North Central +39027,Clinton County,OH,Ohio,Clinton County OH,50,2,3,39,27,2-3-39-27,Midwest,East North Central +39029,Columbiana County,OH,Ohio,Columbiana County OH,50,2,3,39,29,2-3-39-29,Midwest,East North Central +39031,Coshocton County,OH,Ohio,Coshocton County OH,50,2,3,39,31,2-3-39-31,Midwest,East North Central +39033,Crawford County,OH,Ohio,Crawford County OH,50,2,3,39,33,2-3-39-33,Midwest,East North Central +39035,Cuyahoga County,OH,Ohio,Cuyahoga County OH,50,2,3,39,35,2-3-39-35,Midwest,East North Central +39037,Darke County,OH,Ohio,Darke County OH,50,2,3,39,37,2-3-39-37,Midwest,East North Central +39039,Defiance County,OH,Ohio,Defiance County OH,50,2,3,39,39,2-3-39-39,Midwest,East North Central +39041,Delaware County,OH,Ohio,Delaware County OH,50,2,3,39,41,2-3-39-41,Midwest,East North Central +39043,Erie County,OH,Ohio,Erie County OH,50,2,3,39,43,2-3-39-43,Midwest,East North Central +39045,Fairfield County,OH,Ohio,Fairfield County OH,50,2,3,39,45,2-3-39-45,Midwest,East North Central +39047,Fayette County,OH,Ohio,Fayette County OH,50,2,3,39,47,2-3-39-47,Midwest,East North Central +39049,Franklin County,OH,Ohio,Franklin County OH,50,2,3,39,49,2-3-39-49,Midwest,East North Central +39051,Fulton County,OH,Ohio,Fulton County OH,50,2,3,39,51,2-3-39-51,Midwest,East North Central +39053,Gallia County,OH,Ohio,Gallia County OH,50,2,3,39,53,2-3-39-53,Midwest,East North Central +39055,Geauga County,OH,Ohio,Geauga County OH,50,2,3,39,55,2-3-39-55,Midwest,East North Central +39057,Greene County,OH,Ohio,Greene County OH,50,2,3,39,57,2-3-39-57,Midwest,East North Central +39059,Guernsey County,OH,Ohio,Guernsey County OH,50,2,3,39,59,2-3-39-59,Midwest,East North Central +39061,Hamilton County,OH,Ohio,Hamilton County OH,50,2,3,39,61,2-3-39-61,Midwest,East North Central +39063,Hancock County,OH,Ohio,Hancock County OH,50,2,3,39,63,2-3-39-63,Midwest,East North Central +39065,Hardin County,OH,Ohio,Hardin County OH,50,2,3,39,65,2-3-39-65,Midwest,East North Central +39067,Harrison County,OH,Ohio,Harrison County OH,50,2,3,39,67,2-3-39-67,Midwest,East North Central +39069,Henry County,OH,Ohio,Henry County OH,50,2,3,39,69,2-3-39-69,Midwest,East North Central +39071,Highland County,OH,Ohio,Highland County OH,50,2,3,39,71,2-3-39-71,Midwest,East North Central +39073,Hocking County,OH,Ohio,Hocking County OH,50,2,3,39,73,2-3-39-73,Midwest,East North Central +39075,Holmes County,OH,Ohio,Holmes County OH,50,2,3,39,75,2-3-39-75,Midwest,East North Central +39077,Huron County,OH,Ohio,Huron County OH,50,2,3,39,77,2-3-39-77,Midwest,East North Central +39079,Jackson County,OH,Ohio,Jackson County OH,50,2,3,39,79,2-3-39-79,Midwest,East North Central +39081,Jefferson County,OH,Ohio,Jefferson County OH,50,2,3,39,81,2-3-39-81,Midwest,East North Central +39083,Knox County,OH,Ohio,Knox County OH,50,2,3,39,83,2-3-39-83,Midwest,East North Central +39085,Lake County,OH,Ohio,Lake County OH,50,2,3,39,85,2-3-39-85,Midwest,East North Central +39087,Lawrence County,OH,Ohio,Lawrence County OH,50,2,3,39,87,2-3-39-87,Midwest,East North Central +39089,Licking County,OH,Ohio,Licking County OH,50,2,3,39,89,2-3-39-89,Midwest,East North Central +39091,Logan County,OH,Ohio,Logan County OH,50,2,3,39,91,2-3-39-91,Midwest,East North Central +39093,Lorain County,OH,Ohio,Lorain County OH,50,2,3,39,93,2-3-39-93,Midwest,East North Central +39095,Lucas County,OH,Ohio,Lucas County OH,50,2,3,39,95,2-3-39-95,Midwest,East North Central +39097,Madison County,OH,Ohio,Madison County OH,50,2,3,39,97,2-3-39-97,Midwest,East North Central +39099,Mahoning County,OH,Ohio,Mahoning County OH,50,2,3,39,99,2-3-39-99,Midwest,East North Central +39101,Marion County,OH,Ohio,Marion County OH,50,2,3,39,101,2-3-39-101,Midwest,East North Central +39103,Medina County,OH,Ohio,Medina County OH,50,2,3,39,103,2-3-39-103,Midwest,East North Central +39105,Meigs County,OH,Ohio,Meigs County OH,50,2,3,39,105,2-3-39-105,Midwest,East North Central +39107,Mercer County,OH,Ohio,Mercer County OH,50,2,3,39,107,2-3-39-107,Midwest,East North Central +39109,Miami County,OH,Ohio,Miami County OH,50,2,3,39,109,2-3-39-109,Midwest,East North Central +39111,Monroe County,OH,Ohio,Monroe County OH,50,2,3,39,111,2-3-39-111,Midwest,East North Central +39113,Montgomery County,OH,Ohio,Montgomery County OH,50,2,3,39,113,2-3-39-113,Midwest,East North Central +39115,Morgan County,OH,Ohio,Morgan County OH,50,2,3,39,115,2-3-39-115,Midwest,East North Central +39117,Morrow County,OH,Ohio,Morrow County OH,50,2,3,39,117,2-3-39-117,Midwest,East North Central +39119,Muskingum County,OH,Ohio,Muskingum County OH,50,2,3,39,119,2-3-39-119,Midwest,East North Central +39121,Noble County,OH,Ohio,Noble County OH,50,2,3,39,121,2-3-39-121,Midwest,East North Central +39123,Ottawa County,OH,Ohio,Ottawa County OH,50,2,3,39,123,2-3-39-123,Midwest,East North Central +39125,Paulding County,OH,Ohio,Paulding County OH,50,2,3,39,125,2-3-39-125,Midwest,East North Central +39127,Perry County,OH,Ohio,Perry County OH,50,2,3,39,127,2-3-39-127,Midwest,East North Central +39129,Pickaway County,OH,Ohio,Pickaway County OH,50,2,3,39,129,2-3-39-129,Midwest,East North Central +39131,Pike County,OH,Ohio,Pike County OH,50,2,3,39,131,2-3-39-131,Midwest,East North Central +39133,Portage County,OH,Ohio,Portage County OH,50,2,3,39,133,2-3-39-133,Midwest,East North Central +39135,Preble County,OH,Ohio,Preble County OH,50,2,3,39,135,2-3-39-135,Midwest,East North Central +39137,Putnam County,OH,Ohio,Putnam County OH,50,2,3,39,137,2-3-39-137,Midwest,East North Central +39139,Richland County,OH,Ohio,Richland County OH,50,2,3,39,139,2-3-39-139,Midwest,East North Central +39141,Ross County,OH,Ohio,Ross County OH,50,2,3,39,141,2-3-39-141,Midwest,East North Central +39143,Sandusky County,OH,Ohio,Sandusky County OH,50,2,3,39,143,2-3-39-143,Midwest,East North Central +39145,Scioto County,OH,Ohio,Scioto County OH,50,2,3,39,145,2-3-39-145,Midwest,East North Central +39147,Seneca County,OH,Ohio,Seneca County OH,50,2,3,39,147,2-3-39-147,Midwest,East North Central +39149,Shelby County,OH,Ohio,Shelby County OH,50,2,3,39,149,2-3-39-149,Midwest,East North Central +39151,Stark County,OH,Ohio,Stark County OH,50,2,3,39,151,2-3-39-151,Midwest,East North Central +39153,Summit County,OH,Ohio,Summit County OH,50,2,3,39,153,2-3-39-153,Midwest,East North Central +39155,Trumbull County,OH,Ohio,Trumbull County OH,50,2,3,39,155,2-3-39-155,Midwest,East North Central +39157,Tuscarawas County,OH,Ohio,Tuscarawas County OH,50,2,3,39,157,2-3-39-157,Midwest,East North Central +39159,Union County,OH,Ohio,Union County OH,50,2,3,39,159,2-3-39-159,Midwest,East North Central +39161,Van Wert County,OH,Ohio,Van Wert County OH,50,2,3,39,161,2-3-39-161,Midwest,East North Central +39163,Vinton County,OH,Ohio,Vinton County OH,50,2,3,39,163,2-3-39-163,Midwest,East North Central +39165,Warren County,OH,Ohio,Warren County OH,50,2,3,39,165,2-3-39-165,Midwest,East North Central +39167,Washington County,OH,Ohio,Washington County OH,50,2,3,39,167,2-3-39-167,Midwest,East North Central +39169,Wayne County,OH,Ohio,Wayne County OH,50,2,3,39,169,2-3-39-169,Midwest,East North Central +39171,Williams County,OH,Ohio,Williams County OH,50,2,3,39,171,2-3-39-171,Midwest,East North Central +39173,Wood County,OH,Ohio,Wood County OH,50,2,3,39,173,2-3-39-173,Midwest,East North Central +39175,Wyandot County,OH,Ohio,Wyandot County OH,50,2,3,39,175,2-3-39-175,Midwest,East North Central +40001,Adair County,OK,Oklahoma,Adair County OK,50,3,7,40,1,3-7-40-1,South,West South Central +40003,Alfalfa County,OK,Oklahoma,Alfalfa County OK,50,3,7,40,3,3-7-40-3,South,West South Central +40005,Atoka County,OK,Oklahoma,Atoka County OK,50,3,7,40,5,3-7-40-5,South,West South Central +40007,Beaver County,OK,Oklahoma,Beaver County OK,50,3,7,40,7,3-7-40-7,South,West South Central +40009,Beckham County,OK,Oklahoma,Beckham County OK,50,3,7,40,9,3-7-40-9,South,West South Central +40011,Blaine County,OK,Oklahoma,Blaine County OK,50,3,7,40,11,3-7-40-11,South,West South Central +40013,Bryan County,OK,Oklahoma,Bryan County OK,50,3,7,40,13,3-7-40-13,South,West South Central +40015,Caddo County,OK,Oklahoma,Caddo County OK,50,3,7,40,15,3-7-40-15,South,West South Central +40017,Canadian County,OK,Oklahoma,Canadian County OK,50,3,7,40,17,3-7-40-17,South,West South Central +40019,Carter County,OK,Oklahoma,Carter County OK,50,3,7,40,19,3-7-40-19,South,West South Central +40021,Cherokee County,OK,Oklahoma,Cherokee County OK,50,3,7,40,21,3-7-40-21,South,West South Central +40023,Choctaw County,OK,Oklahoma,Choctaw County OK,50,3,7,40,23,3-7-40-23,South,West South Central +40025,Cimarron County,OK,Oklahoma,Cimarron County OK,50,3,7,40,25,3-7-40-25,South,West South Central +40027,Cleveland County,OK,Oklahoma,Cleveland County OK,50,3,7,40,27,3-7-40-27,South,West South Central +40029,Coal County,OK,Oklahoma,Coal County OK,50,3,7,40,29,3-7-40-29,South,West South Central +40031,Comanche County,OK,Oklahoma,Comanche County OK,50,3,7,40,31,3-7-40-31,South,West South Central +40033,Cotton County,OK,Oklahoma,Cotton County OK,50,3,7,40,33,3-7-40-33,South,West South Central +40035,Craig County,OK,Oklahoma,Craig County OK,50,3,7,40,35,3-7-40-35,South,West South Central +40037,Creek County,OK,Oklahoma,Creek County OK,50,3,7,40,37,3-7-40-37,South,West South Central +40039,Custer County,OK,Oklahoma,Custer County OK,50,3,7,40,39,3-7-40-39,South,West South Central +40041,Delaware County,OK,Oklahoma,Delaware County OK,50,3,7,40,41,3-7-40-41,South,West South Central +40043,Dewey County,OK,Oklahoma,Dewey County OK,50,3,7,40,43,3-7-40-43,South,West South Central +40045,Ellis County,OK,Oklahoma,Ellis County OK,50,3,7,40,45,3-7-40-45,South,West South Central +40047,Garfield County,OK,Oklahoma,Garfield County OK,50,3,7,40,47,3-7-40-47,South,West South Central +40049,Garvin County,OK,Oklahoma,Garvin County OK,50,3,7,40,49,3-7-40-49,South,West South Central +40051,Grady County,OK,Oklahoma,Grady County OK,50,3,7,40,51,3-7-40-51,South,West South Central +40053,Grant County,OK,Oklahoma,Grant County OK,50,3,7,40,53,3-7-40-53,South,West South Central +40055,Greer County,OK,Oklahoma,Greer County OK,50,3,7,40,55,3-7-40-55,South,West South Central +40057,Harmon County,OK,Oklahoma,Harmon County OK,50,3,7,40,57,3-7-40-57,South,West South Central +40059,Harper County,OK,Oklahoma,Harper County OK,50,3,7,40,59,3-7-40-59,South,West South Central +40061,Haskell County,OK,Oklahoma,Haskell County OK,50,3,7,40,61,3-7-40-61,South,West South Central +40063,Hughes County,OK,Oklahoma,Hughes County OK,50,3,7,40,63,3-7-40-63,South,West South Central +40065,Jackson County,OK,Oklahoma,Jackson County OK,50,3,7,40,65,3-7-40-65,South,West South Central +40067,Jefferson County,OK,Oklahoma,Jefferson County OK,50,3,7,40,67,3-7-40-67,South,West South Central +40069,Johnston County,OK,Oklahoma,Johnston County OK,50,3,7,40,69,3-7-40-69,South,West South Central +40071,Kay County,OK,Oklahoma,Kay County OK,50,3,7,40,71,3-7-40-71,South,West South Central +40073,Kingfisher County,OK,Oklahoma,Kingfisher County OK,50,3,7,40,73,3-7-40-73,South,West South Central +40075,Kiowa County,OK,Oklahoma,Kiowa County OK,50,3,7,40,75,3-7-40-75,South,West South Central +40077,Latimer County,OK,Oklahoma,Latimer County OK,50,3,7,40,77,3-7-40-77,South,West South Central +40079,Le Flore County,OK,Oklahoma,Le Flore County OK,50,3,7,40,79,3-7-40-79,South,West South Central +40081,Lincoln County,OK,Oklahoma,Lincoln County OK,50,3,7,40,81,3-7-40-81,South,West South Central +40083,Logan County,OK,Oklahoma,Logan County OK,50,3,7,40,83,3-7-40-83,South,West South Central +40085,Love County,OK,Oklahoma,Love County OK,50,3,7,40,85,3-7-40-85,South,West South Central +40087,McClain County,OK,Oklahoma,McClain County OK,50,3,7,40,87,3-7-40-87,South,West South Central +40089,McCurtain County,OK,Oklahoma,McCurtain County OK,50,3,7,40,89,3-7-40-89,South,West South Central +40091,McIntosh County,OK,Oklahoma,McIntosh County OK,50,3,7,40,91,3-7-40-91,South,West South Central +40093,Major County,OK,Oklahoma,Major County OK,50,3,7,40,93,3-7-40-93,South,West South Central +40095,Marshall County,OK,Oklahoma,Marshall County OK,50,3,7,40,95,3-7-40-95,South,West South Central +40097,Mayes County,OK,Oklahoma,Mayes County OK,50,3,7,40,97,3-7-40-97,South,West South Central +40099,Murray County,OK,Oklahoma,Murray County OK,50,3,7,40,99,3-7-40-99,South,West South Central +40101,Muskogee County,OK,Oklahoma,Muskogee County OK,50,3,7,40,101,3-7-40-101,South,West South Central +40103,Noble County,OK,Oklahoma,Noble County OK,50,3,7,40,103,3-7-40-103,South,West South Central +40105,Nowata County,OK,Oklahoma,Nowata County OK,50,3,7,40,105,3-7-40-105,South,West South Central +40107,Okfuskee County,OK,Oklahoma,Okfuskee County OK,50,3,7,40,107,3-7-40-107,South,West South Central +40109,Oklahoma County,OK,Oklahoma,Oklahoma County OK,50,3,7,40,109,3-7-40-109,South,West South Central +40111,Okmulgee County,OK,Oklahoma,Okmulgee County OK,50,3,7,40,111,3-7-40-111,South,West South Central +40113,Osage County,OK,Oklahoma,Osage County OK,50,3,7,40,113,3-7-40-113,South,West South Central +40115,Ottawa County,OK,Oklahoma,Ottawa County OK,50,3,7,40,115,3-7-40-115,South,West South Central +40117,Pawnee County,OK,Oklahoma,Pawnee County OK,50,3,7,40,117,3-7-40-117,South,West South Central +40119,Payne County,OK,Oklahoma,Payne County OK,50,3,7,40,119,3-7-40-119,South,West South Central +40121,Pittsburg County,OK,Oklahoma,Pittsburg County OK,50,3,7,40,121,3-7-40-121,South,West South Central +40123,Pontotoc County,OK,Oklahoma,Pontotoc County OK,50,3,7,40,123,3-7-40-123,South,West South Central +40125,Pottawatomie County,OK,Oklahoma,Pottawatomie County OK,50,3,7,40,125,3-7-40-125,South,West South Central +40127,Pushmataha County,OK,Oklahoma,Pushmataha County OK,50,3,7,40,127,3-7-40-127,South,West South Central +40129,Roger Mills County,OK,Oklahoma,Roger Mills County OK,50,3,7,40,129,3-7-40-129,South,West South Central +40131,Rogers County,OK,Oklahoma,Rogers County OK,50,3,7,40,131,3-7-40-131,South,West South Central +40133,Seminole County,OK,Oklahoma,Seminole County OK,50,3,7,40,133,3-7-40-133,South,West South Central +40135,Sequoyah County,OK,Oklahoma,Sequoyah County OK,50,3,7,40,135,3-7-40-135,South,West South Central +40137,Stephens County,OK,Oklahoma,Stephens County OK,50,3,7,40,137,3-7-40-137,South,West South Central +40139,Texas County,OK,Oklahoma,Texas County OK,50,3,7,40,139,3-7-40-139,South,West South Central +40141,Tillman County,OK,Oklahoma,Tillman County OK,50,3,7,40,141,3-7-40-141,South,West South Central +40143,Tulsa County,OK,Oklahoma,Tulsa County OK,50,3,7,40,143,3-7-40-143,South,West South Central +40145,Wagoner County,OK,Oklahoma,Wagoner County OK,50,3,7,40,145,3-7-40-145,South,West South Central +40147,Washington County,OK,Oklahoma,Washington County OK,50,3,7,40,147,3-7-40-147,South,West South Central +40149,Washita County,OK,Oklahoma,Washita County OK,50,3,7,40,149,3-7-40-149,South,West South Central +40151,Woods County,OK,Oklahoma,Woods County OK,50,3,7,40,151,3-7-40-151,South,West South Central +40153,Woodward County,OK,Oklahoma,Woodward County OK,50,3,7,40,153,3-7-40-153,South,West South Central +41001,Baker County,OR,Oregon,Baker County OR,50,4,9,41,1,4-9-41-1,West,Pacific +41003,Benton County,OR,Oregon,Benton County OR,50,4,9,41,3,4-9-41-3,West,Pacific +41005,Clackamas County,OR,Oregon,Clackamas County OR,50,4,9,41,5,4-9-41-5,West,Pacific +41007,Clatsop County,OR,Oregon,Clatsop County OR,50,4,9,41,7,4-9-41-7,West,Pacific +41009,Columbia County,OR,Oregon,Columbia County OR,50,4,9,41,9,4-9-41-9,West,Pacific +41011,Coos County,OR,Oregon,Coos County OR,50,4,9,41,11,4-9-41-11,West,Pacific +41013,Crook County,OR,Oregon,Crook County OR,50,4,9,41,13,4-9-41-13,West,Pacific +41015,Curry County,OR,Oregon,Curry County OR,50,4,9,41,15,4-9-41-15,West,Pacific +41017,Deschutes County,OR,Oregon,Deschutes County OR,50,4,9,41,17,4-9-41-17,West,Pacific +41019,Douglas County,OR,Oregon,Douglas County OR,50,4,9,41,19,4-9-41-19,West,Pacific +41021,Gilliam County,OR,Oregon,Gilliam County OR,50,4,9,41,21,4-9-41-21,West,Pacific +41023,Grant County,OR,Oregon,Grant County OR,50,4,9,41,23,4-9-41-23,West,Pacific +41025,Harney County,OR,Oregon,Harney County OR,50,4,9,41,25,4-9-41-25,West,Pacific +41027,Hood River County,OR,Oregon,Hood River County OR,50,4,9,41,27,4-9-41-27,West,Pacific +41029,Jackson County,OR,Oregon,Jackson County OR,50,4,9,41,29,4-9-41-29,West,Pacific +41031,Jefferson County,OR,Oregon,Jefferson County OR,50,4,9,41,31,4-9-41-31,West,Pacific +41033,Josephine County,OR,Oregon,Josephine County OR,50,4,9,41,33,4-9-41-33,West,Pacific +41035,Klamath County,OR,Oregon,Klamath County OR,50,4,9,41,35,4-9-41-35,West,Pacific +41037,Lake County,OR,Oregon,Lake County OR,50,4,9,41,37,4-9-41-37,West,Pacific +41039,Lane County,OR,Oregon,Lane County OR,50,4,9,41,39,4-9-41-39,West,Pacific +41041,Lincoln County,OR,Oregon,Lincoln County OR,50,4,9,41,41,4-9-41-41,West,Pacific +41043,Linn County,OR,Oregon,Linn County OR,50,4,9,41,43,4-9-41-43,West,Pacific +41045,Malheur County,OR,Oregon,Malheur County OR,50,4,9,41,45,4-9-41-45,West,Pacific +41047,Marion County,OR,Oregon,Marion County OR,50,4,9,41,47,4-9-41-47,West,Pacific +41049,Morrow County,OR,Oregon,Morrow County OR,50,4,9,41,49,4-9-41-49,West,Pacific +41051,Multnomah County,OR,Oregon,Multnomah County OR,50,4,9,41,51,4-9-41-51,West,Pacific +41053,Polk County,OR,Oregon,Polk County OR,50,4,9,41,53,4-9-41-53,West,Pacific +41055,Sherman County,OR,Oregon,Sherman County OR,50,4,9,41,55,4-9-41-55,West,Pacific +41057,Tillamook County,OR,Oregon,Tillamook County OR,50,4,9,41,57,4-9-41-57,West,Pacific +41059,Umatilla County,OR,Oregon,Umatilla County OR,50,4,9,41,59,4-9-41-59,West,Pacific +41061,Union County,OR,Oregon,Union County OR,50,4,9,41,61,4-9-41-61,West,Pacific +41063,Wallowa County,OR,Oregon,Wallowa County OR,50,4,9,41,63,4-9-41-63,West,Pacific +41065,Wasco County,OR,Oregon,Wasco County OR,50,4,9,41,65,4-9-41-65,West,Pacific +41067,Washington County,OR,Oregon,Washington County OR,50,4,9,41,67,4-9-41-67,West,Pacific +41069,Wheeler County,OR,Oregon,Wheeler County OR,50,4,9,41,69,4-9-41-69,West,Pacific +41071,Yamhill County,OR,Oregon,Yamhill County OR,50,4,9,41,71,4-9-41-71,West,Pacific +42001,Adams County,PA,Pennsylvania,Adams County PA,50,1,2,42,1,1-2-42-1,Northeast,Middle Atlantic +42003,Allegheny County,PA,Pennsylvania,Allegheny County PA,50,1,2,42,3,1-2-42-3,Northeast,Middle Atlantic +42005,Armstrong County,PA,Pennsylvania,Armstrong County PA,50,1,2,42,5,1-2-42-5,Northeast,Middle Atlantic +42007,Beaver County,PA,Pennsylvania,Beaver County PA,50,1,2,42,7,1-2-42-7,Northeast,Middle Atlantic +42009,Bedford County,PA,Pennsylvania,Bedford County PA,50,1,2,42,9,1-2-42-9,Northeast,Middle Atlantic +42011,Berks County,PA,Pennsylvania,Berks County PA,50,1,2,42,11,1-2-42-11,Northeast,Middle Atlantic +42013,Blair County,PA,Pennsylvania,Blair County PA,50,1,2,42,13,1-2-42-13,Northeast,Middle Atlantic +42015,Bradford County,PA,Pennsylvania,Bradford County PA,50,1,2,42,15,1-2-42-15,Northeast,Middle Atlantic +42017,Bucks County,PA,Pennsylvania,Bucks County PA,50,1,2,42,17,1-2-42-17,Northeast,Middle Atlantic +42019,Butler County,PA,Pennsylvania,Butler County PA,50,1,2,42,19,1-2-42-19,Northeast,Middle Atlantic +42021,Cambria County,PA,Pennsylvania,Cambria County PA,50,1,2,42,21,1-2-42-21,Northeast,Middle Atlantic +42023,Cameron County,PA,Pennsylvania,Cameron County PA,50,1,2,42,23,1-2-42-23,Northeast,Middle Atlantic +42025,Carbon County,PA,Pennsylvania,Carbon County PA,50,1,2,42,25,1-2-42-25,Northeast,Middle Atlantic +42027,Centre County,PA,Pennsylvania,Centre County PA,50,1,2,42,27,1-2-42-27,Northeast,Middle Atlantic +42029,Chester County,PA,Pennsylvania,Chester County PA,50,1,2,42,29,1-2-42-29,Northeast,Middle Atlantic +42031,Clarion County,PA,Pennsylvania,Clarion County PA,50,1,2,42,31,1-2-42-31,Northeast,Middle Atlantic +42033,Clearfield County,PA,Pennsylvania,Clearfield County PA,50,1,2,42,33,1-2-42-33,Northeast,Middle Atlantic +42035,Clinton County,PA,Pennsylvania,Clinton County PA,50,1,2,42,35,1-2-42-35,Northeast,Middle Atlantic +42037,Columbia County,PA,Pennsylvania,Columbia County PA,50,1,2,42,37,1-2-42-37,Northeast,Middle Atlantic +42039,Crawford County,PA,Pennsylvania,Crawford County PA,50,1,2,42,39,1-2-42-39,Northeast,Middle Atlantic +42041,Cumberland County,PA,Pennsylvania,Cumberland County PA,50,1,2,42,41,1-2-42-41,Northeast,Middle Atlantic +42043,Dauphin County,PA,Pennsylvania,Dauphin County PA,50,1,2,42,43,1-2-42-43,Northeast,Middle Atlantic +42045,Delaware County,PA,Pennsylvania,Delaware County PA,50,1,2,42,45,1-2-42-45,Northeast,Middle Atlantic +42047,Elk County,PA,Pennsylvania,Elk County PA,50,1,2,42,47,1-2-42-47,Northeast,Middle Atlantic +42049,Erie County,PA,Pennsylvania,Erie County PA,50,1,2,42,49,1-2-42-49,Northeast,Middle Atlantic +42051,Fayette County,PA,Pennsylvania,Fayette County PA,50,1,2,42,51,1-2-42-51,Northeast,Middle Atlantic +42053,Forest County,PA,Pennsylvania,Forest County PA,50,1,2,42,53,1-2-42-53,Northeast,Middle Atlantic +42055,Franklin County,PA,Pennsylvania,Franklin County PA,50,1,2,42,55,1-2-42-55,Northeast,Middle Atlantic +42057,Fulton County,PA,Pennsylvania,Fulton County PA,50,1,2,42,57,1-2-42-57,Northeast,Middle Atlantic +42059,Greene County,PA,Pennsylvania,Greene County PA,50,1,2,42,59,1-2-42-59,Northeast,Middle Atlantic +42061,Huntingdon County,PA,Pennsylvania,Huntingdon County PA,50,1,2,42,61,1-2-42-61,Northeast,Middle Atlantic +42063,Indiana County,PA,Pennsylvania,Indiana County PA,50,1,2,42,63,1-2-42-63,Northeast,Middle Atlantic +42065,Jefferson County,PA,Pennsylvania,Jefferson County PA,50,1,2,42,65,1-2-42-65,Northeast,Middle Atlantic +42067,Juniata County,PA,Pennsylvania,Juniata County PA,50,1,2,42,67,1-2-42-67,Northeast,Middle Atlantic +42069,Lackawanna County,PA,Pennsylvania,Lackawanna County PA,50,1,2,42,69,1-2-42-69,Northeast,Middle Atlantic +42071,Lancaster County,PA,Pennsylvania,Lancaster County PA,50,1,2,42,71,1-2-42-71,Northeast,Middle Atlantic +42073,Lawrence County,PA,Pennsylvania,Lawrence County PA,50,1,2,42,73,1-2-42-73,Northeast,Middle Atlantic +42075,Lebanon County,PA,Pennsylvania,Lebanon County PA,50,1,2,42,75,1-2-42-75,Northeast,Middle Atlantic +42077,Lehigh County,PA,Pennsylvania,Lehigh County PA,50,1,2,42,77,1-2-42-77,Northeast,Middle Atlantic +42079,Luzerne County,PA,Pennsylvania,Luzerne County PA,50,1,2,42,79,1-2-42-79,Northeast,Middle Atlantic +42081,Lycoming County,PA,Pennsylvania,Lycoming County PA,50,1,2,42,81,1-2-42-81,Northeast,Middle Atlantic +42083,McKean County,PA,Pennsylvania,McKean County PA,50,1,2,42,83,1-2-42-83,Northeast,Middle Atlantic +42085,Mercer County,PA,Pennsylvania,Mercer County PA,50,1,2,42,85,1-2-42-85,Northeast,Middle Atlantic +42087,Mifflin County,PA,Pennsylvania,Mifflin County PA,50,1,2,42,87,1-2-42-87,Northeast,Middle Atlantic +42089,Monroe County,PA,Pennsylvania,Monroe County PA,50,1,2,42,89,1-2-42-89,Northeast,Middle Atlantic +42091,Montgomery County,PA,Pennsylvania,Montgomery County PA,50,1,2,42,91,1-2-42-91,Northeast,Middle Atlantic +42093,Montour County,PA,Pennsylvania,Montour County PA,50,1,2,42,93,1-2-42-93,Northeast,Middle Atlantic +42095,Northampton County,PA,Pennsylvania,Northampton County PA,50,1,2,42,95,1-2-42-95,Northeast,Middle Atlantic +42097,Northumberland County,PA,Pennsylvania,Northumberland County PA,50,1,2,42,97,1-2-42-97,Northeast,Middle Atlantic +42099,Perry County,PA,Pennsylvania,Perry County PA,50,1,2,42,99,1-2-42-99,Northeast,Middle Atlantic +42101,Philadelphia County,PA,Pennsylvania,Philadelphia County PA,50,1,2,42,101,1-2-42-101,Northeast,Middle Atlantic +42103,Pike County,PA,Pennsylvania,Pike County PA,50,1,2,42,103,1-2-42-103,Northeast,Middle Atlantic +42105,Potter County,PA,Pennsylvania,Potter County PA,50,1,2,42,105,1-2-42-105,Northeast,Middle Atlantic +42107,Schuylkill County,PA,Pennsylvania,Schuylkill County PA,50,1,2,42,107,1-2-42-107,Northeast,Middle Atlantic +42109,Snyder County,PA,Pennsylvania,Snyder County PA,50,1,2,42,109,1-2-42-109,Northeast,Middle Atlantic +42111,Somerset County,PA,Pennsylvania,Somerset County PA,50,1,2,42,111,1-2-42-111,Northeast,Middle Atlantic +42113,Sullivan County,PA,Pennsylvania,Sullivan County PA,50,1,2,42,113,1-2-42-113,Northeast,Middle Atlantic +42115,Susquehanna County,PA,Pennsylvania,Susquehanna County PA,50,1,2,42,115,1-2-42-115,Northeast,Middle Atlantic +42117,Tioga County,PA,Pennsylvania,Tioga County PA,50,1,2,42,117,1-2-42-117,Northeast,Middle Atlantic +42119,Union County,PA,Pennsylvania,Union County PA,50,1,2,42,119,1-2-42-119,Northeast,Middle Atlantic +42121,Venango County,PA,Pennsylvania,Venango County PA,50,1,2,42,121,1-2-42-121,Northeast,Middle Atlantic +42123,Warren County,PA,Pennsylvania,Warren County PA,50,1,2,42,123,1-2-42-123,Northeast,Middle Atlantic +42125,Washington County,PA,Pennsylvania,Washington County PA,50,1,2,42,125,1-2-42-125,Northeast,Middle Atlantic +42127,Wayne County,PA,Pennsylvania,Wayne County PA,50,1,2,42,127,1-2-42-127,Northeast,Middle Atlantic +42129,Westmoreland County,PA,Pennsylvania,Westmoreland County PA,50,1,2,42,129,1-2-42-129,Northeast,Middle Atlantic +42131,Wyoming County,PA,Pennsylvania,Wyoming County PA,50,1,2,42,131,1-2-42-131,Northeast,Middle Atlantic +42133,York County,PA,Pennsylvania,York County PA,50,1,2,42,133,1-2-42-133,Northeast,Middle Atlantic +44001,Bristol County,RI,Rhode Island,Bristol County RI,50,1,1,44,1,1-1-44-1,Northeast,New England +44003,Kent County,RI,Rhode Island,Kent County RI,50,1,1,44,3,1-1-44-3,Northeast,New England +44005,Newport County,RI,Rhode Island,Newport County RI,50,1,1,44,5,1-1-44-5,Northeast,New England +44007,Providence County,RI,Rhode Island,Providence County RI,50,1,1,44,7,1-1-44-7,Northeast,New England +44009,Washington County,RI,Rhode Island,Washington County RI,50,1,1,44,9,1-1-44-9,Northeast,New England +45001,Abbeville County,SC,South Carolina,Abbeville County SC,50,3,5,45,1,3-5-45-1,South,South Atlantic +45003,Aiken County,SC,South Carolina,Aiken County SC,50,3,5,45,3,3-5-45-3,South,South Atlantic +45005,Allendale County,SC,South Carolina,Allendale County SC,50,3,5,45,5,3-5-45-5,South,South Atlantic +45007,Anderson County,SC,South Carolina,Anderson County SC,50,3,5,45,7,3-5-45-7,South,South Atlantic +45009,Bamberg County,SC,South Carolina,Bamberg County SC,50,3,5,45,9,3-5-45-9,South,South Atlantic +45011,Barnwell County,SC,South Carolina,Barnwell County SC,50,3,5,45,11,3-5-45-11,South,South Atlantic +45013,Beaufort County,SC,South Carolina,Beaufort County SC,50,3,5,45,13,3-5-45-13,South,South Atlantic +45015,Berkeley County,SC,South Carolina,Berkeley County SC,50,3,5,45,15,3-5-45-15,South,South Atlantic +45017,Calhoun County,SC,South Carolina,Calhoun County SC,50,3,5,45,17,3-5-45-17,South,South Atlantic +45019,Charleston County,SC,South Carolina,Charleston County SC,50,3,5,45,19,3-5-45-19,South,South Atlantic +45021,Cherokee County,SC,South Carolina,Cherokee County SC,50,3,5,45,21,3-5-45-21,South,South Atlantic +45023,Chester County,SC,South Carolina,Chester County SC,50,3,5,45,23,3-5-45-23,South,South Atlantic +45025,Chesterfield County,SC,South Carolina,Chesterfield County SC,50,3,5,45,25,3-5-45-25,South,South Atlantic +45027,Clarendon County,SC,South Carolina,Clarendon County SC,50,3,5,45,27,3-5-45-27,South,South Atlantic +45029,Colleton County,SC,South Carolina,Colleton County SC,50,3,5,45,29,3-5-45-29,South,South Atlantic +45031,Darlington County,SC,South Carolina,Darlington County SC,50,3,5,45,31,3-5-45-31,South,South Atlantic +45033,Dillon County,SC,South Carolina,Dillon County SC,50,3,5,45,33,3-5-45-33,South,South Atlantic +45035,Dorchester County,SC,South Carolina,Dorchester County SC,50,3,5,45,35,3-5-45-35,South,South Atlantic +45037,Edgefield County,SC,South Carolina,Edgefield County SC,50,3,5,45,37,3-5-45-37,South,South Atlantic +45039,Fairfield County,SC,South Carolina,Fairfield County SC,50,3,5,45,39,3-5-45-39,South,South Atlantic +45041,Florence County,SC,South Carolina,Florence County SC,50,3,5,45,41,3-5-45-41,South,South Atlantic +45043,Georgetown County,SC,South Carolina,Georgetown County SC,50,3,5,45,43,3-5-45-43,South,South Atlantic +45045,Greenville County,SC,South Carolina,Greenville County SC,50,3,5,45,45,3-5-45-45,South,South Atlantic +45047,Greenwood County,SC,South Carolina,Greenwood County SC,50,3,5,45,47,3-5-45-47,South,South Atlantic +45049,Hampton County,SC,South Carolina,Hampton County SC,50,3,5,45,49,3-5-45-49,South,South Atlantic +45051,Horry County,SC,South Carolina,Horry County SC,50,3,5,45,51,3-5-45-51,South,South Atlantic +45053,Jasper County,SC,South Carolina,Jasper County SC,50,3,5,45,53,3-5-45-53,South,South Atlantic +45055,Kershaw County,SC,South Carolina,Kershaw County SC,50,3,5,45,55,3-5-45-55,South,South Atlantic +45057,Lancaster County,SC,South Carolina,Lancaster County SC,50,3,5,45,57,3-5-45-57,South,South Atlantic +45059,Laurens County,SC,South Carolina,Laurens County SC,50,3,5,45,59,3-5-45-59,South,South Atlantic +45061,Lee County,SC,South Carolina,Lee County SC,50,3,5,45,61,3-5-45-61,South,South Atlantic +45063,Lexington County,SC,South Carolina,Lexington County SC,50,3,5,45,63,3-5-45-63,South,South Atlantic +45065,McCormick County,SC,South Carolina,McCormick County SC,50,3,5,45,65,3-5-45-65,South,South Atlantic +45067,Marion County,SC,South Carolina,Marion County SC,50,3,5,45,67,3-5-45-67,South,South Atlantic +45069,Marlboro County,SC,South Carolina,Marlboro County SC,50,3,5,45,69,3-5-45-69,South,South Atlantic +45071,Newberry County,SC,South Carolina,Newberry County SC,50,3,5,45,71,3-5-45-71,South,South Atlantic +45073,Oconee County,SC,South Carolina,Oconee County SC,50,3,5,45,73,3-5-45-73,South,South Atlantic +45075,Orangeburg County,SC,South Carolina,Orangeburg County SC,50,3,5,45,75,3-5-45-75,South,South Atlantic +45077,Pickens County,SC,South Carolina,Pickens County SC,50,3,5,45,77,3-5-45-77,South,South Atlantic +45079,Richland County,SC,South Carolina,Richland County SC,50,3,5,45,79,3-5-45-79,South,South Atlantic +45081,Saluda County,SC,South Carolina,Saluda County SC,50,3,5,45,81,3-5-45-81,South,South Atlantic +45083,Spartanburg County,SC,South Carolina,Spartanburg County SC,50,3,5,45,83,3-5-45-83,South,South Atlantic +45085,Sumter County,SC,South Carolina,Sumter County SC,50,3,5,45,85,3-5-45-85,South,South Atlantic +45087,Union County,SC,South Carolina,Union County SC,50,3,5,45,87,3-5-45-87,South,South Atlantic +45089,Williamsburg County,SC,South Carolina,Williamsburg County SC,50,3,5,45,89,3-5-45-89,South,South Atlantic +45091,York County,SC,South Carolina,York County SC,50,3,5,45,91,3-5-45-91,South,South Atlantic +46003,Aurora County,SD,South Dakota,Aurora County SD,50,2,4,46,3,2-4-46-3,Midwest,West North Central +46005,Beadle County,SD,South Dakota,Beadle County SD,50,2,4,46,5,2-4-46-5,Midwest,West North Central +46007,Bennett County,SD,South Dakota,Bennett County SD,50,2,4,46,7,2-4-46-7,Midwest,West North Central +46009,Bon Homme County,SD,South Dakota,Bon Homme County SD,50,2,4,46,9,2-4-46-9,Midwest,West North Central +46011,Brookings County,SD,South Dakota,Brookings County SD,50,2,4,46,11,2-4-46-11,Midwest,West North Central +46013,Brown County,SD,South Dakota,Brown County SD,50,2,4,46,13,2-4-46-13,Midwest,West North Central +46015,Brule County,SD,South Dakota,Brule County SD,50,2,4,46,15,2-4-46-15,Midwest,West North Central +46017,Buffalo County,SD,South Dakota,Buffalo County SD,50,2,4,46,17,2-4-46-17,Midwest,West North Central +46019,Butte County,SD,South Dakota,Butte County SD,50,2,4,46,19,2-4-46-19,Midwest,West North Central +46021,Campbell County,SD,South Dakota,Campbell County SD,50,2,4,46,21,2-4-46-21,Midwest,West North Central +46023,Charles Mix County,SD,South Dakota,Charles Mix County SD,50,2,4,46,23,2-4-46-23,Midwest,West North Central +46025,Clark County,SD,South Dakota,Clark County SD,50,2,4,46,25,2-4-46-25,Midwest,West North Central +46027,Clay County,SD,South Dakota,Clay County SD,50,2,4,46,27,2-4-46-27,Midwest,West North Central +46029,Codington County,SD,South Dakota,Codington County SD,50,2,4,46,29,2-4-46-29,Midwest,West North Central +46031,Corson County,SD,South Dakota,Corson County SD,50,2,4,46,31,2-4-46-31,Midwest,West North Central +46033,Custer County,SD,South Dakota,Custer County SD,50,2,4,46,33,2-4-46-33,Midwest,West North Central +46035,Davison County,SD,South Dakota,Davison County SD,50,2,4,46,35,2-4-46-35,Midwest,West North Central +46037,Day County,SD,South Dakota,Day County SD,50,2,4,46,37,2-4-46-37,Midwest,West North Central +46039,Deuel County,SD,South Dakota,Deuel County SD,50,2,4,46,39,2-4-46-39,Midwest,West North Central +46041,Dewey County,SD,South Dakota,Dewey County SD,50,2,4,46,41,2-4-46-41,Midwest,West North Central +46043,Douglas County,SD,South Dakota,Douglas County SD,50,2,4,46,43,2-4-46-43,Midwest,West North Central +46045,Edmunds County,SD,South Dakota,Edmunds County SD,50,2,4,46,45,2-4-46-45,Midwest,West North Central +46047,Fall River County,SD,South Dakota,Fall River County SD,50,2,4,46,47,2-4-46-47,Midwest,West North Central +46049,Faulk County,SD,South Dakota,Faulk County SD,50,2,4,46,49,2-4-46-49,Midwest,West North Central +46051,Grant County,SD,South Dakota,Grant County SD,50,2,4,46,51,2-4-46-51,Midwest,West North Central +46053,Gregory County,SD,South Dakota,Gregory County SD,50,2,4,46,53,2-4-46-53,Midwest,West North Central +46055,Haakon County,SD,South Dakota,Haakon County SD,50,2,4,46,55,2-4-46-55,Midwest,West North Central +46057,Hamlin County,SD,South Dakota,Hamlin County SD,50,2,4,46,57,2-4-46-57,Midwest,West North Central +46059,Hand County,SD,South Dakota,Hand County SD,50,2,4,46,59,2-4-46-59,Midwest,West North Central +46061,Hanson County,SD,South Dakota,Hanson County SD,50,2,4,46,61,2-4-46-61,Midwest,West North Central +46063,Harding County,SD,South Dakota,Harding County SD,50,2,4,46,63,2-4-46-63,Midwest,West North Central +46065,Hughes County,SD,South Dakota,Hughes County SD,50,2,4,46,65,2-4-46-65,Midwest,West North Central +46067,Hutchinson County,SD,South Dakota,Hutchinson County SD,50,2,4,46,67,2-4-46-67,Midwest,West North Central +46069,Hyde County,SD,South Dakota,Hyde County SD,50,2,4,46,69,2-4-46-69,Midwest,West North Central +46071,Jackson County,SD,South Dakota,Jackson County SD,50,2,4,46,71,2-4-46-71,Midwest,West North Central +46073,Jerauld County,SD,South Dakota,Jerauld County SD,50,2,4,46,73,2-4-46-73,Midwest,West North Central +46075,Jones County,SD,South Dakota,Jones County SD,50,2,4,46,75,2-4-46-75,Midwest,West North Central +46077,Kingsbury County,SD,South Dakota,Kingsbury County SD,50,2,4,46,77,2-4-46-77,Midwest,West North Central +46079,Lake County,SD,South Dakota,Lake County SD,50,2,4,46,79,2-4-46-79,Midwest,West North Central +46081,Lawrence County,SD,South Dakota,Lawrence County SD,50,2,4,46,81,2-4-46-81,Midwest,West North Central +46083,Lincoln County,SD,South Dakota,Lincoln County SD,50,2,4,46,83,2-4-46-83,Midwest,West North Central +46085,Lyman County,SD,South Dakota,Lyman County SD,50,2,4,46,85,2-4-46-85,Midwest,West North Central +46087,McCook County,SD,South Dakota,McCook County SD,50,2,4,46,87,2-4-46-87,Midwest,West North Central +46089,McPherson County,SD,South Dakota,McPherson County SD,50,2,4,46,89,2-4-46-89,Midwest,West North Central +46091,Marshall County,SD,South Dakota,Marshall County SD,50,2,4,46,91,2-4-46-91,Midwest,West North Central +46093,Meade County,SD,South Dakota,Meade County SD,50,2,4,46,93,2-4-46-93,Midwest,West North Central +46095,Mellette County,SD,South Dakota,Mellette County SD,50,2,4,46,95,2-4-46-95,Midwest,West North Central +46097,Miner County,SD,South Dakota,Miner County SD,50,2,4,46,97,2-4-46-97,Midwest,West North Central +46099,Minnehaha County,SD,South Dakota,Minnehaha County SD,50,2,4,46,99,2-4-46-99,Midwest,West North Central +46101,Moody County,SD,South Dakota,Moody County SD,50,2,4,46,101,2-4-46-101,Midwest,West North Central +46102,Oglala Lakota County,SD,South Dakota,Oglala Lakota County SD,50,2,4,46,102,2-4-46-102,Midwest,West North Central +46103,Pennington County,SD,South Dakota,Pennington County SD,50,2,4,46,103,2-4-46-103,Midwest,West North Central +46105,Perkins County,SD,South Dakota,Perkins County SD,50,2,4,46,105,2-4-46-105,Midwest,West North Central +46107,Potter County,SD,South Dakota,Potter County SD,50,2,4,46,107,2-4-46-107,Midwest,West North Central +46109,Roberts County,SD,South Dakota,Roberts County SD,50,2,4,46,109,2-4-46-109,Midwest,West North Central +46111,Sanborn County,SD,South Dakota,Sanborn County SD,50,2,4,46,111,2-4-46-111,Midwest,West North Central +46113,Shannon County,SD,South Dakota,Shannon County SD,NA,NA,NA,NA,NA,NA-NA-NA-NA,NA,NA +46115,Spink County,SD,South Dakota,Spink County SD,50,2,4,46,115,2-4-46-115,Midwest,West North Central +46117,Stanley County,SD,South Dakota,Stanley County SD,50,2,4,46,117,2-4-46-117,Midwest,West North Central +46119,Sully County,SD,South Dakota,Sully County SD,50,2,4,46,119,2-4-46-119,Midwest,West North Central +46121,Todd County,SD,South Dakota,Todd County SD,50,2,4,46,121,2-4-46-121,Midwest,West North Central +46123,Tripp County,SD,South Dakota,Tripp County SD,50,2,4,46,123,2-4-46-123,Midwest,West North Central +46125,Turner County,SD,South Dakota,Turner County SD,50,2,4,46,125,2-4-46-125,Midwest,West North Central +46127,Union County,SD,South Dakota,Union County SD,50,2,4,46,127,2-4-46-127,Midwest,West North Central +46129,Walworth County,SD,South Dakota,Walworth County SD,50,2,4,46,129,2-4-46-129,Midwest,West North Central +46135,Yankton County,SD,South Dakota,Yankton County SD,50,2,4,46,135,2-4-46-135,Midwest,West North Central +46137,Ziebach County,SD,South Dakota,Ziebach County SD,50,2,4,46,137,2-4-46-137,Midwest,West North Central +47001,Anderson County,TN,Tennessee,Anderson County TN,50,3,6,47,1,3-6-47-1,South,East South Central +47003,Bedford County,TN,Tennessee,Bedford County TN,50,3,6,47,3,3-6-47-3,South,East South Central +47005,Benton County,TN,Tennessee,Benton County TN,50,3,6,47,5,3-6-47-5,South,East South Central +47007,Bledsoe County,TN,Tennessee,Bledsoe County TN,50,3,6,47,7,3-6-47-7,South,East South Central +47009,Blount County,TN,Tennessee,Blount County TN,50,3,6,47,9,3-6-47-9,South,East South Central +47011,Bradley County,TN,Tennessee,Bradley County TN,50,3,6,47,11,3-6-47-11,South,East South Central +47013,Campbell County,TN,Tennessee,Campbell County TN,50,3,6,47,13,3-6-47-13,South,East South Central +47015,Cannon County,TN,Tennessee,Cannon County TN,50,3,6,47,15,3-6-47-15,South,East South Central +47017,Carroll County,TN,Tennessee,Carroll County TN,50,3,6,47,17,3-6-47-17,South,East South Central +47019,Carter County,TN,Tennessee,Carter County TN,50,3,6,47,19,3-6-47-19,South,East South Central +47021,Cheatham County,TN,Tennessee,Cheatham County TN,50,3,6,47,21,3-6-47-21,South,East South Central +47023,Chester County,TN,Tennessee,Chester County TN,50,3,6,47,23,3-6-47-23,South,East South Central +47025,Claiborne County,TN,Tennessee,Claiborne County TN,50,3,6,47,25,3-6-47-25,South,East South Central +47027,Clay County,TN,Tennessee,Clay County TN,50,3,6,47,27,3-6-47-27,South,East South Central +47029,Cocke County,TN,Tennessee,Cocke County TN,50,3,6,47,29,3-6-47-29,South,East South Central +47031,Coffee County,TN,Tennessee,Coffee County TN,50,3,6,47,31,3-6-47-31,South,East South Central +47033,Crockett County,TN,Tennessee,Crockett County TN,50,3,6,47,33,3-6-47-33,South,East South Central +47035,Cumberland County,TN,Tennessee,Cumberland County TN,50,3,6,47,35,3-6-47-35,South,East South Central +47037,Davidson County,TN,Tennessee,Davidson County TN,50,3,6,47,37,3-6-47-37,South,East South Central +47039,Decatur County,TN,Tennessee,Decatur County TN,50,3,6,47,39,3-6-47-39,South,East South Central +47041,DeKalb County,TN,Tennessee,DeKalb County TN,50,3,6,47,41,3-6-47-41,South,East South Central +47043,Dickson County,TN,Tennessee,Dickson County TN,50,3,6,47,43,3-6-47-43,South,East South Central +47045,Dyer County,TN,Tennessee,Dyer County TN,50,3,6,47,45,3-6-47-45,South,East South Central +47047,Fayette County,TN,Tennessee,Fayette County TN,50,3,6,47,47,3-6-47-47,South,East South Central +47049,Fentress County,TN,Tennessee,Fentress County TN,50,3,6,47,49,3-6-47-49,South,East South Central +47051,Franklin County,TN,Tennessee,Franklin County TN,50,3,6,47,51,3-6-47-51,South,East South Central +47053,Gibson County,TN,Tennessee,Gibson County TN,50,3,6,47,53,3-6-47-53,South,East South Central +47055,Giles County,TN,Tennessee,Giles County TN,50,3,6,47,55,3-6-47-55,South,East South Central +47057,Grainger County,TN,Tennessee,Grainger County TN,50,3,6,47,57,3-6-47-57,South,East South Central +47059,Greene County,TN,Tennessee,Greene County TN,50,3,6,47,59,3-6-47-59,South,East South Central +47061,Grundy County,TN,Tennessee,Grundy County TN,50,3,6,47,61,3-6-47-61,South,East South Central +47063,Hamblen County,TN,Tennessee,Hamblen County TN,50,3,6,47,63,3-6-47-63,South,East South Central +47065,Hamilton County,TN,Tennessee,Hamilton County TN,50,3,6,47,65,3-6-47-65,South,East South Central +47067,Hancock County,TN,Tennessee,Hancock County TN,50,3,6,47,67,3-6-47-67,South,East South Central +47069,Hardeman County,TN,Tennessee,Hardeman County TN,50,3,6,47,69,3-6-47-69,South,East South Central +47071,Hardin County,TN,Tennessee,Hardin County TN,50,3,6,47,71,3-6-47-71,South,East South Central +47073,Hawkins County,TN,Tennessee,Hawkins County TN,50,3,6,47,73,3-6-47-73,South,East South Central +47075,Haywood County,TN,Tennessee,Haywood County TN,50,3,6,47,75,3-6-47-75,South,East South Central +47077,Henderson County,TN,Tennessee,Henderson County TN,50,3,6,47,77,3-6-47-77,South,East South Central +47079,Henry County,TN,Tennessee,Henry County TN,50,3,6,47,79,3-6-47-79,South,East South Central +47081,Hickman County,TN,Tennessee,Hickman County TN,50,3,6,47,81,3-6-47-81,South,East South Central +47083,Houston County,TN,Tennessee,Houston County TN,50,3,6,47,83,3-6-47-83,South,East South Central +47085,Humphreys County,TN,Tennessee,Humphreys County TN,50,3,6,47,85,3-6-47-85,South,East South Central +47087,Jackson County,TN,Tennessee,Jackson County TN,50,3,6,47,87,3-6-47-87,South,East South Central +47089,Jefferson County,TN,Tennessee,Jefferson County TN,50,3,6,47,89,3-6-47-89,South,East South Central +47091,Johnson County,TN,Tennessee,Johnson County TN,50,3,6,47,91,3-6-47-91,South,East South Central +47093,Knox County,TN,Tennessee,Knox County TN,50,3,6,47,93,3-6-47-93,South,East South Central +47095,Lake County,TN,Tennessee,Lake County TN,50,3,6,47,95,3-6-47-95,South,East South Central +47097,Lauderdale County,TN,Tennessee,Lauderdale County TN,50,3,6,47,97,3-6-47-97,South,East South Central +47099,Lawrence County,TN,Tennessee,Lawrence County TN,50,3,6,47,99,3-6-47-99,South,East South Central +47101,Lewis County,TN,Tennessee,Lewis County TN,50,3,6,47,101,3-6-47-101,South,East South Central +47103,Lincoln County,TN,Tennessee,Lincoln County TN,50,3,6,47,103,3-6-47-103,South,East South Central +47105,Loudon County,TN,Tennessee,Loudon County TN,50,3,6,47,105,3-6-47-105,South,East South Central +47107,McMinn County,TN,Tennessee,McMinn County TN,50,3,6,47,107,3-6-47-107,South,East South Central +47109,McNairy County,TN,Tennessee,McNairy County TN,50,3,6,47,109,3-6-47-109,South,East South Central +47111,Macon County,TN,Tennessee,Macon County TN,50,3,6,47,111,3-6-47-111,South,East South Central +47113,Madison County,TN,Tennessee,Madison County TN,50,3,6,47,113,3-6-47-113,South,East South Central +47115,Marion County,TN,Tennessee,Marion County TN,50,3,6,47,115,3-6-47-115,South,East South Central +47117,Marshall County,TN,Tennessee,Marshall County TN,50,3,6,47,117,3-6-47-117,South,East South Central +47119,Maury County,TN,Tennessee,Maury County TN,50,3,6,47,119,3-6-47-119,South,East South Central +47121,Meigs County,TN,Tennessee,Meigs County TN,50,3,6,47,121,3-6-47-121,South,East South Central +47123,Monroe County,TN,Tennessee,Monroe County TN,50,3,6,47,123,3-6-47-123,South,East South Central +47125,Montgomery County,TN,Tennessee,Montgomery County TN,50,3,6,47,125,3-6-47-125,South,East South Central +47127,Moore County,TN,Tennessee,Moore County TN,50,3,6,47,127,3-6-47-127,South,East South Central +47129,Morgan County,TN,Tennessee,Morgan County TN,50,3,6,47,129,3-6-47-129,South,East South Central +47131,Obion County,TN,Tennessee,Obion County TN,50,3,6,47,131,3-6-47-131,South,East South Central +47133,Overton County,TN,Tennessee,Overton County TN,50,3,6,47,133,3-6-47-133,South,East South Central +47135,Perry County,TN,Tennessee,Perry County TN,50,3,6,47,135,3-6-47-135,South,East South Central +47137,Pickett County,TN,Tennessee,Pickett County TN,50,3,6,47,137,3-6-47-137,South,East South Central +47139,Polk County,TN,Tennessee,Polk County TN,50,3,6,47,139,3-6-47-139,South,East South Central +47141,Putnam County,TN,Tennessee,Putnam County TN,50,3,6,47,141,3-6-47-141,South,East South Central +47143,Rhea County,TN,Tennessee,Rhea County TN,50,3,6,47,143,3-6-47-143,South,East South Central +47145,Roane County,TN,Tennessee,Roane County TN,50,3,6,47,145,3-6-47-145,South,East South Central +47147,Robertson County,TN,Tennessee,Robertson County TN,50,3,6,47,147,3-6-47-147,South,East South Central +47149,Rutherford County,TN,Tennessee,Rutherford County TN,50,3,6,47,149,3-6-47-149,South,East South Central +47151,Scott County,TN,Tennessee,Scott County TN,50,3,6,47,151,3-6-47-151,South,East South Central +47153,Sequatchie County,TN,Tennessee,Sequatchie County TN,50,3,6,47,153,3-6-47-153,South,East South Central +47155,Sevier County,TN,Tennessee,Sevier County TN,50,3,6,47,155,3-6-47-155,South,East South Central +47157,Shelby County,TN,Tennessee,Shelby County TN,50,3,6,47,157,3-6-47-157,South,East South Central +47159,Smith County,TN,Tennessee,Smith County TN,50,3,6,47,159,3-6-47-159,South,East South Central +47161,Stewart County,TN,Tennessee,Stewart County TN,50,3,6,47,161,3-6-47-161,South,East South Central +47163,Sullivan County,TN,Tennessee,Sullivan County TN,50,3,6,47,163,3-6-47-163,South,East South Central +47165,Sumner County,TN,Tennessee,Sumner County TN,50,3,6,47,165,3-6-47-165,South,East South Central +47167,Tipton County,TN,Tennessee,Tipton County TN,50,3,6,47,167,3-6-47-167,South,East South Central +47169,Trousdale County,TN,Tennessee,Trousdale County TN,50,3,6,47,169,3-6-47-169,South,East South Central +47171,Unicoi County,TN,Tennessee,Unicoi County TN,50,3,6,47,171,3-6-47-171,South,East South Central +47173,Union County,TN,Tennessee,Union County TN,50,3,6,47,173,3-6-47-173,South,East South Central +47175,Van Buren County,TN,Tennessee,Van Buren County TN,50,3,6,47,175,3-6-47-175,South,East South Central +47177,Warren County,TN,Tennessee,Warren County TN,50,3,6,47,177,3-6-47-177,South,East South Central +47179,Washington County,TN,Tennessee,Washington County TN,50,3,6,47,179,3-6-47-179,South,East South Central +47181,Wayne County,TN,Tennessee,Wayne County TN,50,3,6,47,181,3-6-47-181,South,East South Central +47183,Weakley County,TN,Tennessee,Weakley County TN,50,3,6,47,183,3-6-47-183,South,East South Central +47185,White County,TN,Tennessee,White County TN,50,3,6,47,185,3-6-47-185,South,East South Central +47187,Williamson County,TN,Tennessee,Williamson County TN,50,3,6,47,187,3-6-47-187,South,East South Central +47189,Wilson County,TN,Tennessee,Wilson County TN,50,3,6,47,189,3-6-47-189,South,East South Central +48001,Anderson County,TX,Texas,Anderson County TX,50,3,7,48,1,3-7-48-1,South,West South Central +48003,Andrews County,TX,Texas,Andrews County TX,50,3,7,48,3,3-7-48-3,South,West South Central +48005,Angelina County,TX,Texas,Angelina County TX,50,3,7,48,5,3-7-48-5,South,West South Central +48007,Aransas County,TX,Texas,Aransas County TX,50,3,7,48,7,3-7-48-7,South,West South Central +48009,Archer County,TX,Texas,Archer County TX,50,3,7,48,9,3-7-48-9,South,West South Central +48011,Armstrong County,TX,Texas,Armstrong County TX,50,3,7,48,11,3-7-48-11,South,West South Central +48013,Atascosa County,TX,Texas,Atascosa County TX,50,3,7,48,13,3-7-48-13,South,West South Central +48015,Austin County,TX,Texas,Austin County TX,50,3,7,48,15,3-7-48-15,South,West South Central +48017,Bailey County,TX,Texas,Bailey County TX,50,3,7,48,17,3-7-48-17,South,West South Central +48019,Bandera County,TX,Texas,Bandera County TX,50,3,7,48,19,3-7-48-19,South,West South Central +48021,Bastrop County,TX,Texas,Bastrop County TX,50,3,7,48,21,3-7-48-21,South,West South Central +48023,Baylor County,TX,Texas,Baylor County TX,50,3,7,48,23,3-7-48-23,South,West South Central +48025,Bee County,TX,Texas,Bee County TX,50,3,7,48,25,3-7-48-25,South,West South Central +48027,Bell County,TX,Texas,Bell County TX,50,3,7,48,27,3-7-48-27,South,West South Central +48029,Bexar County,TX,Texas,Bexar County TX,50,3,7,48,29,3-7-48-29,South,West South Central +48031,Blanco County,TX,Texas,Blanco County TX,50,3,7,48,31,3-7-48-31,South,West South Central +48033,Borden County,TX,Texas,Borden County TX,50,3,7,48,33,3-7-48-33,South,West South Central +48035,Bosque County,TX,Texas,Bosque County TX,50,3,7,48,35,3-7-48-35,South,West South Central +48037,Bowie County,TX,Texas,Bowie County TX,50,3,7,48,37,3-7-48-37,South,West South Central +48039,Brazoria County,TX,Texas,Brazoria County TX,50,3,7,48,39,3-7-48-39,South,West South Central +48041,Brazos County,TX,Texas,Brazos County TX,50,3,7,48,41,3-7-48-41,South,West South Central +48043,Brewster County,TX,Texas,Brewster County TX,50,3,7,48,43,3-7-48-43,South,West South Central +48045,Briscoe County,TX,Texas,Briscoe County TX,50,3,7,48,45,3-7-48-45,South,West South Central +48047,Brooks County,TX,Texas,Brooks County TX,50,3,7,48,47,3-7-48-47,South,West South Central +48049,Brown County,TX,Texas,Brown County TX,50,3,7,48,49,3-7-48-49,South,West South Central +48051,Burleson County,TX,Texas,Burleson County TX,50,3,7,48,51,3-7-48-51,South,West South Central +48053,Burnet County,TX,Texas,Burnet County TX,50,3,7,48,53,3-7-48-53,South,West South Central +48055,Caldwell County,TX,Texas,Caldwell County TX,50,3,7,48,55,3-7-48-55,South,West South Central +48057,Calhoun County,TX,Texas,Calhoun County TX,50,3,7,48,57,3-7-48-57,South,West South Central +48059,Callahan County,TX,Texas,Callahan County TX,50,3,7,48,59,3-7-48-59,South,West South Central +48061,Cameron County,TX,Texas,Cameron County TX,50,3,7,48,61,3-7-48-61,South,West South Central +48063,Camp County,TX,Texas,Camp County TX,50,3,7,48,63,3-7-48-63,South,West South Central +48065,Carson County,TX,Texas,Carson County TX,50,3,7,48,65,3-7-48-65,South,West South Central +48067,Cass County,TX,Texas,Cass County TX,50,3,7,48,67,3-7-48-67,South,West South Central +48069,Castro County,TX,Texas,Castro County TX,50,3,7,48,69,3-7-48-69,South,West South Central +48071,Chambers County,TX,Texas,Chambers County TX,50,3,7,48,71,3-7-48-71,South,West South Central +48073,Cherokee County,TX,Texas,Cherokee County TX,50,3,7,48,73,3-7-48-73,South,West South Central +48075,Childress County,TX,Texas,Childress County TX,50,3,7,48,75,3-7-48-75,South,West South Central +48077,Clay County,TX,Texas,Clay County TX,50,3,7,48,77,3-7-48-77,South,West South Central +48079,Cochran County,TX,Texas,Cochran County TX,50,3,7,48,79,3-7-48-79,South,West South Central +48081,Coke County,TX,Texas,Coke County TX,50,3,7,48,81,3-7-48-81,South,West South Central +48083,Coleman County,TX,Texas,Coleman County TX,50,3,7,48,83,3-7-48-83,South,West South Central +48085,Collin County,TX,Texas,Collin County TX,50,3,7,48,85,3-7-48-85,South,West South Central +48087,Collingsworth County,TX,Texas,Collingsworth County TX,50,3,7,48,87,3-7-48-87,South,West South Central +48089,Colorado County,TX,Texas,Colorado County TX,50,3,7,48,89,3-7-48-89,South,West South Central +48091,Comal County,TX,Texas,Comal County TX,50,3,7,48,91,3-7-48-91,South,West South Central +48093,Comanche County,TX,Texas,Comanche County TX,50,3,7,48,93,3-7-48-93,South,West South Central +48095,Concho County,TX,Texas,Concho County TX,50,3,7,48,95,3-7-48-95,South,West South Central +48097,Cooke County,TX,Texas,Cooke County TX,50,3,7,48,97,3-7-48-97,South,West South Central +48099,Coryell County,TX,Texas,Coryell County TX,50,3,7,48,99,3-7-48-99,South,West South Central +48101,Cottle County,TX,Texas,Cottle County TX,50,3,7,48,101,3-7-48-101,South,West South Central +48103,Crane County,TX,Texas,Crane County TX,50,3,7,48,103,3-7-48-103,South,West South Central +48105,Crockett County,TX,Texas,Crockett County TX,50,3,7,48,105,3-7-48-105,South,West South Central +48107,Crosby County,TX,Texas,Crosby County TX,50,3,7,48,107,3-7-48-107,South,West South Central +48109,Culberson County,TX,Texas,Culberson County TX,50,3,7,48,109,3-7-48-109,South,West South Central +48111,Dallam County,TX,Texas,Dallam County TX,50,3,7,48,111,3-7-48-111,South,West South Central +48113,Dallas County,TX,Texas,Dallas County TX,50,3,7,48,113,3-7-48-113,South,West South Central +48115,Dawson County,TX,Texas,Dawson County TX,50,3,7,48,115,3-7-48-115,South,West South Central +48117,Deaf Smith County,TX,Texas,Deaf Smith County TX,50,3,7,48,117,3-7-48-117,South,West South Central +48119,Delta County,TX,Texas,Delta County TX,50,3,7,48,119,3-7-48-119,South,West South Central +48121,Denton County,TX,Texas,Denton County TX,50,3,7,48,121,3-7-48-121,South,West South Central +48123,DeWitt County,TX,Texas,DeWitt County TX,50,3,7,48,123,3-7-48-123,South,West South Central +48125,Dickens County,TX,Texas,Dickens County TX,50,3,7,48,125,3-7-48-125,South,West South Central +48127,Dimmit County,TX,Texas,Dimmit County TX,50,3,7,48,127,3-7-48-127,South,West South Central +48129,Donley County,TX,Texas,Donley County TX,50,3,7,48,129,3-7-48-129,South,West South Central +48131,Duval County,TX,Texas,Duval County TX,50,3,7,48,131,3-7-48-131,South,West South Central +48133,Eastland County,TX,Texas,Eastland County TX,50,3,7,48,133,3-7-48-133,South,West South Central +48135,Ector County,TX,Texas,Ector County TX,50,3,7,48,135,3-7-48-135,South,West South Central +48137,Edwards County,TX,Texas,Edwards County TX,50,3,7,48,137,3-7-48-137,South,West South Central +48139,Ellis County,TX,Texas,Ellis County TX,50,3,7,48,139,3-7-48-139,South,West South Central +48141,El Paso County,TX,Texas,El Paso County TX,50,3,7,48,141,3-7-48-141,South,West South Central +48143,Erath County,TX,Texas,Erath County TX,50,3,7,48,143,3-7-48-143,South,West South Central +48145,Falls County,TX,Texas,Falls County TX,50,3,7,48,145,3-7-48-145,South,West South Central +48147,Fannin County,TX,Texas,Fannin County TX,50,3,7,48,147,3-7-48-147,South,West South Central +48149,Fayette County,TX,Texas,Fayette County TX,50,3,7,48,149,3-7-48-149,South,West South Central +48151,Fisher County,TX,Texas,Fisher County TX,50,3,7,48,151,3-7-48-151,South,West South Central +48153,Floyd County,TX,Texas,Floyd County TX,50,3,7,48,153,3-7-48-153,South,West South Central +48155,Foard County,TX,Texas,Foard County TX,50,3,7,48,155,3-7-48-155,South,West South Central +48157,Fort Bend County,TX,Texas,Fort Bend County TX,50,3,7,48,157,3-7-48-157,South,West South Central +48159,Franklin County,TX,Texas,Franklin County TX,50,3,7,48,159,3-7-48-159,South,West South Central +48161,Freestone County,TX,Texas,Freestone County TX,50,3,7,48,161,3-7-48-161,South,West South Central +48163,Frio County,TX,Texas,Frio County TX,50,3,7,48,163,3-7-48-163,South,West South Central +48165,Gaines County,TX,Texas,Gaines County TX,50,3,7,48,165,3-7-48-165,South,West South Central +48167,Galveston County,TX,Texas,Galveston County TX,50,3,7,48,167,3-7-48-167,South,West South Central +48169,Garza County,TX,Texas,Garza County TX,50,3,7,48,169,3-7-48-169,South,West South Central +48171,Gillespie County,TX,Texas,Gillespie County TX,50,3,7,48,171,3-7-48-171,South,West South Central +48173,Glasscock County,TX,Texas,Glasscock County TX,50,3,7,48,173,3-7-48-173,South,West South Central +48175,Goliad County,TX,Texas,Goliad County TX,50,3,7,48,175,3-7-48-175,South,West South Central +48177,Gonzales County,TX,Texas,Gonzales County TX,50,3,7,48,177,3-7-48-177,South,West South Central +48179,Gray County,TX,Texas,Gray County TX,50,3,7,48,179,3-7-48-179,South,West South Central +48181,Grayson County,TX,Texas,Grayson County TX,50,3,7,48,181,3-7-48-181,South,West South Central +48183,Gregg County,TX,Texas,Gregg County TX,50,3,7,48,183,3-7-48-183,South,West South Central +48185,Grimes County,TX,Texas,Grimes County TX,50,3,7,48,185,3-7-48-185,South,West South Central +48187,Guadalupe County,TX,Texas,Guadalupe County TX,50,3,7,48,187,3-7-48-187,South,West South Central +48189,Hale County,TX,Texas,Hale County TX,50,3,7,48,189,3-7-48-189,South,West South Central +48191,Hall County,TX,Texas,Hall County TX,50,3,7,48,191,3-7-48-191,South,West South Central +48193,Hamilton County,TX,Texas,Hamilton County TX,50,3,7,48,193,3-7-48-193,South,West South Central +48195,Hansford County,TX,Texas,Hansford County TX,50,3,7,48,195,3-7-48-195,South,West South Central +48197,Hardeman County,TX,Texas,Hardeman County TX,50,3,7,48,197,3-7-48-197,South,West South Central +48199,Hardin County,TX,Texas,Hardin County TX,50,3,7,48,199,3-7-48-199,South,West South Central +48201,Harris County,TX,Texas,Harris County TX,50,3,7,48,201,3-7-48-201,South,West South Central +48203,Harrison County,TX,Texas,Harrison County TX,50,3,7,48,203,3-7-48-203,South,West South Central +48205,Hartley County,TX,Texas,Hartley County TX,50,3,7,48,205,3-7-48-205,South,West South Central +48207,Haskell County,TX,Texas,Haskell County TX,50,3,7,48,207,3-7-48-207,South,West South Central +48209,Hays County,TX,Texas,Hays County TX,50,3,7,48,209,3-7-48-209,South,West South Central +48211,Hemphill County,TX,Texas,Hemphill County TX,50,3,7,48,211,3-7-48-211,South,West South Central +48213,Henderson County,TX,Texas,Henderson County TX,50,3,7,48,213,3-7-48-213,South,West South Central +48215,Hidalgo County,TX,Texas,Hidalgo County TX,50,3,7,48,215,3-7-48-215,South,West South Central +48217,Hill County,TX,Texas,Hill County TX,50,3,7,48,217,3-7-48-217,South,West South Central +48219,Hockley County,TX,Texas,Hockley County TX,50,3,7,48,219,3-7-48-219,South,West South Central +48221,Hood County,TX,Texas,Hood County TX,50,3,7,48,221,3-7-48-221,South,West South Central +48223,Hopkins County,TX,Texas,Hopkins County TX,50,3,7,48,223,3-7-48-223,South,West South Central +48225,Houston County,TX,Texas,Houston County TX,50,3,7,48,225,3-7-48-225,South,West South Central +48227,Howard County,TX,Texas,Howard County TX,50,3,7,48,227,3-7-48-227,South,West South Central +48229,Hudspeth County,TX,Texas,Hudspeth County TX,50,3,7,48,229,3-7-48-229,South,West South Central +48231,Hunt County,TX,Texas,Hunt County TX,50,3,7,48,231,3-7-48-231,South,West South Central +48233,Hutchinson County,TX,Texas,Hutchinson County TX,50,3,7,48,233,3-7-48-233,South,West South Central +48235,Irion County,TX,Texas,Irion County TX,50,3,7,48,235,3-7-48-235,South,West South Central +48237,Jack County,TX,Texas,Jack County TX,50,3,7,48,237,3-7-48-237,South,West South Central +48239,Jackson County,TX,Texas,Jackson County TX,50,3,7,48,239,3-7-48-239,South,West South Central +48241,Jasper County,TX,Texas,Jasper County TX,50,3,7,48,241,3-7-48-241,South,West South Central +48243,Jeff Davis County,TX,Texas,Jeff Davis County TX,50,3,7,48,243,3-7-48-243,South,West South Central +48245,Jefferson County,TX,Texas,Jefferson County TX,50,3,7,48,245,3-7-48-245,South,West South Central +48247,Jim Hogg County,TX,Texas,Jim Hogg County TX,50,3,7,48,247,3-7-48-247,South,West South Central +48249,Jim Wells County,TX,Texas,Jim Wells County TX,50,3,7,48,249,3-7-48-249,South,West South Central +48251,Johnson County,TX,Texas,Johnson County TX,50,3,7,48,251,3-7-48-251,South,West South Central +48253,Jones County,TX,Texas,Jones County TX,50,3,7,48,253,3-7-48-253,South,West South Central +48255,Karnes County,TX,Texas,Karnes County TX,50,3,7,48,255,3-7-48-255,South,West South Central +48257,Kaufman County,TX,Texas,Kaufman County TX,50,3,7,48,257,3-7-48-257,South,West South Central +48259,Kendall County,TX,Texas,Kendall County TX,50,3,7,48,259,3-7-48-259,South,West South Central +48261,Kenedy County,TX,Texas,Kenedy County TX,50,3,7,48,261,3-7-48-261,South,West South Central +48263,Kent County,TX,Texas,Kent County TX,50,3,7,48,263,3-7-48-263,South,West South Central +48265,Kerr County,TX,Texas,Kerr County TX,50,3,7,48,265,3-7-48-265,South,West South Central +48267,Kimble County,TX,Texas,Kimble County TX,50,3,7,48,267,3-7-48-267,South,West South Central +48269,King County,TX,Texas,King County TX,50,3,7,48,269,3-7-48-269,South,West South Central +48271,Kinney County,TX,Texas,Kinney County TX,50,3,7,48,271,3-7-48-271,South,West South Central +48273,Kleberg County,TX,Texas,Kleberg County TX,50,3,7,48,273,3-7-48-273,South,West South Central +48275,Knox County,TX,Texas,Knox County TX,50,3,7,48,275,3-7-48-275,South,West South Central +48277,Lamar County,TX,Texas,Lamar County TX,50,3,7,48,277,3-7-48-277,South,West South Central +48279,Lamb County,TX,Texas,Lamb County TX,50,3,7,48,279,3-7-48-279,South,West South Central +48281,Lampasas County,TX,Texas,Lampasas County TX,50,3,7,48,281,3-7-48-281,South,West South Central +48283,La Salle County,TX,Texas,La Salle County TX,50,3,7,48,283,3-7-48-283,South,West South Central +48285,Lavaca County,TX,Texas,Lavaca County TX,50,3,7,48,285,3-7-48-285,South,West South Central +48287,Lee County,TX,Texas,Lee County TX,50,3,7,48,287,3-7-48-287,South,West South Central +48289,Leon County,TX,Texas,Leon County TX,50,3,7,48,289,3-7-48-289,South,West South Central +48291,Liberty County,TX,Texas,Liberty County TX,50,3,7,48,291,3-7-48-291,South,West South Central +48293,Limestone County,TX,Texas,Limestone County TX,50,3,7,48,293,3-7-48-293,South,West South Central +48295,Lipscomb County,TX,Texas,Lipscomb County TX,50,3,7,48,295,3-7-48-295,South,West South Central +48297,Live Oak County,TX,Texas,Live Oak County TX,50,3,7,48,297,3-7-48-297,South,West South Central +48299,Llano County,TX,Texas,Llano County TX,50,3,7,48,299,3-7-48-299,South,West South Central +48301,Loving County,TX,Texas,Loving County TX,50,3,7,48,301,3-7-48-301,South,West South Central +48303,Lubbock County,TX,Texas,Lubbock County TX,50,3,7,48,303,3-7-48-303,South,West South Central +48305,Lynn County,TX,Texas,Lynn County TX,50,3,7,48,305,3-7-48-305,South,West South Central +48307,McCulloch County,TX,Texas,McCulloch County TX,50,3,7,48,307,3-7-48-307,South,West South Central +48309,McLennan County,TX,Texas,McLennan County TX,50,3,7,48,309,3-7-48-309,South,West South Central +48311,McMullen County,TX,Texas,McMullen County TX,50,3,7,48,311,3-7-48-311,South,West South Central +48313,Madison County,TX,Texas,Madison County TX,50,3,7,48,313,3-7-48-313,South,West South Central +48315,Marion County,TX,Texas,Marion County TX,50,3,7,48,315,3-7-48-315,South,West South Central +48317,Martin County,TX,Texas,Martin County TX,50,3,7,48,317,3-7-48-317,South,West South Central +48319,Mason County,TX,Texas,Mason County TX,50,3,7,48,319,3-7-48-319,South,West South Central +48321,Matagorda County,TX,Texas,Matagorda County TX,50,3,7,48,321,3-7-48-321,South,West South Central +48323,Maverick County,TX,Texas,Maverick County TX,50,3,7,48,323,3-7-48-323,South,West South Central +48325,Medina County,TX,Texas,Medina County TX,50,3,7,48,325,3-7-48-325,South,West South Central +48327,Menard County,TX,Texas,Menard County TX,50,3,7,48,327,3-7-48-327,South,West South Central +48329,Midland County,TX,Texas,Midland County TX,50,3,7,48,329,3-7-48-329,South,West South Central +48331,Milam County,TX,Texas,Milam County TX,50,3,7,48,331,3-7-48-331,South,West South Central +48333,Mills County,TX,Texas,Mills County TX,50,3,7,48,333,3-7-48-333,South,West South Central +48335,Mitchell County,TX,Texas,Mitchell County TX,50,3,7,48,335,3-7-48-335,South,West South Central +48337,Montague County,TX,Texas,Montague County TX,50,3,7,48,337,3-7-48-337,South,West South Central +48339,Montgomery County,TX,Texas,Montgomery County TX,50,3,7,48,339,3-7-48-339,South,West South Central +48341,Moore County,TX,Texas,Moore County TX,50,3,7,48,341,3-7-48-341,South,West South Central +48343,Morris County,TX,Texas,Morris County TX,50,3,7,48,343,3-7-48-343,South,West South Central +48345,Motley County,TX,Texas,Motley County TX,50,3,7,48,345,3-7-48-345,South,West South Central +48347,Nacogdoches County,TX,Texas,Nacogdoches County TX,50,3,7,48,347,3-7-48-347,South,West South Central +48349,Navarro County,TX,Texas,Navarro County TX,50,3,7,48,349,3-7-48-349,South,West South Central +48351,Newton County,TX,Texas,Newton County TX,50,3,7,48,351,3-7-48-351,South,West South Central +48353,Nolan County,TX,Texas,Nolan County TX,50,3,7,48,353,3-7-48-353,South,West South Central +48355,Nueces County,TX,Texas,Nueces County TX,50,3,7,48,355,3-7-48-355,South,West South Central +48357,Ochiltree County,TX,Texas,Ochiltree County TX,50,3,7,48,357,3-7-48-357,South,West South Central +48359,Oldham County,TX,Texas,Oldham County TX,50,3,7,48,359,3-7-48-359,South,West South Central +48361,Orange County,TX,Texas,Orange County TX,50,3,7,48,361,3-7-48-361,South,West South Central +48363,Palo Pinto County,TX,Texas,Palo Pinto County TX,50,3,7,48,363,3-7-48-363,South,West South Central +48365,Panola County,TX,Texas,Panola County TX,50,3,7,48,365,3-7-48-365,South,West South Central +48367,Parker County,TX,Texas,Parker County TX,50,3,7,48,367,3-7-48-367,South,West South Central +48369,Parmer County,TX,Texas,Parmer County TX,50,3,7,48,369,3-7-48-369,South,West South Central +48371,Pecos County,TX,Texas,Pecos County TX,50,3,7,48,371,3-7-48-371,South,West South Central +48373,Polk County,TX,Texas,Polk County TX,50,3,7,48,373,3-7-48-373,South,West South Central +48375,Potter County,TX,Texas,Potter County TX,50,3,7,48,375,3-7-48-375,South,West South Central +48377,Presidio County,TX,Texas,Presidio County TX,50,3,7,48,377,3-7-48-377,South,West South Central +48379,Rains County,TX,Texas,Rains County TX,50,3,7,48,379,3-7-48-379,South,West South Central +48381,Randall County,TX,Texas,Randall County TX,50,3,7,48,381,3-7-48-381,South,West South Central +48383,Reagan County,TX,Texas,Reagan County TX,50,3,7,48,383,3-7-48-383,South,West South Central +48385,Real County,TX,Texas,Real County TX,50,3,7,48,385,3-7-48-385,South,West South Central +48387,Red River County,TX,Texas,Red River County TX,50,3,7,48,387,3-7-48-387,South,West South Central +48389,Reeves County,TX,Texas,Reeves County TX,50,3,7,48,389,3-7-48-389,South,West South Central +48391,Refugio County,TX,Texas,Refugio County TX,50,3,7,48,391,3-7-48-391,South,West South Central +48393,Roberts County,TX,Texas,Roberts County TX,50,3,7,48,393,3-7-48-393,South,West South Central +48395,Robertson County,TX,Texas,Robertson County TX,50,3,7,48,395,3-7-48-395,South,West South Central +48397,Rockwall County,TX,Texas,Rockwall County TX,50,3,7,48,397,3-7-48-397,South,West South Central +48399,Runnels County,TX,Texas,Runnels County TX,50,3,7,48,399,3-7-48-399,South,West South Central +48401,Rusk County,TX,Texas,Rusk County TX,50,3,7,48,401,3-7-48-401,South,West South Central +48403,Sabine County,TX,Texas,Sabine County TX,50,3,7,48,403,3-7-48-403,South,West South Central +48405,San Augustine County,TX,Texas,San Augustine County TX,50,3,7,48,405,3-7-48-405,South,West South Central +48407,San Jacinto County,TX,Texas,San Jacinto County TX,50,3,7,48,407,3-7-48-407,South,West South Central +48409,San Patricio County,TX,Texas,San Patricio County TX,50,3,7,48,409,3-7-48-409,South,West South Central +48411,San Saba County,TX,Texas,San Saba County TX,50,3,7,48,411,3-7-48-411,South,West South Central +48413,Schleicher County,TX,Texas,Schleicher County TX,50,3,7,48,413,3-7-48-413,South,West South Central +48415,Scurry County,TX,Texas,Scurry County TX,50,3,7,48,415,3-7-48-415,South,West South Central +48417,Shackelford County,TX,Texas,Shackelford County TX,50,3,7,48,417,3-7-48-417,South,West South Central +48419,Shelby County,TX,Texas,Shelby County TX,50,3,7,48,419,3-7-48-419,South,West South Central +48421,Sherman County,TX,Texas,Sherman County TX,50,3,7,48,421,3-7-48-421,South,West South Central +48423,Smith County,TX,Texas,Smith County TX,50,3,7,48,423,3-7-48-423,South,West South Central +48425,Somervell County,TX,Texas,Somervell County TX,50,3,7,48,425,3-7-48-425,South,West South Central +48427,Starr County,TX,Texas,Starr County TX,50,3,7,48,427,3-7-48-427,South,West South Central +48429,Stephens County,TX,Texas,Stephens County TX,50,3,7,48,429,3-7-48-429,South,West South Central +48431,Sterling County,TX,Texas,Sterling County TX,50,3,7,48,431,3-7-48-431,South,West South Central +48433,Stonewall County,TX,Texas,Stonewall County TX,50,3,7,48,433,3-7-48-433,South,West South Central +48435,Sutton County,TX,Texas,Sutton County TX,50,3,7,48,435,3-7-48-435,South,West South Central +48437,Swisher County,TX,Texas,Swisher County TX,50,3,7,48,437,3-7-48-437,South,West South Central +48439,Tarrant County,TX,Texas,Tarrant County TX,50,3,7,48,439,3-7-48-439,South,West South Central +48441,Taylor County,TX,Texas,Taylor County TX,50,3,7,48,441,3-7-48-441,South,West South Central +48443,Terrell County,TX,Texas,Terrell County TX,50,3,7,48,443,3-7-48-443,South,West South Central +48445,Terry County,TX,Texas,Terry County TX,50,3,7,48,445,3-7-48-445,South,West South Central +48447,Throckmorton County,TX,Texas,Throckmorton County TX,50,3,7,48,447,3-7-48-447,South,West South Central +48449,Titus County,TX,Texas,Titus County TX,50,3,7,48,449,3-7-48-449,South,West South Central +48451,Tom Green County,TX,Texas,Tom Green County TX,50,3,7,48,451,3-7-48-451,South,West South Central +48453,Travis County,TX,Texas,Travis County TX,50,3,7,48,453,3-7-48-453,South,West South Central +48455,Trinity County,TX,Texas,Trinity County TX,50,3,7,48,455,3-7-48-455,South,West South Central +48457,Tyler County,TX,Texas,Tyler County TX,50,3,7,48,457,3-7-48-457,South,West South Central +48459,Upshur County,TX,Texas,Upshur County TX,50,3,7,48,459,3-7-48-459,South,West South Central +48461,Upton County,TX,Texas,Upton County TX,50,3,7,48,461,3-7-48-461,South,West South Central +48463,Uvalde County,TX,Texas,Uvalde County TX,50,3,7,48,463,3-7-48-463,South,West South Central +48465,Val Verde County,TX,Texas,Val Verde County TX,50,3,7,48,465,3-7-48-465,South,West South Central +48467,Van Zandt County,TX,Texas,Van Zandt County TX,50,3,7,48,467,3-7-48-467,South,West South Central +48469,Victoria County,TX,Texas,Victoria County TX,50,3,7,48,469,3-7-48-469,South,West South Central +48471,Walker County,TX,Texas,Walker County TX,50,3,7,48,471,3-7-48-471,South,West South Central +48473,Waller County,TX,Texas,Waller County TX,50,3,7,48,473,3-7-48-473,South,West South Central +48475,Ward County,TX,Texas,Ward County TX,50,3,7,48,475,3-7-48-475,South,West South Central +48477,Washington County,TX,Texas,Washington County TX,50,3,7,48,477,3-7-48-477,South,West South Central +48479,Webb County,TX,Texas,Webb County TX,50,3,7,48,479,3-7-48-479,South,West South Central +48481,Wharton County,TX,Texas,Wharton County TX,50,3,7,48,481,3-7-48-481,South,West South Central +48483,Wheeler County,TX,Texas,Wheeler County TX,50,3,7,48,483,3-7-48-483,South,West South Central +48485,Wichita County,TX,Texas,Wichita County TX,50,3,7,48,485,3-7-48-485,South,West South Central +48487,Wilbarger County,TX,Texas,Wilbarger County TX,50,3,7,48,487,3-7-48-487,South,West South Central +48489,Willacy County,TX,Texas,Willacy County TX,50,3,7,48,489,3-7-48-489,South,West South Central +48491,Williamson County,TX,Texas,Williamson County TX,50,3,7,48,491,3-7-48-491,South,West South Central +48493,Wilson County,TX,Texas,Wilson County TX,50,3,7,48,493,3-7-48-493,South,West South Central +48495,Winkler County,TX,Texas,Winkler County TX,50,3,7,48,495,3-7-48-495,South,West South Central +48497,Wise County,TX,Texas,Wise County TX,50,3,7,48,497,3-7-48-497,South,West South Central +48499,Wood County,TX,Texas,Wood County TX,50,3,7,48,499,3-7-48-499,South,West South Central +48501,Yoakum County,TX,Texas,Yoakum County TX,50,3,7,48,501,3-7-48-501,South,West South Central +48503,Young County,TX,Texas,Young County TX,50,3,7,48,503,3-7-48-503,South,West South Central +48505,Zapata County,TX,Texas,Zapata County TX,50,3,7,48,505,3-7-48-505,South,West South Central +48507,Zavala County,TX,Texas,Zavala County TX,50,3,7,48,507,3-7-48-507,South,West South Central +49001,Beaver County,UT,Utah,Beaver County UT,50,4,8,49,1,4-8-49-1,West,Mountain +49003,Box Elder County,UT,Utah,Box Elder County UT,50,4,8,49,3,4-8-49-3,West,Mountain +49005,Cache County,UT,Utah,Cache County UT,50,4,8,49,5,4-8-49-5,West,Mountain +49007,Carbon County,UT,Utah,Carbon County UT,50,4,8,49,7,4-8-49-7,West,Mountain +49009,Daggett County,UT,Utah,Daggett County UT,50,4,8,49,9,4-8-49-9,West,Mountain +49011,Davis County,UT,Utah,Davis County UT,50,4,8,49,11,4-8-49-11,West,Mountain +49013,Duchesne County,UT,Utah,Duchesne County UT,50,4,8,49,13,4-8-49-13,West,Mountain +49015,Emery County,UT,Utah,Emery County UT,50,4,8,49,15,4-8-49-15,West,Mountain +49017,Garfield County,UT,Utah,Garfield County UT,50,4,8,49,17,4-8-49-17,West,Mountain +49019,Grand County,UT,Utah,Grand County UT,50,4,8,49,19,4-8-49-19,West,Mountain +49021,Iron County,UT,Utah,Iron County UT,50,4,8,49,21,4-8-49-21,West,Mountain +49023,Juab County,UT,Utah,Juab County UT,50,4,8,49,23,4-8-49-23,West,Mountain +49025,Kane County,UT,Utah,Kane County UT,50,4,8,49,25,4-8-49-25,West,Mountain +49027,Millard County,UT,Utah,Millard County UT,50,4,8,49,27,4-8-49-27,West,Mountain +49029,Morgan County,UT,Utah,Morgan County UT,50,4,8,49,29,4-8-49-29,West,Mountain +49031,Piute County,UT,Utah,Piute County UT,50,4,8,49,31,4-8-49-31,West,Mountain +49033,Rich County,UT,Utah,Rich County UT,50,4,8,49,33,4-8-49-33,West,Mountain +49035,Salt Lake County,UT,Utah,Salt Lake County UT,50,4,8,49,35,4-8-49-35,West,Mountain +49037,San Juan County,UT,Utah,San Juan County UT,50,4,8,49,37,4-8-49-37,West,Mountain +49039,Sanpete County,UT,Utah,Sanpete County UT,50,4,8,49,39,4-8-49-39,West,Mountain +49041,Sevier County,UT,Utah,Sevier County UT,50,4,8,49,41,4-8-49-41,West,Mountain +49043,Summit County,UT,Utah,Summit County UT,50,4,8,49,43,4-8-49-43,West,Mountain +49045,Tooele County,UT,Utah,Tooele County UT,50,4,8,49,45,4-8-49-45,West,Mountain +49047,Uintah County,UT,Utah,Uintah County UT,50,4,8,49,47,4-8-49-47,West,Mountain +49049,Utah County,UT,Utah,Utah County UT,50,4,8,49,49,4-8-49-49,West,Mountain +49051,Wasatch County,UT,Utah,Wasatch County UT,50,4,8,49,51,4-8-49-51,West,Mountain +49053,Washington County,UT,Utah,Washington County UT,50,4,8,49,53,4-8-49-53,West,Mountain +49055,Wayne County,UT,Utah,Wayne County UT,50,4,8,49,55,4-8-49-55,West,Mountain +49057,Weber County,UT,Utah,Weber County UT,50,4,8,49,57,4-8-49-57,West,Mountain +50001,Addison County,VT,Vermont,Addison County VT,50,1,1,50,1,1-1-50-1,Northeast,New England +50003,Bennington County,VT,Vermont,Bennington County VT,50,1,1,50,3,1-1-50-3,Northeast,New England +50005,Caledonia County,VT,Vermont,Caledonia County VT,50,1,1,50,5,1-1-50-5,Northeast,New England +50007,Chittenden County,VT,Vermont,Chittenden County VT,50,1,1,50,7,1-1-50-7,Northeast,New England +50009,Essex County,VT,Vermont,Essex County VT,50,1,1,50,9,1-1-50-9,Northeast,New England +50011,Franklin County,VT,Vermont,Franklin County VT,50,1,1,50,11,1-1-50-11,Northeast,New England +50013,Grand Isle County,VT,Vermont,Grand Isle County VT,50,1,1,50,13,1-1-50-13,Northeast,New England +50015,Lamoille County,VT,Vermont,Lamoille County VT,50,1,1,50,15,1-1-50-15,Northeast,New England +50017,Orange County,VT,Vermont,Orange County VT,50,1,1,50,17,1-1-50-17,Northeast,New England +50019,Orleans County,VT,Vermont,Orleans County VT,50,1,1,50,19,1-1-50-19,Northeast,New England +50021,Rutland County,VT,Vermont,Rutland County VT,50,1,1,50,21,1-1-50-21,Northeast,New England +50023,Washington County,VT,Vermont,Washington County VT,50,1,1,50,23,1-1-50-23,Northeast,New England +50025,Windham County,VT,Vermont,Windham County VT,50,1,1,50,25,1-1-50-25,Northeast,New England +50027,Windsor County,VT,Vermont,Windsor County VT,50,1,1,50,27,1-1-50-27,Northeast,New England +51001,Accomack County,VA,Virginia,Accomack County VA,50,3,5,51,1,3-5-51-1,South,South Atlantic +51003,Albemarle County,VA,Virginia,Albemarle County VA,50,3,5,51,3,3-5-51-3,South,South Atlantic +51005,Alleghany County,VA,Virginia,Alleghany County VA,50,3,5,51,5,3-5-51-5,South,South Atlantic +51007,Amelia County,VA,Virginia,Amelia County VA,50,3,5,51,7,3-5-51-7,South,South Atlantic +51009,Amherst County,VA,Virginia,Amherst County VA,50,3,5,51,9,3-5-51-9,South,South Atlantic +51011,Appomattox County,VA,Virginia,Appomattox County VA,50,3,5,51,11,3-5-51-11,South,South Atlantic +51013,Arlington County,VA,Virginia,Arlington County VA,50,3,5,51,13,3-5-51-13,South,South Atlantic +51015,Augusta County,VA,Virginia,Augusta County VA,50,3,5,51,15,3-5-51-15,South,South Atlantic +51017,Bath County,VA,Virginia,Bath County VA,50,3,5,51,17,3-5-51-17,South,South Atlantic +51019,Bedford County,VA,Virginia,Bedford County VA,50,3,5,51,19,3-5-51-19,South,South Atlantic +51021,Bland County,VA,Virginia,Bland County VA,50,3,5,51,21,3-5-51-21,South,South Atlantic +51023,Botetourt County,VA,Virginia,Botetourt County VA,50,3,5,51,23,3-5-51-23,South,South Atlantic +51025,Brunswick County,VA,Virginia,Brunswick County VA,50,3,5,51,25,3-5-51-25,South,South Atlantic +51027,Buchanan County,VA,Virginia,Buchanan County VA,50,3,5,51,27,3-5-51-27,South,South Atlantic +51029,Buckingham County,VA,Virginia,Buckingham County VA,50,3,5,51,29,3-5-51-29,South,South Atlantic +51031,Campbell County,VA,Virginia,Campbell County VA,50,3,5,51,31,3-5-51-31,South,South Atlantic +51033,Caroline County,VA,Virginia,Caroline County VA,50,3,5,51,33,3-5-51-33,South,South Atlantic +51035,Carroll County,VA,Virginia,Carroll County VA,50,3,5,51,35,3-5-51-35,South,South Atlantic +51036,Charles City County,VA,Virginia,Charles City County VA,50,3,5,51,36,3-5-51-36,South,South Atlantic +51037,Charlotte County,VA,Virginia,Charlotte County VA,50,3,5,51,37,3-5-51-37,South,South Atlantic +51041,Chesterfield County,VA,Virginia,Chesterfield County VA,50,3,5,51,41,3-5-51-41,South,South Atlantic +51043,Clarke County,VA,Virginia,Clarke County VA,50,3,5,51,43,3-5-51-43,South,South Atlantic +51045,Craig County,VA,Virginia,Craig County VA,50,3,5,51,45,3-5-51-45,South,South Atlantic +51047,Culpeper County,VA,Virginia,Culpeper County VA,50,3,5,51,47,3-5-51-47,South,South Atlantic +51049,Cumberland County,VA,Virginia,Cumberland County VA,50,3,5,51,49,3-5-51-49,South,South Atlantic +51051,Dickenson County,VA,Virginia,Dickenson County VA,50,3,5,51,51,3-5-51-51,South,South Atlantic +51053,Dinwiddie County,VA,Virginia,Dinwiddie County VA,50,3,5,51,53,3-5-51-53,South,South Atlantic +51057,Essex County,VA,Virginia,Essex County VA,50,3,5,51,57,3-5-51-57,South,South Atlantic +51059,Fairfax County,VA,Virginia,Fairfax County VA,50,3,5,51,59,3-5-51-59,South,South Atlantic +51061,Fauquier County,VA,Virginia,Fauquier County VA,50,3,5,51,61,3-5-51-61,South,South Atlantic +51063,Floyd County,VA,Virginia,Floyd County VA,50,3,5,51,63,3-5-51-63,South,South Atlantic +51065,Fluvanna County,VA,Virginia,Fluvanna County VA,50,3,5,51,65,3-5-51-65,South,South Atlantic +51067,Franklin County,VA,Virginia,Franklin County VA,50,3,5,51,67,3-5-51-67,South,South Atlantic +51069,Frederick County,VA,Virginia,Frederick County VA,50,3,5,51,69,3-5-51-69,South,South Atlantic +51071,Giles County,VA,Virginia,Giles County VA,50,3,5,51,71,3-5-51-71,South,South Atlantic +51073,Gloucester County,VA,Virginia,Gloucester County VA,50,3,5,51,73,3-5-51-73,South,South Atlantic +51075,Goochland County,VA,Virginia,Goochland County VA,50,3,5,51,75,3-5-51-75,South,South Atlantic +51077,Grayson County,VA,Virginia,Grayson County VA,50,3,5,51,77,3-5-51-77,South,South Atlantic +51079,Greene County,VA,Virginia,Greene County VA,50,3,5,51,79,3-5-51-79,South,South Atlantic +51081,Greensville County,VA,Virginia,Greensville County VA,50,3,5,51,81,3-5-51-81,South,South Atlantic +51083,Halifax County,VA,Virginia,Halifax County VA,50,3,5,51,83,3-5-51-83,South,South Atlantic +51085,Hanover County,VA,Virginia,Hanover County VA,50,3,5,51,85,3-5-51-85,South,South Atlantic +51087,Henrico County,VA,Virginia,Henrico County VA,50,3,5,51,87,3-5-51-87,South,South Atlantic +51089,Henry County,VA,Virginia,Henry County VA,50,3,5,51,89,3-5-51-89,South,South Atlantic +51091,Highland County,VA,Virginia,Highland County VA,50,3,5,51,91,3-5-51-91,South,South Atlantic +51093,Isle of Wight County,VA,Virginia,Isle of Wight County VA,50,3,5,51,93,3-5-51-93,South,South Atlantic +51095,James City County,VA,Virginia,James City County VA,50,3,5,51,95,3-5-51-95,South,South Atlantic +51097,King and Queen County,VA,Virginia,King and Queen County VA,50,3,5,51,97,3-5-51-97,South,South Atlantic +51099,King George County,VA,Virginia,King George County VA,50,3,5,51,99,3-5-51-99,South,South Atlantic +51101,King William County,VA,Virginia,King William County VA,50,3,5,51,101,3-5-51-101,South,South Atlantic +51103,Lancaster County,VA,Virginia,Lancaster County VA,50,3,5,51,103,3-5-51-103,South,South Atlantic +51105,Lee County,VA,Virginia,Lee County VA,50,3,5,51,105,3-5-51-105,South,South Atlantic +51107,Loudoun County,VA,Virginia,Loudoun County VA,50,3,5,51,107,3-5-51-107,South,South Atlantic +51109,Louisa County,VA,Virginia,Louisa County VA,50,3,5,51,109,3-5-51-109,South,South Atlantic +51111,Lunenburg County,VA,Virginia,Lunenburg County VA,50,3,5,51,111,3-5-51-111,South,South Atlantic +51113,Madison County,VA,Virginia,Madison County VA,50,3,5,51,113,3-5-51-113,South,South Atlantic +51115,Mathews County,VA,Virginia,Mathews County VA,50,3,5,51,115,3-5-51-115,South,South Atlantic +51117,Mecklenburg County,VA,Virginia,Mecklenburg County VA,50,3,5,51,117,3-5-51-117,South,South Atlantic +51119,Middlesex County,VA,Virginia,Middlesex County VA,50,3,5,51,119,3-5-51-119,South,South Atlantic +51121,Montgomery County,VA,Virginia,Montgomery County VA,50,3,5,51,121,3-5-51-121,South,South Atlantic +51125,Nelson County,VA,Virginia,Nelson County VA,50,3,5,51,125,3-5-51-125,South,South Atlantic +51127,New Kent County,VA,Virginia,New Kent County VA,50,3,5,51,127,3-5-51-127,South,South Atlantic +51131,Northampton County,VA,Virginia,Northampton County VA,50,3,5,51,131,3-5-51-131,South,South Atlantic +51133,Northumberland County,VA,Virginia,Northumberland County VA,50,3,5,51,133,3-5-51-133,South,South Atlantic +51135,Nottoway County,VA,Virginia,Nottoway County VA,50,3,5,51,135,3-5-51-135,South,South Atlantic +51137,Orange County,VA,Virginia,Orange County VA,50,3,5,51,137,3-5-51-137,South,South Atlantic +51139,Page County,VA,Virginia,Page County VA,50,3,5,51,139,3-5-51-139,South,South Atlantic +51141,Patrick County,VA,Virginia,Patrick County VA,50,3,5,51,141,3-5-51-141,South,South Atlantic +51143,Pittsylvania County,VA,Virginia,Pittsylvania County VA,50,3,5,51,143,3-5-51-143,South,South Atlantic +51145,Powhatan County,VA,Virginia,Powhatan County VA,50,3,5,51,145,3-5-51-145,South,South Atlantic +51147,Prince Edward County,VA,Virginia,Prince Edward County VA,50,3,5,51,147,3-5-51-147,South,South Atlantic +51149,Prince George County,VA,Virginia,Prince George County VA,50,3,5,51,149,3-5-51-149,South,South Atlantic +51153,Prince William County,VA,Virginia,Prince William County VA,50,3,5,51,153,3-5-51-153,South,South Atlantic +51155,Pulaski County,VA,Virginia,Pulaski County VA,50,3,5,51,155,3-5-51-155,South,South Atlantic +51157,Rappahannock County,VA,Virginia,Rappahannock County VA,50,3,5,51,157,3-5-51-157,South,South Atlantic +51159,Richmond County,VA,Virginia,Richmond County VA,50,3,5,51,159,3-5-51-159,South,South Atlantic +51161,Roanoke County,VA,Virginia,Roanoke County VA,50,3,5,51,161,3-5-51-161,South,South Atlantic +51163,Rockbridge County,VA,Virginia,Rockbridge County VA,50,3,5,51,163,3-5-51-163,South,South Atlantic +51165,Rockingham County,VA,Virginia,Rockingham County VA,50,3,5,51,165,3-5-51-165,South,South Atlantic +51167,Russell County,VA,Virginia,Russell County VA,50,3,5,51,167,3-5-51-167,South,South Atlantic +51169,Scott County,VA,Virginia,Scott County VA,50,3,5,51,169,3-5-51-169,South,South Atlantic +51171,Shenandoah County,VA,Virginia,Shenandoah County VA,50,3,5,51,171,3-5-51-171,South,South Atlantic +51173,Smyth County,VA,Virginia,Smyth County VA,50,3,5,51,173,3-5-51-173,South,South Atlantic +51175,Southampton County,VA,Virginia,Southampton County VA,50,3,5,51,175,3-5-51-175,South,South Atlantic +51177,Spotsylvania County,VA,Virginia,Spotsylvania County VA,50,3,5,51,177,3-5-51-177,South,South Atlantic +51179,Stafford County,VA,Virginia,Stafford County VA,50,3,5,51,179,3-5-51-179,South,South Atlantic +51181,Surry County,VA,Virginia,Surry County VA,50,3,5,51,181,3-5-51-181,South,South Atlantic +51183,Sussex County,VA,Virginia,Sussex County VA,50,3,5,51,183,3-5-51-183,South,South Atlantic +51185,Tazewell County,VA,Virginia,Tazewell County VA,50,3,5,51,185,3-5-51-185,South,South Atlantic +51187,Warren County,VA,Virginia,Warren County VA,50,3,5,51,187,3-5-51-187,South,South Atlantic +51191,Washington County,VA,Virginia,Washington County VA,50,3,5,51,191,3-5-51-191,South,South Atlantic +51193,Westmoreland County,VA,Virginia,Westmoreland County VA,50,3,5,51,193,3-5-51-193,South,South Atlantic +51195,Wise County,VA,Virginia,Wise County VA,50,3,5,51,195,3-5-51-195,South,South Atlantic +51197,Wythe County,VA,Virginia,Wythe County VA,50,3,5,51,197,3-5-51-197,South,South Atlantic +51199,York County,VA,Virginia,York County VA,50,3,5,51,199,3-5-51-199,South,South Atlantic +51510,Alexandria city,VA,Virginia,Alexandria city VA,50,3,5,51,510,3-5-51-510,South,South Atlantic +51515,Bedford city,VA,Virginia,Bedford city VA,NA,NA,NA,NA,NA,NA-NA-NA-NA,NA,NA +51520,Bristol city,VA,Virginia,Bristol city VA,50,3,5,51,520,3-5-51-520,South,South Atlantic +51530,Buena Vista city,VA,Virginia,Buena Vista city VA,50,3,5,51,530,3-5-51-530,South,South Atlantic +51540,Charlottesville city,VA,Virginia,Charlottesville city VA,50,3,5,51,540,3-5-51-540,South,South Atlantic +51550,Chesapeake city,VA,Virginia,Chesapeake city VA,50,3,5,51,550,3-5-51-550,South,South Atlantic +51570,Colonial Heights city,VA,Virginia,Colonial Heights city VA,50,3,5,51,570,3-5-51-570,South,South Atlantic +51580,Covington city,VA,Virginia,Covington city VA,50,3,5,51,580,3-5-51-580,South,South Atlantic +51590,Danville city,VA,Virginia,Danville city VA,50,3,5,51,590,3-5-51-590,South,South Atlantic +51595,Emporia city,VA,Virginia,Emporia city VA,50,3,5,51,595,3-5-51-595,South,South Atlantic +51600,Fairfax city,VA,Virginia,Fairfax city VA,50,3,5,51,600,3-5-51-600,South,South Atlantic +51610,Falls Church city,VA,Virginia,Falls Church city VA,50,3,5,51,610,3-5-51-610,South,South Atlantic +51620,Franklin city,VA,Virginia,Franklin city VA,50,3,5,51,620,3-5-51-620,South,South Atlantic +51630,Fredericksburg city,VA,Virginia,Fredericksburg city VA,50,3,5,51,630,3-5-51-630,South,South Atlantic +51640,Galax city,VA,Virginia,Galax city VA,50,3,5,51,640,3-5-51-640,South,South Atlantic +51650,Hampton city,VA,Virginia,Hampton city VA,50,3,5,51,650,3-5-51-650,South,South Atlantic +51660,Harrisonburg city,VA,Virginia,Harrisonburg city VA,50,3,5,51,660,3-5-51-660,South,South Atlantic +51670,Hopewell city,VA,Virginia,Hopewell city VA,50,3,5,51,670,3-5-51-670,South,South Atlantic +51678,Lexington city,VA,Virginia,Lexington city VA,50,3,5,51,678,3-5-51-678,South,South Atlantic +51680,Lynchburg city,VA,Virginia,Lynchburg city VA,50,3,5,51,680,3-5-51-680,South,South Atlantic +51683,Manassas city,VA,Virginia,Manassas city VA,50,3,5,51,683,3-5-51-683,South,South Atlantic +51685,Manassas Park city,VA,Virginia,Manassas Park city VA,50,3,5,51,685,3-5-51-685,South,South Atlantic +51690,Martinsville city,VA,Virginia,Martinsville city VA,50,3,5,51,690,3-5-51-690,South,South Atlantic +51700,Newport News city,VA,Virginia,Newport News city VA,50,3,5,51,700,3-5-51-700,South,South Atlantic +51710,Norfolk city,VA,Virginia,Norfolk city VA,50,3,5,51,710,3-5-51-710,South,South Atlantic +51720,Norton city,VA,Virginia,Norton city VA,50,3,5,51,720,3-5-51-720,South,South Atlantic +51730,Petersburg city,VA,Virginia,Petersburg city VA,50,3,5,51,730,3-5-51-730,South,South Atlantic +51735,Poquoson city,VA,Virginia,Poquoson city VA,50,3,5,51,735,3-5-51-735,South,South Atlantic +51740,Portsmouth city,VA,Virginia,Portsmouth city VA,50,3,5,51,740,3-5-51-740,South,South Atlantic +51750,Radford city,VA,Virginia,Radford city VA,50,3,5,51,750,3-5-51-750,South,South Atlantic +51760,Richmond city,VA,Virginia,Richmond city VA,50,3,5,51,760,3-5-51-760,South,South Atlantic +51770,Roanoke city,VA,Virginia,Roanoke city VA,50,3,5,51,770,3-5-51-770,South,South Atlantic +51775,Salem city,VA,Virginia,Salem city VA,50,3,5,51,775,3-5-51-775,South,South Atlantic +51790,Staunton city,VA,Virginia,Staunton city VA,50,3,5,51,790,3-5-51-790,South,South Atlantic +51800,Suffolk city,VA,Virginia,Suffolk city VA,50,3,5,51,800,3-5-51-800,South,South Atlantic +51810,Virginia Beach city,VA,Virginia,Virginia Beach city VA,50,3,5,51,810,3-5-51-810,South,South Atlantic +51820,Waynesboro city,VA,Virginia,Waynesboro city VA,50,3,5,51,820,3-5-51-820,South,South Atlantic +51830,Williamsburg city,VA,Virginia,Williamsburg city VA,50,3,5,51,830,3-5-51-830,South,South Atlantic +51840,Winchester city,VA,Virginia,Winchester city VA,50,3,5,51,840,3-5-51-840,South,South Atlantic +53001,Adams County,WA,Washington,Adams County WA,50,4,9,53,1,4-9-53-1,West,Pacific +53003,Asotin County,WA,Washington,Asotin County WA,50,4,9,53,3,4-9-53-3,West,Pacific +53005,Benton County,WA,Washington,Benton County WA,50,4,9,53,5,4-9-53-5,West,Pacific +53007,Chelan County,WA,Washington,Chelan County WA,50,4,9,53,7,4-9-53-7,West,Pacific +53009,Clallam County,WA,Washington,Clallam County WA,50,4,9,53,9,4-9-53-9,West,Pacific +53011,Clark County,WA,Washington,Clark County WA,50,4,9,53,11,4-9-53-11,West,Pacific +53013,Columbia County,WA,Washington,Columbia County WA,50,4,9,53,13,4-9-53-13,West,Pacific +53015,Cowlitz County,WA,Washington,Cowlitz County WA,50,4,9,53,15,4-9-53-15,West,Pacific +53017,Douglas County,WA,Washington,Douglas County WA,50,4,9,53,17,4-9-53-17,West,Pacific +53019,Ferry County,WA,Washington,Ferry County WA,50,4,9,53,19,4-9-53-19,West,Pacific +53021,Franklin County,WA,Washington,Franklin County WA,50,4,9,53,21,4-9-53-21,West,Pacific +53023,Garfield County,WA,Washington,Garfield County WA,50,4,9,53,23,4-9-53-23,West,Pacific +53025,Grant County,WA,Washington,Grant County WA,50,4,9,53,25,4-9-53-25,West,Pacific +53027,Grays Harbor County,WA,Washington,Grays Harbor County WA,50,4,9,53,27,4-9-53-27,West,Pacific +53029,Island County,WA,Washington,Island County WA,50,4,9,53,29,4-9-53-29,West,Pacific +53031,Jefferson County,WA,Washington,Jefferson County WA,50,4,9,53,31,4-9-53-31,West,Pacific +53033,King County,WA,Washington,King County WA,50,4,9,53,33,4-9-53-33,West,Pacific +53035,Kitsap County,WA,Washington,Kitsap County WA,50,4,9,53,35,4-9-53-35,West,Pacific +53037,Kittitas County,WA,Washington,Kittitas County WA,50,4,9,53,37,4-9-53-37,West,Pacific +53039,Klickitat County,WA,Washington,Klickitat County WA,50,4,9,53,39,4-9-53-39,West,Pacific +53041,Lewis County,WA,Washington,Lewis County WA,50,4,9,53,41,4-9-53-41,West,Pacific +53043,Lincoln County,WA,Washington,Lincoln County WA,50,4,9,53,43,4-9-53-43,West,Pacific +53045,Mason County,WA,Washington,Mason County WA,50,4,9,53,45,4-9-53-45,West,Pacific +53047,Okanogan County,WA,Washington,Okanogan County WA,50,4,9,53,47,4-9-53-47,West,Pacific +53049,Pacific County,WA,Washington,Pacific County WA,50,4,9,53,49,4-9-53-49,West,Pacific +53051,Pend Oreille County,WA,Washington,Pend Oreille County WA,50,4,9,53,51,4-9-53-51,West,Pacific +53053,Pierce County,WA,Washington,Pierce County WA,50,4,9,53,53,4-9-53-53,West,Pacific +53055,San Juan County,WA,Washington,San Juan County WA,50,4,9,53,55,4-9-53-55,West,Pacific +53057,Skagit County,WA,Washington,Skagit County WA,50,4,9,53,57,4-9-53-57,West,Pacific +53059,Skamania County,WA,Washington,Skamania County WA,50,4,9,53,59,4-9-53-59,West,Pacific +53061,Snohomish County,WA,Washington,Snohomish County WA,50,4,9,53,61,4-9-53-61,West,Pacific +53063,Spokane County,WA,Washington,Spokane County WA,50,4,9,53,63,4-9-53-63,West,Pacific +53065,Stevens County,WA,Washington,Stevens County WA,50,4,9,53,65,4-9-53-65,West,Pacific +53067,Thurston County,WA,Washington,Thurston County WA,50,4,9,53,67,4-9-53-67,West,Pacific +53069,Wahkiakum County,WA,Washington,Wahkiakum County WA,50,4,9,53,69,4-9-53-69,West,Pacific +53071,Walla Walla County,WA,Washington,Walla Walla County WA,50,4,9,53,71,4-9-53-71,West,Pacific +53073,Whatcom County,WA,Washington,Whatcom County WA,50,4,9,53,73,4-9-53-73,West,Pacific +53075,Whitman County,WA,Washington,Whitman County WA,50,4,9,53,75,4-9-53-75,West,Pacific +53077,Yakima County,WA,Washington,Yakima County WA,50,4,9,53,77,4-9-53-77,West,Pacific +54001,Barbour County,WV,West Virginia,Barbour County WV,50,3,5,54,1,3-5-54-1,South,South Atlantic +54003,Berkeley County,WV,West Virginia,Berkeley County WV,50,3,5,54,3,3-5-54-3,South,South Atlantic +54005,Boone County,WV,West Virginia,Boone County WV,50,3,5,54,5,3-5-54-5,South,South Atlantic +54007,Braxton County,WV,West Virginia,Braxton County WV,50,3,5,54,7,3-5-54-7,South,South Atlantic +54009,Brooke County,WV,West Virginia,Brooke County WV,50,3,5,54,9,3-5-54-9,South,South Atlantic +54011,Cabell County,WV,West Virginia,Cabell County WV,50,3,5,54,11,3-5-54-11,South,South Atlantic +54013,Calhoun County,WV,West Virginia,Calhoun County WV,50,3,5,54,13,3-5-54-13,South,South Atlantic +54015,Clay County,WV,West Virginia,Clay County WV,50,3,5,54,15,3-5-54-15,South,South Atlantic +54017,Doddridge County,WV,West Virginia,Doddridge County WV,50,3,5,54,17,3-5-54-17,South,South Atlantic +54019,Fayette County,WV,West Virginia,Fayette County WV,50,3,5,54,19,3-5-54-19,South,South Atlantic +54021,Gilmer County,WV,West Virginia,Gilmer County WV,50,3,5,54,21,3-5-54-21,South,South Atlantic +54023,Grant County,WV,West Virginia,Grant County WV,50,3,5,54,23,3-5-54-23,South,South Atlantic +54025,Greenbrier County,WV,West Virginia,Greenbrier County WV,50,3,5,54,25,3-5-54-25,South,South Atlantic +54027,Hampshire County,WV,West Virginia,Hampshire County WV,50,3,5,54,27,3-5-54-27,South,South Atlantic +54029,Hancock County,WV,West Virginia,Hancock County WV,50,3,5,54,29,3-5-54-29,South,South Atlantic +54031,Hardy County,WV,West Virginia,Hardy County WV,50,3,5,54,31,3-5-54-31,South,South Atlantic +54033,Harrison County,WV,West Virginia,Harrison County WV,50,3,5,54,33,3-5-54-33,South,South Atlantic +54035,Jackson County,WV,West Virginia,Jackson County WV,50,3,5,54,35,3-5-54-35,South,South Atlantic +54037,Jefferson County,WV,West Virginia,Jefferson County WV,50,3,5,54,37,3-5-54-37,South,South Atlantic +54039,Kanawha County,WV,West Virginia,Kanawha County WV,50,3,5,54,39,3-5-54-39,South,South Atlantic +54041,Lewis County,WV,West Virginia,Lewis County WV,50,3,5,54,41,3-5-54-41,South,South Atlantic +54043,Lincoln County,WV,West Virginia,Lincoln County WV,50,3,5,54,43,3-5-54-43,South,South Atlantic +54045,Logan County,WV,West Virginia,Logan County WV,50,3,5,54,45,3-5-54-45,South,South Atlantic +54047,McDowell County,WV,West Virginia,McDowell County WV,50,3,5,54,47,3-5-54-47,South,South Atlantic +54049,Marion County,WV,West Virginia,Marion County WV,50,3,5,54,49,3-5-54-49,South,South Atlantic +54051,Marshall County,WV,West Virginia,Marshall County WV,50,3,5,54,51,3-5-54-51,South,South Atlantic +54053,Mason County,WV,West Virginia,Mason County WV,50,3,5,54,53,3-5-54-53,South,South Atlantic +54055,Mercer County,WV,West Virginia,Mercer County WV,50,3,5,54,55,3-5-54-55,South,South Atlantic +54057,Mineral County,WV,West Virginia,Mineral County WV,50,3,5,54,57,3-5-54-57,South,South Atlantic +54059,Mingo County,WV,West Virginia,Mingo County WV,50,3,5,54,59,3-5-54-59,South,South Atlantic +54061,Monongalia County,WV,West Virginia,Monongalia County WV,50,3,5,54,61,3-5-54-61,South,South Atlantic +54063,Monroe County,WV,West Virginia,Monroe County WV,50,3,5,54,63,3-5-54-63,South,South Atlantic +54065,Morgan County,WV,West Virginia,Morgan County WV,50,3,5,54,65,3-5-54-65,South,South Atlantic +54067,Nicholas County,WV,West Virginia,Nicholas County WV,50,3,5,54,67,3-5-54-67,South,South Atlantic +54069,Ohio County,WV,West Virginia,Ohio County WV,50,3,5,54,69,3-5-54-69,South,South Atlantic +54071,Pendleton County,WV,West Virginia,Pendleton County WV,50,3,5,54,71,3-5-54-71,South,South Atlantic +54073,Pleasants County,WV,West Virginia,Pleasants County WV,50,3,5,54,73,3-5-54-73,South,South Atlantic +54075,Pocahontas County,WV,West Virginia,Pocahontas County WV,50,3,5,54,75,3-5-54-75,South,South Atlantic +54077,Preston County,WV,West Virginia,Preston County WV,50,3,5,54,77,3-5-54-77,South,South Atlantic +54079,Putnam County,WV,West Virginia,Putnam County WV,50,3,5,54,79,3-5-54-79,South,South Atlantic +54081,Raleigh County,WV,West Virginia,Raleigh County WV,50,3,5,54,81,3-5-54-81,South,South Atlantic +54083,Randolph County,WV,West Virginia,Randolph County WV,50,3,5,54,83,3-5-54-83,South,South Atlantic +54085,Ritchie County,WV,West Virginia,Ritchie County WV,50,3,5,54,85,3-5-54-85,South,South Atlantic +54087,Roane County,WV,West Virginia,Roane County WV,50,3,5,54,87,3-5-54-87,South,South Atlantic +54089,Summers County,WV,West Virginia,Summers County WV,50,3,5,54,89,3-5-54-89,South,South Atlantic +54091,Taylor County,WV,West Virginia,Taylor County WV,50,3,5,54,91,3-5-54-91,South,South Atlantic +54093,Tucker County,WV,West Virginia,Tucker County WV,50,3,5,54,93,3-5-54-93,South,South Atlantic +54095,Tyler County,WV,West Virginia,Tyler County WV,50,3,5,54,95,3-5-54-95,South,South Atlantic +54097,Upshur County,WV,West Virginia,Upshur County WV,50,3,5,54,97,3-5-54-97,South,South Atlantic +54099,Wayne County,WV,West Virginia,Wayne County WV,50,3,5,54,99,3-5-54-99,South,South Atlantic +54101,Webster County,WV,West Virginia,Webster County WV,50,3,5,54,101,3-5-54-101,South,South Atlantic +54103,Wetzel County,WV,West Virginia,Wetzel County WV,50,3,5,54,103,3-5-54-103,South,South Atlantic +54105,Wirt County,WV,West Virginia,Wirt County WV,50,3,5,54,105,3-5-54-105,South,South Atlantic +54107,Wood County,WV,West Virginia,Wood County WV,50,3,5,54,107,3-5-54-107,South,South Atlantic +54109,Wyoming County,WV,West Virginia,Wyoming County WV,50,3,5,54,109,3-5-54-109,South,South Atlantic +55001,Adams County,WI,Wisconsin,Adams County WI,50,2,3,55,1,2-3-55-1,Midwest,East North Central +55003,Ashland County,WI,Wisconsin,Ashland County WI,50,2,3,55,3,2-3-55-3,Midwest,East North Central +55005,Barron County,WI,Wisconsin,Barron County WI,50,2,3,55,5,2-3-55-5,Midwest,East North Central +55007,Bayfield County,WI,Wisconsin,Bayfield County WI,50,2,3,55,7,2-3-55-7,Midwest,East North Central +55009,Brown County,WI,Wisconsin,Brown County WI,50,2,3,55,9,2-3-55-9,Midwest,East North Central +55011,Buffalo County,WI,Wisconsin,Buffalo County WI,50,2,3,55,11,2-3-55-11,Midwest,East North Central +55013,Burnett County,WI,Wisconsin,Burnett County WI,50,2,3,55,13,2-3-55-13,Midwest,East North Central +55015,Calumet County,WI,Wisconsin,Calumet County WI,50,2,3,55,15,2-3-55-15,Midwest,East North Central +55017,Chippewa County,WI,Wisconsin,Chippewa County WI,50,2,3,55,17,2-3-55-17,Midwest,East North Central +55019,Clark County,WI,Wisconsin,Clark County WI,50,2,3,55,19,2-3-55-19,Midwest,East North Central +55021,Columbia County,WI,Wisconsin,Columbia County WI,50,2,3,55,21,2-3-55-21,Midwest,East North Central +55023,Crawford County,WI,Wisconsin,Crawford County WI,50,2,3,55,23,2-3-55-23,Midwest,East North Central +55025,Dane County,WI,Wisconsin,Dane County WI,50,2,3,55,25,2-3-55-25,Midwest,East North Central +55027,Dodge County,WI,Wisconsin,Dodge County WI,50,2,3,55,27,2-3-55-27,Midwest,East North Central +55029,Door County,WI,Wisconsin,Door County WI,50,2,3,55,29,2-3-55-29,Midwest,East North Central +55031,Douglas County,WI,Wisconsin,Douglas County WI,50,2,3,55,31,2-3-55-31,Midwest,East North Central +55033,Dunn County,WI,Wisconsin,Dunn County WI,50,2,3,55,33,2-3-55-33,Midwest,East North Central +55035,Eau Claire County,WI,Wisconsin,Eau Claire County WI,50,2,3,55,35,2-3-55-35,Midwest,East North Central +55037,Florence County,WI,Wisconsin,Florence County WI,50,2,3,55,37,2-3-55-37,Midwest,East North Central +55039,Fond du Lac County,WI,Wisconsin,Fond du Lac County WI,50,2,3,55,39,2-3-55-39,Midwest,East North Central +55041,Forest County,WI,Wisconsin,Forest County WI,50,2,3,55,41,2-3-55-41,Midwest,East North Central +55043,Grant County,WI,Wisconsin,Grant County WI,50,2,3,55,43,2-3-55-43,Midwest,East North Central +55045,Green County,WI,Wisconsin,Green County WI,50,2,3,55,45,2-3-55-45,Midwest,East North Central +55047,Green Lake County,WI,Wisconsin,Green Lake County WI,50,2,3,55,47,2-3-55-47,Midwest,East North Central +55049,Iowa County,WI,Wisconsin,Iowa County WI,50,2,3,55,49,2-3-55-49,Midwest,East North Central +55051,Iron County,WI,Wisconsin,Iron County WI,50,2,3,55,51,2-3-55-51,Midwest,East North Central +55053,Jackson County,WI,Wisconsin,Jackson County WI,50,2,3,55,53,2-3-55-53,Midwest,East North Central +55055,Jefferson County,WI,Wisconsin,Jefferson County WI,50,2,3,55,55,2-3-55-55,Midwest,East North Central +55057,Juneau County,WI,Wisconsin,Juneau County WI,50,2,3,55,57,2-3-55-57,Midwest,East North Central +55059,Kenosha County,WI,Wisconsin,Kenosha County WI,50,2,3,55,59,2-3-55-59,Midwest,East North Central +55061,Kewaunee County,WI,Wisconsin,Kewaunee County WI,50,2,3,55,61,2-3-55-61,Midwest,East North Central +55063,La Crosse County,WI,Wisconsin,La Crosse County WI,50,2,3,55,63,2-3-55-63,Midwest,East North Central +55065,Lafayette County,WI,Wisconsin,Lafayette County WI,50,2,3,55,65,2-3-55-65,Midwest,East North Central +55067,Langlade County,WI,Wisconsin,Langlade County WI,50,2,3,55,67,2-3-55-67,Midwest,East North Central +55069,Lincoln County,WI,Wisconsin,Lincoln County WI,50,2,3,55,69,2-3-55-69,Midwest,East North Central +55071,Manitowoc County,WI,Wisconsin,Manitowoc County WI,50,2,3,55,71,2-3-55-71,Midwest,East North Central +55073,Marathon County,WI,Wisconsin,Marathon County WI,50,2,3,55,73,2-3-55-73,Midwest,East North Central +55075,Marinette County,WI,Wisconsin,Marinette County WI,50,2,3,55,75,2-3-55-75,Midwest,East North Central +55077,Marquette County,WI,Wisconsin,Marquette County WI,50,2,3,55,77,2-3-55-77,Midwest,East North Central +55078,Menominee County,WI,Wisconsin,Menominee County WI,50,2,3,55,78,2-3-55-78,Midwest,East North Central +55079,Milwaukee County,WI,Wisconsin,Milwaukee County WI,50,2,3,55,79,2-3-55-79,Midwest,East North Central +55081,Monroe County,WI,Wisconsin,Monroe County WI,50,2,3,55,81,2-3-55-81,Midwest,East North Central +55083,Oconto County,WI,Wisconsin,Oconto County WI,50,2,3,55,83,2-3-55-83,Midwest,East North Central +55085,Oneida County,WI,Wisconsin,Oneida County WI,50,2,3,55,85,2-3-55-85,Midwest,East North Central +55087,Outagamie County,WI,Wisconsin,Outagamie County WI,50,2,3,55,87,2-3-55-87,Midwest,East North Central +55089,Ozaukee County,WI,Wisconsin,Ozaukee County WI,50,2,3,55,89,2-3-55-89,Midwest,East North Central +55091,Pepin County,WI,Wisconsin,Pepin County WI,50,2,3,55,91,2-3-55-91,Midwest,East North Central +55093,Pierce County,WI,Wisconsin,Pierce County WI,50,2,3,55,93,2-3-55-93,Midwest,East North Central +55095,Polk County,WI,Wisconsin,Polk County WI,50,2,3,55,95,2-3-55-95,Midwest,East North Central +55097,Portage County,WI,Wisconsin,Portage County WI,50,2,3,55,97,2-3-55-97,Midwest,East North Central +55099,Price County,WI,Wisconsin,Price County WI,50,2,3,55,99,2-3-55-99,Midwest,East North Central +55101,Racine County,WI,Wisconsin,Racine County WI,50,2,3,55,101,2-3-55-101,Midwest,East North Central +55103,Richland County,WI,Wisconsin,Richland County WI,50,2,3,55,103,2-3-55-103,Midwest,East North Central +55105,Rock County,WI,Wisconsin,Rock County WI,50,2,3,55,105,2-3-55-105,Midwest,East North Central +55107,Rusk County,WI,Wisconsin,Rusk County WI,50,2,3,55,107,2-3-55-107,Midwest,East North Central +55109,St. Croix County,WI,Wisconsin,St. Croix County WI,50,2,3,55,109,2-3-55-109,Midwest,East North Central +55111,Sauk County,WI,Wisconsin,Sauk County WI,50,2,3,55,111,2-3-55-111,Midwest,East North Central +55113,Sawyer County,WI,Wisconsin,Sawyer County WI,50,2,3,55,113,2-3-55-113,Midwest,East North Central +55115,Shawano County,WI,Wisconsin,Shawano County WI,50,2,3,55,115,2-3-55-115,Midwest,East North Central +55117,Sheboygan County,WI,Wisconsin,Sheboygan County WI,50,2,3,55,117,2-3-55-117,Midwest,East North Central +55119,Taylor County,WI,Wisconsin,Taylor County WI,50,2,3,55,119,2-3-55-119,Midwest,East North Central +55121,Trempealeau County,WI,Wisconsin,Trempealeau County WI,50,2,3,55,121,2-3-55-121,Midwest,East North Central +55123,Vernon County,WI,Wisconsin,Vernon County WI,50,2,3,55,123,2-3-55-123,Midwest,East North Central +55125,Vilas County,WI,Wisconsin,Vilas County WI,50,2,3,55,125,2-3-55-125,Midwest,East North Central +55127,Walworth County,WI,Wisconsin,Walworth County WI,50,2,3,55,127,2-3-55-127,Midwest,East North Central +55129,Washburn County,WI,Wisconsin,Washburn County WI,50,2,3,55,129,2-3-55-129,Midwest,East North Central +55131,Washington County,WI,Wisconsin,Washington County WI,50,2,3,55,131,2-3-55-131,Midwest,East North Central +55133,Waukesha County,WI,Wisconsin,Waukesha County WI,50,2,3,55,133,2-3-55-133,Midwest,East North Central +55135,Waupaca County,WI,Wisconsin,Waupaca County WI,50,2,3,55,135,2-3-55-135,Midwest,East North Central +55137,Waushara County,WI,Wisconsin,Waushara County WI,50,2,3,55,137,2-3-55-137,Midwest,East North Central +55139,Winnebago County,WI,Wisconsin,Winnebago County WI,50,2,3,55,139,2-3-55-139,Midwest,East North Central +55141,Wood County,WI,Wisconsin,Wood County WI,50,2,3,55,141,2-3-55-141,Midwest,East North Central +56001,Albany County,WY,Wyoming,Albany County WY,50,4,8,56,1,4-8-56-1,West,Mountain +56003,Big Horn County,WY,Wyoming,Big Horn County WY,50,4,8,56,3,4-8-56-3,West,Mountain +56005,Campbell County,WY,Wyoming,Campbell County WY,50,4,8,56,5,4-8-56-5,West,Mountain +56007,Carbon County,WY,Wyoming,Carbon County WY,50,4,8,56,7,4-8-56-7,West,Mountain +56009,Converse County,WY,Wyoming,Converse County WY,50,4,8,56,9,4-8-56-9,West,Mountain +56011,Crook County,WY,Wyoming,Crook County WY,50,4,8,56,11,4-8-56-11,West,Mountain +56013,Fremont County,WY,Wyoming,Fremont County WY,50,4,8,56,13,4-8-56-13,West,Mountain +56015,Goshen County,WY,Wyoming,Goshen County WY,50,4,8,56,15,4-8-56-15,West,Mountain +56017,Hot Springs County,WY,Wyoming,Hot Springs County WY,50,4,8,56,17,4-8-56-17,West,Mountain +56019,Johnson County,WY,Wyoming,Johnson County WY,50,4,8,56,19,4-8-56-19,West,Mountain +56021,Laramie County,WY,Wyoming,Laramie County WY,50,4,8,56,21,4-8-56-21,West,Mountain +56023,Lincoln County,WY,Wyoming,Lincoln County WY,50,4,8,56,23,4-8-56-23,West,Mountain +56025,Natrona County,WY,Wyoming,Natrona County WY,50,4,8,56,25,4-8-56-25,West,Mountain +56027,Niobrara County,WY,Wyoming,Niobrara County WY,50,4,8,56,27,4-8-56-27,West,Mountain +56029,Park County,WY,Wyoming,Park County WY,50,4,8,56,29,4-8-56-29,West,Mountain +56031,Platte County,WY,Wyoming,Platte County WY,50,4,8,56,31,4-8-56-31,West,Mountain +56033,Sheridan County,WY,Wyoming,Sheridan County WY,50,4,8,56,33,4-8-56-33,West,Mountain +56035,Sublette County,WY,Wyoming,Sublette County WY,50,4,8,56,35,4-8-56-35,West,Mountain +56037,Sweetwater County,WY,Wyoming,Sweetwater County WY,50,4,8,56,37,4-8-56-37,West,Mountain +56039,Teton County,WY,Wyoming,Teton County WY,50,4,8,56,39,4-8-56-39,West,Mountain +56041,Uinta County,WY,Wyoming,Uinta County WY,50,4,8,56,41,4-8-56-41,West,Mountain +56043,Washakie County,WY,Wyoming,Washakie County WY,50,4,8,56,43,4-8-56-43,West,Mountain +56045,Weston County,WY,Wyoming,Weston County WY,50,4,8,56,45,4-8-56-45,West,Mountain \ No newline at end of file diff --git a/examples/us-dams/src/data/dam-simple.csv.R b/examples/us-dams/src/data/dam-simple.csv.R new file mode 100644 index 000000000..dfdc640f6 --- /dev/null +++ b/examples/us-dams/src/data/dam-simple.csv.R @@ -0,0 +1,31 @@ +library(data.table) +library(dplyr) +library(readr) + +dams <- fread("https://nid.sec.usace.army.mil/api/nation/csv") |> + dplyr::select(name = 'Dam Name', + ownerType = 'Primary Owner Type', + primaryPurpose = 'Primary Purpose', + longitude = Longitude, + latitude = Latitude, + state = State, + county = County, + city = City, + primaryDamType = 'Primary Dam Type', + yearCompleted = 'Year Completed', + maxStorageAcreFt = 'Max Storage (Acre-Ft)', + hazardPotential = 'Hazard Potential Classification', + conditionAssessment = 'Condition Assessment', + ) |> + dplyr::mutate(conditionAssessment = case_when( + conditionAssessment %in% c(NA, "Not Available", "Not Rated") ~ "Not available", + TRUE ~ conditionAssessment + )) |> + dplyr::mutate(primaryPurpose = case_when( + primaryPurpose == "" ~ "Unrecorded", + primaryPurpose == "Fire Protection, Stock, Or Small Fish Pond" ~ "Fire, Stock, or Small Fish Pond", + TRUE ~ primaryPurpose + )) + + +cat(readr::format_csv(dams)) diff --git a/examples/us-dams/src/data/us-state-capitals.csv b/examples/us-dams/src/data/us-state-capitals.csv new file mode 100644 index 000000000..ff3a60478 --- /dev/null +++ b/examples/us-dams/src/data/us-state-capitals.csv @@ -0,0 +1,51 @@ +name,description,latitude,longitude +Alabama,Montgomery,32.377716,-86.300568 +Alaska,Juneau,58.301598,-134.420212 +Arizona,Phoenix,33.448143,-112.096962 +Arkansas,Little Rock,34.746613,-92.288986 +California,Sacramento,38.576668,-121.493629 +Colorado,Denver,39.739227,-104.984856 +Connecticut,Hartford,41.764046,-72.682198 +Delaware,Dover,39.157307,-75.519722 +Hawaii,Honolulu,21.307442,-157.857376 +Florida,Tallahassee,30.438118,-84.281296 +Georgia,Atlanta,33.749027,-84.388229 +Idaho,Boise,43.617775,-116.199722 +Illinois,Springfield,39.798363,-89.654961 +Indiana,Indianapolis,39.768623,-86.162643 +Iowa,Des Moines,41.591087,-93.603729 +Kansas,Topeka,39.048191,-95.677956 +Kentucky,Frankfort,38.186722,-84.875374 +Louisiana,Baton Rouge,30.457069,-91.187393 +Maine,Augusta,44.307167,-69.781693 +Maryland,Annapolis,38.978764,-76.490936 +Massachusetts,Boston,42.358162,-71.063698 +Michigan,Lansing,42.733635,-84.555328 +Minnesota,St. Paul,44.955097,-93.102211 +Mississippi,Jackson,32.303848,-90.182106 +Missouri,Jefferson City,38.579201,-92.172935 +Montana,Helena,46.585709,-112.018417 +Nebraska,Lincoln,40.808075,-96.699654 +Nevada,Carson City,39.163914,-119.766121 +New Hampshire,Concord,43.206898,-71.537994 +New Jersey,Trenton,40.220596,-74.769913 +New Mexico,Santa Fe,35.68224,-105.939728 +North Carolina,Raleigh,35.78043,-78.639099 +North Dakota,Bismarck,46.82085,-100.783318 +New York,Albany,42.652843,-73.757874 +Ohio,Columbus,39.961346,-82.999069 +Oklahoma,Oklahoma City,35.492207,-97.503342 +Oregon,Salem,44.938461,-123.030403 +Pennsylvania,Harrisburg,40.264378,-76.883598 +Rhode Island,Providence,41.830914,-71.414963 +South Carolina,Columbia,34.000343,-81.033211 +South Dakota,Pierre,44.367031,-100.346405 +Tennessee,Nashville,36.16581,-86.784241 +Texas,Austin,30.27467,-97.740349 +Utah,Salt Lake City,40.777477,-111.888237 +Vermont,Montpelier,44.262436,-72.580536 +Virginia,Richmond,37.538857,-77.43364 +Washington,Olympia,47.035805,-122.905014 +West Virginia,Charleston,38.336246,-81.612328 +Wisconsin,Madison,43.074684,-89.384445 +Wyoming,Cheyenne,41.140259,-104.820236 \ No newline at end of file diff --git a/examples/us-dams/src/index.md b/examples/us-dams/src/index.md new file mode 100644 index 000000000..a558431e9 --- /dev/null +++ b/examples/us-dams/src/index.md @@ -0,0 +1,289 @@ +# U.S. dams: national overview + +## Data from the [National Inventory of Dams](https://nid.sec.usace.army.mil/#/) + +```js +// Import deck.gl components for interactive map +import deck from "npm:deck.gl"; + +const {DeckGL, AmbientLight, GeoJsonLayer, TextLayer, HexagonLayer, LightingEffect, PointLight, ScatterplotLayer} = deck; +``` + +```js +// County-level data for US +const us = await fetch(import.meta.resolve("npm:us-atlas/counties-10m.json")).then((r) => r.json()); + +// State polygons +const states = topojson.feature(us, us.objects.states); + +// Find state centroids (for text label) +const stateCentroid = states.features.map(d => ({name: d.properties.name, longitude: d3.geoCentroid(d.geometry)[0], latitude: d3.geoCentroid(d.geometry)[1]})); + +// NID dams data: +const dams = FileAttachment("data/dam-simple.csv").csv({typed: true}); +``` + +
+
+
+

U.S. dam locations

+

Zoom and scroll, or hold down Shift to rotate. + ${colorLegend} +

+
+
+
+
+
+
+
+
+

Dam counts by state or territory

+

Total dams listed in NID: ${d3.format(",")(dams.length)}

+ ${resize((width, height) => countsByState(width, height))} +
+
+ + +
+Of ${d3.format(",")(dams.length)} U.S. dams included in the National Inventory of Dams, ${d3.format(",")(dams.filter(d => d.conditionAssessment == "Poor").length)} are listed as being in Poor condition. Of those in Poor condition, ${d3.format(",")(dams.filter(d => d.conditionAssessment == "Poor" && d.hazardPotential == "High").length)} have High hazard potential, where “downstream flooding would likely result in loss of human life.” +
+ + +
+
+

Nationwide dam risk: hazard potential and condition

+

Size indicates number of dams at each intersection

+ ${resize((width, height) => conditionHazardGrid(width, height))} +
+
+

Dam condition by year completed

+ ${resize((width, height) => conditionByAge(width, height))} +
+
+
+
+ ${searchUsDams} +
+ ${Inputs.table(searchUsDamsValue, {columns: ["name", "state", "county", "primaryPurpose", "hazardPotential", "conditionAssessment"], header: {name: "Name", state: "State", county: "County", primaryPurpose: "Purpose", hazardPotential: "Hazard potential", conditionAssessment: "Condition"}})} +
+ + + +```js +const colorRange = [ + [59, 82, 139], + [33, 145, 140], + [94, 201, 98], + [253, 231, 37] +]; + +const colorLegend = Plot.plot({ + margin: 0, + marginTop: 30, + marginRight: 20, + width: 450, + height: 50, + style: "color: 'currentColor';", + x: {padding: 0, axis: null}, + marks: [ + Plot.cellX(colorRange, {fill: ([r, g, b]) => `rgb(${r},${g},${b})`, inset: 2}), + Plot.text(["Fewer dams"], {frameAnchor: "top-left", dy: -12}), + Plot.text(["More dams"], {frameAnchor: "top-right", dy: -12}) + ] +}); + +const effects = [ + new LightingEffect({ + ambientLight: new AmbientLight({color: [255, 255, 255], intensity: 1}), + pointLight: new PointLight({color: [255, 255, 255], intensity: 0.8, position: [-0.144528, 49.739968, 80000]}), + pointLight2: new PointLight({color: [255, 255, 255], intensity: 0.8, position: [-3.807751, 54.104682, 8000]}) + }) +]; +``` + +```js +const deckInstance = new DeckGL({ + container, + initialViewState, + controller: true, + effects +}); + +// clean up if this code re-runs +invalidation.then(() => { + deckInstance.finalize(); + container.innerHTML = ""; +}); +``` + +```js +const initialViewState = { + longitude: -100, + latitude: 36, + zoom: 4.1, + minZoom: 3, + maxZoom: 7, + pitch: 45, + bearing: 20 +}; +``` + +```js +deckInstance.setProps({ + controller: true, + layers: [ + new GeoJsonLayer({ + id: "base-map", + data: states, + lineWidthMinPixels: 1.5, + getLineColor: [255,255,255, 100], + getFillColor: [38, 38, 38] + }), + new HexagonLayer({ + id: 'hexbin-plot', + data: dams, + coverage: 0.2, + radius: 6000, + upperPercentile: 99, + colorRange, + elevationScale: 100, + elevationRange: [50, 15000], + extruded: true, + getPosition: d => [d.longitude, d.latitude], + opacity: 1, + material: { + ambient: 1, + specularColor: [51, 51, 51] + } + }), + new TextLayer({ + id: "text-layer", + data: stateCentroid, + getPosition: d => [d.longitude, d.latitude], + getText: d => d.name, + fontFamily: 'Helvetica', + fontWeight: 700, + background: false, + fontSettings: ({ + sdf: true, + }), + outlineWidth: 4, + getSize: 14, + getColor: [247,248,243, 255], + getTextAnchor: 'middle', + getAlignmentBaseline: 'center', + getPixelOffset: [0, -10] + }) + ] +}); +``` + + + +```js +const conditions = [ + "Not available", + "Satisfactory", + "Fair", + "Unsatisfactory", + "Poor" +]; + +const conditionsColors = [ + "#9498a0", + "#4269d0", + "#97bbf5", + "#efb118", + "#ff725c" +]; + +const hazardPotential = [ + "Undetermined", + "Low", + "Significant", + "High" +].reverse() + +function conditionHazardGrid(width, height) { +return Plot.plot({ + width, + height: height - 30, + marginLeft: 100, + marginBottom: 40, + marginTop: 0, + grid: true, + x: {domain: conditions, label: "Condition"}, + y: {domain: hazardPotential, label: "Hazard potential"}, + r: {range: [3, 25], label: "Number of dams"}, + color: { + domain: conditions, + range: conditionsColors, + label: "Condition" + }, + marks: [ + Plot.dot(dams, Plot.group({r: "count"}, {x: "conditionAssessment", y: "hazardPotential", fill: "conditionAssessment", tip: true, stroke: "currentColor", strokeWidth: 0.5})) + ] +}); +} +``` + + + +```js +function conditionByAge(width, height) { + return Plot.plot({ + width, + height: height - 50, + marginBottom: 40, + marginTop: 0, + x: {label: "Year construction finished", tickFormat: "Y", labelAnchor: "center", labelArrow: "none"}, + y: {label: "Number of dams", grid: true, ticks: 5, tickSize: 0}, + color: {domain: conditions, range: conditionsColors, legend: true, label: "Condition"}, + marks: [ + Plot.rectY(dams, Plot.binX({y: "count"}, + {x: "yearCompleted", + fill: "conditionAssessment", + order: conditions, + interval: 10, + tip: true + }) + ) + ] + }) +}; +``` + + + +```js +function countsByState(width, height) { + + return Plot.plot({ + width, + height: height - 40, + marginTop: 10, + marginLeft: 100, + marginBottom: 35, + insetTop: -5, + insetBottom: -5, + color: {scheme: "Viridis"}, + y: {label: "State"}, + x: {label: "Number of dams", grid: true, ticks: 5, tickSize: 0}, + marks: [ + Plot.ruleY(dams, Plot.groupY({x: "count"}, {y: "state", strokeWidth: 0.5, sort: {y: "x", reverse: true}})), + Plot.dot(dams, Plot.groupY({x: "count", fill: "count"}, {y: "state", r: 4, stroke: "currentColor", strokeWidth: 0.5, tip: true, sort: {y: "x", reverse: true}, title: d => `${d.state}`})) + ] + }); + +} +``` + + + +```js +// For search with table +const searchUsDams = Inputs.search(dams); + +const searchUsDamsValue = Generators.input(searchUsDams); +``` diff --git a/examples/vega-dark/.gitignore b/examples/vega-dark/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/vega-dark/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/vega-dark/README.md b/examples/vega-dark/README.md new file mode 100644 index 000000000..9bf64383e --- /dev/null +++ b/examples/vega-dark/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Vega-Lite responsive dark mode + +View live: + +This Observable Framework example demonstrates how to implement responsive dark mode in Vega-Lite using Framework’s `dark` built-in, which reflects the user’s [preferred color scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). The chart automatically switches between light and dark mode if the user’s preferred color scheme changes. diff --git a/examples/vega-dark/observablehq.config.js b/examples/vega-dark/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/vega-dark/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/vega-dark/package.json b/examples/vega-dark/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/vega-dark/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/vega-dark/src/.gitignore b/examples/vega-dark/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/vega-dark/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/vega-dark/src/index.md b/examples/vega-dark/src/index.md new file mode 100644 index 000000000..c7857880c --- /dev/null +++ b/examples/vega-dark/src/index.md @@ -0,0 +1,29 @@ +# Vega-Lite responsive dark mode + +Using [vega-themes](https://github.com/vega/vega-themes) and Observable Framework’s built-in [`dark` reactive variable](https://observablehq.com/framework/lib/generators#dark()), you can render Vega-Lite charts that respect the user’s [preferred color scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) and the current [Framework theme](https://observablehq.com/framework/themes). + +```js echo +import * as themes from "npm:vega-themes"; + +display( + await vl.render({ + spec: { + config: { + ...(dark ? themes.dark : themes.default), + background: "transparent" + }, + width: 640, + height: 250, + autosize: {type: "fit", contains: "padding"}, + data: {url: "https://vega.github.io/vega-lite/data/cars.json"}, + mark: "bar", + encoding: { + x: {field: "Cylinders"}, + y: {aggregate: "count", title: "Number of cars"} + } + } + }) +); +``` + +Unfortunately, since Vega-Lite defaults to rendering with canvas, you can’t use CSS [`currentColor`](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#currentcolor_keyword) to inherit the foreground color (as Observable Plot does by default) — and hence the chart must be re-rendered if the preferred color scheme changes, and Vega-Lite’s foreground color won’t exactly match your chosen theme. Additionally, Vega-Lite’s built-in themes do not use a transparent background, and so we override the background for a seamless appearance. diff --git a/examples/vega-responsive/.gitignore b/examples/vega-responsive/.gitignore new file mode 100644 index 000000000..e58735f55 --- /dev/null +++ b/examples/vega-responsive/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/dist/ +node_modules/ +yarn-error.log diff --git a/examples/vega-responsive/README.md b/examples/vega-responsive/README.md new file mode 100644 index 000000000..76985faa0 --- /dev/null +++ b/examples/vega-responsive/README.md @@ -0,0 +1,7 @@ +[Framework examples →](../) + +# Vega-Lite responsive width + +View live: + +This Observable Framework example demonstrates how to implement responsive width in Vega-Lite using Framework’s `resize` built-in, which is implemented with [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver). The chart automatically resizes to fit the container. A reusable helper function `vlresize` is provided in [`src/vlresize.js`](./src/vlresize.js). diff --git a/examples/vega-responsive/observablehq.config.js b/examples/vega-responsive/observablehq.config.js new file mode 100644 index 000000000..fb0f92431 --- /dev/null +++ b/examples/vega-responsive/observablehq.config.js @@ -0,0 +1,3 @@ +export default { + root: "src" +}; diff --git a/examples/vega-responsive/package.json b/examples/vega-responsive/package.json new file mode 100644 index 000000000..974d8b80c --- /dev/null +++ b/examples/vega-responsive/package.json @@ -0,0 +1,20 @@ +{ + "type": "module", + "private": true, + "scripts": { + "clean": "rimraf src/.observablehq/cache", + "build": "observable build", + "dev": "observable preview", + "deploy": "observable deploy", + "observable": "observable" + }, + "dependencies": { + "@observablehq/framework": "^1.7.0" + }, + "devDependencies": { + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">=18" + } +} diff --git a/examples/vega-responsive/src/.gitignore b/examples/vega-responsive/src/.gitignore new file mode 100644 index 000000000..1235d15eb --- /dev/null +++ b/examples/vega-responsive/src/.gitignore @@ -0,0 +1 @@ +/.observablehq/cache/ diff --git a/examples/vega-responsive/src/index.md b/examples/vega-responsive/src/index.md new file mode 100644 index 000000000..e50c46fe7 --- /dev/null +++ b/examples/vega-responsive/src/index.md @@ -0,0 +1,95 @@ +# Vega-Lite responsive width + +The chart below resizes to fit the container. Try resizing the window. + +Rather than use Vega-Lite’s built-in [responsive width](https://vega.github.io/vega-lite/docs/size.html#specifying-responsive-width-and-height) — which only listens to window _resize_ events and doesn’t work correctly when the container is initially detached, or when the page content changes — we use Observable Framework’s built-in [`resize` function](https://observablehq.com/framework/javascript#responsive-display) which handles all cases thanks to [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver). + +```js echo +const chart = await vl.render({ + spec: { + "$schema": "https://vega.github.io/schema/vega-lite/v5.json", + "width": -1, + "height": 250, + "autosize": {"type": "fit", "contains": "padding"}, + "data": {"url": "https://vega.github.io/vega-lite/data/cars.json"}, + "mark": "bar", + "encoding": { + "x": {"field": "Cylinders"}, + "y": {"aggregate": "count", "title": "Number of cars"} + } + } +}); + +display(resize((width) => { + chart.value.width(Math.min(960 - 16 * 2, width)); + chart.value.run(); + return chart; +})); +``` + +## vlresize(*spec*) + +If you prefer a more reusable solution, you can create a `vlresize` function like so in a `vlresize.js` module that you can import into any page. + +```js run=false +import {resize} from "npm:@observablehq/stdlib"; +import vl from "observablehq:stdlib/vega-lite"; + +export async function vlresize( + {autosize = {type: "fit", contains: "padding"}, ...spec}, + {minWidth = 0, maxWidth = Infinity} = {} +) { + const chart = await vl.render({spec: {...spec, width: -1, autosize}}); + return resize((width) => { + chart.value.width(Math.max(minWidth, Math.min(maxWidth, width))); + chart.value.run(); + return chart; + }); +} +``` + +You can then import `vlresize` like so: + +```js echo +import {vlresize} from "./vlresize.js"; +``` + +And call it like so: + +```js echo +vlresize({ + "height": 250, + "data": {"url": "https://vega.github.io/vega-lite/data/cars.json"}, + "mark": "bar", + "encoding": { + "x": {"field": "Cylinders"}, + "y": {"aggregate": "count", "title": "Number of cars"} + } +}, { + maxWidth: 960 - 16 * 2 +}) +``` + +## Static width + +If you’d prefer to set a fixed width and have the browser scale the chart to fit the container, you can override the default styles that Vega-Lite sets on the canvas element. Below, the natural width of the chart is 640px, but the chart will scale down to fit the container in narrow windows. + +```js echo +const chart = display(await vl.render({ + spec: { + width: 640, + height: 250, + data: {url: "https://vega.github.io/vega-lite/data/cars.json"}, + mark: "bar", + encoding: { + x: {field: "Cylinders"}, + y: {aggregate: "count", title: "Number of cars"} + } + } +})); + +const canvas = chart.firstChild; +canvas.style.aspectRatio = `${canvas.width} / ${canvas.height}`; +canvas.style.maxWidth = "100%"; +canvas.style.height = "auto"; +``` diff --git a/examples/vega-responsive/src/vlresize.js b/examples/vega-responsive/src/vlresize.js new file mode 100644 index 000000000..4fcc99c51 --- /dev/null +++ b/examples/vega-responsive/src/vlresize.js @@ -0,0 +1,14 @@ +import {resize} from "npm:@observablehq/stdlib"; +import vl from "observablehq:stdlib/vega-lite"; + +export async function vlresize( + {autosize = {type: "fit", contains: "padding"}, ...spec}, + {minWidth = 0, maxWidth = Infinity} = {} +) { + const chart = await vl.render({spec: {...spec, width: -1, autosize}}); + return resize((width) => { + chart.value.width(Math.max(minWidth, Math.min(maxWidth, width))); + chart.value.run(); + return chart; + }); +} diff --git a/observablehq.config.ts b/observablehq.config.ts index 7e39f38a8..59b54bdf3 100644 --- a/observablehq.config.ts +++ b/observablehq.config.ts @@ -1,47 +1,55 @@ -import {version} from "./package.json" assert {type: "json"}; +import {existsSync} from "node:fs"; +import {readFile, readdir, stat} from "node:fs/promises"; +import {join} from "node:path/posix"; +import {formatPrefix} from "d3-format"; +import {themes} from "./docs/themes.md.ts"; + +let stargazers_count: number; +try { + ({stargazers_count} = await github("/repos/observablehq/framework")); +} catch (error) { + if (process.env.CI) throw error; + stargazers_count = NaN; +} export default { + root: "docs", + output: "docs/.observablehq/dist", title: "Observable Framework", pages: [ + {name: "What is Framework?", path: "/what-is-framework"}, {name: "Getting started", path: "/getting-started"}, - {name: "Routing", path: "/routing"}, - {name: "Markdown", path: "/markdown"}, - {name: "JavaScript", path: "/javascript"}, - {name: "Data loaders", path: "/loaders"}, - {name: "Themes", path: "/themes"}, - {name: "Configuration", path: "/config"}, - { - name: "JavaScript", - open: false, - pages: [ - {name: "Reactivity", path: "/javascript/reactivity"}, - {name: "Display", path: "/javascript/display"}, - {name: "Inputs", path: "/javascript/inputs"}, - {name: "Imports", path: "/javascript/imports"}, - {name: "Files", path: "/javascript/files"}, - {name: "Promises", path: "/javascript/promises"}, - {name: "Generators", path: "/javascript/generators"}, - {name: "Mutables", path: "/javascript/mutables"} - ] - }, + {name: "Deploying", path: "/deploying"}, + {name: "Embedding", path: "/embeds"}, { - name: "CSS", + name: "Reference", open: false, pages: [ - {name: "Card", path: "/css/card"}, - {name: "Color", path: "/css/color"}, - {name: "Grid", path: "/css/grid"}, - {name: "Note", path: "/css/note"} + {name: "Project structure", path: "/project-structure"}, + {name: "Markdown", path: "/markdown"}, + {name: "JavaScript", path: "/javascript"}, + {name: "Reactivity", path: "/reactivity"}, + {name: "JSX", path: "/jsx"}, + {name: "Imports", path: "/imports"}, + {name: "Data loaders", path: "/data-loaders"}, + {name: "Files", path: "/files"}, + {name: "SQL", path: "/sql"}, + {name: "Themes", path: "/themes"}, + {name: "Page loaders", path: "/page-loaders"}, + {name: "Parameterized routes", path: "/params"}, + {name: "Configuration", path: "/config"} ] }, { name: "Inputs", open: false, + pager: "inputs", + path: "/inputs/", pages: [ {name: "Button", path: "/inputs/button"}, {name: "Checkbox", path: "/inputs/checkbox"}, {name: "Color", path: "/inputs/color"}, - {name: "Date/Datetime", path: "/inputs/date"}, + {name: "Date", path: "/inputs/date"}, {name: "File", path: "/inputs/file"}, {name: "Form", path: "/inputs/form"}, {name: "Radio", path: "/inputs/radio"}, @@ -57,11 +65,13 @@ export default { { name: "Libraries", open: false, + pager: false, pages: [ {name: "Apache Arrow", path: "/lib/arrow"}, {name: "Arquero", path: "/lib/arquero"}, {name: "CSV", path: "/lib/csv"}, {name: "D3", path: "/lib/d3"}, + {name: "Deck.gl", path: "/lib/deckgl"}, {name: "DOT (Graphviz)", path: "/lib/dot"}, {name: "DuckDB", path: "/lib/duckdb"}, {name: "Hypertext Literal", path: "/lib/htl"}, @@ -69,9 +79,9 @@ export default { {name: "Lodash", path: "/lib/lodash"}, {name: "Mapbox GL JS", path: "/lib/mapbox-gl"}, {name: "Mermaid", path: "/lib/mermaid"}, - {name: "Microsoft Excel", path: "/lib/xlsx"}, + {name: "Microsoft Excel (XLSX)", path: "/lib/xlsx"}, + {name: "Mosaic vgplot", path: "/lib/mosaic"}, {name: "Observable Generators", path: "/lib/generators"}, - {name: "Observable Inputs", path: "/lib/inputs"}, {name: "Observable Plot", path: "/lib/plot"}, {name: "Shapefile", path: "/lib/shapefile"}, {name: "SQLite", path: "/lib/sqlite"}, @@ -81,30 +91,103 @@ export default { {name: "ZIP", path: "/lib/zip"} ] }, - {name: "Contributing", path: "/contributing"} + {name: "Examples", path: "https://github.com/observablehq/framework/tree/main/examples"}, + {name: "Converting notebooks", path: "/convert"}, + {name: "Contributing", path: "/contributing", pager: false} + ], + dynamicPaths: [ + "/chart.js", + "/theme/dark", + "/theme/dark-alt", + "/theme/dashboard", + "/theme/light", + "/theme/light-alt", + "/theme/wide", + ...themes.dark.map((theme) => `/theme/${theme}`), + ...themes.light.map((theme) => `/theme/${theme}`) ], base: "/framework", - scripts: [{type: "module", async: true, src: "analytics.js"}], - head: ` - + globalStylesheets: [ + "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spline+Sans+Mono:ital,wght@0,300..700;1,300..700&display=swap" + ], + head: ({path}) => ` + +${ + process.env.CI + ? ` -`, - header: ``, +` + : "" + } +`, + home: ` + ${logo()} Framework + `, + header: ``, footer: `© ${new Date().getUTCFullYear()} Observable, Inc.`, - style: "style.css" + style: "style.css", + search: { + async *index() { + for (const name of await readdir("examples")) { + const root = join("examples", name); + if ((await stat(root)).isDirectory() && existsSync(join(root, "README.md"))) { + const source = await readFile(join(root, "README.md"), "utf-8"); + yield { + path: `https://observablehq.observablehq.cloud/framework-example-${name}/`, + title: source + .split("\n") + .find((line) => line.startsWith("# ")) + ?.slice(2), + text: source + }; + } + } + } + } }; + +async function github( + path: string, + { + authorization = process.env.GITHUB_TOKEN && `token ${process.env.GITHUB_TOKEN}`, + accept = "application/vnd.github.v3+json" + } = {} +) { + const url = new URL(path, "https://api.github.com"); + const headers = {...(authorization && {authorization}), accept}; + const response = await fetch(url, {headers}); + if (!response.ok) throw new Error(`fetch error: ${response.status} ${url}`); + return await response.json(); +} + +function logo() { + return ` + +`; +} diff --git a/package.json b/package.json index ade62e214..ce825fd3b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@observablehq/framework", "license": "ISC", - "version": "1.0.0-rc.6", + "version": "1.12.0", "type": "module", "publishConfig": { "access": "public" @@ -11,34 +11,43 @@ "url": "https://github.com/observablehq/framework.git" }, "files": [ - "bin/**/*.js", - "bin/**/*.ts", - "src/**/*.js", - "src/**/*.ts", - "src/**/*.css", + "dist/**/*.js", + "dist/**/*.css", "templates" ], "bin": { - "observable": "bin/observable-init.js" + "observable": "dist/bin/observable.js" }, "scripts": { - "dev": "rm -f docs/themes.md docs/theme/*.md && (tsx watch docs/theme/generate-themes.ts & tsx watch --no-warnings=ExperimentalWarning ./bin/observable.ts preview)", - "build": "yarn rebuild-themes && rm -rf dist && tsx --no-warnings=ExperimentalWarning ./bin/observable.ts build", - "deploy": "yarn rebuild-themes && tsx --no-warnings=ExperimentalWarning ./bin/observable.ts deploy", - "rebuild-themes": "rm -f docs/themes.md docs/theme/*.md && tsx docs/theme/generate-themes.ts", - "test": "yarn test:mocha && yarn test:tsc && yarn test:lint && yarn test:prettier", - "test:coverage": "c8 yarn test:mocha", - "test:mocha": "rm -rf test/.observablehq/cache test/input/build/*/.observablehq/cache && OBSERVABLE_TELEMETRY_DISABLE=1 TZ=America/Los_Angeles tsx --no-warnings=ExperimentalWarning ./node_modules/.bin/mocha 'test/**/*-test.*'", - "test:lint": "eslint src test", + "dev": "tsx watch --ignore docs --no-warnings=ExperimentalWarning ./src/bin/observable.ts preview --no-open --cors", + "docs:build": "tsx --no-warnings=ExperimentalWarning ./src/bin/observable.ts build", + "docs:deploy": "tsx --no-warnings=ExperimentalWarning ./src/bin/observable.ts deploy", + "build": "rimraf dist && node build.js --outdir=dist --outbase=src \"src/**/*.{ts,js,css}\" --ignore \"**/*.d.ts\"", + "test": "concurrently npm:test:mocha npm:test:tsc npm:test:lint npm:test:prettier", + "test:coverage": "c8 --check-coverage --lines 80 --per-file yarn test:mocha:all", + "test:build": "rimraf test/build && rimraf --glob test/.observablehq/cache test/input/build/*/.observablehq/cache && cross-env npm_package_version=1.0.0-test node build.js --sourcemap --outdir=test/build \"{src,test}/**/*.{ts,js,css}\" --ignore \"test/input/**\" --ignore \"test/output/**\" --ignore \"test/preview/dashboard/**\" --ignore \"**/*.d.ts\" && cp -r templates test/build", + "test:mocha": "yarn test:mocha:serial -p", + "test:mocha:serial": "yarn test:build && cross-env OBSERVABLE_TELEMETRY_DISABLE=1 TZ=America/Los_Angeles mocha --timeout 30000 \"test/build/test/**/*-test.js\"", + "test:mocha:annotate": "yarn test:build && cross-env OBSERVABLE_TELEMETRY_DISABLE=1 OBSERVABLE_ANNOTATE_FILES=true TZ=America/Los_Angeles mocha --timeout 30000 \"test/build/test/**/annotate.js\"", + "test:mocha:all": "yarn test:mocha && cross-env OBSERVABLE_TELEMETRY_DISABLE=1 OBSERVABLE_ANNOTATE_FILES=true TZ=America/Los_Angeles mocha --timeout 30000 \"test/build/test/**/annotate.js\"", + "test:lint": "eslint src test --max-warnings=0", "test:prettier": "prettier --check src test", "test:tsc": "tsc --noEmit", - "observable": "tsx --no-warnings=ExperimentalWarning ./bin/observable.ts" + "observable": "tsx --no-warnings=ExperimentalWarning ./src/bin/observable.ts", + "prepublishOnly": "yarn build" }, "c8": { "all": true, "include": [ - "src/**/*.js", - "src/**/*.ts" + "test/build/src/**/*.js" + ], + "exclude": [ + "test/build/src/bin/", + "test/build/src/client/", + "test/build/src/convert.js", + "test/build/src/jsr.js", + "test/build/src/observableApiConfig.js", + "test/build/src/preview.js" ], "reporter": [ "text", @@ -47,62 +56,87 @@ }, "dependencies": { "@clack/prompts": "^0.7.0", - "@observablehq/inputs": "^0.10.6", - "@observablehq/runtime": "^5.9.4", + "@observablehq/inputs": "^0.12.0", + "@observablehq/inspector": "^5.0.1", + "@observablehq/runtime": "^6.0.0", + "@rollup/plugin-commonjs": "^25.0.7", + "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-virtual": "^3.0.2", + "@sindresorhus/slugify": "^2.2.1", "acorn": "^8.11.2", "acorn-walk": "^8.3.0", "ci-info": "^4.0.0", - "esbuild": "^0.19.8", + "cross-spawn": "^7.0.3", + "d3-array": "^3.2.4", + "d3-hierarchy": "^3.1.2", + "esbuild": "^0.20.1", "fast-array-diff": "^1.1.0", "fast-deep-equal": "^3.1.3", + "glob": "^10.3.10", "gray-matter": "^4.0.3", "he": "^1.2.0", "highlight.js": "^11.8.0", "is-docker": "^3.0.0", "is-wsl": "^3.1.0", + "jsdom": "^23.2.0", "jszip": "^3.10.1", - "linkedom": "^0.15.6", - "markdown-it": "^13.0.2", + "markdown-it": "^14.0.0", "markdown-it-anchor": "^8.6.7", - "mime": "^3.0.0", - "open": "^9.1.0", + "mime": "^4.0.0", + "minisearch": "^6.3.0", + "open": "^10.1.0", + "picocolors": "^1.1.1", + "pkg-dir": "^8.0.0", + "resolve.exports": "^2.0.2", "rollup": "^4.6.0", "rollup-plugin-esbuild": "^6.1.0", - "send": "^0.18.0", + "semver": "^7.5.4", + "send": "^0.19.0", + "tar": "^6.2.0", "tar-stream": "^3.1.6", - "tsx": "~4.2.1", + "tsx": "^4.7.1", "untildify": "^5.0.0", "wrap-ansi": "^9.0.0", "ws": "^8.14.2" }, "devDependencies": { - "@types/he": "^1.2.3", - "@types/markdown-it": "^13.0.2", - "@types/mime": "^3.0.2", - "@types/mocha": "^10.0.2", - "@types/node": "^20.7.1", - "@types/prompts": "^2.4.9", - "@types/send": "^0.17.2", + "@types/cross-spawn": "^6.0.6", + "@types/d3-array": "^3.2.1", + "@types/d3-format": "^3.0.4", + "@types/he": "^1.2.0", + "@types/jsdom": "^21.1.7", + "@types/markdown-it": "^14.0.0", + "@types/mime": "^4.0.0", + "@types/mocha": "^10.0.8", + "@types/node": "^18.11.9", + "@types/send": "^0.17.4", + "@types/tar": "^6.1.13", "@types/tar-stream": "^3.1.3", - "@types/ws": "^8.5.6", - "@typescript-eslint/eslint-plugin": "^6.7.3", - "@typescript-eslint/parser": "^6.7.3", - "c8": "^8.0.1", + "@types/ws": "^8.5.12", + "@typescript-eslint/eslint-plugin": "^7.2.0", + "@typescript-eslint/parser": "^7.2.0", + "c8": "^9.1.0", "chai": "^4.3.10", "chai-http": "^4.4.0", - "d3-array": "^3.2.4", + "concurrently": "^8.2.2", + "cross-env": "^7.0.3", "d3-dsv": "^3.0.1", + "d3-format": "^3.1.0", "eslint": "^8.50.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.0", "mocha": "^10.2.0", "prettier": "^3.0.3 <3.1", - "typescript": "^5.2.2", - "undici": "^5.27.2" + "react": "^18.2.0", + "react-dom": "^18.2.0", + "rimraf": "^5.0.5", + "tempy": "^3.1.0", + "typescript": "^5.2.2 <5.6.0", + "undici": "^6.7.1" }, "engines": { - "node": ">=20.6" + "node": ">=18" } } diff --git a/src/bin/observable.ts b/src/bin/observable.ts new file mode 100755 index 000000000..993b59672 --- /dev/null +++ b/src/bin/observable.ts @@ -0,0 +1,375 @@ +#!/usr/bin/env node +import {join} from "node:path/posix"; +import type {ParseArgsConfig} from "node:util"; +import {parseArgs} from "node:util"; +import * as clack from "@clack/prompts"; +import wrapAnsi from "wrap-ansi"; +import {readConfig} from "../config.js"; +import {CliError} from "../error.js"; +import {faint, link, red} from "../tty.js"; + +const args = process.argv.slice(2); + +const CONFIG_OPTION = { + root: { + type: "string", + description: "Path to the project root" + }, + config: { + type: "string", + short: "c", + description: "Path to the app config file" + } +} as const; + +// Convert --version or -v as first argument into version. +if (args[0] === "--version" || args[0] === "-v") args[0] = "version"; + +// Parse the initial options loosely. +const {values, positionals, tokens} = parseArgs({ + options: { + help: { + type: "boolean", + short: "h" + }, + debug: { + type: "boolean", + short: "d" + } + }, + strict: false, + tokens: true, + args +}); + +let command: string | undefined; + +// Extract the command. +if (positionals.length > 0) { + const t = tokens.find((t) => t.kind === "positional")!; + args.splice(t.index, 1); + command = positionals[0]; + + // Convert help into --help. + if (command === "help" && positionals.length > 1) { + const p = tokens.find((p) => p.kind === "positional" && p !== t)!; + args.splice(p.index - 1, 1, "--help"); + command = positionals[1]; + } +} + +// Convert --help or -h (with no command) into help. +else if (values.help) { + const t = tokens.find((t) => t.kind === "option" && t.name === "help")!; + args.splice(t.index, 1); + command = "help"; +} + +/** Commands that use Clack formatting. When handling CliErrors, clack.outro() + * will be used for these commands. */ +const CLACKIFIED_COMMANDS = ["create", "deploy", "login", "convert"]; + +try { + switch (command) { + case undefined: + case "help": { + helpArgs(command, {allowPositionals: true}); + console.log( + `usage: observable + create create a new app from a template + preview start the preview server + build generate a static site + login sign-in to Observable + logout sign-out of Observable + deploy deploy an app to Observable + whoami check authentication status + convert convert an Observable notebook to Markdown + help print usage information + version print the version` + ); + if (command === undefined) process.exit(1); + break; + } + case "version": { + helpArgs(command, {}); + console.log(process.env.npm_package_version); + break; + } + case "build": { + const { + values: {config, root} + } = helpArgs(command, { + options: {...CONFIG_OPTION} + }); + await import("../build.js").then(async (build) => build.build({config: await readConfig(config, root)})); + break; + } + case "create": { + helpArgs(command, {}); + await import("../create.js").then(async (create) => create.create()); + break; + } + case "deploy": { + const { + values: {config, root, message, build, id, "deploy-config": deployConfigPath} + } = helpArgs(command, { + options: { + ...CONFIG_OPTION, + message: { + type: "string", + short: "m", + description: "Message to associate with this deploy" + }, + build: { + type: "boolean", + description: "Always build before deploying" + }, + "no-build": { + type: "boolean", + description: "Don’t build before deploying; deploy as is" + }, + id: { + type: "string", + hidden: true + }, + "deploy-config": { + type: "string", + description: "Path to the deploy config file (deploy.json)" + } + } + }); + await import("../deploy.js").then(async (deploy) => + deploy.deploy({ + config: await readConfig(config, root), + message, + force: build === true ? "build" : build === false ? "deploy" : null, + deployId: id, + deployConfigPath + }) + ); + break; + } + case "preview": { + const {values} = helpArgs(command, { + options: { + ...CONFIG_OPTION, + host: { + type: "string", + default: "127.0.0.1", + description: "the server host; use 0.0.0.0 to accept external connections" + }, + port: { + type: "string", + description: "the server port; defaults to 3000 (or higher if unavailable)" + }, + cors: { + type: "boolean", + description: "allow cross-origin requests on all origins (*)" + }, + "allow-origin": { + type: "string", + multiple: true, + description: "allow cross-origin requests on a specific origin" + }, + open: { + type: "boolean", + default: true, + description: "open browser" + }, + "no-open": { + type: "boolean" + } + } + }); + const {config, root, host, port, open, cors, ["allow-origin"]: origins} = values; + await readConfig(config, root); // Ensure the config is valid. + await import("../preview.js").then(async (preview) => + preview.preview({ + config, + root, + hostname: host!, + port: port === undefined ? undefined : +port, + origins: cors ? ["*"] : origins, + open + }) + ); + break; + } + case "login": { + helpArgs(command, {}); + await import("../observableApiAuth.js").then((auth) => auth.login()); + break; + } + case "logout": { + helpArgs(command, {}); + await import("../observableApiAuth.js").then((auth) => auth.logout()); + break; + } + case "whoami": { + helpArgs(command, {}); + await import("../observableApiAuth.js").then((auth) => auth.whoami()); + break; + } + case "convert": { + const { + positionals, + values: {config, root, output: out, force} + } = helpArgs(command, { + options: { + output: { + type: "string", + short: "o", + description: "Output directory (defaults to the source root)" + }, + force: { + type: "boolean", + short: "f", + description: "If true, overwrite existing resources" + }, + ...CONFIG_OPTION + }, + allowPositionals: true + }); + // The --output command-line option is relative to the cwd, but the root + // config option (typically "src") is relative to the project root. + const output = out ?? join(root ?? ".", (await readConfig(config, root)).root); + await import("../convert.js").then((convert) => convert.convert(positionals, {output, force})); + break; + } + default: { + console.error(`observable: unknown command '${command}'. See 'observable help'.`); + process.exit(1); + break; + } + } +} catch (error: any) { + const wrapWidth = Math.min(80, process.stdout.columns ?? 80); + const bugMessage = "If you think this is a bug, please file an issue at"; + const bugUrl = "https://github.com/observablehq/framework/issues"; + const clackBugMessage = () => { + // clack.outro doesn't handle multiple lines well, so do it manually + console.log(`${faint("│\n│")} ${bugMessage}\n${faint("└")} ${link(bugUrl)}\n`); + }; + const consoleBugMessage = () => { + console.error(`${bugMessage}\n↳ ${link(bugUrl)}\n`); + }; + + if (error instanceof CliError) { + if (error.print) { + if (command && CLACKIFIED_COMMANDS.includes(command)) { + clack.log.error(wrapAnsi(red(`Error: ${error.message}`), wrapWidth)); + clackBugMessage(); + } else { + console.error(red(error.message)); + consoleBugMessage(); + } + } + process.exit(error.exitCode); + } else { + if (command && CLACKIFIED_COMMANDS.includes(command)) { + clack.log.error(wrapAnsi(`${red("Error:")} ${error.message}`, wrapWidth)); + if (values.debug) { + clack.outro("The full error follows"); + throw error; + } else { + clack.log.info("To see the full stack trace, run with the --debug flag."); + clackBugMessage(); + } + } else { + console.error(`\n${red("Unexpected error:")} ${error.message}`); + if (values.debug) { + console.error("The full error follows\n"); + throw error; + } else { + console.error("\nTip: To see the full stack trace, run with the --debug flag.\n"); + consoleBugMessage(); + } + } + } + process.exit(1); +} + +type DescribableParseArgsConfig = ParseArgsConfig & { + options?: { + [longOption: string]: { + type: "string" | "boolean"; + multiple?: boolean | undefined; + short?: string | undefined; + default?: string | boolean | string[] | boolean[] | undefined; + description?: string; + hidden?: boolean; + }; + }; +}; + +// A wrapper for parseArgs that adds --help functionality with automatic usage. +// TODO It’d be nicer nice if we could change the return type to denote +// arguments with default values, and to enforce required arguments, if any. +function helpArgs( + command: string | undefined, + config: T +): ReturnType> { + const {options = {}} = config; + + // Find the boolean --foo options that have a corresponding boolean --no-foo. + const booleanPairs: string[] = []; + for (const key in options) { + if (options[key].type === "boolean" && !key.startsWith("no-") && options[`no-${key}`]?.type === "boolean") { + booleanPairs.push(key); + } + } + + let result: ReturnType>; + try { + result = parseArgs({ + ...config, + tokens: config.tokens || booleanPairs.length > 0, + options: {...options, help: {type: "boolean", short: "h"}, debug: {type: "boolean"}}, + args + }); + } catch (error: any) { + if (!error.code?.startsWith("ERR_PARSE_ARGS_")) throw error; + console.error(`observable: ${error.message}. See 'observable help${command ? ` ${command}` : ""}'.`); + process.exit(1); + } + + // Log automatic help. + if ((result.values as any).help) { + // Omit hidden flags from help. + const publicOptions = Object.fromEntries(Object.entries(options).filter(([, option]) => !option.hidden)); + console.log( + `Usage: observable ${command}${command === undefined || command === "help" ? " " : ""}${Object.entries( + publicOptions + ) + .map(([name, {default: def}]) => ` [--${name}${def === undefined ? "" : `=${def}`}]`) + .join("")}` + ); + if (Object.values(publicOptions).some((spec) => spec.description)) { + console.log(); + for (const [long, spec] of Object.entries(publicOptions)) { + if (spec.description) { + const left = ` ${spec.short ? `-${spec.short}, ` : ""}--${long}`.padEnd(20); + console.log(`${left}${spec.description}`); + } + } + console.log(); + } + process.exit(0); + } + + // Merge --no-foo into --foo based on order + // https://nodejs.org/api/util.html#parseargs-tokens + if ("tokens" in result && result.tokens) { + const {values, tokens} = result; + for (const key of booleanPairs) { + for (const token of tokens) { + if (token.kind !== "option") continue; + const {name} = token; + if (name === `no-${key}`) values[key] = false; + else if (name === key) values[key] = true; + } + } + } + + return result; +} diff --git a/src/build.ts b/src/build.ts index 96b14a116..945901042 100644 --- a/src/build.ts +++ b/src/build.ts @@ -1,55 +1,40 @@ +import {createHash} from "node:crypto"; import {existsSync} from "node:fs"; -import {access, constants, copyFile, readFile, writeFile} from "node:fs/promises"; -import {basename, dirname, join} from "node:path"; -import {fileURLToPath} from "node:url"; -import type {Config, Style} from "./config.js"; -import {mergeStyle} from "./config.js"; -import {Loader} from "./dataloader.js"; -import {CliError, isEnoent} from "./error.js"; -import {getClientPath, prepareOutput, visitMarkdownFiles} from "./files.js"; -import {createImportResolver, rewriteModule} from "./javascript/imports.js"; +import {copyFile, readFile, rm, stat, writeFile} from "node:fs/promises"; +import {basename, dirname, extname, join} from "node:path/posix"; +import type {Config} from "./config.js"; +import {getDuckDBManifest} from "./duckdb.js"; +import {CliError, enoent} from "./error.js"; +import {getClientPath, prepareOutput} from "./files.js"; +import {findModule, getModuleHash, readJavaScript} from "./javascript/module.js"; +import {transpileModule} from "./javascript/transpile.js"; import type {Logger, Writer} from "./logger.js"; -import {renderServerless} from "./render.js"; +import type {MarkdownPage} from "./markdown.js"; +import {populateNpmCache, resolveNpmImport, rewriteNpmImports} from "./npm.js"; +import {isAssetPath, isPathImport, relativePath, resolvePath, within} from "./path.js"; +import {renderModule, renderPage} from "./render.js"; +import type {Resolvers} from "./resolvers.js"; +import {getModuleResolvers, getResolvers} from "./resolvers.js"; +import {resolveStylesheetPath} from "./resolvers.js"; import {bundleStyles, rollupClient} from "./rollup.js"; +import {searchIndex} from "./search.js"; import {Telemetry} from "./telemetry.js"; -import {faint} from "./tty.js"; -import {resolvePath} from "./url.js"; - -const EXTRA_FILES = new Map([ - [ - join(fileURLToPath(import.meta.resolve("@observablehq/runtime")), "../../dist/runtime.js"), - "_observablehq/runtime.js" - ] -]); - -// TODO Remove library helpers (e.g., duckdb) when they are published to npm. -function clientBundles(clientPath: string): [entry: string, name: string][] { - return [ - [clientPath, "client.js"], - ["./src/client/stdlib.js", "stdlib.js"], - ["./src/client/stdlib/dot.js", "stdlib/dot.js"], - ["./src/client/stdlib/duckdb.js", "stdlib/duckdb.js"], - ["./src/client/stdlib/inputs.css", "stdlib/inputs.css"], - ["./src/client/stdlib/inputs.js", "stdlib/inputs.js"], - ["./src/client/stdlib/mermaid.js", "stdlib/mermaid.js"], - ["./src/client/stdlib/sqlite.js", "stdlib/sqlite.js"], - ["./src/client/stdlib/tex.js", "stdlib/tex.js"], - ["./src/client/stdlib/vega-lite.js", "stdlib/vega-lite.js"], - ["./src/client/stdlib/xlsx.js", "stdlib/xlsx.js"], - ["./src/client/stdlib/zip.js", "stdlib/zip.js"] - ]; -} +import {tree} from "./tree.js"; +import {faint, green, magenta, red, yellow} from "./tty.js"; export interface BuildOptions { config: Config; - clientEntry?: string; - addPublic?: boolean; } export interface BuildEffects { logger: Logger; output: Writer; + /** + * Does any pre-build work, such as emptying the existing outputRoot. + */ + prepare(): Promise; + /** * @param outputPath The path of this file relative to the outputRoot. For * example, in a local build this should be relative to the dist directory. @@ -61,152 +46,491 @@ export interface BuildEffects { * example, in a local build this should be relative to the dist directory. */ writeFile(outputPath: string, contents: Buffer | string): Promise; + + writeBuildManifest(buildManifest: BuildManifest): Promise; } export async function build( - {config, addPublic = true, clientEntry = "./src/client/index.js"}: BuildOptions, - effects: BuildEffects = new FileBuildEffects(config.output) + {config}: BuildOptions, + effects: BuildEffects = new FileBuildEffects(config.output, join(config.root, ".observablehq", "cache")) ): Promise { - const {root} = config; + const {root, loaders, title, duckdb} = config; Telemetry.record({event: "build", step: "start"}); - // Make sure all files are readable before starting to write output files. + // Prepare for build (such as by emptying the existing output root). + await effects.prepare(); + + // Accumulate outputs. + const outputs = new Map(); + const files = new Set(); // e.g., "/assets/foo.png" + const localImports = new Set(); // e.g., "/components/foo.js" + const globalImports = new Set(); // e.g., "/_observablehq/search.js" + const stylesheets = new Set(); // e.g., "/style.css" + const addFile = (path: string, f: string) => files.add(resolvePath(path, f)); + const addLocalImport = (path: string, i: string) => localImports.add(resolvePath(path, i)); + const addGlobalImport = (path: string, i: string) => isPathImport(i) && globalImports.add(resolvePath(path, i)); + const addStylesheet = (path: string, s: string) => stylesheets.add(/^\w+:/.test(s) ? s : resolvePath(path, s)); + + // Load pages, building a list of additional assets as we go. + let assetCount = 0; let pageCount = 0; - for await (const sourceFile of visitMarkdownFiles(root)) { - await access(join(root, sourceFile), constants.R_OK); - pageCount++; - } - if (!pageCount) throw new CliError(`Nothing to build: no page files found in your ${root} directory.`); - effects.logger.log(`${faint("found")} ${pageCount} ${faint(`page${pageCount === 1 ? "" : "s"} in`)} ${root}`); - - // Render .md files, building a list of file attachments as we go. - const files: string[] = []; - const imports: string[] = []; - const styles: Style[] = []; - for await (const sourceFile of visitMarkdownFiles(root)) { - const sourcePath = join(root, sourceFile); - const outputPath = join(dirname(sourceFile), basename(sourceFile, ".md") + ".html"); - effects.output.write(`${faint("render")} ${sourcePath} ${faint("→")} `); - const path = join("/", dirname(sourceFile), basename(sourceFile, ".md")); - const render = await renderServerless(sourcePath, {path, ...config}); - const resolveFile = ({name}) => resolvePath(sourceFile, name); - files.push(...render.files.map(resolveFile)); - imports.push(...render.imports.filter((i) => i.type === "local").map(resolveFile)); - await effects.writeFile(outputPath, render.html); - const style = mergeStyle(path, render.data?.style, render.data?.theme, config.style); - if (style && !styles.some((s) => styleEquals(s, style))) styles.push(style); - } - - // Add imported local scripts. - for (const script of config.scripts) { - if (!/^\w+:/.test(script.src)) { - imports.push(script.src); + const pagePaths = new Set(); + + const buildManifest: BuildManifest = { + ...(title && {title}), + config: {root}, + pages: [], + modules: [], + files: [] + }; + + // file is the serving path relative to the base (e.g., /foo) + // path is the source file relative to the source root (e.g., /foo.md) + const addToManifest = (type: string, file: string, {title, path}: {title?: string | null; path: string}) => { + buildManifest[type].push({ + path: config.normalizePath(file), + source: join("/", path), // TODO have route return path with leading slash? + ...(title != null && {title}) + }); + }; + + for await (const path of config.paths()) { + effects.output.write(`${faint("load")} ${path} `); + const start = performance.now(); + const options = {path, ...config}; + if (path.endsWith(".js")) { + const module = findModule(root, path); + if (module) { + const resolvers = await getModuleResolvers(path, config); + const elapsed = Math.floor(performance.now() - start); + for (const f of resolvers.files) addFile(path, f); + for (const i of resolvers.localImports) addLocalImport(path, i); + for (const i of resolvers.globalImports) addGlobalImport(path, resolvers.resolveImport(i)); + for (const s of resolvers.stylesheets) addStylesheet(path, s); + effects.output.write(`${faint("in")} ${(elapsed >= 100 ? yellow : faint)(`${elapsed}ms`)}\n`); + outputs.set(path, {type: "module", resolvers}); + ++assetCount; + addToManifest("modules", path, module); + continue; + } + } + const file = loaders.find(path); + if (file) { + effects.output.write(`${faint("copy")} ${join(root, path)} ${faint("→")} `); + const sourcePath = join(root, await file.load({useStale: true}, effects)); + await effects.copyFile(sourcePath, path); + addToManifest("files", path, file); + ++assetCount; + continue; } + const page = await loaders.loadPage(path, options, effects); + if (page.data.draft) { + effects.logger.log(faint("(skipped)")); + continue; + } + const resolvers = await getResolvers(page, options); + const elapsed = Math.floor(performance.now() - start); + for (const f of resolvers.assets) addFile(path, f); + for (const f of resolvers.files) addFile(path, f); + for (const i of resolvers.localImports) addLocalImport(path, i); + for (const i of resolvers.globalImports) addGlobalImport(path, resolvers.resolveImport(i)); + for (const s of resolvers.stylesheets) addStylesheet(path, s); + effects.output.write(`${faint("in")} ${(elapsed >= 100 ? yellow : faint)(`${elapsed}ms`)}\n`); + pagePaths.add(path); + outputs.set(path, {type: "page", page, resolvers}); + ++pageCount; } - // Generate the client bundles. - if (addPublic) { - for (const [entry, name] of clientBundles(clientEntry)) { - const clientPath = getClientPath(entry); - const outputPath = join("_observablehq", name); - effects.output.write(`${faint("bundle")} ${clientPath} ${faint("→")} `); - const code = await (entry.endsWith(".css") - ? bundleStyles({path: clientPath}) - : rollupClient(clientPath, {minify: true})); - await effects.writeFile(outputPath, code); + // Check that there’s at least one output. + const outputCount = pageCount + assetCount; + if (!outputCount) throw new CliError(`Nothing to build: no pages found in your ${root} directory.`); + if (pageCount) effects.logger.log(`${faint("built")} ${pageCount} ${faint(`page${pageCount === 1 ? "" : "s"} in`)} ${root}`); // prettier-ignore + if (assetCount) effects.logger.log(`${faint("built")} ${assetCount} ${faint(`asset${assetCount === 1 ? "" : "s"} in`)} ${root}`); // prettier-ignore + + // For cache-breaking we rename most assets to include content hashes. + const aliases = new Map(); + const cacheRoot = join(root, ".observablehq", "cache"); + + // Add the search bundle and data, if needed. + if (config.search) { + globalImports.add("/_observablehq/search.js").add("/_observablehq/minisearch.json"); + const contents = await searchIndex(config, pagePaths, effects); + effects.output.write(`${faint("index →")} `); + const cachePath = join(cacheRoot, "_observablehq", "minisearch.json"); + await prepareOutput(cachePath); + await writeFile(cachePath, contents); + effects.logger.log(cachePath); + } + + // Copy over the DuckDB extensions, initializing aliases that are needed to + // construct the DuckDB manifest. + for (const path of globalImports) { + if (path.startsWith("/_duckdb/")) { + const sourcePath = join(cacheRoot, path); + effects.output.write(`${faint("build")} ${path} ${faint("→")} `); + const contents = await readFile(sourcePath); + const hash = createHash("sha256").update(contents).digest("hex").slice(0, 8); + const [, , , version, bundle, name] = path.split("/"); + const alias = join("/_duckdb/", `${basename(name, ".duckdb_extension.wasm")}-${hash}`, version, bundle, name); + aliases.set(path, alias); + await effects.writeFile(alias, contents); + } + } + + // Generate the client bundles. These are initially generated into the cache + // because we need to rewrite any npm and node imports to be hashed; this is + // handled generally for all global imports below. + for (const path of globalImports) { + if (path.startsWith("/_observablehq/") && path.endsWith(".js")) { + const cachePath = join(cacheRoot, path); + effects.output.write(`${faint("bundle")} ${path} ${faint("→")} `); + const clientPath = getClientPath(path === "/_observablehq/client.js" ? "index.js" : path.slice("/_observablehq/".length)); // prettier-ignore + const define: {[key: string]: string} = {}; + if (path === "/_observablehq/stdlib/duckdb.js") define["DUCKDB_MANIFEST"] = JSON.stringify(await getDuckDBManifest(duckdb, {root, aliases})); // prettier-ignore + const contents = await rollupClient(clientPath, root, path, {minify: true, keepNames: true, define}); + await prepareOutput(cachePath); + await writeFile(cachePath, contents); + effects.logger.log(cachePath); } - for (const style of styles) { - if ("path" in style) { - const outputPath = join("_import", style.path); - const sourcePath = join(root, style.path); - effects.output.write(`${faint("bundle")} ${sourcePath} ${faint("→")} `); - const code = await bundleStyles({path: sourcePath}); - await effects.writeFile(outputPath, code); + } + + // Copy over the stylesheets, accumulating hashed aliases. + for (const specifier of stylesheets) { + if (specifier.startsWith("observablehq:")) { + let contents: string; + const path = `/_observablehq/${specifier.slice("observablehq:".length)}`; + effects.output.write(`${faint("build")} ${path} ${faint("→")} `); + if (specifier.startsWith("observablehq:theme-")) { + const match = /^observablehq:theme-(?[\w-]+(,[\w-]+)*)?\.css$/.exec(specifier); + contents = await bundleStyles({theme: match!.groups!.theme?.split(",") ?? [], minify: true}); } else { - const outputPath = join("_observablehq", `theme-${style.theme}.css`); - effects.output.write(`${faint("bundle")} theme-${style.theme}.css ${faint("→")} `); - const code = await bundleStyles({theme: style.theme}); - await effects.writeFile(outputPath, code); + const clientPath = getClientPath(path.slice("/_observablehq/".length)); + contents = await bundleStyles({path: clientPath, minify: true}); } + const hash = createHash("sha256").update(contents).digest("hex").slice(0, 8); + const alias = applyHash(path, hash); + aliases.set(path, alias); + await effects.writeFile(alias, contents); + } else if (specifier.startsWith("npm:")) { + effects.output.write(`${faint("copy")} ${specifier} ${faint("→")} `); + const path = await resolveNpmImport(root, specifier.slice("npm:".length)); + const sourcePath = await populateNpmCache(root, path); // TODO effects + await effects.copyFile(sourcePath, path); + } else if (!/^\w+:/.test(specifier)) { + const sourcePath = join(root, specifier); + effects.output.write(`${faint("build")} ${sourcePath} ${faint("→")} `); + const contents = await bundleStyles({path: sourcePath, minify: true}); + const hash = createHash("sha256").update(contents).digest("hex").slice(0, 8); + const alias = applyHash(join("/_import", specifier), hash); + aliases.set(resolveStylesheetPath(root, specifier), alias); + await effects.writeFile(alias, contents); } } - // Copy over the referenced files. + // Copy over referenced files, accumulating hashed aliases. for (const file of files) { - let sourcePath = join(root, file); - const outputPath = join("_file", file); - if (!existsSync(sourcePath)) { - const loader = Loader.find(root, join("/", file), {useStale: true}); - if (!loader) { - effects.logger.error("missing referenced file", sourcePath); - continue; - } - try { - sourcePath = join(root, await loader.load(effects)); - } catch (error) { - if (!isEnoent(error)) throw error; - continue; - } + effects.output.write(`${faint("copy")} ${join(root, file)} ${faint("→")} `); + const path = join("/", file); + const loader = loaders.find(path); + if (!loader) throw enoent(path); + const sourcePath = join(root, await loader.load({useStale: true}, effects)); + const contents = await readFile(sourcePath); + const hash = createHash("sha256").update(contents).digest("hex").slice(0, 8); + const alias = applyHash(join("/_file", file), hash); + aliases.set(loaders.resolveFilePath(file), alias); + await effects.writeFile(alias, contents); + } + + // Copy over global assets (e.g., minisearch.json, DuckDB’s WebAssembly). + // Anything in _observablehq also needs a content hash, but anything in _npm + // or _node does not (because they are already necessarily immutable). We’re + // skipping DuckDB’s extensions because they were previously copied above. + for (const path of globalImports) { + if (path.endsWith(".js") || path.startsWith("/_duckdb/")) continue; + const sourcePath = join(cacheRoot, path); + effects.output.write(`${faint("build")} ${path} ${faint("→")} `); + if (path.startsWith("/_observablehq/")) { + const contents = await readFile(sourcePath, "utf-8"); + const hash = createHash("sha256").update(contents).digest("hex").slice(0, 8); + const alias = applyHash(path, hash); + aliases.set(path, alias); + await effects.writeFile(alias, contents); + } else { + await effects.copyFile(sourcePath, path); } + } + + // Compute the hashes for global modules. By computing the hash on the file in + // the cache root, this takes into consideration the resolved exact versions + // of npm and node imports for transitive dependencies. + for (const path of globalImports) { + if (!path.endsWith(".js")) continue; + const hash = getModuleHash(cacheRoot, path).slice(0, 8); + const alias = applyHash(path, hash); + effects.logger.log(`${faint("alias")} ${path} ${faint("→")} ${alias}`); + aliases.set(path, alias); + } + + // Copy over global imports, applying aliases. Note that unused standard + // library imports (say parquet-wasm if you never use FileAttachment.parquet) + // may not be present in aliases and not included in the output build; these + // imports therefore will not have associated hashes. + for (const path of globalImports) { + if (!path.endsWith(".js")) continue; + const sourcePath = join(cacheRoot, path); + effects.output.write(`${faint("build")} ${path} ${faint("→")} `); + const resolveImport = (i: string) => isPathImport(i) ? relativePath(path, aliases.get((i = resolvePath(path, i))) ?? i) : i; // prettier-ignore + await effects.writeFile(aliases.get(path)!, rewriteNpmImports(await readFile(sourcePath, "utf-8"), resolveImport)); + } + + // Copy over imported local modules, overriding import resolution so that + // module hash is incorporated into the file name rather than in the query + // string. Note that this hash is not of the content of the module itself, but + // of the transitive closure of the module and its imports and files. + const resolveLocalImport = async (path: string): Promise => { + const hash = (await loaders.getLocalModuleHash(path)).slice(0, 8); + return applyHash(join("/_import", path), hash); + }; + for (const path of localImports) { + if (!path.endsWith(".js")) continue; + const module = findModule(root, path); + if (!module) throw new Error(`import not found: ${path}`); + const sourcePath = join(root, module.path); + const importPath = join("_import", module.path); effects.output.write(`${faint("copy")} ${sourcePath} ${faint("→")} `); - await effects.copyFile(sourcePath, outputPath); + const resolveImport = loaders.getModuleResolver(path); + const input = await readJavaScript(sourcePath); + const contents = await transpileModule(input, { + root, + path, + params: module.params, + resolveFile(name) { + const resolution = loaders.resolveFilePath(resolvePath(path, name)); + return aliases.get(resolution) ?? resolution; + }, + resolveFileInfo(name) { + return loaders.getOutputInfo(resolvePath(path, name)); + }, + async resolveImport(specifier) { + let resolution: string; + if (isPathImport(specifier)) { + resolution = await resolveLocalImport(resolvePath(path, specifier)); + } else { + resolution = await resolveImport(specifier); + if (isPathImport(resolution)) { + resolution = resolvePath(importPath, resolution); + resolution = aliases.get(resolution) ?? resolution; + } + } + return relativePath(importPath, resolution); + } + }); + const alias = await resolveLocalImport(path); + aliases.set(loaders.resolveImportPath(path), alias); + await effects.writeFile(alias, contents); } - // Copy over the imported modules. - const importResolver = createImportResolver(root); - for (const file of imports) { - const sourcePath = join(root, file); - const outputPath = join("_import", file); - if (!existsSync(sourcePath)) { - effects.logger.error("missing referenced file", sourcePath); - continue; + // Wrap the resolvers to apply content-hashed file names. + for (const [path, output] of outputs) { + const {resolvers} = output; + outputs.set(path, { + ...output, + resolvers: { + ...resolvers, + resolveFile(specifier) { + const r = resolvers.resolveFile(specifier); + const a = aliases.get(resolvePath(path, r)); + return a ? relativePath(path, a) : specifier; // fallback to specifier if enoent + }, + resolveStylesheet(specifier) { + const r = resolvers.resolveStylesheet(specifier); + const a = aliases.get(resolvePath(path, r)); + return a ? relativePath(path, a) : isPathImport(specifier) ? specifier : r; // fallback to specifier if enoent + }, + resolveImport(specifier) { + const r = resolvers.resolveImport(specifier); + const a = aliases.get(resolvePath(path, r)); + return a ? relativePath(path, a) : isPathImport(specifier) ? specifier : r; // fallback to specifier if enoent + }, + resolveScript(specifier) { + const r = resolvers.resolveScript(specifier); + const a = aliases.get(resolvePath(path, r)); + return a ? relativePath(path, a) : specifier; // fallback to specifier if enoent + } + } + }); + } + + // Render pages! + for (const [path, output] of outputs) { + effects.output.write(`${faint("render")} ${path} ${faint("→")} `); + if (output.type === "page") { + const {page, resolvers} = output; + const html = await renderPage(page, {...config, path, resolvers}); + await effects.writeFile(`${path}.html`, html); + addToManifest("pages", path, page); + } else { + const {resolvers} = output; + const source = await renderModule(root, path, resolvers); + await effects.writeFile(path, source); } - effects.output.write(`${faint("copy")} ${sourcePath} ${faint("→")} `); - const contents = await rewriteModule(await readFile(sourcePath, "utf-8"), file, importResolver); - await effects.writeFile(outputPath, contents); } - // Copy over required distribution files. - if (addPublic) { - for (const [sourcePath, outputPath] of EXTRA_FILES) { - effects.output.write(`${faint("copy")} ${sourcePath} ${faint("→")} `); - await effects.copyFile(sourcePath, outputPath); + // Write the build manifest. + await effects.writeBuildManifest(buildManifest); + // Log page sizes. + const columnWidth = 12; + effects.logger.log(""); + for (const [indent, name, description, node] of tree(outputs)) { + if (node.children) { + effects.logger.log( + `${faint(indent)}${name}${faint(description)} ${ + node.depth ? "" : ["Page", "Imports", "Files"].map((name) => name.padStart(columnWidth)).join(" ") + }` + ); + } else { + const [path, {type, resolvers}] = node.data!; + const resolveOutput = (name: string) => join(config.output, resolvePath(path, name)); + const pageSize = (await stat(join(config.output, type === "page" ? `${path}.html` : path))).size; + const importSize = await accumulateSize(resolvers.staticImports, resolvers.resolveImport, resolveOutput); + const fileSize = + (await accumulateSize(resolvers.files, resolvers.resolveFile, resolveOutput)) + + (await accumulateSize(resolvers.assets, resolvers.resolveFile, resolveOutput)) + + (await accumulateSize(resolvers.stylesheets, resolvers.resolveStylesheet, resolveOutput)); + effects.logger.log( + `${faint(indent)}${name}${description} ${[pageSize, importSize, fileSize] + .map((size) => formatBytes(size, columnWidth)) + .join(" ")}` + ); } } + effects.logger.log(""); + + // Check links. TODO Have this break the build, and move this check earlier? + const [validLinks, brokenLinks] = validateLinks(outputs); + if (brokenLinks.length) { + effects.logger.warn(`${yellow("Warning: ")}${brokenLinks.length} broken link${brokenLinks.length === 1 ? "" : "s"} (${validLinks.length + brokenLinks.length} validated)`); // prettier-ignore + for (const [path, link] of brokenLinks) effects.logger.log(`${faint("↳")} ${path} ${faint("→")} ${red(link)}`); + } else if (validLinks.length) { + effects.logger.log(`${green(`${validLinks.length}`)} link${validLinks.length === 1 ? "" : "s"} validated`); + } + Telemetry.record({event: "build", step: "finish", pageCount}); } +type Link = [path: string, target: string]; + +function validateLinks(outputs: Map): [valid: Link[], broken: Link[]] { + const validTargets = new Set(outputs.keys()); // e.g., "/this/page#hash"; + for (const [path, {resolvers}] of outputs) { + for (const anchor of resolvers.anchors) { + validTargets.add(`${path}#${encodeURIComponent(anchor)}`); + } + } + const valid: Link[] = []; + const broken: Link[] = []; + for (const [path, {resolvers}] of outputs) { + for (const target of resolvers.localLinks) { + (validTargets.has(target) ? valid : broken).push([path, target]); + } + } + return [valid, broken]; +} + +function applyHash(path: string, hash: string): string { + const ext = extname(path); + let name = basename(path, ext); + if (path.endsWith(".js")) name = name.replace(/(^|\.)_esm$/, ""); // allow hash to replace _esm + return join(dirname(path), `${name && `${name}.`}${hash}${ext}`); +} + +async function accumulateSize( + files: Iterable, + resolveFile: (path: string) => string, + resolveOutput: (path: string) => string +): Promise { + let size = 0; + for (const file of files) { + const fileResolution = resolveFile(file); + if (isAssetPath(fileResolution)) { + try { + size += (await stat(resolveOutput(fileResolution))).size; + } catch { + // ignore missing file + } + } + } + return size; +} + +function formatBytes(size: number, length: number, locale: Intl.LocalesArgument = "en-US"): string { + let color: (text: string) => string; + let text: string; + if (size < 1e3) { + text = "<1 kB"; + color = faint; + } else if (size < 1e6) { + text = (size / 1e3).toLocaleString(locale, {maximumFractionDigits: 0}) + " kB"; + color = green; + } else { + text = (size / 1e6).toLocaleString(locale, {minimumFractionDigits: 3, maximumFractionDigits: 3}) + " MB"; + color = size < 10e6 ? yellow : size < 50e6 ? magenta : red; + } + return color(text.padStart(length)); +} + export class FileBuildEffects implements BuildEffects { private readonly outputRoot: string; + private readonly cacheDir: string; readonly logger: Logger; readonly output: Writer; constructor( outputRoot: string, + cacheDir: string, {logger = console, output = process.stdout}: {logger?: Logger; output?: Writer} = {} ) { if (!outputRoot) throw new Error("missing outputRoot"); this.logger = logger; this.output = output; this.outputRoot = outputRoot; + this.cacheDir = cacheDir; + } + async prepare(): Promise { + if (within(process.cwd(), this.outputRoot)) { + await rm(this.outputRoot, {recursive: true, force: true}); + } else { + this.logger.warn( + `${yellow("Warning:")} the output root ${ + this.outputRoot + } is not within the current working directory and will not be cleared.` + ); + } } async copyFile(sourcePath: string, outputPath: string): Promise { const destination = join(this.outputRoot, outputPath); this.logger.log(destination); await prepareOutput(destination); + if (existsSync(destination)) throw new Error(`file conflict: ${outputPath}`); await copyFile(sourcePath, destination); } async writeFile(outputPath: string, contents: string | Buffer): Promise { const destination = join(this.outputRoot, outputPath); this.logger.log(destination); await prepareOutput(destination); + if (existsSync(destination)) throw new Error(`file conflict: ${outputPath}`); await writeFile(destination, contents); } + async writeBuildManifest(buildManifest: BuildManifest): Promise { + const destination = join(this.cacheDir, "_build.json"); + await prepareOutput(destination); + await writeFile(destination, JSON.stringify(buildManifest)); + } } -function styleEquals(a: Style, b: Style): boolean { - return "path" in a && "path" in b - ? a.path === b.path - : "theme" in a && "theme" in b - ? a.theme.join() === b.theme.join() - : false; +export interface BuildManifest { + title?: string; + config: {root: string}; + pages: {path: string; title?: string | null; source?: string}[]; + modules: {path: string; source?: string}[]; + files: {path: string; source?: string}[]; } diff --git a/src/client/deploy.js b/src/client/deploy.js deleted file mode 100644 index cf1d69f76..000000000 --- a/src/client/deploy.js +++ /dev/null @@ -1,44 +0,0 @@ -export * from "./index.js"; - -const origin = process.env.OBSERVABLE_ORIGIN; -const parent = window.parent; // capture to prevent reassignment - -let listener = null; -let queuedMessages = null; - -async function messaged(event) { - if (!event.isTrusted || event.origin !== origin || event.source !== parent) return; - event.stopImmediatePropagation(); - const message = event.data; - - if (message.type === "hello") { - postMessage({type: "hello"}); - } else if (message.type === "load_script") { - try { - if (listener) throw new Error("a script is already loaded"); - queuedMessages = []; - const module = await import(message.url); - if (module.listener) { - listener = module.listener; - queuedMessages.forEach((m) => Promise.resolve(m).then(listener)); - queuedMessages = null; - } - postMessage({type: "load_script_complete", url: message.url, re: message.id}); - } catch (error) { - postMessage({type: "load_script_error", url: message.url, error: error.message, re: message.id}); - } - } else if (listener) { - listener(message); - } else if (queuedMessages) { - queuedMessages.push(message); - } -} - -let fingerprint = `c-${Math.random().toString(36).slice(2, 8).padStart(6, "0")}`; -let nextId = 0; -function postMessage(message) { - parent.postMessage({id: `${fingerprint}-${++nextId}`, ...message}, origin); -} - -addEventListener("message", messaged); -postMessage({type: "hello"}); diff --git a/src/client/inspect.js b/src/client/inspect.js index e23080b62..6cc769565 100644 --- a/src/client/inspect.js +++ b/src/client/inspect.js @@ -1,15 +1,21 @@ import {Inspector} from "observablehq:runtime"; -export function inspect(value) { - const inspector = new Inspector(document.createElement("div")); - inspector.fulfilled(value); - return inspector._node.firstChild; +export function inspect(value, expanded) { + const node = document.createElement("div"); + new Inspector(node).fulfilled(value); + if (expanded) { + for (const path of expanded) { + let child = node; + for (const i of path) child = child?.childNodes[i]; + child?.dispatchEvent(new Event("mouseup")); // restore expanded state + } + } + return node; } export function inspectError(value) { - const inspector = new Inspector(document.createElement("div")); - inspector.rejected(value); - const node = inspector._node.firstChild; + const node = document.createElement("div"); + new Inspector(node).rejected(value); node.classList.add("observablehq--error"); return node; } diff --git a/src/client/main.js b/src/client/main.js index 2d295b551..47f23593e 100644 --- a/src/client/main.js +++ b/src/client/main.js @@ -1,5 +1,4 @@ import {Runtime} from "observablehq:runtime"; -import {registerFile} from "observablehq:stdlib"; import {FileAttachment, Generators, Mutable, resize} from "observablehq:stdlib"; import {inspect, inspectError} from "./inspect.js"; import * as recommendedLibraries from "./stdlib/recommendedLibraries.js"; @@ -8,6 +7,7 @@ import * as sampleDatasets from "./stdlib/sampleDatasets.js"; const library = { now: () => Generators.now(), width: () => Generators.width(document.querySelector("main")), + dark: () => Generators.dark(), resize: () => resize, FileAttachment: () => FileAttachment, Generators: () => Generators, @@ -16,52 +16,181 @@ const library = { ...sampleDatasets }; -const runtime = new Runtime(library); +export const runtime = new Runtime(library); export const main = runtime.module(); -export const cellsById = new Map(); // TODO hide +const cellsById = new Map(); +const rootsById = findRoots(document.body); export function define(cell) { - const {id, inline, inputs = [], outputs = [], files = [], body} = cell; + const {id, mode, inputs = [], outputs = [], body} = cell; const variables = []; - cellsById.get(id)?.variables.forEach((v) => v.delete()); cellsById.set(id, {cell, variables}); - const root = document.querySelector(`#cell-${id}`); - let reset = null; - const clear = () => ((root.innerHTML = ""), root.classList.remove("observablehq--loading"), (reset = null)); - const display = inline - ? (v) => { - reset?.(); - if (isNode(v) || typeof v === "string" || !v?.[Symbol.iterator]) root.append(v); - else root.append(...v); - return v; - } - : (v) => { - reset?.(); - root.append(isNode(v) ? v : inspect(v)); - return v; - }; - const v = main.variable( - { - _node: root, // for visibility promise - pending: () => (reset = clear), - fulfilled: () => reset?.(), - rejected: (error) => (reset?.(), console.error(error), root.append(inspectError(error))) - }, - { - shadow: { - display: () => display, - view: () => (v) => Generators.input(display(v)) + const root = rootsById.get(id); + const loading = findLoading(root); + root._nodes = []; + if (mode === undefined) root._expanded = []; // only blocks have inspectors + if (loading) root._nodes.push(loading); + const pending = () => reset(root, loading); + const rejected = (error) => reject(root, error); + const v = main.variable({_node: root.parentNode, pending, rejected}, {shadow: {}}); // _node for visibility promise + if (inputs.includes("display") || inputs.includes("view")) { + let displayVersion = -1; // the variable._version of currently-displayed values + const predisplay = mode === "jsx" ? noop : clear; // jsx replaces previous display naturally + const display = mode === "inline" ? displayInline : mode === "jsx" ? displayJsx : displayBlock; + const vd = new v.constructor(2, v._module); + vd.define( + inputs.filter((i) => i !== "display" && i !== "view"), + () => { + let version = v._version; // capture version on input change + return (value) => { + if (version < displayVersion) throw new Error("stale display"); + else if (version > displayVersion) predisplay(root); + displayVersion = version; + display(root, value); + return value; + }; } + ); + v._shadow.set("display", vd); + if (inputs.includes("view")) { + const vv = new v.constructor(2, v._module, null, {shadow: {}}); + vv._shadow.set("display", vd); + vv.define(["display"], (display) => (v) => Generators.input(display(v))); + v._shadow.set("view", vv); } - ); + } v.define(outputs.length ? `cell ${id}` : null, inputs, body); variables.push(v); for (const o of outputs) variables.push(main.variable(true).define(o, [`cell ${id}`], (exports) => exports[o])); - for (const f of files) registerFile(f.name, f); +} + +function noop() {} + +function clear(root) { + if (root._expanded) root._expanded = root._nodes.map(getExpanded); + root._nodes.forEach((v) => v.remove()); + root._nodes.length = 0; +} + +// If the variable previously rejected, it will show an error even if it doesn’t +// normally display; we can’t rely on a subsequent display clearing the error, +// so we clear the error when the variable is pending. We also restore the +// original loading indicator in this case, which applies to inline expressions +// and expression code blocks. +function reset(root, loading) { + if (root._error) { + root._error = false; + clear(root); + if (loading) displayNode(root, loading); + } +} + +function reject(root, error) { + console.error(error); + root._error = true; // see reset + clear(root); + displayNode(root, inspectError(error)); +} + +function displayJsx(root, value) { + return (root._root ??= import("npm:react-dom").then(({createRoot}) => { + const node = document.createElement("DIV"); + return [node, createRoot(node)]; + })).then(([node, client]) => { + if (!node.parentNode) { + root._nodes.push(node); + root.parentNode.insertBefore(node, root); + } + client.render(value); + }); +} + +function displayNode(root, node) { + if (node.nodeType === 11) { + let child; + while ((child = node.firstChild)) { + root._nodes.push(child); + root.parentNode.insertBefore(child, root); + } + } else { + root._nodes.push(node); + root.parentNode.insertBefore(node, root); + } +} + +function displayInline(root, value) { + if (isNode(value)) { + displayNode(root, value); + } else if (typeof value === "string" || !value?.[Symbol.iterator]) { + displayNode(root, document.createTextNode(value)); + } else { + for (const v of value) { + displayNode(root, isNode(v) ? v : document.createTextNode(v)); + } + } +} + +function displayBlock(root, value) { + displayNode(root, isNode(value) ? value : inspect(value, root._expanded[root._nodes.length])); +} + +export function undefine(id) { + clear(rootsById.get(id)); + cellsById.get(id).variables.forEach((v) => v.delete()); + cellsById.delete(id); } // Note: Element.prototype is instanceof Node, but cannot be inserted! function isNode(value) { return value instanceof Node && value instanceof value.constructor; } + +export function findRoots(root) { + const roots = new Map(); + const iterator = document.createNodeIterator(root, 128, null); + let node; + while ((node = iterator.nextNode())) { + if (isRoot(node)) { + roots.set(node.data.slice(1, -1), node); + } + } + return roots; +} + +function isRoot(node) { + return node.nodeType === 8 && /^:[0-9a-f]{8}(?:-\d+)?:$/.test(node.data); +} + +function isLoading(node) { + return node.nodeType === 1 && node.tagName === "OBSERVABLEHQ-LOADING"; +} + +export function findLoading(root) { + const sibling = root.previousSibling; + return sibling && isLoading(sibling) ? sibling : null; +} + +export function registerRoot(id, node) { + if (node == null) rootsById.delete(id); + else rootsById.set(id, node); +} + +function getExpanded(node) { + if (node.nodeType !== 1 || !node.classList.contains("observablehq")) return; // only inspectors + const expanded = node.querySelectorAll(".observablehq--expanded"); + if (expanded.length) return Array.from(expanded, (e) => getNodePath(node, e)); +} + +function getNodePath(node, descendant) { + const path = []; + while (descendant !== node) { + path.push(getChildIndex(descendant)); + descendant = descendant.parentNode; + } + return path.reverse(); +} + +function getChildIndex(node) { + return Array.prototype.indexOf.call(node.parentNode.childNodes, node); +} diff --git a/src/client/pre.js b/src/client/pre.js index cec27833f..7b7f1cf13 100644 --- a/src/client/pre.js +++ b/src/client/pre.js @@ -15,6 +15,10 @@ export function enableCopyButtons() { } } -async function copy({currentTarget}) { - await navigator.clipboard.writeText(currentTarget.parentElement.textContent.trimEnd()); +async function copy({currentTarget: target}) { + await navigator.clipboard.writeText(target.nextElementSibling.textContent.trim()); + const [animation] = target.getAnimations({subtree: true}); + if (animation) animation.currentTime = 0; + target.classList.add("observablehq-pre-copied"); + target.addEventListener("animationend", () => target.classList.remove("observablehq-pre-copied"), {once: true}); } diff --git a/src/client/preview.js b/src/client/preview.js index 2571bc510..e8c4683e9 100644 --- a/src/client/preview.js +++ b/src/client/preview.js @@ -1,9 +1,17 @@ -import {cellsById, define} from "./main.js"; +import {FileAttachment, registerFile} from "observablehq:stdlib"; +import {main, runtime, undefine} from "./main.js"; +import {findLoading, findRoots, registerRoot} from "./main.js"; import {enableCopyButtons} from "./pre.js"; export * from "./index.js"; +let minReopenDelay = 1000; +let maxReopenDelay = 30000; +let reopenDelay = minReopenDelay; +let reopenDecay = 1.5; // exponential backoff factor + export function open({hash, eval: compile} = {}) { + let opened = false; const socket = new WebSocket( Object.assign(new URL("/_observablehq", location.href), { protocol: location.protocol === "https:" ? "wss" : "ws" @@ -12,80 +20,77 @@ export function open({hash, eval: compile} = {}) { socket.onopen = () => { console.info("socket open"); + opened = true; send({type: "hello", path: location.pathname, hash}); }; - socket.onmessage = (event) => { + socket.onmessage = async (event) => { const message = JSON.parse(event.data); console.info("↓", message); switch (message.type) { - case "reload": { - location.reload(); + case "welcome": { + reopenDelay = minReopenDelay; // reset on successful connection break; } - case "refresh": { - message.cellIds.forEach((id) => { - const cell = cellsById.get(id); - if (cell) define(cell.cell); - }); + case "reload": { + location.reload(); break; } case "update": { const root = document.querySelector("main"); - if (message.previousHash !== hash) { + if (message.hash.previous !== hash) { console.log("contents out of sync"); location.reload(); break; } - hash = message.updatedHash; + hash = message.hash.current; let offset = 0; - for (const {type, oldPos, items} of message.diff) { + const addedCells = new Map(); + const removedCells = new Map(); + for (const {type, oldPos, items} of message.html) { switch (type) { case "add": { for (const item of items) { - switch (item.type) { - case "html": - if (oldPos + offset < root.children.length) { - root.children[oldPos + offset].insertAdjacentHTML("beforebegin", item.html); + const pos = oldPos + offset; + if (pos < root.childNodes.length) { + const child = root.childNodes[pos]; + if (item.type === 1) { + if (child.nodeType === 1) { + child.insertAdjacentHTML("beforebegin", item.value); } else { - root.insertAdjacentHTML("beforeend", item.html); + root.insertAdjacentHTML("beforeend", item.value); + root.insertBefore(root.lastChild, child); } - ++offset; - item.cellIds.forEach((id) => { - const cell = cellsById.get(id); - if (cell) define(cell.cell); - }); - break; - case "cell": - define({ - id: item.id, - inline: item.inline, - inputs: item.inputs, - outputs: item.outputs, - files: item.files, - body: compile(item.body) - }); - break; + } else if (item.type === 3) { + root.insertBefore(document.createTextNode(item.value), child); + } else if (item.type === 8) { + root.insertBefore(document.createComment(item.value), child); + } + } else { + if (item.type === 1) { + root.insertAdjacentHTML("beforeend", item.value); + } else if (item.type === 3) { + root.appendChild(document.createTextNode(item.value)); + } else if (item.type === 8) { + root.appendChild(document.createComment(item.value)); + } } + indexCells(addedCells, root.childNodes[pos]); + ++offset; } break; } case "remove": { let removes = 0; - for (const item of items) { - switch (item.type) { - case "html": - if (oldPos + offset < root.children.length) { - root.children[oldPos + offset].remove(); - ++removes; - } else { - console.error(`remove out of range: ${oldPos + offset} ≮ ${root.children.length}`); - } - break; - case "cell": - cellsById.get(item.id)?.variables.forEach((v) => v.delete()); - cellsById.delete(item.id); - break; + for (let i = 0; i < items.length; ++i) { + const pos = oldPos + offset; + if (pos < root.childNodes.length) { + const child = root.childNodes[pos]; + indexCells(removedCells, child); + child.remove(); + ++removes; + } else { + console.error(`remove out of range: ${pos} ≮ ${root.childNodes.length}`); } } offset -= removes; @@ -93,35 +98,92 @@ export function open({hash, eval: compile} = {}) { } } } + for (const id of message.code.removed) { + undefine(id); + } + for (const [id, removed] of removedCells) { + if (!addedCells.has(id)) { + registerRoot(id, null); + } else { + replaceRoot(addedCells.get(id), removed); + } + } + for (const [id, root] of addedCells) { + if (!removedCells.has(id)) { + registerRoot(id, root); + } + } + for (const body of message.code.added) { + compile(body); + } + for (const name of message.files.removed) { + registerFile(name, null); + } + for (const file of message.files.added) { + registerFile(file.name, file); + } + if (message.tables.removed.length || message.tables.added.length) { + const {registerTable} = await import("npm:@observablehq/duckdb"); + for (const name of message.tables.removed) { + registerTable(name, null); + } + for (const table of message.tables.added) { + registerTable(table.name, !/^(\w+:|#)/.test(table.path) ? FileAttachment(table.path) : table.path); + } + } + if (message.tables.removed.length || message.tables.added.length) { + const sql = main._resolve("sql"); + runtime._updates.add(sql); // re-evaluate sql code + runtime._compute(); + const vg = runtime._builtin._resolve("vg"); + vg.define("vg", [], vg._definition); // reload vgplot, then re-evaluate vg code + } + if (message.stylesheets.added.length === 1 && message.stylesheets.removed.length === 1) { + const [newHref] = message.stylesheets.added; + const [oldHref] = message.stylesheets.removed; + const link = document.head.querySelector(`link[rel="stylesheet"][href="${oldHref}"]`); + link.href = newHref; + } else { + for (const href of message.stylesheets.added) { + const link = document.createElement("link"); + link.rel = "stylesheet"; + link.type = "text/css"; + link.crossOrigin = ""; + link.href = href; + document.head.appendChild(link); + } + for (const href of message.stylesheets.removed) { + document.head.querySelector(`link[rel="stylesheet"][href="${href}"]`)?.remove(); + } + } enableCopyButtons(); break; } - case "add-stylesheet": { - const link = document.createElement("link"); - link.rel = "stylesheet"; - link.type = "text/css"; - link.crossOrigin = ""; - link.href = message.href; - document.head.appendChild(link); - break; - } - case "remove-stylesheet": { - document.head.querySelector(`link[href="${message.href}"]`)?.remove(); - break; - } } }; - socket.onerror = (error) => { - console.error(error); - }; - socket.onclose = () => { - console.info("socket close"); + if (opened) console.info("socket close"); + reopenDelay = Math.min(maxReopenDelay, reopenDelay * reopenDecay); // exponential backoff + setTimeout(() => open({hash, eval: compile}), reopenDelay); }; + function indexCells(map, node) { + for (const [id, root] of findRoots(node)) { + map.set(id, root); + } + } + function send(message) { console.info("↑", message); socket.send(JSON.stringify(message)); } } + +export function replaceRoot(added, removed) { + findLoading(added)?.remove(); + added.replaceWith(removed); + for (const n of removed._nodes) { + removed.parentNode.insertBefore(n, removed); + } +} diff --git a/src/client/runtime.js b/src/client/runtime.js new file mode 100644 index 000000000..758e28008 --- /dev/null +++ b/src/client/runtime.js @@ -0,0 +1,2 @@ +export {Inspector} from "@observablehq/inspector"; +export {Runtime, RuntimeError} from "@observablehq/runtime"; diff --git a/src/client/search-init.ts b/src/client/search-init.ts new file mode 100644 index 000000000..10574eb8a --- /dev/null +++ b/src/client/search-init.ts @@ -0,0 +1,28 @@ +const container = document.querySelector("#observablehq-search")!; + +// Set the short dynamically based on the client’s platform. +container.setAttribute("data-shortcut", `${/Mac|iPhone/.test(navigator.platform) ? "⌘" : "Alt-"}K`); + +// Load search.js on demand +const input = container.querySelector("input")!; +const load = () => import("observablehq:search"); +input.addEventListener("focus", load, {once: true}); +input.addEventListener("keydown", load, {once: true}); + +// Focus on meta-K and / +const toggle = document.querySelector("#observablehq-sidebar-toggle")!; +addEventListener("keydown", (event) => { + if ( + (event.code === "KeyK" && event.metaKey && !event.altKey && !event.ctrlKey) || + (event.key === "/" && !event.metaKey && !event.altKey && !event.ctrlKey && event.target === document.body) + ) { + // Force the sidebar to be temporarily open while the search input is + // focused. We click on the toggle if necessary to make the input visible so + // it be focused. Then the :focus-within selector takes over and keeps it + // open until the user blurs the input. + if (toggle.checked) input.focus(); + else toggle.click(), input.focus(), toggle.click(); + input.select(); + event.preventDefault(); + } +}); diff --git a/src/client/search.js b/src/client/search.js new file mode 100644 index 000000000..65ca71a42 --- /dev/null +++ b/src/client/search.js @@ -0,0 +1,98 @@ +import MiniSearch from "minisearch"; + +const container = document.querySelector("#observablehq-search"); +const sidebar = document.querySelector("#observablehq-sidebar"); +const shortcut = container.getAttribute("data-shortcut"); +const input = container.querySelector("input"); +const resultsContainer = document.querySelector("#observablehq-search-results"); +const activeClass = "observablehq-link-active"; +let currentValue; + +const index = await fetch(import.meta.resolve("observablehq:minisearch.json")) + .then((response) => { + if (!response.ok) throw new Error(`unable to load minisearch.json: ${response.status}`); + return response.json(); + }) + .then((json) => + MiniSearch.loadJS(json, { + ...json.options, + searchOptions: { + boostDocument: (id) => (isExternal(id) ? 1 / 3 : 1) + }, + processTerm: (term) => + term + .slice(0, 15) + .normalize("NFD") + .replace(/[\u0300-\u036f]/g, "") + .toLowerCase() // see src/minisearch.json.ts + }) + ); + +input.addEventListener("input", () => { + if (currentValue === input.value) return; + currentValue = input.value; + if (!currentValue.length) { + container.setAttribute("data-shortcut", shortcut); + sidebar.classList.remove("observablehq-search-results"); + resultsContainer.innerHTML = ""; + return; + } + container.setAttribute("data-shortcut", ""); // prevent conflict with close button + sidebar.classList.add("observablehq-search-results"); // hide pages while showing search results + const results = index.search(currentValue, {boost: {title: 4, keywords: 4}, fuzzy: 0.15, prefix: true}); + resultsContainer.innerHTML = + results.length === 0 + ? "
no results
" + : `
${results.length.toLocaleString("en-US")} result${results.length === 1 ? "" : "s"}
    ${results + .map(renderResult) + .join("")}
`; +}); + +function isExternal(id) { + return /^\w+:/.test(id); +} + +function renderResult({id, score, title}, i) { + const external = /^\w+:/.test(id); + return `
  • ${escapeText(String(title ?? "—"))}
  • `; +} + +function escapeDoubleQuote(text) { + return text.replace(/["&]/g, entity); +} + +function escapeText(text) { + return text.replace(/[<&]/g, entity); +} + +function entity(character) { + return `&#${character.charCodeAt(0).toString()};`; +} + +// Handle a race condition where an input event fires while awaiting the index fetch. +input.dispatchEvent(new Event("input")); + +input.addEventListener("keydown", (event) => { + const {code} = event; + if (code === "Escape" && input.value === "") return input.blur(); + if (code === "ArrowDown" || code === "ArrowUp" || code === "Enter") { + const results = resultsContainer.querySelector("ol"); + if (!results) return; + let activeResult = results.querySelector(`.${activeClass}`); + if (code === "Enter") { + const a = activeResult.querySelector("a"); + if (/Mac|iPhone/.test(navigator.platform) ? event.metaKey : event.ctrlKey) open(a.href, "_blank"); + else a.click(); + return; + } + activeResult.classList.remove(activeClass); + if (code === "ArrowUp") activeResult = activeResult.previousElementSibling ?? results.lastElementChild; + else activeResult = activeResult.nextElementSibling ?? results.firstElementChild; + activeResult.classList.add(activeClass); + activeResult.scrollIntoView({block: "nearest"}); + } +}); diff --git a/src/client/sidebar-init.ts b/src/client/sidebar-init.ts index 6380c680d..5fdc1b85d 100644 --- a/src/client/sidebar-init.ts +++ b/src/client/sidebar-init.ts @@ -1,6 +1,3 @@ -// Remove basic authentication in the URL, if any (to fix file attachments). -if (Object.assign(document.createElement("a"), {href: ""}).password) location.replace(location.href); - const sidebar = document.querySelector("#observablehq-sidebar")!; const toggle = document.querySelector("#observablehq-sidebar-toggle")!; diff --git a/src/client/sidebar.js b/src/client/sidebar.js index fd933348a..f63e2037e 100644 --- a/src/client/sidebar.js +++ b/src/client/sidebar.js @@ -1,14 +1,25 @@ const toggle = document.querySelector("#observablehq-sidebar-toggle"); if (toggle) { let indeterminate = toggle.indeterminate; + const match = () => matchMedia("(min-width: calc(640px + 6rem + 272px))").matches; toggle.onclick = () => { - const matches = matchMedia("(min-width: calc(640px + 6rem + 272px))").matches; + const matches = match(); if (indeterminate) (toggle.checked = !matches), (indeterminate = false); else if (toggle.checked === matches) indeterminate = true; toggle.indeterminate = indeterminate; if (indeterminate) sessionStorage.removeItem("observablehq-sidebar"); else sessionStorage.setItem("observablehq-sidebar", toggle.checked); }; + addEventListener("keydown", (event) => { + if ( + event.code === "Escape" && + !match() && + ((!toggle.indeterminate && toggle.checked && (event.target === document.body || event.target === toggle)) || + event.target?.closest("#observablehq-sidebar")) + ) { + toggle.click(); + } + }); addEventListener("keypress", (event) => { if ( event.code === "KeyB" && diff --git a/src/client/stdlib/duckdb.js b/src/client/stdlib/duckdb.js index 2654b942f..42be646ad 100644 --- a/src/client/stdlib/duckdb.js +++ b/src/client/stdlib/duckdb.js @@ -1,3 +1,4 @@ +/* global DUCKDB_MANIFEST */ import * as duckdb from "npm:@duckdb/duckdb-wasm"; // Adapted from https://observablehq.com/@cmudig/duckdb-client @@ -29,18 +30,47 @@ import * as duckdb from "npm:@duckdb/duckdb-wasm"; // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -const bundle = await duckdb.selectBundle({ - mvp: { - mainModule: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-mvp.wasm"), - mainWorker: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-mvp.worker.js") - }, - eh: { - mainModule: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-eh.wasm"), - mainWorker: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-eh.worker.js") +const bundles = { + mvp: DUCKDB_MANIFEST.platforms.mvp + ? { + mainModule: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-mvp.wasm"), + mainWorker: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-mvp.worker.js") + } + : undefined, + eh: DUCKDB_MANIFEST.platforms.eh + ? { + mainModule: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-eh.wasm"), + mainWorker: import.meta.resolve("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-eh.worker.js") + } + : undefined +}; +const bundle = duckdb.selectBundle(bundles); +const logger = new duckdb.ConsoleLogger(duckdb.LogLevel.WARNING); + +let db; +let inserts = []; +const sources = new Map(); + +export function registerTable(name, source) { + if (source == null) { + sources.delete(name); + db = DuckDBClient.of(); // drop existing tables and views before re-inserting + inserts = Array.from(sources, (i) => db.then((db) => insertSource(db._db, ...i))); + } else { + sources.set(name, source); + db ??= DuckDBClient.of(); // lazy instantiation + inserts.push(db.then((db) => insertSource(db._db, name, source))); } -}); +} -const logger = new duckdb.ConsoleLogger(); +export async function sql(strings, ...args) { + return (await getDefaultClient()).query(strings.join("?"), args); +} + +export async function getDefaultClient() { + await Promise.all(inserts); + return await (db ??= DuckDBClient.of()); +} export class DuckDBClient { constructor(db) { @@ -66,7 +96,7 @@ export class DuckDBClient { throw error; } return { - schema: getArrowTableSchema(batch.value), + schema: batch.value.schema, async *readRows() { try { while (!batch.done) { @@ -81,15 +111,19 @@ export class DuckDBClient { } async query(query, params) { - const result = await this.queryStream(query, params); - const results = []; - for await (const rows of result.readRows()) { - for (const row of rows) { - results.push(row); + const connection = await this._db.connect(); + let table; + try { + if (params?.length > 0) { + const statement = await connection.prepare(query); + table = await statement.query(...params); + } else { + table = await connection.query(query); } + } finally { + await connection.close(); } - results.schema = result.schema; - return results; + return table; } async queryRow(query, params) { @@ -116,18 +150,19 @@ export class DuckDBClient { } async describeTables() { - const tables = await this.query("SHOW TABLES"); - return tables.map(({name}) => ({name})); + return Array.from(await this.query("SHOW TABLES"), ({name}) => ({name})); } async describeColumns({table} = {}) { - const columns = await this.query(`DESCRIBE ${this.escape(table)}`); - return columns.map(({column_name, column_type, null: nullable}) => ({ - name: column_name, - type: getDuckDBType(column_type), - nullable: nullable !== "NO", - databaseType: column_type - })); + return Array.from( + await this.query(`DESCRIBE ${this.escape(table)}`), + ({column_name, column_type, null: nullable}) => ({ + name: column_name, + type: getDuckDBType(column_type), + nullable: nullable !== "NO", + databaseType: column_type + }) + ); } static async of(sources = {}, config = {}) { @@ -139,44 +174,66 @@ export class DuckDBClient { config = {...config, query: {...config.query, castBigIntToDouble: true}}; } await db.open(config); + await registerExtensions(db, config.extensions); + await Promise.all(Object.entries(sources).map(([name, source]) => insertSource(db, name, source))); + return new DuckDBClient(db); + } + + static sql() { + return this.of.apply(this, arguments).then((db) => db.sql.bind(db)); + } +} + +Object.defineProperty(DuckDBClient.prototype, "dialect", {value: "duckdb"}); + +async function registerExtensions(db, extensions) { + const {mainModule} = await bundle; + const platform = Object.keys(bundles).find((platform) => mainModule === bundles[platform].mainModule); + const con = await db.connect(); + try { await Promise.all( - Object.entries(sources).map(async ([name, source]) => { - source = await source; - if (isFileAttachment(source)) { - // bare file - await insertFile(db, name, source); - } else if (isArrowTable(source)) { - // bare arrow table - await insertArrowTable(db, name, source); - } else if (Array.isArray(source)) { - // bare array of objects - await insertArray(db, name, source); - } else if (isArqueroTable(source)) { - await insertArqueroTable(db, name, source); - } else if ("data" in source) { - // data + options - const {data, ...options} = source; - if (isArrowTable(data)) { - await insertArrowTable(db, name, data, options); - } else { - await insertArray(db, name, data, options); - } - } else if ("file" in source) { - // file + options - const {file, ...options} = source; - await insertFile(db, name, file, options); - } else { - throw new Error(`invalid source: ${source}`); - } - }) + Object.entries(DUCKDB_MANIFEST.extensions).map(([name, {load, [platform]: ref}]) => + con + .query(`INSTALL "${name}" FROM '${import.meta.resolve(ref)}'`) + .then(() => (extensions === undefined ? load : extensions.includes(name)) && con.query(`LOAD "${name}"`)) + ) ); - return new DuckDBClient(db); + } finally { + await con.close(); } } -Object.defineProperty(DuckDBClient.prototype, "dialect", { - value: "duckdb" -}); +async function insertSource(database, name, source) { + source = await source; + if (isFileAttachment(source)) return insertFile(database, name, source); + if (isArrowTable(source)) return insertArrowTable(database, name, source); + if (Array.isArray(source)) return insertArray(database, name, source); + if (isArqueroTable(source)) return insertArqueroTable(database, name, source); + if (typeof source === "string") return insertUrl(database, name, source); + if (source && typeof source === "object") { + if ("data" in source) { + // data + options + const {data, ...options} = source; + if (isArrowTable(data)) return insertArrowTable(database, name, data, options); + return insertArray(database, name, data, options); + } + if ("file" in source) { + // file + options + const {file, ...options} = source; + return insertFile(database, name, file, options); + } + } + throw new Error(`invalid source: ${source}`); +} + +async function insertUrl(database, name, url) { + const connection = await database.connect(); + try { + await connection.query(`CREATE VIEW '${name}' AS FROM '${url}'`); + } finally { + await connection.close(); + } +} async function insertFile(database, name, file, options) { const url = await file.url(); @@ -222,7 +279,11 @@ async function insertFile(database, name, file, options) { }); } if (/\.parquet$/i.test(file.name)) { - return await connection.query(`CREATE VIEW '${name}' AS SELECT * FROM parquet_scan('${file.name}')`); + const table = file.size < 50e6 ? "TABLE" : "VIEW"; // for small files, materialize the table + return await connection.query(`CREATE ${table} '${name}' AS SELECT * FROM parquet_scan('${file.name}')`); + } + if (/\.(db|ddb|duckdb)$/i.test(file.name)) { + return await connection.query(`ATTACH '${file.name}' AS ${name} (READ_ONLY)`); } throw new Error(`unknown file type: ${file.mimeType}`); } @@ -266,9 +327,10 @@ async function insertArray(database, name, array, options) { } async function createDuckDB() { - const worker = await duckdb.createWorker(bundle.mainWorker); + const {mainWorker, mainModule} = await bundle; + const worker = await duckdb.createWorker(mainWorker); const db = new duckdb.AsyncDuckDB(logger, worker); - await db.instantiate(bundle.mainModule); + await db.instantiate(mainModule); return db; } @@ -336,48 +398,3 @@ function isArrowTable(value) { Array.isArray(value.schema.fields) ); } - -function getArrowTableSchema(table) { - return table.schema.fields.map(getArrowFieldSchema); -} - -function getArrowFieldSchema(field) { - return { - name: field.name, - type: getArrowType(field.type), - nullable: field.nullable, - databaseType: `${field.type}` - }; -} - -// https://github.com/apache/arrow/blob/89f9a0948961f6e94f1ef5e4f310b707d22a3c11/js/src/enum.ts#L140-L141 -function getArrowType(type) { - switch (type.typeId) { - case 2: // Int - return "integer"; - case 3: // Float - case 7: // Decimal - return "number"; - case 4: // Binary - case 15: // FixedSizeBinary - return "buffer"; - case 5: // Utf8 - return "string"; - case 6: // Bool - return "boolean"; - case 8: // Date - case 9: // Time - case 10: // Timestamp - return "date"; - case 12: // List - case 16: // FixedSizeList - return "array"; - case 13: // Struct - case 14: // Union - return "object"; - case 11: // Interval - case 17: // Map - default: - return "other"; - } -} diff --git a/src/client/stdlib/fileAttachment.js b/src/client/stdlib/fileAttachment.js index fe77b6e33..f35f57a4d 100644 --- a/src/client/stdlib/fileAttachment.js +++ b/src/client/stdlib/fileAttachment.js @@ -1,18 +1,25 @@ const files = new Map(); -export function registerFile(name, file) { - const url = String(new URL(name, location.href)); - if (file == null) files.delete(url); - else files.set(url, file); +export function registerFile(name, info, base = location) { + const href = new URL(name, base).href; + if (info == null) { + files.delete(href); + } else { + const {path, mimeType, lastModified, size} = info; + const file = new FileAttachmentImpl(new URL(path, base).href, name.split("/").pop(), mimeType, lastModified, size); + files.set(href, file); + return file; + } } -export function FileAttachment(name, base = location.href) { +export function FileAttachment(name, base = location) { if (new.target !== undefined) throw new TypeError("FileAttachment is not a constructor"); - const url = String(new URL(name, base)); - const file = files.get(url); - if (!file) throw new Error(`File not found: ${name}`); - const {path, mimeType} = file; - return new FileAttachmentImpl(path, name.split("/").pop(), mimeType); + let info; + if (typeof name === "object" && name && "name" in name) (info = name), (name = name.name); + const file = files.get(new URL(name, base).href); + if (file) return file; + if (info) return registerFile(name, info, base); + throw new Error(`File not found: ${name}`); } async function remote_fetch(file) { @@ -21,16 +28,14 @@ async function remote_fetch(file) { return response; } -async function dsv(file, delimiter, {array = false, typed = false} = {}) { - const [text, d3] = await Promise.all([file.text(), import("npm:d3-dsv")]); - const parse = delimiter === "\t" ? (array ? d3.tsvParseRows : d3.tsvParse) : array ? d3.csvParseRows : d3.csvParse; - return parse(text, typed && d3.autoType); -} - export class AbstractFile { - constructor(name, mimeType) { - Object.defineProperty(this, "name", {value: name, enumerable: true}); - if (mimeType !== undefined) Object.defineProperty(this, "mimeType", {value: mimeType + "", enumerable: true}); + constructor(name, mimeType = "application/octet-stream", lastModified, size) { + Object.defineProperties(this, { + name: {value: `${name}`, enumerable: true}, + mimeType: {value: `${mimeType}`, enumerable: true}, + lastModified: {value: +lastModified, enumerable: true}, + size: {value: +size, enumerable: true} + }); } async blob() { return (await remote_fetch(this)).blob(); @@ -49,11 +54,17 @@ export class AbstractFile { async stream() { return (await remote_fetch(this)).body; } + async dsv({delimiter = ",", array = false, typed = false} = {}) { + const [text, d3] = await Promise.all([this.text(), import("npm:d3-dsv")]); + const format = d3.dsvFormat(delimiter); + const parse = array ? format.parseRows : format.parse; + return parse(text, typed && d3.autoType); + } async csv(options) { - return dsv(this, ",", options); + return this.dsv({...options, delimiter: ","}); } async tsv(options) { - return dsv(this, "\t", options); + return this.dsv({...options, delimiter: "\t"}); } async image(props) { const url = await this.url(); @@ -70,8 +81,38 @@ export class AbstractFile { const [Arrow, response] = await Promise.all([import("npm:apache-arrow"), remote_fetch(this)]); return Arrow.tableFromIPC(response); } + async arquero(options) { + let request; + let from; + switch (this.mimeType) { + case "application/json": + request = this.text(); + from = "fromJSON"; + break; + case "text/tab-separated-values": + if (options?.delimiter === undefined) options = {...options, delimiter: "\t"}; + // fall through + case "text/csv": + request = this.text(); + from = "fromCSV"; + break; + default: + if (/\.arrow$/i.test(this.name)) { + request = this.arrow(); + from = "fromArrow"; + } else if (/\.parquet$/i.test(this.name)) { + request = this.parquet(); + from = "fromArrow"; + } else { + throw new Error(`unable to determine Arquero loader: ${this.name}`); + } + break; + } + const [aq, body] = await Promise.all([import("npm:arquero"), request]); + return aq[from](body, options); + } async parquet() { - const [Arrow, Parquet, buffer] = await Promise.all([import("npm:apache-arrow"), import("npm:parquet-wasm/esm/arrow1.js").then(async (Parquet) => (await Parquet.default(), Parquet)), this.arrayBuffer()]); // prettier-ignore + const [Arrow, Parquet, buffer] = await Promise.all([import("npm:apache-arrow"), import("npm:parquet-wasm").then(async (Parquet) => (await Parquet.default(import.meta.resolve("npm:parquet-wasm/esm/parquet_wasm_bg.wasm")), Parquet)), this.arrayBuffer()]); // prettier-ignore return Arrow.tableFromIPC(Parquet.readParquet(new Uint8Array(buffer)).intoIPCStream()); } async sqlite() { @@ -95,12 +136,12 @@ export class AbstractFile { } class FileAttachmentImpl extends AbstractFile { - constructor(url, name, mimeType) { - super(name, mimeType); - Object.defineProperty(this, "_url", {value: url}); + constructor(href, name, mimeType, lastModified, size) { + super(name, mimeType, lastModified, size); + Object.defineProperty(this, "href", {value: href}); } async url() { - return (await this._url) + ""; + return this.href; } } diff --git a/src/client/stdlib/generators/dark.ts b/src/client/stdlib/generators/dark.ts new file mode 100644 index 000000000..9996ec7d3 --- /dev/null +++ b/src/client/stdlib/generators/dark.ts @@ -0,0 +1,18 @@ +import {observe} from "./observe.js"; + +// Watches dark mode based on theme and user preference. +// TODO: in preview, also watch for changes in the theme meta. +export function dark() { + return observe((notify: (dark: boolean) => void) => { + let dark: boolean | undefined; + const media = matchMedia("(prefers-color-scheme: dark)"); + const changed = () => { + const d = getComputedStyle(document.body).getPropertyValue("color-scheme") === "dark"; + if (dark === d) return; // only notify if changed + notify((dark = d)); + }; + changed(); + media.addEventListener("change", changed); + return () => media.removeEventListener("change", changed); + }); +} diff --git a/src/client/stdlib/generators/index.ts b/src/client/stdlib/generators/index.ts index f18e7f071..ddf94e119 100644 --- a/src/client/stdlib/generators/index.ts +++ b/src/client/stdlib/generators/index.ts @@ -1,3 +1,4 @@ +export {dark} from "./dark.js"; export {input} from "./input.js"; export {now} from "./now.js"; export {observe} from "./observe.js"; diff --git a/src/client/stdlib/inputs.js b/src/client/stdlib/inputs.js index d03fb8a51..a0370b6c3 100644 --- a/src/client/stdlib/inputs.js +++ b/src/client/stdlib/inputs.js @@ -1,5 +1,60 @@ -import {fileOf} from "@observablehq/inputs"; -import {AbstractFile} from "npm:@observablehq/stdlib"; +import {file as _file} from "@observablehq/inputs"; +import {AbstractFile} from "observablehq:stdlib"; -export * from "@observablehq/inputs"; -export const file = fileOf(AbstractFile); +export { + button, + checkbox, + radio, + toggle, + color, + date, + datetime, + form, + range, + number, + search, + searchFilter, + select, + table, + text, + email, + tel, + url, + password, + textarea, + input, + bind, + disposal, + formatDate, + formatLocaleAuto, + formatLocaleNumber, + formatTrim, + formatAuto, + formatNumber +} from "@observablehq/inputs"; + +export const file = (options) => _file({...options, transform: localFile}); + +function localFile(file) { + return new LocalFile(file); +} + +class LocalFile extends AbstractFile { + constructor(file) { + super(file.name, file.type, file.lastModified, file.size); + Object.defineProperty(this, "_", {value: file}); + Object.defineProperty(this, "_url", {writable: true}); + } + get href() { + return (this._url ??= URL.createObjectURL(this._)); + } + async url() { + return this.href; + } + async blob() { + return this._; + } + async stream() { + return this._.stream(); + } +} diff --git a/src/client/stdlib/mermaid.js b/src/client/stdlib/mermaid.js index 8831e5c61..7393b7110 100644 --- a/src/client/stdlib/mermaid.js +++ b/src/client/stdlib/mermaid.js @@ -1,7 +1,7 @@ import mer from "npm:mermaid"; let nextId = 0; -const theme = matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "neutral"; +const theme = getComputedStyle(document.body).getPropertyValue("color-scheme") === "dark" ? "dark" : "neutral"; mer.initialize({startOnLoad: false, securityLevel: "loose", theme}); export default async function mermaid() { diff --git a/src/client/stdlib/recommendedLibraries.js b/src/client/stdlib/recommendedLibraries.js index 3124d3ff3..ebe5dea81 100644 --- a/src/client/stdlib/recommendedLibraries.js +++ b/src/client/stdlib/recommendedLibraries.js @@ -5,6 +5,7 @@ export const d3 = () => import("npm:d3"); export const dot = () => import("observablehq:stdlib/dot").then((dot) => dot.default); export const duckdb = () => import("npm:@duckdb/duckdb-wasm"); export const DuckDBClient = () => import("observablehq:stdlib/duckdb").then((duckdb) => duckdb.DuckDBClient); +export const echarts = () => import("npm:echarts"); export const htl = () => import("npm:htl"); export const html = () => import("npm:htl").then((htl) => htl.html); export const svg = () => import("npm:htl").then((htl) => htl.svg); @@ -13,8 +14,12 @@ export const L = () => import("npm:leaflet"); export const mapboxgl = () => import("npm:mapbox-gl").then((module) => module.default); export const mermaid = () => import("observablehq:stdlib/mermaid").then((mermaid) => mermaid.default); export const Plot = () => import("npm:@observablehq/plot"); +export const React = () => import("npm:react"); +export const ReactDOM = () => import("npm:react-dom"); +export const sql = () => import("observablehq:stdlib/duckdb").then((duckdb) => duckdb.sql); export const SQLite = () => import("observablehq:stdlib/sqlite").then((sqlite) => sqlite.default); export const SQLiteDatabaseClient = () => import("observablehq:stdlib/sqlite").then((sqlite) => sqlite.SQLiteDatabaseClient); // prettier-ignore export const tex = () => import("observablehq:stdlib/tex").then((tex) => tex.default); export const topojson = () => import("npm:topojson-client"); +export const vg = () => import("observablehq:stdlib/vgplot").then((vg) => vg.default()); export const vl = () => import("observablehq:stdlib/vega-lite").then((vl) => vl.default); diff --git a/src/client/stdlib/resize.ts b/src/client/stdlib/resize.ts index 8f241f255..cd5463d20 100644 --- a/src/client/stdlib/resize.ts +++ b/src/client/stdlib/resize.ts @@ -1,22 +1,32 @@ // TODO Automatically disconnect the observer when the returned DIV is detached. -export function resize(run: (width: number, height: number) => Node, invalidation?: Promise): Node { +export function resize( + render: (width: number, height: number) => Node | string | null | Promise, + invalidation?: Promise +): Node { const div = document.createElement("div"); - div.style.cssText = "position: relative; height: 100%;"; - const observer = new ResizeObserver(([entry]) => { + div.style.position = "relative"; + if (render.length !== 1) div.style.height = "100%"; + let currentRender = 0; + let currentDisplay = 0; + let currentWidth: number; + const observer = new ResizeObserver(async ([entry]) => { const {width, height} = entry.contentRect; + if (render.length === 1 && width === currentWidth) return; // ignore height-only change + currentWidth = width; + const childRender = ++currentRender; + const child = width > 0 ? await render(width, height) : null; // don’t render if detached + if (currentDisplay > childRender) return; // ignore stale renders + currentDisplay = childRender; while (div.lastChild) div.lastChild.remove(); - if (width > 0) { - const child = run(width, height); - // prevent feedback loop if height is used - if (run.length !== 1 && isElement(child)) child.style.position = "absolute"; - div.append(child); - } + if (child == null) return; // clear if nullish + if (render.length !== 1 && isElement(child)) child.style.position = "absolute"; // prevent feedback loop if height is used + div.append(child); }); observer.observe(div); invalidation?.then(() => observer.disconnect()); return div; } -function isElement(node: Node): node is HTMLElement { - return node.nodeType === 1; +function isElement(node: Node | string): node is HTMLElement { + return typeof node === "object" && node.nodeType === 1; } diff --git a/src/client/stdlib/sampleDatasets.js b/src/client/stdlib/sampleDatasets.js index 86d5ea322..0ded492ca 100644 --- a/src/client/stdlib/sampleDatasets.js +++ b/src/client/stdlib/sampleDatasets.js @@ -1,15 +1,15 @@ -export const aapl = () => csv("https://static.observableusercontent.com/files/3ccff97fd2d93da734e76829b2b066eafdaac6a1fafdec0faf6ebc443271cfc109d29e80dd217468fcb2aff1e6bffdc73f356cc48feb657f35378e6abbbb63b9", true); // prettier-ignore -export const alphabet = () => csv("https://static.observableusercontent.com/files/75d52e6c3130b1cae83cda89305e17b50f33e7420ef205587a135e8562bcfd22e483cf4fa2fb5df6dff66f9c5d19740be1cfaf47406286e2eb6574b49ffc685d", true); // prettier-ignore -export const cars = () => csv("https://static.observableusercontent.com/files/048ec3dfd528110c0665dfa363dd28bc516ffb7247231f3ab25005036717f5c4c232a5efc7bb74bc03037155cb72b1abe85a33d86eb9f1a336196030443be4f6", true); // prettier-ignore -export const citywages = () => csv("https://static.observableusercontent.com/files/39837ec5121fcc163131dbc2fe8c1a2e0b3423a5d1e96b5ce371e2ac2e20a290d78b71a4fb08b9fa6a0107776e17fb78af313b8ea70f4cc6648fad68ddf06f7a", true); // prettier-ignore -export const diamonds = () => csv("https://static.observableusercontent.com/files/87942b1f5d061a21fa4bb8f2162db44e3ef0f7391301f867ab5ba718b225a63091af20675f0bfe7f922db097b217b377135203a7eab34651e21a8d09f4e37252", true); // prettier-ignore -export const flare = () => csv("https://static.observableusercontent.com/files/a6b0d94a7f5828fd133765a934f4c9746d2010e2f342d335923991f31b14120de96b5cb4f160d509d8dc627f0107d7f5b5070d2516f01e4c862b5b4867533000", true); // prettier-ignore -export const industries = () => csv("https://static.observableusercontent.com/files/76f13741128340cc88798c0a0b7fa5a2df8370f57554000774ab8ee9ae785ffa2903010cad670d4939af3e9c17e5e18e7e05ed2b38b848ac2fc1a0066aa0005f", true); // prettier-ignore -export const miserables = () => json("https://static.observableusercontent.com/files/31d904f6e21d42d4963ece9c8cc4fbd75efcbdc404bf511bc79906f0a1be68b5a01e935f65123670ed04e35ca8cae3c2b943f82bf8db49c5a67c85cbb58db052"); // prettier-ignore -export const olympians = () => csv("https://static.observableusercontent.com/files/31ca24545a0603dce099d10ee89ee5ae72d29fa55e8fc7c9ffb5ded87ac83060d80f1d9e21f4ae8eb04c1e8940b7287d179fe8060d887fb1f055f430e210007c", true); // prettier-ignore -export const penguins = () => csv("https://static.observableusercontent.com/files/715db1223e067f00500780077febc6cebbdd90c151d3d78317c802732252052ab0e367039872ab9c77d6ef99e5f55a0724b35ddc898a1c99cb14c31a379af80a", true); // prettier-ignore -export const pizza = () => csv("https://static.observableusercontent.com/files/c653108ab176088cacbb338eaf2344c4f5781681702bd6afb55697a3f91b511c6686ff469f3e3a27c75400001a2334dbd39a4499fe46b50a8b3c278b7d2f7fb5", true); // prettier-ignore -export const weather = () => csv("https://static.observableusercontent.com/files/693a46b22b33db0f042728700e0c73e836fa13d55446df89120682d55339c6db7cc9e574d3d73f24ecc9bc7eb9ac9a1e7e104a1ee52c00aab1e77eb102913c1f", true); // prettier-ignore +export const aapl = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/aapl.csv"), true); +export const alphabet = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/alphabet.csv"), true); +export const cars = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/cars.csv"), true); +export const citywages = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/citywages.csv"), true); +export const diamonds = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/diamonds.csv"), true); +export const flare = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/flare.csv"), true); +export const industries = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/industries.csv"), true); +export const miserables = () => json(import.meta.resolve("npm:@observablehq/sample-datasets/miserables.json")); +export const olympians = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/olympians.csv"), true); +export const penguins = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/penguins.csv"), true); +export const pizza = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/pizza.csv"), true); +export const weather = () => csv(import.meta.resolve("npm:@observablehq/sample-datasets/weather.csv"), true); async function json(url) { const response = await fetch(url); diff --git a/src/client/stdlib/sqlite.js b/src/client/stdlib/sqlite.js index ac22e9471..88ec8accf 100644 --- a/src/client/stdlib/sqlite.js +++ b/src/client/stdlib/sqlite.js @@ -1,10 +1,6 @@ -// https://github.com/sql-js/sql.js/issues/284 -const SQLite = await (async () => { - const exports = {}; - const response = await fetch(import.meta.resolve("npm:sql.js/dist/sql-wasm.js")); - new Function("exports", await response.text())(exports); - return exports.Module({locateFile: (name) => import.meta.resolve("npm:sql.js/dist/") + name}); -})(); +import initSqlJs from "npm:sql.js"; + +const SQLite = initSqlJs({locateFile: (name) => import.meta.resolve("npm:sql.js/dist/") + name}); export default SQLite; @@ -15,7 +11,8 @@ export class SQLiteDatabaseClient { }); } static async open(source) { - return new SQLiteDatabaseClient(new SQLite.Database(await load(await source))); + const [sqlite, data] = await Promise.all([SQLite, Promise.resolve(source).then(load)]); + return new SQLiteDatabaseClient(new sqlite.Database(data)); } async query(query, params) { return await exec(this._db, query, params); diff --git a/src/client/stdlib/vgplot.js b/src/client/stdlib/vgplot.js new file mode 100644 index 000000000..13be16049 --- /dev/null +++ b/src/client/stdlib/vgplot.js @@ -0,0 +1,10 @@ +import * as vgplot from "npm:@uwdata/vgplot"; +import {getDefaultClient} from "observablehq:stdlib/duckdb"; + +export default async function vg() { + const coordinator = new vgplot.Coordinator(); + const api = vgplot.createAPIContext({coordinator}); + const duckdb = (await getDefaultClient())._db; + coordinator.databaseConnector(vgplot.wasmConnector({duckdb})); + return api; +} diff --git a/src/client/stdlib/zip.js b/src/client/stdlib/zip.js index 81bc773b9..ea44e56ca 100644 --- a/src/client/stdlib/zip.js +++ b/src/client/stdlib/zip.js @@ -1,5 +1,5 @@ -import {AbstractFile} from "npm:@observablehq/stdlib"; import JSZip from "npm:jszip"; +import {AbstractFile} from "observablehq:stdlib"; export class ZipArchive { constructor(archive) { diff --git a/src/client/toc.ts b/src/client/toc.ts index b215fa65a..e872f9e2b 100644 --- a/src/client/toc.ts +++ b/src/client/toc.ts @@ -2,7 +2,8 @@ const toc = document.querySelector("#observablehq-toc"); if (toc) { const highlight = toc.appendChild(document.createElement("div")); highlight.classList.add("observablehq-secondary-link-highlight"); - const headings = Array.from(document.querySelectorAll(toc.dataset.selector!)).reverse(); + const main = document.querySelector("#observablehq-main")!; + const headings = Array.from(main.querySelectorAll(toc.dataset.selector!)).reverse(); const links = toc.querySelectorAll(".observablehq-secondary-link"); const relink = (): HTMLElement | undefined => { for (const link of links) { @@ -11,7 +12,7 @@ if (toc) { // If there’s a location.hash, highlight that if it’s at the top of the viewport. if (location.hash) { for (const heading of headings) { - const hash = heading.querySelector("a[href]")?.hash; + const hash = encodeURI(`#${heading.id}`); if (hash === location.hash) { const top = heading.getBoundingClientRect().top; if (0 < top && top < 40) { diff --git a/src/commandInstruction.ts b/src/commandInstruction.ts index 19eadf7c2..e32bdc8bc 100644 --- a/src/commandInstruction.ts +++ b/src/commandInstruction.ts @@ -1,5 +1,4 @@ import {getObservableUiOrigin} from "./observableApiClient.js"; -import type {TtyColor} from "./tty.js"; import {bold, magenta} from "./tty.js"; export function commandInstruction( @@ -7,9 +6,12 @@ export function commandInstruction( { color = (s) => magenta(bold(s)), env = process.env - }: {color?: TtyColor | null; env?: Record} = {} + }: { + color?: ((s: string) => string) | null; + env?: Record; + } = {} ): string { - if (!color) color = (s) => s; + color ??= (s) => s; const prefix = env["npm_config_user_agent"]?.includes("yarn/") ? "yarn observable" diff --git a/src/concurrency.ts b/src/concurrency.ts new file mode 100644 index 000000000..588a5805b --- /dev/null +++ b/src/concurrency.ts @@ -0,0 +1,54 @@ +import os from "node:os"; + +/** Double the number of CPUs, up to 8. + * + * This number of chosen for IO-bound tasks, with + * the expectation that the other side will be a server that wouldn't appreciate + * unbounded concurrency. */ +//`os.cpus()` can return an empty array, so use a minimum of 2 as well. +const DEFAULT_CONCURRENCY = Math.max(Math.min(os.cpus().length * 2, 8), 2); + +export async function runAllWithConcurrencyLimit( + tasks: Iterable, + worker: (task: T, index: number) => Promise, + {maxConcurrency = DEFAULT_CONCURRENCY}: {maxConcurrency?: number} = {} +) { + const queue = Array.from(tasks); + const pending = new Set(); + let index = 0; + + while (queue.length) { + if (pending.size >= maxConcurrency) { + await Promise.race(pending); + continue; + } + + const item = queue.shift(); + if (!item) throw new Error("unexpectedly out of items"); + const promise = worker(item, index++); + pending.add(promise); + promise.finally(() => pending.delete(promise)); + } + + await Promise.all(pending); +} + +export class RateLimiter { + // This works by chaining together promises, one for each call to `this.wait`. + // This implicitly forms a queue of callers. The important thing is that we + // never have two of this function's `setTimeout`s running concurrently, since + // that could cause us to exceed the rate limit. + + private _nextTick: Promise; + + constructor(private ratePerSecond: number) { + this._nextTick = Promise.resolve(); + } + + /** Wait long enough to avoid going over the rate limit. */ + async wait() { + const nextTick = this._nextTick; + this._nextTick = nextTick.then(() => new Promise((res) => setTimeout(res, 1000 / this.ratePerSecond))); + await nextTick; + } +} diff --git a/src/config.ts b/src/config.ts index 5d80f9895..bf063bc46 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,24 +1,44 @@ -import {basename, dirname, join} from "node:path"; -import {visitMarkdownFiles} from "./files.js"; +import {createHash} from "node:crypto"; +import {existsSync, readFileSync} from "node:fs"; +import {stat} from "node:fs/promises"; +import op from "node:path"; +import {basename, dirname, extname, join} from "node:path/posix"; +import {cwd} from "node:process"; +import {pathToFileURL} from "node:url"; +import he from "he"; +import type MarkdownIt from "markdown-it"; +import wrapAnsi from "wrap-ansi"; +import {DUCKDB_CORE_ALIASES, DUCKDB_CORE_EXTENSIONS} from "./duckdb.js"; +import {visitFiles} from "./files.js"; import {formatIsoDate, formatLocaleDate} from "./format.js"; -import {parseMarkdown} from "./markdown.js"; +import type {FrontMatter} from "./frontMatter.js"; +import {findModule} from "./javascript/module.js"; +import {LoaderResolver} from "./loader.js"; +import {createMarkdownIt, parseMarkdownMetadata} from "./markdown.js"; +import {getPagePaths} from "./pager.js"; +import {isAssetPath, parseRelativeUrl, resolvePath} from "./path.js"; +import {isParameterized} from "./route.js"; import {resolveTheme} from "./theme.js"; -import {resolvePath} from "./url.js"; +import {bold, yellow} from "./tty.js"; + +export interface TableOfContents { + show: boolean; + label: string; +} export interface Page { name: string; path: string; + pager: string | null; } -export interface Section { +export interface Section { name: string; - open: boolean; // defaults to true - pages: Page[]; -} - -export interface TableOfContents { - label: string; // defaults to "Contents" - show: boolean; // defaults to true + collapsible: boolean; // defaults to false + open: boolean; // defaults to true; always true if collapsible is false + path: string | null; + pager: string | null; + pages: T[]; } export type Style = @@ -31,156 +51,519 @@ export interface Script { type: string | null; } +/** A function that generates a page fragment such as head, header or footer. */ +export type PageFragmentFunction = ({ + title, + data, + path +}: { + title: string | null; + data: FrontMatter; + path: string; +}) => string | null; + +export interface SearchResult { + path: string; + title: string | null; + text: string; + keywords?: string; +} + +export interface SearchConfig { + index: (() => AsyncIterable) | null; +} + +export interface SearchConfigSpec { + index?: unknown; +} + +export interface DuckDBConfig { + platforms: {[name: string]: true}; + extensions: {[name: string]: DuckDBExtensionConfig}; +} + +export interface DuckDBExtensionConfig { + source: string; + install: boolean; + load: boolean; +} + +interface DuckDBExtensionConfigSpec { + source: unknown; + install: unknown; + load: unknown; +} + export interface Config { - root: string; // defaults to docs + root: string; // defaults to src output: string; // defaults to dist base: string; // defaults to "/" + home: string; // defaults to the (escaped) title, or "Home" title?: string; sidebar: boolean; // defaults to true if pages isn’t empty - pages: (Page | Section)[]; + pages: (Page | Section)[]; pager: boolean; // defaults to true - scripts: Script[]; // defaults to empty array - head: string; // defaults to empty string - header: string; // defaults to empty string - footer: string; // defaults to “Built with Observable on [date].” + paths: () => AsyncIterable; // defaults to static Markdown files + scripts: Script[]; // deprecated; defaults to empty array + head: PageFragmentFunction | string | null; // defaults to null + header: PageFragmentFunction | string | null; // defaults to null + footer: PageFragmentFunction | string | null; // defaults to “Built with Observable on [date].” toc: TableOfContents; style: null | Style; // defaults to {theme: ["light", "dark"]} - deploy: null | {workspace: string; project: string}; + globalStylesheets: string[]; // defaults to Source Serif from Google Fonts + search: SearchConfig | null; // default to null + md: MarkdownIt; + normalizePath: (path: string) => string; + loaders: LoaderResolver; + watchPath?: string; + duckdb: DuckDBConfig; +} + +export interface ConfigSpec { + root?: unknown; + output?: unknown; + base?: unknown; + sidebar?: unknown; + style?: unknown; + globalStylesheets?: unknown; + theme?: unknown; + search?: unknown; + scripts?: unknown; + head?: unknown; + header?: unknown; + footer?: unknown; + interpreters?: unknown; + home?: unknown; + title?: unknown; + pages?: unknown; + pager?: unknown; + dynamicPaths?: unknown; + toc?: unknown; + linkify?: unknown; + typographer?: unknown; + quotes?: unknown; + cleanUrls?: unknown; + preserveIndex?: unknown; + preserveExtension?: unknown; + markdownIt?: unknown; + duckdb?: unknown; +} + +interface ScriptSpec { + src?: unknown; + async?: unknown; + type?: unknown; +} + +interface SectionSpec { + name?: unknown; + open?: unknown; + collapsible?: unknown; + path?: unknown; + pages?: unknown; + pager?: unknown; +} + +interface PageSpec { + name?: unknown; + path?: unknown; + pager?: unknown; +} + +interface TableOfContentsSpec { + label?: unknown; + show?: unknown; +} + +/** + * Returns the absolute path to the specified config file, which is specified as a + * path relative to the given root (if any). If you want to import this, you should + * pass the result to pathToFileURL. + */ +function resolveConfig(configPath: string, root = "."): string { + return op.join(cwd(), root, configPath); +} + +// By using the modification time of the config, we ensure that we pick up any +// changes to the config on reload. +async function importConfig(path: string): Promise { + const {mtimeMs} = await stat(path); + return (await import(`${pathToFileURL(path).href}?${mtimeMs}`)).default; } export async function readConfig(configPath?: string, root?: string): Promise { - if (configPath === undefined) return readDefaultConfig(root); - const importPath = join(process.cwd(), root ?? ".", configPath); - return normalizeConfig((await import(importPath)).default, root); -} - -export async function readDefaultConfig(root?: string): Promise { - for (const ext of [".js", ".ts"]) { - try { - return await readConfig("observablehq.config" + ext, root); - } catch (error: any) { - if (error.code !== "ERR_MODULE_NOT_FOUND") throw error; - continue; - } - } - return normalizeConfig(undefined, root); + if (configPath === undefined) configPath = await resolveDefaultConfig(root); + if (configPath === undefined) return normalizeConfig(undefined, root); + return normalizeConfig(await importConfig(configPath), root, configPath); } -async function readPages(root: string): Promise { +async function resolveDefaultConfig(root?: string): Promise { + const jsPath = resolveConfig("observablehq.config.js", root); + if (existsSync(jsPath)) return jsPath; + const tsPath = resolveConfig("observablehq.config.ts", root); + if (existsSync(tsPath)) return await import("tsx/esm"), tsPath; // lazy tsx +} + +let cachedPages: {key: string; pages: Page[]} | null = null; + +function readPages(root: string, md: MarkdownIt): Page[] { + const files: {file: string; source: string}[] = []; + const hash = createHash("sha256"); + for (const file of visitFiles(root, (name) => !isParameterized(name))) { + if (extname(file) !== ".md" || file === "index.md" || file === "404.md") continue; + const path = file.slice(0, -".md".length); + if (path.endsWith(".js") && findModule(root, path)) continue; + const source = readFileSync(join(root, file), "utf8"); + files.push({file, source}); + hash.update(file).update(source); + } + const key = hash.digest("hex"); + if (cachedPages?.key === key) return cachedPages.pages; const pages: Page[] = []; - for await (const file of visitMarkdownFiles(root)) { - if (file === "index.md" || file === "404.md") continue; - const parsed = await parseMarkdown(join(root, file), {root, path: file}); + for (const {file, source} of files) { + const {data, title} = parseMarkdownMetadata(source, {path: file, md}); + if (data.draft) continue; const name = basename(file, ".md"); - const page = {path: join("/", dirname(file), name), name: parsed.title ?? "Untitled"}; + const {pager = "main"} = data; + const page = {path: join("/", dirname(file), name), name: title ?? "Untitled", pager}; if (name === "index") pages.unshift(page); else pages.push(page); } + cachedPages = {key, pages}; return pages; } -let currentDate = new Date(); +let currentDate: Date | null = null; -export function setCurrentDate(date = new Date()): void { +/** For testing only! */ +export function setCurrentDate(date: Date | null): void { currentDate = date; } -export async function normalizeConfig(spec: any = {}, defaultRoot = "docs"): Promise { - let { - root = defaultRoot, - output = "dist", - base = "/", - sidebar, +// The config is used as a cache key for other operations; for example the pages +// are used as a cache key for search indexing and the previous & next links in +// the footer. When given the same spec (because import returned the same +// module), we want to return the same Config instance. +const configCache = new WeakMap(); + +export function normalizeConfig(spec: ConfigSpec = {}, defaultRoot?: string, watchPath?: string): Config { + const cachedConfig = configCache.get(spec); + if (cachedConfig) return cachedConfig; + const root = spec.root === undefined ? findDefaultRoot(defaultRoot) : String(spec.root); + const output = spec.output === undefined ? "dist" : String(spec.output); + const base = spec.base === undefined ? "/" : normalizeBase(spec.base); + const style = + spec.style === null + ? null + : spec.style !== undefined + ? {path: String(spec.style)} + : {theme: normalizeTheme(spec.theme === undefined ? "default" : spec.theme)}; + const globalStylesheets = + spec.globalStylesheets === undefined + ? defaultGlobalStylesheets() + : normalizeGlobalStylesheets(spec.globalStylesheets); + const md = createMarkdownIt({ + linkify: spec.linkify === undefined ? undefined : Boolean(spec.linkify), + typographer: spec.typographer === undefined ? undefined : Boolean(spec.typographer), + quotes: spec.quotes === undefined ? undefined : (spec.quotes as any), + markdownIt: spec.markdownIt as any + }); + const title = spec.title === undefined ? undefined : String(spec.title); + const home = spec.home === undefined ? he.escape(title ?? "Home") : String(spec.home); // eslint-disable-line import/no-named-as-default-member + const pages = spec.pages === undefined ? undefined : normalizePages(spec.pages); + const pager = spec.pager === undefined ? true : Boolean(spec.pager); + const dynamicPaths = normalizeDynamicPaths(spec.dynamicPaths); + const toc = normalizeToc(spec.toc as any); + const sidebar = spec.sidebar === undefined ? undefined : Boolean(spec.sidebar); + const scripts = spec.scripts === undefined ? [] : normalizeScripts(spec.scripts); + const head = pageFragment(spec.head === undefined ? "" : spec.head); + const header = pageFragment(spec.header === undefined ? "" : spec.header); + const footer = pageFragment(spec.footer === undefined ? defaultFooter() : spec.footer); + const search = spec.search == null || spec.search === false ? null : normalizeSearch(spec.search as any); + const interpreters = normalizeInterpreters(spec.interpreters as any); + const normalizePath = getPathNormalizer(spec); + const duckdb = normalizeDuckDB(spec.duckdb); + + // If this path ends with a slash, then add an implicit /index to the + // end of the path. Otherwise, remove the .html extension (we use clean + // paths as the internal canonical representation; see normalizePage). + function normalizePagePath(pathname: string): string { + ({pathname} = parseRelativeUrl(pathname)); // ignore query & anchor + pathname = normalizePath(pathname); + if (pathname.endsWith("/")) pathname = join(pathname, "index"); + else pathname = pathname.replace(/\.html$/, ""); + return pathname; + } + + const config: Config = { + root, + output, + base, + home, + title, + sidebar: sidebar!, // see below + pages: pages!, // see below + pager, + async *paths() { + const visited = new Set(); + function* visit(path: string): Generator { + if (!visited.has((path = normalizePagePath(path)))) { + visited.add(path); + yield path; + } + } + for (const path of this.loaders.findPagePaths()) { + yield* visit(path); + } + for (const path of getPagePaths(this)) { + yield* visit(path); + } + for await (const path of dynamicPaths()) { + yield* visit(path); + } + }, + scripts, + head, + header, + footer, + toc, style, - theme = "default", - deploy, - scripts = [], - head = "", - header = "", - footer = `Built with Observable on ${formatLocaleDate(currentDate)}.` - } = spec; - root = String(root); - output = String(output); - base = normalizeBase(base); - if (style === null) style = null; - else if (style !== undefined) style = {path: String(style)}; - else style = {theme: (theme = normalizeTheme(theme))}; - let {title, pages = await readPages(root), pager = true, toc = true} = spec; - if (title !== undefined) title = String(title); - pages = Array.from(pages, normalizePageOrSection); - sidebar = sidebar === undefined ? pages.length > 0 : Boolean(sidebar); - pager = Boolean(pager); - scripts = Array.from(scripts, normalizeScript); - head = String(head); - header = String(header); - footer = String(footer); - toc = normalizeToc(toc); - deploy = deploy ? {workspace: String(deploy.workspace).replace(/^@+/, ""), project: String(deploy.project)} : null; - return {root, output, base, title, sidebar, pages, pager, scripts, head, header, footer, toc, style, deploy}; -} - -function normalizeBase(base: any): string { - base = String(base); + globalStylesheets, + search, + md, + normalizePath, + loaders: new LoaderResolver({root, interpreters}), + watchPath, + duckdb + }; + if (pages === undefined) Object.defineProperty(config, "pages", {get: () => readPages(root, md)}); + if (sidebar === undefined) Object.defineProperty(config, "sidebar", {get: () => config.pages.length > 0}); + configCache.set(spec, config); + return config; +} + +function normalizeDynamicPaths(spec: unknown): Config["paths"] { + if (typeof spec === "function") return spec as () => AsyncIterable; + const paths = Array.from((spec ?? []) as ArrayLike, String); + return async function* () { yield* paths; }; // prettier-ignore +} + +function normalizeCleanUrls(spec: unknown): boolean { + console.warn(`${yellow("Warning:")} the ${bold("cleanUrls")} option is deprecated; use ${bold("preserveIndex")} and ${bold("preserveExtension")} instead.`); // prettier-ignore + return !spec; +} + +function getPathNormalizer(spec: ConfigSpec): (path: string) => string { + const preserveIndex = spec.preserveIndex !== undefined ? Boolean(spec.preserveIndex) : false; + const preserveExtension = spec.preserveExtension !== undefined ? Boolean(spec.preserveExtension) : spec.cleanUrls !== undefined ? normalizeCleanUrls(spec.cleanUrls) : false; // prettier-ignore + return (path) => { + const ext = extname(path); + if (path.endsWith(".")) path += "/"; + if (ext === ".html") path = path.slice(0, -".html".length); + if (path.endsWith("/index")) path = path.slice(0, -"index".length); + if (preserveIndex && path.endsWith("/")) path += "index"; + if (!preserveIndex && path === "index") path = "."; + if (preserveExtension && path && !path.endsWith(".") && !path.endsWith("/") && !extname(path)) path += ".html"; + return path; + }; +} + +function pageFragment(spec: unknown): PageFragmentFunction | string | null { + return typeof spec === "function" ? (spec as PageFragmentFunction) : stringOrNull(spec); +} + +function defaultGlobalStylesheets(): string[] { + return [ + "https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap" + ]; +} + +function defaultFooter(): string { + const date = currentDate ?? new Date(); + return `Built with Observable on ${formatLocaleDate(date)}.`; +} + +function findDefaultRoot(defaultRoot?: string): string { + if (defaultRoot !== undefined) return defaultRoot; + const root = existsSync("docs") ? "docs" : "src"; + console.warn( + wrapAnsi( + `${yellow("Warning:")} the config file is missing the ${bold( + "root" + )} option, which specifies the path to the source root.${ + root === "docs" + ? ` The recommended source root is ${bold('"src"')}; however, since ${bold( + "docs" + )} exists and was previously the default for this option, we will use ${bold('"docs"')}.` + : "" + } You can suppress this warning by specifying ${bold(`root: ${JSON.stringify(root)}`)} in the config file.\n`, + Math.min(80, process.stdout.columns ?? 80) + ) + ); + return root; +} + +function normalizeArray(spec: unknown, f: (spec: unknown) => T): T[] { + return spec == null ? [] : Array.from(spec as ArrayLike, f); +} + +function normalizeBase(spec: unknown): string { + let base = String(spec); if (!base.startsWith("/")) throw new Error(`base must start with slash: ${base}`); if (!base.endsWith("/")) base += "/"; return base; } -function normalizeTheme(spec: any): string[] { - return resolveTheme(typeof spec === "string" ? [spec] : spec === null ? [] : Array.from(spec, String)); +function normalizeGlobalStylesheets(spec: unknown): string[] { + return normalizeArray(spec, String); +} + +export function normalizeTheme(spec: unknown): string[] { + return resolveTheme(typeof spec === "string" ? [spec] : normalizeArray(spec, String)); +} + +function normalizeScripts(spec: unknown): Script[] { + console.warn(`${yellow("Warning:")} the ${bold("scripts")} option is deprecated; use ${bold("head")} instead.`); + return normalizeArray(spec, normalizeScript); } -function normalizeScript(spec: any): Script { - if (typeof spec === "string") spec = {src: spec}; - let {src, async = false, type} = spec; - src = String(src); - async = Boolean(async); - type = type == null ? null : String(type); +function normalizeScript(spec: unknown): Script { + const script = typeof spec === "string" ? {src: spec} : (spec as ScriptSpec); + const src = String(script.src); + const async = script.async === undefined ? false : Boolean(script.async); + const type = script.type == null ? null : String(script.type); return {src, async, type}; } -function normalizePageOrSection(spec: any): Page | Section { - return ("pages" in spec ? normalizeSection : normalizePage)(spec); +function normalizePages(spec: unknown): Config["pages"] { + return normalizeArray(spec, (spec: any) => + "pages" in spec ? normalizeSection(spec, normalizePage) : normalizePage(spec) + ); +} + +function normalizeSection( + spec: SectionSpec, + normalizePage: (spec: PageSpec, pager: string | null) => T +): Section { + const name = String(spec.name); + const collapsible = spec.collapsible === undefined ? spec.open !== undefined : Boolean(spec.collapsible); + const open = collapsible ? Boolean(spec.open) : true; + const pager = spec.pager === undefined ? "main" : stringOrNull(spec.pager); + const path = spec.path == null ? null : normalizePath(spec.path); + const pages = normalizeArray(spec.pages, (spec: any) => normalizePage(spec, pager)); + return {name, collapsible, open, path, pager, pages}; +} + +function normalizePage(spec: PageSpec, defaultPager: string | null = "main"): Page { + const name = String(spec.name); + const path = normalizePath(spec.path); + const pager = spec.pager === undefined && isAssetPath(path) ? defaultPager : stringOrNull(spec.pager); + return {name, path, pager}; +} + +function normalizeSearch(spec: SearchConfigSpec): SearchConfig { + const index = spec.index == null ? null : (spec.index as SearchConfig["index"]); + if (index !== null && typeof index !== "function") throw new Error("search.index is not a function"); + return {index}; } -function normalizeSection(spec: any): Section { - let {name, open = true, pages} = spec; - name = String(name); - open = Boolean(open); - pages = Array.from(pages, normalizePage); - return {name, open, pages}; +function normalizePath(spec: unknown): string { + let path = String(spec); + if (isAssetPath(path)) { + const u = parseRelativeUrl(join("/", path)); // add leading slash + let {pathname} = u; + pathname = pathname.replace(/\.html$/i, ""); // remove trailing .html + pathname = pathname.replace(/\/$/, "/index"); // add trailing index + path = pathname + u.search + u.hash; + } + return path; } -function normalizePage(spec: any): Page { - let {name, path} = spec; - name = String(name); - path = String(path); - return {name, path}; +function normalizeInterpreters(spec: {[key: string]: unknown} = {}): {[key: string]: string[] | null} { + return Object.fromEntries( + Object.entries(spec).map(([key, value]): [string, string[] | null] => { + return [String(key), normalizeArray(value, String)]; + }) + ); } -function normalizeToc(spec: any): TableOfContents { - if (typeof spec === "boolean") spec = {show: spec}; - let {label = "Contents", show = true} = spec; - label = String(label); - show = Boolean(show); +function normalizeToc(spec: TableOfContentsSpec | boolean = true): TableOfContents { + const toc = typeof spec === "boolean" ? {show: spec} : (spec as TableOfContentsSpec); + const label = toc.label === undefined ? "Contents" : String(toc.label); + const show = toc.show === undefined ? true : Boolean(toc.show); return {label, show}; } -export function mergeToc(spec: any, toc: TableOfContents): TableOfContents { - let {label = toc.label, show = toc.show} = typeof spec !== "object" ? {show: spec} : spec ?? {}; - label = String(label); - show = Boolean(show); +export function mergeToc(spec: Partial = {}, toc: TableOfContents): TableOfContents { + const {label = toc.label, show = toc.show} = spec; return {label, show}; } -export function mergeStyle(path: string, style: any, theme: any, defaultStyle: null | Style): null | Style { +export function mergeStyle( + path: string, + style: string | null | undefined, + theme: string[] | undefined, + defaultStyle: null | Style +): null | Style { return style === undefined && theme === undefined ? defaultStyle : style === null ? null // disable : style !== undefined ? {path: resolvePath(path, style)} - : {theme: normalizeTheme(theme)}; + : theme === undefined + ? defaultStyle + : {theme}; +} + +export function stringOrNull(spec: unknown): string | null { + return spec == null || spec === false ? null : String(spec); +} + +function normalizeDuckDB(spec: unknown): DuckDBConfig { + const {mvp = true, eh = true} = spec?.["platforms"] ?? {}; + const extensions: {[name: string]: DuckDBExtensionConfig} = {}; + let extspec: Record = spec?.["extensions"] ?? {}; + if (Array.isArray(extspec)) extspec = Object.fromEntries(extspec.map((name) => [name, {}])); + if (extspec.json === undefined) extspec = {...extspec, json: false}; + if (extspec.parquet === undefined) extspec = {...extspec, parquet: false}; + for (let name in extspec) { + if (!/^\w+$/.test(name)) throw new Error(`invalid extension: ${name}`); + const vspec = extspec[name]; + if (vspec == null) continue; + name = DUCKDB_CORE_ALIASES[name] ?? name; + const { + source = name in DUCKDB_CORE_EXTENSIONS ? "core" : "community", + install = true, + load = !DUCKDB_CORE_EXTENSIONS[name] + } = typeof vspec === "boolean" + ? {load: vspec} + : typeof vspec === "string" + ? {source: vspec} + : (vspec as DuckDBExtensionConfigSpec); + extensions[name] = { + source: normalizeDuckDBSource(String(source)), + install: Boolean(install), + load: Boolean(load) + }; + } + return { + platforms: Object.fromEntries( + [ + ["mvp", mvp], + ["eh", eh] + ].filter(([, enabled]) => enabled) + ), + extensions + }; +} + +function normalizeDuckDBSource(source: string): string { + if (source === "core") return "https://extensions.duckdb.org/"; + if (source === "community") return "https://community-extensions.duckdb.org/"; + const url = new URL(source); + if (url.protocol !== "https:") throw new Error(`invalid source: ${source}`); + return String(url); } diff --git a/src/convert.ts b/src/convert.ts new file mode 100644 index 000000000..26696d803 --- /dev/null +++ b/src/convert.ts @@ -0,0 +1,145 @@ +import {existsSync} from "node:fs"; +import {utimes, writeFile} from "node:fs/promises"; +import {join} from "node:path/posix"; +import wrapAnsi from "wrap-ansi"; +import type {ClackEffects} from "./clack.js"; +import {CliError} from "./error.js"; +import {prepareOutput} from "./files.js"; +import {getObservableUiOrigin} from "./observableApiClient.js"; +import type {TtyEffects} from "./tty.js"; +import {bold, cyan, defaultEffects as defaultTtyEffects, faint, inverse, link, reset} from "./tty.js"; + +export interface ConvertEffects extends TtyEffects { + clack: ClackEffects; + prepareOutput(outputPath: string): Promise; + existsSync(outputPath: string): boolean; + writeFile(outputPath: string, contents: Buffer | string): Promise; + touch(outputPath: string, date: Date | string | number): Promise; +} + +const defaultEffects: ConvertEffects = { + ...defaultTtyEffects, + async prepareOutput(outputPath: string): Promise { + await prepareOutput(outputPath); + }, + existsSync(outputPath: string): boolean { + return existsSync(outputPath); + }, + async writeFile(outputPath: string, contents: Buffer | string): Promise { + await writeFile(outputPath, contents); + }, + async touch(outputPath: string, date: Date | string | number): Promise { + await utimes(outputPath, (date = new Date(date)), date); + } +}; + +export async function convert( + inputs: string[], + {output, force = false, files: includeFiles = true}: {output: string; force?: boolean; files?: boolean}, + effects: ConvertEffects = defaultEffects +): Promise { + const {clack} = effects; + clack.intro(`${inverse(" observable convert ")} ${faint(`v${process.env.npm_package_version}`)}`); + let n = 0; + for (const input of inputs) { + let start = Date.now(); + let s = clack.spinner(); + const url = resolveInput(input); + const name = inferFileName(url); + const path = join(output, name); + if (await maybeFetch(path, force, effects)) { + s.start(`Downloading ${bold(path)}`); + const response = await fetch(url); + if (!response.ok) throw new Error(`error fetching ${url}: ${response.status}`); + const {nodes, files, update_time} = await response.json(); + s.stop(`Downloaded ${bold(path)} ${faint(`in ${(Date.now() - start).toLocaleString("en-US")}ms`)}`); + await effects.prepareOutput(path); + await effects.writeFile(path, convertNodes(nodes)); + await effects.touch(path, update_time); + n++; + if (includeFiles) { + for (const file of files) { + const path = join(output, file.name); + if (await maybeFetch(path, force, effects)) { + start = Date.now(); + s = clack.spinner(); + s.start(`Downloading ${bold(path)}`); + const response = await fetch(file.download_url); + if (!response.ok) throw new Error(`error fetching ${file.download_url}: ${response.status}`); + const buffer = Buffer.from(await response.arrayBuffer()); + s.stop(`Downloaded ${bold(path)} ${faint(`in ${(Date.now() - start).toLocaleString("en-US")}ms`)}`); + await effects.prepareOutput(path); + await effects.writeFile(path, buffer); + await effects.touch(path, file.create_time); + n++; + } + } + } + } + } + clack.note( + wrapAnsi( + "Due to syntax differences between Observable notebooks and " + + "Observable Framework, converted notebooks may require further " + + "changes to function correctly. To learn more about JavaScript " + + "in Framework, please read:\n\n" + + reset(cyan(link("https://observablehq.com/framework/javascript"))), + Math.min(64, effects.outputColumns) + ), + "Note" + ); + clack.outro( + `${inputs.length} notebook${inputs.length === 1 ? "" : "s"} converted; ${n} file${n === 1 ? "" : "s"} written` + ); +} + +async function maybeFetch(path: string, force: boolean, effects: ConvertEffects): Promise { + const {clack} = effects; + if (effects.existsSync(path) && !force) { + const choice = await clack.confirm({message: `${bold(path)} already exists; replace?`, initialValue: false}); + if (!choice) return false; + if (clack.isCancel(choice)) throw new CliError("Stopped convert", {print: false}); + } + return true; +} + +export function convertNodes(nodes): string { + let string = ""; + let first = true; + for (const node of nodes) { + if (first) first = false; + else string += "\n"; + string += convertNode(node); + } + return string; +} + +export function convertNode(node): string { + let string = ""; + if (node.mode !== "md") string += `\`\`\`${node.mode}${node.pinned ? " echo" : ""}\n`; + string += `${node.value}\n`; + if (node.mode !== "md") string += "```\n"; + return string; +} + +export function inferFileName(input: string): string { + return new URL(input).pathname.replace(/^\/document(\/@[^/]+)?\//, "").replace(/\//g, ",") + ".md"; +} + +export function resolveInput(input: string): string { + let url: URL; + if (isIdSpecifier(input)) url = new URL(`/d/${input}`, getObservableUiOrigin()); + else if (isSlugSpecifier(input)) url = new URL(`/${input}`, getObservableUiOrigin()); + else url = new URL(input); + url.host = `api.${url.host}`; + url.pathname = `/document${url.pathname.replace(/^\/d\//, "/")}`; + return String(url); +} + +function isIdSpecifier(string: string) { + return /^([0-9a-f]{16})(?:@(\d+)|~(\d+)|@(\w+))?$/.test(string); +} + +function isSlugSpecifier(string: string) { + return /^(?:@([0-9a-z_-]+))\/([0-9a-z_-]+(?:\/[0-9]+)?)(?:@(\d+)|~(\d+)|@(\w+))?$/.test(string); +} diff --git a/src/create.ts b/src/create.ts index d0f9aa8e8..3b6a07699 100644 --- a/src/create.ts +++ b/src/create.ts @@ -1,31 +1,30 @@ +/* eslint-disable import/no-named-as-default-member */ import {exec} from "node:child_process"; import {accessSync, existsSync, readdirSync, statSync} from "node:fs"; import {constants, copyFile, mkdir, readFile, readdir, stat, writeFile} from "node:fs/promises"; -import {basename, dirname, join, normalize, resolve} from "node:path"; +import op from "node:path"; +import {basename, dirname, join, normalize} from "node:path/posix"; import {setTimeout as sleep} from "node:timers/promises"; import {fileURLToPath} from "node:url"; import {promisify} from "node:util"; -import * as clack from "@clack/prompts"; +import he from "he"; import untildify from "untildify"; -import {version} from "../package.json"; +import wrapAnsi from "wrap-ansi"; import type {ClackEffects} from "./clack.js"; -import {cyan, faint, inverse, reset, underline} from "./tty.js"; +import type {TtyEffects} from "./tty.js"; +import {cyan, defaultEffects as defaultTtyEffects, faint, inverse, link, reset} from "./tty.js"; -export interface CreateEffects { +export interface CreateEffects extends TtyEffects { clack: ClackEffects; sleep: (delay?: number) => Promise; - log(output: string): void; mkdir(outputPath: string, options?: {recursive?: boolean}): Promise; copyFile(sourcePath: string, outputPath: string): Promise; writeFile(outputPath: string, contents: string): Promise; } const defaultEffects: CreateEffects = { - clack, + ...defaultTtyEffects, sleep, - log(output: string): void { - console.log(output); - }, async mkdir(outputPath: string, options): Promise { await mkdir(outputPath, options); }, @@ -37,31 +36,31 @@ const defaultEffects: CreateEffects = { } }; -// TODO Do we want to accept the output path as a command-line argument, -// still? It’s not sufficient to run observable create non-interactively, -// though we could just apply all the defaults in that case, and then expose -// command-line arguments for the other prompts. In any case, our immediate -// priority is supporting the interactive case, not the automated one. -// eslint-disable-next-line @typescript-eslint/no-unused-vars -export async function create(options = {}, effects: CreateEffects = defaultEffects): Promise { +export async function create(effects: CreateEffects = defaultEffects): Promise { const {clack} = effects; - clack.intro(`${inverse(" observable create ")} ${faint(`v${version}`)}`); - const defaultRootPath = "./hello-framework"; + clack.intro(`${inverse(" observable create ")} ${faint(`v${process.env.npm_package_version}`)}`); + const defaultRootPath = `.${op.sep}hello-framework`; const defaultRootPathError = validateRootPath(defaultRootPath); + clack.log.success( + wrapAnsi( + "Welcome to Observable Framework! 👋 This command will help you create a new app. When prompted, you can press Enter to accept the default value.", + Math.min(80, effects.outputColumns) + ) + `\n\nWant help? ${link("https://observablehq.com/framework/getting-started")}` + ); await clack.group( { rootPath: () => clack.text({ - message: "Where to create your project?", + message: "Where should we create your project?", placeholder: defaultRootPath, defaultValue: defaultRootPathError ? undefined : defaultRootPath, validate: (input) => validateRootPath(input, defaultRootPathError) }), - projectTitle: ({results: {rootPath}}) => + appTitle: ({results: {rootPath}}) => clack.text({ - message: "What to title your project?", - placeholder: inferTitle(rootPath!), - defaultValue: inferTitle(rootPath!) + message: "What should we title your app?", + placeholder: inferTitle(rootPath), + defaultValue: inferTitle(rootPath) }), includeSampleFiles: () => clack.select({ @@ -80,21 +79,22 @@ export async function create(options = {}, effects: CreateEffects = defaultEffec {value: "yarn", label: "Yes, via yarn", hint: "recommended"}, {value: null, label: "No"} ], - initialValue: inferPackageManager() + initialValue: inferPackageManager("npm") }), initializeGit: () => clack.confirm({ message: "Initialize git repository?" }), - installing: async ({results: {rootPath, projectTitle, includeSampleFiles, packageManager, initializeGit}}) => { + installing: async ({results: {rootPath, appTitle, includeSampleFiles, packageManager, initializeGit}}) => { rootPath = untildify(rootPath!); + let spinning = true; const s = clack.spinner(); s.start("Copying template files"); const template = includeSampleFiles ? "default" : "empty"; - const templateDir = resolve(fileURLToPath(import.meta.url), "..", "..", "templates", template); + const templateDir = op.resolve(fileURLToPath(import.meta.url), "..", "..", "templates", template); const runCommand = packageManager === "yarn" ? "yarn" : `${packageManager ?? "npm"} run`; const installCommand = `${packageManager ?? "npm"} install`; - await effects.sleep(1000); + await effects.sleep(1000); // this step is fast; give the spinner a chance to show await recursiveCopyTemplate( templateDir, rootPath!, @@ -102,26 +102,45 @@ export async function create(options = {}, effects: CreateEffects = defaultEffec runCommand, installCommand, rootPath: rootPath!, - projectTitle: projectTitle as string, - projectTitleString: JSON.stringify(projectTitle as string) + appTitleHtml: he.escape(appTitle as string), + appTitleString: JSON.stringify(appTitle as string), + frameworkVersionString: JSON.stringify(`^${process.env.npm_package_version}`) }, effects ); if (packageManager) { s.message(`Installing dependencies via ${packageManager}`); - await effects.sleep(1000); + if (packageManager === "yarn") await writeFile(join(rootPath, "yarn.lock"), ""); await promisify(exec)(installCommand, {cwd: rootPath}); } if (initializeGit) { s.message("Initializing git repository"); - await effects.sleep(1000); + await effects.sleep(1000); // this step is fast; give the spinner a chance to show await promisify(exec)("git init", {cwd: rootPath}); await promisify(exec)("git add -A", {cwd: rootPath}); } - s.stop("Installed! 🎉"); - const instructions = [`cd ${rootPath}`, ...(packageManager ? [] : [installCommand]), `${runCommand} dev`]; + if (packageManager) { + s.message("Initializing Framework cache"); + try { + await promisify(exec)(`${runCommand} build`, {cwd: rootPath}); + } catch { + spinning = false; + s.stop("Installed! 🎉"); + clack.log.warn( + wrapAnsi( + "Failed to initialize Framework cache. This may be a transient error loading data from external servers or downloading imported modules from jsDelivr; or it might be a network configuration issue such as a firewall blocking traffic. You can ignore this error for now and Framework will automatically try to download again on preview or build. If you continue to experience issues, please check your network configuration.", + Math.min(80, effects.outputColumns) + ) + `\n\nWant help? ${link("https://github.com/observablehq/framework/issues")}\n` + ); + } + } + if (spinning) s.stop("Installed! 🎉"); + const instructions: string[] = []; + if (rootPath !== ".") instructions.push(`cd ${rootPath}`); + if (!packageManager) instructions.push(installCommand); + instructions.push(`${runCommand} dev`); clack.note(instructions.map((line) => reset(cyan(line))).join("\n"), "Next steps…"); - clack.outro(`Problems? ${underline("https://observablehq.com/framework/getting-started")}`); + clack.outro(`Problems? ${link("https://github.com/observablehq/framework/discussions")}`); } }, { @@ -143,8 +162,8 @@ function validateRootPath(rootPath: string, defaultError?: string): string | und if (readdirSync(rootPath).length !== 0) return "Directory is not empty."; } -function inferTitle(rootPath: string): string { - return basename(rootPath!) +function inferTitle(rootPath = "."): string { + return basename(join(process.cwd(), rootPath)) .split(/[-_\s]/) .map(([c, ...rest]) => c.toUpperCase() + rest.join("")) .join(" "); @@ -205,12 +224,12 @@ async function recursiveCopyTemplate( } } -function inferPackageManager(): string | null { +function inferPackageManager(defaultValue: string | null): string | null { const userAgent = process.env["npm_config_user_agent"]; - if (!userAgent) return null; + if (!userAgent) return defaultValue; const pkgSpec = userAgent.split(" ")[0]!; // userAgent is non-empty, so this is always defined - if (!pkgSpec) return null; + if (!pkgSpec) return defaultValue; const [name, version] = pkgSpec.split("/"); - if (!name || !version) return null; + if (!name || !version) return defaultValue; return name; } diff --git a/src/dataloader.ts b/src/dataloader.ts deleted file mode 100644 index 6c80a7fc9..000000000 --- a/src/dataloader.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {spawn} from "node:child_process"; -import {type WriteStream, createReadStream, existsSync, statSync} from "node:fs"; -import {mkdir, open, readFile, rename, unlink} from "node:fs/promises"; -import {dirname, extname, join} from "node:path"; -import {createGunzip} from "node:zlib"; -import JSZip from "jszip"; -import {extract} from "tar-stream"; -import {maybeStat, prepareOutput} from "./files.js"; -import type {Logger, Writer} from "./logger.js"; -import {cyan, faint, green, red, yellow} from "./tty.js"; - -const runningCommands = new Map>(); - -const languages = { - ".js": ["node", "--no-warnings=ExperimentalWarning"], - ".ts": ["tsx"], - ".py": ["python3"], - ".r": ["Rscript"], - ".R": ["Rscript"], - ".rs": ["rust-script"], - ".go": ["go", "run"], - ".sh": ["sh"], - ".exe": [] -}; - -export interface LoadEffects { - logger: Logger; - output: Writer; -} - -const defaultEffects: LoadEffects = { - logger: console, - output: process.stdout -}; - -export interface LoaderOptions { - path: string; - sourceRoot: string; - targetPath: string; - useStale: boolean; -} - -export abstract class Loader { - /** - * The path to the loader script or executable relative to the current working - * directory. This is exposed so that clients can check which file to watch to - * see if the loader is edited (and in which case it needs to be re-run). - */ - readonly path: string; - - /** - * The source root relative to the current working directory, such as docs. - */ - readonly sourceRoot: string; - - /** - * The path to the loader script’s output relative to the destination root. - * This is where the loader’s output is served, but the loader generates the - * file in the .observablehq/cache directory within the source root. - */ - readonly targetPath: string; - - /** - * Should the loader use a stale cache. true when building. - */ - readonly useStale?: boolean; - - constructor({path, sourceRoot, targetPath, useStale}: LoaderOptions) { - this.path = path; - this.sourceRoot = sourceRoot; - this.targetPath = targetPath; - this.useStale = useStale; - } - - /** - * Finds the loader for the specified target path, relative to the specified - * source root, if it exists. If there is no such loader, returns undefined. - * For files within archives, we find the first parent folder that exists, but - * abort if we find a matching folder or reach the source root; for example, - * if docs/data exists, we won’t look for a docs/data.zip. - */ - static find(sourceRoot: string, targetPath: string, {useStale = false} = {}): Loader | undefined { - const exact = this.findExact(sourceRoot, targetPath, {useStale}); - if (exact) return exact; - let dir = dirname(targetPath); - for (let parent: string; true; dir = parent) { - parent = dirname(dir); - if (parent === dir) return; // reached source root - if (existsSync(join(sourceRoot, dir))) return; // found folder - if (existsSync(join(sourceRoot, parent))) break; // found parent - } - for (const [ext, Extractor] of extractors) { - const archive = dir + ext; - if (existsSync(join(sourceRoot, archive))) { - return new Extractor({ - preload: async () => archive, - inflatePath: targetPath.slice(archive.length - ext.length + 1), - path: join(sourceRoot, archive), - sourceRoot, - targetPath, - useStale - }); - } - const archiveLoader = this.findExact(sourceRoot, archive, {useStale}); - if (archiveLoader) { - return new Extractor({ - preload: async (options) => archiveLoader.load(options), - inflatePath: targetPath.slice(archive.length - ext.length + 1), - path: archiveLoader.path, - sourceRoot, - targetPath, - useStale - }); - } - } - } - - private static findExact(sourceRoot: string, targetPath: string, {useStale}): Loader | undefined { - for (const [ext, [command, ...args]] of Object.entries(languages)) { - if (!existsSync(join(sourceRoot, targetPath + ext))) continue; - if (extname(targetPath) === "") { - console.warn(`invalid data loader path: ${targetPath + ext}`); - return; - } - const path = join(sourceRoot, targetPath + ext); - return new CommandLoader({ - command: command ?? path, - args: command == null ? args : [...args, path], - path, - sourceRoot, - targetPath, - useStale - }); - } - } - - /** - * Runs this loader, returning the path to the generated output file relative - * to the source root; this is within the .observablehq/cache folder within - * the source root. - */ - async load(effects = defaultEffects): Promise { - const key = join(this.sourceRoot, this.targetPath); - let command = runningCommands.get(key); - if (!command) { - command = (async () => { - const outputPath = join(".observablehq", "cache", this.targetPath); - const cachePath = join(this.sourceRoot, outputPath); - const loaderStat = await maybeStat(this.path); - const cacheStat = await maybeStat(cachePath); - if (!cacheStat) effects.output.write(faint("[missing] ")); - else if (cacheStat.mtimeMs < loaderStat!.mtimeMs) { - if (this.useStale) return effects.output.write(faint("[using stale] ")), outputPath; - else effects.output.write(faint("[stale] ")); - } else return effects.output.write(faint("[fresh] ")), outputPath; - const tempPath = join(this.sourceRoot, ".observablehq", "cache", `${this.targetPath}.${process.pid}`); - const errorPath = tempPath + ".err"; - const errorStat = await maybeStat(errorPath); - if (errorStat) { - if (errorStat.mtimeMs > loaderStat!.mtimeMs && errorStat.mtimeMs > -1000 + Date.now()) - throw new Error("loader skipped due to recent error"); - else await unlink(errorPath).catch(() => {}); - } - await prepareOutput(tempPath); - const tempFd = await open(tempPath, "w"); - try { - await this.exec(tempFd.createWriteStream({highWaterMark: 1024 * 1024}), effects); - await mkdir(dirname(cachePath), {recursive: true}); - await rename(tempPath, cachePath); - } catch (error) { - await rename(tempPath, errorPath); - throw error; - } finally { - await tempFd.close(); - } - return outputPath; - })(); - command.finally(() => runningCommands.delete(key)).catch(() => {}); - runningCommands.set(key, command); - } - effects.output.write(`${cyan("load")} ${this.path} ${faint("→")} `); - const start = performance.now(); - command.then( - (path) => { - effects.logger.log( - `${green("success")} ${cyan(formatSize(statSync(join(this.sourceRoot, path)).size))} ${faint( - `in ${formatElapsed(start)}` - )}` - ); - }, - (error) => { - effects.logger.log(`${red("error")} ${faint(`in ${formatElapsed(start)}:`)} ${red(error.message)}`); - } - ); - return command; - } - - abstract exec(output: WriteStream, effects?: LoadEffects): Promise; -} - -interface CommandLoaderOptions extends LoaderOptions { - command: string; - args: string[]; -} - -class CommandLoader extends Loader { - /** - * The command to run, such as "node" for a JavaScript loader, "tsx" for - * TypeScript, and "sh" for a shell script. "noop" when we only need to - * inflate a file from a static archive. - */ - private readonly command: string; - - /** - * Args to pass to the command; currently this is a single argument of the - * path to the loader script relative to the current working directory. (TODO - * Support passing additional arguments to loaders.) - */ - private readonly args: string[]; - - constructor({command, args, ...options}: CommandLoaderOptions) { - super(options); - this.command = command; - this.args = args; - } - - async exec(output: WriteStream): Promise { - const subprocess = spawn(this.command, this.args, {windowsHide: true, stdio: ["ignore", "pipe", "inherit"]}); - subprocess.stdout.pipe(output); - const code = await new Promise((resolve, reject) => { - subprocess.on("error", reject); - subprocess.on("close", resolve); - }); - if (code !== 0) { - throw new Error(`loader exited with code ${code}`); - } - } -} - -interface ZipExtractorOptions extends LoaderOptions { - preload: Loader["load"]; - inflatePath: string; -} - -class ZipExtractor extends Loader { - private readonly preload: Loader["load"]; - private readonly inflatePath: string; - - constructor({preload, inflatePath, ...options}: ZipExtractorOptions) { - super(options); - this.preload = preload; - this.inflatePath = inflatePath; - } - - async exec(output: WriteStream, effects?: LoadEffects): Promise { - const archivePath = join(this.sourceRoot, await this.preload(effects)); - const file = (await JSZip.loadAsync(await readFile(archivePath))).file(this.inflatePath); - if (!file) throw Object.assign(new Error("file not found"), {code: "ENOENT"}); - const pipe = file.nodeStream().pipe(output); - await new Promise((resolve, reject) => pipe.on("error", reject).on("finish", resolve)); - } -} - -interface TarExtractorOptions extends LoaderOptions { - preload: Loader["load"]; - inflatePath: string; - gunzip?: boolean; -} - -class TarExtractor extends Loader { - private readonly preload: Loader["load"]; - private readonly inflatePath: string; - private readonly gunzip: boolean; - - constructor({preload, inflatePath, gunzip = false, ...options}: TarExtractorOptions) { - super(options); - this.preload = preload; - this.inflatePath = inflatePath; - this.gunzip = gunzip; - } - - async exec(output: WriteStream, effects?: LoadEffects): Promise { - const archivePath = join(this.sourceRoot, await this.preload(effects)); - const tar = extract(); - const input = createReadStream(archivePath); - (this.gunzip ? input.pipe(createGunzip()) : input).pipe(tar); - for await (const entry of tar) { - if (entry.header.name === this.inflatePath) { - const pipe = entry.pipe(output); - await new Promise((resolve, reject) => pipe.on("error", reject).on("finish", resolve)); - return; - } else { - entry.resume(); - } - } - throw Object.assign(new Error("file not found"), {code: "ENOENT"}); - } -} - -class TarGzExtractor extends TarExtractor { - constructor(options: TarExtractorOptions) { - super({...options, gunzip: true}); - } -} - -const extractors = [ - [".zip", ZipExtractor], - [".tar", TarExtractor], - [".tar.gz", TarGzExtractor], - [".tgz", TarGzExtractor] -] as const; - -function formatSize(size: number): string { - if (!size) return yellow("empty output"); - const e = Math.floor(Math.log(size) / Math.log(1024)); - return `${+(size / 1024 ** e).toFixed(2)} ${["bytes", "KiB", "MiB", "GiB", "TiB"][e]}`; -} - -function formatElapsed(start: number): string { - const elapsed = performance.now() - start; - return `${Math.floor(elapsed)}ms`; -} diff --git a/src/deploy.ts b/src/deploy.ts index 54206b444..dbf19540d 100644 --- a/src/deploy.ts +++ b/src/deploy.ts @@ -1,50 +1,68 @@ -import {join} from "node:path"; -import * as clack from "@clack/prompts"; +import {createHash} from "node:crypto"; +import type {Stats} from "node:fs"; +import {readFile, stat} from "node:fs/promises"; +import {join} from "node:path/posix"; +import slugify from "@sindresorhus/slugify"; import wrapAnsi from "wrap-ansi"; -import type {BuildEffects} from "./build.js"; -import {build} from "./build.js"; +import type {BuildEffects, BuildManifest, BuildOptions} from "./build.js"; +import {FileBuildEffects, build} from "./build.js"; import type {ClackEffects} from "./clack.js"; import {commandRequiresAuthenticationMessage} from "./commandInstruction.js"; +import {RateLimiter, runAllWithConcurrencyLimit} from "./concurrency.js"; import type {Config} from "./config.js"; -import {CliError, isApiError, isHttpError} from "./error.js"; -import type {Logger, Writer} from "./logger.js"; -import {type AuthEffects, defaultEffects as defaultAuthEffects, formatUser, loginInner} from "./observableApiAuth.js"; +import {CliError, isApiError, isEnoent, isHttpError} from "./error.js"; +import {visitFiles} from "./files.js"; +import type {Logger} from "./logger.js"; +import type {AuthEffects} from "./observableApiAuth.js"; +import {defaultEffects as defaultAuthEffects, formatUser, loginInner, validWorkspaces} from "./observableApiAuth.js"; import {ObservableApiClient} from "./observableApiClient.js"; -import { - type GetCurrentUserResponse, - type GetDeployResponse, - type GetProjectResponse, - type PostEditProjectRequest, - type WorkspaceResponse +import type { + DeployManifestFile, + GetCurrentUserResponse, + GetDeployResponse, + GetProjectResponse, + WorkspaceResponse } from "./observableApiClient.js"; -import { - type ConfigEffects, - type DeployConfig, - defaultEffects as defaultConfigEffects, - getDeployConfig, - setDeployConfig -} from "./observableApiConfig.js"; -import {slugify} from "./slugify.js"; +import type {ConfigEffects, DeployConfig} from "./observableApiConfig.js"; +import {defaultEffects as defaultConfigEffects, getDeployConfig, setDeployConfig} from "./observableApiConfig.js"; import {Telemetry} from "./telemetry.js"; import type {TtyEffects} from "./tty.js"; -import {bold, defaultEffects as defaultTtyEffects, inverse, link, underline, yellow} from "./tty.js"; +import {bold, defaultEffects as defaultTtyEffects, faint, inverse, link, underline, yellow} from "./tty.js"; const DEPLOY_POLL_MAX_MS = 1000 * 60 * 5; const DEPLOY_POLL_INTERVAL_MS = 1000 * 5; +const BUILD_AGE_WARNING_MS = 1000 * 60 * 5; export interface DeployOptions { config: Config; - message: string | undefined; + deployConfigPath: string | undefined; + message?: string; deployPollInterval?: number; + force: "build" | "deploy" | null; + maxConcurrency?: number; + deployId?: string; } export interface DeployEffects extends ConfigEffects, TtyEffects, AuthEffects { - getDeployConfig: (sourceRoot: string) => Promise; - setDeployConfig: (sourceRoot: string, config: DeployConfig) => Promise; + getDeployConfig: ( + sourceRoot: string, + deployConfigPath: string | undefined, + effects: ConfigEffects + ) => Promise; + setDeployConfig: ( + sourceRoot: string, + deployConfigPath: string | undefined, + config: DeployConfig, + effects: ConfigEffects + ) => Promise; clack: ClackEffects; logger: Logger; input: NodeJS.ReadableStream; output: NodeJS.WritableStream; + visitFiles: (root: string) => Generator; + stat: (path: string) => Promise; + build: ({config}: BuildOptions, effects?: BuildEffects) => Promise; + readCacheFile: (sourceRoot: string, path: string) => Promise; } const defaultEffects: DeployEffects = { @@ -53,293 +71,632 @@ const defaultEffects: DeployEffects = { ...defaultAuthEffects, getDeployConfig, setDeployConfig, - clack, logger: console, input: process.stdin, - output: process.stdout + output: process.stdout, + visitFiles, + stat, + build, + readCacheFile }; type DeployTargetInfo = - | {create: true; workspace: {id: string; login: string}; projectSlug: string; title: string} + | {create: true; workspace: {id: string; login: string}; projectSlug: string; title: string; accessLevel: string} | {create: false; workspace: {id: string; login: string}; project: GetProjectResponse}; /** Deploy a project to ObservableHQ */ -export async function deploy( - {config, message, deployPollInterval = DEPLOY_POLL_INTERVAL_MS}: DeployOptions, - effects = defaultEffects -): Promise { - Telemetry.record({event: "deploy", step: "start"}); - effects.clack.intro(inverse(" observable deploy ")); - - let apiKey = await effects.getObservableApiKey(effects); - const apiClient = new ObservableApiClient(apiKey ? {apiKey} : {}); - const deployConfig = await effects.getDeployConfig(config.root); - - if (deployConfig.workspaceLogin && !deployConfig.workspaceLogin.match(/^@?[a-z0-9-]+$/)) { - throw new CliError( - `Found invalid workspace login in ${join(config.root, ".observablehq", "deploy.json")}: ${ - deployConfig.workspaceLogin - }.` - ); +export async function deploy(deployOptions: DeployOptions, effects = defaultEffects): Promise { + Telemetry.record({event: "deploy", step: "start", force: deployOptions.force}); + effects.clack.intro(`${inverse(" observable deploy ")} ${faint(`v${process.env.npm_package_version}`)}`); + + const deployInfo = await new Deployer(deployOptions, effects).deploy(); + + effects.clack.outro(`Deployed app now visible at ${link(deployInfo.url)}`); + Telemetry.record({event: "deploy", step: "finish"}); +} + +class Deployer { + private deployOptions: DeployOptions; + private effects: DeployEffects; + private apiClient!: ObservableApiClient; + private currentUser!: GetCurrentUserResponse; + + constructor(deployOptions: DeployOptions, effects = defaultEffects) { + if (deployOptions.deployConfigPath === "") throw new CliError("Invalid path for --deploy-config"); + this.deployOptions = deployOptions; + this.effects = effects; } - if (deployConfig.projectSlug && !deployConfig.projectSlug.match(/^[a-z0-9-]+$/)) { - throw new CliError( - `Found invalid project slug in ${join(config.root, ".observablehq", "deploy.json")}: ${deployConfig.projectSlug}.` - ); + + async deploy(): Promise { + await this.setApiClientAndCurrentUser(); + const deployInfo = this.deployOptions.deployId ? await this.continueExistingDeploy() : await this.startNewDeploy(); + return deployInfo; } - const legacyConfig = config as unknown as {deploy: null | {project: string; workspace: string}}; - if (legacyConfig.deploy && deployConfig.projectId) { - if (!deployConfig.projectSlug || !deployConfig.workspaceLogin) { - effects.clack.log.info("Copying deploy information from the config file to deploy.json."); - deployConfig.projectSlug = legacyConfig.deploy.project; - deployConfig.workspaceLogin = legacyConfig.deploy.workspace.replace(/^@/, ""); - effects.setDeployConfig(config.root, deployConfig); + private async setApiClientAndCurrentUser() { + let apiKey = await this.effects.getObservableApiKey(this.effects); + const apiClient = new ObservableApiClient( + apiKey ? {apiKey, clack: this.effects.clack} : {clack: this.effects.clack} + ); + + let currentUser: GetCurrentUserResponse | null = null; + let authError: null | "unauthenticated" | "forbidden" = null; + try { + if (apiKey) { + currentUser = await apiClient.getCurrentUser(); + // List of valid workspaces that can be used to create projects. + currentUser = {...currentUser, workspaces: validWorkspaces(currentUser.workspaces)}; + } + } catch (error) { + if (isHttpError(error)) { + if (error.statusCode === 401) authError = "unauthenticated"; + else if (error.statusCode === 403) authError = "forbidden"; + else throw error; + } else { + throw error; + } } - effects.clack.log.info("The `deploy` section of your config file is obsolete and can be deleted."); - } - let currentUser: GetCurrentUserResponse | null = null; - let authError: null | "unauthenticated" | "forbidden" = null; - try { - if (apiKey) currentUser = await apiClient.getCurrentUser(); - } catch (error) { - if (isHttpError(error)) { - if (error.statusCode === 401) authError = "unauthenticated"; - else if (error.statusCode === 403) authError = "forbidden"; - else throw error; - } else { - throw error; + if (!currentUser) { + if (!this.effects.isTty) { + if (authError === "unauthenticated" || !apiKey) { + throw new CliError("No authentication provided"); + } else { + const source = + apiKey.source == "file" + ? ` from ${apiKey.filePath}` + : apiKey.source === "env" + ? ` from $${apiKey.envVar}` + : ""; + throw new CliError(`Authentication${source} was rejected by the server: ${authError ?? "unknown error"}`); + } + } + const message = + authError === "unauthenticated" || authError === null + ? "You must be logged in to Observable to deploy. Do you want to do that now?" + : "Your authentication is invalid. Do you want to log in to Observable again?"; + const choice = await this.effects.clack.confirm({ + message, + active: "Yes, log in", + inactive: "No, cancel deploy" + }); + if (!choice) { + this.effects.clack.outro(yellow("Deploy canceled.")); + } + if (this.effects.clack.isCancel(choice) || !choice) + throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + + ({currentUser, apiKey} = await loginInner(this.effects, {pollTime: this.deployOptions.deployPollInterval})); + apiClient.setApiKey(apiKey); } + + if (!currentUser) throw new CliError(commandRequiresAuthenticationMessage); + + this.apiClient = apiClient; + this.currentUser = currentUser; } - if (!currentUser) { - const message = - authError === "unauthenticated" || authError === null - ? "You must be logged in to Observable Cloud to deploy. Do you want to do that now?" - : "Your authentication is invalid. Do you want to log in to Observable Cloud again?"; - const choice = await effects.clack.confirm({ - message, - active: "Yes, log in", - inactive: "No, cancel deploy" - }); - if (!choice) { - effects.clack.outro(yellow("Deploy canceled.")); - } - if (effects.clack.isCancel(choice) || !choice) - throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + private async continueExistingDeploy(): Promise { + const {deployId} = this.deployOptions; + if (!deployId) throw new Error("invalid deploy options"); + await this.checkDeployCreated(deployId); - ({currentUser, apiKey} = await loginInner(effects)); - apiClient.setApiKey(apiKey); + const buildFilePaths = await this.getBuildFilePaths(); + + await this.uploadFiles(deployId, buildFilePaths); + await this.markDeployUploaded(deployId); + const deployInfo = await this.pollForProcessingCompletion(deployId); + + return deployInfo; } - if (!currentUser) throw new CliError(commandRequiresAuthenticationMessage); - - if (deployConfig.projectId && (!deployConfig.projectSlug || !deployConfig.workspaceLogin)) { - const spinner = effects.clack.spinner(); - effects.clack.log.warn("The `projectSlug` or `workspaceLogin` is missing from your deploy.json."); - spinner.start(`Searching for project ${deployConfig.projectId}`); - let found = false; - for (const workspace of currentUser.workspaces) { - const projects = await apiClient.getWorkspaceProjects(workspace.login); - const project = projects.find((p) => p.id === deployConfig.projectId); - if (project) { - deployConfig.projectSlug = project.slug; - deployConfig.workspaceLogin = workspace.login; - effects.setDeployConfig(config.root, deployConfig); - found = true; - break; - } - } - if (found) { - spinner.stop(`Project @${deployConfig.workspaceLogin}/${deployConfig.projectSlug} found.`); - } else { - spinner.stop(`Project ${deployConfig.projectId} not found. Ignoring…`); - } + + private async startNewDeploy(): Promise { + const deployConfig = await this.getUpdatedDeployConfig(); + const deployTarget = await this.getDeployTarget(deployConfig); + const buildFilePaths = await this.getBuildFilePaths(); + const deployId = await this.createNewDeploy(deployTarget); + + await this.uploadFiles(deployId, buildFilePaths); + await this.markDeployUploaded(deployId); + return await this.pollForProcessingCompletion(deployId); } - let deployTarget: DeployTargetInfo; - const projectUpdates: PostEditProjectRequest = {}; - if (deployConfig.workspaceLogin && deployConfig.projectSlug) { + // Make sure deploy exists and has an expected status. + private async checkDeployCreated(deployId: string) { try { - const project = await apiClient.getProject({ - workspaceLogin: deployConfig.workspaceLogin, - projectSlug: deployConfig.projectSlug - }); - deployTarget = {create: false, workspace: project.owner, project}; - if (config.title !== project.title) projectUpdates.title = config.title; + const deployInfo = await this.apiClient.getDeploy(deployId); + if (deployInfo.status !== "created") { + throw new CliError(`Deploy ${deployId} has an unexpected status: ${deployInfo.status}`); + } + return deployInfo; } catch (error) { - if (!isHttpError(error) || error.statusCode !== 404) { - throw error; + if (isHttpError(error)) { + throw new CliError(`Deploy ${deployId} not found.`, { + cause: error + }); } + throw error; } } - deployTarget ??= await promptDeployTarget(effects, apiClient, config, currentUser); + // Get the deploy config, updating if necessary. + private async getUpdatedDeployConfig() { + const deployConfig = await this.effects.getDeployConfig( + this.deployOptions.config.root, + this.deployOptions.deployConfigPath, + this.effects + ); - const previousProjectId = deployConfig?.projectId; - let targetDescription: string; + if (deployConfig.workspaceLogin && !deployConfig.workspaceLogin.match(/^@?[a-z0-9-]+$/)) { + throw new CliError( + `Found invalid workspace login in ${join(this.deployOptions.config.root, ".observablehq", "deploy.json")}: ${ + deployConfig.workspaceLogin + }.` + ); + } + if (deployConfig.projectSlug && !deployConfig.projectSlug.match(/^[a-z0-9-]+$/)) { + throw new CliError( + `Found invalid \`projectSlug\` in ${join(this.deployOptions.config.root, ".observablehq", "deploy.json")}: ${ + deployConfig.projectSlug + }.` + ); + } - if (deployTarget.create) { - try { - const project = await apiClient.postProject({ - slug: deployTarget.projectSlug, - title: deployTarget.title, - workspaceId: deployTarget.workspace.id - }); - deployTarget = {create: false, workspace: deployTarget.workspace, project}; - } catch (error) { - if (isApiError(error) && error.details.errors.some((e) => e.code === "TOO_MANY_PROJECTS")) { - effects.clack.log.error( + if (deployConfig.projectId && (!deployConfig.projectSlug || !deployConfig.workspaceLogin)) { + const spinner = this.effects.clack.spinner(); + this.effects.clack.log.warn("The `projectSlug` or `workspaceLogin` is missing from your deploy.json."); + spinner.start(`Searching for app ${deployConfig.projectId}`); + let found = false; + for (const workspace of this.currentUser.workspaces) { + const projects = await this.apiClient.getWorkspaceProjects(workspace.login); + const project = projects.find((p) => p.id === deployConfig.projectId); + if (project) { + deployConfig.projectSlug = project.slug; + deployConfig.workspaceLogin = workspace.login; + await this.effects.setDeployConfig( + this.deployOptions.config.root, + this.deployOptions.deployConfigPath, + deployConfig, + this.effects + ); + found = true; + break; + } + } + if (found) { + spinner.stop(`App ${deployConfig.projectSlug} found in workspace @${deployConfig.workspaceLogin}.`); + } else { + spinner.stop(`App ${deployConfig.projectId} not found. Ignoring…`); + } + } + + return deployConfig; + } + + // Get the deploy target, prompting the user as needed. + private async getDeployTarget(deployConfig: DeployConfig): Promise { + let deployTarget: DeployTargetInfo; + if (deployConfig.workspaceLogin && deployConfig.projectSlug) { + try { + const project = await this.apiClient.getProject({ + workspaceLogin: deployConfig.workspaceLogin, + projectSlug: deployConfig.projectSlug + }); + deployTarget = {create: false, workspace: project.owner, project}; + } catch (error) { + if (!isHttpError(error) || error.statusCode !== 404) { + throw error; + } + } + } + + deployTarget ??= await promptDeployTarget( + this.effects, + this.deployOptions.config, + this.apiClient, + this.currentUser + ); + + if (!deployTarget.create) { + // Check last deployed state. If it's not the same project, ask the user if + // they want to continue anyways. In non-interactive mode just cancel. + const targetDescription = `${deployTarget.project.title} (${deployTarget.project.slug}) in the @${deployTarget.workspace.login} workspace`; + if (deployConfig.projectId && deployConfig.projectId !== deployTarget.project.id) { + this.effects.clack.log.warn( wrapAnsi( - `The Starter tier can only deploy one project. Upgrade to unlimited projects at ${link( - `https://observablehq.com/team/@${deployTarget.workspace.login}/settings` - )}`, - effects.outputColumns - 4 + `The \`projectId\` in your deploy.json does not match. Continuing will overwrite ${bold( + targetDescription + )}.`, + this.effects.outputColumns ) ); + if (this.effects.isTty) { + const choice = await this.effects.clack.confirm({ + message: "Do you want to continue deploying?", + active: "Yes, overwrite", + inactive: "No, cancel" + }); + if (!choice) { + this.effects.clack.outro(yellow("Deploy canceled.")); + } + if (this.effects.clack.isCancel(choice) || !choice) { + throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + } + } else { + throw new CliError("Cancelling deploy due to misconfiguration."); + } + } else if (deployConfig.projectId) { + this.effects.clack.log.info(wrapAnsi(`Deploying to ${bold(targetDescription)}.`, this.effects.outputColumns)); } else { - effects.clack.log.error( - wrapAnsi(`Could not create project: ${error instanceof Error ? error.message : error}`, effects.outputColumns) + this.effects.clack.log.warn( + wrapAnsi( + `The \`projectId\` in your deploy.json is missing. Continuing will overwrite ${bold(targetDescription)}.`, + this.effects.outputColumns + ) ); + if (this.effects.isTty) { + const choice = await this.effects.clack.confirm({ + message: "Do you want to continue deploying?", + active: "Yes, overwrite", + inactive: "No, cancel" + }); + if (!choice) { + this.effects.clack.outro(yellow("Deploy canceled.")); + } + if (this.effects.clack.isCancel(choice) || !choice) { + throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + } + } else { + throw new CliError("Running non-interactively, cancelling due to conflict."); + } } - effects.clack.outro(yellow("Deploy canceled")); - throw new CliError("Error during deploy", {cause: error, print: false}); } - } else { - // Check last deployed state. If it's not the same project, ask the user if - // they want to continue anyways. In non-interactive mode just cancel. - targetDescription = `${deployTarget.project.title} (@${deployTarget.workspace.login}/${deployTarget.project.slug})`; - const previousProjectId = deployConfig.projectId; - if (previousProjectId && previousProjectId !== deployTarget.project.id) { - effects.clack.log.warn( - `The \`projectId\` in your deploy.json does not match. Continuing will overwrite ${bold(targetDescription)}.` - ); - if (effects.isTty) { - const choice = await effects.clack.confirm({ - message: "Do you want to continue deploying?", - active: "Yes, overwrite", - inactive: "No, cancel" + + if (deployTarget.create) { + try { + const project = await this.apiClient.postProject({ + slug: deployTarget.projectSlug, + title: deployTarget.title, + workspaceId: deployTarget.workspace.id, + accessLevel: deployTarget.accessLevel }); - if (!choice) { - effects.clack.outro(yellow("Deploy canceled.")); - } - if (effects.clack.isCancel(choice) || !choice) { - throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + deployTarget = {create: false, workspace: deployTarget.workspace, project}; + } catch (error) { + if (isApiError(error) && error.details.errors.some((e) => e.code === "TOO_MANY_PROJECTS")) { + this.effects.clack.log.error( + wrapAnsi( + `The Starter tier can only deploy one app. Upgrade to unlimited apps at ${link( + `https://observablehq.com/team/@${deployTarget.workspace.login}/settings` + )}`, + this.effects.outputColumns - 4 + ) + ); + } else { + this.effects.clack.log.error( + wrapAnsi( + `Could not create app: ${error instanceof Error ? error.message : error}`, + this.effects.outputColumns + ) + ); } - } else { - throw new CliError("Cancelling deploy due to misconfiguration."); + this.effects.clack.outro(yellow("Deploy canceled")); + throw new CliError("Error during deploy", {cause: error, print: false}); } - } else if (previousProjectId) { - effects.clack.log.info(`Deploying to ${bold(targetDescription)}.`); - } else { - effects.clack.log.warn( - `The \`projectId\` in your deploy.json is missing. Continuing will overwrite ${bold(targetDescription)}.` - ); - if (effects.isTty) { - const choice = await effects.clack.confirm({ - message: "Do you want to continue deploying?", - active: "Yes, overwrite", - inactive: "No, cancel" + } + + await this.effects.setDeployConfig( + this.deployOptions.config.root, + this.deployOptions.deployConfigPath, + { + projectId: deployTarget.project.id, + projectSlug: deployTarget.project.slug, + workspaceLogin: deployTarget.workspace.login + }, + this.effects + ); + + return deployTarget; + } + + // Create the new deploy on the server. + private async createNewDeploy(deployTarget: DeployTargetInfo): Promise { + if (deployTarget.create) { + throw Error("Incorrect deployTarget state"); + } + + let message = this.deployOptions.message; + if (message === undefined) { + if (this.effects.isTty) { + const input = await this.effects.clack.text({ + message: "What changed in this deploy?", + placeholder: "Enter a deploy message (optional)" }); - if (!choice) { - effects.clack.outro(yellow("Deploy canceled.")); + if (this.effects.clack.isCancel(input)) throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + message = input; + } else { + message = ""; + } + } + + let deployId; + try { + deployId = await this.apiClient.postDeploy({projectId: deployTarget.project.id, message}); + } catch (error) { + if (isHttpError(error)) { + if (error.statusCode === 404) { + throw new CliError( + `App ${deployTarget.project.slug} in workspace @${deployTarget.workspace.login} not found.`, + { + cause: error + } + ); + } else if (error.statusCode === 403) { + throw new CliError( + `You don't have permission to deploy to ${deployTarget.project.slug} in workspace @${deployTarget.workspace.login}.`, + {cause: error} + ); } - if (effects.clack.isCancel(choice) || !choice) { - throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + } + throw error; + } + + return deployId; + } + + // Get the list of build files, doing a build if necessary. + private async getBuildFilePaths(): Promise { + let doBuild = this.deployOptions.force === "build"; + let buildFilePaths: string[] | null = null; + + // Check if the build is missing. If it is present, then continue; otherwise + // if --no-build was specified, then error; otherwise if in a tty, ask the + // user if they want to build; otherwise build automatically. + try { + buildFilePaths = await this.findBuildFiles(); + } catch (error) { + if (CliError.match(error, {message: /No build files found/})) { + if (this.deployOptions.force === "deploy") { + throw new CliError("No build files found."); + } else if (!this.deployOptions.force) { + if (this.effects.isTty) { + const choice = await this.effects.clack.confirm({ + message: "No build files found. Do you want to build the app now?", + active: "Yes, build and then deploy", + inactive: "No, cancel deploy" + }); + if (this.effects.clack.isCancel(choice) || !choice) { + throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + } + } + doBuild = true; } } else { - throw new CliError("Running non-interactively, cancelling due to conflictg"); + throw error; } } - } - await effects.setDeployConfig(config.root, { - projectId: deployTarget.project.id, - projectSlug: deployTarget.project.slug, - workspaceLogin: deployTarget.workspace.login - }); + // If we haven’t decided yet whether or not we’re building, check how old the + // build is, and whether it is stale (i.e., whether the source files are newer + // than the build). If in a tty, ask the user if they want to build; otherwise + // deploy as is. + if (!doBuild && !this.deployOptions.force && this.effects.isTty) { + const leastRecentBuildMtimeMs = await this.findLeastRecentBuildMtimeMs(); + const mostRecentSourceMtimeMs = await this.findMostRecentSourceMtimeMs(); + const buildAge = Date.now() - leastRecentBuildMtimeMs; + let initialValue = buildAge > BUILD_AGE_WARNING_MS; + if (mostRecentSourceMtimeMs > leastRecentBuildMtimeMs) { + this.effects.clack.log.warn( + wrapAnsi(`Your source files have changed since you built ${formatAge(buildAge)}.`, this.effects.outputColumns) + ); + initialValue = true; + } else { + this.effects.clack.log.info(wrapAnsi(`You built this app ${formatAge(buildAge)}.`, this.effects.outputColumns)); + } + const choice = await this.effects.clack.confirm({ + message: "Would you like to build again before deploying?", + initialValue, + active: "Yes, build and then deploy", + inactive: "No, deploy as is" + }); + if (this.effects.clack.isCancel(choice)) throw new CliError("User canceled deploy", {print: false, exitCode: 0}); + doBuild = !!choice; + } - // Create the new deploy on the server - if (message === undefined) { - const input = await effects.clack.text({ - message: "What changed in this deploy?", - placeholder: "Enter a deploy message (optional)" - }); - if (effects.clack.isCancel(input)) throw new CliError("User canceled deploy", {print: false, exitCode: 0}); - message = input; + if (doBuild) { + this.effects.clack.log.step("Building app"); + await this.effects.build( + {config: this.deployOptions.config}, + new FileBuildEffects( + this.deployOptions.config.output, + join(this.deployOptions.config.root, ".observablehq", "cache"), + { + logger: this.effects.logger, + output: this.effects.output + } + ) + ); + buildFilePaths = await this.findBuildFiles(); + } + + if (!buildFilePaths) throw new Error("No build files found."); + return buildFilePaths; } - const deployId = await apiClient.postDeploy({projectId: deployTarget.project.id, message}); - - // Build the project - await build({config, clientEntry: "./src/client/deploy.js"}, new DeployBuildEffects(apiClient, deployId, effects)); - - // Mark the deploy as uploaded - await apiClient.postDeployUploaded(deployId); - - // Poll for processing completion - const spinner = effects.clack.spinner(); - spinner.start("Server processing deploy"); - const pollExpiration = Date.now() + DEPLOY_POLL_MAX_MS; - let deployInfo: null | GetDeployResponse = null; - let done = false; - while (!done) { - if (Date.now() > pollExpiration) { - spinner.stop("Deploy timed out"); - throw new CliError(`Deploy failed to process on server: status = ${deployInfo?.status}`); + + private async findMostRecentSourceMtimeMs(): Promise { + let mostRecentMtimeMs = -Infinity; + for await (const file of this.effects.visitFiles(this.deployOptions.config.root)) { + const joinedPath = join(this.deployOptions.config.root, file); + const stat = await this.effects.stat(joinedPath); + if (stat.mtimeMs > mostRecentMtimeMs) { + mostRecentMtimeMs = stat.mtimeMs; + } } - deployInfo = await apiClient.getDeploy(deployId); - switch (deployInfo.status) { - case "pending": - break; - case "uploaded": - spinner.stop("Deploy complete"); - done = true; - break; - case "error": - spinner.stop("Deploy failed"); - throw new CliError("Deploy failed to process on server"); - default: - throw new CliError(`Unknown deploy status: ${deployInfo.status}`); + const cachePath = join(this.deployOptions.config.root, ".observablehq/cache"); + try { + const cacheStat = await this.effects.stat(cachePath); + if (cacheStat.mtimeMs > mostRecentMtimeMs) { + mostRecentMtimeMs = cacheStat.mtimeMs; + } + } catch (error) { + if (!isEnoent(error)) { + throw error; + } } - await new Promise((resolve) => setTimeout(resolve, deployPollInterval)); + return mostRecentMtimeMs; } - spinner.stop(); - if (!deployInfo) throw new CliError("Deploy failed to process on server"); - // Update project title if necessary - if (previousProjectId && previousProjectId === deployTarget.project.id && typeof projectUpdates?.title === "string") { - await apiClient.postEditProject(deployTarget.project.id, projectUpdates as PostEditProjectRequest); + private async findLeastRecentBuildMtimeMs(): Promise { + let leastRecentMtimeMs = Infinity; + for await (const file of this.effects.visitFiles(this.deployOptions.config.output)) { + const joinedPath = join(this.deployOptions.config.output, file); + const stat = await this.effects.stat(joinedPath); + if (stat.mtimeMs < leastRecentMtimeMs) { + leastRecentMtimeMs = stat.mtimeMs; + } + } + return leastRecentMtimeMs; + } + + private async findBuildFiles(): Promise { + const buildFilePaths: string[] = []; + try { + for await (const file of this.effects.visitFiles(this.deployOptions.config.output)) { + buildFilePaths.push(file); + } + } catch (error) { + if (isEnoent(error)) { + throw new CliError(`No build files found at ${this.deployOptions.config.output}`, {cause: error}); + } + throw error; + } + if (!buildFilePaths.length) { + throw new CliError(`No build files found at ${this.deployOptions.config.output}`); + } + return buildFilePaths; } - effects.clack.outro(`Deployed project now visible at ${link(deployInfo.url)}`); - Telemetry.record({event: "deploy", step: "finish"}); -} -class DeployBuildEffects implements BuildEffects { - readonly logger: Logger; - readonly output: Writer; - constructor( - private readonly apiClient: ObservableApiClient, - private readonly deployId: string, - effects: DeployEffects - ) { - this.logger = effects.logger; - this.output = effects.output; + private async uploadFiles(deployId: string, buildFilePaths: string[]) { + const progressSpinner = this.effects.clack.spinner(); + progressSpinner.start(""); + + // upload a manifest before uploading the files + progressSpinner.message("Hashing local files"); + const manifestFileInfo: DeployManifestFile[] = []; + await runAllWithConcurrencyLimit(buildFilePaths, async (path) => { + const fullPath = join(this.deployOptions.config.output, path); + const statInfo = await stat(fullPath); + const hash = createHash("sha512") + .update(await readFile(fullPath)) + .digest("base64"); + manifestFileInfo.push({path, size: statInfo.size, hash}); + }); + progressSpinner.message("Sending file manifest to server"); + const instructions = await this.apiClient.postDeployManifest(deployId, manifestFileInfo); + const fileErrors: {path: string; detail: string | null}[] = []; + for (const fileInstruction of instructions.files) { + if (fileInstruction.status === "error") { + fileErrors.push({path: fileInstruction.path, detail: fileInstruction.detail}); + } + } + if (fileErrors.length) { + this.effects.clack.log.error( + "The server rejected some files from the upload:\n\n" + + fileErrors.map(({path, detail}) => ` - ${path} - ${detail ? `(${detail})` : "no details"}`).join("\n") + ); + } + if (instructions.status === "error" || fileErrors.length) { + throw new CliError(`Server rejected deploy manifest${instructions.detail ? `: ${instructions.detail}` : ""}`); + } + const filesToUpload: string[] = instructions.files + .filter((instruction) => instruction.status === "upload") + .map((instruction) => instruction.path); + + // Upload the files + const rateLimiter = new RateLimiter(5); + const waitForRateLimit = filesToUpload.length <= 300 ? async () => {} : () => rateLimiter.wait(); + + await runAllWithConcurrencyLimit( + filesToUpload, + async (path, i) => { + await waitForRateLimit(); + progressSpinner.message( + `${i + 1} / ${filesToUpload.length} ${faint("uploading")} ${path.slice(0, this.effects.outputColumns - 17)}` + ); + await this.apiClient.postDeployFile(deployId, join(this.deployOptions.config.output, path), path); + }, + {maxConcurrency: this.deployOptions.maxConcurrency} + ); + progressSpinner.stop( + `${filesToUpload.length} uploaded, ${buildFilePaths.length - filesToUpload.length} unchanged, ${ + buildFilePaths.length + } total.` + ); } - async copyFile(sourcePath: string, outputPath: string) { - this.logger.log(outputPath); - await this.apiClient.postDeployFile(this.deployId, sourcePath, outputPath); + + private async markDeployUploaded(deployId: string) { + // Mark the deploy as uploaded + let buildManifest: null | BuildManifest = null; + try { + const source = await this.effects.readCacheFile(this.deployOptions.config.root, "_build.json"); + buildManifest = JSON.parse(source); + Telemetry.record({event: "deploy", buildManifest: "found"}); + } catch (error) { + if (isEnoent(error)) { + Telemetry.record({event: "deploy", buildManifest: "missing"}); + } else { + // The error message here might contain sensitive information, so + // don't send it in telemetry. + Telemetry.record({event: "deploy", buildManifest: "error"}); + this.effects.clack.log.warn(`Could not read build manifest: ${error}`); + } + } + await this.apiClient.postDeployUploaded(deployId, buildManifest); } - async writeFile(outputPath: string, content: Buffer | string) { - this.logger.log(outputPath); - await this.apiClient.postDeployFileContents(this.deployId, content, outputPath); + + private async pollForProcessingCompletion(deployId: string): Promise { + const {deployPollInterval: pollInterval = DEPLOY_POLL_INTERVAL_MS} = this.deployOptions; + + // Poll for processing completion + const spinner = this.effects.clack.spinner(); + spinner.start("Server processing deploy"); + const pollExpiration = Date.now() + DEPLOY_POLL_MAX_MS; + let deployInfo: null | GetDeployResponse = null; + pollLoop: while (true) { + if (Date.now() > pollExpiration) { + spinner.stop("Deploy timed out"); + throw new CliError(`Deploy failed to process on server: status = ${deployInfo?.status}`); + } + deployInfo = await this.apiClient.getDeploy(deployId); + switch (deployInfo.status) { + case "created": + case "pending": + break; + case "uploaded": + spinner.stop("Deploy complete"); + break pollLoop; + case "failed": + spinner.stop("Deploy failed"); + throw new CliError("Deploy failed to process on server"); + case "canceled": + spinner.stop("Deploy canceled"); + throw new CliError("Deploy canceled"); + default: + spinner.stop("Unknown status"); + throw new CliError(`Unknown deploy status: ${deployInfo.status}`); + } + await new Promise((resolve) => setTimeout(resolve, pollInterval)); + } + + if (!deployInfo) throw new CliError("Deploy failed to process on server"); + return deployInfo; } } // export for testing export async function promptDeployTarget( effects: DeployEffects, - api: ObservableApiClient, config: Config, + api: ObservableApiClient, currentUser: GetCurrentUserResponse ): Promise { if (!effects.isTty) throw new CliError("Deploy not configured."); @@ -359,9 +716,10 @@ export async function promptDeployTarget( } else { const chosenWorkspace = await effects.clack.select<{value: WorkspaceResponse; label: string}[], WorkspaceResponse>({ message: "Which Observable workspace do you want to use?", + maxItems: Math.max(process.stdout.rows - 4, 0), options: currentUser.workspaces .map((w) => ({value: w, label: formatUser(w)})) - .sort((a, b) => a.label.localeCompare(b.label)), + .sort((a, b) => b.value.role.localeCompare(a.value.role) || a.label.localeCompare(b.label)), initialValue: currentUser.workspaces[0] // the oldest workspace, maybe? }); if (effects.clack.isCancel(chosenWorkspace)) { @@ -383,9 +741,10 @@ export async function promptDeployTarget( if (existingProjects.length > 0) { const chosenProject = await effects.clack.select<{value: string | null; label: string}[], string | null>({ - message: "Which project do you want to use?", + message: "Which app do you want to use?", + maxItems: Math.max(process.stdout.rows - 4, 0), options: [ - {value: null, label: "Create a new project"}, + {value: null, label: "Create a new app"}, ...existingProjects .map((p) => ({ value: p.slug, @@ -401,7 +760,7 @@ export async function promptDeployTarget( } } else { const confirmChoice = await effects.clack.confirm({ - message: "No projects found. Do you want to create a new project?", + message: "No apps found. Do you want to create a new app?", active: "Yes, continue", inactive: "No, cancel" }); @@ -415,17 +774,17 @@ export async function promptDeployTarget( let title = config.title; if (title === undefined) { - effects.clack.log.warn("You haven’t configured a title for your project."); + effects.clack.log.warn("You haven’t configured a title for your app."); const titleChoice = await effects.clack.text({ message: "What title do you want to use?", - placeholder: "Enter a project title", + placeholder: "Enter an app title", validate: (title) => (title ? undefined : "A title is required.") }); if (effects.clack.isCancel(titleChoice)) { throw new CliError("User canceled deploy.", {print: false, exitCode: 0}); } title = titleChoice; - effects.clack.log.info("You should add this title to your observablehq.config.ts file."); + effects.clack.log.info("You should add this title to your observablehq.config.js file."); } // TODO This should refer to the URL of the project, not the slug. @@ -444,5 +803,37 @@ export async function promptDeployTarget( } projectSlug = projectSlugChoice; - return {create: true, workspace, projectSlug, title}; + const accessLevel: string | symbol = await effects.clack.select({ + message: "Who is allowed to access your app?", + options: [ + {value: "private", label: "Private", hint: "only allow workspace members"}, + {value: "public", label: "Public", hint: "allow anyone"} + ] + }); + if (effects.clack.isCancel(accessLevel)) { + throw new CliError("User canceled deploy.", {print: false, exitCode: 0}); + } + + return {create: true, workspace, projectSlug, title, accessLevel}; +} + +function formatAge(age: number): string { + if (age < 1000 * 60) { + const seconds = Math.round(age / 1000); + return `${seconds} second${seconds === 1 ? "" : "s"} ago`; + } + if (age < 1000 * 60 * 60) { + const minutes = Math.round(age / 1000 / 60); + return `${minutes} minute${minutes === 1 ? "" : "s"} ago`; + } + if (age < 1000 * 60 * 60 * 12) { + const hours = Math.round(age / 1000 / 60 / 60); + return `${hours} hour${hours === 1 ? "" : "s"} ago`; + } + return `at ${new Date(Date.now() - age).toLocaleString("sv")}`; +} + +async function readCacheFile(sourceRoot: string, path: string): Promise { + const fullPath = join(sourceRoot, ".observablehq", "cache", path); + return await readFile(fullPath, "utf8"); } diff --git a/src/duckdb.ts b/src/duckdb.ts new file mode 100644 index 000000000..bc4360a50 --- /dev/null +++ b/src/duckdb.ts @@ -0,0 +1,127 @@ +import {existsSync} from "node:fs"; +import {mkdir, writeFile} from "node:fs/promises"; +import {dirname, join} from "node:path/posix"; +import type {DuckDBConfig} from "./config.js"; +import {faint} from "./tty.js"; + +const downloadRequests = new Map>(); + +export const DUCKDB_WASM_VERSION = "1.29.0"; +export const DUCKDB_VERSION = "1.1.1"; + +// https://duckdb.org/docs/extensions/core_extensions.html +export const DUCKDB_CORE_ALIASES: Record = { + sqlite: "sqlite_scanner", + sqlite3: "sqlite_scanner", + postgres_scanner: "postgres", + http: "httpfs", + https: "httpfs", + s3: "httpfs" +} as const; + +// https://duckdb.org/docs/extensions/core_extensions.html +// https://duckdb.org/docs/api/wasm/extensions.html#list-of-officially-available-extensions +export const DUCKDB_CORE_EXTENSIONS = { + arrow: false, + autocomplete: true, + aws: true, + azure: true, + delta: true, + excel: true, + fts: true, + httpfs: true, + iceberg: false, + icu: true, + inet: true, + jemalloc: false, + json: true, + mysql: false, + parquet: true, + postgres: true, + spatial: false, + sqlite_scanner: true, + substrait: false, + tpcds: true, + tpch: true, + vss: false +} as const; + +export async function getDuckDBManifest( + {platforms, extensions}: DuckDBConfig, + {root, aliases}: {root: string; aliases?: Map} +) { + return { + platforms: {mvp: "mvp" in platforms, eh: "eh" in platforms}, + extensions: Object.fromEntries( + await Promise.all( + Object.entries(extensions).map(([name, {install, load, source}]) => + (async () => [ + name, + { + install, + load, + ...Object.fromEntries( + await Promise.all( + Object.keys(platforms).map(async (platform) => [ + platform, + install + ? await getDuckDBExtension(root, resolveDuckDBExtension(source, platform, name), aliases) + : source + ]) + ) + ) + } + ])() + ) + ) + ) + }; +} + +export function resolveDuckDBExtension(repo: string, platform: string, name: string): URL { + return new URL(`v${DUCKDB_VERSION}/wasm_${platform}/${name}.duckdb_extension.wasm`, repo); +} + +/** + * Returns the extension “custom repository” location as needed for DuckDB’s + * INSTALL command. This is the relative path to which DuckDB will implicitly add + * v{version}/wasm_{platform}/{name}.duckdb_extension.wasm, assuming that the + * manifest is baked into /_observablehq/stdlib/duckdb.js. + * + * https://duckdb.org/docs/extensions/working_with_extensions#creating-a-custom-repository + */ +async function getDuckDBExtension(root: string, href: string | URL, aliases?: Map) { + let ext = await cacheDuckDBExtension(root, href); + if (aliases?.has(ext)) ext = aliases.get(ext)!; + return join("..", "..", dirname(dirname(dirname(ext)))); +} + +/** + * Saves the given DuckDB extension to the .observablehq/cache/_duckdb cache, + * as {origin}/{path}/{name}.duckdb_extension.wasm, returning the serving path + * to the saved file in the cache (starting with /_duckdb). + * + * https://duckdb.org/docs/extensions/overview#installation-location + */ +export async function cacheDuckDBExtension(root: string, href: string | URL): Promise { + const url = new URL(href); + if (url.protocol !== "https:") throw new Error(`unsupported protocol: ${url.protocol}`); + const key = String(url).slice("https://".length); + const path = join("_duckdb", key); + const cache = join(root, ".observablehq", "cache"); + const cachePath = join(cache, path); + if (existsSync(cachePath)) return `/${path}`; + let promise = downloadRequests.get(cachePath); + if (promise) return promise; // coalesce concurrent requests + promise = (async () => { + console.log(`duckdb:${key} ${faint("→")} ${cachePath}`); + const response = await fetch(url); + if (!response.ok) throw new Error(`unable to fetch: ${url}`); + await mkdir(dirname(cachePath), {recursive: true}); + await writeFile(cachePath, Buffer.from(await response.arrayBuffer())); + return `/${path}`; + })(); + promise.catch(console.error).then(() => downloadRequests.delete(cachePath)); + downloadRequests.set(cachePath, promise); + return promise; +} diff --git a/src/error.ts b/src/error.ts index 7187ebfa9..8823d8900 100644 --- a/src/error.ts +++ b/src/error.ts @@ -17,6 +17,10 @@ export class HttpError extends Error { } } +export function enoent(path: string): NodeJS.ErrnoException { + return Object.assign(new Error(`Not found: ${path}`), {code: "ENOENT"}); +} + export function isEnoent(error: unknown): error is NodeJS.ErrnoException { return isSystemError(error) && error.code === "ENOENT"; } @@ -72,4 +76,18 @@ export class CliError extends Error { assert.equal(error.exitCode, exitCode, `Expected exit code to be ${exitCode}, but got ${error.exitCode}`); assert.equal(error.print, print, `Expected print to be ${print}, but got ${error.print}`); } + + /** Use in tests to check if a thrown error is the error you expected. */ + static match( + error: unknown, + {message, exitCode, print}: {message?: RegExp | string; exitCode?: number; print?: boolean} = {} + ): error is CliError { + if (!(error instanceof Error)) return false; + if (!(error instanceof CliError)) return false; + if (message !== undefined && typeof message === "string" && error.message !== message) return false; + if (message !== undefined && message instanceof RegExp && !message.test(error.message)) return false; + if (exitCode !== undefined && error.exitCode !== exitCode) return false; + if (print !== undefined && error.print !== print) return false; + return true; + } } diff --git a/src/fileWatchers.ts b/src/fileWatchers.ts index 96fd1a564..c1dcdf15e 100644 --- a/src/fileWatchers.ts +++ b/src/fileWatchers.ts @@ -1,18 +1,18 @@ -import {type FSWatcher, existsSync, watch} from "node:fs"; -import {Loader} from "./dataloader.js"; +import type {FSWatcher} from "node:fs"; +import {watch} from "node:fs"; import {isEnoent} from "./error.js"; import {maybeStat} from "./files.js"; -import {resolvePath} from "./url.js"; +import type {LoaderResolver} from "./loader.js"; +import {resolvePath} from "./path.js"; export class FileWatchers { private readonly watchers: FSWatcher[] = []; - static async of(root: string, path: string, names: string[], callback: (name: string) => void) { + static async of(loaders: LoaderResolver, path: string, names: Iterable, callback: (name: string) => void) { const that = new FileWatchers(); const {watchers} = that; - for (const name of new Set(names)) { - const exactPath = resolvePath(root, path, name); - const watchPath = existsSync(exactPath) ? exactPath : Loader.find(root, resolvePath(path, name))?.path; + for (const name of names) { + const watchPath = loaders.getWatchPath(resolvePath(path, name)); if (!watchPath) continue; let currentStat = await maybeStat(watchPath); let watcher: FSWatcher; @@ -26,7 +26,7 @@ export class FileWatchers { watcher = watchers[index] = watch(watchPath, watched); } catch (error) { if (!isEnoent(error)) throw error; - console.error(`file no longer exists: ${path}`); + console.error(`file no longer exists: ${watchPath}`); return; } setTimeout(() => watched("change"), 100); // delay to avoid a possibly-empty file diff --git a/src/files.ts b/src/files.ts index 2da58e669..c52f02f04 100644 --- a/src/files.ts +++ b/src/files.ts @@ -1,24 +1,24 @@ -import {type Stats, existsSync} from "node:fs"; -import {mkdir, readdir, stat} from "node:fs/promises"; -import {dirname, extname, join, normalize, relative} from "node:path"; +import type {Stats} from "node:fs"; +import {existsSync, readdirSync, statSync} from "node:fs"; +import {mkdir, stat} from "node:fs/promises"; +import op from "node:path"; +import {join, normalize, relative, sep} from "node:path/posix"; import {cwd} from "node:process"; import {fileURLToPath} from "node:url"; -import mime from "mime"; import {isEnoent} from "./error.js"; -import type {FileReference} from "./javascript.js"; -import {relativeUrl, resolvePath} from "./url.js"; -// A path is local if it doesn’t go outside the the root. -export function getLocalPath(sourcePath: string, name: string): string | null { - if (/^\w+:/.test(name)) return null; // URL - if (name.startsWith("#")) return null; // anchor tag - const path = resolvePath(sourcePath, name); - if (path.startsWith("../")) return null; // goes above root - return path; -} +export const toOsPath = sep === op.sep ? (path: string) => path : (path: string) => path.split(sep).join(op.sep); +export const fromOsPath = sep === op.sep ? (path: string) => path : (path: string) => path.split(op.sep).join(sep); +/** + * Returns the relative path from the current working directory to the given + * Framework source file, such as "search.js". This is typically used to rollup + * JavaScript or TypeScript for built-in modules. (Note that TypeScript is + * only detected during local development, as TypeScript is converted to + * JavaScript before publishing.) + */ export function getClientPath(entry: string): string { - const path = relative(cwd(), join(dirname(fileURLToPath(import.meta.url)), "..", entry)); + const path = fromOsPath(op.relative(cwd(), op.join(fileURLToPath(import.meta.url), "..", "client", entry))); if (path.endsWith(".js") && !existsSync(path)) { const tspath = path.slice(0, -".js".length) + ".ts"; if (existsSync(tspath)) return tspath; @@ -26,39 +26,45 @@ export function getClientPath(entry: string): string { return path; } -export function fileReference(name: string, sourcePath: string): FileReference { - return { - name: relativeUrl(sourcePath, name), - mimeType: mime.getType(name), - path: relativeUrl(sourcePath, join("_file", name)) - }; -} - -export async function* visitMarkdownFiles(root: string): AsyncGenerator { - for await (const file of visitFiles(root)) { - if (extname(file) !== ".md") continue; - yield file; - } +/** + * Returns the relative path from the current working directory to the given + * Framework source file, such as "default.css". This is typically used to + * rollup style bundles for built-in modules. + */ +export function getStylePath(entry: string): string { + return fromOsPath(op.relative(cwd(), op.join(fileURLToPath(import.meta.url), "..", "style", entry))); } -export async function* visitFiles(root: string): AsyncGenerator { +/** + * Yields every file within the given root, recursively, ignoring .observablehq. + * If a test function is specified, any directories or files whose names don’t + * pass the specified test will be skipped (in addition to .observablehq). This + * is typically used to skip parameterized paths. + */ +export function* visitFiles(root: string, test?: (name: string) => boolean): Generator { const visited = new Set(); const queue: string[] = [(root = normalize(root))]; for (const path of queue) { - const status = await stat(path); - if (status.isDirectory()) { - if (visited.has(status.ino)) continue; // circular symlink - visited.add(status.ino); - for (const entry of await readdir(path)) { - queue.push(join(path, entry)); + try { + const status = statSync(path); + if (status.isDirectory()) { + if (visited.has(status.ino)) continue; // circular symlink + visited.add(status.ino); + for (const entry of readdirSync(path)) { + if (entry === ".observablehq") continue; // ignore the .observablehq directory + if (test !== undefined && !test(entry)) continue; + queue.push(join(path, entry)); + } + } else { + yield relative(root, path); } - } else { - yield relative(root, path); + } catch (error) { + if (!isEnoent(error)) throw error; } } } -// Like fs.stat, but returns undefined instead of throwing ENOENT if not found. +/** Like fs.stat, but returns undefined instead of throwing ENOENT if not found. */ export async function maybeStat(path: string): Promise { try { return await stat(path); @@ -67,8 +73,9 @@ export async function maybeStat(path: string): Promise { } } +/** Like recursive mkdir, but for the parent of the specified output. */ export async function prepareOutput(outputPath: string): Promise { - const outputDir = dirname(outputPath); + const outputDir = op.dirname(outputPath); if (outputDir === ".") return; await mkdir(outputDir, {recursive: true}); } diff --git a/src/format.ts b/src/format.ts index 05fa9d912..2eb0a06bf 100644 --- a/src/format.ts +++ b/src/format.ts @@ -13,3 +13,17 @@ export function formatLocaleDate(date: Date, locale: Intl.LocalesArgument = "en- function pad(number: number, length: number): string { return String(number).padStart(length, "0"); } + +export function formatByteSize(x: number, locale: Intl.LocalesArgument = "en-US"): string { + const formatOptions = {maximumSignificantDigits: 3, maximumFractionDigits: 2}; + for (const [k, suffix] of [ + [1e9, " GB"], + [1e6, " MB"], + [1e3, " kB"] + ] as const) { + if (Math.round((x / k) * 1e3) >= 1e3) { + return (x / k).toLocaleString(locale, formatOptions) + suffix; + } + } + return x.toLocaleString(locale, formatOptions) + " B"; +} diff --git a/src/frontMatter.ts b/src/frontMatter.ts new file mode 100644 index 000000000..63300ce82 --- /dev/null +++ b/src/frontMatter.ts @@ -0,0 +1,73 @@ +import matter from "gray-matter"; +import {normalizeTheme, stringOrNull} from "./config.js"; +import {yellow} from "./tty.js"; + +export interface FrontMatter { + title?: string | null; + toc?: {show?: boolean; label?: string}; + style?: string | null; + theme?: string[]; + head?: string | null; + header?: string | null; + footer?: string | null; + pager?: string | null; + index?: boolean; + keywords?: string[]; + draft?: boolean; + sidebar?: boolean; + sql?: {[key: string]: string}; +} + +export function readFrontMatter(input: string): {content: string; data: FrontMatter} { + try { + const {content, data} = matter(input, {}); + return {content, data: normalizeFrontMatter(data)}; + } catch (error: any) { + if ("mark" in error) { + console.warn(`${yellow("Invalid front matter:")} ${error.reason}`); + return {data: {}, content: input}; + } + throw error; + } +} + +export function normalizeFrontMatter(spec: any = {}): FrontMatter { + const frontMatter: FrontMatter = {}; + if (spec == null || typeof spec !== "object") return frontMatter; + const {title, sidebar, toc, index, keywords, draft, sql, head, header, footer, pager, style, theme} = spec; + if (title !== undefined) frontMatter.title = stringOrNull(title); + if (sidebar !== undefined) frontMatter.sidebar = Boolean(sidebar); + if (toc !== undefined) frontMatter.toc = normalizeToc(toc); + if (index !== undefined) frontMatter.index = Boolean(index); + if (keywords !== undefined) frontMatter.keywords = normalizeKeywords(keywords); + if (draft !== undefined) frontMatter.draft = Boolean(draft); + if (sql !== undefined) frontMatter.sql = normalizeSql(sql); + if (head !== undefined) frontMatter.head = stringOrNull(head); + if (header !== undefined) frontMatter.header = stringOrNull(header); + if (footer !== undefined) frontMatter.footer = stringOrNull(footer); + if (pager !== undefined) frontMatter.pager = stringOrNull(pager); + if (style !== undefined) frontMatter.style = stringOrNull(style); + if (theme !== undefined) frontMatter.theme = normalizeTheme(theme); + return frontMatter; +} + +function normalizeToc(spec: unknown): {show?: boolean; label?: string} { + if (spec == null) return {show: false}; + if (typeof spec !== "object") return {show: Boolean(spec)}; + const {show, label} = spec as {show: unknown; label: unknown}; + const toc: FrontMatter["toc"] = {}; + if (show !== undefined) toc.show = Boolean(show); + if (label !== undefined) toc.label = String(label); + return toc; +} + +function normalizeKeywords(spec: unknown): string[] { + return spec == null ? [] : typeof spec === "string" ? [spec] : Array.from(spec as any, String); +} + +function normalizeSql(spec: unknown): {[key: string]: string} { + if (spec == null || typeof spec !== "object") return {}; + const sql: {[key: string]: string} = {}; + for (const key in spec) sql[key] = String(spec[key]); + return sql; +} diff --git a/src/hash.ts b/src/hash.ts deleted file mode 100644 index 6118f504b..000000000 --- a/src/hash.ts +++ /dev/null @@ -1,5 +0,0 @@ -import {createHash} from "node:crypto"; - -export function computeHash(source: string): string { - return createHash("sha256").update(source).digest("hex"); -} diff --git a/src/html.ts b/src/html.ts index 2f8ce5801..98c044717 100644 --- a/src/html.ts +++ b/src/html.ts @@ -1,5 +1,291 @@ /* eslint-disable import/no-named-as-default-member */ import he from "he"; +import hljs from "highlight.js"; +import type {DOMWindow} from "jsdom"; +import {JSDOM, VirtualConsole} from "jsdom"; +import {isAssetPath, parseRelativeUrl, relativePath, resolveLocalPath, resolvePath} from "./path.js"; + +const ASSET_ATTRIBUTES: readonly [selector: string, src: string][] = [ + ["a[href][download]", "href"], + ["audio source[src]", "src"], + ["audio[src]", "src"], + ["img[src]", "src"], + ["img[srcset]", "srcset"], + ["link[href]", "href"], + ["picture source[srcset]", "srcset"], + ["video source[src]", "src"], + ["video[src]", "src"] +]; + +const PATH_ATTRIBUTES: readonly [selector: string, src: string][] = [ + ["a[href]", "href"], + ["audio source[src]", "src"], + ["audio[src]", "src"], + ["img[src]", "src"], + ["img[srcset]", "srcset"], + ["link[href]", "href"], + ["picture source[srcset]", "srcset"], + ["video source[src]", "src"], + ["video[src]", "src"] +]; + +export function isJavaScript({type}: HTMLScriptElement): boolean { + if (!type) return true; + type = type.toLowerCase(); + return type === "text/javascript" || type === "application/javascript" || type === "module"; +} + +export function parseHtml(html: string): DOMWindow { + return new JSDOM(`${html}`, {virtualConsole: new VirtualConsole()}).window; +} + +interface Assets { + files: Set; + anchors: Set; + localLinks: Set; + localImports: Set; + globalImports: Set; + staticImports: Set; +} + +export function findAssets(html: string, path: string): Assets { + const {document} = parseHtml(html); + const files = new Set(); + const anchors = new Set(); + const localLinks = new Set(); + const localImports = new Set(); + const globalImports = new Set(); + const staticImports = new Set(); + + const maybeFile = (specifier: string): void => { + if (isAssetPath(specifier)) { + const localPath = resolveLocalPath(path, specifier); + if (!localPath) return console.warn(`non-local asset path: ${specifier}`); + files.add(relativePath(path, localPath)); + } else { + globalImports.add(specifier); + } + }; + + for (const [selector, src] of ASSET_ATTRIBUTES) { + for (const element of document.querySelectorAll(selector)) { + if (isExternal(element)) continue; + const source = decodeURI(element.getAttribute(src)!); + if (src === "srcset") { + for (const s of parseSrcset(source)) { + maybeFile(s); + } + } else { + maybeFile(source); + } + } + } + + for (const script of document.querySelectorAll("script[src]")) { + if (isExternal(script)) continue; + let src = script.getAttribute("src")!; + if (isJavaScript(script)) { + if (isAssetPath(src)) { + const localPath = resolveLocalPath(path, src); + if (!localPath) { + console.warn(`non-local asset path: ${src}`); + continue; + } + localImports.add((src = relativePath(path, localPath))); + } else { + globalImports.add(src); + } + if (script.getAttribute("type")?.toLowerCase() === "module" && !script.hasAttribute("async")) { + staticImports.add(src); // modulepreload + } + } else { + maybeFile(src); + } + } + + for (const element of document.querySelectorAll("[id],[name]")) { + if (isExternal(element)) continue; + anchors.add(element.getAttribute("id") ?? element.getAttribute("name")!); + } + + for (const a of document.querySelectorAll("a[href]")) { + if (isExternal(a) || a.hasAttribute("download")) continue; + const href = a.getAttribute("href")!; + if (/^\w+:/.test(href)) continue; // URL + const {pathname, search, hash} = parseRelativeUrl(href); + localLinks.add(resolvePath(path, pathname).replace(/\.html$/i, "").replace(/\/$/, "/index") + search + hash); // prettier-ignore + } + + return {files, localImports, globalImports, staticImports, localLinks, anchors}; +} + +export function rewriteHtmlPaths(html: string, path: string): string { + const {document} = parseHtml(html); + + const resolvePath = (specifier: string): string => { + return isAssetPath(specifier) ? relativePath(path, specifier) : specifier; + }; + + for (const [selector, src] of PATH_ATTRIBUTES) { + for (const element of document.querySelectorAll(selector)) { + if (isExternal(element)) continue; + const source = decodeURI(element.getAttribute(src)!); + element.setAttribute(src, src === "srcset" ? resolveSrcset(source, resolvePath) : encodeURI(resolvePath(source))); + } + } + + return document.body.innerHTML; +} + +export interface HtmlResolvers { + resolveFile: (specifier: string) => string; + resolveImport: (specifier: string) => string; + resolveScript: (specifier: string) => string; + resolveLink: (href: string) => string; +} + +export function rewriteHtml( + html: string, + {resolveFile = String, resolveImport = String, resolveScript = String, resolveLink = String}: Partial +): string { + const {document} = parseHtml(html); + + const resolvePath = (specifier: string): string => { + return isAssetPath(specifier) ? resolveFile(specifier) : resolveImport(specifier); + }; + + for (const [selector, src] of ASSET_ATTRIBUTES) { + for (const element of document.querySelectorAll(selector)) { + if (isExternal(element)) continue; + const source = decodeURI(element.getAttribute(src)!); + element.setAttribute(src, src === "srcset" ? resolveSrcset(source, resolvePath) : encodeURI(resolvePath(source))); + } + } + + for (const script of document.querySelectorAll("script[src]")) { + if (isExternal(script)) continue; + const src = decodeURI(script.getAttribute("src")!); + script.setAttribute("src", encodeURI((isJavaScript(script) ? resolveScript : resolveFile)(src))); + } + + for (const a of document.querySelectorAll("a[href]")) { + if (isExternal(a)) continue; + const href = decodeURI(a.getAttribute("href")!); + a.setAttribute("href", encodeURI(resolveLink(href))); + if (!/^(\w+:)/.test(href)) continue; + if (!a.hasAttribute("target")) a.setAttribute("target", "_blank"); + if (!a.hasAttribute("rel")) a.setAttribute("rel", "noopener noreferrer"); + } + + // Syntax highlighting for elements. The code could contain an inline + // expression within, or other HTML, but we only highlight text nodes that are + // direct children of code elements. + for (const code of document.querySelectorAll("code[class*='language-']")) { + const language = [...code.classList].find((c) => c.startsWith("language-"))?.slice("language-".length); + if (!language) continue; + if (code.parentElement?.tagName === "PRE") code.parentElement.setAttribute("data-language", language); + if (!hljs.getLanguage(language)) continue; + let html = ""; + code.normalize(); // coalesce adjacent text nodes + for (const child of code.childNodes) { + html += isText(child) + ? hljs.highlight(child.textContent!, {language}).value + : isElement(child) + ? child.outerHTML + : isComment(child) + ? `` + : ""; + } + code.innerHTML = html; + } + + // Wrap

    etc. elements in tags for linking. + for (const h of document.querySelectorAll("h1[id], h2[id], h3[id], h4[id]")) { + const a = document.createElement("a"); + a.className = "observablehq-header-anchor"; + a.href = `#${h.id}`; + a.append(...h.childNodes); + h.append(a); + } + + // For incremental update during preview, we need to know the direct children + // of the body statically; therefore we must wrap any top-level cells with a + // span to avoid polluting the direct children with dynamic content. + for (let child = document.body.firstChild; child; child = child.nextSibling) { + if (isRoot(child)) { + const parent = document.createElement("span"); + const loading = findLoading(child); + child.replaceWith(parent); + if (loading) parent.appendChild(loading); + parent.appendChild(child); + child = parent; + } + } + + // In some contexts, such as a table, the element may + // be reparented; enforce the requirement that the + // element immediately precedes its root by removing any violating elements. + // Also, only works in an HTML context and won’t work + // in SVG or MathML or other non-HTML markup. + for (const l of document.querySelectorAll("observablehq-loading")) { + if (!l.nextSibling || !isRoot(l.nextSibling) || l.namespaceURI !== "http://www.w3.org/1999/xhtml") { + l.remove(); + } + } + + return document.body.innerHTML; +} + +function parseSrcset(srcset: string): string[] { + return srcset + .trim() + .split(/\s*,\s*/) + .filter((src) => src) + .map((src) => src.split(/\s+/)[0]); +} + +function resolveSrcset(srcset: string, resolve: (specifier: string) => string): string { + return srcset + .trim() + .split(/\s*,\s*/) + .filter((src) => src) + .map((src) => { + const parts = src.split(/\s+/); + const path = resolve(parts[0]); + if (path) parts[0] = encodeURI(path); + return parts.join(" "); + }) + .join(", "); +} + +export function isText(node: Node): node is Text { + return node.nodeType === 3; +} + +export function isComment(node: Node): node is Comment { + return node.nodeType === 8; +} + +export function isElement(node: Node): node is Element { + return node.nodeType === 1; +} + +function isRoot(node: Node): node is Comment { + return isComment(node) && /^:[0-9a-f]{8}(?:-\d+)?:$/.test(node.data); +} + +function isLoading(node: Node): node is Element { + return isElement(node) && node.tagName === "OBSERVABLEHQ-LOADING"; +} + +function isExternal(a: Element): boolean { + return /(?:^|\s)external(?:\s|$)/i.test(a.getAttribute("rel") ?? ""); // e.g., +} + +function findLoading(node: Node): Element | null { + const sibling = node.previousSibling; + return sibling && isLoading(sibling) ? sibling : null; +} /** * Denotes a string that contains HTML source; when interpolated into an html diff --git a/src/javascript.ts b/src/javascript.ts deleted file mode 100644 index 3e4192f70..000000000 --- a/src/javascript.ts +++ /dev/null @@ -1,169 +0,0 @@ -import {Parser, tokTypes} from "acorn"; -import type {Expression, Identifier, Node, Options, Program} from "acorn"; -import {fileReference} from "./files.js"; -import {findAssignments} from "./javascript/assignments.js"; -import {findAwaits} from "./javascript/awaits.js"; -import {findDeclarations} from "./javascript/declarations.js"; -import {findFeatures} from "./javascript/features.js"; -import {findExports, findImportDeclarations, findImports} from "./javascript/imports.js"; -import {createImportResolver, rewriteImports} from "./javascript/imports.js"; -import {findReferences} from "./javascript/references.js"; -import {syntaxError} from "./javascript/syntaxError.js"; -import {Sourcemap} from "./sourcemap.js"; -import {red} from "./tty.js"; - -export interface FileReference { - /** The relative path from the page to the original file (e.g., "./test.txt"). */ - name: string; - /** The MIME type, if known; derived from the file extension. */ - mimeType: string | null; - /** The relative path from the page to the file in _file (e.g., "../_file/sub/test.txt"). */ - path: string; -} - -export interface ImportReference { - name: string; - type: "global" | "local"; -} - -export interface Feature { - type: "FileAttachment"; - name: string; -} - -export interface BaseTranspile { - id: string; - expression: boolean; - inputs?: string[]; - outputs?: string[]; - inline?: boolean; - files?: FileReference[]; - imports?: ImportReference[]; -} - -export interface PendingTranspile extends BaseTranspile { - body: () => Promise; -} - -export interface Transpile extends BaseTranspile { - body: string; -} - -export interface ParseOptions { - id: string; - root: string; - sourcePath: string; - inline?: boolean; - sourceLine?: number; - globals?: Set; - verbose?: boolean; -} - -export function transpileJavaScript(input: string, options: ParseOptions): PendingTranspile { - const {id, root, sourcePath, verbose = true} = options; - try { - const node = parseJavaScript(input, options); - const files = node.features - .filter((f) => f.type === "FileAttachment") - .map(({name}) => fileReference(name, sourcePath)); - const inputs = Array.from(new Set(node.references.map((r) => r.name))); - const implicitDisplay = node.expression && !inputs.includes("display") && !inputs.includes("view"); - if (implicitDisplay) inputs.push("display"), (node.async = true); - if (findImportDeclarations(node).length > 0) node.async = true; - return { - id, - expression: node.expression, - ...(inputs.length ? {inputs} : null), - ...(options.inline ? {inline: true} : null), - ...(node.declarations?.length ? {outputs: node.declarations.map(({name}) => name)} : null), - ...(files.length ? {files} : null), - body: async () => { - const output = new Sourcemap(input); - output.trim(); - if (implicitDisplay) { - output.insertLeft(0, "display(await(\n"); - output.insertRight(input.length, "\n))"); - } - await rewriteImports(output, node, sourcePath, createImportResolver(root, "_import")); - const result = `${node.async ? "async " : ""}(${inputs}) => { -${String(output)}${node.declarations?.length ? `\nreturn {${node.declarations.map(({name}) => name)}};` : ""} -}`; - return result; - }, - ...(node.imports.length ? {imports: node.imports} : null) - }; - } catch (error) { - if (!(error instanceof SyntaxError)) throw error; - const message = error.message; - // TODO: Consider showing a code snippet along with the error. Also, consider - // whether we want to show the file name here. - if (verbose) { - let warning = error.message; - const match = /^(.+)\s\((\d+):(\d+)\)$/.exec(message); - if (match) { - const line = +match[2] + (options?.sourceLine ?? 0); - const column = +match[3] + 1; - warning = `${match[1]} at line ${line}, column ${column}`; - } else if (options?.sourceLine) { - warning = `${message} at line ${options.sourceLine + 1}`; - } - console.error(red(`${error.name}: ${warning}`)); - } - return { - id, - expression: true, - body: async () => `() => { throw new SyntaxError(${JSON.stringify(message)}); }` - }; - } -} - -export const parseOptions: Options = {ecmaVersion: 13, sourceType: "module"}; - -export interface JavaScriptNode { - body: Node; - declarations: Identifier[] | null; // null for expressions that can’t declare top-level variables, a.k.a outputs - references: Identifier[]; // the unbound references, a.k.a. inputs - features: Feature[]; - imports: ImportReference[]; - expression: boolean; // is this an expression or a program cell? - async: boolean; // does this use top-level await? -} - -function parseJavaScript(input: string, options: ParseOptions): JavaScriptNode { - const {inline = false, root, sourcePath} = options; - // First attempt to parse as an expression; if this fails, parse as a program. - let expression = maybeParseExpression(input, parseOptions); - if (expression?.type === "ClassExpression" && expression.id) expression = null; // treat named class as program - if (expression?.type === "FunctionExpression" && expression.id) expression = null; // treat named function as program - if (!expression && inline) throw new SyntaxError("invalid expression"); - const body = expression ?? Parser.parse(input, parseOptions); - const exports = findExports(body); - if (exports.length) throw syntaxError("Unexpected token 'export'", exports[0], input); // disallow exports - const references = findReferences(body); - findAssignments(body, references, input); - const declarations = expression ? null : findDeclarations(body as Program, input); - const {imports, features: importedFeatures} = findImports(body, root, sourcePath); - const features = findFeatures(body, sourcePath, references, input); - return { - body, - declarations, - references, - features: [...features, ...importedFeatures], - imports, - expression: !!expression, - async: findAwaits(body).length > 0 - }; -} - -// Parses a single expression; like parseExpressionAt, but returns null if -// additional input follows the expression. -function maybeParseExpression(input: string, options: Options): Expression | null { - const parser = new (Parser as any)(options, input, 0); // private constructor - parser.nextToken(); - try { - const node = parser.parseExpression(); - return parser.type === tokTypes.eof ? node : null; - } catch { - return null; - } -} diff --git a/src/javascript/annotate.ts b/src/javascript/annotate.ts new file mode 100644 index 000000000..2d2fb031e --- /dev/null +++ b/src/javascript/annotate.ts @@ -0,0 +1,9 @@ +import {isPathImport} from "../path.js"; + +const annotate = process.env["OBSERVABLE_ANNOTATE_FILES"]; +if (annotate && annotate !== "true") throw new Error(`unsupported OBSERVABLE_ANNOTATE_FILES: ${annotate}`); + +/** Annotate a path to a local import or file so it can be reworked server-side. */ +export const annotatePath = annotate + ? (uri: string) => `${JSON.stringify(uri)}${isPathImport(uri) ? "/* observablehq-file */" : ""}` + : JSON.stringify; diff --git a/src/javascript/assignments.ts b/src/javascript/assignments.ts index c867c3b43..6cee3895d 100644 --- a/src/javascript/assignments.ts +++ b/src/javascript/assignments.ts @@ -3,8 +3,11 @@ import {simple} from "acorn-walk"; import {defaultGlobals} from "./globals.js"; import {syntaxError} from "./syntaxError.js"; -export function findAssignments(node: Node, references: Identifier[], input: string): void { - function checkConst(node: Expression | Pattern | VariableDeclaration) { +type Assignable = Expression | Pattern | VariableDeclaration; + +/** Throws a SyntaxError for any illegal assignments. */ +export function checkAssignments(node: Node, references: Identifier[], input: string): void { + function checkConst(node: Assignable) { switch (node.type) { case "Identifier": if (references.includes(node)) throw syntaxError(`Assignment to external variable '${node.name}'`, node, input); @@ -21,22 +24,17 @@ export function findAssignments(node: Node, references: Identifier[], input: str break; } } - + function checkConstLeft({left}: {left: Assignable}) { + checkConst(left); + } + function checkConstArgument({argument}: {argument: Assignable}) { + checkConst(argument); + } simple(node, { - AssignmentExpression(node) { - checkConst(node.left); - }, - AssignmentPattern(node) { - checkConst(node.left); - }, - UpdateExpression(node) { - checkConst(node.argument); - }, - ForOfStatement(node) { - checkConst(node.left); - }, - ForInStatement(node) { - checkConst(node.left); - } + AssignmentExpression: checkConstLeft, + AssignmentPattern: checkConstLeft, + UpdateExpression: checkConstArgument, + ForOfStatement: checkConstLeft, + ForInStatement: checkConstLeft }); } diff --git a/src/javascript/awaits.ts b/src/javascript/awaits.ts index a7731ba59..1ebcbaf0a 100644 --- a/src/javascript/awaits.ts +++ b/src/javascript/awaits.ts @@ -1,4 +1,4 @@ -import {type Node} from "acorn"; +import type {Node} from "acorn"; import {recursive} from "acorn-walk"; export function findAwaits(node: Node): Node[] { diff --git a/src/javascript/features.ts b/src/javascript/features.ts deleted file mode 100644 index 5e969567c..000000000 --- a/src/javascript/features.ts +++ /dev/null @@ -1,118 +0,0 @@ -import type {CallExpression, Identifier, Literal, Node, TemplateLiteral} from "acorn"; -import {simple} from "acorn-walk"; -import {getLocalPath} from "../files.js"; -import type {Feature} from "../javascript.js"; -import {defaultGlobals} from "./globals.js"; -import {findReferences} from "./references.js"; -import {syntaxError} from "./syntaxError.js"; - -export function findFeatures(node: Node, path: string, references: Identifier[], input: string): Feature[] { - const featureMap = getFeatureReferenceMap(node); - const features: Feature[] = []; - - simple(node, { - CallExpression(node) { - const {callee} = node; - if (callee.type !== "Identifier") return; - let type = featureMap.get(callee); - // If this feature wasn’t explicitly imported into this cell, then ignore - // function calls that are not references to the feature. For example, if - // there’s a local variable called FileAttachment, that will mask the - // built-in FileAttachment and won’t be considered a feature. - if (!type) { - if (!references.includes(callee)) return; - const name = callee.name; - if (name !== "FileAttachment") return; - type = name; - } - features.push(getFeature(type, node, path, input)); - } - }); - - return features; -} - -/** - * Returns a map from Identifier to the feature type, such as FileAttachment. - * Note that this may be different than the identifier.name because of aliasing. - */ -export function getFeatureReferenceMap(node: Node): Map { - const declarations = new Set<{name: string}>(); - const alias = new Map(); - let globals: Set | undefined; - - // Find the declared local names of the imported symbol. Only named imports - // are supported. TODO Support namespace imports? - simple(node, { - ImportDeclaration(node) { - if (node.source.value === "npm:@observablehq/stdlib") { - for (const specifier of node.specifiers) { - if ( - specifier.type === "ImportSpecifier" && - specifier.imported.type === "Identifier" && - specifier.imported.name === "FileAttachment" - ) { - declarations.add(specifier.local); - alias.set(specifier.local.name, specifier.imported.name); - } - } - } - } - }); - - // If the import is masking a global, don’t treat it as a global (since we’ll - // ignore the import declaration below). - for (const name of alias.keys()) { - if (defaultGlobals.has(name)) { - if (globals === undefined) globals = new Set(defaultGlobals); - globals.delete(name); - } - } - - function filterDeclaration(node: {name: string}): boolean { - return !declarations.has(node); // treat the imported declaration as unbound - } - - const references = findReferences(node, {globals, filterDeclaration}); - const map = new Map(); - for (const r of references) { - const type = alias.get(r.name); - if (type) map.set(r, type); - } - return map; -} - -export function getFeature(type: Feature["type"], node: CallExpression, path: string, input: string): Feature { - const { - arguments: args, - arguments: [arg] - } = node; - - // Forbid dynamic calls. - if (args.length !== 1 || !isStringLiteral(arg)) { - throw syntaxError(`${type} requires a single literal string argument`, node, input); - } - - // Forbid file attachments that are not local paths; normalize the path. - let name: string | null = getStringLiteralValue(arg); - if (type === "FileAttachment") { - const localPath = getLocalPath(path, name); - if (!localPath) throw syntaxError(`non-local file path: ${name}`, node, input); - name = localPath; - } - - return {type, name}; -} - -export function isStringLiteral(node: any): node is Literal | TemplateLiteral { - return ( - node && - ((node.type === "Literal" && /^['"]/.test(node.raw)) || - (node.type === "TemplateLiteral" && node.expressions.length === 0)) - ); -} - -// Note: only valid if isStringLiteral returned true; -export function getStringLiteralValue(node: any): string { - return node.type === "Literal" ? (node.value as string) : node.quasis[0].value.cooked!; -} diff --git a/src/javascript/files.ts b/src/javascript/files.ts new file mode 100644 index 000000000..ec4c5bca5 --- /dev/null +++ b/src/javascript/files.ts @@ -0,0 +1,124 @@ +import {extname} from "node:path/posix"; +import type {CallExpression, MemberExpression, Node} from "acorn"; +import {ancestor, simple} from "acorn-walk"; +import {relativePath, resolveLocalPath} from "../path.js"; +import {defaultGlobals} from "./globals.js"; +import {findReferences} from "./references.js"; +import {getStringLiteralValue, isStringLiteral} from "./source.js"; +import {syntaxError} from "./syntaxError.js"; + +export type FileExpression = { + /** The FileAttachment(name) call expression. */ + node: CallExpression; + /** The relative path to the source file from the referencing source. */ + name: string; + /** The method, if known; e.g., "arrow" for FileAttachment("foo").arrow. */ + method?: string; +}; + +const KNOWN_FILE_EXTENSIONS = { + ".arrow": "arrow", + ".csv": "csv", + ".db": "sqlite", + ".html": "html", + ".json": "json", + ".parquet": "parquet", + ".sqlite": "sqlite", + ".tsv": "tsv", + ".txt": "text", + ".xlsx": "xlsx", + ".xml": "xml", + ".zip": "zip" +}; + +/** + * Returns all calls to FileAttachment in the specified body. Throws a + * SyntaxError if any of the calls are invalid (e.g., when FileAttachment is + * passed a dynamic argument, or references a file that is outside the root). + */ +export function findFiles( + body: Node, + path: string, + input: string, + aliases?: Iterable // ["FileAttachment"] for implicit import +): FileExpression[] { + const declarations = new Set<{name: string}>(); + const alias = new Set(aliases); + let globals: Set | undefined; + + // Find the declared local names of FileAttachment. Currently only named + // imports are supported, and stdlib must be imported without a version. TODO + // Support namespace imports? Error if stdlib is expressed with a version? + simple(body, { + ImportDeclaration(node) { + if (node.source.value === "observablehq:stdlib" || node.source.value === "npm:@observablehq/stdlib") { + for (const specifier of node.specifiers) { + if ( + specifier.type === "ImportSpecifier" && + specifier.imported.type === "Identifier" && + specifier.imported.name === "FileAttachment" + ) { + declarations.add(specifier.local); + alias.add(specifier.local.name); + } + } + } + } + }); + + // If the import is masking a global, don’t treat it as a global (since we’ll + // ignore the import declaration below). + for (const name of alias.keys()) { + if (defaultGlobals.has(name)) { + (globals ??= new Set(defaultGlobals)).delete(name); + } + } + + // Collect all references to FileAttachment. + const references = new Set( + findReferences(body, { + globals, + filterDeclaration: (identifier) => !declarations.has(identifier) // treat the imported declaration as unbound + }) + ); + + const files: FileExpression[] = []; + + // Find all calls to FileAttachment. If the call is part of a member + // expression such as FileAttachment("foo.txt").csv, use this to determine the + // file method ("csv"); otherwise fallback to the to file extension to + // determine the method. Also enforce that FileAttachment is passed a single + // static string literal. + // + // Note that while dynamic imports require that paths start with ./, ../, or + // /, the same requirement is not true for file attachments. Unlike imports, + // you can’t reference a global file as a file attachment. + ancestor(body, { + CallExpression(node, state, stack) { + const {callee} = node; + if (callee.type !== "Identifier" || !alias.has(callee.name) || !references.has(callee)) return; + const args = node.arguments; + if (args.length !== 1) throw syntaxError("FileAttachment requires a single literal string argument", node, input); + const [arg] = args; + if (!isStringLiteral(arg)) throw syntaxError("FileAttachment requires a single literal string argument", node, input); // prettier-ignore + const fileName = getStringLiteralValue(arg); + const filePath = resolveLocalPath(path, fileName); + if (!filePath) throw syntaxError(`non-local file path: ${fileName}`, node, input); + const parent = stack[stack.length - 2]; + const name = relativePath(path, filePath); + const method = + parent && isMemberExpression(parent) && parent.property.type === "Identifier" + ? parent.property.name === "arquero" && /\.parquet$/i.test(fileName) + ? "arquero-parquet" // FileAttachment("foo.parquet").arquero + : parent.property.name // FileAttachment("foo.csv").csv + : KNOWN_FILE_EXTENSIONS[extname(fileName).toLowerCase()]; // bare FileAttachment("foo.csv") + files.push({node, name, method}); + } + }); + + return files; +} + +function isMemberExpression(node: Node): node is MemberExpression { + return node.type === "MemberExpression"; +} diff --git a/src/javascript/globals.ts b/src/javascript/globals.ts index 32fb8d650..cd3326943 100644 --- a/src/javascript/globals.ts +++ b/src/javascript/globals.ts @@ -47,6 +47,7 @@ export const defaultGlobals = new Set([ "Number", "navigator", "Object", + "observable", // for observable.params.foo "parseFloat", "parseInt", "performance", diff --git a/src/javascript/imports.ts b/src/javascript/imports.ts index 2075004fa..90314c9e4 100644 --- a/src/javascript/imports.ts +++ b/src/javascript/imports.ts @@ -1,39 +1,30 @@ -import {createHash} from "node:crypto"; -import {readFileSync} from "node:fs"; -import {join} from "node:path"; -import {Parser} from "acorn"; -import type {Identifier, Node, Program} from "acorn"; +import {readFile} from "node:fs/promises"; +import {join} from "node:path/posix"; +import type {Node} from "acorn"; +import type {CallExpression} from "acorn"; import type {ExportAllDeclaration, ExportNamedDeclaration, ImportDeclaration, ImportExpression} from "acorn"; import {simple} from "acorn-walk"; -import {isEnoent} from "../error.js"; -import {type Feature, type ImportReference, type JavaScriptNode} from "../javascript.js"; -import {parseOptions} from "../javascript.js"; -import {Sourcemap} from "../sourcemap.js"; -import {relativeUrl, resolvePath} from "../url.js"; -import {getFeature, getFeatureReferenceMap, getStringLiteralValue, isStringLiteral} from "./features.js"; +import {isPathImport, relativePath, resolveLocalPath} from "../path.js"; +import {parseProgram} from "./parse.js"; +import {getStringLiteralValue, isStringLiteral} from "./source.js"; +import {syntaxError} from "./syntaxError.js"; -type ImportNode = ImportDeclaration | ImportExpression; -type ExportNode = ExportAllDeclaration | ExportNamedDeclaration; - -let npmVersionResolutionEnabled = true; -let remoteModulePreloadEnabled = true; - -export function enableNpmVersionResolution(enabled = true) { - npmVersionResolutionEnabled = enabled; +export interface ImportReference { + /** The relative path to the import from the referencing source. */ + name: string; + /** Is this a reference to a local module, or a non-local (e.g., npm) one? */ + type: "local" | "global"; + /** Is this a static import, a dynamic import, or import.meta.resolve? */ + method: "static" | "dynamic" | "resolve"; } -export function enableRemoteModulePreload(enabled = true) { - remoteModulePreloadEnabled = enabled; -} - -export interface ImportsAndFeatures { - imports: ImportReference[]; - features: Feature[]; -} +export type ImportNode = ImportDeclaration | ImportExpression; +export type ExportNode = ExportAllDeclaration | ExportNamedDeclaration; /** * Finds all export declarations in the specified node. (This is used to - * disallow exports within JavaScript code blocks.) + * disallow exports within JavaScript code blocks.) Note that this includes both + * "export const foo" declarations and "export {foo} from bar" declarations. */ export function findExports(body: Node): ExportNode[] { const exports: ExportNode[] = []; @@ -50,464 +41,105 @@ export function findExports(body: Node): ExportNode[] { return exports; } -/** - * Finds all imports (both static and dynamic) in the specified node. - * Recursively processes any imported local ES modules. The returned transitive - * import paths are relative to the given source path. - */ -export function findImports(body: Node, root: string, path: string): ImportsAndFeatures { - const imports: ImportReference[] = []; - const features: Feature[] = []; - const paths: string[] = []; +/** Returns true if the body includes an import declaration. */ +export function hasImportDeclaration(body: Node): boolean { + let has = false; simple(body, { - ImportDeclaration: findImport, - ImportExpression: findImport - }); - - function findImport(node: ImportNode) { - if (isStringLiteral(node.source)) { - const value = getStringLiteralValue(node.source); - if (isLocalImport(value, path)) { - paths.push(resolvePath(path, decodeURIComponent(value))); - } else { - imports.push({name: value, type: "global"}); - } - } - } - - // Recursively process any imported local ES modules. - const transitive = parseLocalImports(root, paths); - imports.push(...transitive.imports); - features.push(...transitive.features); - - // Make all local paths relative to the source path. - for (const i of imports) { - if (i.type === "local") { - i.name = relativeUrl(path, i.name); + ImportDeclaration() { + has = true; } - } + }); - return {imports, features}; + return has; } /** - * Parses the module at the specified path to find transitive imports, - * processing imported modules recursively. Accumulates visited paths, and - * appends to imports. The paths here are always relative to the root (unlike - * findImports above!). + * Finds all imports (both static and dynamic, local and global) with + * statically-analyzable sources in the specified node. Note: this includes only + * direct imports, not transitive imports. Note: this also includes exports, but + * exports are only allowed in JavaScript modules (not in Markdown). */ -export function parseLocalImports(root: string, paths: string[]): ImportsAndFeatures { +export function findImports(body: Node, path: string, input: string): ImportReference[] { const imports: ImportReference[] = []; - const features: Feature[] = []; - const set = new Set(paths); - - for (const path of set) { - imports.push({type: "local", name: path}); - try { - const input = readFileSync(join(root, path), "utf-8"); - const body = Parser.parse(input, parseOptions); - - simple( - body, - { - ImportDeclaration: findImport, - ImportExpression: findImport, - ExportAllDeclaration: findImport, - ExportNamedDeclaration: findImport - }, - undefined, - path - ); - - features.push(...findImportFeatures(body, path, input)); - } catch (error) { - if (!isEnoent(error) && !(error instanceof SyntaxError)) throw error; - } - } - - function findImport(node: ImportNode | ExportNode, path: string) { - if (isStringLiteral(node.source)) { - const value = getStringLiteralValue(node.source); - if (isLocalImport(value, path)) { - set.add(resolvePath(path, value)); - } else { - imports.push({name: value, type: "global"}); - // non-local imports don't need to be traversed - } - } - } - - return {imports, features}; -} - -export function findImportFeatures(node: Node, path: string, input: string): Feature[] { - const featureMap = getFeatureReferenceMap(node); - const features: Feature[] = []; - - simple(node, { - CallExpression(node) { - const type = featureMap.get(node.callee as Identifier); - if (type) features.push(getFeature(type, node, path, input)); - } - }); - - return features; -} - -/** Rewrites import specifiers and FileAttachment calls in the specified ES module source. */ -export async function rewriteModule(input: string, path: string, resolver: ImportResolver): Promise { - const body = Parser.parse(input, parseOptions); - const featureMap = getFeatureReferenceMap(body); - const output = new Sourcemap(input); - const imports: (ImportNode | ExportNode)[] = []; + const keys = new Set(); simple(body, { - ImportDeclaration: rewriteImport, - ImportExpression: rewriteImport, - ExportAllDeclaration: rewriteImport, - ExportNamedDeclaration: rewriteImport, - CallExpression(node) { - const type = featureMap.get(node.callee as Identifier); - if (type) { - const feature = getFeature(type, node, path, input); // validate syntax - if (feature.type === "FileAttachment") { - const arg = node.arguments[0]; - const result = JSON.stringify(relativeUrl(join("_import", path), feature.name)); - output.replaceLeft(arg.start, arg.end, `${result}, import.meta.url`); - } - } - } + ImportDeclaration: findImport, + ImportExpression: findImport, + ExportAllDeclaration: findImport, + ExportNamedDeclaration: findImport, + CallExpression: findImportMetaResolve }); - function rewriteImport(node: ImportNode | ExportNode) { - imports.push(node); + function addImport(ref: ImportReference) { + const key = `${ref.type}:${ref.method}:${ref.name}`; + if (!keys.has(key)) keys.add(key), imports.push(ref); } - for (const node of imports) { - if (isStringLiteral(node.source)) { - output.replaceLeft( - node.source.start, - node.source.end, - JSON.stringify(await resolver(path, getStringLiteralValue(node.source))) - ); + function findImport(node: ImportNode | ExportNode) { + const source = node.source; + if (!source || !isStringLiteral(source)) return; + const name = decodeURI(getStringLiteralValue(source)); + const method = node.type === "ImportExpression" ? "dynamic" : "static"; + if (isPathImport(name)) { + const localPath = resolveLocalPath(path, name); + if (!localPath) throw syntaxError(`non-local import: ${name}`, node, input); // prettier-ignore + addImport({name: relativePath(path, localPath), type: "local", method}); + } else { + addImport({name, type: "global", method}); } } - return String(output); -} - -export function findImportDeclarations(cell: JavaScriptNode): ImportDeclaration[] { - const declarations: ImportDeclaration[] = []; - - simple(cell.body, { - ImportDeclaration(node) { - if (isStringLiteral(node.source)) { - declarations.push(node); - } + function findImportMetaResolve(node: CallExpression) { + const source = node.arguments[0]; + if (!isImportMetaResolve(node) || !isStringLiteral(source)) return; + const name = decodeURI(getStringLiteralValue(source)); + if (isPathImport(name)) { + const localPath = resolveLocalPath(path, name); + if (!localPath) throw syntaxError(`non-local import: ${name}`, node, input); // prettier-ignore + addImport({name: relativePath(path, localPath), type: "local", method: "resolve"}); + } else { + addImport({name, type: "global", method: "resolve"}); } - }); - - return declarations; -} - -/** - * Rewrites import specifiers in the specified JavaScript fenced code block or - * inline expression. TODO parallelize multiple static imports. - */ -export async function rewriteImports( - output: Sourcemap, - cell: JavaScriptNode, - sourcePath: string, - resolver: ImportResolver -): Promise { - const expressions: ImportExpression[] = []; - const declarations: ImportDeclaration[] = []; - - simple(cell.body, { - ImportExpression(node) { - if (isStringLiteral(node.source)) { - expressions.push(node); - } - }, - ImportDeclaration(node) { - if (isStringLiteral(node.source)) { - declarations.push(node); - } - } - }); - - for (const node of expressions) { - output.replaceLeft( - node.source.start, - node.source.end, - JSON.stringify(await resolver(sourcePath, getStringLiteralValue(node.source))) - ); - } - - const specifiers: string[] = []; - const imports: string[] = []; - for (const node of declarations) { - output.delete(node.start, node.end + +(output.input[node.end] === "\n")); - specifiers.push( - node.specifiers.some(isNotNamespaceSpecifier) - ? `{${node.specifiers.filter(isNotNamespaceSpecifier).map(rewriteImportSpecifier).join(", ")}}` - : node.specifiers.find(isNamespaceSpecifier)?.local.name ?? "{}" - ); - imports.push(`import(${JSON.stringify(await resolver(sourcePath, getStringLiteralValue(node.source)))})`); } - if (declarations.length > 1) { - output.insertLeft(0, `const [${specifiers.join(", ")}] = await Promise.all([${imports.join(", ")}]);\n`); - } else if (declarations.length === 1) { - output.insertLeft(0, `const ${specifiers[0]} = await ${imports[0]};\n`); - } -} - -export type ImportResolver = (path: string, specifier: string) => Promise; - -export function createImportResolver(root: string, base: "." | "_import" = "."): ImportResolver { - return async (path, specifier) => { - return isLocalImport(specifier, path) - ? relativeUrl(path, resolvePath(base, path, resolveImportHash(root, path, specifier))) - : specifier === "npm:@observablehq/runtime" - ? resolveBuiltin(base, path, "runtime.js") - : specifier === "npm:@observablehq/stdlib" - ? resolveBuiltin(base, path, "stdlib.js") - : specifier === "npm:@observablehq/dot" - ? resolveBuiltin(base, path, "stdlib/dot.js") // TODO publish to npm - : specifier === "npm:@observablehq/duckdb" - ? resolveBuiltin(base, path, "stdlib/duckdb.js") // TODO publish to npm - : specifier === "npm:@observablehq/inputs" - ? resolveBuiltin(base, path, "stdlib/inputs.js") // TODO publish to npm - : specifier === "npm:@observablehq/mermaid" - ? resolveBuiltin(base, path, "stdlib/mermaid.js") // TODO publish to npm - : specifier === "npm:@observablehq/tex" - ? resolveBuiltin(base, path, "stdlib/tex.js") // TODO publish to npm - : specifier === "npm:@observablehq/sqlite" - ? resolveBuiltin(base, path, "stdlib/sqlite.js") // TODO publish to npm - : specifier === "npm:@observablehq/xlsx" - ? resolveBuiltin(base, path, "stdlib/xlsx.js") // TODO publish to npm - : specifier === "npm:@observablehq/zip" - ? resolveBuiltin(base, path, "stdlib/zip.js") // TODO publish to npm - : specifier.startsWith("npm:") - ? await resolveNpmImport(specifier.slice("npm:".length)) - : specifier; - }; -} - -function parseNpmSpecifier(specifier: string): {name: string; range?: string; path?: string} { - const parts = specifier.split("/"); - const namerange = specifier.startsWith("@") ? [parts.shift()!, parts.shift()!].join("/") : parts.shift()!; - const ranged = namerange.indexOf("@", 1); - return { - name: ranged > 0 ? namerange.slice(0, ranged) : namerange, - range: ranged > 0 ? namerange.slice(ranged + 1) : undefined, - path: parts.length > 0 ? parts.join("/") : undefined - }; -} - -function formatNpmSpecifier({name, range, path}: {name: string; range?: string; path?: string}): string { - return `${name}${range ? `@${range}` : ""}${path ? `/${path}` : ""}`; -} - -// Like import, don’t fetch the same package more than once to ensure -// consistency; restart the server if you want to clear the cache. -const fetchCache = new Map>(); - -async function cachedFetch(href: string): Promise<{headers: Headers; body: any}> { - if (!remoteModulePreloadEnabled) throw new Error("remote module preload is not enabled"); - let promise = fetchCache.get(href); - if (promise) return promise; - promise = (async () => { - const response = await fetch(href); - if (!response.ok) throw new Error(`unable to fetch: ${href}`); - const json = /^application\/json(;|$)/.test(response.headers.get("content-type")!); - const body = await (json ? response.json() : response.text()); - return {headers: response.headers, body}; - })(); - promise.catch(() => fetchCache.delete(href)); // try again on error - fetchCache.set(href, promise); - return promise; + return imports; } -async function resolveNpmVersion({name, range}: {name: string; range?: string}): Promise { - if (!npmVersionResolutionEnabled) throw new Error("npm version resolution is not enabled"); - if (range && /^\d+\.\d+\.\d+([-+].*)?$/.test(range)) return range; // exact version specified - const specifier = formatNpmSpecifier({name, range}); - const search = range ? `?specifier=${range}` : ""; - const {version} = (await cachedFetch(`https://data.jsdelivr.com/v1/packages/npm/${name}/resolved${search}`)).body; - if (!version) throw new Error(`unable to resolve version: ${specifier}`); - return version; +export function isImportMetaResolve(node: CallExpression): boolean { + return ( + node.callee.type === "MemberExpression" && + node.callee.object.type === "MetaProperty" && + node.callee.object.meta.name === "import" && + node.callee.object.property.name === "meta" && + node.callee.property.type === "Identifier" && + node.callee.property.name === "resolve" && + node.arguments.length > 0 + ); } -export async function resolveNpmImport(specifier: string): Promise { - let {name, range, path = "+esm"} = parseNpmSpecifier(specifier); // eslint-disable-line prefer-const - if (name === "@duckdb/duckdb-wasm" && !range) range = "1.28.0"; // https://github.com/duckdb/duckdb-wasm/issues/1561 - if (name === "parquet-wasm" && !range) range = "0.5.0"; // https://github.com/observablehq/framework/issues/733 - try { - return `https://cdn.jsdelivr.net/npm/${name}@${await resolveNpmVersion({name, range})}/${path}`; - } catch { - return `https://cdn.jsdelivr.net/npm/${name}${range ? `@${range}` : ""}/${path}`; - } +export function isJavaScript(path: string): boolean { + return /\.(m|c)?js(\?|$)/i.test(path); } -const preloadCache = new Map | undefined>>(); +const parseImportsCache = new Map>(); -/** - * Fetches the module at the specified URL and returns a promise to any - * transitive modules it imports (on the same host; only path-based imports are - * considered), as well as its subresource integrity hash. Only static imports - * are considered, and the fetched module must be have immutable public caching; - * dynamic imports may not be used and hence are not preloaded. - */ -async function fetchModulePreloads(href: string): Promise | undefined> { - let promise = preloadCache.get(href); +export async function parseImports(root: string, path: string): Promise { + if (!isJavaScript(path)) return []; // TODO traverse CSS, too + const filePath = join(root, path); + let promise = parseImportsCache.get(filePath); if (promise) return promise; - promise = (async () => { - let response: {headers: any; body: any}; + promise = (async function () { try { - response = await cachedFetch(href); - } catch { - return; + const source = await readFile(filePath, "utf-8"); + const body = parseProgram(source); + return findImports(body, path, source); + } catch (error: any) { + console.warn(`unable to fetch or parse ${path}: ${error.message}`); + return []; } - const {headers, body} = response; - const cache = headers.get("cache-control")?.split(/\s*,\s*/); - if (!cache?.some((c) => c === "immutable") || !cache?.some((c) => c === "public")) return; - const imports = new Set(); - let program: Program; - try { - program = Parser.parse(body, parseOptions); - } catch (error) { - if (!isEnoent(error) && !(error instanceof SyntaxError)) throw error; - return; - } - simple(program, { - ImportDeclaration: findImport, - ExportAllDeclaration: findImport, - ExportNamedDeclaration: findImport - }); - function findImport(node: ImportNode | ExportNode) { - if (isStringLiteral(node.source)) { - const value = getStringLiteralValue(node.source); - if (isPathImport(value)) imports.add(String(new URL(value, href))); - } - } - // TODO integrityCache.set(href, `sha384-${createHash("sha384").update(body).digest("base64")}`); - return imports; })(); - promise.catch(() => preloadCache.delete(href)); // try again on error - preloadCache.set(href, promise); + parseImportsCache.set(filePath, promise); return promise; } - -const integrityCache = new Map(); - -/** - * Given a set of resolved module specifiers (URLs) to preload, fetches any - * externally-hosted modules to compute the transitively-imported modules; also - * precomputes the subresource integrity hash for each fetched module. - */ -export async function resolveModulePreloads(hrefs: Set): Promise { - if (!remoteModulePreloadEnabled) return; - let resolve: () => void; - const visited = new Set(); - const queue = new Set>(); - - for (const href of hrefs) { - if (href.startsWith("https:")) { - enqueue(href); - } - } - - function enqueue(href: string) { - if (visited.has(href)) return; - visited.add(href); - const promise = (async () => { - const imports = await fetchModulePreloads(href); - if (!imports) return; - for (const i of imports) { - hrefs.add(i); - enqueue(i); - } - })(); - promise.finally(() => { - queue.delete(promise); - queue.size || resolve(); - }); - queue.add(promise); - } - - if (queue.size) return new Promise((y) => (resolve = y)); -} - -/** - * Given a specifier (URL) that was previously resolved by - * resolveModulePreloads, returns the computed subresource integrity hash. - */ -export function resolveModuleIntegrity(href: string): string | undefined { - return integrityCache.get(href); -} - -function resolveBuiltin(base: "." | "_import", path: string, specifier: string): string { - return relativeUrl(join(base === "." ? "_import" : ".", path), join("_observablehq", specifier)); -} - -/** - * Given the specified local import, applies the ?sha query string based on the - * content hash of the imported module and its transitively imported modules. - */ -function resolveImportHash(root: string, path: string, specifier: string): string { - return `${specifier}?sha=${getModuleHash(root, resolvePath(path, specifier))}`; -} - -/** - * Resolves the content hash for the module at the specified path within the - * given source root. This involves parsing the specified module to process - * transitive imports. - */ -function getModuleHash(root: string, path: string): string { - const hash = createHash("sha256"); - try { - hash.update(readFileSync(join(root, path), "utf-8")); - } catch (error) { - if (!isEnoent(error)) throw error; - } - // TODO can’t simply concatenate here; we need a delimiter - const {imports, features} = parseLocalImports(root, [path]); - for (const i of [...imports, ...features]) { - if (i.type === "local" || i.type === "FileAttachment") { - try { - hash.update(readFileSync(join(root, i.name), "utf-8")); - } catch (error) { - if (!isEnoent(error)) throw error; - continue; - } - } - } - return hash.digest("hex"); -} - -function rewriteImportSpecifier(node) { - return node.type === "ImportDefaultSpecifier" - ? `default: ${node.local.name}` - : node.imported.name === node.local.name - ? node.local.name - : `${node.imported.name}: ${node.local.name}`; -} - -export function isPathImport(specifier: string): boolean { - return ["./", "../", "/"].some((prefix) => specifier.startsWith(prefix)); -} - -export function isLocalImport(specifier: string, path: string): boolean { - return isPathImport(specifier) && !resolvePath(path, specifier).startsWith("../"); -} - -function isNamespaceSpecifier(node) { - return node.type === "ImportNamespaceSpecifier"; -} - -function isNotNamespaceSpecifier(node) { - return node.type !== "ImportNamespaceSpecifier"; -} diff --git a/src/javascript/module.ts b/src/javascript/module.ts new file mode 100644 index 000000000..46daa8f47 --- /dev/null +++ b/src/javascript/module.ts @@ -0,0 +1,294 @@ +import type {Hash} from "node:crypto"; +import {createHash} from "node:crypto"; +import {accessSync, constants, readFileSync, statSync} from "node:fs"; +import {readFile} from "node:fs/promises"; +import {extname, join} from "node:path/posix"; +import type {Program} from "acorn"; +import type {TransformOptions} from "esbuild"; +import {transform, transformSync} from "esbuild"; +import {resolveJsrImport} from "../jsr.js"; +import {resolveNodeImport} from "../node.js"; +import {resolveNpmImport} from "../npm.js"; +import {resolvePath} from "../path.js"; +import {builtins, resolveBuiltin} from "../resolvers.js"; +import type {RouteResult} from "../route.js"; +import {route} from "../route.js"; +import {findFiles} from "./files.js"; +import {findImports, parseImports} from "./imports.js"; +import {parseProgram} from "./parse.js"; + +export type FileInfo = { + /** The last-modified time of the file; used to invalidate the cache. */ + mtimeMs: number; + /** The size of the file in bytes. */ + size: number; + /** The SHA-256 content hash of the file contents. */ + hash: string; +}; + +export type ModuleInfo = { + /** The last-modified time of the module; used to invalidate the cache. */ + mtimeMs: number; + /** The SHA-256 content hash of the module contents. */ + hash: string; + /** The module’s local static imports (paths relative to the module). */ + localStaticImports: Set; + /** The module’s local dynamic imports (paths relative to the module). */ + localDynamicImports: Set; + /** The module’s global static imports (typically npm: protocol imports). */ + globalStaticImports: Set; + /** The module’s global dynamic imports (typically npm: protocol imports). */ + globalDynamicImports: Set; + /** The module’s attached file paths (relative to the module). */ + files: Set; + /** The module’s attached file methods. */ + fileMethods: Set; +}; + +const fileInfoCache = new Map(); +const moduleInfoCache = new Map(); + +/** + * Resolves the (transitive) content hash for the module at the specified path + * within the given source root. This involves parsing modules to process + * transitive imports (both static and dynamic). If the module does not exist or + * has invalid syntax, returns the hash of empty content; likewise ignores any + * transitive imports or files that are invalid or do not exist. + */ +export function getModuleHash(root: string, path: string, getHash?: (p: string) => string): string { + return getModuleHashInternal(root, path, getHash).digest("hex"); +} + +function getModuleHashInternal(root: string, path: string, getHash = (p: string) => getFileHash(root, p)): Hash { + const hash = createHash("sha256"); + const paths = new Set([path]); + for (const path of paths) { + if (path.endsWith(".js")) { + const info = getModuleInfo(root, path); + if (!info) continue; // ignore missing file + hash.update(info.hash); + for (const i of info.localStaticImports) { + paths.add(resolvePath(path, i)); + } + for (const i of info.localDynamicImports) { + paths.add(resolvePath(path, i)); + } + for (const i of info.files) { + hash.update(getHash(resolvePath(path, i))); + } + } else { + hash.update(getHash(path)); // e.g., import.meta.resolve("foo.json") + } + } + return hash; +} + +/** + * Like getModuleHash, but further takes into consideration the resolved exact + * versions of any npm imports (and their transitive imports). This is needed + * during build because we want the hash of the built module to change if the + * version of an imported npm package changes. + */ +export async function getLocalModuleHash(root: string, path: string, getHash?: (p: string) => string): Promise { + const hash = getModuleHashInternal(root, path, getHash); + const info = getModuleInfo(root, path); + if (info) { + const globalPaths = new Set(); + for (const i of [...info.globalStaticImports, ...info.globalDynamicImports]) { + if (builtins.has(i) || i.startsWith("observablehq:")) { + hash.update(`${resolveBuiltin(i)}?version=${process.env.npm_package_version}`); // change hash when Framework changes + } else if (i.startsWith("npm:")) { + globalPaths.add(await resolveNpmImport(root, i.slice("npm:".length))); + } else if (i.startsWith("jsr:")) { + globalPaths.add(await resolveJsrImport(root, i.slice("jsr:".length))); + } else if (!/^\w+:/.test(i)) { + globalPaths.add(await resolveNodeImport(root, i)); + } + } + for (const p of globalPaths) { + hash.update(p); + for (const i of await parseImports(join(root, ".observablehq", "cache"), p)) { + if (i.type === "local") { + globalPaths.add(resolvePath(p, i.name)); + } + } + } + } + return hash.digest("hex"); +} + +/** + * Returns the information for the module at the specified path within the + * source root, or undefined if the module does not exist or has invalid syntax. + */ +export function getModuleInfo(root: string, path: string): ModuleInfo | undefined { + const module = findModule(root, path); + if (!module) return; // TODO delete stale entry? + const key = join(root, module.path); + let mtimeMs: number; + try { + mtimeMs = Math.floor(statSync(key).mtimeMs); + } catch { + moduleInfoCache.delete(key); // delete stale entry + return; // ignore missing file + } + let info = moduleInfoCache.get(key); + if (!info || info.mtimeMs < mtimeMs) { + let source: string; + let body: Program; + try { + source = readJavaScriptSync(key); + body = parseProgram(source, module.params); + } catch { + moduleInfoCache.delete(key); // delete stale entry + return; // ignore parse error + } + const hash = createHash("sha256").update(source).digest("hex"); + const imports = findImports(body, path, source); + const files = findFiles(body, path, source); + const localStaticImports = new Set(); + const localDynamicImports = new Set(); + const globalStaticImports = new Set(); + const globalDynamicImports = new Set(); + for (const i of imports) { + (i.type === "local" + ? i.method === "static" + ? localStaticImports + : localDynamicImports + : i.method === "static" + ? globalStaticImports + : globalDynamicImports + ).add(i.name); + } + moduleInfoCache.set( + key, + (info = { + mtimeMs, + hash, + files: new Set(files.map((f) => f.name)), + fileMethods: new Set(files.map((f) => f.method).filter((m): m is string => m !== undefined)), + localStaticImports, + localDynamicImports, + globalStaticImports, + globalDynamicImports + }) + ); + } + return info; +} + +/** + * Returns the content hash for the specified file within the source root. If + * the specified file does not exist, returns the hash of empty content. If the + * referenced file does not exist, we check for the corresponding data loader + * and return its hash instead. + */ +export function getFileHash(root: string, path: string): string { + return getFileInfo(root, path)?.hash ?? createHash("sha256").digest("hex"); +} + +/** + * Returns the information for the file at the specified path within the source + * root, or undefined if the file does not exist. + */ +export function getFileInfo(root: string, path: string): FileInfo | undefined { + const key = join(root, path); + let mtimeMs: number; + let size: number; + try { + const stat = statSync(key); + if (!stat.isFile()) return; // ignore non-files + accessSync(key, constants.R_OK); // verify that file is readable + mtimeMs = Math.floor(stat.mtimeMs); + size = stat.size; + } catch { + fileInfoCache.delete(key); // delete stale entry + return; // ignore missing, non-readable file + } + let entry = fileInfoCache.get(key); + if (!entry || entry.mtimeMs < mtimeMs) { + const contents = readFileSync(key); + const hash = createHash("sha256").update(contents).digest("hex"); + fileInfoCache.set(key, (entry = {mtimeMs, size, hash})); + } + return entry; +} + +// For testing only! +export function clearFileInfo(root: string, path: string): boolean { + return fileInfoCache.delete(join(root, path)); +} + +export function findModule(root: string, path: string): RouteResult | undefined { + const ext = extname(path); + if (!ext) throw new Error(`empty extension: ${path}`); + const exts = [ext]; + if (ext === ".js") exts.push(".ts", ".jsx", ".tsx"); + return route(root, path.slice(0, -ext.length), exts); +} + +export async function readJavaScript(sourcePath: string): Promise { + const source = await readFile(sourcePath, "utf-8"); + switch (extname(sourcePath)) { + case ".ts": + return transformJavaScript(source, "ts", sourcePath); + case ".jsx": + return transformJavaScript(source, "jsx", sourcePath); + case ".tsx": + return transformJavaScript(source, "tsx", sourcePath); + } + return source; +} + +export function readJavaScriptSync(sourcePath: string): string { + const source = readFileSync(sourcePath, "utf-8"); + switch (extname(sourcePath)) { + case ".ts": + return transformJavaScriptSync(source, "ts", sourcePath); + case ".jsx": + return transformJavaScriptSync(source, "jsx", sourcePath); + case ".tsx": + return transformJavaScriptSync(source, "tsx", sourcePath); + } + return source; +} + +export async function transformJavaScript( + source: string, + loader: "ts" | "jsx" | "tsx", + sourcePath?: string +): Promise { + return (await transform(source, getTransformOptions(loader, sourcePath))).code; +} + +export function transformJavaScriptSync(source: string, loader: "ts" | "jsx" | "tsx", sourcePath?: string): string { + return transformSync(source, getTransformOptions(loader, sourcePath)).code; +} + +function getTransformOptions(loader: "ts" | "jsx" | "tsx", sourcePath?: string): TransformOptions { + switch (loader) { + case "ts": + return { + loader, + sourcefile: sourcePath, + tsconfigRaw: '{"compilerOptions": {"verbatimModuleSyntax": true}}' + }; + case "jsx": + return { + loader, + jsx: "automatic", + jsxImportSource: "npm:react", + sourcefile: sourcePath + }; + case "tsx": + return { + loader, + jsx: "automatic", + jsxImportSource: "npm:react", + sourcefile: sourcePath, + tsconfigRaw: '{"compilerOptions": {"verbatimModuleSyntax": true}}' + }; + default: + throw new Error(`unknown loader: ${loader}`); + } +} diff --git a/src/javascript/params.ts b/src/javascript/params.ts new file mode 100644 index 000000000..ca543f924 --- /dev/null +++ b/src/javascript/params.ts @@ -0,0 +1,52 @@ +import type {Identifier, Literal, MemberExpression, Node} from "acorn"; +import {simple} from "acorn-walk"; +import type {Params} from "../route.js"; +import {findReferences} from "./references.js"; +import {syntaxError} from "./syntaxError.js"; + +export type ParamReference = MemberExpression & {property: Identifier | (Literal & {value: string}); value: string}; + +function getParamName(param: ParamReference): string { + return param.property.type === "Identifier" ? param.property.name : param.property.value; +} + +// Note: mutates node by materializing the values of the param references it contains +export function checkParams(node: Node, input: string, params: Params): void { + for (const [name, param] of findParams(node, params, input)) { + param.value = params[name]; + } +} + +export function findParams(body: Node, params: Params, input: string): [name: string, node: ParamReference][] { + const matches: [string, ParamReference][] = []; + const references = findReferences(body, {filterReference: ({name}) => name === "observable"}); + + simple(body, { + MemberExpression(node) { + if (isParamReference(node)) { + const name = getParamName(node); + if (!(name in params)) throw syntaxError(`undefined parameter: ${name}`, node, input); + matches.push([name, node]); + } + } + }); + + function isParamReference(node: MemberExpression): node is ParamReference { + if ( + node.object.type !== "MemberExpression" || + node.object.object.type !== "Identifier" || + node.object.object.name !== "observable" || + node.object.property.type !== "Identifier" || + node.object.property.name !== "params" || + !references.includes(node.object.object) + ) { + return false; + } + if (node.property.type !== "Identifier" && node.property.type !== "Literal") { + throw syntaxError("invalid param reference", node, input); + } + return true; + } + + return matches; +} diff --git a/src/javascript/parse.ts b/src/javascript/parse.ts new file mode 100644 index 000000000..aef288568 --- /dev/null +++ b/src/javascript/parse.ts @@ -0,0 +1,87 @@ +import {Parser, tokTypes} from "acorn"; +import type {Expression, Identifier, Options, Program} from "acorn"; +import type {Params} from "../route.js"; +import {checkAssignments} from "./assignments.js"; +import {findAwaits} from "./awaits.js"; +import {findDeclarations} from "./declarations.js"; +import type {FileExpression} from "./files.js"; +import {findFiles} from "./files.js"; +import type {ImportReference} from "./imports.js"; +import {findExports, findImports} from "./imports.js"; +import {checkParams} from "./params.js"; +import {findReferences} from "./references.js"; +import {syntaxError} from "./syntaxError.js"; + +export interface ParseOptions { + /** The path to the source within the source root. */ + path: string; + /** If true, require the input to be an expresssion. */ + inline?: boolean; + /** Any dynamic route parameters for observable.params. */ + params?: Params; +} + +export const acornOptions: Options = { + ecmaVersion: 13, + sourceType: "module" +}; + +export interface JavaScriptNode { + body: Program | Expression; + declarations: Identifier[] | null; // null for expressions that can’t declare top-level variables, a.k.a outputs + references: Identifier[]; // the unbound references, a.k.a. inputs + files: FileExpression[]; + imports: ImportReference[]; + expression: boolean; // is this an expression or a program cell? + async: boolean; // does this use top-level await? + input: string; +} + +/** + * Parses the specified JavaScript code block, or if the inline option is true, + * the specified inline JavaScript expression. + */ +export function parseJavaScript(input: string, options: ParseOptions): JavaScriptNode { + const {inline = false, path, params} = options; + let expression = maybeParseExpression(input); // first attempt to parse as expression + if (expression?.type === "ClassExpression" && expression.id) expression = null; // treat named class as program + if (expression?.type === "FunctionExpression" && expression.id) expression = null; // treat named function as program + if (!expression && inline) throw new SyntaxError("invalid expression"); // inline code must be an expression + const body = expression ?? parseProgram(input); // otherwise parse as a program + const exports = findExports(body); + if (exports.length) throw syntaxError("Unexpected token 'export'", exports[0], input); // disallow exports + const references = findReferences(body); + if (params) checkParams(body, input, params); + checkAssignments(body, references, input); + return { + body, + declarations: expression ? null : findDeclarations(body as Program, input), + references, + files: findFiles(body, path, input, ["FileAttachment"]), + imports: findImports(body, path, input), + expression: !!expression, + async: findAwaits(body).length > 0, + input + }; +} + +export function parseProgram(input: string, params?: Params): Program { + const body = Parser.parse(input, acornOptions); + if (params) checkParams(body, input, params); + return body; +} + +/** + * Parses a single expression; like parseExpressionAt, but returns null if + * additional input follows the expression. + */ +export function maybeParseExpression(input: string): Expression | null { + const parser = new (Parser as any)(acornOptions, input, 0); // private constructor + parser.nextToken(); + try { + const node = parser.parseExpression(); + return parser.type === tokTypes.eof ? node : null; + } catch { + return null; + } +} diff --git a/src/javascript/references.ts b/src/javascript/references.ts index d5d85da9c..56fd19426 100644 --- a/src/javascript/references.ts +++ b/src/javascript/references.ts @@ -48,9 +48,11 @@ export function findReferences( node: Node, { globals = defaultGlobals, + filterReference = (identifier: Identifier) => !globals.has(identifier.name), filterDeclaration = () => true }: { globals?: Set; + filterReference?: (identifier: Identifier) => any; filterDeclaration?: (identifier: {name: string}) => any; } = {} ): Identifier[] { @@ -149,7 +151,7 @@ export function findReferences( return; } } - if (!globals.has(name)) { + if (filterReference(node)) { references.push(node); } } diff --git a/src/javascript/source.ts b/src/javascript/source.ts new file mode 100644 index 000000000..e905231a3 --- /dev/null +++ b/src/javascript/source.ts @@ -0,0 +1,52 @@ +import type {BinaryExpression, Literal, MemberExpression, Node, TemplateLiteral} from "acorn"; + +export type StringLiteral = (Literal & {value: string}) | TemplateLiteral | BinaryExpression; + +export function isLiteral(node: Node): node is Literal { + return node.type === "Literal"; +} + +export function isTemplateLiteral(node: Node): node is TemplateLiteral { + return node.type === "TemplateLiteral"; +} + +export function isStringLiteral(node: Node): node is StringLiteral { + return isLiteral(node) + ? /^['"]/.test(node.raw!) + : isTemplateLiteral(node) + ? node.expressions.every(isStringLiteral) + : isBinaryExpression(node) + ? node.operator === "+" && isStringLiteral(node.left) && isStringLiteral(node.right) + : isMemberExpression(node) + ? "value" in node // param + : false; +} + +export function getStringLiteralValue(node: StringLiteral): string { + return node.type === "TemplateLiteral" + ? getTemplateLiteralValue(node) + : node.type === "BinaryExpression" + ? getBinaryExpressionValue(node) + : node.value; // Literal or ParamReference +} + +function getTemplateLiteralValue(node: TemplateLiteral): string { + let value = node.quasis[0].value.cooked!; + for (let i = 0; i < node.expressions.length; ++i) { + value += getStringLiteralValue(node.expressions[i] as StringLiteral); + value += node.quasis[i + 1].value.cooked!; + } + return value; +} + +function getBinaryExpressionValue(node: BinaryExpression): string { + return getStringLiteralValue(node.left as StringLiteral) + getStringLiteralValue(node.right as StringLiteral); +} + +function isMemberExpression(node: Node): node is MemberExpression { + return node.type === "MemberExpression"; +} + +function isBinaryExpression(node: Node): node is BinaryExpression { + return node.type === "BinaryExpression"; +} diff --git a/src/javascript/syntaxError.ts b/src/javascript/syntaxError.ts index 7f1244534..a36c67363 100644 --- a/src/javascript/syntaxError.ts +++ b/src/javascript/syntaxError.ts @@ -1,4 +1,5 @@ -import {type Node, getLineInfo} from "acorn"; +import type {Node} from "acorn"; +import {getLineInfo} from "acorn"; export function syntaxError(message: string, node: Node, input: string): SyntaxError { const {line, column} = getLineInfo(input, node.start); diff --git a/src/javascript/transpile.ts b/src/javascript/transpile.ts new file mode 100644 index 000000000..d68ebbb44 --- /dev/null +++ b/src/javascript/transpile.ts @@ -0,0 +1,260 @@ +import {join} from "node:path/posix"; +import type {CallExpression, Node} from "acorn"; +import type {ImportDeclaration, ImportDefaultSpecifier, ImportNamespaceSpecifier, ImportSpecifier} from "acorn"; +import {simple} from "acorn-walk"; +import mime from "mime"; +import {isPathImport, relativePath, resolvePath, resolveRelativePath} from "../path.js"; +import {getModuleResolver} from "../resolvers.js"; +import type {Params} from "../route.js"; +import {Sourcemap} from "../sourcemap.js"; +import {annotatePath} from "./annotate.js"; +import type {FileExpression} from "./files.js"; +import {findFiles} from "./files.js"; +import type {ExportNode, ImportNode} from "./imports.js"; +import {hasImportDeclaration, isImportMetaResolve, isJavaScript} from "./imports.js"; +import type {FileInfo} from "./module.js"; +import {findParams} from "./params.js"; +import type {JavaScriptNode} from "./parse.js"; +import {parseProgram} from "./parse.js"; +import type {StringLiteral} from "./source.js"; +import {getStringLiteralValue, isStringLiteral} from "./source.js"; + +export interface TranspileOptions { + id: string; + path: string; + params?: Params; + mode?: string; + resolveImport?: (specifier: string) => string; + resolveFile?: (specifier: string) => string; +} + +export function transpileJavaScript( + node: JavaScriptNode, + {id, path, params, mode, resolveImport, resolveFile}: TranspileOptions +): string { + let async = node.async; + const inputs = Array.from(new Set(node.references.map((r) => r.name))); + const outputs = Array.from(new Set(node.declarations?.map((r) => r.name))); + const display = node.expression && !inputs.includes("display") && !inputs.includes("view"); + if (display) inputs.push("display"), (async = true); + if (hasImportDeclaration(node.body)) async = true; + const output = new Sourcemap(node.input).trim(); + if (params) rewriteParams(output, node.body, params, node.input); + rewriteImportDeclarations(output, node.body, resolveImport); + rewriteImportExpressions(output, node.body, resolveImport, resolveFile); + rewriteFileExpressions(output, node.files, path); + if (display) output.insertLeft(0, "display(await(\n").insertRight(node.input.length, "\n))"); + output.insertLeft(0, `, body: ${async ? "async " : ""}(${inputs}) => {\n`); + if (outputs.length) output.insertLeft(0, `, outputs: ${JSON.stringify(outputs)}`); + if (inputs.length) output.insertLeft(0, `, inputs: ${JSON.stringify(inputs)}`); + if (mode && mode !== "block") output.insertLeft(0, `, mode: ${JSON.stringify(mode)}`); + output.insertLeft(0, `define({id: ${JSON.stringify(id)}`); + if (outputs.length) output.insertRight(node.input.length, `\nreturn {${outputs}};`); + output.insertRight(node.input.length, "\n}});\n"); + return String(output); +} + +export interface TranspileModuleOptions { + root: string; + path: string; + servePath?: string; // defaults to /_import/${path} + params?: Params; + resolveImport?: (specifier: string) => string | Promise; + resolveFile?: (name: string) => string; + resolveFileInfo?: (name: string) => FileInfo | undefined; +} + +/** Rewrites import specifiers and FileAttachment calls in the specified ES module. */ +export async function transpileModule( + input: string, + { + root, + path, + servePath = `/${join("_import", path)}`, + params, + resolveImport = getModuleResolver(root, path, servePath), + resolveFile = (name) => name, + resolveFileInfo = () => undefined + }: TranspileModuleOptions +): Promise { + const body = parseProgram(input, params); // TODO ignore syntax error? + const output = new Sourcemap(input); + const imports: (ImportNode | ExportNode)[] = []; + const calls: CallExpression[] = []; + + if (params) rewriteParams(output, body, params, input); + + simple(body, { + ImportDeclaration: rewriteImport, + ImportExpression: rewriteImport, + ExportAllDeclaration: rewriteImport, + ExportNamedDeclaration: rewriteImport, + CallExpression: rewriteCall + }); + + function rewriteImport(node: ImportNode | ExportNode) { + imports.push(node); + } + + function rewriteCall(node: CallExpression) { + calls.push(node); + } + + async function rewriteImportSource(source: StringLiteral) { + const specifier = getStringLiteralValue(source); + output.replaceLeft(source.start, source.end, annotatePath(await resolveImport(specifier))); + } + + for (const {name, node} of findFiles(body, path, input)) { + const source = node.arguments[0]; + const p = relativePath(servePath, resolvePath(path, name)); + const info = resolveFileInfo(name); + output.replaceLeft( + source.start, + source.end, + `${ + info + ? `{"name":${JSON.stringify(p)},"mimeType":${JSON.stringify( + mime.getType(name) ?? undefined + )},"path":${annotatePath(relativePath(servePath, resolveFile(name)))},"lastModified":${JSON.stringify( + info.mtimeMs + )},"size":${JSON.stringify(info.size)}}` + : JSON.stringify(p) + }, import.meta.url` + ); + } + + for (const node of imports) { + const source = node.source; + if (source && isStringLiteral(source)) { + await rewriteImportSource(source); + } + } + + for (const node of calls) { + const source = node.arguments[0]; + if (isImportMetaResolve(node) && isStringLiteral(source)) { + const value = getStringLiteralValue(source); + const resolution = isPathImport(value) && !isJavaScript(value) ? resolveFile(value) : await resolveImport(value); + output.replaceLeft(source.start, source.end, annotatePath(resolution)); + } + } + + return String(output); +} + +function rewriteFileExpressions(output: Sourcemap, files: FileExpression[], path: string): void { + for (const {name, node} of files) { + const source = node.arguments[0]; + const resolved = resolveRelativePath(path, name); + output.replaceLeft(source.start, source.end, JSON.stringify(resolved)); + } +} + +function rewriteImportExpressions( + output: Sourcemap, + body: Node, + resolveImport: (specifier: string) => string = String, + resolveFile: (specifier: string) => string = String +): void { + function rewriteImportSource(source: StringLiteral) { + output.replaceLeft(source.start, source.end, JSON.stringify(resolveImport(getStringLiteralValue(source)))); + } + simple(body, { + ImportExpression(node) { + const source = node.source; + if (isStringLiteral(source)) { + rewriteImportSource(source); + } + }, + CallExpression(node) { + const source = node.arguments[0]; + if (isImportMetaResolve(node) && isStringLiteral(source)) { + const value = getStringLiteralValue(source); + const resolution = isPathImport(value) && !isJavaScript(value) ? resolveFile(value) : resolveImport(value); + output.replaceLeft( + node.start, + node.end, + isPathImport(resolution) + ? `new URL(${JSON.stringify(resolution)}, location).href` + : JSON.stringify(resolution) + ); + } + } + }); +} + +function rewriteImportDeclarations( + output: Sourcemap, + body: Node, + resolve: (specifier: string) => string = String +): void { + const declarations: ImportDeclaration[] = []; + + simple(body, { + ImportDeclaration(node) { + if (isStringLiteral(node.source)) { + declarations.push(node); + } + } + }); + + const specifiers: string[] = []; + const imports: string[] = []; + for (const node of declarations) { + output.delete(node.start, node.end + +(output.input[node.end] === "\n")); + specifiers.push(rewriteImportSpecifiers(node)); + imports.push(`import(${annotatePath(resolve(getStringLiteralValue(node.source as StringLiteral)))})`); + } + if (declarations.length > 1) { + output.insertLeft(0, `const [${specifiers.join(", ")}] = await Promise.all([${imports.join(", ")}]);\n`); + } else if (declarations.length === 1) { + output.insertLeft(0, `const ${specifiers[0]} = await ${imports[0]};\n`); + } +} + +function rewriteImportSpecifiers(node: ImportDeclaration): string { + return node.specifiers.some(isNotNamespaceSpecifier) + ? `{${node.specifiers.filter(isNotNamespaceSpecifier).map(rewriteImportSpecifier).join(", ")}}` + : node.specifiers.find(isNamespaceSpecifier)?.local.name ?? "{}"; +} + +function rewriteImportSpecifier(node: ImportSpecifier | ImportDefaultSpecifier): string { + return isDefaultSpecifier(node) + ? `default: ${getLocalName(node)}` + : getImportedName(node) === getLocalName(node) + ? getLocalName(node) + : `${getImportedName(node)}: ${getLocalName(node)}`; +} + +function getLocalName(node: ImportSpecifier | ImportDefaultSpecifier): string { + return node.local.name; +} + +function getImportedName(node: ImportSpecifier): string { + return node.imported.type === "Identifier" ? node.imported.name : node.imported.raw!; +} + +function isDefaultSpecifier( + node: ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier +): node is ImportDefaultSpecifier { + return node.type === "ImportDefaultSpecifier"; +} + +function isNamespaceSpecifier( + node: ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier +): node is ImportNamespaceSpecifier { + return node.type === "ImportNamespaceSpecifier"; +} + +function isNotNamespaceSpecifier( + node: ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier +): node is ImportSpecifier | ImportDefaultSpecifier { + return node.type !== "ImportNamespaceSpecifier"; +} + +export function rewriteParams(output: Sourcemap, body: Node, params: Params, input: string): void { + for (const [name, node] of findParams(body, params, input)) { + output.replaceLeft(node.start, node.end, JSON.stringify(params[name])); + } +} diff --git a/src/jsr.ts b/src/jsr.ts new file mode 100644 index 000000000..e41d57297 --- /dev/null +++ b/src/jsr.ts @@ -0,0 +1,191 @@ +import {mkdir, readFile, writeFile} from "node:fs/promises"; +import {join} from "node:path/posix"; +import {Readable} from "node:stream"; +import {finished} from "node:stream/promises"; +import {globSync} from "glob"; +import {exports as resolveExports} from "resolve.exports"; +import {rsort, satisfies} from "semver"; +import {x} from "tar"; +import type {ImportReference} from "./javascript/imports.js"; +import {parseImports} from "./javascript/imports.js"; +import type {NpmSpecifier} from "./npm.js"; +import {formatNpmSpecifier, parseNpmSpecifier} from "./npm.js"; +import {initializeNpmVersionCache, resolveNpmImport, rewriteNpmImports} from "./npm.js"; +import {isPathImport} from "./path.js"; +import {faint} from "./tty.js"; + +const jsrVersionCaches = new Map>>(); +const jsrVersionRequests = new Map>(); +const jsrPackageRequests = new Map>(); +const jsrResolveRequests = new Map>(); + +function getJsrVersionCache(root: string): Promise> { + let cache = jsrVersionCaches.get(root); + if (!cache) jsrVersionCaches.set(root, (cache = initializeNpmVersionCache(root, "_jsr"))); + return cache; +} + +/** + * Resolves the desired version of the specified JSR package, respecting the + * specifier’s range if any. If any satisfying packages already exist in the JSR + * import cache, the greatest satisfying cached version is returned. Otherwise, + * the desired version is resolved via JSR’s API, and then the package and all + * its transitive dependencies are downloaded from JSR (and npm if needed). + */ +async function resolveJsrVersion(root: string, {name, range}: NpmSpecifier): Promise { + const cache = await getJsrVersionCache(root); + const versions = cache.get(name); + if (versions) for (const version of versions) if (!range || satisfies(version, range)) return version; + const href = `https://npm.jsr.io/@jsr/${name.replace(/^@/, "").replace(/\//, "__")}`; + let promise = jsrVersionRequests.get(href); + if (promise) return promise; // coalesce concurrent requests + promise = (async function () { + process.stdout.write(`jsr:${formatNpmSpecifier({name, range})} ${faint("→")} `); + const metaResponse = await fetch(href); + if (!metaResponse.ok) throw new Error(`unable to fetch: ${href}`); + const meta = await metaResponse.json(); + let info: {version: string; dist: {tarball: string}} | undefined; + if (meta["dist-tags"][range ?? "latest"]) { + info = meta["versions"][meta["dist-tags"][range ?? "latest"]]; + } else if (range) { + if (meta.versions[range]) { + info = meta.versions[range]; // exact match; ignore yanked + } else { + for (const key in meta.versions) { + if (satisfies(key, range) && !meta.versions[key].yanked) { + info = meta.versions[key]; + } + } + } + } + if (!info) throw new Error(`unable to resolve version: ${formatNpmSpecifier({name, range})}`); + const {version, dist} = info; + await fetchJsrPackage(root, name, version, dist.tarball); + cache.set(name, versions ? rsort(versions.concat(version)) : [version]); + process.stdout.write(`${version}\n`); + return version; + })(); + promise.catch(console.error).then(() => jsrVersionRequests.delete(href)); + jsrVersionRequests.set(href, promise); + return promise; +} + +/** + * Fetches a package from the JSR registry, as well as its transitive + * dependencies from JSR and npm, rewriting any dependency imports as relative + * paths within the import cache. + */ +async function fetchJsrPackage(root: string, name: string, version: string, tarball: string): Promise { + const dir = join(root, ".observablehq", "cache", "_jsr", formatNpmSpecifier({name, range: version})); + let promise = jsrPackageRequests.get(dir); + if (promise) return promise; + promise = (async () => { + const tarballResponse = await fetch(tarball); + if (!tarballResponse.ok) throw new Error(`unable to fetch: ${tarball}`); + await mkdir(dir, {recursive: true}); + await finished(Readable.fromWeb(tarballResponse.body as any).pipe(x({strip: 1, C: dir}))); + await rewriteJsrImports(root, dir); + })(); + promise.catch(console.error).then(() => jsrPackageRequests.delete(dir)); + jsrPackageRequests.set(dir, promise); + return promise; +} + +/** + * Resolves the given JSR specifier, such as `@std/bytes@^1.0.0`, returning the + * path to the module such as `/_jsr/@std/bytes@1.0.2/mod.js`. This function + * also allows JSR specifiers with a leading slash indicating an already- + * resolved path such as /@std/bytes@1.0.2/mod.js. + */ +export async function resolveJsrImport(root: string, specifier: string): Promise { + if (specifier.startsWith("/")) return `/_jsr/${specifier.slice("/".length)}`; + let promise = jsrResolveRequests.get(specifier); + if (promise) return promise; + promise = (async function () { + const spec = parseNpmSpecifier(specifier); + const {name} = spec; + const version = await resolveJsrVersion(root, spec); + const dir = join(root, ".observablehq", "cache", "_jsr", formatNpmSpecifier({name, range: version})); + const info = JSON.parse(await readFile(join(dir, "package.json"), "utf8")); + const [path] = resolveExports(info, spec.path === undefined ? "." : `./${spec.path}`, {browser: true})!; + return join("/", "_jsr", `${name}@${version}`, path); + })(); + // TODO delete request promise? + jsrResolveRequests.set(specifier, promise); + return promise; +} + +/** + * After downloading a package from JSR, this rewrites any transitive JSR and + * Node imports to use relative paths within the import cache. For example, if + * jsr:@std/streams depends on jsr:@std/bytes, this will replace an import of + * @jsr/std__bytes with a relative path to /_jsr/@std/bytes@1.0.2/mod.js. + */ +async function rewriteJsrImports(root: string, dir: string): Promise { + const info = JSON.parse(await readFile(join(dir, "package.json"), "utf8")); + for (const path of globSync("**/*.js", {cwd: dir, nodir: true})) { + const input = await readFile(join(dir, path), "utf8"); + const promises = new Map>(); + try { + rewriteNpmImports(input, (i) => { + if (i.startsWith("@jsr/")) { + const {name, path} = parseNpmSpecifier(i); + const range = resolveDependencyVersion(info, name); + const specifier = formatNpmSpecifier({name: `@${name.slice("@jsr/".length).replace(/__/, "/")}`, range, path}); // prettier-ignore + if (!promises.has(i)) promises.set(i, resolveJsrImport(root, specifier)); + } else if (!isPathImport(i) && !/^[\w-]+:/.test(i)) { + const {name, path} = parseNpmSpecifier(i); + const range = resolveDependencyVersion(info, i); + const specifier = formatNpmSpecifier({name, range, path}); + if (!promises.has(i)) promises.set(i, resolveNpmImport(root, specifier)); + } + }); + } catch { + continue; // ignore syntax errors + } + const resolutions = new Map(); + for (const [key, promise] of promises) resolutions.set(key, await promise); + const output = rewriteNpmImports(input, (i) => resolutions.get(i)); + await writeFile(join(dir, path), output, "utf8"); + } +} + +type PackageDependencies = Record; + +interface PackageInfo { + dependencies?: PackageDependencies; + devDependencies?: PackageDependencies; + peerDependencies?: PackageDependencies; + optionalDependencies?: PackageDependencies; + bundleDependencies?: PackageDependencies; + bundledDependencies?: PackageDependencies; +} + +// https://docs.npmjs.com/cli/v10/configuring-npm/package-json +function resolveDependencyVersion(info: PackageInfo, name: string): string | undefined { + return ( + info.dependencies?.[name] ?? + info.devDependencies?.[name] ?? + info.peerDependencies?.[name] ?? + info.optionalDependencies?.[name] ?? + info.bundleDependencies?.[name] ?? + info.bundledDependencies?.[name] + ); +} + +export async function resolveJsrImports(root: string, path: string): Promise { + if (!path.startsWith("/_jsr/")) throw new Error(`invalid jsr path: ${path}`); + return parseImports(join(root, ".observablehq", "cache"), path); +} + +/** + * The conversion of JSR specifier (e.g., @std/random) to JSR path (e.g., + * @std/random@0.1.0/between.js) is not invertible, so we can’t reconstruct the + * JSR specifier from the path; hence this method instead returns a specifier + * with a leading slash such as /@std/random@0.1.0/between.js that can be used + * to avoid re-resolving JSR specifiers. + */ +export function extractJsrSpecifier(path: string): string { + if (!path.startsWith("/_jsr/")) throw new Error(`invalid jsr path: ${path}`); + return path.slice("/_jsr".length); +} diff --git a/src/libraries.ts b/src/libraries.ts index 54da0f3c7..37ef60881 100644 --- a/src/libraries.ts +++ b/src/libraries.ts @@ -1,38 +1,189 @@ -import {resolveNpmImport} from "./javascript/imports.js"; +import type {DuckDBConfig} from "./config.js"; +import {resolveDuckDBExtension} from "./duckdb.js"; -export function getImplicitSpecifiers(inputs: Set): Set { - return addImplicitSpecifiers(new Set(), inputs); +export function getImplicitFileImports(methods: Iterable): Set { + const set = setof(methods); + const implicits = new Set(); + if (set.has("arrow")) implicits.add("npm:apache-arrow"); + if (set.has("arquero")) implicits.add("npm:apache-arrow").add("npm:arquero"); + if (set.has("arquero-parquet")) implicits.add("npm:apache-arrow").add("npm:arquero").add("npm:parquet-wasm"); + if (set.has("csv") || set.has("tsv")) implicits.add("npm:d3-dsv"); + if (set.has("parquet")) implicits.add("npm:apache-arrow").add("npm:parquet-wasm"); + if (set.has("sqlite")) implicits.add("npm:@observablehq/sqlite"); + if (set.has("xlsx")) implicits.add("observablehq:stdlib/xlsx"); + if (set.has("zip")) implicits.add("observablehq:stdlib/zip"); + return implicits; } -export function addImplicitSpecifiers(specifiers: Set, inputs: Set): typeof specifiers { - if (inputs.has("d3")) specifiers.add("npm:d3"); - if (inputs.has("Plot")) specifiers.add("npm:d3").add("npm:@observablehq/plot"); - if (inputs.has("htl") || inputs.has("html") || inputs.has("svg")) specifiers.add("npm:htl"); - if (inputs.has("Inputs")) specifiers.add("npm:htl").add("npm:isoformat").add("npm:@observablehq/inputs"); - if (inputs.has("dot")) specifiers.add("npm:@observablehq/dot").add("npm:@viz-js/viz"); - if (inputs.has("duckdb")) specifiers.add("npm:@duckdb/duckdb-wasm"); - if (inputs.has("DuckDBClient")) specifiers.add("npm:@observablehq/duckdb").add("npm:@duckdb/duckdb-wasm"); - if (inputs.has("_")) specifiers.add("npm:lodash"); - if (inputs.has("aq")) specifiers.add("npm:arquero"); - if (inputs.has("Arrow")) specifiers.add("npm:apache-arrow"); - if (inputs.has("L")) specifiers.add("npm:leaflet"); - if (inputs.has("mapboxgl")) specifiers.add("npm:mapbox-gl"); - if (inputs.has("mermaid")) specifiers.add("npm:@observablehq/mermaid").add("npm:mermaid").add("npm:d3"); - if (inputs.has("SQLite") || inputs.has("SQLiteDatabaseClient")) specifiers.add("npm:@observablehq/sqlite"); - if (inputs.has("tex")) specifiers.add("npm:@observablehq/tex").add("npm:katex"); - if (inputs.has("topojson")) specifiers.add("npm:topojson-client"); - if (inputs.has("vl")) specifiers.add("npm:vega").add("npm:vega-lite").add("npm:vega-lite-api"); - return specifiers; +export function getImplicitInputImports(inputs: Iterable): Set { + const set = setof(inputs); + const implicits = new Set(); + if (set.has("_")) implicits.add("npm:lodash"); + if (set.has("aq")) implicits.add("npm:arquero"); + if (set.has("Arrow")) implicits.add("npm:apache-arrow"); + if (set.has("d3")) implicits.add("npm:d3"); + if (set.has("dot")) implicits.add("npm:@observablehq/dot"); + if (set.has("duckdb")) implicits.add("npm:@duckdb/duckdb-wasm"); + if (set.has("DuckDBClient") || set.has("sql")) implicits.add("npm:@observablehq/duckdb"); + if (set.has("echarts")) implicits.add("npm:echarts"); + if (set.has("htl") || set.has("html") || set.has("svg")) implicits.add("npm:htl"); + if (set.has("Inputs")) implicits.add("npm:@observablehq/inputs"); + if (set.has("L")) implicits.add("npm:leaflet"); + if (set.has("mapboxgl")) implicits.add("npm:mapbox-gl"); + if (set.has("mermaid")) implicits.add("npm:@observablehq/mermaid"); + if (set.has("Plot")) implicits.add("npm:@observablehq/plot"); + if (set.has("SQLite") || set.has("SQLiteDatabaseClient")) implicits.add("npm:@observablehq/sqlite"); + if (set.has("tex")) implicits.add("npm:@observablehq/tex"); + if (set.has("topojson")) implicits.add("npm:topojson-client"); + if (set.has("vl")) implicits.add("observablehq:stdlib/vega-lite"); + if (set.has("vg")) implicits.add("observablehq:stdlib/vgplot"); + if (set.has("aapl")) implicits.add("npm:@observablehq/sample-datasets/aapl.csv"); + if (set.has("alphabet")) implicits.add("npm:@observablehq/sample-datasets/alphabet.csv"); + if (set.has("cars")) implicits.add("npm:@observablehq/sample-datasets/cars.csv"); + if (set.has("citywages")) implicits.add("npm:@observablehq/sample-datasets/citywages.csv"); + if (set.has("diamonds")) implicits.add("npm:@observablehq/sample-datasets/diamonds.csv"); + if (set.has("flare")) implicits.add("npm:@observablehq/sample-datasets/flare.csv"); + if (set.has("industries")) implicits.add("npm:@observablehq/sample-datasets/industries.csv"); + if (set.has("miserables")) implicits.add("npm:@observablehq/sample-datasets/miserables.json"); + if (set.has("olympians")) implicits.add("npm:@observablehq/sample-datasets/olympians.csv"); + if (set.has("penguins")) implicits.add("npm:@observablehq/sample-datasets/penguins.csv"); + if (set.has("pizza")) implicits.add("npm:@observablehq/sample-datasets/pizza.csv"); + if (set.has("weather")) implicits.add("npm:@observablehq/sample-datasets/weather.csv"); + return implicits; } -export async function getImplicitStylesheets(specifiers: Set): Promise> { - return addImplicitStylesheets(new Set(), specifiers); +/** + * These implicit stylesheets are added to the page on render so that the user + * doesn’t have to remember to add them. TODO Support versioned imports, too, + * such as "npm:leaflet@1". + */ +export function getImplicitStylesheets(imports: Iterable): Set { + const set = setof(imports); + const implicits = new Set(); + if (set.has("npm:@observablehq/inputs")) implicits.add("observablehq:stdlib/inputs.css"); + if (set.has("npm:katex")) implicits.add("npm:katex/dist/katex.min.css"); + if (set.has("npm:leaflet")) implicits.add("npm:leaflet/dist/leaflet.css"); + if (set.has("npm:mapbox-gl")) implicits.add("npm:mapbox-gl/dist/mapbox-gl.css"); + return implicits; } -export async function addImplicitStylesheets(stylesheets: Set, specifiers: Set): Promise> { - if (specifiers.has("npm:@observablehq/inputs")) stylesheets.add("observablehq:stdlib/inputs.css"); - if (specifiers.has("npm:katex")) stylesheets.add(await resolveNpmImport("katex/dist/katex.min.css")); - if (specifiers.has("npm:leaflet")) stylesheets.add(await resolveNpmImport("leaflet/dist/leaflet.css")); - if (specifiers.has("npm:mapbox-gl")) stylesheets.add(await resolveNpmImport("mapbox-gl/dist/mapbox-gl.css")); - return stylesheets; +/** + * While transitive imports of JavaScript modules are discovered via parsing, + * transitive dependencies on other supporting assets such as WebAssembly files + * are often not discoverable statically. Hence, for any recommended library + * (that is, any library provided by default in Markdown, including with any + * library used by FileAttachment) we manually enumerate the needed additional + * downloads here. TODO Support versioned imports, too, such as "npm:leaflet@1". + */ +export function getImplicitDownloads(imports: Iterable, duckdb?: DuckDBConfig): Set { + const set = setof(imports); + const implicits = new Set(); + if (set.has("npm:@observablehq/duckdb")) { + implicits.add("npm:@duckdb/duckdb-wasm/dist/duckdb-mvp.wasm"); + implicits.add("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-mvp.worker.js"); + implicits.add("npm:@duckdb/duckdb-wasm/dist/duckdb-eh.wasm"); + implicits.add("npm:@duckdb/duckdb-wasm/dist/duckdb-browser-eh.worker.js"); + if (!duckdb) throw new Error("Implementation error: missing duckdb configuration"); + for (const [name, {source}] of Object.entries(duckdb.extensions)) { + for (const platform in duckdb.platforms) { + implicits.add(`duckdb:${resolveDuckDBExtension(source, platform, name)}`); + } + } + } + if (set.has("npm:@observablehq/sqlite")) { + implicits.add("npm:sql.js/dist/sql-wasm.js"); + implicits.add("npm:sql.js/dist/sql-wasm.wasm"); + } + if (set.has("npm:leaflet")) { + implicits.add("npm:leaflet/dist/images/layers.png"); + implicits.add("npm:leaflet/dist/images/layers-2x.png"); + implicits.add("npm:leaflet/dist/images/marker-icon.png"); + implicits.add("npm:leaflet/dist/images/marker-icon-2x.png"); + implicits.add("npm:leaflet/dist/images/marker-shadow.png"); + } + if (set.has("npm:katex")) { + implicits.add("npm:katex/dist/fonts/KaTeX_AMS-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_AMS-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_AMS-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Bold.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Bold.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Bold.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Bold.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Fraktur-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Bold.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Bold.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Bold.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-BoldItalic.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-BoldItalic.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-BoldItalic.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Italic.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Italic.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Italic.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Main-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-BoldItalic.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-BoldItalic.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-BoldItalic.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-Italic.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-Italic.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Math-Italic.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Bold.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Bold.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Bold.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Italic.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Italic.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Italic.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_SansSerif-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Script-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Script-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Script-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size1-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size1-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size1-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size2-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size2-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size2-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size3-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size3-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size3-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size4-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size4-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Size4-Regular.woff2"); + implicits.add("npm:katex/dist/fonts/KaTeX_Typewriter-Regular.ttf"); + implicits.add("npm:katex/dist/fonts/KaTeX_Typewriter-Regular.woff"); + implicits.add("npm:katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"); + } + if (set.has("npm:parquet-wasm")) { + implicits.add("npm:parquet-wasm/esm/parquet_wasm_bg.wasm"); + } + return implicits; +} + +export function getImplicitDependencies(imports: Iterable): Set { + const set = setof(imports); + const implicits = new Set(); + if (set.has("npm:@observablehq/dot")) implicits.add("npm:@viz-js/viz"); + if (set.has("npm:@observablehq/duckdb")) implicits.add("npm:@duckdb/duckdb-wasm"); + if (set.has("npm:@observablehq/inputs")) implicits.add("npm:htl").add("npm:isoformat"); + if (set.has("npm:@observablehq/mermaid")) implicits.add("npm:mermaid"); + if (set.has("npm:@observablehq/tex")) implicits.add("npm:katex"); + if (set.has("observablehq:stdlib/xlsx")) implicits.add("npm:exceljs"); + if (set.has("observablehq:stdlib/zip")) implicits.add("npm:jszip"); + if (set.has("observablehq:stdlib/vega-lite")) implicits.add("npm:vega-lite-api").add("npm:vega-lite").add("npm:vega"); + if (set.has("observablehq:stdlib/vgplot")) implicits.add("npm:@uwdata/vgplot").add("npm:@observablehq/duckdb").add("npm:@duckdb/duckdb-wasm"); // prettier-ignore + return implicits; +} + +function setof(iterable: Iterable): Set { + return iterable instanceof Set ? iterable : new Set(iterable); } diff --git a/src/loader.ts b/src/loader.ts new file mode 100644 index 000000000..324f1a8e1 --- /dev/null +++ b/src/loader.ts @@ -0,0 +1,574 @@ +import {createHash} from "node:crypto"; +import type {FSWatcher, WatchListener, WriteStream} from "node:fs"; +import {createReadStream, existsSync, statSync, watch} from "node:fs"; +import {open, readFile, rename, unlink} from "node:fs/promises"; +import {dirname, extname, join} from "node:path/posix"; +import {createGunzip} from "node:zlib"; +import {spawn} from "cross-spawn"; +import JSZip from "jszip"; +import {extract} from "tar-stream"; +import {enoent} from "./error.js"; +import {maybeStat, prepareOutput, visitFiles} from "./files.js"; +import {FileWatchers} from "./fileWatchers.js"; +import {formatByteSize} from "./format.js"; +import type {FileInfo} from "./javascript/module.js"; +import {findModule, getFileInfo, getLocalModuleHash, getModuleHash} from "./javascript/module.js"; +import type {Logger, Writer} from "./logger.js"; +import type {MarkdownPage, ParseOptions} from "./markdown.js"; +import {parseMarkdown} from "./markdown.js"; +import {getModuleResolver, resolveImportPath} from "./resolvers.js"; +import type {Params} from "./route.js"; +import {isParameterized, requote, route} from "./route.js"; +import {cyan, faint, green, red, yellow} from "./tty.js"; + +const runningCommands = new Map>(); + +export const defaultInterpreters: Record = { + ".js": ["node", "--no-warnings=ExperimentalWarning"], + ".ts": ["tsx"], + ".py": ["python3"], + ".r": ["Rscript"], + ".R": ["Rscript"], + ".rs": ["rust-script"], + ".go": ["go", "run"], + ".java": ["java"], + ".jl": ["julia"], + ".php": ["php"], + ".sh": ["sh"], + ".exe": [] +}; + +export interface LoadEffects { + logger: Logger; + output: Writer; +} + +const defaultEffects: LoadEffects = { + logger: console, + output: process.stdout +}; + +export interface LoadOptions { + /** Whether to use a stale cache; true when building. */ + useStale?: boolean; +} + +export interface LoaderOptions { + root: string; + path: string; + params?: Params; + targetPath: string; +} + +export class LoaderResolver { + private readonly root: string; + private readonly interpreters: Map; + + constructor({root, interpreters}: {root: string; interpreters?: Record}) { + this.root = root; + this.interpreters = new Map( + Object.entries({...defaultInterpreters, ...interpreters}).filter( + (entry): entry is [string, string[]] => entry[1] != null + ) + ); + } + + /** + * Loads the page at the specified path, returning a promise to the parsed + * page object. + */ + async loadPage(path: string, options: LoadOptions & ParseOptions, effects?: LoadEffects): Promise { + const loader = this.findPage(path); + if (!loader) throw enoent(path); + const input = await readFile(join(this.root, await loader.load(options, effects)), "utf8"); + return parseMarkdown(input, {source: loader.path, params: loader.params, ...options}); + } + + /** + * Returns a watcher for the page at the specified path. + */ + watchPage(path: string, listener: WatchListener): FSWatcher { + const loader = this.findPage(path); + if (!loader) throw enoent(path); + return watch(join(this.root, loader.path), listener); + } + + /** + * Finds the paths of all non-parameterized pages within the source root. + */ + *findPagePaths(): Generator { + const ext = new RegExp(`\\.md(${["", ...this.interpreters.keys()].map(requote).join("|")})$`); + for (const file of visitFiles(this.root, (name) => !isParameterized(name))) { + if (!ext.test(file)) continue; + const path = `/${file.slice(0, file.lastIndexOf(".md"))}`; + if (extname(path) === ".js" && findModule(this.root, path)) continue; + yield path; + } + } + + /** + * Finds the page loader for the specified target path, relative to the source + * root, if the loader exists. If there is no such loader, returns undefined. + */ + findPage(path: string): Loader | undefined { + if (extname(path) === ".js" && findModule(this.root, path)) return; + return this.find(`${path}.md`); + } + + /** + * Finds the loader for the specified target path, relative to the source + * root, if the loader exists. If there is no such loader, returns undefined. + * For files within archives, we find the first parent folder that exists, but + * abort if we find a matching folder or reach the source root; for example, + * if src/data exists, we won’t look for a src/data.zip. + */ + find(path: string): Loader | undefined { + return this.findFile(path) ?? this.findArchive(path); + } + + // Finding a file: + // - /path/to/file.csv + // - /path/to/file.csv.js + // - /path/to/[param].csv + // - /path/to/[param].csv.js + // - /path/[param]/file.csv + // - /path/[param]/file.csv.js + // - /path/[param1]/[param2].csv + // - /path/[param1]/[param2].csv.js + // - /[param]/to/file.csv + // - /[param]/to/file.csv.js + // - /[param1]/to/[param2].csv + // - /[param1]/to/[param2].csv.js + // - /[param1]/[param2]/file.csv + // - /[param1]/[param2]/file.csv.js + // - /[param1]/[param2]/[param3].csv + // - /[param1]/[param2]/[param3].csv.js + private findFile(targetPath: string): Loader | undefined { + const ext = extname(targetPath); + const exts = ext ? [ext, ...Array.from(this.interpreters.keys(), (iext) => ext + iext)] : [ext]; + const found = route(this.root, ext ? targetPath.slice(0, -ext.length) : targetPath, exts); + if (!found) return; + const {path, params, ext: fext} = found; + if (fext === ext) return new StaticLoader({root: this.root, path, params}); + const commandPath = join(this.root, path); + const [command, ...args] = this.interpreters.get(fext.slice(ext.length))!; + if (command != null) args.push(commandPath); + return new CommandLoader({ + command: command ?? commandPath, + args: params ? args.concat(defineParams(params)) : args, + path, + params, + root: this.root, + targetPath + }); + } + + // Finding a file in an archive: + // - /path/to.zip + // - /path/to.tgz + // - /path/to.zip.js + // - /path/to.tgz.js + // - /path/[param].zip + // - /path/[param].tgz + // - /path/[param].zip.js + // - /path/[param].tgz.js + // - /[param]/to.zip + // - /[param]/to.tgz + // - /[param]/to.zip.js + // - /[param]/to.tgz.js + // - /[param1]/[param2].zip + // - /[param1]/[param2].tgz + // - /[param1]/[param2].zip.js + // - /[param1]/[param2].tgz.js + // - /path.zip + // - /path.tgz + // - /path.zip.js + // - /path.tgz.js + // - /[param].zip + // - /[param].tgz + // - /[param].zip.js + // - /[param].tgz.js + private findArchive(targetPath: string): Loader | undefined { + const exts = this.getArchiveExtensions(); + for (let dir = dirname(targetPath), parent: string; (parent = dirname(dir)) !== dir; dir = parent) { + const found = route(this.root, dir, exts); + if (!found) continue; + const {path, params, ext: fext} = found; + const inflatePath = targetPath.slice(dir.length + 1); // file.jpeg + if (extractors.has(fext)) { + const Extractor = extractors.get(fext)!; + return new Extractor({ + preload: async () => path, // /path/to.zip + inflatePath, + path, + params, + root: this.root, + targetPath // /path/to/file.jpg + }); + } + const iext = extname(fext); + const commandPath = join(this.root, path); + const [command, ...args] = this.interpreters.get(iext)!; + if (command != null) args.push(commandPath); + const eext = fext.slice(0, -iext.length); // .zip + const loader = new CommandLoader({ + command: command ?? commandPath, + args: params ? args.concat(defineParams(params)) : args, + path, + params, + root: this.root, + targetPath: dir + eext // /path/to.zip + }); + const Extractor = extractors.get(eext)!; + return new Extractor({ + preload: async (options, effects) => loader.load(options, effects), // /path/to.zip.js + inflatePath, + path: loader.path, + params, + root: this.root, + targetPath + }); + } + } + + // .zip, .tar, .tgz, .zip.js, .zip.py, etc. + getArchiveExtensions(): string[] { + const exts = Array.from(extractors.keys()); + for (const e of extractors.keys()) for (const i of this.interpreters.keys()) exts.push(e + i); + return exts; + } + + /** + * Returns the path to watch, relative to the current working directory, for + * the specified source path, relative to the source root. + */ + getWatchPath(path: string): string | undefined { + const exactPath = join(this.root, path); + if (existsSync(exactPath)) return exactPath; + if (exactPath.endsWith(".js")) { + const module = findModule(this.root, path); + return module && join(this.root, module.path); + } + const foundPath = this.find(path)?.path; + if (foundPath) return join(this.root, foundPath); + } + + watchFiles(path: string, watchPaths: Iterable, callback: (name: string) => void) { + return FileWatchers.of(this, path, watchPaths, callback); + } + + /** + * Returns the path to the backing file during preview, relative to the source + * root, which is the source file for the associated data loader if the file + * is generated by a loader. + */ + private getSourceFilePath(path: string): string { + if (!existsSync(join(this.root, path))) { + const loader = this.find(path); + if (loader) return loader.path; + } + return path; + } + + /** + * Returns the path to the backing file during build, relative to the source + * root, which is the cached output file if the file is generated by a loader. + */ + private getOutputFilePath(path: string): string { + if (!existsSync(join(this.root, path))) { + const loader = this.find(path); + if (loader) return join(".observablehq", "cache", path); + } + return path; + } + + /** + * Returns the hash of the file with the given name within the source root, or + * if the name refers to a file generated by a data loader, the hash of the + * corresponding data loader source and its modification time. The latter + * ensures that if the data loader is “touched” (even without changing its + * contents) that the data loader will be re-run. + */ + getSourceFileHash(name: string): string { + const path = this.getSourceFilePath(name); + const info = getFileInfo(this.root, path); + if (!info) return createHash("sha256").digest("hex"); + const {hash} = info; + return path === name ? hash : createHash("sha256").update(hash).update(String(info.mtimeMs)).digest("hex"); + } + + getOutputFileHash(name: string): string { + const info = this.getOutputInfo(name); + if (!info) throw new Error(`output file not found: ${name}`); + return info.hash; + } + + getSourceInfo(name: string): FileInfo | undefined { + return getFileInfo(this.root, this.getSourceFilePath(name)); + } + + getOutputInfo(name: string): FileInfo | undefined { + return getFileInfo(this.root, this.getOutputFilePath(name)); + } + + getLocalModuleHash(path: string): Promise { + return getLocalModuleHash(this.root, path, (p) => this.getOutputFileHash(p)); + } + + getModuleHash(path: string): string { + return getModuleHash(this.root, path, (p) => this.getSourceFileHash(p)); + } + + getModuleResolver(path: string, servePath?: string): (specifier: string) => Promise { + return getModuleResolver(this.root, path, servePath, (p) => this.getSourceFileHash(p)); + } + + resolveImportPath(path: string): string { + return resolveImportPath(this.root, path, (p) => this.getSourceFileHash(p)); + } + + resolveFilePath(path: string): string { + return `/${join("_file", path)}?sha=${this.getSourceFileHash(path)}`; + } +} + +function defineParams(params: Params): string[] { + return Object.entries(params) + .filter(([name]) => /^[a-z0-9_]+$/i.test(name)) // ignore non-ASCII parameters + .map(([name, value]) => `--${name}=${value}`); +} + +export interface Loader { + /** + * The source root relative to the current working directory, such as src. + */ + readonly root: string; + + /** + * The path to the loader script or executable relative to the source root. + * This is exposed so that clients can check which file to watch to see if the + * loader is edited (and in which case it needs to be re-run). + */ + readonly path: string; + + /** TODO */ + readonly params: Params | undefined; + + /** + * Runs this loader, returning the path to the generated output file relative + * to the source root; this is typically within the .observablehq/cache folder + * within the source root. + */ + load(options?: LoadOptions, effects?: LoadEffects): Promise; +} + +/** Used by LoaderResolver.find to represent a static file resolution. */ +class StaticLoader implements Loader { + readonly root: string; + readonly path: string; + readonly params: Params | undefined; + + constructor({root, path, params}: Omit) { + this.root = root; + this.path = path; + this.params = params; + } + + async load() { + return this.path; + } +} + +abstract class AbstractLoader implements Loader { + readonly root: string; + readonly path: string; + readonly params: Params | undefined; + + /** + * The path to the loader script’s output relative to the destination root. + * This is where the loader’s output is served, but the loader generates the + * file in the .observablehq/cache directory within the source root. + */ + readonly targetPath: string; + + constructor({root, path, params, targetPath}: LoaderOptions) { + this.root = root; + this.path = path; + this.params = params; + this.targetPath = targetPath; + } + + async load({useStale = false}: LoadOptions = {}, effects = defaultEffects): Promise { + const loaderPath = join(this.root, this.path); + const key = join(this.root, this.targetPath); + let command = runningCommands.get(key); + if (!command) { + command = (async () => { + const outputPath = join(".observablehq", "cache", this.targetPath); + const cachePath = join(this.root, outputPath); + const loaderStat = await maybeStat(loaderPath); + const cacheStat = await maybeStat(cachePath); + if (!cacheStat) effects.output.write(faint("[missing] ")); + else if (cacheStat.mtimeMs < loaderStat!.mtimeMs) { + if (useStale) return effects.output.write(faint("[using stale] ")), outputPath; + else effects.output.write(faint("[stale] ")); + } else return effects.output.write(faint("[fresh] ")), outputPath; + const tempPath = join(this.root, ".observablehq", "cache", `${this.targetPath}.${process.pid}`); + const errorPath = tempPath + ".err"; + const errorStat = await maybeStat(errorPath); + if (errorStat) { + if (errorStat.mtimeMs > loaderStat!.mtimeMs && errorStat.mtimeMs > -1000 + Date.now()) + throw new Error("loader skipped due to recent error"); + else await unlink(errorPath).catch(() => {}); + } + await prepareOutput(tempPath); + await prepareOutput(cachePath); + const tempFd = await open(tempPath, "w"); + try { + await this.exec(tempFd.createWriteStream({highWaterMark: 1024 * 1024}), {useStale}, effects); + await rename(tempPath, cachePath); + } catch (error) { + await rename(tempPath, errorPath); + throw error; + } finally { + await tempFd.close(); + } + return outputPath; + })(); + command.finally(() => runningCommands.delete(key)).catch(() => {}); + runningCommands.set(key, command); + } + effects.output.write(`${cyan("load")} ${this.targetPath} ${faint("→")} `); + const start = performance.now(); + command.then( + (path) => { + const {size} = statSync(join(this.root, path)); + effects.logger.log( + `${green("success")} ${size ? cyan(formatByteSize(size)) : yellow("empty output")} ${faint( + `in ${formatElapsed(start)}` + )}` + ); + }, + (error) => { + effects.logger.log(`${red("error")} ${faint(`in ${formatElapsed(start)}:`)} ${red(error.message)}`); + } + ); + return command; + } + + abstract exec(output: WriteStream, options?: LoadOptions, effects?: LoadEffects): Promise; +} + +interface CommandLoaderOptions extends LoaderOptions { + command: string; + args: string[]; +} + +class CommandLoader extends AbstractLoader { + /** + * The command to run, such as "node" for a JavaScript loader, "tsx" for + * TypeScript, and "sh" for a shell script. "noop" when we only need to + * inflate a file from a static archive. + */ + private readonly command: string; + + /** + * Args to pass to the command; currently this is a single argument of the + * path to the loader script relative to the current working directory. (TODO + * Support passing additional arguments to loaders.) + */ + private readonly args: string[]; + + constructor({command, args, ...options}: CommandLoaderOptions) { + super(options); + this.command = command; + this.args = args; + } + + async exec(output: WriteStream): Promise { + const subprocess = spawn(this.command, this.args, {windowsHide: true, stdio: ["ignore", output, "inherit"]}); + const code = await new Promise((resolve, reject) => { + subprocess.on("error", reject); + subprocess.on("close", resolve); + }); + if (code !== 0) { + throw new Error(`loader exited with code ${code}`); + } + } +} + +interface ExtractorOptions extends LoaderOptions { + preload: Loader["load"]; + inflatePath: string; +} + +class ZipExtractor extends AbstractLoader { + private readonly preload: Loader["load"]; + private readonly inflatePath: string; + + constructor({preload, inflatePath, ...options}: ExtractorOptions) { + super(options); + this.preload = preload; + this.inflatePath = inflatePath; + } + + async exec(output: WriteStream, options?: LoadOptions, effects?: LoadEffects): Promise { + const archivePath = join(this.root, await this.preload(options, effects)); + const file = (await JSZip.loadAsync(await readFile(archivePath))).file(this.inflatePath); + if (!file) throw enoent(this.inflatePath); + const pipe = file.nodeStream().pipe(output); + await new Promise((resolve, reject) => pipe.on("error", reject).on("finish", resolve)); + } +} + +interface TarExtractorOptions extends ExtractorOptions { + gunzip?: boolean; +} + +class TarExtractor extends AbstractLoader { + private readonly preload: Loader["load"]; + private readonly inflatePath: string; + private readonly gunzip: boolean; + + constructor({preload, inflatePath, gunzip = false, ...options}: TarExtractorOptions) { + super(options); + this.preload = preload; + this.inflatePath = inflatePath; + this.gunzip = gunzip; + } + + async exec(output: WriteStream, options?: LoadOptions, effects?: LoadEffects): Promise { + const archivePath = join(this.root, await this.preload(options, effects)); + const tar = extract(); + const input = createReadStream(archivePath); + (this.gunzip ? input.pipe(createGunzip()) : input).pipe(tar); + for await (const entry of tar) { + if (entry.header.name === this.inflatePath) { + const pipe = entry.pipe(output); + await new Promise((resolve, reject) => pipe.on("error", reject).on("finish", resolve)); + return; + } else { + entry.resume(); + } + } + throw enoent(this.inflatePath); + } +} + +class TarGzExtractor extends TarExtractor { + constructor(options: TarExtractorOptions) { + super({...options, gunzip: true}); + } +} + +const extractors = new Map Loader>([ + [".zip", ZipExtractor], + [".tar", TarExtractor], + [".tar.gz", TarGzExtractor], + [".tgz", TarGzExtractor] +]); + +function formatElapsed(start: number): string { + const elapsed = performance.now() - start; + return `${Math.floor(elapsed)}ms`; +} diff --git a/src/markdown.ts b/src/markdown.ts index 570acb452..cb43b5726 100644 --- a/src/markdown.ts +++ b/src/markdown.ts @@ -1,80 +1,62 @@ +/* eslint-disable import/no-named-as-default-member */ import {createHash} from "node:crypto"; -import {readFile} from "node:fs/promises"; -import {type Patch, type PatchItem, getPatch} from "fast-array-diff"; -import equal from "fast-deep-equal"; -import matter from "gray-matter"; -import hljs from "highlight.js"; -import {parseHTML} from "linkedom"; +import slugify from "@sindresorhus/slugify"; +import he from "he"; import MarkdownIt from "markdown-it"; -import {type RuleCore} from "markdown-it/lib/parser_core.js"; -import {type RuleInline} from "markdown-it/lib/parser_inline.js"; -import {type RenderRule, type default as Renderer} from "markdown-it/lib/renderer.js"; +import type {RuleCore} from "markdown-it/lib/parser_core.mjs"; +import type {RuleInline} from "markdown-it/lib/parser_inline.mjs"; +import type {RenderRule} from "markdown-it/lib/renderer.mjs"; +import type Token from "markdown-it/lib/token.mjs"; import MarkdownItAnchor from "markdown-it-anchor"; -import {isEnoent} from "./error.js"; -import {fileReference, getLocalPath} from "./files.js"; -import {computeHash} from "./hash.js"; +import type {Config} from "./config.js"; +import {mergeStyle} from "./config.js"; +import type {FrontMatter} from "./frontMatter.js"; +import {readFrontMatter} from "./frontMatter.js"; +import {html, rewriteHtmlPaths} from "./html.js"; import {parseInfo} from "./info.js"; -import type {FileReference, ImportReference, PendingTranspile, Transpile} from "./javascript.js"; -import {transpileJavaScript} from "./javascript.js"; +import {transformJavaScriptSync} from "./javascript/module.js"; +import type {JavaScriptNode} from "./javascript/parse.js"; +import {parseJavaScript} from "./javascript/parse.js"; +import {isAssetPath, relativePath} from "./path.js"; +import {parsePlaceholder} from "./placeholder.js"; +import type {Params} from "./route.js"; +import {transpileSql} from "./sql.js"; import {transpileTag} from "./tag.js"; -import {resolvePath} from "./url.js"; +import {InvalidThemeError} from "./theme.js"; +import {red} from "./tty.js"; -export interface HtmlPiece { - type: "html"; +export interface MarkdownCode { id: string; - html: string; - cellIds?: string[]; + node: JavaScriptNode; + mode: "inline" | "block" | "jsx"; } -export interface CellPiece extends Transpile { - type: "cell"; -} - -export type ParsePiece = HtmlPiece | CellPiece; - -export interface ParseResult { +export interface MarkdownPage { title: string | null; - html: string; - data: {[key: string]: any} | null; - files: FileReference[]; - imports: ImportReference[]; - pieces: HtmlPiece[]; - cells: CellPiece[]; - hash: string; -} - -interface RenderPiece { - html: string; - code: PendingTranspile[]; + head: string | null; + header: string | null; + body: string; + footer: string | null; + data: FrontMatter; + style: string | null; + code: MarkdownCode[]; + path: string; + params?: Params; } interface ParseContext { - pieces: RenderPiece[]; - files: FileReference[]; - imports: ImportReference[]; + code: MarkdownCode[]; startLine: number; currentLine: number; -} - -const ELEMENT_NODE = 1; // Node.ELEMENT_NODE -const TEXT_NODE = 3; // Node.TEXT_NODE - -// Returns true if the given document contains exactly one top-level element, -// ignoring any surrounding whitespace text nodes. -function isSingleElement(document: Document): boolean { - let {firstChild: first, lastChild: last} = document; - while (first?.nodeType === TEXT_NODE && !first?.textContent?.trim()) first = first.nextSibling; - while (last?.nodeType === TEXT_NODE && !last?.textContent?.trim()) last = last.previousSibling; - return first !== null && first === last && first.nodeType === ELEMENT_NODE; + path: string; + params?: Params; } function uniqueCodeId(context: ParseContext, content: string): string { - const hash = computeHash(content).slice(0, 8); + const hash = createHash("sha256").update(content).digest("hex").slice(0, 8); let id = hash; let count = 1; - while (context.pieces.some((piece) => piece.code.some((code) => code.id === id))) { - id = `${hash}-${count++}`; - } + while (context.code.some((code) => code.id === id)) id = `${hash}-${count++}`; return id; } @@ -82,15 +64,27 @@ function isFalse(attribute: string | undefined): boolean { return attribute?.toLowerCase() === "false"; } -function getLiveSource(content: string, tag: string): string | undefined { +function transpileJavaScript(content: string, tag: "ts" | "jsx" | "tsx"): string { + try { + return transformJavaScriptSync(content, tag); + } catch (error: any) { + throw new SyntaxError(error.message); + } +} + +function getLiveSource(content: string, tag: string, attributes: Record): string | undefined { return tag === "js" ? content + : tag === "ts" || tag === "jsx" || tag === "tsx" + ? transpileJavaScript(content, tag) : tag === "tex" ? transpileTag(content, "tex.block", true) : tag === "html" - ? transpileTag(content, "html", true) + ? transpileTag(content, "html.fragment", true) + : tag === "sql" + ? transpileSql(content, attributes) : tag === "svg" - ? transpileTag(content, "svg", true) + ? transpileTag(content, "svg.fragment", true) : tag === "dot" ? transpileTag(content, "dot", false) : tag === "mermaid" @@ -98,185 +92,113 @@ function getLiveSource(content: string, tag: string): string | undefined { : undefined; } -function makeFenceRenderer(root: string, baseRenderer: RenderRule, sourcePath: string): RenderRule { +// TODO sourceLine and remap syntax error position; consider showing a code +// snippet along with the error. Also, consider whether we want to show the +// file name here. +// +// const message = error.message; +// if (verbose) { +// let warning = error.message; +// const match = /^(.+)\s\((\d+):(\d+)\)$/.exec(message); +// if (match) { +// const line = +match[2] + (options?.sourceLine ?? 0); +// const column = +match[3] + 1; +// warning = `${match[1]} at line ${line}, column ${column}`; +// } else if (options?.sourceLine) { +// warning = `${message} at line ${options.sourceLine + 1}`; +// } +// console.error(red(`${error.name}: ${warning}`)); +// } + +function makeFenceRenderer(baseRenderer: RenderRule): RenderRule { return (tokens, idx, options, context: ParseContext, self) => { + const {path, params} = context; const token = tokens[idx]; const {tag, attributes} = parseInfo(token.info); token.info = tag; - let result = ""; - let count = 0; - const source = isFalse(attributes.run) ? undefined : getLiveSource(token.content, tag); - if (source != null) { - const id = uniqueCodeId(context, token.content); - const sourceLine = context.startLine + context.currentLine; - const transpile = transpileJavaScript(source, { - id, - root, - sourcePath, - sourceLine - }); - extendPiece(context, {code: [transpile]}); - if (transpile.files) context.files.push(...transpile.files); - if (transpile.imports) context.imports.push(...transpile.imports); - result += `
    \n`; - count++; + let html = ""; + let source: string | undefined; + try { + source = isFalse(attributes.run) ? undefined : getLiveSource(token.content, tag, attributes); + if (source != null) { + const id = uniqueCodeId(context, source); + // TODO const sourceLine = context.startLine + context.currentLine; + const node = parseJavaScript(source, {path, params}); + context.code.push({id, node, mode: tag === "jsx" || tag === "tsx" ? "jsx" : "block"}); + html += `
    ${ + node.expression ? "" : "" + }
    \n`; + } + } catch (error) { + if (!(error instanceof SyntaxError)) throw error; + html += `
    +
    SyntaxError: ${he.escape(error.message)}
    +
    \n`; } if (attributes.echo == null ? source == null : !isFalse(attributes.echo)) { - result += baseRenderer(tokens, idx, options, context, self); - count++; + html += baseRenderer(tokens, idx, options, context, self); } - // Tokens should always be rendered as a single block element. - if (count > 1) result = "
    " + result + "
    "; - return result; + return html; }; } const CODE_DOLLAR = 36; const CODE_BRACEL = 123; -const CODE_BRACER = 125; -const CODE_BACKSLASH = 92; -const CODE_QUOTE = 34; -const CODE_SINGLE_QUOTE = 39; -const CODE_BACKTICK = 96; - -function parsePlaceholder(content: string, replacer: (i: number, j: number) => void) { - let afterDollar = false; - for (let j = 0, n = content.length; j < n; ++j) { - const cj = content.charCodeAt(j); - if (cj === CODE_BACKSLASH) { - ++j; // skip next character - continue; - } - if (cj === CODE_DOLLAR) { - afterDollar = true; - continue; - } - if (afterDollar) { - if (cj === CODE_BRACEL) { - let quote = 0; // TODO detect comments, too - let braces = 0; - let k = j + 1; - inner: for (; k < n; ++k) { - const ck = content.charCodeAt(k); - if (ck === CODE_BACKSLASH) { - ++k; - continue; - } - if (quote) { - if (ck === quote) quote = 0; - continue; - } - switch (ck) { - case CODE_QUOTE: - case CODE_SINGLE_QUOTE: - case CODE_BACKTICK: - quote = ck; - break; - case CODE_BRACEL: - ++braces; - break; - case CODE_BRACER: - if (--braces < 0) { - replacer(j - 1, k + 1); - break inner; - } - break; - } - } - j = k; - } - afterDollar = false; - } - } -} - -function transformPlaceholderBlock(token) { - const input = token.content; - if (/^\s*)/.test(input)) return [token]; // ignore `; } } - return cellPieces; + return head; } -export interface ParseOptions { - root: string; - path: string; +function getHeader(title: string | null, data: FrontMatter, options: ParseOptions): string | null { + return getHtml("header", title, data, options); } -export async function parseMarkdown(sourcePath: string, {root, path}: ParseOptions): Promise { - const source = await readFile(sourcePath, "utf-8"); - const parts = matter(source, {}); - const md = MarkdownIt({html: true}); - md.use(MarkdownItAnchor, {permalink: MarkdownItAnchor.permalink.headerLink({class: "observablehq-header-anchor"})}); - md.inline.ruler.push("placeholder", transformPlaceholderInline); - md.core.ruler.before("linkify", "placeholder", transformPlaceholderCore); - md.renderer.rules.placeholder = makePlaceholderRenderer(root, path); - md.renderer.rules.fence = makeFenceRenderer(root, md.renderer.rules.fence!, path); - md.renderer.rules.softbreak = makeSoftbreakRenderer(md.renderer.rules.softbreak!); - md.renderer.render = renderIntoPieces(md.renderer, root, path); - const context: ParseContext = {files: [], imports: [], pieces: [], startLine: 0, currentLine: 0}; - const tokens = md.parse(parts.content, context); - const html = md.renderer.render(tokens, md.options, context); // Note: mutates context.pieces, context.files! - return { - html, - data: isEmpty(parts.data) ? null : parts.data, - title: parts.data?.title ?? findTitle(tokens) ?? null, - files: context.files, - imports: context.imports, - pieces: toParsePieces(context.pieces), - cells: await toParseCells(context.pieces), - hash: await computeMarkdownHash(source, root, path, context.imports) - }; +function getFooter(title: string | null, data: FrontMatter, options: ParseOptions): string | null { + return getHtml("footer", title, data, options); } -async function computeMarkdownHash( - contents: string, - root: string, - path: string, - imports: ImportReference[] -): Promise { - const hash = createHash("sha256").update(contents); - // TODO can’t simply concatenate here; we need a delimiter - for (const i of imports) { - if (i.type === "local") { - try { - hash.update(await readFile(resolvePath(root, path, i.name), "utf-8")); - } catch (error) { - if (!isEnoent(error)) throw error; - continue; - } - } - } - return hash.digest("hex"); +function getHtml( + key: "head" | "header" | "footer", + title: string | null, + data: FrontMatter, + {path, [key]: defaultValue}: ParseOptions +): string | null { + if (data[key] !== undefined) return data[key] != null ? String(data[key]) : null; + const value = typeof defaultValue === "function" ? defaultValue({title, data, path}) : defaultValue; + return value != null ? rewriteHtmlPaths(value, path) : null; } -// TODO Use gray-matter’s parts.isEmpty, but only when it’s accurate. -function isEmpty(object) { - for (const key in object) return false; - return true; +function getStyle(data: FrontMatter, {path, style = null}: ParseOptions): string | null { + try { + style = mergeStyle(path, data.style, data.theme, style); + } catch (error) { + if (!(error instanceof InvalidThemeError)) throw error; + console.error(red(String(error))); // TODO error during build + style = {theme: []}; + } + return !style + ? null + : "path" in style + ? relativePath(path, style.path) + : `observablehq:theme-${style.theme.join(",")}.css`; } // TODO Make this smarter. -function findTitle(tokens: ReturnType): string | undefined { +function findTitle(tokens: ReturnType): string | null { for (const [i, token] of tokens.entries()) { if (token.type === "heading_open" && token.tag === "h1") { const next = tokens[i + 1]; @@ -486,52 +342,5 @@ function findTitle(tokens: ReturnType): string | undefined } } } -} - -function diffReducer(patch: PatchItem) { - // Remove body from remove updates, we just need the ids. - if (patch.type === "remove") { - return { - ...patch, - type: "remove", - items: patch.items.map((item) => ({ - type: item.type, - id: item.id, - ...("cellIds" in item ? {cellIds: item.cellIds} : null) - })) - } as const; - } - return patch; -} - -// Cells are unordered -function getCellsPatch(prevCells: CellPiece[], nextCells: CellPiece[]): Patch { - return prevCells - .filter((prev) => !nextCells.some((next) => equal(prev, next))) - .map( - (cell): PatchItem => ({ - type: "remove", - oldPos: prevCells.indexOf(cell), - newPos: -1, - items: [cell] - }) - ) - .concat( - nextCells - .filter((next) => !prevCells.some((prev) => equal(next, prev))) - .map( - (cell): PatchItem => ({ - type: "add", - oldPos: -1, - newPos: nextCells.indexOf(cell), - items: [cell] - }) - ) - ); -} - -export function diffMarkdown(oldParse: ParseResult, newParse: ParseResult) { - return getPatch(oldParse.pieces, newParse.pieces, equal) - .concat(getCellsPatch(oldParse.cells, newParse.cells)) - .map(diffReducer); + return null; } diff --git a/src/node.ts b/src/node.ts new file mode 100644 index 000000000..bb2c340c2 --- /dev/null +++ b/src/node.ts @@ -0,0 +1,216 @@ +import {existsSync} from "node:fs"; +import {copyFile, readFile, writeFile} from "node:fs/promises"; +import {createRequire} from "node:module"; +import op from "node:path"; +import {extname, join} from "node:path/posix"; +import {pathToFileURL} from "node:url"; +import commonjs from "@rollup/plugin-commonjs"; +import json from "@rollup/plugin-json"; +import {nodeResolve} from "@rollup/plugin-node-resolve"; +import virtual from "@rollup/plugin-virtual"; +import {packageDirectory} from "pkg-dir"; +import type {AstNode, OutputChunk, Plugin, ResolveIdResult} from "rollup"; +import {rollup} from "rollup"; +import esbuild from "rollup-plugin-esbuild"; +import {prepareOutput, toOsPath} from "./files.js"; +import {annotatePath} from "./javascript/annotate.js"; +import type {ImportReference} from "./javascript/imports.js"; +import {isJavaScript, parseImports} from "./javascript/imports.js"; +import {parseNpmSpecifier, rewriteNpmImports} from "./npm.js"; +import {isPathImport, relativePath} from "./path.js"; +import {faint} from "./tty.js"; + +export async function resolveNodeImport(root: string, spec: string): Promise { + return resolveNodeImportInternal(op.join(root, ".observablehq", "cache", "_node"), root, spec); +} + +const bundlePromises = new Map>(); + +async function resolveNodeImportInternal(cacheRoot: string, packageRoot: string, spec: string): Promise { + const {name, path = "."} = parseNpmSpecifier(spec); + const require = createRequire(pathToFileURL(op.join(packageRoot, "/"))); + const pathResolution = require.resolve(spec); + const packageResolution = await packageDirectory({cwd: op.dirname(pathResolution)}); + if (!packageResolution) throw new Error(`unable to resolve package.json: ${spec}`); + const {version} = JSON.parse(await readFile(op.join(packageResolution, "package.json"), "utf-8")); + const resolution = `${name}@${version}/${extname(path) ? path : path === "." ? "index.js" : `${path}.js`}`; + const outputPath = op.join(cacheRoot, toOsPath(resolution)); + const resolutionPath = `/_node/${resolution}`; + if (existsSync(outputPath)) return resolutionPath; + let promise = bundlePromises.get(outputPath); + if (promise) return promise; // coalesce concurrent requests + promise = (async () => { + console.log(`${spec} ${faint("→")} ${outputPath}`); + await prepareOutput(outputPath); + if (isJavaScript(pathResolution)) { + await writeFile(outputPath, await bundle(resolutionPath, spec, require, cacheRoot, packageResolution), "utf-8"); + } else { + await copyFile(pathResolution, outputPath); + } + return resolutionPath; + })(); + promise.catch(console.error).then(() => bundlePromises.delete(outputPath)); + bundlePromises.set(outputPath, promise); + return promise; +} + +/** + * Resolves the direct dependencies of the specified node import path, such as + * "/_node/d3-array@3.2.4/src/index.js", returning a set of node import paths. + */ +export async function resolveNodeImports(root: string, path: string): Promise { + if (!path.startsWith("/_node/")) throw new Error(`invalid node path: ${path}`); + return parseImports(join(root, ".observablehq", "cache"), path); +} + +/** + * Given a local npm path such as "/_node/d3-array@3.2.4/src/index.js", returns + * the corresponding npm specifier such as "d3-array@3.2.4/src/index.js". + */ +export function extractNodeSpecifier(path: string): string { + if (!path.startsWith("/_node/")) throw new Error(`invalid node path: ${path}`); + return path.replace(/^\/_node\//, ""); +} + +/** + * React (and its dependencies) are distributed as CommonJS modules, and worse, + * they’re incompatible with cjs-module-lexer; so when we try to import them as + * ES modules we only see a default export. We fix this by creating a shim + * module that exports everything that is visible to require. I hope the React + * team distributes ES modules soon… + * + * https://github.com/facebook/react/issues/11503 + */ +function isBadCommonJs(specifier: string): boolean { + const {name} = parseNpmSpecifier(specifier); + return name === "react" || name === "react-dom" || name === "react-is" || name === "scheduler"; +} + +function shimCommonJs(specifier: string, require: NodeRequire): string { + return `export {${Object.keys(require(specifier))}} from ${annotatePath(specifier)};\n`; +} + +async function bundle( + path: string, + input: string, + require: NodeRequire, + cacheRoot: string, + packageRoot: string +): Promise { + const bundle = await rollup({ + input: isBadCommonJs(input) ? "-" : input, + plugins: [ + ...(isBadCommonJs(input) ? [(virtual as any)({"-": shimCommonJs(input, require)})] : []), + importResolve(input, cacheRoot, packageRoot), + nodeResolve({browser: true, rootDir: packageRoot}), + (json as any)(), + (commonjs as any)({ + esmExternals: true, + requireReturnsDefault: "preferred" + }), + esbuild({ + format: "esm", + platform: "browser", + target: ["es2022", "chrome96", "firefox96", "safari16", "node18"], + exclude: [], // don’t exclude node_modules + define: {"process.env.NODE_ENV": JSON.stringify("production")}, + minify: true + }) + ], + external(source) { + return source.startsWith("/_node/"); + }, + onwarn(message, warn) { + if (message.code === "CIRCULAR_DEPENDENCY") return; + warn(message); + } + }); + try { + const output = await bundle.generate({format: "es", exports: "named"}); + const code = output.output.find((o): o is OutputChunk => o.type === "chunk")!.code; + return rewriteNpmImports(code, (i) => (i.startsWith("/_node/") ? relativePath(path, i) : i)); + } finally { + await bundle.close(); + } +} + +function importResolve(input: string, cacheRoot: string, packageRoot: string): Plugin { + async function resolve(specifier: string | AstNode): Promise { + return typeof specifier !== "string" || // AST node? + isNodeBuiltin(specifier) || // node built-in, e.g., "node:fs" or "fs" + isPathImport(specifier) || // relative path, e.g., ./foo.js + /^\0?[\w-]+:/.test(specifier) || // windows file path, https: URL, \x00node-resolve:, etc. + specifier === input // entry point + ? null // don’t do any additional resolution + : {id: await resolveNodeImportInternal(cacheRoot, packageRoot, specifier), external: true}; // resolve bare import + } + return { + name: "resolve-import", + resolveId: resolve, + resolveDynamicImport: resolve + }; +} + +export function isNodeBuiltin(specifier: string): boolean { + return specifier.startsWith("node:") || nodeBuiltins.has(specifier.replace(/\/.*/, "")); +} + +// https://github.com/evanw/esbuild/blob/9d1777f23d9b64c186345223d92f319e59388d8b/internal/resolver/resolver.go#L2802-L2874 +const nodeBuiltins = new Set([ + "_http_agent", + "_http_client", + "_http_common", + "_http_incoming", + "_http_outgoing", + "_http_server", + "_stream_duplex", + "_stream_passthrough", + "_stream_readable", + "_stream_transform", + "_stream_wrap", + "_stream_writable", + "_tls_common", + "_tls_wrap", + "assert", + "async_hooks", + "buffer", + "child_process", + "cluster", + "console", + "constants", + "crypto", + "dgram", + "diagnostics_channel", + "dns", + "domain", + "events", + "fs", + "http", + "http2", + "https", + "inspector", + "module", + "net", + "os", + "path", + "perf_hooks", + "process", + "punycode", + "querystring", + "readline", + "repl", + "stream", + "string_decoder", + "sys", + "timers", + "tls", + "trace_events", + "tty", + "url", + "util", + "v8", + "vm", + "wasi", + "worker_threads", + "zlib" +]); diff --git a/src/npm.ts b/src/npm.ts new file mode 100644 index 000000000..7005e628a --- /dev/null +++ b/src/npm.ts @@ -0,0 +1,326 @@ +import {existsSync} from "node:fs"; +import {mkdir, readFile, readdir, writeFile} from "node:fs/promises"; +import {dirname, extname, join} from "node:path/posix"; +import type {CallExpression} from "acorn"; +import {simple} from "acorn-walk"; +import {maxSatisfying, rsort, satisfies, validRange} from "semver"; +import {DUCKDB_WASM_VERSION} from "./duckdb.js"; +import {isEnoent} from "./error.js"; +import {annotatePath} from "./javascript/annotate.js"; +import type {ExportNode, ImportNode, ImportReference} from "./javascript/imports.js"; +import {isImportMetaResolve, parseImports} from "./javascript/imports.js"; +import {parseProgram} from "./javascript/parse.js"; +import type {StringLiteral} from "./javascript/source.js"; +import {getStringLiteralValue, isStringLiteral} from "./javascript/source.js"; +import {relativePath} from "./path.js"; +import {Sourcemap} from "./sourcemap.js"; +import {faint, yellow} from "./tty.js"; + +export interface NpmSpecifier { + name: string; + range?: string; + path?: string; +} + +export function parseNpmSpecifier(specifier: string): NpmSpecifier { + const parts = specifier.split("/"); + const namerange = specifier.startsWith("@") ? [parts.shift()!, parts.shift()!].join("/") : parts.shift()!; + const ranged = namerange.indexOf("@", 1); + return { + name: ranged > 0 ? namerange.slice(0, ranged) : namerange, + range: ranged > 0 ? namerange.slice(ranged + 1) : undefined, + path: parts.length > 0 ? parts.join("/") : undefined + }; +} + +export function formatNpmSpecifier({name, range, path}: NpmSpecifier): string { + return `${name}${range ? `@${range}` : ""}${path ? `/${path}` : ""}`; +} + +/** Rewrites /npm/ import specifiers to be relative paths to /_npm/. */ +export function rewriteNpmImports(input: string, resolve: (s: string) => string | void = () => undefined): string { + const body = parseProgram(input); + const output = new Sourcemap(input); + + simple(body, { + ImportDeclaration: rewriteImport, + ImportExpression: rewriteImport, + ExportAllDeclaration: rewriteImport, + ExportNamedDeclaration: rewriteImport, + CallExpression: rewriteImportMetaResolve + }); + + function rewriteImport(node: ImportNode | ExportNode) { + if (node.source && isStringLiteral(node.source)) { + rewriteImportSource(node.source); + } + } + + function rewriteImportMetaResolve(node: CallExpression) { + if (isImportMetaResolve(node) && isStringLiteral(node.arguments[0])) { + rewriteImportSource(node.arguments[0]); + } + } + + function rewriteImportSource(source: StringLiteral) { + const value = getStringLiteralValue(source); + const resolved = resolve(value); + if (resolved === undefined || value === resolved) return; + output.replaceLeft(source.start, source.end, annotatePath(resolved)); + } + + // TODO Preserve the source map, but download it too. + return String(output).replace(/^\/\/# sourceMappingURL=.*$\n?/m, ""); +} + +const npmRequests = new Map>(); + +/** Note: path must start with "/_npm/". */ +export async function populateNpmCache(root: string, path: string): Promise { + if (!path.startsWith("/_npm/")) throw new Error(`invalid npm path: ${path}`); + const outputPath = join(root, ".observablehq", "cache", path); + if (existsSync(outputPath)) return outputPath; + let promise = npmRequests.get(outputPath); + if (promise) return promise; // coalesce concurrent requests + promise = (async () => { + let specifier = extractNpmSpecifier(path); + const s = parseNpmSpecifier(specifier); + // https://github.com/sql-js/sql.js/issues/284 + if (s.name === "sql.js" && s.path === "+esm") { + specifier = formatNpmSpecifier({...s, path: "dist/sql-wasm.js"}); + } + const href = `https://cdn.jsdelivr.net/npm/${specifier}`; + console.log(`npm:${specifier} ${faint("→")} ${outputPath}`); + const response = await fetch(href); + if (!response.ok) throw new Error(`unable to fetch: ${href}`); + await mkdir(dirname(outputPath), {recursive: true}); + if (/^application\/javascript(;|$)/i.test(response.headers.get("content-type")!)) { + let source = await response.text(); + if (s.name === "sql.js" && s.path === "+esm") { + source = "var module;\n" + source + "\nexport default initSqlJs;"; + } + const resolver = await getDependencyResolver(root, path, source); + await writeFile(outputPath, rewriteNpmImports(source, resolver), "utf-8"); + } else { + await writeFile(outputPath, Buffer.from(await response.arrayBuffer())); + } + return outputPath; + })(); + promise.catch(console.error).then(() => npmRequests.delete(outputPath)); + npmRequests.set(outputPath, promise); + return promise; +} + +/** + * Returns an import resolver for rewriting an npm module from jsDelivr, + * replacing /npm/ import specifiers with relative paths, and re-resolving + * versions against the module’s package.json file. (jsDeliver bakes-in the + * exact version the first time a module is built and doesn’t update it when a + * new version of a dependency is published; we always want to import the latest + * version to ensure that we don’t load duplicate copies of transitive + * dependencies at different versions.) + */ +export async function getDependencyResolver( + root: string, + path: string, + input: string +): Promise<(specifier: string) => string> { + const body = parseProgram(input); + const dependencies = new Set(); + const {name, range} = parseNpmSpecifier(extractNpmSpecifier(path)); + + simple(body, { + ImportDeclaration: findImport, + ImportExpression: findImport, + ExportAllDeclaration: findImport, + ExportNamedDeclaration: findImport, + CallExpression: findImportMetaResolve + }); + + function findImport(node: ImportNode | ExportNode) { + if (node.source && isStringLiteral(node.source)) { + findImportSource(node.source); + } + } + + function findImportMetaResolve(node: CallExpression) { + if (isImportMetaResolve(node) && isStringLiteral(node.arguments[0])) { + findImportSource(node.arguments[0]); + } + } + + function findImportSource(source: StringLiteral) { + const value = getStringLiteralValue(source); + if (value.startsWith("/npm/")) { + const {name: depName, range: depRange} = parseNpmSpecifier(value.slice("/npm/".length)); + if (depName === name) return; // ignore self-references, e.g. mermaid plugin + if (depRange && existsSync(join(root, ".observablehq", "cache", "_npm", `${depName}@${depRange}`))) return; // already resolved + dependencies.add(value); + } + } + + const resolutions = new Map(); + + // If there are dependencies to resolve, load the package.json and use the semver + // range there instead of the (stale) resolution that jsDelivr provides. + if (dependencies.size > 0) { + const pkgPath = await populateNpmCache(root, `/_npm/${name}@${range}/package.json`); + const pkg = JSON.parse(await readFile(pkgPath, "utf-8")); + for (const dependency of dependencies) { + const {name: depName, path: depPath = "+esm"} = parseNpmSpecifier(dependency.slice("/npm/".length)); + const range = + (name === "arquero" || name === "@uwdata/mosaic-core" || name === "@duckdb/duckdb-wasm") && depName === "apache-arrow" // prettier-ignore + ? "latest" // force Arquero, Mosaic & DuckDB-Wasm to use the (same) latest version of Arrow + : name === "@uwdata/mosaic-core" && depName === "@duckdb/duckdb-wasm" + ? DUCKDB_WASM_VERSION // force Mosaic to use the latest (stable) version of DuckDB-Wasm + : pkg.dependencies?.[depName] ?? + pkg.devDependencies?.[depName] ?? + pkg.peerDependencies?.[depName] ?? + void console.warn(yellow(`${depName} is an undeclared dependency of ${name}; resolving latest version`)); + resolutions.set(dependency, await resolveNpmImport(root, `${depName}${range ? `@${range}` : ""}/${depPath}`)); + } + } + + return (specifier: string) => { + if (!specifier.startsWith("/npm/")) return specifier; + if (resolutions.has(specifier)) specifier = resolutions.get(specifier)!; + else specifier = fromJsDelivrPath(specifier); + return relativePath(path, specifier); + }; +} + +export async function initializeNpmVersionCache(root: string, dir = "_npm"): Promise> { + const cache = new Map(); + const cacheDir = join(root, ".observablehq", "cache", dir); + try { + for (const entry of await readdir(cacheDir)) { + if (entry.startsWith("@")) { + for (const subentry of await readdir(join(cacheDir, entry))) { + const {name, range} = parseNpmSpecifier(`${entry}/${subentry}`); + const versions = cache.get(name); + if (versions) versions.push(range!); + else cache.set(name, [range!]); + } + } else { + const {name, range} = parseNpmSpecifier(entry); + const versions = cache.get(name); + if (versions) versions.push(range!); + else cache.set(name, [range!]); + } + } + } catch (error) { + if (!isEnoent(error)) throw error; + } + for (const [key, value] of cache) { + cache.set(key, rsort(value)); + } + return cache; +} + +const npmVersionCaches = new Map>>(); +const npmVersionRequests = new Map>(); + +function getNpmVersionCache(root: string): Promise> { + let cache = npmVersionCaches.get(root); + if (!cache) npmVersionCaches.set(root, (cache = initializeNpmVersionCache(root, "_npm"))); + return cache; +} + +async function resolveNpmVersion(root: string, {name, range}: NpmSpecifier): Promise { + if (range && /^\d+\.\d+\.\d+([-+].*)?$/.test(range)) return range; // exact version specified + const cache = await getNpmVersionCache(root); + const versions = cache.get(name); + if (versions) for (const version of versions) if (!range || satisfies(version, range)) return version; + if (range === undefined) range = "latest"; + const disttag = validRange(range) ? null : range; + const href = `https://registry.npmjs.org/${name}${disttag ? `/${disttag}` : ""}`; + let promise = npmVersionRequests.get(href); + if (promise) return promise; // coalesce concurrent requests + promise = (async function () { + const input = formatNpmSpecifier({name, range}); + process.stdout.write(`npm:${input} ${faint("→")} `); + const response = await fetch(href, {...(!disttag && {headers: {Accept: "application/vnd.npm.install-v1+json"}})}); + if (!response.ok) throw new Error(`unable to fetch: ${href}`); + const body = await response.json(); + const version = disttag ? body.version : maxSatisfying(Object.keys(body.versions), range); + if (!version) throw new Error(`unable to resolve version: ${input}`); + const output = formatNpmSpecifier({name, range: version}); + process.stdout.write(`npm:${output}\n`); + cache.set(name, versions ? rsort(versions.concat(version)) : [version]); + mkdir(join(root, ".observablehq", "cache", "_npm", output), {recursive: true}); // disk cache + return version; + })(); + promise.catch(console.error).then(() => npmVersionRequests.delete(href)); + npmVersionRequests.set(href, promise); + return promise; +} + +export async function resolveNpmImport(root: string, specifier: string): Promise { + const { + name, + range = name === "@duckdb/duckdb-wasm" ? DUCKDB_WASM_VERSION : undefined, + path = name === "mermaid" + ? "dist/mermaid.esm.min.mjs/+esm" + : name === "echarts" + ? "dist/echarts.esm.min.js/+esm" + : name === "jquery-ui" + ? "dist/jquery-ui.js/+esm" + : name === "deck.gl" + ? "dist.min.js/+esm" + : "+esm" + } = parseNpmSpecifier(specifier); + const version = await resolveNpmVersion(root, {name, range}); + return `/_npm/${name}@${version}/${ + extname(path) || // npm:foo/bar.js or npm:foo/bar.css + path === "" || // npm:foo/ + path.endsWith("/") // npm:foo/bar/ + ? path + : path === "+esm" // npm:foo/+esm + ? "_esm.js" + : path.replace(/(?:\/\+esm)?$/, "._esm.js") // npm:foo/bar or npm:foo/bar/+esm + }`; +} + +/** + * Resolves the direct dependencies of the specified npm path, such as + * "/_npm/d3@7.8.5/_esm.js", returning the corresponding set of npm paths. + */ +export async function resolveNpmImports(root: string, path: string): Promise { + if (!path.startsWith("/_npm/")) throw new Error(`invalid npm path: ${path}`); + await populateNpmCache(root, path); + return parseImports(join(root, ".observablehq", "cache"), path); +} + +/** + * Given a local npm path such as "/_npm/d3@7.8.5/_esm.js", returns the + * corresponding npm specifier such as "d3@7.8.5/+esm". For example: + * + * /_npm/mime@4.0.1/_esm.js → mime@4.0.1/+esm + * /_npm/mime@4.0.1/lite._esm.js → mime@4.0.1/lite/+esm + * /_npm/mime@4.0.1/lite.js._esm.js → mime@4.0.1/lite.js/+esm + */ +export function extractNpmSpecifier(path: string): string { + if (!path.startsWith("/_npm/")) throw new Error(`invalid npm path: ${path}`); + const parts = path.split("/"); // ["", "_npm", "mime@4.0.1", "lite.js._esm.js"] + const i = parts[2].startsWith("@") ? 4 : 3; // test for scoped package + const namever = parts.slice(2, i).join("/"); // "mime@4.0.1" or "@observablehq/inputs@0.10.6" + const subpath = parts.slice(i).join("/"); // "_esm.js" or "lite._esm.js" or "lite.js._esm.js" + return `${namever}/${subpath === "_esm.js" ? "+esm" : subpath.replace(/\._esm\.js$/, "/+esm")}`; +} + +/** + * Given a jsDelivr path such as "/npm/d3@7.8.5/+esm", returns the corresponding + * local path such as "/_npm/d3@7.8.5/_esm.js". For example: + * + * /npm/mime@4.0.1/+esm → /_npm/mime@4.0.1/_esm.js + * /npm/mime@4.0.1/lite/+esm → /_npm/mime@4.0.1/lite._esm.js + * /npm/mime@4.0.1/lite.js/+esm → /_npm/mime@4.0.1/lite.js._esm.js + */ +export function fromJsDelivrPath(path: string): string { + if (!path.startsWith("/npm/")) throw new Error(`invalid jsDelivr path: ${path}`); + const parts = path.split("/"); // e.g. ["", "npm", "mime@4.0.1", "lite", "+esm"] + const i = parts[2].startsWith("@") ? 4 : 3; // test for scoped package + const namever = parts.slice(2, i).join("/"); // "mime@4.0.1" or "@observablehq/inputs@0.10.6" + const subpath = parts.slice(i).join("/"); // "+esm" or "lite/+esm" or "lite.js/+esm" + return `/_npm/${namever}/${subpath === "+esm" ? "_esm.js" : subpath.replace(/\/\+esm$/, "._esm.js")}`; +} diff --git a/src/observableApiAuth.ts b/src/observableApiAuth.ts index 8ae85367e..b765378a3 100644 --- a/src/observableApiAuth.ts +++ b/src/observableApiAuth.ts @@ -1,22 +1,23 @@ import os from "node:os"; -import * as clack from "@clack/prompts"; import type {ClackEffects} from "./clack.js"; import {commandInstruction, commandRequiresAuthenticationMessage} from "./commandInstruction.js"; import {CliError, isHttpError} from "./error.js"; import type {GetCurrentUserResponse, PostAuthRequestPollResponse} from "./observableApiClient.js"; import {ObservableApiClient, getObservableUiOrigin} from "./observableApiClient.js"; -import type {ConfigEffects} from "./observableApiConfig.js"; +import type {ApiKey, ConfigEffects} from "./observableApiConfig.js"; import { - type ApiKey, defaultEffects as defaultConfigEffects, getObservableApiKey, setObservableApiKey } from "./observableApiConfig.js"; +import {Telemetry} from "./telemetry.js"; import type {TtyEffects} from "./tty.js"; -import {bold, defaultEffects as defaultTtyEffects, inverse, link, yellow} from "./tty.js"; +import {bold, defaultEffects as defaultTtyEffects, faint, inverse, link, yellow} from "./tty.js"; const OBSERVABLE_UI_ORIGIN = getObservableUiOrigin(); +export const VALID_TIERS = new Set(["starter_2024", "pro_2024", "enterprise_2024"]); + /** Actions this command needs to take wrt its environment that may need mocked out. */ export interface AuthEffects extends ConfigEffects, TtyEffects { clack: ClackEffects; @@ -28,19 +29,20 @@ export interface AuthEffects extends ConfigEffects, TtyEffects { export const defaultEffects: AuthEffects = { ...defaultConfigEffects, ...defaultTtyEffects, - clack, getObservableApiKey, setObservableApiKey, exitSuccess: () => process.exit(0) }; -export async function login(effects: AuthEffects = defaultEffects) { - effects.clack.intro(inverse(" observable login ")); +export async function login(effects: AuthEffects = defaultEffects, overrides = {}) { + const {clack} = effects; + Telemetry.record({event: "login", step: "start"}); + clack.intro(`${inverse(" observable login ")} ${faint(`v${process.env.npm_package_version}`)}`); - const {currentUser} = await loginInner(effects); + const {currentUser} = await loginInner(effects, overrides); if (currentUser.workspaces.length === 0) { - effects.clack.log.warn(`${yellow("Warning:")} You don't have any workspaces to deploy to.`); + clack.log.warn(`${yellow("Warning:")} You don't have any workspaces to deploy to.`); } else if (currentUser.workspaces.length > 1) { clack.note( [ @@ -50,12 +52,16 @@ export async function login(effects: AuthEffects = defaultEffects) { ].join("\n") ); } - - effects.clack.outro(); + clack.outro("Logged in"); + Telemetry.record({event: "login", step: "finish"}); } -export async function loginInner(effects: AuthEffects): Promise<{currentUser: GetCurrentUserResponse; apiKey: ApiKey}> { - const apiClient = new ObservableApiClient(); +export async function loginInner( + effects: AuthEffects, + {pollTime = 1000} = {} +): Promise<{currentUser: GetCurrentUserResponse; apiKey: ApiKey}> { + const {clack} = effects; + const apiClient = new ObservableApiClient({clack}); const requestInfo = await apiClient.postAuthRequest({ scopes: ["projects:deploy", "projects:create"], deviceDescription: os.hostname() @@ -63,15 +69,16 @@ export async function loginInner(effects: AuthEffects): Promise<{currentUser: Ge const confirmUrl = new URL("/auth-device", OBSERVABLE_UI_ORIGIN); confirmUrl.searchParams.set("code", requestInfo.confirmationCode); - effects.clack.log.step( + clack.log.step( `Your confirmation code is ${bold(yellow(requestInfo.confirmationCode))}\n` + `Open ${link(confirmUrl)}\nin your browser, and confirm the code matches.` ); - const spinner = effects.clack.spinner(); + const spinner = clack.spinner(); spinner.start("Waiting for confirmation..."); let apiKey: PostAuthRequestPollResponse["apiKey"] | null = null; while (apiKey === null) { + await new Promise((resolve) => setTimeout(resolve, pollTime)); const requestPoll = await apiClient.postAuthRequestPoll(requestInfo.id); switch (requestPoll.status) { case "pending": @@ -81,35 +88,43 @@ export async function loginInner(effects: AuthEffects): Promise<{currentUser: Ge break; case "expired": spinner.stop("Failed to confirm code.", 2); + Telemetry.record({event: "login", step: "error", code: "expired"}); throw new CliError("That confirmation code expired."); case "consumed": spinner.stop("Failed to confirm code.", 2); + Telemetry.record({event: "login", step: "error", code: "consumed"}); throw new CliError("That confirmation code has already been used."); default: spinner.stop("Failed to confirm code.", 2); + Telemetry.record({event: "login", step: "error", code: `unknown-${requestPoll.status}`}); throw new CliError(`Received an unknown polling status ${requestPoll.status}.`); } - await new Promise((resolve) => setTimeout(resolve, 1000)); } - if (!apiKey) throw new CliError("No API key returned from server."); + if (!apiKey) { + Telemetry.record({event: "login", step: "error", code: "no-key"}); + throw new CliError("No API key returned from server."); + } await effects.setObservableApiKey(apiKey); apiClient.setApiKey({source: "login", key: apiKey.key}); - const currentUser = await apiClient.getCurrentUser(); + let currentUser = await apiClient.getCurrentUser(); + currentUser = {...currentUser, workspaces: validWorkspaces(currentUser.workspaces)}; spinner.stop(`You are logged into ${OBSERVABLE_UI_ORIGIN.hostname} as ${formatUser(currentUser)}.`); return {currentUser, apiKey: {...apiKey, source: "login"}}; } export async function logout(effects = defaultEffects) { + const {logger} = effects; await effects.setObservableApiKey(null); + logger.log(`You are now logged out of ${OBSERVABLE_UI_ORIGIN.hostname}.`); } export async function whoami(effects = defaultEffects) { const {logger} = effects; const apiKey = await effects.getObservableApiKey(effects); if (!apiKey) throw new CliError(commandRequiresAuthenticationMessage); - const apiClient = new ObservableApiClient({apiKey}); + const apiClient = new ObservableApiClient({apiKey, clack: effects.clack}); try { const user = await apiClient.getCurrentUser(); @@ -139,3 +154,16 @@ export async function whoami(effects = defaultEffects) { export function formatUser(user: {name?: string; login: string}): string { return user.name ? `${user.name} (@${user.login})` : `@${user.login}`; } + +export function validWorkspaces( + workspaces: GetCurrentUserResponse["workspaces"] +): GetCurrentUserResponse["workspaces"] { + return workspaces.filter( + (w) => + VALID_TIERS.has(w.tier) && + (w.role === "owner" || + w.role === "member" || + (w.role === "guest_member" && + w.projects_info.some((info) => info.project_role === "owner" || info.project_role === "editor"))) + ); +} diff --git a/src/observableApiClient.ts b/src/observableApiClient.ts index 0ba23f62c..ccd6eddc5 100644 --- a/src/observableApiClient.ts +++ b/src/observableApiClient.ts @@ -1,9 +1,13 @@ import fs from "node:fs/promises"; -import packageJson from "../package.json"; +import type {BuildManifest} from "./build.js"; +import type {ClackEffects} from "./clack.js"; import {CliError, HttpError, isApiError} from "./error.js"; +import {formatByteSize} from "./format.js"; import type {ApiKey} from "./observableApiConfig.js"; import {faint, red} from "./tty.js"; +const MIN_RATE_LIMIT_RETRY_AFTER = 1; + export function getObservableUiOrigin(env = process.env): URL { const urlText = env["OBSERVABLE_ORIGIN"] ?? "https://observablehq.com"; try { @@ -28,17 +32,26 @@ export function getObservableApiOrigin(env = process.env): URL { return uiOrigin; } +export type ObservableApiClientOptions = { + apiOrigin?: URL; + apiKey?: ApiKey; + clack: ClackEffects; +}; + export class ObservableApiClient { private _apiHeaders: Record; private _apiOrigin: URL; + private _clack: ClackEffects; + private _rateLimit: null | Promise = null; - constructor({apiKey, apiOrigin = getObservableApiOrigin()}: {apiOrigin?: URL; apiKey?: ApiKey} = {}) { + constructor({apiKey, apiOrigin = getObservableApiOrigin(), clack}: ObservableApiClientOptions) { this._apiOrigin = apiOrigin; this._apiHeaders = { Accept: "application/json", - "User-Agent": `Observable Framework ${packageJson.version}`, + "User-Agent": `Observable Framework ${process.env.npm_package_version}`, "X-Observable-Api-Version": "2023-12-06" }; + this._clack = clack; if (apiKey) this.setApiKey(apiKey); } @@ -48,14 +61,27 @@ export class ObservableApiClient { private async _fetch(url: URL, options: RequestInit): Promise { let response; + const doFetch = async () => await fetch(url, {...options, headers: {...this._apiHeaders, ...options.headers}}); try { - response = await fetch(url, {...options, headers: {...this._apiHeaders, ...options.headers}}); + response = await doFetch(); } catch (error) { // Check for undici failures and print them in a way that shows more details. Helpful in tests. if (error instanceof Error && error.message === "fetch failed") console.error(error); throw error; } + if (response.status === 429) { + // rate limit + if (this._rateLimit === null) { + let retryAfter = +response.headers.get("Retry-After"); + if (isNaN(retryAfter) || retryAfter < MIN_RATE_LIMIT_RETRY_AFTER) retryAfter = MIN_RATE_LIMIT_RETRY_AFTER; + this._clack.log.warn(`Hit server rate limit. Waiting for ${retryAfter} seconds.`); + this._rateLimit = new Promise((resolve) => setTimeout(resolve, retryAfter * 1000)); + } + await this._rateLimit; + response = await doFetch(); + } + if (!response.ok) { let details = await response.text(); try { @@ -63,9 +89,11 @@ export class ObservableApiClient { } catch (error) { // that's ok } - const error = new HttpError(`Unexpected response status ${JSON.stringify(response.status)}`, response.status, { - details - }); + const error = new HttpError( + `Unexpected response status ${JSON.stringify(response.status)} for ${options.method ?? "GET"} ${url.href}`, + response.status, + {details} + ); // check for version mismatch if ( @@ -102,24 +130,18 @@ export class ObservableApiClient { async postProject({ title, slug, - workspaceId + workspaceId, + accessLevel }: { title: string; slug: string; workspaceId: string; + accessLevel: string; }): Promise { return await this._fetch(new URL("/cli/project", this._apiOrigin), { method: "POST", headers: {"Content-Type": "application/json"}, - body: JSON.stringify({title, slug, workspace: workspaceId}) - }); - } - - async postEditProject(projectId: string, updates: PostEditProjectRequest): Promise { - return await this._fetch(new URL(`/cli/project/${projectId}/edit`, this._apiOrigin), { - method: "POST", - headers: {"content-type": "application/json"}, - body: JSON.stringify({...updates}) + body: JSON.stringify({title, slug, workspace: workspaceId, accessLevel}) }); } @@ -157,14 +179,29 @@ export class ObservableApiClient { const blob = new Blob([contents]); body.append("file", blob); body.append("client_name", relativePath); - await this._fetch(url, {method: "POST", body}); + try { + await this._fetch(url, {method: "POST", body}); + } catch (error) { + const message = error instanceof Error ? error.message : `${error}`; + throw new CliError(`While uploading ${relativePath} (${formatByteSize(contents.length)}): ${message}`, { + cause: error + }); + } } - async postDeployUploaded(deployId: string): Promise { + async postDeployManifest(deployId: string, files: DeployManifestFile[]): Promise { + return await this._fetch(new URL(`/cli/deploy/${deployId}/manifest`, this._apiOrigin), { + method: "POST", + headers: {"content-type": "application/json"}, + body: JSON.stringify({files}) + }); + } + + async postDeployUploaded(deployId: string, buildManifest: BuildManifest | null): Promise { return await this._fetch(new URL(`/cli/deploy/${deployId}/uploaded`, this._apiOrigin), { method: "POST", headers: {"content-type": "application/json"}, - body: "{}" + body: JSON.stringify(buildManifest) }); } @@ -185,10 +222,6 @@ export class ObservableApiClient { } } -export interface PostEditProjectRequest { - title?: string; -} - export interface PostEditProjectResponse { id: string; slug: string; @@ -204,18 +237,29 @@ export interface GetCurrentUserResponse { workspaces: WorkspaceResponse[]; } +type Role = "owner" | "member" | "viewer" | "guest_member" | "guest_viewer"; + +type ProjectRole = "owner" | "editor" | "viewer"; + +type ProjectInfo = { + project_slug: string; + project_role: ProjectRole; +}; + export interface WorkspaceResponse { id: string; login: string; name: string; tier: string; type: string; - role: string; + role: Role; + projects_info: ProjectInfo[]; } export type PostProjectResponse = GetProjectResponse; export interface GetProjectResponse { + accessLevel: string; id: string; slug: string; title: string; @@ -258,3 +302,19 @@ export interface GetDeployResponse { status: string; url: string; } + +export interface DeployManifestFile { + path: string; + size: number; + hash: string; +} + +export interface PostDeployManifestResponse { + status: "ok" | "error"; + detail: string | null; + files: { + path: string; + status: "upload" | "skip" | "error"; + detail: string | null; + }[]; +} diff --git a/src/observableApiConfig.ts b/src/observableApiConfig.ts index 54738bd0d..59470c9d6 100644 --- a/src/observableApiConfig.ts +++ b/src/observableApiConfig.ts @@ -1,6 +1,6 @@ import fs from "node:fs/promises"; import os from "node:os"; -import path from "node:path"; +import op from "node:path"; import {CliError, isEnoent} from "./error.js"; export interface ConfigEffects { @@ -24,6 +24,7 @@ export const defaultEffects: ConfigEffects = { }; const userConfigName = ".observablehq"; + interface UserConfig { auth?: { id: string; @@ -65,11 +66,16 @@ export async function setObservableApiKey(info: null | {id: string; key: string} await writeUserConfig({config, configPath}); } +function getDefaultDeployConfigPath(sourceRoot: string, effects: ConfigEffects): string { + return op.join(effects.cwd(), sourceRoot, ".observablehq", "deploy.json"); +} + export async function getDeployConfig( sourceRoot: string, + deployConfigPath?: string | undefined, effects: ConfigEffects = defaultEffects ): Promise { - const deployConfigPath = path.join(effects.cwd(), sourceRoot, ".observablehq", "deploy.json"); + if (deployConfigPath === undefined) deployConfigPath = getDefaultDeployConfigPath(sourceRoot, effects); let config: object | null = null; try { const content = await effects.readFile(deployConfigPath, "utf8"); @@ -90,27 +96,27 @@ export async function getDeployConfig( export async function setDeployConfig( sourceRoot: string, + deployConfigPath: string | undefined, newConfig: DeployConfig, effects: ConfigEffects = defaultEffects ): Promise { - const dir = path.join(effects.cwd(), sourceRoot, ".observablehq"); - const deployConfigPath = path.join(dir, "deploy.json"); - const oldConfig = (await getDeployConfig(sourceRoot)) || {}; + if (deployConfigPath === undefined) deployConfigPath = getDefaultDeployConfigPath(sourceRoot, effects); + const oldConfig = await getDeployConfig(sourceRoot, deployConfigPath); const merged = {...oldConfig, ...newConfig}; - await effects.mkdir(dir, {recursive: true}); + await effects.mkdir(op.dirname(deployConfigPath), {recursive: true}); await effects.writeFile(deployConfigPath, JSON.stringify(merged, null, 2) + "\n"); } export async function loadUserConfig( effects: ConfigEffects = defaultEffects ): Promise<{configPath: string; config: UserConfig}> { - const homeConfigPath = path.join(effects.homedir(), userConfigName); + const homeConfigPath = op.join(effects.homedir(), userConfigName); function* pathsToTry(): Generator { - let cursor = path.resolve(effects.cwd()); + let cursor = op.resolve(effects.cwd()); while (true) { - yield path.join(cursor, userConfigName); - const nextCursor = path.dirname(cursor); + yield op.join(cursor, userConfigName); + const nextCursor = op.dirname(cursor); if (nextCursor === cursor) break; cursor = nextCursor; } diff --git a/src/pager.ts b/src/pager.ts index 6a82c5860..aa3f6f792 100644 --- a/src/pager.ts +++ b/src/pager.ts @@ -12,24 +12,26 @@ export function normalizePath(path: string): string { return path.replace(/[?#].*$/, ""); } -export function findLink(path: string, options: Pick = {pages: []}): PageLink | undefined { - const {pages, title} = options; +export function findLink(path: string, config: Config): PageLink | undefined { + const {pages} = config; let links = linkCache.get(pages); if (!links) { links = new Map(); - let prev: Page | undefined; - for (const page of walk(pages, title)) { - const path = normalizePath(page.path); - if (links.has(path)) { - console.warn(`ignoring duplicate page: ${page.path}`); - } else { - if (prev) { - links.set(path, {prev, next: undefined}); - links.get(normalizePath(prev.path))!.next = page; + for (const pageGroup of walk(config)) { + let prev: Page | undefined; + for (const page of pageGroup) { + const path = normalizePath(page.path); + if (links.has(path)) { + console.warn(`ignoring duplicate page: ${page.path}`); } else { - links.set(path, {prev: undefined, next: undefined as unknown as Page}); // next set lazily + if (prev) { + links.set(path, {prev, next: undefined}); + links.get(normalizePath(prev.path))!.next = page; + } else { + links.set(path, {prev: undefined, next: undefined as unknown as Page}); // next set lazily + } + prev = page; } - prev = page; } } if (links.size === 1) links.clear(); // no links if only one page @@ -38,12 +40,37 @@ export function findLink(path: string, options: Pick return links.get(path); } -// Walks the unique pages in the site so as to avoid creating cycles. Implicitly -// adds a link at the beginning to the home page (/index). -function* walk(pages: Config["pages"], title = "Home", visited = new Set()): Generator { - if (!visited.has("/index")) yield (visited.add("/index"), {name: title, path: "/index"}); +/** + * Walks the unique pages in the site so as to avoid creating cycles. Implicitly + * adds a link at the beginning to the home page (/index). + */ +function walk(config: Config): Iterable> { + const {pages, loaders, title = "Home"} = config; + const pageGroups = new Map(); + const visited = new Set(); + + function visit(page: Page) { + if (visited.has(page.path) || !page.pager) return; + visited.add(page.path); + let pageGroup = pageGroups.get(page.pager); + if (!pageGroup) pageGroups.set(page.pager, (pageGroup = [])); + pageGroup.push(page); + } + + if (loaders.findPage("/index")) visit({name: title, path: "/index", pager: "main"}); + for (const page of pages) { - if ("pages" in page) yield* walk(page.pages, title, visited); - else if (!visited.has(page.path)) yield (visited.add(page.path), page); + if (page.path !== null) visit(page as Page); + if ("pages" in page) for (const p of page.pages) visit(p); + } + + return pageGroups.values(); +} + +export function* getPagePaths(config: Config): Generator { + for (const pageGroup of walk(config)) { + for (const page of pageGroup) { + yield page.path; + } } } diff --git a/src/path.ts b/src/path.ts new file mode 100644 index 000000000..5dc315336 --- /dev/null +++ b/src/path.ts @@ -0,0 +1,93 @@ +import op from "node:path"; +import {dirname, join} from "node:path/posix"; + +/** + * Returns the normalized relative path from "/file/path/to/a" to + * "/file/path/of/b". To make relative imports work, paths to the same directory + * are prefixed with "./", and paths that start without a slash are considered + * from the root. + */ +export function relativePath(source: string, target: string): string { + if (/^\w+:/.test(target)) return target; + const from = join("/", source).split(/[/]+/g).slice(0, -1); + const to = join("/", target).split(/[/]+/g); + const f = to.pop()!; + const m = from.length; + const n = Math.min(m, to.length); + let i = 0; + while (i < n && from[i] === to[i]) ++i; + const k = m - i; + return (k ? "../".repeat(k) : "./") + to.slice(i).concat(f).join("/"); +} + +/** + * Returns the path to the specified target within the given source root, which + * defaults to ".", assuming that the target is a relative path such as an + * import or fetch from the specified source. Typically returns a path starting + * with a slash (indicating that it is relative to the source root), but may + * return a path start with dot-dot-slash (../) if the path goes outside the + * specified root (e.g., from _import to _npm). + */ +export function resolvePath(source: string, target: string): string; +export function resolvePath(root: string, source: string, target: string): string; +export function resolvePath(root: string, source: string, target?: string): string { + if (target === undefined) (target = source), (source = root), (root = "."); + const path = join(root, target === "" ? source : target.startsWith("/") ? "." : dirname(source), target); + return path.startsWith("../") ? path : join("/", path); +} + +/** + * Like resolvePath, except returns null if the specified target goes outside + * the source root, and treats paths that start with protocols (e.g., npm:) or + * hashes (e.g., #foo) as non-local paths and likewise returns null. + */ +export function resolveLocalPath(source: string, target: string): string | null { + if (/^\w+:/.test(target)) return null; // URL + if (target.startsWith("#")) return null; // anchor tag + const path = resolvePath(source, target); + if (path.startsWith("../")) return null; // goes above root + return path; +} + +/** + * Returns true if the specified specifier refers to a local path, as opposed to + * a global import from npm or a URL. Local paths start with ./, ../, or /. + */ +export function isPathImport(specifier: string): boolean { + return ["./", "../", "/"].some((prefix) => specifier.startsWith(prefix)); +} + +/** + * Like isPathImport, but more lax; this is used to detect when an HTML element + * such as an image refers to a local asset. Whereas isPathImport requires a + * local path to start with ./, ../, or /, isAssetPath only requires that a + * local path not start with a protocol (e.g., http: or https:) or a hash (#). + */ +export function isAssetPath(specifier: string): boolean { + return !/^(\w+:|#)/.test(specifier); +} + +/** + * Returns the relative path to the specified target from the given source. + */ +export function resolveRelativePath(source: string, target: string): string { + return relativePath(source, resolvePath(source, target)); +} + +export function parseRelativeUrl(url: string): {pathname: string; search: string; hash: string} { + let search: string; + let hash: string; + const i = url.indexOf("#"); + if (i < 0) hash = ""; + else (hash = url.slice(i)), (url = url.slice(0, i)); + const j = url.indexOf("?"); + if (j < 0) search = ""; + else (search = url.slice(j)), (url = url.slice(0, j)); + return {pathname: url, search, hash}; +} + +export function within(root: string, path: string): boolean { + const {relative, normalize, resolve, isAbsolute} = op; + path = relative(normalize(resolve(root)), normalize(resolve(path))); + return !path.startsWith("..") && !isAbsolute(path); +} diff --git a/src/placeholder.ts b/src/placeholder.ts new file mode 100644 index 000000000..d5d29fe0e --- /dev/null +++ b/src/placeholder.ts @@ -0,0 +1,414 @@ +import {Parser, tokTypes} from "acorn"; +import {acornOptions} from "./javascript/parse.js"; + +const CODE_TAB = 9, + CODE_LF = 10, + CODE_FF = 12, + CODE_CR = 13, + CODE_SPACE = 32, + CODE_UPPER_A = 65, + CODE_UPPER_Z = 90, + CODE_LOWER_A = 97, + CODE_LOWER_Z = 122, + CODE_LT = 60, + CODE_GT = 62, + CODE_SLASH = 47, + CODE_DASH = 45, + CODE_BANG = 33, + CODE_EQ = 61, + CODE_DQUOTE = 34, + CODE_SQUOTE = 39, + CODE_QUESTION = 63, + CODE_DOLLAR = 36, + CODE_LBRACE = 123, + CODE_BACKSLASH = 92, + STATE_DATA = 1, + STATE_TAG_OPEN = 2, + STATE_END_TAG_OPEN = 3, + STATE_TAG_NAME = 4, + STATE_BOGUS_COMMENT = 5, + STATE_BEFORE_ATTRIBUTE_NAME = 6, + STATE_AFTER_ATTRIBUTE_NAME = 7, + STATE_ATTRIBUTE_NAME = 8, + STATE_BEFORE_ATTRIBUTE_VALUE = 9, + STATE_ATTRIBUTE_VALUE_DOUBLE_QUOTED = 10, + STATE_ATTRIBUTE_VALUE_SINGLE_QUOTED = 11, + STATE_ATTRIBUTE_VALUE_UNQUOTED = 12, + STATE_AFTER_ATTRIBUTE_VALUE_QUOTED = 13, + STATE_SELF_CLOSING_START_TAG = 14, + STATE_COMMENT_START = 15, + STATE_COMMENT_START_DASH = 16, + STATE_COMMENT = 17, + STATE_COMMENT_LESS_THAN_SIGN = 18, + STATE_COMMENT_LESS_THAN_SIGN_BANG = 19, + STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH = 20, + STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH = 21, + STATE_COMMENT_END_DASH = 22, + STATE_COMMENT_END = 23, + STATE_COMMENT_END_BANG = 24, + STATE_MARKUP_DECLARATION_OPEN = 25, + STATE_RAWTEXT = 26, + STATE_RAWTEXT_LESS_THAN_SIGN = 27, + STATE_RAWTEXT_END_TAG_OPEN = 28, + STATE_RAWTEXT_END_TAG_NAME = 29; + +export interface PlaceholderToken { + type: "html_block" | "placeholder"; + content: string; + pos: number; +} + +export function* parsePlaceholder(input: string, start = 0, end = input.length): Generator { + let state: number | undefined = STATE_DATA; + let tagNameStart: number | undefined; // either an open tag or an end tag + let tagName: string | undefined; // only open; beware nesting! used only for rawtext + let afterDollar = false; // immediately following $? + let afterBackslash = false; // immediately following \? + let content = ""; // accumulated content + let index = start; + + for (let i = start; i < end; ++i) { + const code = input.charCodeAt(i); + + // Detect inline expressions. + if (state === STATE_DATA) { + if (code === CODE_BACKSLASH) { + afterBackslash = true; + } else if (code === CODE_DOLLAR) { + if (afterBackslash) { + content += input.slice(index, (index = i) - 1); + afterBackslash = false; + } else { + afterDollar = true; + } + } else if (afterBackslash) { + afterBackslash = false; + if (afterDollar && code === CODE_LBRACE) { + content += input.slice(index, (index = i) - 1); + } + } else if (afterDollar) { + afterDollar = false; + if (code === CODE_LBRACE) { + const parser = new (Parser as any)(acornOptions, input, i + 1); // private constructor + let braces = 1; + try { + do { + parser.nextToken(); + if (parser.type === tokTypes.braceL || parser.type === tokTypes.dollarBraceL) { + ++braces; + } else if (parser.type === tokTypes.braceR && !--braces) { + if ((content += input.slice(index, i - 1))) { + yield {type: "html_block", content, pos: i - 1}; + content = ""; + } + yield {type: "placeholder", content: input.slice(i + 1, (i = parser.pos - 1)), pos: parser.pos}; + index = parser.pos; + break; + } + } while (parser.type !== tokTypes.eof); + } catch (error) { + if (!(error instanceof SyntaxError)) throw error; + // ignore invalid token (e.g., unterminated template, bad unicode escape) + } + } + } else { + afterBackslash = false; + afterDollar = false; + } + } + + switch (state) { + case STATE_DATA: { + if (code === CODE_LT) { + state = STATE_TAG_OPEN; + } + break; + } + case STATE_TAG_OPEN: { + if (code === CODE_BANG) { + state = STATE_MARKUP_DECLARATION_OPEN; + } else if (code === CODE_SLASH) { + state = STATE_END_TAG_OPEN; + } else if (isAsciiAlphaCode(code)) { + (tagNameStart = i), (tagName = undefined); + (state = STATE_TAG_NAME), --i; + } else if (code === CODE_QUESTION) { + (state = STATE_BOGUS_COMMENT), --i; + } else { + (state = STATE_DATA), --i; + } + break; + } + case STATE_END_TAG_OPEN: { + if (isAsciiAlphaCode(code)) { + (state = STATE_TAG_NAME), --i; + } else if (code === CODE_GT) { + state = STATE_DATA; + } else { + (state = STATE_BOGUS_COMMENT), --i; + } + break; + } + case STATE_TAG_NAME: { + if (isSpaceCode(code)) { + state = STATE_BEFORE_ATTRIBUTE_NAME; + tagName = lower(input, tagNameStart, i); + } else if (code === CODE_SLASH) { + state = STATE_SELF_CLOSING_START_TAG; + } else if (code === CODE_GT) { + tagName = lower(input, tagNameStart, i); + state = isRawText(tagName) ? STATE_RAWTEXT : STATE_DATA; + } + break; + } + case STATE_BEFORE_ATTRIBUTE_NAME: { + if (isSpaceCode(code)) { + // continue + } else if (code === CODE_SLASH || code === CODE_GT) { + (state = STATE_AFTER_ATTRIBUTE_NAME), --i; + } else if (code === CODE_EQ) { + state = STATE_ATTRIBUTE_NAME; + } else { + (state = STATE_ATTRIBUTE_NAME), --i; + } + break; + } + case STATE_ATTRIBUTE_NAME: { + if (isSpaceCode(code) || code === CODE_SLASH || code === CODE_GT) { + (state = STATE_AFTER_ATTRIBUTE_NAME), --i; + } else if (code === CODE_EQ) { + state = STATE_BEFORE_ATTRIBUTE_VALUE; + } + break; + } + case STATE_AFTER_ATTRIBUTE_NAME: { + if (isSpaceCode(code)) { + // ignore + } else if (code === CODE_SLASH) { + state = STATE_SELF_CLOSING_START_TAG; + } else if (code === CODE_EQ) { + state = STATE_BEFORE_ATTRIBUTE_VALUE; + } else if (code === CODE_GT) { + state = isRawText(tagName!) ? STATE_RAWTEXT : STATE_DATA; + } else { + (state = STATE_ATTRIBUTE_NAME), --i; + } + break; + } + case STATE_BEFORE_ATTRIBUTE_VALUE: { + if (isSpaceCode(code)) { + // continue + } else if (code === CODE_DQUOTE) { + state = STATE_ATTRIBUTE_VALUE_DOUBLE_QUOTED; + } else if (code === CODE_SQUOTE) { + state = STATE_ATTRIBUTE_VALUE_SINGLE_QUOTED; + } else if (code === CODE_GT) { + state = isRawText(tagName!) ? STATE_RAWTEXT : STATE_DATA; + } else { + (state = STATE_ATTRIBUTE_VALUE_UNQUOTED), --i; + } + break; + } + case STATE_ATTRIBUTE_VALUE_DOUBLE_QUOTED: { + if (code === CODE_DQUOTE) { + state = STATE_AFTER_ATTRIBUTE_VALUE_QUOTED; + } + break; + } + case STATE_ATTRIBUTE_VALUE_SINGLE_QUOTED: { + if (code === CODE_SQUOTE) { + state = STATE_AFTER_ATTRIBUTE_VALUE_QUOTED; + } + break; + } + case STATE_ATTRIBUTE_VALUE_UNQUOTED: { + if (isSpaceCode(code)) { + state = STATE_BEFORE_ATTRIBUTE_NAME; + } else if (code === CODE_GT) { + state = isRawText(tagName!) ? STATE_RAWTEXT : STATE_DATA; + } + break; + } + case STATE_AFTER_ATTRIBUTE_VALUE_QUOTED: { + if (isSpaceCode(code)) { + state = STATE_BEFORE_ATTRIBUTE_NAME; + } else if (code === CODE_SLASH) { + state = STATE_SELF_CLOSING_START_TAG; + } else if (code === CODE_GT) { + state = isRawText(tagName!) ? STATE_RAWTEXT : STATE_DATA; + } else { + (state = STATE_BEFORE_ATTRIBUTE_NAME), --i; + } + break; + } + case STATE_SELF_CLOSING_START_TAG: { + if (code === CODE_GT) { + state = STATE_DATA; + } else { + (state = STATE_BEFORE_ATTRIBUTE_NAME), --i; + } + break; + } + case STATE_BOGUS_COMMENT: { + if (code === CODE_GT) { + state = STATE_DATA; + } + break; + } + case STATE_COMMENT_START: { + if (code === CODE_DASH) { + state = STATE_COMMENT_START_DASH; + } else if (code === CODE_GT) { + state = STATE_DATA; + } else { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT_START_DASH: { + if (code === CODE_DASH) { + state = STATE_COMMENT_END; + } else if (code === CODE_GT) { + state = STATE_DATA; + } else { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT: { + if (code === CODE_LT) { + state = STATE_COMMENT_LESS_THAN_SIGN; + } else if (code === CODE_DASH) { + state = STATE_COMMENT_END_DASH; + } + break; + } + case STATE_COMMENT_LESS_THAN_SIGN: { + if (code === CODE_BANG) { + state = STATE_COMMENT_LESS_THAN_SIGN_BANG; + } else if (code !== CODE_LT) { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT_LESS_THAN_SIGN_BANG: { + if (code === CODE_DASH) { + state = STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH; + } else { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH: { + if (code === CODE_DASH) { + state = STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH; + } else { + (state = STATE_COMMENT_END), --i; + } + break; + } + case STATE_COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH: { + (state = STATE_COMMENT_END), --i; + break; + } + case STATE_COMMENT_END_DASH: { + if (code === CODE_DASH) { + state = STATE_COMMENT_END; + } else { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT_END: { + if (code === CODE_GT) { + state = STATE_DATA; + } else if (code === CODE_BANG) { + state = STATE_COMMENT_END_BANG; + } else if (code !== CODE_DASH) { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_COMMENT_END_BANG: { + if (code === CODE_DASH) { + state = STATE_COMMENT_END_DASH; + } else if (code === CODE_GT) { + state = STATE_DATA; + } else { + (state = STATE_COMMENT), --i; + } + break; + } + case STATE_MARKUP_DECLARATION_OPEN: { + if (code === CODE_DASH && input.charCodeAt(i + 1) === CODE_DASH) { + (state = STATE_COMMENT_START), ++i; + } else { + // Note: CDATA and DOCTYPE unsupported! + (state = STATE_BOGUS_COMMENT), --i; + } + break; + } + case STATE_RAWTEXT: { + if (code === CODE_LT) { + state = STATE_RAWTEXT_LESS_THAN_SIGN; + } + break; + } + case STATE_RAWTEXT_LESS_THAN_SIGN: { + if (code === CODE_SLASH) { + state = STATE_RAWTEXT_END_TAG_OPEN; + } else { + (state = STATE_RAWTEXT), --i; + } + break; + } + case STATE_RAWTEXT_END_TAG_OPEN: { + if (isAsciiAlphaCode(code)) { + tagNameStart = i; + (state = STATE_RAWTEXT_END_TAG_NAME), --i; + } else { + (state = STATE_RAWTEXT), --i; + } + break; + } + case STATE_RAWTEXT_END_TAG_NAME: { + if (isSpaceCode(code) && tagName === lower(input, tagNameStart, i)) { + state = STATE_BEFORE_ATTRIBUTE_NAME; + } else if (code === CODE_SLASH && tagName === lower(input, tagNameStart, i)) { + state = STATE_SELF_CLOSING_START_TAG; + } else if (code === CODE_GT && tagName === lower(input, tagNameStart, i)) { + state = STATE_DATA; + } else if (!isAsciiAlphaCode(code)) { + (state = STATE_RAWTEXT), --i; + } + break; + } + default: { + state = undefined; + break; + } + } + } + + if ((content += input.slice(index, end))) yield {type: "html_block", content, pos: end}; +} + +function isAsciiAlphaCode(code: number): boolean { + return (CODE_UPPER_A <= code && code <= CODE_UPPER_Z) || (CODE_LOWER_A <= code && code <= CODE_LOWER_Z); +} + +function isSpaceCode(code: number): boolean { + return code === CODE_TAB || code === CODE_LF || code === CODE_FF || code === CODE_SPACE || code === CODE_CR; // normalize newlines +} + +function isRawText(tagName: string): boolean { + return tagName === "script" || tagName === "style" || isEscapableRawText(tagName); +} + +function isEscapableRawText(tagName: string): boolean { + return tagName === "textarea" || tagName === "title"; +} + +function lower(input: string, start?: number | undefined, end?: number | undefined): string { + return input.slice(start, end).toLowerCase(); +} diff --git a/src/preview.ts b/src/preview.ts index 04e5634dc..130340dcb 100644 --- a/src/preview.ts +++ b/src/preview.ts @@ -1,37 +1,50 @@ import {createHash} from "node:crypto"; import {watch} from "node:fs"; import type {FSWatcher, WatchEventType} from "node:fs"; -import {access, constants, readFile, stat} from "node:fs/promises"; +import {access, constants} from "node:fs/promises"; import {createServer} from "node:http"; import type {IncomingMessage, RequestListener, Server, ServerResponse} from "node:http"; -import {basename, dirname, extname, join, normalize} from "node:path"; -import {fileURLToPath} from "node:url"; +import {basename, dirname, join, normalize} from "node:path/posix"; import {difference} from "d3-array"; +import type {PatchItem} from "fast-array-diff"; +import {getPatch} from "fast-array-diff"; +import deepEqual from "fast-deep-equal"; +import mime from "mime"; +import openBrowser from "open"; import send from "send"; -import {type WebSocket, WebSocketServer} from "ws"; -import {version} from "../package.json"; +import type {WebSocket} from "ws"; +import {WebSocketServer} from "ws"; import type {Config} from "./config.js"; -import {mergeStyle} from "./config.js"; -import {Loader} from "./dataloader.js"; -import {HttpError, isEnoent, isHttpError, isSystemError} from "./error.js"; +import {readConfig} from "./config.js"; +import {getDuckDBManifest} from "./duckdb.js"; +import {enoent, isEnoent, isHttpError, isSystemError} from "./error.js"; import {getClientPath} from "./files.js"; -import {FileWatchers} from "./fileWatchers.js"; -import {createImportResolver, rewriteModule} from "./javascript/imports.js"; -import {getImplicitSpecifiers, getImplicitStylesheets} from "./libraries.js"; -import {diffMarkdown, parseMarkdown} from "./markdown.js"; -import type {ParseResult} from "./markdown.js"; -import {renderPreview, resolveStylesheet} from "./render.js"; +import type {FileWatchers} from "./fileWatchers.js"; +import {isComment, isElement, isText, parseHtml, rewriteHtml} from "./html.js"; +import type {FileInfo} from "./javascript/module.js"; +import {findModule, readJavaScript} from "./javascript/module.js"; +import {transpileJavaScript, transpileModule} from "./javascript/transpile.js"; +import type {LoaderResolver} from "./loader.js"; +import type {MarkdownCode, MarkdownPage} from "./markdown.js"; +import {populateNpmCache} from "./npm.js"; +import {isPathImport, resolvePath} from "./path.js"; +import {renderModule, renderPage} from "./render.js"; +import type {Resolvers} from "./resolvers.js"; +import {getResolvers} from "./resolvers.js"; import {bundleStyles, rollupClient} from "./rollup.js"; +import type {Params} from "./route.js"; +import {route} from "./route.js"; +import {searchIndex} from "./search.js"; import {Telemetry} from "./telemetry.js"; import {bold, faint, green, link} from "./tty.js"; -import {relativeUrl} from "./url.js"; - -const publicRoot = join(dirname(fileURLToPath(import.meta.url)), "..", "public"); export interface PreviewOptions { - config: Config; + config?: string; + root?: string; hostname: string; + open?: boolean; port?: number; + origins?: string[]; verbose?: boolean; } @@ -40,13 +53,29 @@ export async function preview(options: PreviewOptions): Promise { } export class PreviewServer { - private readonly _config: Config; + private readonly _config: string | undefined; + private readonly _root: string | undefined; + private readonly _origins: string[]; private readonly _server: ReturnType; private readonly _socketServer: WebSocketServer; private readonly _verbose: boolean; - private constructor({config, server, verbose}: {config: Config; server: Server; verbose: boolean}) { + private constructor({ + config, + root, + origins = [], + server, + verbose + }: { + config?: string; + root?: string; + origins?: string[]; + server: Server; + verbose: boolean; + }) { this._config = config; + this._root = root; + this._origins = origins; this._verbose = verbose; this._server = server; this._server.on("request", this._handleRequest); @@ -54,11 +83,12 @@ export class PreviewServer { this._socketServer.on("connection", this._handleConnection); } - static async start({verbose = true, hostname, port, ...options}: PreviewOptions) { + static async start({verbose = true, hostname, port, open, ...options}: PreviewOptions) { Telemetry.record({event: "preview", step: "start"}); const server = createServer(); if (port === undefined) { - for (port = 3000; true; ++port) { + const MAX_PORT = 49152; // https://en.wikipedia.org/wiki/Registered_port + for (port = 3000; port < MAX_PORT; ++port) { try { await new Promise((resolve, reject) => { server.once("error", reject); @@ -69,151 +99,144 @@ export class PreviewServer { if (!isSystemError(error) || error.code !== "EADDRINUSE") throw error; } } + if (port === MAX_PORT) throw new Error(`Couldn’t connect to any port on ${hostname}`); } else { await new Promise((resolve) => server.listen(port, hostname, resolve)); } + const url = `http://${hostname}:${port}/`; if (verbose) { - console.log(`${green(bold("Observable Framework"))} ${faint(`v${version}`)}`); - console.log(`${faint("↳")} ${link(`http://${hostname}:${port}/`)}`); + console.log(`${green(bold("Observable Framework"))} ${faint(`v${process.env.npm_package_version}`)}`); + console.log(`${faint("↳")} ${link(url)}`); console.log(""); } + if (open) openBrowser(url); return new PreviewServer({server, verbose, ...options}); } + async _readConfig() { + return readConfig(this._config, this._root); + } + _handleRequest: RequestListener = async (req, res) => { - const config = this._config; - const root = config.root; + const config = await this._readConfig(); + const {root, loaders, duckdb} = config; if (this._verbose) console.log(faint(req.method!), req.url); + const url = new URL(req.url!, "http://localhost"); + const {origin} = req.headers; + if (this._origins.includes("*")) res.setHeader("Access-Control-Allow-Origin", "*"); + else if (origin && this._origins.includes(origin)) res.setHeader("Access-Control-Allow-Origin", origin); + let pathname = decodeURI(url.pathname); try { - const url = new URL(req.url!, "http://localhost"); - let pathname = decodeURIComponent(url.pathname); let match: RegExpExecArray | null; - if (pathname === "/_observablehq/runtime.js") { - const root = join(fileURLToPath(import.meta.resolve("@observablehq/runtime")), "../../"); - send(req, "/dist/runtime.js", {root}).pipe(res); - } else if (pathname.startsWith("/_observablehq/stdlib.js")) { - end(req, res, await rollupClient(getClientPath("./src/client/stdlib.js")), "text/javascript"); - } else if (pathname.startsWith("/_observablehq/stdlib/")) { - const path = getClientPath("./src/client/" + pathname.slice("/_observablehq/".length)); - if (pathname.endsWith(".js")) { - end(req, res, await rollupClient(path), "text/javascript"); - } else if (pathname.endsWith(".css")) { - end(req, res, await bundleStyles({path}), "text/css"); - } else { - throw new HttpError(`Not found: ${pathname}`, 404); - } - } else if (pathname === "/_observablehq/client.js") { - end(req, res, await rollupClient(getClientPath("./src/client/preview.js")), "text/javascript"); + if (pathname === "/_observablehq/client.js") { + end(req, res, await rollupClient(getClientPath("preview.js"), root, pathname), "text/javascript"); + } else if (pathname === "/_observablehq/minisearch.json") { + end(req, res, await searchIndex(config), "application/json"); } else if ((match = /^\/_observablehq\/theme-(?[\w-]+(,[\w-]+)*)?\.css$/.exec(pathname))) { end(req, res, await bundleStyles({theme: match.groups!.theme?.split(",") ?? []}), "text/css"); - } else if (pathname.startsWith("/_observablehq/")) { - send(req, pathname.slice("/_observablehq".length), {root: publicRoot}).pipe(res); + } else if (pathname.startsWith("/_observablehq/") && pathname.endsWith(".js")) { + const path = getClientPath(pathname.slice("/_observablehq/".length)); + const options = + pathname === "/_observablehq/stdlib/duckdb.js" + ? {define: {DUCKDB_MANIFEST: JSON.stringify(await getDuckDBManifest(duckdb, {root}))}} + : {}; + end(req, res, await rollupClient(path, root, pathname, options), "text/javascript"); + } else if (pathname.startsWith("/_observablehq/") && pathname.endsWith(".css")) { + const path = getClientPath(pathname.slice("/_observablehq/".length)); + end(req, res, await bundleStyles({path}), "text/css"); + } else if (pathname.startsWith("/_node/") || pathname.startsWith("/_jsr/") || pathname.startsWith("/_duckdb/")) { + send(req, pathname, {root: join(root, ".observablehq", "cache")}).pipe(res); + } else if (pathname.startsWith("/_npm/")) { + await populateNpmCache(root, pathname); + send(req, pathname, {root: join(root, ".observablehq", "cache")}).pipe(res); } else if (pathname.startsWith("/_import/")) { const path = pathname.slice("/_import".length); - const filepath = join(root, path); - try { - if (pathname.endsWith(".css")) { - await access(filepath, constants.R_OK); - end(req, res, await bundleStyles({path: filepath}), "text/css"); + if (pathname.endsWith(".css")) { + const module = route(root, path.slice(0, -".css".length), [".css"]); + if (module) { + const sourcePath = join(root, path); + await access(sourcePath, constants.R_OK); + end(req, res, await bundleStyles({path: sourcePath}), "text/css"); return; - } else if (pathname.endsWith(".js")) { - const input = await readFile(filepath, "utf-8"); - const output = await rewriteModule(input, path, createImportResolver(root)); + } + } else if (pathname.endsWith(".js")) { + const module = findModule(root, path); + if (module) { + const input = await readJavaScript(join(root, module.path)); + const output = await transpileModule(input, { + root, + path, + params: module.params, + resolveImport: loaders.getModuleResolver(path), + resolveFile: (name) => loaders.resolveFilePath(resolvePath(path, name)), + resolveFileInfo: (name) => loaders.getSourceInfo(resolvePath(path, name)) + }); end(req, res, output, "text/javascript"); return; } - } catch (error) { - if (!isEnoent(error)) throw error; } - throw new HttpError(`Not found: ${pathname}`, 404); + throw enoent(path); } else if (pathname.startsWith("/_file/")) { const path = pathname.slice("/_file".length); - const filepath = join(root, path); - try { - await access(filepath, constants.R_OK); - send(req, pathname.slice("/_file".length), {root}).pipe(res); - return; - } catch (error) { - if (!isEnoent(error)) throw error; - } - - // Look for a data loader for this file. - const loader = Loader.find(root, path); - if (loader) { - try { - send(req, await loader.load(), {root}).pipe(res); - return; - } catch (error) { - if (!isEnoent(error)) throw error; - } - } - throw new HttpError(`Not found: ${pathname}`, 404); + const loader = loaders.find(path); + if (!loader) throw enoent(path); + send(req, await loader.load(), {root}).pipe(res); } else { if ((pathname = normalize(pathname)).startsWith("..")) throw new Error("Invalid path: " + pathname); - let path = join(root, pathname); - // If this path is for /index, redirect to the parent directory for a - // tidy path. (This must be done before implicitly adding /index below!) - // Respect precedence of dir/index.md over dir.md in choosing between - // dir/ and dir! - if (basename(path, ".html") === "index") { + // Normalize the pathname (e.g., adding ".html" or removing ".html" + // based on preserveExtension) and redirect if necessary. + const normalizedPathname = encodeURI(config.normalizePath(pathname)); + if (url.pathname !== normalizedPathname) { + res.writeHead(302, {Location: normalizedPathname + url.search}); + res.end(); + return; + } + + // If there is a JavaScript module that exists for this path, the + // request represents a JavaScript embed (such as /chart.js), and takes + // precedence over any page (such as /chart.js.md). Generate a wrapper + // module that allows this JavaScript module to be embedded remotely. + if (pathname.endsWith(".js")) { try { - await stat(join(dirname(path), "index.md")); - res.writeHead(302, {Location: join(dirname(pathname), "/") + url.search}); - res.end(); + end(req, res, await renderModule(root, pathname), "text/javascript"); return; } catch (error) { if (!isEnoent(error)) throw error; - res.writeHead(302, {Location: dirname(pathname) + url.search}); - res.end(); - return; } } - // If this path resolves to a directory, then add an implicit /index to - // the end of the path, assuming that the corresponding index.md exists. - try { - if ((await stat(path)).isDirectory() && (await stat(join(path, "index.md"))).isFile()) { - if (!pathname.endsWith("/")) { - res.writeHead(302, {Location: pathname + "/" + url.search}); - res.end(); - return; - } - pathname = join(pathname, "index"); - path = join(path, "index"); - } - } catch (error) { - if (!isEnoent(error)) throw error; // internal error - } + // If this path ends with a slash, then add an implicit /index to the + // end of the path. Otherwise, remove the .html extension (we use clean + // paths as the internal canonical representation; see normalizePage). + if (pathname.endsWith("/")) pathname = join(pathname, "index"); + else pathname = pathname.replace(/\.html$/, ""); - // If this path ends with .html, then redirect to drop the .html. TODO: - // Check for the existence of the .md file first. - if (extname(path) === ".html") { - res.writeHead(302, {Location: join(dirname(pathname), basename(pathname, ".html")) + url.search}); - res.end(); - return; - } - - // Otherwise, serve the corresponding Markdown file, if it exists. + // Lastly, serve the corresponding Markdown file, if it exists. // Anything else should 404; static files should be matched above. - try { - const {html} = await renderPreview(path + ".md", {path: pathname, ...config}); - end(req, res, html, "text/html"); - } catch (error) { - if (!isEnoent(error)) throw error; // internal error - throw new HttpError("Not found", 404); - } + const options = {...config, path: pathname, preview: true}; + const parse = await loaders.loadPage(pathname, options); + end(req, res, await renderPage(parse, options), "text/html"); } } catch (error) { - if (isHttpError(error)) { + if (isEnoent(error)) { + res.statusCode = 404; + } else if (isHttpError(error)) { res.statusCode = error.statusCode; } else { res.statusCode = 500; console.error(error); } if (req.method === "GET" && res.statusCode === 404) { + if (req.url?.startsWith("/_file/") || req.url?.startsWith("/_import/")) { + res.setHeader("Content-Type", "text/plain; charset=utf-8"); + res.end("File not found"); + return; + } try { - const {html} = await renderPreview(join(root, "404.md"), {path: "/404", ...config}); + const options = {...config, path: "/404", preview: true}; + const parse = await loaders.loadPage("/404", options); + const html = await renderPage(parse, options); end(req, res, html, "text/html"); return; } catch { @@ -225,9 +248,9 @@ export class PreviewServer { } }; - _handleConnection = async (socket: WebSocket, req: IncomingMessage) => { + _handleConnection = (socket: WebSocket, req: IncomingMessage) => { if (req.url === "/_observablehq") { - handleWatch(socket, req, this._config); + handleWatch(socket, req, this._readConfig()); // can’t await; messages would be dropped } else { socket.close(); } @@ -256,61 +279,57 @@ function end(req: IncomingMessage, res: ServerResponse, content: string, type: s } } -function getWatchPaths(parseResult: ParseResult): string[] { - const paths: string[] = []; - const {files, imports} = parseResult; - for (const f of files) paths.push(f.name); - for (const i of imports) paths.push(i.name); - return paths; +// Note that while we appear to be watching the referenced files here, +// FileWatchers will magically watch the corresponding data loader if a +// referenced file does not exist! +function getWatchFiles(resolvers: Resolvers): Iterable { + const files = new Set(); + for (const specifier of resolvers.stylesheets) { + if (isPathImport(specifier)) { + files.add(specifier); + } + } + for (const specifier of resolvers.assets) { + files.add(specifier); + } + for (const specifier of resolvers.files) { + files.add(specifier); + } + for (const specifier of resolvers.localImports) { + files.add(specifier); + } + return files; } -export function getPreviewStylesheet(path: string, data: ParseResult["data"], style: Config["style"]): string | null { - style = mergeStyle(path, data?.style, data?.theme, style); - return !style - ? null - : "path" in style - ? relativeUrl(path, `/_import/${style.path}`) - : relativeUrl(path, `/_observablehq/theme-${style.theme.join(",")}.css`); +interface HtmlPart { + type: number; + value: string; } -function handleWatch(socket: WebSocket, req: IncomingMessage, {root, style: defaultStyle}: Config) { +function handleWatch(socket: WebSocket, req: IncomingMessage, configPromise: Promise) { + let config: Config | null = null; let path: string | null = null; - let current: ParseResult | null = null; - let stylesheets: Set | null = null; - let markdownWatcher: FSWatcher | null = null; + let hash: string | null = null; + let html: HtmlPart[] | null = null; + let code: Map | null = null; + let files: Map | null = null; + let tables: Map | null = null; + let stylesheets: string[] | null = null; + let configWatcher: FSWatcher | null = null; + let loaderWatcher: FSWatcher | null = null; let attachmentWatcher: FileWatchers | null = null; let emptyTimeout: ReturnType | null = null; console.log(faint("socket open"), req.url); - async function getStylesheets({cells, data}: ParseResult): Promise> { - const inputs = new Set(); - for (const cell of cells) cell.inputs?.forEach(inputs.add, inputs); - const stylesheets = await getImplicitStylesheets(getImplicitSpecifiers(inputs)); - const style = getPreviewStylesheet(path!, data, defaultStyle); - if (style) stylesheets.add(style); - return new Set(Array.from(stylesheets, (href) => resolveStylesheet(path!, href))); - } - - function refreshAttachment(name: string) { - const {cells} = current!; - if (cells.some((cell) => cell.imports?.some((i) => i.name === name))) { - watcher("change"); // trigger re-compilation of JavaScript to get new import hashes - } else { - const affectedCells = cells.filter((cell) => cell.files?.some((f) => f.name === name)); - if (affectedCells.length > 0) { - send({type: "refresh", cellIds: affectedCells.map((cell) => cell.id)}); - } - } - } - async function watcher(event: WatchEventType, force = false) { - if (!path || !current) throw new Error("not initialized"); + if (path === null || config === null) throw new Error("not initialized"); + const {loaders} = config; switch (event) { case "rename": { - markdownWatcher?.close(); + loaderWatcher?.close(); try { - markdownWatcher = watch(join(root, path), (event) => watcher(event)); + loaderWatcher = loaders.watchPage(path, (event) => watcher(event)); } catch (error) { if (!isEnoent(error)) throw error; console.error(`file no longer exists: ${path}`); @@ -321,9 +340,16 @@ function handleWatch(socket: WebSocket, req: IncomingMessage, {root, style: defa break; } case "change": { - const updated = await parseMarkdown(join(root, path), {root, path}); + let page: MarkdownPage; + try { + page = await loaders.loadPage(path, {path, ...config}); + } catch (error) { + console.error(error); + socket.terminate(); + return; + } // delay to avoid a possibly-empty file - if (!force && updated.html === "") { + if (!force && page.body === "") { if (!emptyTimeout) { emptyTimeout = setTimeout(() => { emptyTimeout = null; @@ -335,32 +361,57 @@ function handleWatch(socket: WebSocket, req: IncomingMessage, {root, style: defa clearTimeout(emptyTimeout); emptyTimeout = null; } - if (current.hash === updated.hash) break; - const updatedStylesheets = await getStylesheets(updated); - for (const href of difference(stylesheets, updatedStylesheets)) send({type: "remove-stylesheet", href}); - for (const href of difference(updatedStylesheets, stylesheets)) send({type: "add-stylesheet", href}); - stylesheets = updatedStylesheets; - const diff = diffMarkdown(current, updated); - send({type: "update", diff, previousHash: current.hash, updatedHash: updated.hash}); - current = updated; + const resolvers = await getResolvers(page, {path, ...config}); + if (hash === resolvers.hash) break; + const previousHash = hash!; + const previousHtml = html!; + const previousCode = code!; + const previousFiles = files!; + const previousTables = tables!; + const previousStylesheets = stylesheets!; + hash = resolvers.hash; + html = getHtml(page, resolvers); + code = getCode(page, resolvers); + files = getFiles(resolvers); + tables = getTables(page); + stylesheets = Array.from(resolvers.stylesheets, resolvers.resolveStylesheet); + send({ + type: "update", + html: diffHtml(previousHtml, html), + code: diffCode(previousCode, code), + files: diffFiles(previousFiles, files, getInfoResolver(loaders, path)), + tables: diffTables(previousTables, tables, previousFiles, files), + stylesheets: diffStylesheets(previousStylesheets, stylesheets), + hash: {previous: previousHash, current: hash} + }); attachmentWatcher?.close(); - attachmentWatcher = await FileWatchers.of(root, path, getWatchPaths(updated), refreshAttachment); + attachmentWatcher = await loaders.watchFiles(path, getWatchFiles(resolvers), () => watcher("change")); break; } } } async function hello({path: initialPath, hash: initialHash}: {path: string; hash: string}): Promise { - if (markdownWatcher || attachmentWatcher) throw new Error("already watching"); - path = initialPath; - if (!(path = normalize(path)).startsWith("/")) throw new Error("Invalid path: " + initialPath); + if (loaderWatcher || configWatcher || attachmentWatcher) throw new Error("already watching"); + path = decodeURI(initialPath); + if (!(path = normalize(path)).startsWith("/")) throw new Error(`Invalid path: ${initialPath}`); if (path.endsWith("/")) path += "index"; - path += ".md"; - current = await parseMarkdown(join(root, path), {root, path}); - if (current.hash !== initialHash) return void send({type: "reload"}); - stylesheets = await getStylesheets(current); - attachmentWatcher = await FileWatchers.of(root, path, getWatchPaths(current), refreshAttachment); - markdownWatcher = watch(join(root, path), (event) => watcher(event)); + path = join(dirname(path), basename(path, ".html")); + config = await configPromise; + const {root, loaders, normalizePath, duckdb} = config; + const page = await loaders.loadPage(path, {path, ...config}); + const resolvers = await getResolvers(page, {root, path, loaders, normalizePath, duckdb}); + if (resolvers.hash === initialHash) send({type: "welcome"}); + else return void send({type: "reload"}); + hash = resolvers.hash; + html = getHtml(page, resolvers); + code = getCode(page, resolvers); + files = getFiles(resolvers); + tables = getTables(page); + stylesheets = Array.from(resolvers.stylesheets, resolvers.resolveStylesheet); + attachmentWatcher = await loaders.watchFiles(path, getWatchFiles(resolvers), () => watcher("change")); + loaderWatcher = loaders.watchPage(path, (event) => watcher(event)); + if (config.watchPath) configWatcher = watch(config.watchPath, () => send({type: "reload"})); } socket.on("message", async (data) => { @@ -388,15 +439,156 @@ function handleWatch(socket: WebSocket, req: IncomingMessage, {root, style: defa attachmentWatcher.close(); attachmentWatcher = null; } - if (markdownWatcher) { - markdownWatcher.close(); - markdownWatcher = null; + if (loaderWatcher) { + loaderWatcher.close(); + loaderWatcher = null; + } + if (configWatcher) { + configWatcher.close(); + configWatcher = null; } console.log(faint("socket close"), req.url); }); - function send(message) { + function send(message: any) { console.log(faint("↓"), message); socket.send(JSON.stringify(message)); } } + +function serializeHtml(node: ChildNode): HtmlPart | undefined { + return isElement(node) + ? {type: 1, value: node.outerHTML} + : isText(node) + ? {type: 3, value: node.nodeValue!} + : isComment(node) + ? {type: 8, value: node.data} + : undefined; +} + +function getHtml({body}: MarkdownPage, resolvers: Resolvers): HtmlPart[] { + const {document} = parseHtml(`\n${rewriteHtml(body, resolvers)}`); + return Array.from(document.body.childNodes, serializeHtml).filter((d): d is HtmlPart => d != null); +} + +function getCode({code, params}: MarkdownPage, resolvers: Resolvers): Map { + return new Map(code.map((code) => [code.id, transpileCode(code, resolvers, params)])); +} + +// Including the file has as a comment ensures that the code changes when a +// directly-referenced file changes, triggering re-evaluation. Note that when a +// transitive import changes, or when a file referenced by a transitive import +// changes, the sha is already included in the transpiled code, and hence will +// likewise be re-evaluated. +function transpileCode({id, node, mode}: MarkdownCode, resolvers: Resolvers, params?: Params): string { + const hash = createHash("sha256"); + for (const f of node.files) hash.update(resolvers.resolveFile(f.name)); + return `${transpileJavaScript(node, {id, mode, params, ...resolvers})} // ${hash.digest("hex")}`; +} + +function getFiles({files, resolveFile}: Resolvers): Map { + return new Map(Array.from(files, (f) => [f, resolveFile(f)])); +} + +function getTables({data}: MarkdownPage): Map { + return new Map(Object.entries(data.sql ?? {})); +} + +type CodePatch = {removed: string[]; added: string[]}; + +function diffCode(oldCode: Map, newCode: Map): CodePatch { + const patch: CodePatch = {removed: [], added: []}; + for (const [id, body] of oldCode) { + if (newCode.get(id) !== body) { + patch.removed.push(id); + } + } + for (const [id, body] of newCode) { + if (oldCode.get(id) !== body) { + patch.added.push(body); + } + } + return patch; +} + +type FileDeclaration = {name: string; mimeType: string; lastModified: number; size: number; path: string}; +type FilePatch = {removed: string[]; added: FileDeclaration[]}; + +function diffFiles( + oldFiles: Map, + newFiles: Map, + getInfo: (name: string) => FileInfo | undefined +): FilePatch { + const patch: FilePatch = {removed: [], added: []}; + for (const [name, path] of oldFiles) { + if (newFiles.get(name) !== path) { + patch.removed.push(name); + } + } + for (const [name, path] of newFiles) { + if (oldFiles.get(name) !== path) { + const info = getInfo(name); + patch.added.push({ + name, + mimeType: mime.getType(name) ?? "application/octet-stream", + lastModified: info?.mtimeMs ?? NaN, + size: info?.size ?? NaN, + path + }); + } + } + return patch; +} + +function getInfoResolver(loaders: LoaderResolver, path: string): (name: string) => FileInfo | undefined { + return (name) => loaders.getSourceInfo(resolvePath(path, name)); +} + +type TableDeclaration = {name: string; path: string}; +type TablePatch = {removed: string[]; added: TableDeclaration[]}; + +function diffTables( + oldTables: Map, + newTables: Map, + oldFiles: Map, + newFiles: Map +): TablePatch { + const patch: TablePatch = {removed: [], added: []}; + for (const [name, path] of oldTables) { + if (newTables.get(name) !== path) { + patch.removed.push(name); + } + } + for (const [name, path] of newTables) { + if (oldTables.get(name) !== path) { + patch.added.push({name, path}); + } else if (newFiles.get(path) !== oldFiles.get(path)) { + patch.removed.push(name); + patch.added.push({name, path}); + } + } + return patch; +} + +function diffHtml(oldHtml: HtmlPart[], newHtml: HtmlPart[]): RedactedPatch { + return getPatch(oldHtml, newHtml, deepEqual).map(redactPatch); +} + +type RedactedPatch = RedactedPatchItem[]; + +type RedactedPatchItem = + | {type: "add"; oldPos: number; newPos: number; items: T[]} + | {type: "remove"; oldPos: number; newPos: number; items: {length: number}}; + +function redactPatch(patch: PatchItem): RedactedPatchItem { + return patch.type === "remove" ? {...patch, type: "remove", items: {length: patch.items.length}} : patch; +} + +type StylesheetPatch = {removed: string[]; added: string[]}; + +function diffStylesheets(oldStylesheets: string[], newStylesheets: string[]): StylesheetPatch { + return { + removed: Array.from(difference(oldStylesheets, newStylesheets)), + added: Array.from(difference(newStylesheets, oldStylesheets)) + }; +} diff --git a/src/render.ts b/src/render.ts index 190d284ba..309d4b1ef 100644 --- a/src/render.ts +++ b/src/render.ts @@ -1,76 +1,53 @@ -import {parseHTML} from "linkedom"; -import type {Config, Page, Script, Section} from "./config.js"; +import mime from "mime"; +import type {Config, Page, Section} from "./config.js"; import {mergeToc} from "./config.js"; +import {enoent} from "./error.js"; import {getClientPath} from "./files.js"; -import {type Html, html} from "./html.js"; -import type {ImportResolver} from "./javascript/imports.js"; -import {createImportResolver, resolveModuleIntegrity, resolveModulePreloads} from "./javascript/imports.js"; -import type {FileReference, ImportReference, Transpile} from "./javascript.js"; -import {addImplicitSpecifiers, addImplicitStylesheets} from "./libraries.js"; -import {type ParseResult, parseMarkdown} from "./markdown.js"; -import {type PageLink, findLink, normalizePath} from "./pager.js"; -import {getPreviewStylesheet} from "./preview.js"; +import type {Html, HtmlResolvers} from "./html.js"; +import {html, parseHtml, rewriteHtml} from "./html.js"; +import {isJavaScript} from "./javascript/imports.js"; +import type {FileInfo} from "./javascript/module.js"; +import {findModule} from "./javascript/module.js"; +import type {TranspileModuleOptions} from "./javascript/transpile.js"; +import {transpileJavaScript, transpileModule} from "./javascript/transpile.js"; +import type {MarkdownPage} from "./markdown.js"; +import type {PageLink} from "./pager.js"; +import {findLink, normalizePath} from "./pager.js"; +import {isAssetPath, resolvePath, resolveRelativePath} from "./path.js"; +import type {Resolvers} from "./resolvers.js"; +import {getModuleResolver, getModuleStaticImports, getResolvers} from "./resolvers.js"; import {rollupClient} from "./rollup.js"; -import {relativeUrl} from "./url.js"; - -export interface Render { - html: string; - files: FileReference[]; - imports: ImportReference[]; - data: ParseResult["data"]; -} export interface RenderOptions extends Config { root: string; path: string; -} - -export async function renderPreview(sourcePath: string, options: RenderOptions): Promise { - const parseResult = await parseMarkdown(sourcePath, options); - return { - html: await render(parseResult, {...options, preview: true}), - files: parseResult.files, - imports: parseResult.imports, - data: parseResult.data - }; -} - -export async function renderServerless(sourcePath: string, options: RenderOptions): Promise { - const parseResult = await parseMarkdown(sourcePath, options); - return { - html: await render(parseResult, options), - files: parseResult.files, - imports: parseResult.imports, - data: parseResult.data - }; -} - -export function renderDefineCell(cell: Transpile): string { - const {id, inline, inputs, outputs, files, body} = cell; - return `define({${Object.entries({id, inline, inputs, outputs, files}) - .filter((arg) => arg[1] !== undefined) - .map((arg) => `${arg[0]}: ${JSON.stringify(arg[1])}`) - .join(", ")}, body: ${body}});\n`; + resolvers?: Resolvers; } type RenderInternalOptions = - | {preview?: false} // serverless + | {preview?: false} // build | {preview: true}; // preview -async function render(parseResult: ParseResult, options: RenderOptions & RenderInternalOptions): Promise { - const {root, base, path, pages, title, preview} = options; - const sidebar = parseResult.data?.sidebar !== undefined ? Boolean(parseResult.data.sidebar) : options.sidebar; - const toc = mergeToc(parseResult.data?.toc, options.toc); +export async function renderPage(page: MarkdownPage, options: RenderOptions & RenderInternalOptions): Promise { + const {data, params} = page; + const {base, path, title, preview} = options; + const {loaders, resolvers = await getResolvers(page, options)} = options; + const {draft = false, sidebar = options.sidebar} = data; + const toc = mergeToc(data.toc, options.toc); + const {files, resolveFile, resolveImport} = resolvers; return String(html` + + ${path === "/404" ? html`\n` : ""} + ${ - parseResult.title || title - ? html`${[parseResult.title, parseResult.title === title ? null : title] + page.title || title + ? html`<title>${[page.title, page.title === title ? null : title] .filter((title): title is string => !!title) .join(" | ")}\n` : "" -}${await renderHead(parseResult, options, path, createImportResolver(root, "_import"))}${ +}${renderHead(page.head, resolvers)}${ path === "/404" ? html.unsafe(`\n${sidebar ? html`\n${await renderSidebar(title, pages, path)}` : ""}${ - toc.show ? html`\n${renderToc(findHeaders(parseResult), toc.label)}` : "" +import ${preview || page.code.length ? `{${preview ? "open, " : ""}define} from ` : ""}${JSON.stringify( + resolveImport("observablehq:client") + )};${ + files.size + ? `\nimport {registerFile${data?.sql ? ", FileAttachment" : ""}} from ${JSON.stringify( + resolveImport("observablehq:stdlib") + )};` + : "" + }${data?.sql ? `\nimport {registerTable} from ${JSON.stringify(resolveImport("npm:@observablehq/duckdb"))};` : ""}${ + files.size + ? `\n${registerFiles( + files, + resolveFile, + preview + ? (name) => loaders.getSourceInfo(resolvePath(path, name)) + : (name) => loaders.getOutputInfo(resolvePath(path, name)) + )}` + : "" + }${data?.sql ? `\n${registerTables(data.sql, options)}` : ""} +${preview ? `\nopen({hash: ${JSON.stringify(resolvers.hash)}, eval: (body) => eval(body)});\n` : ""}${page.code + .map(({node, id, mode}) => `\n${transpileJavaScript(node, {id, path, params, mode, resolveImport, resolveFile})}`) + .join("")}`)} + + +${sidebar ? html`\n${await renderSidebar(options, resolvers)}` : ""} +
    ${renderHeader(page.header, resolvers)}${ + toc.show ? html`\n${renderToc(findHeaders(page), toc.label)}` : "" } -
    ${renderHeader(options, parseResult.data)} -
    -${html.unsafe(parseResult.html)}
    ${renderFooter(path, options, parseResult.data)} +
    +${html.unsafe(rewriteHtml(page.body, resolvers))}
    ${renderFooter(page.footer, resolvers, options)}
    + + `); } -async function renderSidebar(title = "Home", pages: (Page | Section)[], path: string): Promise { +function registerTables(sql: Record, options: RenderOptions): string { + return Object.entries(sql) + .map(([name, source]) => registerTable(name, source, options)) + .join("\n"); +} + +function registerTable(name: string, source: string, {path}: RenderOptions): string { + return `registerTable(${JSON.stringify(name)}, ${ + isAssetPath(source) + ? `FileAttachment(${JSON.stringify(resolveRelativePath(path, source))})` + : JSON.stringify(source) + });`; +} + +function registerFiles( + files: Iterable, + resolve: (name: string) => string, + getInfo: (name: string) => FileInfo | undefined +): string { + return Array.from(files) + .sort() + .map((f) => registerFile(f, resolve, getInfo)) + .join(""); +} + +function registerFile( + name: string, + resolve: (name: string) => string, + getInfo: (name: string) => FileInfo | undefined +): string { + const info = getInfo(name); + return `\nregisterFile(${JSON.stringify(name)}, ${JSON.stringify({ + name, + mimeType: mime.getType(name) ?? undefined, + path: resolve(name), + lastModified: info?.mtimeMs, + size: info?.size + })});`; +} + +async function renderSidebar(options: RenderOptions, {resolveImport, resolveLink}: Resolvers): Promise { + const {home, pages, root, path, search} = options; return html`
    `; } +function isSectionActive(s: Section, path: string): boolean { + return s.pages.some((p) => normalizePath(p.path) === path) || (s.path !== null && normalizePath(s.path) === path); +} + interface Header { label: string; href: string; } -const tocSelector = ["h1:not(:first-of-type)", "h2:not(h1 + h2):has(a.observablehq-header-anchor)"]; +const tocSelector = "h1:not(:first-of-type)[id], h2:first-child[id], :not(h1) + h2[id]"; -function findHeaders(parseResult: ParseResult): Header[] { - return Array.from(parseHTML(parseResult.html).document.querySelectorAll(tocSelector.join(", "))) - .map((node) => ({label: node.textContent, href: node.firstElementChild?.getAttribute("href")})) - .filter((d): d is Header => !!d.label && !!d.href); +function findHeaders(page: MarkdownPage): Header[] { + return Array.from(parseHtml(page.body).document.querySelectorAll(tocSelector)) + .map((node) => ({label: node.textContent, href: `#${node.id}`})) + .filter((d): d is Header => !!d.label); } function renderToc(headers: Header[], label: string): Html { - return html`
    + + diff --git a/test/output/build/npm/_import/index.4bdc071f.js b/test/output/build/npm/_import/index.4bdc071f.js new file mode 100644 index 000000000..9b6843f78 --- /dev/null +++ b/test/output/build/npm/_import/index.4bdc071f.js @@ -0,0 +1 @@ +import "../_observablehq/stdlib/inputs.00000006.js"; diff --git a/test/output/build/npm/_npm/htl@0.3.1/cd372fb8.js b/test/output/build/npm/_npm/htl@0.3.1/cd372fb8.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_npm/isoformat@0.2.1/cd372fb8.js b/test/output/build/npm/_npm/isoformat@0.2.1/cd372fb8.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/client.00000001.js b/test/output/build/npm/_observablehq/client.00000001.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/runtime.00000002.js b/test/output/build/npm/_observablehq/runtime.00000002.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/stdlib.00000003.js b/test/output/build/npm/_observablehq/stdlib.00000003.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/stdlib/inputs.00000005.css b/test/output/build/npm/_observablehq/stdlib/inputs.00000005.css new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/stdlib/inputs.00000006.js b/test/output/build/npm/_observablehq/stdlib/inputs.00000006.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/_observablehq/theme-air,near-midnight.00000004.css b/test/output/build/npm/_observablehq/theme-air,near-midnight.00000004.css new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/npm/index.html b/test/output/build/npm/index.html new file mode 100644 index 000000000..24dcc3f28 --- /dev/null +++ b/test/output/build/npm/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    + +
    + + diff --git a/test/output/build/page-loaders/_observablehq/client.00000001.js b/test/output/build/page-loaders/_observablehq/client.00000001.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/page-loaders/_observablehq/runtime.00000002.js b/test/output/build/page-loaders/_observablehq/runtime.00000002.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/page-loaders/_observablehq/stdlib.00000003.js b/test/output/build/page-loaders/_observablehq/stdlib.00000003.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/page-loaders/_observablehq/theme-air,near-midnight.00000004.css b/test/output/build/page-loaders/_observablehq/theme-air,near-midnight.00000004.css new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/page-loaders/hello-js.html b/test/output/build/page-loaders/hello-js.html new file mode 100644 index 000000000..961514be5 --- /dev/null +++ b/test/output/build/page-loaders/hello-js.html @@ -0,0 +1,36 @@ + + + + + + +Hello JavaScript + + + + + + + + + + + +
    + +
    +

    Hello JavaScript

    +
    + +
    + + diff --git a/test/output/build/page-loaders/hello-ts.html b/test/output/build/page-loaders/hello-ts.html new file mode 100644 index 000000000..676df53ec --- /dev/null +++ b/test/output/build/page-loaders/hello-ts.html @@ -0,0 +1,36 @@ + + + + + + +Hello TypeScript + + + + + + + + + + + +
    + +
    +

    Hello TypeScript

    +
    + +
    + + diff --git a/test/output/build/page-loaders/index.html b/test/output/build/page-loaders/index.html new file mode 100644 index 000000000..10e853399 --- /dev/null +++ b/test/output/build/page-loaders/index.html @@ -0,0 +1,36 @@ + + + + + + +Hello shell + + + + + + + + + + + +
    + +
    +

    Hello shell

    +
    + +
    + + diff --git a/test/output/build/pager/_observablehq/client.00000001.js b/test/output/build/pager/_observablehq/client.00000001.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/pager/_observablehq/runtime.00000002.js b/test/output/build/pager/_observablehq/runtime.00000002.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/pager/_observablehq/stdlib.00000003.js b/test/output/build/pager/_observablehq/stdlib.00000003.js new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/pager/_observablehq/theme-air,near-midnight.00000004.css b/test/output/build/pager/_observablehq/theme-air,near-midnight.00000004.css new file mode 100644 index 000000000..e69de29bb diff --git a/test/output/build/pager/index.html b/test/output/build/pager/index.html index 740d7cf36..7228b5ce0 100644 --- a/test/output/build/pager/index.html +++ b/test/output/build/pager/index.html @@ -1,20 +1,25 @@ + + + index - - - - - - - + + + + + + + + + -